From 9b00106ab5908ff63c2808293aeaceadbd7b6d85 Mon Sep 17 00:00:00 2001 From: Nathan Moore Date: Mon, 15 Mar 2021 10:30:27 -0600 Subject: [PATCH 01/12] error handling when no/wrong commands given to cli (#207) --- lib/uo_cli.rb | 18 ++++++++++++++---- spec/uo_cli_spec.rb | 12 ++++++++++++ 2 files changed, 26 insertions(+), 4 deletions(-) diff --git a/lib/uo_cli.rb b/lib/uo_cli.rb index febcf3db..ae3cbf68 100755 --- a/lib/uo_cli.rb +++ b/lib/uo_cli.rb @@ -77,7 +77,11 @@ def initialize end return if ARGV.empty? @command = ARGV.shift - send("opt_#{@command}") ## dispatch to command handling method + begin + send("opt_#{@command}") ## dispatch to command handling method + rescue NoMethodError + abort("Invalid command, please run uo --help for a list of available commands") + end end # Define creation commands @@ -266,10 +270,16 @@ def opt_delete # Initialize the CLI class @opthash = UrbanOptCLI.new - # Pull out feature and scenario filenames and paths - if @opthash.subopts[:scenario_file] - @feature_path, @feature_name = File.split(File.expand_path(@opthash.subopts[:scenario_file])) + # Rescue if user only enters 'uo' without a command + begin + # Pull out feature and scenario filenames and paths + if @opthash.subopts[:scenario_file] + @feature_path, @feature_name = File.split(File.expand_path(@opthash.subopts[:scenario_file])) + end + rescue NoMethodError + abort("Invalid command, please run uo --help for a list of available commands") end + # FIXME: Can this be combined with the above block? This isn't very DRY # One solution would be changing scenario_file to feature. # Would that be confusing when creating a ScenarioFile from the FeatureFile? diff --git a/spec/uo_cli_spec.rb b/spec/uo_cli_spec.rb index ca70621b..a1127295 100644 --- a/spec/uo_cli_spec.rb +++ b/spec/uo_cli_spec.rb @@ -70,6 +70,18 @@ def delete_directory_or_file(dir_or_file) .to output(a_string_including('Create project directory')) .to_stdout_from_any_process end + + it 'returns graceful error when no command given' do + expect { system(call_cli) } + .to output(a_string_including('Invalid command')) + .to_stderr_from_any_process + end + + it 'returns graceful error when invalid command given' do + expect { system("#{call_cli} asdf") } + .to output(a_string_including('Invalid command')) + .to_stderr_from_any_process + end end context 'Create project' do From 2a4fbbfd47703995bcc535e73ed85a7ea772d911 Mon Sep 17 00:00:00 2001 From: Nathan Moore Date: Mon, 15 Mar 2021 11:56:02 -0600 Subject: [PATCH 02/12] update license & copyright (#208) --- LICENSE.md | 12 +++++++- Rakefile | 22 ++++++++++---- example_files/mappers/Baseline.rb | 30 ++++++++++++------- example_files/mappers/CreateBar.rb | 22 ++++++++++---- example_files/mappers/EvCharging.rb | 30 ++++++++++++------- example_files/mappers/Floorspace.rb | 22 ++++++++++---- example_files/mappers/HighEfficiency.rb | 22 ++++++++++---- .../mappers/HighEfficiencyCreateBar.rb | 22 ++++++++++---- .../mappers/HighEfficiencyFloorspace.rb | 22 ++++++++++---- example_files/mappers/ThermalStorage.rb | 22 ++++++++++---- lib/uo_cli.rb | 22 ++++++++++---- lib/uo_cli/version.rb | 22 ++++++++++---- spec/spec_helper.rb | 22 ++++++++++---- spec/uo_cli_spec.rb | 22 ++++++++++---- 14 files changed, 227 insertions(+), 87 deletions(-) diff --git a/LICENSE.md b/LICENSE.md index 70cbef65..9b2a0448 100644 --- a/LICENSE.md +++ b/LICENSE.md @@ -1,6 +1,6 @@ # License -URBANopt™, Copyright (c) 2019-2020, Alliance for Sustainable Energy, LLC, and other +URBANopt™, Copyright (c) 2019-2021, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. Redistribution and use in source and binary forms, with or without modification, @@ -17,6 +17,16 @@ Neither the name of the copyright holder nor the names of its contributors may b used to endorse or promote products derived from this software without specific prior written permission. +Redistribution of this software, without modification, must refer to the software +by the same designation. Redistribution of a modified version of this software +(i) may not refer to the modified version by the same designation, or by any +confusingly similar designation, and (ii) must refer to the underlying software +originally provided by Alliance as “URBANopt”. Except to comply with the foregoing, +the term “URBANopt”, or any confusingly similar designation may not be used to +refer to any modified version of this software or any modified version of the +underlying software originally provided by Alliance without the prior written +consent of Alliance. + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. diff --git a/Rakefile b/Rakefile index 14e54459..61404250 100644 --- a/Rakefile +++ b/Rakefile @@ -1,21 +1,31 @@ # ********************************************************************************* -# URBANopt™, Copyright (c) 2019-2020, Alliance for Sustainable Energy, LLC, and other +# URBANopt™, Copyright (c) 2019-2021, Alliance for Sustainable Energy, LLC, and other # contributors. All rights reserved. -# + # Redistribution and use in source and binary forms, with or without modification, # are permitted provided that the following conditions are met: -# + # Redistributions of source code must retain the above copyright notice, this list # of conditions and the following disclaimer. -# + # Redistributions in binary form must reproduce the above copyright notice, this # list of conditions and the following disclaimer in the documentation and/or other # materials provided with the distribution. -# + # Neither the name of the copyright holder nor the names of its contributors may be # used to endorse or promote products derived from this software without specific # prior written permission. -# + +# Redistribution of this software, without modification, must refer to the software +# by the same designation. Redistribution of a modified version of this software +# (i) may not refer to the modified version by the same designation, or by any +# confusingly similar designation, and (ii) must refer to the underlying software +# originally provided by Alliance as “URBANopt”. Except to comply with the foregoing, +# the term “URBANopt”, or any confusingly similar designation may not be used to +# refer to any modified version of this software or any modified version of the +# underlying software originally provided by Alliance without the prior written +# consent of Alliance. + # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND # ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED # WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. diff --git a/example_files/mappers/Baseline.rb b/example_files/mappers/Baseline.rb index 6c968d74..f968e251 100644 --- a/example_files/mappers/Baseline.rb +++ b/example_files/mappers/Baseline.rb @@ -1,21 +1,31 @@ #********************************************************************************* -# URBANopt™, Copyright (c) 2019-2020, Alliance for Sustainable Energy, LLC, and other +# URBANopt™, Copyright (c) 2019-2021, Alliance for Sustainable Energy, LLC, and other # contributors. All rights reserved. -# + # Redistribution and use in source and binary forms, with or without modification, # are permitted provided that the following conditions are met: -# + # Redistributions of source code must retain the above copyright notice, this list # of conditions and the following disclaimer. -# + # Redistributions in binary form must reproduce the above copyright notice, this # list of conditions and the following disclaimer in the documentation and/or other # materials provided with the distribution. -# + # Neither the name of the copyright holder nor the names of its contributors may be # used to endorse or promote products derived from this software without specific # prior written permission. -# + +# Redistribution of this software, without modification, must refer to the software +# by the same designation. Redistribution of a modified version of this software +# (i) may not refer to the modified version by the same designation, or by any +# confusingly similar designation, and (ii) must refer to the underlying software +# originally provided by Alliance as “URBANopt”. Except to comply with the foregoing, +# the term “URBANopt”, or any confusingly similar designation may not be used to +# refer to any modified version of this software or any modified version of the +# underlying software originally provided by Alliance without the prior written +# consent of Alliance. + # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND # ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED # WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. @@ -271,7 +281,7 @@ def commercial_building_types 'Food service', 'Inpatient health care', 'Nursing', - 'Lodging', + 'Lodging', 'Strip shopping mall', 'Enclosed mall', 'Retail other than mall', @@ -383,7 +393,7 @@ def get_climate_zone_iecc(epw) end def create_osw(scenario, features, feature_names) - + if features.size != 1 raise "Baseline currently cannot simulate more than one feature." end @@ -947,10 +957,10 @@ def time_mapping(time) end rescue end - + # TODO: surface_elevation has no current mapping # TODO: tariff_filename has no current mapping - + # create a bar building, will have spaces tagged with individual space types given the # input building types # set skip measure to false diff --git a/example_files/mappers/CreateBar.rb b/example_files/mappers/CreateBar.rb index 8faf9c0c..9e7dc863 100644 --- a/example_files/mappers/CreateBar.rb +++ b/example_files/mappers/CreateBar.rb @@ -1,21 +1,31 @@ # ********************************************************************************* -# URBANopt, Copyright (c) 2019-2020, Alliance for Sustainable Energy, LLC, and other +# URBANopt™, Copyright (c) 2019-2021, Alliance for Sustainable Energy, LLC, and other # contributors. All rights reserved. -# + # Redistribution and use in source and binary forms, with or without modification, # are permitted provided that the following conditions are met: -# + # Redistributions of source code must retain the above copyright notice, this list # of conditions and the following disclaimer. -# + # Redistributions in binary form must reproduce the above copyright notice, this # list of conditions and the following disclaimer in the documentation and/or other # materials provided with the distribution. -# + # Neither the name of the copyright holder nor the names of its contributors may be # used to endorse or promote products derived from this software without specific # prior written permission. -# + +# Redistribution of this software, without modification, must refer to the software +# by the same designation. Redistribution of a modified version of this software +# (i) may not refer to the modified version by the same designation, or by any +# confusingly similar designation, and (ii) must refer to the underlying software +# originally provided by Alliance as “URBANopt”. Except to comply with the foregoing, +# the term “URBANopt”, or any confusingly similar designation may not be used to +# refer to any modified version of this software or any modified version of the +# underlying software originally provided by Alliance without the prior written +# consent of Alliance. + # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND # ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED # WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. diff --git a/example_files/mappers/EvCharging.rb b/example_files/mappers/EvCharging.rb index 506e5db8..c766b5ff 100644 --- a/example_files/mappers/EvCharging.rb +++ b/example_files/mappers/EvCharging.rb @@ -1,21 +1,31 @@ # ********************************************************************************* -# URBANopt™, Copyright (c) 2019-2020, Alliance for Sustainable Energy, LLC, and other +# URBANopt™, Copyright (c) 2019-2021, Alliance for Sustainable Energy, LLC, and other # contributors. All rights reserved. -# + # Redistribution and use in source and binary forms, with or without modification, # are permitted provided that the following conditions are met: -# + # Redistributions of source code must retain the above copyright notice, this list # of conditions and the following disclaimer. -# + # Redistributions in binary form must reproduce the above copyright notice, this # list of conditions and the following disclaimer in the documentation and/or other # materials provided with the distribution. -# + # Neither the name of the copyright holder nor the names of its contributors may be # used to endorse or promote products derived from this software without specific # prior written permission. -# + +# Redistribution of this software, without modification, must refer to the software +# by the same designation. Redistribution of a modified version of this software +# (i) may not refer to the modified version by the same designation, or by any +# confusingly similar designation, and (ii) must refer to the underlying software +# originally provided by Alliance as “URBANopt”. Except to comply with the foregoing, +# the term “URBANopt”, or any confusingly similar designation may not be used to +# refer to any modified version of this software or any modified version of the +# underlying software originally provided by Alliance without the prior written +# consent of Alliance. + # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND # ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED # WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. @@ -41,14 +51,14 @@ module Scenario class EvChargingMapper < HighEfficiencyMapper def create_osw(scenario, features, feature_names) osw = super(scenario, features, feature_names) - + feature = features[0] def ev_charging_type(building_type) typical_home = ['Single-Family', 'Multifamily (2 to 4 units)', 'Multifamily (5 or more units)', 'Lodging'] typical_public = ['Public assembly', 'Strip shopping mall', 'Enclosed mall', 'Retail other than mall', 'Food service', 'Nonrefrigerated warehouse', 'Food sales', 'Refrigerated warehouse', 'Religious worship', 'Service', 'Public order and safety', 'Uncovered Parking', 'Covered Parking'] typical_work = ['Office', 'Laboratory', 'Education', 'Inpatient health care', 'Outpatient health care', 'Nursing'] - + if typical_home.include? building_type return 'Typical Home' elsif typical_public.include? building_type @@ -57,7 +67,7 @@ def ev_charging_type(building_type) return 'Typical Work' end end - + # add EV loads ev_charging = nil @@ -65,7 +75,7 @@ def ev_charging_type(building_type) ev_charging = feature.ev_charging rescue end - + if ev_charging != true puts "Please set ev_charging to true to add EV loads." elsif ev_charging == true diff --git a/example_files/mappers/Floorspace.rb b/example_files/mappers/Floorspace.rb index 84dfe71d..4f245a08 100644 --- a/example_files/mappers/Floorspace.rb +++ b/example_files/mappers/Floorspace.rb @@ -1,21 +1,31 @@ # ********************************************************************************* -# URBANopt, Copyright (c) 2019-2020, Alliance for Sustainable Energy, LLC, and other +# URBANopt™, Copyright (c) 2019-2021, Alliance for Sustainable Energy, LLC, and other # contributors. All rights reserved. -# + # Redistribution and use in source and binary forms, with or without modification, # are permitted provided that the following conditions are met: -# + # Redistributions of source code must retain the above copyright notice, this list # of conditions and the following disclaimer. -# + # Redistributions in binary form must reproduce the above copyright notice, this # list of conditions and the following disclaimer in the documentation and/or other # materials provided with the distribution. -# + # Neither the name of the copyright holder nor the names of its contributors may be # used to endorse or promote products derived from this software without specific # prior written permission. -# + +# Redistribution of this software, without modification, must refer to the software +# by the same designation. Redistribution of a modified version of this software +# (i) may not refer to the modified version by the same designation, or by any +# confusingly similar designation, and (ii) must refer to the underlying software +# originally provided by Alliance as “URBANopt”. Except to comply with the foregoing, +# the term “URBANopt”, or any confusingly similar designation may not be used to +# refer to any modified version of this software or any modified version of the +# underlying software originally provided by Alliance without the prior written +# consent of Alliance. + # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND # ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED # WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. diff --git a/example_files/mappers/HighEfficiency.rb b/example_files/mappers/HighEfficiency.rb index 9503e898..890e75cb 100644 --- a/example_files/mappers/HighEfficiency.rb +++ b/example_files/mappers/HighEfficiency.rb @@ -1,21 +1,31 @@ #********************************************************************************* -# URBANopt™, Copyright (c) 2019-2020, Alliance for Sustainable Energy, LLC, and other +# URBANopt™, Copyright (c) 2019-2021, Alliance for Sustainable Energy, LLC, and other # contributors. All rights reserved. -# + # Redistribution and use in source and binary forms, with or without modification, # are permitted provided that the following conditions are met: -# + # Redistributions of source code must retain the above copyright notice, this list # of conditions and the following disclaimer. -# + # Redistributions in binary form must reproduce the above copyright notice, this # list of conditions and the following disclaimer in the documentation and/or other # materials provided with the distribution. -# + # Neither the name of the copyright holder nor the names of its contributors may be # used to endorse or promote products derived from this software without specific # prior written permission. -# + +# Redistribution of this software, without modification, must refer to the software +# by the same designation. Redistribution of a modified version of this software +# (i) may not refer to the modified version by the same designation, or by any +# confusingly similar designation, and (ii) must refer to the underlying software +# originally provided by Alliance as “URBANopt”. Except to comply with the foregoing, +# the term “URBANopt”, or any confusingly similar designation may not be used to +# refer to any modified version of this software or any modified version of the +# underlying software originally provided by Alliance without the prior written +# consent of Alliance. + # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND # ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED # WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. diff --git a/example_files/mappers/HighEfficiencyCreateBar.rb b/example_files/mappers/HighEfficiencyCreateBar.rb index 5be002b0..6904dc19 100644 --- a/example_files/mappers/HighEfficiencyCreateBar.rb +++ b/example_files/mappers/HighEfficiencyCreateBar.rb @@ -1,22 +1,32 @@ # ********************************************************************************* -# URBANopt, Copyright (c) 2019-2020, Alliance for Sustainable Energy, LLC, and other +# URBANopt™, Copyright (c) 2019-2021, Alliance for Sustainable Energy, LLC, and other # contributors. All rights reserved. -# + # Redistribution and use in source and binary forms, with or without modification, # are permitted provided that the following conditions are met: -# + # Redistributions of source code must retain the above copyright notice, this list # of conditions and the following disclaimer. -# + # Redistributions in binary form must reproduce the above copyright notice, this # list of conditions and the following disclaimer in the documentation and/or other # materials provided with the distribution. -# + # Neither the name of the copyright holder nor the names of its contributors may be # used to endorse or promote products derived from this software without specific # prior written permission. -# + +# Redistribution of this software, without modification, must refer to the software +# by the same designation. Redistribution of a modified version of this software +# (i) may not refer to the modified version by the same designation, or by any +# confusingly similar designation, and (ii) must refer to the underlying software +# originally provided by Alliance as “URBANopt”. Except to comply with the foregoing, +# the term “URBANopt”, or any confusingly similar designation may not be used to +# refer to any modified version of this software or any modified version of the +# underlying software originally provided by Alliance without the prior written +# consent of Alliance. + # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND # ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED # WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. diff --git a/example_files/mappers/HighEfficiencyFloorspace.rb b/example_files/mappers/HighEfficiencyFloorspace.rb index f7404f71..3bf5178c 100644 --- a/example_files/mappers/HighEfficiencyFloorspace.rb +++ b/example_files/mappers/HighEfficiencyFloorspace.rb @@ -1,22 +1,32 @@ # ********************************************************************************* -# URBANopt, Copyright (c) 2019-2020, Alliance for Sustainable Energy, LLC, and other +# URBANopt™, Copyright (c) 2019-2021, Alliance for Sustainable Energy, LLC, and other # contributors. All rights reserved. -# + # Redistribution and use in source and binary forms, with or without modification, # are permitted provided that the following conditions are met: -# + # Redistributions of source code must retain the above copyright notice, this list # of conditions and the following disclaimer. -# + # Redistributions in binary form must reproduce the above copyright notice, this # list of conditions and the following disclaimer in the documentation and/or other # materials provided with the distribution. -# + # Neither the name of the copyright holder nor the names of its contributors may be # used to endorse or promote products derived from this software without specific # prior written permission. -# + +# Redistribution of this software, without modification, must refer to the software +# by the same designation. Redistribution of a modified version of this software +# (i) may not refer to the modified version by the same designation, or by any +# confusingly similar designation, and (ii) must refer to the underlying software +# originally provided by Alliance as “URBANopt”. Except to comply with the foregoing, +# the term “URBANopt”, or any confusingly similar designation may not be used to +# refer to any modified version of this software or any modified version of the +# underlying software originally provided by Alliance without the prior written +# consent of Alliance. + # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND # ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED # WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. diff --git a/example_files/mappers/ThermalStorage.rb b/example_files/mappers/ThermalStorage.rb index 0e7ad742..04d05360 100644 --- a/example_files/mappers/ThermalStorage.rb +++ b/example_files/mappers/ThermalStorage.rb @@ -1,21 +1,31 @@ # ********************************************************************************* -# URBANopt™, Copyright (c) 2019-2020, Alliance for Sustainable Energy, LLC, and other +# URBANopt™, Copyright (c) 2019-2021, Alliance for Sustainable Energy, LLC, and other # contributors. All rights reserved. -# + # Redistribution and use in source and binary forms, with or without modification, # are permitted provided that the following conditions are met: -# + # Redistributions of source code must retain the above copyright notice, this list # of conditions and the following disclaimer. -# + # Redistributions in binary form must reproduce the above copyright notice, this # list of conditions and the following disclaimer in the documentation and/or other # materials provided with the distribution. -# + # Neither the name of the copyright holder nor the names of its contributors may be # used to endorse or promote products derived from this software without specific # prior written permission. -# + +# Redistribution of this software, without modification, must refer to the software +# by the same designation. Redistribution of a modified version of this software +# (i) may not refer to the modified version by the same designation, or by any +# confusingly similar designation, and (ii) must refer to the underlying software +# originally provided by Alliance as “URBANopt”. Except to comply with the foregoing, +# the term “URBANopt”, or any confusingly similar designation may not be used to +# refer to any modified version of this software or any modified version of the +# underlying software originally provided by Alliance without the prior written +# consent of Alliance. + # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND # ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED # WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. diff --git a/lib/uo_cli.rb b/lib/uo_cli.rb index ae3cbf68..e5106376 100755 --- a/lib/uo_cli.rb +++ b/lib/uo_cli.rb @@ -1,23 +1,33 @@ #!/usr/bin/ ruby # ********************************************************************************* -# URBANopt™, Copyright (c) 2019-2020, Alliance for Sustainable Energy, LLC, and other +# URBANopt™, Copyright (c) 2019-2021, Alliance for Sustainable Energy, LLC, and other # contributors. All rights reserved. -# + # Redistribution and use in source and binary forms, with or without modification, # are permitted provided that the following conditions are met: -# + # Redistributions of source code must retain the above copyright notice, this list # of conditions and the following disclaimer. -# + # Redistributions in binary form must reproduce the above copyright notice, this # list of conditions and the following disclaimer in the documentation and/or other # materials provided with the distribution. -# + # Neither the name of the copyright holder nor the names of its contributors may be # used to endorse or promote products derived from this software without specific # prior written permission. -# + +# Redistribution of this software, without modification, must refer to the software +# by the same designation. Redistribution of a modified version of this software +# (i) may not refer to the modified version by the same designation, or by any +# confusingly similar designation, and (ii) must refer to the underlying software +# originally provided by Alliance as “URBANopt”. Except to comply with the foregoing, +# the term “URBANopt”, or any confusingly similar designation may not be used to +# refer to any modified version of this software or any modified version of the +# underlying software originally provided by Alliance without the prior written +# consent of Alliance. + # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND # ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED # WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. diff --git a/lib/uo_cli/version.rb b/lib/uo_cli/version.rb index 80e6d984..99935517 100644 --- a/lib/uo_cli/version.rb +++ b/lib/uo_cli/version.rb @@ -1,21 +1,31 @@ # ********************************************************************************* -# URBANopt™, Copyright (c) 2019-2020, Alliance for Sustainable Energy, LLC, and other +# URBANopt™, Copyright (c) 2019-2021, Alliance for Sustainable Energy, LLC, and other # contributors. All rights reserved. -# + # Redistribution and use in source and binary forms, with or without modification, # are permitted provided that the following conditions are met: -# + # Redistributions of source code must retain the above copyright notice, this list # of conditions and the following disclaimer. -# + # Redistributions in binary form must reproduce the above copyright notice, this # list of conditions and the following disclaimer in the documentation and/or other # materials provided with the distribution. -# + # Neither the name of the copyright holder nor the names of its contributors may be # used to endorse or promote products derived from this software without specific # prior written permission. -# + +# Redistribution of this software, without modification, must refer to the software +# by the same designation. Redistribution of a modified version of this software +# (i) may not refer to the modified version by the same designation, or by any +# confusingly similar designation, and (ii) must refer to the underlying software +# originally provided by Alliance as “URBANopt”. Except to comply with the foregoing, +# the term “URBANopt”, or any confusingly similar designation may not be used to +# refer to any modified version of this software or any modified version of the +# underlying software originally provided by Alliance without the prior written +# consent of Alliance. + # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND # ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED # WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb index 4cacc72c..49aaf0cb 100644 --- a/spec/spec_helper.rb +++ b/spec/spec_helper.rb @@ -1,21 +1,31 @@ # ********************************************************************************* -# URBANopt™, Copyright (c) 2019-2020, Alliance for Sustainable Energy, LLC, and other +# URBANopt™, Copyright (c) 2019-2021, Alliance for Sustainable Energy, LLC, and other # contributors. All rights reserved. -# + # Redistribution and use in source and binary forms, with or without modification, # are permitted provided that the following conditions are met: -# + # Redistributions of source code must retain the above copyright notice, this list # of conditions and the following disclaimer. -# + # Redistributions in binary form must reproduce the above copyright notice, this # list of conditions and the following disclaimer in the documentation and/or other # materials provided with the distribution. -# + # Neither the name of the copyright holder nor the names of its contributors may be # used to endorse or promote products derived from this software without specific # prior written permission. -# + +# Redistribution of this software, without modification, must refer to the software +# by the same designation. Redistribution of a modified version of this software +# (i) may not refer to the modified version by the same designation, or by any +# confusingly similar designation, and (ii) must refer to the underlying software +# originally provided by Alliance as “URBANopt”. Except to comply with the foregoing, +# the term “URBANopt”, or any confusingly similar designation may not be used to +# refer to any modified version of this software or any modified version of the +# underlying software originally provided by Alliance without the prior written +# consent of Alliance. + # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND # ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED # WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. diff --git a/spec/uo_cli_spec.rb b/spec/uo_cli_spec.rb index a1127295..b818abd1 100644 --- a/spec/uo_cli_spec.rb +++ b/spec/uo_cli_spec.rb @@ -1,21 +1,31 @@ # ********************************************************************************* -# URBANopt™, Copyright (c) 2019-2020, Alliance for Sustainable Energy, LLC, and other +# URBANopt™, Copyright (c) 2019-2021, Alliance for Sustainable Energy, LLC, and other # contributors. All rights reserved. -# + # Redistribution and use in source and binary forms, with or without modification, # are permitted provided that the following conditions are met: -# + # Redistributions of source code must retain the above copyright notice, this list # of conditions and the following disclaimer. -# + # Redistributions in binary form must reproduce the above copyright notice, this # list of conditions and the following disclaimer in the documentation and/or other # materials provided with the distribution. -# + # Neither the name of the copyright holder nor the names of its contributors may be # used to endorse or promote products derived from this software without specific # prior written permission. -# + +# Redistribution of this software, without modification, must refer to the software +# by the same designation. Redistribution of a modified version of this software +# (i) may not refer to the modified version by the same designation, or by any +# confusingly similar designation, and (ii) must refer to the underlying software +# originally provided by Alliance as “URBANopt”. Except to comply with the foregoing, +# the term “URBANopt”, or any confusingly similar designation may not be used to +# refer to any modified version of this software or any modified version of the +# underlying software originally provided by Alliance without the prior written +# consent of Alliance. + # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND # ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED # WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. From cb669e2f3dd74a9b86c374e9b65253a04ef8a1b2 Mon Sep 17 00:00:00 2001 From: Tim Colemanls Date: Mon, 15 Mar 2021 14:03:07 -0600 Subject: [PATCH 03/12] Update installer for 0.5.1 --- CMakeLists.txt | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 7a9dcd7e..fb6468c4 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,7 +1,7 @@ cmake_minimum_required(VERSION 3.10.2) cmake_policy(SET CMP0048 NEW) -project(UrbanOptCLI VERSION 0.5.0) +project(UrbanOptCLI VERSION 0.5.1) include(FindOpenStudioSDK.cmake) @@ -89,16 +89,16 @@ option(BUILD_PACKAGE "Build package" OFF) # need to update the MD5sum for each platform and url below if(UNIX) if(APPLE) - set(URBANOPT_CLI_GEMS_ZIP_FILENAME "urbanopt-cli-gems-20201229-darwin.tar.gz") - set(URBANOPT_CLI_GEMS_ZIP_EXPECTED_MD5 "729fc3e28d067507cc468dc44a013c36") + set(URBANOPT_CLI_GEMS_ZIP_FILENAME "urbanopt-cli-gems-20210315-darwin.tar.gz") + set(URBANOPT_CLI_GEMS_ZIP_EXPECTED_MD5 "5df336da22c90534c8940c41e6489b37") else() - set(URBANOPT_CLI_GEMS_ZIP_FILENAME "urbanopt-cli-gems-20201229-linux.tar.gz") - set(URBANOPT_CLI_GEMS_ZIP_EXPECTED_MD5 "611f8b4ea835279b25003dbbf4f87a8c") + set(URBANOPT_CLI_GEMS_ZIP_FILENAME "urbanopt-cli-gems-20210315-linux.tar.gz") + set(URBANOPT_CLI_GEMS_ZIP_EXPECTED_MD5 "6e92becdac2d67046340daf16faea8b2") endif() elseif(WIN32) if(CMAKE_CL_64) - set(URBANOPT_CLI_GEMS_ZIP_FILENAME "urbanopt-cli-gems-20201230-windows.tar.gz") - set(URBANOPT_CLI_GEMS_ZIP_EXPECTED_MD5 "147b1dce55875b4d39b953de3def4b0c") + set(URBANOPT_CLI_GEMS_ZIP_FILENAME "urbanopt-cli-gems-20210315-windows.tar.gz") + set(URBANOPT_CLI_GEMS_ZIP_EXPECTED_MD5 "7757341548b0e7488e83aba0a01191df") endif() endif() @@ -127,7 +127,7 @@ if(UNIX) if(APPLE) set(RUBY_ZIP_FILENAME "ruby-2.5.5-darwin.tar.gz") set(RUBY_ZIP_EXPECTED_MD5 "27e3e91bd19f4edf1c04d31c7345ce5d") - else() + else() set(RUBY_ZIP_FILENAME "ruby-2.5.5-linux.tar.gz") set(RUBY_ZIP_EXPECTED_MD5 "5c9ab1aeb3366e6e579592cbb72ddbef") endif() From 2596b08400c54c8722aef0134879868702a19340 Mon Sep 17 00:00:00 2001 From: Tim Colemanls Date: Mon, 15 Mar 2021 17:45:55 -0600 Subject: [PATCH 04/12] Update windows gems --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index fb6468c4..29ebd9bc 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -98,7 +98,7 @@ if(UNIX) elseif(WIN32) if(CMAKE_CL_64) set(URBANOPT_CLI_GEMS_ZIP_FILENAME "urbanopt-cli-gems-20210315-windows.tar.gz") - set(URBANOPT_CLI_GEMS_ZIP_EXPECTED_MD5 "7757341548b0e7488e83aba0a01191df") + set(URBANOPT_CLI_GEMS_ZIP_EXPECTED_MD5 "be2cde77dde2891d8111454bb280bbdc") endif() endif() From 4ed0f51b6db68a7b0dce15240eba8bfe065c4177 Mon Sep 17 00:00:00 2001 From: Nathan Moore Date: Tue, 16 Mar 2021 12:16:06 -0600 Subject: [PATCH 05/12] error handling for create -s command (#209) * error handling for create -s command * argh, fix mistake I made when fixing conflicts --- lib/uo_cli.rb | 38 ++++++++++++++++++++++++++------------ spec/uo_cli_spec.rb | 27 +++++++++++++++++++++++++++ 2 files changed, 53 insertions(+), 12 deletions(-) diff --git a/lib/uo_cli.rb b/lib/uo_cli.rb index e5106376..8b56f8ed 100755 --- a/lib/uo_cli.rb +++ b/lib/uo_cli.rb @@ -332,7 +332,16 @@ def self.run_func # params\ # +feature_file_path+:: _string_ Path to a FeatureFile def self.create_scenario_csv_file(feature_id) - feature_file_json = JSON.parse(File.read(File.expand_path(@opthash.subopts[:scenario_file])), symbolize_names: true) + begin + feature_file_json = JSON.parse(File.read(File.expand_path(@opthash.subopts[:scenario_file])), symbolize_names: true) + # Rescue if user provides path to a dir and not a file + rescue Errno::EISDIR => dir_error + wrong_path = dir_error.to_s.split(' - ')[-1] + abort("\nOops! '#{wrong_path}' is a directory. Please provide path to the geojson feature_file") + # Rescue if file isn't json + rescue JSON::ParserError => json_error + abort("\nOops! You didn't provide a json file. Please provide path to the geojson feature_file") + end Dir["#{@feature_path}/mappers/*.rb"].each do |mapper_file| mapper_name = File.basename(mapper_file, File.extname(mapper_file)) scenario_file_name = if feature_id == 'SKIP' @@ -342,20 +351,25 @@ def self.create_scenario_csv_file(feature_id) end CSV.open(File.join(@feature_path, scenario_file_name), 'wb', write_headers: true, headers: ['Feature Id', 'Feature Name', 'Mapper Class']) do |csv| - feature_file_json[:features].each do |feature| - if feature_id == 'SKIP' - # ensure that feature is a building - if feature[:properties][:type] == 'Building' + begin + feature_file_json[:features].each do |feature| + if feature_id == 'SKIP' + # ensure that feature is a building + if feature[:properties][:type] == 'Building' + csv << [feature[:properties][:id], feature[:properties][:name], "URBANopt::Scenario::#{mapper_name}Mapper"] + end + elsif feature_id == feature[:properties][:id] csv << [feature[:properties][:id], feature[:properties][:name], "URBANopt::Scenario::#{mapper_name}Mapper"] - end - elsif feature_id == feature[:properties][:id] - csv << [feature[:properties][:id], feature[:properties][:name], "URBANopt::Scenario::#{mapper_name}Mapper"] - elsif - # If Feature ID specified does not exist in the Feature File raise error - unless feature_file_json[:features].any? { |hash| hash[:properties][:id].include?(feature_id.to_s) } - abort("\nYou must provide Feature ID from FeatureFile!\n---\n\n") + elsif + # If Feature ID specified does not exist in the Feature File raise error + unless feature_file_json[:features].any? { |hash| hash[:properties][:id].include?(feature_id.to_s) } + abort("\nYou must provide Feature ID from FeatureFile!\n---\n\n") + end end end + # Rescue if json isn't a geojson feature_file + rescue NoMethodError + abort("\nOops! You didn't provde a valid feature_file. Please provide path to the geojson feature_file") end end end diff --git a/spec/uo_cli_spec.rb b/spec/uo_cli_spec.rb index b818abd1..84145829 100644 --- a/spec/uo_cli_spec.rb +++ b/spec/uo_cli_spec.rb @@ -81,6 +81,33 @@ def delete_directory_or_file(dir_or_file) .to_stdout_from_any_process end + it 'returns graceful error message if dir passed to "create -s" command' do + unless Dir.exist?(File.expand_path(test_directory)) + system("#{call_cli} create --project-folder #{test_directory}") + end + expect { system("#{call_cli} create -s #{test_directory}") } + .to output(a_string_including('is a directory.')) + .to_stderr_from_any_process + end + + it 'returns graceful error message if non-json file passed to create -s command' do + unless Dir.exist?(File.expand_path(test_directory)) + system("#{call_cli} create --project-folder #{test_directory}") + end + expect { system("#{call_cli} create -s #{test_directory}/validation_schema.yaml") } + .to output(a_string_including("didn't provide a json file.")) + .to_stderr_from_any_process + end + + it 'returns graceful error message if invalid json file passed to create -s command' do + unless Dir.exist?(File.expand_path(test_directory)) + system("#{call_cli} create --project-folder #{test_directory}") + end + expect { system("#{call_cli} create -s #{test_directory}/runner.conf") } + .to output(a_string_including("didn't provde a valid feature_file.")) + .to_stderr_from_any_process + end + it 'returns graceful error when no command given' do expect { system(call_cli) } .to output(a_string_including('Invalid command')) From 511209eebb1012a3453458d28a8f98995478231d Mon Sep 17 00:00:00 2001 From: Nathan Moore Date: Thu, 25 Mar 2021 08:43:53 -0600 Subject: [PATCH 06/12] Des cli (#216) * WIP access des cli * des cli details * python requirements file, since we now require 2 pypi packages for complete functionality --- lib/uo_cli.rb | 151 ++++++++++++++++++++++++++++++++++++++++------- requirements.txt | 2 + 2 files changed, 132 insertions(+), 21 deletions(-) create mode 100644 requirements.txt diff --git a/lib/uo_cli.rb b/lib/uo_cli.rb index 8b56f8ed..188189f6 100755 --- a/lib/uo_cli.rb +++ b/lib/uo_cli.rb @@ -63,7 +63,10 @@ class UrbanOptCLI 'process' => 'Post-process URBANopt simulations for additional insights', 'visualize' => 'Visualize and compare results for features and scenarios', 'validate' => 'Validate results with custom rules', - 'delete' => 'Delete simulations for a specified scenario' + 'delete' => 'Delete simulations for a specified scenario', + 'des_params' => 'Make a DES system parameters config file', + 'des_create' => 'Create a Modelica model', + 'des_run' => 'Run a Modelica DES model' }.freeze def initialize @@ -96,9 +99,8 @@ def initialize # Define creation commands def opt_create - cmd = @command @subopts = Optimist.options do - banner "\nURBANopt #{cmd}:\n \n" + banner "\nURBANopt #{@command}:\n \n" opt :project_folder, "\nCreate project directory in your current folder. Name the directory\n" \ "Add additional tags to specify the method for creating geometry, or use the default urban geometry creation method to create building geometry from geojson coordinates with core and perimeter zoning\n" \ @@ -149,35 +151,33 @@ def opt_create # Define running commands def opt_run - cmd = @command @subopts = Optimist.options do - banner "\nURBANopt #{cmd}:\n \n" + banner "\nURBANopt #{@command}:\n \n" opt :reopt, "\nSimulate with additional REopt functionality. Must do this before post-processing with REopt" opt :scenario, "\nRun URBANopt simulations for \n" \ "Requires --feature also be specified\n" \ - 'Example: uo run --scenario baseline_scenario-2.csv --feature example_project.json', default: 'baseline_scenario.csv', required: true + 'Example: uo run --scenario baseline_scenario-2.csv --feature example_project.json', default: 'baseline_scenario.csv', required: true, short: :s opt :feature, "\nRun URBANopt simulations according to \n" \ "Requires --scenario also be specified\n" \ - 'Example: uo run --scenario baseline_scenario.csv --feature example_project.json', default: 'example_project.json', required: true + 'Example: uo run --scenario baseline_scenario.csv --feature example_project.json', default: 'example_project.json', required: true, short: :f end end # Define opendss commands def opt_opendss - cmd = @command @subopts = Optimist.options do - banner "\nURBANopt #{cmd}:\n\n" + banner "\nURBANopt #{@command}:\n\n" opt :scenario, "\nRun OpenDSS simulations for \n" \ "Requires --feature also be specified\n" \ - 'Example: uo opendss --scenario baseline_scenario-2.csv --feature example_project.json', default: 'baseline_scenario.csv' + 'Example: uo opendss --scenario baseline_scenario-2.csv --feature example_project.json', default: 'baseline_scenario.csv', short: :s opt :feature, "\nRun OpenDSS simulations according to \n" \ "Requires --scenario also be specified\n" \ - 'Example: uo opendss --scenario baseline_scenario.csv --feature example_project.json', default: 'example_project_with_electric_network.json' + 'Example: uo opendss --scenario baseline_scenario.csv --feature example_project.json', default: 'example_project_with_electric_network.json', short: :f opt :equipment, "\nRun OpenDSS simulations using . If not specified, the electrical_database.json from urbanopt-ditto-reader will be used.\n" \ 'Example: uo opendss --scenario baseline_scenario.csv --feature example_project.json', type: String, short: :e @@ -206,9 +206,8 @@ def opt_opendss # Define post-processing commands def opt_process - cmd = @command @subopts = Optimist.options do - banner "\nURBANopt #{cmd}:\n \n" + banner "\nURBANopt #{@command}:\n \n" opt :default, "\nStandard post-processing for your scenario" @@ -226,17 +225,16 @@ def opt_process opt :reopt_scenario_assumptions_file, "\nPath to the scenario REopt assumptions JSON file you want to use. Use with the --reopt-scenario post-processor. " \ "If not specified, the reopt/base_assumptions.json file will be used", type: String, short: :a - opt :scenario, "\nSelect which scenario to optimize", default: 'baseline_scenario.csv', required: true + opt :scenario, "\nSelect which scenario to optimize", default: 'baseline_scenario.csv', required: true, short: :s - opt :feature, "\nSelect which FeatureFile to use", default: 'example_project.json', required: true + opt :feature, "\nSelect which FeatureFile to use", default: 'example_project.json', required: true, short: :f end end # Define visualization commands def opt_visualize - cmd = @command @subopts = Optimist.options do - banner "\nURBANopt #{cmd}:\n \n" + banner "\nURBANopt #{@command}:\n \n" opt :feature, "\nVisualize results for all scenarios for a feature file\n" \ "Provide the FeatureFile to visualize each associated scenario\n" \ @@ -257,23 +255,68 @@ def opt_validate "Provide path to the validation_schema.yaml file in your project directory\n" \ "Example: uo validate --eui validation_schema.yaml", type: String - opt :scenario, "\nProvide the scenario CSV file to validate features from that scenario\n", type: String, required: true + opt :scenario, "\nProvide the scenario CSV file to validate features from that scenario\n", type: String, required: true, short: :s - opt :feature, "\nProvide the Feature JSON file to include info about each feature\n", type: String, required: true + opt :feature, "\nProvide the Feature JSON file to include info about each feature\n", type: String, required: true, short: :f opt :units, "\nSI (kWh/m2/yr) or IP (kBtu/ft2/yr)", type: String, default: 'IP' end end def opt_delete - cmd = @command @subopts = Optimist.options do - banner "\nURBANopt #{cmd}:\n \n" + banner "\nURBANopt #{@command}:\n \n" opt :scenario, "\nDelete simulation files for this scenario", default: 'baseline_scenario.csv', required: true end end + def opt_des_params + @subopts = Optimist.options do + banner "\nURBANopt #{@command}:\n \n" + + opt :sys_param_file, "\nBuild a system parameters JSON config file for Modelica DES simulation using URBANopt SDK outputs\n" \ + "Provide path/name of json file to be created\n" \ + "Example: uo des_params --sys-param-file path/to/sys_params.json", type: String, required: true, short: :y + + opt :scenario, "\nPath to the scenario CSV file\n" \ + "Example: uo des_params --sys-param-file path/to/sys_params.json --scenario path/to/baseline_scenario.csv\n", type: String, required: true, short: :s + + opt :feature, "\nPath to the feature JSON file\n" \ + "Example: uo des_params --sys-param-file path/to/sys_params.json --feature path/to/example_project.json\n", type: String, required: true, short: :f + + opt :model_type, "\nSelection for which kind of DES simulation to perform\n" \ + "Valid choices: 'time_series'", type: String, default: 'time_series' + end + end + + def opt_des_create + @subopts = Optimist.options do + banner "\nURBANopt #{@command}:\n" + banner "" + opt :sys_param, "Path to system parameters config file, possibly created with 'des_params' command in this CLI\n" \ + "Example: uo des_create --sys-param system_parameters.json\n", type: String, required: true, short: :y + banner "" + opt :feature, "Path to the feature JSON file\n" \ + "Example: uo des_create --feature path/to/example_project.json", type: String, required: true, short: :f + + opt :des_name, "\nPath to Modelica project dir to be created\n" \ + "Example: uo des_create --des-name path/to/example_modelica_project", type: String, required: true + + opt :model_type, "\nSelection for which kind of DES simulation to perform\n" \ + "Valid choices: 'time_series'", type: String, default: 'time_series' + end + end + + def opt_des_run + @subopts = Optimist.options do + banner "\nURBANopt #{@command}:\n \n" + + opt :model, "\nPath to Modelica model dir, possibly created with 'des_create' command in this CLI\n" \ + "Example: uo des_run --model path/to/model/dir", type: String, required: true + end + end + attr_reader :mainopts, :command, :subopts end @@ -965,6 +1008,72 @@ def self.check_reader end end + if @opthash.command == 'des_params' + # We're calling the python cli that gets installed when the user pip installs geojson-modelica-reader. + # If geojson-modelica-reader is installed into a venv (recommended), that venv must be activated when this command is called. + des_cli_root = "uo_des build-sys-param" + if @opthash.subopts[:sys_param_file] + des_cli_addition = " #{@opthash.subopts[:sys_param_file]}" + if @opthash.subopts[:scenario] + des_cli_addition += " #{@opthash.subopts[:scenario]}" + end + if @opthash.subopts[:feature] + des_cli_addition += " #{@opthash.subopts[:feature]}" + end + if @opthash.subopts[:model_type] + des_cli_addition += " #{@opthash.subopts[:model_type]}" + end + else + abort("\nCommand must include new system parameter file name, ScenarioFile, & FeatureFile. Please try again") + end + begin + system(des_cli_root + des_cli_addition) + rescue FileNotFoundError + abort("\nMust simulate using 'uo run' before preparing Modelica models.") + end + end + + if @opthash.command == 'des_create' + # We're calling the python cli that gets installed when the user pip installs geojson-modelica-reader. + # If geojson-modelica-reader is installed into a venv (recommended), that venv must be activated when this command is called. + des_cli_root = "uo_des create-model" + if @opthash.subopts[:sys_param] + des_cli_addition = " #{@opthash.subopts[:sys_param]}" + if @opthash.subopts[:feature] + des_cli_addition += " #{@opthash.subopts[:feature]}" + end + if @opthash.subopts[:des_name] + des_cli_addition += " #{File.expand_path(@opthash.subopts[:des_name])}" + end + if @opthash.subopts[:model_type] + des_cli_addition += " #{@opthash.subopts[:model_type]}" + end + else + abort("\nCommand must include system parameter file name, FeatureFile, and model name. Please try again") + end + begin + system(des_cli_root + des_cli_addition) + rescue FileNotFoundError + abort("\nMust simulate using 'uo run' before preparing Modelica models.") + end + end + + if @opthash.command == 'des_run' + # We're calling the python cli that gets installed when the user pip installs geojson-modelica-reader. + # If geojson-modelica-reader is installed into a venv (recommended), that venv must be activated when this command is called. + des_cli_root = "uo_des run-model" + if @opthash.subopts[:model] + des_cli_addition = " #{File.expand_path(@opthash.subopts[:model])}" + else + abort("\nCommand must include Modelica model name. Please try again") + end + begin + system(des_cli_root + des_cli_addition) + rescue FileNotFoundError + abort("\nMust simulate using 'uo run' before preparing Modelica models.") + end + end + # Delete simulations from a scenario if @opthash.command == 'delete' scenario_results_dir = File.join(@root_dir, 'run', @scenario_name.downcase) diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 00000000..aae48d39 --- /dev/null +++ b/requirements.txt @@ -0,0 +1,2 @@ +geojson-modelica-translator~=0.2.2 +urbanopt-ditto-reader~=0.3.8 From f5fbc953d3d22679ff286361060bbcccef1b2b82 Mon Sep 17 00:00:00 2001 From: Nathan Moore Date: Tue, 30 Mar 2021 14:05:42 -0600 Subject: [PATCH 07/12] update hpxml bundle (#211) --- .../resources/hpxml-measures/Gemfile.lock | 45 ++++++------------- 1 file changed, 14 insertions(+), 31 deletions(-) diff --git a/example_files/resources/hpxml-measures/Gemfile.lock b/example_files/resources/hpxml-measures/Gemfile.lock index 8fefe10c..ab904f62 100644 --- a/example_files/resources/hpxml-measures/Gemfile.lock +++ b/example_files/resources/hpxml-measures/Gemfile.lock @@ -1,54 +1,39 @@ -GIT - remote: http://github.com/shorowit/schematron.git - revision: 2e26890fa1fc918198270f94abc7caf659d18bb2 - branch: return_context_path - specs: - schematron-nokogiri (0.0.2) - nokogiri (~> 1.6) - GEM remote: http://rubygems.org/ specs: ansi (1.5.0) - ast (2.4.1) + ast (2.4.2) builder (3.2.4) ci_reporter (2.0.0) builder (>= 2.1.2) ci_reporter_minitest (1.0.0) ci_reporter (~> 2.0) minitest (~> 5.0) - codecov (0.2.0) - colorize - json - simplecov - colorize (0.8.1) - docile (1.3.2) - json (2.3.1) - mini_portile2 (2.4.0) - minitest (5.14.1) + codecov (0.5.1) + simplecov (>= 0.15, < 0.22) + docile (1.3.5) + minitest (5.14.4) minitest-ci (3.4.0) minitest (>= 5.0.6) - minitest-reporters (1.4.2) + minitest-reporters (1.4.3) ansi builder minitest (>= 5.0) ruby-progressbar - nokogiri (1.10.10) - mini_portile2 (~> 2.4.0) - nokogiri (1.10.10-x64-mingw32) - mini_portile2 (~> 2.4.0) - oga (3.2) + oga (3.3) ast ruby-ll (~> 2.1) - rake (13.0.1) + rake (13.0.3) ruby-ll (2.1.2) ansi ast - ruby-progressbar (1.10.1) - simplecov (0.18.5) + ruby-progressbar (1.11.0) + simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) - simplecov-html (0.12.2) + simplecov_json_formatter (~> 0.1) + simplecov-html (0.12.3) + simplecov_json_formatter (0.1.2) PLATFORMS ruby @@ -60,11 +45,9 @@ DEPENDENCIES minitest (~> 5.9) minitest-ci minitest-reporters - nokogiri (~> 1.10) oga rake - schematron-nokogiri! simplecov BUNDLED WITH - 2.1.4 + 2.2.7 From 087adbcb9b49ab57114a344d2fe3b4d603a799b4 Mon Sep 17 00:00:00 2001 From: Rawad El Kontar Date: Tue, 30 Mar 2021 15:31:46 -0600 Subject: [PATCH 08/12] set save_feature_reports to false when saving the scenario reports --- lib/uo_cli.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/uo_cli.rb b/lib/uo_cli.rb index 188189f6..2fbfa93d 100755 --- a/lib/uo_cli.rb +++ b/lib/uo_cli.rb @@ -817,7 +817,7 @@ def self.check_reader default_post_processor = URBANopt::Scenario::ScenarioDefaultPostProcessor.new(run_func) scenario_report = default_post_processor.run - scenario_report.save + scenario_report.save(save_feature_reports = false) scenario_report.feature_reports.each(&:save) if @opthash.subopts[:with_database] == true From e2c3b65066f43ec5447b22fa6f109ef608fbe732 Mon Sep 17 00:00:00 2001 From: kflemin Date: Wed, 31 Mar 2021 10:12:44 -0600 Subject: [PATCH 09/12] update reporting gem --- uo_cli.gemspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/uo_cli.gemspec b/uo_cli.gemspec index 35c9069a..f4558932 100644 --- a/uo_cli.gemspec +++ b/uo_cli.gemspec @@ -37,7 +37,7 @@ Gem::Specification.new do |spec| spec.add_runtime_dependency 'urbanopt-geojson', '~> 0.5.2' spec.add_runtime_dependency 'urbanopt-reopt', '~> 0.5.4' spec.add_runtime_dependency 'urbanopt-scenario', '~> 0.5.1' - spec.add_runtime_dependency 'urbanopt-reporting', '~> 0.3.6' + spec.add_runtime_dependency 'urbanopt-reporting', '~> 0.3.7' spec.add_development_dependency 'bundler', '~> 2.1' spec.add_development_dependency 'rake', '~> 13.0' From 818c7a63e5bfaca22e0ee2d6b08cb43fa0971acd Mon Sep 17 00:00:00 2001 From: Rawad El Kontar Date: Wed, 31 Mar 2021 12:46:20 -0600 Subject: [PATCH 10/12] fix method arguments --- lib/uo_cli.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/uo_cli.rb b/lib/uo_cli.rb index 2fbfa93d..b07f8fcb 100755 --- a/lib/uo_cli.rb +++ b/lib/uo_cli.rb @@ -817,7 +817,7 @@ def self.check_reader default_post_processor = URBANopt::Scenario::ScenarioDefaultPostProcessor.new(run_func) scenario_report = default_post_processor.run - scenario_report.save(save_feature_reports = false) + scenario_report.save(file_name = 'default_scenario_report', save_feature_reports = false) scenario_report.feature_reports.each(&:save) if @opthash.subopts[:with_database] == true From 415f4a29a1a443a9c982ec71bd35964e29def074 Mon Sep 17 00:00:00 2001 From: kflemin Date: Wed, 31 Mar 2021 14:29:42 -0600 Subject: [PATCH 11/12] adding updated residential files --- example_files/example_project_combined.json | 105 +- example_files/mappers/Baseline.rb | 79 +- example_files/mappers/HighEfficiency.rb | 22 +- .../measures/BuildResidentialModel/measure.rb | 340 +- .../measure.rb | 1005 -- .../measure.xml | 326 - ...e_residential_multifamily_geometry_test.rb | 477 - .../measure.rb | 1039 -- .../measure.xml | 393 - ...al_single_family_attached_geometry_test.rb | 456 - .../measure.rb | 979 -- .../measure.xml | 388 - ...al_single_family_detached_geometry_test.rb | 704 -- example_files/residential/clothes_dryer.tsv | 14 +- example_files/residential/clothes_washer.tsv | 2 +- example_files/residential/cooling_system.tsv | 64 +- example_files/residential/dishwasher.tsv | 2 +- example_files/residential/exhaust.tsv | 3 + example_files/residential/heat_pump.tsv | 102 +- .../hpxml-measures/.circleci/config.yml | 20 - .../.github/pull_request_template.md | 1 + .../.github/workflows/config.yml | 23 + .../resources/hpxml-measures/.gitignore | 9 +- .../BuildResidentialHPXML/measure.rb | 1821 ++-- .../BuildResidentialHPXML/measure.xml | 2735 ++--- .../resources/constants.rb | 8 - .../resources/geometry.rb | 759 +- .../resources/location.rb | 24 - .../resources/schedules.rb | 166 +- ...ekday_state_and_monthly_schedule_shift.csv | 613 ++ ...ekend_state_and_monthly_schedule_shift.csv | 613 ++ .../tests/base-appliances-coal.osw | 86 +- ...base-appliances-dehumidifier-50percent.osw | 84 +- ...e-appliances-dehumidifier-ief-portable.osw | 84 +- ...appliances-dehumidifier-ief-whole-home.osw | 84 +- .../tests/base-appliances-dehumidifier.osw | 84 +- .../tests/base-appliances-gas.osw | 86 +- .../tests/base-appliances-modified.osw | 86 +- .../tests/base-appliances-none.osw | 96 +- .../tests/base-appliances-oil.osw | 86 +- .../tests/base-appliances-propane.osw | 86 +- .../tests/base-appliances-wood.osw | 86 +- .../tests/base-atticroof-flat.osw | 86 +- .../tests/base-atticroof-radiant-barrier.osw | 86 +- ...base-atticroof-unvented-insulated-roof.osw | 86 +- .../tests/base-atticroof-vented.osw | 86 +- ...family-shared-mechvent-preconditioning.osw | 86 +- ...e-bldgtype-multifamily-shared-mechvent.osw | 86 +- .../base-bldgtype-multifamily-shared-pv.osw | 86 +- ...dgtype-multifamily-shared-water-heater.osw | 86 +- .../tests/base-bldgtype-multifamily.osw | 86 +- .../base-bldgtype-single-family-attached.osw | 86 +- .../tests/base-dhw-combi-tankless-outside.osw | 87 +- .../tests/base-dhw-combi-tankless.osw | 87 +- .../tests/base-dhw-dwhr.osw | 86 +- .../tests/base-dhw-indirect-outside.osw | 87 +- .../tests/base-dhw-indirect-standbyloss.osw | 87 +- .../base-dhw-indirect-with-solar-fraction.osw | 87 +- .../tests/base-dhw-indirect.osw | 87 +- .../tests/base-dhw-jacket-electric.osw | 86 +- .../tests/base-dhw-jacket-gas.osw | 86 +- .../tests/base-dhw-jacket-hpwh.osw | 86 +- .../tests/base-dhw-jacket-indirect.osw | 87 +- .../tests/base-dhw-low-flow-fixtures.osw | 86 +- .../tests/base-dhw-none.osw | 88 +- .../tests/base-dhw-recirc-demand.osw | 86 +- .../tests/base-dhw-recirc-manual.osw | 86 +- .../tests/base-dhw-recirc-nocontrol.osw | 86 +- .../tests/base-dhw-recirc-temperature.osw | 86 +- .../tests/base-dhw-recirc-timer.osw | 86 +- .../base-dhw-solar-direct-evacuated-tube.osw | 86 +- .../base-dhw-solar-direct-flat-plate.osw | 86 +- .../tests/base-dhw-solar-direct-ics.osw | 86 +- .../tests/base-dhw-solar-fraction.osw | 86 +- .../base-dhw-solar-indirect-flat-plate.osw | 86 +- ...base-dhw-solar-thermosyphon-flat-plate.osw | 86 +- .../tests/base-dhw-tank-coal.osw | 86 +- .../tests/base-dhw-tank-elec-uef.osw | 86 +- .../tests/base-dhw-tank-gas-outside.osw | 86 +- .../tests/base-dhw-tank-gas-uef.osw | 86 +- .../tests/base-dhw-tank-gas.osw | 86 +- .../tests/base-dhw-tank-heat-pump-outside.osw | 86 +- .../tests/base-dhw-tank-heat-pump-uef.osw | 86 +- ...dhw-tank-heat-pump-with-solar-fraction.osw | 86 +- .../base-dhw-tank-heat-pump-with-solar.osw | 86 +- .../tests/base-dhw-tank-heat-pump.osw | 86 +- .../tests/base-dhw-tank-oil.osw | 86 +- .../tests/base-dhw-tank-wood.osw | 86 +- .../base-dhw-tankless-electric-outside.osw | 86 +- .../tests/base-dhw-tankless-electric-uef.osw | 86 +- .../tests/base-dhw-tankless-electric.osw | 86 +- .../tests/base-dhw-tankless-gas-uef.osw | 86 +- ...e-dhw-tankless-gas-with-solar-fraction.osw | 86 +- .../base-dhw-tankless-gas-with-solar.osw | 86 +- .../tests/base-dhw-tankless-gas.osw | 86 +- .../tests/base-dhw-tankless-propane.osw | 86 +- .../tests/base-enclosure-2stories-garage.osw | 86 +- .../tests/base-enclosure-2stories.osw | 86 +- .../tests/base-enclosure-beds-1.osw | 86 +- .../tests/base-enclosure-beds-2.osw | 86 +- .../tests/base-enclosure-beds-4.osw | 86 +- .../tests/base-enclosure-beds-5.osw | 86 +- .../tests/base-enclosure-garage.osw | 86 +- ...ase-enclosure-infil-ach-house-pressure.osw | 86 +- ...ase-enclosure-infil-cfm-house-pressure.osw | 86 +- .../tests/base-enclosure-infil-cfm50.osw | 86 +- .../tests/base-enclosure-infil-flue.osw | 86 +- .../base-enclosure-infil-natural-ach.osw | 86 +- .../tests/base-enclosure-overhangs.osw | 88 +- .../tests/base-enclosure-windows-none.osw | 86 +- .../tests/base-foundation-ambient.osw | 86 +- ...n-conditioned-basement-slab-insulation.osw | 86 +- .../tests/base-foundation-slab.osw | 86 +- ...tion-unconditioned-basement-assembly-r.osw | 84 +- ...unconditioned-basement-wall-insulation.osw | 84 +- ...base-foundation-unconditioned-basement.osw | 84 +- .../base-foundation-unvented-crawlspace.osw | 84 +- .../base-foundation-vented-crawlspace.osw | 84 +- ...-to-air-heat-pump-1-speed-cooling-only.osw | 337 + ...-to-air-heat-pump-1-speed-heating-only.osw | 337 + ...base-hvac-air-to-air-heat-pump-1-speed.osw | 87 +- ...base-hvac-air-to-air-heat-pump-2-speed.osw | 86 +- ...se-hvac-air-to-air-heat-pump-var-speed.osw | 86 +- .../tests/base-hvac-boiler-coal-only.osw | 86 +- .../tests/base-hvac-boiler-elec-only.osw | 86 +- ...ase-hvac-boiler-gas-central-ac-1-speed.osw | 87 +- .../tests/base-hvac-boiler-gas-only.osw | 87 +- .../tests/base-hvac-boiler-oil-only.osw | 86 +- .../tests/base-hvac-boiler-propane-only.osw | 86 +- .../tests/base-hvac-boiler-wood-only.osw | 86 +- .../base-hvac-central-ac-only-1-speed.osw | 87 +- .../base-hvac-central-ac-only-2-speed.osw | 86 +- .../base-hvac-central-ac-only-var-speed.osw | 86 +- ...l-ac-plus-air-to-air-heat-pump-heating.osw | 88 +- ...-air-to-air-heat-pump-1-speed-electric.osw | 87 +- ...dual-fuel-air-to-air-heat-pump-1-speed.osw | 87 +- ...dual-fuel-air-to-air-heat-pump-2-speed.osw | 86 +- ...al-fuel-air-to-air-heat-pump-var-speed.osw | 86 +- ...-dual-fuel-mini-split-heat-pump-ducted.osw | 89 +- .../tests/base-hvac-ducts-leakage-percent.osw | 86 +- .../tests/base-hvac-elec-resistance-only.osw | 86 +- .../base-hvac-evap-cooler-furnace-gas.osw | 86 +- .../base-hvac-evap-cooler-only-ducted.osw | 88 +- .../tests/base-hvac-evap-cooler-only.osw | 87 +- .../tests/base-hvac-fireplace-wood-only.osw | 87 +- .../tests/base-hvac-fixed-heater-gas-only.osw | 87 +- .../base-hvac-floor-furnace-propane-only.osw | 87 +- .../tests/base-hvac-furnace-coal-only.osw | 337 + ...e-hvac-furnace-elec-central-ac-1-speed.osw | 86 +- .../tests/base-hvac-furnace-elec-only.osw | 86 +- ...se-hvac-furnace-gas-central-ac-2-speed.osw | 86 +- ...-hvac-furnace-gas-central-ac-var-speed.osw | 86 +- .../tests/base-hvac-furnace-gas-only.osw | 87 +- .../tests/base-hvac-furnace-gas-room-ac.osw | 86 +- .../tests/base-hvac-furnace-oil-only.osw | 86 +- .../tests/base-hvac-furnace-propane-only.osw | 86 +- .../tests/base-hvac-furnace-wood-only.osw | 86 +- ...c-ground-to-air-heat-pump-cooling-only.osw | 336 + ...c-ground-to-air-heat-pump-heating-only.osw | 336 + .../base-hvac-ground-to-air-heat-pump.osw | 88 +- ...defect-furnace-gas-central-ac-1-speed.osw} | 94 +- ...ality-all-air-to-air-heat-pump-1-speed.osw | 339 + ...ality-all-air-to-air-heat-pump-2-speed.osw | 339 + ...ity-all-air-to-air-heat-pump-var-speed.osw | 339 + ...ity-all-furnace-gas-central-ac-1-speed.osw | 340 + ...ity-all-furnace-gas-central-ac-2-speed.osw | 340 + ...y-all-furnace-gas-central-ac-var-speed.osw | 340 + ...c-install-quality-all-furnace-gas-only.osw | 338 + ...ll-quality-all-ground-to-air-heat-pump.osw | 338 + ...mini-split-air-conditioner-only-ducted.osw | 338 + ...uality-all-mini-split-heat-pump-ducted.osw | 339 + ...-defect-furnace-gas-central-ac-1-speed.osw | 338 + ...ty-none-furnace-gas-central-ac-1-speed.osw | 340 + ...mini-split-air-conditioner-only-ducted.osw | 87 +- ...ni-split-air-conditioner-only-ductless.osw | 87 +- ...ni-split-heat-pump-ducted-cooling-only.osw | 89 +- ...ni-split-heat-pump-ducted-heating-only.osw | 89 +- .../base-hvac-mini-split-heat-pump-ducted.osw | 89 +- ...ase-hvac-mini-split-heat-pump-ductless.osw | 89 +- .../tests/base-hvac-none.osw | 86 +- .../base-hvac-portable-heater-gas-only.osw | 87 +- ...-hvac-programmable-thermostat-detailed.osw | 337 + .../base-hvac-room-ac-only-33percent.osw | 86 +- .../tests/base-hvac-room-ac-only.osw | 86 +- .../tests/base-hvac-setpoints.osw | 86 +- .../tests/base-hvac-stove-oil-only.osw | 87 +- .../base-hvac-stove-wood-pellets-only.osw | 87 +- .../tests/base-hvac-undersized.osw | 86 +- .../base-hvac-wall-furnace-elec-only.osw | 87 +- .../tests/base-lighting-ceiling-fans.osw | 86 +- .../tests/base-lighting-detailed.osw | 86 +- .../tests/base-location-AMY-2012.osw | 86 +- .../tests/base-location-baltimore-md.osw | 104 +- .../tests/base-location-dallas-tx.osw | 86 +- .../tests/base-location-duluth-mn.osw | 112 +- .../tests/base-location-helena-mt.osw | 337 + .../tests/base-location-honolulu-hi.osw | 337 + .../tests/base-location-miami-fl.osw | 86 +- .../tests/base-location-phoenix-az.osw | 337 + .../tests/base-location-portland-or.osw | 337 + .../tests/base-mechvent-balanced.osw | 86 +- .../tests/base-mechvent-bath-kitchen-fans.osw | 104 +- ...-mechvent-cfis-evap-cooler-only-ducted.osw | 88 +- .../tests/base-mechvent-cfis.osw | 86 +- .../tests/base-mechvent-erv-atre-asre.osw | 86 +- .../tests/base-mechvent-erv.osw | 86 +- .../base-mechvent-exhaust-rated-flow-rate.osw | 337 + .../tests/base-mechvent-exhaust.osw | 86 +- .../tests/base-mechvent-hrv-asre.osw | 86 +- .../tests/base-mechvent-hrv.osw | 86 +- .../tests/base-mechvent-supply.osw | 86 +- .../tests/base-mechvent-whole-house-fan.osw | 86 +- .../tests/base-misc-defaults.osw | 82 +- .../tests/base-misc-loads-large-uncommon.osw | 82 +- .../tests/base-misc-loads-large-uncommon2.osw | 82 +- .../tests/base-misc-neighbor-shading.osw | 86 +- .../tests/base-misc-shielding-of-home.osw | 337 + .../tests/base-misc-usage-multiplier.osw | 84 +- .../BuildResidentialHPXML/tests/base-pv.osw | 86 +- ...w => base-schedules-stochastic-vacant.osw} | 92 +- .../tests/base-schedules-stochastic.osw | 86 +- .../tests/base-schedules-user-specified.osw | 86 +- .../base-simcontrol-calendar-year-custom.osw | 86 +- ...base-simcontrol-daylight-saving-custom.osw | 86 +- ...se-simcontrol-daylight-saving-disabled.osw | 86 +- .../base-simcontrol-runperiod-1-month.osw | 86 +- .../base-simcontrol-timestep-10-mins.osw | 86 +- .../BuildResidentialHPXML/tests/base.osw | 86 +- .../tests/build_residential_hpxml_test.rb | 113 +- .../tests/extra-auto.osw | 86 +- ...a-bldgtype-multifamily-double-exterior.osw | 341 + ...ype-multifamily-double-loaded-interior.osw | 341 + .../extra-bldgtype-multifamily-eaves.osw | 341 + ...type-multifamily-single-exterior-front.osw | 341 + ...ultifamily-slab-double-loaded-interior.osw | 341 + ...lab-left-bottom-double-loaded-interior.osw | 341 + ...-bldgtype-multifamily-slab-left-bottom.osw | 341 + ...lab-left-middle-double-loaded-interior.osw | 341 + ...-bldgtype-multifamily-slab-left-middle.osw | 341 + ...y-slab-left-top-double-loaded-interior.osw | 341 + ...tra-bldgtype-multifamily-slab-left-top.osw | 341 + ...b-middle-bottom-double-loaded-interior.osw | 341 + ...ldgtype-multifamily-slab-middle-bottom.osw | 341 + ...b-middle-middle-double-loaded-interior.osw | 341 + ...ldgtype-multifamily-slab-middle-middle.osw | 341 + ...slab-middle-top-double-loaded-interior.osw | 341 + ...a-bldgtype-multifamily-slab-middle-top.osw | 341 + ...ab-right-bottom-double-loaded-interior.osw | 341 + ...bldgtype-multifamily-slab-right-bottom.osw | 341 + ...ab-right-middle-double-loaded-interior.osw | 341 + ...bldgtype-multifamily-slab-right-middle.osw | 341 + ...-slab-right-top-double-loaded-interior.osw | 341 + ...ra-bldgtype-multifamily-slab-right-top.osw | 341 + .../tests/extra-bldgtype-multifamily-slab.osw | 341 + ...nted-crawlspace-double-loaded-interior.osw | 341 + ...ace-left-bottom-double-loaded-interior.osw | 341 + ...family-unvented-crawlspace-left-bottom.osw | 341 + ...ace-left-middle-double-loaded-interior.osw | 341 + ...family-unvented-crawlspace-left-middle.osw | 341 + ...lspace-left-top-double-loaded-interior.osw | 341 + ...ltifamily-unvented-crawlspace-left-top.osw | 341 + ...e-middle-bottom-double-loaded-interior.osw | 341 + ...mily-unvented-crawlspace-middle-bottom.osw | 341 + ...e-middle-middle-double-loaded-interior.osw | 341 + ...mily-unvented-crawlspace-middle-middle.osw | 341 + ...pace-middle-top-double-loaded-interior.osw | 341 + ...ifamily-unvented-crawlspace-middle-top.osw | 341 + ...ce-right-bottom-double-loaded-interior.osw | 341 + ...amily-unvented-crawlspace-right-bottom.osw | 341 + ...ce-right-middle-double-loaded-interior.osw | 341 + ...amily-unvented-crawlspace-right-middle.osw | 341 + ...space-right-top-double-loaded-interior.osw | 341 + ...tifamily-unvented-crawlspace-right-top.osw | 341 + ...dgtype-multifamily-unvented-crawlspace.osw | 341 + ...nted-crawlspace-double-loaded-interior.osw | 341 + ...ace-left-bottom-double-loaded-interior.osw | 341 + ...tifamily-vented-crawlspace-left-bottom.osw | 341 + ...ace-left-middle-double-loaded-interior.osw | 341 + ...tifamily-vented-crawlspace-left-middle.osw | 341 + ...lspace-left-top-double-loaded-interior.osw | 341 + ...multifamily-vented-crawlspace-left-top.osw | 341 + ...e-middle-bottom-double-loaded-interior.osw | 341 + ...family-vented-crawlspace-middle-bottom.osw | 341 + ...e-middle-middle-double-loaded-interior.osw | 341 + ...family-vented-crawlspace-middle-middle.osw | 341 + ...pace-middle-top-double-loaded-interior.osw | 341 + ...ltifamily-vented-crawlspace-middle-top.osw | 341 + ...ce-right-bottom-double-loaded-interior.osw | 341 + ...ifamily-vented-crawlspace-right-bottom.osw | 341 + ...ce-right-middle-double-loaded-interior.osw | 341 + ...ifamily-vented-crawlspace-right-middle.osw | 341 + ...space-right-top-double-loaded-interior.osw | 341 + ...ultifamily-vented-crawlspace-right-top.osw | 341 + ...bldgtype-multifamily-vented-crawlspace.osw | 341 + ...ched-atticroof-conditioned-eaves-gable.osw | 339 + ...tached-atticroof-conditioned-eaves-hip.osw | 339 + ...single-family-attached-double-exterior.osw | 339 + ...family-attached-double-loaded-interior.osw | 339 + ...-family-attached-single-exterior-front.osw | 339 + ...ype-single-family-attached-slab-middle.osw | 339 + ...type-single-family-attached-slab-right.osw | 339 + ...a-bldgtype-single-family-attached-slab.osw | 339 + ...attached-unconditioned-basement-middle.osw | 339 + ...-attached-unconditioned-basement-right.osw | 339 + ...family-attached-unconditioned-basement.osw | 339 + ...ly-attached-unvented-crawlspace-middle.osw | 339 + ...ily-attached-unvented-crawlspace-right.osw | 339 + ...le-family-attached-unvented-crawlspace.osw | 339 + ...mily-attached-vented-crawlspace-middle.osw | 339 + ...amily-attached-vented-crawlspace-right.osw | 339 + ...ngle-family-attached-vented-crawlspace.osw | 339 + .../tests/extra-dhw-solar-latitude.osw | 86 +- ...sure-atticroof-conditioned-eaves-gable.osw | 337 + ...losure-atticroof-conditioned-eaves-hip.osw | 337 + ...enclosure-garage-atticroof-conditioned.osw | 337 + ...a-enclosure-garage-partially-protruded.osw | 86 +- .../tests/extra-enclosure-windows-shading.osw | 339 + .../extra-hvac-programmable-thermostat.osw | 369 - .../tests/extra-pv-roofpitch.osw | 86 +- .../tests/extra-schedules-random-seed.osw | 86 +- ...ond-heating-system-boiler-to-heat-pump.osw | 336 + ...eating-system-boiler-to-heating-system.osw | 337 + ...-heating-system-fireplace-to-heat-pump.osw | 337 + ...ng-system-fireplace-to-heating-system.osw} | 92 +- ...ng-system-portable-heater-to-heat-pump.osw | 337 + ...tem-portable-heater-to-heating-system.osw} | 88 +- .../tests/extra-second-refrigerator.osw | 86 +- .../tests/extra-zero-clothes-washer-kwh.osw | 337 + .../tests/extra-zero-dishwasher-kwh.osw | 337 + .../extra-zero-extra-refrigerator-kwh.osw | 337 + .../tests/extra-zero-freezer-kwh.osw | 337 + .../tests/extra-zero-refrigerator-kwh.osw | 337 + ...onditioned-attic-with-floor-insulation.osw | 92 +- ...ioned-attic-with-one-floor-above-grade.osw | 337 + ...ioned-basement-with-ceiling-insulation.osw | 86 +- .../cooling-system-and-heat-pump.osw | 86 +- .../dhw-indirect-without-boiler.osw | 86 +- ...ducts-location-and-areas-not-same-type.osw | 86 +- ...on-wall-insulation-greater-than-height.osw | 337 + .../heating-system-and-heat-pump.osw | 86 +- ...ttom-crawlspace-zero-foundation-height.osw | 86 +- ...bottom-slab-non-zero-foundation-height.osw | 86 +- .../multifamily-no-building-orientation.osw | 86 +- .../multipliers-without-fuel-loads.osw | 86 +- .../multipliers-without-other-plug-loads.osw | 337 + ... => multipliers-without-tv-plug-loads.osw} | 94 +- ...multipliers-without-vehicle-plug-loads.osw | 337 + ...ltipliers-without-well-pump-plug-loads.osw | 337 + .../non-electric-heat-pump-water-heater.osw | 86 +- .../non-integer-ceiling-fan-quantity.osw | 86 +- .../non-integer-geometry-num-bathrooms.osw | 86 +- ...-heating-system-but-no-primary-heating.osw | 337 + ...nd-heating-system-serves-majority-heat.osw | 86 +- ...-heating-system-serves-total-heat-load.osw | 337 + .../single-family-attached-ambient.osw | 86 +- ...amily-attached-no-building-orientation.osw | 86 +- ...nished-basement-zero-foundation-height.osw | 86 +- ...tached-slab-non-zero-foundation-height.osw | 86 +- ...non-zero-foundation-height-above-grade.osw | 86 +- ...ement-with-wall-and-ceiling-insulation.osw | 86 +- ...d-attic-with-floor-and-roof-insulation.osw | 86 +- ...space-with-wall-and-ceiling-insulation.osw | 86 +- ...d-attic-with-floor-and-roof-insulation.osw | 90 +- ...space-with-wall-and-ceiling-insulation.osw | 86 +- .../invalid_files/zero-number-of-bedrooms.osw | 337 + .../tests/schedules/vacant.csv | 8761 ++++++++++++++++ .../resources/hpxml-measures/Changelog.md | 238 + .../resources/hpxml-measures/Gemfile | 6 +- .../resources/hpxml-measures/Gemfile.lock | 26 +- .../HPXMLtoOpenStudio/measure.rb | 1103 +-- .../HPXMLtoOpenStudio/measure.xml | 249 +- .../resources/BaseElements.xsd | 102 +- .../resources/EPvalidator.xml | 766 +- .../resources/HPXMLDataTypes.xsd | 30 +- .../resources/HPXMLvalidator.xml | 136 +- .../HPXMLtoOpenStudio/resources/airflow.rb | 283 +- .../HPXMLtoOpenStudio/resources/constants.rb | 192 +- .../resources/constructions.rb | 575 +- .../HPXMLtoOpenStudio/resources/generator.rb | 8 +- .../HPXMLtoOpenStudio/resources/geometry.rb | 34 +- .../resources/hotwater_appliances.rb | 52 +- .../HPXMLtoOpenStudio/resources/hpxml.rb | 1188 ++- .../resources/hpxml_defaults.rb | 522 +- .../HPXMLtoOpenStudio/resources/hvac.rb | 2712 ++--- .../resources/hvac_sizing.rb | 2860 +++--- .../HPXMLtoOpenStudio/resources/lighting.rb | 3 +- .../HPXMLtoOpenStudio/resources/location.rb | 27 +- .../resources/meta_measure.rb | 67 +- .../HPXMLtoOpenStudio/resources/misc_loads.rb | 24 +- .../HPXMLtoOpenStudio/resources/pv.rb | 4 +- .../HPXMLtoOpenStudio/resources/schedules.rb | 21 +- .../resources/simcontrols.rb | 8 +- .../resources/unit_conversions.rb | 2 + .../HPXMLtoOpenStudio/resources/version.rb | 2 +- .../resources/waterheater.rb | 7 +- .../HPXMLtoOpenStudio/resources/xmlhelper.rb | 61 +- .../HPXMLtoOpenStudio/tests/test_airflow.rb | 5 +- .../tests/test_constructions.rb | 78 +- .../HPXMLtoOpenStudio/tests/test_defaults.rb | 1135 +-- .../HPXMLtoOpenStudio/tests/test_generator.rb | 3 + .../tests/test_hotwater_appliance.rb | 5 +- .../HPXMLtoOpenStudio/tests/test_hvac.rb | 327 +- .../HPXMLtoOpenStudio/tests/test_lighting.rb | 3 + .../HPXMLtoOpenStudio/tests/test_location.rb | 3 + .../HPXMLtoOpenStudio/tests/test_miscloads.rb | 3 + .../HPXMLtoOpenStudio/tests/test_pv.rb | 3 + .../tests/test_simcontrols.rb | 3 + .../tests/test_validation.rb | 26 +- .../tests/test_water_heater.rb | 3 + .../resources/hpxml-measures/README.md | 8 +- .../SimulationOutputReport/measure.rb | 148 +- .../SimulationOutputReport/measure.xml | 808 +- .../tests/output_report_test.rb | 420 +- .../hpxml-measures/docs/source/conf.py | 5 +- .../docs/source/getting_started.rst | 4 +- .../hpxml-measures/docs/source/intro.rst | 108 +- .../docs/source/workflow_inputs.rst | 827 +- .../docs/source/workflow_outputs.rst | 284 +- .../resources/hpxml-measures/tasks.rb | 1798 +++- ...x-Sky.Harbor.Intl.AP.722780_TMY3-cache.csv | 35 + ...Phoenix-Sky.Harbor.Intl.AP.722780_TMY3.epw | 8768 +++++++++++++++++ ..._HI_Honolulu.Intl.AP.911820_TMY3-cache.csv | 35 + .../USA_HI_Honolulu.Intl.AP.911820_TMY3.epw | 8768 +++++++++++++++++ ...SA_MT_Helena.Rgnl.AP.727720_TMY3-cache.csv | 35 + .../USA_MT_Helena.Rgnl.AP.727720_TMY3.epw | 8768 +++++++++++++++++ ..._OR_Portland.Intl.AP.726980_TMY3-cache.csv | 35 + .../USA_OR_Portland.Intl.AP.726980_TMY3.epw | 8768 +++++++++++++++++ .../hpxml-measures/workflow/run_simulation.rb | 28 +- .../sample_files/base-appliances-coal.xml | 2 +- ...base-appliances-dehumidifier-50percent.xml | 3 +- ...e-appliances-dehumidifier-ief-portable.xml | 3 +- ...appliances-dehumidifier-ief-whole-home.xml | 3 +- .../base-appliances-dehumidifier-multiple.xml | 534 + .../base-appliances-dehumidifier.xml | 3 +- .../sample_files/base-appliances-gas.xml | 2 +- .../sample_files/base-appliances-modified.xml | 2 +- .../sample_files/base-appliances-none.xml | 1 + .../sample_files/base-appliances-oil.xml | 2 +- .../sample_files/base-appliances-propane.xml | 2 +- .../sample_files/base-appliances-wood.xml | 2 +- .../sample_files/base-atticroof-cathedral.xml | 2 +- .../base-atticroof-conditioned.xml | 6 +- .../sample_files/base-atticroof-flat.xml | 2 +- .../base-atticroof-radiant-barrier.xml | 2 +- ...base-atticroof-unvented-insulated-roof.xml | 2 +- .../sample_files/base-atticroof-vented.xml | 2 +- ...y-adjacent-to-multifamily-buffer-space.xml | 2 +- ...gtype-multifamily-adjacent-to-multiple.xml | 2 +- ...ifamily-adjacent-to-non-freezing-space.xml | 2 +- ...ifamily-adjacent-to-other-heated-space.xml | 2 +- ...ifamily-adjacent-to-other-housing-unit.xml | 2 +- ...family-shared-boiler-chiller-baseboard.xml | 1 - ...-shared-boiler-chiller-fan-coil-ducted.xml | 8 +- ...ifamily-shared-boiler-chiller-fan-coil.xml | 24 +- ...ed-boiler-chiller-water-loop-heat-pump.xml | 45 +- ...ler-cooling-tower-water-loop-heat-pump.xml | 45 +- ...ltifamily-shared-boiler-only-baseboard.xml | 1 - ...ily-shared-boiler-only-fan-coil-ducted.xml | 8 +- ...family-shared-boiler-only-fan-coil-eae.xml | 24 +- ...ultifamily-shared-boiler-only-fan-coil.xml | 24 +- ...hared-boiler-only-water-loop-heat-pump.xml | 33 +- ...tifamily-shared-chiller-only-baseboard.xml | 1 - ...ly-shared-chiller-only-fan-coil-ducted.xml | 8 +- ...ltifamily-shared-chiller-only-fan-coil.xml | 24 +- ...ared-chiller-only-water-loop-heat-pump.xml | 34 +- ...ooling-tower-only-water-loop-heat-pump.xml | 34 +- ...-bldgtype-multifamily-shared-generator.xml | 2 +- ...ed-ground-loop-ground-to-air-heat-pump.xml | 5 +- ...dgtype-multifamily-shared-laundry-room.xml | 2 +- ...e-multifamily-shared-mechvent-multiple.xml | 3 +- ...family-shared-mechvent-preconditioning.xml | 2 +- ...e-bldgtype-multifamily-shared-mechvent.xml | 2 +- .../base-bldgtype-multifamily-shared-pv.xml | 2 +- ...multifamily-shared-water-heater-recirc.xml | 2 +- ...dgtype-multifamily-shared-water-heater.xml | 2 +- .../base-bldgtype-multifamily.xml | 2 +- .../base-bldgtype-single-family-attached.xml | 16 +- .../base-dhw-combi-tankless-outside.xml | 1 - .../sample_files/base-dhw-combi-tankless.xml | 1 - .../base-dhw-desuperheater-2-speed.xml | 2 +- .../base-dhw-desuperheater-gshp.xml | 1127 ++- .../base-dhw-desuperheater-hpwh.xml | 2 +- .../base-dhw-desuperheater-tankless.xml | 5 +- .../base-dhw-desuperheater-var-speed.xml | 2 +- .../sample_files/base-dhw-desuperheater.xml | 5 +- .../workflow/sample_files/base-dhw-dwhr.xml | 2 +- .../sample_files/base-dhw-indirect-dse.xml | 1 - .../base-dhw-indirect-outside.xml | 1 - .../base-dhw-indirect-standbyloss.xml | 1 - .../base-dhw-indirect-with-solar-fraction.xml | 1 - .../sample_files/base-dhw-indirect.xml | 1 - .../sample_files/base-dhw-jacket-electric.xml | 2 +- .../sample_files/base-dhw-jacket-gas.xml | 2 +- .../sample_files/base-dhw-jacket-hpwh.xml | 2 +- .../sample_files/base-dhw-jacket-indirect.xml | 1 - .../base-dhw-low-flow-fixtures.xml | 2 +- .../sample_files/base-dhw-multiple.xml | 1 - .../workflow/sample_files/base-dhw-none.xml | 1 + .../sample_files/base-dhw-recirc-demand.xml | 2 +- .../sample_files/base-dhw-recirc-manual.xml | 2 +- .../base-dhw-recirc-nocontrol.xml | 2 +- .../base-dhw-recirc-temperature.xml | 2 +- .../sample_files/base-dhw-recirc-timer.xml | 2 +- .../base-dhw-solar-direct-evacuated-tube.xml | 2 +- .../base-dhw-solar-direct-flat-plate.xml | 2 +- .../base-dhw-solar-direct-ics.xml | 2 +- .../sample_files/base-dhw-solar-fraction.xml | 2 +- .../base-dhw-solar-indirect-flat-plate.xml | 2 +- ...base-dhw-solar-thermosyphon-flat-plate.xml | 2 +- .../sample_files/base-dhw-tank-coal.xml | 2 +- .../sample_files/base-dhw-tank-elec-uef.xml | 2 +- .../base-dhw-tank-gas-outside.xml | 2 +- .../sample_files/base-dhw-tank-gas-uef.xml | 2 +- .../sample_files/base-dhw-tank-gas.xml | 2 +- .../base-dhw-tank-heat-pump-outside.xml | 2 +- .../base-dhw-tank-heat-pump-uef.xml | 2 +- ...dhw-tank-heat-pump-with-solar-fraction.xml | 2 +- .../base-dhw-tank-heat-pump-with-solar.xml | 2 +- .../sample_files/base-dhw-tank-heat-pump.xml | 2 +- .../sample_files/base-dhw-tank-oil.xml | 2 +- .../sample_files/base-dhw-tank-wood.xml | 2 +- .../base-dhw-tankless-electric-outside.xml | 2 +- .../base-dhw-tankless-electric-uef.xml | 2 +- .../base-dhw-tankless-electric.xml | 2 +- .../base-dhw-tankless-gas-uef.xml | 2 +- ...e-dhw-tankless-gas-with-solar-fraction.xml | 2 +- .../base-dhw-tankless-gas-with-solar.xml | 2 +- .../sample_files/base-dhw-tankless-gas.xml | 2 +- .../base-dhw-tankless-propane.xml | 2 +- .../base-enclosure-2stories-garage.xml | 4 +- .../sample_files/base-enclosure-2stories.xml | 2 +- .../sample_files/base-enclosure-beds-1.xml | 2 +- .../sample_files/base-enclosure-beds-2.xml | 2 +- .../sample_files/base-enclosure-beds-4.xml | 2 +- .../sample_files/base-enclosure-beds-5.xml | 2 +- .../sample_files/base-enclosure-garage.xml | 2 +- ...ase-enclosure-infil-ach-house-pressure.xml | 2 +- ...ase-enclosure-infil-cfm-house-pressure.xml | 2 +- .../base-enclosure-infil-cfm50.xml | 2 +- .../base-enclosure-infil-flue.xml | 2 +- .../base-enclosure-infil-natural-ach.xml | 2 +- .../sample_files/base-enclosure-overhangs.xml | 7 +- .../sample_files/base-enclosure-rooftypes.xml | 2 +- .../base-enclosure-skylights-shading.xml | 600 ++ .../sample_files/base-enclosure-skylights.xml | 2 +- .../base-enclosure-split-level.xml | 2 +- .../base-enclosure-split-surfaces.xml | 2 +- .../base-enclosure-split-surfaces2.xml | 2474 +++++ .../sample_files/base-enclosure-walltypes.xml | 2 +- .../base-enclosure-windows-none.xml | 2 +- ...xml => base-enclosure-windows-shading.xml} | 1137 +-- .../sample_files/base-foundation-ambient.xml | 2 +- .../base-foundation-basement-garage.xml | 643 ++ .../sample_files/base-foundation-complex.xml | 2 +- ...n-conditioned-basement-slab-insulation.xml | 2 +- ...oned-basement-wall-interior-insulation.xml | 2 +- .../sample_files/base-foundation-multiple.xml | 6 +- .../sample_files/base-foundation-slab.xml | 2 +- ...ion-unconditioned-basement-above-grade.xml | 4 +- ...tion-unconditioned-basement-assembly-r.xml | 4 +- ...unconditioned-basement-wall-insulation.xml | 2 +- ...base-foundation-unconditioned-basement.xml | 4 +- .../base-foundation-unvented-crawlspace.xml | 2 +- .../base-foundation-vented-crawlspace.xml | 2 +- .../base-foundation-walkout-basement.xml | 2 +- ...-to-air-heat-pump-1-speed-cooling-only.xml | 555 ++ ...-to-air-heat-pump-1-speed-heating-only.xml | 561 ++ ...base-hvac-air-to-air-heat-pump-1-speed.xml | 5 +- ...base-hvac-air-to-air-heat-pump-2-speed.xml | 2 +- ...se-hvac-air-to-air-heat-pump-var-speed.xml | 2 +- ...-to-air-heat-pump-1-speed-cooling-only.xml | 552 ++ ...-to-air-heat-pump-1-speed-heating-only.xml | 557 ++ ...-1-speed-manual-s-oversize-allowances.xml} | 5 +- ...autosize-air-to-air-heat-pump-1-speed.xml} | 5 +- ...-2-speed-manual-s-oversize-allowances.xml} | 1118 +-- ...autosize-air-to-air-heat-pump-2-speed.xml} | 1112 +-- ...ar-speed-manual-s-oversize-allowances.xml} | 1118 +-- ...tosize-air-to-air-heat-pump-var-speed.xml} | 1112 +-- ...> base-hvac-autosize-boiler-elec-only.xml} | 1035 +- ...utosize-boiler-gas-central-ac-1-speed.xml} | 1137 ++- ...=> base-hvac-autosize-boiler-gas-only.xml} | 1037 +- ...hvac-autosize-central-ac-only-1-speed.xml} | 5 +- ...hvac-autosize-central-ac-only-2-speed.xml} | 1092 +- ...ac-autosize-central-ac-only-var-speed.xml} | 1092 +- ...-ac-plus-air-to-air-heat-pump-heating.xml} | 8 +- ...ual-fuel-air-to-air-heat-pump-1-speed.xml} | 5 +- ...dual-fuel-mini-split-heat-pump-ducted.xml} | 5 +- ...se-hvac-autosize-elec-resistance-only.xml} | 1017 +- ...hvac-autosize-evap-cooler-furnace-gas.xml} | 1104 +-- ...c-autosize-floor-furnace-propane-only.xml} | 1023 +- ... base-hvac-autosize-furnace-elec-only.xml} | 1092 +- ...tosize-furnace-gas-central-ac-2-speed.xml} | 1118 +-- ...size-furnace-gas-central-ac-var-speed.xml} | 1118 +-- .../base-hvac-autosize-furnace-gas-only.xml | 547 + ...ase-hvac-autosize-furnace-gas-room-ac.xml} | 1114 +-- ...e-ground-to-air-heat-pump-cooling-only.xml | 554 ++ ...e-ground-to-air-heat-pump-heating-only.xml | 559 ++ ...eat-pump-manual-s-oversize-allowances.xml} | 1123 ++- ...hvac-autosize-ground-to-air-heat-pump.xml} | 1117 ++- ...mini-split-air-conditioner-only-ducted.xml | 546 + ...i-split-heat-pump-ducted-cooling-only.xml} | 5 +- ...i-split-heat-pump-ducted-heating-only.xml} | 5 +- ...p-ducted-manual-s-oversize-allowances.xml} | 5 +- ...c-autosize-mini-split-heat-pump-ducted.xml | 556 ++ ...ml => base-hvac-autosize-room-ac-only.xml} | 1015 +- ... => base-hvac-autosize-stove-oil-only.xml} | 1023 +- ...-hvac-autosize-wall-furnace-elec-only.xml} | 1023 +- ...se-autosize.xml => base-hvac-autosize.xml} | 1118 +-- .../base-hvac-boiler-coal-only.xml | 1 - .../base-hvac-boiler-elec-only.xml | 1 - ...ase-hvac-boiler-gas-central-ac-1-speed.xml | 3 +- .../base-hvac-boiler-gas-only.xml | 1 - .../base-hvac-boiler-oil-only.xml | 1 - .../base-hvac-boiler-propane-only.xml | 1 - .../base-hvac-boiler-wood-only.xml | 1 - .../base-hvac-central-ac-only-1-speed.xml | 5 +- .../base-hvac-central-ac-only-2-speed.xml | 2 +- .../base-hvac-central-ac-only-var-speed.xml | 2 +- ...l-ac-plus-air-to-air-heat-pump-heating.xml | 8 +- .../workflow/sample_files/base-hvac-dse.xml | 1 - ...-air-to-air-heat-pump-1-speed-electric.xml | 5 +- ...dual-fuel-air-to-air-heat-pump-1-speed.xml | 5 +- ...dual-fuel-air-to-air-heat-pump-2-speed.xml | 2 +- ...al-fuel-air-to-air-heat-pump-var-speed.xml | 2 +- ...-dual-fuel-mini-split-heat-pump-ducted.xml | 5 +- .../base-hvac-ducts-leakage-percent.xml | 2 +- .../base-hvac-elec-resistance-only.xml | 1 - .../base-hvac-evap-cooler-furnace-gas.xml | 3 +- .../base-hvac-evap-cooler-only-ducted.xml | 11 +- .../base-hvac-evap-cooler-only.xml | 5 +- .../base-hvac-fireplace-wood-only.xml | 1025 +- .../base-hvac-fixed-heater-gas-only.xml | 1126 +-- .../base-hvac-floor-furnace-propane-only.xml | 1025 +- .../base-hvac-furnace-coal-only.xml | 1094 +- ...e-hvac-furnace-elec-central-ac-1-speed.xml | 2 +- .../base-hvac-furnace-elec-only.xml | 2 +- ...se-hvac-furnace-gas-central-ac-2-speed.xml | 2 +- ...-hvac-furnace-gas-central-ac-var-speed.xml | 2 +- .../base-hvac-furnace-gas-only.xml | 1097 +-- .../base-hvac-furnace-gas-room-ac.xml | 2 +- .../base-hvac-furnace-oil-only.xml | 2 +- .../base-hvac-furnace-propane-only.xml | 2 +- .../base-hvac-furnace-wood-only.xml | 2 +- .../sample_files/base-hvac-furnace-x3-dse.xml | 1 - ...c-ground-to-air-heat-pump-cooling-only.xml | 556 ++ ...c-ground-to-air-heat-pump-heating-only.xml | 562 ++ .../base-hvac-ground-to-air-heat-pump.xml | 1123 ++- ...defect-furnace-gas-central-ac-1-speed.xml} | 1128 +-- ...lity-all-air-to-air-heat-pump-1-speed.xml} | 1127 +-- ...ality-all-air-to-air-heat-pump-2-speed.xml | 566 ++ ...ity-all-air-to-air-heat-pump-var-speed.xml | 566 ++ ...ty-all-furnace-gas-central-ac-1-speed.xml} | 1134 +-- ...ity-all-furnace-gas-central-ac-2-speed.xml | 571 ++ ...y-all-furnace-gas-central-ac-var-speed.xml | 571 ++ ...-install-quality-all-furnace-gas-only.xml} | 1100 +-- ...ll-quality-all-ground-to-air-heat-pump.xml | 565 ++ ...ini-split-air-conditioner-only-ducted.xml} | 1099 +-- ...ality-all-mini-split-heat-pump-ducted.xml} | 1122 +-- ...iciency-furnace-gas-central-ac-1-speed.xml | 568 ++ ...-defect-furnace-gas-central-ac-1-speed.xml | 565 ++ ...ty-none-furnace-gas-central-ac-1-speed.xml | 569 ++ ...mini-split-air-conditioner-only-ducted.xml | 5 +- ...ni-split-air-conditioner-only-ductless.xml | 4 - ...ni-split-heat-pump-ducted-cooling-only.xml | 5 +- ...ni-split-heat-pump-ducted-heating-only.xml | 5 +- .../base-hvac-mini-split-heat-pump-ducted.xml | 5 +- ...ase-hvac-mini-split-heat-pump-ductless.xml | 4 - .../sample_files/base-hvac-multiple.xml | 1829 ++-- .../sample_files/base-hvac-multiple2.xml | 1671 ++-- .../workflow/sample_files/base-hvac-none.xml | 1 - .../base-hvac-portable-heater-gas-only.xml | 1126 +-- ...-hvac-programmable-thermostat-detailed.xml | 2 +- .../base-hvac-programmable-thermostat.xml | 2 +- .../base-hvac-room-ac-only-33percent.xml | 1 - .../sample_files/base-hvac-room-ac-only.xml | 1 - .../sample_files/base-hvac-setpoints.xml | 2 +- .../sample_files/base-hvac-stove-oil-only.xml | 1025 +- .../base-hvac-stove-wood-pellets-only.xml | 1025 +- ...sized-allow-increased-fixed-capacities.xml | 2 +- .../sample_files/base-hvac-undersized.xml | 2 +- .../base-hvac-wall-furnace-elec-only.xml | 1025 +- .../base-lighting-ceiling-fans.xml | 2 +- .../sample_files/base-lighting-detailed.xml | 2 +- .../sample_files/base-lighting-none.xml | 2 +- .../sample_files/base-location-AMY-2012.xml | 2 +- .../base-location-baltimore-md.xml | 57 +- .../sample_files/base-location-dallas-tx.xml | 2 +- .../sample_files/base-location-duluth-mn.xml | 57 +- .../sample_files/base-location-helena-mt.xml | 562 ++ .../base-location-honolulu-hi.xml | 516 + .../sample_files/base-location-miami-fl.xml | 2 +- .../sample_files/base-location-phoenix-az.xml | 516 + .../base-location-portland-or.xml | 576 ++ .../sample_files/base-mechvent-balanced.xml | 2 +- .../base-mechvent-bath-kitchen-fans.xml | 2 +- .../sample_files/base-mechvent-cfis-dse.xml | 1 - ...-mechvent-cfis-evap-cooler-only-ducted.xml | 11 +- .../sample_files/base-mechvent-cfis.xml | 2 +- .../base-mechvent-erv-atre-asre.xml | 2 +- .../sample_files/base-mechvent-erv.xml | 2 +- .../base-mechvent-exhaust-rated-flow-rate.xml | 2 +- .../sample_files/base-mechvent-exhaust.xml | 2 +- .../sample_files/base-mechvent-hrv-asre.xml | 2 +- .../sample_files/base-mechvent-hrv.xml | 2 +- .../sample_files/base-mechvent-multiple.xml | 3 +- .../sample_files/base-mechvent-supply.xml | 2 +- .../base-mechvent-whole-house-fan.xml | 2 +- .../sample_files/base-misc-defaults.xml | 1 + .../sample_files/base-misc-generators.xml | 2 +- .../base-misc-loads-large-uncommon.xml | 6 +- .../base-misc-loads-large-uncommon2.xml | 10 +- .../sample_files/base-misc-loads-none.xml | 2 +- .../base-misc-neighbor-shading.xml | 2 +- .../base-misc-shielding-of-home.xml | 563 ++ .../base-misc-usage-multiplier.xml | 6 +- .../sample_files/base-multiple-buildings.xml | 1654 ++++ .../workflow/sample_files/base-pv.xml | 2 +- .../base-schedules-stochastic-vacant.xml | 563 ++ .../base-schedules-stochastic.xml | 2 +- .../base-schedules-user-specified.xml | 2 +- .../base-simcontrol-calendar-year-custom.xml | 2 +- ...base-simcontrol-daylight-saving-custom.xml | 2 +- ...se-simcontrol-daylight-saving-disabled.xml | 2 +- .../base-simcontrol-runperiod-1-month.xml | 2 +- .../base-simcontrol-timestep-10-mins.xml | 2 +- .../workflow/sample_files/base.xml | 2 +- .../invalid_files/boiler-invalid-afue.xml | 519 + .../cfis-with-hydronic-distribution.xml | 1 - .../invalid_files/clothes-dryer-location.xml | 2 +- .../invalid_files/clothes-washer-location.xml | 2 +- .../invalid_files/cooking-range-location.xml | 2 +- .../dehumidifier-fraction-served.xml | 534 + .../invalid_files/dehumidifier-setpoints.xml | 534 + .../invalid_files/dhw-frac-load-served.xml | 1 - .../invalid_files/dhw-invalid-ef-tank.xml | 2 +- .../dhw-invalid-uef-tank-heat-pump.xml | 2 +- .../invalid_files/dishwasher-location.xml | 2 +- .../invalid_files/duct-leakage-cfm25.xml | 562 ++ .../invalid_files/duct-leakage-percent.xml | 562 ++ .../duct-location-unconditioned-space.xml | 2 +- .../invalid_files/duct-location.xml | 2 +- .../invalid_files/duplicate-id.xml | 2 +- .../enclosure-attic-missing-roof.xml | 2 +- ...ement-missing-exterior-foundation-wall.xml | 4 +- .../enclosure-basement-missing-slab.xml | 4 +- .../enclosure-floor-area-exceeds-cfa.xml | 8 +- .../enclosure-floor-area-exceeds-cfa2.xml | 447 + ...enclosure-garage-missing-exterior-wall.xml | 2 +- .../enclosure-garage-missing-roof-ceiling.xml | 2 +- .../enclosure-garage-missing-slab.xml | 2 +- .../enclosure-living-missing-ceiling-roof.xml | 2 +- ...enclosure-living-missing-exterior-wall.xml | 2 +- .../enclosure-living-missing-floor-slab.xml | 69 +- .../invalid_files/frac-sensible-fuel-load.xml | 759 ++ .../invalid_files/frac-sensible-plug-load.xml | 758 ++ .../invalid_files/frac-total-fuel-load.xml | 760 ++ .../invalid_files/frac-total-plug-load.xml | 758 ++ .../invalid_files/furnace-invalid-afue.xml | 562 ++ .../generator-number-of-bedrooms-served.xml | 459 + ...erator-output-greater-than-consumption.xml | 578 ++ ...mp-mixed-fixed-and-autosize-capacities.xml | 5 +- ...distribution-multiple-attached-cooling.xml | 1829 ++-- ...distribution-multiple-attached-heating.xml | 1829 ++-- ...stribution-return-duct-leakage-missing.xml | 9 +- .../hvac-dse-multiple-attached-cooling.xml | 1 - .../hvac-dse-multiple-attached-heating.xml | 1 - .../invalid_files/hvac-frac-load-served.xml | 1829 ++-- .../hvac-inconsistent-fan-powers.xml | 2 +- .../hvac-invalid-distribution-system-type.xml | 2 +- .../invalid-assembly-effective-rvalue.xml | 562 ++ .../invalid-datatype-boolean.xml | 2 +- .../invalid_files/invalid-datatype-float.xml | 2 +- .../invalid-datatype-integer.xml | 2 +- .../invalid_files/invalid-daylight-saving.xml | 2 +- .../invalid-distribution-cfa-served.xml | 4 +- .../invalid_files/invalid-epw-filepath.xml | 2 +- .../invalid-facility-type-equipment.xml | 2 +- .../invalid-facility-type-surfaces.xml | 2 +- .../invalid-foundation-wall-properties.xml | 573 ++ .../sample_files/invalid_files/invalid-id.xml | 590 ++ .../invalid_files/invalid-id2.xml | 590 ++ .../invalid-infiltration-volume.xml | 562 ++ .../invalid-input-parameters.xml | 2 +- .../invalid-neighbor-shading-azimuth.xml | 2 +- .../invalid-number-of-bedrooms-served.xml | 464 + .../invalid-number-of-conditioned-floors.xml | 562 ++ .../invalid-number-of-units-served.xml | 450 + .../invalid-relatedhvac-desuperheater.xml | 5 +- .../invalid-relatedhvac-dhw-indirect.xml | 1 - .../invalid_files/invalid-runperiod.xml | 2 +- .../invalid_files/invalid-schema-version.xml | 2 +- .../invalid-shared-vent-in-unit-flowrate.xml | 472 + .../invalid_files/invalid-timestep.xml | 2 +- .../invalid_files/invalid-window-height.xml | 7 +- .../invalid_files/lighting-fractions.xml | 2 +- .../invalid_files/missing-duct-location.xml | 1821 ++-- .../invalid_files/missing-elements.xml | 2 +- .../multifamily-reference-appliance.xml | 2 +- .../multifamily-reference-duct.xml | 2 +- .../multifamily-reference-surface.xml | 14 +- .../multifamily-reference-water-heater.xml | 2 +- ...multiple-buildings-without-building-id.xml | 1654 ++++ .../multiple-buildings-wrong-building-id.xml | 1654 ++++ .../multiple-shared-cooling-systems.xml} | 929 +- .../multiple-shared-heating-systems.xml | 434 + .../invalid_files/net-area-negative-roof.xml | 2 +- .../invalid_files/net-area-negative-wall.xml | 2 +- .../num-bedrooms-exceeds-limit.xml | 2 +- .../orphaned-hvac-distribution.xml | 2 +- .../invalid_files/refrigerator-location.xml | 2 +- .../refrigerators-multiple-primary.xml | 2 +- .../refrigerators-no-primary.xml | 2 +- .../repeated-relatedhvac-desuperheater.xml | 5 +- .../repeated-relatedhvac-dhw-indirect.xml | 1 - ...lar-thermal-system-with-combi-tankless.xml | 1 - ...olar-thermal-system-with-desuperheater.xml | 5 +- ...solar-thermal-system-with-dhw-indirect.xml | 1 - .../invalid_files/unattached-cfis.xml | 2 +- .../invalid_files/unattached-door.xml | 2 +- .../unattached-hvac-distribution.xml | 2 +- ...hed-shared-clothes-washer-water-heater.xml | 2 +- ...ttached-shared-dishwasher-water-heater.xml | 2 +- .../invalid_files/unattached-skylight.xml | 2 +- .../unattached-solar-thermal-system.xml | 2 +- .../invalid_files/unattached-window.xml | 2 +- .../water-heater-location-other.xml | 2 +- .../invalid_files/water-heater-location.xml | 2 +- .../hpxml-measures/workflow/template.osw | 5 +- .../tests/ASHRAE_Standard_140/L100AC.xml | 3 - .../tests/ASHRAE_Standard_140/L100AL.xml | 3 - .../tests/ASHRAE_Standard_140/L110AC.xml | 3 - .../tests/ASHRAE_Standard_140/L110AL.xml | 3 - .../tests/ASHRAE_Standard_140/L120AC.xml | 3 - .../tests/ASHRAE_Standard_140/L120AL.xml | 3 - .../tests/ASHRAE_Standard_140/L130AC.xml | 3 - .../tests/ASHRAE_Standard_140/L130AL.xml | 3 - .../tests/ASHRAE_Standard_140/L140AC.xml | 3 - .../tests/ASHRAE_Standard_140/L140AL.xml | 3 - .../tests/ASHRAE_Standard_140/L150AC.xml | 3 - .../tests/ASHRAE_Standard_140/L150AL.xml | 3 - .../tests/ASHRAE_Standard_140/L155AC.xml | 3 - .../tests/ASHRAE_Standard_140/L155AL.xml | 3 - .../tests/ASHRAE_Standard_140/L160AC.xml | 3 - .../tests/ASHRAE_Standard_140/L160AL.xml | 3 - .../tests/ASHRAE_Standard_140/L170AC.xml | 3 - .../tests/ASHRAE_Standard_140/L170AL.xml | 3 - .../tests/ASHRAE_Standard_140/L200AC.xml | 3 - .../tests/ASHRAE_Standard_140/L200AL.xml | 3 - .../tests/ASHRAE_Standard_140/L202AC.xml | 3 - .../tests/ASHRAE_Standard_140/L202AL.xml | 3 - .../tests/ASHRAE_Standard_140/L302XC.xml | 3 - .../tests/ASHRAE_Standard_140/L304XC.xml | 3 - .../tests/ASHRAE_Standard_140/L322XC.xml | 3 - .../tests/ASHRAE_Standard_140/L324XC.xml | 3 - .../workflow/tests/hpxml_translator_test.rb | 592 +- .../resources/measure-info.json | 0 .../resources/meta_measure.rb | 97 +- 857 files changed, 172030 insertions(+), 57146 deletions(-) delete mode 100644 example_files/measures/ResidentialGeometryCreateMultifamily/measure.rb delete mode 100644 example_files/measures/ResidentialGeometryCreateMultifamily/measure.xml delete mode 100644 example_files/measures/ResidentialGeometryCreateMultifamily/tests/create_residential_multifamily_geometry_test.rb delete mode 100644 example_files/measures/ResidentialGeometryCreateSingleFamilyAttached/measure.rb delete mode 100644 example_files/measures/ResidentialGeometryCreateSingleFamilyAttached/measure.xml delete mode 100644 example_files/measures/ResidentialGeometryCreateSingleFamilyAttached/tests/create_residential_single_family_attached_geometry_test.rb delete mode 100644 example_files/measures/ResidentialGeometryCreateSingleFamilyDetached/measure.rb delete mode 100644 example_files/measures/ResidentialGeometryCreateSingleFamilyDetached/measure.xml delete mode 100644 example_files/measures/ResidentialGeometryCreateSingleFamilyDetached/tests/create_residential_single_family_detached_geometry_test.rb create mode 100644 example_files/residential/exhaust.tsv delete mode 100644 example_files/resources/hpxml-measures/.circleci/config.yml create mode 100644 example_files/resources/hpxml-measures/.github/workflows/config.yml delete mode 100644 example_files/resources/hpxml-measures/BuildResidentialHPXML/resources/location.rb create mode 100644 example_files/resources/hpxml-measures/BuildResidentialHPXML/resources/schedules_weekday_state_and_monthly_schedule_shift.csv create mode 100644 example_files/resources/hpxml-measures/BuildResidentialHPXML/resources/schedules_weekend_state_and_monthly_schedule_shift.csv create mode 100644 example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-air-to-air-heat-pump-1-speed-cooling-only.osw create mode 100644 example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-air-to-air-heat-pump-1-speed-heating-only.osw create mode 100644 example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-furnace-coal-only.osw create mode 100644 example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-ground-to-air-heat-pump-cooling-only.osw create mode 100644 example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-ground-to-air-heat-pump-heating-only.osw rename example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/{extra-plug-loads-additional-multipliers.osw => base-hvac-install-quality-airflow-defect-furnace-gas-central-ac-1-speed.osw} (83%) create mode 100644 example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-install-quality-all-air-to-air-heat-pump-1-speed.osw create mode 100644 example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-install-quality-all-air-to-air-heat-pump-2-speed.osw create mode 100644 example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-install-quality-all-air-to-air-heat-pump-var-speed.osw create mode 100644 example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-install-quality-all-furnace-gas-central-ac-1-speed.osw create mode 100644 example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-install-quality-all-furnace-gas-central-ac-2-speed.osw create mode 100644 example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-install-quality-all-furnace-gas-central-ac-var-speed.osw create mode 100644 example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-install-quality-all-furnace-gas-only.osw create mode 100644 example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-install-quality-all-ground-to-air-heat-pump.osw create mode 100644 example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-install-quality-all-mini-split-air-conditioner-only-ducted.osw create mode 100644 example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-install-quality-all-mini-split-heat-pump-ducted.osw create mode 100644 example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-install-quality-charge-defect-furnace-gas-central-ac-1-speed.osw create mode 100644 example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-install-quality-none-furnace-gas-central-ac-1-speed.osw create mode 100644 example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-programmable-thermostat-detailed.osw create mode 100644 example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-location-helena-mt.osw create mode 100644 example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-location-honolulu-hi.osw create mode 100644 example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-location-phoenix-az.osw create mode 100644 example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-location-portland-or.osw create mode 100644 example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-mechvent-exhaust-rated-flow-rate.osw create mode 100644 example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-misc-shielding-of-home.osw rename example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/{extra-vacancy-6-months.osw => base-schedules-stochastic-vacant.osw} (83%) create mode 100644 example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-double-exterior.osw create mode 100644 example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-double-loaded-interior.osw create mode 100644 example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-eaves.osw create mode 100644 example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-single-exterior-front.osw create mode 100644 example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-slab-double-loaded-interior.osw create mode 100644 example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-slab-left-bottom-double-loaded-interior.osw create mode 100644 example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-slab-left-bottom.osw create mode 100644 example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-slab-left-middle-double-loaded-interior.osw create mode 100644 example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-slab-left-middle.osw create mode 100644 example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-slab-left-top-double-loaded-interior.osw create mode 100644 example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-slab-left-top.osw create mode 100644 example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-slab-middle-bottom-double-loaded-interior.osw create mode 100644 example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-slab-middle-bottom.osw create mode 100644 example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-slab-middle-middle-double-loaded-interior.osw create mode 100644 example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-slab-middle-middle.osw create mode 100644 example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-slab-middle-top-double-loaded-interior.osw create mode 100644 example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-slab-middle-top.osw create mode 100644 example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-slab-right-bottom-double-loaded-interior.osw create mode 100644 example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-slab-right-bottom.osw create mode 100644 example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-slab-right-middle-double-loaded-interior.osw create mode 100644 example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-slab-right-middle.osw create mode 100644 example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-slab-right-top-double-loaded-interior.osw create mode 100644 example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-slab-right-top.osw create mode 100644 example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-slab.osw create mode 100644 example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-unvented-crawlspace-double-loaded-interior.osw create mode 100644 example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-unvented-crawlspace-left-bottom-double-loaded-interior.osw create mode 100644 example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-unvented-crawlspace-left-bottom.osw create mode 100644 example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-unvented-crawlspace-left-middle-double-loaded-interior.osw create mode 100644 example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-unvented-crawlspace-left-middle.osw create mode 100644 example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-unvented-crawlspace-left-top-double-loaded-interior.osw create mode 100644 example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-unvented-crawlspace-left-top.osw create mode 100644 example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-unvented-crawlspace-middle-bottom-double-loaded-interior.osw create mode 100644 example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-unvented-crawlspace-middle-bottom.osw create mode 100644 example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-unvented-crawlspace-middle-middle-double-loaded-interior.osw create mode 100644 example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-unvented-crawlspace-middle-middle.osw create mode 100644 example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-unvented-crawlspace-middle-top-double-loaded-interior.osw create mode 100644 example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-unvented-crawlspace-middle-top.osw create mode 100644 example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-unvented-crawlspace-right-bottom-double-loaded-interior.osw create mode 100644 example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-unvented-crawlspace-right-bottom.osw create mode 100644 example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-unvented-crawlspace-right-middle-double-loaded-interior.osw create mode 100644 example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-unvented-crawlspace-right-middle.osw create mode 100644 example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-unvented-crawlspace-right-top-double-loaded-interior.osw create mode 100644 example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-unvented-crawlspace-right-top.osw create mode 100644 example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-unvented-crawlspace.osw create mode 100644 example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-vented-crawlspace-double-loaded-interior.osw create mode 100644 example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-vented-crawlspace-left-bottom-double-loaded-interior.osw create mode 100644 example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-vented-crawlspace-left-bottom.osw create mode 100644 example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-vented-crawlspace-left-middle-double-loaded-interior.osw create mode 100644 example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-vented-crawlspace-left-middle.osw create mode 100644 example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-vented-crawlspace-left-top-double-loaded-interior.osw create mode 100644 example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-vented-crawlspace-left-top.osw create mode 100644 example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-vented-crawlspace-middle-bottom-double-loaded-interior.osw create mode 100644 example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-vented-crawlspace-middle-bottom.osw create mode 100644 example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-vented-crawlspace-middle-middle-double-loaded-interior.osw create mode 100644 example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-vented-crawlspace-middle-middle.osw create mode 100644 example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-vented-crawlspace-middle-top-double-loaded-interior.osw create mode 100644 example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-vented-crawlspace-middle-top.osw create mode 100644 example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-vented-crawlspace-right-bottom-double-loaded-interior.osw create mode 100644 example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-vented-crawlspace-right-bottom.osw create mode 100644 example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-vented-crawlspace-right-middle-double-loaded-interior.osw create mode 100644 example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-vented-crawlspace-right-middle.osw create mode 100644 example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-vented-crawlspace-right-top-double-loaded-interior.osw create mode 100644 example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-vented-crawlspace-right-top.osw create mode 100644 example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-vented-crawlspace.osw create mode 100644 example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-single-family-attached-atticroof-conditioned-eaves-gable.osw create mode 100644 example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-single-family-attached-atticroof-conditioned-eaves-hip.osw create mode 100644 example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-single-family-attached-double-exterior.osw create mode 100644 example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-single-family-attached-double-loaded-interior.osw create mode 100644 example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-single-family-attached-single-exterior-front.osw create mode 100644 example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-single-family-attached-slab-middle.osw create mode 100644 example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-single-family-attached-slab-right.osw create mode 100644 example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-single-family-attached-slab.osw create mode 100644 example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-single-family-attached-unconditioned-basement-middle.osw create mode 100644 example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-single-family-attached-unconditioned-basement-right.osw create mode 100644 example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-single-family-attached-unconditioned-basement.osw create mode 100644 example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-single-family-attached-unvented-crawlspace-middle.osw create mode 100644 example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-single-family-attached-unvented-crawlspace-right.osw create mode 100644 example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-single-family-attached-unvented-crawlspace.osw create mode 100644 example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-single-family-attached-vented-crawlspace-middle.osw create mode 100644 example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-single-family-attached-vented-crawlspace-right.osw create mode 100644 example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-single-family-attached-vented-crawlspace.osw create mode 100644 example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-enclosure-atticroof-conditioned-eaves-gable.osw create mode 100644 example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-enclosure-atticroof-conditioned-eaves-hip.osw create mode 100644 example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-enclosure-garage-atticroof-conditioned.osw create mode 100644 example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-enclosure-windows-shading.osw delete mode 100644 example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-hvac-programmable-thermostat.osw create mode 100644 example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-second-heating-system-boiler-to-heat-pump.osw create mode 100644 example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-second-heating-system-boiler-to-heating-system.osw create mode 100644 example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-second-heating-system-fireplace-to-heat-pump.osw rename example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/{extra-second-heating-system-fireplace.osw => extra-second-heating-system-fireplace-to-heating-system.osw} (83%) create mode 100644 example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-second-heating-system-portable-heater-to-heat-pump.osw rename example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/{extra-second-heating-system-portable-heater.osw => extra-second-heating-system-portable-heater-to-heating-system.osw} (83%) create mode 100644 example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-zero-clothes-washer-kwh.osw create mode 100644 example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-zero-dishwasher-kwh.osw create mode 100644 example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-zero-extra-refrigerator-kwh.osw create mode 100644 example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-zero-freezer-kwh.osw create mode 100644 example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-zero-refrigerator-kwh.osw create mode 100644 example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/conditioned-attic-with-one-floor-above-grade.osw create mode 100644 example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/foundation-wall-insulation-greater-than-height.osw create mode 100644 example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/multipliers-without-other-plug-loads.osw rename example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/{multipliers-without-plug-loads.osw => multipliers-without-tv-plug-loads.osw} (82%) create mode 100644 example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/multipliers-without-vehicle-plug-loads.osw create mode 100644 example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/multipliers-without-well-pump-plug-loads.osw create mode 100644 example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/second-heating-system-but-no-primary-heating.osw create mode 100644 example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/second-heating-system-serves-total-heat-load.osw create mode 100644 example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/zero-number-of-bedrooms.osw create mode 100644 example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/schedules/vacant.csv create mode 100644 example_files/resources/hpxml-measures/Changelog.md create mode 100644 example_files/resources/hpxml-measures/weather/USA_AZ_Phoenix-Sky.Harbor.Intl.AP.722780_TMY3-cache.csv create mode 100644 example_files/resources/hpxml-measures/weather/USA_AZ_Phoenix-Sky.Harbor.Intl.AP.722780_TMY3.epw create mode 100644 example_files/resources/hpxml-measures/weather/USA_HI_Honolulu.Intl.AP.911820_TMY3-cache.csv create mode 100644 example_files/resources/hpxml-measures/weather/USA_HI_Honolulu.Intl.AP.911820_TMY3.epw create mode 100644 example_files/resources/hpxml-measures/weather/USA_MT_Helena.Rgnl.AP.727720_TMY3-cache.csv create mode 100644 example_files/resources/hpxml-measures/weather/USA_MT_Helena.Rgnl.AP.727720_TMY3.epw create mode 100644 example_files/resources/hpxml-measures/weather/USA_OR_Portland.Intl.AP.726980_TMY3-cache.csv create mode 100644 example_files/resources/hpxml-measures/weather/USA_OR_Portland.Intl.AP.726980_TMY3.epw create mode 100644 example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-dehumidifier-multiple.xml create mode 100644 example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-skylights-shading.xml create mode 100644 example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-split-surfaces2.xml rename example_files/resources/hpxml-measures/workflow/sample_files/{base-enclosure-windows-interior-shading.xml => base-enclosure-windows-shading.xml} (96%) create mode 100644 example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-basement-garage.xml create mode 100644 example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-cooling-only.xml create mode 100644 example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-heating-only.xml create mode 100644 example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-1-speed-cooling-only.xml create mode 100644 example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-1-speed-heating-only.xml rename example_files/resources/hpxml-measures/workflow/sample_files/{hvac_autosizing/base-hvac-air-to-air-heat-pump-1-speed-autosize-manual-s-oversize-allowances.xml => base-hvac-autosize-air-to-air-heat-pump-1-speed-manual-s-oversize-allowances.xml} (96%) rename example_files/resources/hpxml-measures/workflow/sample_files/{hvac_autosizing/base-hvac-air-to-air-heat-pump-1-speed-autosize.xml => base-hvac-autosize-air-to-air-heat-pump-1-speed.xml} (96%) rename example_files/resources/hpxml-measures/workflow/sample_files/{hvac_autosizing/base-hvac-air-to-air-heat-pump-2-speed-autosize-manual-s-oversize-allowances.xml => base-hvac-autosize-air-to-air-heat-pump-2-speed-manual-s-oversize-allowances.xml} (97%) rename example_files/resources/hpxml-measures/workflow/sample_files/{hvac_autosizing/base-hvac-air-to-air-heat-pump-2-speed-autosize.xml => base-hvac-autosize-air-to-air-heat-pump-2-speed.xml} (97%) rename example_files/resources/hpxml-measures/workflow/sample_files/{hvac_autosizing/base-hvac-air-to-air-heat-pump-var-speed-autosize-manual-s-oversize-allowances.xml => base-hvac-autosize-air-to-air-heat-pump-var-speed-manual-s-oversize-allowances.xml} (97%) rename example_files/resources/hpxml-measures/workflow/sample_files/{hvac_autosizing/base-hvac-air-to-air-heat-pump-var-speed-autosize.xml => base-hvac-autosize-air-to-air-heat-pump-var-speed.xml} (97%) rename example_files/resources/hpxml-measures/workflow/sample_files/{hvac_autosizing/base-hvac-boiler-elec-only-autosize.xml => base-hvac-autosize-boiler-elec-only.xml} (97%) rename example_files/resources/hpxml-measures/workflow/sample_files/{hvac_autosizing/base-hvac-boiler-gas-central-ac-1-speed-autosize.xml => base-hvac-autosize-boiler-gas-central-ac-1-speed.xml} (97%) rename example_files/resources/hpxml-measures/workflow/sample_files/{hvac_autosizing/base-hvac-boiler-gas-only-autosize.xml => base-hvac-autosize-boiler-gas-only.xml} (97%) rename example_files/resources/hpxml-measures/workflow/sample_files/{hvac_autosizing/base-hvac-central-ac-only-1-speed-autosize.xml => base-hvac-autosize-central-ac-only-1-speed.xml} (96%) rename example_files/resources/hpxml-measures/workflow/sample_files/{hvac_autosizing/base-hvac-central-ac-only-2-speed-autosize.xml => base-hvac-autosize-central-ac-only-2-speed.xml} (97%) rename example_files/resources/hpxml-measures/workflow/sample_files/{hvac_autosizing/base-hvac-central-ac-only-var-speed-autosize.xml => base-hvac-autosize-central-ac-only-var-speed.xml} (97%) rename example_files/resources/hpxml-measures/workflow/sample_files/{hvac_autosizing/base-hvac-central-ac-plus-air-to-air-heat-pump-heating-autosize.xml => base-hvac-autosize-central-ac-plus-air-to-air-heat-pump-heating.xml} (96%) rename example_files/resources/hpxml-measures/workflow/sample_files/{hvac_autosizing/base-hvac-dual-fuel-air-to-air-heat-pump-1-speed-autosize.xml => base-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed.xml} (96%) rename example_files/resources/hpxml-measures/workflow/sample_files/{hvac_autosizing/base-hvac-dual-fuel-mini-split-heat-pump-ducted-autosize.xml => base-hvac-autosize-dual-fuel-mini-split-heat-pump-ducted.xml} (96%) rename example_files/resources/hpxml-measures/workflow/sample_files/{hvac_autosizing/base-hvac-elec-resistance-only-autosize.xml => base-hvac-autosize-elec-resistance-only.xml} (97%) rename example_files/resources/hpxml-measures/workflow/sample_files/{hvac_autosizing/base-hvac-evap-cooler-furnace-gas-autosize.xml => base-hvac-autosize-evap-cooler-furnace-gas.xml} (97%) rename example_files/resources/hpxml-measures/workflow/sample_files/{hvac_autosizing/base-hvac-floor-furnace-propane-only-autosize.xml => base-hvac-autosize-floor-furnace-propane-only.xml} (97%) rename example_files/resources/hpxml-measures/workflow/sample_files/{hvac_autosizing/base-hvac-furnace-elec-only-autosize.xml => base-hvac-autosize-furnace-elec-only.xml} (97%) rename example_files/resources/hpxml-measures/workflow/sample_files/{hvac_autosizing/base-hvac-furnace-gas-central-ac-2-speed-autosize.xml => base-hvac-autosize-furnace-gas-central-ac-2-speed.xml} (97%) rename example_files/resources/hpxml-measures/workflow/sample_files/{hvac_autosizing/base-hvac-furnace-gas-central-ac-var-speed-autosize.xml => base-hvac-autosize-furnace-gas-central-ac-var-speed.xml} (97%) create mode 100644 example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-furnace-gas-only.xml rename example_files/resources/hpxml-measures/workflow/sample_files/{hvac_autosizing/base-hvac-furnace-gas-room-ac-autosize.xml => base-hvac-autosize-furnace-gas-room-ac.xml} (97%) create mode 100644 example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-ground-to-air-heat-pump-cooling-only.xml create mode 100644 example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-ground-to-air-heat-pump-heating-only.xml rename example_files/resources/hpxml-measures/workflow/sample_files/{hvac_autosizing/base-hvac-ground-to-air-heat-pump-autosize-manual-s-oversize-allowances.xml => base-hvac-autosize-ground-to-air-heat-pump-manual-s-oversize-allowances.xml} (96%) rename example_files/resources/hpxml-measures/workflow/sample_files/{hvac_autosizing/base-hvac-ground-to-air-heat-pump-autosize.xml => base-hvac-autosize-ground-to-air-heat-pump.xml} (96%) create mode 100644 example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-mini-split-air-conditioner-only-ducted.xml rename example_files/resources/hpxml-measures/workflow/sample_files/{hvac_autosizing/base-hvac-mini-split-heat-pump-ducted-cooling-only-autosize.xml => base-hvac-autosize-mini-split-heat-pump-ducted-cooling-only.xml} (96%) rename example_files/resources/hpxml-measures/workflow/sample_files/{hvac_autosizing/base-hvac-mini-split-heat-pump-ducted-heating-only-autosize.xml => base-hvac-autosize-mini-split-heat-pump-ducted-heating-only.xml} (96%) rename example_files/resources/hpxml-measures/workflow/sample_files/{hvac_autosizing/base-hvac-mini-split-heat-pump-ducted-autosize-manual-s-oversize-allowances.xml => base-hvac-autosize-mini-split-heat-pump-ducted-manual-s-oversize-allowances.xml} (96%) create mode 100644 example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-mini-split-heat-pump-ducted.xml rename example_files/resources/hpxml-measures/workflow/sample_files/{hvac_autosizing/base-hvac-room-ac-only-autosize.xml => base-hvac-autosize-room-ac-only.xml} (97%) rename example_files/resources/hpxml-measures/workflow/sample_files/{hvac_autosizing/base-hvac-stove-oil-only-autosize.xml => base-hvac-autosize-stove-oil-only.xml} (97%) rename example_files/resources/hpxml-measures/workflow/sample_files/{hvac_autosizing/base-hvac-wall-furnace-elec-only-autosize.xml => base-hvac-autosize-wall-furnace-elec-only.xml} (97%) rename example_files/resources/hpxml-measures/workflow/sample_files/{hvac_autosizing/base-autosize.xml => base-hvac-autosize.xml} (97%) create mode 100644 example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-ground-to-air-heat-pump-cooling-only.xml create mode 100644 example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-ground-to-air-heat-pump-heating-only.xml rename example_files/resources/hpxml-measures/workflow/sample_files/{invalid_files/slab-zero-exposed-perimeter.xml => base-hvac-install-quality-airflow-defect-furnace-gas-central-ac-1-speed.xml} (97%) rename example_files/resources/hpxml-measures/workflow/sample_files/{invalid_files/heat-pump-mixed-fixed-and-autosize-capacities2.xml => base-hvac-install-quality-all-air-to-air-heat-pump-1-speed.xml} (97%) create mode 100644 example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-all-air-to-air-heat-pump-2-speed.xml create mode 100644 example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-all-air-to-air-heat-pump-var-speed.xml rename example_files/resources/hpxml-measures/workflow/sample_files/{base-misc-shelter-coefficient.xml => base-hvac-install-quality-all-furnace-gas-central-ac-1-speed.xml} (96%) create mode 100644 example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-all-furnace-gas-central-ac-2-speed.xml create mode 100644 example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-all-furnace-gas-central-ac-var-speed.xml rename example_files/resources/hpxml-measures/workflow/sample_files/{hvac_autosizing/base-hvac-furnace-gas-only-autosize.xml => base-hvac-install-quality-all-furnace-gas-only.xml} (96%) create mode 100644 example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-all-ground-to-air-heat-pump.xml rename example_files/resources/hpxml-measures/workflow/sample_files/{hvac_autosizing/base-hvac-mini-split-air-conditioner-only-ducted-autosize.xml => base-hvac-install-quality-all-mini-split-air-conditioner-only-ducted.xml} (96%) rename example_files/resources/hpxml-measures/workflow/sample_files/{hvac_autosizing/base-hvac-mini-split-heat-pump-ducted-autosize.xml => base-hvac-install-quality-all-mini-split-heat-pump-ducted.xml} (96%) create mode 100644 example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-blower-efficiency-furnace-gas-central-ac-1-speed.xml create mode 100644 example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-charge-defect-furnace-gas-central-ac-1-speed.xml create mode 100644 example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-none-furnace-gas-central-ac-1-speed.xml create mode 100644 example_files/resources/hpxml-measures/workflow/sample_files/base-location-helena-mt.xml create mode 100644 example_files/resources/hpxml-measures/workflow/sample_files/base-location-honolulu-hi.xml create mode 100644 example_files/resources/hpxml-measures/workflow/sample_files/base-location-phoenix-az.xml create mode 100644 example_files/resources/hpxml-measures/workflow/sample_files/base-location-portland-or.xml create mode 100644 example_files/resources/hpxml-measures/workflow/sample_files/base-misc-shielding-of-home.xml create mode 100644 example_files/resources/hpxml-measures/workflow/sample_files/base-multiple-buildings.xml create mode 100644 example_files/resources/hpxml-measures/workflow/sample_files/base-schedules-stochastic-vacant.xml create mode 100644 example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/boiler-invalid-afue.xml create mode 100644 example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/dehumidifier-fraction-served.xml create mode 100644 example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/dehumidifier-setpoints.xml create mode 100644 example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/duct-leakage-cfm25.xml create mode 100644 example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/duct-leakage-percent.xml create mode 100644 example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/enclosure-floor-area-exceeds-cfa2.xml create mode 100644 example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/frac-sensible-fuel-load.xml create mode 100644 example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/frac-sensible-plug-load.xml create mode 100644 example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/frac-total-fuel-load.xml create mode 100644 example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/frac-total-plug-load.xml create mode 100644 example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/furnace-invalid-afue.xml create mode 100644 example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/generator-number-of-bedrooms-served.xml create mode 100644 example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/generator-output-greater-than-consumption.xml create mode 100644 example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/invalid-assembly-effective-rvalue.xml create mode 100644 example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/invalid-foundation-wall-properties.xml create mode 100644 example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/invalid-id.xml create mode 100644 example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/invalid-id2.xml create mode 100644 example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/invalid-infiltration-volume.xml create mode 100644 example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/invalid-number-of-bedrooms-served.xml create mode 100644 example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/invalid-number-of-conditioned-floors.xml create mode 100644 example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/invalid-number-of-units-served.xml create mode 100644 example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/invalid-shared-vent-in-unit-flowrate.xml create mode 100644 example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/multiple-buildings-without-building-id.xml create mode 100644 example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/multiple-buildings-wrong-building-id.xml rename example_files/resources/hpxml-measures/workflow/sample_files/{base-hvac-ideal-air.xml => invalid_files/multiple-shared-cooling-systems.xml} (64%) create mode 100644 example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/multiple-shared-heating-systems.xml rename example_files/{measures/BuildResidentialModel => }/resources/measure-info.json (100%) rename example_files/{measures/BuildResidentialModel => }/resources/meta_measure.rb (69%) diff --git a/example_files/example_project_combined.json b/example_files/example_project_combined.json index cd535b0c..4eaf4a55 100644 --- a/example_files/example_project_combined.json +++ b/example_files/example_project_combined.json @@ -620,6 +620,7 @@ "attic_type": "attic - vented", "system_type": "Residential - furnace and central air conditioner", "heating_system_fuel_type": "natural gas", + "onsite_parking_fraction": 1, "template": "Residential IECC 2015 - Customizable Template Sep 2020" }, "geometry": { @@ -660,7 +661,7 @@ "floor_area": 4260, "footprint_area": 2130, "number_of_stories_above_ground": 2, - "number_of_stories": 2, + "number_of_stories": 3, "number_of_bedrooms": 4, "foundation_type": "basement - unconditioned", "attic_type": "attic - unvented", @@ -700,13 +701,13 @@ "type": "Feature", "properties": { "id": "16", - "name": "Residential 3", + "name": "Residenital 3", "type": "Building", "building_type": "Single-Family Detached", "floor_area": 5500, - "footprint_area": 4655, - "number_of_stories_above_ground": 1, - "number_of_stories": 1, + "footprint_area": 1833, + "number_of_stories_above_ground": 2, + "number_of_stories": 3, "number_of_bedrooms": 5, "foundation_type": "basement - conditioned", "attic_type": "attic - conditioned", @@ -749,6 +750,100 @@ ] ] } + }, + { + "type": "Feature", + "properties": { + "id": "17", + "name": "Residential 4", + "type": "Building", + "building_type": "Single-Family Attached", + "floor_area": 18320, + "footprint_area": 9160, + "number_of_stories_above_ground": 2, + "number_of_stories": 2, + "number_of_bedrooms": 6, + "foundation_type": "slab", + "attic_type": "attic - vented", + "system_type": "Residential - furnace and room air conditioner", + "heating_system_fuel_type": "fuel oil", + "number_of_residential_units": 4, + "template": "Residential IECC 2015 - Customizable Template Sep 2020" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -78.84911656368786, + 42.81252982958267 + ], + [ + -78.84890198696667, + 42.81258229954116 + ], + [ + -78.84870886759019, + 42.81219926882915 + ], + [ + -78.84893774986267, + 42.812152045720157 + ], + [ + -78.84911656368786, + 42.81252982958267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "18", + "name": "Residential 5", + "type": "Building", + "building_type": "Multifamily", + "floor_area": 28636, + "footprint_area": 14318, + "number_of_stories_above_ground": 2, + "number_of_stories": 2, + "number_of_bedrooms": 16, + "foundation_type": "slab", + "attic_type": "flat roof", + "system_type": "Residential - furnace and room air conditioner", + "heating_system_fuel_type": "wood", + "number_of_residential_units": 8, + "template": "Residential IECC 2015 - Customizable Template Sep 2020" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -78.84857296921837, + 42.81262558701127 + ], + [ + -78.84849429130556, + 42.81245768365727 + ], + [ + -78.84770035743714, + 42.8126465749435 + ], + [ + -78.8478219506942, + 42.812809230906598 + ], + [ + -78.84857296921837, + 42.81262558701127 + ] + ] + ] + } } ], "mappers": [], diff --git a/example_files/mappers/Baseline.rb b/example_files/mappers/Baseline.rb index f968e251..5eb47865 100644 --- a/example_files/mappers/Baseline.rb +++ b/example_files/mappers/Baseline.rb @@ -1,31 +1,21 @@ #********************************************************************************* -# URBANopt™, Copyright (c) 2019-2021, Alliance for Sustainable Energy, LLC, and other +# URBANopt™, Copyright (c) 2019-2020, Alliance for Sustainable Energy, LLC, and other # contributors. All rights reserved. - +# # Redistribution and use in source and binary forms, with or without modification, # are permitted provided that the following conditions are met: - +# # Redistributions of source code must retain the above copyright notice, this list # of conditions and the following disclaimer. - +# # Redistributions in binary form must reproduce the above copyright notice, this # list of conditions and the following disclaimer in the documentation and/or other # materials provided with the distribution. - +# # Neither the name of the copyright holder nor the names of its contributors may be # used to endorse or promote products derived from this software without specific # prior written permission. - -# Redistribution of this software, without modification, must refer to the software -# by the same designation. Redistribution of a modified version of this software -# (i) may not refer to the modified version by the same designation, or by any -# confusingly similar designation, and (ii) must refer to the underlying software -# originally provided by Alliance as “URBANopt”. Except to comply with the foregoing, -# the term “URBANopt”, or any confusingly similar designation may not be used to -# refer to any modified version of this software or any modified version of the -# underlying software originally provided by Alliance without the prior written -# consent of Alliance. - +# # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND # ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED # WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. @@ -281,17 +271,14 @@ def commercial_building_types 'Food service', 'Inpatient health care', 'Nursing', - 'Lodging', + 'Lodging', 'Strip shopping mall', 'Enclosed mall', 'Retail other than mall', 'Service', 'Uncovered Parking', 'Covered Parking', - 'Mixed use', - 'Single-Family', - 'Multifamily (2 to 4 units)', - 'Multifamily (5 or more units)' + 'Mixed use' ] end @@ -393,7 +380,7 @@ def get_climate_zone_iecc(epw) end def create_osw(scenario, features, feature_names) - + if features.size != 1 raise "Baseline currently cannot simulate more than one feature." end @@ -463,6 +450,7 @@ def create_osw(scenario, features, feature_names) when 'Multifamily' args[:geometry_building_num_units] = feature.number_of_residential_units args[:geometry_unit_type] = "apartment unit" + args[:geometry_corridor_position] = 'Double Exterior' # if we had an interior corridor, we'd have to subtract its area from the footprint area end args[:geometry_foundation_type] = "SlabOnGrade" @@ -485,12 +473,11 @@ def create_osw(scenario, features, feature_names) args[:geometry_foundation_height] = 8.0 end - args[:geometry_attic_type] = "ConditionedAttic" + args[:geometry_attic_type] = "VentedAttic" args[:geometry_roof_type] = "flat" begin case feature.attic_type when 'attic - vented' - args[:geometry_attic_type] = "VentedAttic" args[:geometry_roof_type] = "gable" when 'attic - unvented' args[:geometry_attic_type] = "UnventedAttic" @@ -515,17 +502,27 @@ def create_osw(scenario, features, feature_names) args[:geometry_num_bedrooms] = feature.number_of_bedrooms args[:geometry_num_bedrooms] /= args[:geometry_building_num_units] - # SCHEDULES - - args[:schedules_type] = 'stochastic' begin - schedules_random_seed = Float(feature_id) - if schedules_random_seed % 1 == 0 - args[:schedules_random_seed] = Integer(schedules_random_seed) + num_garage_spaces = 0 + if feature.onsite_parking_fraction + num_garage_spaces = 1 + if args[:geometry_cfa] > 2500.0 + num_garage_spaces = 2 + end end + args[:geometry_garage_width] = 12.0 * num_garage_spaces + args[:geometry_garage_protrusion] = 1.0 rescue end + args[:neighbor_left_distance] = 0.0 + args[:neighbor_right_distance] = 0.0 + + # SCHEDULES + + args[:schedules_type] = 'stochastic' + args[:feature_id] = feature_id.hex + # HVAC system_type = "Residential - furnace and central air conditioner" @@ -576,10 +573,7 @@ def create_osw(scenario, features, feature_names) args[:cooking_range_oven_fuel_type] = args[:heating_system_fuel] args[:clothes_dryer_fuel_type] = args[:heating_system_fuel] - # VENTILATION - - args[:kitchen_fans_present] = true - args[:bathroom_fans_present] = true + # WATER HEATER args[:water_heater_fuel_type] = args[:heating_system_fuel] @@ -654,13 +648,20 @@ def create_osw(scenario, features, feature_names) args.update(row) unless row.nil? end - # VENTILATION + # MECHANICAL VENTILATION - mechvent_filepath = File.join(File.dirname(__FILE__), "residential/mechanical_ventilation.tsv") + mechvent_filepath = File.join(File.dirname(__FILE__), 'residential/mechanical_ventilation.tsv') mechvent = get_lookup_tsv(args, mechvent_filepath) row = get_lookup_row(args, mechvent, template_vals) args.update(row) unless row.nil? + # EXHAUST + + exhaust_filepath = File.join(File.dirname(__FILE__), 'residential/exhaust.tsv') + exhaust = get_lookup_tsv(args, exhaust_filepath) + row = get_lookup_row(args, exhaust, template_vals) + args.update(row) unless row.nil? + # WATER HEATER water_heater_filepath = File.join(File.dirname(__FILE__), 'residential/water_heater.tsv') @@ -689,6 +690,8 @@ def create_osw(scenario, features, feature_names) args.keys.each do |arg_name| unless default_args.keys.include? arg_name + next if arg_name == 'feature_id' + puts "Argument '#{arg_name}' is unknown." end end @@ -957,10 +960,10 @@ def time_mapping(time) end rescue end - + # TODO: surface_elevation has no current mapping # TODO: tariff_filename has no current mapping - + # create a bar building, will have spaces tagged with individual space types given the # input building types # set skip measure to false diff --git a/example_files/mappers/HighEfficiency.rb b/example_files/mappers/HighEfficiency.rb index 890e75cb..9503e898 100644 --- a/example_files/mappers/HighEfficiency.rb +++ b/example_files/mappers/HighEfficiency.rb @@ -1,31 +1,21 @@ #********************************************************************************* -# URBANopt™, Copyright (c) 2019-2021, Alliance for Sustainable Energy, LLC, and other +# URBANopt™, Copyright (c) 2019-2020, Alliance for Sustainable Energy, LLC, and other # contributors. All rights reserved. - +# # Redistribution and use in source and binary forms, with or without modification, # are permitted provided that the following conditions are met: - +# # Redistributions of source code must retain the above copyright notice, this list # of conditions and the following disclaimer. - +# # Redistributions in binary form must reproduce the above copyright notice, this # list of conditions and the following disclaimer in the documentation and/or other # materials provided with the distribution. - +# # Neither the name of the copyright holder nor the names of its contributors may be # used to endorse or promote products derived from this software without specific # prior written permission. - -# Redistribution of this software, without modification, must refer to the software -# by the same designation. Redistribution of a modified version of this software -# (i) may not refer to the modified version by the same designation, or by any -# confusingly similar designation, and (ii) must refer to the underlying software -# originally provided by Alliance as “URBANopt”. Except to comply with the foregoing, -# the term “URBANopt”, or any confusingly similar designation may not be used to -# refer to any modified version of this software or any modified version of the -# underlying software originally provided by Alliance without the prior written -# consent of Alliance. - +# # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND # ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED # WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. diff --git a/example_files/measures/BuildResidentialModel/measure.rb b/example_files/measures/BuildResidentialModel/measure.rb index a5c93734..d24e047c 100644 --- a/example_files/measures/BuildResidentialModel/measure.rb +++ b/example_files/measures/BuildResidentialModel/measure.rb @@ -2,15 +2,16 @@ # http://nrel.github.io/OpenStudio-user-documentation/measures/measure_writing_guide/ require 'openstudio' - -# require gem for merge measures -# was able to harvest measure paths from primary osw for meta osw. Remove this once confirm that works -#require 'openstudio-model-articulation' -#require 'measures/merge_spaces_from_external_file/measure.rb' - -resources_dir = File.absolute_path(File.join(File.dirname(__FILE__), 'resources')) -meta_measure_file = File.join(resources_dir, 'meta_measure.rb') -require File.join(File.dirname(meta_measure_file), File.basename(meta_measure_file, File.extname(meta_measure_file))) +if File.exist? File.absolute_path(File.join(File.dirname(__FILE__), '../../lib/resources/hpxml-measures/HPXMLtoOpenStudio/resources')) # Hack to run ResStock on AWS + resources_path = File.absolute_path(File.join(File.dirname(__FILE__), '../../lib/resources/hpxml-measures/HPXMLtoOpenStudio/resources')) +elsif File.exist? File.absolute_path(File.join(File.dirname(__FILE__), '../../resources/hpxml-measures/HPXMLtoOpenStudio/resources')) # Hack to run ResStock unit tests locally + resources_path = File.absolute_path(File.join(File.dirname(__FILE__), '../../resources/hpxml-measures/HPXMLtoOpenStudio/resources')) +elsif File.exist? File.join(OpenStudio::BCLMeasure::userMeasuresDir.to_s, 'HPXMLtoOpenStudio/resources') # Hack to run measures in the OS App since applied measures are copied off into a temporary directory + resources_path = File.join(OpenStudio::BCLMeasure::userMeasuresDir.to_s, 'HPXMLtoOpenStudio/resources') +else + resources_path = File.absolute_path(File.join(File.dirname(__FILE__), '../HPXMLtoOpenStudio/resources')) +end +require File.join(resources_path, 'meta_measure') # start the measure class BuildResidentialModel < OpenStudio::Measure::ModelMeasure @@ -31,12 +32,18 @@ def modeler_description # define the arguments that the user will input def arguments(model) + args = OpenStudio::Measure::OSArgumentVector.new + + arg = OpenStudio::Ruleset::OSArgument.makeIntegerArgument('feature_id', true) + arg.setDisplayName('Feature ID') + arg.setDescription('The feature ID passed from Baseline.rb.') + args << arg + measures_dir = File.absolute_path(File.join(File.dirname(__FILE__), '../../resources/hpxml-measures')) measure_subdir = 'BuildResidentialHPXML' full_measure_path = File.join(measures_dir, measure_subdir, 'measure.rb') measure = get_measure_instance(full_measure_path) - args = OpenStudio::Measure::OSArgumentVector.new measure.arguments(model).each do |arg| next if ['hpxml_path'].include? arg.name args << arg @@ -55,12 +62,7 @@ def run(model, runner, user_arguments) end # assign the user inputs to variables - measures_dir = File.absolute_path(File.join(File.dirname(__FILE__), '../../resources/hpxml-measures')) - measure_subdir = 'BuildResidentialHPXML' - full_measure_path = File.join(measures_dir, measure_subdir, 'measure.rb') - check_file_exists(full_measure_path, runner) - measure = get_measure_instance(full_measure_path) - args = measure.get_argument_values(runner, user_arguments) + args = get_argument_values(runner, arguments(model), user_arguments) # optionals: get or remove args.keys.each do |arg| @@ -74,77 +76,65 @@ def run(model, runner, user_arguments) end end - # apply whole building create geometry measures - measures_dir = File.absolute_path(File.join(File.dirname(__FILE__), '../../measures')) - check_dir_exists(measures_dir, runner) - - if args[:geometry_unit_type] == 'single-family detached' - measure_subdir = 'ResidentialGeometryCreateSingleFamilyDetached' - elsif args[:geometry_unit_type] == 'single-family attached' - measure_subdir = 'ResidentialGeometryCreateSingleFamilyAttached' - elsif args[:geometry_unit_type] == 'apartment unit' - measure_subdir = 'ResidentialGeometryCreateMultifamily' - end - - full_measure_path = File.join(measures_dir, measure_subdir, 'measure.rb') - check_file_exists(full_measure_path, runner) - measure = get_measure_instance(full_measure_path) - - measure_args = {} - whole_building_model = OpenStudio::Model::Model.new - get_measure_args_default_values(whole_building_model, measure_args, measure) - - measures = {} - measures[measure_subdir] = [] - if ['ResidentialGeometryCreateSingleFamilyAttached', 'ResidentialGeometryCreateMultifamily'].include? measure_subdir - measure_args[:unit_ffa] = args[:geometry_cfa] - measure_args[:num_floors] = args[:geometry_num_floors_above_grade] - measure_args[:num_units] = args[:geometry_num_units] - end - measure_args = Hash[measure_args.collect{ |k, v| [k.to_s, v] }] - measures[measure_subdir] << measure_args - - if not apply_measures(measures_dir, measures, runner, whole_building_model, nil, nil, true) - return false - end - # get file/dir paths - resources_dir = File.absolute_path(File.join(File.dirname(__FILE__), 'resources')) + resources_dir = File.absolute_path(File.join(File.dirname(__FILE__), '../../resources')) + meta_measure_file = File.join(resources_dir, 'meta_measure.rb') + require File.join(File.dirname(meta_measure_file), File.basename(meta_measure_file, File.extname(meta_measure_file))) workflow_json = File.join(resources_dir, 'measure-info.json') # apply HPXML measures - measures_dir = File.absolute_path(File.join(File.dirname(__FILE__), '../../resources/hpxml-measures')) + measures_dir = File.join(resources_dir, 'hpxml-measures') check_dir_exists(measures_dir, runner) - whole_building_model.getBuildingUnits.each_with_index do |unit, num_unit| + # these will get added back in by unit_model + model.getBuilding.remove + model.getShadowCalculation.remove + model.getSimulationControl.remove + model.getSite.remove + model.getTimestep.remove + + units = get_unit_positions(runner, args) + if units.empty? + return false + end + + units.each_with_index do |unit, unit_num| unit_model = OpenStudio::Model::Model.new + hpxml_path = File.expand_path("../#{unit['name']}.xml") + # BuildResidentialHPXML measure_subdir = 'BuildResidentialHPXML' + full_measure_path = File.join(measures_dir, measure_subdir, 'measure.rb') + check_file_exists(full_measure_path, runner) # fill the measure args hash with default values - measure_args = args + measure_args = args.clone + measure_args.delete('feature_id') measures = {} measures[measure_subdir] = [] - measure_args[:hpxml_path] = File.expand_path('../out.xml') + measure_args['hpxml_path'] = hpxml_path begin - measure_args[:software_program_used] = File.basename(File.absolute_path(File.join(File.dirname(__FILE__), '../../..'))) + measure_args['software_program_used'] = File.basename(File.absolute_path(File.join(File.dirname(__FILE__), '../../..'))) rescue end begin version_rb File.absolute_path(File.join(File.dirname(__FILE__), '../../../lib/uo_cli/version.rb')) require version_rb - measure_args[:software_program_version] = URBANopt::CLI::VERSION + measure_args['software_program_version'] = URBANopt::CLI::VERSION rescue end - if unit.additionalProperties.getFeatureAsString('GeometryLevel').is_initialized - measure_args[:geometry_level] = unit.additionalProperties.getFeatureAsString('GeometryLevel').get + measure_args['schedules_random_seed'] = args['feature_id'] * (unit_num + 1) # variation across units, but deterministic + if unit.keys.include?('geometry_level') + measure_args['geometry_level'] = unit['geometry_level'] end - if unit.additionalProperties.getFeatureAsString('GeometryHorizontalLocation').is_initialized - measure_args[:geometry_horizontal_location] = unit.additionalProperties.getFeatureAsString('GeometryHorizontalLocation').get + if unit.keys.include?('geometry_horizontal_location') + measure_args['geometry_horizontal_location'] = unit['geometry_horizontal_location'] + end + if unit.keys.include?('geometry_orientation') + measure_args['geometry_orientation'] = unit['geometry_orientation'] end - measure_args = Hash[measure_args.collect{ |k, v| [k.to_s, v] }] measures[measure_subdir] << measure_args # HPXMLtoOpenStudio @@ -156,105 +146,197 @@ def run(model, runner, user_arguments) measure_args = {} measures[measure_subdir] = [] - measure_args[:hpxml_path] = File.expand_path('../out.xml') - measure_args[:output_dir] = File.expand_path('..') - measure_args[:debug] = true - measure_args = Hash[measure_args.collect{ |k, v| [k.to_s, v] }] + measure_args['hpxml_path'] = hpxml_path + measure_args['output_dir'] = File.expand_path('..') + measure_args['debug'] = true measures[measure_subdir] << measure_args - if not apply_measures(measures_dir, measures, runner, unit_model, workflow_json, 'out.osw', true) + if not apply_child_measures(measures_dir, measures, runner, unit_model, workflow_json, "#{unit['name']}.osw", true) return false end - case args[:geometry_unit_type] + # store metadata for default feature reports measure + standards_number_of_above_ground_stories = Integer(args['geometry_num_floors_above_grade']) + standards_number_of_stories = Integer(args['geometry_num_floors_above_grade']) + number_of_conditioned_stories = Integer(args['geometry_num_floors_above_grade']) + if ['UnconditionedBasement', 'ConditionedBasement'].include?(args['geometry_foundation_type']) + standards_number_of_stories += 1 + if ['ConditionedBasement'].include?(args['geometry_foundation_type']) + number_of_conditioned_stories += 1 + end + end + + standards_number_of_living_units = 1 + if args.keys.include?('geometry_building_num_units') + standards_number_of_living_units = Integer(args['geometry_building_num_units']) + end + + case args['geometry_unit_type'] when 'single-family detached' building_type = 'Single-Family Detached' when 'single-family attached' building_type = 'Single-Family Attached' - when 'multifamily' + when 'apartment unit' building_type = 'Multifamily' end unit_model.getSpaceTypes.each do |space_type| next unless space_type.standardsSpaceType.is_initialized + next if space_type.standardsSpaceType.get != 'living space' space_type.setStandardsBuildingType(building_type) end - unit_dir = File.expand_path("../unit #{num_unit+1}") - Dir.mkdir(unit_dir) - FileUtils.cp(File.expand_path('../out.xml'), unit_dir) # this is the raw hpxml file - FileUtils.cp(File.expand_path('../out.osw'), unit_dir) # this has hpxml measure arguments in it - FileUtils.cp(File.expand_path('../in.osm'), unit_dir) # this is osm translated from hpxml + unit_model.getBuilding.setStandardsBuildingType('Residential') + unit_model.getBuilding.setStandardsNumberOfAboveGroundStories(standards_number_of_above_ground_stories) + unit_model.getBuilding.setStandardsNumberOfStories(standards_number_of_stories) + unit_model.getBuilding.setNominalFloortoFloorHeight(Float(args['geometry_wall_height'])) + unit_model.getBuilding.setStandardsNumberOfLivingUnits(standards_number_of_living_units) + unit_model.getBuilding.additionalProperties.setFeature('NumberOfConditionedStories', number_of_conditioned_stories) - if whole_building_model.getBuildingUnits.length == 1 - model.getBuilding.remove - model.getShadowCalculation.remove - model.getSimulationControl.remove - model.getSite.remove - model.getTimestep.remove + if unit_num == 0 # for the first building unit, add everything model.addObjects(unit_model.objects, true) - next - end - # create building unit object to assign to spaces - building_unit = OpenStudio::Model::BuildingUnit.new(unit_model) - building_unit.setName("building_unit_#{num_unit}") + else # for single-family attached and multifamily, add "almost" everything - # save modified copy of model for use with merge - unit_model.getSpaces.sort.each do |space| - space.setYOrigin(60 * (num_unit-1)) # meters - space.setBuildingUnit(building_unit) - end + # shift the unit so it's not right on top of the previous one + unit_model.getSpaces.sort.each do |space| + space.setYOrigin(100.0 * unit_num) # meters + end - # prefix all objects with name using unit number. May be cleaner if source models are setup with unique names - unit_model.objects.each do |model_object| - next if model_object.name.nil? - model_object.setName("unit_#{num_unit} #{model_object.name.to_s}") - end + # prefix all objects with name using unit number. May be cleaner if source models are setup with unique names + sensors_and_actuators_map = {} + unit_model.getEnergyManagementSystemSensors.each do |sensor| + sensors_and_actuators_map[sensor.name.to_s] = "#{unit['name'].gsub(' ', '_')}_#{sensor.name}" + sensor.setKeyName("#{unit['name']} #{sensor.keyName}") unless sensor.keyName.empty? + end + unit_model.getEnergyManagementSystemActuators.each do |actuator| + sensors_and_actuators_map[actuator.name.to_s] = "#{unit['name'].gsub(' ', '_')}_#{actuator.name}" + end - moodified_unit_path = File.join(unit_dir, 'modified_unit.osm') - unit_model.save(moodified_unit_path, true) + # variables in program lines don't get updated automatically + unit_model.getEnergyManagementSystemPrograms.each do |program| + new_lines = [] + program.lines.each_with_index do |line, i| + sensors_and_actuators_map.each do |old_name, new_name| + line = line.gsub(" #{old_name}", " #{new_name}") if line.include?(" #{old_name}") + line = line.gsub("(#{old_name} ", "(#{new_name} ") if line.include?("(#{old_name} ") + line = line.gsub(" #{old_name})", " #{new_name})") if line.include?(" #{old_name})") + line = line.gsub("-#{old_name})", "-#{new_name})") if line.include?("-#{old_name})") + line = line.gsub("+#{old_name})", "+#{new_name})") if line.include?("+#{old_name})") + line = line.gsub("*#{old_name})", "*#{new_name})") if line.include?("*#{old_name})") + end + new_lines << line + end + program.setLines(new_lines) + end - # run merge merge_spaces_from_external_file to add this unit to original model - merge_measures_dir = nil - osw_measure_paths = runner.workflow.measurePaths - osw_measure_paths.each do |orig_measure_path| - next if not orig_measure_path.to_s.include?('gems/openstudio-model-articulation') - merge_measures_dir = orig_measure_path.to_s - break - end - merge_measure_subdir = 'merge_spaces_from_external_file' - merge_measures = {} - merge_measure_args = {} - merge_measures[merge_measure_subdir] = [] - merge_measure_args[:external_model_name] = moodified_unit_path - merge_measure_args[:merge_geometry] = true - merge_measure_args[:merge_loads] = true - merge_measure_args[:merge_attribute_names] = true - merge_measure_args[:add_spaces] = true - merge_measure_args[:remove_spaces] = false - merge_measure_args[:merge_schedules] = true - merge_measure_args[:compact_to_ruleset] = false - merge_measure_args[:merge_zones] = true - merge_measure_args[:merge_air_loops] = true - merge_measure_args[:merge_plant_loops] = true - merge_measure_args[:merge_swh] = true - merge_measure_args = Hash[merge_measure_args.collect{ |k, v| [k.to_s, v] }] - merge_measures[merge_measure_subdir] << merge_measure_args - - # for this instance pass in original model and not unit_model. unit_model path witll be an argument - if not apply_measures(merge_measures_dir, merge_measures, runner, model, workflow_json, 'out.osw', true) - return false - end + unit_model.objects.each do |model_object| + next if model_object.name.nil? + model_object.setName("#{unit['name']} #{model_object.name.to_s}") + end + + # we already have the following unique objects from the first building unit + unit_model.getConvergenceLimits.remove + unit_model.getOutputDiagnostics.remove + unit_model.getRunPeriodControlDaylightSavingTime.remove + unit_model.getShadowCalculation.remove + unit_model.getSimulationControl.remove + unit_model.getSiteGroundTemperatureDeep.remove + unit_model.getSiteGroundTemperatureShallow.remove + unit_model.getSite.remove + unit_model.getInsideSurfaceConvectionAlgorithm.remove + unit_model.getOutsideSurfaceConvectionAlgorithm.remove + unit_model.getTimestep.remove + unit_model.getFoundationKivaSettings.remove + unit_model_objects = [] + unit_model.objects.each do |obj| + unit_model_objects << obj unless obj.to_Building.is_initialized # if we remove this, we lose all thermal zones + end + + model.addObjects(unit_model_objects, true) + end end - # TODO: add surface intersection and matching (is don't in measure now but would be better to do once at end, make bool to skip in merge measure) + # save the "re-composed" model with all building units to file + building_path = File.expand_path(File.join('..', 'whole_building.osm')) + model.save(building_path, true) return true end + def get_unit_positions(runner, args) + units = [] + if args['geometry_unit_type'] == 'single-family detached' + units << {'name' => "unit 1"} + elsif args['geometry_unit_type'] == 'single-family attached' + (1..args['geometry_building_num_units']).to_a.each do |unit_num| + if unit_num == 1 + units << {'name' => "unit #{unit_num}", 'geometry_horizontal_location' => 'Left'} + elsif unit_num == args['geometry_building_num_units'] + units << {'name' => "unit #{unit_num}", 'geometry_horizontal_location' => 'Right'} + else + units << {'name' => "unit #{unit_num}", 'geometry_horizontal_location' => 'Middle'} + end + end + elsif args['geometry_unit_type'] == 'apartment unit' + if args['geometry_corridor_position'] == 'Double Exterior' + + num_units_per_floor = (Float(args['geometry_building_num_units']) / Float(args['geometry_num_floors_above_grade'])).ceil + if num_units_per_floor == 1 + runner.registerError("num_units_per_floor='#{num_units_per_floor}' not supported.") + return units + end + + floor = 1 + position = 1 + (1..args['geometry_building_num_units']).to_a.each do |unit_num| + + geometry_orientation = 180.0 + if position.even? + geometry_orientation = 0.0 + end + + geometry_horizontal_location = 'Middle' + if position == 1 + geometry_horizontal_location = 'Left' + elsif position == 2 + geometry_horizontal_location = 'Right' + elsif position == num_units_per_floor and num_units_per_floor.even? + geometry_horizontal_location = 'Left' + elsif position == num_units_per_floor and num_units_per_floor.odd? + geometry_horizontal_location = 'Right' + elsif position + 1 == num_units_per_floor and num_units_per_floor.even? + geometry_horizontal_location = 'Right' + elsif position + 1 == num_units_per_floor and num_units_per_floor.odd? + geometry_horizontal_location = 'Left' + end + + if floor == 1 + geometry_level = 'Bottom' + elsif floor == args['geometry_num_floors_above_grade'] + geometry_level = 'Top' + else + geometry_level = 'Middle' + end + + if unit_num % num_units_per_floor == 0 + floor += 1 + position = 0 + end + position += 1 + + units << {'name' => "unit #{unit_num}", 'geometry_horizontal_location' => geometry_horizontal_location, 'geometry_level' => geometry_level, 'geometry_orientation' => geometry_orientation} + end + else + runner.registerError("geometry_corridor_position='#{args['geometry_corridor_position']}' not supported.") + return units + end + end + return units + end + def get_measure_args_default_values(model, args, measure) measure.arguments(model).each do |arg| next unless arg.hasDefaultValue diff --git a/example_files/measures/ResidentialGeometryCreateMultifamily/measure.rb b/example_files/measures/ResidentialGeometryCreateMultifamily/measure.rb deleted file mode 100644 index e08057ce..00000000 --- a/example_files/measures/ResidentialGeometryCreateMultifamily/measure.rb +++ /dev/null @@ -1,1005 +0,0 @@ -# see the URL below for information on how to write OpenStudio measures -# http://nrel.github.io/OpenStudio-user-documentation/reference/measure_writing_guide/ - -resources_path = File.absolute_path(File.join(File.dirname(__FILE__), "../BuildResidentialModel/resources")) -require File.join(resources_path, "constants") -require File.join(resources_path, "geometry") -require File.join(resources_path, "unit_conversions") - -# start the measure -class CreateResidentialMultifamilyGeometry < OpenStudio::Measure::ModelMeasure - # human readable name - def name - return "Create Residential Multifamily Geometry" - end - - # human readable description - def description - return "Sets the basic geometry for the multifamily building, where all units are 1 story and stacked if the building is multiple stories. Sets the number of bedrooms, bathrooms, and occupants in the building.#{WholeBuildingConstants.WorkflowDescription}" - end - - # human readable description of modeling approach - def modeler_description - return "Creates multifamily geometry. Also, sets (or replaces) BuildingUnit objects that store the number of bedrooms and bathrooms associated with the model. Sets (or replaces) the People object for each finished space in the model." - end - - # define the arguments that the user will input - def arguments(model) - args = OpenStudio::Measure::OSArgumentVector.new - - # make an argument for unit living space floor area - unit_ffa = OpenStudio::Measure::OSArgument::makeDoubleArgument("unit_ffa", true) - unit_ffa.setDisplayName("Unit Finished Floor Area") - unit_ffa.setUnits("ft^2") - unit_ffa.setDescription("Unit floor area of the finished space (including any finished basement floor area).") - unit_ffa.setDefaultValue(900.0) - args << unit_ffa - - # make an argument for living space height - wall_height = OpenStudio::Measure::OSArgument::makeDoubleArgument("wall_height", true) - wall_height.setDisplayName("Wall Height (Per Floor)") - wall_height.setUnits("ft") - wall_height.setDescription("The height of the living space walls.") - wall_height.setDefaultValue(8.0) - args << wall_height - - # make an argument for total number of floors - num_floors = OpenStudio::Measure::OSArgument::makeIntegerArgument("num_floors", true) - num_floors.setDisplayName("Building Number of Floors") - num_floors.setUnits("#") - num_floors.setDescription("The number of floors above grade.") - num_floors.setDefaultValue(1) - args << num_floors - - # make an argument for number of units - num_units = OpenStudio::Measure::OSArgument::makeIntegerArgument("num_units", true) - num_units.setDisplayName("Num Units") - num_units.setUnits("#") - num_units.setDescription("The number of units. This must be divisible by the number of floors.") - num_units.setDefaultValue(2) - args << num_units - - # make an argument for unit aspect ratio - unit_aspect_ratio = OpenStudio::Measure::OSArgument::makeDoubleArgument("unit_aspect_ratio", true) - unit_aspect_ratio.setDisplayName("Unit Aspect Ratio") - unit_aspect_ratio.setUnits("FB/LR") - unit_aspect_ratio.setDescription("The ratio of the front/back wall length to the left/right wall length.") - unit_aspect_ratio.setDefaultValue(2.0) - args << unit_aspect_ratio - - # make an argument for corridor position - corridor_position_display_names = OpenStudio::StringVector.new - corridor_position_display_names << "Double-Loaded Interior" - corridor_position_display_names << "Single Exterior (Front)" - corridor_position_display_names << "Double Exterior" - corridor_position_display_names << "None" - - corridor_position = OpenStudio::Measure::OSArgument::makeChoiceArgument("corridor_position", corridor_position_display_names, true) - corridor_position.setDisplayName("Corridor Position") - corridor_position.setDescription("The position of the corridor.") - corridor_position.setDefaultValue("Double-Loaded Interior") - args << corridor_position - - # make an argument for corridor width - corridor_width = OpenStudio::Measure::OSArgument::makeDoubleArgument("corridor_width", true) - corridor_width.setDisplayName("Corridor Width") - corridor_width.setUnits("ft") - corridor_width.setDescription("The width of the corridor.") - corridor_width.setDefaultValue(10.0) - args << corridor_width - - # make an argument for inset width - inset_width = OpenStudio::Measure::OSArgument::makeDoubleArgument("inset_width", true) - inset_width.setDisplayName("Inset Width") - inset_width.setUnits("ft") - inset_width.setDescription("The width of the inset.") - inset_width.setDefaultValue(0.0) - args << inset_width - - # make an argument for inset depth - inset_depth = OpenStudio::Measure::OSArgument::makeDoubleArgument("inset_depth", true) - inset_depth.setDisplayName("Inset Depth") - inset_depth.setUnits("ft") - inset_depth.setDescription("The depth of the inset.") - inset_depth.setDefaultValue(0.0) - args << inset_depth - - # make an argument for inset position - inset_position_display_names = OpenStudio::StringVector.new - inset_position_display_names << "Right" - inset_position_display_names << "Left" - - inset_position = OpenStudio::Measure::OSArgument::makeChoiceArgument("inset_position", inset_position_display_names, true) - inset_position.setDisplayName("Inset Position") - inset_position.setDescription("The position of the inset.") - inset_position.setDefaultValue("Right") - args << inset_position - - # make an argument for balcony depth - balcony_depth = OpenStudio::Measure::OSArgument::makeDoubleArgument("balcony_depth", true) - balcony_depth.setDisplayName("Balcony Depth") - balcony_depth.setUnits("ft") - balcony_depth.setDescription("The depth of the balcony.") - balcony_depth.setDefaultValue(0.0) - args << balcony_depth - - # make a choice argument for model objects - foundation_display_names = OpenStudio::StringVector.new - foundation_display_names << "slab" - foundation_display_names << "crawlspace" - foundation_display_names << "unfinished basement" - - # make a choice argument for foundation type - foundation_type = OpenStudio::Measure::OSArgument::makeChoiceArgument("foundation_type", foundation_display_names, true) - foundation_type.setDisplayName("Foundation Type") - foundation_type.setDescription("The foundation type of the building.") - foundation_type.setDefaultValue("slab") - args << foundation_type - - # make an argument for crawlspace height - foundation_height = OpenStudio::Measure::OSArgument::makeDoubleArgument("foundation_height", true) - foundation_height.setDisplayName("Foundation Height") - foundation_height.setUnits("ft") - foundation_height.setDescription("The height of the foundation (e.g., 3ft for crawlspace, 8ft for basement).") - foundation_height.setDefaultValue(3.0) - args << foundation_height - - # make a choice argument for eaves depth - eaves_depth = OpenStudio::Measure::OSArgument::makeDoubleArgument("eaves_depth", true) - eaves_depth.setDisplayName("Eaves Depth") - eaves_depth.setUnits("ft") - eaves_depth.setDescription("The eaves depth of the roof.") - eaves_depth.setDefaultValue(2.0) - args << eaves_depth - - # make a string argument for number of bedrooms - num_br = OpenStudio::Measure::OSArgument::makeStringArgument("num_bedrooms", true) - num_br.setDisplayName("Number of Bedrooms") - num_br.setDescription("Specify the number of bedrooms. Used to determine the energy usage of appliances and plug loads, hot water usage, mechanical ventilation rate, etc.") - num_br.setDefaultValue("3") - args << num_br - - # make a string argument for number of bathrooms - num_ba = OpenStudio::Measure::OSArgument::makeStringArgument("num_bathrooms", true) - num_ba.setDisplayName("Number of Bathrooms") - num_ba.setDescription("Specify the number of bathrooms. Used to determine the hot water usage, etc.") - num_ba.setDefaultValue("2") - args << num_ba - - # make a double argument for left neighbor offset - left_neighbor_offset = OpenStudio::Measure::OSArgument::makeDoubleArgument("neighbor_left_offset", true) - left_neighbor_offset.setDisplayName("Neighbor Left Offset") - left_neighbor_offset.setUnits("ft") - left_neighbor_offset.setDescription("The minimum distance between the simulated house and the neighboring house to the left (not including eaves). A value of zero indicates no neighbors.") - left_neighbor_offset.setDefaultValue(10.0) - args << left_neighbor_offset - - # make a double argument for right neighbor offset - right_neighbor_offset = OpenStudio::Measure::OSArgument::makeDoubleArgument("neighbor_right_offset", true) - right_neighbor_offset.setDisplayName("Neighbor Right Offset") - right_neighbor_offset.setUnits("ft") - right_neighbor_offset.setDescription("The minimum distance between the simulated house and the neighboring house to the right (not including eaves). A value of zero indicates no neighbors.") - right_neighbor_offset.setDefaultValue(10.0) - args << right_neighbor_offset - - # make a double argument for back neighbor offset - back_neighbor_offset = OpenStudio::Measure::OSArgument::makeDoubleArgument("neighbor_back_offset", true) - back_neighbor_offset.setDisplayName("Neighbor Back Offset") - back_neighbor_offset.setUnits("ft") - back_neighbor_offset.setDescription("The minimum distance between the simulated house and the neighboring house to the back (not including eaves). A value of zero indicates no neighbors.") - back_neighbor_offset.setDefaultValue(0.0) - args << back_neighbor_offset - - # make a double argument for front neighbor offset - front_neighbor_offset = OpenStudio::Measure::OSArgument::makeDoubleArgument("neighbor_front_offset", true) - front_neighbor_offset.setDisplayName("Neighbor Front Offset") - front_neighbor_offset.setUnits("ft") - front_neighbor_offset.setDescription("The minimum distance between the simulated house and the neighboring house to the front (not including eaves). A value of zero indicates no neighbors.") - front_neighbor_offset.setDefaultValue(0.0) - args << front_neighbor_offset - - # make a double argument for orientation - orientation = OpenStudio::Measure::OSArgument::makeDoubleArgument("orientation", true) - orientation.setDisplayName("Azimuth") - orientation.setUnits("degrees") - orientation.setDescription("The house's azimuth is measured clockwise from due south when viewed from above (e.g., South=0, West=90, North=180, East=270).") - orientation.setDefaultValue(180.0) - args << orientation - - # make a bool argument for minimal collapsed building - minimal_collapsed = OpenStudio::Measure::OSArgument::makeBoolArgument("minimal_collapsed", true) - minimal_collapsed.setDisplayName("Minimal Collapsed Building") - minimal_collapsed.setDescription("Collapse the building down into only corner, end, and/or middle units.") - minimal_collapsed.setDefaultValue(false) - args << minimal_collapsed - - return args - end - - # define what happens when the measure is run - def run(model, runner, user_arguments) - super(model, runner, user_arguments) - - # use the built-in error checking - if !runner.validateUserArguments(arguments(model), user_arguments) - return false - end - - unit_ffa = UnitConversions.convert(runner.getDoubleArgumentValue("unit_ffa", user_arguments), "ft^2", "m^2") - wall_height = UnitConversions.convert(runner.getDoubleArgumentValue("wall_height", user_arguments), "ft", "m") - num_floors = runner.getIntegerArgumentValue("num_floors", user_arguments) - num_units = runner.getIntegerArgumentValue("num_units", user_arguments) - unit_aspect_ratio = runner.getDoubleArgumentValue("unit_aspect_ratio", user_arguments) - corridor_position = runner.getStringArgumentValue("corridor_position", user_arguments) - corridor_width = UnitConversions.convert(runner.getDoubleArgumentValue("corridor_width", user_arguments), "ft", "m") - inset_width = UnitConversions.convert(runner.getDoubleArgumentValue("inset_width", user_arguments), "ft", "m") - inset_depth = UnitConversions.convert(runner.getDoubleArgumentValue("inset_depth", user_arguments), "ft", "m") - inset_position = runner.getStringArgumentValue("inset_position", user_arguments) - balcony_depth = UnitConversions.convert(runner.getDoubleArgumentValue("balcony_depth", user_arguments), "ft", "m") - foundation_type = runner.getStringArgumentValue("foundation_type", user_arguments) - foundation_height = runner.getDoubleArgumentValue("foundation_height", user_arguments) - eaves_depth = UnitConversions.convert(runner.getDoubleArgumentValue("eaves_depth", user_arguments), "ft", "m") - num_br = runner.getStringArgumentValue("num_bedrooms", user_arguments).split(",").map(&:strip) - num_ba = runner.getStringArgumentValue("num_bathrooms", user_arguments).split(",").map(&:strip) - num_occupants = WholeBuildingConstants.Auto - if model.getBuilding.additionalProperties.getFeatureAsInteger("num_occupants").is_initialized - num_occupants = "#{model.getBuilding.additionalProperties.getFeatureAsInteger("num_occupants").get}" - end - left_neighbor_offset = UnitConversions.convert(runner.getDoubleArgumentValue("neighbor_left_offset", user_arguments), "ft", "m") - right_neighbor_offset = UnitConversions.convert(runner.getDoubleArgumentValue("neighbor_right_offset", user_arguments), "ft", "m") - back_neighbor_offset = UnitConversions.convert(runner.getDoubleArgumentValue("neighbor_back_offset", user_arguments), "ft", "m") - front_neighbor_offset = UnitConversions.convert(runner.getDoubleArgumentValue("neighbor_front_offset", user_arguments), "ft", "m") - orientation = runner.getDoubleArgumentValue("orientation", user_arguments) - minimal_collapsed = runner.getBoolArgumentValue("minimal_collapsed", user_arguments) - - num_units_actual = num_units - num_floors_actual = num_floors - num_units_per_floor = num_units / num_floors - - if foundation_type == "slab" - foundation_height = 0.0 - elsif foundation_type == "unfinished basement" - foundation_height = 8.0 - end - - # error checking - if model.getSpaces.size > 0 - runner.registerError("Starting model is not empty.") - return false - end - if foundation_type == "crawlspace" and (foundation_height < 1.5 or foundation_height > 5.0) - runner.registerError("The crawlspace height can be set between 1.5 and 5 ft.") - return false - end - if num_units % num_floors != 0 - runner.registerError("The number of units must be divisible by the number of floors.") - return false - end - if num_units_per_floor == 1 and (corridor_position == "Double-Loaded Interior" or corridor_position == "Double Exterior") - runner.registerWarning("Specified building as having rear units; setting corridor position to 'Single Exterior (Front)'.") - corridor_position = "Single Exterior (Front)" - end - if unit_aspect_ratio < 0 - runner.registerError("Invalid aspect ratio entered.") - return false - end - if corridor_width == 0 and corridor_position != "None" - corridor_position = "None" - end - if corridor_position == "None" - corridor_width = 0 - end - if corridor_width < 0 - runner.registerError("Invalid corridor width entered.") - return false - end - if balcony_depth > 0 and inset_width * inset_depth == 0 - runner.registerWarning("Specified a balcony, but there is no inset.") - balcony_depth = 0 - end - - # minimal collapsed - num_middle_x = 1 - num_middle_z = 1 - num_interior = 1 - if minimal_collapsed - if ["Double-Loaded Interior", "Double Exterior"].include? corridor_position - if num_units_per_floor >= 7 # can be collapsed - num_middle_x = (num_units_per_floor / 2.0).round - 2 - if (num_units_per_floor / 2.0) % 1 != 0 # units per floor is odd - num_units_per_floor = 5 - else # units per floor is even - num_units_per_floor = 6 - end - end - else # front only - if num_units_per_floor >= 4 # can be collapsed - num_middle_x = num_units_per_floor - 2 - num_units_per_floor = 3 - end - end - if num_floors >= 4 # can be collapsed - num_middle_z = num_floors - 2 - num_floors = 3 - end - num_interior = num_middle_x * num_middle_z - end - - # convert to si - foundation_height = UnitConversions.convert(foundation_height, "ft", "m") - - # starting spaces - runner.registerInitialCondition("The building started with #{model.getSpaces.size} spaces.") - - space_types_hash = {} - - num_units = num_units_per_floor * num_floors - - # calculate the dimensions of the unit - footprint = unit_ffa + inset_width * inset_depth - x = Math.sqrt(footprint / unit_aspect_ratio) - y = footprint / x - - foundation_corr_polygon = nil - foundation_front_polygon = nil - foundation_back_polygon = nil - - # create the front prototype unit - nw_point = OpenStudio::Point3d.new(0, 0, 0) - ne_point = OpenStudio::Point3d.new(x, 0, 0) - sw_point = OpenStudio::Point3d.new(0, -y, 0) - se_point = OpenStudio::Point3d.new(x, -y, 0) - if inset_width * inset_depth > 0 - if inset_position == "Right" - # unit footprint - inset_point = OpenStudio::Point3d.new(x - inset_width, inset_depth - y, 0) - front_point = OpenStudio::Point3d.new(x - inset_width, -y, 0) - side_point = OpenStudio::Point3d.new(x, inset_depth - y, 0) - living_polygon = WholeBuildingGeometry.make_polygon(sw_point, nw_point, ne_point, side_point, inset_point, front_point) - # unit balcony - if balcony_depth > 0 - inset_point = OpenStudio::Point3d.new(x - inset_width, inset_depth - y, wall_height) - side_point = OpenStudio::Point3d.new(x, inset_depth - y, wall_height) - se_point = OpenStudio::Point3d.new(x, inset_depth - y - balcony_depth, wall_height) - front_point = OpenStudio::Point3d.new(x - inset_width, inset_depth - y - balcony_depth, wall_height) - shading_surface = OpenStudio::Model::ShadingSurface.new(OpenStudio::Point3dVector.new([front_point, se_point, side_point, inset_point]), model) - end - else - # unit footprint - inset_point = OpenStudio::Point3d.new(inset_width, inset_depth - y, 0) - front_point = OpenStudio::Point3d.new(inset_width, -y, 0) - side_point = OpenStudio::Point3d.new(0, inset_depth - y, 0) - living_polygon = WholeBuildingGeometry.make_polygon(side_point, nw_point, ne_point, se_point, front_point, inset_point) - # unit balcony - if balcony_depth > 0 - inset_point = OpenStudio::Point3d.new(inset_width, inset_depth - y, wall_height) - side_point = OpenStudio::Point3d.new(0, inset_depth - y, wall_height) - sw_point = OpenStudio::Point3d.new(0, inset_depth - y - balcony_depth, wall_height) - front_point = OpenStudio::Point3d.new(inset_width, inset_depth - y - balcony_depth, wall_height) - shading_surface = OpenStudio::Model::ShadingSurface.new(OpenStudio::Point3dVector.new([front_point, sw_point, side_point, inset_point]), model) - end - end - else - living_polygon = WholeBuildingGeometry.make_polygon(sw_point, nw_point, ne_point, se_point) - end - - # foundation - if foundation_height > 0 and foundation_front_polygon.nil? - foundation_front_polygon = living_polygon - end - - # create living zone - living_zone = OpenStudio::Model::ThermalZone.new(model) # this is a corner unit - living_zone.setName("living zone") - - # first floor front - living_spaces_front = [] - living_space = OpenStudio::Model::Space::fromFloorPrint(living_polygon, wall_height, model) - living_space = living_space.get - living_space.setName("living space") - if space_types_hash.keys.include? WholeBuildingConstants.SpaceTypeLiving - living_space_type = space_types_hash[WholeBuildingConstants.SpaceTypeLiving] - else - living_space_type = OpenStudio::Model::SpaceType.new(model) - living_space_type.setStandardsSpaceType(WholeBuildingConstants.SpaceTypeLiving) - space_types_hash[WholeBuildingConstants.SpaceTypeLiving] = living_space_type - end - living_space.setSpaceType(living_space_type) - living_space.setThermalZone(living_zone) - - # add the balcony - if balcony_depth > 0 - shading_surface_group = OpenStudio::Model::ShadingSurfaceGroup.new(model) - shading_surface_group.setSpace(living_space) - shading_surface.setShadingSurfaceGroup(shading_surface_group) - end - - living_spaces_front << living_space - - # create the unit - unit_spaces_hash = {} - unit_spaces_hash[1] = [living_spaces_front, 1, "Bottom", "Left"] - - has_rear_units = false - - # create back units - if corridor_position == "Double-Loaded Interior" or corridor_position == "Double Exterior" # units in front and back - - has_rear_units = true - - if corridor_position == "Double-Loaded Interior" - interior_corridor_width = corridor_width - else - interior_corridor_width = 0 - end - - # create the back prototype unit - nw_point = OpenStudio::Point3d.new(0, y + interior_corridor_width, 0) - ne_point = OpenStudio::Point3d.new(x, y + interior_corridor_width, 0) - sw_point = OpenStudio::Point3d.new(0, interior_corridor_width, 0) - se_point = OpenStudio::Point3d.new(x, interior_corridor_width, 0) - if inset_width * inset_depth > 0 - if inset_position == "Left" - # unit footprint - inset_point = OpenStudio::Point3d.new(x - inset_width, y - inset_depth + interior_corridor_width, 0) - front_point = OpenStudio::Point3d.new(x - inset_width, y + interior_corridor_width, 0) - side_point = OpenStudio::Point3d.new(x, y - inset_depth + interior_corridor_width, 0) - living_polygon = WholeBuildingGeometry.make_polygon(sw_point, nw_point, front_point, inset_point, side_point, se_point) - # unit balcony - if balcony_depth > 0 - inset_point = OpenStudio::Point3d.new(x - inset_width, y - inset_depth + interior_corridor_width, wall_height) - side_point = OpenStudio::Point3d.new(x, y - inset_depth + interior_corridor_width, wall_height) - ne_point = OpenStudio::Point3d.new(x, y - inset_depth + balcony_depth + interior_corridor_width, wall_height) - front_point = OpenStudio::Point3d.new(x - inset_width, y - inset_depth + balcony_depth + interior_corridor_width, wall_height) - shading_surface = OpenStudio::Model::ShadingSurface.new(OpenStudio::Point3dVector.new([side_point, ne_point, front_point, inset_point]), model) - end - else - # unit footprint - inset_point = OpenStudio::Point3d.new(inset_width, y - inset_depth + interior_corridor_width, 0) - front_point = OpenStudio::Point3d.new(inset_width, y + interior_corridor_width, 0) - side_point = OpenStudio::Point3d.new(0, y - inset_depth + interior_corridor_width, 0) - living_polygon = WholeBuildingGeometry.make_polygon(side_point, inset_point, front_point, ne_point, se_point, sw_point) - # unit balcony - if balcony_depth > 0 - inset_point = OpenStudio::Point3d.new(inset_width, y - inset_depth + interior_corridor_width, wall_height) - side_point = OpenStudio::Point3d.new(0, y - inset_depth + interior_corridor_width, wall_height) - nw_point = OpenStudio::Point3d.new(0, y - inset_depth + balcony_depth + interior_corridor_width, wall_height) - front_point = OpenStudio::Point3d.new(inset_width, y - inset_depth + balcony_depth + interior_corridor_width, wall_height) - shading_surface = OpenStudio::Model::ShadingSurface.new(OpenStudio::Point3dVector.new([side_point, nw_point, front_point, inset_point]), model) - end - end - else - living_polygon = WholeBuildingGeometry.make_polygon(sw_point, nw_point, ne_point, se_point) - end - - # foundation - if foundation_height > 0 and foundation_back_polygon.nil? - foundation_back_polygon = living_polygon - end - - # create living zone - living_zone = OpenStudio::Model::ThermalZone.new(model) # this is a corner unit - living_zone.setName("living zone|#{WholeBuildingConstants.ObjectNameBuildingUnit(2)}") - - # first floor back - living_spaces_back = [] - living_space = OpenStudio::Model::Space::fromFloorPrint(living_polygon, wall_height, model) - living_space = living_space.get - living_space.setName("living space|#{WholeBuildingConstants.ObjectNameBuildingUnit(2)}") - if space_types_hash.keys.include? WholeBuildingConstants.SpaceTypeLiving - living_space_type = space_types_hash[WholeBuildingConstants.SpaceTypeLiving] - else - living_space_type = OpenStudio::Model::SpaceType.new(model) - living_space_type.setStandardsSpaceType(WholeBuildingConstants.SpaceTypeLiving) - space_types_hash[WholeBuildingConstants.SpaceTypeLiving] = living_space_type - end - living_space.setSpaceType(living_space_type) - living_space.setThermalZone(living_zone) - - # add the balcony - if balcony_depth > 0 - shading_surface_group = OpenStudio::Model::ShadingSurfaceGroup.new(model) - shading_surface_group.setSpace(living_space) - shading_surface.setShadingSurfaceGroup(shading_surface_group) - end - - living_spaces_back << living_space - - # create the back unit - unit_spaces_hash[2] = [living_spaces_back, 1, "Bottom", "Left"] - - floor = 0 - pos = 0 - front_unit = true - (3..num_units).to_a.each do |unit_num| - if not num_units_per_floor > 2 and unit_num == 3 - pos = -1 - floor = wall_height - end - - # front or back unit - if front_unit - living_spaces = living_spaces_front - pos += 1 - front_unit = false - else - living_spaces = living_spaces_back - front_unit = true - end - - living_zone = OpenStudio::Model::ThermalZone.new(model) - living_zone.setName("living zone|#{WholeBuildingConstants.ObjectNameBuildingUnit(unit_num)}") - - new_living_spaces = [] - living_spaces.each_with_index do |living_space, story| - new_living_space = living_space.clone.to_Space.get - new_living_space.setName("living space|#{WholeBuildingConstants.ObjectNameBuildingUnit(unit_num)}|story #{story + 1}") - new_living_space.setSpaceType(living_space_type) - - m = WholeBuildingGeometry.initialize_transformation_matrix(OpenStudio::Matrix.new(4, 4, 0)) - m[0, 3] = -pos * x - m[2, 3] = -floor - new_living_space.changeTransformation(OpenStudio::Transformation.new(m)) - new_living_space.setXOrigin(0) - new_living_space.setYOrigin(0) - new_living_space.setZOrigin(0) - new_living_space.setThermalZone(living_zone) - - new_living_spaces << new_living_space - end - - units_represented = 1 - horizontal_location = "Left" - if floor == 0 or floor == (num_floors - 1) * wall_height # not an interior floor - if pos == 1 # not on the ends - units_represented = num_middle_x - end - if pos > 0 - horizontal_location = "Middle" - end - level = "Bottom" - if floor == (num_floors - 1) * wall_height - level = "Top" - end - else # interior floor - level = "Middle" - if pos == 1 # not on the ends - units_represented = num_interior - else # on the ends - units_represented = num_middle_z - end - if pos > 0 - horizontal_location = "Middle" - end - end - - if unit_num % num_units_per_floor == 0 - - # which floor - floor += wall_height - pos = -1 - front_unit = true - horizontal_location = "Right" - - elsif (unit_num + 1) % num_units_per_floor == 0 - horizontal_location = "Right" - end - unit_spaces_hash[unit_num] = [new_living_spaces, units_represented, level, horizontal_location] - end - - # corridors - if corridor_width > 0 - - if corridor_position == "Double-Loaded Interior" - - # create the prototype corridor - nw_point = OpenStudio::Point3d.new(0, interior_corridor_width, 0) - ne_point = OpenStudio::Point3d.new(x * (num_units_per_floor.to_f / 2).ceil, interior_corridor_width, 0) - sw_point = OpenStudio::Point3d.new(0, 0, 0) - se_point = OpenStudio::Point3d.new(x * (num_units_per_floor.to_f / 2).ceil, 0, 0) - corr_polygon = WholeBuildingGeometry.make_polygon(sw_point, nw_point, ne_point, se_point) - - if foundation_height > 0 and foundation_corr_polygon.nil? - foundation_corr_polygon = corr_polygon - end - - # create corridor zone - corridor_zone = OpenStudio::Model::ThermalZone.new(model) - corridor_zone.setName("corridor zone") - - # first floor corridor - corridor_space = OpenStudio::Model::Space::fromFloorPrint(corr_polygon, wall_height, model) - corridor_space = corridor_space.get - corridor_space_name = "corridor space" - corridor_space.setName(corridor_space_name) - if space_types_hash.keys.include? WholeBuildingConstants.SpaceTypeCorridor - corridor_space_type = space_types_hash[WholeBuildingConstants.SpaceTypeCorridor] - else - corridor_space_type = OpenStudio::Model::SpaceType.new(model) - corridor_space_type.setStandardsSpaceType(WholeBuildingConstants.SpaceTypeCorridor) - space_types_hash[WholeBuildingConstants.SpaceTypeCorridor] = corridor_space_type - end - corridor_space.setSpaceType(corridor_space_type) - corridor_space.setThermalZone(corridor_zone) - - (1...num_floors).to_a.each do |floor| - new_corridor_space = corridor_space.clone.to_Space.get - m = WholeBuildingGeometry.initialize_transformation_matrix(OpenStudio::Matrix.new(4, 4, 0)) - m[2, 3] = -floor * wall_height - new_corridor_space.changeTransformation(OpenStudio::Transformation.new(m)) - new_corridor_space.setZOrigin(0) - new_corridor_space.setThermalZone(corridor_zone) - corridor_space_name = "corridor space|story #{floor + 1}" - new_corridor_space.setName(corridor_space_name) - corridor_space.setSpaceType(corridor_space_type) - end - - else - - # front access - (1..num_floors).to_a.each do |floor| - nw_point = OpenStudio::Point3d.new(0, -y, floor * wall_height) - sw_point = OpenStudio::Point3d.new(0, -y - corridor_width, floor * wall_height) - ne_point = OpenStudio::Point3d.new(x * (num_units_per_floor / 2), -y, floor * wall_height) - se_point = OpenStudio::Point3d.new(x * (num_units_per_floor / 2), -y - corridor_width, floor * wall_height) - if num_units_per_floor % 2 != 0 - ne_point = OpenStudio::Point3d.new(x * ((num_units_per_floor + 1) / 2), -y, floor * wall_height) - se_point = OpenStudio::Point3d.new(x * ((num_units_per_floor + 1) / 2), -y - corridor_width, floor * wall_height) - end - - shading_surface = OpenStudio::Model::ShadingSurface.new(OpenStudio::Point3dVector.new([sw_point, se_point, ne_point, nw_point]), model) - - shading_surface_group = OpenStudio::Model::ShadingSurfaceGroup.new(model) - shading_surface.setShadingSurfaceGroup(shading_surface_group) - end - - # rear access - (1..num_floors).to_a.each do |floor| - nw_point = OpenStudio::Point3d.new(0, y + corridor_width, floor * wall_height) - sw_point = OpenStudio::Point3d.new(0, y, floor * wall_height) - ne_point = OpenStudio::Point3d.new(x * (num_units_per_floor / 2), y + corridor_width, floor * wall_height) - se_point = OpenStudio::Point3d.new(x * (num_units_per_floor / 2), y, floor * wall_height) - - shading_surface = OpenStudio::Model::ShadingSurface.new(OpenStudio::Point3dVector.new([sw_point, se_point, ne_point, nw_point]), model) - - shading_surface_group = OpenStudio::Model::ShadingSurfaceGroup.new(model) - shading_surface.setShadingSurfaceGroup(shading_surface_group) - end - - end - - end - - else # units only in front - - floor = 0 - pos = 0 - (2..num_units).to_a.each do |unit_num| - if not num_units_per_floor > 1 and unit_num == 2 - pos = -1 - floor = wall_height - end - - living_spaces = living_spaces_front - pos += 1 - - living_zone = OpenStudio::Model::ThermalZone.new(model) - living_zone.setName("living zone|#{WholeBuildingConstants.ObjectNameBuildingUnit(unit_num)}") - - new_living_spaces = [] - living_spaces.each_with_index do |living_space, story| - new_living_space = living_space.clone.to_Space.get - new_living_space.setName("living space|#{WholeBuildingConstants.ObjectNameBuildingUnit(unit_num)}|story #{story + 1}") - new_living_space.setSpaceType(living_space_type) - - m = WholeBuildingGeometry.initialize_transformation_matrix(OpenStudio::Matrix.new(4, 4, 0)) - m[0, 3] = -pos * x - m[2, 3] = -floor - new_living_space.changeTransformation(OpenStudio::Transformation.new(m)) - new_living_space.setXOrigin(0) - new_living_space.setYOrigin(0) - new_living_space.setZOrigin(0) - new_living_space.setThermalZone(living_zone) - - new_living_spaces << new_living_space - end - - units_represented = 1 - horizontal_location = "Left" - if floor == 0 or floor == (num_floors - 1) * wall_height # not an interior floor - if pos == 1 # not on the ends - units_represented = num_middle_x - end - if pos > 0 - horizontal_location = "Middle" - end - level = "Bottom" - if floor == (num_floors - 1) * wall_height - level = "Top" - end - else # interior floor - level = "Middle" - if pos == 1 # not on the ends - units_represented = num_interior - else # on the ends - units_represented = num_middle_z - end - if pos > 0 - horizontal_location = "Middle" - end - end - - if unit_num % num_units_per_floor == 0 - - # which floor - floor += wall_height - pos = -1 - horizontal_location = "Right" - - elsif (unit_num + 1) % num_units_per_floor == 0 - horizontal_location = "Right" - end - unit_spaces_hash[unit_num] = [new_living_spaces, units_represented, level, horizontal_location] - end - - if corridor_width > 0 - - (1..num_floors).to_a.each do |floor| - nw_point = OpenStudio::Point3d.new(0, -y, floor * wall_height) - ne_point = OpenStudio::Point3d.new(x * num_units_per_floor, -y, floor * wall_height) - sw_point = OpenStudio::Point3d.new(0, -y - corridor_width, floor * wall_height) - se_point = OpenStudio::Point3d.new(x * num_units_per_floor, -y - corridor_width, floor * wall_height) - - shading_surface = OpenStudio::Model::ShadingSurface.new(OpenStudio::Point3dVector.new([sw_point, se_point, ne_point, nw_point]), model) - - shading_surface_group = OpenStudio::Model::ShadingSurfaceGroup.new(model) - shading_surface.setShadingSurfaceGroup(shading_surface_group) - end - - end - - end - - # foundation - if foundation_height > 0 - - foundation_spaces = [] - - # foundation corridor - if corridor_width > 0 and corridor_position == "Double-Loaded Interior" - corridor_space = OpenStudio::Model::Space::fromFloorPrint(foundation_corr_polygon, foundation_height, model) - corridor_space = corridor_space.get - m = WholeBuildingGeometry.initialize_transformation_matrix(OpenStudio::Matrix.new(4, 4, 0)) - m[2, 3] = foundation_height - corridor_space.changeTransformation(OpenStudio::Transformation.new(m)) - corridor_space.setXOrigin(0) - corridor_space.setYOrigin(0) - corridor_space.setZOrigin(0) - - foundation_spaces << corridor_space - end - - # foundation front - foundation_space_front = [] - foundation_space = OpenStudio::Model::Space::fromFloorPrint(foundation_front_polygon, foundation_height, model) - foundation_space = foundation_space.get - m = WholeBuildingGeometry.initialize_transformation_matrix(OpenStudio::Matrix.new(4, 4, 0)) - m[2, 3] = foundation_height - foundation_space.changeTransformation(OpenStudio::Transformation.new(m)) - foundation_space.setXOrigin(0) - foundation_space.setYOrigin(0) - foundation_space.setZOrigin(0) - - foundation_space_front << foundation_space - foundation_spaces << foundation_space - - if corridor_position == "Double-Loaded Interior" or corridor_position == "Double Exterior" # units in front and back - - # foundation back - foundation_space_back = [] - foundation_space = OpenStudio::Model::Space::fromFloorPrint(foundation_back_polygon, foundation_height, model) - foundation_space = foundation_space.get - m = WholeBuildingGeometry.initialize_transformation_matrix(OpenStudio::Matrix.new(4, 4, 0)) - m[2, 3] = foundation_height - foundation_space.changeTransformation(OpenStudio::Transformation.new(m)) - foundation_space.setXOrigin(0) - foundation_space.setYOrigin(0) - foundation_space.setZOrigin(0) - - foundation_space_back << foundation_space - foundation_spaces << foundation_space - - pos = 0 - (3..num_units_per_floor).to_a.each do |unit_num| - # front or back unit - if unit_num % 2 != 0 # odd unit number - living_spaces = foundation_space_front - pos += 1 - else # even unit number - living_spaces = foundation_space_back - end - - living_spaces.each do |living_space| - new_living_space = living_space.clone.to_Space.get - - m = WholeBuildingGeometry.initialize_transformation_matrix(OpenStudio::Matrix.new(4, 4, 0)) - m[0, 3] = -pos * x - new_living_space.changeTransformation(OpenStudio::Transformation.new(m)) - new_living_space.setXOrigin(0) - new_living_space.setYOrigin(0) - new_living_space.setZOrigin(0) - - foundation_spaces << new_living_space - end - end - - else # units only in front - - pos = 0 - (2..num_units_per_floor).to_a.each do |unit_num| - living_spaces = foundation_space_front - pos += 1 - - living_spaces.each do |living_space| - new_living_space = living_space.clone.to_Space.get - - m = WholeBuildingGeometry.initialize_transformation_matrix(OpenStudio::Matrix.new(4, 4, 0)) - m[0, 3] = -pos * x - new_living_space.changeTransformation(OpenStudio::Transformation.new(m)) - new_living_space.setXOrigin(0) - new_living_space.setYOrigin(0) - new_living_space.setZOrigin(0) - - foundation_spaces << new_living_space - end - end - - end - - # put all of the spaces in the model into a vector - spaces = OpenStudio::Model::SpaceVector.new - model.getSpaces.each do |space| - spaces << space - end - - # intersect and match surfaces for each space in the vector - OpenStudio::Model.intersectSurfaces(spaces) - OpenStudio::Model.matchSurfaces(spaces) - - if ["crawlspace", "unfinished basement"].include? foundation_type - foundation_space = WholeBuildingGeometry.make_one_space_from_multiple_spaces(model, foundation_spaces) - if foundation_type == "crawlspace" - foundation_space.setName("crawl space") - foundation_zone = OpenStudio::Model::ThermalZone.new(model) - foundation_zone.setName("crawl zone") - foundation_space.setThermalZone(foundation_zone) - foundation_space_type_name = WholeBuildingConstants.SpaceTypeCrawl - elsif foundation_type == "unfinished basement" - foundation_space.setName("unfinished basement space") - foundation_zone = OpenStudio::Model::ThermalZone.new(model) - foundation_zone.setName("unfinished basement zone") - foundation_space.setThermalZone(foundation_zone) - foundation_space_type_name = WholeBuildingConstants.SpaceTypeUnfinishedBasement - end - if space_types_hash.keys.include? foundation_space_type_name - foundation_space_type = space_types_hash[foundation_space_type_name] - else - foundation_space_type = OpenStudio::Model::SpaceType.new(model) - foundation_space_type.setStandardsSpaceType(foundation_space_type_name) - space_types_hash[foundation_space_type_name] = foundation_space_type - end - foundation_space.setSpaceType(foundation_space_type) - end - - # set foundation walls to ground - spaces = model.getSpaces - spaces.each do |space| - if WholeBuildingGeometry.get_space_floor_z(space) + UnitConversions.convert(space.zOrigin, "m", "ft") < 0 - surfaces = space.surfaces - surfaces.each do |surface| - next if surface.surfaceType.downcase != "wall" - - surface.setOutsideBoundaryCondition("Foundation") - end - end - end - - end - - total_units_represented = 0 - unit_spaces_hash.each do |unit_num, unit_info| - spaces, units_represented, level, horizontal_location = unit_info - - # Store building unit information - unit = OpenStudio::Model::BuildingUnit.new(model) - unit.setBuildingUnitType(WholeBuildingConstants.BuildingUnitTypeResidential) - unit.setName(WholeBuildingConstants.ObjectNameBuildingUnit(unit_num)) - unit.additionalProperties.setFeature("Units Represented", units_represented) - unit.additionalProperties.setFeature("GeometryLevel", level) - unit.additionalProperties.setFeature("GeometryHorizontalLocation", horizontal_location) - total_units_represented += units_represented - spaces.each do |space| - space.setBuildingUnit(unit) - end - end - if total_units_represented != num_units_actual - runner.registerError("The specified number of building units does not equal the number of building units represented in the model.") - return false - end - model.getBuilding.additionalProperties.setFeature("Total Units Represented", num_units_actual) - model.getBuilding.additionalProperties.setFeature("Total Floors Represented", num_floors_actual) - model.getBuilding.additionalProperties.setFeature("Total Units Modeled", num_units) - model.getBuilding.additionalProperties.setFeature("Total Floors Modeled", num_floors) - runner.registerInfo("The #{num_units_actual}-unit building will be modeled using #{num_units} building units.") - - # put all of the spaces in the model into a vector - spaces = OpenStudio::Model::SpaceVector.new - model.getSpaces.each do |space| - spaces << space - end - - # intersect and match surfaces for each space in the vector - OpenStudio::Model.intersectSurfaces(spaces) - OpenStudio::Model.matchSurfaces(spaces) - - # make all surfaces adjacent to corridor spaces into adiabatic surfaces - model.getSpaces.each do |space| - next unless WholeBuildingGeometry.is_corridor(space) - - space.surfaces.each do |surface| - if surface.adjacentSurface.is_initialized # only set to adiabatic if the corridor surface is adjacent to another surface - surface.adjacentSurface.get.setOutsideBoundaryCondition("Adiabatic") - surface.setOutsideBoundaryCondition("Adiabatic") - end - end - end - - # set foundation outside boundary condition to Kiva "foundation" - model.getSurfaces.each do |surface| - next if surface.outsideBoundaryCondition.downcase != "ground" - - surface.setOutsideBoundaryCondition("Foundation") - end - - # Store number of units - model.getBuilding.setStandardsNumberOfLivingUnits(num_units) - - # Store number of stories - model.getBuilding.setStandardsNumberOfAboveGroundStories(num_floors) - if foundation_type == "unfinished basement" - num_floors += 1 - end - model.getBuilding.setStandardsNumberOfStories(num_floors) - - # Store the building type - model.getBuilding.setStandardsBuildingType(WholeBuildingConstants.BuildingTypeMultifamily) - - result = WholeBuildingGeometry.process_beds_and_baths(model, runner, num_br, num_ba) - unless result - return false - end - - result = WholeBuildingGeometry.process_eaves(model, runner, eaves_depth, WholeBuildingConstants.RoofStructureTrussCantilever) - unless result - return false - end - - result = WholeBuildingGeometry.process_neighbors(model, runner, left_neighbor_offset, right_neighbor_offset, back_neighbor_offset, front_neighbor_offset) - unless result - return false - end - - result = WholeBuildingGeometry.process_orientation(model, runner, orientation) - unless result - return false - end - - # reporting final condition of model - runner.registerFinalCondition("The building finished with #{model.getSpaces.size} spaces.") - - return true - end -end - -# register the measure to be used by the application -CreateResidentialMultifamilyGeometry.new.registerWithApplication diff --git a/example_files/measures/ResidentialGeometryCreateMultifamily/measure.xml b/example_files/measures/ResidentialGeometryCreateMultifamily/measure.xml deleted file mode 100644 index 63ac6d1d..00000000 --- a/example_files/measures/ResidentialGeometryCreateMultifamily/measure.xml +++ /dev/null @@ -1,326 +0,0 @@ - - 3.0 - create_residential_multifamily_geometry - 9bc07973-98a4-46fc-b643-e280628817c5 - bf0744c0-e959-4293-a2ba-10aa67ca0b1e - 20200515T170006Z - 2AF3A68E - CreateResidentialMultifamilyGeometry - Create Residential Multifamily Geometry - Sets the basic geometry for the multifamily building, where all units are 1 story and stacked if the building is multiple stories. Sets the number of bedrooms, bathrooms, and occupants in the building. See https://github.com/NREL/OpenStudio-BuildStock#workflows for supported workflows using this measure. - Creates multifamily geometry. Also, sets (or replaces) BuildingUnit objects that store the number of bedrooms and bathrooms associated with the model. Sets (or replaces) the People object for each finished space in the model. - - - unit_ffa - Unit Finished Floor Area - Unit floor area of the finished space (including any finished basement floor area). - Double - ft^2 - true - false - 900 - - - wall_height - Wall Height (Per Floor) - The height of the living space walls. - Double - ft - true - false - 8 - - - num_floors - Building Number of Floors - The number of floors above grade. - Integer - # - true - false - 1 - - - num_units - Num Units - The number of units. This must be divisible by the number of floors. - Integer - # - true - false - 2 - - - unit_aspect_ratio - Unit Aspect Ratio - The ratio of the front/back wall length to the left/right wall length. - Double - FB/LR - true - false - 2 - - - corridor_position - Corridor Position - The position of the corridor. - Choice - true - false - Double-Loaded Interior - - - Double-Loaded Interior - Double-Loaded Interior - - - Single Exterior (Front) - Single Exterior (Front) - - - Double Exterior - Double Exterior - - - None - None - - - - - corridor_width - Corridor Width - The width of the corridor. - Double - ft - true - false - 10 - - - inset_width - Inset Width - The width of the inset. - Double - ft - true - false - 0 - - - inset_depth - Inset Depth - The depth of the inset. - Double - ft - true - false - 0 - - - inset_position - Inset Position - The position of the inset. - Choice - true - false - Right - - - Right - Right - - - Left - Left - - - - - balcony_depth - Balcony Depth - The depth of the balcony. - Double - ft - true - false - 0 - - - foundation_type - Foundation Type - The foundation type of the building. - Choice - true - false - slab - - - slab - slab - - - crawlspace - crawlspace - - - unfinished basement - unfinished basement - - - - - foundation_height - Foundation Height - The height of the foundation (e.g., 3ft for crawlspace, 8ft for basement). - Double - ft - true - false - 3 - - - eaves_depth - Eaves Depth - The eaves depth of the roof. - Double - ft - true - false - 2 - - - num_bedrooms - Number of Bedrooms - Specify the number of bedrooms. Used to determine the energy usage of appliances and plug loads, hot water usage, mechanical ventilation rate, etc. - String - true - false - 3 - - - num_bathrooms - Number of Bathrooms - Specify the number of bathrooms. Used to determine the hot water usage, etc. - String - true - false - 2 - - - neighbor_left_offset - Neighbor Left Offset - The minimum distance between the simulated house and the neighboring house to the left (not including eaves). A value of zero indicates no neighbors. - Double - ft - true - false - 10 - - - neighbor_right_offset - Neighbor Right Offset - The minimum distance between the simulated house and the neighboring house to the right (not including eaves). A value of zero indicates no neighbors. - Double - ft - true - false - 10 - - - neighbor_back_offset - Neighbor Back Offset - The minimum distance between the simulated house and the neighboring house to the back (not including eaves). A value of zero indicates no neighbors. - Double - ft - true - false - 0 - - - neighbor_front_offset - Neighbor Front Offset - The minimum distance between the simulated house and the neighboring house to the front (not including eaves). A value of zero indicates no neighbors. - Double - ft - true - false - 0 - - - orientation - Azimuth - The house's azimuth is measured clockwise from due south when viewed from above (e.g., South=0, West=90, North=180, East=270). - Double - degrees - true - false - 180 - - - minimal_collapsed - Minimal Collapsed Building - Collapse the building down into only corner, end, and/or middle units. - Boolean - true - false - false - - - true - true - - - false - false - - - - - - - - Envelope.Form - - - - Measure Type - ModelMeasure - string - - - Intended Software Tool - Apply Measure Now - string - - - Intended Software Tool - OpenStudio Application - string - - - Intended Software Tool - Parametric Analysis Tool - string - - - - - - OpenStudio - 1.12.2 - 2.0.4 - - measure.rb - rb - script - A96A827A - - - create_residential_multifamily_geometry_test.rb - rb - test - D4168322 - - - diff --git a/example_files/measures/ResidentialGeometryCreateMultifamily/tests/create_residential_multifamily_geometry_test.rb b/example_files/measures/ResidentialGeometryCreateMultifamily/tests/create_residential_multifamily_geometry_test.rb deleted file mode 100644 index 49d8dc0a..00000000 --- a/example_files/measures/ResidentialGeometryCreateMultifamily/tests/create_residential_multifamily_geometry_test.rb +++ /dev/null @@ -1,477 +0,0 @@ -require_relative '../../../../test/minitest_helper' -require 'openstudio' -require 'openstudio/ruleset/ShowRunnerOutput' -require 'minitest/autorun' -require_relative '../measure.rb' -require 'fileutils' - -class CreateResidentialMultifamilyGeometryTest < MiniTest::Test - def test_error_existing_geometry - args_hash = {} - result = _test_error("MF_8units_1story_SL_Denver.osm", args_hash) - assert_includes(result.errors.map { |x| x.logMessage }, "Starting model is not empty.") - end - - def test_error_num_units - args_hash = {} - args_hash["num_floors"] = 3 - args_hash["num_units"] = 10 - result = _test_error(nil, args_hash) - assert_includes(result.errors.map { |x| x.logMessage }, "The number of units must be divisible by the number of floors.") - end - - def test_argument_error_crawl_height_invalid - args_hash = {} - args_hash["foundation_type"] = "crawlspace" - args_hash["foundation_height"] = 0 - result = _test_error(nil, args_hash) - assert_includes(result.errors.map { |x| x.logMessage }, "The crawlspace height can be set between 1.5 and 5 ft.") - end - - def test_argument_error_aspect_ratio_invalid - args_hash = {} - args_hash["unit_aspect_ratio"] = -1.0 - result = _test_error(nil, args_hash) - assert_includes(result.errors.map { |x| x.logMessage }, "Invalid aspect ratio entered.") - end - - def test_error_no_corr - args_hash = {} - args_hash["corridor_width"] = -1 - result = _test_error(nil, args_hash) - assert_includes(result.errors.map { |x| x.logMessage }, "Invalid corridor width entered.") - end - - def test_uneven_units_per_floor_with_interior_corr - num_finished_spaces = 3 - args_hash = {} - args_hash["num_units"] = 3 - expected_num_del_objects = {} - expected_num_new_objects = { "BuildingUnit" => 3, "Surface" => 26, "ThermalZone" => 1 + 3, "Space" => 1 + 3, "SpaceType" => 2, "PeopleDefinition" => num_finished_spaces, "People" => num_finished_spaces, "ScheduleRuleset" => 1, "ShadingSurfaceGroup" => 2, "ShadingSurface" => 11, "ExternalFile" => 1, "ScheduleFile" => 1 } - expected_values = { "FinishedFloorArea" => 900 * 3, "BuildingHeight" => 8, "Beds" => 3.0, "Baths" => 2.0, "NumOccupants" => 10.17, "EavesDepth" => 2, "NumAdiabaticSurfaces" => 6 } - _test_measure(nil, args_hash, expected_num_del_objects, expected_num_new_objects, expected_values, __method__) - end - - def test_warning_balc_but_no_inset - num_finished_spaces = 2 - args_hash = {} - args_hash["balcony_depth"] = 6 - args_hash["corridor_position"] = "None" - expected_num_del_objects = {} - expected_num_new_objects = { "BuildingUnit" => 2, "Surface" => 12, "ThermalZone" => 2, "Space" => 2, "SpaceType" => 1, "PeopleDefinition" => num_finished_spaces, "People" => num_finished_spaces, "ScheduleRuleset" => 1, "ShadingSurfaceGroup" => 2, "ShadingSurface" => 8, "ExternalFile" => 1, "ScheduleFile" => 1 } - expected_values = { "FinishedFloorArea" => 900 * 2, "BuildingHeight" => 8, "Beds" => 3.0, "Baths" => 2.0, "NumOccupants" => 6.78, "EavesDepth" => 2, "NumAdiabaticSurfaces" => 0 } - _test_measure(nil, args_hash, expected_num_del_objects, expected_num_new_objects, expected_values, __method__) - end - - def test_two_story_double_exterior - num_finished_spaces = 8 - args_hash = {} - args_hash["num_floors"] = 2 - args_hash["num_units"] = 2 * 4 - args_hash["corridor_position"] = "Double Exterior" - args_hash["inset_width"] = 8 - args_hash["inset_depth"] = 6 - args_hash["balcony_depth"] = 6 - expected_num_del_objects = {} - expected_num_new_objects = { "BuildingUnit" => 2 * 4, "Surface" => 68, "ThermalZone" => 2 * 4, "Space" => 2 * 4, "SpaceType" => 1, "PeopleDefinition" => num_finished_spaces, "People" => num_finished_spaces, "ScheduleRuleset" => 1, "ShadingSurfaceGroup" => 14, "ShadingSurface" => 30, "ExternalFile" => 1, "ScheduleFile" => 1 } - expected_values = { "FinishedFloorArea" => 900 * 2 * 4, "BuildingHeight" => 2 * 8, "Beds" => 3.0, "Baths" => 2.0, "NumOccupants" => 27.12, "EavesDepth" => 2, "NumAdiabaticSurfaces" => 0 } - _test_measure(nil, args_hash, expected_num_del_objects, expected_num_new_objects, expected_values, __method__) - end - - def test_multiplex_right_inset - num_finished_spaces = 48 - args_hash = {} - args_hash["num_floors"] = 8 - args_hash["num_units"] = 8 * 6 - args_hash["inset_width"] = 8 - args_hash["inset_depth"] = 6 - args_hash["foundation_type"] = "unfinished basement" - expected_num_del_objects = {} - expected_num_new_objects = { "BuildingUnit" => 8 * 6, "Surface" => 538, "ThermalZone" => 8 * 6 + 1 + 1, "Space" => 8 * 6 + 1 + 8, "SpaceType" => 3, "PeopleDefinition" => num_finished_spaces, "People" => num_finished_spaces, "ScheduleRuleset" => 1, "ShadingSurfaceGroup" => 2, "ShadingSurface" => 26, "ExternalFile" => 1, "ScheduleFile" => 1 } - expected_values = { "FinishedFloorArea" => 900 * 8 * 6, "UnfinishedBasementHeight" => 8, "UnfinishedBasementFloorArea" => 6 * 900 + 3 * 21.77 * 10, "BuildingHeight" => 8 + 8 * 8, "Beds" => 3.0, "Baths" => 2.0, "NumOccupants" => 162.72, "EavesDepth" => 2, "NumAdiabaticSurfaces" => 112 } - _test_measure(nil, args_hash, expected_num_del_objects, expected_num_new_objects, expected_values, __method__) - end - - def test_multiplex_left_inset - num_finished_spaces = 48 - args_hash = {} - args_hash["num_floors"] = 8 - args_hash["num_units"] = 8 * 6 - args_hash["inset_width"] = 8 - args_hash["inset_depth"] = 6 - args_hash["inset_position"] = "Left" - args_hash["balcony_depth"] = 6 - args_hash["foundation_type"] = "unfinished basement" - expected_num_del_objects = {} - expected_num_new_objects = { "BuildingUnit" => 8 * 6, "Surface" => 538, "ThermalZone" => 8 * 6 + 1 + 1, "Space" => 8 * 6 + 1 + 8, "SpaceType" => 3, "PeopleDefinition" => num_finished_spaces, "People" => num_finished_spaces, "ScheduleRuleset" => 1, "ShadingSurfaceGroup" => 50, "ShadingSurface" => 74, "ExternalFile" => 1, "ScheduleFile" => 1 } - expected_values = { "FinishedFloorArea" => 900 * 8 * 6, "UnfinishedBasementHeight" => 8, "UnfinishedBasementFloorArea" => 6 * 900 + 3 * 21.77 * 10, "BuildingHeight" => 8 + 8 * 8, "Beds" => 3.0, "Baths" => 2.0, "NumOccupants" => 162.72, "EavesDepth" => 2, "NumAdiabaticSurfaces" => 112 } - _test_measure(nil, args_hash, expected_num_del_objects, expected_num_new_objects, expected_values, __method__) - end - - def test_crawl_single_exterior - num_finished_spaces = 24 - args_hash = {} - args_hash["num_floors"] = 2 - args_hash["num_units"] = 12 * 2 - args_hash["corridor_position"] = "Single Exterior (Front)" - args_hash["foundation_type"] = "crawlspace" - expected_num_del_objects = {} - expected_num_new_objects = { "BuildingUnit" => 2 * 12, "Surface" => 194, "ThermalZone" => 2 * 12 + 1, "Space" => 2 * 12 + 1, "SpaceType" => 2, "PeopleDefinition" => num_finished_spaces, "People" => num_finished_spaces, "ScheduleRuleset" => 1, "ShadingSurfaceGroup" => 4, "ShadingSurface" => 30, "ExternalFile" => 1, "ScheduleFile" => 1 } - expected_values = { "FinishedFloorArea" => 900 * 2 * 12, "CrawlspaceHeight" => 3, "CrawlspaceFloorArea" => 12 * 900, "BuildingHeight" => 3 + 2 * 8, "Beds" => 3.0, "Baths" => 2.0, "NumOccupants" => 81.36, "EavesDepth" => 2, "NumAdiabaticSurfaces" => 0 } - _test_measure(nil, args_hash, expected_num_del_objects, expected_num_new_objects, expected_values, __method__) - end - - def test_crawlspace_double_loaded_corr - num_finished_spaces = 4 - args_hash = {} - args_hash["num_units"] = 4 - args_hash["foundation_type"] = "crawlspace" - expected_num_del_objects = {} - expected_num_new_objects = { "BuildingUnit" => 1 * 4, "Surface" => 52, "ThermalZone" => 1 * 4 + 1 + 1, "Space" => 1 * 4 + 1 + 1, "SpaceType" => 3, "PeopleDefinition" => num_finished_spaces, "People" => num_finished_spaces, "ScheduleRuleset" => 1, "ShadingSurfaceGroup" => 2, "ShadingSurface" => 12, "ExternalFile" => 1, "ScheduleFile" => 1 } - expected_values = { "FinishedFloorArea" => 900 * 1 * 4, "CrawlspaceHeight" => 3, "CrawlspaceFloorArea" => 4 * 900, "BuildingHeight" => 3 + 8, "Beds" => 3.0, "Baths" => 2.0, "NumOccupants" => 13.56, "EavesDepth" => 2, "NumAdiabaticSurfaces" => 10 } - _test_measure(nil, args_hash, expected_num_del_objects, expected_num_new_objects, expected_values, __method__) - end - - def test_ufbasement_double_loaded_corr - num_finished_spaces = 4 - args_hash = {} - args_hash["num_units"] = 4 - args_hash["foundation_type"] = "unfinished basement" - expected_num_del_objects = {} - expected_num_new_objects = { "BuildingUnit" => 1 * 4, "Surface" => 52, "ThermalZone" => 1 * 4 + 1 + 1, "Space" => 1 * 4 + 1 + 1, "SpaceType" => 3, "PeopleDefinition" => num_finished_spaces, "People" => num_finished_spaces, "ScheduleRuleset" => 1, "ShadingSurfaceGroup" => 2, "ShadingSurface" => 12, "ExternalFile" => 1, "ScheduleFile" => 1 } - expected_values = { "FinishedFloorArea" => 900 * 1 * 4, "UnfinishedBasementHeight" => 8, "UnfinishedBasementFloorArea" => 4 * 900 + 2 * 21.21 * 10, "BuildingHeight" => 8 + 8, "Beds" => 3.0, "Baths" => 2.0, "NumOccupants" => 13.56, "EavesDepth" => 2, "NumAdiabaticSurfaces" => 10 } - _test_measure(nil, args_hash, expected_num_del_objects, expected_num_new_objects, expected_values, __method__) - end - - def test_one_unit_per_floor_with_rear_units - num_finished_spaces = 2 - args_hash = {} - args_hash["num_floors"] = 2 - args_hash["num_units"] = 2 - expected_num_del_objects = {} - expected_num_new_objects = { "BuildingUnit" => 2, "Surface" => 12, "ThermalZone" => 2, "Space" => 2, "SpaceType" => 1, "PeopleDefinition" => num_finished_spaces, "People" => num_finished_spaces, "ScheduleRuleset" => 1, "ShadingSurfaceGroup" => 4, "ShadingSurface" => 8, "ExternalFile" => 1, "ScheduleFile" => 1 } - expected_values = { "FinishedFloorArea" => 900 * 2, "BuildingHeight" => 8 + 8, "Beds" => 3.0, "Baths" => 2.0, "NumOccupants" => 6.78, "EavesDepth" => 2, "NumAdiabaticSurfaces" => 0 } - _test_measure(nil, args_hash, expected_num_del_objects, expected_num_new_objects, expected_values, __method__) - end - - def test_two_units_per_floor_with_rear_units - num_finished_spaces = 8 - args_hash = {} - args_hash["num_floors"] = 4 - args_hash["num_units"] = 4 * 2 - expected_num_del_objects = {} - expected_num_new_objects = { "BuildingUnit" => 8, "Surface" => 72, "ThermalZone" => 8 + 1, "Space" => 12, "SpaceType" => 2, "PeopleDefinition" => num_finished_spaces, "People" => num_finished_spaces, "ScheduleRuleset" => 1, "ShadingSurfaceGroup" => 2, "ShadingSurface" => 10, "ExternalFile" => 1, "ScheduleFile" => 1 } - expected_values = { "FinishedFloorArea" => 900 * 8, "BuildingHeight" => 4 * 8, "Beds" => 3.0, "Baths" => 2.0, "NumOccupants" => 27.12, "EavesDepth" => 2, "NumAdiabaticSurfaces" => 22 } - _test_measure(nil, args_hash, expected_num_del_objects, expected_num_new_objects, expected_values, __method__) - end - - def test_one_unit_per_floor_with_no_rear_units - num_finished_spaces = 4 - args_hash = {} - args_hash["num_floors"] = 4 - args_hash["num_units"] = 4 * 1 - args_hash["corridor_position"] = "None" - expected_num_del_objects = {} - expected_num_new_objects = { "BuildingUnit" => 4, "Surface" => 24, "ThermalZone" => 4, "Space" => 4, "SpaceType" => 1, "PeopleDefinition" => num_finished_spaces, "People" => num_finished_spaces, "ScheduleRuleset" => 1, "ShadingSurfaceGroup" => 2, "ShadingSurface" => 6, "ExternalFile" => 1, "ScheduleFile" => 1 } - expected_values = { "FinishedFloorArea" => 900 * 4, "BuildingHeight" => 4 * 8, "Beds" => 3.0, "Baths" => 2.0, "NumOccupants" => 13.56, "EavesDepth" => 2, "NumAdiabaticSurfaces" => 0 } - _test_measure(nil, args_hash, expected_num_del_objects, expected_num_new_objects, expected_values, __method__) - end - - def test_corr_width_zero_but_corr_not_none - num_finished_spaces = 2 - args_hash = {} - args_hash["corridor_width"] = 0 - expected_num_del_objects = {} - expected_num_new_objects = { "BuildingUnit" => 2, "Surface" => 12, "ThermalZone" => 2, "Space" => 2, "SpaceType" => 1, "PeopleDefinition" => num_finished_spaces, "People" => num_finished_spaces, "ScheduleRuleset" => 1, "ShadingSurfaceGroup" => 2, "ShadingSurface" => 8, "ExternalFile" => 1, "ScheduleFile" => 1 } - expected_values = { "FinishedFloorArea" => 900 * 2, "BuildingHeight" => 8, "Beds" => 3.0, "Baths" => 2.0, "NumOccupants" => 6.78, "EavesDepth" => 2, "NumAdiabaticSurfaces" => 0 } - _test_measure(nil, args_hash, expected_num_del_objects, expected_num_new_objects, expected_values, __method__) - end - - def test_odd_units_per_floor_double_exterior - num_finished_spaces = 10 - args_hash = {} - args_hash["num_floors"] = 2 - args_hash["num_units"] = 10 - args_hash["corridor_position"] = "Double Exterior" - expected_num_del_objects = {} - expected_num_new_objects = { "BuildingUnit" => num_finished_spaces, "Surface" => 60, "ThermalZone" => num_finished_spaces, "Space" => num_finished_spaces, "SpaceType" => 1, "PeopleDefinition" => num_finished_spaces, "People" => num_finished_spaces, "ScheduleRuleset" => 1, "ShadingSurfaceGroup" => 6, "ShadingSurface" => 16, "ExternalFile" => 1, "ScheduleFile" => 1 } - expected_values = { "FinishedFloorArea" => 900 * num_finished_spaces, "BuildingHeight" => 2 * 8, "Beds" => 3.0, "Baths" => 2.0, "NumOccupants" => 33.9, "EavesDepth" => 2, "NumAdiabaticSurfaces" => 0 } - _test_measure(nil, args_hash, expected_num_del_objects, expected_num_new_objects, expected_values, __method__) - end - - def test_argument_error_beds_not_equal_to_baths - args_hash = {} - args_hash["num_bedrooms"] = "3.0, 3.0, 3.0" - args_hash["num_bathrooms"] = "2.0, 2.0" - result = _test_error(nil, args_hash) - assert_includes(result.errors.map { |x| x.logMessage }, "Number of bedroom elements specified inconsistent with number of bathroom elements specified.") - end - - def test_argument_error_beds_not_equal_to_units - args_hash = {} - args_hash["num_bedrooms"] = "3.0, 3.0, 3.0" - result = _test_error(nil, args_hash) - assert_includes(result.errors.map { |x| x.logMessage }, "Number of bedroom elements specified inconsistent with number of multifamily units defined in the model.") - end - - def test_argument_error_baths_not_equal_to_units - args_hash = {} - args_hash["num_bathrooms"] = "2.0, 2.0, 2.0" - result = _test_error(nil, args_hash) - assert_includes(result.errors.map { |x| x.logMessage }, "Number of bathroom elements specified inconsistent with number of multifamily units defined in the model.") - end - - def test_argument_error_beds_not_numerical - args_hash = {} - args_hash["num_bedrooms"] = "3.0, 3.0, typo" - result = _test_error(nil, args_hash) - assert_includes(result.errors.map { |x| x.logMessage }, "Number of bedrooms must be a numerical value.") - end - - def test_argument_error_baths_not_numerical - args_hash = {} - args_hash["num_bathrooms"] = "2.0, 2.0, typo" - result = _test_error(nil, args_hash) - assert_includes(result.errors.map { |x| x.logMessage }, "Number of bathrooms must be a numerical value.") - end - - def test_argument_error_beds_not_integer - args_hash = {} - args_hash["num_bedrooms"] = "3.0, 3.0, 3.5" - result = _test_error(nil, args_hash) - assert_includes(result.errors.map { |x| x.logMessage }, "Number of bedrooms must be a non-negative integer.") - end - - def test_argument_error_baths_not_positive_multiple_of_0pt25 - args_hash = {} - args_hash["num_bathrooms"] = "2.0, 2.0, 2.8" - result = _test_error(nil, args_hash) - assert_includes(result.errors.map { |x| x.logMessage }, "Number of bathrooms must be a positive multiple of 0.25.") - end - - def test_error_invalid_eaves_depth - args_hash = {} - args_hash["eaves_depth"] = -1 - result = _test_error(nil, args_hash) - assert(result.errors.size == 1) - assert_equal("Fail", result.value.valueName) - assert_includes(result.errors.map { |x| x.logMessage }, "Eaves depth must be greater than or equal to 0.") - end - - def test_error_invalid_neighbor_offset - args_hash = {} - args_hash["neighbor_left_offset"] = -10 - result = _test_error(nil, args_hash) - assert(result.errors.size == 1) - assert_equal("Fail", result.value.valueName) - assert_includes(result.errors.map { |x| x.logMessage }, "Neighbor offsets must be greater than or equal to 0.") - end - - def test_error_invalid_orientation - args_hash = {} - args_hash["orientation"] = -180 - result = _test_error(nil, args_hash) - assert_includes(result.errors.map { |x| x.logMessage }, "Invalid orientation entered.") - end - - def test_minimal_collapsed_large_building - num_finished_spaces = 18 - args_hash = {} - args_hash["num_floors"] = "5" - args_hash["num_units"] = "50" - args_hash["minimal_collapsed"] = "true" - expected_num_del_objects = {} - expected_num_new_objects = { "Surface" => 138, "Space" => num_finished_spaces + 3, "SpaceType" => 2, "ThermalZone" => num_finished_spaces + 1, "BuildingUnit" => num_finished_spaces, "PeopleDefinition" => num_finished_spaces, "People" => num_finished_spaces, "ScheduleRuleset" => 1, "ShadingSurfaceGroup" => 2, "ShadingSurface" => 14, "ExternalFile" => 1, "ScheduleFile" => 1 } - expected_values = { "FinishedFloorArea" => 900 * num_finished_spaces, "BuildingHeight" => 8 * 3, "Beds" => 3.0, "Baths" => 2.0, "NumOccupants" => 3.39 * num_finished_spaces, "EavesDepth" => 2, "NumAdiabaticSurfaces" => 40 } - _test_measure(nil, args_hash, expected_num_del_objects, expected_num_new_objects, expected_values, __method__) - end - - def test_minimal_collapsed_medium_building - num_finished_spaces = 12 - args_hash = {} - args_hash["num_floors"] = "2" - args_hash["num_units"] = "16" - args_hash["minimal_collapsed"] = "true" - expected_num_del_objects = {} - expected_num_new_objects = { "Surface" => 92, "Space" => num_finished_spaces + 2, "SpaceType" => 2, "ThermalZone" => num_finished_spaces + 1, "BuildingUnit" => num_finished_spaces, "PeopleDefinition" => num_finished_spaces, "People" => num_finished_spaces, "ScheduleRuleset" => 1, "ShadingSurfaceGroup" => 2, "ShadingSurface" => 14, "ExternalFile" => 1, "ScheduleFile" => 1 } - expected_values = { "FinishedFloorArea" => 900 * num_finished_spaces, "BuildingHeight" => 8 * 2, "Beds" => 3.0, "Baths" => 2.0, "NumOccupants" => 3.39 * num_finished_spaces, "EavesDepth" => 2, "NumAdiabaticSurfaces" => 26 } - _test_measure(nil, args_hash, expected_num_del_objects, expected_num_new_objects, expected_values, __method__) - end - - def test_minimal_collapsed_small_building - num_finished_spaces = 3 - args_hash = {} - args_hash["num_floors"] = "1" - args_hash["num_units"] = "12" - args_hash["corridor_position"] = "Single Exterior (Front)" - args_hash["minimal_collapsed"] = "true" - expected_num_del_objects = {} - expected_num_new_objects = { "Surface" => 18, "Space" => num_finished_spaces, "SpaceType" => 1, "ThermalZone" => num_finished_spaces, "BuildingUnit" => num_finished_spaces, "PeopleDefinition" => num_finished_spaces, "People" => num_finished_spaces, "ScheduleRuleset" => 1, "ShadingSurfaceGroup" => 3, "ShadingSurface" => 11, "ExternalFile" => 1, "ScheduleFile" => 1 } - expected_values = { "FinishedFloorArea" => 900 * num_finished_spaces, "BuildingHeight" => 8 * 1, "Beds" => 3.0, "Baths" => 2.0, "NumOccupants" => 3.39 * num_finished_spaces, "EavesDepth" => 2, "NumAdiabaticSurfaces" => 0 } - _test_measure(nil, args_hash, expected_num_del_objects, expected_num_new_objects, expected_values, __method__) - end - - private - - def _test_error(osm_file_or_model, args_hash) - # create an instance of the measure - measure = CreateResidentialMultifamilyGeometry.new - - # create an instance of a runner - runner = OpenStudio::Measure::OSRunner.new(OpenStudio::WorkflowJSON.new) - - model = get_model(File.dirname(__FILE__), osm_file_or_model) - - # get arguments - arguments = measure.arguments(model) - argument_map = OpenStudio::Measure.convertOSArgumentVectorToMap(arguments) - - # populate argument with specified hash value if specified - arguments.each do |arg| - temp_arg_var = arg.clone - if args_hash.has_key?(arg.name) - assert(temp_arg_var.setValue(args_hash[arg.name])) - end - argument_map[arg.name] = temp_arg_var - end - - # run the measure - measure.run(model, runner, argument_map) - result = runner.result - - # show the output - show_output(result) unless result.value.valueName == 'Fail' - - # assert that it didn't run - assert_equal("Fail", result.value.valueName) - assert(result.errors.size == 1) - - return result - end - - def _test_measure(osm_file_or_model, args_hash, expected_num_del_objects, expected_num_new_objects, expected_values, test_name) - # create an instance of the measure - measure = CreateResidentialMultifamilyGeometry.new - - # check for standard methods - assert(!measure.name.empty?) - assert(!measure.description.empty?) - assert(!measure.modeler_description.empty?) - - # create an instance of a runner - runner = OpenStudio::Measure::OSRunner.new(OpenStudio::WorkflowJSON.new) - - model = get_model(File.dirname(__FILE__), osm_file_or_model) - - # get the initial objects in the model - initial_objects = get_objects(model) - - # get arguments - arguments = measure.arguments(model) - argument_map = OpenStudio::Measure.convertOSArgumentVectorToMap(arguments) - - # populate argument with specified hash value if specified - arguments.each do |arg| - temp_arg_var = arg.clone - if args_hash.has_key?(arg.name) - assert(temp_arg_var.setValue(args_hash[arg.name])) - end - argument_map[arg.name] = temp_arg_var - end - - # run the measure - measure.run(model, runner, argument_map) - result = runner.result - - # save the model to test output directory - # output_file_path = OpenStudio::Path.new(File.dirname(__FILE__) + "/output/#{test_name}.osm") - # model.save(output_file_path, true) - - # show the output - show_output(result) unless result.value.valueName == 'Success' - - # assert that it ran correctly - assert_equal("Success", result.value.valueName) - - # get the final objects in the model - final_objects = get_objects(model) - - # get new and deleted objects - obj_type_exclusions = ["PortList", "Node", "ZoneEquipmentList", "SizingZone", "ZoneHVACEquipmentList", "Building", "ScheduleRule", "ScheduleDay", "ScheduleTypeLimits", "YearDescription"] - all_new_objects = get_object_additions(initial_objects, final_objects, obj_type_exclusions) - all_del_objects = get_object_additions(final_objects, initial_objects, obj_type_exclusions) - - # check we have the expected number of new/deleted objects - check_num_objects(all_new_objects, expected_num_new_objects, "added") - check_num_objects(all_del_objects, expected_num_del_objects, "deleted") - - actual_values = { "FinishedFloorArea" => 0, "UnfinishedBasementFloorArea" => 0, "CrawlspaceFloorArea" => 0, "UnfinishedBasementHeight" => 0, "CrawlspaceHeight" => 0, "NumOccupants" => 0, "NumAdiabaticSurfaces" => 0 } - new_spaces = [] - all_new_objects.each do |obj_type, new_objects| - new_objects.each do |new_object| - next if not new_object.respond_to?("to_#{obj_type}") - - new_object = new_object.public_send("to_#{obj_type}").get - if obj_type == "Space" - if new_object.name.to_s.start_with?("unfinished basement") - actual_values["UnfinishedBasementHeight"] = Geometry.get_height_of_spaces([new_object]) - actual_values["UnfinishedBasementFloorArea"] += UnitConversions.convert(new_object.floorArea, "m^2", "ft^2") - elsif new_object.name.to_s.start_with?("crawlspace") - actual_values["CrawlspaceHeight"] = Geometry.get_height_of_spaces([new_object]) - actual_values["CrawlspaceFloorArea"] += UnitConversions.convert(new_object.floorArea, "m^2", "ft^2") - end - if Geometry.space_is_finished(new_object) - actual_values["FinishedFloorArea"] += UnitConversions.convert(new_object.floorArea, "m^2", "ft^2") - end - new_spaces << new_object - elsif obj_type == "People" - actual_values["NumOccupants"] += new_object.peopleDefinition.numberofPeople.get - elsif obj_type == "ShadingSurface" - next unless new_object.name.to_s.include? Constants.ObjectNameEaves - - l, w, h = Geometry.get_surface_dimensions(new_object) - actual_values["EavesDepth"] = [UnitConversions.convert(l, "m", "ft"), UnitConversions.convert(w, "m", "ft")].min - assert_in_epsilon(expected_values["EavesDepth"], actual_values["EavesDepth"], 0.01) - elsif obj_type == "Surface" - if ["outdoors", "foundation"].include? new_object.outsideBoundaryCondition.downcase - if new_object.construction.is_initialized - new_object.construction.get.to_LayeredConstruction.get.layers.each do |layer| - next unless layer.name.to_s.include? Constants.SurfaceTypeAdiabatic - - actual_values["NumAdiabaticSurfaces"] += 1 - end - end - elsif new_object.outsideBoundaryCondition.downcase == "adiabatic" - actual_values["NumAdiabaticSurfaces"] += 1 - end - end - end - end - if new_spaces.any? { |new_space| new_space.name.to_s.start_with?("unfinished basement") } - assert_in_epsilon(expected_values["UnfinishedBasementHeight"], actual_values["UnfinishedBasementHeight"], 0.01) - assert_in_epsilon(expected_values["UnfinishedBasementFloorArea"], actual_values["UnfinishedBasementFloorArea"], 0.01) - end - if new_spaces.any? { |new_space| new_space.name.to_s.start_with?("crawlspace") } - assert_in_epsilon(expected_values["CrawlspaceHeight"], actual_values["CrawlspaceHeight"], 0.01) - assert_in_epsilon(expected_values["CrawlspaceFloorArea"], actual_values["CrawlspaceFloorArea"], 0.01) - end - assert_in_epsilon(expected_values["FinishedFloorArea"], actual_values["FinishedFloorArea"], 0.01) - assert_in_epsilon(expected_values["BuildingHeight"], Geometry.get_height_of_spaces(new_spaces), 0.01) - assert_in_epsilon(expected_values["NumOccupants"], actual_values["NumOccupants"], 0.01) - - # Ensure no surfaces adjacent to "ground" (should be Kiva "foundation") - model.getSurfaces.each do |surface| - refute_equal(surface.outsideBoundaryCondition.downcase, "ground") - end - - Geometry.get_building_units(model, runner).each do |unit| - nbeds, nbaths = Geometry.get_unit_beds_baths(model, unit, runner) - assert_equal(expected_values["Beds"], nbeds) - assert_equal(expected_values["Baths"], nbaths) - end - - assert_equal(expected_values["NumAdiabaticSurfaces"], actual_values["NumAdiabaticSurfaces"]) - - return model - end -end diff --git a/example_files/measures/ResidentialGeometryCreateSingleFamilyAttached/measure.rb b/example_files/measures/ResidentialGeometryCreateSingleFamilyAttached/measure.rb deleted file mode 100644 index a84529bb..00000000 --- a/example_files/measures/ResidentialGeometryCreateSingleFamilyAttached/measure.rb +++ /dev/null @@ -1,1039 +0,0 @@ -# see the URL below for information on how to write OpenStudio measures -# http://nrel.github.io/OpenStudio-user-documentation/reference/measure_writing_guide/ - -resources_path = File.absolute_path(File.join(File.dirname(__FILE__), "../BuildResidentialModel/resources")) -require File.join(resources_path, "constants") -require File.join(resources_path, "geometry") -require File.join(resources_path, "unit_conversions") - -# start the measure -class CreateResidentialSingleFamilyAttachedGeometry < OpenStudio::Measure::ModelMeasure - # human readable name - def name - return "Create Residential Single-Family Attached Geometry" - end - - # human readable description - def description - return "Sets the basic geometry for the single-family attached building, where all units span the building's number of stories and are not stacked. Sets the number of bedrooms, bathrooms, and occupants in the building.#{WholeBuildingConstants.WorkflowDescription}" - end - - # human readable description of modeling approach - def modeler_description - return "Creates single-family attached geometry. Also, sets (or replaces) BuildingUnit objects that store the number of bedrooms and bathrooms associated with the model. Sets (or replaces) the People object for each finished space in the model." - end - - # define the arguments that the user will input - def arguments(model) - args = OpenStudio::Measure::OSArgumentVector.new - - # make an argument for unit living space floor area - unit_ffa = OpenStudio::Measure::OSArgument::makeDoubleArgument("unit_ffa", true) - unit_ffa.setDisplayName("Unit Finished Floor Area") - unit_ffa.setUnits("ft^2") - unit_ffa.setDescription("Unit floor area of the finished space (including any finished basement floor area).") - unit_ffa.setDefaultValue(900.0) - args << unit_ffa - - # make an argument for living space height - wall_height = OpenStudio::Measure::OSArgument::makeDoubleArgument("wall_height", true) - wall_height.setDisplayName("Wall Height (Per Floor)") - wall_height.setUnits("ft") - wall_height.setDescription("The height of the living space walls.") - wall_height.setDefaultValue(8.0) - args << wall_height - - # make an argument for total number of floors - num_floors = OpenStudio::Measure::OSArgument::makeIntegerArgument("num_floors", true) - num_floors.setDisplayName("Building Num Floors") - num_floors.setUnits("#") - num_floors.setDescription("The number of floors above grade.") - num_floors.setDefaultValue(1) - args << num_floors - - # make an argument for number of units - num_units = OpenStudio::Measure::OSArgument::makeIntegerArgument("num_units", true) - num_units.setDisplayName("Num Units") - num_units.setUnits("#") - num_units.setDescription("The number of units.") - num_units.setDefaultValue(2) - args << num_units - - # make an argument for unit aspect ratio - unit_aspect_ratio = OpenStudio::Measure::OSArgument::makeDoubleArgument("unit_aspect_ratio", true) - unit_aspect_ratio.setDisplayName("Unit Aspect Ratio") - unit_aspect_ratio.setUnits("FB/LR") - unit_aspect_ratio.setDescription("The ratio of the front/back wall length to the left/right wall length.") - unit_aspect_ratio.setDefaultValue(2.0) - args << unit_aspect_ratio - - # make an argument for unit offset - offset = OpenStudio::Measure::OSArgument::makeDoubleArgument("offset", true) - offset.setDisplayName("Offset Depth") - offset.setUnits("ft") - offset.setDescription("The depth of the offset.") - offset.setDefaultValue(0.0) - args << offset - - # make an argument for units in back - has_rear_units = OpenStudio::Measure::OSArgument::makeBoolArgument("has_rear_units", true) - has_rear_units.setDisplayName("Has Rear Units?") - has_rear_units.setDescription("Whether the building has rear adjacent units.") - has_rear_units.setDefaultValue(false) - args << has_rear_units - - # make a choice argument for model objects - foundation_display_names = OpenStudio::StringVector.new - foundation_display_names << "slab" - foundation_display_names << "crawlspace" - foundation_display_names << "unfinished basement" - foundation_display_names << "finished basement" - - # make a choice argument for foundation type - foundation_type = OpenStudio::Measure::OSArgument::makeChoiceArgument("foundation_type", foundation_display_names, true) - foundation_type.setDisplayName("Foundation Type") - foundation_type.setDescription("The foundation type of the building.") - foundation_type.setDefaultValue("slab") - args << foundation_type - - # make an argument for crawlspace height - foundation_height = OpenStudio::Measure::OSArgument::makeDoubleArgument("foundation_height", true) - foundation_height.setDisplayName("Foundation Height") - foundation_height.setUnits("ft") - foundation_height.setDescription("The height of the foundation (e.g., 3ft for crawlspace, 8ft for basement).") - foundation_height.setDefaultValue(3.0) - args << foundation_height - - # make a choice argument for model objects - attic_type_display_names = OpenStudio::StringVector.new - attic_type_display_names << "unfinished attic" - attic_type_display_names << "finished attic" - - # make a choice argument for attic type - attic_type = OpenStudio::Measure::OSArgument::makeChoiceArgument("attic_type", attic_type_display_names, true) - attic_type.setDisplayName("Attic Type") - attic_type.setDescription("The attic type of the building. Ignored if the building has a flat roof.") - attic_type.setDefaultValue("unfinished attic") - args << attic_type - - # make a choice argument for model objects - roof_type_display_names = OpenStudio::StringVector.new - roof_type_display_names << WholeBuildingConstants.RoofTypeGable - roof_type_display_names << WholeBuildingConstants.RoofTypeHip - roof_type_display_names << WholeBuildingConstants.RoofTypeFlat - - # make a choice argument for roof type - roof_type = OpenStudio::Measure::OSArgument::makeChoiceArgument("roof_type", roof_type_display_names, true) - roof_type.setDisplayName("Roof Type") - roof_type.setDescription("The roof type of the building.") - roof_type.setDefaultValue(WholeBuildingConstants.RoofTypeGable) - args << roof_type - - # make a choice argument for model objects - roof_pitch_display_names = OpenStudio::StringVector.new - roof_pitch_display_names << "1:12" - roof_pitch_display_names << "2:12" - roof_pitch_display_names << "3:12" - roof_pitch_display_names << "4:12" - roof_pitch_display_names << "5:12" - roof_pitch_display_names << "6:12" - roof_pitch_display_names << "7:12" - roof_pitch_display_names << "8:12" - roof_pitch_display_names << "9:12" - roof_pitch_display_names << "10:12" - roof_pitch_display_names << "11:12" - roof_pitch_display_names << "12:12" - - # make a choice argument for roof pitch - roof_pitch = OpenStudio::Measure::OSArgument::makeChoiceArgument("roof_pitch", roof_pitch_display_names, true) - roof_pitch.setDisplayName("Roof Pitch") - roof_pitch.setDescription("The roof pitch of the attic. Ignored if the building has a flat roof.") - roof_pitch.setDefaultValue("6:12") - args << roof_pitch - - # make a choice argument for model objects - roof_structure_display_names = OpenStudio::StringVector.new - roof_structure_display_names << WholeBuildingConstants.RoofStructureTrussCantilever - roof_structure_display_names << WholeBuildingConstants.RoofStructureRafter - - # make a choice argument for roof type - roof_structure = OpenStudio::Measure::OSArgument::makeChoiceArgument("roof_structure", roof_structure_display_names, true) - roof_structure.setDisplayName("Roof Structure") - roof_structure.setDescription("The roof structure of the building.") - roof_structure.setDefaultValue(WholeBuildingConstants.RoofStructureTrussCantilever) - args << roof_structure - - # make a choice argument for eaves depth - eaves_depth = OpenStudio::Measure::OSArgument::makeDoubleArgument("eaves_depth", true) - eaves_depth.setDisplayName("Eaves Depth") - eaves_depth.setUnits("ft") - eaves_depth.setDescription("The eaves depth of the roof.") - eaves_depth.setDefaultValue(2.0) - args << eaves_depth - - # make a string argument for number of bedrooms - num_br = OpenStudio::Measure::OSArgument::makeStringArgument("num_bedrooms", true) - num_br.setDisplayName("Number of Bedrooms") - num_br.setDescription("Specify the number of bedrooms. Used to determine the energy usage of appliances and plug loads, hot water usage, mechanical ventilation rate, etc.") - num_br.setDefaultValue("3") - args << num_br - - # make a string argument for number of bathrooms - num_ba = OpenStudio::Measure::OSArgument::makeStringArgument("num_bathrooms", true) - num_ba.setDisplayName("Number of Bathrooms") - num_ba.setDescription("Specify the number of bathrooms. Used to determine the hot water usage, etc.") - num_ba.setDefaultValue("2") - args << num_ba - - # make a double argument for left neighbor offset - left_neighbor_offset = OpenStudio::Measure::OSArgument::makeDoubleArgument("neighbor_left_offset", true) - left_neighbor_offset.setDisplayName("Neighbor Left Offset") - left_neighbor_offset.setUnits("ft") - left_neighbor_offset.setDescription("The minimum distance between the simulated house and the neighboring house to the left (not including eaves). A value of zero indicates no neighbors.") - left_neighbor_offset.setDefaultValue(10.0) - args << left_neighbor_offset - - # make a double argument for right neighbor offset - right_neighbor_offset = OpenStudio::Measure::OSArgument::makeDoubleArgument("neighbor_right_offset", true) - right_neighbor_offset.setDisplayName("Neighbor Right Offset") - right_neighbor_offset.setUnits("ft") - right_neighbor_offset.setDescription("The minimum distance between the simulated house and the neighboring house to the right (not including eaves). A value of zero indicates no neighbors.") - right_neighbor_offset.setDefaultValue(10.0) - args << right_neighbor_offset - - # make a double argument for back neighbor offset - back_neighbor_offset = OpenStudio::Measure::OSArgument::makeDoubleArgument("neighbor_back_offset", true) - back_neighbor_offset.setDisplayName("Neighbor Back Offset") - back_neighbor_offset.setUnits("ft") - back_neighbor_offset.setDescription("The minimum distance between the simulated house and the neighboring house to the back (not including eaves). A value of zero indicates no neighbors.") - back_neighbor_offset.setDefaultValue(0.0) - args << back_neighbor_offset - - # make a double argument for front neighbor offset - front_neighbor_offset = OpenStudio::Measure::OSArgument::makeDoubleArgument("neighbor_front_offset", true) - front_neighbor_offset.setDisplayName("Neighbor Front Offset") - front_neighbor_offset.setUnits("ft") - front_neighbor_offset.setDescription("The minimum distance between the simulated house and the neighboring house to the front (not including eaves). A value of zero indicates no neighbors.") - front_neighbor_offset.setDefaultValue(0.0) - args << front_neighbor_offset - - # make a double argument for orientation - orientation = OpenStudio::Measure::OSArgument::makeDoubleArgument("orientation", true) - orientation.setDisplayName("Azimuth") - orientation.setUnits("degrees") - orientation.setDescription("The house's azimuth is measured clockwise from due south when viewed from above (e.g., South=0, West=90, North=180, East=270).") - orientation.setDefaultValue(180.0) - args << orientation - - # make a bool argument for minimal collapsed building - minimal_collapsed = OpenStudio::Measure::OSArgument::makeBoolArgument("minimal_collapsed", true) - minimal_collapsed.setDisplayName("Minimal Collapsed Building") - minimal_collapsed.setDescription("Collapse the building down into only corner, end, and/or middle units.") - minimal_collapsed.setDefaultValue(false) - args << minimal_collapsed - - return args - end - - # define what happens when the measure is run - def run(model, runner, user_arguments) - super(model, runner, user_arguments) - - # use the built-in error checking - if !runner.validateUserArguments(arguments(model), user_arguments) - return false - end - - unit_ffa = UnitConversions.convert(runner.getDoubleArgumentValue("unit_ffa", user_arguments), "ft^2", "m^2") - wall_height = UnitConversions.convert(runner.getDoubleArgumentValue("wall_height", user_arguments), "ft", "m") - num_floors = runner.getIntegerArgumentValue("num_floors", user_arguments) - num_units = runner.getIntegerArgumentValue("num_units", user_arguments) - unit_aspect_ratio = runner.getDoubleArgumentValue("unit_aspect_ratio", user_arguments) - offset = UnitConversions.convert(runner.getDoubleArgumentValue("offset", user_arguments), "ft", "m") - has_rear_units = runner.getBoolArgumentValue("has_rear_units", user_arguments) - foundation_type = runner.getStringArgumentValue("foundation_type", user_arguments) - foundation_height = runner.getDoubleArgumentValue("foundation_height", user_arguments) - attic_type = runner.getStringArgumentValue("attic_type", user_arguments) - roof_type = runner.getStringArgumentValue("roof_type", user_arguments) - roof_pitch = { "1:12" => 1.0 / 12.0, "2:12" => 2.0 / 12.0, "3:12" => 3.0 / 12.0, "4:12" => 4.0 / 12.0, "5:12" => 5.0 / 12.0, "6:12" => 6.0 / 12.0, "7:12" => 7.0 / 12.0, "8:12" => 8.0 / 12.0, "9:12" => 9.0 / 12.0, "10:12" => 10.0 / 12.0, "11:12" => 11.0 / 12.0, "12:12" => 12.0 / 12.0 }[runner.getStringArgumentValue("roof_pitch", user_arguments)] - roof_structure = runner.getStringArgumentValue("roof_structure", user_arguments) - eaves_depth = UnitConversions.convert(runner.getDoubleArgumentValue("eaves_depth", user_arguments), "ft", "m") - num_br = runner.getStringArgumentValue("num_bedrooms", user_arguments).split(",").map(&:strip) - num_ba = runner.getStringArgumentValue("num_bathrooms", user_arguments).split(",").map(&:strip) - num_occupants = WholeBuildingConstants.Auto - if model.getBuilding.additionalProperties.getFeatureAsInteger("num_occupants").is_initialized - num_occupants = "#{model.getBuilding.additionalProperties.getFeatureAsInteger("num_occupants").get}" - end - left_neighbor_offset = UnitConversions.convert(runner.getDoubleArgumentValue("neighbor_left_offset", user_arguments), "ft", "m") - right_neighbor_offset = UnitConversions.convert(runner.getDoubleArgumentValue("neighbor_right_offset", user_arguments), "ft", "m") - back_neighbor_offset = UnitConversions.convert(runner.getDoubleArgumentValue("neighbor_back_offset", user_arguments), "ft", "m") - front_neighbor_offset = UnitConversions.convert(runner.getDoubleArgumentValue("neighbor_front_offset", user_arguments), "ft", "m") - orientation = runner.getDoubleArgumentValue("orientation", user_arguments) - minimal_collapsed = runner.getBoolArgumentValue("minimal_collapsed", user_arguments) - - num_units_actual = num_units - num_floors_actual = num_floors - - if foundation_type == "slab" - foundation_height = 0.0 - elsif foundation_type == "unfinished basement" or foundation_type == "finished basement" - foundation_height = 8.0 - end - - # error checking - if model.getSpaces.size > 0 - runner.registerError("Starting model is not empty.") - return false - end - if foundation_type == "crawlspace" and (foundation_height < 1.5 or foundation_height > 5.0) - runner.registerError("The crawlspace height can be set between 1.5 and 5 ft.") - return false - end - if num_units == 1 and has_rear_units - runner.registerError("Specified building as having rear units, but didn't specify enough units.") - return false - end - if unit_aspect_ratio < 0 - runner.registerError("Invalid aspect ratio entered.") - return false - end - if has_rear_units and num_units % 2 != 0 - runner.registerError("Specified a building with rear units and an odd number of units.") - return false - end - - # minimal collapsed - num_middle = 1 - if minimal_collapsed - if has_rear_units - if num_units >= 8 # can be collapsed - num_middle = (num_units / 2) - 2 - num_units = 6 - end - else # front only - if num_units >= 4 # can be collapsed - num_middle = num_units - 2 - num_units = 3 - end - end - end - - # convert to si - foundation_height = UnitConversions.convert(foundation_height, "ft", "m") - - # starting spaces - runner.registerInitialCondition("The building started with #{model.getSpaces.size} spaces.") - - if foundation_type == "finished basement" and attic_type == "finished attic" - footprint = unit_ffa / (num_floors + 2) - elsif foundation_type == "finished basement" or attic_type == "finished attic" - footprint = unit_ffa / (num_floors + 1) - else - footprint = unit_ffa / num_floors - end - - # calculate the dimensions of the unit - x = Math.sqrt(footprint / unit_aspect_ratio) - y = footprint / x - - foundation_front_polygon = nil - foundation_back_polygon = nil - - # create the front prototype unit - nw_point = OpenStudio::Point3d.new(0, 0, 0) - ne_point = OpenStudio::Point3d.new(x, 0, 0) - sw_point = OpenStudio::Point3d.new(0, -y, 0) - se_point = OpenStudio::Point3d.new(x, -y, 0) - living_polygon = WholeBuildingGeometry.make_polygon(sw_point, nw_point, ne_point, se_point) - - # foundation - if foundation_height > 0 and foundation_front_polygon.nil? - foundation_front_polygon = living_polygon - end - - # create living zone - living_zone = OpenStudio::Model::ThermalZone.new(model) - living_zone.setName("living zone") - - # first floor front - living_spaces_front = [] - living_space = OpenStudio::Model::Space::fromFloorPrint(living_polygon, wall_height, model) - living_space = living_space.get - living_space.setName("living space") - living_space_type = OpenStudio::Model::SpaceType.new(model) - living_space_type.setStandardsSpaceType(WholeBuildingConstants.SpaceTypeLiving) - living_space.setSpaceType(living_space_type) - living_space.setThermalZone(living_zone) - - living_spaces_front << living_space - - attic_space_front = nil - attic_space_back = nil - attic_spaces = [] - - # additional floors - (2..num_floors).to_a.each do |story| - new_living_space = living_space.clone.to_Space.get - new_living_space.setName("living space|story #{story}") - new_living_space.setSpaceType(living_space_type) - - m = WholeBuildingGeometry.initialize_transformation_matrix(OpenStudio::Matrix.new(4, 4, 0)) - m[2, 3] = wall_height * (story - 1) - new_living_space.setTransformation(OpenStudio::Transformation.new(m)) - new_living_space.setThermalZone(living_zone) - - living_spaces_front << new_living_space - end - - # attic - if roof_type != WholeBuildingConstants.RoofTypeFlat - attic_space = get_attic_space(model, x, y, wall_height, num_floors, roof_pitch, roof_type) - if attic_type == "finished attic" - attic_space.setName("finished attic space") - attic_space.setThermalZone(living_zone) - attic_space.setSpaceType(living_space_type) - living_spaces_front << attic_space - else - attic_spaces << attic_space - attic_space_front = attic_space - end - end - - # create the unit - unit_spaces_hash = {} - unit_spaces_hash[1] = [living_spaces_front, 1, "Left"] - - if has_rear_units # units in front and back - - # create the back prototype unit - nw_point = OpenStudio::Point3d.new(0, y, 0) - ne_point = OpenStudio::Point3d.new(x, y, 0) - sw_point = OpenStudio::Point3d.new(0, 0, 0) - se_point = OpenStudio::Point3d.new(x, 0, 0) - living_polygon = WholeBuildingGeometry.make_polygon(sw_point, nw_point, ne_point, se_point) - - # foundation - if foundation_height > 0 and foundation_back_polygon.nil? - foundation_back_polygon = living_polygon - end - - # create living zone - living_zone = OpenStudio::Model::ThermalZone.new(model) - living_zone.setName("living zone|#{WholeBuildingConstants.ObjectNameBuildingUnit(2)}") - - # first floor back - living_spaces_back = [] - living_space = OpenStudio::Model::Space::fromFloorPrint(living_polygon, wall_height, model) - living_space = living_space.get - living_space.setName("living space|#{WholeBuildingConstants.ObjectNameBuildingUnit(2)}") - living_space.setSpaceType(living_space_type) - living_space.setThermalZone(living_zone) - - living_spaces_back << living_space - - # additional floors - (2..num_floors).to_a.each do |story| - new_living_space = living_space.clone.to_Space.get - new_living_space.setName("living space|#{WholeBuildingConstants.ObjectNameBuildingUnit(2)}|story #{story}") - new_living_space.setSpaceType(living_space_type) - - m = WholeBuildingGeometry.initialize_transformation_matrix(OpenStudio::Matrix.new(4, 4, 0)) - m[2, 3] = wall_height * (story - 1) - new_living_space.setTransformation(OpenStudio::Transformation.new(m)) - new_living_space.setThermalZone(living_zone) - - living_spaces_back << new_living_space - end - - # attic - if roof_type != WholeBuildingConstants.RoofTypeFlat - attic_space = get_attic_space(model, x, -y, wall_height, num_floors, roof_pitch, roof_type) - if attic_type == "finished attic" - attic_space.setName("finished attic space|#{WholeBuildingConstants.ObjectNameBuildingUnit(2)}") - attic_space.setThermalZone(living_zone) - attic_space.setSpaceType(living_space_type) - living_spaces_back << attic_space - else - attic_spaces << attic_space - attic_space_back = attic_space - end - end - - # create the back unit - unit_spaces_hash[2] = [living_spaces_back, 1, "Left"] - - pos = 0 - (3..num_units).to_a.each do |unit_num| - # front or back unit - if unit_num % 2 != 0 # odd unit number - living_spaces = living_spaces_front - pos += 1 - else # even unit number - living_spaces = living_spaces_back - end - - living_zone = OpenStudio::Model::ThermalZone.new(model) - living_zone.setName("living zone|#{WholeBuildingConstants.ObjectNameBuildingUnit(unit_num)}") - - new_living_spaces = [] - living_spaces.each_with_index do |living_space, story| - new_living_space = living_space.clone.to_Space.get - if story == num_floors - new_living_space.setName("finished attic space|#{WholeBuildingConstants.ObjectNameBuildingUnit(unit_num)}") - else - new_living_space.setName("living space|#{WholeBuildingConstants.ObjectNameBuildingUnit(unit_num)}|story #{story + 1}") - end - new_living_space.setSpaceType(living_space_type) - - m = WholeBuildingGeometry.initialize_transformation_matrix(OpenStudio::Matrix.new(4, 4, 0)) - m[0, 3] = -pos * x - if (pos + 1) % 2 == 0 - m[1, 3] = -offset - end - new_living_space.changeTransformation(OpenStudio::Transformation.new(m)) - new_living_space.setXOrigin(0) - new_living_space.setYOrigin(0) - new_living_space.setZOrigin(0) - new_living_space.setThermalZone(living_zone) - - new_living_spaces << new_living_space - end - - # attic - if roof_type != WholeBuildingConstants.RoofTypeFlat - if attic_type == "unfinished attic" - # front or back unit - if unit_num % 2 != 0 # odd unit number - attic_space = attic_space_front - else # even unit number - attic_space = attic_space_back - end - - new_attic_space = attic_space.clone.to_Space.get - - m = WholeBuildingGeometry.initialize_transformation_matrix(OpenStudio::Matrix.new(4, 4, 0)) - m[0, 3] = -pos * x - if (pos + 1) % 2 == 0 - m[1, 3] = -offset - end - new_attic_space.changeTransformation(OpenStudio::Transformation.new(m)) - new_attic_space.setXOrigin(0) - new_attic_space.setYOrigin(0) - new_attic_space.setZOrigin(0) - - attic_spaces << new_attic_space - - end - end - - units_represented = 1 - if pos == 1 # not on the ends - units_represented = num_middle - end - unit_spaces_hash[unit_num] = [new_living_spaces, units_represented, "Middle"] - end - unit_spaces_hash[num_units][2] = "Right" - unit_spaces_hash[num_units-1][2] = "Right" - - else # units only in front - - pos = 0 - (2..num_units).to_a.each do |unit_num| - living_spaces = living_spaces_front - pos += 1 - - living_zone = OpenStudio::Model::ThermalZone.new(model) - living_zone.setName("living zone|#{WholeBuildingConstants.ObjectNameBuildingUnit(unit_num)}") - - new_living_spaces = [] - living_spaces.each_with_index do |living_space, story| - new_living_space = living_space.clone.to_Space.get - - if story == num_floors - new_living_space.setName("finished attic space|#{WholeBuildingConstants.ObjectNameBuildingUnit(unit_num)}") - else - new_living_space.setName("living space|#{WholeBuildingConstants.ObjectNameBuildingUnit(unit_num)}|story #{story + 1}") - end - new_living_space.setSpaceType(living_space_type) - - m = WholeBuildingGeometry.initialize_transformation_matrix(OpenStudio::Matrix.new(4, 4, 0)) - m[0, 3] = -pos * x - if (pos + 1) % 2 == 0 - m[1, 3] = -offset - end - new_living_space.changeTransformation(OpenStudio::Transformation.new(m)) - new_living_space.setXOrigin(0) - new_living_space.setYOrigin(0) - new_living_space.setZOrigin(0) - new_living_space.setThermalZone(living_zone) - - new_living_spaces << new_living_space - end - - # attic - if roof_type != WholeBuildingConstants.RoofTypeFlat - if attic_type == "unfinished attic" - - attic_space = attic_space_front - - new_attic_space = attic_space.clone.to_Space.get - - m = WholeBuildingGeometry.initialize_transformation_matrix(OpenStudio::Matrix.new(4, 4, 0)) - m[0, 3] = -pos * x - if (pos + 1) % 2 == 0 - m[1, 3] = -offset - end - new_attic_space.changeTransformation(OpenStudio::Transformation.new(m)) - new_attic_space.setXOrigin(0) - new_attic_space.setYOrigin(0) - new_attic_space.setZOrigin(0) - - attic_spaces << new_attic_space - - end - end - - units_represented = 1 - if pos == 1 # not on the ends - units_represented = num_middle - end - unit_spaces_hash[unit_num] = [new_living_spaces, units_represented, "Middle"] - end - unit_spaces_hash[num_units][2] = "Right" - - end - - # foundation - if foundation_height > 0 - - foundation_spaces = [] - - # foundation front - foundation_space_front = [] - foundation_space = OpenStudio::Model::Space::fromFloorPrint(foundation_front_polygon, foundation_height, model) - foundation_space = foundation_space.get - m = WholeBuildingGeometry.initialize_transformation_matrix(OpenStudio::Matrix.new(4, 4, 0)) - m[2, 3] = foundation_height - foundation_space.changeTransformation(OpenStudio::Transformation.new(m)) - foundation_space.setXOrigin(0) - foundation_space.setYOrigin(0) - foundation_space.setZOrigin(0) - - if foundation_type == "finished basement" - foundation_zone = OpenStudio::Model::ThermalZone.new(model) - foundation_space.setName("finished basement space") - foundation_zone.setName("finished basement zone") - foundation_space.setThermalZone(foundation_zone) - foundation_space_type = OpenStudio::Model::SpaceType.new(model) - foundation_space_type.setStandardsSpaceType(WholeBuildingConstants.SpaceTypeFinishedBasement) - foundation_space.setSpaceType(foundation_space_type) - end - - foundation_space_front << foundation_space - foundation_spaces << foundation_space - - if foundation_type == "finished basement" - unit_spaces_hash[1][0] << foundation_space - end - - if has_rear_units # units in front and back - - # foundation back - foundation_space_back = [] - foundation_space = OpenStudio::Model::Space::fromFloorPrint(foundation_back_polygon, foundation_height, model) - foundation_space = foundation_space.get - m = WholeBuildingGeometry.initialize_transformation_matrix(OpenStudio::Matrix.new(4, 4, 0)) - m[2, 3] = foundation_height - foundation_space.changeTransformation(OpenStudio::Transformation.new(m)) - foundation_space.setXOrigin(0) - foundation_space.setYOrigin(0) - foundation_space.setZOrigin(0) - - if foundation_type == "finished basement" - foundation_zone = OpenStudio::Model::ThermalZone.new(model) - foundation_space.setName("finished basement space|#{WholeBuildingConstants.ObjectNameBuildingUnit(2)}") - foundation_zone.setName("finished basement zone|#{WholeBuildingConstants.ObjectNameBuildingUnit(2)}") - foundation_space.setThermalZone(foundation_zone) - foundation_space.setSpaceType(foundation_space_type) - end - - foundation_space_back << foundation_space - foundation_spaces << foundation_space - - # create the unit - if foundation_type == "finished basement" - unit_spaces_hash[2][0] << foundation_space - end - - pos = 0 - (3..num_units).to_a.each do |unit_num| - # front or back unit - if unit_num % 2 != 0 # odd unit number - fnd_spaces = foundation_space_front - pos += 1 - else # even unit number - fnd_spaces = foundation_space_back - end - - if foundation_type == "finished basement" - basement_zone = OpenStudio::Model::ThermalZone.new(model) - basement_zone.setName("finished basement zone|#{WholeBuildingConstants.ObjectNameBuildingUnit(unit_num)}") - end - - fnd_spaces.each do |fnd_space| - new_fnd_space = fnd_space.clone.to_Space.get - if foundation_type == "finished basement" - new_fnd_space.setName("finished basement space|#{WholeBuildingConstants.ObjectNameBuildingUnit(unit_num)}") - new_fnd_space.setSpaceType(foundation_space_type) - end - - m = WholeBuildingGeometry.initialize_transformation_matrix(OpenStudio::Matrix.new(4, 4, 0)) - m[0, 3] = -pos * x - if (pos + 1) % 2 == 0 - m[1, 3] = -offset - end - new_fnd_space.changeTransformation(OpenStudio::Transformation.new(m)) - new_fnd_space.setXOrigin(0) - new_fnd_space.setYOrigin(0) - new_fnd_space.setZOrigin(0) - if foundation_type == "finished basement" - new_fnd_space.setThermalZone(basement_zone) - end - - foundation_spaces << new_fnd_space - - if foundation_type == "finished basement" - unit_spaces_hash[unit_num][0] << new_fnd_space - end - end - end - - else # units only in front - - pos = 0 - (2..num_units).to_a.each do |unit_num| - fnd_spaces = foundation_space_front - pos += 1 - - if foundation_type == "finished basement" - basement_zone = OpenStudio::Model::ThermalZone.new(model) - basement_zone.setName("finished basement zone|#{WholeBuildingConstants.ObjectNameBuildingUnit(unit_num)}") - end - - fnd_spaces.each do |fnd_space| - new_fnd_space = fnd_space.clone.to_Space.get - if foundation_type == "finished basement" - new_fnd_space.setName("finished basement space|#{WholeBuildingConstants.ObjectNameBuildingUnit(unit_num)}") - new_fnd_space.setSpaceType(foundation_space_type) - end - - m = WholeBuildingGeometry.initialize_transformation_matrix(OpenStudio::Matrix.new(4, 4, 0)) - m[0, 3] = -pos * x - if (pos + 1) % 2 == 0 - m[1, 3] = -offset - end - new_fnd_space.changeTransformation(OpenStudio::Transformation.new(m)) - new_fnd_space.setXOrigin(0) - new_fnd_space.setYOrigin(0) - new_fnd_space.setZOrigin(0) - if foundation_type == "finished basement" - new_fnd_space.setThermalZone(basement_zone) - end - - foundation_spaces << new_fnd_space - - if foundation_type == "finished basement" - unit_spaces_hash[unit_num][0] << new_fnd_space - end - end - end - - end - - # put all of the spaces in the model into a vector - spaces = OpenStudio::Model::SpaceVector.new - model.getSpaces.each do |space| - spaces << space - end - - # intersect and match surfaces for each space in the vector - OpenStudio::Model.intersectSurfaces(spaces) - OpenStudio::Model.matchSurfaces(spaces) - - if ["crawlspace", "unfinished basement"].include? foundation_type - foundation_space = WholeBuildingGeometry.make_one_space_from_multiple_spaces(model, foundation_spaces) - if foundation_type == "crawlspace" - foundation_space.setName("crawl space") - foundation_zone = OpenStudio::Model::ThermalZone.new(model) - foundation_zone.setName("crawl zone") - foundation_space.setThermalZone(foundation_zone) - foundation_space_type = OpenStudio::Model::SpaceType.new(model) - foundation_space_type.setStandardsSpaceType(WholeBuildingConstants.SpaceTypeCrawl) - foundation_space.setSpaceType(foundation_space_type) - elsif foundation_type == "unfinished basement" - foundation_space.setName("unfinished basement space") - foundation_zone = OpenStudio::Model::ThermalZone.new(model) - foundation_zone.setName("unfinished basement zone") - foundation_space.setThermalZone(foundation_zone) - foundation_space_type = OpenStudio::Model::SpaceType.new(model) - foundation_space_type.setStandardsSpaceType(WholeBuildingConstants.SpaceTypeUnfinishedBasement) - foundation_space.setSpaceType(foundation_space_type) - end - end - - # set foundation walls to ground - spaces = model.getSpaces - spaces.each do |space| - if WholeBuildingGeometry.get_space_floor_z(space) + UnitConversions.convert(space.zOrigin, "m", "ft") < 0 - surfaces = space.surfaces - surfaces.each do |surface| - next if surface.surfaceType.downcase != "wall" - - surface.setOutsideBoundaryCondition("Foundation") - end - end - end - - end - - # put all of the spaces in the model into a vector - spaces = OpenStudio::Model::SpaceVector.new - model.getSpaces.each do |space| - spaces << space - end - - # intersect and match surfaces for each space in the vector - OpenStudio::Model.intersectSurfaces(spaces) - OpenStudio::Model.matchSurfaces(spaces) - - if attic_type == "unfinished attic" and roof_type != WholeBuildingConstants.RoofTypeFlat - if offset == 0 - x *= num_units - if has_rear_units - x /= 2 - end - attic_spaces.each do |attic_space| - attic_space.remove - end - attic_space = get_attic_space(model, x, y, wall_height, num_floors, roof_pitch, roof_type, has_rear_units) - else - attic_space = WholeBuildingGeometry.make_one_space_from_multiple_spaces(model, attic_spaces) - end - attic_space.setName("unfinished attic space") - attic_zone = OpenStudio::Model::ThermalZone.new(model) - attic_zone.setName("unfinished attic zone") - attic_space.setThermalZone(attic_zone) - attic_space_type = OpenStudio::Model::SpaceType.new(model) - attic_space_type.setStandardsSpaceType(WholeBuildingConstants.SpaceTypeUnfinishedAttic) - attic_space.setSpaceType(attic_space_type) - end - - total_units_represented = 0 - unit_spaces_hash.each do |unit_num, unit_info| - spaces, units_represented, horizontal_location = unit_info - - # Store building unit information - unit = OpenStudio::Model::BuildingUnit.new(model) - unit.setBuildingUnitType(WholeBuildingConstants.BuildingUnitTypeResidential) - unit.setName(WholeBuildingConstants.ObjectNameBuildingUnit(unit_num)) - unit.additionalProperties.setFeature("Units Represented", units_represented) - unit.additionalProperties.setFeature("GeometryHorizontalLocation", horizontal_location) - total_units_represented += units_represented - spaces.each do |space| - space.setBuildingUnit(unit) - end - end - if total_units_represented != num_units_actual - runner.registerError("The specified number of building units does not equal the number of building units represented in the model.") - return false - end - model.getBuilding.additionalProperties.setFeature("Total Units Represented", num_units_actual) - model.getBuilding.additionalProperties.setFeature("Total Units Modeled", num_units) - runner.registerInfo("The #{num_units_actual}-unit building will be modeled using #{num_units} building units.") - - # put all of the spaces in the model into a vector - spaces = OpenStudio::Model::SpaceVector.new - model.getSpaces.each do |space| - spaces << space - end - - # intersect and match surfaces for each space in the vector - OpenStudio::Model.intersectSurfaces(spaces) - OpenStudio::Model.matchSurfaces(spaces) - - # set foundation outside boundary condition to Kiva "foundation" - model.getSurfaces.each do |surface| - next if surface.outsideBoundaryCondition.downcase != "ground" - - surface.setOutsideBoundaryCondition("Foundation") - end - - # Store number of units - model.getBuilding.setStandardsNumberOfLivingUnits(num_units) - - # Store number of stories - if attic_type == "finished attic" - num_floors += 1 - end - model.getBuilding.setStandardsNumberOfAboveGroundStories(num_floors) - if foundation_type == "unfinished basement" or foundation_type == "finished basement" - num_floors += 1 - end - model.getBuilding.setStandardsNumberOfStories(num_floors) - - # Store the building type - model.getBuilding.setStandardsBuildingType(WholeBuildingConstants.BuildingTypeSingleFamilyAttached) - - result = WholeBuildingGeometry.process_beds_and_baths(model, runner, num_br, num_ba) - unless result - return false - end - - result = WholeBuildingGeometry.process_eaves(model, runner, eaves_depth, roof_structure) - unless result - return false - end - - result = WholeBuildingGeometry.process_neighbors(model, runner, left_neighbor_offset, right_neighbor_offset, back_neighbor_offset, front_neighbor_offset) - unless result - return false - end - - result = WholeBuildingGeometry.process_orientation(model, runner, orientation) - unless result - return false - end - - # reporting final condition of model - runner.registerFinalCondition("The building finished with #{model.getSpaces.size} spaces.") - - return true - end - - def get_attic_space(model, x, y, wall_height, num_floors, roof_pitch, roof_type, has_rear_units = false) - y_rear = 0 - if has_rear_units - y_rear = y - end - - if y > 0 - nw_point = OpenStudio::Point3d.new(0, y_rear, wall_height * num_floors) - ne_point = OpenStudio::Point3d.new(x, y_rear, wall_height * num_floors) - sw_point = OpenStudio::Point3d.new(0, -y, wall_height * num_floors) - se_point = OpenStudio::Point3d.new(x, -y, wall_height * num_floors) - else - nw_point = OpenStudio::Point3d.new(0, -y, wall_height * num_floors) - ne_point = OpenStudio::Point3d.new(x, -y, wall_height * num_floors) - sw_point = OpenStudio::Point3d.new(0, 0, wall_height * num_floors) - se_point = OpenStudio::Point3d.new(x, 0, wall_height * num_floors) - end - attic_polygon = WholeBuildingGeometry.make_polygon(sw_point, nw_point, ne_point, se_point) - if y.abs + y_rear >= x - attic_height = (x / 2.0) * roof_pitch - else - attic_height = ((y.abs + y_rear) / 2.0) * roof_pitch - end - - side_type = nil - if roof_type == WholeBuildingConstants.RoofTypeGable - if y > 0 - if x <= (y + y_rear) - roof_n_point = OpenStudio::Point3d.new(x / 2.0, y_rear, wall_height * num_floors + attic_height) - roof_s_point = OpenStudio::Point3d.new(x / 2.0, -y, wall_height * num_floors + attic_height) - polygon_w_roof = WholeBuildingGeometry.make_polygon(roof_n_point, nw_point, sw_point, roof_s_point) - polygon_e_roof = WholeBuildingGeometry.make_polygon(roof_s_point, se_point, ne_point, roof_n_point) - polygon_s_wall = WholeBuildingGeometry.make_polygon(roof_s_point, sw_point, se_point) - polygon_n_wall = WholeBuildingGeometry.make_polygon(roof_n_point, ne_point, nw_point) - else - roof_w_point = OpenStudio::Point3d.new(0, (y_rear - y) / 2.0, wall_height * num_floors + attic_height) - roof_e_point = OpenStudio::Point3d.new(x, (y_rear - y) / 2.0, wall_height * num_floors + attic_height) - polygon_w_roof = WholeBuildingGeometry.make_polygon(roof_w_point, roof_e_point, ne_point, nw_point) - polygon_e_roof = WholeBuildingGeometry.make_polygon(roof_e_point, roof_w_point, sw_point, se_point) - polygon_s_wall = WholeBuildingGeometry.make_polygon(roof_w_point, nw_point, sw_point) - polygon_n_wall = WholeBuildingGeometry.make_polygon(roof_e_point, se_point, ne_point) - end - else - if x <= y.abs - roof_n_point = OpenStudio::Point3d.new(x / 2.0, -y, wall_height * num_floors + attic_height) - roof_s_point = OpenStudio::Point3d.new(x / 2.0, 0, wall_height * num_floors + attic_height) - polygon_w_roof = WholeBuildingGeometry.make_polygon(roof_n_point, nw_point, sw_point, roof_s_point) - polygon_e_roof = WholeBuildingGeometry.make_polygon(roof_s_point, se_point, ne_point, roof_n_point) - polygon_s_wall = WholeBuildingGeometry.make_polygon(roof_s_point, sw_point, se_point) - polygon_n_wall = WholeBuildingGeometry.make_polygon(roof_n_point, ne_point, nw_point) - else - roof_w_point = OpenStudio::Point3d.new(0, -y / 2.0, wall_height * num_floors + attic_height) - roof_e_point = OpenStudio::Point3d.new(x, -y / 2.0, wall_height * num_floors + attic_height) - polygon_w_roof = WholeBuildingGeometry.make_polygon(roof_w_point, roof_e_point, ne_point, nw_point) - polygon_e_roof = WholeBuildingGeometry.make_polygon(roof_e_point, roof_w_point, sw_point, se_point) - polygon_s_wall = WholeBuildingGeometry.make_polygon(roof_w_point, nw_point, sw_point) - polygon_n_wall = WholeBuildingGeometry.make_polygon(roof_e_point, se_point, ne_point) - end - end - side_type = "Wall" - elsif roof_type == WholeBuildingConstants.RoofTypeHip - if y > 0 - if x <= (y + y_rear) - roof_n_point = OpenStudio::Point3d.new(x / 2.0, y_rear - x / 2.0, wall_height * num_floors + attic_height) - roof_s_point = OpenStudio::Point3d.new(x / 2.0, -y + x / 2.0, wall_height * num_floors + attic_height) - polygon_w_roof = WholeBuildingGeometry.make_polygon(roof_n_point, nw_point, sw_point, roof_s_point) - polygon_e_roof = WholeBuildingGeometry.make_polygon(roof_s_point, se_point, ne_point, roof_n_point) - polygon_s_wall = WholeBuildingGeometry.make_polygon(roof_s_point, sw_point, se_point) - polygon_n_wall = WholeBuildingGeometry.make_polygon(roof_n_point, ne_point, nw_point) - else - roof_w_point = OpenStudio::Point3d.new((y + y_rear) / 2.0, (y_rear - y) / 2.0, wall_height * num_floors + attic_height) - roof_e_point = OpenStudio::Point3d.new(x - (y + y_rear) / 2.0, (y_rear - y) / 2.0, wall_height * num_floors + attic_height) - polygon_w_roof = WholeBuildingGeometry.make_polygon(roof_w_point, sw_point, se_point, roof_e_point) - polygon_e_roof = WholeBuildingGeometry.make_polygon(roof_e_point, ne_point, nw_point, roof_w_point) - polygon_s_wall = WholeBuildingGeometry.make_polygon(roof_e_point, se_point, ne_point) - polygon_n_wall = WholeBuildingGeometry.make_polygon(roof_w_point, nw_point, sw_point) - end - else - if x <= y.abs - roof_n_point = OpenStudio::Point3d.new(x / 2.0, -y - x / 2.0, wall_height * num_floors + attic_height) - roof_s_point = OpenStudio::Point3d.new(x / 2.0, x / 2.0, wall_height * num_floors + attic_height) - polygon_w_roof = WholeBuildingGeometry.make_polygon(roof_n_point, nw_point, sw_point, roof_s_point) - polygon_e_roof = WholeBuildingGeometry.make_polygon(roof_s_point, se_point, ne_point, roof_n_point) - polygon_s_wall = WholeBuildingGeometry.make_polygon(roof_s_point, sw_point, se_point) - polygon_n_wall = WholeBuildingGeometry.make_polygon(roof_n_point, ne_point, nw_point) - else - roof_w_point = OpenStudio::Point3d.new(-y / 2.0, -y / 2.0, wall_height * num_floors + attic_height) - roof_e_point = OpenStudio::Point3d.new(x + y / 2.0, -y / 2.0, wall_height * num_floors + attic_height) - polygon_w_roof = WholeBuildingGeometry.make_polygon(roof_w_point, sw_point, se_point, roof_e_point) - polygon_e_roof = WholeBuildingGeometry.make_polygon(roof_e_point, ne_point, nw_point, roof_w_point) - polygon_s_wall = WholeBuildingGeometry.make_polygon(roof_e_point, se_point, ne_point) - polygon_n_wall = WholeBuildingGeometry.make_polygon(roof_w_point, nw_point, sw_point) - end - end - side_type = "RoofCeiling" - end - - surface_floor = OpenStudio::Model::Surface.new(attic_polygon, model) - surface_floor.setSurfaceType("Floor") - surface_floor.setOutsideBoundaryCondition("Surface") - surface_w_roof = OpenStudio::Model::Surface.new(polygon_w_roof, model) - surface_w_roof.setSurfaceType("RoofCeiling") - surface_w_roof.setOutsideBoundaryCondition("Outdoors") - surface_e_roof = OpenStudio::Model::Surface.new(polygon_e_roof, model) - surface_e_roof.setSurfaceType("RoofCeiling") - surface_e_roof.setOutsideBoundaryCondition("Outdoors") - surface_s_wall = OpenStudio::Model::Surface.new(polygon_s_wall, model) - surface_s_wall.setSurfaceType(side_type) - surface_s_wall.setOutsideBoundaryCondition("Outdoors") - surface_n_wall = OpenStudio::Model::Surface.new(polygon_n_wall, model) - surface_n_wall.setSurfaceType(side_type) - surface_n_wall.setOutsideBoundaryCondition("Outdoors") - - attic_space = OpenStudio::Model::Space.new(model) - - surface_floor.setSpace(attic_space) - surface_w_roof.setSpace(attic_space) - surface_e_roof.setSpace(attic_space) - surface_s_wall.setSpace(attic_space) - surface_n_wall.setSpace(attic_space) - - return attic_space - end -end - -# register the measure to be used by the application -CreateResidentialSingleFamilyAttachedGeometry.new.registerWithApplication diff --git a/example_files/measures/ResidentialGeometryCreateSingleFamilyAttached/measure.xml b/example_files/measures/ResidentialGeometryCreateSingleFamilyAttached/measure.xml deleted file mode 100644 index 4a3c66a5..00000000 --- a/example_files/measures/ResidentialGeometryCreateSingleFamilyAttached/measure.xml +++ /dev/null @@ -1,393 +0,0 @@ - - 3.0 - create_residential_single_family_attached_geometry - fb4e4db8-1b29-4cbf-abcd-6af194ad945c - b261ebdf-dee8-41a3-b378-2587c1d8d01c - 20200515T170006Z - 2AF3A68E - CreateResidentialSingleFamilyAttachedGeometry - Create Residential Single-Family Attached Geometry - Sets the basic geometry for the single-family attached building, where all units span the building's number of stories and are not stacked. Sets the number of bedrooms, bathrooms, and occupants in the building. See https://github.com/NREL/OpenStudio-BuildStock#workflows for supported workflows using this measure. - Creates single-family attached geometry. Also, sets (or replaces) BuildingUnit objects that store the number of bedrooms and bathrooms associated with the model. Sets (or replaces) the People object for each finished space in the model. - - - unit_ffa - Unit Finished Floor Area - Unit floor area of the finished space (including any finished basement floor area). - Double - ft^2 - true - false - 900 - - - wall_height - Wall Height (Per Floor) - The height of the living space walls. - Double - ft - true - false - 8 - - - num_floors - Building Num Floors - The number of floors above grade. - Integer - # - true - false - 1 - - - num_units - Num Units - The number of units. - Integer - # - true - false - 2 - - - unit_aspect_ratio - Unit Aspect Ratio - The ratio of the front/back wall length to the left/right wall length. - Double - FB/LR - true - false - 2 - - - offset - Offset Depth - The depth of the offset. - Double - ft - true - false - 0 - - - has_rear_units - Has Rear Units? - Whether the building has rear adjacent units. - Boolean - true - false - false - - - true - true - - - false - false - - - - - foundation_type - Foundation Type - The foundation type of the building. - Choice - true - false - slab - - - slab - slab - - - crawlspace - crawlspace - - - unfinished basement - unfinished basement - - - finished basement - finished basement - - - - - foundation_height - Foundation Height - The height of the foundation (e.g., 3ft for crawlspace, 8ft for basement). - Double - ft - true - false - 3 - - - attic_type - Attic Type - The attic type of the building. Ignored if the building has a flat roof. - Choice - true - false - unfinished attic - - - unfinished attic - unfinished attic - - - finished attic - finished attic - - - - - roof_type - Roof Type - The roof type of the building. - Choice - true - false - gable - - - gable - gable - - - hip - hip - - - flat - flat - - - - - roof_pitch - Roof Pitch - The roof pitch of the attic. Ignored if the building has a flat roof. - Choice - true - false - 6:12 - - - 1:12 - 1:12 - - - 2:12 - 2:12 - - - 3:12 - 3:12 - - - 4:12 - 4:12 - - - 5:12 - 5:12 - - - 6:12 - 6:12 - - - 7:12 - 7:12 - - - 8:12 - 8:12 - - - 9:12 - 9:12 - - - 10:12 - 10:12 - - - 11:12 - 11:12 - - - 12:12 - 12:12 - - - - - roof_structure - Roof Structure - The roof structure of the building. - Choice - true - false - truss, cantilever - - - truss, cantilever - truss, cantilever - - - rafter - rafter - - - - - eaves_depth - Eaves Depth - The eaves depth of the roof. - Double - ft - true - false - 2 - - - num_bedrooms - Number of Bedrooms - Specify the number of bedrooms. Used to determine the energy usage of appliances and plug loads, hot water usage, mechanical ventilation rate, etc. - String - true - false - 3 - - - num_bathrooms - Number of Bathrooms - Specify the number of bathrooms. Used to determine the hot water usage, etc. - String - true - false - 2 - - - neighbor_left_offset - Neighbor Left Offset - The minimum distance between the simulated house and the neighboring house to the left (not including eaves). A value of zero indicates no neighbors. - Double - ft - true - false - 10 - - - neighbor_right_offset - Neighbor Right Offset - The minimum distance between the simulated house and the neighboring house to the right (not including eaves). A value of zero indicates no neighbors. - Double - ft - true - false - 10 - - - neighbor_back_offset - Neighbor Back Offset - The minimum distance between the simulated house and the neighboring house to the back (not including eaves). A value of zero indicates no neighbors. - Double - ft - true - false - 0 - - - neighbor_front_offset - Neighbor Front Offset - The minimum distance between the simulated house and the neighboring house to the front (not including eaves). A value of zero indicates no neighbors. - Double - ft - true - false - 0 - - - orientation - Azimuth - The house's azimuth is measured clockwise from due south when viewed from above (e.g., South=0, West=90, North=180, East=270). - Double - degrees - true - false - 180 - - - minimal_collapsed - Minimal Collapsed Building - Collapse the building down into only corner, end, and/or middle units. - Boolean - true - false - false - - - true - true - - - false - false - - - - - - - - Envelope.Form - - - - Measure Type - ModelMeasure - string - - - Intended Software Tool - Apply Measure Now - string - - - Intended Software Tool - OpenStudio Application - string - - - Intended Software Tool - Parametric Analysis Tool - string - - - - - - OpenStudio - 1.12.2 - 2.0.4 - - measure.rb - rb - script - 299719EB - - - create_residential_single_family_attached_geometry_test.rb - rb - test - AE444E86 - - - diff --git a/example_files/measures/ResidentialGeometryCreateSingleFamilyAttached/tests/create_residential_single_family_attached_geometry_test.rb b/example_files/measures/ResidentialGeometryCreateSingleFamilyAttached/tests/create_residential_single_family_attached_geometry_test.rb deleted file mode 100644 index 1ce3f8a9..00000000 --- a/example_files/measures/ResidentialGeometryCreateSingleFamilyAttached/tests/create_residential_single_family_attached_geometry_test.rb +++ /dev/null @@ -1,456 +0,0 @@ -require_relative '../../../../test/minitest_helper' -require 'openstudio' -require 'openstudio/ruleset/ShowRunnerOutput' -require 'minitest/autorun' -require_relative '../measure.rb' -require 'fileutils' - -class CreateResidentialSingleFamilyAttachedGeometryTest < MiniTest::Test - def test_error_existing_geometry - args_hash = {} - result = _test_error("SFA_4units_1story_FB_UA_Denver.osm", args_hash) - assert_includes(result.errors.map { |x| x.logMessage }, "Starting model is not empty.") - end - - def test_argument_error_crawl_height_invalid - args_hash = {} - args_hash["foundation_type"] = "crawlspace" - args_hash["foundation_height"] = 0 - result = _test_error(nil, args_hash) - assert_includes(result.errors.map { |x| x.logMessage }, "The crawlspace height can be set between 1.5 and 5 ft.") - end - - def test_argument_error_aspect_ratio_invalid - args_hash = {} - args_hash["unit_aspect_ratio"] = -1.0 - result = _test_error(nil, args_hash) - assert_includes(result.errors.map { |x| x.logMessage }, "Invalid aspect ratio entered.") - end - - def test_argument_error_odd_and_rear_units - num_finished_spaces = 8 - args_hash = {} - args_hash["num_units"] = 9 - args_hash["has_rear_units"] = "true" - result = _test_error(nil, args_hash) - assert_includes(result.errors.map { |x| x.logMessage }, "Specified a building with rear units and an odd number of units.") - end - - def test_two_story_fourplex_front_units_gable - num_finished_spaces = 12 - args_hash = {} - args_hash["num_floors"] = 2 - args_hash["num_units"] = 4 - args_hash["foundation_type"] = "finished basement" - expected_num_del_objects = {} - expected_num_new_objects = { "BuildingUnit" => 4, "Surface" => 80, "ThermalZone" => 2 * 4 + 1, "Space" => (2 + 1) * 4 + 1, "SpaceType" => 3, "PeopleDefinition" => num_finished_spaces, "People" => num_finished_spaces, "ScheduleRuleset" => 1, "ShadingSurfaceGroup" => 2, "ShadingSurface" => 8, "ExternalFile" => 1, "ScheduleFile" => 1 } - expected_values = { "FinishedFloorArea" => 900 * 4, "FinishedBasementHeight" => 8, "FinishedBasementFloorArea" => 300 * 4, "UnfinishedAtticHeight" => 7.12, "UnfinishedAtticFloorArea" => 300 * 4, "BuildingHeight" => 8 + 8 + 8 + 7.12, "Beds" => 3.0, "Baths" => 2.0, "NumOccupants" => 13.56, "EavesDepth" => 2, "NumAdiabaticSurfaces" => 0 } - _test_measure(nil, args_hash, expected_num_del_objects, expected_num_new_objects, expected_values, __method__) - end - - def test_two_story_fourplex_rear_units_gable - num_finished_spaces = 12 - args_hash = {} - args_hash["num_floors"] = 2 - args_hash["num_units"] = 4 - args_hash["foundation_type"] = "finished basement" - args_hash["has_rear_units"] = "true" - expected_num_del_objects = {} - expected_num_new_objects = { "BuildingUnit" => 4, "Surface" => 80, "ThermalZone" => 2 * 4 + 1, "Space" => (2 + 1) * 4 + 1, "SpaceType" => 3, "PeopleDefinition" => num_finished_spaces, "People" => num_finished_spaces, "ScheduleRuleset" => 1, "ShadingSurfaceGroup" => 2, "ShadingSurface" => 8, "ExternalFile" => 1, "ScheduleFile" => 1 } - expected_values = { "FinishedFloorArea" => 900 * 4, "FinishedBasementHeight" => 8, "FinishedBasementFloorArea" => 300 * 4, "UnfinishedAtticHeight" => 7.12, "UnfinishedAtticFloorArea" => 300 * 4, "BuildingHeight" => 8 + 8 + 8 + 7.12, "Beds" => 3.0, "Baths" => 2.0, "NumOccupants" => 13.56, "EavesDepth" => 2, "NumAdiabaticSurfaces" => 0 } - _test_measure(nil, args_hash, expected_num_del_objects, expected_num_new_objects, expected_values, __method__) - end - - def test_two_story_fourplex_rear_units_hip - num_finished_spaces = 12 - args_hash = {} - args_hash["num_floors"] = 2 - args_hash["num_units"] = 4 - args_hash["has_rear_units"] = "true" - args_hash["foundation_type"] = "finished basement" - args_hash["roof_type"] = Constants.RoofTypeHip - expected_num_del_objects = {} - expected_num_new_objects = { "BuildingUnit" => 4, "Surface" => 80, "ThermalZone" => 2 * 4 + 1, "Space" => (2 + 1) * 4 + 1, "SpaceType" => 3, "PeopleDefinition" => num_finished_spaces, "People" => num_finished_spaces, "ScheduleRuleset" => 1, "ShadingSurfaceGroup" => 2, "ShadingSurface" => 6, "ExternalFile" => 1, "ScheduleFile" => 1 } - expected_values = { "FinishedFloorArea" => 900 * 4, "FinishedBasementHeight" => 8, "FinishedBasementFloorArea" => 300 * 4, "UnfinishedAtticHeight" => 7.12, "UnfinishedAtticFloorArea" => 300 * 4, "BuildingHeight" => 8 + 8 + 8 + 7.12, "Beds" => 3.0, "Baths" => 2.0, "NumOccupants" => 13.56, "EavesDepth" => 2, "NumAdiabaticSurfaces" => 0 } - _test_measure(nil, args_hash, expected_num_del_objects, expected_num_new_objects, expected_values, __method__) - end - - def test_ufbasement - num_finished_spaces = 4 - args_hash = {} - args_hash["num_units"] = 4 - args_hash["foundation_type"] = "unfinished basement" - expected_num_del_objects = {} - expected_num_new_objects = { "BuildingUnit" => 4, "Surface" => 50, "ThermalZone" => 4 + 1 + 1, "Space" => 4 + 1 + 1, "SpaceType" => 3, "PeopleDefinition" => num_finished_spaces, "People" => num_finished_spaces, "ScheduleRuleset" => 1, "ShadingSurfaceGroup" => 2, "ShadingSurface" => 8, "ExternalFile" => 1, "ScheduleFile" => 1 } - expected_values = { "FinishedFloorArea" => 900 * 4, "UnfinishedBasementHeight" => 8, "UnfinishedBasementFloorArea" => 900 * 4, "UnfinishedAtticHeight" => 11.61, "UnfinishedAtticFloorArea" => 900 * 4, "BuildingHeight" => 8 + 8 + 11.61, "Beds" => 3.0, "Baths" => 2.0, "NumOccupants" => 13.56, "EavesDepth" => 2, "NumAdiabaticSurfaces" => 0 } - _test_measure(nil, args_hash, expected_num_del_objects, expected_num_new_objects, expected_values, __method__) - end - - def test_crawl - num_finished_spaces = 4 - args_hash = {} - args_hash["num_units"] = 4 - args_hash["foundation_type"] = "crawlspace" - expected_num_del_objects = {} - expected_num_new_objects = { "BuildingUnit" => 4, "Surface" => 50, "ThermalZone" => 4 + 1 + 1, "Space" => 4 + 1 + 1, "SpaceType" => 3, "PeopleDefinition" => num_finished_spaces, "People" => num_finished_spaces, "ScheduleRuleset" => 1, "ShadingSurfaceGroup" => 2, "ShadingSurface" => 8, "ExternalFile" => 1, "ScheduleFile" => 1 } - expected_values = { "FinishedFloorArea" => 900 * 4, "CrawlspaceHeight" => 3, "CrawlspaceFloorArea" => 900 * 4, "UnfinishedAtticHeight" => 11.61, "UnfinishedAtticFloorArea" => 900 * 4, "BuildingHeight" => 3 + 8 + 11.61, "Beds" => 3.0, "Baths" => 2.0, "NumOccupants" => 13.56, "EavesDepth" => 2, "NumAdiabaticSurfaces" => 0 } - _test_measure(nil, args_hash, expected_num_del_objects, expected_num_new_objects, expected_values, __method__) - end - - def test_one_unit_per_floor_with_rear_units - args_hash = {} - args_hash["num_units"] = 1 - args_hash["has_rear_units"] = "true" - result = _test_error(nil, args_hash) - assert_includes(result.errors.map { |x| x.logMessage }, "Specified building as having rear units, but didn't specify enough units.") - end - - def test_fourplex_finished_hip_roof - num_finished_spaces = 8 - args_hash = {} - args_hash["num_units"] = 4 - args_hash["attic_type"] = "finished attic" - args_hash["roof_type"] = Constants.RoofTypeHip - args_hash["roof_pitch"] = "12:12" - expected_num_del_objects = {} - expected_num_new_objects = { "BuildingUnit" => 4, "Surface" => 44, "ThermalZone" => 4, "Space" => 4 + 4, "SpaceType" => 1, "PeopleDefinition" => num_finished_spaces, "People" => num_finished_spaces, "ScheduleRuleset" => 1, "ShadingSurfaceGroup" => 2, "ShadingSurface" => 12, "ExternalFile" => 1, "ScheduleFile" => 1 } - expected_values = { "FinishedFloorArea" => 900 * 4, "FinishedAtticHeight" => 9.5, "FinishedAtticFloorArea" => 450 * 4, "BuildingHeight" => 8 + 9.5, "Beds" => 3.0, "Baths" => 2.0, "NumOccupants" => 13.56, "EavesDepth" => 2, "NumAdiabaticSurfaces" => 0 } - _test_measure(nil, args_hash, expected_num_del_objects, expected_num_new_objects, expected_values, __method__) - end - - def test_fourplex_finished_hip_roof_with_rear_units - num_finished_spaces = 8 - args_hash = {} - args_hash["num_units"] = 4 - args_hash["has_rear_units"] = "true" - args_hash["attic_type"] = "finished attic" - args_hash["roof_type"] = Constants.RoofTypeHip - args_hash["roof_pitch"] = "12:12" - expected_num_del_objects = {} - expected_num_new_objects = { "BuildingUnit" => 4, "Surface" => 44, "ThermalZone" => 4, "Space" => 4 + 4, "SpaceType" => 1, "PeopleDefinition" => num_finished_spaces, "People" => num_finished_spaces, "ScheduleRuleset" => 1, "ShadingSurfaceGroup" => 2, "ShadingSurface" => 10, "ExternalFile" => 1, "ScheduleFile" => 1 } - expected_values = { "FinishedFloorArea" => 900 * 4, "FinishedAtticHeight" => 9.5, "FinishedAtticFloorArea" => 450 * 4, "BuildingHeight" => 8 + 9.5, "Beds" => 3.0, "Baths" => 2.0, "NumOccupants" => 13.56, "EavesDepth" => 2, "NumAdiabaticSurfaces" => 0 } - _test_measure(nil, args_hash, expected_num_del_objects, expected_num_new_objects, expected_values, __method__) - end - - def test_fourplex_gable_roof_aspect_ratio_half - num_finished_spaces = 4 - args_hash = {} - args_hash["num_units"] = 4 - args_hash["unit_aspect_ratio"] = 0.5 - args_hash["has_rear_units"] = "true" - expected_num_del_objects = {} - expected_num_new_objects = { "BuildingUnit" => 4, "Surface" => 32, "ThermalZone" => 4 + 1, "Space" => 4 + 1, "SpaceType" => 2, "PeopleDefinition" => num_finished_spaces, "People" => num_finished_spaces, "ScheduleRuleset" => 1, "ShadingSurfaceGroup" => 2, "ShadingSurface" => 8, "ExternalFile" => 1, "ScheduleFile" => 1 } - expected_values = { "FinishedFloorArea" => 900 * 4, "UnfinishedAtticHeight" => 11.61, "UnfinishedAtticFloorArea" => 900 * 4, "BuildingHeight" => 8 + 11.61, "Beds" => 3.0, "Baths" => 2.0, "NumOccupants" => 13.56, "EavesDepth" => 2, "NumAdiabaticSurfaces" => 0 } - _test_measure(nil, args_hash, expected_num_del_objects, expected_num_new_objects, expected_values, __method__) - end - - def test_fourplex_hip_roof - num_finished_spaces = 4 - args_hash = {} - args_hash["num_units"] = 4 - args_hash["has_rear_units"] = "true" - args_hash["roof_type"] = Constants.RoofTypeHip - expected_num_del_objects = {} - expected_num_new_objects = { "BuildingUnit" => 4, "Surface" => 32, "ThermalZone" => 4 + 1, "Space" => 4 + 1, "SpaceType" => 2, "PeopleDefinition" => num_finished_spaces, "People" => num_finished_spaces, "ScheduleRuleset" => 1, "ShadingSurfaceGroup" => 2, "ShadingSurface" => 6, "ExternalFile" => 1, "ScheduleFile" => 1 } - expected_values = { "FinishedFloorArea" => 900 * 4, "UnfinishedAtticHeight" => 11.61, "UnfinishedAtticFloorArea" => 900 * 4, "BuildingHeight" => 8 + 11.61, "Beds" => 3.0, "Baths" => 2.0, "NumOccupants" => 13.56, "EavesDepth" => 2, "NumAdiabaticSurfaces" => 0 } - _test_measure(nil, args_hash, expected_num_del_objects, expected_num_new_objects, expected_values, __method__) - end - - def test_fourplex_hip_roof_aspect_ratio_half_offset - num_finished_spaces = 4 - args_hash = {} - args_hash["num_units"] = 4 - args_hash["unit_aspect_ratio"] = 0.5 - args_hash["has_rear_units"] = "true" - args_hash["roof_type"] = Constants.RoofTypeHip - args_hash["offset"] = 6 - expected_num_del_objects = {} - expected_num_new_objects = { "BuildingUnit" => 4, "Surface" => 48, "ThermalZone" => 4 + 1, "Space" => 4 + 1, "SpaceType" => 2, "PeopleDefinition" => num_finished_spaces, "People" => num_finished_spaces, "ScheduleRuleset" => 1, "ShadingSurfaceGroup" => 2, "ShadingSurface" => 10, "ExternalFile" => 1, "ScheduleFile" => 1 } - expected_values = { "FinishedFloorArea" => 900 * 4, "UnfinishedAtticHeight" => 6.30, "UnfinishedAtticFloorArea" => 900 * 4, "BuildingHeight" => 8 + 6.30, "Beds" => 3.0, "Baths" => 2.0, "NumOccupants" => 13.56, "EavesDepth" => 2, "NumAdiabaticSurfaces" => 0 } - _test_measure(nil, args_hash, expected_num_del_objects, expected_num_new_objects, expected_values, __method__) - end - - def test_argument_error_beds_not_equal_to_baths - args_hash = {} - args_hash["num_bedrooms"] = "3.0, 3.0, 3.0" - args_hash["num_bathrooms"] = "2.0, 2.0" - result = _test_error(nil, args_hash) - assert_includes(result.errors.map { |x| x.logMessage }, "Number of bedroom elements specified inconsistent with number of bathroom elements specified.") - end - - def test_argument_error_beds_not_equal_to_units - args_hash = {} - args_hash["num_bedrooms"] = "3.0, 3.0, 3.0" - result = _test_error(nil, args_hash) - assert_includes(result.errors.map { |x| x.logMessage }, "Number of bedroom elements specified inconsistent with number of multifamily units defined in the model.") - end - - def test_argument_error_baths_not_equal_to_units - args_hash = {} - args_hash["num_bathrooms"] = "2.0, 2.0, 2.0" - result = _test_error(nil, args_hash) - assert_includes(result.errors.map { |x| x.logMessage }, "Number of bathroom elements specified inconsistent with number of multifamily units defined in the model.") - end - - def test_argument_error_beds_not_numerical - args_hash = {} - args_hash["num_bedrooms"] = "3.0, 3.0, typo" - result = _test_error(nil, args_hash) - assert_includes(result.errors.map { |x| x.logMessage }, "Number of bedrooms must be a numerical value.") - end - - def test_argument_error_baths_not_numerical - args_hash = {} - args_hash["num_bathrooms"] = "2.0, 2.0, typo" - result = _test_error(nil, args_hash) - assert_includes(result.errors.map { |x| x.logMessage }, "Number of bathrooms must be a numerical value.") - end - - def test_argument_error_beds_not_integer - args_hash = {} - args_hash["num_bedrooms"] = "3.0, 3.0, 3.5" - result = _test_error(nil, args_hash) - assert_includes(result.errors.map { |x| x.logMessage }, "Number of bedrooms must be a non-negative integer.") - end - - def test_argument_error_baths_not_positive_multiple_of_0pt25 - args_hash = {} - args_hash["num_bathrooms"] = "2.0, 2.0, 2.8" - result = _test_error(nil, args_hash) - assert_includes(result.errors.map { |x| x.logMessage }, "Number of bathrooms must be a positive multiple of 0.25.") - end - - def test_error_invalid_eaves_depth - args_hash = {} - args_hash["eaves_depth"] = -1 - result = _test_error(nil, args_hash) - assert(result.errors.size == 1) - assert_equal("Fail", result.value.valueName) - assert_includes(result.errors.map { |x| x.logMessage }, "Eaves depth must be greater than or equal to 0.") - end - - def test_error_invalid_neighbor_offset - args_hash = {} - args_hash["neighbor_left_offset"] = -10 - result = _test_error(nil, args_hash) - assert(result.errors.size == 1) - assert_equal("Fail", result.value.valueName) - assert_includes(result.errors.map { |x| x.logMessage }, "Neighbor offsets must be greater than or equal to 0.") - end - - def test_error_invalid_orientation - args_hash = {} - args_hash["orientation"] = -180 - result = _test_error(nil, args_hash) - assert_includes(result.errors.map { |x| x.logMessage }, "Invalid orientation entered.") - end - - def test_minimal_collapsed_front_only - num_finished_spaces = 3 - args_hash = {} - args_hash["num_units"] = 10 - args_hash["minimal_collapsed"] = "true" - expected_num_del_objects = {} - expected_num_new_objects = { "BuildingUnit" => num_finished_spaces, "Surface" => 25, "ThermalZone" => num_finished_spaces + 1, "Space" => num_finished_spaces + 1, "SpaceType" => 2, "PeopleDefinition" => num_finished_spaces, "People" => num_finished_spaces, "ScheduleRuleset" => 1, "ShadingSurfaceGroup" => 2, "ShadingSurface" => 8, "ExternalFile" => 1, "ScheduleFile" => 1 } - expected_values = { "FinishedFloorArea" => 900 * num_finished_spaces, "UnfinishedAtticHeight" => 11.61, "UnfinishedAtticFloorArea" => 900 * num_finished_spaces, "BuildingHeight" => 8 + 11.61, "Beds" => 3.0, "Baths" => 2.0, "NumOccupants" => 10.17, "EavesDepth" => 2, "NumAdiabaticSurfaces" => 0 } - _test_measure(nil, args_hash, expected_num_del_objects, expected_num_new_objects, expected_values, __method__) - end - - def test_minimal_collapsed_has_rear_units - num_finished_spaces = 12 - args_hash = {} - args_hash["num_units"] = 16 - args_hash["has_rear_units"] = "true" - args_hash["foundation_type"] = "finished basement" - args_hash["minimal_collapsed"] = "true" - expected_num_del_objects = {} - expected_num_new_objects = { "BuildingUnit" => 6, "Surface" => 82, "ThermalZone" => num_finished_spaces + 1, "Space" => num_finished_spaces + 1, "SpaceType" => 3, "PeopleDefinition" => num_finished_spaces, "People" => num_finished_spaces, "ScheduleRuleset" => 1, "ShadingSurfaceGroup" => 2, "ShadingSurface" => 8, "ExternalFile" => 1, "ScheduleFile" => 1 } - expected_values = { "FinishedFloorArea" => 900 * 6, "FinishedBasementHeight" => 8, "FinishedBasementFloorArea" => 450 * 6, "UnfinishedAtticHeight" => 12.25, "UnfinishedAtticFloorArea" => 450 * 6, "BuildingHeight" => 8 + 8 + 12.25, "Beds" => 3.0, "Baths" => 2.0, "NumOccupants" => 20.34, "EavesDepth" => 2, "NumAdiabaticSurfaces" => 0 } - _test_measure(nil, args_hash, expected_num_del_objects, expected_num_new_objects, expected_values, __method__) - end - - private - - def _test_error(osm_file_or_model, args_hash) - # create an instance of the measure - measure = CreateResidentialSingleFamilyAttachedGeometry.new - - # create an instance of a runner - runner = OpenStudio::Measure::OSRunner.new(OpenStudio::WorkflowJSON.new) - - model = get_model(File.dirname(__FILE__), osm_file_or_model) - - # get arguments - arguments = measure.arguments(model) - argument_map = OpenStudio::Measure.convertOSArgumentVectorToMap(arguments) - - # populate argument with specified hash value if specified - arguments.each do |arg| - temp_arg_var = arg.clone - if args_hash.has_key?(arg.name) - assert(temp_arg_var.setValue(args_hash[arg.name])) - end - argument_map[arg.name] = temp_arg_var - end - - # run the measure - measure.run(model, runner, argument_map) - result = runner.result - - # show the output - show_output(result) unless result.value.valueName == 'Fail' - - # assert that it didn't run - assert_equal("Fail", result.value.valueName) - assert(result.errors.size == 1) - - return result - end - - def _test_measure(osm_file_or_model, args_hash, expected_num_del_objects, expected_num_new_objects, expected_values, test_name) - # create an instance of the measure - measure = CreateResidentialSingleFamilyAttachedGeometry.new - - # check for standard methods - assert(!measure.name.empty?) - assert(!measure.description.empty?) - assert(!measure.modeler_description.empty?) - - # create an instance of a runner - runner = OpenStudio::Measure::OSRunner.new(OpenStudio::WorkflowJSON.new) - - model = get_model(File.dirname(__FILE__), osm_file_or_model) - - # get the initial objects in the model - initial_objects = get_objects(model) - - # get arguments - arguments = measure.arguments(model) - argument_map = OpenStudio::Measure.convertOSArgumentVectorToMap(arguments) - - # populate argument with specified hash value if specified - arguments.each do |arg| - temp_arg_var = arg.clone - if args_hash.has_key?(arg.name) - assert(temp_arg_var.setValue(args_hash[arg.name])) - end - argument_map[arg.name] = temp_arg_var - end - - # run the measure - measure.run(model, runner, argument_map) - result = runner.result - - # save the model to test output directory - # output_file_path = OpenStudio::Path.new(File.dirname(__FILE__) + "/output/#{test_name}.osm") - # model.save(output_file_path, true) - - # show the output - show_output(result) unless result.value.valueName == 'Success' - - # assert that it ran correctly - assert_equal("Success", result.value.valueName) - - # get the final objects in the model - final_objects = get_objects(model) - - # get new and deleted objects - obj_type_exclusions = ["PortList", "Node", "ZoneEquipmentList", "SizingZone", "ZoneHVACEquipmentList", "Building", "ScheduleRule", "ScheduleDay", "ScheduleTypeLimits", "YearDescription"] - all_new_objects = get_object_additions(initial_objects, final_objects, obj_type_exclusions) - all_del_objects = get_object_additions(final_objects, initial_objects, obj_type_exclusions) - - # check we have the expected number of new/deleted objects - check_num_objects(all_new_objects, expected_num_new_objects, "added") - check_num_objects(all_del_objects, expected_num_del_objects, "deleted") - - actual_values = { "FinishedFloorArea" => 0, "FinishedBasementFloorArea" => 0, "UnfinishedBasementFloorArea" => 0, "CrawlspaceFloorArea" => 0, "UnfinishedAtticFloorArea" => 0, "FinishedAtticFloorArea" => 0, "FinishedBasementHeight" => 0, "UnfinishedBasementHeight" => 0, "CrawlspaceHeight" => 0, "UnfinishedAtticHeight" => 0, "FinishedAtticHeight" => 0, "BuildingHeight" => 0, "NumOccupants" => 0, "NumAdiabaticSurfaces" => 0 } - new_spaces = [] - all_new_objects.each do |obj_type, new_objects| - new_objects.each do |new_object| - next if not new_object.respond_to?("to_#{obj_type}") - - new_object = new_object.public_send("to_#{obj_type}").get - if obj_type == "Space" - if new_object.name.to_s.start_with?("finished basement") - actual_values["FinishedBasementHeight"] = Geometry.get_height_of_spaces([new_object]) - actual_values["FinishedBasementFloorArea"] += UnitConversions.convert(new_object.floorArea, "m^2", "ft^2") - elsif new_object.name.to_s.start_with?("unfinished basement") - actual_values["UnfinishedBasementHeight"] = Geometry.get_height_of_spaces([new_object]) - actual_values["UnfinishedBasementFloorArea"] += UnitConversions.convert(new_object.floorArea, "m^2", "ft^2") - elsif new_object.name.to_s.start_with?("crawlspace") - actual_values["CrawlspaceHeight"] = Geometry.get_height_of_spaces([new_object]) - actual_values["CrawlspaceFloorArea"] += UnitConversions.convert(new_object.floorArea, "m^2", "ft^2") - elsif new_object.name.to_s.start_with?("unfinished attic") - actual_values["UnfinishedAtticHeight"] = Geometry.get_height_of_spaces([new_object]) - actual_values["UnfinishedAtticFloorArea"] += UnitConversions.convert(new_object.floorArea, "m^2", "ft^2") - elsif new_object.name.to_s.start_with?("finished attic") - actual_values["FinishedAtticHeight"] = Geometry.get_height_of_spaces([new_object]) - actual_values["FinishedAtticFloorArea"] += UnitConversions.convert(new_object.floorArea, "m^2", "ft^2") - end - if Geometry.space_is_finished(new_object) - actual_values["FinishedFloorArea"] += UnitConversions.convert(new_object.floorArea, "m^2", "ft^2") - end - new_spaces << new_object - elsif obj_type == "People" - actual_values["NumOccupants"] += new_object.peopleDefinition.numberofPeople.get - elsif obj_type == "ShadingSurface" - next unless new_object.name.to_s.include? Constants.ObjectNameEaves - - l, w, h = Geometry.get_surface_dimensions(new_object) - actual_values["EavesDepth"] = [UnitConversions.convert(l, "m", "ft"), UnitConversions.convert(w, "m", "ft")].min - assert_in_epsilon(expected_values["EavesDepth"], actual_values["EavesDepth"], 0.01) - elsif obj_type == "Surface" - if ["outdoors", "foundation"].include? new_object.outsideBoundaryCondition.downcase - if new_object.construction.is_initialized - new_object.construction.get.to_LayeredConstruction.get.layers.each do |layer| - next unless layer.name.to_s.include? Constants.SurfaceTypeAdiabatic - - actual_values["NumAdiabaticSurfaces"] += 1 - end - end - elsif new_object.outsideBoundaryCondition.downcase == "adiabatic" - actual_values["NumAdiabaticSurfaces"] += 1 - end - end - end - end - if new_spaces.any? { |new_space| new_space.name.to_s.start_with?("finished basement") } - assert_in_epsilon(expected_values["FinishedBasementHeight"], actual_values["FinishedBasementHeight"], 0.01) - assert_in_epsilon(expected_values["FinishedBasementFloorArea"], actual_values["FinishedBasementFloorArea"], 0.01) - end - if new_spaces.any? { |new_space| new_space.name.to_s.start_with?("unfinished basement") } - assert_in_epsilon(expected_values["UnfinishedBasementHeight"], actual_values["UnfinishedBasementHeight"], 0.01) - assert_in_epsilon(expected_values["UnfinishedBasementFloorArea"], actual_values["UnfinishedBasementFloorArea"], 0.01) - end - if new_spaces.any? { |new_space| new_space.name.to_s.start_with?("crawlspace") } - assert_in_epsilon(expected_values["CrawlspaceHeight"], actual_values["CrawlspaceHeight"], 0.01) - assert_in_epsilon(expected_values["CrawlspaceFloorArea"], actual_values["CrawlspaceFloorArea"], 0.01) - end - if new_spaces.any? { |new_space| new_space.name.to_s.start_with?("unfinished attic") } - assert_in_epsilon(expected_values["UnfinishedAtticHeight"], actual_values["UnfinishedAtticHeight"], 0.01) - assert_in_epsilon(expected_values["UnfinishedAtticFloorArea"], actual_values["UnfinishedAtticFloorArea"], 0.01) - end - if new_spaces.any? { |new_space| new_space.name.to_s.start_with?("finished attic") } - assert_in_epsilon(expected_values["FinishedAtticHeight"], actual_values["FinishedAtticHeight"], 0.01) - assert_in_epsilon(expected_values["FinishedAtticFloorArea"], actual_values["FinishedAtticFloorArea"], 0.01) - end - assert_in_epsilon(expected_values["FinishedFloorArea"], actual_values["FinishedFloorArea"], 0.01) - assert_in_epsilon(expected_values["BuildingHeight"], Geometry.get_height_of_spaces(new_spaces), 0.01) - assert_in_epsilon(expected_values["NumOccupants"], actual_values["NumOccupants"], 0.01) - - # Ensure no surfaces adjacent to "ground" (should be Kiva "foundation") - model.getSurfaces.each do |surface| - refute_equal(surface.outsideBoundaryCondition.downcase, "ground") - end - - Geometry.get_building_units(model, runner).each do |unit| - nbeds, nbaths = Geometry.get_unit_beds_baths(model, unit, runner) - assert_equal(expected_values["Beds"], nbeds) - assert_equal(expected_values["Baths"], nbaths) - end - - assert_equal(expected_values["NumAdiabaticSurfaces"], actual_values["NumAdiabaticSurfaces"]) - - return model - end -end diff --git a/example_files/measures/ResidentialGeometryCreateSingleFamilyDetached/measure.rb b/example_files/measures/ResidentialGeometryCreateSingleFamilyDetached/measure.rb deleted file mode 100644 index 2cd0e827..00000000 --- a/example_files/measures/ResidentialGeometryCreateSingleFamilyDetached/measure.rb +++ /dev/null @@ -1,979 +0,0 @@ -# see the URL below for information on how to write OpenStudio measures -# http://nrel.github.io/OpenStudio-user-documentation/measures/measure_writing_guide/ - -resources_path = File.absolute_path(File.join(File.dirname(__FILE__), "../BuildResidentialModel/resources")) -require File.join(resources_path, "constants") -require File.join(resources_path, "geometry") -require File.join(resources_path, "unit_conversions") - -# start the measure -class CreateResidentialSingleFamilyDetachedGeometry < OpenStudio::Measure::ModelMeasure - # human readable name - def name - return "Create Residential Single-Family Detached Geometry" - end - - # human readable description - def description - return "Sets the basic geometry for the single-family detached building. Building is limited to one foundation type. Garage is tucked within the building, on the front left or front right corners of the building. Sets the number of bedrooms, bathrooms, and occupants in the building. Sets the neighbors (front, back, left, and/or right) of the building for shading purposes. Neighboring buildings will have the same geometry as the model building.#{WholeBuildingConstants.WorkflowDescription}" - end - - # human readable description of modeling approach - def modeler_description - return "Gathers living space area, wall height per floor, number of floors, aspect ratio, garage width and depth, garage position, foundation type and wall height, attic and roof type, and roof pitch. Constructs building by calculating footprint and performing a series of affine transformations into living, foundation, and attic spaces. Also, sets (or replaces) BuildingUnit objects that store the number of bedrooms and bathrooms associated with the model. Sets (or replaces) the People object for each finished space in the model. Creates shading surfaces by shifting the building's exterior surfaces in the specified directions (front, back, left, and/or right)." - end - - # define the arguments that the user will input - def arguments(model) - args = OpenStudio::Measure::OSArgumentVector.new - - # make an argument for total living space floor area - total_ffa = OpenStudio::Measure::OSArgument::makeDoubleArgument("total_ffa", true) - total_ffa.setDisplayName("Total Finished Floor Area") - total_ffa.setUnits("ft^2") - total_ffa.setDescription("The total floor area of the finished space (including any finished basement floor area).") - total_ffa.setDefaultValue(2000.0) - args << total_ffa - - # make an argument for living space height - wall_height = OpenStudio::Measure::OSArgument::makeDoubleArgument("wall_height", true) - wall_height.setDisplayName("Wall Height (Per Floor)") - wall_height.setUnits("ft") - wall_height.setDescription("The height of the living space (and garage) walls.") - wall_height.setDefaultValue(8.0) - args << wall_height - - # make an argument for number of floors - num_floors = OpenStudio::Measure::OSArgument::makeIntegerArgument("num_floors", true) - num_floors.setDisplayName("Number of Floors") - num_floors.setUnits("#") - num_floors.setDescription("The number of floors above grade.") - num_floors.setDefaultValue(2) - args << num_floors - - # make an argument for aspect ratio - aspect_ratio = OpenStudio::Measure::OSArgument::makeDoubleArgument("aspect_ratio", true) - aspect_ratio.setDisplayName("Aspect Ratio") - aspect_ratio.setUnits("FB/LR") - aspect_ratio.setDescription("The ratio of the front/back wall length to the left/right wall length, excluding any protruding garage wall area.") - aspect_ratio.setDefaultValue(2.0) - args << aspect_ratio - - # make a double argument for garage area - garage_width = OpenStudio::Measure::OSArgument::makeDoubleArgument("garage_width", true) - garage_width.setDisplayName("Garage Width") - garage_width.setUnits("ft") - garage_width.setDescription("The width of the garage.") - garage_width.setDefaultValue(0.0) - args << garage_width - - # make a double argument for garage height - garage_depth = OpenStudio::Measure::OSArgument::makeDoubleArgument("garage_depth", true) - garage_depth.setDisplayName("Garage Depth") - garage_depth.setUnits("ft") - garage_depth.setDescription("The depth of the garage.") - garage_depth.setDefaultValue(20.0) - args << garage_depth - - # make a double argument for garage protrusion - garage_protrusion = OpenStudio::Measure::OSArgument::makeDoubleArgument("garage_protrusion", true) - garage_protrusion.setDisplayName("Garage Protrusion") - garage_protrusion.setUnits("frac") - garage_protrusion.setDescription("The fraction of the garage that is protruding from the living space.") - garage_protrusion.setDefaultValue(0.0) - args << garage_protrusion - - # make a choice argument for model objects - garage_position_display_names = OpenStudio::StringVector.new - garage_position_display_names << "Right" - garage_position_display_names << "Left" - - # make a choice argument for garage position - garage_position = OpenStudio::Measure::OSArgument::makeChoiceArgument("garage_position", garage_position_display_names, true) - garage_position.setDisplayName("Garage Position") - garage_position.setDescription("The position of the garage.") - garage_position.setDefaultValue("Right") - args << garage_position - - # make a choice argument for model objects - foundation_display_names = OpenStudio::StringVector.new - foundation_display_names << "slab" - foundation_display_names << "crawlspace" - foundation_display_names << "unfinished basement" - foundation_display_names << "finished basement" - foundation_display_names << "pier and beam" - - # make a choice argument for foundation type - foundation_type = OpenStudio::Measure::OSArgument::makeChoiceArgument("foundation_type", foundation_display_names, true) - foundation_type.setDisplayName("Foundation Type") - foundation_type.setDescription("The foundation type of the building.") - foundation_type.setDefaultValue("slab") - args << foundation_type - - # make an argument for crawlspace height - foundation_height = OpenStudio::Measure::OSArgument::makeDoubleArgument("foundation_height", true) - foundation_height.setDisplayName("Foundation Height") - foundation_height.setUnits("ft") - foundation_height.setDescription("The height of the foundation (e.g., 3ft for crawlspace, 8ft for basement).") - foundation_height.setDefaultValue(3.0) - args << foundation_height - - # make a choice argument for model objects - attic_type_display_names = OpenStudio::StringVector.new - attic_type_display_names << "unfinished attic" - attic_type_display_names << "finished attic" - - # make a choice argument for attic type - attic_type = OpenStudio::Measure::OSArgument::makeChoiceArgument("attic_type", attic_type_display_names, true) - attic_type.setDisplayName("Attic Type") - attic_type.setDescription("The attic type of the building. Ignored if the building has a flat roof.") - attic_type.setDefaultValue("unfinished attic") - args << attic_type - - # make a choice argument for model objects - roof_type_display_names = OpenStudio::StringVector.new - roof_type_display_names << WholeBuildingConstants.RoofTypeGable - roof_type_display_names << WholeBuildingConstants.RoofTypeHip - roof_type_display_names << WholeBuildingConstants.RoofTypeFlat - - # make a choice argument for roof type - roof_type = OpenStudio::Measure::OSArgument::makeChoiceArgument("roof_type", roof_type_display_names, true) - roof_type.setDisplayName("Roof Type") - roof_type.setDescription("The roof type of the building.") - roof_type.setDefaultValue(WholeBuildingConstants.RoofTypeGable) - args << roof_type - - # make a choice argument for model objects - roof_pitch_display_names = OpenStudio::StringVector.new - roof_pitch_display_names << "1:12" - roof_pitch_display_names << "2:12" - roof_pitch_display_names << "3:12" - roof_pitch_display_names << "4:12" - roof_pitch_display_names << "5:12" - roof_pitch_display_names << "6:12" - roof_pitch_display_names << "7:12" - roof_pitch_display_names << "8:12" - roof_pitch_display_names << "9:12" - roof_pitch_display_names << "10:12" - roof_pitch_display_names << "11:12" - roof_pitch_display_names << "12:12" - - # make a choice argument for roof pitch - roof_pitch = OpenStudio::Measure::OSArgument::makeChoiceArgument("roof_pitch", roof_pitch_display_names, true) - roof_pitch.setDisplayName("Roof Pitch") - roof_pitch.setDescription("The roof pitch of the attic. Ignored if the building has a flat roof.") - roof_pitch.setDefaultValue("6:12") - args << roof_pitch - - # make a choice argument for model objects - roof_structure_display_names = OpenStudio::StringVector.new - roof_structure_display_names << WholeBuildingConstants.RoofStructureTrussCantilever - roof_structure_display_names << WholeBuildingConstants.RoofStructureRafter - - # make a choice argument for roof type - roof_structure = OpenStudio::Measure::OSArgument::makeChoiceArgument("roof_structure", roof_structure_display_names, true) - roof_structure.setDisplayName("Roof Structure") - roof_structure.setDescription("The roof structure of the building.") - roof_structure.setDefaultValue(WholeBuildingConstants.RoofStructureTrussCantilever) - args << roof_structure - - # make a choice argument for eaves depth - eaves_depth = OpenStudio::Measure::OSArgument::makeDoubleArgument("eaves_depth", true) - eaves_depth.setDisplayName("Eaves Depth") - eaves_depth.setUnits("ft") - eaves_depth.setDescription("The eaves depth of the roof.") - eaves_depth.setDefaultValue(2.0) - args << eaves_depth - - # make a string argument for number of bedrooms - num_br = OpenStudio::Measure::OSArgument::makeStringArgument("num_bedrooms", true) - num_br.setDisplayName("Number of Bedrooms") - num_br.setDescription("Specify the number of bedrooms. Used to determine the energy usage of appliances and plug loads, hot water usage, mechanical ventilation rate, etc.") - num_br.setDefaultValue("3") - args << num_br - - # make a string argument for number of bathrooms - num_ba = OpenStudio::Measure::OSArgument::makeStringArgument("num_bathrooms", true) - num_ba.setDisplayName("Number of Bathrooms") - num_ba.setDescription("Specify the number of bathrooms. Used to determine the hot water usage, etc.") - num_ba.setDefaultValue("2") - args << num_ba - - # make a double argument for left neighbor offset - neighbor_left_offset = OpenStudio::Measure::OSArgument::makeDoubleArgument("neighbor_left_offset", true) - neighbor_left_offset.setDisplayName("Neighbor Left Offset") - neighbor_left_offset.setUnits("ft") - neighbor_left_offset.setDescription("The minimum distance between the simulated house and the neighboring house to the left (not including eaves). A value of zero indicates no neighbors.") - neighbor_left_offset.setDefaultValue(10.0) - args << neighbor_left_offset - - # make a double argument for right neighbor offset - neighbor_right_offset = OpenStudio::Measure::OSArgument::makeDoubleArgument("neighbor_right_offset", true) - neighbor_right_offset.setDisplayName("Neighbor Right Offset") - neighbor_right_offset.setUnits("ft") - neighbor_right_offset.setDescription("The minimum distance between the simulated house and the neighboring house to the right (not including eaves). A value of zero indicates no neighbors.") - neighbor_right_offset.setDefaultValue(10.0) - args << neighbor_right_offset - - # make a double argument for back neighbor offset - neighbor_back_offset = OpenStudio::Measure::OSArgument::makeDoubleArgument("neighbor_back_offset", true) - neighbor_back_offset.setDisplayName("Neighbor Back Offset") - neighbor_back_offset.setUnits("ft") - neighbor_back_offset.setDescription("The minimum distance between the simulated house and the neighboring house to the back (not including eaves). A value of zero indicates no neighbors.") - neighbor_back_offset.setDefaultValue(0.0) - args << neighbor_back_offset - - # make a double argument for front neighbor offset - neighbor_front_offset = OpenStudio::Measure::OSArgument::makeDoubleArgument("neighbor_front_offset", true) - neighbor_front_offset.setDisplayName("Neighbor Front Offset") - neighbor_front_offset.setUnits("ft") - neighbor_front_offset.setDescription("The minimum distance between the simulated house and the neighboring house to the front (not including eaves). A value of zero indicates no neighbors.") - neighbor_front_offset.setDefaultValue(0.0) - args << neighbor_front_offset - - # make a double argument for orientation - orientation = OpenStudio::Measure::OSArgument::makeDoubleArgument("orientation", true) - orientation.setDisplayName("Azimuth") - orientation.setUnits("degrees") - orientation.setDescription("The house's azimuth is measured clockwise from due south when viewed from above (e.g., South=0, West=90, North=180, East=270).") - orientation.setDefaultValue(180.0) - args << orientation - - return args - end - - # define what happens when the measure is run - def run(model, runner, user_arguments) - super(model, runner, user_arguments) - - # use the built-in error checking - if !runner.validateUserArguments(arguments(model), user_arguments) - return false - end - - total_ffa = runner.getDoubleArgumentValue("total_ffa", user_arguments) - wall_height = runner.getDoubleArgumentValue("wall_height", user_arguments) - num_floors = runner.getIntegerArgumentValue("num_floors", user_arguments) - aspect_ratio = runner.getDoubleArgumentValue("aspect_ratio", user_arguments) - garage_width = runner.getDoubleArgumentValue("garage_width", user_arguments) - garage_depth = runner.getDoubleArgumentValue("garage_depth", user_arguments) - garage_protrusion = runner.getDoubleArgumentValue("garage_protrusion", user_arguments) - garage_position = runner.getStringArgumentValue("garage_position", user_arguments) - foundation_type = runner.getStringArgumentValue("foundation_type", user_arguments) - foundation_height = runner.getDoubleArgumentValue("foundation_height", user_arguments) - attic_type = runner.getStringArgumentValue("attic_type", user_arguments) - roof_type = runner.getStringArgumentValue("roof_type", user_arguments) - roof_pitch = { "1:12" => 1.0 / 12.0, "2:12" => 2.0 / 12.0, "3:12" => 3.0 / 12.0, "4:12" => 4.0 / 12.0, "5:12" => 5.0 / 12.0, "6:12" => 6.0 / 12.0, "7:12" => 7.0 / 12.0, "8:12" => 8.0 / 12.0, "9:12" => 9.0 / 12.0, "10:12" => 10.0 / 12.0, "11:12" => 11.0 / 12.0, "12:12" => 12.0 / 12.0 }[runner.getStringArgumentValue("roof_pitch", user_arguments)] - roof_structure = runner.getStringArgumentValue("roof_structure", user_arguments) - eaves_depth = WholeBuildingUnitConversions.convert(runner.getDoubleArgumentValue("eaves_depth", user_arguments), "ft", "m") - num_br = runner.getStringArgumentValue("num_bedrooms", user_arguments).split(",").map(&:strip) - num_ba = runner.getStringArgumentValue("num_bathrooms", user_arguments).split(",").map(&:strip) - num_occupants = WholeBuildingConstants.Auto - if model.getBuilding.additionalProperties.getFeatureAsInteger("num_occupants").is_initialized - num_occupants = "#{model.getBuilding.additionalProperties.getFeatureAsInteger("num_occupants").get}" - end - neighbor_left_offset = WholeBuildingUnitConversions.convert(runner.getDoubleArgumentValue("neighbor_left_offset", user_arguments), "ft", "m") - neighbor_right_offset = WholeBuildingUnitConversions.convert(runner.getDoubleArgumentValue("neighbor_right_offset", user_arguments), "ft", "m") - neighbor_back_offset = WholeBuildingUnitConversions.convert(runner.getDoubleArgumentValue("neighbor_back_offset", user_arguments), "ft", "m") - neighbor_front_offset = WholeBuildingUnitConversions.convert(runner.getDoubleArgumentValue("neighbor_front_offset", user_arguments), "ft", "m") - orientation = runner.getDoubleArgumentValue("orientation", user_arguments) - - if foundation_type == "slab" - foundation_height = 0.0 - end - - # error checking - if model.getSpaces.size > 0 - runner.registerError("Starting model is not empty.") - return false - end - if aspect_ratio < 0 - runner.registerError("Invalid aspect ratio entered.") - return false - end - if foundation_type == "pier and beam" and (foundation_height <= 0.0) - runner.registerError("The pier & beam height must be greater than 0 ft.") - return false - end - if num_floors > 6 - runner.registerError("Too many floors.") - return false - end - if garage_protrusion < 0 or garage_protrusion > 1 - runner.registerError("Invalid garage protrusion value entered.") - return false - end - - # Convert to SI - total_ffa = WholeBuildingUnitConversions.convert(total_ffa, "ft^2", "m^2") - wall_height = WholeBuildingUnitConversions.convert(wall_height, "ft", "m") - garage_width = WholeBuildingUnitConversions.convert(garage_width, "ft", "m") - garage_depth = WholeBuildingUnitConversions.convert(garage_depth, "ft", "m") - foundation_height = WholeBuildingUnitConversions.convert(foundation_height, "ft", "m") - - garage_area = garage_width * garage_depth - has_garage = false - if garage_area > 0 - has_garage = true - end - - # error checking - if garage_protrusion > 0 and roof_type == WholeBuildingConstants.RoofTypeHip and has_garage - runner.registerError("Cannot handle protruding garage and hip roof.") - return false - end - if garage_protrusion > 0 and aspect_ratio < 1 and has_garage and roof_type == WholeBuildingConstants.RoofTypeGable - runner.registerError("Cannot handle protruding garage and attic ridge running from front to back.") - return false - end - if foundation_type == "pier and beam" and has_garage - runner.registerError("Cannot handle garages with a pier & beam foundation type.") - return false - end - - # calculate the footprint of the building - garage_area_inside_footprint = 0 - if has_garage - garage_area_inside_footprint = garage_area * (1.0 - garage_protrusion) - end - bonus_area_above_garage = garage_area * garage_protrusion - if foundation_type == "finished basement" and attic_type == "finished attic" - footprint = (total_ffa + 2 * garage_area_inside_footprint - (num_floors) * bonus_area_above_garage) / (num_floors + 2) - elsif foundation_type == "finished basement" - footprint = (total_ffa + 2 * garage_area_inside_footprint - (num_floors - 1) * bonus_area_above_garage) / (num_floors + 1) - elsif attic_type == "finished attic" - footprint = (total_ffa + garage_area_inside_footprint - (num_floors) * bonus_area_above_garage) / (num_floors + 1) - else - footprint = (total_ffa + garage_area_inside_footprint - (num_floors - 1) * bonus_area_above_garage) / num_floors - end - - # calculate the dimensions of the building - width = Math.sqrt(footprint / aspect_ratio) - length = footprint / width - - # error checking - if (garage_width > length and garage_depth > 0) or (((1.0 - garage_protrusion) * garage_depth) > width and garage_width > 0) or (((1.0 - garage_protrusion) * garage_depth) == width and garage_width == length) - runner.registerError("Invalid living space and garage dimensions.") - return false - end - - # starting spaces - runner.registerInitialCondition("The building started with #{model.getSpaces.size} spaces.") - - # create living zone - living_zone = OpenStudio::Model::ThermalZone.new(model) - living_zone.setName("living zone") - - foundation_offset = 0.0 - if foundation_type == "pier and beam" - foundation_offset = foundation_height - end - - space_types_hash = {} - - # loop through the number of floors - foundation_polygon_with_wrong_zs = nil - for floor in (0..num_floors - 1) - - z = wall_height * floor + foundation_offset - - if has_garage and z == foundation_offset # first floor and has garage - - # create garage zone - garage_zone = OpenStudio::Model::ThermalZone.new(model) - garage_zone.setName("garage zone") - - # make points and polygons - if garage_position == "Right" - garage_sw_point = OpenStudio::Point3d.new(length - garage_width, -garage_protrusion * garage_depth, z) - garage_nw_point = OpenStudio::Point3d.new(length - garage_width, garage_depth - garage_protrusion * garage_depth, z) - garage_ne_point = OpenStudio::Point3d.new(length, garage_depth - garage_protrusion * garage_depth, z) - garage_se_point = OpenStudio::Point3d.new(length, -garage_protrusion * garage_depth, z) - garage_polygon = WholeBuildingGeometry.make_polygon(garage_sw_point, garage_nw_point, garage_ne_point, garage_se_point) - elsif garage_position == "Left" - garage_sw_point = OpenStudio::Point3d.new(0, -garage_protrusion * garage_depth, z) - garage_nw_point = OpenStudio::Point3d.new(0, garage_depth - garage_protrusion * garage_depth, z) - garage_ne_point = OpenStudio::Point3d.new(garage_width, garage_depth - garage_protrusion * garage_depth, z) - garage_se_point = OpenStudio::Point3d.new(garage_width, -garage_protrusion * garage_depth, z) - garage_polygon = WholeBuildingGeometry.make_polygon(garage_sw_point, garage_nw_point, garage_ne_point, garage_se_point) - end - - # make space - garage_space = OpenStudio::Model::Space::fromFloorPrint(garage_polygon, wall_height, model) - garage_space = garage_space.get - garage_space_name = "garage space" - garage_space.setName(garage_space_name) - if space_types_hash.keys.include? WholeBuildingConstants.SpaceTypeGarage - garage_space_type = space_types_hash[WholeBuildingConstants.SpaceTypeGarage] - else - garage_space_type = OpenStudio::Model::SpaceType.new(model) - garage_space_type.setStandardsSpaceType(WholeBuildingConstants.SpaceTypeGarage) - space_types_hash[WholeBuildingConstants.SpaceTypeGarage] = garage_space_type - end - garage_space.setSpaceType(garage_space_type) - runner.registerInfo("Set #{garage_space_name}.") - - # set this to the garage zone - garage_space.setThermalZone(garage_zone) - - m = WholeBuildingGeometry.initialize_transformation_matrix(OpenStudio::Matrix.new(4, 4, 0)) - m[0, 3] = 0 - m[1, 3] = 0 - m[2, 3] = z - garage_space.changeTransformation(OpenStudio::Transformation.new(m)) - - if garage_position == "Right" - sw_point = OpenStudio::Point3d.new(0, 0, z) - nw_point = OpenStudio::Point3d.new(0, width, z) - ne_point = OpenStudio::Point3d.new(length, width, z) - se_point = OpenStudio::Point3d.new(length, 0, z) - l_se_point = OpenStudio::Point3d.new(length - garage_width, 0, z) - if (garage_depth < width or garage_protrusion > 0) and garage_protrusion < 1 # garage protrudes but not fully - living_polygon = WholeBuildingGeometry.make_polygon(sw_point, nw_point, ne_point, garage_ne_point, garage_nw_point, l_se_point) - elsif garage_protrusion < 1 # garage fits perfectly within living space - living_polygon = WholeBuildingGeometry.make_polygon(sw_point, nw_point, garage_nw_point, garage_sw_point) - else # garage fully protrudes - living_polygon = WholeBuildingGeometry.make_polygon(sw_point, nw_point, ne_point, se_point) - end - elsif garage_position == "Left" - sw_point = OpenStudio::Point3d.new(0, 0, z) - nw_point = OpenStudio::Point3d.new(0, width, z) - ne_point = OpenStudio::Point3d.new(length, width, z) - se_point = OpenStudio::Point3d.new(length, 0, z) - l_sw_point = OpenStudio::Point3d.new(garage_width, 0, z) - if (garage_depth < width or garage_protrusion > 0) and garage_protrusion < 1 # garage protrudes but not fully - living_polygon = WholeBuildingGeometry.make_polygon(garage_nw_point, nw_point, ne_point, se_point, l_sw_point, garage_ne_point) - elsif garage_protrusion < 1 # garage fits perfectly within living space - living_polygon = WholeBuildingGeometry.make_polygon(garage_se_point, garage_ne_point, ne_point, se_point) - else # garage fully protrudes - living_polygon = WholeBuildingGeometry.make_polygon(sw_point, nw_point, ne_point, se_point) - end - end - foundation_polygon_with_wrong_zs = living_polygon - - else # first floor without garage or above first floor - - if has_garage - garage_se_point = OpenStudio::Point3d.new(garage_se_point.x, garage_se_point.y, wall_height * floor + foundation_offset) - garage_sw_point = OpenStudio::Point3d.new(garage_sw_point.x, garage_sw_point.y, wall_height * floor + foundation_offset) - garage_nw_point = OpenStudio::Point3d.new(garage_nw_point.x, garage_nw_point.y, wall_height * floor + foundation_offset) - garage_ne_point = OpenStudio::Point3d.new(garage_ne_point.x, garage_ne_point.y, wall_height * floor + foundation_offset) - if garage_position == "Right" - sw_point = OpenStudio::Point3d.new(0, 0, z) - nw_point = OpenStudio::Point3d.new(0, width, z) - ne_point = OpenStudio::Point3d.new(length, width, z) - se_point = OpenStudio::Point3d.new(length, 0, z) - l_se_point = OpenStudio::Point3d.new(length - garage_width, 0, z) - if garage_protrusion > 0 # garage protrudes - living_polygon = WholeBuildingGeometry.make_polygon(sw_point, nw_point, ne_point, garage_se_point, garage_sw_point, l_se_point) - else # garage does not protrude - living_polygon = WholeBuildingGeometry.make_polygon(sw_point, nw_point, ne_point, se_point) - end - elsif garage_position == "Left" - sw_point = OpenStudio::Point3d.new(0, 0, z) - nw_point = OpenStudio::Point3d.new(0, width, z) - ne_point = OpenStudio::Point3d.new(length, width, z) - se_point = OpenStudio::Point3d.new(length, 0, z) - l_sw_point = OpenStudio::Point3d.new(garage_width, 0, z) - if garage_protrusion > 0 # garage protrudes - living_polygon = WholeBuildingGeometry.make_polygon(garage_sw_point, nw_point, ne_point, se_point, l_sw_point, garage_se_point) - else # garage does not protrude - living_polygon = WholeBuildingGeometry.make_polygon(sw_point, nw_point, ne_point, se_point) - end - end - - else - - sw_point = OpenStudio::Point3d.new(0, 0, z) - nw_point = OpenStudio::Point3d.new(0, width, z) - ne_point = OpenStudio::Point3d.new(length, width, z) - se_point = OpenStudio::Point3d.new(length, 0, z) - living_polygon = WholeBuildingGeometry.make_polygon(sw_point, nw_point, ne_point, se_point) - if z == foundation_offset - foundation_polygon_with_wrong_zs = living_polygon - end - - end - - end - - # make space - living_space = OpenStudio::Model::Space::fromFloorPrint(living_polygon, wall_height, model) - living_space = living_space.get - if floor > 0 - living_space_name = "living space|story #{floor + 1}" - else - living_space_name = "living space" - end - living_space.setName(living_space_name) - if space_types_hash.keys.include? WholeBuildingConstants.SpaceTypeLiving - living_space_type = space_types_hash[WholeBuildingConstants.SpaceTypeLiving] - else - living_space_type = OpenStudio::Model::SpaceType.new(model) - living_space_type.setStandardsSpaceType(WholeBuildingConstants.SpaceTypeLiving) - space_types_hash[WholeBuildingConstants.SpaceTypeLiving] = living_space_type - end - living_space.setSpaceType(living_space_type) - runner.registerInfo("Set #{living_space_name}.") - - # set these to the living zone - living_space.setThermalZone(living_zone) - - m = WholeBuildingGeometry.initialize_transformation_matrix(OpenStudio::Matrix.new(4, 4, 0)) - m[0, 3] = 0 - m[1, 3] = 0 - m[2, 3] = z - living_space.changeTransformation(OpenStudio::Transformation.new(m)) - - end - - # Attic - if roof_type != WholeBuildingConstants.RoofTypeFlat - - z = z + wall_height - - # calculate the dimensions of the attic - if length >= width - attic_height = (width / 2.0) * roof_pitch - else - attic_height = (length / 2.0) * roof_pitch - end - - # make points - roof_nw_point = OpenStudio::Point3d.new(0, width, z) - roof_ne_point = OpenStudio::Point3d.new(length, width, z) - roof_se_point = OpenStudio::Point3d.new(length, 0, z) - roof_sw_point = OpenStudio::Point3d.new(0, 0, z) - - # make polygons - polygon_floor = WholeBuildingGeometry.make_polygon(roof_nw_point, roof_ne_point, roof_se_point, roof_sw_point) - side_type = nil - if roof_type == WholeBuildingConstants.RoofTypeGable - if length >= width - roof_w_point = OpenStudio::Point3d.new(0, width / 2.0, z + attic_height) - roof_e_point = OpenStudio::Point3d.new(length, width / 2.0, z + attic_height) - polygon_s_roof = WholeBuildingGeometry.make_polygon(roof_e_point, roof_w_point, roof_sw_point, roof_se_point) - polygon_n_roof = WholeBuildingGeometry.make_polygon(roof_w_point, roof_e_point, roof_ne_point, roof_nw_point) - polygon_w_wall = WholeBuildingGeometry.make_polygon(roof_w_point, roof_nw_point, roof_sw_point) - polygon_e_wall = WholeBuildingGeometry.make_polygon(roof_e_point, roof_se_point, roof_ne_point) - else - roof_w_point = OpenStudio::Point3d.new(length / 2.0, 0, z + attic_height) - roof_e_point = OpenStudio::Point3d.new(length / 2.0, width, z + attic_height) - polygon_s_roof = WholeBuildingGeometry.make_polygon(roof_e_point, roof_w_point, roof_se_point, roof_ne_point) - polygon_n_roof = WholeBuildingGeometry.make_polygon(roof_w_point, roof_e_point, roof_nw_point, roof_sw_point) - polygon_w_wall = WholeBuildingGeometry.make_polygon(roof_w_point, roof_sw_point, roof_se_point) - polygon_e_wall = WholeBuildingGeometry.make_polygon(roof_e_point, roof_ne_point, roof_nw_point) - end - side_type = "Wall" - elsif roof_type == WholeBuildingConstants.RoofTypeHip - if length >= width - roof_w_point = OpenStudio::Point3d.new(width / 2.0, width / 2.0, z + attic_height) - roof_e_point = OpenStudio::Point3d.new(length - width / 2.0, width / 2.0, z + attic_height) - polygon_s_roof = WholeBuildingGeometry.make_polygon(roof_e_point, roof_w_point, roof_sw_point, roof_se_point) - polygon_n_roof = WholeBuildingGeometry.make_polygon(roof_w_point, roof_e_point, roof_ne_point, roof_nw_point) - polygon_w_wall = WholeBuildingGeometry.make_polygon(roof_w_point, roof_nw_point, roof_sw_point) - polygon_e_wall = WholeBuildingGeometry.make_polygon(roof_e_point, roof_se_point, roof_ne_point) - else - roof_w_point = OpenStudio::Point3d.new(length / 2.0, length / 2.0, z + attic_height) - roof_e_point = OpenStudio::Point3d.new(length / 2.0, width - length / 2.0, z + attic_height) - polygon_s_roof = WholeBuildingGeometry.make_polygon(roof_e_point, roof_w_point, roof_se_point, roof_ne_point) - polygon_n_roof = WholeBuildingGeometry.make_polygon(roof_w_point, roof_e_point, roof_nw_point, roof_sw_point) - polygon_w_wall = WholeBuildingGeometry.make_polygon(roof_w_point, roof_sw_point, roof_se_point) - polygon_e_wall = WholeBuildingGeometry.make_polygon(roof_e_point, roof_ne_point, roof_nw_point) - end - side_type = "RoofCeiling" - end - - # make surfaces - surface_floor = OpenStudio::Model::Surface.new(polygon_floor, model) - surface_floor.setSurfaceType("Floor") - surface_floor.setOutsideBoundaryCondition("Surface") - surface_s_roof = OpenStudio::Model::Surface.new(polygon_s_roof, model) - surface_s_roof.setSurfaceType("RoofCeiling") - surface_s_roof.setOutsideBoundaryCondition("Outdoors") - surface_n_roof = OpenStudio::Model::Surface.new(polygon_n_roof, model) - surface_n_roof.setSurfaceType("RoofCeiling") - surface_n_roof.setOutsideBoundaryCondition("Outdoors") - surface_w_wall = OpenStudio::Model::Surface.new(polygon_w_wall, model) - surface_w_wall.setSurfaceType(side_type) - surface_w_wall.setOutsideBoundaryCondition("Outdoors") - surface_e_wall = OpenStudio::Model::Surface.new(polygon_e_wall, model) - surface_e_wall.setSurfaceType(side_type) - surface_e_wall.setOutsideBoundaryCondition("Outdoors") - - # assign surfaces to the space - attic_space = OpenStudio::Model::Space.new(model) - surface_floor.setSpace(attic_space) - surface_s_roof.setSpace(attic_space) - surface_n_roof.setSpace(attic_space) - surface_w_wall.setSpace(attic_space) - surface_e_wall.setSpace(attic_space) - - # set these to the attic zone - if attic_type == "unfinished attic" - # create attic zone - attic_zone = OpenStudio::Model::ThermalZone.new(model) - attic_zone.setName("unfinished attic zone") - attic_space.setThermalZone(attic_zone) - attic_space_name = "unfinished attic space" - attic_space_type_name = WholeBuildingConstants.SpaceTypeUnfinishedAttic - elsif attic_type == "finished attic" - attic_space.setThermalZone(living_zone) - attic_space_name = "finished attic space" - attic_space_type_name = WholeBuildingConstants.SpaceTypeLiving - end - attic_space.setName(attic_space_name) - if space_types_hash.keys.include? attic_space_type_name - attic_space_type = space_types_hash[attic_space_type_name] - else - attic_space_type = OpenStudio::Model::SpaceType.new(model) - attic_space_type.setStandardsSpaceType(attic_space_type_name) - space_types_hash[attic_space_type_name] = attic_space_type - end - attic_space.setSpaceType(attic_space_type) - runner.registerInfo("Set #{attic_space_name}.") - - m = WholeBuildingGeometry.initialize_transformation_matrix(OpenStudio::Matrix.new(4, 4, 0)) - m[0, 3] = 0 - m[1, 3] = 0 - m[2, 3] = z - attic_space.changeTransformation(OpenStudio::Transformation.new(m)) - - end - - # Foundation - if ["crawlspace", "unfinished basement", "finished basement", "pier and beam"].include? foundation_type - - z = -foundation_height + foundation_offset - - # create foundation zone - foundation_zone = OpenStudio::Model::ThermalZone.new(model) - if foundation_type == "crawlspace" - foundation_zone_name = "crawl zone" - elsif foundation_type == "unfinished basement" - foundation_zone_name = "unfinished basement zone" - elsif foundation_type == "finished basement" - foundation_zone_name = "finished basement zone" - elsif foundation_type == "pier and beam" - foundation_zone_name = "pier and beam zone" - end - foundation_zone.setName(foundation_zone_name) - - # make polygons - p = OpenStudio::Point3dVector.new - foundation_polygon_with_wrong_zs.each do |point| - p << OpenStudio::Point3d.new(point.x, point.y, z) - end - foundation_polygon = p - - # make space - foundation_space = OpenStudio::Model::Space::fromFloorPrint(foundation_polygon, foundation_height, model) - foundation_space = foundation_space.get - if foundation_type == "crawlspace" - foundation_space_name = "crawl space" - foundation_space_type_name = WholeBuildingConstants.SpaceTypeCrawl - elsif foundation_type == "unfinished basement" - foundation_space_name = "unfinished basement space" - foundation_space_type_name = WholeBuildingConstants.SpaceTypeUnfinishedBasement - elsif foundation_type == "finished basement" - foundation_space_name = "finished basement space" - foundation_space_type_name = WholeBuildingConstants.SpaceTypeFinishedBasement - elsif foundation_type == "pier and beam" - foundation_space_name = "pier and beam space" - foundation_space_type_name = WholeBuildingConstants.SpaceTypePierBeam - end - foundation_space.setName(foundation_space_name) - if space_types_hash.keys.include? foundation_space_type_name - foundation_space_type = space_types_hash[foundation_space_type_name] - else - foundation_space_type = OpenStudio::Model::SpaceType.new(model) - foundation_space_type.setStandardsSpaceType(foundation_space_type_name) - space_types_hash[foundation_space_type_name] = foundation_space_type - end - foundation_space.setSpaceType(foundation_space_type) - runner.registerInfo("Set #{foundation_space_name}.") - - # set these to the foundation zone - foundation_space.setThermalZone(foundation_zone) - - # set foundation walls outside boundary condition - spaces = model.getSpaces - spaces.each do |space| - if WholeBuildingGeometry.get_space_floor_z(space) + WholeBuildingUnitConversions.convert(space.zOrigin, "m", "ft") < 0 - surfaces = space.surfaces - surfaces.each do |surface| - next if surface.surfaceType.downcase != "wall" - - surface.setOutsideBoundaryCondition("Ground") - end - end - end - - m = WholeBuildingGeometry.initialize_transformation_matrix(OpenStudio::Matrix.new(4, 4, 0)) - m[0, 3] = 0 - m[1, 3] = 0 - m[2, 3] = z - foundation_space.changeTransformation(OpenStudio::Transformation.new(m)) - - end - - # put all of the spaces in the model into a vector - spaces = OpenStudio::Model::SpaceVector.new - model.getSpaces.each do |space| - spaces << space - end - - # intersect and match surfaces for each space in the vector - OpenStudio::Model.intersectSurfaces(spaces) - OpenStudio::Model.matchSurfaces(spaces) - - if has_garage and roof_type != WholeBuildingConstants.RoofTypeFlat - if num_floors > 1 - space_with_roof_over_garage = living_space - else - space_with_roof_over_garage = garage_space - end - space_with_roof_over_garage.surfaces.each do |surface| - if surface.surfaceType.downcase == "roofceiling" and surface.outsideBoundaryCondition.downcase == "outdoors" - n_points = [] - s_points = [] - surface.vertices.each do |vertex| - if vertex.y == 0 - n_points << vertex - elsif vertex.y < 0 - s_points << vertex - end - end - if n_points[0].x > n_points[1].x - nw_point = n_points[1] - ne_point = n_points[0] - else - nw_point = n_points[0] - ne_point = n_points[1] - end - if s_points[0].x > s_points[1].x - sw_point = s_points[1] - se_point = s_points[0] - else - sw_point = s_points[0] - se_point = s_points[1] - end - - if num_floors == 1 - if not attic_type == "finished attic" - nw_point = OpenStudio::Point3d.new(nw_point.x, nw_point.y, living_space.zOrigin + nw_point.z) - ne_point = OpenStudio::Point3d.new(ne_point.x, ne_point.y, living_space.zOrigin + ne_point.z) - sw_point = OpenStudio::Point3d.new(sw_point.x, sw_point.y, living_space.zOrigin + sw_point.z) - se_point = OpenStudio::Point3d.new(se_point.x, se_point.y, living_space.zOrigin + se_point.z) - else - nw_point = OpenStudio::Point3d.new(nw_point.x, nw_point.y, nw_point.z - living_space.zOrigin) - ne_point = OpenStudio::Point3d.new(ne_point.x, ne_point.y, ne_point.z - living_space.zOrigin) - sw_point = OpenStudio::Point3d.new(sw_point.x, sw_point.y, sw_point.z - living_space.zOrigin) - se_point = OpenStudio::Point3d.new(se_point.x, se_point.y, se_point.z - living_space.zOrigin) - end - else - nw_point = OpenStudio::Point3d.new(nw_point.x, nw_point.y, num_floors * nw_point.z) - ne_point = OpenStudio::Point3d.new(ne_point.x, ne_point.y, num_floors * ne_point.z) - sw_point = OpenStudio::Point3d.new(sw_point.x, sw_point.y, num_floors * sw_point.z) - se_point = OpenStudio::Point3d.new(se_point.x, se_point.y, num_floors * se_point.z) - end - - garage_attic_height = (ne_point.x - nw_point.x) / 2 * roof_pitch - - garage_roof_pitch = roof_pitch - if garage_attic_height >= attic_height - garage_attic_height = attic_height - 0.01 # garage attic height slightly below attic height so that we don't get any roof decks with only three vertices - garage_roof_pitch = garage_attic_height / (garage_width / 2) - runner.registerWarning("The garage pitch was changed to accommodate garage ridge >= house ridge (from #{roof_pitch.round(3)} to #{garage_roof_pitch.round(3)}).") - end - - if num_floors == 1 - if not attic_type == "finished attic" - roof_n_point = OpenStudio::Point3d.new((nw_point.x + ne_point.x) / 2, nw_point.y + garage_attic_height / roof_pitch, living_space.zOrigin + wall_height + garage_attic_height) - roof_s_point = OpenStudio::Point3d.new((sw_point.x + se_point.x) / 2, sw_point.y, living_space.zOrigin + wall_height + garage_attic_height) - else - roof_n_point = OpenStudio::Point3d.new((nw_point.x + ne_point.x) / 2, nw_point.y + garage_attic_height / roof_pitch, garage_attic_height + wall_height) - roof_s_point = OpenStudio::Point3d.new((sw_point.x + se_point.x) / 2, sw_point.y, garage_attic_height + wall_height) - end - else - roof_n_point = OpenStudio::Point3d.new((nw_point.x + ne_point.x) / 2, nw_point.y + garage_attic_height / roof_pitch, num_floors * wall_height + garage_attic_height) - roof_s_point = OpenStudio::Point3d.new((sw_point.x + se_point.x) / 2, sw_point.y, num_floors * wall_height + garage_attic_height) - end - - polygon_w_roof = WholeBuildingGeometry.make_polygon(nw_point, sw_point, roof_s_point, roof_n_point) - polygon_e_roof = WholeBuildingGeometry.make_polygon(ne_point, roof_n_point, roof_s_point, se_point) - polygon_n_wall = WholeBuildingGeometry.make_polygon(nw_point, roof_n_point, ne_point) - polygon_s_wall = WholeBuildingGeometry.make_polygon(sw_point, se_point, roof_s_point) - - deck_w = OpenStudio::Model::Surface.new(polygon_w_roof, model) - deck_w.setSurfaceType("RoofCeiling") - deck_w.setOutsideBoundaryCondition("Outdoors") - deck_e = OpenStudio::Model::Surface.new(polygon_e_roof, model) - deck_e.setSurfaceType("RoofCeiling") - deck_e.setOutsideBoundaryCondition("Outdoors") - wall_n = OpenStudio::Model::Surface.new(polygon_n_wall, model) - wall_n.setSurfaceType("Wall") - wall_s = OpenStudio::Model::Surface.new(polygon_s_wall, model) - wall_s.setSurfaceType("Wall") - wall_s.setOutsideBoundaryCondition("Outdoors") - - garage_attic_space = OpenStudio::Model::Space.new(model) - garage_attic_space_name = "garage attic space" - garage_attic_space.setName(garage_attic_space_name) - deck_w.setSpace(garage_attic_space) - deck_e.setSpace(garage_attic_space) - wall_n.setSpace(garage_attic_space) - wall_s.setSpace(garage_attic_space) - - if attic_type == "finished attic" - garage_attic_space_type_name = WholeBuildingConstants.SpaceTypeLiving - garage_attic_space.setThermalZone(living_zone) - else - if num_floors > 1 - garage_attic_space_type_name = WholeBuildingConstants.SpaceTypeUnfinishedAttic - garage_attic_space.setThermalZone(attic_zone) - else - garage_attic_space_type_name = WholeBuildingConstants.SpaceTypeGarageAttic - garage_attic_space.setThermalZone(garage_zone) - end - end - - surface.createAdjacentSurface(garage_attic_space) # garage attic floor - if space_types_hash.keys.include? garage_attic_space_type_name - garage_attic_space_type = space_types_hash[garage_attic_space_type_name] - else - garage_attic_space_type = OpenStudio::Model::SpaceType.new(model) - garage_attic_space_type.setStandardsSpaceType(garage_attic_space_type_name) - space_types_hash[garage_attic_space_type_name] = garage_attic_space_type - end - garage_attic_space.setSpaceType(garage_attic_space_type) - runner.registerInfo("Set #{garage_attic_space_name}.") - - # put all of the spaces in the model into a vector - spaces = OpenStudio::Model::SpaceVector.new - model.getSpaces.each do |space| - spaces << space - end - - # intersect and match surfaces for each space in the vector - OpenStudio::Model.intersectSurfaces(spaces) - OpenStudio::Model.matchSurfaces(spaces) - - # remove triangular surface between unfinished attic and garage attic - unless attic_space.nil? - attic_space.surfaces.each do |surface| - next if roof_type == WholeBuildingConstants.RoofTypeHip - next unless surface.vertices.length == 3 - next unless (90 - surface.tilt * 180 / Math::PI).abs > 0.01 # don't remove the vertical attic walls - next unless surface.adjacentSurface.is_initialized - - surface.adjacentSurface.get.remove - surface.remove - end - end - - garage_attic_space.surfaces.each do |surface| - if num_floors > 1 or attic_type == "finished attic" - m = WholeBuildingGeometry.initialize_transformation_matrix(OpenStudio::Matrix.new(4, 4, 0)) - m[2, 3] = -attic_space.zOrigin - transformation = OpenStudio::Transformation.new(m) - new_vertices = transformation * surface.vertices - surface.setVertices(new_vertices) - surface.setSpace(attic_space) - end - end - - if num_floors > 1 or attic_type == "finished attic" - garage_attic_space.remove - end - - break - - end - end - end - - # set foundation outside boundary condition to Kiva "foundation" - model.getSurfaces.each do |surface| - next if surface.outsideBoundaryCondition.downcase != "ground" - - surface.setOutsideBoundaryCondition("Foundation") - end - - # set foundation walls adjacent to garage to adiabatic - foundation_walls = [] - model.getSurfaces.each do |surface| - next if surface.surfaceType.downcase != "wall" - next if surface.outsideBoundaryCondition.downcase != "foundation" - - foundation_walls << surface - end - garage_spaces = WholeBuildingGeometry.get_garage_spaces(model.getSpaces) - garage_spaces.each do |garage_space| - garage_space.surfaces.each do |surface| - next if surface.surfaceType.downcase != "floor" - - adjacent_wall_surfaces = WholeBuildingGeometry.get_walls_connected_to_floor(foundation_walls, surface, false) - adjacent_wall_surfaces.each do |adjacent_wall_surface| - adjacent_wall_surface.setOutsideBoundaryCondition("Adiabatic") - end - end - end - - # Store building unit information - unit = OpenStudio::Model::BuildingUnit.new(model) - unit.setBuildingUnitType(WholeBuildingConstants.BuildingUnitTypeResidential) - unit.setName(WholeBuildingConstants.ObjectNameBuildingUnit) - model.getSpaces.each do |space| - next if not WholeBuildingGeometry.space_is_finished(space) - - space.setBuildingUnit(unit) - end - model.getBuilding.additionalProperties.setFeature("Total Units Represented", 1) - model.getBuilding.additionalProperties.setFeature("Total Units Modeled", 1) - - # Store number of units - model.getBuilding.setStandardsNumberOfLivingUnits(1) - - # Store number of stories - if attic_type == "finished attic" - num_floors += 1 - end - model.getBuilding.setStandardsNumberOfAboveGroundStories(num_floors) - if foundation_type == "finished basement" - num_floors += 1 - end - model.getBuilding.setStandardsNumberOfStories(num_floors) - - # Store the building type - model.getBuilding.setStandardsBuildingType(WholeBuildingConstants.BuildingTypeSingleFamilyDetached) - - result = WholeBuildingGeometry.process_beds_and_baths(model, runner, num_br, num_ba) - unless result - return false - end - - result = WholeBuildingGeometry.process_eaves(model, runner, eaves_depth, roof_structure) - unless result - return false - end - - result = WholeBuildingGeometry.process_neighbors(model, runner, neighbor_left_offset, neighbor_right_offset, neighbor_back_offset, neighbor_front_offset) - unless result - return false - end - - result = WholeBuildingGeometry.process_orientation(model, runner, orientation) - unless result - return false - end - - # reporting final condition of model - runner.registerFinalCondition("The building finished with #{model.getSpaces.size} spaces.") - - return true - end # end the run method -end # end the measure - -# register the measure to be used by the application -CreateResidentialSingleFamilyDetachedGeometry.new.registerWithApplication diff --git a/example_files/measures/ResidentialGeometryCreateSingleFamilyDetached/measure.xml b/example_files/measures/ResidentialGeometryCreateSingleFamilyDetached/measure.xml deleted file mode 100644 index 96e9ebeb..00000000 --- a/example_files/measures/ResidentialGeometryCreateSingleFamilyDetached/measure.xml +++ /dev/null @@ -1,388 +0,0 @@ - - 3.0 - create_residential_single_family_detached_geometry - a1248ef4-c1ef-46ed-a9ea-4d8fbf719b6f - 15e77040-3631-4994-83d0-feacbc47c674 - 20200515T170006Z - 2AF3A68E - CreateResidentialSingleFamilyDetachedGeometry - Create Residential Single-Family Detached Geometry - Sets the basic geometry for the single-family detached building. Building is limited to one foundation type. Garage is tucked within the building, on the front left or front right corners of the building. Sets the number of bedrooms, bathrooms, and occupants in the building. Sets the neighbors (front, back, left, and/or right) of the building for shading purposes. Neighboring buildings will have the same geometry as the model building. See https://github.com/NREL/OpenStudio-BuildStock#workflows for supported workflows using this measure. - Gathers living space area, wall height per floor, number of floors, aspect ratio, garage width and depth, garage position, foundation type and wall height, attic and roof type, and roof pitch. Constructs building by calculating footprint and performing a series of affine transformations into living, foundation, and attic spaces. Also, sets (or replaces) BuildingUnit objects that store the number of bedrooms and bathrooms associated with the model. Sets (or replaces) the People object for each finished space in the model. Creates shading surfaces by shifting the building's exterior surfaces in the specified directions (front, back, left, and/or right). - - - total_ffa - Total Finished Floor Area - The total floor area of the finished space (including any finished basement floor area). - Double - ft^2 - true - false - 2000 - - - wall_height - Wall Height (Per Floor) - The height of the living space (and garage) walls. - Double - ft - true - false - 8 - - - num_floors - Number of Floors - The number of floors above grade. - Integer - # - true - false - 2 - - - aspect_ratio - Aspect Ratio - The ratio of the front/back wall length to the left/right wall length, excluding any protruding garage wall area. - Double - FB/LR - true - false - 2 - - - garage_width - Garage Width - The width of the garage. - Double - ft - true - false - 0 - - - garage_depth - Garage Depth - The depth of the garage. - Double - ft - true - false - 20 - - - garage_protrusion - Garage Protrusion - The fraction of the garage that is protruding from the living space. - Double - frac - true - false - 0 - - - garage_position - Garage Position - The position of the garage. - Choice - true - false - Right - - - Right - Right - - - Left - Left - - - - - foundation_type - Foundation Type - The foundation type of the building. - Choice - true - false - slab - - - slab - slab - - - crawlspace - crawlspace - - - unfinished basement - unfinished basement - - - finished basement - finished basement - - - pier and beam - pier and beam - - - - - foundation_height - Foundation Height - The height of the foundation (e.g., 3ft for crawlspace, 8ft for basement). - Double - ft - true - false - 3 - - - attic_type - Attic Type - The attic type of the building. Ignored if the building has a flat roof. - Choice - true - false - unfinished attic - - - unfinished attic - unfinished attic - - - finished attic - finished attic - - - - - roof_type - Roof Type - The roof type of the building. - Choice - true - false - gable - - - gable - gable - - - hip - hip - - - flat - flat - - - - - roof_pitch - Roof Pitch - The roof pitch of the attic. Ignored if the building has a flat roof. - Choice - true - false - 6:12 - - - 1:12 - 1:12 - - - 2:12 - 2:12 - - - 3:12 - 3:12 - - - 4:12 - 4:12 - - - 5:12 - 5:12 - - - 6:12 - 6:12 - - - 7:12 - 7:12 - - - 8:12 - 8:12 - - - 9:12 - 9:12 - - - 10:12 - 10:12 - - - 11:12 - 11:12 - - - 12:12 - 12:12 - - - - - roof_structure - Roof Structure - The roof structure of the building. - Choice - true - false - truss, cantilever - - - truss, cantilever - truss, cantilever - - - rafter - rafter - - - - - eaves_depth - Eaves Depth - The eaves depth of the roof. - Double - ft - true - false - 2 - - - num_bedrooms - Number of Bedrooms - Specify the number of bedrooms. Used to determine the energy usage of appliances and plug loads, hot water usage, mechanical ventilation rate, etc. - String - true - false - 3 - - - num_bathrooms - Number of Bathrooms - Specify the number of bathrooms. Used to determine the hot water usage, etc. - String - true - false - 2 - - - neighbor_left_offset - Neighbor Left Offset - The minimum distance between the simulated house and the neighboring house to the left (not including eaves). A value of zero indicates no neighbors. - Double - ft - true - false - 10 - - - neighbor_right_offset - Neighbor Right Offset - The minimum distance between the simulated house and the neighboring house to the right (not including eaves). A value of zero indicates no neighbors. - Double - ft - true - false - 10 - - - neighbor_back_offset - Neighbor Back Offset - The minimum distance between the simulated house and the neighboring house to the back (not including eaves). A value of zero indicates no neighbors. - Double - ft - true - false - 0 - - - neighbor_front_offset - Neighbor Front Offset - The minimum distance between the simulated house and the neighboring house to the front (not including eaves). A value of zero indicates no neighbors. - Double - ft - true - false - 0 - - - orientation - Azimuth - The house's azimuth is measured clockwise from due south when viewed from above (e.g., South=0, West=90, North=180, East=270). - Double - degrees - true - false - 180 - - - - - - Envelope.Form - - - - Measure Type - ModelMeasure - string - - - Intended Software Tool - Apply Measure Now - string - - - Intended Software Tool - OpenStudio Application - string - - - Intended Software Tool - Parametric Analysis Tool - string - - - - - - OpenStudio - 1.12.4 - 2.0.4 - - measure.rb - rb - script - 0AE3E8E8 - - - create_residential_single_family_detached_geometry_test.rb - rb - test - DA92FFDE - - - diff --git a/example_files/measures/ResidentialGeometryCreateSingleFamilyDetached/tests/create_residential_single_family_detached_geometry_test.rb b/example_files/measures/ResidentialGeometryCreateSingleFamilyDetached/tests/create_residential_single_family_detached_geometry_test.rb deleted file mode 100644 index c8a1bf84..00000000 --- a/example_files/measures/ResidentialGeometryCreateSingleFamilyDetached/tests/create_residential_single_family_detached_geometry_test.rb +++ /dev/null @@ -1,704 +0,0 @@ -require_relative '../../../../test/minitest_helper' -require 'openstudio' -require 'openstudio/ruleset/ShowRunnerOutput' -require 'minitest/autorun' -require_relative '../measure.rb' -require 'fileutils' - -class CreateResidentialSingleFamilyDetachedGeometryTest < MiniTest::Test - def test_error_existing_geometry - args_hash = {} - result = _test_error("SFD_2000sqft_2story_SL_UA.osm", args_hash) - assert_includes(result.errors.map { |x| x.logMessage }, "Starting model is not empty.") - end - - def test_argument_error_aspect_ratio_invalid - args_hash = {} - args_hash["aspect_ratio"] = -1.0 - result = _test_error(nil, args_hash) - assert_includes(result.errors.map { |x| x.logMessage }, "Invalid aspect ratio entered.") - end - - def test_argument_error_pierbeam_height_invalid - args_hash = {} - args_hash["foundation_type"] = "pier and beam" - args_hash["foundation_height"] = 0 - result = _test_error(nil, args_hash) - assert_includes(result.errors.map { |x| x.logMessage }, "The pier & beam height must be greater than 0 ft.") - end - - def test_argument_error_pierbeam_with_garage - args_hash = {} - args_hash["garage_width"] = 12 - args_hash["foundation_type"] = "pier and beam" - result = _test_error(nil, args_hash) - assert_includes(result.errors.map { |x| x.logMessage }, "Cannot handle garages with a pier & beam foundation type.") - end - - def test_argument_error_num_floors_invalid - args_hash = {} - args_hash["num_floors"] = 7 - result = _test_error(nil, args_hash) - assert_includes(result.errors.map { |x| x.logMessage }, "Too many floors.") - end - - def test_argument_error_garage_protrusion_invalid - args_hash = {} - args_hash["garage_protrusion"] = 2 - result = _test_error(nil, args_hash) - assert_includes(result.errors.map { |x| x.logMessage }, "Invalid garage protrusion value entered.") - end - - def test_argument_error_hip_roof_and_garage_protrudes - args_hash = {} - args_hash["garage_width"] = 12 - args_hash["garage_protrusion"] = 0.5 - args_hash["roof_type"] = Constants.RoofTypeHip - result = _test_error(nil, args_hash) - assert_includes(result.errors.map { |x| x.logMessage }, "Cannot handle protruding garage and hip roof.") - end - - def test_argument_error_living_and_garage_ridges_are_parallel - args_hash = {} - args_hash["garage_width"] = 12 - args_hash["garage_protrusion"] = 0.5 - args_hash["aspect_ratio"] = 0.75 - result = _test_error(nil, args_hash) - assert_includes(result.errors.map { |x| x.logMessage }, "Cannot handle protruding garage and attic ridge running from front to back.") - end - - def test_argument_error_garage_width_exceeds_living_width - args_hash = {} - args_hash["garage_width"] = 10000 - result = _test_error(nil, args_hash) - assert_includes(result.errors.map { |x| x.logMessage }, "Invalid living space and garage dimensions.") - end - - def test_argument_error_garage_depth_exceeds_living_depth - args_hash = {} - args_hash["garage_width"] = 12 - args_hash["garage_depth"] = 10000 - result = _test_error(nil, args_hash) - assert_includes(result.errors.map { |x| x.logMessage }, "Invalid living space and garage dimensions.") - end - - def test_change_garage_pitch_when_garage_ridge_higher_than_house_ridge - num_finished_spaces = 1 - args_hash = {} - args_hash["num_floors"] = 1 - args_hash["garage_protrusion"] = 0.5 - args_hash["garage_width"] = 40 - args_hash["garage_depth"] = 24 - expected_num_del_objects = {} - expected_num_new_objects = { "BuildingUnit" => 1, "Surface" => 26, "ThermalZone" => 3, "Space" => 4, "SpaceType" => 4, "PeopleDefinition" => num_finished_spaces, "People" => num_finished_spaces, "ScheduleRuleset" => 1, "ShadingSurfaceGroup" => 2, "ShadingSurface" => 12, "ExternalFile" => 1, "ScheduleFile" => 1 } - expected_values = { "FinishedFloorArea" => 2000, "GarageAtticHeight" => 9.65, "GarageFloorArea" => 960, "UnfinishedAtticHeight" => 9.80, "UnfinishedAtticFloorArea" => 2960, "BuildingHeight" => 17.8, "Beds" => 3.0, "Baths" => 2.0, "NumOccupants" => 2.64, "EavesDepth" => 2 } - _test_measure(nil, args_hash, expected_num_del_objects, expected_num_new_objects, expected_values, __method__) - end - - def test_fbasement - num_finished_spaces = 3 - args_hash = {} - args_hash["foundation_height"] = 8.0 - args_hash["foundation_type"] = "finished basement" - expected_num_del_objects = {} - expected_num_new_objects = { "BuildingUnit" => 1, "Surface" => 23, "ThermalZone" => 3, "Space" => 4, "SpaceType" => 3, "PeopleDefinition" => num_finished_spaces, "People" => num_finished_spaces, "ScheduleRuleset" => 1, "ShadingSurfaceGroup" => 2, "ShadingSurface" => 8, "ExternalFile" => 1, "ScheduleFile" => 1 } - expected_values = { "FinishedFloorArea" => 2000, "FinishedBasementHeight" => 8, "FinishedBasementFloorArea" => 2000 / 3, "UnfinishedAtticHeight" => 5.56, "UnfinishedAtticFloorArea" => 2000 / 3, "BuildingHeight" => 8 + 8 + 8 + 5.56, "Beds" => 3.0, "Baths" => 2.0, "NumOccupants" => 2.64, "EavesDepth" => 2 } - _test_measure(nil, args_hash, expected_num_del_objects, expected_num_new_objects, expected_values, __method__) - end - - def test_ufbasement - num_finished_spaces = 2 - args_hash = {} - args_hash["foundation_height"] = 8.0 - args_hash["foundation_type"] = "unfinished basement" - expected_num_del_objects = {} - expected_num_new_objects = { "BuildingUnit" => 1, "Surface" => 23, "ThermalZone" => 3, "Space" => 4, "SpaceType" => 3, "PeopleDefinition" => num_finished_spaces, "People" => num_finished_spaces, "ScheduleRuleset" => 1, "ShadingSurfaceGroup" => 2, "ShadingSurface" => 8, "ExternalFile" => 1, "ScheduleFile" => 1 } - expected_values = { "FinishedFloorArea" => 2000, "UnfinishedBasementHeight" => 8, "UnfinishedBasementFloorArea" => 2000 / 2, "UnfinishedAtticHeight" => 6.59, "UnfinishedAtticFloorArea" => 2000 / 2, "BuildingHeight" => 8 + 8 + 8 + 6.59, "Beds" => 3.0, "Baths" => 2.0, "NumOccupants" => 2.64, "EavesDepth" => 2 } - _test_measure(nil, args_hash, expected_num_del_objects, expected_num_new_objects, expected_values, __method__) - end - - def test_crawlspace - num_finished_spaces = 2 - args_hash = {} - args_hash["foundation_type"] = "crawlspace" - expected_num_del_objects = {} - expected_num_new_objects = { "BuildingUnit" => 1, "Surface" => 23, "ThermalZone" => 3, "Space" => 4, "SpaceType" => 3, "PeopleDefinition" => num_finished_spaces, "People" => num_finished_spaces, "ScheduleRuleset" => 1, "ShadingSurfaceGroup" => 2, "ShadingSurface" => 8, "ExternalFile" => 1, "ScheduleFile" => 1 } - expected_values = { "FinishedFloorArea" => 2000, "CrawlspaceHeight" => 3, "CrawlspaceFloorArea" => 2000 / 2, "UnfinishedAtticHeight" => 6.59, "UnfinishedAtticFloorArea" => 2000 / 2, "BuildingHeight" => 3 + 8 + 8 + 6.59, "Beds" => 3.0, "Baths" => 2.0, "NumOccupants" => 2.64, "EavesDepth" => 2 } - _test_measure(nil, args_hash, expected_num_del_objects, expected_num_new_objects, expected_values, __method__) - end - - def test_pierandbeam - num_finished_spaces = 2 - args_hash = {} - args_hash["foundation_type"] = "pier and beam" - expected_num_del_objects = {} - expected_num_new_objects = { "BuildingUnit" => 1, "Surface" => 23, "ThermalZone" => 3, "Space" => 4, "SpaceType" => 3, "PeopleDefinition" => num_finished_spaces, "People" => num_finished_spaces, "ScheduleRuleset" => 1, "ShadingSurfaceGroup" => 2, "ShadingSurface" => 8, "ExternalFile" => 1, "ScheduleFile" => 1 } - expected_values = { "FinishedFloorArea" => 2000, "CrawlspaceHeight" => 3, "CrawlspaceFloorArea" => 2000 / 2, "UnfinishedAtticHeight" => 6.59, "UnfinishedAtticFloorArea" => 2000 / 2, "BuildingHeight" => 3 + 8 + 8 + 6.59, "Beds" => 3.0, "Baths" => 2.0, "NumOccupants" => 2.64, "EavesDepth" => 2 } - _test_measure(nil, args_hash, expected_num_del_objects, expected_num_new_objects, expected_values, __method__) - end - - def test_finished_attic_and_finished_basement - num_finished_spaces = 4 - args_hash = {} - args_hash["foundation_height"] = 8.0 - args_hash["attic_type"] = "finished attic" - args_hash["foundation_type"] = "finished basement" - expected_num_del_objects = {} - expected_num_new_objects = { "BuildingUnit" => 1, "Surface" => 23, "ThermalZone" => 2, "Space" => 4, "SpaceType" => 2, "PeopleDefinition" => num_finished_spaces, "People" => num_finished_spaces, "ScheduleRuleset" => 1, "ShadingSurfaceGroup" => 2, "ShadingSurface" => 8, "ExternalFile" => 1, "ScheduleFile" => 1 } - expected_values = { "FinishedFloorArea" => 2000, "FinishedBasementHeight" => 8, "FinishedBasementFloorArea" => 2000 / 4, "FinishedAtticHeight" => 4.95, "FinishedAtticFloorArea" => 2000 / 4, "BuildingHeight" => 8 + 8 + 8 + 4.95, "Beds" => 3.0, "Baths" => 2.0, "NumOccupants" => 2.64, "EavesDepth" => 2 } - _test_measure(nil, args_hash, expected_num_del_objects, expected_num_new_objects, expected_values, __method__) - end - - def test_hip_finished_attic - num_finished_spaces = 3 - args_hash = {} - args_hash["attic_type"] = "finished attic" - args_hash["roof_type"] = Constants.RoofTypeHip - expected_num_del_objects = {} - expected_num_new_objects = { "BuildingUnit" => 1, "Surface" => 17, "ThermalZone" => 1, "Space" => 3, "SpaceType" => 1, "PeopleDefinition" => num_finished_spaces, "People" => num_finished_spaces, "ScheduleRuleset" => 1, "ShadingSurfaceGroup" => 2, "ShadingSurface" => 6, "ExternalFile" => 1, "ScheduleFile" => 1 } - expected_values = { "FinishedFloorArea" => 2000, "FinishedAtticHeight" => 5.56, "FinishedAtticFloorArea" => 2000 / 3, "BuildingHeight" => 8 + 8 + 5.56, "Beds" => 3.0, "Baths" => 2.0, "NumOccupants" => 2.64, "EavesDepth" => 2 } - _test_measure(nil, args_hash, expected_num_del_objects, expected_num_new_objects, expected_values, __method__) - end - - def test_onestory_fbasement_hasgarage_noprotrusion_garageright_gableroof - num_finished_spaces = 2 - args_hash = {} - args_hash["num_floors"] = 1 - args_hash["garage_width"] = 12 - args_hash["foundation_height"] = 8.0 - args_hash["foundation_type"] = "finished basement" - expected_num_del_objects = {} - expected_num_new_objects = { "BuildingUnit" => 1, "Surface" => 28, "ThermalZone" => 4, "Space" => 4, "SpaceType" => 4, "PeopleDefinition" => num_finished_spaces, "People" => num_finished_spaces, "ScheduleRuleset" => 1, "ShadingSurfaceGroup" => 2, "ShadingSurface" => 8, "ExternalFile" => 1, "ScheduleFile" => 1 } - expected_values = { "FinishedFloorArea" => 2000, "FinishedBasementHeight" => 8, "FinishedBasementFloorArea" => 1000, "UnfinishedAtticHeight" => 7.22, "UnfinishedAtticFloorArea" => 1240, "GarageAtticHeight" => 3, "GarageFloorArea" => 240, "BuildingHeight" => 8 + 8 + 7.22, "Beds" => 3.0, "Baths" => 2.0, "NumOccupants" => 2.64, "EavesDepth" => 2 } - _test_measure(nil, args_hash, expected_num_del_objects, expected_num_new_objects, expected_values, __method__) - end - - def test_onestory_fbasement_hasgarage_halfprotrusion_garageright_gableroof - num_finished_spaces = 2 - args_hash = {} - args_hash["num_floors"] = 1 - args_hash["garage_width"] = 12 - args_hash["foundation_height"] = 8.0 - args_hash["foundation_type"] = "finished basement" - args_hash["garage_protrusion"] = 0.5 - expected_num_del_objects = {} - expected_num_new_objects = { "BuildingUnit" => 1, "Surface" => 34, "ThermalZone" => 4, "Space" => 5, "SpaceType" => 5, "PeopleDefinition" => num_finished_spaces, "People" => num_finished_spaces, "ScheduleRuleset" => 1, "ShadingSurfaceGroup" => 2, "ShadingSurface" => 12, "ExternalFile" => 1, "ScheduleFile" => 1 } - expected_values = { "FinishedFloorArea" => 2000, "FinishedBasementHeight" => 8, "FinishedBasementFloorArea" => 1000, "UnfinishedAtticHeight" => 6.91, "UnfinishedAtticFloorArea" => 1240, "GarageAtticHeight" => 4, "GarageFloorArea" => 240, "BuildingHeight" => 8 + 8 + 6.91, "Beds" => 3.0, "Baths" => 2.0, "NumOccupants" => 2.64, "EavesDepth" => 2 } - _test_measure(nil, args_hash, expected_num_del_objects, expected_num_new_objects, expected_values, __method__) - end - - def test_onestory_fbasement_hasgarage_halfprotrusion_garageright_gableroof_fattic - num_finished_spaces = 3 - args_hash = {} - args_hash["num_floors"] = 1 - args_hash["garage_width"] = 12 - args_hash["foundation_height"] = 8.0 - args_hash["foundation_type"] = "finished basement" - args_hash["attic_type"] = "finished attic" - args_hash["garage_protrusion"] = 0.5 - expected_num_del_objects = {} - expected_num_new_objects = { "BuildingUnit" => 1, "Surface" => 34, "ThermalZone" => 3, "Space" => 4, "SpaceType" => 3, "PeopleDefinition" => num_finished_spaces, "People" => num_finished_spaces, "ScheduleRuleset" => 1, "ShadingSurfaceGroup" => 2, "ShadingSurface" => 12, "ExternalFile" => 1, "ScheduleFile" => 1 } - expected_values = { "FinishedFloorArea" => 2000, "FinishedBasementHeight" => 8, "FinishedBasementFloorArea" => 586.66, "FinishedAtticHeight" => 5.69, "FinishedAtticFloorArea" => 826.66, "GarageAtticHeight" => 4, "GarageFloorArea" => 240, "BuildingHeight" => 8 + 8 + 5.69, "Beds" => 3.0, "Baths" => 2.0, "NumOccupants" => 2.64, "EavesDepth" => 2 } - _test_measure(nil, args_hash, expected_num_del_objects, expected_num_new_objects, expected_values, __method__) - end - - def test_onestory_ubasement_hasgarage_halfprotrusion_garageright_gableroof_fattic - num_finished_spaces = 2 - args_hash = {} - args_hash["num_floors"] = 1 - args_hash["garage_width"] = 12 - args_hash["foundation_height"] = 8.0 - args_hash["foundation_type"] = "unfinished basement" - args_hash["attic_type"] = "finished attic" - args_hash["garage_protrusion"] = 0.5 - expected_num_del_objects = {} - expected_num_new_objects = { "BuildingUnit" => 1, "Surface" => 34, "ThermalZone" => 3, "Space" => 4, "SpaceType" => 3, "PeopleDefinition" => num_finished_spaces, "People" => num_finished_spaces, "ScheduleRuleset" => 1, "ShadingSurfaceGroup" => 2, "ShadingSurface" => 12, "ExternalFile" => 1, "ScheduleFile" => 1 } - expected_values = { "FinishedFloorArea" => 2000, "UnfinishedBasementHeight" => 8, "UnfinishedBasementFloorArea" => 880, "FinishedAtticHeight" => 6.59, "FinishedAtticFloorArea" => 1120, "GarageAtticHeight" => 4, "GarageFloorArea" => 240, "BuildingHeight" => 8 + 8 + 6.59, "Beds" => 3.0, "Baths" => 2.0, "NumOccupants" => 2.64, "EavesDepth" => 2 } - _test_measure(nil, args_hash, expected_num_del_objects, expected_num_new_objects, expected_values, __method__) - end - - def test_onestory_fbasement_hasgarage_fullprotrusion_garageright_gableroof - num_finished_spaces = 2 - args_hash = {} - args_hash["num_floors"] = 1 - args_hash["garage_width"] = 12 - args_hash["foundation_height"] = 8.0 - args_hash["foundation_type"] = "finished basement" - args_hash["garage_protrusion"] = 1 - expected_num_del_objects = {} - expected_num_new_objects = { "BuildingUnit" => 1, "Surface" => 28, "ThermalZone" => 4, "Space" => 5, "SpaceType" => 5, "PeopleDefinition" => num_finished_spaces, "People" => num_finished_spaces, "ScheduleRuleset" => 1, "ShadingSurfaceGroup" => 2, "ShadingSurface" => 12, "ExternalFile" => 1, "ScheduleFile" => 1 } - expected_values = { "FinishedFloorArea" => 2000, "FinishedBasementHeight" => 8, "FinishedBasementFloorArea" => 2000 / 2, "UnfinishedAtticHeight" => 6.59, "UnfinishedAtticFloorArea" => 1240, "GarageAtticHeight" => 4, "GarageFloorArea" => 240, "BuildingHeight" => 8 + 8 + 6.59, "Beds" => 3.0, "Baths" => 2.0, "NumOccupants" => 2.64, "EavesDepth" => 2 } - _test_measure(nil, args_hash, expected_num_del_objects, expected_num_new_objects, expected_values, __method__) - end - - def test_twostory_fbasement_hasgarage_noprotrusion_garageright_garagetobackwall_gableroof - num_finished_spaces = 3 - args_hash = {} - args_hash["garage_width"] = 10 - args_hash["foundation_height"] = 8.0 - args_hash["foundation_type"] = "finished basement" - expected_num_del_objects = {} - expected_num_new_objects = { "BuildingUnit" => 1, "Surface" => 30, "ThermalZone" => 4, "Space" => 5, "SpaceType" => 4, "PeopleDefinition" => num_finished_spaces, "People" => num_finished_spaces, "ScheduleRuleset" => 1, "ShadingSurfaceGroup" => 2, "ShadingSurface" => 8, "ExternalFile" => 1, "ScheduleFile" => 1 } - expected_values = { "FinishedFloorArea" => 2000, "FinishedBasementHeight" => 8, "FinishedBasementFloorArea" => 600, "UnfinishedAtticHeight" => 6, "UnfinishedAtticFloorArea" => 800, "GarageAtticHeight" => 4, "GarageFloorArea" => 200, "BuildingHeight" => 8 + 8 + 8 + 6, "Beds" => 3.0, "Baths" => 2.0, "NumOccupants" => 2.64, "EavesDepth" => 2 } - _test_measure(nil, args_hash, expected_num_del_objects, expected_num_new_objects, expected_values, __method__) - end - - def test_twostory_fbasement_hasgarage_noprotrusion_garageright_gableroof - num_finished_spaces = 3 - args_hash = {} - args_hash["garage_width"] = 12 - args_hash["foundation_height"] = 8.0 - args_hash["foundation_type"] = "finished basement" - expected_num_del_objects = {} - expected_num_new_objects = { "BuildingUnit" => 1, "Surface" => 34, "ThermalZone" => 4, "Space" => 5, "SpaceType" => 4, "PeopleDefinition" => num_finished_spaces, "People" => num_finished_spaces, "ScheduleRuleset" => 1, "ShadingSurfaceGroup" => 2, "ShadingSurface" => 8, "ExternalFile" => 1, "ScheduleFile" => 1 } - expected_values = { "FinishedFloorArea" => 2000, "FinishedBasementHeight" => 8, "FinishedBasementFloorArea" => 586.66, "UnfinishedAtticHeight" => 6.08, "UnfinishedAtticFloorArea" => 826.66, "GarageAtticHeight" => 4, "GarageFloorArea" => 240, "BuildingHeight" => 8 + 8 + 8 + 6.08, "Beds" => 3.0, "Baths" => 2.0, "NumOccupants" => 2.64, "EavesDepth" => 2 } - _test_measure(nil, args_hash, expected_num_del_objects, expected_num_new_objects, expected_values, __method__) - end - - def test_twostory_fbasement_hasgarage_halfprotrusion_garageright_gableroof - num_finished_spaces = 3 - args_hash = {} - args_hash["garage_width"] = 12 - args_hash["foundation_height"] = 8.0 - args_hash["foundation_type"] = "finished basement" - args_hash["garage_protrusion"] = 0.5 - expected_num_del_objects = {} - expected_num_new_objects = { "BuildingUnit" => 1, "Surface" => 42, "ThermalZone" => 4, "Space" => 5, "SpaceType" => 4, "PeopleDefinition" => num_finished_spaces, "People" => num_finished_spaces, "ScheduleRuleset" => 1, "ShadingSurfaceGroup" => 2, "ShadingSurface" => 12, "ExternalFile" => 1, "ScheduleFile" => 1 } - expected_values = { "FinishedFloorArea" => 2000, "FinishedBasementHeight" => 8, "FinishedBasementFloorArea" => 586.66, "UnfinishedAtticHeight" => 5.69, "UnfinishedAtticFloorArea" => 826.66, "GarageAtticHeight" => 4, "GarageFloorArea" => 240, "BuildingHeight" => 8 + 8 + 8 + 5.69, "Beds" => 3.0, "Baths" => 2.0, "NumOccupants" => 2.64, "EavesDepth" => 2 } - _test_measure(nil, args_hash, expected_num_del_objects, expected_num_new_objects, expected_values, __method__) - end - - def test_twostory_fbasement_hasgarage_halfprotrusion_garageright_gableroof_fattic - num_finished_spaces = 4 - args_hash = {} - args_hash["garage_width"] = 12 - args_hash["foundation_height"] = 8.0 - args_hash["foundation_type"] = "finished basement" - args_hash["attic_type"] = "finished attic" - args_hash["garage_protrusion"] = 0.5 - expected_num_del_objects = {} - expected_num_new_objects = { "BuildingUnit" => 1, "Surface" => 42, "ThermalZone" => 3, "Space" => 5, "SpaceType" => 3, "PeopleDefinition" => num_finished_spaces, "People" => num_finished_spaces, "ScheduleRuleset" => 1, "ShadingSurfaceGroup" => 2, "ShadingSurface" => 12, "ExternalFile" => 1, "ScheduleFile" => 1 } - expected_values = { "FinishedFloorArea" => 2000, "FinishedBasementHeight" => 8, "FinishedBasementFloorArea" => 380, "FinishedAtticHeight" => 4.95, "FinishedAtticFloorArea" => 620, "GarageAtticHeight" => 4, "GarageFloorArea" => 240, "BuildingHeight" => 8 + 8 + 8 + 4.95, "Beds" => 3.0, "Baths" => 2.0, "NumOccupants" => 2.64, "EavesDepth" => 2 } - _test_measure(nil, args_hash, expected_num_del_objects, expected_num_new_objects, expected_values, __method__) - end - - def test_twostory_ubasement_hasgarage_halfprotrusion_garageright_gableroof_fattic - num_finished_spaces = 3 - args_hash = {} - args_hash["garage_width"] = 12 - args_hash["foundation_height"] = 8.0 - args_hash["foundation_type"] = "unfinished basement" - args_hash["attic_type"] = "finished attic" - args_hash["garage_protrusion"] = 0.5 - expected_num_del_objects = {} - expected_num_new_objects = { "BuildingUnit" => 1, "Surface" => 42, "ThermalZone" => 3, "Space" => 5, "SpaceType" => 3, "PeopleDefinition" => num_finished_spaces, "People" => num_finished_spaces, "ScheduleRuleset" => 1, "ShadingSurfaceGroup" => 2, "ShadingSurface" => 12, "ExternalFile" => 1, "ScheduleFile" => 1 } - expected_values = { "FinishedFloorArea" => 2000, "UnfinishedBasementHeight" => 8, "UnfinishedBasementFloorArea" => 506.66, "FinishedAtticHeight" => 5.43, "FinishedAtticFloorArea" => 746.66, "GarageAtticHeight" => 4, "GarageFloorArea" => 240, "BuildingHeight" => 8 + 8 + 8 + 5.43, "Beds" => 3.0, "Baths" => 2.0, "NumOccupants" => 2.64, "EavesDepth" => 2 } - _test_measure(nil, args_hash, expected_num_del_objects, expected_num_new_objects, expected_values, __method__) - end - - def test_twostory_fbasement_hasgarage_fullprotrusion_garageright_gableroof - num_finished_spaces = 3 - args_hash = {} - args_hash["garage_width"] = 12 - args_hash["foundation_height"] = 8.0 - args_hash["foundation_type"] = "finished basement" - args_hash["garage_protrusion"] = 1 - expected_num_del_objects = {} - expected_num_new_objects = { "BuildingUnit" => 1, "Surface" => 38, "ThermalZone" => 4, "Space" => 5, "SpaceType" => 4, "PeopleDefinition" => num_finished_spaces, "People" => num_finished_spaces, "ScheduleRuleset" => 1, "ShadingSurfaceGroup" => 2, "ShadingSurface" => 12, "ExternalFile" => 1, "ScheduleFile" => 1 } - expected_values = { "FinishedFloorArea" => 2000, "FinishedBasementHeight" => 8, "FinishedBasementFloorArea" => 586.66, "UnfinishedAtticHeight" => 5.28, "UnfinishedAtticFloorArea" => 826.66, "GarageAtticHeight" => 4, "GarageFloorArea" => 240, "BuildingHeight" => 8 + 8 + 8 + 5.28, "Beds" => 3.0, "Baths" => 2.0, "NumOccupants" => 2.64, "EavesDepth" => 2 } - _test_measure(nil, args_hash, expected_num_del_objects, expected_num_new_objects, expected_values, __method__) - end - - def test_onestory_fbasement_hasgarage_noprotrusion_garageleft_gableroof - num_finished_spaces = 2 - args_hash = {} - args_hash["num_floors"] = 1 - args_hash["garage_width"] = 12 - args_hash["garage_position"] = "Left" - args_hash["foundation_height"] = 8.0 - args_hash["foundation_type"] = "finished basement" - expected_num_del_objects = {} - expected_num_new_objects = { "BuildingUnit" => 1, "Surface" => 28, "ThermalZone" => 4, "Space" => 4, "SpaceType" => 4, "PeopleDefinition" => num_finished_spaces, "People" => num_finished_spaces, "ScheduleRuleset" => 1, "ShadingSurfaceGroup" => 2, "ShadingSurface" => 8, "ExternalFile" => 1, "ScheduleFile" => 1 } - expected_values = { "FinishedFloorArea" => 2000, "FinishedBasementHeight" => 8, "FinishedBasementFloorArea" => 1000, "UnfinishedAtticHeight" => 7.22, "UnfinishedAtticFloorArea" => 1240, "GarageAtticHeight" => 4, "GarageFloorArea" => 240, "BuildingHeight" => 8 + 8 + 7.22, "Beds" => 3.0, "Baths" => 2.0, "NumOccupants" => 2.64, "EavesDepth" => 2 } - _test_measure(nil, args_hash, expected_num_del_objects, expected_num_new_objects, expected_values, __method__) - end - - def test_onestory_fbasement_hasgarage_halfprotrusion_garageleft_gableroof - num_finished_spaces = 2 - args_hash = {} - args_hash["num_floors"] = 1 - args_hash["garage_width"] = 12 - args_hash["garage_position"] = "Left" - args_hash["foundation_height"] = 8.0 - args_hash["foundation_type"] = "finished basement" - args_hash["garage_protrusion"] = 0.5 - expected_num_del_objects = {} - expected_num_new_objects = { "BuildingUnit" => 1, "Surface" => 34, "ThermalZone" => 4, "Space" => 5, "SpaceType" => 5, "PeopleDefinition" => num_finished_spaces, "People" => num_finished_spaces, "ScheduleRuleset" => 1, "ShadingSurfaceGroup" => 2, "ShadingSurface" => 12, "ExternalFile" => 1, "ScheduleFile" => 1 } - expected_values = { "FinishedFloorArea" => 2000, "FinishedBasementHeight" => 8, "FinishedBasementFloorArea" => 1000, "UnfinishedAtticHeight" => 6.91, "UnfinishedAtticFloorArea" => 1240, "GarageAtticHeight" => 4, "GarageFloorArea" => 240, "BuildingHeight" => 8 + 8 + 6.91, "Beds" => 3.0, "Baths" => 2.0, "NumOccupants" => 2.64, "EavesDepth" => 2 } - _test_measure(nil, args_hash, expected_num_del_objects, expected_num_new_objects, expected_values, __method__) - end - - def test_onestory_fbasement_hasgarage_fullprotrusion_garageleft_gableroof - num_finished_spaces = 2 - args_hash = {} - args_hash["num_floors"] = 1 - args_hash["garage_width"] = 12 - args_hash["garage_position"] = "Left" - args_hash["foundation_height"] = 8.0 - args_hash["foundation_type"] = "finished basement" - args_hash["garage_protrusion"] = 1 - expected_num_del_objects = {} - expected_num_new_objects = { "BuildingUnit" => 1, "Surface" => 28, "ThermalZone" => 4, "Space" => 5, "SpaceType" => 5, "PeopleDefinition" => num_finished_spaces, "People" => num_finished_spaces, "ScheduleRuleset" => 1, "ShadingSurfaceGroup" => 2, "ShadingSurface" => 12, "ExternalFile" => 1, "ScheduleFile" => 1 } - expected_values = { "FinishedFloorArea" => 2000, "FinishedBasementHeight" => 8, "FinishedBasementFloorArea" => 2000 / 2, "UnfinishedAtticHeight" => 6.59, "UnfinishedAtticFloorArea" => 1240, "GarageAtticHeight" => 4, "GarageFloorArea" => 240, "BuildingHeight" => 8 + 8 + 6.59, "Beds" => 3.0, "Baths" => 2.0, "NumOccupants" => 2.64, "EavesDepth" => 2 } - _test_measure(nil, args_hash, expected_num_del_objects, expected_num_new_objects, expected_values, __method__) - end - - def test_twostory_fbasement_hasgarage_noprotrusion_garageleft_gableroof - num_finished_spaces = 3 - args_hash = {} - args_hash["garage_width"] = 12 - args_hash["garage_position"] = "Left" - args_hash["foundation_height"] = 8.0 - args_hash["foundation_type"] = "finished basement" - expected_num_del_objects = {} - expected_num_new_objects = { "BuildingUnit" => 1, "Surface" => 34, "ThermalZone" => 4, "Space" => 5, "SpaceType" => 4, "PeopleDefinition" => num_finished_spaces, "People" => num_finished_spaces, "ScheduleRuleset" => 1, "ShadingSurfaceGroup" => 2, "ShadingSurface" => 8, "ExternalFile" => 1, "ScheduleFile" => 1 } - expected_values = { "FinishedFloorArea" => 2000, "FinishedBasementHeight" => 8, "FinishedBasementFloorArea" => 586.66, "UnfinishedAtticHeight" => 6.08, "UnfinishedAtticFloorArea" => 826.66, "GarageAtticHeight" => 4, "GarageFloorArea" => 240, "BuildingHeight" => 8 + 8 + 8 + 6.08, "Beds" => 3.0, "Baths" => 2.0, "NumOccupants" => 2.64, "EavesDepth" => 2 } - _test_measure(nil, args_hash, expected_num_del_objects, expected_num_new_objects, expected_values, __method__) - end - - def test_twostory_fbasement_hasgarage_halfprotrusion_garageleft_gableroof - num_finished_spaces = 3 - args_hash = {} - args_hash["garage_width"] = 12 - args_hash["garage_position"] = "Left" - args_hash["foundation_height"] = 8.0 - args_hash["foundation_type"] = "finished basement" - args_hash["garage_protrusion"] = 0.5 - expected_num_del_objects = {} - expected_num_new_objects = { "BuildingUnit" => 1, "Surface" => 42, "ThermalZone" => 4, "Space" => 5, "SpaceType" => 4, "PeopleDefinition" => num_finished_spaces, "People" => num_finished_spaces, "ScheduleRuleset" => 1, "ShadingSurfaceGroup" => 2, "ShadingSurface" => 12, "ExternalFile" => 1, "ScheduleFile" => 1 } - expected_values = { "FinishedFloorArea" => 2000, "FinishedBasementHeight" => 8, "FinishedBasementFloorArea" => 586.66, "UnfinishedAtticHeight" => 5.69, "UnfinishedAtticFloorArea" => 826.66, "GarageAtticHeight" => 4, "GarageFloorArea" => 240, "BuildingHeight" => 8 + 8 + 8 + 5.69, "Beds" => 3.0, "Baths" => 2.0, "NumOccupants" => 2.64, "EavesDepth" => 2 } - _test_measure(nil, args_hash, expected_num_del_objects, expected_num_new_objects, expected_values, __method__) - end - - def test_twostory_fbasement_hasgarage_fullprotrusion_garageleft_gableroof - num_finished_spaces = 3 - args_hash = {} - args_hash["garage_width"] = 12 - args_hash["garage_position"] = "Left" - args_hash["foundation_height"] = 8.0 - args_hash["foundation_type"] = "finished basement" - args_hash["garage_protrusion"] = 1 - expected_num_del_objects = {} - expected_num_new_objects = { "BuildingUnit" => 1, "Surface" => 38, "ThermalZone" => 4, "Space" => 5, "SpaceType" => 4, "PeopleDefinition" => num_finished_spaces, "People" => num_finished_spaces, "ScheduleRuleset" => 1, "ShadingSurfaceGroup" => 2, "ShadingSurface" => 12, "ExternalFile" => 1, "ScheduleFile" => 1 } - expected_values = { "FinishedFloorArea" => 2000, "FinishedBasementHeight" => 8, "FinishedBasementFloorArea" => 586.66, "UnfinishedAtticHeight" => 5.28, "UnfinishedAtticFloorArea" => 826.66, "GarageAtticHeight" => 4, "GarageFloorArea" => 240, "BuildingHeight" => 8 + 8 + 8 + 5.28, "Beds" => 3.0, "Baths" => 2.0, "NumOccupants" => 2.64, "EavesDepth" => 2 } - _test_measure(nil, args_hash, expected_num_del_objects, expected_num_new_objects, expected_values, __method__) - end - - def test_twostory_slab_hasgarage_noprotrusion_garageright_hiproof - num_finished_spaces = 2 - args_hash = {} - args_hash["garage_width"] = 12 - args_hash["roof_type"] = Constants.RoofTypeHip - expected_num_del_objects = {} - expected_num_new_objects = { "BuildingUnit" => 1, "Surface" => 26, "ThermalZone" => 3, "Space" => 4, "SpaceType" => 3, "PeopleDefinition" => num_finished_spaces, "People" => num_finished_spaces, "ScheduleRuleset" => 1, "ShadingSurfaceGroup" => 2, "ShadingSurface" => 6, "ExternalFile" => 1, "ScheduleFile" => 1 } - expected_values = { "FinishedFloorArea" => 2000, "FinishedBasementHeight" => 8, "FinishedBasementFloorArea" => 2000 / 2, "UnfinishedAtticHeight" => 6.91, "UnfinishedAtticFloorArea" => 1120, "GarageAtticHeight" => 4, "GarageFloorArea" => 240, "BuildingHeight" => 8 + 8 + 6.91, "Beds" => 3.0, "Baths" => 2.0, "NumOccupants" => 2.64, "EavesDepth" => 2 } - _test_measure(nil, args_hash, expected_num_del_objects, expected_num_new_objects, expected_values, __method__) - end - - def test_gable_ridge_front_to_back - num_finished_spaces = 2 - args_hash = {} - args_hash["aspect_ratio"] = 0.75 - expected_num_del_objects = {} - expected_num_new_objects = { "BuildingUnit" => 1, "Surface" => 17, "ThermalZone" => 2, "Space" => 3, "SpaceType" => 2, "PeopleDefinition" => num_finished_spaces, "People" => num_finished_spaces, "ScheduleRuleset" => 1, "ShadingSurfaceGroup" => 2, "ShadingSurface" => 8, "ExternalFile" => 1, "ScheduleFile" => 1 } - expected_values = { "FinishedFloorArea" => 2000, "FinishedBasementHeight" => 8, "FinishedBasementFloorArea" => 2000 / 2, "UnfinishedAtticHeight" => 7.84, "UnfinishedAtticFloorArea" => 2000 / 2, "BuildingHeight" => 8 + 8 + 7.84, "Beds" => 3.0, "Baths" => 2.0, "NumOccupants" => 2.64, "EavesDepth" => 2 } - _test_measure(nil, args_hash, expected_num_del_objects, expected_num_new_objects, expected_values, __method__) - end - - def test_hip_ridge_front_to_back - num_finished_spaces = 2 - args_hash = {} - args_hash["aspect_ratio"] = 0.75 - args_hash["roof_type"] = Constants.RoofTypeHip - expected_num_del_objects = {} - expected_num_new_objects = { "BuildingUnit" => 1, "Surface" => 17, "ThermalZone" => 2, "Space" => 3, "SpaceType" => 2, "PeopleDefinition" => num_finished_spaces, "People" => num_finished_spaces, "ScheduleRuleset" => 1, "ShadingSurfaceGroup" => 2, "ShadingSurface" => 6, "ExternalFile" => 1, "ScheduleFile" => 1 } - expected_values = { "FinishedFloorArea" => 2000, "FinishedBasementHeight" => 8, "FinishedBasementFloorArea" => 2000 / 2, "UnfinishedAtticHeight" => 7.84, "UnfinishedAtticFloorArea" => 2000 / 2, "BuildingHeight" => 8 + 8 + 7.84, "Beds" => 3.0, "Baths" => 2.0, "NumOccupants" => 2.64, "EavesDepth" => 2 } - _test_measure(nil, args_hash, expected_num_del_objects, expected_num_new_objects, expected_values, __method__) - end - - def test_threestory_ufbasement_halfprotrusion_garageright_gableroof - num_finished_spaces = 3 - args_hash = {} - args_hash["aspect_ratio"] = "1.8" - args_hash["foundation_height"] = "8" - args_hash["foundation_type"] = "unfinished basement" - args_hash["garage_depth"] = "24" - args_hash["garage_protrusion"] = "0.5" - args_hash["garage_width"] = "12" - args_hash["num_floors"] = "3" - args_hash["total_ffa"] = "4500" - expected_num_del_objects = {} - expected_num_new_objects = { "BuildingUnit" => 1, "Surface" => 50, "ThermalZone" => 4, "Space" => 6, "SpaceType" => 4, "PeopleDefinition" => num_finished_spaces, "People" => num_finished_spaces, "ScheduleRuleset" => 1, "ShadingSurfaceGroup" => 2, "ShadingSurface" => 12, "ExternalFile" => 1, "ScheduleFile" => 1 } - expected_values = { "FinishedFloorArea" => 4500, "UnfinishedBasementHeight" => 8, "UnfinishedBasementFloorArea" => 1308, "UnfinishedAtticHeight" => 8.10, "UnfinishedAtticFloorArea" => 1596, "GarageAtticHeight" => 4, "GarageFloorArea" => 288, "BuildingHeight" => 8 + 8 + 8 + 8 + 8.10, "Beds" => 3.0, "Baths" => 2.0, "NumOccupants" => 2.64, "EavesDepth" => 2 } - _test_measure(nil, args_hash, expected_num_del_objects, expected_num_new_objects, expected_values, __method__) - end - - def test_argument_error_beds_not_equal_to_baths - args_hash = {} - args_hash["num_bedrooms"] = "3.0, 3.0, 3.0" - args_hash["num_bathrooms"] = "2.0, 2.0" - result = _test_error(nil, args_hash) - assert_includes(result.errors.map { |x| x.logMessage }, "Number of bedroom elements specified inconsistent with number of bathroom elements specified.") - end - - def test_argument_error_beds_not_equal_to_units - args_hash = {} - args_hash["num_bedrooms"] = "3.0, 3.0" - result = _test_error(nil, args_hash) - assert_includes(result.errors.map { |x| x.logMessage }, "Number of bedroom elements specified inconsistent with number of multifamily units defined in the model.") - end - - def test_argument_error_baths_not_equal_to_units - args_hash = {} - args_hash["num_bathrooms"] = "2.0, 2.0" - result = _test_error(nil, args_hash) - assert_includes(result.errors.map { |x| x.logMessage }, "Number of bathroom elements specified inconsistent with number of multifamily units defined in the model.") - end - - def test_argument_error_beds_not_numerical - args_hash = {} - args_hash["num_bedrooms"] = "3.0, 3.0, typo" - result = _test_error(nil, args_hash) - assert_includes(result.errors.map { |x| x.logMessage }, "Number of bedrooms must be a numerical value.") - end - - def test_argument_error_baths_not_numerical - args_hash = {} - args_hash["num_bathrooms"] = "2.0, 2.0, typo" - result = _test_error(nil, args_hash) - assert_includes(result.errors.map { |x| x.logMessage }, "Number of bathrooms must be a numerical value.") - end - - def test_argument_error_beds_not_integer - args_hash = {} - args_hash["num_bedrooms"] = "3.0, 3.0, 3.5" - result = _test_error(nil, args_hash) - assert_includes(result.errors.map { |x| x.logMessage }, "Number of bedrooms must be a non-negative integer.") - end - - def test_argument_error_baths_not_positive_multiple_of_0pt25 - args_hash = {} - args_hash["num_bathrooms"] = "2.0, 2.0, 2.8" - result = _test_error(nil, args_hash) - assert_includes(result.errors.map { |x| x.logMessage }, "Number of bathrooms must be a positive multiple of 0.25.") - end - - def test_error_invalid_eaves_depth - args_hash = {} - args_hash["eaves_depth"] = -1 - result = _test_error(nil, args_hash) - assert(result.errors.size == 1) - assert_equal("Fail", result.value.valueName) - assert_includes(result.errors.map { |x| x.logMessage }, "Eaves depth must be greater than or equal to 0.") - end - - def test_error_invalid_neighbor_offset - args_hash = {} - args_hash["neighbor_left_offset"] = -10 - result = _test_error(nil, args_hash) - assert(result.errors.size == 1) - assert_equal("Fail", result.value.valueName) - assert_includes(result.errors.map { |x| x.logMessage }, "Neighbor offsets must be greater than or equal to 0.") - end - - def test_error_invalid_orientation - args_hash = {} - args_hash["orientation"] = -180 - result = _test_error(nil, args_hash) - assert_includes(result.errors.map { |x| x.logMessage }, "Invalid orientation entered.") - end - - private - - def _test_error(osm_file_or_model, args_hash) - # create an instance of the measure - measure = CreateResidentialSingleFamilyDetachedGeometry.new - - # create an instance of a runner - runner = OpenStudio::Measure::OSRunner.new(OpenStudio::WorkflowJSON.new) - - model = get_model(File.dirname(__FILE__), osm_file_or_model) - - # get arguments - arguments = measure.arguments(model) - argument_map = OpenStudio::Measure.convertOSArgumentVectorToMap(arguments) - - # populate argument with specified hash value if specified - arguments.each do |arg| - temp_arg_var = arg.clone - if args_hash.has_key?(arg.name) - assert(temp_arg_var.setValue(args_hash[arg.name])) - end - argument_map[arg.name] = temp_arg_var - end - - # run the measure - measure.run(model, runner, argument_map) - result = runner.result - - # show the output - show_output(result) unless result.value.valueName == 'Fail' - - # assert that it didn't run - assert_equal("Fail", result.value.valueName) - assert(result.errors.size == 1) - - return result - end - - def _test_measure(osm_file_or_model, args_hash, expected_num_del_objects, expected_num_new_objects, expected_values, test_name) - # create an instance of the measure - measure = CreateResidentialSingleFamilyDetachedGeometry.new - - # check for standard methods - assert(!measure.name.empty?) - assert(!measure.description.empty?) - assert(!measure.modeler_description.empty?) - - # create an instance of a runner - runner = OpenStudio::Measure::OSRunner.new(OpenStudio::WorkflowJSON.new) - - model = get_model(File.dirname(__FILE__), osm_file_or_model) - - # get the initial objects in the model - initial_objects = get_objects(model) - - # get arguments - arguments = measure.arguments(model) - argument_map = OpenStudio::Measure.convertOSArgumentVectorToMap(arguments) - - # populate argument with specified hash value if specified - arguments.each do |arg| - temp_arg_var = arg.clone - if args_hash.has_key?(arg.name) - assert(temp_arg_var.setValue(args_hash[arg.name])) - end - argument_map[arg.name] = temp_arg_var - end - - # run the measure - measure.run(model, runner, argument_map) - result = runner.result - - # save the model to test output directory - # output_file_path = OpenStudio::Path.new(File.dirname(__FILE__) + "/output/#{test_name}.osm") - # model.save(output_file_path, true) - - # show the output - show_output(result) unless result.value.valueName == 'Success' - - # assert that it ran correctly - assert_equal("Success", result.value.valueName) - - # get the final objects in the model - final_objects = get_objects(model) - - # get new and deleted objects - obj_type_exclusions = ["PortList", "Node", "ZoneEquipmentList", "SizingZone", "ZoneHVACEquipmentList", "Building", "ScheduleRule", "ScheduleDay", "ScheduleTypeLimits", "YearDescription"] - all_new_objects = get_object_additions(initial_objects, final_objects, obj_type_exclusions) - all_del_objects = get_object_additions(final_objects, initial_objects, obj_type_exclusions) - - # check we have the expected number of new/deleted objects - check_num_objects(all_new_objects, expected_num_new_objects, "added") - check_num_objects(all_del_objects, expected_num_del_objects, "deleted") - - actual_values = { "FinishedFloorArea" => 0, "GarageFloorArea" => 0, "FinishedBasementFloorArea" => 0, "UnfinishedBasementFloorArea" => 0, "CrawlspaceFloorArea" => 0, "UnfinishedAtticFloorArea" => 0, "FinishedAtticFloorArea" => 0, "BuildingHeight" => 0, "GarageAtticHeight" => 0, "FinishedBasementHeight" => 0, "UnfinishedBasementHeight" => 0, "CrawlspaceHeight" => 0, "UnfinishedAtticHeight" => 0, "FinishedAtticHeight" => 0, "NumOccupants" => 0 } - new_spaces = [] - all_new_objects.each do |obj_type, new_objects| - new_objects.each do |new_object| - next if not new_object.respond_to?("to_#{obj_type}") - - new_object = new_object.public_send("to_#{obj_type}").get - if obj_type == "Space" - if new_object.name.to_s.start_with?("garage attic space") - actual_values["GarageAtticHeight"] = Geometry.get_height_of_spaces([new_object]) - actual_values["UnfinishedAtticFloorArea"] += UnitConversions.convert(new_object.floorArea, "m^2", "ft^2") - elsif new_object.name.to_s.start_with?("garage space") - actual_values["GarageFloorArea"] += UnitConversions.convert(new_object.floorArea, "m^2", "ft^2") - elsif new_object.name.to_s.start_with?("finished basement") - actual_values["FinishedBasementHeight"] = Geometry.get_height_of_spaces([new_object]) - actual_values["FinishedBasementFloorArea"] += UnitConversions.convert(new_object.floorArea, "m^2", "ft^2") - elsif new_object.name.to_s.start_with?("unfinished basement") - actual_values["UnfinishedBasementHeight"] = Geometry.get_height_of_spaces([new_object]) - actual_values["UnfinishedBasementFloorArea"] += UnitConversions.convert(new_object.floorArea, "m^2", "ft^2") - elsif new_object.name.to_s.start_with?("crawlspace") - actual_values["CrawlspaceHeight"] = Geometry.get_height_of_spaces([new_object]) - actual_values["CrawlspaceFloorArea"] += UnitConversions.convert(new_object.floorArea, "m^2", "ft^2") - elsif new_object.name.to_s.start_with?("unfinished attic") - actual_values["UnfinishedAtticHeight"] = Geometry.get_height_of_spaces([new_object]) - actual_values["UnfinishedAtticFloorArea"] += UnitConversions.convert(new_object.floorArea, "m^2", "ft^2") - elsif new_object.name.to_s.start_with?("finished attic") or new_object.name.to_s.start_with?("garage #{"finished attic"}") - if Geometry.get_height_of_spaces([new_object]) > actual_values["FinishedAtticHeight"] - actual_values["FinishedAtticHeight"] = Geometry.get_height_of_spaces([new_object]) - end - actual_values["FinishedAtticFloorArea"] += UnitConversions.convert(new_object.floorArea, "m^2", "ft^2") - end - if Geometry.space_is_finished(new_object) - actual_values["FinishedFloorArea"] += UnitConversions.convert(new_object.floorArea, "m^2", "ft^2") - end - new_spaces << new_object - elsif obj_type == "People" - actual_values["NumOccupants"] += new_object.peopleDefinition.numberofPeople.get - elsif obj_type == "ShadingSurface" - next unless new_object.name.to_s.include? Constants.ObjectNameEaves - - l, w, h = Geometry.get_surface_dimensions(new_object) - actual_values["EavesDepth"] = [UnitConversions.convert(l, "m", "ft"), UnitConversions.convert(w, "m", "ft")].min - assert_in_epsilon(expected_values["EavesDepth"], actual_values["EavesDepth"], 0.01) - end - end - end - if new_spaces.any? { |new_space| new_space.name.to_s.start_with?("garage attic space") } - assert_in_epsilon(expected_values["GarageAtticHeight"], actual_values["GarageAtticHeight"], 0.01) - end - if new_spaces.any? { |new_space| new_space.name.to_s.start_with?("garage space") } - assert_in_epsilon(expected_values["GarageFloorArea"], actual_values["GarageFloorArea"], 0.01) - end - if new_spaces.any? { |new_space| new_space.name.to_s.start_with?("finished basement") } - assert_in_epsilon(expected_values["FinishedBasementHeight"], actual_values["FinishedBasementHeight"], 0.01) - assert_in_epsilon(expected_values["FinishedBasementFloorArea"], actual_values["FinishedBasementFloorArea"], 0.01) - end - if new_spaces.any? { |new_space| new_space.name.to_s.start_with?("unfinished basement") } - assert_in_epsilon(expected_values["UnfinishedBasementHeight"], actual_values["UnfinishedBasementHeight"], 0.01) - assert_in_epsilon(expected_values["UnfinishedBasementFloorArea"], actual_values["UnfinishedBasementFloorArea"], 0.01) - end - if new_spaces.any? { |new_space| new_space.name.to_s.start_with?("crawlspace") } - assert_in_epsilon(expected_values["CrawlspaceHeight"], actual_values["CrawlspaceHeight"], 0.01) - assert_in_epsilon(expected_values["CrawlspaceFloorArea"], actual_values["CrawlspaceFloorArea"], 0.01) - end - if new_spaces.any? { |new_space| new_space.name.to_s.start_with?("unfinished attic") } - assert_in_epsilon(expected_values["UnfinishedAtticHeight"], actual_values["UnfinishedAtticHeight"], 0.01) - assert_in_epsilon(expected_values["UnfinishedAtticFloorArea"], actual_values["UnfinishedAtticFloorArea"], 0.01) - end - if new_spaces.any? { |new_space| new_space.name.to_s.start_with?("finished attic") } - assert_in_epsilon(expected_values["FinishedAtticHeight"], actual_values["FinishedAtticHeight"], 0.01) - assert_in_epsilon(expected_values["FinishedAtticFloorArea"], actual_values["FinishedAtticFloorArea"], 0.01) - end - assert_in_epsilon(expected_values["FinishedFloorArea"], actual_values["FinishedFloorArea"], 0.01) - assert_in_epsilon(expected_values["BuildingHeight"], Geometry.get_height_of_spaces(new_spaces), 0.01) - assert_in_epsilon(expected_values["NumOccupants"], actual_values["NumOccupants"], 0.01) - - # Ensure no surfaces adjacent to "ground" (should be Kiva "foundation") - model.getSurfaces.each do |surface| - refute_equal(surface.outsideBoundaryCondition.downcase, "ground") - end - - Geometry.get_building_units(model, runner).each do |unit| - nbeds, nbaths = Geometry.get_unit_beds_baths(model, unit, runner) - assert_equal(expected_values["Beds"], nbeds) - assert_equal(expected_values["Baths"], nbaths) - end - - return model - end -end diff --git a/example_files/residential/clothes_dryer.tsv b/example_files/residential/clothes_dryer.tsv index e2393664..322ccabe 100644 --- a/example_files/residential/clothes_dryer.tsv +++ b/example_files/residential/clothes_dryer.tsv @@ -1,7 +1,7 @@ -Dependency=Template Month Dependency=Template Year Dependency=clothes_dryer_fuel_type clothes_dryer_efficiency_cef clothes_dryer_control_type Source - lb/kWh type -Sep 2020 electricity 3.93 timer "ResStock ""Electric, Premium, EnergyStar 100% Usage""" -Sep 2020 natural gas 3.03 timer "ResStock ""Gas, Premium, 100% Usage""" -Sep 2020 fuel oil 3.03 timer Engineering judgment -Sep 2020 propane 3.03 timer Engineering judgment -Sep 2020 wood 3.03 timer Engineering judgment +Dependency=Template Month Dependency=Template Year Dependency=clothes_dryer_fuel_type clothes_dryer_efficiency Source + lb/kWh +Sep 2020 electricity 3.93 "ResStock ""Electric, Premium, EnergyStar 100% Usage""" +Sep 2020 natural gas 3.03 "ResStock ""Gas, Premium, 100% Usage""" +Sep 2020 fuel oil 3.03 Engineering judgment +Sep 2020 propane 3.03 Engineering judgment +Sep 2020 wood 3.03 Engineering judgment diff --git a/example_files/residential/clothes_washer.tsv b/example_files/residential/clothes_washer.tsv index 58a3b7d8..657da9ad 100644 --- a/example_files/residential/clothes_washer.tsv +++ b/example_files/residential/clothes_washer.tsv @@ -1,3 +1,3 @@ -Dependency=Template Month Dependency=Template Year clothes_washer_efficiency_imef clothes_washer_rated_annual_kwh clothes_washer_label_electric_rate clothes_washer_label_gas_rate clothes_washer_label_annual_gas_cost clothes_washer_label_usage clothes_washer_capacity Source +Dependency=Template Month Dependency=Template Year clothes_washer_efficiency clothes_washer_rated_annual_kwh clothes_washer_label_electric_rate clothes_washer_label_gas_rate clothes_washer_label_annual_gas_cost clothes_washer_label_usage clothes_washer_capacity Source ft^2/kWh-cyc kWh/yr $/kWh $/therm $ cyc/wk ft^3 Sep 2020 2.92 75 0.12 1.09 7 6 4.5 "ResStock ""EnergyStar Most Efficient, 100% Usage""" diff --git a/example_files/residential/cooling_system.tsv b/example_files/residential/cooling_system.tsv index 8bccf979..6c29ab08 100644 --- a/example_files/residential/cooling_system.tsv +++ b/example_files/residential/cooling_system.tsv @@ -1,22 +1,42 @@ -Dependency=Climate Zone Dependency=Template Month Dependency=Template Year Dependency=cooling_system_type cooling_system_cooling_efficiency_seer Source - SEER -1A Sep 2020 central air conditioner 15 "National ERI Target Procedure ENERGY STAR Certified Homes, Version 3.1 (Rev. 10)" -1B Sep 2020 central air conditioner 15 "National ERI Target Procedure ENERGY STAR Certified Homes, Version 3.1 (Rev. 10)" -1C Sep 2020 central air conditioner 15 "National ERI Target Procedure ENERGY STAR Certified Homes, Version 3.1 (Rev. 10)" -2A Sep 2020 central air conditioner 15 "National ERI Target Procedure ENERGY STAR Certified Homes, Version 3.1 (Rev. 10)" -2B Sep 2020 central air conditioner 15 "National ERI Target Procedure ENERGY STAR Certified Homes, Version 3.1 (Rev. 10)" -2C Sep 2020 central air conditioner 15 "National ERI Target Procedure ENERGY STAR Certified Homes, Version 3.1 (Rev. 10)" -3A Sep 2020 central air conditioner 15 "National ERI Target Procedure ENERGY STAR Certified Homes, Version 3.1 (Rev. 10)" -3B Sep 2020 central air conditioner 15 "National ERI Target Procedure ENERGY STAR Certified Homes, Version 3.1 (Rev. 10)" -3C Sep 2020 central air conditioner 15 "National ERI Target Procedure ENERGY STAR Certified Homes, Version 3.1 (Rev. 10)" -4A Sep 2020 central air conditioner 13 "National ERI Target Procedure ENERGY STAR Certified Homes, Version 3.1 (Rev. 10)" -4B Sep 2020 central air conditioner 13 "National ERI Target Procedure ENERGY STAR Certified Homes, Version 3.1 (Rev. 10)" -4C Sep 2020 central air conditioner 13 "National ERI Target Procedure ENERGY STAR Certified Homes, Version 3.1 (Rev. 10)" -5A Sep 2020 central air conditioner 13 "National ERI Target Procedure ENERGY STAR Certified Homes, Version 3.1 (Rev. 10)" -5B Sep 2020 central air conditioner 13 "National ERI Target Procedure ENERGY STAR Certified Homes, Version 3.1 (Rev. 10)" -5C Sep 2020 central air conditioner 13 "National ERI Target Procedure ENERGY STAR Certified Homes, Version 3.1 (Rev. 10)" -6A Sep 2020 central air conditioner 13 "National ERI Target Procedure ENERGY STAR Certified Homes, Version 3.1 (Rev. 10)" -6B Sep 2020 central air conditioner 13 "National ERI Target Procedure ENERGY STAR Certified Homes, Version 3.1 (Rev. 10)" -6C Sep 2020 central air conditioner 13 "National ERI Target Procedure ENERGY STAR Certified Homes, Version 3.1 (Rev. 10)" -7 Sep 2020 central air conditioner 13 "National ERI Target Procedure ENERGY STAR Certified Homes, Version 3.1 (Rev. 10)" -8 Sep 2020 central air conditioner 13 "National ERI Target Procedure ENERGY STAR Certified Homes, Version 3.1 (Rev. 10)" +Dependency=Climate Zone Dependency=Template Month Dependency=Template Year Dependency=cooling_system_type cooling_system_cooling_efficiency_type cooling_system_cooling_efficiency Source + +1A Sep 2020 central air conditioner SEER 15 "National ERI Target Procedure ENERGY STAR Certified Homes, Version 3.1 (Rev. 10)" +1B Sep 2020 central air conditioner SEER 15 "National ERI Target Procedure ENERGY STAR Certified Homes, Version 3.1 (Rev. 10)" +1C Sep 2020 central air conditioner SEER 15 "National ERI Target Procedure ENERGY STAR Certified Homes, Version 3.1 (Rev. 10)" +2A Sep 2020 central air conditioner SEER 15 "National ERI Target Procedure ENERGY STAR Certified Homes, Version 3.1 (Rev. 10)" +2B Sep 2020 central air conditioner SEER 15 "National ERI Target Procedure ENERGY STAR Certified Homes, Version 3.1 (Rev. 10)" +2C Sep 2020 central air conditioner SEER 15 "National ERI Target Procedure ENERGY STAR Certified Homes, Version 3.1 (Rev. 10)" +3A Sep 2020 central air conditioner SEER 15 "National ERI Target Procedure ENERGY STAR Certified Homes, Version 3.1 (Rev. 10)" +3B Sep 2020 central air conditioner SEER 15 "National ERI Target Procedure ENERGY STAR Certified Homes, Version 3.1 (Rev. 10)" +3C Sep 2020 central air conditioner SEER 15 "National ERI Target Procedure ENERGY STAR Certified Homes, Version 3.1 (Rev. 10)" +4A Sep 2020 central air conditioner SEER 13 "National ERI Target Procedure ENERGY STAR Certified Homes, Version 3.1 (Rev. 10)" +4B Sep 2020 central air conditioner SEER 13 "National ERI Target Procedure ENERGY STAR Certified Homes, Version 3.1 (Rev. 10)" +4C Sep 2020 central air conditioner SEER 13 "National ERI Target Procedure ENERGY STAR Certified Homes, Version 3.1 (Rev. 10)" +5A Sep 2020 central air conditioner SEER 13 "National ERI Target Procedure ENERGY STAR Certified Homes, Version 3.1 (Rev. 10)" +5B Sep 2020 central air conditioner SEER 13 "National ERI Target Procedure ENERGY STAR Certified Homes, Version 3.1 (Rev. 10)" +5C Sep 2020 central air conditioner SEER 13 "National ERI Target Procedure ENERGY STAR Certified Homes, Version 3.1 (Rev. 10)" +6A Sep 2020 central air conditioner SEER 13 "National ERI Target Procedure ENERGY STAR Certified Homes, Version 3.1 (Rev. 10)" +6B Sep 2020 central air conditioner SEER 13 "National ERI Target Procedure ENERGY STAR Certified Homes, Version 3.1 (Rev. 10)" +6C Sep 2020 central air conditioner SEER 13 "National ERI Target Procedure ENERGY STAR Certified Homes, Version 3.1 (Rev. 10)" +7 Sep 2020 central air conditioner SEER 13 "National ERI Target Procedure ENERGY STAR Certified Homes, Version 3.1 (Rev. 10)" +8 Sep 2020 central air conditioner SEER 13 "National ERI Target Procedure ENERGY STAR Certified Homes, Version 3.1 (Rev. 10)" +1A Sep 2020 room air conditioner EER 8.5 "ResStock ""Room AC, EER 8.5""" +1B Sep 2020 room air conditioner EER 8.5 "ResStock ""Room AC, EER 8.5""" +1C Sep 2020 room air conditioner EER 8.5 "ResStock ""Room AC, EER 8.5""" +2A Sep 2020 room air conditioner EER 8.5 "ResStock ""Room AC, EER 8.5""" +2B Sep 2020 room air conditioner EER 8.5 "ResStock ""Room AC, EER 8.5""" +2C Sep 2020 room air conditioner EER 8.5 "ResStock ""Room AC, EER 8.5""" +3A Sep 2020 room air conditioner EER 8.5 "ResStock ""Room AC, EER 8.5""" +3B Sep 2020 room air conditioner EER 8.5 "ResStock ""Room AC, EER 8.5""" +3C Sep 2020 room air conditioner EER 8.5 "ResStock ""Room AC, EER 8.5""" +4A Sep 2020 room air conditioner EER 8.5 "ResStock ""Room AC, EER 8.5""" +4B Sep 2020 room air conditioner EER 8.5 "ResStock ""Room AC, EER 8.5""" +4C Sep 2020 room air conditioner EER 8.5 "ResStock ""Room AC, EER 8.5""" +5A Sep 2020 room air conditioner EER 8.5 "ResStock ""Room AC, EER 8.5""" +5B Sep 2020 room air conditioner EER 8.5 "ResStock ""Room AC, EER 8.5""" +5C Sep 2020 room air conditioner EER 8.5 "ResStock ""Room AC, EER 8.5""" +6A Sep 2020 room air conditioner EER 8.5 "ResStock ""Room AC, EER 8.5""" +6B Sep 2020 room air conditioner EER 8.5 "ResStock ""Room AC, EER 8.5""" +6C Sep 2020 room air conditioner EER 8.5 "ResStock ""Room AC, EER 8.5""" +7 Sep 2020 room air conditioner EER 8.5 "ResStock ""Room AC, EER 8.5""" +8 Sep 2020 room air conditioner EER 8.5 "ResStock ""Room AC, EER 8.5""" diff --git a/example_files/residential/dishwasher.tsv b/example_files/residential/dishwasher.tsv index 8a63fd72..030f4c84 100644 --- a/example_files/residential/dishwasher.tsv +++ b/example_files/residential/dishwasher.tsv @@ -1,3 +1,3 @@ -Dependency=Template Month Dependency=Template Year dishwasher_efficiency_kwh dishwasher_label_electric_rate dishwasher_label_gas_rate dishwasher_label_annual_gas_cost dishwasher_label_usage dishwasher_place_setting_capacity Source +Dependency=Template Month Dependency=Template Year dishwasher_efficiency dishwasher_label_electric_rate dishwasher_label_gas_rate dishwasher_label_annual_gas_cost dishwasher_label_usage dishwasher_place_setting_capacity Source kWh/yr $/kWh $/therm $ cyc/wk # Sep 2020 199 0.12 1.09 18 4 12 "ResStock ""199 Rated kWh, 100% Usage""" diff --git a/example_files/residential/exhaust.tsv b/example_files/residential/exhaust.tsv new file mode 100644 index 00000000..f535f9e5 --- /dev/null +++ b/example_files/residential/exhaust.tsv @@ -0,0 +1,3 @@ +Dependency=Template Month Dependency=Template Year kitchen_fans_quantity bathroom_fans_quantity + +Sep 2020 auto auto diff --git a/example_files/residential/heat_pump.tsv b/example_files/residential/heat_pump.tsv index a192c832..f8ff124b 100644 --- a/example_files/residential/heat_pump.tsv +++ b/example_files/residential/heat_pump.tsv @@ -1,40 +1,62 @@ -Dependency=Climate Zone Dependency=Template Month Dependency=Template Year Dependency=heat_pump_type heat_pump_heating_efficiency_hspf heat_pump_heating_efficiency_cop heat_pump_cooling_efficiency_seer heat_pump_cooling_efficiency_eer heat_pump_backup_fuel Source - HSPF COP SEER EER type -1A Sep 2020 air-to-air 8.2 15 electricity "National ERI Target Procedure ENERGY STAR Certified Homes, Version 3.1 (Rev. 10)" -1B Sep 2020 air-to-air 8.2 15 electricity "National ERI Target Procedure ENERGY STAR Certified Homes, Version 3.1 (Rev. 10)" -1C Sep 2020 air-to-air 8.2 15 electricity "National ERI Target Procedure ENERGY STAR Certified Homes, Version 3.1 (Rev. 10)" -2A Sep 2020 air-to-air 8.2 15 electricity "National ERI Target Procedure ENERGY STAR Certified Homes, Version 3.1 (Rev. 10)" -2B Sep 2020 air-to-air 8.2 15 electricity "National ERI Target Procedure ENERGY STAR Certified Homes, Version 3.1 (Rev. 10)" -2C Sep 2020 air-to-air 8.2 15 electricity "National ERI Target Procedure ENERGY STAR Certified Homes, Version 3.1 (Rev. 10)" -3A Sep 2020 air-to-air 8.2 15 electricity "National ERI Target Procedure ENERGY STAR Certified Homes, Version 3.1 (Rev. 10)" -3B Sep 2020 air-to-air 8.2 15 electricity "National ERI Target Procedure ENERGY STAR Certified Homes, Version 3.1 (Rev. 10)" -3C Sep 2020 air-to-air 8.2 15 electricity "National ERI Target Procedure ENERGY STAR Certified Homes, Version 3.1 (Rev. 10)" -4A Sep 2020 air-to-air 8.5 15 electricity "National ERI Target Procedure ENERGY STAR Certified Homes, Version 3.1 (Rev. 10)" -4B Sep 2020 air-to-air 8.5 15 electricity "National ERI Target Procedure ENERGY STAR Certified Homes, Version 3.1 (Rev. 10)" -4C Sep 2020 air-to-air 9.25 15 electricity "National ERI Target Procedure ENERGY STAR Certified Homes, Version 3.1 (Rev. 10)" -5A Sep 2020 air-to-air 9.25 15 electricity "National ERI Target Procedure ENERGY STAR Certified Homes, Version 3.1 (Rev. 10)" -5B Sep 2020 air-to-air 9.25 15 electricity "National ERI Target Procedure ENERGY STAR Certified Homes, Version 3.1 (Rev. 10)" -5C Sep 2020 air-to-air 9.25 15 electricity "National ERI Target Procedure ENERGY STAR Certified Homes, Version 3.1 (Rev. 10)" -6A Sep 2020 air-to-air 9.5 15 electricity "National ERI Target Procedure ENERGY STAR Certified Homes, Version 3.1 (Rev. 10)" -6B Sep 2020 air-to-air 9.5 15 electricity "National ERI Target Procedure ENERGY STAR Certified Homes, Version 3.1 (Rev. 10)" -6C Sep 2020 air-to-air 9.5 15 electricity "National ERI Target Procedure ENERGY STAR Certified Homes, Version 3.1 (Rev. 10)" -1A Sep 2020 mini-split 10 19 electricity Engineering judgment -1B Sep 2020 mini-split 10 19 electricity Engineering judgment -1C Sep 2020 mini-split 10 19 electricity Engineering judgment -2A Sep 2020 mini-split 10 19 electricity Engineering judgment -2B Sep 2020 mini-split 10 19 electricity Engineering judgment -2C Sep 2020 mini-split 10 19 electricity Engineering judgment -3A Sep 2020 mini-split 10 19 electricity Engineering judgment -3B Sep 2020 mini-split 10 19 electricity Engineering judgment -3C Sep 2020 mini-split 10 19 electricity Engineering judgment -4A Sep 2020 mini-split 10 19 electricity Engineering judgment -4B Sep 2020 mini-split 10 19 electricity Engineering judgment -4C Sep 2020 mini-split 10 19 electricity Engineering judgment -5A Sep 2020 mini-split 10 19 electricity Engineering judgment -5B Sep 2020 mini-split 10 19 electricity Engineering judgment -5C Sep 2020 mini-split 10 19 electricity Engineering judgment -6A Sep 2020 mini-split 10 19 electricity Engineering judgment -6B Sep 2020 mini-split 10 19 electricity Engineering judgment -6C Sep 2020 mini-split 10 19 electricity Engineering judgment -7 Sep 2020 ground-to-air 3.6 17.1 "National ERI Target Procedure ENERGY STAR Certified Homes, Version 3.1 (Rev. 10)" -8 Sep 2020 ground-to-air 3.6 17.1 "National ERI Target Procedure ENERGY STAR Certified Homes, Version 3.1 (Rev. 10)" +Dependency=Climate Zone Dependency=Template Month Dependency=Template Year Dependency=heat_pump_type heat_pump_heating_efficiency_type heat_pump_heating_efficiency heat_pump_cooling_efficiency_type heat_pump_cooling_efficiency heat_pump_backup_fuel Source + type +1A Sep 2020 air-to-air HSPF 8.2 SEER 15 electricity "National ERI Target Procedure ENERGY STAR Certified Homes, Version 3.1 (Rev. 10)" +1B Sep 2020 air-to-air HSPF 8.2 SEER 15 electricity "National ERI Target Procedure ENERGY STAR Certified Homes, Version 3.1 (Rev. 10)" +1C Sep 2020 air-to-air HSPF 8.2 SEER 15 electricity "National ERI Target Procedure ENERGY STAR Certified Homes, Version 3.1 (Rev. 10)" +2A Sep 2020 air-to-air HSPF 8.2 SEER 15 electricity "National ERI Target Procedure ENERGY STAR Certified Homes, Version 3.1 (Rev. 10)" +2B Sep 2020 air-to-air HSPF 8.2 SEER 15 electricity "National ERI Target Procedure ENERGY STAR Certified Homes, Version 3.1 (Rev. 10)" +2C Sep 2020 air-to-air HSPF 8.2 SEER 15 electricity "National ERI Target Procedure ENERGY STAR Certified Homes, Version 3.1 (Rev. 10)" +3A Sep 2020 air-to-air HSPF 8.2 SEER 15 electricity "National ERI Target Procedure ENERGY STAR Certified Homes, Version 3.1 (Rev. 10)" +3B Sep 2020 air-to-air HSPF 8.2 SEER 15 electricity "National ERI Target Procedure ENERGY STAR Certified Homes, Version 3.1 (Rev. 10)" +3C Sep 2020 air-to-air HSPF 8.2 SEER 15 electricity "National ERI Target Procedure ENERGY STAR Certified Homes, Version 3.1 (Rev. 10)" +4A Sep 2020 air-to-air HSPF 8.5 SEER 15 electricity "National ERI Target Procedure ENERGY STAR Certified Homes, Version 3.1 (Rev. 10)" +4B Sep 2020 air-to-air HSPF 8.5 SEER 15 electricity "National ERI Target Procedure ENERGY STAR Certified Homes, Version 3.1 (Rev. 10)" +4C Sep 2020 air-to-air HSPF 9.25 SEER 15 electricity "National ERI Target Procedure ENERGY STAR Certified Homes, Version 3.1 (Rev. 10)" +5A Sep 2020 air-to-air HSPF 9.25 SEER 15 electricity "National ERI Target Procedure ENERGY STAR Certified Homes, Version 3.1 (Rev. 10)" +5B Sep 2020 air-to-air HSPF 9.25 SEER 15 electricity "National ERI Target Procedure ENERGY STAR Certified Homes, Version 3.1 (Rev. 10)" +5C Sep 2020 air-to-air HSPF 9.25 SEER 15 electricity "National ERI Target Procedure ENERGY STAR Certified Homes, Version 3.1 (Rev. 10)" +6A Sep 2020 air-to-air HSPF 9.5 SEER 15 electricity "National ERI Target Procedure ENERGY STAR Certified Homes, Version 3.1 (Rev. 10)" +6B Sep 2020 air-to-air HSPF 9.5 SEER 15 electricity "National ERI Target Procedure ENERGY STAR Certified Homes, Version 3.1 (Rev. 10)" +6C Sep 2020 air-to-air HSPF 9.5 SEER 15 electricity "National ERI Target Procedure ENERGY STAR Certified Homes, Version 3.1 (Rev. 10)" +7 Sep 2020 air-to-air HSPF 9.5 SEER 15 electricity Engineering judgment +8 Sep 2020 air-to-air HSPF 9.5 SEER 15 electricity Engineering judgment +1A Sep 2020 mini-split HSPF 10 SEER 19 electricity Engineering judgment +1B Sep 2020 mini-split HSPF 10 SEER 19 electricity Engineering judgment +1C Sep 2020 mini-split HSPF 10 SEER 19 electricity Engineering judgment +2A Sep 2020 mini-split HSPF 10 SEER 19 electricity Engineering judgment +2B Sep 2020 mini-split HSPF 10 SEER 19 electricity Engineering judgment +2C Sep 2020 mini-split HSPF 10 SEER 19 electricity Engineering judgment +3A Sep 2020 mini-split HSPF 10 SEER 19 electricity Engineering judgment +3B Sep 2020 mini-split HSPF 10 SEER 19 electricity Engineering judgment +3C Sep 2020 mini-split HSPF 10 SEER 19 electricity Engineering judgment +4A Sep 2020 mini-split HSPF 10 SEER 19 electricity Engineering judgment +4B Sep 2020 mini-split HSPF 10 SEER 19 electricity Engineering judgment +4C Sep 2020 mini-split HSPF 10 SEER 19 electricity Engineering judgment +5A Sep 2020 mini-split HSPF 10 SEER 19 electricity Engineering judgment +5B Sep 2020 mini-split HSPF 10 SEER 19 electricity Engineering judgment +5C Sep 2020 mini-split HSPF 10 SEER 19 electricity Engineering judgment +6A Sep 2020 mini-split HSPF 10 SEER 19 electricity Engineering judgment +6B Sep 2020 mini-split HSPF 10 SEER 19 electricity Engineering judgment +6C Sep 2020 mini-split HSPF 10 SEER 19 electricity Engineering judgment +7 Sep 2020 mini-split HSPF 10 SEER 19 electricity Engineering judgment +8 Sep 2020 mini-split HSPF 10 SEER 19 electricity Engineering judgment +1A Sep 2020 ground-to-air COP 3.6 EER 17.1 Engineering judgment +1B Sep 2020 ground-to-air COP 3.6 EER 17.1 Engineering judgment +1C Sep 2020 ground-to-air COP 3.6 EER 17.1 Engineering judgment +2A Sep 2020 ground-to-air COP 3.6 EER 17.1 Engineering judgment +2B Sep 2020 ground-to-air COP 3.6 EER 17.1 Engineering judgment +2C Sep 2020 ground-to-air COP 3.6 EER 17.1 Engineering judgment +3A Sep 2020 ground-to-air COP 3.6 EER 17.1 Engineering judgment +3B Sep 2020 ground-to-air COP 3.6 EER 17.1 Engineering judgment +3C Sep 2020 ground-to-air COP 3.6 EER 17.1 Engineering judgment +4A Sep 2020 ground-to-air COP 3.6 EER 17.1 Engineering judgment +4B Sep 2020 ground-to-air COP 3.6 EER 17.1 Engineering judgment +4C Sep 2020 ground-to-air COP 3.6 EER 17.1 Engineering judgment +5A Sep 2020 ground-to-air COP 3.6 EER 17.1 Engineering judgment +5B Sep 2020 ground-to-air COP 3.6 EER 17.1 Engineering judgment +5C Sep 2020 ground-to-air COP 3.6 EER 17.1 Engineering judgment +6A Sep 2020 ground-to-air COP 3.6 EER 17.1 Engineering judgment +6B Sep 2020 ground-to-air COP 3.6 EER 17.1 Engineering judgment +6C Sep 2020 ground-to-air COP 3.6 EER 17.1 Engineering judgment +7 Sep 2020 ground-to-air COP 3.6 EER 17.1 "National ERI Target Procedure ENERGY STAR Certified Homes, Version 3.1 (Rev. 10)" +8 Sep 2020 ground-to-air COP 3.6 EER 17.1 "National ERI Target Procedure ENERGY STAR Certified Homes, Version 3.1 (Rev. 10)" diff --git a/example_files/resources/hpxml-measures/.circleci/config.yml b/example_files/resources/hpxml-measures/.circleci/config.yml deleted file mode 100644 index f31dd45c..00000000 --- a/example_files/resources/hpxml-measures/.circleci/config.yml +++ /dev/null @@ -1,20 +0,0 @@ -version: 2 -jobs: - build: - docker: - - image: nrel/openstudio:3.1.0 - steps: - - checkout - - run: - name: Install gems - command: | - rm -f Gemfile.lock && bundle install - - run: - name: Run tests - command: | - bundle exec rake test_all - - store_artifacts: - path: workflow/tests/results - destination: results - - store_test_results: - path: test/reports \ No newline at end of file diff --git a/example_files/resources/hpxml-measures/.github/pull_request_template.md b/example_files/resources/hpxml-measures/.github/pull_request_template.md index 1cb59438..9682e7c2 100644 --- a/example_files/resources/hpxml-measures/.github/pull_request_template.md +++ b/example_files/resources/hpxml-measures/.github/pull_request_template.md @@ -9,5 +9,6 @@ Not all may apply: - [ ] EPvalidator.xml has been updated - [ ] Tests (and test files) have been updated - [ ] Documentation has been updated +- [ ] Changelog has been updated - [ ] `openstudio tasks.rb update_measures` has been run - [ ] No unexpected regression test changes on CI diff --git a/example_files/resources/hpxml-measures/.github/workflows/config.yml b/example_files/resources/hpxml-measures/.github/workflows/config.yml new file mode 100644 index 00000000..cd2d2144 --- /dev/null +++ b/example_files/resources/hpxml-measures/.github/workflows/config.yml @@ -0,0 +1,23 @@ +name: ci +on: [push] +jobs: + build: + runs-on: ubuntu-latest + container: + image: docker://nrel/openstudio:3.1.0 + steps: + - uses: actions/checkout@v2 + + - name: Install gems + run: | + rm -f Gemfile.lock && bundle install + + - name: Run tests + run: | + bundle exec rake test_all + + - name: Store results + uses: actions/upload-artifact@v2 + with: + path: workflow/tests/results + name: results diff --git a/example_files/resources/hpxml-measures/.gitignore b/example_files/resources/hpxml-measures/.gitignore index 0224a4d5..245eb70a 100644 --- a/example_files/resources/hpxml-measures/.gitignore +++ b/example_files/resources/hpxml-measures/.gitignore @@ -241,8 +241,6 @@ /weather/USA_AZ_Page.Muni.AWOS.723710_TMY3.epw /weather/USA_AZ_Phoenix-Deer.Valley.AP.722784_TMY3-cache.csv /weather/USA_AZ_Phoenix-Deer.Valley.AP.722784_TMY3.epw -/weather/USA_AZ_Phoenix-Sky.Harbor.Intl.AP.722780_TMY3-cache.csv -/weather/USA_AZ_Phoenix-Sky.Harbor.Intl.AP.722780_TMY3.epw /weather/USA_AZ_Prescott-Love.Field.723723_TMY3-cache.csv /weather/USA_AZ_Prescott-Love.Field.723723_TMY3.epw /weather/USA_AZ_Safford.AWOS.722747_TMY3-cache.csv @@ -593,8 +591,6 @@ /weather/USA_HI_Barbers.Point.NAS.911780_TMY3.epw /weather/USA_HI_Hilo.Intl.AP.912850_TMY3-cache.csv /weather/USA_HI_Hilo.Intl.AP.912850_TMY3.epw -/weather/USA_HI_Honolulu.Intl.AP.911820_TMY3-cache.csv -/weather/USA_HI_Honolulu.Intl.AP.911820_TMY3.epw /weather/USA_HI_Kahului.AP.911900_TMY3-cache.csv /weather/USA_HI_Kahului.AP.911900_TMY3.epw /weather/USA_HI_Kailua-Kaneohe.Bay.MCAS.911760_TMY3-cache.csv @@ -1189,8 +1185,6 @@ /weather/USA_MT_Great.Falls.Intl.AP.727750_TMY3.epw /weather/USA_MT_Havre.City-County.AP.727770_TMY3-cache.csv /weather/USA_MT_Havre.City-County.AP.727770_TMY3.epw -/weather/USA_MT_Helena.Rgnl.AP.727720_TMY3-cache.csv -/weather/USA_MT_Helena.Rgnl.AP.727720_TMY3.epw /weather/USA_MT_Kalispell-Glacier.Park.Intl.AP.727790_TMY3-cache.csv /weather/USA_MT_Kalispell-Glacier.Park.Intl.AP.727790_TMY3.epw /weather/USA_MT_Lewistown.Muni.AP.726776_TMY3-cache.csv @@ -1539,8 +1533,6 @@ /weather/USA_OR_Portland-Hillsboro.AP.726986_TMY3.epw /weather/USA_OR_Portland-Troutdale.AP.726985_TMY3-cache.csv /weather/USA_OR_Portland-Troutdale.AP.726985_TMY3.epw -/weather/USA_OR_Portland.Intl.AP.726980_TMY3-cache.csv -/weather/USA_OR_Portland.Intl.AP.726980_TMY3.epw /weather/USA_OR_Redmond-Roberts.Field.726835_TMY3-cache.csv /weather/USA_OR_Redmond-Roberts.Field.726835_TMY3.epw /weather/USA_OR_Roseburg.Rgnl.AP.726904_TMY3-cache.csv @@ -2020,6 +2012,7 @@ /workflow/out.osw /workflow/tests/results /workflow/tests/run +/workflow/tests/test* /workflow/sample_files/results /workflow/sample_files/run /workflow/sample_files/invalid_files/results diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/measure.rb b/example_files/resources/hpxml-measures/BuildResidentialHPXML/measure.rb index 589f9769..13a9718c 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/measure.rb +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/measure.rb @@ -9,7 +9,6 @@ require_relative 'resources/constants' require_relative 'resources/geometry' -require_relative 'resources/location' require_relative 'resources/schedules' require_relative '../HPXMLtoOpenStudio/resources/constants' @@ -18,7 +17,9 @@ require_relative '../HPXMLtoOpenStudio/resources/hpxml' require_relative '../HPXMLtoOpenStudio/resources/hvac' require_relative '../HPXMLtoOpenStudio/resources/lighting' +require_relative '../HPXMLtoOpenStudio/resources/location' require_relative '../HPXMLtoOpenStudio/resources/materials' +require_relative '../HPXMLtoOpenStudio/resources/meta_measure' require_relative '../HPXMLtoOpenStudio/resources/psychrometrics' require_relative '../HPXMLtoOpenStudio/resources/schedules' require_relative '../HPXMLtoOpenStudio/resources/unit_conversions' @@ -190,7 +191,6 @@ def arguments(model) args << arg unit_type_choices = OpenStudio::StringVector.new - unit_type_choices << HPXML::ResidentialTypeManufactured unit_type_choices << HPXML::ResidentialTypeSFD unit_type_choices << HPXML::ResidentialTypeSFA unit_type_choices << HPXML::ResidentialTypeApartment @@ -211,7 +211,7 @@ def arguments(model) arg = OpenStudio::Measure::OSArgument::makeIntegerArgument('geometry_num_floors_above_grade', true) arg.setDisplayName('Geometry: Number of Floors') arg.setUnits('#') - arg.setDescription("The number of floors above grade (in the unit if #{HPXML::ResidentialTypeSFA}, and in the building if #{HPXML::ResidentialTypeApartment}).") + arg.setDescription("The number of floors above grade (in the unit if #{HPXML::ResidentialTypeSFD} or #{HPXML::ResidentialTypeSFA}, and in the building if #{HPXML::ResidentialTypeApartment}). Conditioned attics are included.") arg.setDefaultValue(2) args << arg @@ -225,7 +225,7 @@ def arguments(model) arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('geometry_orientation', true) arg.setDisplayName('Geometry: Orientation') arg.setUnits('degrees') - arg.setDescription("The house's orientation is measured clockwise from due south when viewed from above (e.g., North=0, East=90, South=180, West=270).") + arg.setDescription("The unit's orientation is measured clockwise from due south when viewed from above (e.g., North=0, East=90, South=180, West=270).") arg.setDefaultValue(180.0) args << arg @@ -244,28 +244,28 @@ def arguments(model) arg = OpenStudio::Measure::OSArgument::makeChoiceArgument('geometry_corridor_position', corridor_position_choices, true) arg.setDisplayName('Geometry: Corridor Position') - arg.setDescription('The position of the corridor.') + arg.setDescription("The position of the corridor. Only applies to #{HPXML::ResidentialTypeSFA} and #{HPXML::ResidentialTypeApartment} units.") arg.setDefaultValue('Double-Loaded Interior') args << arg arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('geometry_corridor_width', true) arg.setDisplayName('Geometry: Corridor Width') arg.setUnits('ft') - arg.setDescription('The width of the corridor.') + arg.setDescription("The width of the corridor. Only applies to #{HPXML::ResidentialTypeApartment} units.") arg.setDefaultValue(10.0) args << arg arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('geometry_inset_width', true) arg.setDisplayName('Geometry: Inset Width') arg.setUnits('ft') - arg.setDescription('The width of the inset.') + arg.setDescription("The width of the inset. Only applies to #{HPXML::ResidentialTypeApartment} units.") arg.setDefaultValue(0.0) args << arg arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('geometry_inset_depth', true) arg.setDisplayName('Geometry: Inset Depth') arg.setUnits('ft') - arg.setDescription('The depth of the inset.') + arg.setDescription("The depth of the inset. Only applies to #{HPXML::ResidentialTypeApartment} units.") arg.setDefaultValue(0.0) args << arg @@ -275,35 +275,35 @@ def arguments(model) arg = OpenStudio::Measure::OSArgument::makeChoiceArgument('geometry_inset_position', inset_position_choices, true) arg.setDisplayName('Geometry: Inset Position') - arg.setDescription('The position of the inset.') + arg.setDescription("The position of the inset. Only applies to #{HPXML::ResidentialTypeApartment} units.") arg.setDefaultValue('Right') args << arg arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('geometry_balcony_depth', true) arg.setDisplayName('Geometry: Balcony Depth') arg.setUnits('ft') - arg.setDescription('The depth of the balcony.') + arg.setDescription("The depth of the balcony. Only applies to #{HPXML::ResidentialTypeApartment} units.") arg.setDefaultValue(0.0) args << arg arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('geometry_garage_width', true) arg.setDisplayName('Geometry: Garage Width') arg.setUnits('ft') - arg.setDescription('The width of the garage. Enter zero for no garage.') + arg.setDescription("The width of the garage. Enter zero for no garage. Only applies to #{HPXML::ResidentialTypeSFD} units.") arg.setDefaultValue(0.0) args << arg arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('geometry_garage_depth', true) arg.setDisplayName('Geometry: Garage Depth') arg.setUnits('ft') - arg.setDescription('The depth of the garage.') + arg.setDescription("The depth of the garage. Only applies to #{HPXML::ResidentialTypeSFD} units.") arg.setDefaultValue(20.0) args << arg arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('geometry_garage_protrusion', true) arg.setDisplayName('Geometry: Garage Protrusion') arg.setUnits('frac') - arg.setDescription('The fraction of the garage that is protruding from the living space.') + arg.setDescription("The fraction of the garage that is protruding from the living space. Only applies to #{HPXML::ResidentialTypeSFD} units.") arg.setDefaultValue(0.0) args << arg @@ -313,7 +313,7 @@ def arguments(model) arg = OpenStudio::Measure::OSArgument::makeChoiceArgument('geometry_garage_position', garage_position_choices, true) arg.setDisplayName('Geometry: Garage Position') - arg.setDescription('The position of the garage.') + arg.setDescription("The position of the garage. Only applies to #{HPXML::ResidentialTypeSFD} units.") arg.setDefaultValue('Right') args << arg @@ -345,6 +345,13 @@ def arguments(model) arg.setDefaultValue(0.0) args << arg + arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('geometry_rim_joist_height', true) + arg.setDisplayName('Geometry: Rim Joist Height') + arg.setUnits('in') + arg.setDescription('The height of the rim joists. Only applies to basements/crawlspaces.') + arg.setDefaultValue(9.25) + args << arg + roof_type_choices = OpenStudio::StringVector.new roof_type_choices << 'gable' roof_type_choices << 'hip' @@ -352,7 +359,7 @@ def arguments(model) arg = OpenStudio::Measure::OSArgument::makeChoiceArgument('geometry_roof_type', roof_type_choices, true) arg.setDisplayName('Geometry: Roof Type') - arg.setDescription('The roof type of the building.') + arg.setDescription("The roof type of the building. Assumed flat for #{HPXML::ResidentialTypeApartment} units.") arg.setDefaultValue('gable') args << arg @@ -415,6 +422,12 @@ def arguments(model) arg.setDefaultValue(Constants.Auto) args << arg + arg = OpenStudio::Measure::OSArgument::makeStringArgument('geometry_has_flue_or_chimney', true) + arg.setDisplayName('Geometry: Has Flue or Chimney') + arg.setDescription('Whether there is a flue or chimney.') + arg.setDefaultValue(Constants.Auto) + args << arg + level_choices = OpenStudio::StringVector.new level_choices << 'Bottom' level_choices << 'Middle' @@ -438,19 +451,19 @@ def arguments(model) arg = OpenStudio::Measure::OSArgument::makeIntegerArgument('geometry_building_num_units', false) arg.setDisplayName('Geometry: Building Number of Units') arg.setUnits('#') - arg.setDescription("The number of units in the building. This is required for #{HPXML::ResidentialTypeSFA} and #{HPXML::ResidentialTypeApartment} buildings.") + arg.setDescription("The number of units in the building. This is required for #{HPXML::ResidentialTypeSFA} and #{HPXML::ResidentialTypeApartment} units.") args << arg arg = OpenStudio::Measure::OSArgument::makeIntegerArgument('geometry_building_num_bedrooms', false) arg.setDisplayName('Geometry: Building Number of Bedrooms') arg.setUnits('#') - arg.setDescription("The number of bedrooms in the building. This is required for #{HPXML::ResidentialTypeSFA} and #{HPXML::ResidentialTypeApartment} buildings with shared PV systems.") + arg.setDescription("The number of bedrooms in the building. This is required for #{HPXML::ResidentialTypeSFA} and #{HPXML::ResidentialTypeApartment} units with shared PV systems.") args << arg arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('floor_assembly_r', true) arg.setDisplayName('Floor: Assembly R-value') arg.setUnits('h-ft^2-R/Btu') - arg.setDescription('Assembly R-value for the floor (foundation ceiling). Ignored if a slab foundation.') + arg.setDescription('Assembly R-value for the floor (foundation ceiling). Ignored if the building has a slab foundation.') arg.setDefaultValue(30) args << arg @@ -468,11 +481,11 @@ def arguments(model) arg.setDefaultValue(0) args << arg - arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('foundation_wall_insulation_distance_to_bottom', true) + arg = OpenStudio::Measure::OSArgument::makeStringArgument('foundation_wall_insulation_distance_to_bottom', true) arg.setDisplayName('Foundation: Wall Insulation Distance To Bottom') arg.setUnits('ft') - arg.setDescription('The distance from the top of the foundation wall to the bottom of the foundation wall insulation. Only applies to basements/crawlspaces.') - arg.setDefaultValue(0) + arg.setDescription("The distance from the top of the foundation wall to the bottom of the foundation wall insulation. Only applies to basements/crawlspaces. A value of '#{Constants.Auto}' will use the same height as the foundation.") + arg.setDefaultValue(Constants.Auto) args << arg arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('foundation_wall_assembly_r', false) @@ -487,6 +500,13 @@ def arguments(model) arg.setDefaultValue(Constants.Auto) args << arg + arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('rim_joist_assembly_r', true) + arg.setDisplayName('Rim Joist: Assembly R-value') + arg.setUnits('h-ft^2-R/Btu') + arg.setDescription('Assembly R-value for the rim joists. Only applies to basements/crawlspaces.') + arg.setDefaultValue(23) + args << arg + arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('slab_perimeter_insulation_r', true) arg.setDisplayName('Slab: Perimeter Insulation Nominal R-value') arg.setUnits('h-ft^2-R/Btu') @@ -556,7 +576,6 @@ def arguments(model) args << arg color_choices = OpenStudio::StringVector.new - color_choices << Constants.Auto color_choices << HPXML::ColorDark color_choices << HPXML::ColorLight color_choices << HPXML::ColorMedium @@ -566,7 +585,7 @@ def arguments(model) arg = OpenStudio::Measure::OSArgument::makeChoiceArgument('roof_color', color_choices, true) arg.setDisplayName('Roof: Color') arg.setDescription('The color of the roof.') - arg.setDefaultValue(Constants.Auto) + arg.setDefaultValue(HPXML::ColorMedium) args << arg arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('roof_assembly_r', true) @@ -576,22 +595,10 @@ def arguments(model) arg.setDefaultValue(2.3) args << arg - arg = OpenStudio::Measure::OSArgument::makeStringArgument('roof_solar_absorptance', true) - arg.setDisplayName('Roof: Solar Absorptance') - arg.setDescription('The solar absorptance of the roof.') - arg.setDefaultValue(Constants.Auto) - args << arg - - arg = OpenStudio::Measure::OSArgument::makeStringArgument('roof_emittance', true) - arg.setDisplayName('Roof: Emittance') - arg.setDescription('The emittance of the roof.') - arg.setDefaultValue(Constants.Auto) - args << arg - - arg = OpenStudio::Measure::OSArgument::makeStringArgument('roof_radiant_barrier', true) + arg = OpenStudio::Measure::OSArgument::makeBoolArgument('roof_radiant_barrier', true) arg.setDisplayName('Roof: Has Radiant Barrier') arg.setDescription('Specifies whether the attic has a radiant barrier.') - arg.setDefaultValue(Constants.Auto) + arg.setDefaultValue(false) args << arg roof_radiant_barrier_grade_choices = OpenStudio::StringVector.new @@ -608,28 +615,28 @@ def arguments(model) arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('neighbor_front_distance', true) arg.setDisplayName('Neighbor: Front Distance') arg.setUnits('ft') - arg.setDescription('The minimum distance between the simulated house and the neighboring house to the front (not including eaves). A value of zero indicates no neighbors.') + arg.setDescription('The minimum distance between the simulated unit and the neighboring building to the front (not including eaves). A value of zero indicates no neighbors.') arg.setDefaultValue(0.0) args << arg arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('neighbor_back_distance', true) arg.setDisplayName('Neighbor: Back Distance') arg.setUnits('ft') - arg.setDescription('The minimum distance between the simulated house and the neighboring house to the back (not including eaves). A value of zero indicates no neighbors.') + arg.setDescription('The minimum distance between the simulated unit and the neighboring building to the back (not including eaves). A value of zero indicates no neighbors.') arg.setDefaultValue(0.0) args << arg arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('neighbor_left_distance', true) arg.setDisplayName('Neighbor: Left Distance') arg.setUnits('ft') - arg.setDescription('The minimum distance between the simulated house and the neighboring house to the left (not including eaves). A value of zero indicates no neighbors.') + arg.setDescription('The minimum distance between the simulated unit and the neighboring building to the left (not including eaves). A value of zero indicates no neighbors.') arg.setDefaultValue(10.0) args << arg arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('neighbor_right_distance', true) arg.setDisplayName('Neighbor: Right Distance') arg.setUnits('ft') - arg.setDescription('The minimum distance between the simulated house and the neighboring house to the right (not including eaves). A value of zero indicates no neighbors.') + arg.setDescription('The minimum distance between the simulated unit and the neighboring building to the right (not including eaves). A value of zero indicates no neighbors.') arg.setDefaultValue(10.0) args << arg @@ -690,13 +697,13 @@ def arguments(model) arg = OpenStudio::Measure::OSArgument::makeChoiceArgument('wall_siding_type', wall_siding_type_choices, false) arg.setDisplayName('Wall: Siding Type') - arg.setDescription('The siding type of the exterior walls.') + arg.setDescription('The siding type of the exterior walls. Also applies to rim joists.') args << arg arg = OpenStudio::Measure::OSArgument::makeChoiceArgument('wall_color', color_choices, true) arg.setDisplayName('Wall: Color') - arg.setDescription('The color of the exterior walls.') - arg.setDefaultValue(Constants.Auto) + arg.setDescription('The color of the exterior walls. Also applies to rim joists.') + arg.setDefaultValue(HPXML::ColorMedium) args << arg arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('wall_assembly_r', true) @@ -706,63 +713,51 @@ def arguments(model) arg.setDefaultValue(13) args << arg - arg = OpenStudio::Measure::OSArgument::makeStringArgument('wall_solar_absorptance', true) - arg.setDisplayName('Wall: Solar Absorptance') - arg.setDescription('The solar absorptance of the exterior walls.') - arg.setDefaultValue(Constants.Auto) - args << arg - - arg = OpenStudio::Measure::OSArgument::makeStringArgument('wall_emittance', true) - arg.setDisplayName('Wall: Emittance') - arg.setDescription('The emittance of the exterior walls.') - arg.setDefaultValue(Constants.Auto) - args << arg - arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('window_front_wwr', true) arg.setDisplayName('Windows: Front Window-to-Wall Ratio') - arg.setDescription("The ratio of window area to wall area for the building's front facade. Enter 0 if specifying Front Window Area instead.") + arg.setDescription("The ratio of window area to wall area for the unit's front facade. Enter 0 if specifying Front Window Area instead.") arg.setDefaultValue(0.18) args << arg arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('window_back_wwr', true) arg.setDisplayName('Windows: Back Window-to-Wall Ratio') - arg.setDescription("The ratio of window area to wall area for the building's back facade. Enter 0 if specifying Back Window Area instead.") + arg.setDescription("The ratio of window area to wall area for the unit's back facade. Enter 0 if specifying Back Window Area instead.") arg.setDefaultValue(0.18) args << arg arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('window_left_wwr', true) arg.setDisplayName('Windows: Left Window-to-Wall Ratio') - arg.setDescription("The ratio of window area to wall area for the building's left facade. Enter 0 if specifying Left Window Area instead.") + arg.setDescription("The ratio of window area to wall area for the unit's left facade (when viewed from the front). Enter 0 if specifying Left Window Area instead.") arg.setDefaultValue(0.18) args << arg arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('window_right_wwr', true) arg.setDisplayName('Windows: Right Window-to-Wall Ratio') - arg.setDescription("The ratio of window area to wall area for the building's right facade. Enter 0 if specifying Right Window Area instead.") + arg.setDescription("The ratio of window area to wall area for the unit's right facade (when viewed from the front). Enter 0 if specifying Right Window Area instead.") arg.setDefaultValue(0.18) args << arg arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('window_area_front', true) arg.setDisplayName('Windows: Front Window Area') - arg.setDescription("The amount of window area on the building's front facade. Enter 0 if specifying Front Window-to-Wall Ratio instead.") + arg.setDescription("The amount of window area on the unit's front facade. Enter 0 if specifying Front Window-to-Wall Ratio instead.") arg.setDefaultValue(0) args << arg arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('window_area_back', true) arg.setDisplayName('Windows: Back Window Area') - arg.setDescription("The amount of window area on the building's back facade. Enter 0 if specifying Back Window-to-Wall Ratio instead.") + arg.setDescription("The amount of window area on the unit's back facade. Enter 0 if specifying Back Window-to-Wall Ratio instead.") arg.setDefaultValue(0) args << arg arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('window_area_left', true) arg.setDisplayName('Windows: Left Window Area') - arg.setDescription("The amount of window area on the building's left facade. Enter 0 if specifying Left Window-to-Wall Ratio instead.") + arg.setDescription("The amount of window area on the unit's left facade (when viewed from the front). Enter 0 if specifying Left Window-to-Wall Ratio instead.") arg.setDefaultValue(0) args << arg arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('window_area_right', true) arg.setDisplayName('Windows: Right Window Area') - arg.setDescription("The amount of window area on the building's right facade. Enter 0 if specifying Right Window-to-Wall Ratio instead.") + arg.setDescription("The amount of window area on the unit's right facade (when viewed from the front). Enter 0 if specifying Right Window-to-Wall Ratio instead.") arg.setDefaultValue(0) args << arg @@ -800,6 +795,16 @@ def arguments(model) arg.setDescription('Interior shading multiplier for the cooling season. 1.0 indicates no reduction in solar gain, 0.85 indicates 15% reduction, etc.') args << arg + arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('window_exterior_shading_winter', false) + arg.setDisplayName('Windows: Winter Exterior Shading') + arg.setDescription('Exterior shading multiplier for the heating season. 1.0 indicates no reduction in solar gain, 0.85 indicates 15% reduction, etc.') + args << arg + + arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('window_exterior_shading_summer', false) + arg.setDisplayName('Windows: Summer Exterior Shading') + arg.setDescription('Exterior shading multiplier for the cooling season. 1.0 indicates no reduction in solar gain, 0.85 indicates 15% reduction, etc.') + args << arg + arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('overhangs_front_depth', true) arg.setDisplayName('Overhangs: Front Facade Depth') arg.setDescription('Specifies the depth of overhangs for windows on the front facade.') @@ -850,25 +855,25 @@ def arguments(model) arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('skylight_area_front', true) arg.setDisplayName('Skylights: Front Roof Area') - arg.setDescription("The amount of skylight area on the building's front conditioned roof facade.") + arg.setDescription("The amount of skylight area on the unit's front conditioned roof facade.") arg.setDefaultValue(0) args << arg arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('skylight_area_back', true) arg.setDisplayName('Skylights: Back Roof Area') - arg.setDescription("The amount of skylight area on the building's back conditioned roof facade.") + arg.setDescription("The amount of skylight area on the unit's back conditioned roof facade.") arg.setDefaultValue(0) args << arg arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('skylight_area_left', true) arg.setDisplayName('Skylights: Left Roof Area') - arg.setDescription("The amount of skylight area on the building's left conditioned roof facade.") + arg.setDescription("The amount of skylight area on the unit's left conditioned roof facade (when viewed from the front).") arg.setDefaultValue(0) args << arg arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('skylight_area_right', true) arg.setDisplayName('Skylights: Right Roof Area') - arg.setDescription("The amount of skylight area on the building's right conditioned roof facade.") + arg.setDescription("The amount of skylight area on the unit's right conditioned roof facade (when viewed from the front).") arg.setDefaultValue(0) args << arg @@ -923,10 +928,15 @@ def arguments(model) arg.setDefaultValue(3) args << arg - arg = OpenStudio::Measure::OSArgument::makeStringArgument('air_leakage_shelter_coefficient', true) - arg.setDisplayName('Air Leakage: Shelter Coefficient') - arg.setUnits('Frac') - arg.setDescription('The local shelter coefficient (AIM-2 infiltration model) accounts for nearby buildings, trees, and obstructions.') + air_leakage_shielding_of_home_choices = OpenStudio::StringVector.new + air_leakage_shielding_of_home_choices << Constants.Auto + air_leakage_shielding_of_home_choices << HPXML::ShieldingExposed + air_leakage_shielding_of_home_choices << HPXML::ShieldingNormal + air_leakage_shielding_of_home_choices << HPXML::ShieldingWellShielded + + arg = OpenStudio::Measure::OSArgument::makeChoiceArgument('air_leakage_shielding_of_home', air_leakage_shielding_of_home_choices, true) + arg.setDisplayName('Air Leakage: Shielding of Home') + arg.setDescription('Presence of nearby buildings, trees, obstructions for infiltration model.') arg.setDefaultValue(Constants.Auto) args << arg @@ -958,6 +968,10 @@ def arguments(model) cooling_system_type_choices << HPXML::HVACTypeEvaporativeCooler cooling_system_type_choices << HPXML::HVACTypeMiniSplitAirConditioner + cooling_efficiency_type_choices = OpenStudio::StringVector.new + cooling_efficiency_type_choices << HPXML::UnitsSEER + cooling_efficiency_type_choices << HPXML::UnitsEER + compressor_type_choices = OpenStudio::StringVector.new compressor_type_choices << HPXML::HVACCompressorTypeSingleStage compressor_type_choices << HPXML::HVACCompressorTypeTwoStage @@ -996,28 +1010,10 @@ def arguments(model) arg.setDefaultValue(1) args << arg - arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('heating_system_electric_auxiliary_energy', false) - arg.setDisplayName('Heating System: Electric Auxiliary Energy') - arg.setDescription("The electric auxiliary energy of the heating system. Applies to #{HPXML::HVACTypeBoiler}.") - arg.setUnits('kWh/yr') - args << arg - - arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('heating_system_fan_power_watts_per_cfm', false) - arg.setDisplayName('Heating System: Fan Power') - arg.setDescription("Blower fan power. Applies to #{HPXML::HVACTypeFurnace}.") - arg.setUnits('W/CFM') - args << arg - - arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('heating_system_fan_power_watts', false) - arg.setDisplayName('Heating System: Fan Power') - arg.setDescription("Blower fan power. Ignored for #{HPXML::HVACTypeElectricResistance}, #{HPXML::HVACTypeFurnace}, and #{HPXML::HVACTypeBoiler}.") - arg.setUnits('W') - args << arg - - arg = OpenStudio::Measure::OSArgument::makeBoolArgument('heating_system_has_flue_or_chimney', true) - arg.setDisplayName('Heating System: Has Flue or Chimney') - arg.setDescription('Whether the heating system has a flue or chimney.') - arg.setDefaultValue(false) + arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('heating_system_airflow_defect_ratio', false) + arg.setDisplayName('Heating System: Airflow Defect Ratio') + arg.setDescription("The airflow defect ratio, defined as (InstalledAirflow - DesignAirflow) / DesignAirflow, of the heating system per ANSI/RESNET/ACCA Standard 310. A value of zero means no airflow defect. Applies only to #{HPXML::HVACTypeFurnace}.") + arg.setUnits('Frac') args << arg arg = OpenStudio::Measure::OSArgument::makeChoiceArgument('cooling_system_type', cooling_system_type_choices, true) @@ -1026,18 +1022,17 @@ def arguments(model) arg.setDefaultValue(HPXML::HVACTypeCentralAirConditioner) args << arg - arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('cooling_system_cooling_efficiency_seer', true) - arg.setDisplayName('Cooling System: Rated SEER') - arg.setUnits('SEER') - arg.setDescription("The rated efficiency value of the #{HPXML::HVACTypeCentralAirConditioner} cooling system.") - arg.setDefaultValue(13.0) + arg = OpenStudio::Measure::OSArgument::makeChoiceArgument('cooling_system_cooling_efficiency_type', cooling_efficiency_type_choices, true) + arg.setDisplayName('Cooling System: Efficiency Type') + arg.setDescription("The efficiency type of the cooling system. System types #{HPXML::HVACTypeCentralAirConditioner} and #{HPXML::HVACTypeMiniSplitAirConditioner} use #{HPXML::UnitsSEER}. System type #{HPXML::HVACTypeRoomAirConditioner} uses #{HPXML::UnitsEER}. Ignored for system type #{HPXML::HVACTypeEvaporativeCooler}.") + arg.setDefaultValue(HPXML::UnitsSEER) args << arg - arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('cooling_system_cooling_efficiency_eer', true) - arg.setDisplayName('Cooling System: Rated EER') - arg.setUnits('EER') - arg.setDescription("The rated efficiency value of the #{HPXML::HVACTypeRoomAirConditioner} cooling system.") - arg.setDefaultValue(8.5) + arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('cooling_system_cooling_efficiency', true) + arg.setDisplayName('Cooling System: Efficiency') + arg.setUnits("#{HPXML::UnitsSEER} or #{HPXML::UnitsEER}") + arg.setDescription("The rated efficiency value of the cooling system. Ignored for #{HPXML::HVACTypeEvaporativeCooler}.") + arg.setDefaultValue(13.0) args << arg arg = OpenStudio::Measure::OSArgument::makeChoiceArgument('cooling_system_cooling_compressor_type', compressor_type_choices, false) @@ -1047,13 +1042,13 @@ def arguments(model) arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('cooling_system_cooling_sensible_heat_fraction', false) arg.setDisplayName('Cooling System: Cooling Sensible Heat Fraction') - arg.setDescription('The sensible heat fraction of the cooling system. Ignored for evaporative cooler.') + arg.setDescription("The sensible heat fraction of the cooling system. Ignored for #{HPXML::HVACTypeEvaporativeCooler}.") arg.setUnits('Frac') args << arg arg = OpenStudio::Measure::OSArgument::makeStringArgument('cooling_system_cooling_capacity', true) arg.setDisplayName('Cooling System: Cooling Capacity') - arg.setDescription("The output cooling capacity of the cooling system. If using '#{Constants.Auto}', the autosizing algorithm will use ACCA Manual J/S to set the capacity to meet its load served. Ignored for evaporative cooler.") + arg.setDescription("The output cooling capacity of the cooling system. If using '#{Constants.Auto}', the autosizing algorithm will use ACCA Manual J/S to set the capacity to meet its load served.") arg.setUnits('tons') arg.setDefaultValue(Constants.Auto) args << arg @@ -1067,14 +1062,20 @@ def arguments(model) arg = OpenStudio::Measure::OSArgument::makeBoolArgument('cooling_system_is_ducted', true) arg.setDisplayName('Cooling System: Is Ducted') - arg.setDescription("Whether the cooling system is ducted or not. Only used for #{HPXML::HVACTypeEvaporativeCooler} and #{HPXML::HVACTypeMiniSplitAirConditioner}.") + arg.setDescription("Whether the cooling system is ducted or not. Only used for #{HPXML::HVACTypeMiniSplitAirConditioner} and #{HPXML::HVACTypeEvaporativeCooler}.") arg.setDefaultValue(false) args << arg - arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('cooling_system_fan_power_watts_per_cfm', false) - arg.setDisplayName('Cooling System: Fan Power') - arg.setDescription("Blower fan power. Applies to #{HPXML::HVACTypeCentralAirConditioner}, #{HPXML::HVACTypeEvaporativeCooler}, and #{HPXML::HVACTypeMiniSplitAirConditioner}.") - arg.setUnits('W/CFM') + arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('cooling_system_airflow_defect_ratio', false) + arg.setDisplayName('Cooling System: Airflow Defect Ratio') + arg.setDescription("The airflow defect ratio, defined as (InstalledAirflow - DesignAirflow) / DesignAirflow, of the cooling system per ANSI/RESNET/ACCA Standard 310. A value of zero means no airflow defect. Applies only to #{HPXML::HVACTypeCentralAirConditioner} and ducted #{HPXML::HVACTypeMiniSplitAirConditioner}.") + arg.setUnits('Frac') + args << arg + + arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('cooling_system_charge_defect_ratio', false) + arg.setDisplayName('Cooling System: Charge Defect Ratio') + arg.setDescription("The refrigerant charge defect ratio, defined as (InstalledCharge - DesignCharge) / DesignCharge, of the cooling system per ANSI/RESNET/ACCA Standard 310. A value of zero means no refrigerant charge defect. Applies only to #{HPXML::HVACTypeCentralAirConditioner} and #{HPXML::HVACTypeMiniSplitAirConditioner}.") + arg.setUnits('Frac') args << arg heat_pump_type_choices = OpenStudio::StringVector.new @@ -1083,6 +1084,10 @@ def arguments(model) heat_pump_type_choices << HPXML::HVACTypeHeatPumpMiniSplit heat_pump_type_choices << HPXML::HVACTypeHeatPumpGroundToAir + heat_pump_heating_efficiency_type_choices = OpenStudio::StringVector.new + heat_pump_heating_efficiency_type_choices << HPXML::UnitsHSPF + heat_pump_heating_efficiency_type_choices << HPXML::UnitsCOP + heat_pump_fuel_choices = OpenStudio::StringVector.new heat_pump_fuel_choices << HPXML::FuelTypeElectricity @@ -1099,32 +1104,30 @@ def arguments(model) arg.setDefaultValue('none') args << arg - arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('heat_pump_heating_efficiency_hspf', true) - arg.setDisplayName('Heat Pump: Rated Heating HSPF') - arg.setUnits('HSPF') - arg.setDescription("The rated heating efficiency value of the #{HPXML::HVACTypeHeatPumpAirToAir}/#{HPXML::HVACTypeHeatPumpMiniSplit} heat pump.") - arg.setDefaultValue(7.7) + arg = OpenStudio::Measure::OSArgument::makeChoiceArgument('heat_pump_heating_efficiency_type', heat_pump_heating_efficiency_type_choices, true) + arg.setDisplayName('Heat Pump: Heating Efficiency Type') + arg.setDescription("The heating efficiency type of heat pump. System types #{HPXML::HVACTypeHeatPumpAirToAir} and #{HPXML::HVACTypeHeatPumpMiniSplit} use #{HPXML::UnitsHSPF}. System type #{HPXML::HVACTypeHeatPumpGroundToAir} uses #{HPXML::UnitsCOP}.") + arg.setDefaultValue(HPXML::UnitsHSPF) args << arg - arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('heat_pump_heating_efficiency_cop', true) - arg.setDisplayName('Heat Pump: Rated Heating COP') - arg.setUnits('COP') - arg.setDescription("The rated heating efficiency value of the #{HPXML::HVACTypeHeatPumpGroundToAir} heat pump.") - arg.setDefaultValue(3.6) + arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('heat_pump_heating_efficiency', true) + arg.setDisplayName('Heat Pump: Heating Efficiency') + arg.setUnits("#{HPXML::UnitsHSPF} or #{HPXML::UnitsCOP}") + arg.setDescription('The rated heating efficiency value of the heat pump.') + arg.setDefaultValue(7.7) args << arg - arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('heat_pump_cooling_efficiency_seer', true) - arg.setDisplayName('Heat Pump: Rated Cooling SEER') - arg.setUnits('SEER') - arg.setDescription("The rated cooling efficiency value of the #{HPXML::HVACTypeHeatPumpAirToAir}/#{HPXML::HVACTypeHeatPumpMiniSplit} heat pump.") - arg.setDefaultValue(13.0) + arg = OpenStudio::Measure::OSArgument::makeChoiceArgument('heat_pump_cooling_efficiency_type', cooling_efficiency_type_choices, true) + arg.setDisplayName('Heat Pump: Cooling Efficiency Type') + arg.setDescription("The cooling efficiency type of heat pump. System types #{HPXML::HVACTypeHeatPumpAirToAir} and #{HPXML::HVACTypeHeatPumpMiniSplit} use #{HPXML::UnitsSEER}. System type #{HPXML::HVACTypeHeatPumpGroundToAir} uses #{HPXML::UnitsEER}.") + arg.setDefaultValue(HPXML::UnitsSEER) args << arg - arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('heat_pump_cooling_efficiency_eer', true) - arg.setDisplayName('Heat Pump: Rated Cooling EER') - arg.setUnits('EER') - arg.setDescription("The rated cooling efficiency value of the #{HPXML::HVACTypeHeatPumpGroundToAir} heat pump.") - arg.setDefaultValue(16.6) + arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('heat_pump_cooling_efficiency', true) + arg.setDisplayName('Heat Pump: Cooling Efficiency') + arg.setUnits("#{HPXML::UnitsSEER} or #{HPXML::UnitsEER}") + arg.setDescription('The rated cooling efficiency value of the heat pump.') + arg.setDefaultValue(13.0) args << arg arg = OpenStudio::Measure::OSArgument::makeChoiceArgument('heat_pump_cooling_compressor_type', compressor_type_choices, false) @@ -1145,7 +1148,7 @@ def arguments(model) arg.setDefaultValue(Constants.Auto) args << arg - arg = OpenStudio::Measure::OSArgument::makeStringArgument('heat_pump_heating_capacity_17F', true) + arg = OpenStudio::Measure::OSArgument::makeStringArgument('heat_pump_heating_capacity_17_f', true) arg.setDisplayName('Heat Pump: Heating Capacity 17F') arg.setDescription("The output heating capacity of the heat pump at 17F. Only applies to #{HPXML::HVACTypeHeatPumpAirToAir} and #{HPXML::HVACTypeHeatPumpMiniSplit}.") arg.setUnits('Btu/hr') @@ -1194,101 +1197,96 @@ def arguments(model) arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('heat_pump_backup_heating_switchover_temp', false) arg.setDisplayName('Heat Pump: Backup Heating Switchover Temperature') - arg.setDescription('The temperature at which the heat pump stops operating and the backup heating system starts running. Only applies to air-to-air and mini-split.') + arg.setDescription('The temperature at which the heat pump stops operating and the backup heating system starts running. Only applies to air-to-air and mini-split. If not provided, backup heating will operate as needed when heat pump capacity is insufficient.') arg.setUnits('deg-F') args << arg - arg = OpenStudio::Measure::OSArgument::makeBoolArgument('heat_pump_mini_split_is_ducted', false) - arg.setDisplayName('Heat Pump: Mini-Split Is Ducted') - arg.setDescription('Whether the mini-split heat pump is ducted or not.') - args << arg - - arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('heat_pump_pump_power_watts_per_ton', false) - arg.setDisplayName('Heat Pump: Ground-to-Air Pump Power') - arg.setDescription('Ground loop circulator pump power during operation of the heat pump.') - arg.setUnits('W/ton') + arg = OpenStudio::Measure::OSArgument::makeBoolArgument('heat_pump_is_ducted', false) + arg.setDisplayName('Heat Pump: Is Ducted') + arg.setDescription("Whether the heat pump is ducted or not. Only used for #{HPXML::HVACTypeHeatPumpMiniSplit}.") args << arg - arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('heat_pump_fan_power_watts_per_cfm', false) - arg.setDisplayName('Heat Pump: Fan Power') - arg.setDescription('Blower fan power.') - arg.setUnits('W/CFM') - args << arg - - arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('setpoint_heating_weekday_temp', true) - arg.setDisplayName('Heating Setpoint: Weekday Temperature') - arg.setDescription('Specify the weekday heating setpoint temperature.') - arg.setUnits('deg-F') - arg.setDefaultValue(71) + arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('heat_pump_airflow_defect_ratio', false) + arg.setDisplayName('Heat Pump: Airflow Defect Ratio') + arg.setDescription("The airflow defect ratio, defined as (InstalledAirflow - DesignAirflow) / DesignAirflow, of the heat pump per ANSI/RESNET/ACCA Standard 310. A value of zero means no airflow defect. Applies only to #{HPXML::HVACTypeHeatPumpAirToAir}, ducted #{HPXML::HVACTypeHeatPumpMiniSplit}, and #{HPXML::HVACTypeHeatPumpGroundToAir}.") + arg.setUnits('Frac') args << arg - arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('setpoint_heating_weekend_temp', true) - arg.setDisplayName('Heating Setpoint: Weekend Temperature') - arg.setDescription('Specify the weekend heating setpoint temperature.') - arg.setUnits('deg-F') - arg.setDefaultValue(71) + arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('heat_pump_charge_defect_ratio', false) + arg.setDisplayName('Heat Pump: Charge Defect Ratio') + arg.setDescription('The refrigerant charge defect ratio, defined as (InstalledCharge - DesignCharge) / DesignCharge, of the heat pump per ANSI/RESNET/ACCA Standard 310. A value of zero means no refrigerant charge defect. Applies to all heat pump types.') + arg.setUnits('Frac') args << arg - arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('setpoint_heating_weekday_offset_magnitude', false) - arg.setDisplayName('Heating Setpoint: Weekday Offset Magnitude') - arg.setDescription('Specify the weekday heating offset magnitude.') - arg.setUnits('deg-F') - args << arg + heating_system_type_2_choices = OpenStudio::StringVector.new + heating_system_type_2_choices << 'none' + heating_system_type_2_choices << HPXML::HVACTypeWallFurnace + heating_system_type_2_choices << HPXML::HVACTypeFloorFurnace + heating_system_type_2_choices << HPXML::HVACTypeBoiler + heating_system_type_2_choices << HPXML::HVACTypeElectricResistance + heating_system_type_2_choices << HPXML::HVACTypeStove + heating_system_type_2_choices << HPXML::HVACTypePortableHeater + heating_system_type_2_choices << HPXML::HVACTypeFireplace - arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('setpoint_heating_weekend_offset_magnitude', false) - arg.setDisplayName('Heating Setpoint: Weekend Offset Magnitude') - arg.setDescription('Specify the weekend heating offset magnitude.') - arg.setUnits('deg-F') + arg = OpenStudio::Measure::OSArgument::makeChoiceArgument('heating_system_type_2', heating_system_type_2_choices, true) + arg.setDisplayName('Heating System 2: Type') + arg.setDescription('The type of the second heating system.') + arg.setDefaultValue('none') args << arg - arg = OpenStudio::Measure::OSArgument::makeStringArgument('setpoint_heating_weekday_schedule', false) - arg.setDisplayName('Heating Setpoint: Weekday Schedule') - arg.setDescription('Specify the 24-hour comma-separated weekday heating schedule of 0s and 1s.') - arg.setUnits('deg-F') + arg = OpenStudio::Measure::OSArgument::makeChoiceArgument('heating_system_fuel_2', heating_system_fuel_choices, true) + arg.setDisplayName('Heating System 2: Fuel Type') + arg.setDescription("The fuel type of the second heating system. Ignored for #{HPXML::HVACTypeElectricResistance}.") + arg.setDefaultValue(HPXML::FuelTypeElectricity) args << arg - arg = OpenStudio::Measure::OSArgument::makeStringArgument('setpoint_heating_weekend_schedule', false) - arg.setDisplayName('Heating Setpoint: Weekend Schedule') - arg.setDescription('Specify the 24-hour comma-separated weekend heating schedule of 0s and 1s.') - arg.setUnits('deg-F') + arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('heating_system_heating_efficiency_2', true) + arg.setDisplayName('Heating System 2: Rated AFUE or Percent') + arg.setUnits('Frac') + arg.setDescription('For Furnace/WallFurnace/FloorFurnace/Boiler second heating system, the rated AFUE value. For ElectricResistance/Stove/PortableHeater/Fireplace, the rated Percent value.') + arg.setDefaultValue(1.0) args << arg - arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('setpoint_cooling_weekday_temp', true) - arg.setDisplayName('Cooling Setpoint: Weekday Temperature') - arg.setDescription('Specify the weekday cooling setpoint temperature.') - arg.setUnits('deg-F') - arg.setDefaultValue(76) + arg = OpenStudio::Measure::OSArgument::makeStringArgument('heating_system_heating_capacity_2', true) + arg.setDisplayName('Heating System 2: Heating Capacity') + arg.setDescription("The output heating capacity of the second heating system. If using '#{Constants.Auto}', the autosizing algorithm will use ACCA Manual J/S to set the capacity to meet its load served.") + arg.setUnits('Btu/hr') + arg.setDefaultValue(Constants.Auto) args << arg - arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('setpoint_cooling_weekend_temp', true) - arg.setDisplayName('Cooling Setpoint: Weekend Temperature') - arg.setDescription('Specify the weekend cooling setpoint temperature.') - arg.setUnits('deg-F') - arg.setDefaultValue(76) + arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('heating_system_fraction_heat_load_served_2', true) + arg.setDisplayName('Heating System 2: Fraction Heat Load Served') + arg.setDescription('The heat load served fraction of the second heating system.') + arg.setUnits('Frac') + arg.setDefaultValue(0.25) args << arg - arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('setpoint_cooling_weekday_offset_magnitude', false) - arg.setDisplayName('Cooling Setpoint: Weekday Offset Magnitude') - arg.setDescription('Specify the weekday cooling offset magnitude.') + arg = OpenStudio::Measure::OSArgument::makeStringArgument('setpoint_heating_weekday', true) + arg.setDisplayName('Heating Setpoint: Weekday Schedule') + arg.setDescription('Specify the constant or 24-hour comma-separated weekday heating schedule.') arg.setUnits('deg-F') + arg.setDefaultValue('71') args << arg - arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('setpoint_cooling_weekend_offset_magnitude', false) - arg.setDisplayName('Cooling Setpoint: Weekend Offset Magnitude') - arg.setDescription('Specify the weekend cooling offset magnitude.') + arg = OpenStudio::Measure::OSArgument::makeStringArgument('setpoint_heating_weekend', true) + arg.setDisplayName('Heating Setpoint: Weekend Schedule') + arg.setDescription('Specify the constant or 24-hour comma-separated weekend heating schedule.') arg.setUnits('deg-F') + arg.setDefaultValue('71') args << arg - arg = OpenStudio::Measure::OSArgument::makeStringArgument('setpoint_cooling_weekday_schedule', false) + arg = OpenStudio::Measure::OSArgument::makeStringArgument('setpoint_cooling_weekday', true) arg.setDisplayName('Cooling Setpoint: Weekday Schedule') - arg.setDescription('Specify the 24-hour comma-separated weekday cooling schedule of 0s and 1s.') + arg.setDescription('Specify the constant or 24-hour comma-separated weekday cooling schedule.') arg.setUnits('deg-F') + arg.setDefaultValue('76') args << arg - arg = OpenStudio::Measure::OSArgument::makeStringArgument('setpoint_cooling_weekend_schedule', false) + arg = OpenStudio::Measure::OSArgument::makeStringArgument('setpoint_cooling_weekend', true) arg.setDisplayName('Cooling Setpoint: Weekend Schedule') - arg.setDescription('Specify the 24-hour comma-separated weekend cooling schedule of 0s and 1s.') + arg.setDescription('Specify the constant or 24-hour comma-separated weekend cooling schedule.') arg.setUnits('deg-F') + arg.setDefaultValue('76') args << arg duct_leakage_units_choices = OpenStudio::StringVector.new @@ -1385,66 +1383,6 @@ def arguments(model) arg.setDefaultValue(Constants.Auto) args << arg - heating_system_type_2_choices = OpenStudio::StringVector.new - heating_system_type_2_choices << 'none' - heating_system_type_2_choices << HPXML::HVACTypeWallFurnace - heating_system_type_2_choices << HPXML::HVACTypeFloorFurnace - heating_system_type_2_choices << HPXML::HVACTypeElectricResistance - heating_system_type_2_choices << HPXML::HVACTypeStove - heating_system_type_2_choices << HPXML::HVACTypePortableHeater - heating_system_type_2_choices << HPXML::HVACTypeFireplace - - arg = OpenStudio::Measure::OSArgument::makeChoiceArgument('heating_system_type_2', heating_system_type_2_choices, true) - arg.setDisplayName('Heating System 2: Type') - arg.setDescription('The type of the second heating system.') - arg.setDefaultValue('none') - args << arg - - arg = OpenStudio::Measure::OSArgument::makeChoiceArgument('heating_system_fuel_2', heating_system_fuel_choices, true) - arg.setDisplayName('Heating System 2: Fuel Type') - arg.setDescription('The fuel type of the second heating system. Ignored for ElectricResistance.') - arg.setDefaultValue(HPXML::FuelTypeElectricity) - args << arg - - arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('heating_system_heating_efficiency_2', true) - arg.setDisplayName('Heating System 2: Rated AFUE or Percent') - arg.setUnits('Frac') - arg.setDescription('For Furnace/WallFurnace/FloorFurnace/Boiler second heating system, the rated AFUE value. For ElectricResistance/Stove/PortableHeater/Fireplace, the rated Percent value.') - arg.setDefaultValue(1.0) - args << arg - - arg = OpenStudio::Measure::OSArgument::makeStringArgument('heating_system_heating_capacity_2', true) - arg.setDisplayName('Heating System 2: Heating Capacity') - arg.setDescription("The output heating capacity of the second heating system. If using '#{Constants.Auto}', the autosizing algorithm will use ACCA Manual J/S to set the capacity to meet its load served.") - arg.setUnits('Btu/hr') - arg.setDefaultValue(Constants.Auto) - args << arg - - arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('heating_system_fraction_heat_load_served_2', true) - arg.setDisplayName('Heating System 2: Fraction Heat Load Served') - arg.setDescription('The heat load served fraction of the second heating system.') - arg.setUnits('Frac') - arg.setDefaultValue(0.25) - args << arg - - arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('heating_system_electric_auxiliary_energy_2', false) - arg.setDisplayName('Heating System 2: Electric Auxiliary Energy') - arg.setDescription('The electric auxiliary energy of the second heating system.') - arg.setUnits('kWh/yr') - args << arg - - arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('heating_system_fan_power_watts_2', false) - arg.setDisplayName('Heating System 2: Fan Power') - arg.setDescription("Blower fan power. Ignored for #{HPXML::HVACTypeElectricResistance}.") - arg.setUnits('W/CFM') - args << arg - - arg = OpenStudio::Measure::OSArgument::makeBoolArgument('heating_system_has_flue_or_chimney_2', true) - arg.setDisplayName('Heating System 2: Has Flue or Chimney') - arg.setDescription('Whether the second heating system has a flue or chimney.') - arg.setDefaultValue(false) - args << arg - mech_vent_fan_type_choices = OpenStudio::StringVector.new mech_vent_fan_type_choices << 'none' mech_vent_fan_type_choices << HPXML::MechVentTypeExhaust @@ -1474,11 +1412,11 @@ def arguments(model) arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('mech_vent_hours_in_operation', true) arg.setDisplayName('Mechanical Ventilation: Hours In Operation') arg.setDescription('The hours in operation of the mechanical ventilation.') - arg.setUnits('hrs') + arg.setUnits('hrs/day') arg.setDefaultValue(24) args << arg - arg = OpenStudio::Measure::OSArgument::makeChoiceArgument('mech_vent_total_recovery_efficiency_type', mech_vent_recovery_efficiency_type_choices, true) + arg = OpenStudio::Measure::OSArgument::makeChoiceArgument('mech_vent_recovery_efficiency_type', mech_vent_recovery_efficiency_type_choices, true) arg.setDisplayName('Mechanical Ventilation: Total Recovery Efficiency Type') arg.setDescription('The total recovery efficiency type of the mechanical ventilation.') arg.setDefaultValue('Unadjusted') @@ -1486,20 +1424,14 @@ def arguments(model) arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('mech_vent_total_recovery_efficiency', true) arg.setDisplayName('Mechanical Ventilation: Total Recovery Efficiency') - arg.setDescription('The Unadjusted or Adjusted total recovery efficiency of the mechanical ventilation.') + arg.setDescription("The Unadjusted or Adjusted total recovery efficiency of the mechanical ventilation. Applies to #{HPXML::MechVentTypeERV}.") arg.setUnits('Frac') arg.setDefaultValue(0.48) args << arg - arg = OpenStudio::Measure::OSArgument::makeChoiceArgument('mech_vent_sensible_recovery_efficiency_type', mech_vent_recovery_efficiency_type_choices, true) - arg.setDisplayName('Mechanical Ventilation: Sensible Recovery Efficiency Type') - arg.setDescription('The sensible recovery efficiency type of the mechanical ventilation.') - arg.setDefaultValue('Unadjusted') - args << arg - arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('mech_vent_sensible_recovery_efficiency', true) arg.setDisplayName('Mechanical Ventilation: Sensible Recovery Efficiency') - arg.setDescription('The Unadjusted or Adjusted sensible recovery efficiency of the mechanical ventilation.') + arg.setDescription("The Unadjusted or Adjusted sensible recovery efficiency of the mechanical ventilation. Applies to #{HPXML::MechVentTypeERV} and #{HPXML::MechVentTypeHRV}.") arg.setUnits('Frac') arg.setDefaultValue(0.72) args << arg @@ -1526,12 +1458,12 @@ def arguments(model) arg = OpenStudio::Measure::OSArgument::makeChoiceArgument('shared_mech_vent_preheating_fuel', heating_system_fuel_choices, false) arg.setDisplayName('Shared Mechanical Ventilation: Preheating Fuel') - arg.setDescription('Fuel type of the preconditioning heating equipment.') + arg.setDescription('Fuel type of the preconditioning heating equipment. Only used for a shared mechanical ventilation system.') args << arg arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('shared_mech_vent_preheating_efficiency', false) arg.setDisplayName('Shared Mechanical Ventilation: Preheating Efficiency') - arg.setDescription('Efficiency of the preconditioning heating equipment.') + arg.setDescription('Efficiency of the preconditioning heating equipment. Only used for a shared mechanical ventilation system.') arg.setUnits('COP') args << arg @@ -1546,12 +1478,12 @@ def arguments(model) arg = OpenStudio::Measure::OSArgument::makeChoiceArgument('shared_mech_vent_precooling_fuel', cooling_system_fuel_choices, false) arg.setDisplayName('Shared Mechanical Ventilation: Precooling Fuel') - arg.setDescription('Fuel type of the preconditioning cooling equipment.') + arg.setDescription('Fuel type of the preconditioning cooling equipment. Only used for a shared mechanical ventilation system.') args << arg arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('shared_mech_vent_precooling_efficiency', false) arg.setDisplayName('Shared Mechanical Ventilation: Precooling Efficiency') - arg.setDescription('Efficiency of the preconditioning cooling equipment.') + arg.setDescription('Efficiency of the preconditioning cooling equipment. Only used for a shared mechanical ventilation system.') arg.setUnits('COP') args << arg @@ -1577,11 +1509,11 @@ def arguments(model) arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('mech_vent_hours_in_operation_2', true) arg.setDisplayName('Mechanical Ventilation 2: Hours In Operation') arg.setDescription('The hours in operation of the second mechanical ventilation.') - arg.setUnits('hrs') + arg.setUnits('hrs/day') arg.setDefaultValue(24) args << arg - arg = OpenStudio::Measure::OSArgument::makeChoiceArgument('mech_vent_total_recovery_efficiency_type_2', mech_vent_recovery_efficiency_type_choices, true) + arg = OpenStudio::Measure::OSArgument::makeChoiceArgument('mech_vent_recovery_efficiency_type_2', mech_vent_recovery_efficiency_type_choices, true) arg.setDisplayName('Mechanical Ventilation 2: Total Recovery Efficiency Type') arg.setDescription('The total recovery efficiency type of the second mechanical ventilation.') arg.setDefaultValue('Unadjusted') @@ -1589,20 +1521,14 @@ def arguments(model) arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('mech_vent_total_recovery_efficiency_2', true) arg.setDisplayName('Mechanical Ventilation 2: Total Recovery Efficiency') - arg.setDescription('The Unadjusted or Adjusted total recovery efficiency of the second mechanical ventilation.') + arg.setDescription("The Unadjusted or Adjusted total recovery efficiency of the second mechanical ventilation. Applies to #{HPXML::MechVentTypeERV}.") arg.setUnits('Frac') arg.setDefaultValue(0.48) args << arg - arg = OpenStudio::Measure::OSArgument::makeChoiceArgument('mech_vent_sensible_recovery_efficiency_type_2', mech_vent_recovery_efficiency_type_choices, true) - arg.setDisplayName('Mechanical Ventilation 2: Sensible Recovery Efficiency Type') - arg.setDescription('The sensible recovery efficiency type of the second mechanical ventilation.') - arg.setDefaultValue('Unadjusted') - args << arg - arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('mech_vent_sensible_recovery_efficiency_2', true) arg.setDisplayName('Mechanical Ventilation 2: Sensible Recovery Efficiency') - arg.setDescription('The Unadjusted or Adjusted sensible recovery efficiency of the second mechanical ventilation.') + arg.setDescription("The Unadjusted or Adjusted sensible recovery efficiency of the second mechanical ventilation. Applies to #{HPXML::MechVentTypeERV} and #{HPXML::MechVentTypeHRV}.") arg.setUnits('Frac') arg.setDefaultValue(0.72) args << arg @@ -1614,76 +1540,74 @@ def arguments(model) arg.setDefaultValue(30) args << arg - arg = OpenStudio::Measure::OSArgument::makeBoolArgument('kitchen_fans_present', true) - arg.setDisplayName('Kitchen Fans: Present') - arg.setDescription('Whether there are kitchen fans.') - arg.setDefaultValue(false) - args << arg - - arg = OpenStudio::Measure::OSArgument::makeIntegerArgument('kitchen_fans_quantity', false) + arg = OpenStudio::Measure::OSArgument::makeStringArgument('kitchen_fans_quantity', true) arg.setDisplayName('Kitchen Fans: Quantity') arg.setDescription('The quantity of the kitchen fans.') arg.setUnits('#') + arg.setDefaultValue(Constants.Auto) args << arg - arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('kitchen_fans_flow_rate', false) + arg = OpenStudio::Measure::OSArgument::makeStringArgument('kitchen_fans_flow_rate', false) arg.setDisplayName('Kitchen Fans: Flow Rate') arg.setDescription('The flow rate of the kitchen fan.') arg.setUnits('CFM') + arg.setDefaultValue(Constants.Auto) args << arg - arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('kitchen_fans_hours_in_operation', false) + arg = OpenStudio::Measure::OSArgument::makeStringArgument('kitchen_fans_hours_in_operation', false) arg.setDisplayName('Kitchen Fans: Hours In Operation') arg.setDescription('The hours in operation of the kitchen fan.') - arg.setUnits('hrs') + arg.setUnits('hrs/day') + arg.setDefaultValue(Constants.Auto) args << arg - arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('kitchen_fans_power', false) + arg = OpenStudio::Measure::OSArgument::makeStringArgument('kitchen_fans_power', false) arg.setDisplayName('Kitchen Fans: Fan Power') arg.setDescription('The fan power of the kitchen fan.') arg.setUnits('W') + arg.setDefaultValue(Constants.Auto) args << arg - arg = OpenStudio::Measure::OSArgument::makeIntegerArgument('kitchen_fans_start_hour', false) + arg = OpenStudio::Measure::OSArgument::makeStringArgument('kitchen_fans_start_hour', false) arg.setDisplayName('Kitchen Fans: Start Hour') arg.setDescription('The start hour of the kitchen fan.') arg.setUnits('hr') + arg.setDefaultValue(Constants.Auto) args << arg - arg = OpenStudio::Measure::OSArgument::makeBoolArgument('bathroom_fans_present', true) - arg.setDisplayName('Bathroom Fans: Present') - arg.setDescription('Whether there are bathroom fans.') - arg.setDefaultValue(false) - args << arg - - arg = OpenStudio::Measure::OSArgument::makeIntegerArgument('bathroom_fans_quantity', false) + arg = OpenStudio::Measure::OSArgument::makeStringArgument('bathroom_fans_quantity', true) arg.setDisplayName('Bathroom Fans: Quantity') arg.setDescription('The quantity of the bathroom fans.') arg.setUnits('#') + arg.setDefaultValue(Constants.Auto) args << arg - arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('bathroom_fans_flow_rate', false) + arg = OpenStudio::Measure::OSArgument::makeStringArgument('bathroom_fans_flow_rate', false) arg.setDisplayName('Bathroom Fans: Flow Rate') arg.setDescription('The flow rate of the bathroom fans.') arg.setUnits('CFM') + arg.setDefaultValue(Constants.Auto) args << arg - arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('bathroom_fans_hours_in_operation', false) + arg = OpenStudio::Measure::OSArgument::makeStringArgument('bathroom_fans_hours_in_operation', false) arg.setDisplayName('Bathroom Fans: Hours In Operation') arg.setDescription('The hours in operation of the bathroom fans.') - arg.setUnits('hrs') + arg.setUnits('hrs/day') + arg.setDefaultValue(Constants.Auto) args << arg - arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('bathroom_fans_power', false) + arg = OpenStudio::Measure::OSArgument::makeStringArgument('bathroom_fans_power', false) arg.setDisplayName('Bathroom Fans: Fan Power') arg.setDescription('The fan power of the bathroom fans.') arg.setUnits('W') + arg.setDefaultValue(Constants.Auto) args << arg - arg = OpenStudio::Measure::OSArgument::makeIntegerArgument('bathroom_fans_start_hour', false) + arg = OpenStudio::Measure::OSArgument::makeStringArgument('bathroom_fans_start_hour', false) arg.setDisplayName('Bathroom Fans: Start Hour') arg.setDescription('The start hour of the bathroom fans.') arg.setUnits('hr') + arg.setDefaultValue(Constants.Auto) args << arg arg = OpenStudio::Measure::OSArgument::makeBoolArgument('whole_house_fan_present', true) @@ -1762,18 +1686,11 @@ def arguments(model) arg = OpenStudio::Measure::OSArgument::makeStringArgument('water_heater_tank_volume', true) arg.setDisplayName('Water Heater: Tank Volume') - arg.setDescription("Nominal volume of water heater tank. Set to #{Constants.Auto} to have volume autosized. Only applies to #{HPXML::WaterHeaterTypeStorage}, #{HPXML::WaterHeaterTypeHeatPump}, and #{HPXML::WaterHeaterTypeCombiStorage}.") + arg.setDescription("Nominal volume of water heater tank. Set to '#{Constants.Auto}' to have volume autosized. Only applies to #{HPXML::WaterHeaterTypeStorage}, #{HPXML::WaterHeaterTypeHeatPump}, and #{HPXML::WaterHeaterTypeCombiStorage}.") arg.setUnits('gal') arg.setDefaultValue(Constants.Auto) args << arg - arg = OpenStudio::Measure::OSArgument::makeStringArgument('water_heater_heating_capacity', true) - arg.setDisplayName('Water Heater: Input Capacity') - arg.setDescription("The maximum energy input rating of water heater. Set to #{Constants.Auto} to have this field autosized. Only applies to #{HPXML::WaterHeaterTypeStorage}.") - arg.setUnits('Btu/hr') - arg.setDefaultValue(Constants.Auto) - args << arg - arg = OpenStudio::Measure::OSArgument::makeChoiceArgument('water_heater_efficiency_type', water_heater_efficiency_type_choices, true) arg.setDisplayName('Water Heater: Efficiency Type') arg.setDescription('The efficiency type of water heater. Does not apply to space-heating boilers.') @@ -1819,12 +1736,6 @@ def arguments(model) arg.setDefaultValue(Constants.Auto) args << arg - arg = OpenStudio::Measure::OSArgument::makeBoolArgument('water_heater_has_flue_or_chimney', true) - arg.setDisplayName('Water Heater: Has Flue or Chimney') - arg.setDescription('Whether the water heater has a flue or chimney.') - arg.setDefaultValue(false) - args << arg - arg = OpenStudio::Measure::OSArgument::makeIntegerArgument('water_heater_num_units_served', true) arg.setDisplayName('Water Heater: Number of Units Served') arg.setDescription("Number of dwelling units served (directly or indirectly) by the water heater. Must be 1 if #{HPXML::ResidentialTypeSFD}. Used to apportion water heater tank losses to the unit.") @@ -2262,13 +2173,8 @@ def arguments(model) arg.setDefaultValue(Constants.Auto) args << arg - arg = OpenStudio::Measure::OSArgument::makeBoolArgument('dehumidifier_present', true) - arg.setDisplayName('Dehumidifier: Present') - arg.setDescription('Whether there is a dehumidifier.') - arg.setDefaultValue(false) - args << arg - dehumidifier_type_choices = OpenStudio::StringVector.new + dehumidifier_type_choices << 'none' dehumidifier_type_choices << HPXML::DehumidifierTypePortable dehumidifier_type_choices << HPXML::DehumidifierTypeWholeHome @@ -2279,26 +2185,19 @@ def arguments(model) arg = OpenStudio::Measure::OSArgument::makeChoiceArgument('dehumidifier_type', dehumidifier_type_choices, true) arg.setDisplayName('Dehumidifier: Type') arg.setDescription('The type of dehumidifier.') - arg.setDefaultValue(HPXML::DehumidifierTypePortable) + arg.setDefaultValue('none') args << arg arg = OpenStudio::Measure::OSArgument::makeChoiceArgument('dehumidifier_efficiency_type', dehumidifier_efficiency_type_choices, true) arg.setDisplayName('Dehumidifier: Efficiency Type') arg.setDescription('The efficiency type of dehumidifier.') - arg.setDefaultValue('EnergyFactor') - args << arg - - arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('dehumidifier_efficiency_ef', true) - arg.setDisplayName('Dehumidifier: Energy Factor') - arg.setUnits('liters/kWh') - arg.setDescription('The Energy Factor (EF) of the dehumidifier.') - arg.setDefaultValue(1.8) + arg.setDefaultValue('IntegratedEnergyFactor') args << arg - arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('dehumidifier_efficiency_ief', true) - arg.setDisplayName('Dehumidifier: Integrated Energy Factor') + arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('dehumidifier_efficiency', true) + arg.setDisplayName('Dehumidifier: Efficiency') arg.setUnits('liters/kWh') - arg.setDescription('The Integrated Energy Factor (IEF) of the dehumidifier.') + arg.setDescription('The efficiency of the dehumidifier.') arg.setDefaultValue(1.5) args << arg @@ -2323,14 +2222,9 @@ def arguments(model) arg.setDefaultValue(1) args << arg - arg = OpenStudio::Measure::OSArgument::makeBoolArgument('clothes_washer_present', true) - arg.setDisplayName('Clothes Washer: Present') - arg.setDescription('Whether there is a clothes washer.') - arg.setDefaultValue(true) - args << arg - appliance_location_choices = OpenStudio::StringVector.new appliance_location_choices << Constants.Auto + appliance_location_choices << 'none' appliance_location_choices << HPXML::LocationLivingSpace appliance_location_choices << HPXML::LocationBasementConditioned appliance_location_choices << HPXML::LocationBasementUnconditioned @@ -2352,21 +2246,14 @@ def arguments(model) arg = OpenStudio::Measure::OSArgument::makeChoiceArgument('clothes_washer_efficiency_type', clothes_washer_efficiency_type_choices, true) arg.setDisplayName('Clothes Washer: Efficiency Type') - arg.setDescription('The efficiency type of clothes washer.') + arg.setDescription('The efficiency type of the clothes washer.') arg.setDefaultValue('IntegratedModifiedEnergyFactor') args << arg - arg = OpenStudio::Measure::OSArgument::makeStringArgument('clothes_washer_efficiency_mef', true) - arg.setDisplayName('Clothes Washer: Modified Energy Factor') - arg.setUnits('ft^3/kWh-cycle') - arg.setDescription('The Modified Energy Factor (MEF) is the capacity of the clothes container divided by the total clothes washer energy consumption per cycle, where the energy consumption is the sum of the machine electrical energy consumption, the hot water energy consumption, the energy required for removal of the remaining moisture in the wash load, standby energy, and off-mode energy consumption.') - arg.setDefaultValue(Constants.Auto) - args << arg - - arg = OpenStudio::Measure::OSArgument::makeStringArgument('clothes_washer_efficiency_imef', true) - arg.setDisplayName('Clothes Washer: Integrated Modified Energy Factor') + arg = OpenStudio::Measure::OSArgument::makeStringArgument('clothes_washer_efficiency', true) + arg.setDisplayName('Clothes Washer: Efficiency') arg.setUnits('ft^3/kWh-cyc') - arg.setDescription('The energy performance metric for ENERGY STAR certified residential clothes washers as of March 7, 2015.') + arg.setDescription('The efficiency of the clothes washer.') arg.setDefaultValue(Constants.Auto) args << arg @@ -2418,12 +2305,6 @@ def arguments(model) arg.setDefaultValue(1.0) args << arg - arg = OpenStudio::Measure::OSArgument::makeBoolArgument('clothes_dryer_present', true) - arg.setDisplayName('Clothes Dryer: Present') - arg.setDescription('Whether there is a clothes dryer.') - arg.setDefaultValue(true) - args << arg - arg = OpenStudio::Measure::OSArgument::makeChoiceArgument('clothes_dryer_location', appliance_location_choices, true) arg.setDisplayName('Clothes Dryer: Location') arg.setDescription('The space type for the clothes dryer location.') @@ -2438,11 +2319,6 @@ def arguments(model) clothes_dryer_fuel_choices << HPXML::FuelTypeWoodCord clothes_dryer_fuel_choices << HPXML::FuelTypeCoal - clothes_dryer_control_type_choices = OpenStudio::StringVector.new - clothes_dryer_control_type_choices << Constants.Auto - clothes_dryer_control_type_choices << HPXML::ClothesDryerControlTypeTimer - clothes_dryer_control_type_choices << HPXML::ClothesDryerControlTypeMoisture - clothes_dryer_efficiency_type_choices = OpenStudio::StringVector.new clothes_dryer_efficiency_type_choices << 'EnergyFactor' clothes_dryer_efficiency_type_choices << 'CombinedEnergyFactor' @@ -2455,27 +2331,14 @@ def arguments(model) arg = OpenStudio::Measure::OSArgument::makeChoiceArgument('clothes_dryer_efficiency_type', clothes_dryer_efficiency_type_choices, true) arg.setDisplayName('Clothes Dryer: Efficiency Type') - arg.setDescription('The efficiency type of clothes dryer.') + arg.setDescription('The efficiency type of the clothes dryer.') arg.setDefaultValue('CombinedEnergyFactor') args << arg - arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('clothes_dryer_efficiency_ef', true) - arg.setDisplayName('Clothes Dryer: Energy Factor') + arg = OpenStudio::Measure::OSArgument::makeStringArgument('clothes_dryer_efficiency', true) + arg.setDisplayName('Clothes Dryer: Efficiency') arg.setUnits('lb/kWh') - arg.setDescription('The energy performance metric for ENERGY STAR certified residential clothes dryers prior to September 13, 2013. The new metric is Combined Energy Factor.') - arg.setDefaultValue(3.4615) - args << arg - - arg = OpenStudio::Measure::OSArgument::makeStringArgument('clothes_dryer_efficiency_cef', true) - arg.setDisplayName('Clothes Dryer: Combined Energy Factor') - arg.setUnits('lb/kWh') - arg.setDescription('The Combined Energy Factor (CEF) measures the pounds of clothing that can be dried per kWh (Fuel equivalent) of electricity, including energy consumed during Stand-by and Off modes.') - arg.setDefaultValue(Constants.Auto) - args << arg - - arg = OpenStudio::Measure::OSArgument::makeChoiceArgument('clothes_dryer_control_type', clothes_dryer_control_type_choices, true) - arg.setDisplayName('Clothes Dryer: Control Type') - arg.setDescription('Type of control used by the clothes dryer.') + arg.setDescription('The efficiency of the clothes dryer.') arg.setDefaultValue(Constants.Auto) args << arg @@ -2492,12 +2355,6 @@ def arguments(model) arg.setDefaultValue(1.0) args << arg - arg = OpenStudio::Measure::OSArgument::makeBoolArgument('dishwasher_present', true) - arg.setDisplayName('Dishwasher: Present') - arg.setDescription('Whether there is a dishwasher.') - arg.setDefaultValue(true) - args << arg - arg = OpenStudio::Measure::OSArgument::makeChoiceArgument('dishwasher_location', appliance_location_choices, true) arg.setDisplayName('Dishwasher: Location') arg.setDescription('The space type for the dishwasher location.') @@ -2514,19 +2371,13 @@ def arguments(model) arg.setDefaultValue('RatedAnnualkWh') args << arg - arg = OpenStudio::Measure::OSArgument::makeStringArgument('dishwasher_efficiency_kwh', true) - arg.setDisplayName('Dishwasher: Rated Annual kWh') - arg.setUnits('kWh/yr') - arg.setDescription('The rated annual kWh of the dishwasher.') + arg = OpenStudio::Measure::OSArgument::makeStringArgument('dishwasher_efficiency', true) + arg.setDisplayName('Dishwasher: Efficiency') + arg.setUnits('RatedAnnualkWh or EnergyFactor') + arg.setDescription('The efficiency of the dishwasher.') arg.setDefaultValue(Constants.Auto) args << arg - arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('dishwasher_efficiency_ef', true) - arg.setDisplayName('Dishwasher: Energy Factor') - arg.setDescription('The energy factor of the dishwasher.') - arg.setDefaultValue(0.46) - args << arg - arg = OpenStudio::Measure::OSArgument::makeStringArgument('dishwasher_label_electric_rate', true) arg.setDisplayName('Dishwasher: Label Electric Rate') arg.setUnits('$/kWh') @@ -2568,12 +2419,6 @@ def arguments(model) arg.setDefaultValue(1.0) args << arg - arg = OpenStudio::Measure::OSArgument::makeBoolArgument('refrigerator_present', true) - arg.setDisplayName('Refrigerator: Present') - arg.setDescription('Whether there is a refrigerator.') - arg.setDefaultValue(true) - args << arg - arg = OpenStudio::Measure::OSArgument::makeChoiceArgument('refrigerator_location', appliance_location_choices, true) arg.setDisplayName('Refrigerator: Location') arg.setDescription('The space type for the refrigerator location.') @@ -2593,12 +2438,6 @@ def arguments(model) arg.setDefaultValue(1.0) args << arg - arg = OpenStudio::Measure::OSArgument::makeBoolArgument('extra_refrigerator_present', true) - arg.setDisplayName('Extra Refrigerator: Present') - arg.setDescription('Whether there is an extra refrigerator.') - arg.setDefaultValue(false) - args << arg - arg = OpenStudio::Measure::OSArgument::makeChoiceArgument('extra_refrigerator_location', appliance_location_choices, true) arg.setDisplayName('Extra Refrigerator: Location') arg.setDescription('The space type for the extra refrigerator location.') @@ -2618,12 +2457,6 @@ def arguments(model) arg.setDefaultValue(1.0) args << arg - arg = OpenStudio::Measure::OSArgument::makeBoolArgument('freezer_present', true) - arg.setDisplayName('Freezer: Present') - arg.setDescription('Whether there is a freezer.') - arg.setDefaultValue(false) - args << arg - arg = OpenStudio::Measure::OSArgument::makeChoiceArgument('freezer_location', appliance_location_choices, true) arg.setDisplayName('Freezer: Location') arg.setDescription('The space type for the freezer location.') @@ -2651,12 +2484,6 @@ def arguments(model) cooking_range_oven_fuel_choices << HPXML::FuelTypeWoodCord cooking_range_oven_fuel_choices << HPXML::FuelTypeCoal - arg = OpenStudio::Measure::OSArgument::makeBoolArgument('cooking_range_oven_present', true) - arg.setDisplayName('Cooking Range/Oven: Present') - arg.setDescription('Whether there is a cooking range/oven.') - arg.setDefaultValue(true) - args << arg - arg = OpenStudio::Measure::OSArgument::makeChoiceArgument('cooking_range_oven_location', appliance_location_choices, true) arg.setDisplayName('Cooking Range/Oven: Location') arg.setDescription('The space type for the cooking range/oven location.') @@ -2725,12 +2552,6 @@ def arguments(model) arg.setDefaultValue(1.0) args << arg - arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('plug_loads_television_usage_multiplier_2', true) - arg.setDisplayName('Plug Loads: Television Usage Multiplier 2') - arg.setDefaultValue(1.0) - arg.setDescription('Additional multiplier on the television energy usage that can reflect, e.g., high/low usage occupants.') - args << arg - arg = OpenStudio::Measure::OSArgument::makeStringArgument('plug_loads_other_annual_kwh', true) arg.setDisplayName('Plug Loads: Other Annual kWh') arg.setDescription('The annual energy consumption of the other residual plug loads.') @@ -2758,12 +2579,6 @@ def arguments(model) arg.setDefaultValue(1.0) args << arg - arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('plug_loads_other_usage_multiplier_2', true) - arg.setDisplayName('Plug Loads: Other Usage Multiplier 2') - arg.setDescription('Additional multiplier on the other energy usage that can reflect, e.g., high/low usage occupants.') - arg.setDefaultValue(1.0) - args << arg - arg = OpenStudio::Measure::OSArgument::makeBoolArgument('plug_loads_well_pump_present', true) arg.setDisplayName('Plug Loads: Well Pump Present') arg.setDescription('Whether there is a well pump.') @@ -2780,13 +2595,7 @@ def arguments(model) arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('plug_loads_well_pump_usage_multiplier', true) arg.setDisplayName('Plug Loads: Well Pump Usage Multiplier') arg.setDescription('Multiplier on the well pump energy usage that can reflect, e.g., high/low usage occupants.') - arg.setDefaultValue(0.0) - args << arg - - arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('plug_loads_well_pump_usage_multiplier_2', true) - arg.setDisplayName('Plug Loads: Well Pump Usage Multiplier 2') - arg.setDescription('Additional multiplier on the well pump energy usage that can reflect, e.g., high/low usage occupants.') - arg.setDefaultValue(0.0) + arg.setDefaultValue(1.0) args << arg arg = OpenStudio::Measure::OSArgument::makeBoolArgument('plug_loads_vehicle_present', true) @@ -2805,13 +2614,7 @@ def arguments(model) arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('plug_loads_vehicle_usage_multiplier', true) arg.setDisplayName('Plug Loads: Vehicle Usage Multiplier') arg.setDescription('Multiplier on the electric vehicle energy usage that can reflect, e.g., high/low usage occupants.') - arg.setDefaultValue(0.0) - args << arg - - arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('plug_loads_vehicle_usage_multiplier_2', true) - arg.setDisplayName('Plug Loads: Vehicle Usage Multiplier 2') - arg.setDescription('Additional multiplier on the electric vehicle energy usage that can reflect, e.g., high/low usage occupants.') - arg.setDefaultValue(0.0) + arg.setDefaultValue(1.0) args << arg fuel_loads_fuel_choices = OpenStudio::StringVector.new @@ -2916,7 +2719,7 @@ def arguments(model) args << arg heater_type_choices = OpenStudio::StringVector.new - heater_type_choices << 'none' + heater_type_choices << HPXML::TypeNone heater_type_choices << HPXML::HeaterTypeElectricResistance heater_type_choices << HPXML::HeaterTypeGas heater_type_choices << HPXML::HeaterTypeHeatPump @@ -2943,7 +2746,7 @@ def arguments(model) arg = OpenStudio::Measure::OSArgument::makeChoiceArgument('pool_heater_type', heater_type_choices, true) arg.setDisplayName('Pool: Heater Type') arg.setDescription("The type of pool heater. Use 'none' if there is no pool heater.") - arg.setDefaultValue('none') + arg.setDefaultValue(HPXML::TypeNone) args << arg arg = OpenStudio::Measure::OSArgument::makeStringArgument('pool_heater_annual_kwh', true) @@ -2988,7 +2791,7 @@ def arguments(model) arg = OpenStudio::Measure::OSArgument::makeChoiceArgument('hot_tub_heater_type', heater_type_choices, true) arg.setDisplayName('Hot Tub: Heater Type') arg.setDescription("The type of hot tub heater. Use 'none' if there is no hot tub heater.") - arg.setDefaultValue('none') + arg.setDefaultValue(HPXML::TypeNone) args << arg arg = OpenStudio::Measure::OSArgument::makeStringArgument('hot_tub_heater_annual_kwh', true) @@ -3023,13 +2826,14 @@ def run(model, runner, user_arguments) return false end + Geometry.tear_down_model(model, runner) + Version.check_openstudio_version() # assign the user inputs to variables - args = get_argument_values(runner, user_arguments) - args[:hpxml_path] = runner.getStringArgumentValue('hpxml_path', user_arguments) - args[:software_program_used] = runner.getOptionalStringArgumentValue('software_program_used', user_arguments) - args[:software_program_version] = runner.getOptionalStringArgumentValue('software_program_version', user_arguments) + args = get_argument_values(runner, arguments(model), user_arguments) + args = Hash[args.collect { |k, v| [k.to_sym, v] }] + args[:geometry_rim_joist_height] /= 12.0 args[:geometry_roof_pitch] = { '1:12' => 1.0 / 12.0, '2:12' => 2.0 / 12.0, '3:12' => 3.0 / 12.0, '4:12' => 4.0 / 12.0, '5:12' => 5.0 / 12.0, '6:12' => 6.0 / 12.0, '7:12' => 7.0 / 12.0, '8:12' => 8.0 / 12.0, '9:12' => 9.0 / 12.0, '10:12' => 10.0 / 12.0, '11:12' => 11.0 / 12.0, '12:12' => 12.0 / 12.0 }[args[:geometry_roof_pitch]] # Argument error checks @@ -3081,414 +2885,6 @@ def run(model, runner, user_arguments) runner.registerInfo("Wrote file: #{hpxml_path}") end - def get_argument_values(runner, user_arguments) - return { simulation_control_timestep: runner.getOptionalIntegerArgumentValue('simulation_control_timestep', user_arguments), - simulation_control_run_period_begin_month: runner.getOptionalIntegerArgumentValue('simulation_control_run_period_begin_month', user_arguments), - simulation_control_run_period_begin_day_of_month: runner.getOptionalIntegerArgumentValue('simulation_control_run_period_begin_day_of_month', user_arguments), - simulation_control_run_period_end_month: runner.getOptionalIntegerArgumentValue('simulation_control_run_period_end_month', user_arguments), - simulation_control_run_period_end_day_of_month: runner.getOptionalIntegerArgumentValue('simulation_control_run_period_end_day_of_month', user_arguments), - simulation_control_run_period_calendar_year: runner.getOptionalIntegerArgumentValue('simulation_control_run_period_calendar_year', user_arguments), - simulation_control_daylight_saving_enabled: runner.getOptionalStringArgumentValue('simulation_control_daylight_saving_enabled', user_arguments), - simulation_control_daylight_saving_begin_month: runner.getOptionalIntegerArgumentValue('simulation_control_daylight_saving_begin_month', user_arguments), - simulation_control_daylight_saving_begin_day_of_month: runner.getOptionalIntegerArgumentValue('simulation_control_daylight_saving_begin_day_of_month', user_arguments), - simulation_control_daylight_saving_end_month: runner.getOptionalIntegerArgumentValue('simulation_control_daylight_saving_end_month', user_arguments), - simulation_control_daylight_saving_end_day_of_month: runner.getOptionalIntegerArgumentValue('simulation_control_daylight_saving_end_day_of_month', user_arguments), - schedules_type: runner.getStringArgumentValue('schedules_type', user_arguments), - schedules_path: runner.getOptionalStringArgumentValue('schedules_path', user_arguments), - schedules_vacancy_begin_month: runner.getOptionalIntegerArgumentValue('schedules_vacancy_begin_month', user_arguments), - schedules_vacancy_begin_day_of_month: runner.getOptionalIntegerArgumentValue('schedules_vacancy_begin_day_of_month', user_arguments), - schedules_vacancy_end_month: runner.getOptionalIntegerArgumentValue('schedules_vacancy_end_month', user_arguments), - schedules_vacancy_end_day_of_month: runner.getOptionalIntegerArgumentValue('schedules_vacancy_end_day_of_month', user_arguments), - schedules_random_seed: runner.getOptionalIntegerArgumentValue('schedules_random_seed', user_arguments), - weather_station_epw_filepath: runner.getStringArgumentValue('weather_station_epw_filepath', user_arguments), - site_type: runner.getOptionalStringArgumentValue('site_type', user_arguments), - geometry_unit_type: runner.getStringArgumentValue('geometry_unit_type', user_arguments), - geometry_cfa: runner.getDoubleArgumentValue('geometry_cfa', user_arguments), - geometry_num_floors_above_grade: runner.getIntegerArgumentValue('geometry_num_floors_above_grade', user_arguments), - geometry_wall_height: runner.getDoubleArgumentValue('geometry_wall_height', user_arguments), - geometry_orientation: runner.getDoubleArgumentValue('geometry_orientation', user_arguments), - geometry_aspect_ratio: runner.getDoubleArgumentValue('geometry_aspect_ratio', user_arguments), - geometry_corridor_position: runner.getStringArgumentValue('geometry_corridor_position', user_arguments), - geometry_corridor_width: runner.getDoubleArgumentValue('geometry_corridor_width', user_arguments), - geometry_inset_width: runner.getDoubleArgumentValue('geometry_inset_width', user_arguments), - geometry_inset_depth: runner.getDoubleArgumentValue('geometry_inset_depth', user_arguments), - geometry_inset_position: runner.getStringArgumentValue('geometry_inset_position', user_arguments), - geometry_balcony_depth: runner.getDoubleArgumentValue('geometry_balcony_depth', user_arguments), - geometry_garage_width: runner.getDoubleArgumentValue('geometry_garage_width', user_arguments), - geometry_garage_depth: runner.getDoubleArgumentValue('geometry_garage_depth', user_arguments), - geometry_garage_protrusion: runner.getDoubleArgumentValue('geometry_garage_protrusion', user_arguments), - geometry_garage_position: runner.getStringArgumentValue('geometry_garage_position', user_arguments), - geometry_foundation_type: runner.getStringArgumentValue('geometry_foundation_type', user_arguments), - geometry_foundation_height: runner.getDoubleArgumentValue('geometry_foundation_height', user_arguments), - geometry_foundation_height_above_grade: runner.getDoubleArgumentValue('geometry_foundation_height_above_grade', user_arguments), - geometry_roof_type: runner.getStringArgumentValue('geometry_roof_type', user_arguments), - geometry_roof_pitch: runner.getStringArgumentValue('geometry_roof_pitch', user_arguments), - geometry_attic_type: runner.getStringArgumentValue('geometry_attic_type', user_arguments), - geometry_eaves_depth: runner.getDoubleArgumentValue('geometry_eaves_depth', user_arguments), - geometry_num_bedrooms: runner.getIntegerArgumentValue('geometry_num_bedrooms', user_arguments), - geometry_num_bathrooms: runner.getStringArgumentValue('geometry_num_bathrooms', user_arguments), - geometry_num_occupants: runner.getStringArgumentValue('geometry_num_occupants', user_arguments), - geometry_level: runner.getOptionalStringArgumentValue('geometry_level', user_arguments), - geometry_horizontal_location: runner.getOptionalStringArgumentValue('geometry_horizontal_location', user_arguments), - geometry_building_num_units: runner.getOptionalIntegerArgumentValue('geometry_building_num_units', user_arguments), - geometry_building_num_bedrooms: runner.getOptionalIntegerArgumentValue('geometry_building_num_bedrooms', user_arguments), - floor_assembly_r: runner.getDoubleArgumentValue('floor_assembly_r', user_arguments), - foundation_wall_insulation_r: runner.getDoubleArgumentValue('foundation_wall_insulation_r', user_arguments), - foundation_wall_insulation_distance_to_top: runner.getDoubleArgumentValue('foundation_wall_insulation_distance_to_top', user_arguments), - foundation_wall_insulation_distance_to_bottom: runner.getDoubleArgumentValue('foundation_wall_insulation_distance_to_bottom', user_arguments), - foundation_wall_assembly_r: runner.getOptionalDoubleArgumentValue('foundation_wall_assembly_r', user_arguments), - foundation_wall_thickness: runner.getStringArgumentValue('foundation_wall_thickness', user_arguments), - slab_perimeter_insulation_r: runner.getDoubleArgumentValue('slab_perimeter_insulation_r', user_arguments), - slab_perimeter_depth: runner.getDoubleArgumentValue('slab_perimeter_depth', user_arguments), - slab_under_insulation_r: runner.getDoubleArgumentValue('slab_under_insulation_r', user_arguments), - slab_under_width: runner.getDoubleArgumentValue('slab_under_width', user_arguments), - slab_thickness: runner.getStringArgumentValue('slab_thickness', user_arguments), - slab_carpet_fraction: runner.getStringArgumentValue('slab_carpet_fraction', user_arguments), - slab_carpet_r: runner.getStringArgumentValue('slab_carpet_r', user_arguments), - ceiling_assembly_r: runner.getDoubleArgumentValue('ceiling_assembly_r', user_arguments), - roof_material_type: runner.getOptionalStringArgumentValue('roof_material_type', user_arguments), - roof_color: runner.getStringArgumentValue('roof_color', user_arguments), - roof_assembly_r: runner.getDoubleArgumentValue('roof_assembly_r', user_arguments), - roof_solar_absorptance: runner.getStringArgumentValue('roof_solar_absorptance', user_arguments), - roof_emittance: runner.getStringArgumentValue('roof_emittance', user_arguments), - roof_radiant_barrier: runner.getStringArgumentValue('roof_radiant_barrier', user_arguments), - roof_radiant_barrier_grade: runner.getStringArgumentValue('roof_radiant_barrier_grade', user_arguments), - neighbor_front_distance: runner.getDoubleArgumentValue('neighbor_front_distance', user_arguments), - neighbor_back_distance: runner.getDoubleArgumentValue('neighbor_back_distance', user_arguments), - neighbor_left_distance: runner.getDoubleArgumentValue('neighbor_left_distance', user_arguments), - neighbor_right_distance: runner.getDoubleArgumentValue('neighbor_right_distance', user_arguments), - neighbor_front_height: runner.getStringArgumentValue('neighbor_front_height', user_arguments), - neighbor_back_height: runner.getStringArgumentValue('neighbor_back_height', user_arguments), - neighbor_left_height: runner.getStringArgumentValue('neighbor_left_height', user_arguments), - neighbor_right_height: runner.getStringArgumentValue('neighbor_right_height', user_arguments), - wall_type: runner.getStringArgumentValue('wall_type', user_arguments), - wall_siding_type: runner.getOptionalStringArgumentValue('wall_siding_type', user_arguments), - wall_color: runner.getStringArgumentValue('wall_color', user_arguments), - wall_assembly_r: runner.getDoubleArgumentValue('wall_assembly_r', user_arguments), - wall_solar_absorptance: runner.getStringArgumentValue('wall_solar_absorptance', user_arguments), - wall_emittance: runner.getStringArgumentValue('wall_emittance', user_arguments), - window_front_wwr: runner.getDoubleArgumentValue('window_front_wwr', user_arguments), - window_back_wwr: runner.getDoubleArgumentValue('window_back_wwr', user_arguments), - window_left_wwr: runner.getDoubleArgumentValue('window_left_wwr', user_arguments), - window_right_wwr: runner.getDoubleArgumentValue('window_right_wwr', user_arguments), - window_area_front: runner.getDoubleArgumentValue('window_area_front', user_arguments), - window_area_back: runner.getDoubleArgumentValue('window_area_back', user_arguments), - window_area_left: runner.getDoubleArgumentValue('window_area_left', user_arguments), - window_area_right: runner.getDoubleArgumentValue('window_area_right', user_arguments), - window_aspect_ratio: runner.getDoubleArgumentValue('window_aspect_ratio', user_arguments), - window_fraction_operable: runner.getOptionalDoubleArgumentValue('window_fraction_operable', user_arguments), - window_ufactor: runner.getDoubleArgumentValue('window_ufactor', user_arguments), - window_shgc: runner.getDoubleArgumentValue('window_shgc', user_arguments), - window_interior_shading_winter: runner.getOptionalDoubleArgumentValue('window_interior_shading_winter', user_arguments), - window_interior_shading_summer: runner.getOptionalDoubleArgumentValue('window_interior_shading_summer', user_arguments), - overhangs_front_depth: runner.getDoubleArgumentValue('overhangs_front_depth', user_arguments), - overhangs_front_distance_to_top_of_window: runner.getDoubleArgumentValue('overhangs_front_distance_to_top_of_window', user_arguments), - overhangs_back_depth: runner.getDoubleArgumentValue('overhangs_back_depth', user_arguments), - overhangs_back_distance_to_top_of_window: runner.getDoubleArgumentValue('overhangs_back_distance_to_top_of_window', user_arguments), - overhangs_left_depth: runner.getDoubleArgumentValue('overhangs_left_depth', user_arguments), - overhangs_left_distance_to_top_of_window: runner.getDoubleArgumentValue('overhangs_left_distance_to_top_of_window', user_arguments), - overhangs_right_depth: runner.getDoubleArgumentValue('overhangs_right_depth', user_arguments), - overhangs_right_distance_to_top_of_window: runner.getDoubleArgumentValue('overhangs_right_distance_to_top_of_window', user_arguments), - skylight_area_front: runner.getDoubleArgumentValue('skylight_area_front', user_arguments), - skylight_area_back: runner.getDoubleArgumentValue('skylight_area_back', user_arguments), - skylight_area_left: runner.getDoubleArgumentValue('skylight_area_left', user_arguments), - skylight_area_right: runner.getDoubleArgumentValue('skylight_area_right', user_arguments), - skylight_ufactor: runner.getDoubleArgumentValue('skylight_ufactor', user_arguments), - skylight_shgc: runner.getDoubleArgumentValue('skylight_shgc', user_arguments), - door_area: runner.getDoubleArgumentValue('door_area', user_arguments), - door_rvalue: runner.getDoubleArgumentValue('door_rvalue', user_arguments), - air_leakage_units: runner.getStringArgumentValue('air_leakage_units', user_arguments), - air_leakage_house_pressure: runner.getDoubleArgumentValue('air_leakage_house_pressure', user_arguments), - air_leakage_value: runner.getDoubleArgumentValue('air_leakage_value', user_arguments), - air_leakage_shelter_coefficient: runner.getStringArgumentValue('air_leakage_shelter_coefficient', user_arguments), - heating_system_type: runner.getStringArgumentValue('heating_system_type', user_arguments), - heating_system_fuel: runner.getStringArgumentValue('heating_system_fuel', user_arguments), - heating_system_heating_efficiency: runner.getDoubleArgumentValue('heating_system_heating_efficiency', user_arguments), - heating_system_heating_capacity: runner.getStringArgumentValue('heating_system_heating_capacity', user_arguments), - heating_system_fraction_heat_load_served: runner.getDoubleArgumentValue('heating_system_fraction_heat_load_served', user_arguments), - heating_system_electric_auxiliary_energy: runner.getOptionalDoubleArgumentValue('heating_system_electric_auxiliary_energy', user_arguments), - heating_system_fan_power_watts_per_cfm: runner.getOptionalDoubleArgumentValue('heating_system_fan_power_watts_per_cfm', user_arguments), - heating_system_fan_power_watts: runner.getOptionalDoubleArgumentValue('heating_system_fan_power_watts', user_arguments), - heating_system_has_flue_or_chimney: runner.getBoolArgumentValue('heating_system_has_flue_or_chimney', user_arguments), - cooling_system_type: runner.getStringArgumentValue('cooling_system_type', user_arguments), - cooling_system_cooling_efficiency_seer: runner.getDoubleArgumentValue('cooling_system_cooling_efficiency_seer', user_arguments), - cooling_system_cooling_efficiency_eer: runner.getDoubleArgumentValue('cooling_system_cooling_efficiency_eer', user_arguments), - cooling_system_cooling_compressor_type: runner.getOptionalStringArgumentValue('cooling_system_cooling_compressor_type', user_arguments), - cooling_system_cooling_sensible_heat_fraction: runner.getOptionalDoubleArgumentValue('cooling_system_cooling_sensible_heat_fraction', user_arguments), - cooling_system_cooling_capacity: runner.getStringArgumentValue('cooling_system_cooling_capacity', user_arguments), - cooling_system_fraction_cool_load_served: runner.getDoubleArgumentValue('cooling_system_fraction_cool_load_served', user_arguments), - cooling_system_is_ducted: runner.getBoolArgumentValue('cooling_system_is_ducted', user_arguments), - cooling_system_fan_power_watts_per_cfm: runner.getOptionalDoubleArgumentValue('cooling_system_fan_power_watts_per_cfm', user_arguments), - heat_pump_type: runner.getStringArgumentValue('heat_pump_type', user_arguments), - heat_pump_heating_efficiency_hspf: runner.getDoubleArgumentValue('heat_pump_heating_efficiency_hspf', user_arguments), - heat_pump_heating_efficiency_cop: runner.getDoubleArgumentValue('heat_pump_heating_efficiency_cop', user_arguments), - heat_pump_cooling_efficiency_seer: runner.getDoubleArgumentValue('heat_pump_cooling_efficiency_seer', user_arguments), - heat_pump_cooling_efficiency_eer: runner.getDoubleArgumentValue('heat_pump_cooling_efficiency_eer', user_arguments), - heat_pump_cooling_compressor_type: runner.getOptionalStringArgumentValue('heat_pump_cooling_compressor_type', user_arguments), - heat_pump_cooling_sensible_heat_fraction: runner.getOptionalDoubleArgumentValue('heat_pump_cooling_sensible_heat_fraction', user_arguments), - heat_pump_heating_capacity: runner.getStringArgumentValue('heat_pump_heating_capacity', user_arguments), - heat_pump_heating_capacity_17F: runner.getStringArgumentValue('heat_pump_heating_capacity_17F', user_arguments), - heat_pump_cooling_capacity: runner.getStringArgumentValue('heat_pump_cooling_capacity', user_arguments), - heat_pump_fraction_heat_load_served: runner.getDoubleArgumentValue('heat_pump_fraction_heat_load_served', user_arguments), - heat_pump_fraction_cool_load_served: runner.getDoubleArgumentValue('heat_pump_fraction_cool_load_served', user_arguments), - heat_pump_backup_fuel: runner.getStringArgumentValue('heat_pump_backup_fuel', user_arguments), - heat_pump_backup_heating_efficiency: runner.getDoubleArgumentValue('heat_pump_backup_heating_efficiency', user_arguments), - heat_pump_backup_heating_capacity: runner.getStringArgumentValue('heat_pump_backup_heating_capacity', user_arguments), - heat_pump_backup_heating_switchover_temp: runner.getOptionalDoubleArgumentValue('heat_pump_backup_heating_switchover_temp', user_arguments), - heat_pump_mini_split_is_ducted: runner.getOptionalStringArgumentValue('heat_pump_mini_split_is_ducted', user_arguments), - heat_pump_pump_power_watts_per_ton: runner.getOptionalDoubleArgumentValue('heat_pump_pump_power_watts_per_ton', user_arguments), - heat_pump_fan_power_watts_per_cfm: runner.getOptionalDoubleArgumentValue('heat_pump_fan_power_watts_per_cfm', user_arguments), - setpoint_heating_weekday_temp: runner.getDoubleArgumentValue('setpoint_heating_weekday_temp', user_arguments), - setpoint_heating_weekend_temp: runner.getDoubleArgumentValue('setpoint_heating_weekend_temp', user_arguments), - setpoint_heating_weekday_offset_magnitude: runner.getOptionalDoubleArgumentValue('setpoint_heating_weekday_offset_magnitude', user_arguments), - setpoint_heating_weekend_offset_magnitude: runner.getOptionalDoubleArgumentValue('setpoint_heating_weekend_offset_magnitude', user_arguments), - setpoint_heating_weekday_schedule: runner.getOptionalStringArgumentValue('setpoint_heating_weekday_schedule', user_arguments), - setpoint_heating_weekend_schedule: runner.getOptionalStringArgumentValue('setpoint_heating_weekend_schedule', user_arguments), - setpoint_cooling_weekday_temp: runner.getDoubleArgumentValue('setpoint_cooling_weekday_temp', user_arguments), - setpoint_cooling_weekend_temp: runner.getDoubleArgumentValue('setpoint_cooling_weekend_temp', user_arguments), - setpoint_cooling_weekday_offset_magnitude: runner.getOptionalDoubleArgumentValue('setpoint_cooling_weekday_offset_magnitude', user_arguments), - setpoint_cooling_weekend_offset_magnitude: runner.getOptionalDoubleArgumentValue('setpoint_cooling_weekend_offset_magnitude', user_arguments), - setpoint_cooling_weekday_schedule: runner.getOptionalStringArgumentValue('setpoint_cooling_weekday_schedule', user_arguments), - setpoint_cooling_weekend_schedule: runner.getOptionalStringArgumentValue('setpoint_cooling_weekend_schedule', user_arguments), - ducts_supply_leakage_units: runner.getStringArgumentValue('ducts_supply_leakage_units', user_arguments), - ducts_return_leakage_units: runner.getStringArgumentValue('ducts_return_leakage_units', user_arguments), - ducts_supply_leakage_value: runner.getDoubleArgumentValue('ducts_supply_leakage_value', user_arguments), - ducts_return_leakage_value: runner.getDoubleArgumentValue('ducts_return_leakage_value', user_arguments), - ducts_supply_insulation_r: runner.getDoubleArgumentValue('ducts_supply_insulation_r', user_arguments), - ducts_return_insulation_r: runner.getDoubleArgumentValue('ducts_return_insulation_r', user_arguments), - ducts_supply_location: runner.getStringArgumentValue('ducts_supply_location', user_arguments), - ducts_return_location: runner.getStringArgumentValue('ducts_return_location', user_arguments), - ducts_supply_surface_area: runner.getStringArgumentValue('ducts_supply_surface_area', user_arguments), - ducts_return_surface_area: runner.getStringArgumentValue('ducts_return_surface_area', user_arguments), - ducts_number_of_return_registers: runner.getStringArgumentValue('ducts_number_of_return_registers', user_arguments), - heating_system_type_2: runner.getStringArgumentValue('heating_system_type_2', user_arguments), - heating_system_fuel_2: runner.getStringArgumentValue('heating_system_fuel_2', user_arguments), - heating_system_heating_efficiency_2: runner.getDoubleArgumentValue('heating_system_heating_efficiency_2', user_arguments), - heating_system_heating_capacity_2: runner.getStringArgumentValue('heating_system_heating_capacity_2', user_arguments), - heating_system_fraction_heat_load_served_2: runner.getDoubleArgumentValue('heating_system_fraction_heat_load_served_2', user_arguments), - heating_system_electric_auxiliary_energy_2: runner.getOptionalDoubleArgumentValue('heating_system_electric_auxiliary_energy_2', user_arguments), - heating_system_fan_power_watts_2: runner.getOptionalDoubleArgumentValue('heating_system_fan_power_watts_2', user_arguments), - heating_system_has_flue_or_chimney_2: runner.getBoolArgumentValue('heating_system_has_flue_or_chimney_2', user_arguments), - mech_vent_fan_type: runner.getStringArgumentValue('mech_vent_fan_type', user_arguments), - mech_vent_flow_rate: runner.getDoubleArgumentValue('mech_vent_flow_rate', user_arguments), - mech_vent_hours_in_operation: runner.getDoubleArgumentValue('mech_vent_hours_in_operation', user_arguments), - mech_vent_total_recovery_efficiency_type: runner.getStringArgumentValue('mech_vent_total_recovery_efficiency_type', user_arguments), - mech_vent_total_recovery_efficiency: runner.getDoubleArgumentValue('mech_vent_total_recovery_efficiency', user_arguments), - mech_vent_sensible_recovery_efficiency_type: runner.getStringArgumentValue('mech_vent_sensible_recovery_efficiency_type', user_arguments), - mech_vent_sensible_recovery_efficiency: runner.getDoubleArgumentValue('mech_vent_sensible_recovery_efficiency', user_arguments), - mech_vent_fan_power: runner.getDoubleArgumentValue('mech_vent_fan_power', user_arguments), - mech_vent_num_units_served: runner.getIntegerArgumentValue('mech_vent_num_units_served', user_arguments), - shared_mech_vent_frac_recirculation: runner.getOptionalDoubleArgumentValue('shared_mech_vent_frac_recirculation', user_arguments), - shared_mech_vent_preheating_fuel: runner.getOptionalStringArgumentValue('shared_mech_vent_preheating_fuel', user_arguments), - shared_mech_vent_preheating_efficiency: runner.getOptionalDoubleArgumentValue('shared_mech_vent_preheating_efficiency', user_arguments), - shared_mech_vent_preheating_fraction_heat_load_served: runner.getOptionalDoubleArgumentValue('shared_mech_vent_preheating_fraction_heat_load_served', user_arguments), - shared_mech_vent_precooling_fuel: runner.getOptionalStringArgumentValue('shared_mech_vent_precooling_fuel', user_arguments), - shared_mech_vent_precooling_efficiency: runner.getOptionalDoubleArgumentValue('shared_mech_vent_precooling_efficiency', user_arguments), - shared_mech_vent_precooling_fraction_cool_load_served: runner.getOptionalDoubleArgumentValue('shared_mech_vent_precooling_fraction_cool_load_served', user_arguments), - mech_vent_fan_type_2: runner.getStringArgumentValue('mech_vent_fan_type_2', user_arguments), - mech_vent_flow_rate_2: runner.getDoubleArgumentValue('mech_vent_flow_rate_2', user_arguments), - mech_vent_hours_in_operation_2: runner.getDoubleArgumentValue('mech_vent_hours_in_operation_2', user_arguments), - mech_vent_total_recovery_efficiency_type_2: runner.getStringArgumentValue('mech_vent_total_recovery_efficiency_type_2', user_arguments), - mech_vent_total_recovery_efficiency_2: runner.getDoubleArgumentValue('mech_vent_total_recovery_efficiency_2', user_arguments), - mech_vent_sensible_recovery_efficiency_type_2: runner.getStringArgumentValue('mech_vent_sensible_recovery_efficiency_type_2', user_arguments), - mech_vent_sensible_recovery_efficiency_2: runner.getDoubleArgumentValue('mech_vent_sensible_recovery_efficiency_2', user_arguments), - mech_vent_fan_power_2: runner.getDoubleArgumentValue('mech_vent_fan_power_2', user_arguments), - kitchen_fans_present: runner.getBoolArgumentValue('kitchen_fans_present', user_arguments), - kitchen_fans_quantity: runner.getOptionalIntegerArgumentValue('kitchen_fans_quantity', user_arguments), - kitchen_fans_flow_rate: runner.getOptionalDoubleArgumentValue('kitchen_fans_flow_rate', user_arguments), - kitchen_fans_hours_in_operation: runner.getOptionalDoubleArgumentValue('kitchen_fans_hours_in_operation', user_arguments), - kitchen_fans_power: runner.getOptionalDoubleArgumentValue('kitchen_fans_power', user_arguments), - kitchen_fans_start_hour: runner.getOptionalIntegerArgumentValue('kitchen_fans_start_hour', user_arguments), - bathroom_fans_present: runner.getBoolArgumentValue('bathroom_fans_present', user_arguments), - bathroom_fans_quantity: runner.getOptionalIntegerArgumentValue('bathroom_fans_quantity', user_arguments), - bathroom_fans_flow_rate: runner.getOptionalDoubleArgumentValue('bathroom_fans_flow_rate', user_arguments), - bathroom_fans_hours_in_operation: runner.getOptionalDoubleArgumentValue('bathroom_fans_hours_in_operation', user_arguments), - bathroom_fans_power: runner.getOptionalDoubleArgumentValue('bathroom_fans_power', user_arguments), - bathroom_fans_start_hour: runner.getOptionalIntegerArgumentValue('bathroom_fans_start_hour', user_arguments), - whole_house_fan_present: runner.getBoolArgumentValue('whole_house_fan_present', user_arguments), - whole_house_fan_flow_rate: runner.getDoubleArgumentValue('whole_house_fan_flow_rate', user_arguments), - whole_house_fan_power: runner.getDoubleArgumentValue('whole_house_fan_power', user_arguments), - water_heater_type: runner.getStringArgumentValue('water_heater_type', user_arguments), - water_heater_fuel_type: runner.getStringArgumentValue('water_heater_fuel_type', user_arguments), - water_heater_location: runner.getStringArgumentValue('water_heater_location', user_arguments), - water_heater_tank_volume: runner.getStringArgumentValue('water_heater_tank_volume', user_arguments), - water_heater_heating_capacity: runner.getStringArgumentValue('water_heater_heating_capacity', user_arguments), - water_heater_efficiency_type: runner.getStringArgumentValue('water_heater_efficiency_type', user_arguments), - water_heater_efficiency: runner.getDoubleArgumentValue('water_heater_efficiency', user_arguments), - water_heater_first_hour_rating: runner.getDoubleArgumentValue('water_heater_first_hour_rating', user_arguments), - water_heater_recovery_efficiency: runner.getStringArgumentValue('water_heater_recovery_efficiency', user_arguments), - water_heater_standby_loss: runner.getOptionalDoubleArgumentValue('water_heater_standby_loss', user_arguments), - water_heater_jacket_rvalue: runner.getOptionalDoubleArgumentValue('water_heater_jacket_rvalue', user_arguments), - water_heater_setpoint_temperature: runner.getStringArgumentValue('water_heater_setpoint_temperature', user_arguments), - water_heater_has_flue_or_chimney: runner.getBoolArgumentValue('water_heater_has_flue_or_chimney', user_arguments), - water_heater_num_units_served: runner.getIntegerArgumentValue('water_heater_num_units_served', user_arguments), - dhw_distribution_system_type: runner.getStringArgumentValue('dhw_distribution_system_type', user_arguments), - dhw_distribution_standard_piping_length: runner.getStringArgumentValue('dhw_distribution_standard_piping_length', user_arguments), - dhw_distribution_recirc_control_type: runner.getStringArgumentValue('dhw_distribution_recirc_control_type', user_arguments), - dhw_distribution_recirc_piping_length: runner.getStringArgumentValue('dhw_distribution_recirc_piping_length', user_arguments), - dhw_distribution_recirc_branch_piping_length: runner.getStringArgumentValue('dhw_distribution_recirc_branch_piping_length', user_arguments), - dhw_distribution_recirc_pump_power: runner.getStringArgumentValue('dhw_distribution_recirc_pump_power', user_arguments), - dhw_distribution_pipe_r: runner.getStringArgumentValue('dhw_distribution_pipe_r', user_arguments), - dwhr_facilities_connected: runner.getStringArgumentValue('dwhr_facilities_connected', user_arguments), - dwhr_equal_flow: runner.getBoolArgumentValue('dwhr_equal_flow', user_arguments), - dwhr_efficiency: runner.getDoubleArgumentValue('dwhr_efficiency', user_arguments), - water_fixtures_shower_low_flow: runner.getBoolArgumentValue('water_fixtures_shower_low_flow', user_arguments), - water_fixtures_sink_low_flow: runner.getBoolArgumentValue('water_fixtures_sink_low_flow', user_arguments), - water_fixtures_usage_multiplier: runner.getDoubleArgumentValue('water_fixtures_usage_multiplier', user_arguments), - solar_thermal_system_type: runner.getStringArgumentValue('solar_thermal_system_type', user_arguments), - solar_thermal_collector_area: runner.getDoubleArgumentValue('solar_thermal_collector_area', user_arguments), - solar_thermal_collector_loop_type: runner.getStringArgumentValue('solar_thermal_collector_loop_type', user_arguments), - solar_thermal_collector_type: runner.getStringArgumentValue('solar_thermal_collector_type', user_arguments), - solar_thermal_collector_azimuth: runner.getDoubleArgumentValue('solar_thermal_collector_azimuth', user_arguments), - solar_thermal_collector_tilt: runner.getStringArgumentValue('solar_thermal_collector_tilt', user_arguments), - solar_thermal_collector_rated_optical_efficiency: runner.getDoubleArgumentValue('solar_thermal_collector_rated_optical_efficiency', user_arguments), - solar_thermal_collector_rated_thermal_losses: runner.getDoubleArgumentValue('solar_thermal_collector_rated_thermal_losses', user_arguments), - solar_thermal_storage_volume: runner.getStringArgumentValue('solar_thermal_storage_volume', user_arguments), - solar_thermal_solar_fraction: runner.getDoubleArgumentValue('solar_thermal_solar_fraction', user_arguments), - pv_system_module_type_1: runner.getStringArgumentValue('pv_system_module_type_1', user_arguments), - pv_system_location_1: runner.getStringArgumentValue('pv_system_location_1', user_arguments), - pv_system_tracking_1: runner.getStringArgumentValue('pv_system_tracking_1', user_arguments), - pv_system_array_azimuth_1: runner.getDoubleArgumentValue('pv_system_array_azimuth_1', user_arguments), - pv_system_array_tilt_1: runner.getStringArgumentValue('pv_system_array_tilt_1', user_arguments), - pv_system_max_power_output_1: runner.getDoubleArgumentValue('pv_system_max_power_output_1', user_arguments), - pv_system_inverter_efficiency_1: runner.getOptionalDoubleArgumentValue('pv_system_inverter_efficiency_1', user_arguments), - pv_system_system_losses_fraction_1: runner.getOptionalDoubleArgumentValue('pv_system_system_losses_fraction_1', user_arguments), - pv_system_num_units_served_1: runner.getIntegerArgumentValue('pv_system_num_units_served_1', user_arguments), - pv_system_module_type_2: runner.getStringArgumentValue('pv_system_module_type_2', user_arguments), - pv_system_location_2: runner.getStringArgumentValue('pv_system_location_2', user_arguments), - pv_system_tracking_2: runner.getStringArgumentValue('pv_system_tracking_2', user_arguments), - pv_system_array_azimuth_2: runner.getDoubleArgumentValue('pv_system_array_azimuth_2', user_arguments), - pv_system_array_tilt_2: runner.getStringArgumentValue('pv_system_array_tilt_2', user_arguments), - pv_system_max_power_output_2: runner.getDoubleArgumentValue('pv_system_max_power_output_2', user_arguments), - pv_system_inverter_efficiency_2: runner.getOptionalDoubleArgumentValue('pv_system_inverter_efficiency_2', user_arguments), - pv_system_system_losses_fraction_2: runner.getOptionalDoubleArgumentValue('pv_system_system_losses_fraction_2', user_arguments), - pv_system_num_units_served_2: runner.getIntegerArgumentValue('pv_system_num_units_served_2', user_arguments), - lighting_fraction_cfl_interior: runner.getDoubleArgumentValue('lighting_fraction_cfl_interior', user_arguments), - lighting_fraction_lfl_interior: runner.getDoubleArgumentValue('lighting_fraction_lfl_interior', user_arguments), - lighting_fraction_led_interior: runner.getDoubleArgumentValue('lighting_fraction_led_interior', user_arguments), - lighting_usage_multiplier_interior: runner.getDoubleArgumentValue('lighting_usage_multiplier_interior', user_arguments), - lighting_fraction_cfl_exterior: runner.getDoubleArgumentValue('lighting_fraction_cfl_exterior', user_arguments), - lighting_fraction_lfl_exterior: runner.getDoubleArgumentValue('lighting_fraction_lfl_exterior', user_arguments), - lighting_fraction_led_exterior: runner.getDoubleArgumentValue('lighting_fraction_led_exterior', user_arguments), - lighting_usage_multiplier_exterior: runner.getDoubleArgumentValue('lighting_usage_multiplier_exterior', user_arguments), - lighting_fraction_cfl_garage: runner.getDoubleArgumentValue('lighting_fraction_cfl_garage', user_arguments), - lighting_fraction_lfl_garage: runner.getDoubleArgumentValue('lighting_fraction_lfl_garage', user_arguments), - lighting_fraction_led_garage: runner.getDoubleArgumentValue('lighting_fraction_led_garage', user_arguments), - lighting_usage_multiplier_garage: runner.getDoubleArgumentValue('lighting_usage_multiplier_garage', user_arguments), - holiday_lighting_present: runner.getBoolArgumentValue('holiday_lighting_present', user_arguments), - holiday_lighting_daily_kwh: runner.getStringArgumentValue('holiday_lighting_daily_kwh', user_arguments), - holiday_lighting_period_begin_month: runner.getStringArgumentValue('holiday_lighting_period_begin_month', user_arguments), - holiday_lighting_period_begin_day_of_month: runner.getStringArgumentValue('holiday_lighting_period_begin_day_of_month', user_arguments), - holiday_lighting_period_end_month: runner.getStringArgumentValue('holiday_lighting_period_end_month', user_arguments), - holiday_lighting_period_end_day_of_month: runner.getStringArgumentValue('holiday_lighting_period_end_day_of_month', user_arguments), - dehumidifier_present: runner.getBoolArgumentValue('dehumidifier_present', user_arguments), - dehumidifier_type: runner.getStringArgumentValue('dehumidifier_type', user_arguments), - dehumidifier_efficiency_type: runner.getStringArgumentValue('dehumidifier_efficiency_type', user_arguments), - dehumidifier_efficiency_ef: runner.getDoubleArgumentValue('dehumidifier_efficiency_ef', user_arguments), - dehumidifier_efficiency_ief: runner.getDoubleArgumentValue('dehumidifier_efficiency_ief', user_arguments), - dehumidifier_capacity: runner.getDoubleArgumentValue('dehumidifier_capacity', user_arguments), - dehumidifier_rh_setpoint: runner.getDoubleArgumentValue('dehumidifier_rh_setpoint', user_arguments), - dehumidifier_fraction_dehumidification_load_served: runner.getDoubleArgumentValue('dehumidifier_fraction_dehumidification_load_served', user_arguments), - clothes_washer_present: runner.getBoolArgumentValue('clothes_washer_present', user_arguments), - clothes_washer_location: runner.getStringArgumentValue('clothes_washer_location', user_arguments), - clothes_washer_efficiency_type: runner.getStringArgumentValue('clothes_washer_efficiency_type', user_arguments), - clothes_washer_efficiency_mef: runner.getStringArgumentValue('clothes_washer_efficiency_mef', user_arguments), - clothes_washer_efficiency_imef: runner.getStringArgumentValue('clothes_washer_efficiency_imef', user_arguments), - clothes_washer_rated_annual_kwh: runner.getStringArgumentValue('clothes_washer_rated_annual_kwh', user_arguments), - clothes_washer_label_electric_rate: runner.getStringArgumentValue('clothes_washer_label_electric_rate', user_arguments), - clothes_washer_label_gas_rate: runner.getStringArgumentValue('clothes_washer_label_gas_rate', user_arguments), - clothes_washer_label_annual_gas_cost: runner.getStringArgumentValue('clothes_washer_label_annual_gas_cost', user_arguments), - clothes_washer_label_usage: runner.getStringArgumentValue('clothes_washer_label_usage', user_arguments), - clothes_washer_capacity: runner.getStringArgumentValue('clothes_washer_capacity', user_arguments), - clothes_washer_usage_multiplier: runner.getDoubleArgumentValue('clothes_washer_usage_multiplier', user_arguments), - clothes_dryer_present: runner.getBoolArgumentValue('clothes_dryer_present', user_arguments), - clothes_dryer_location: runner.getStringArgumentValue('clothes_dryer_location', user_arguments), - clothes_dryer_fuel_type: runner.getStringArgumentValue('clothes_dryer_fuel_type', user_arguments), - clothes_dryer_efficiency_type: runner.getStringArgumentValue('clothes_dryer_efficiency_type', user_arguments), - clothes_dryer_efficiency_ef: runner.getDoubleArgumentValue('clothes_dryer_efficiency_ef', user_arguments), - clothes_dryer_efficiency_cef: runner.getStringArgumentValue('clothes_dryer_efficiency_cef', user_arguments), - clothes_dryer_control_type: runner.getStringArgumentValue('clothes_dryer_control_type', user_arguments), - clothes_dryer_vented_flow_rate: runner.getStringArgumentValue('clothes_dryer_vented_flow_rate', user_arguments), - clothes_dryer_usage_multiplier: runner.getDoubleArgumentValue('clothes_dryer_usage_multiplier', user_arguments), - dishwasher_present: runner.getBoolArgumentValue('dishwasher_present', user_arguments), - dishwasher_location: runner.getStringArgumentValue('dishwasher_location', user_arguments), - dishwasher_efficiency_type: runner.getStringArgumentValue('dishwasher_efficiency_type', user_arguments), - dishwasher_efficiency_kwh: runner.getStringArgumentValue('dishwasher_efficiency_kwh', user_arguments), - dishwasher_efficiency_ef: runner.getDoubleArgumentValue('dishwasher_efficiency_ef', user_arguments), - dishwasher_label_electric_rate: runner.getStringArgumentValue('dishwasher_label_electric_rate', user_arguments), - dishwasher_label_gas_rate: runner.getStringArgumentValue('dishwasher_label_gas_rate', user_arguments), - dishwasher_label_annual_gas_cost: runner.getStringArgumentValue('dishwasher_label_annual_gas_cost', user_arguments), - dishwasher_label_usage: runner.getStringArgumentValue('dishwasher_label_usage', user_arguments), - dishwasher_place_setting_capacity: runner.getStringArgumentValue('dishwasher_place_setting_capacity', user_arguments), - dishwasher_usage_multiplier: runner.getDoubleArgumentValue('dishwasher_usage_multiplier', user_arguments), - refrigerator_present: runner.getBoolArgumentValue('refrigerator_present', user_arguments), - refrigerator_location: runner.getStringArgumentValue('refrigerator_location', user_arguments), - refrigerator_rated_annual_kwh: runner.getStringArgumentValue('refrigerator_rated_annual_kwh', user_arguments), - refrigerator_usage_multiplier: runner.getDoubleArgumentValue('refrigerator_usage_multiplier', user_arguments), - extra_refrigerator_present: runner.getBoolArgumentValue('extra_refrigerator_present', user_arguments), - extra_refrigerator_location: runner.getStringArgumentValue('extra_refrigerator_location', user_arguments), - extra_refrigerator_rated_annual_kwh: runner.getStringArgumentValue('extra_refrigerator_rated_annual_kwh', user_arguments), - extra_refrigerator_usage_multiplier: runner.getDoubleArgumentValue('extra_refrigerator_usage_multiplier', user_arguments), - freezer_present: runner.getBoolArgumentValue('freezer_present', user_arguments), - freezer_location: runner.getStringArgumentValue('freezer_location', user_arguments), - freezer_rated_annual_kwh: runner.getStringArgumentValue('freezer_rated_annual_kwh', user_arguments), - freezer_usage_multiplier: runner.getDoubleArgumentValue('freezer_usage_multiplier', user_arguments), - cooking_range_oven_present: runner.getBoolArgumentValue('cooking_range_oven_present', user_arguments), - cooking_range_oven_location: runner.getStringArgumentValue('cooking_range_oven_location', user_arguments), - cooking_range_oven_fuel_type: runner.getStringArgumentValue('cooking_range_oven_fuel_type', user_arguments), - cooking_range_oven_is_induction: runner.getOptionalStringArgumentValue('cooking_range_oven_is_induction', user_arguments), - cooking_range_oven_is_convection: runner.getOptionalStringArgumentValue('cooking_range_oven_is_convection', user_arguments), - cooking_range_oven_usage_multiplier: runner.getDoubleArgumentValue('cooking_range_oven_usage_multiplier', user_arguments), - ceiling_fan_present: runner.getBoolArgumentValue('ceiling_fan_present', user_arguments), - ceiling_fan_efficiency: runner.getStringArgumentValue('ceiling_fan_efficiency', user_arguments), - ceiling_fan_quantity: runner.getStringArgumentValue('ceiling_fan_quantity', user_arguments), - ceiling_fan_cooling_setpoint_temp_offset: runner.getDoubleArgumentValue('ceiling_fan_cooling_setpoint_temp_offset', user_arguments), - plug_loads_television_annual_kwh: runner.getStringArgumentValue('plug_loads_television_annual_kwh', user_arguments), - plug_loads_television_usage_multiplier: runner.getDoubleArgumentValue('plug_loads_television_usage_multiplier', user_arguments), - plug_loads_television_usage_multiplier_2: runner.getDoubleArgumentValue('plug_loads_television_usage_multiplier_2', user_arguments), - plug_loads_other_annual_kwh: runner.getStringArgumentValue('plug_loads_other_annual_kwh', user_arguments), - plug_loads_other_frac_sensible: runner.getStringArgumentValue('plug_loads_other_frac_sensible', user_arguments), - plug_loads_other_frac_latent: runner.getStringArgumentValue('plug_loads_other_frac_latent', user_arguments), - plug_loads_other_usage_multiplier: runner.getDoubleArgumentValue('plug_loads_other_usage_multiplier', user_arguments), - plug_loads_other_usage_multiplier_2: runner.getDoubleArgumentValue('plug_loads_other_usage_multiplier_2', user_arguments), - plug_loads_well_pump_present: runner.getBoolArgumentValue('plug_loads_well_pump_present', user_arguments), - plug_loads_well_pump_annual_kwh: runner.getStringArgumentValue('plug_loads_well_pump_annual_kwh', user_arguments), - plug_loads_well_pump_usage_multiplier: runner.getDoubleArgumentValue('plug_loads_well_pump_usage_multiplier', user_arguments), - plug_loads_well_pump_usage_multiplier_2: runner.getDoubleArgumentValue('plug_loads_well_pump_usage_multiplier_2', user_arguments), - plug_loads_vehicle_present: runner.getBoolArgumentValue('plug_loads_vehicle_present', user_arguments), - plug_loads_vehicle_annual_kwh: runner.getStringArgumentValue('plug_loads_vehicle_annual_kwh', user_arguments), - plug_loads_vehicle_usage_multiplier: runner.getDoubleArgumentValue('plug_loads_vehicle_usage_multiplier', user_arguments), - plug_loads_vehicle_usage_multiplier_2: runner.getDoubleArgumentValue('plug_loads_vehicle_usage_multiplier_2', user_arguments), - fuel_loads_grill_present: runner.getBoolArgumentValue('fuel_loads_grill_present', user_arguments), - fuel_loads_grill_fuel_type: runner.getStringArgumentValue('fuel_loads_grill_fuel_type', user_arguments), - fuel_loads_grill_annual_therm: runner.getStringArgumentValue('fuel_loads_grill_annual_therm', user_arguments), - fuel_loads_grill_usage_multiplier: runner.getDoubleArgumentValue('fuel_loads_grill_usage_multiplier', user_arguments), - fuel_loads_lighting_present: runner.getBoolArgumentValue('fuel_loads_lighting_present', user_arguments), - fuel_loads_lighting_fuel_type: runner.getStringArgumentValue('fuel_loads_lighting_fuel_type', user_arguments), - fuel_loads_lighting_annual_therm: runner.getStringArgumentValue('fuel_loads_lighting_annual_therm', user_arguments), - fuel_loads_lighting_usage_multiplier: runner.getDoubleArgumentValue('fuel_loads_lighting_usage_multiplier', user_arguments), - fuel_loads_fireplace_present: runner.getBoolArgumentValue('fuel_loads_fireplace_present', user_arguments), - fuel_loads_fireplace_fuel_type: runner.getStringArgumentValue('fuel_loads_fireplace_fuel_type', user_arguments), - fuel_loads_fireplace_annual_therm: runner.getStringArgumentValue('fuel_loads_fireplace_annual_therm', user_arguments), - fuel_loads_fireplace_frac_sensible: runner.getStringArgumentValue('fuel_loads_fireplace_frac_sensible', user_arguments), - fuel_loads_fireplace_frac_latent: runner.getStringArgumentValue('fuel_loads_fireplace_frac_latent', user_arguments), - fuel_loads_fireplace_usage_multiplier: runner.getDoubleArgumentValue('fuel_loads_fireplace_usage_multiplier', user_arguments), - pool_present: runner.getBoolArgumentValue('pool_present', user_arguments), - pool_pump_annual_kwh: runner.getStringArgumentValue('pool_pump_annual_kwh', user_arguments), - pool_pump_usage_multiplier: runner.getDoubleArgumentValue('pool_pump_usage_multiplier', user_arguments), - pool_heater_type: runner.getStringArgumentValue('pool_heater_type', user_arguments), - pool_heater_annual_kwh: runner.getStringArgumentValue('pool_heater_annual_kwh', user_arguments), - pool_heater_annual_therm: runner.getStringArgumentValue('pool_heater_annual_therm', user_arguments), - pool_heater_usage_multiplier: runner.getDoubleArgumentValue('pool_heater_usage_multiplier', user_arguments), - hot_tub_present: runner.getBoolArgumentValue('hot_tub_present', user_arguments), - hot_tub_pump_annual_kwh: runner.getStringArgumentValue('hot_tub_pump_annual_kwh', user_arguments), - hot_tub_pump_usage_multiplier: runner.getDoubleArgumentValue('hot_tub_pump_usage_multiplier', user_arguments), - hot_tub_heater_type: runner.getStringArgumentValue('hot_tub_heater_type', user_arguments), - hot_tub_heater_annual_kwh: runner.getStringArgumentValue('hot_tub_heater_annual_kwh', user_arguments), - hot_tub_heater_annual_therm: runner.getStringArgumentValue('hot_tub_heater_annual_therm', user_arguments), - hot_tub_heater_usage_multiplier: runner.getDoubleArgumentValue('hot_tub_heater_usage_multiplier', user_arguments) } - end - def validate_arguments(args) warnings = [] errors = [] @@ -3554,9 +2950,17 @@ def validate_arguments(args) errors << "ducts_supply_location=#{args[:ducts_supply_location]} and ducts_supply_surface_area=#{args[:ducts_supply_surface_area]} and ducts_return_location=#{args[:ducts_return_location]} and ducts_return_surface_area=#{args[:ducts_return_surface_area]}" if error # second heating system fraction heat load served non less than 50% - warning = (args[:heating_system_type_2] != 'none') && (args[:heating_system_fraction_heat_load_served_2] >= 0.5) + warning = (args[:heating_system_type_2] != 'none') && (args[:heating_system_fraction_heat_load_served_2] >= 0.5) && (args[:heating_system_fraction_heat_load_served_2] < 1.0) warnings << "heating_system_type_2=#{args[:heating_system_type_2]} and heating_system_fraction_heat_load_served_2=#{args[:heating_system_fraction_heat_load_served_2]}" if warning + # second heating system fraction heat load served is 100% + error = (args[:heating_system_type_2] != 'none') && (args[:heating_system_fraction_heat_load_served_2] == 1.0) + errors << "heating_system_type_2=#{args[:heating_system_type_2]} and heating_system_fraction_heat_load_served_2=#{args[:heating_system_fraction_heat_load_served_2]}" if error + + # second heating system but no primary heating system + error = (args[:heating_system_type] == 'none') && (args[:heat_pump_type] == 'none') && (args[:heating_system_type_2] != 'none') + errors << "heating_system_type=#{args[:heating_system_type]} and heat_pump_type=#{args[:heat_pump_type]} and heating_system_type_2=#{args[:heating_system_type_2]}" if error + # single-family attached and num units, horizontal location not specified error = (args[:geometry_unit_type] == HPXML::ResidentialTypeSFA) && (!args[:geometry_building_num_units].is_initialized || !args[:geometry_horizontal_location].is_initialized) errors << "geometry_unit_type=#{args[:geometry_unit_type]} and geometry_building_num_units=#{args[:geometry_building_num_units].is_initialized} and geometry_horizontal_location=#{args[:geometry_horizontal_location].is_initialized}" if error @@ -3581,18 +2985,52 @@ def validate_arguments(args) warning = (args[:geometry_attic_type] == HPXML::AtticTypeConditioned) && (args[:geometry_roof_type] != 'flat') && (args[:ceiling_assembly_r] > 2.1) warnings << "geometry_attic_type=#{args[:geometry_attic_type]} and ceiling_assembly_r=#{args[:ceiling_assembly_r]}" if warning + # conditioned attic but only one above-grade floor + error = (args[:geometry_num_floors_above_grade] == 1 && args[:geometry_attic_type] == HPXML::AtticTypeConditioned) + errors << "geometry_num_floors_above_grade=#{args[:geometry_num_floors_above_grade]} and geometry_attic_type=#{args[:geometry_attic_type]}" if error + # dhw indirect but no boiler error = ((args[:water_heater_type] == HPXML::WaterHeaterTypeCombiStorage) || (args[:water_heater_type] == HPXML::WaterHeaterTypeCombiTankless)) && (args[:heating_system_type] != HPXML::HVACTypeBoiler) errors << "water_heater_type=#{args[:water_heater_type]} and heating_system_type=#{args[:heating_system_type]}" if error - # no plug loads but specifying usage multipliers - warning = (args[:plug_loads_television_annual_kwh] == 0.0 && (args[:plug_loads_television_usage_multiplier] != 0.0 || args[:plug_loads_television_usage_multiplier_2] != 0.0)) || (args[:plug_loads_other_annual_kwh] == 0.0 && (args[:plug_loads_other_usage_multiplier] != 0.0 || args[:plug_loads_other_usage_multiplier_2] != 0.0)) || (!args[:plug_loads_well_pump_present] && (args[:plug_loads_well_pump_usage_multiplier] != 0.0 || args[:plug_loads_well_pump_usage_multiplier_2] != 0.0)) || (!args[:plug_loads_vehicle_present] && (args[:plug_loads_vehicle_usage_multiplier] != 0.0 || args[:plug_loads_vehicle_usage_multiplier_2] != 0.0)) - warnings << "plug_loads_television_annual_kwh=#{args[:plug_loads_television_annual_kwh]} and plug_loads_television_usage_multiplier=#{args[:plug_loads_television_usage_multiplier]} and plug_loads_television_usage_multiplier_2=#{args[:plug_loads_television_usage_multiplier_2]} and plug_loads_other_annual_kwh=#{args[:plug_loads_other_annual_kwh]} and plug_loads_other_usage_multiplier=#{args[:plug_loads_other_usage_multiplier]} and plug_loads_other_usage_multiplier_2=#{args[:plug_loads_other_usage_multiplier_2]} and plug_loads_well_pump_present=#{args[:plug_loads_well_pump_present]} and plug_loads_well_pump_usage_multiplier=#{args[:plug_loads_well_pump_usage_multiplier]} and plug_loads_well_pump_usage_multiplier_2=#{args[:plug_loads_well_pump_usage_multiplier_2]} and plug_loads_vehicle_present=#{args[:plug_loads_vehicle_present]} and plug_loads_vehicle_usage_multiplier=#{args[:plug_loads_vehicle_usage_multiplier]} and plug_loads_vehicle_usage_multiplier_2=#{args[:plug_loads_vehicle_usage_multiplier_2]}" if warning + # no tv plug loads but specifying usage multipliers + if args[:plug_loads_television_annual_kwh] != Constants.Auto + warning = (args[:plug_loads_television_annual_kwh].to_f == 0.0 && args[:plug_loads_television_usage_multiplier] != 0.0) + warnings << "plug_loads_television_annual_kwh=#{args[:plug_loads_television_annual_kwh]} and plug_loads_television_usage_multiplier=#{args[:plug_loads_television_usage_multiplier]}" if warning + end + + # no other plug loads but specifying usage multipliers + if args[:plug_loads_other_annual_kwh] != Constants.Auto + warning = (args[:plug_loads_other_annual_kwh].to_f == 0.0 && args[:plug_loads_other_usage_multiplier] != 0.0) + warnings << "plug_loads_other_annual_kwh=#{args[:plug_loads_other_annual_kwh]} and plug_loads_other_usage_multiplier=#{args[:plug_loads_other_usage_multiplier]}" if warning + end + + # no well pump plug loads but specifying usage multipliers + if args[:plug_loads_well_pump_annual_kwh] != Constants.Auto + warning = (args[:plug_loads_well_pump_annual_kwh].to_f == 0.0 && args[:plug_loads_well_pump_usage_multiplier] != 0.0) + warnings << "plug_loads_well_pump_annual_kwh=#{args[:plug_loads_well_pump_annual_kwh]} and plug_loads_well_pump_usage_multiplier=#{args[:plug_loads_well_pump_usage_multiplier]}" if warning + end + + # no vehicle plug loads but specifying usage multipliers + if args[:plug_loads_vehicle_annual_kwh] != Constants.Auto + warning = (args[:plug_loads_vehicle_annual_kwh].to_f && args[:plug_loads_vehicle_usage_multiplier] != 0.0) + warnings << "plug_loads_vehicle_annual_kwh=#{args[:plug_loads_vehicle_annual_kwh]} and plug_loads_vehicle_usage_multiplier=#{args[:plug_loads_vehicle_usage_multiplier]}" if warning + end # no fuel loads but specifying usage multipliers warning = (!args[:fuel_loads_grill_present] && args[:fuel_loads_grill_usage_multiplier] != 0.0) || (!args[:fuel_loads_lighting_present] && args[:fuel_loads_lighting_usage_multiplier] != 0.0) || (!args[:fuel_loads_fireplace_present] && args[:fuel_loads_fireplace_usage_multiplier] != 0.0) warnings << "fuel_loads_grill_present=#{args[:fuel_loads_grill_present]} and fuel_loads_grill_usage_multiplier=#{args[:fuel_loads_grill_usage_multiplier]} and fuel_loads_lighting_present=#{args[:fuel_loads_lighting_present]} and fuel_loads_lighting_usage_multiplier=#{args[:fuel_loads_lighting_usage_multiplier]} and fuel_loads_fireplace_present=#{args[:fuel_loads_fireplace_present]} and fuel_loads_fireplace_usage_multiplier=#{args[:fuel_loads_fireplace_usage_multiplier]}" if warning + # foundation wall insulation distance to bottom is greater than foundation wall height + if args[:foundation_wall_insulation_distance_to_bottom] != Constants.Auto + error = (args[:foundation_wall_insulation_distance_to_bottom].to_f > args[:geometry_foundation_height]) + errors << "foundation_wall_insulation_distance_to_bottom=#{args[:foundation_wall_insulation_distance_to_bottom]} and geometry_foundation_height=#{args[:geometry_foundation_height]}" if error + end + + # number of bedrooms not greater than zero + error = (args[:geometry_num_bedrooms] <= 0) + errors << "geometry_num_bedrooms=#{args[:geometry_num_bedrooms]}" if error + return warnings, errors end @@ -3625,9 +3063,7 @@ def validate_hpxml(runner, hpxml_path, hpxml_doc) class HPXMLFile def self.create(runner, model, args, epw_file) - model_geometry = OpenStudio::Model::Model.new - - success = create_geometry_envelope(runner, model_geometry, args) + success = create_geometry_envelope(runner, model, args) return false if not success success = create_schedules(runner, model, epw_file, args) @@ -3635,27 +3071,30 @@ def self.create(runner, model, args, epw_file) hpxml = HPXML.new - set_header(hpxml, runner, args) + set_header(hpxml, runner, args, epw_file) set_site(hpxml, runner, args) set_neighbor_buildings(hpxml, runner, args) set_building_occupancy(hpxml, runner, args) set_building_construction(hpxml, runner, args) set_climate_and_risk_zones(hpxml, runner, args, epw_file) set_air_infiltration_measurements(hpxml, runner, args) - set_attics(hpxml, runner, model_geometry, args) - set_foundations(hpxml, runner, model_geometry, args) - set_roofs(hpxml, runner, model_geometry, args) - set_rim_joists(hpxml, runner, model_geometry, args) - set_walls(hpxml, runner, model_geometry, args) - set_foundation_walls(hpxml, runner, model_geometry, args) - set_frame_floors(hpxml, runner, model_geometry, args) - set_slabs(hpxml, runner, model_geometry, args) - set_windows(hpxml, runner, model_geometry, args) - set_skylights(hpxml, runner, model_geometry, args) - set_doors(hpxml, runner, model_geometry, args) + + set_attics(hpxml, runner, model, args) + set_foundations(hpxml, runner, model, args) + set_roofs(hpxml, runner, model, args) + set_rim_joists(hpxml, runner, model, args) + set_walls(hpxml, runner, model, args) + set_foundation_walls(hpxml, runner, model, args) + set_frame_floors(hpxml, runner, model, args) + set_slabs(hpxml, runner, model, args) + set_windows(hpxml, runner, model, args) + set_skylights(hpxml, runner, model, args) + set_doors(hpxml, runner, model, args) + set_heating_systems(hpxml, runner, args) set_cooling_systems(hpxml, runner, args) set_heat_pumps(hpxml, runner, args) + set_secondary_heating_systems(hpxml, runner, args) set_hvac_distribution(hpxml, runner, args) set_hvac_control(hpxml, runner, args) set_ventilation_fans(hpxml, runner, args) @@ -3699,6 +3138,13 @@ def self.create_geometry_envelope(runner, model, args) if args[:geometry_foundation_type] == HPXML::FoundationTypeSlab args[:geometry_foundation_height] = 0.0 args[:geometry_foundation_height_above_grade] = 0.0 + args[:geometry_rim_joist_height] = 0.0 + elsif args[:geometry_foundation_type] == HPXML::FoundationTypeAmbient + args[:geometry_rim_joist_height] = 0.0 + end + + if args[:geometry_attic_type] == HPXML::AtticTypeConditioned + args[:geometry_num_floors_above_grade] -= 1 end if args[:geometry_unit_type] == HPXML::ResidentialTypeSFD @@ -3706,6 +3152,8 @@ def self.create_geometry_envelope(runner, model, args) elsif args[:geometry_unit_type] == HPXML::ResidentialTypeSFA success = Geometry.create_single_family_attached(runner: runner, model: model, **args) elsif args[:geometry_unit_type] == HPXML::ResidentialTypeApartment + args[:geometry_roof_type] = 'flat' + args[:geometry_attic_type] = HPXML::AtticTypeVented success = Geometry.create_multifamily(runner: runner, model: model, **args) end return false if not success @@ -3767,7 +3215,7 @@ def self.create_schedules(runner, model, epw_file, args) return false if not success # export the schedule - args[:schedules_path] = '../schedules.csv' + args[:schedules_path] = "../#{File.basename(args[:hpxml_path], '.xml')}_schedules.csv" success = schedule_generator.export(schedules_path: File.expand_path(args[:schedules_path])) return false if not success @@ -3776,7 +3224,7 @@ def self.create_schedules(runner, model, epw_file, args) return true end - def self.set_header(hpxml, runner, args) + def self.set_header(hpxml, runner, args, epw_file) hpxml.header.xml_type = 'HPXML' hpxml.header.xml_generated_by = 'BuildResidentialHPXML' hpxml.header.transaction = 'create' @@ -3826,20 +3274,21 @@ def self.set_header(hpxml, runner, args) end hpxml.header.building_id = 'MyBuilding' + hpxml.header.state_code = epw_file.stateProvinceRegion hpxml.header.event_type = 'proposed workscope' hpxml.header.schedules_path = args[:schedules_path] end def self.set_site(hpxml, runner, args) - if args[:air_leakage_shelter_coefficient] != Constants.Auto - shelter_coefficient = args[:air_leakage_shelter_coefficient] + if args[:air_leakage_shielding_of_home] != Constants.Auto + shielding_of_home = args[:air_leakage_shielding_of_home] end if args[:site_type].is_initialized hpxml.site.site_type = args[:site_type].get end - hpxml.site.shelter_coefficient = shelter_coefficient + hpxml.site.shielding_of_home = shielding_of_home end def self.set_neighbor_buildings(hpxml, runner, args) @@ -3896,11 +3345,9 @@ def self.set_building_construction(hpxml, runner, args) hpxml.building_construction.conditioned_building_volume = conditioned_building_volume hpxml.building_construction.average_ceiling_height = args[:geometry_wall_height] hpxml.building_construction.residential_facility_type = args[:geometry_unit_type] - - if (args[:heating_system_type] != 'none' && args[:heating_system_has_flue_or_chimney]) || - (args[:heating_system_type_2] != 'none' && args[:heating_system_has_flue_or_chimney_2]) || - (args[:water_heater_type] != 'none' && args[:water_heater_has_flue_or_chimney]) - hpxml.building_construction.has_flue_or_chimney = true + if args[:geometry_has_flue_or_chimney] != Constants.Auto + has_flue_or_chimney = args[:geometry_has_flue_or_chimney] + hpxml.building_construction.has_flue_or_chimney = has_flue_or_chimney end end @@ -3939,7 +3386,6 @@ def self.set_air_infiltration_measurements(hpxml, runner, args) def self.set_attics(hpxml, runner, model, args) return if args[:geometry_unit_type] == HPXML::ResidentialTypeApartment - return if args[:geometry_unit_type] == HPXML::ResidentialTypeSFA # TODO: remove when we can model single-family attached units if args[:geometry_roof_type] == 'flat' hpxml.attics.add(id: HPXML::AtticTypeFlatRoof, @@ -3974,27 +3420,13 @@ def self.set_roofs(hpxml, runner, model, args) roof_type = args[:roof_material_type].get end - if args[:roof_color] == Constants.Auto && args[:roof_solar_absorptance] == Constants.Auto - solar_absorptance = 0.7 - end - if args[:roof_color] != Constants.Auto roof_color = args[:roof_color] end - if args[:roof_solar_absorptance] != Constants.Auto - solar_absorptance = args[:roof_solar_absorptance] - end - - if args[:roof_emittance] != Constants.Auto - emittance = args[:roof_emittance] - end - - if args[:roof_radiant_barrier] != Constants.Auto - radiant_barrier = args[:roof_radiant_barrier] - if to_boolean(radiant_barrier) - radiant_barrier_grade = args[:roof_radiant_barrier_grade] - end + radiant_barrier = args[:roof_radiant_barrier] + if args[:roof_radiant_barrier] + radiant_barrier_grade = args[:roof_radiant_barrier_grade] end if args[:geometry_roof_type] == 'flat' @@ -4009,8 +3441,6 @@ def self.set_roofs(hpxml, runner, model, args) area: UnitConversions.convert(surface.grossArea, 'm^2', 'ft^2').round, roof_type: roof_type, roof_color: roof_color, - solar_absorptance: solar_absorptance, - emittance: emittance, pitch: args[:geometry_roof_pitch], radiant_barrier: radiant_barrier, radiant_barrier_grade: radiant_barrier_grade, @@ -4020,10 +3450,61 @@ def self.set_roofs(hpxml, runner, model, args) def self.set_rim_joists(hpxml, runner, model, args) model.getSurfaces.sort.each do |surface| - # TODO + next if surface.surfaceType != 'Wall' + next unless ['Outdoors', 'Adiabatic'].include? surface.outsideBoundaryCondition + next unless Geometry.surface_is_rim_joist(surface, args[:geometry_rim_joist_height]) + + interior_adjacent_to = get_adjacent_to(surface) + next unless [HPXML::LocationBasementConditioned, HPXML::LocationBasementUnconditioned, HPXML::LocationCrawlspaceUnvented, HPXML::LocationCrawlspaceVented].include? interior_adjacent_to + + exterior_adjacent_to = HPXML::LocationOutside + if surface.outsideBoundaryCondition == 'Adiabatic' # can be adjacent to foundation space + adjacent_surface = get_adiabatic_adjacent_surface(model, surface) + if adjacent_surface.nil? # adjacent to a space that is not explicitly in the model + unless [HPXML::ResidentialTypeSFD].include?(args[:geometry_unit_type]) + exterior_adjacent_to = interior_adjacent_to + if exterior_adjacent_to == HPXML::LocationLivingSpace # living adjacent to living + exterior_adjacent_to = HPXML::LocationOtherHousingUnit + end + end + else # adjacent to a space that is explicitly in the model, e.g., corridor + exterior_adjacent_to = get_adjacent_to(adjacent_surface) + end + end + + if exterior_adjacent_to == HPXML::LocationOutside && args[:wall_siding_type].is_initialized + siding = args[:wall_siding_type].get + end + + if args[:wall_color] != Constants.Auto + color = args[:wall_color] + end + + if interior_adjacent_to == exterior_adjacent_to + insulation_assembly_r_value = 4.0 # Uninsulated + else + insulation_assembly_r_value = args[:rim_joist_assembly_r] + end + + hpxml.rim_joists.add(id: valid_attr(surface.name), + exterior_adjacent_to: exterior_adjacent_to, + interior_adjacent_to: interior_adjacent_to, + area: UnitConversions.convert(surface.grossArea, 'm^2', 'ft^2').round(1), + siding: siding, + color: color, + insulation_assembly_r_value: insulation_assembly_r_value) end end + def self.get_unexposed_garage_perimeter(hpxml, args) + # this is perimeter adjacent to a 100% protruding garage that is not exposed + # we need this because it's difficult to set this surface to Adiabatic using our geometry methods + if (args[:geometry_garage_protrusion] == 1.0) && (args[:geometry_garage_width] * args[:geometry_garage_depth] > 0) + return args[:geometry_garage_width] + end + return 0 + end + def self.get_adiabatic_adjacent_surface(model, surface) return if surface.outsideBoundaryCondition != 'Adiabatic' @@ -4050,6 +3531,7 @@ def self.get_adiabatic_adjacent_surface(model, surface) def self.set_walls(hpxml, runner, model, args) model.getSurfaces.sort.each do |surface| next if surface.surfaceType != 'Wall' + next if Geometry.surface_is_rim_joist(surface, args[:geometry_rim_joist_height]) interior_adjacent_to = get_adjacent_to(surface) next unless [HPXML::LocationLivingSpace, HPXML::LocationAtticUnvented, HPXML::LocationAtticVented, HPXML::LocationGarage].include? interior_adjacent_to @@ -4130,19 +3612,20 @@ def self.set_foundation_walls(hpxml, runner, model, args) model.getSurfaces.sort.each do |surface| next if surface.surfaceType != 'Wall' next unless ['Foundation', 'Adiabatic'].include? surface.outsideBoundaryCondition + next if Geometry.surface_is_rim_joist(surface, args[:geometry_rim_joist_height]) interior_adjacent_to = get_adjacent_to(surface) next unless [HPXML::LocationBasementConditioned, HPXML::LocationBasementUnconditioned, HPXML::LocationCrawlspaceUnvented, HPXML::LocationCrawlspaceVented].include? interior_adjacent_to exterior_adjacent_to = HPXML::LocationGround if surface.outsideBoundaryCondition == 'Adiabatic' # can be adjacent to foundation space - next if [HPXML::ResidentialTypeSFD, HPXML::ResidentialTypeManufactured].include? args[:geometry_unit_type] # these are surfaces for kiva - adjacent_surface = get_adiabatic_adjacent_surface(model, surface) if adjacent_surface.nil? # adjacent to a space that is not explicitly in the model - exterior_adjacent_to = interior_adjacent_to - if exterior_adjacent_to == HPXML::LocationLivingSpace # living adjacent to living - exterior_adjacent_to = HPXML::LocationOtherHousingUnit + unless [HPXML::ResidentialTypeSFD].include?(args[:geometry_unit_type]) + exterior_adjacent_to = interior_adjacent_to + if exterior_adjacent_to == HPXML::LocationLivingSpace # living adjacent to living + exterior_adjacent_to = HPXML::LocationOtherHousingUnit + end end else # adjacent to a space that is explicitly in the model, e.g., corridor exterior_adjacent_to = get_adjacent_to(adjacent_surface) @@ -4160,6 +3643,9 @@ def self.set_foundation_walls(hpxml, runner, model, args) insulation_exterior_r_value = args[:foundation_wall_insulation_r] insulation_exterior_distance_to_top = args[:foundation_wall_insulation_distance_to_top] insulation_exterior_distance_to_bottom = args[:foundation_wall_insulation_distance_to_bottom] + if insulation_exterior_distance_to_bottom == Constants.Auto + insulation_exterior_distance_to_bottom = args[:geometry_foundation_height] + end end insulation_interior_r_value = 0 insulation_interior_distance_to_top = 0 @@ -4250,6 +3736,11 @@ def self.set_slabs(hpxml, runner, model, args) has_foundation_walls = true end exposed_perimeter = Geometry.calculate_exposed_perimeter(model, [surface], has_foundation_walls).round + next if exposed_perimeter == 0 # this could be, e.g., the foundation floor of an interior corridor + + if [HPXML::LocationCrawlspaceVented, HPXML::LocationCrawlspaceUnvented, HPXML::LocationBasementUnconditioned, HPXML::LocationBasementConditioned].include? interior_adjacent_to + exposed_perimeter -= get_unexposed_garage_perimeter(hpxml, args) + end if [HPXML::LocationLivingSpace, HPXML::LocationGarage].include? interior_adjacent_to depth_below_grade = 0 @@ -4301,39 +3792,37 @@ def self.set_windows(hpxml, runner, model, args) sub_surface_height = Geometry.get_surface_height(sub_surface) sub_surface_facade = Geometry.get_facade_for_surface(sub_surface) - if (sub_surface_facade == Constants.FacadeFront) && (args[:overhangs_front_depth] > 0) + if (sub_surface_facade == Constants.FacadeFront) && ((args[:overhangs_front_depth] > 0) || args[:overhangs_front_distance_to_top_of_window] > 0) overhangs_depth = args[:overhangs_front_depth] overhangs_distance_to_top_of_window = args[:overhangs_front_distance_to_top_of_window] overhangs_distance_to_bottom_of_window = (overhangs_distance_to_top_of_window + sub_surface_height).round - elsif (sub_surface_facade == Constants.FacadeBack) && (args[:overhangs_back_depth] > 0) + elsif (sub_surface_facade == Constants.FacadeBack) && ((args[:overhangs_back_depth] > 0) || args[:overhangs_back_distance_to_top_of_window] > 0) overhangs_depth = args[:overhangs_back_depth] overhangs_distance_to_top_of_window = args[:overhangs_back_distance_to_top_of_window] overhangs_distance_to_bottom_of_window = (overhangs_distance_to_top_of_window + sub_surface_height).round - elsif (sub_surface_facade == Constants.FacadeLeft) && (args[:overhangs_left_depth] > 0) + elsif (sub_surface_facade == Constants.FacadeLeft) && ((args[:overhangs_left_depth] > 0) || args[:overhangs_left_distance_to_top_of_window] > 0) overhangs_depth = args[:overhangs_left_depth] overhangs_distance_to_top_of_window = args[:overhangs_left_distance_to_top_of_window] overhangs_distance_to_bottom_of_window = (overhangs_distance_to_top_of_window + sub_surface_height).round - elsif (sub_surface_facade == Constants.FacadeRight) && (args[:overhangs_right_depth] > 0) + elsif (sub_surface_facade == Constants.FacadeRight) && ((args[:overhangs_right_depth] > 0) || args[:overhangs_right_distance_to_top_of_window] > 0) overhangs_depth = args[:overhangs_right_depth] overhangs_distance_to_top_of_window = args[:overhangs_right_distance_to_top_of_window] overhangs_distance_to_bottom_of_window = (overhangs_distance_to_top_of_window + sub_surface_height).round elsif args[:geometry_eaves_depth] > 0 - eaves_z = args[:geometry_wall_height] * args[:geometry_num_floors_above_grade] + # Get max z coordinate of eaves + eaves_z = args[:geometry_wall_height] * args[:geometry_num_floors_above_grade] + args[:geometry_rim_joist_height] + if args[:geometry_attic_type] == HPXML::AtticTypeConditioned + eaves_z += Geometry.get_conditioned_attic_height(model.getSpaces) + end if args[:geometry_foundation_type] == HPXML::FoundationTypeAmbient eaves_z += args[:geometry_foundation_height] end - sub_surface_z = -9e99 - space = sub_surface.space.get - z_origin = space.zOrigin - sub_surface.vertices.each do |vertex| - z = vertex.z + z_origin - next if z < sub_surface_z - - sub_surface_z = z - end - sub_surface_z = UnitConversions.convert(sub_surface_z, 'm', 'ft') + + # Get max z coordinate of this window + sub_surface_z = Geometry.getSurfaceZValues([sub_surface]).max + UnitConversions.convert(sub_surface.space.get.zOrigin, 'm', 'ft') + overhangs_depth = args[:geometry_eaves_depth] - overhangs_distance_to_top_of_window = eaves_z - sub_surface_z + overhangs_distance_to_top_of_window = eaves_z - sub_surface_z # difference between max z coordinates of eaves and this window overhangs_distance_to_bottom_of_window = (overhangs_distance_to_top_of_window + sub_surface_height).round end @@ -4347,6 +3836,14 @@ def self.set_windows(hpxml, runner, model, args) interior_shading_factor_summer = args[:window_interior_shading_summer].get end + if args[:window_exterior_shading_winter].is_initialized + exterior_shading_factor_winter = args[:window_exterior_shading_winter].get + end + + if args[:window_exterior_shading_summer].is_initialized + exterior_shading_factor_summer = args[:window_exterior_shading_summer].get + end + if args[:window_fraction_operable].is_initialized fraction_operable = args[:window_fraction_operable].get end @@ -4361,6 +3858,8 @@ def self.set_windows(hpxml, runner, model, args) overhangs_distance_to_bottom_of_window: overhangs_distance_to_bottom_of_window, interior_shading_factor_winter: interior_shading_factor_winter, interior_shading_factor_summer: interior_shading_factor_summer, + exterior_shading_factor_winter: exterior_shading_factor_winter, + exterior_shading_factor_summer: exterior_shading_factor_summer, fraction_operable: fraction_operable, wall_idref: valid_attr(surface.name)) end # sub_surfaces @@ -4417,12 +3916,6 @@ def self.set_heating_systems(hpxml, runner, args) heating_capacity = args[:heating_system_heating_capacity] end - if args[:heating_system_electric_auxiliary_energy].is_initialized - if args[:heating_system_electric_auxiliary_energy].get > 0 - electric_auxiliary_energy = args[:heating_system_electric_auxiliary_energy].get - end - end - if heating_system_type == HPXML::HVACTypeElectricResistance heating_system_fuel = HPXML::FuelTypeElectricity else @@ -4435,66 +3928,25 @@ def self.set_heating_systems(hpxml, runner, args) heating_efficiency_percent = args[:heating_system_heating_efficiency] end - if [HPXML::HVACTypeFurnace].include? heating_system_type - if args[:heating_system_fan_power_watts_per_cfm].is_initialized - fan_watts_per_cfm = args[:heating_system_fan_power_watts_per_cfm].get - end - elsif [HPXML::HVACTypeWallFurnace, HPXML::HVACTypeFloorFurnace, HPXML::HVACTypeStove, HPXML::HVACTypePortableHeater, HPXML::HVACTypeFireplace, HPXML::HVACTypeFixedHeater].include? heating_system_type - if args[:heating_system_fan_power_watts].is_initialized - fan_watts = args[:heating_system_fan_power_watts].get + if args[:heating_system_airflow_defect_ratio].is_initialized + if [HPXML::HVACTypeFurnace].include? heating_system_type + airflow_defect_ratio = args[:heating_system_airflow_defect_ratio].get end end + fraction_heat_load_served = args[:heating_system_fraction_heat_load_served] + if args[:heating_system_type_2] != 'none' && fraction_heat_load_served + args[:heating_system_fraction_heat_load_served_2] > 1.0 + fraction_heat_load_served = 1.0 - args[:heating_system_fraction_heat_load_served_2] + end + hpxml.heating_systems.add(id: 'HeatingSystem', heating_system_type: heating_system_type, heating_system_fuel: heating_system_fuel, heating_capacity: heating_capacity, - fraction_heat_load_served: args[:heating_system_fraction_heat_load_served], - electric_auxiliary_energy: electric_auxiliary_energy, + fraction_heat_load_served: fraction_heat_load_served, heating_efficiency_afue: heating_efficiency_afue, heating_efficiency_percent: heating_efficiency_percent, - fan_watts_per_cfm: fan_watts_per_cfm, - fan_watts: fan_watts) - - heating_system_type_2 = args[:heating_system_type_2] - - return if heating_system_type_2 == 'none' - - if args[:heating_system_heating_capacity_2] != Constants.Auto - heating_capacity_2 = args[:heating_system_heating_capacity_2] - end - - if args[:heating_system_electric_auxiliary_energy_2].is_initialized - if args[:heating_system_electric_auxiliary_energy_2].get > 0 - electric_auxiliary_energy_2 = args[:heating_system_electric_auxiliary_energy_2].get - end - end - - if args[:heating_system_fuel_2] == HPXML::HVACTypeElectricResistance - heating_system_fuel_2 = HPXML::FuelTypeElectricity - else - heating_system_fuel_2 = args[:heating_system_fuel_2] - end - - if [HPXML::HVACTypeFurnace, HPXML::HVACTypeWallFurnace].include? heating_system_type_2 - heating_efficiency_afue_2 = args[:heating_system_heating_efficiency_2] - elsif [HPXML::HVACTypeElectricResistance, HPXML::HVACTypeStove, HPXML::HVACTypePortableHeater, HPXML::HVACTypeFireplace].include? heating_system_type_2 - heating_efficiency_percent_2 = args[:heating_system_heating_efficiency_2] - end - - if args[:heating_system_fan_power_watts_2].is_initialized - fan_watts = args[:heating_system_fan_power_watts_2].get - end - - hpxml.heating_systems.add(id: 'SecondHeatingSystem', - heating_system_type: heating_system_type_2, - heating_system_fuel: heating_system_fuel_2, - heating_capacity: heating_capacity_2, - fraction_heat_load_served: args[:heating_system_fraction_heat_load_served_2], - electric_auxiliary_energy: electric_auxiliary_energy_2, - heating_efficiency_afue: heating_efficiency_afue_2, - heating_efficiency_percent: heating_efficiency_percent_2, - fan_watts: fan_watts) + airflow_defect_ratio: airflow_defect_ratio) end def self.set_cooling_systems(hpxml, runner, args) @@ -4502,10 +3954,8 @@ def self.set_cooling_systems(hpxml, runner, args) return if cooling_system_type == 'none' - if cooling_system_type != HPXML::HVACTypeEvaporativeCooler - if args[:cooling_system_cooling_capacity] != Constants.Auto - cooling_capacity = args[:cooling_system_cooling_capacity] - end + if args[:cooling_system_cooling_capacity] != Constants.Auto + cooling_capacity = args[:cooling_system_cooling_capacity] end if args[:cooling_system_cooling_compressor_type].is_initialized @@ -4520,15 +3970,21 @@ def self.set_cooling_systems(hpxml, runner, args) end end - if [HPXML::HVACTypeCentralAirConditioner, HPXML::HVACTypeMiniSplitAirConditioner].include? cooling_system_type - cooling_efficiency_seer = args[:cooling_system_cooling_efficiency_seer] - elsif [HPXML::HVACTypeRoomAirConditioner].include? cooling_system_type - cooling_efficiency_eer = args[:cooling_system_cooling_efficiency_eer] + if args[:cooling_system_cooling_efficiency_type] == HPXML::UnitsSEER + cooling_efficiency_seer = args[:cooling_system_cooling_efficiency] + elsif args[:cooling_system_cooling_efficiency_type] == HPXML::UnitsEER + cooling_efficiency_eer = args[:cooling_system_cooling_efficiency] + end + + if args[:cooling_system_airflow_defect_ratio].is_initialized + if [HPXML::HVACTypeCentralAirConditioner].include?(cooling_system_type) || ([HPXML::HVACTypeMiniSplitAirConditioner].include?(cooling_system_type) && (args[:cooling_system_is_ducted])) + airflow_defect_ratio = args[:cooling_system_airflow_defect_ratio].get + end end - if [HPXML::HVACTypeCentralAirConditioner, HPXML::HVACTypeEvaporativeCooler, HPXML::HVACTypeMiniSplitAirConditioner].include? cooling_system_type - if args[:cooling_system_fan_power_watts_per_cfm].is_initialized - fan_watts_per_cfm = args[:cooling_system_fan_power_watts_per_cfm].get + if args[:cooling_system_charge_defect_ratio].is_initialized + if [HPXML::HVACTypeCentralAirConditioner, HPXML::HVACTypeMiniSplitAirConditioner].include?(cooling_system_type) + charge_defect_ratio = args[:cooling_system_charge_defect_ratio].get end end @@ -4541,7 +3997,8 @@ def self.set_cooling_systems(hpxml, runner, args) cooling_shr: cooling_shr, cooling_efficiency_seer: cooling_efficiency_seer, cooling_efficiency_eer: cooling_efficiency_eer, - fan_watts_per_cfm: fan_watts_per_cfm) + airflow_defect_ratio: airflow_defect_ratio, + charge_defect_ratio: charge_defect_ratio) end def self.set_heat_pumps(hpxml, runner, args) @@ -4554,8 +4011,8 @@ def self.set_heat_pumps(hpxml, runner, args) end if [HPXML::HVACTypeHeatPumpAirToAir, HPXML::HVACTypeHeatPumpMiniSplit].include? heat_pump_type - if args[:heat_pump_heating_capacity_17F] != Constants.Auto - heating_capacity_17F = args[:heat_pump_heating_capacity_17F] + if args[:heat_pump_heating_capacity_17_f] != Constants.Auto + heating_capacity_17F = args[:heat_pump_heating_capacity_17_f] end end @@ -4592,20 +4049,31 @@ def self.set_heat_pumps(hpxml, runner, args) cooling_shr = args[:heat_pump_cooling_sensible_heat_fraction].get end - if [HPXML::HVACTypeHeatPumpAirToAir, HPXML::HVACTypeHeatPumpMiniSplit].include? heat_pump_type - heating_efficiency_hspf = args[:heat_pump_heating_efficiency_hspf] - cooling_efficiency_seer = args[:heat_pump_cooling_efficiency_seer] - elsif [HPXML::HVACTypeHeatPumpGroundToAir].include? heat_pump_type - heating_efficiency_cop = args[:heat_pump_heating_efficiency_cop] - cooling_efficiency_eer = args[:heat_pump_cooling_efficiency_eer] - - if args[:heat_pump_pump_power_watts_per_ton].is_initialized - pump_watts_per_ton = args[:heat_pump_pump_power_watts_per_ton].get + if args[:heat_pump_heating_efficiency_type] == HPXML::UnitsHSPF + heating_efficiency_hspf = args[:heat_pump_heating_efficiency] + elsif args[:heat_pump_heating_efficiency_type] == HPXML::UnitsCOP + heating_efficiency_cop = args[:heat_pump_heating_efficiency] + end + + if args[:heat_pump_cooling_efficiency_type] == HPXML::UnitsSEER + cooling_efficiency_seer = args[:heat_pump_cooling_efficiency] + elsif args[:heat_pump_cooling_efficiency_type] == HPXML::UnitsEER + cooling_efficiency_eer = args[:heat_pump_cooling_efficiency] + end + + if args[:heat_pump_airflow_defect_ratio].is_initialized + if [HPXML::HVACTypeHeatPumpAirToAir, HPXML::HVACTypeHeatPumpGroundToAir].include?(heat_pump_type) || ([HPXML::HVACTypeHeatPumpMiniSplit].include?(heat_pump_type) && (args[:heat_pump_is_ducted])) + airflow_defect_ratio = args[:heat_pump_airflow_defect_ratio].get end end - if args[:heat_pump_fan_power_watts_per_cfm].is_initialized - fan_watts_per_cfm = args[:heat_pump_fan_power_watts_per_cfm].get + if args[:heat_pump_charge_defect_ratio].is_initialized + charge_defect_ratio = args[:heat_pump_charge_defect_ratio].get + end + + fraction_heat_load_served = args[:heat_pump_fraction_heat_load_served] + if args[:heating_system_type_2] != 'none' && fraction_heat_load_served + args[:heating_system_fraction_heat_load_served_2] > 1.0 + fraction_heat_load_served = 1.0 - args[:heating_system_fraction_heat_load_served_2] end hpxml.heat_pumps.add(id: 'HeatPump', @@ -4616,7 +4084,7 @@ def self.set_heat_pumps(hpxml, runner, args) compressor_type: compressor_type, cooling_shr: cooling_shr, cooling_capacity: cooling_capacity, - fraction_heat_load_served: args[:heat_pump_fraction_heat_load_served], + fraction_heat_load_served: fraction_heat_load_served, fraction_cool_load_served: args[:heat_pump_fraction_cool_load_served], backup_heating_fuel: backup_heating_fuel, backup_heating_capacity: backup_heating_capacity, @@ -4627,20 +4095,51 @@ def self.set_heat_pumps(hpxml, runner, args) cooling_efficiency_seer: cooling_efficiency_seer, heating_efficiency_cop: heating_efficiency_cop, cooling_efficiency_eer: cooling_efficiency_eer, - pump_watts_per_ton: pump_watts_per_ton, - fan_watts_per_cfm: fan_watts_per_cfm) + airflow_defect_ratio: airflow_defect_ratio, + charge_defect_ratio: charge_defect_ratio) + end + + def self.set_secondary_heating_systems(hpxml, runner, args) + heating_system_type_2 = args[:heating_system_type_2] + + return if heating_system_type_2 == 'none' + + if args[:heating_system_heating_capacity_2] != Constants.Auto + heating_capacity_2 = args[:heating_system_heating_capacity_2] + end + + if args[:heating_system_fuel_2] == HPXML::HVACTypeElectricResistance + heating_system_fuel_2 = HPXML::FuelTypeElectricity + else + heating_system_fuel_2 = args[:heating_system_fuel_2] + end + + if [HPXML::HVACTypeFurnace, HPXML::HVACTypeWallFurnace, HPXML::HVACTypeFloorFurnace, HPXML::HVACTypeBoiler].include? heating_system_type_2 + heating_efficiency_afue_2 = args[:heating_system_heating_efficiency_2] + elsif [HPXML::HVACTypeElectricResistance, HPXML::HVACTypeStove, HPXML::HVACTypePortableHeater, HPXML::HVACTypeFireplace].include? heating_system_type_2 + heating_efficiency_percent_2 = args[:heating_system_heating_efficiency_2] + end + + hpxml.heating_systems.add(id: 'SecondHeatingSystem', + heating_system_type: heating_system_type_2, + heating_system_fuel: heating_system_fuel_2, + heating_capacity: heating_capacity_2, + fraction_heat_load_served: args[:heating_system_fraction_heat_load_served_2], + heating_efficiency_afue: heating_efficiency_afue_2, + heating_efficiency_percent: heating_efficiency_percent_2) end def self.set_hvac_distribution(hpxml, runner, args) # HydronicDistribution? + hydr_idx = 0 hpxml.heating_systems.each do |heating_system| next unless [HPXML::HVACTypeBoiler].include? heating_system.heating_system_type - hpxml.hvac_distributions.add(id: 'HydronicDistribution', + hydr_idx += 1 + hpxml.hvac_distributions.add(id: "HydronicDistribution#{hydr_idx}", distribution_system_type: HPXML::HVACDistributionTypeHydronic, hydronic_type: HPXML::HydronicTypeBaseboard) heating_system.distribution_system_idref = hpxml.hvac_distributions[-1].id - break end # AirDistribution? @@ -4661,8 +4160,8 @@ def self.set_hvac_distribution(hpxml, runner, args) if [HPXML::HVACTypeHeatPumpAirToAir, HPXML::HVACTypeHeatPumpGroundToAir].include? heat_pump.heat_pump_type air_distribution_systems << heat_pump elsif [HPXML::HVACTypeHeatPumpMiniSplit].include?(heat_pump.heat_pump_type) - if args[:heat_pump_mini_split_is_ducted].is_initialized - air_distribution_systems << heat_pump if to_boolean(args[:heat_pump_mini_split_is_ducted].get) + if args[:heat_pump_is_ducted].is_initialized + air_distribution_systems << heat_pump if to_boolean(args[:heat_pump_is_ducted].get) end end end @@ -4687,13 +4186,10 @@ def self.set_hvac_distribution(hpxml, runner, args) duct_leakage_value: args[:ducts_supply_leakage_value], duct_leakage_total_or_to_outside: HPXML::DuctLeakageToOutside) - if not ([HPXML::HVACTypeEvaporativeCooler].include?(args[:cooling_system_type]) && args[:cooling_system_is_ducted]) - - hpxml.hvac_distributions[-1].duct_leakage_measurements.add(duct_type: HPXML::DuctTypeReturn, - duct_leakage_units: args[:ducts_return_leakage_units], - duct_leakage_value: args[:ducts_return_leakage_value], - duct_leakage_total_or_to_outside: HPXML::DuctLeakageToOutside) - end + hpxml.hvac_distributions[-1].duct_leakage_measurements.add(duct_type: HPXML::DuctTypeReturn, + duct_leakage_units: args[:ducts_return_leakage_units], + duct_leakage_value: args[:ducts_return_leakage_value], + duct_leakage_total_or_to_outside: HPXML::DuctLeakageToOutside) # Ducts if args[:ducts_supply_location] != Constants.Auto @@ -4725,51 +4221,23 @@ def self.set_hvac_distribution(hpxml, runner, args) end end - def self.modify_setpoint_schedule(schedule, offset_magnitude, offset_schedule) - offset_schedule.each_with_index do |direction, i| - schedule[i] += offset_magnitude * direction - end - return schedule - end - def self.set_hvac_control(hpxml, runner, args) return if (args[:heating_system_type] == 'none') && (args[:cooling_system_type] == 'none') && (args[:heat_pump_type] == 'none') - weekday_heating_setpoints = [args[:setpoint_heating_weekday_temp]] * 24 - weekend_heating_setpoints = [args[:setpoint_heating_weekend_temp]] * 24 - - weekday_cooling_setpoints = [args[:setpoint_cooling_weekday_temp]] * 24 - weekend_cooling_setpoints = [args[:setpoint_cooling_weekend_temp]] * 24 - - if args[:setpoint_heating_weekday_offset_magnitude].is_initialized && args[:setpoint_heating_weekday_schedule].is_initialized - setpoint_heating_weekday_offset_magnitude = args[:setpoint_heating_weekday_offset_magnitude].get - setpoint_heating_weekday_schedule = args[:setpoint_heating_weekday_schedule].get.split(',').map { |i| Float(i) } - weekday_heating_setpoints = modify_setpoint_schedule(weekday_heating_setpoints, setpoint_heating_weekday_offset_magnitude, setpoint_heating_weekday_schedule) - end - - if args[:setpoint_heating_weekend_offset_magnitude].is_initialized && args[:setpoint_heating_weekend_schedule].is_initialized - setpoint_heating_weekend_offset_magnitude = args[:setpoint_heating_weekend_offset_magnitude].get - setpoint_heating_weekend_schedule = args[:setpoint_heating_weekend_schedule].get.split(',').map { |i| Float(i) } - weekend_heating_setpoints = modify_setpoint_schedule(weekend_heating_setpoints, setpoint_heating_weekend_offset_magnitude, setpoint_heating_weekend_schedule) - end - - if args[:setpoint_cooling_weekday_offset_magnitude].is_initialized && args[:setpoint_cooling_weekday_schedule].is_initialized - setpoint_cooling_weekday_offset_magnitude = args[:setpoint_cooling_weekday_offset_magnitude].get - setpoint_cooling_weekday_schedule = args[:setpoint_cooling_weekday_schedule].get.split(',').map { |i| Float(i) } - weekday_cooling_setpoints = modify_setpoint_schedule(weekday_cooling_setpoints, setpoint_cooling_weekday_offset_magnitude, setpoint_cooling_weekday_schedule) + if args[:setpoint_heating_weekday] == args[:setpoint_heating_weekend] && !args[:setpoint_heating_weekday].include?(',') + heating_setpoint_temp = args[:setpoint_heating_weekday] + else + weekday_heating_setpoints = args[:setpoint_heating_weekday] + weekend_heating_setpoints = args[:setpoint_heating_weekend] end - if args[:setpoint_cooling_weekend_offset_magnitude].is_initialized && args[:setpoint_cooling_weekend_schedule].is_initialized - setpoint_cooling_weekend_offset_magnitude = args[:setpoint_cooling_weekend_offset_magnitude].get - setpoint_cooling_weekend_schedule = args[:setpoint_cooling_weekend_schedule].get.split(',').map { |i| Float(i) } - weekend_cooling_setpoints = modify_setpoint_schedule(weekend_cooling_setpoints, setpoint_cooling_weekend_offset_magnitude, setpoint_cooling_weekend_schedule) + if args[:setpoint_cooling_weekday] == args[:setpoint_cooling_weekend] && !args[:setpoint_cooling_weekday].include?(',') + cooling_setpoint_temp = args[:setpoint_cooling_weekday] + else + weekday_cooling_setpoints = args[:setpoint_cooling_weekday] + weekend_cooling_setpoints = args[:setpoint_cooling_weekend] end - weekday_heating_setpoints = weekday_heating_setpoints.join(', ') - weekend_heating_setpoints = weekend_heating_setpoints.join(', ') - weekday_cooling_setpoints = weekday_cooling_setpoints.join(', ') - weekend_cooling_setpoints = weekend_cooling_setpoints.join(', ') - ceiling_fan_quantity = nil if args[:ceiling_fan_quantity] != Constants.Auto ceiling_fan_quantity = Float(args[:ceiling_fan_quantity]) @@ -4780,6 +4248,8 @@ def self.set_hvac_control(hpxml, runner, args) end hpxml.hvac_controls.add(id: 'HVACControl', + heating_setpoint_temp: heating_setpoint_temp, + cooling_setpoint_temp: cooling_setpoint_temp, weekday_heating_setpoints: weekday_heating_setpoints, weekend_heating_setpoints: weekend_heating_setpoints, weekday_cooling_setpoints: weekday_cooling_setpoints, @@ -4790,24 +4260,20 @@ def self.set_hvac_control(hpxml, runner, args) def self.set_ventilation_fans(hpxml, runner, args) if args[:mech_vent_fan_type] != 'none' - if args[:mech_vent_fan_type].include? 'recovery ventilator' - - if args[:mech_vent_fan_type].include? 'energy' - - if args[:mech_vent_total_recovery_efficiency_type] == 'Unadjusted' - total_recovery_efficiency = args[:mech_vent_total_recovery_efficiency] - elsif args[:mech_vent_total_recovery_efficiency_type] == 'Adjusted' - total_recovery_efficiency_adjusted = args[:mech_vent_total_recovery_efficiency] - end - + if [HPXML::MechVentTypeERV].include?(args[:mech_vent_fan_type]) + if args[:mech_vent_recovery_efficiency_type] == 'Unadjusted' + total_recovery_efficiency = args[:mech_vent_total_recovery_efficiency] + sensible_recovery_efficiency = args[:mech_vent_sensible_recovery_efficiency] + elsif args[:mech_vent_recovery_efficiency_type] == 'Adjusted' + total_recovery_efficiency_adjusted = args[:mech_vent_total_recovery_efficiency] + sensible_recovery_efficiency_adjusted = args[:mech_vent_sensible_recovery_efficiency] end - - if args[:mech_vent_sensible_recovery_efficiency_type] == 'Unadjusted' + elsif [HPXML::MechVentTypeHRV].include?(args[:mech_vent_fan_type]) + if args[:mech_vent_recovery_efficiency_type] == 'Unadjusted' sensible_recovery_efficiency = args[:mech_vent_sensible_recovery_efficiency] - elsif args[:mech_vent_sensible_recovery_efficiency_type] == 'Adjusted' + elsif args[:mech_vent_recovery_efficiency_type] == 'Adjusted' sensible_recovery_efficiency_adjusted = args[:mech_vent_sensible_recovery_efficiency] end - end distribution_system_idref = nil @@ -4859,24 +4325,21 @@ def self.set_ventilation_fans(hpxml, runner, args) if args[:mech_vent_fan_type_2] != 'none' - if args[:mech_vent_fan_type_2].include? 'recovery ventilator' - - if args[:mech_vent_fan_type_2].include? 'energy' - - if args[:mech_vent_total_recovery_efficiency_type_2] == 'Unadjusted' - total_recovery_efficiency = args[:mech_vent_total_recovery_efficiency_2] - elsif args[:mech_vent_total_recovery_efficiency_type_2] == 'Adjusted' - total_recovery_efficiency_adjusted = args[:mech_vent_total_recovery_efficiency_2] - end + if [HPXML::MechVentTypeERV].include?(args[:mech_vent_fan_type_2]) + if args[:mech_vent_recovery_efficiency_type_2] == 'Unadjusted' + total_recovery_efficiency = args[:mech_vent_total_recovery_efficiency_2] + sensible_recovery_efficiency = args[:mech_vent_sensible_recovery_efficiency_2] + elsif args[:mech_vent_recovery_efficiency_type_2] == 'Adjusted' + total_recovery_efficiency_adjusted = args[:mech_vent_total_recovery_efficiency_2] + sensible_recovery_efficiency_adjusted = args[:mech_vent_sensible_recovery_efficiency_2] end - - if args[:mech_vent_sensible_recovery_efficiency_type_2] == 'Unadjusted' + elsif [HPXML::MechVentTypeHRV].include?(args[:mech_vent_fan_type_2]) + if args[:mech_vent_recovery_efficiency_type_2] == 'Unadjusted' sensible_recovery_efficiency = args[:mech_vent_sensible_recovery_efficiency_2] - elsif args[:mech_vent_sensible_recovery_efficiency_type_2] == 'Adjusted' + elsif args[:mech_vent_recovery_efficiency_type_2] == 'Adjusted' sensible_recovery_efficiency_adjusted = args[:mech_vent_sensible_recovery_efficiency_2] end - end distribution_system_idref = nil @@ -4901,25 +4364,33 @@ def self.set_ventilation_fans(hpxml, runner, args) distribution_system_idref: distribution_system_idref) end - if args[:kitchen_fans_present] + if (args[:kitchen_fans_quantity] == Constants.Auto) || (args[:kitchen_fans_quantity].to_i > 0) if args[:kitchen_fans_flow_rate].is_initialized - rated_flow_rate = args[:kitchen_fans_flow_rate].get + if args[:kitchen_fans_flow_rate].get != Constants.Auto + rated_flow_rate = args[:kitchen_fans_flow_rate].get.to_f + end end if args[:kitchen_fans_power].is_initialized - fan_power = args[:kitchen_fans_power].get + if args[:kitchen_fans_power].get != Constants.Auto + fan_power = args[:kitchen_fans_power].get.to_f + end end if args[:kitchen_fans_hours_in_operation].is_initialized - hours_in_operation = args[:kitchen_fans_hours_in_operation].get + if args[:kitchen_fans_hours_in_operation].get != Constants.Auto + hours_in_operation = args[:kitchen_fans_hours_in_operation].get.to_f + end end if args[:kitchen_fans_start_hour].is_initialized - start_hour = args[:kitchen_fans_start_hour].get + if args[:kitchen_fans_start_hour].get != Constants.Auto + start_hour = args[:kitchen_fans_start_hour].get.to_i + end end - if args[:kitchen_fans_quantity].is_initialized - quantity = args[:kitchen_fans_quantity].get + if args[:kitchen_fans_quantity] != Constants.Auto + quantity = args[:kitchen_fans_quantity].to_i end hpxml.ventilation_fans.add(id: 'KitchenRangeFan', @@ -4932,25 +4403,33 @@ def self.set_ventilation_fans(hpxml, runner, args) quantity: quantity) end - if args[:bathroom_fans_present] + if (args[:bathroom_fans_quantity] == Constants.Auto) || (args[:bathroom_fans_quantity].to_i > 0) if args[:bathroom_fans_flow_rate].is_initialized - rated_flow_rate = args[:bathroom_fans_flow_rate].get + if args[:bathroom_fans_flow_rate].get != Constants.Auto + rated_flow_rate = args[:bathroom_fans_flow_rate].get.to_f + end end if args[:bathroom_fans_power].is_initialized - fan_power = args[:bathroom_fans_power].get + if args[:bathroom_fans_power].get != Constants.Auto + fan_power = args[:bathroom_fans_power].get.to_f + end end if args[:bathroom_fans_hours_in_operation].is_initialized - hours_in_operation = args[:bathroom_fans_hours_in_operation].get + if args[:bathroom_fans_hours_in_operation].get != Constants.Auto + hours_in_operation = args[:bathroom_fans_hours_in_operation].get.to_f + end end if args[:bathroom_fans_start_hour].is_initialized - start_hour = args[:bathroom_fans_start_hour].get + if args[:bathroom_fans_start_hour].get != Constants.Auto + start_hour = args[:bathroom_fans_start_hour].get.to_i + end end - if args[:bathroom_fans_quantity].is_initialized - quantity = args[:bathroom_fans_quantity].get + if args[:bathroom_fans_quantity] != Constants.Auto + quantity = args[:bathroom_fans_quantity].to_i end hpxml.ventilation_fans.add(id: 'BathFans', @@ -4993,10 +4472,6 @@ def self.set_water_heating_systems(hpxml, runner, args) tank_volume = args[:water_heater_tank_volume] end - if args[:water_heater_heating_capacity] != Constants.Auto - heating_capacity = args[:water_heater_heating_capacity] - end - if args[:water_heater_setpoint_temperature] != Constants.Auto temperature = args[:water_heater_setpoint_temperature] end @@ -5064,7 +4539,6 @@ def self.set_water_heating_systems(hpxml, runner, args) location: location, tank_volume: tank_volume, fraction_dhw_load_served: 1.0, - heating_capacity: heating_capacity, energy_factor: energy_factor, uniform_energy_factor: uniform_energy_factor, first_hour_rating: first_hour_rating, @@ -5310,12 +4784,12 @@ def self.set_lighting(hpxml, runner, args) end def self.set_dehumidifier(hpxml, runner, args) - return unless args[:dehumidifier_present] + return if args[:dehumidifier_type] == 'none' if args[:dehumidifier_efficiency_type] == 'EnergyFactor' - energy_factor = args[:dehumidifier_efficiency_ef] + energy_factor = args[:dehumidifier_efficiency] elsif args[:dehumidifier_efficiency_type] == 'IntegratedEnergyFactor' - integrated_energy_factor = args[:dehumidifier_efficiency_ief] + integrated_energy_factor = args[:dehumidifier_efficiency] end hpxml.dehumidifiers.add(id: 'Dehumidifier', @@ -5324,31 +4798,31 @@ def self.set_dehumidifier(hpxml, runner, args) energy_factor: energy_factor, integrated_energy_factor: integrated_energy_factor, rh_setpoint: args[:dehumidifier_rh_setpoint], - fraction_served: args[:dehumidifier_fraction_dehumidification_load_served]) + fraction_served: args[:dehumidifier_fraction_dehumidification_load_served], + location: HPXML::LocationLivingSpace) end def self.set_clothes_washer(hpxml, runner, args) if args[:water_heater_type] == 'none' - args[:clothes_washer_present] = false + args[:clothes_washer_location] = 'none' end - return unless args[:clothes_washer_present] + return if args[:clothes_washer_location] == 'none' if args[:clothes_washer_rated_annual_kwh] != Constants.Auto rated_annual_kwh = args[:clothes_washer_rated_annual_kwh] + return if Float(rated_annual_kwh) == 0 end if args[:clothes_washer_location] != Constants.Auto location = args[:clothes_washer_location] end - if args[:clothes_washer_efficiency_type] == 'ModifiedEnergyFactor' - if args[:clothes_washer_efficiency_mef] != Constants.Auto - modified_energy_factor = args[:clothes_washer_efficiency_mef] - end - elsif args[:clothes_washer_efficiency_type] == 'IntegratedModifiedEnergyFactor' - if args[:clothes_washer_efficiency_imef] != Constants.Auto - integrated_modified_energy_factor = args[:clothes_washer_efficiency_imef] + if args[:clothes_washer_efficiency] != Constants.Auto + if args[:clothes_washer_efficiency_type] == 'ModifiedEnergyFactor' + modified_energy_factor = args[:clothes_washer_efficiency].to_f + elsif args[:clothes_washer_efficiency_type] == 'IntegratedModifiedEnergyFactor' + integrated_modified_energy_factor = args[:clothes_washer_efficiency].to_f end end @@ -5390,14 +4864,14 @@ def self.set_clothes_washer(hpxml, runner, args) end def self.set_clothes_dryer(hpxml, runner, args) - return unless args[:clothes_washer_present] - return unless args[:clothes_dryer_present] - - if args[:clothes_dryer_efficiency_type] == 'EnergyFactor' - energy_factor = args[:clothes_dryer_efficiency_ef] - elsif args[:clothes_dryer_efficiency_type] == 'CombinedEnergyFactor' - if args[:clothes_dryer_efficiency_cef] != Constants.Auto - combined_energy_factor = args[:clothes_dryer_efficiency_cef] + return if args[:clothes_washer_location] == 'none' + return if args[:clothes_dryer_location] == 'none' + + if args[:clothes_dryer_efficiency] != Constants.Auto + if args[:clothes_dryer_efficiency_type] == 'EnergyFactor' + energy_factor = args[:clothes_dryer_efficiency].to_f + elsif args[:clothes_dryer_efficiency_type] == 'CombinedEnergyFactor' + combined_energy_factor = args[:clothes_dryer_efficiency].to_f end end @@ -5405,10 +4879,6 @@ def self.set_clothes_dryer(hpxml, runner, args) location = args[:clothes_dryer_location] end - if args[:clothes_dryer_control_type] != Constants.Auto - control_type = args[:clothes_dryer_control_type] - end - if args[:clothes_dryer_vented_flow_rate] != Constants.Auto is_vented = false if Float(args[:clothes_dryer_vented_flow_rate]) > 0 @@ -5426,25 +4896,25 @@ def self.set_clothes_dryer(hpxml, runner, args) fuel_type: args[:clothes_dryer_fuel_type], energy_factor: energy_factor, combined_energy_factor: combined_energy_factor, - control_type: control_type, is_vented: is_vented, vented_flow_rate: vented_flow_rate, usage_multiplier: usage_multiplier) end def self.set_dishwasher(hpxml, runner, args) - return unless args[:dishwasher_present] + return if args[:dishwasher_location] == 'none' if args[:dishwasher_location] != Constants.Auto location = args[:dishwasher_location] end if args[:dishwasher_efficiency_type] == 'RatedAnnualkWh' - if args[:dishwasher_efficiency_kwh] != Constants.Auto - rated_annual_kwh = args[:dishwasher_efficiency_kwh] + if args[:dishwasher_efficiency] != Constants.Auto + rated_annual_kwh = args[:dishwasher_efficiency] + return if Float(rated_annual_kwh) == 0 end elsif args[:dishwasher_efficiency_type] == 'EnergyFactor' - energy_factor = args[:dishwasher_efficiency_ef] + energy_factor = args[:dishwasher_efficiency] end if args[:dishwasher_label_electric_rate] != Constants.Auto @@ -5484,10 +4954,11 @@ def self.set_dishwasher(hpxml, runner, args) end def self.set_refrigerator(hpxml, runner, args) - return unless args[:refrigerator_present] + return if args[:refrigerator_location] == 'none' if args[:refrigerator_rated_annual_kwh] != Constants.Auto - refrigerator_rated_annual_kwh = args[:refrigerator_rated_annual_kwh] + rated_annual_kwh = args[:refrigerator_rated_annual_kwh] + return if Float(rated_annual_kwh) == 0 end if args[:refrigerator_location] != Constants.Auto @@ -5498,22 +4969,23 @@ def self.set_refrigerator(hpxml, runner, args) usage_multiplier = args[:refrigerator_usage_multiplier] end - if args[:extra_refrigerator_present] + if args[:extra_refrigerator_location] != 'none' primary_indicator = true end hpxml.refrigerators.add(id: 'Refrigerator', location: location, - rated_annual_kwh: refrigerator_rated_annual_kwh, + rated_annual_kwh: rated_annual_kwh, primary_indicator: primary_indicator, usage_multiplier: usage_multiplier) end def self.set_extra_refrigerator(hpxml, runner, args) - return unless args[:extra_refrigerator_present] + return if args[:extra_refrigerator_location] == 'none' if args[:extra_refrigerator_rated_annual_kwh] != Constants.Auto rated_annual_kwh = args[:extra_refrigerator_rated_annual_kwh] + return if Float(rated_annual_kwh) == 0 end if args[:extra_refrigerator_location] != Constants.Auto @@ -5532,10 +5004,11 @@ def self.set_extra_refrigerator(hpxml, runner, args) end def self.set_freezer(hpxml, runner, args) - return unless args[:freezer_present] + return if args[:freezer_location] == 'none' if args[:freezer_rated_annual_kwh] != Constants.Auto rated_annual_kwh = args[:freezer_rated_annual_kwh] + return if Float(rated_annual_kwh) == 0 end if args[:freezer_location] != Constants.Auto @@ -5553,7 +5026,7 @@ def self.set_freezer(hpxml, runner, args) end def self.set_cooking_range_oven(hpxml, runner, args) - return unless args[:cooking_range_oven_present] + return if args[:cooking_range_oven_location] == 'none' if args[:cooking_range_oven_location] != Constants.Auto location = args[:cooking_range_oven_location] @@ -5602,7 +5075,7 @@ def self.set_plug_loads_television(hpxml, runner, args) kWh_per_year = args[:plug_loads_television_annual_kwh] end - usage_multiplier = args[:plug_loads_television_usage_multiplier] * args[:plug_loads_television_usage_multiplier_2] + usage_multiplier = args[:plug_loads_television_usage_multiplier] if usage_multiplier == 1.0 usage_multiplier = nil end @@ -5626,7 +5099,7 @@ def self.set_plug_loads_other(hpxml, runner, args) frac_latent = args[:plug_loads_other_frac_latent] end - usage_multiplier = args[:plug_loads_other_usage_multiplier] * args[:plug_loads_other_usage_multiplier_2] + usage_multiplier = args[:plug_loads_other_usage_multiplier] if usage_multiplier == 1.0 usage_multiplier = nil end @@ -5646,7 +5119,7 @@ def self.set_plug_loads_well_pump(hpxml, runner, args) kWh_per_year = args[:plug_loads_well_pump_annual_kwh] end - usage_multiplier = args[:plug_loads_well_pump_usage_multiplier] * args[:plug_loads_well_pump_usage_multiplier_2] + usage_multiplier = args[:plug_loads_well_pump_usage_multiplier] if usage_multiplier == 1.0 usage_multiplier = nil end @@ -5664,7 +5137,7 @@ def self.set_plug_loads_vehicle(hpxml, runner, args) kWh_per_year = args[:plug_loads_vehicle_annual_kwh] end - usage_multiplier = args[:plug_loads_vehicle_usage_multiplier] * args[:plug_loads_vehicle_usage_multiplier_2] + usage_multiplier = args[:plug_loads_vehicle_usage_multiplier] if usage_multiplier == 1.0 usage_multiplier = nil end @@ -5750,10 +5223,6 @@ def self.set_pool(hpxml, runner, args) pump_usage_multiplier = args[:pool_pump_usage_multiplier] end - if args[:pool_heater_type] != 'none' - heater_type = args[:pool_heater_type] - end - if args[:pool_heater_annual_kwh] != Constants.Auto heater_load_units = 'kWh/year' heater_load_value = args[:pool_heater_annual_kwh] @@ -5769,9 +5238,11 @@ def self.set_pool(hpxml, runner, args) end hpxml.pools.add(id: 'Pool', + type: HPXML::TypeUnknown, + pump_type: HPXML::TypeUnknown, pump_kwh_per_year: pump_kwh_per_year, pump_usage_multiplier: pump_usage_multiplier, - heater_type: heater_type, + heater_type: args[:pool_heater_type], heater_load_units: heater_load_units, heater_load_value: heater_load_value, heater_usage_multiplier: heater_usage_multiplier) @@ -5788,10 +5259,6 @@ def self.set_hot_tub(hpxml, runner, args) pump_usage_multiplier = args[:hot_tub_pump_usage_multiplier] end - if args[:hot_tub_heater_type] != 'none' - heater_type = args[:hot_tub_heater_type] - end - if args[:hot_tub_heater_annual_kwh] != Constants.Auto heater_load_units = 'kWh/year' heater_load_value = args[:hot_tub_heater_annual_kwh] @@ -5807,9 +5274,11 @@ def self.set_hot_tub(hpxml, runner, args) end hpxml.hot_tubs.add(id: 'HotTub', + type: HPXML::TypeUnknown, + pump_type: HPXML::TypeUnknown, pump_kwh_per_year: pump_kwh_per_year, pump_usage_multiplier: pump_usage_multiplier, - heater_type: heater_type, + heater_type: args[:hot_tub_heater_type], heater_load_units: heater_load_units, heater_load_value: heater_load_value, heater_usage_multiplier: heater_usage_multiplier) @@ -5827,31 +5296,7 @@ def self.get_adjacent_to(surface) st = space.spaceType.get space_type = st.standardsSpaceType.get - if ['vented crawlspace'].include? space_type - return HPXML::LocationCrawlspaceVented - elsif ['unvented crawlspace'].include? space_type - return HPXML::LocationCrawlspaceUnvented - elsif ['garage'].include? space_type - return HPXML::LocationGarage - elsif ['living space'].include? space_type - if Geometry.space_is_below_grade(space) - return HPXML::LocationBasementConditioned - else - return HPXML::LocationLivingSpace - end - elsif ['vented attic'].include? space_type - return HPXML::LocationAtticVented - elsif ['unvented attic'].include? space_type - return HPXML::LocationAtticUnvented - elsif ['unconditioned basement'].include? space_type - return HPXML::LocationBasementUnconditioned - elsif ['corridor'].include? space_type - return HPXML::LocationOtherHousingUnit - elsif ['ambient'].include? space_type - return HPXML::LocationOutside - else - fail "Unhandled SpaceType value (#{space_type}) for surface '#{surface.name}'." - end + return space_type end def self.get_surface_azimuth(surface, args) diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/measure.xml b/example_files/resources/hpxml-measures/BuildResidentialHPXML/measure.xml index e05d1cad..f90cad3b 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/measure.xml +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/measure.xml @@ -3,8 +3,8 @@ 3.0 build_residential_hpxml a13a8983-2b01-4930-8af2-42030b6e4233 - 7aa3b3de-5d4d-4fff-a48e-34d7b4893671 - 20201208T174726Z + 5225bc8e-99cf-4557-8f23-a58e028abe2a + 20210330T190902Z 2C38F48B BuildResidentialHPXML HPXML Builder @@ -259,10 +259,6 @@ false single-family detached - - manufactured home - manufactured home - single-family detached single-family detached @@ -290,7 +286,7 @@ geometry_num_floors_above_grade Geometry: Number of Floors - The number of floors above grade (in the unit if single-family attached, and in the building if apartment unit). + The number of floors above grade (in the unit if single-family detached or single-family attached, and in the building if apartment unit). Conditioned attics are included. Integer # true @@ -310,7 +306,7 @@ geometry_orientation Geometry: Orientation - The house's orientation is measured clockwise from due south when viewed from above (e.g., North=0, East=90, South=180, West=270). + The unit's orientation is measured clockwise from due south when viewed from above (e.g., North=0, East=90, South=180, West=270). Double degrees true @@ -330,7 +326,7 @@ geometry_corridor_position Geometry: Corridor Position - The position of the corridor. + The position of the corridor. Only applies to single-family attached and apartment unit units. Choice true false @@ -357,7 +353,7 @@ geometry_corridor_width Geometry: Corridor Width - The width of the corridor. + The width of the corridor. Only applies to apartment unit units. Double ft true @@ -367,7 +363,7 @@ geometry_inset_width Geometry: Inset Width - The width of the inset. + The width of the inset. Only applies to apartment unit units. Double ft true @@ -377,7 +373,7 @@ geometry_inset_depth Geometry: Inset Depth - The depth of the inset. + The depth of the inset. Only applies to apartment unit units. Double ft true @@ -387,7 +383,7 @@ geometry_inset_position Geometry: Inset Position - The position of the inset. + The position of the inset. Only applies to apartment unit units. Choice true false @@ -406,7 +402,7 @@ geometry_balcony_depth Geometry: Balcony Depth - The depth of the balcony. + The depth of the balcony. Only applies to apartment unit units. Double ft true @@ -416,7 +412,7 @@ geometry_garage_width Geometry: Garage Width - The width of the garage. Enter zero for no garage. + The width of the garage. Enter zero for no garage. Only applies to single-family detached units. Double ft true @@ -426,7 +422,7 @@ geometry_garage_depth Geometry: Garage Depth - The depth of the garage. + The depth of the garage. Only applies to single-family detached units. Double ft true @@ -436,7 +432,7 @@ geometry_garage_protrusion Geometry: Garage Protrusion - The fraction of the garage that is protruding from the living space. + The fraction of the garage that is protruding from the living space. Only applies to single-family detached units. Double frac true @@ -446,7 +442,7 @@ geometry_garage_position Geometry: Garage Position - The position of the garage. + The position of the garage. Only applies to single-family detached units. Choice true false @@ -517,10 +513,20 @@ false 0 + + geometry_rim_joist_height + Geometry: Rim Joist Height + The height of the rim joists. Only applies to basements/crawlspaces. + Double + in + true + false + 9.25 + geometry_roof_type Geometry: Roof Type - The roof type of the building. + The roof type of the building. Assumed flat for apartment unit units. Choice true false @@ -662,6 +668,15 @@ false auto + + geometry_has_flue_or_chimney + Geometry: Has Flue or Chimney + Whether there is a flue or chimney. + String + true + false + auto + geometry_level Geometry: Level @@ -709,7 +724,7 @@ geometry_building_num_units Geometry: Building Number of Units - The number of units in the building. This is required for single-family attached and apartment unit buildings. + The number of units in the building. This is required for single-family attached and apartment unit units. Integer # false @@ -718,7 +733,7 @@ geometry_building_num_bedrooms Geometry: Building Number of Bedrooms - The number of bedrooms in the building. This is required for single-family attached and apartment unit buildings with shared PV systems. + The number of bedrooms in the building. This is required for single-family attached and apartment unit units with shared PV systems. Integer # false @@ -727,7 +742,7 @@ floor_assembly_r Floor: Assembly R-value - Assembly R-value for the floor (foundation ceiling). Ignored if a slab foundation. + Assembly R-value for the floor (foundation ceiling). Ignored if the building has a slab foundation. Double h-ft^2-R/Btu true @@ -757,12 +772,12 @@ foundation_wall_insulation_distance_to_bottom Foundation: Wall Insulation Distance To Bottom - The distance from the top of the foundation wall to the bottom of the foundation wall insulation. Only applies to basements/crawlspaces. - Double + The distance from the top of the foundation wall to the bottom of the foundation wall insulation. Only applies to basements/crawlspaces. A value of 'auto' will use the same height as the foundation. + String ft true false - 0 + auto foundation_wall_assembly_r @@ -782,6 +797,16 @@ false auto + + rim_joist_assembly_r + Rim Joist: Assembly R-value + Assembly R-value for the rim joists. Only applies to basements/crawlspaces. + Double + h-ft^2-R/Btu + true + false + 23 + slab_perimeter_insulation_r Slab: Perimeter Insulation Nominal R-value @@ -902,12 +927,8 @@ Choice true false - auto + medium - - auto - auto - dark dark @@ -940,32 +961,24 @@ false 2.3 - - roof_solar_absorptance - Roof: Solar Absorptance - The solar absorptance of the roof. - String - true - false - auto - - - roof_emittance - Roof: Emittance - The emittance of the roof. - String - true - false - auto - roof_radiant_barrier Roof: Has Radiant Barrier Specifies whether the attic has a radiant barrier. - String + Boolean true false - auto + false + + + true + true + + + false + false + + roof_radiant_barrier_grade @@ -993,7 +1006,7 @@ neighbor_front_distance Neighbor: Front Distance - The minimum distance between the simulated house and the neighboring house to the front (not including eaves). A value of zero indicates no neighbors. + The minimum distance between the simulated unit and the neighboring building to the front (not including eaves). A value of zero indicates no neighbors. Double ft true @@ -1003,7 +1016,7 @@ neighbor_back_distance Neighbor: Back Distance - The minimum distance between the simulated house and the neighboring house to the back (not including eaves). A value of zero indicates no neighbors. + The minimum distance between the simulated unit and the neighboring building to the back (not including eaves). A value of zero indicates no neighbors. Double ft true @@ -1013,7 +1026,7 @@ neighbor_left_distance Neighbor: Left Distance - The minimum distance between the simulated house and the neighboring house to the left (not including eaves). A value of zero indicates no neighbors. + The minimum distance between the simulated unit and the neighboring building to the left (not including eaves). A value of zero indicates no neighbors. Double ft true @@ -1023,7 +1036,7 @@ neighbor_right_distance Neighbor: Right Distance - The minimum distance between the simulated house and the neighboring house to the right (not including eaves). A value of zero indicates no neighbors. + The minimum distance between the simulated unit and the neighboring building to the right (not including eaves). A value of zero indicates no neighbors. Double ft true @@ -1128,7 +1141,7 @@ wall_siding_type Wall: Siding Type - The siding type of the exterior walls. + The siding type of the exterior walls. Also applies to rim joists. Choice false false @@ -1162,16 +1175,12 @@ wall_color Wall: Color - The color of the exterior walls. + The color of the exterior walls. Also applies to rim joists. Choice true false - auto + medium - - auto - auto - dark dark @@ -1204,28 +1213,10 @@ false 13 - - wall_solar_absorptance - Wall: Solar Absorptance - The solar absorptance of the exterior walls. - String - true - false - auto - - - wall_emittance - Wall: Emittance - The emittance of the exterior walls. - String - true - false - auto - window_front_wwr Windows: Front Window-to-Wall Ratio - The ratio of window area to wall area for the building's front facade. Enter 0 if specifying Front Window Area instead. + The ratio of window area to wall area for the unit's front facade. Enter 0 if specifying Front Window Area instead. Double true false @@ -1234,7 +1225,7 @@ window_back_wwr Windows: Back Window-to-Wall Ratio - The ratio of window area to wall area for the building's back facade. Enter 0 if specifying Back Window Area instead. + The ratio of window area to wall area for the unit's back facade. Enter 0 if specifying Back Window Area instead. Double true false @@ -1243,7 +1234,7 @@ window_left_wwr Windows: Left Window-to-Wall Ratio - The ratio of window area to wall area for the building's left facade. Enter 0 if specifying Left Window Area instead. + The ratio of window area to wall area for the unit's left facade (when viewed from the front). Enter 0 if specifying Left Window Area instead. Double true false @@ -1252,7 +1243,7 @@ window_right_wwr Windows: Right Window-to-Wall Ratio - The ratio of window area to wall area for the building's right facade. Enter 0 if specifying Right Window Area instead. + The ratio of window area to wall area for the unit's right facade (when viewed from the front). Enter 0 if specifying Right Window Area instead. Double true false @@ -1261,7 +1252,7 @@ window_area_front Windows: Front Window Area - The amount of window area on the building's front facade. Enter 0 if specifying Front Window-to-Wall Ratio instead. + The amount of window area on the unit's front facade. Enter 0 if specifying Front Window-to-Wall Ratio instead. Double true false @@ -1270,7 +1261,7 @@ window_area_back Windows: Back Window Area - The amount of window area on the building's back facade. Enter 0 if specifying Back Window-to-Wall Ratio instead. + The amount of window area on the unit's back facade. Enter 0 if specifying Back Window-to-Wall Ratio instead. Double true false @@ -1279,7 +1270,7 @@ window_area_left Windows: Left Window Area - The amount of window area on the building's left facade. Enter 0 if specifying Left Window-to-Wall Ratio instead. + The amount of window area on the unit's left facade (when viewed from the front). Enter 0 if specifying Left Window-to-Wall Ratio instead. Double true false @@ -1288,7 +1279,7 @@ window_area_right Windows: Right Window Area - The amount of window area on the building's right facade. Enter 0 if specifying Right Window-to-Wall Ratio instead. + The amount of window area on the unit's right facade (when viewed from the front). Enter 0 if specifying Right Window-to-Wall Ratio instead. Double true false @@ -1346,6 +1337,22 @@ false false + + window_exterior_shading_winter + Windows: Winter Exterior Shading + Exterior shading multiplier for the heating season. 1.0 indicates no reduction in solar gain, 0.85 indicates 15% reduction, etc. + Double + false + false + + + window_exterior_shading_summer + Windows: Summer Exterior Shading + Exterior shading multiplier for the cooling season. 1.0 indicates no reduction in solar gain, 0.85 indicates 15% reduction, etc. + Double + false + false + overhangs_front_depth Overhangs: Front Facade Depth @@ -1421,7 +1428,7 @@ skylight_area_front Skylights: Front Roof Area - The amount of skylight area on the building's front conditioned roof facade. + The amount of skylight area on the unit's front conditioned roof facade. Double true false @@ -1430,7 +1437,7 @@ skylight_area_back Skylights: Back Roof Area - The amount of skylight area on the building's back conditioned roof facade. + The amount of skylight area on the unit's back conditioned roof facade. Double true false @@ -1439,7 +1446,7 @@ skylight_area_left Skylights: Left Roof Area - The amount of skylight area on the building's left conditioned roof facade. + The amount of skylight area on the unit's left conditioned roof facade (when viewed from the front). Double true false @@ -1448,7 +1455,7 @@ skylight_area_right Skylights: Right Roof Area - The amount of skylight area on the building's right conditioned roof facade. + The amount of skylight area on the unit's right conditioned roof facade (when viewed from the front). Double true false @@ -1536,14 +1543,31 @@ 3 - air_leakage_shelter_coefficient - Air Leakage: Shelter Coefficient - The local shelter coefficient (AIM-2 infiltration model) accounts for nearby buildings, trees, and obstructions. - String - Frac + air_leakage_shielding_of_home + Air Leakage: Shielding of Home + Presence of nearby buildings, trees, obstructions for infiltration model. + Choice true false auto + + + auto + auto + + + exposed + exposed + + + normal + normal + + + well-shielded + well-shielded + + heating_system_type @@ -1666,51 +1690,14 @@ 1 - heating_system_electric_auxiliary_energy - Heating System: Electric Auxiliary Energy - The electric auxiliary energy of the heating system. Applies to Boiler. + heating_system_airflow_defect_ratio + Heating System: Airflow Defect Ratio + The airflow defect ratio, defined as (InstalledAirflow - DesignAirflow) / DesignAirflow, of the heating system per ANSI/RESNET/ACCA Standard 310. A value of zero means no airflow defect. Applies only to Furnace. Double - kWh/yr - false - false - - - heating_system_fan_power_watts_per_cfm - Heating System: Fan Power - Blower fan power. Applies to Furnace. - Double - W/CFM - false - false - - - heating_system_fan_power_watts - Heating System: Fan Power - Blower fan power. Ignored for ElectricResistance, Furnace, and Boiler. - Double - W + Frac false false - - heating_system_has_flue_or_chimney - Heating System: Has Flue or Chimney - Whether the heating system has a flue or chimney. - Boolean - true - false - false - - - true - true - - - false - false - - - cooling_system_type Cooling System: Type @@ -1743,24 +1730,33 @@ - cooling_system_cooling_efficiency_seer - Cooling System: Rated SEER - The rated efficiency value of the central air conditioner cooling system. - Double - SEER + cooling_system_cooling_efficiency_type + Cooling System: Efficiency Type + The efficiency type of the cooling system. System types central air conditioner and mini-split use SEER. System type room air conditioner uses EER. Ignored for system type evaporative cooler. + Choice true false - 13 + SEER + + + SEER + SEER + + + EER + EER + + - cooling_system_cooling_efficiency_eer - Cooling System: Rated EER - The rated efficiency value of the room air conditioner cooling system. + cooling_system_cooling_efficiency + Cooling System: Efficiency + The rated efficiency value of the cooling system. Ignored for evaporative cooler. Double - EER + SEER or EER true false - 8.5 + 13 cooling_system_cooling_compressor_type @@ -1796,7 +1792,7 @@ cooling_system_cooling_capacity Cooling System: Cooling Capacity - The output cooling capacity of the cooling system. If using 'auto', the autosizing algorithm will use ACCA Manual J/S to set the capacity to meet its load served. Ignored for evaporative cooler. + The output cooling capacity of the cooling system. If using 'auto', the autosizing algorithm will use ACCA Manual J/S to set the capacity to meet its load served. String tons true @@ -1816,7 +1812,7 @@ cooling_system_is_ducted Cooling System: Is Ducted - Whether the cooling system is ducted or not. Only used for evaporative cooler and mini-split. + Whether the cooling system is ducted or not. Only used for mini-split and evaporative cooler. Boolean true false @@ -1833,11 +1829,20 @@ - cooling_system_fan_power_watts_per_cfm - Cooling System: Fan Power - Blower fan power. Applies to central air conditioner, evaporative cooler, and mini-split. + cooling_system_airflow_defect_ratio + Cooling System: Airflow Defect Ratio + The airflow defect ratio, defined as (InstalledAirflow - DesignAirflow) / DesignAirflow, of the cooling system per ANSI/RESNET/ACCA Standard 310. A value of zero means no airflow defect. Applies only to central air conditioner and ducted mini-split. + Double + Frac + false + false + + + cooling_system_charge_defect_ratio + Cooling System: Charge Defect Ratio + The refrigerant charge defect ratio, defined as (InstalledCharge - DesignCharge) / DesignCharge, of the cooling system per ANSI/RESNET/ACCA Standard 310. A value of zero means no refrigerant charge defect. Applies only to central air conditioner and mini-split. Double - W/CFM + Frac false false @@ -1869,44 +1874,62 @@ - heat_pump_heating_efficiency_hspf - Heat Pump: Rated Heating HSPF - The rated heating efficiency value of the air-to-air/mini-split heat pump. - Double - HSPF + heat_pump_heating_efficiency_type + Heat Pump: Heating Efficiency Type + The heating efficiency type of heat pump. System types air-to-air and mini-split use HSPF. System type ground-to-air uses COP. + Choice true false - 7.7 + HSPF + + + HSPF + HSPF + + + COP + COP + + - heat_pump_heating_efficiency_cop - Heat Pump: Rated Heating COP - The rated heating efficiency value of the ground-to-air heat pump. + heat_pump_heating_efficiency + Heat Pump: Heating Efficiency + The rated heating efficiency value of the heat pump. Double - COP + HSPF or COP true false - 3.6 + 7.7 - heat_pump_cooling_efficiency_seer - Heat Pump: Rated Cooling SEER - The rated cooling efficiency value of the air-to-air/mini-split heat pump. - Double - SEER + heat_pump_cooling_efficiency_type + Heat Pump: Cooling Efficiency Type + The cooling efficiency type of heat pump. System types air-to-air and mini-split use SEER. System type ground-to-air uses EER. + Choice true false - 13 + SEER + + + SEER + SEER + + + EER + EER + + - heat_pump_cooling_efficiency_eer - Heat Pump: Rated Cooling EER - The rated cooling efficiency value of the ground-to-air heat pump. + heat_pump_cooling_efficiency + Heat Pump: Cooling Efficiency + The rated cooling efficiency value of the heat pump. Double - EER + SEER or EER true false - 16.6 + 13 heat_pump_cooling_compressor_type @@ -1950,7 +1973,7 @@ auto - heat_pump_heating_capacity_17F + heat_pump_heating_capacity_17_f Heat Pump: Heating Capacity 17F The output heating capacity of the heat pump at 17F. Only applies to air-to-air and mini-split. String @@ -2042,16 +2065,16 @@ heat_pump_backup_heating_switchover_temp Heat Pump: Backup Heating Switchover Temperature - The temperature at which the heat pump stops operating and the backup heating system starts running. Only applies to air-to-air and mini-split. + The temperature at which the heat pump stops operating and the backup heating system starts running. Only applies to air-to-air and mini-split. If not provided, backup heating will operate as needed when heat pump capacity is insufficient. Double deg-F false false - heat_pump_mini_split_is_ducted - Heat Pump: Mini-Split Is Ducted - Whether the mini-split heat pump is ducted or not. + heat_pump_is_ducted + Heat Pump: Is Ducted + Whether the heat pump is ducted or not. Only used for mini-split. Boolean false false @@ -2067,134 +2090,174 @@ - heat_pump_pump_power_watts_per_ton - Heat Pump: Ground-to-Air Pump Power - Ground loop circulator pump power during operation of the heat pump. + heat_pump_airflow_defect_ratio + Heat Pump: Airflow Defect Ratio + The airflow defect ratio, defined as (InstalledAirflow - DesignAirflow) / DesignAirflow, of the heat pump per ANSI/RESNET/ACCA Standard 310. A value of zero means no airflow defect. Applies only to air-to-air, ducted mini-split, and ground-to-air. Double - W/ton + Frac false false - heat_pump_fan_power_watts_per_cfm - Heat Pump: Fan Power - Blower fan power. + heat_pump_charge_defect_ratio + Heat Pump: Charge Defect Ratio + The refrigerant charge defect ratio, defined as (InstalledCharge - DesignCharge) / DesignCharge, of the heat pump per ANSI/RESNET/ACCA Standard 310. A value of zero means no refrigerant charge defect. Applies to all heat pump types. Double - W/CFM + Frac false false - setpoint_heating_weekday_temp - Heating Setpoint: Weekday Temperature - Specify the weekday heating setpoint temperature. - Double - deg-F + heating_system_type_2 + Heating System 2: Type + The type of the second heating system. + Choice true false - 71 + none + + + none + none + + + WallFurnace + WallFurnace + + + FloorFurnace + FloorFurnace + + + Boiler + Boiler + + + ElectricResistance + ElectricResistance + + + Stove + Stove + + + PortableHeater + PortableHeater + + + Fireplace + Fireplace + + - setpoint_heating_weekend_temp - Heating Setpoint: Weekend Temperature - Specify the weekend heating setpoint temperature. - Double - deg-F + heating_system_fuel_2 + Heating System 2: Fuel Type + The fuel type of the second heating system. Ignored for ElectricResistance. + Choice true false - 71 + electricity + + + electricity + electricity + + + natural gas + natural gas + + + fuel oil + fuel oil + + + propane + propane + + + wood + wood + + + wood pellets + wood pellets + + + coal + coal + + - setpoint_heating_weekday_offset_magnitude - Heating Setpoint: Weekday Offset Magnitude - Specify the weekday heating offset magnitude. + heating_system_heating_efficiency_2 + Heating System 2: Rated AFUE or Percent + For Furnace/WallFurnace/FloorFurnace/Boiler second heating system, the rated AFUE value. For ElectricResistance/Stove/PortableHeater/Fireplace, the rated Percent value. Double - deg-F - false + Frac + true false + 1 - setpoint_heating_weekend_offset_magnitude - Heating Setpoint: Weekend Offset Magnitude - Specify the weekend heating offset magnitude. - Double - deg-F - false - false - - - setpoint_heating_weekday_schedule - Heating Setpoint: Weekday Schedule - Specify the 24-hour comma-separated weekday heating schedule of 0s and 1s. - String - deg-F - false - false - - - setpoint_heating_weekend_schedule - Heating Setpoint: Weekend Schedule - Specify the 24-hour comma-separated weekend heating schedule of 0s and 1s. + heating_system_heating_capacity_2 + Heating System 2: Heating Capacity + The output heating capacity of the second heating system. If using 'auto', the autosizing algorithm will use ACCA Manual J/S to set the capacity to meet its load served. String - deg-F - false - false - - - setpoint_cooling_weekday_temp - Cooling Setpoint: Weekday Temperature - Specify the weekday cooling setpoint temperature. - Double - deg-F + Btu/hr true false - 76 + auto - setpoint_cooling_weekend_temp - Cooling Setpoint: Weekend Temperature - Specify the weekend cooling setpoint temperature. + heating_system_fraction_heat_load_served_2 + Heating System 2: Fraction Heat Load Served + The heat load served fraction of the second heating system. Double - deg-F + Frac true false - 76 + 0.25 - setpoint_cooling_weekday_offset_magnitude - Cooling Setpoint: Weekday Offset Magnitude - Specify the weekday cooling offset magnitude. - Double + setpoint_heating_weekday + Heating Setpoint: Weekday Schedule + Specify the constant or 24-hour comma-separated weekday heating schedule. + String deg-F - false + true false + 71 - setpoint_cooling_weekend_offset_magnitude - Cooling Setpoint: Weekend Offset Magnitude - Specify the weekend cooling offset magnitude. - Double + setpoint_heating_weekend + Heating Setpoint: Weekend Schedule + Specify the constant or 24-hour comma-separated weekend heating schedule. + String deg-F - false + true false + 71 - setpoint_cooling_weekday_schedule + setpoint_cooling_weekday Cooling Setpoint: Weekday Schedule - Specify the 24-hour comma-separated weekday cooling schedule of 0s and 1s. + Specify the constant or 24-hour comma-separated weekday cooling schedule. String deg-F - false + true false + 76 - setpoint_cooling_weekend_schedule + setpoint_cooling_weekend Cooling Setpoint: Weekend Schedule - Specify the 24-hour comma-separated weekend cooling schedule of 0s and 1s. + Specify the constant or 24-hour comma-separated weekend cooling schedule. String deg-F - false + true false + 76 ducts_supply_leakage_units @@ -2460,151 +2523,6 @@ false auto - - heating_system_type_2 - Heating System 2: Type - The type of the second heating system. - Choice - true - false - none - - - none - none - - - WallFurnace - WallFurnace - - - FloorFurnace - FloorFurnace - - - ElectricResistance - ElectricResistance - - - Stove - Stove - - - PortableHeater - PortableHeater - - - Fireplace - Fireplace - - - - - heating_system_fuel_2 - Heating System 2: Fuel Type - The fuel type of the second heating system. Ignored for ElectricResistance. - Choice - true - false - electricity - - - electricity - electricity - - - natural gas - natural gas - - - fuel oil - fuel oil - - - propane - propane - - - wood - wood - - - wood pellets - wood pellets - - - coal - coal - - - - - heating_system_heating_efficiency_2 - Heating System 2: Rated AFUE or Percent - For Furnace/WallFurnace/FloorFurnace/Boiler second heating system, the rated AFUE value. For ElectricResistance/Stove/PortableHeater/Fireplace, the rated Percent value. - Double - Frac - true - false - 1 - - - heating_system_heating_capacity_2 - Heating System 2: Heating Capacity - The output heating capacity of the second heating system. If using 'auto', the autosizing algorithm will use ACCA Manual J/S to set the capacity to meet its load served. - String - Btu/hr - true - false - auto - - - heating_system_fraction_heat_load_served_2 - Heating System 2: Fraction Heat Load Served - The heat load served fraction of the second heating system. - Double - Frac - true - false - 0.25 - - - heating_system_electric_auxiliary_energy_2 - Heating System 2: Electric Auxiliary Energy - The electric auxiliary energy of the second heating system. - Double - kWh/yr - false - false - - - heating_system_fan_power_watts_2 - Heating System 2: Fan Power - Blower fan power. Ignored for ElectricResistance. - Double - W/CFM - false - false - - - heating_system_has_flue_or_chimney_2 - Heating System 2: Has Flue or Chimney - Whether the second heating system has a flue or chimney. - Boolean - true - false - false - - - true - true - - - false - false - - - mech_vent_fan_type Mechanical Ventilation: Fan Type @@ -2659,13 +2577,13 @@ Mechanical Ventilation: Hours In Operation The hours in operation of the mechanical ventilation. Double - hrs + hrs/day true false 24 - mech_vent_total_recovery_efficiency_type + mech_vent_recovery_efficiency_type Mechanical Ventilation: Total Recovery Efficiency Type The total recovery efficiency type of the mechanical ventilation. Choice @@ -2686,36 +2604,17 @@ mech_vent_total_recovery_efficiency Mechanical Ventilation: Total Recovery Efficiency - The Unadjusted or Adjusted total recovery efficiency of the mechanical ventilation. + The Unadjusted or Adjusted total recovery efficiency of the mechanical ventilation. Applies to energy recovery ventilator. Double Frac true false 0.48 - - mech_vent_sensible_recovery_efficiency_type - Mechanical Ventilation: Sensible Recovery Efficiency Type - The sensible recovery efficiency type of the mechanical ventilation. - Choice - true - false - Unadjusted - - - Unadjusted - Unadjusted - - - Adjusted - Adjusted - - - mech_vent_sensible_recovery_efficiency Mechanical Ventilation: Sensible Recovery Efficiency - The Unadjusted or Adjusted sensible recovery efficiency of the mechanical ventilation. + The Unadjusted or Adjusted sensible recovery efficiency of the mechanical ventilation. Applies to energy recovery ventilator and heat recovery ventilator. Double Frac true @@ -2754,7 +2653,7 @@ shared_mech_vent_preheating_fuel Shared Mechanical Ventilation: Preheating Fuel - Fuel type of the preconditioning heating equipment. + Fuel type of the preconditioning heating equipment. Only used for a shared mechanical ventilation system. Choice false false @@ -2792,7 +2691,7 @@ shared_mech_vent_preheating_efficiency Shared Mechanical Ventilation: Preheating Efficiency - Efficiency of the preconditioning heating equipment. + Efficiency of the preconditioning heating equipment. Only used for a shared mechanical ventilation system. Double COP false @@ -2810,7 +2709,7 @@ shared_mech_vent_precooling_fuel Shared Mechanical Ventilation: Precooling Fuel - Fuel type of the preconditioning cooling equipment. + Fuel type of the preconditioning cooling equipment. Only used for a shared mechanical ventilation system. Choice false false @@ -2824,7 +2723,7 @@ shared_mech_vent_precooling_efficiency Shared Mechanical Ventilation: Precooling Efficiency - Efficiency of the preconditioning cooling equipment. + Efficiency of the preconditioning cooling equipment. Only used for a shared mechanical ventilation system. Double COP false @@ -2893,13 +2792,13 @@ Mechanical Ventilation 2: Hours In Operation The hours in operation of the second mechanical ventilation. Double - hrs + hrs/day true false 24 - mech_vent_total_recovery_efficiency_type_2 + mech_vent_recovery_efficiency_type_2 Mechanical Ventilation 2: Total Recovery Efficiency Type The total recovery efficiency type of the second mechanical ventilation. Choice @@ -2920,36 +2819,17 @@ mech_vent_total_recovery_efficiency_2 Mechanical Ventilation 2: Total Recovery Efficiency - The Unadjusted or Adjusted total recovery efficiency of the second mechanical ventilation. + The Unadjusted or Adjusted total recovery efficiency of the second mechanical ventilation. Applies to energy recovery ventilator. Double Frac true false 0.48 - - mech_vent_sensible_recovery_efficiency_type_2 - Mechanical Ventilation 2: Sensible Recovery Efficiency Type - The sensible recovery efficiency type of the second mechanical ventilation. - Choice - true - false - Unadjusted - - - Unadjusted - Unadjusted - - - Adjusted - Adjusted - - - mech_vent_sensible_recovery_efficiency_2 Mechanical Ventilation 2: Sensible Recovery Efficiency - The Unadjusted or Adjusted sensible recovery efficiency of the second mechanical ventilation. + The Unadjusted or Adjusted sensible recovery efficiency of the second mechanical ventilation. Applies to energy recovery ventilator and heat recovery ventilator. Double Frac true @@ -2966,133 +2846,105 @@ false 30 - - kitchen_fans_present - Kitchen Fans: Present - Whether there are kitchen fans. - Boolean - true - false - false - - - true - true - - - false - false - - - kitchen_fans_quantity Kitchen Fans: Quantity The quantity of the kitchen fans. - Integer + String # - false + true false + auto kitchen_fans_flow_rate Kitchen Fans: Flow Rate The flow rate of the kitchen fan. - Double + String CFM false false + auto kitchen_fans_hours_in_operation Kitchen Fans: Hours In Operation The hours in operation of the kitchen fan. - Double - hrs + String + hrs/day false false + auto kitchen_fans_power Kitchen Fans: Fan Power The fan power of the kitchen fan. - Double + String W false false + auto kitchen_fans_start_hour Kitchen Fans: Start Hour The start hour of the kitchen fan. - Integer + String hr false false + auto - bathroom_fans_present - Bathroom Fans: Present - Whether there are bathroom fans. - Boolean + bathroom_fans_quantity + Bathroom Fans: Quantity + The quantity of the bathroom fans. + String + # true false - false - - - true - true - - - false - false - - - - - bathroom_fans_quantity - Bathroom Fans: Quantity - The quantity of the bathroom fans. - Integer - # - false - false + auto bathroom_fans_flow_rate Bathroom Fans: Flow Rate The flow rate of the bathroom fans. - Double + String CFM false false + auto bathroom_fans_hours_in_operation Bathroom Fans: Hours In Operation The hours in operation of the bathroom fans. - Double - hrs + String + hrs/day false false + auto bathroom_fans_power Bathroom Fans: Fan Power The fan power of the bathroom fans. - Double + String W false false + auto bathroom_fans_start_hour Bathroom Fans: Start Hour The start hour of the bathroom fans. - Integer + String hr false false + auto whole_house_fan_present @@ -3273,23 +3125,13 @@ water_heater_tank_volume Water Heater: Tank Volume - Nominal volume of water heater tank. Set to auto to have volume autosized. Only applies to storage water heater, heat pump water heater, and space-heating boiler with storage tank. + Nominal volume of water heater tank. Set to 'auto' to have volume autosized. Only applies to storage water heater, heat pump water heater, and space-heating boiler with storage tank. String gal true false auto - - water_heater_heating_capacity - Water Heater: Input Capacity - The maximum energy input rating of water heater. Set to auto to have this field autosized. Only applies to storage water heater. - String - Btu/hr - true - false - auto - water_heater_efficiency_type Water Heater: Efficiency Type @@ -3366,25 +3208,6 @@ false auto - - water_heater_has_flue_or_chimney - Water Heater: Has Flue or Chimney - Whether the water heater has a flue or chimney. - Boolean - true - false - false - - - true - true - - - false - false - - - water_heater_num_units_served Water Heater: Number of Units Served @@ -4196,25 +4019,6 @@ false auto - - dehumidifier_present - Dehumidifier: Present - Whether there is a dehumidifier. - Boolean - true - false - false - - - true - true - - - false - false - - - dehumidifier_type Dehumidifier: Type @@ -4222,8 +4026,12 @@ Choice true false - portable + none + + none + none + portable portable @@ -4241,7 +4049,7 @@ Choice true false - EnergyFactor + IntegratedEnergyFactor EnergyFactor @@ -4254,19 +4062,9 @@ - dehumidifier_efficiency_ef - Dehumidifier: Energy Factor - The Energy Factor (EF) of the dehumidifier. - Double - liters/kWh - true - false - 1.8 - - - dehumidifier_efficiency_ief - Dehumidifier: Integrated Energy Factor - The Integrated Energy Factor (IEF) of the dehumidifier. + dehumidifier_efficiency + Dehumidifier: Efficiency + The efficiency of the dehumidifier. Double liters/kWh true @@ -4303,25 +4101,6 @@ false 1 - - clothes_washer_present - Clothes Washer: Present - Whether there is a clothes washer. - Boolean - true - false - true - - - true - true - - - false - false - - - clothes_washer_location Clothes Washer: Location @@ -4335,6 +4114,10 @@ auto auto + + none + none + living space living space @@ -4372,7 +4155,7 @@ clothes_washer_efficiency_type Clothes Washer: Efficiency Type - The efficiency type of clothes washer. + The efficiency type of the clothes washer. Choice true false @@ -4389,19 +4172,9 @@ - clothes_washer_efficiency_mef - Clothes Washer: Modified Energy Factor - The Modified Energy Factor (MEF) is the capacity of the clothes container divided by the total clothes washer energy consumption per cycle, where the energy consumption is the sum of the machine electrical energy consumption, the hot water energy consumption, the energy required for removal of the remaining moisture in the wash load, standby energy, and off-mode energy consumption. - String - ft^3/kWh-cycle - true - false - auto - - - clothes_washer_efficiency_imef - Clothes Washer: Integrated Modified Energy Factor - The energy performance metric for ENERGY STAR certified residential clothes washers as of March 7, 2015. + clothes_washer_efficiency + Clothes Washer: Efficiency + The efficiency of the clothes washer. String ft^3/kWh-cyc true @@ -4477,25 +4250,6 @@ false 1 - - clothes_dryer_present - Clothes Dryer: Present - Whether there is a clothes dryer. - Boolean - true - false - true - - - true - true - - - false - false - - - clothes_dryer_location Clothes Dryer: Location @@ -4509,6 +4263,10 @@ auto auto + + none + none + living space living space @@ -4581,7 +4339,7 @@ clothes_dryer_efficiency_type Clothes Dryer: Efficiency Type - The efficiency type of clothes dryer. + The efficiency type of the clothes dryer. Choice true false @@ -4598,48 +4356,15 @@ - clothes_dryer_efficiency_ef - Clothes Dryer: Energy Factor - The energy performance metric for ENERGY STAR certified residential clothes dryers prior to September 13, 2013. The new metric is Combined Energy Factor. - Double - lb/kWh - true - false - 3.4615 - - - clothes_dryer_efficiency_cef - Clothes Dryer: Combined Energy Factor - The Combined Energy Factor (CEF) measures the pounds of clothing that can be dried per kWh (Fuel equivalent) of electricity, including energy consumed during Stand-by and Off modes. + clothes_dryer_efficiency + Clothes Dryer: Efficiency + The efficiency of the clothes dryer. String lb/kWh true false auto - - clothes_dryer_control_type - Clothes Dryer: Control Type - Type of control used by the clothes dryer. - Choice - true - false - auto - - - auto - auto - - - timer - timer - - - moisture - moisture - - - clothes_dryer_vented_flow_rate Clothes Dryer: Vented Flow Rate @@ -4659,25 +4384,6 @@ false 1 - - dishwasher_present - Dishwasher: Present - Whether there is a dishwasher. - Boolean - true - false - true - - - true - true - - - false - false - - - dishwasher_location Dishwasher: Location @@ -4691,6 +4397,10 @@ auto auto + + none + none + living space living space @@ -4745,24 +4455,15 @@ - dishwasher_efficiency_kwh - Dishwasher: Rated Annual kWh - The rated annual kWh of the dishwasher. + dishwasher_efficiency + Dishwasher: Efficiency + The efficiency of the dishwasher. String - kWh/yr + RatedAnnualkWh or EnergyFactor true false auto - - dishwasher_efficiency_ef - Dishwasher: Energy Factor - The energy factor of the dishwasher. - Double - true - false - 0.46 - dishwasher_label_electric_rate Dishwasher: Label Electric Rate @@ -4822,25 +4523,6 @@ false 1 - - refrigerator_present - Refrigerator: Present - Whether there is a refrigerator. - Boolean - true - false - true - - - true - true - - - false - false - - - refrigerator_location Refrigerator: Location @@ -4854,6 +4536,10 @@ auto auto + + none + none + living space living space @@ -4907,25 +4593,6 @@ false 1 - - extra_refrigerator_present - Extra Refrigerator: Present - Whether there is an extra refrigerator. - Boolean - true - false - false - - - true - true - - - false - false - - - extra_refrigerator_location Extra Refrigerator: Location @@ -4939,6 +4606,10 @@ auto auto + + none + none + living space living space @@ -4992,25 +4663,6 @@ false 1 - - freezer_present - Freezer: Present - Whether there is a freezer. - Boolean - true - false - false - - - true - true - - - false - false - - - freezer_location Freezer: Location @@ -5024,6 +4676,10 @@ auto auto + + none + none + living space living space @@ -5077,25 +4733,6 @@ false 1 - - cooking_range_oven_present - Cooking Range/Oven: Present - Whether there is a cooking range/oven. - Boolean - true - false - true - - - true - true - - - false - false - - - cooking_range_oven_location Cooking Range/Oven: Location @@ -5110,7 +4747,11 @@ auto - living space + none + none + + + living space living space @@ -5291,15 +4932,6 @@ false 1 - - plug_loads_television_usage_multiplier_2 - Plug Loads: Television Usage Multiplier 2 - Additional multiplier on the television energy usage that can reflect, e.g., high/low usage occupants. - Double - true - false - 1 - plug_loads_other_annual_kwh Plug Loads: Other Annual kWh @@ -5339,15 +4971,6 @@ false 1 - - plug_loads_other_usage_multiplier_2 - Plug Loads: Other Usage Multiplier 2 - Additional multiplier on the other energy usage that can reflect, e.g., high/low usage occupants. - Double - true - false - 1 - plug_loads_well_pump_present Plug Loads: Well Pump Present @@ -5384,16 +5007,7 @@ Double true false - 0 - - - plug_loads_well_pump_usage_multiplier_2 - Plug Loads: Well Pump Usage Multiplier 2 - Additional multiplier on the well pump energy usage that can reflect, e.g., high/low usage occupants. - Double - true - false - 0 + 1 plug_loads_vehicle_present @@ -5431,16 +5045,7 @@ Double true false - 0 - - - plug_loads_vehicle_usage_multiplier_2 - Plug Loads: Vehicle Usage Multiplier 2 - Additional multiplier on the electric vehicle energy usage that can reflect, e.g., high/low usage occupants. - Double - true - false - 0 + 1 fuel_loads_grill_present @@ -5871,18 +5476,6 @@ - - location.rb - rb - resource - 2951BCAF - - - constants.rb - rb - resource - EB32709E - schedules_clothes_dryer_power_consumption_dist.csv csv @@ -6652,1137 +6245,1857 @@ 64DD9D54 - schedules.rb + constants.rb rb resource - 9ED612C8 + 24396BA2 - test_rakefile.xml - xml + schedules_weekday_state_and_monthly_schedule_shift.csv + csv + resource + FFDA057E + + + schedules_weekend_state_and_monthly_schedule_shift.csv + csv + resource + 5FC694CF + + + base-misc-defaults.osw + osw test - 4D13CDAD + 12B611F8 - test_measure.xml - xml + base-atticroof-unvented-insulated-roof.osw + osw test - 5935D082 + DE7DD6D6 - geometry.rb - rb - resource - D8BA3AF2 + base-atticroof-flat.osw + osw + test + 21A1E573 - base-dhw-indirect-outside.osw + base-foundation-ambient.osw osw test - 1E89A5A9 + 95F26917 - base-hvac-boiler-gas-only.osw + base.osw osw test - 62888CD2 + 872B7814 - base-dhw-indirect-standbyloss.osw + base-appliances-none.osw osw test - CE3941C6 + 6CC4450D - base-dhw-indirect.osw + base-mechvent-cfis.osw osw test - 9E6596C8 + 4AECEF22 - base-dhw-jacket-indirect.osw + base-dhw-jacket-electric.osw osw test - E260FE10 + 739D1CA1 - base-hvac-wall-furnace-elec-only.osw + base-dhw-low-flow-fixtures.osw osw test - 012F12BD + 0AC3D575 - base-dhw-indirect-with-solar-fraction.osw + base-dhw-recirc-demand.osw osw test - DBF9672B + A745333C - base-dhw-combi-tankless-outside.osw + base-dhw-recirc-manual.osw + osw + test + 9E58737B + + + base-dhw-recirc-nocontrol.osw + osw + test + BEBEC66B + + + base-dhw-recirc-temperature.osw + osw + test + 77075E61 + + + base-dhw-recirc-timer.osw + osw + test + 9FF514A1 + + + base-dhw-solar-fraction.osw + osw + test + BAF0A302 + + + base-enclosure-infil-cfm50.osw + osw + test + 71B1038F + + + base-foundation-conditioned-basement-slab-insulation.osw + osw + test + 846D0155 + + + base-hvac-boiler-oil-only.osw + osw + test + 97A1894F + + + base-hvac-boiler-propane-only.osw + osw + test + D74AA0E6 + + + base-hvac-boiler-wood-only.osw + osw + test + 318100B0 + + + base-hvac-ducts-leakage-percent.osw + osw + test + A1FC7806 + + + base-hvac-furnace-elec-only.osw + osw + test + 2B8601DE + + + base-hvac-furnace-oil-only.osw + osw + test + D36F0338 + + + base-hvac-furnace-propane-only.osw + osw + test + 6D173FBA + + + base-hvac-furnace-wood-only.osw + osw + test + 1C1F313D + + + base-hvac-none.osw + osw + test + A3A84B24 + + + base-hvac-setpoints.osw + osw + test + 2DA8449F + + + base-mechvent-balanced.osw + osw + test + 69E99CA4 + + + base-mechvent-erv.osw + osw + test + CA316280 + + + base-mechvent-exhaust.osw + osw + test + 03079995 + + + base-mechvent-hrv.osw + osw + test + 191352A2 + + + base-mechvent-supply.osw + osw + test + 7B517272 + + + base-mechvent-erv-atre-asre.osw + osw + test + C223B026 + + + base-enclosure-windows-none.osw + osw + test + F3786428 + + + base-hvac-undersized.osw + osw + test + 88C662C7 + + + base-mechvent-hrv-asre.osw + osw + test + AAE0C658 + + + base-atticroof-vented.osw + osw + test + 891981A4 + + + base-dhw-dwhr.osw + osw + test + 6367F9AF + + + base-enclosure-beds-4.osw + osw + test + 520DA827 + + + base-hvac-air-to-air-heat-pump-2-speed.osw + osw + test + 60A9486C + + + base-hvac-central-ac-only-2-speed.osw + osw + test + CACBB8A1 + + + base-hvac-air-to-air-heat-pump-var-speed.osw + osw + test + 1EC8C788 + + + base-hvac-furnace-gas-central-ac-2-speed.osw + osw + test + 968B39A8 + + + base-hvac-central-ac-only-var-speed.osw + osw + test + CFB811A0 + + + base-hvac-evap-cooler-furnace-gas.osw + osw + test + C1EAB212 + + + base-hvac-furnace-gas-central-ac-var-speed.osw + osw + test + 1039E5BA + + + base-hvac-furnace-gas-room-ac.osw + osw + test + F1C7626C + + + base-hvac-room-ac-only.osw + osw + test + 4D2C61FB + + + extra-dhw-solar-latitude.osw + osw + test + 1E4EE9F8 + + + extra-pv-roofpitch.osw + osw + test + E969F0B5 + + + extra-auto.osw + osw + test + 54E7DD5A + + + base-hvac-boiler-elec-only.osw + osw + test + 7BC01D21 + + + base-mechvent-bath-kitchen-fans.osw + osw + test + 72C0E133 + + + base-misc-neighbor-shading.osw + osw + test + 6A6C9A52 + + + base-dhw-tank-heat-pump-outside.osw + osw + test + C1ADC1AE + + + base-dhw-tank-heat-pump-with-solar-fraction.osw + osw + test + 799C22D2 + + + base-dhw-tank-heat-pump.osw + osw + test + 5437B6ED + + + base-dhw-jacket-hpwh.osw + osw + test + FE6D0652 + + + base-dhw-jacket-gas.osw + osw + test + 1FD5A49C + + + base-dhw-solar-direct-evacuated-tube.osw + osw + test + 675F5823 + + + base-dhw-solar-direct-flat-plate.osw + osw + test + E7160193 + + + base-dhw-solar-direct-ics.osw + osw + test + 32B42CC5 + + + base-dhw-solar-indirect-flat-plate.osw + osw + test + 392C53EB + + + base-dhw-solar-thermosyphon-flat-plate.osw + osw + test + 4302EEFF + + + base-dhw-tank-heat-pump-with-solar.osw + osw + test + 007178A8 + + + base-dhw-tank-gas-outside.osw + osw + test + C7463668 + + + base-dhw-tank-gas.osw + osw + test + D45B7344 + + + base-dhw-tank-oil.osw + osw + test + 672F9BE8 + + + base-dhw-tank-wood.osw + osw + test + 24787623 + + + base-dhw-tankless-gas-with-solar.osw + osw + test + 84B4A4C0 + + + base-dhw-tankless-electric.osw + osw + test + 84F2527C + + + base-dhw-tankless-gas-with-solar-fraction.osw + osw + test + 6965710E + + + base-dhw-tankless-propane.osw + osw + test + CE69D627 + + + base-dhw-tankless-gas.osw + osw + test + 18C822D1 + + + base-hvac-room-ac-only-33percent.osw + osw + test + E687A705 + + + base-hvac-furnace-elec-central-ac-1-speed.osw + osw + test + 0A97DEB7 + + + base-enclosure-infil-natural-ach.osw + osw + test + 61DE6590 + + + extra-second-refrigerator.osw + osw + test + 30F00321 + + + base-enclosure-garage.osw + osw + test + D8551D1E + + + base-dhw-tank-coal.osw + osw + test + 5D499FEA + + + base-hvac-boiler-coal-only.osw + osw + test + 0BDAE523 + + + base-hvac-elec-resistance-only.osw + osw + test + F89A3C4D + + + base-simcontrol-timestep-10-mins.osw + osw + test + F4C822E7 + + + base-simcontrol-daylight-saving-custom.osw + osw + test + 8CC621AA + + + base-simcontrol-daylight-saving-disabled.osw + osw + test + 3E7B9355 + + + base-lighting-detailed.osw + osw + test + BB782C84 + + + base-mechvent-whole-house-fan.osw + osw + test + 85253870 + + + base-dhw-none.osw + osw + test + C8AF8A3F + + + base-enclosure-infil-ach-house-pressure.osw + osw + test + B50A8E3F + + + base-enclosure-infil-cfm-house-pressure.osw + osw + test + C4E1E5E9 + + + base-dhw-tankless-electric-outside.osw + osw + test + C582C161 + + + base-enclosure-beds-5.osw + osw + test + B19B9B41 + + + base-enclosure-beds-1.osw + osw + test + D9FD6344 + + + base-enclosure-beds-2.osw + osw + test + 23DFD916 + + + base-simcontrol-runperiod-1-month.osw + osw + test + 7100EB21 + + + extra-enclosure-garage-partially-protruded.osw + osw + test + 220B81D8 + + + base-hvac-dual-fuel-air-to-air-heat-pump-2-speed.osw + osw + test + 08522B6A + + + base-hvac-dual-fuel-air-to-air-heat-pump-var-speed.osw + osw + test + B5F3873A + + + base-appliances-coal.osw + osw + test + D94AE8A4 + + + base-appliances-gas.osw + osw + test + 393E0C12 + + + base-appliances-modified.osw + osw + test + 719E0C7E + + + base-appliances-oil.osw + osw + test + E4DB4580 + + + base-appliances-propane.osw + osw + test + C83B88A6 + + + base-appliances-wood.osw + osw + test + 728C04AF + + + base-simcontrol-calendar-year-custom.osw + osw + test + AE47E3C0 + + + base-location-AMY-2012.osw + osw + test + C4C2161A + + + base-schedules-stochastic.osw + osw + test + 4B483CF6 + + + base-schedules-user-specified.osw + osw + test + 8FE1C915 + + + base-lighting-ceiling-fans.osw + osw + test + 4CE352B0 + + + extra-schedules-random-seed.osw + osw + test + DFA1E74B + + + base-misc-usage-multiplier.osw + osw + test + 6521E15D + + + base-pv.osw + osw + test + 0F03EB74 + + + base-bldgtype-single-family-attached.osw + osw + test + E0FFAB2E + + + base-dhw-tank-elec-uef.osw + osw + test + 63C688D7 + + + base-dhw-tank-gas-uef.osw + osw + test + 114076B5 + + + base-dhw-tank-heat-pump-uef.osw + osw + test + FE80E990 + + + base-dhw-tankless-electric-uef.osw + osw + test + A5A28F94 + + + base-dhw-tankless-gas-uef.osw + osw + test + 7AD41C29 + + + base-misc-loads-large-uncommon.osw + osw + test + 8251924B + + + base-misc-loads-large-uncommon2.osw + osw + test + 81F83753 + + + base-hvac-programmable-thermostat-detailed.osw + osw + test + 5F6F1BBC + + + base-dhw-indirect-outside.osw + osw + test + D8DF265A + + + base-hvac-boiler-gas-only.osw + osw + test + 0C81E91A + + + base-dhw-indirect-standbyloss.osw + osw + test + E524874E + + + base-dhw-indirect.osw + osw + test + 64E0F009 + + + base-dhw-jacket-indirect.osw + osw + test + 62A4104B + + + base-hvac-wall-furnace-elec-only.osw osw test - 9299285B + 33B96854 - base-dhw-combi-tankless.osw + base-dhw-indirect-with-solar-fraction.osw osw test - E7FE15A0 + 202EA4C7 - base-hvac-floor-furnace-propane-only.osw + base-dhw-combi-tankless-outside.osw osw test - 6DBF6443 + C2E566CC - base-hvac-boiler-gas-central-ac-1-speed.osw + base-dhw-combi-tankless.osw osw test - 429E7B93 + 48DBDAD7 base-hvac-fireplace-wood-only.osw osw test - 78AF74BA + CA542411 base-hvac-fixed-heater-gas-only.osw osw test - 1C3264B9 + B30B088A base-hvac-portable-heater-gas-only.osw osw test - 0E161630 + DFAC6898 - base-hvac-dual-fuel-mini-split-heat-pump-ducted.osw + base-hvac-furnace-gas-only.osw osw test - F0AF579D + B77D918D - base.osw + base-hvac-evap-cooler-only.osw osw test - 155524E4 + F21B5313 - base-appliances-none.osw + base-hvac-mini-split-air-conditioner-only-ducted.osw osw test - DD39CD4B + EF143785 - base-mechvent-cfis.osw + base-hvac-mini-split-air-conditioner-only-ductless.osw osw test - A3DC2DA0 + 7E31F3FD - base-dhw-jacket-electric.osw + base-hvac-dual-fuel-air-to-air-heat-pump-1-speed.osw osw test - 517D3FA7 + 9E5061BC - base-dhw-low-flow-fixtures.osw + base-hvac-air-to-air-heat-pump-1-speed.osw osw test - 6408603D + 39BE7D4C - base-dhw-recirc-demand.osw + base-hvac-dual-fuel-air-to-air-heat-pump-1-speed-electric.osw osw test - C97AB35B + 6AADA262 - base-dhw-recirc-manual.osw + base-hvac-central-ac-only-1-speed.osw osw test - E6E11B85 + 22AC3316 - base-dhw-recirc-nocontrol.osw + base-hvac-central-ac-plus-air-to-air-heat-pump-heating.osw osw test - DFFE00DC + 2845CE01 - base-dhw-recirc-temperature.osw + base-hvac-ground-to-air-heat-pump.osw osw test - A3F98C91 + DAB61432 - base-dhw-recirc-timer.osw + base-hvac-stove-oil-only.osw osw test - E19E92F5 + F5E061BC - base-dhw-solar-fraction.osw + base-hvac-stove-wood-pellets-only.osw osw test - 46E0C710 + 3DC0233B - base-enclosure-infil-cfm50.osw + base-hvac-floor-furnace-propane-only.osw osw test - 097284B4 + FDD65D24 - base-foundation-conditioned-basement-slab-insulation.osw + base-hvac-dual-fuel-mini-split-heat-pump-ducted.osw osw test - CABCFF4F + A03310BE - base-hvac-boiler-oil-only.osw + base-hvac-mini-split-heat-pump-ducted-cooling-only.osw osw test - 61FD6C00 + 244E012B - base-hvac-boiler-propane-only.osw + base-hvac-mini-split-heat-pump-ducted-heating-only.osw osw test - 629B42C4 + 92B42402 - base-hvac-boiler-wood-only.osw + base-hvac-mini-split-heat-pump-ducted.osw osw test - 49D1FC81 + 48D9DDC4 - base-hvac-ducts-leakage-percent.osw + base-hvac-mini-split-heat-pump-ductless.osw osw test - B2A4D026 + 604D8A13 - base-hvac-furnace-elec-only.osw + base-enclosure-infil-flue.osw osw test - 21A96F3C + 11E12961 - base-hvac-furnace-gas-only.osw + extra-enclosure-windows-shading.osw osw test - 3B19ECD9 + D8AF5558 - base-hvac-furnace-oil-only.osw + base-enclosure-overhangs.osw osw test - 1A3EEAFE + 82FA5E6F - base-hvac-furnace-propane-only.osw + base-hvac-install-quality-none-furnace-gas-central-ac-1-speed.osw osw test - 06D17BA2 + 095CF531 - base-hvac-furnace-wood-only.osw + base-hvac-install-quality-airflow-defect-furnace-gas-central-ac-1-speed.osw osw test - B47E8EAA + 2C6AC846 - base-hvac-none.osw + base-hvac-install-quality-charge-defect-furnace-gas-central-ac-1-speed.osw osw test - FAEE9145 + 527ED858 - base-hvac-setpoints.osw + base-hvac-install-quality-all-air-to-air-heat-pump-1-speed.osw osw test - 89AC0A92 + 4FDA773F - base-location-baltimore-md.osw + base-hvac-install-quality-all-air-to-air-heat-pump-2-speed.osw osw test - 3F92EE9D + 3ED30513 - base-location-duluth-mn.osw + base-hvac-install-quality-all-air-to-air-heat-pump-var-speed.osw osw test - 5192EF46 + A62F6BAC - base-mechvent-balanced.osw + base-hvac-install-quality-all-furnace-gas-central-ac-1-speed.osw osw test - BFF31E84 + 852F9F87 - base-mechvent-erv.osw + base-hvac-install-quality-all-furnace-gas-central-ac-2-speed.osw osw test - 12964A12 + 21C51D72 - base-mechvent-exhaust.osw + base-hvac-install-quality-all-furnace-gas-central-ac-var-speed.osw osw test - 9AFFA4A4 + 92FDCE1B - base-mechvent-hrv.osw + base-hvac-install-quality-all-furnace-gas-only.osw osw test - 28F83581 + 23777E91 - base-mechvent-supply.osw + base-hvac-install-quality-all-mini-split-heat-pump-ducted.osw osw test - 848FB91D + 1CF6AFCE - base-mechvent-erv-atre-asre.osw + base-hvac-install-quality-all-ground-to-air-heat-pump.osw osw test - 20AB23EE + EC927E61 - base-enclosure-windows-none.osw + base-hvac-install-quality-all-mini-split-air-conditioner-only-ducted.osw osw test - 7153E1CF + 8F917B8C - base-hvac-undersized.osw + base-hvac-evap-cooler-only-ducted.osw osw test - 63FBCEA3 + 5994F769 - base-atticroof-unvented-insulated-roof.osw + base-mechvent-cfis-evap-cooler-only-ducted.osw osw test - 5B8B20A8 + 12450676 - base-mechvent-hrv-asre.osw + extra-second-heating-system-portable-heater-to-heating-system.osw osw test - 2CBBA0AF + 2D06E700 - base-enclosure-overhangs.osw + extra-second-heating-system-fireplace-to-heating-system.osw osw test - 2A9495FF + 7946CF29 - base-atticroof-vented.osw + extra-second-heating-system-boiler-to-heat-pump.osw osw test - B5EC5A8A + 37F9B669 - base-dhw-dwhr.osw + extra-second-heating-system-fireplace-to-heat-pump.osw osw test - ED8177E7 + 20E3A227 - base-enclosure-beds-4.osw + extra-second-heating-system-portable-heater-to-heat-pump.osw osw test - ACED3C4D + D7105FB4 - base-foundation-ambient.osw + base-hvac-air-to-air-heat-pump-1-speed-cooling-only.osw osw test - 8B64CEE4 + 4DBA21FC - base-foundation-vented-crawlspace.osw + base-hvac-air-to-air-heat-pump-1-speed-heating-only.osw osw test - 50CAD2CC + 36FC9ECA - base-foundation-unvented-crawlspace.osw + base-hvac-furnace-coal-only.osw osw test - 3813CB8A + 932089DD - base-hvac-air-to-air-heat-pump-2-speed.osw + base-hvac-ground-to-air-heat-pump-heating-only.osw osw test - F5BB1A9A + 07C4D44D - base-hvac-central-ac-only-2-speed.osw + base-mechvent-exhaust-rated-flow-rate.osw osw test - 42EAFB64 + 717EF4EB - base-hvac-air-to-air-heat-pump-var-speed.osw + base-hvac-ground-to-air-heat-pump-cooling-only.osw osw test - B02B6F2F + 1D9DC288 - base-hvac-furnace-gas-central-ac-2-speed.osw + base-appliances-dehumidifier-50percent.osw osw test - 5DBE5163 + B49BBB69 - base-hvac-central-ac-only-var-speed.osw + base-appliances-dehumidifier.osw osw test - 5D5480CD + D253ECF6 - base-hvac-evap-cooler-furnace-gas.osw + base-appliances-dehumidifier-ief-portable.osw osw test - C290A69D + 6462E4E4 - base-hvac-evap-cooler-only-ducted.osw + base-appliances-dehumidifier-ief-whole-home.osw osw test - 2F903986 + 39EDB3D5 - base-hvac-furnace-gas-central-ac-var-speed.osw + base-atticroof-radiant-barrier.osw osw test - 5D709D01 + B4324E77 - base-hvac-furnace-gas-room-ac.osw + base-location-dallas-tx.osw osw test - 0C4DDDB5 + B85BD324 - base-hvac-room-ac-only.osw + base-bldgtype-multifamily-shared-mechvent-preconditioning.osw osw test - 56644CAF + F8C977E6 - base-mechvent-cfis-evap-cooler-only-ducted.osw + base-bldgtype-multifamily-shared-mechvent.osw osw test - 49C7C8F6 + A560A90A - base-atticroof-flat.osw + base-bldgtype-multifamily-shared-pv.osw osw test - 15F4417C + FDBD6C60 - extra-dhw-solar-latitude.osw + base-bldgtype-multifamily-shared-water-heater.osw osw test - 987C7988 + CA57B28D - extra-pv-roofpitch.osw + base-bldgtype-multifamily.osw osw test - 723366DA + A1411E71 - extra-auto.osw + base-enclosure-2stories-garage.osw osw test - E00056BD + 008DD05C - base-hvac-boiler-elec-only.osw + base-enclosure-2stories.osw osw test - 8B9DF47C + 4C1CC75F - base-mechvent-bath-kitchen-fans.osw + base-foundation-slab.osw osw test - 762E5163 + 2CD4DF3C - base-misc-neighbor-shading.osw + base-location-miami-fl.osw osw test - 073B1191 + 0CBF1ED6 - base-dhw-tank-heat-pump-outside.osw + base-foundation-vented-crawlspace.osw osw test - 6FB84D61 + 6C3CBDC7 - base-dhw-tank-heat-pump-with-solar-fraction.osw + base-foundation-unvented-crawlspace.osw osw test - EA349FC1 + 2046BB0C - base-dhw-tank-heat-pump.osw + base-hvac-boiler-gas-central-ac-1-speed.osw osw test - E6186F44 + 4A81F4B1 - base-dhw-jacket-hpwh.osw + extra-second-heating-system-boiler-to-heating-system.osw osw test - C3E8BEF8 + 7A76D251 - base-dhw-jacket-gas.osw + base-location-baltimore-md.osw osw test - 33CB70F8 + E5B1DC04 - base-dhw-solar-direct-evacuated-tube.osw + base-location-honolulu-hi.osw osw test - C296E83B + 9BA54A07 - base-dhw-solar-direct-flat-plate.osw + base-location-phoenix-az.osw osw test - 0035DE0D + 5824D1EB - base-dhw-solar-direct-ics.osw + base-location-portland-or.osw osw test - 95B86CE5 + 1D763169 - base-dhw-solar-indirect-flat-plate.osw + base-location-helena-mt.osw osw test - 61F374CE + FAE64C35 - base-dhw-solar-thermosyphon-flat-plate.osw + extra-bldgtype-multifamily-double-exterior.osw osw test - C70E55C5 + 6D8359B3 - base-dhw-tank-heat-pump-with-solar.osw + extra-bldgtype-multifamily-double-loaded-interior.osw osw test - B7B7521E + 72D21C29 - base-dhw-tank-gas-outside.osw + extra-bldgtype-multifamily-eaves.osw osw test - C285FBED + 395FB4E9 - base-dhw-tank-gas.osw + extra-bldgtype-multifamily-single-exterior-front.osw osw test - 39BAFF80 + EBC3410A - base-dhw-tank-oil.osw + extra-bldgtype-multifamily-slab-double-loaded-interior.osw osw test - BC80CA32 + C3E13216 - base-dhw-tank-wood.osw + extra-bldgtype-multifamily-slab-left-bottom-double-loaded-interior.osw osw test - E2CD5211 + 99BA54E7 - base-dhw-tankless-gas-with-solar.osw + extra-bldgtype-multifamily-slab-left-bottom.osw osw test - 0E5344B1 + 9B70DA37 - base-dhw-tankless-electric.osw + extra-bldgtype-multifamily-slab-left-middle-double-loaded-interior.osw osw test - E132BC0E + BCE7341B - base-dhw-tankless-gas-with-solar-fraction.osw + extra-bldgtype-multifamily-slab-left-middle.osw osw test - A98CD2D3 + 6200D275 - base-dhw-tankless-propane.osw + extra-bldgtype-multifamily-slab-left-top-double-loaded-interior.osw osw test - 2FCD6B89 + 75712A87 - base-dhw-tankless-gas.osw + extra-bldgtype-multifamily-slab-left-top.osw osw test - C82641E0 + 7C6AA1F3 - base-hvac-room-ac-only-33percent.osw + extra-bldgtype-multifamily-slab-middle-bottom-double-loaded-interior.osw osw test - 8768C9F0 + A9825FB8 - base-hvac-furnace-elec-central-ac-1-speed.osw + extra-bldgtype-multifamily-slab-middle-bottom.osw osw test - 137F9ECB + 3E3B7D89 - base-enclosure-infil-natural-ach.osw + extra-bldgtype-multifamily-slab-middle-middle-double-loaded-interior.osw osw test - 63DF9CBF + CC273251 - base-foundation-unconditioned-basement.osw + extra-bldgtype-multifamily-slab-middle-middle.osw osw test - 4828D346 + 192C9FD0 - base-enclosure-2stories-garage.osw + extra-bldgtype-multifamily-slab-middle-top-double-loaded-interior.osw osw test - D0A827BE + E5B7FB4B - base-enclosure-2stories.osw + extra-bldgtype-multifamily-slab-middle-top.osw osw test - 20C4C9FE + F032E179 - base-foundation-slab.osw + extra-bldgtype-multifamily-slab-right-bottom-double-loaded-interior.osw osw test - D6B28BA1 + 6EB58B72 - extra-second-refrigerator.osw + extra-bldgtype-multifamily-slab-right-bottom.osw osw test - 7935F54F + 333EA924 - base-enclosure-garage.osw + extra-bldgtype-multifamily-slab-right-middle-double-loaded-interior.osw osw test - 44D180C7 + BB30A6F4 - base-dhw-tank-coal.osw + extra-bldgtype-multifamily-slab-right-middle.osw osw test - 6EE31FE3 + 0C581AB1 - base-hvac-boiler-coal-only.osw + extra-bldgtype-multifamily-slab-right-top-double-loaded-interior.osw osw test - 58216DA4 + D5F691DD - base-hvac-elec-resistance-only.osw + extra-bldgtype-multifamily-slab-right-top.osw osw test - E4C2DDAB + DB347EBB - base-simcontrol-timestep-10-mins.osw + extra-bldgtype-multifamily-slab.osw osw test - 2C23A8D2 + 62602D94 - base-simcontrol-daylight-saving-custom.osw + extra-bldgtype-multifamily-unvented-crawlspace-double-loaded-interior.osw osw test - E065EA5D + 9238C1F2 - base-simcontrol-daylight-saving-disabled.osw + extra-bldgtype-multifamily-unvented-crawlspace-left-bottom-double-loaded-interior.osw osw test - 7EB96166 + 6FE35F1E - extra-second-heating-system-fireplace.osw + extra-bldgtype-multifamily-unvented-crawlspace-left-bottom.osw osw test - BD3E8DF0 + 09A4A672 - extra-second-heating-system-portable-heater.osw + extra-bldgtype-multifamily-unvented-crawlspace-left-middle-double-loaded-interior.osw osw test - 1AF86B14 + 2178FC57 - base-lighting-detailed.osw + extra-bldgtype-multifamily-unvented-crawlspace-left-middle.osw osw test - A342EE4B + 0D7ACD1B - base-mechvent-whole-house-fan.osw + extra-bldgtype-multifamily-unvented-crawlspace-left-top-double-loaded-interior.osw osw test - DEE732DF + 03439A82 - base-dhw-none.osw + extra-bldgtype-multifamily-unvented-crawlspace-left-top.osw osw test - EC0FAF91 + 9CE16685 - base-enclosure-infil-flue.osw + extra-bldgtype-multifamily-unvented-crawlspace-middle-bottom-double-loaded-interior.osw osw test - 25992FCC + 1C3EA64C - base-enclosure-infil-ach-house-pressure.osw + extra-bldgtype-multifamily-unvented-crawlspace-middle-bottom.osw osw test - B484D508 + B792A997 - base-enclosure-infil-cfm-house-pressure.osw + extra-bldgtype-multifamily-unvented-crawlspace-middle-middle-double-loaded-interior.osw osw test - C2238C5F + E2446994 - base-dhw-tankless-electric-outside.osw + extra-bldgtype-multifamily-unvented-crawlspace-middle-middle.osw osw test - E9BA3D56 + 324E7BEB - base-enclosure-beds-5.osw + extra-bldgtype-multifamily-unvented-crawlspace-middle-top-double-loaded-interior.osw osw test - 99C50F57 + 51ACFA5A - base-enclosure-beds-1.osw + extra-bldgtype-multifamily-unvented-crawlspace-middle-top.osw osw test - 76DA310F + 27323C7D - base-enclosure-beds-2.osw + extra-bldgtype-multifamily-unvented-crawlspace-right-bottom-double-loaded-interior.osw osw test - B831A793 + B24B8142 - base-simcontrol-runperiod-1-month.osw + extra-bldgtype-multifamily-unvented-crawlspace-right-bottom.osw osw test - DEE43FEB + A385CDE5 - extra-enclosure-garage-partially-protruded.osw + extra-bldgtype-multifamily-unvented-crawlspace-right-middle-double-loaded-interior.osw osw test - CAA12DE0 + DCAE2D04 - base-atticroof-radiant-barrier.osw + extra-bldgtype-multifamily-unvented-crawlspace-right-middle.osw osw test - 72D99701 + 30A22953 - base-location-miami-fl.osw + extra-bldgtype-multifamily-unvented-crawlspace-right-top-double-loaded-interior.osw osw test - 3FF9CA9D + F9759B18 - base-appliances-dehumidifier.osw + extra-bldgtype-multifamily-unvented-crawlspace-right-top.osw osw test - 302D8CE2 + A767E034 - base-location-dallas-tx.osw + extra-bldgtype-multifamily-unvented-crawlspace.osw osw test - C8A3E936 + 5C292651 - base-appliances-dehumidifier-50percent.osw + extra-bldgtype-multifamily-vented-crawlspace-double-loaded-interior.osw osw test - CB76AD87 + 01F7A131 - base-foundation-unconditioned-basement-assembly-r.osw + extra-bldgtype-multifamily-vented-crawlspace-left-bottom-double-loaded-interior.osw osw test - 493D6DBD + F89C7DBF - base-foundation-unconditioned-basement-wall-insulation.osw + extra-bldgtype-multifamily-vented-crawlspace-left-bottom.osw osw test - 03687155 + 5E1B37BC - base-hvac-dual-fuel-air-to-air-heat-pump-2-speed.osw + extra-bldgtype-multifamily-vented-crawlspace-left-middle-double-loaded-interior.osw osw test - 1965EA1F + 2C3A4B58 - base-hvac-dual-fuel-air-to-air-heat-pump-var-speed.osw + extra-bldgtype-multifamily-vented-crawlspace-left-middle.osw osw test - 1206BCA0 + 939E9264 - base-appliances-coal.osw + extra-bldgtype-multifamily-vented-crawlspace-left-top-double-loaded-interior.osw osw test - 29461AFF + 0029D682 - base-appliances-gas.osw + extra-bldgtype-multifamily-vented-crawlspace-left-top.osw osw test - EB100678 + BA3844D4 - base-appliances-modified.osw + extra-bldgtype-multifamily-vented-crawlspace-middle-bottom-double-loaded-interior.osw osw test - 3ED546F1 + CAD782C2 - base-appliances-oil.osw + extra-bldgtype-multifamily-vented-crawlspace-middle-bottom.osw osw test - 5CF5A14B + 911C6DF5 - base-appliances-propane.osw + extra-bldgtype-multifamily-vented-crawlspace-middle-middle-double-loaded-interior.osw osw test - CA2AFC29 + 844C218B - base-appliances-wood.osw + extra-bldgtype-multifamily-vented-crawlspace-middle-middle.osw osw test - F6B45DAC + 95C2069C - base-simcontrol-calendar-year-custom.osw + extra-bldgtype-multifamily-vented-crawlspace-middle-top-double-loaded-interior.osw osw test - B0D7ABE6 + 6BC74A9D - base-location-AMY-2012.osw + extra-bldgtype-multifamily-vented-crawlspace-middle-top.osw osw test - 31FADCAA + C1AC4FEA - base-schedules-stochastic.osw + extra-bldgtype-multifamily-vented-crawlspace-right-bottom-double-loaded-interior.osw osw test - DF17F238 + E995F275 - base-schedules-user-specified.osw + extra-bldgtype-multifamily-vented-crawlspace-right-bottom.osw osw test - 1B1FE4E1 + 517BCBEE - extra-vacancy-6-months.osw + extra-bldgtype-multifamily-vented-crawlspace-right-middle-double-loaded-interior.osw osw test - 63C3D539 + B684ED49 - base-lighting-ceiling-fans.osw + extra-bldgtype-multifamily-vented-crawlspace-right-middle.osw osw test - 6DA267C2 + 7EF3F78C - base-hvac-evap-cooler-only.osw + extra-bldgtype-multifamily-vented-crawlspace-right-top-double-loaded-interior.osw osw test - 41B5D34C + 8706DCEC - base-hvac-mini-split-air-conditioner-only-ducted.osw + extra-bldgtype-multifamily-vented-crawlspace-right-top.osw osw test - 533A2E15 + 47ACC448 - base-hvac-mini-split-air-conditioner-only-ductless.osw + extra-bldgtype-multifamily-vented-crawlspace.osw osw test - BC77F924 + 6647C7F6 - base-hvac-dual-fuel-air-to-air-heat-pump-1-speed.osw + extra-bldgtype-single-family-attached-double-exterior.osw osw test - D938CFE5 + 67CF586A - base-hvac-air-to-air-heat-pump-1-speed.osw + extra-bldgtype-single-family-attached-double-loaded-interior.osw osw test - 28D9662C + 74E745D4 - base-hvac-dual-fuel-air-to-air-heat-pump-1-speed-electric.osw + extra-bldgtype-single-family-attached-single-exterior-front.osw osw test - 38177272 + EF071D8B - base-hvac-central-ac-only-1-speed.osw + extra-bldgtype-single-family-attached-slab-middle.osw osw test - 5D103DE7 + 595D185B - base-hvac-central-ac-plus-air-to-air-heat-pump-heating.osw + extra-bldgtype-single-family-attached-slab-right.osw osw test - A948DD1C + D5D2C2FE - base-hvac-mini-split-heat-pump-ducted-cooling-only.osw + extra-bldgtype-single-family-attached-slab.osw osw test - D19C01A6 + C5CCC1A7 - base-hvac-ground-to-air-heat-pump.osw + extra-bldgtype-single-family-attached-unconditioned-basement-middle.osw osw test - 3A354092 + A2417C77 - base-hvac-mini-split-heat-pump-ducted-heating-only.osw + extra-bldgtype-single-family-attached-unconditioned-basement-right.osw osw test - 556939DA + 258A322E - base-hvac-mini-split-heat-pump-ducted.osw + extra-bldgtype-single-family-attached-unconditioned-basement.osw osw test - C131ACD3 + E4D6B5CB - base-hvac-mini-split-heat-pump-ductless.osw + extra-bldgtype-single-family-attached-unvented-crawlspace-middle.osw osw test - 8DBE3E53 + 6EDCF60B - base-hvac-stove-oil-only.osw + extra-bldgtype-single-family-attached-unvented-crawlspace-right.osw osw test - 02C8C1CD + 9713678B - base-hvac-stove-wood-pellets-only.osw + extra-bldgtype-single-family-attached-unvented-crawlspace.osw osw test - 9684023E + 9039F251 - extra-schedules-random-seed.osw + extra-bldgtype-single-family-attached-vented-crawlspace-middle.osw osw test - 4D67B18A + 2C7EDB85 - extra-hvac-programmable-thermostat.osw + extra-bldgtype-single-family-attached-vented-crawlspace-right.osw osw test - AAE42D2C + BDC8701A - extra-plug-loads-additional-multipliers.osw + extra-bldgtype-single-family-attached-vented-crawlspace.osw osw test - 6B2C62FA + 7A59D6FF - base-appliances-dehumidifier-ief-portable.osw + extra-enclosure-atticroof-conditioned-eaves-gable.osw osw test - 916B82AC + 7C2504F3 - base-appliances-dehumidifier-ief-whole-home.osw + extra-enclosure-atticroof-conditioned-eaves-hip.osw osw test - 847D5567 + 4FC3E05A - base-misc-defaults.osw + extra-enclosure-garage-atticroof-conditioned.osw osw test - 96EC0815 + 138ACF05 - base-misc-usage-multiplier.osw + extra-bldgtype-single-family-attached-atticroof-conditioned-eaves-gable.osw osw test - 93BB5F73 + 89905BB8 - base-pv.osw + extra-bldgtype-single-family-attached-atticroof-conditioned-eaves-hip.osw osw test - 11672F8C - - - - OpenStudio - 2.9.0 - 2.9.0 - - measure.rb - rb - script - 2F7DF2BC + F330AB7C - base-misc-loads-large-uncommon.osw + extra-zero-extra-refrigerator-kwh.osw osw test - 4616C7CB + 56C13F76 - base-misc-loads-large-uncommon2.osw + extra-zero-freezer-kwh.osw osw test - E93C4A01 + EA0E7359 - build_residential_hpxml_test.rb - rb + extra-zero-refrigerator-kwh.osw + osw test - E900963F + CB2E7884 - base-bldgtype-multifamily-shared-mechvent-preconditioning.osw + extra-zero-clothes-washer-kwh.osw osw test - A061E175 + AA5EA334 - base-bldgtype-multifamily-shared-mechvent.osw + extra-zero-dishwasher-kwh.osw osw test - 01E627F9 + 86297D45 - base-bldgtype-multifamily-shared-pv.osw + base-misc-shielding-of-home.osw osw test - 26B150D2 + 49A35B32 - base-bldgtype-multifamily-shared-water-heater.osw + base-foundation-unconditioned-basement-assembly-r.osw osw test - C6D8DB9C + DC5F242A - base-bldgtype-multifamily.osw + base-foundation-unconditioned-basement.osw osw test - AA0852F0 + 1A12738F - base-bldgtype-single-family-attached.osw + base-location-duluth-mn.osw osw test - 77081C8C + F4D6516B - base-dhw-tank-elec-uef.osw + base-foundation-unconditioned-basement-wall-insulation.osw osw test - 1C39C5AE + D134DED5 - base-dhw-tank-gas-uef.osw - osw + test_measure.xml + xml test - 70CDC766 + F33D54A2 - base-dhw-tank-heat-pump-uef.osw - osw + test_rakefile.xml + xml test - 1E503FB5 + F8893C28 - base-dhw-tankless-electric-uef.osw + geometry.rb + rb + resource + 516E9B57 + + + base-schedules-stochastic-vacant.osw osw test - 8BDD0815 + BB9BD473 - base-dhw-tankless-gas-uef.osw - osw + schedules.rb + rb + resource + 0A47857C + + + + OpenStudio + 2.9.0 + 2.9.0 + + measure.rb + rb + script + BE274538 + + + build_residential_hpxml_test.rb + rb test - 063501DA + C358708F diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/resources/constants.rb b/example_files/resources/hpxml-measures/BuildResidentialHPXML/resources/constants.rb index 30fd680f..19373f5d 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/resources/constants.rb +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/resources/constants.rb @@ -49,14 +49,6 @@ def self.NumHoursInYear(is_leap_year = false) return num_hours_in_year.to_f end - def self.NumApplyUpgradeOptions - return 25 - end - - def self.NumApplyUpgradesCostsPerOption - return 2 - end - def self.PeakFlowRate return 500 # gal/min end diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/resources/geometry.rb b/example_files/resources/hpxml-measures/BuildResidentialHPXML/resources/geometry.rb index f2b29fda..e41c8cc7 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/resources/geometry.rb +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/resources/geometry.rb @@ -21,6 +21,39 @@ def self.get_abs_azimuth(azimuth_type, relative_azimuth, building_orientation, o return azimuth end + def self.add_rim_joist(model, polygon, space, rim_joist_height, z) + if rim_joist_height > 0 + # make polygons + p = OpenStudio::Point3dVector.new + polygon.each do |point| + p << OpenStudio::Point3d.new(point.x, point.y, z) + end + rim_joist_polygon = p + + # make space + rim_joist_space = OpenStudio::Model::Space::fromFloorPrint(rim_joist_polygon, rim_joist_height, model) + rim_joist_space = rim_joist_space.get + + space.surfaces.each do |surface| + next if surface.surfaceType.downcase != 'roofceiling' + + surface.remove + end + + rim_joist_space.surfaces.each do |surface| + next if surface.surfaceType.downcase != 'floor' + + surface.remove + end + + rim_joist_space.surfaces.each do |surface| + surface.setSpace(space) + end + + rim_joist_space.remove + end + end + def self.create_single_family_detached(runner:, model:, geometry_cfa:, @@ -33,6 +66,7 @@ def self.create_single_family_detached(runner:, geometry_garage_position:, geometry_foundation_type:, geometry_foundation_height:, + geometry_rim_joist_height:, geometry_attic_type:, geometry_roof_type:, geometry_roof_pitch:, @@ -47,6 +81,7 @@ def self.create_single_family_detached(runner:, garage_position = geometry_garage_position foundation_type = geometry_foundation_type foundation_height = geometry_foundation_height + rim_joist_height = geometry_rim_joist_height attic_type = geometry_attic_type roof_type = geometry_roof_type roof_pitch = geometry_roof_pitch @@ -79,6 +114,7 @@ def self.create_single_family_detached(runner:, garage_width = UnitConversions.convert(garage_width, 'ft', 'm') garage_depth = UnitConversions.convert(garage_depth, 'ft', 'm') foundation_height = UnitConversions.convert(foundation_height, 'ft', 'm') + rim_joist_height = UnitConversions.convert(rim_joist_height, 'ft', 'm') garage_area = garage_width * garage_depth has_garage = false @@ -126,12 +162,9 @@ def self.create_single_family_detached(runner:, return false end - # starting spaces - runner.registerInitialCondition("The building started with #{model.getSpaces.size} spaces.") - # create living zone living_zone = OpenStudio::Model::ThermalZone.new(model) - living_zone.setName('living zone') + living_zone.setName(HPXML::LocationLivingSpace) foundation_offset = 0.0 if foundation_type == HPXML::FoundationTypeAmbient @@ -142,13 +175,14 @@ def self.create_single_family_detached(runner:, foundation_polygon_with_wrong_zs = nil for floor in (0..num_floors - 1) - z = wall_height * floor + foundation_offset + z = wall_height * floor + foundation_offset + rim_joist_height - if has_garage && (z == foundation_offset) # first floor and has garage + if has_garage && (z == foundation_offset + rim_joist_height) # first floor and has garage # create garage zone + garage_space_name = HPXML::LocationGarage garage_zone = OpenStudio::Model::ThermalZone.new(model) - garage_zone.setName('garage zone') + garage_zone.setName(garage_space_name) # make points and polygons if garage_position == 'Right' @@ -168,12 +202,10 @@ def self.create_single_family_detached(runner:, # make space garage_space = OpenStudio::Model::Space::fromFloorPrint(garage_polygon, wall_height, model) garage_space = garage_space.get - garage_space_name = 'garage space' garage_space.setName(garage_space_name) garage_space_type = OpenStudio::Model::SpaceType.new(model) - garage_space_type.setStandardsSpaceType('garage') + garage_space_type.setStandardsSpaceType(garage_space_name) garage_space.setSpaceType(garage_space_type) - runner.registerInfo("Set #{garage_space_name}.") # set this to the garage zone garage_space.setThermalZone(garage_zone) @@ -212,14 +244,13 @@ def self.create_single_family_detached(runner:, end end foundation_polygon_with_wrong_zs = living_polygon - else # first floor without garage or above first floor if has_garage - garage_se_point = OpenStudio::Point3d.new(garage_se_point.x, garage_se_point.y, wall_height * floor + foundation_offset) - garage_sw_point = OpenStudio::Point3d.new(garage_sw_point.x, garage_sw_point.y, wall_height * floor + foundation_offset) - garage_nw_point = OpenStudio::Point3d.new(garage_nw_point.x, garage_nw_point.y, wall_height * floor + foundation_offset) - garage_ne_point = OpenStudio::Point3d.new(garage_ne_point.x, garage_ne_point.y, wall_height * floor + foundation_offset) + garage_se_point = OpenStudio::Point3d.new(garage_se_point.x, garage_se_point.y, z) + garage_sw_point = OpenStudio::Point3d.new(garage_sw_point.x, garage_sw_point.y, z) + garage_nw_point = OpenStudio::Point3d.new(garage_nw_point.x, garage_nw_point.y, z) + garage_ne_point = OpenStudio::Point3d.new(garage_ne_point.x, garage_ne_point.y, z) if garage_position == 'Right' sw_point = OpenStudio::Point3d.new(0, 0, z) nw_point = OpenStudio::Point3d.new(0, width, z) @@ -251,7 +282,7 @@ def self.create_single_family_detached(runner:, ne_point = OpenStudio::Point3d.new(length, width, z) se_point = OpenStudio::Point3d.new(length, 0, z) living_polygon = make_polygon(sw_point, nw_point, ne_point, se_point) - if z == foundation_offset + if z == foundation_offset + rim_joist_height foundation_polygon_with_wrong_zs = living_polygon end @@ -263,7 +294,7 @@ def self.create_single_family_detached(runner:, living_space = OpenStudio::Model::Space::fromFloorPrint(living_polygon, wall_height, model) living_space = living_space.get if floor > 0 - living_space_name = "living space|story #{floor + 1}" + living_space_name = "#{HPXML::LocationLivingSpace}|story #{floor + 1}" else living_space_name = HPXML::LocationLivingSpace end @@ -271,7 +302,6 @@ def self.create_single_family_detached(runner:, living_space_type = OpenStudio::Model::SpaceType.new(model) living_space_type.setStandardsSpaceType(HPXML::LocationLivingSpace) living_space.setSpaceType(living_space_type) - runner.registerInfo("Set #{living_space_name}.") # set these to the living zone living_space.setThermalZone(living_zone) @@ -281,7 +311,6 @@ def self.create_single_family_detached(runner:, m[1, 3] = 0 m[2, 3] = z living_space.changeTransformation(OpenStudio::Transformation.new(m)) - end # Attic @@ -370,23 +399,21 @@ def self.create_single_family_detached(runner:, if (attic_type == HPXML::AtticTypeVented) || (attic_type == HPXML::AtticTypeUnvented) # create attic zone attic_zone = OpenStudio::Model::ThermalZone.new(model) - attic_zone.setName("#{attic_type} zone") attic_space.setThermalZone(attic_zone) if attic_type == HPXML::AtticTypeVented - attic_space_type_name = 'vented attic' - else - attic_space_type_name = 'unvented attic' + attic_space_name = HPXML::LocationAtticVented + elsif attic_type == HPXML::AtticTypeUnvented + attic_space_name = HPXML::LocationAtticUnvented end + attic_zone.setName(attic_space_name) elsif attic_type == HPXML::AtticTypeConditioned attic_space.setThermalZone(living_zone) - attic_space_type_name = 'living space' + attic_space_name = HPXML::LocationLivingSpace end - attic_space_name = "#{attic_type} space" attic_space.setName(attic_space_name) attic_space_type = OpenStudio::Model::SpaceType.new(model) - attic_space_type.setStandardsSpaceType(attic_space_type_name) + attic_space_type.setStandardsSpaceType(attic_space_name) attic_space.setSpaceType(attic_space_type) - runner.registerInfo("Set #{attic_space_name}.") m = initialize_transformation_matrix(OpenStudio::Matrix.new(4, 4, 0)) m[0, 3] = 0 @@ -403,8 +430,6 @@ def self.create_single_family_detached(runner:, # create foundation zone foundation_zone = OpenStudio::Model::ThermalZone.new(model) - foundation_zone_name = "#{foundation_type} zone" - foundation_zone.setName(foundation_zone_name) # make polygons p = OpenStudio::Point3dVector.new @@ -417,22 +442,21 @@ def self.create_single_family_detached(runner:, foundation_space = OpenStudio::Model::Space::fromFloorPrint(foundation_polygon, foundation_height, model) foundation_space = foundation_space.get if foundation_type == HPXML::FoundationTypeCrawlspaceVented - foundation_space_type_name = 'vented crawlspace' + foundation_space_name = HPXML::LocationCrawlspaceVented elsif foundation_type == HPXML::FoundationTypeCrawlspaceUnvented - foundation_space_type_name = 'unvented crawlspace' + foundation_space_name = HPXML::LocationCrawlspaceUnvented elsif foundation_type == HPXML::FoundationTypeBasementUnconditioned - foundation_space_type_name = 'unconditioned basement' + foundation_space_name = HPXML::LocationBasementUnconditioned elsif foundation_type == HPXML::FoundationTypeBasementConditioned - foundation_space_type_name = 'living space' + foundation_space_name = HPXML::LocationBasementConditioned elsif foundation_type == HPXML::FoundationTypeAmbient - foundation_space_type_name = 'ambient' + foundation_space_name = HPXML::LocationOutside end - foundation_space_name = "#{foundation_type} space" + foundation_zone.setName(foundation_space_name) foundation_space.setName(foundation_space_name) foundation_space_type = OpenStudio::Model::SpaceType.new(model) - foundation_space_type.setStandardsSpaceType(foundation_space_type_name) + foundation_space_type.setStandardsSpaceType(foundation_space_name) foundation_space.setSpaceType(foundation_space_type) - runner.registerInfo("Set #{foundation_space_name}.") # set these to the foundation zone foundation_space.setThermalZone(foundation_zone) @@ -456,6 +480,8 @@ def self.create_single_family_detached(runner:, m[2, 3] = z foundation_space.changeTransformation(OpenStudio::Transformation.new(m)) + # Rim Joist + add_rim_joist(model, foundation_polygon_with_wrong_zs, foundation_space, rim_joist_height, foundation_height) end # put all of the spaces in the model into a vector @@ -514,10 +540,10 @@ def self.create_single_family_detached(runner:, se_point = OpenStudio::Point3d.new(se_point.x, se_point.y, se_point.z - living_space.zOrigin) end else - nw_point = OpenStudio::Point3d.new(nw_point.x, nw_point.y, num_floors * nw_point.z) - ne_point = OpenStudio::Point3d.new(ne_point.x, ne_point.y, num_floors * ne_point.z) - sw_point = OpenStudio::Point3d.new(sw_point.x, sw_point.y, num_floors * sw_point.z) - se_point = OpenStudio::Point3d.new(se_point.x, se_point.y, num_floors * se_point.z) + nw_point = OpenStudio::Point3d.new(nw_point.x, nw_point.y, num_floors * nw_point.z + rim_joist_height) + ne_point = OpenStudio::Point3d.new(ne_point.x, ne_point.y, num_floors * ne_point.z + rim_joist_height) + sw_point = OpenStudio::Point3d.new(sw_point.x, sw_point.y, num_floors * sw_point.z + rim_joist_height) + se_point = OpenStudio::Point3d.new(se_point.x, se_point.y, num_floors * se_point.z + rim_joist_height) end garage_attic_height = (ne_point.x - nw_point.x) / 2 * roof_pitch @@ -538,8 +564,8 @@ def self.create_single_family_detached(runner:, roof_s_point = OpenStudio::Point3d.new((sw_point.x + se_point.x) / 2, sw_point.y, garage_attic_height + wall_height) end else - roof_n_point = OpenStudio::Point3d.new((nw_point.x + ne_point.x) / 2, nw_point.y + garage_attic_height / roof_pitch, num_floors * wall_height + garage_attic_height) - roof_s_point = OpenStudio::Point3d.new((sw_point.x + se_point.x) / 2, sw_point.y, num_floors * wall_height + garage_attic_height) + roof_n_point = OpenStudio::Point3d.new((nw_point.x + ne_point.x) / 2, nw_point.y + garage_attic_height / roof_pitch, num_floors * wall_height + garage_attic_height + rim_joist_height) + roof_s_point = OpenStudio::Point3d.new((sw_point.x + se_point.x) / 2, sw_point.y, num_floors * wall_height + garage_attic_height + rim_joist_height) end polygon_w_roof = make_polygon(nw_point, sw_point, roof_s_point, roof_n_point) @@ -560,31 +586,29 @@ def self.create_single_family_detached(runner:, wall_s.setOutsideBoundaryCondition('Outdoors') garage_attic_space = OpenStudio::Model::Space.new(model) - garage_attic_space_name = 'garage attic space' - garage_attic_space.setName(garage_attic_space_name) deck_w.setSpace(garage_attic_space) deck_e.setSpace(garage_attic_space) wall_n.setSpace(garage_attic_space) wall_s.setSpace(garage_attic_space) if attic_type == HPXML::AtticTypeConditioned - garage_attic_space_type_name = 'living space' + garage_attic_space_name = attic_space_name garage_attic_space.setThermalZone(living_zone) else if num_floors > 1 - garage_attic_space_type_name = attic_space_type_name + garage_attic_space_name = attic_space_name garage_attic_space.setThermalZone(attic_zone) else - garage_attic_space_type_name = 'garage' + garage_attic_space_name = garage_space_name garage_attic_space.setThermalZone(garage_zone) end end surface.createAdjacentSurface(garage_attic_space) # garage attic floor + garage_attic_space.setName(garage_attic_space_name) garage_attic_space_type = OpenStudio::Model::SpaceType.new(model) - garage_attic_space_type.setStandardsSpaceType(garage_attic_space_type_name) + garage_attic_space_type.setStandardsSpaceType(garage_attic_space_name) garage_attic_space.setSpaceType(garage_attic_space_type) - runner.registerInfo("Set #{garage_attic_space_name}.") # put all of the spaces in the model into a vector spaces = OpenStudio::Model::SpaceVector.new @@ -620,15 +644,45 @@ def self.create_single_family_detached(runner:, garage_attic_space.remove + # remove other unused surfaces + # TODO: remove this once geometry methods are fixed in openstudio 3.x + attic_space.surfaces.each do |surface1| + next if surface1.surfaceType != 'RoofCeiling' + + attic_space.surfaces.each do |surface2| + next if surface2.surfaceType != 'RoofCeiling' + next if surface1 == surface2 + + if has_same_vertices(surface1, surface2) + surface1.remove + surface2.remove + end + end + end + break end end + garage_spaces = get_garage_spaces(model.getSpaces) + # set foundation outside boundary condition to Kiva "foundation" model.getSurfaces.each do |surface| - next if surface.outsideBoundaryCondition.downcase != 'ground' + if surface.outsideBoundaryCondition.downcase == 'ground' + surface.setOutsideBoundaryCondition('Foundation') + elsif (UnitConversions.convert(rim_joist_height, 'm', 'ft') - get_surface_height(surface)).abs < 0.001 + next if surface.surfaceType.downcase != 'wall' - surface.setOutsideBoundaryCondition('Foundation') + garage_spaces.each do |garage_space| + garage_space.surfaces.each do |garage_surface| + next if garage_surface.surfaceType.downcase != 'floor' + + if get_walls_connected_to_floor([surface], garage_surface, false).include? surface + surface.setOutsideBoundaryCondition('Foundation') + end + end + end + end end # set foundation walls adjacent to garage to adiabatic @@ -639,7 +693,7 @@ def self.create_single_family_detached(runner:, foundation_walls << surface end - garage_spaces = get_garage_spaces(model.getSpaces) + garage_spaces.each do |garage_space| garage_space.surfaces.each do |surface| next if surface.surfaceType.downcase != 'floor' @@ -654,6 +708,15 @@ def self.create_single_family_detached(runner:, return true end + def self.has_same_vertices(surface1, surface2) + if getSurfaceXValues([surface1]) == getSurfaceXValues([surface2]) && + getSurfaceYValues([surface1]) == getSurfaceYValues([surface2]) && + getSurfaceZValues([surface1]) == getSurfaceZValues([surface2]) + return true + end + return false + end + def self.make_one_space_from_multiple_spaces(model, spaces) new_space = OpenStudio::Model::Space.new(model) spaces.each do |space| @@ -912,12 +975,12 @@ def self.create_windows_and_skylights(runner:, # If the total window area for the facade is less than the minimum window area, # set all of the window area to the surface with the greatest available wall area on any facade surface = surface_avail_area.max_by { |k, v| v }[0] - next if Geometry.get_facade_for_surface(surface) == facade + next if get_facade_for_surface(surface) == facade next if surface_avail_area[surface] == facade_avail_area[facade] surface_window_area[surface] += target_facade_areas[facade] - new_facade = Geometry.get_facade_for_surface(surface) + new_facade = get_facade_for_surface(surface) area_moved = target_facade_areas[facade] target_facade_areas[facade] = 0 target_facade_areas[new_facade] = surface_window_area[surface] @@ -1052,8 +1115,6 @@ def self.create_windows_and_skylights(runner:, sub_surface.setName("#{surface.name} - Skylight") sub_surface.setSurface(surface) - runner.registerInfo("Added a skylight, totaling #{skylight_area.round(1)} ft^2, to #{surface.name}.") - if not constructions[facade].nil? sub_surface.setConstruction(constructions[facade]) end @@ -1140,7 +1201,7 @@ def self.add_windows_to_wall(surface, window_area, window_gap_y, window_gap_x, w add_window_to_wall(surface, window_width, window_height, group_cx, group_cy, win_num, facade, constructions, model, runner) end end - runner.registerInfo("Added #{num_windows} window(s), totaling #{window_area.round(1)} ft^2, to #{surface.name}.") + return true end @@ -1321,7 +1382,7 @@ def self.create_doors(runner:, next unless surface.outsideBoundaryCondition.downcase == 'adiabatic' model.getSpaces.each do |potential_corridor_space| - next unless potential_corridor_space.spaceType.get.standardsSpaceType.get == 'corridor' + next unless potential_corridor_space.spaceType.get.standardsSpaceType.get == HPXML::LocationOtherHousingUnit potential_corridor_space.surfaces.each do |potential_corridor_surface| next unless surface.reverseEqualVertices(potential_corridor_surface) @@ -1431,8 +1492,6 @@ def self.create_doors(runner:, if door_sub_surface.nil? && unit_has_door runner.registerWarning('Could not find appropriate surface for the door. No door was added.') - elsif not door_sub_surface.nil? - runner.registerInfo("Added #{door_area.round(1)} ft^2 door.") end return true @@ -1460,6 +1519,7 @@ def self.create_single_family_attached(runner:, geometry_corridor_position:, geometry_foundation_type:, geometry_foundation_height:, + geometry_rim_joist_height:, geometry_attic_type:, geometry_roof_type:, geometry_roof_pitch:, @@ -1474,6 +1534,7 @@ def self.create_single_family_attached(runner:, corridor_position = geometry_corridor_position foundation_type = geometry_foundation_type foundation_height = geometry_foundation_height + rim_joist_height = geometry_rim_joist_height attic_type = geometry_attic_type roof_type = geometry_roof_type roof_pitch = geometry_roof_pitch @@ -1521,14 +1582,16 @@ def self.create_single_family_attached(runner:, runner.registerError('Invalid horizontal location entered.') return false end + if (unit_width == 1) && (horizontal_location != 'None') + runner.registerWarning("No #{horizontal_location} location exists, setting horizontal_location to 'None'") + horizontal_location = 'None' + end # Convert to SI cfa = UnitConversions.convert(cfa, 'ft^2', 'm^2') wall_height = UnitConversions.convert(wall_height, 'ft', 'm') foundation_height = UnitConversions.convert(foundation_height, 'ft', 'm') - - # starting spaces - runner.registerInitialCondition("The building started with #{model.getSpaces.size} spaces.") + rim_joist_height = UnitConversions.convert(rim_joist_height, 'ft', 'm') if (foundation_type == HPXML::FoundationTypeBasementConditioned) && (attic_type == HPXML::AtticTypeConditioned) footprint = cfa / (num_floors + 2) @@ -1546,11 +1609,11 @@ def self.create_single_family_attached(runner:, foundation_back_polygon = nil # create the front prototype unit - nw_point = OpenStudio::Point3d.new(0, 0, 0) - ne_point = OpenStudio::Point3d.new(x, 0, 0) - sw_point = OpenStudio::Point3d.new(0, -y, 0) - se_point = OpenStudio::Point3d.new(x, -y, 0) - living_polygon = Geometry.make_polygon(sw_point, nw_point, ne_point, se_point) + nw_point = OpenStudio::Point3d.new(0, 0, rim_joist_height) + ne_point = OpenStudio::Point3d.new(x, 0, rim_joist_height) + sw_point = OpenStudio::Point3d.new(0, -y, rim_joist_height) + se_point = OpenStudio::Point3d.new(x, -y, rim_joist_height) + living_polygon = make_polygon(sw_point, nw_point, ne_point, se_point) # foundation if (foundation_height > 0) && foundation_front_polygon.nil? @@ -1574,7 +1637,6 @@ def self.create_single_family_attached(runner:, living_spaces_front << living_space # Adiabatic surfaces for walls - ############################################################################################## # Map unit location to adiabatic surfaces (#if `key` unit then make `value(s)` adiabatic) horz_hash = { 'Left' => ['right'], 'Right' => ['left'], 'Middle' => ['left', 'right'], 'None' => [] } adb_facade = horz_hash[horizontal_location] @@ -1582,35 +1644,21 @@ def self.create_single_family_attached(runner:, adb_facade += ['back'] end - if adb_facade.include? 'left' - left_neighbor_offset = 0 - end - if adb_facade.include? 'right' - right_neighbor_offset = 0 - end - if adb_facade.include? 'back' - back_neighbor_offset = 0 - end - if adb_facade.include? 'front' - front_neighbor_offset = 0 - end - adiabatic_surf = adb_facade # Make surfaces adiabatic model.getSpaces.each do |space| space.surfaces.each do |surface| - os_facade = Geometry.get_facade_for_surface(surface) + os_facade = get_facade_for_surface(surface) next unless surface.surfaceType == 'Wall' next unless adb_facade.include? os_facade x_ft = UnitConversions.convert(x, 'm', 'ft') - max_x = Geometry.getSurfaceXValues([surface]).max - min_x = Geometry.getSurfaceXValues([surface]).min + max_x = getSurfaceXValues([surface]).max + min_x = getSurfaceXValues([surface]).min next if ((max_x - x_ft).abs >= 0.01) && (min_x > 0) surface.setOutsideBoundaryCondition('Adiabatic') end end - ############################################################################################## attic_space_front = nil attic_space_back = nil @@ -1622,7 +1670,7 @@ def self.create_single_family_attached(runner:, new_living_space.setName("living space|story #{story}") new_living_space.setSpaceType(living_space_type) - m = Geometry.initialize_transformation_matrix(OpenStudio::Matrix.new(4, 4, 0)) + m = initialize_transformation_matrix(OpenStudio::Matrix.new(4, 4, 0)) m[2, 3] = wall_height * (story - 1) new_living_space.setTransformation(OpenStudio::Transformation.new(m)) new_living_space.setThermalZone(living_zone) @@ -1632,7 +1680,7 @@ def self.create_single_family_attached(runner:, # attic if roof_type != 'flat' - attic_space = get_attic_space(model, x, y, wall_height, num_floors, num_units, roof_pitch, roof_type) + attic_space = get_attic_space(model, x, y, wall_height, num_floors, num_units, roof_pitch, roof_type, rim_joist_height) if attic_type == HPXML::AtticTypeConditioned attic_space.setName("#{attic_type} space") attic_space.setThermalZone(living_zone) @@ -1644,10 +1692,6 @@ def self.create_single_family_attached(runner:, end end - # create the unit - unit_spaces_hash = {} - unit_spaces_hash[1] = [living_spaces_front, 1] - # foundation if foundation_height > 0 foundation_spaces = [] @@ -1656,7 +1700,7 @@ def self.create_single_family_attached(runner:, foundation_space_front = [] foundation_space = OpenStudio::Model::Space::fromFloorPrint(foundation_front_polygon, foundation_height, model) foundation_space = foundation_space.get - m = Geometry.initialize_transformation_matrix(OpenStudio::Matrix.new(4, 4, 0)) + m = initialize_transformation_matrix(OpenStudio::Matrix.new(4, 4, 0)) m[2, 3] = foundation_height foundation_space.changeTransformation(OpenStudio::Transformation.new(m)) foundation_space.setXOrigin(0) @@ -1665,20 +1709,19 @@ def self.create_single_family_attached(runner:, if foundation_type == HPXML::FoundationTypeBasementConditioned foundation_zone = OpenStudio::Model::ThermalZone.new(model) - foundation_space.setName("#{foundation_type} space") - foundation_zone.setName("#{foundation_type} zone") + foundation_space.setName(HPXML::FoundationTypeBasementConditioned) + foundation_zone.setName(HPXML::FoundationTypeBasementConditioned) foundation_space.setThermalZone(foundation_zone) foundation_space_type = OpenStudio::Model::SpaceType.new(model) - foundation_space_type.setStandardsSpaceType('living space') + foundation_space_type.setStandardsSpaceType(HPXML::LocationBasementConditioned) foundation_space.setSpaceType(foundation_space_type) end foundation_space_front << foundation_space foundation_spaces << foundation_space - if foundation_type == HPXML::FoundationTypeBasementConditioned - unit_spaces_hash[1][0] << foundation_space - end + # Rim Joist + add_rim_joist(model, foundation_front_polygon, foundation_space, rim_joist_height, 0) # put all of the spaces in the model into a vector spaces = OpenStudio::Model::SpaceVector.new @@ -1691,46 +1734,42 @@ def self.create_single_family_attached(runner:, OpenStudio::Model.matchSurfaces(spaces) if [HPXML::FoundationTypeCrawlspaceVented, HPXML::FoundationTypeCrawlspaceUnvented, HPXML::FoundationTypeBasementUnconditioned].include? foundation_type - foundation_space = Geometry.make_one_space_from_multiple_spaces(model, foundation_spaces) + # create foundation zone + foundation_zone = OpenStudio::Model::ThermalZone.new(model) + + foundation_space = make_one_space_from_multiple_spaces(model, foundation_spaces) if foundation_type == HPXML::FoundationTypeCrawlspaceVented - foundation_space_type_name = 'vented crawlspace' + foundation_space_name = HPXML::LocationCrawlspaceVented elsif foundation_type == HPXML::FoundationTypeCrawlspaceUnvented - foundation_space_type_name = 'unvented crawlspace' - elsif foundation_type == HPXML::FoundationTypeBasementUnconditioned - foundation_space_type_name = 'unconditioned basement' - end - if [HPXML::FoundationTypeCrawlspaceVented, HPXML::FoundationTypeCrawlspaceUnvented].include? foundation_type - foundation_space.setName("#{foundation_type} space") - foundation_zone = OpenStudio::Model::ThermalZone.new(model) - foundation_zone.setName('crawl zone') - foundation_space.setThermalZone(foundation_zone) - foundation_space_type = OpenStudio::Model::SpaceType.new(model) - foundation_space_type.setStandardsSpaceType(foundation_space_type_name) - foundation_space.setSpaceType(foundation_space_type) + foundation_space_name = HPXML::LocationCrawlspaceUnvented elsif foundation_type == HPXML::FoundationTypeBasementUnconditioned - foundation_space.setName("#{foundation_type} space") - foundation_zone = OpenStudio::Model::ThermalZone.new(model) - foundation_zone.setName("#{foundation_type} zone") - foundation_space.setThermalZone(foundation_zone) - foundation_space_type = OpenStudio::Model::SpaceType.new(model) - foundation_space_type.setStandardsSpaceType(foundation_space_type_name) - foundation_space.setSpaceType(foundation_space_type) + foundation_space_name = HPXML::LocationBasementUnconditioned end + foundation_zone.setName(foundation_space_name) + foundation_space.setName(foundation_space_name) + foundation_space_type = OpenStudio::Model::SpaceType.new(model) + foundation_space_type.setStandardsSpaceType(foundation_space_name) + foundation_space.setSpaceType(foundation_space_type) + + # set these to the foundation zone + foundation_space.setThermalZone(foundation_zone) end # set foundation walls to ground spaces = model.getSpaces spaces.each do |space| - next unless Geometry.get_space_floor_z(space) + UnitConversions.convert(space.zOrigin, 'm', 'ft') < 0 + next unless get_space_floor_z(space) + UnitConversions.convert(space.zOrigin, 'm', 'ft') < 0 surfaces = space.surfaces surfaces.each do |surface| next if surface.surfaceType.downcase != 'wall' - os_facade = Geometry.get_facade_for_surface(surface) + os_facade = get_facade_for_surface(surface) if adb_facade.include? os_facade surface.setOutsideBoundaryCondition('Adiabatic') - else + elsif getSurfaceZValues([surface]).min < 0 surface.setOutsideBoundaryCondition('Foundation') + else + surface.setOutsideBoundaryCondition('Outdoors') end end end @@ -1749,47 +1788,47 @@ def self.create_single_family_attached(runner:, if [HPXML::AtticTypeVented, HPXML::AtticTypeUnvented].include?(attic_type) && (roof_type != 'flat') if offset == 0 - # x *= num_units - # if has_rear_units - # x /= 2 - # end attic_spaces.each do |attic_space| attic_space.remove end - attic_space = get_attic_space(model, x, y, wall_height, num_floors, num_units, roof_pitch, roof_type, has_rear_units) + attic_space = get_attic_space(model, x, y, wall_height, num_floors, num_units, roof_pitch, roof_type, rim_joist_height, has_rear_units) else - attic_space = Geometry.make_one_space_from_multiple_spaces(model, attic_spaces) + attic_space = make_one_space_from_multiple_spaces(model, attic_spaces) end - attic_space_name = "#{attic_type} space" - attic_space.setName(attic_space_name) - attic_zone = OpenStudio::Model::ThermalZone.new(model) - attic_zone.setName("#{attic_type} zone") - attic_space.setThermalZone(attic_zone) - if attic_type == HPXML::AtticTypeVented - attic_space_type_name = 'vented attic' - else - attic_space_type_name = 'unvented attic' + + # set these to the attic zone + if (attic_type == HPXML::AtticTypeVented) || (attic_type == HPXML::AtticTypeUnvented) + # create attic zone + attic_zone = OpenStudio::Model::ThermalZone.new(model) + attic_space.setThermalZone(attic_zone) + if attic_type == HPXML::AtticTypeVented + attic_space_name = HPXML::LocationAtticVented + elsif attic_type == HPXML::AtticTypeUnvented + attic_space_name = HPXML::LocationAtticUnvented + end + attic_zone.setName(attic_space_name) + elsif attic_type == HPXML::AtticTypeConditioned + attic_space.setThermalZone(living_zone) + attic_space_name = HPXML::LocationLivingSpace end + attic_space.setName(attic_space_name) attic_space_type = OpenStudio::Model::SpaceType.new(model) - attic_space_type.setStandardsSpaceType(attic_space_type_name) + attic_space_type.setStandardsSpaceType(attic_space_name) attic_space.setSpaceType(attic_space_type) end # Adiabatic surfaces for attic walls - ################################################################ - # Make surfaces adiabatic attic_space.surfaces.each do |surface| - os_facade = Geometry.get_facade_for_surface(surface) + os_facade = get_facade_for_surface(surface) next unless surface.surfaceType == 'Wall' next unless adb_facade.include? os_facade x_ft = UnitConversions.convert(x, 'm', 'ft') - max_x = Geometry.getSurfaceXValues([surface]).max - min_x = Geometry.getSurfaceXValues([surface]).min + max_x = getSurfaceXValues([surface]).max + min_x = getSurfaceXValues([surface]).min next if ((max_x - x_ft).abs >= 0.01) && (min_x > 0) surface.setOutsideBoundaryCondition('Adiabatic') end - ################################################################ # put all of the spaces in the model into a vector spaces = OpenStudio::Model::SpaceVector.new @@ -1811,108 +1850,61 @@ def self.create_single_family_attached(runner:, return true end - def self.get_attic_space(model, x, y, wall_height, num_floors, num_units, roof_pitch, roof_type, has_rear_units = false) + def self.get_attic_space(model, x, y, wall_height, num_floors, num_units, roof_pitch, roof_type, rim_joist_height, has_rear_units = false) y_rear = 0 - if has_rear_units - y_tot = y * 2 - y_peak = 0 - x_tot = (x * num_units) / 2 - else - y_peak = -y / 2 - y_tot = y - x_tot = x * num_units - end - # if y > 0 - nw_point = OpenStudio::Point3d.new(0, 0, wall_height * num_floors) - ne_point = OpenStudio::Point3d.new(x, 0, wall_height * num_floors) - sw_point = OpenStudio::Point3d.new(0, -y, wall_height * num_floors) - se_point = OpenStudio::Point3d.new(x, -y, wall_height * num_floors) - # else - # nw_point = OpenStudio::Point3d.new(0, -y, wall_height * num_floors) - # ne_point = OpenStudio::Point3d.new(x, -y, wall_height * num_floors) - # sw_point = OpenStudio::Point3d.new(0, 0, wall_height * num_floors) - # se_point = OpenStudio::Point3d.new(x, 0, wall_height * num_floors) - # end - attic_polygon = Geometry.make_polygon(sw_point, nw_point, ne_point, se_point) - - # if y_tot >= x_tot - # attic_height = (x_tot / 2.0) * roof_pitch - # else - # attic_height = (y_tot / 2.0) * roof_pitch - # end - - attic_height = (y_tot / 2.0) * roof_pitch # Roof always has same orientation + y_peak = -y / 2 + y_tot = y + x_tot = x * num_units + + nw_point = OpenStudio::Point3d.new(0, 0, wall_height * num_floors + rim_joist_height) + ne_point = OpenStudio::Point3d.new(x, 0, wall_height * num_floors + rim_joist_height) + sw_point = OpenStudio::Point3d.new(0, -y, wall_height * num_floors + rim_joist_height) + se_point = OpenStudio::Point3d.new(x, -y, wall_height * num_floors + rim_joist_height) + attic_polygon = make_polygon(sw_point, nw_point, ne_point, se_point) + + attic_height = (y_tot / 2.0) * roof_pitch + rim_joist_height # Roof always has same orientation side_type = nil if roof_type == 'gable' - # if y > 0 - # if x <= (y + y_rear) - # roof_n_point = OpenStudio::Point3d.new(x / 2.0, y_rear, wall_height * num_floors + attic_height) - # roof_s_point = OpenStudio::Point3d.new(x / 2.0, -y, wall_height * num_floors + attic_height) - # polygon_w_roof = Geometry.make_polygon(roof_n_point, nw_point, sw_point, roof_s_point) - # polygon_e_roof = Geometry.make_polygon(roof_s_point, se_point, ne_point, roof_n_point) - # polygon_s_wall = Geometry.make_polygon(roof_s_point, sw_point, se_point) - # polygon_n_wall = Geometry.make_polygon(roof_n_point, ne_point, nw_point) - # else - # roof_w_point = OpenStudio::Point3d.new(0, (y_rear - y) / 2.0, wall_height * num_floors + attic_height) - # roof_e_point = OpenStudio::Point3d.new(x, (y_rear - y) / 2.0, wall_height * num_floors + attic_height) roof_w_point = OpenStudio::Point3d.new(0, y_peak, wall_height * num_floors + attic_height) roof_e_point = OpenStudio::Point3d.new(x, y_peak, wall_height * num_floors + attic_height) - polygon_w_roof = Geometry.make_polygon(roof_w_point, roof_e_point, ne_point, nw_point) - polygon_e_roof = Geometry.make_polygon(roof_e_point, roof_w_point, sw_point, se_point) - polygon_s_wall = Geometry.make_polygon(roof_w_point, nw_point, sw_point) - polygon_n_wall = Geometry.make_polygon(roof_e_point, se_point, ne_point) - # end - # else - # if x <= y.abs - # roof_n_point = OpenStudio::Point3d.new(x / 2.0, -y, wall_height * num_floors + attic_height) - # roof_s_point = OpenStudio::Point3d.new(x / 2.0, 0, wall_height * num_floors + attic_height) - # polygon_w_roof = Geometry.make_polygon(roof_n_point, nw_point, sw_point, roof_s_point) - # polygon_e_roof = Geometry.make_polygon(roof_s_point, se_point, ne_point, roof_n_point) - # polygon_s_wall = Geometry.make_polygon(roof_s_point, sw_point, se_point) - # polygon_n_wall = Geometry.make_polygon(roof_n_point, ne_point, nw_point) - # else - # roof_w_point = OpenStudio::Point3d.new(0, -y / 2.0, wall_height * num_floors + attic_height) - # roof_e_point = OpenStudio::Point3d.new(x, -y / 2.0, wall_height * num_floors + attic_height) - # polygon_w_roof = Geometry.make_polygon(roof_w_point, roof_e_point, ne_point, nw_point) - # polygon_e_roof = Geometry.make_polygon(roof_e_point, roof_w_point, sw_point, se_point) - # polygon_s_wall = Geometry.make_polygon(roof_w_point, nw_point, sw_point) - # polygon_n_wall = Geometry.make_polygon(roof_e_point, se_point, ne_point) - # end - # end + polygon_w_roof = make_polygon(roof_w_point, roof_e_point, ne_point, nw_point) + polygon_e_roof = make_polygon(roof_e_point, roof_w_point, sw_point, se_point) + polygon_s_wall = make_polygon(roof_w_point, nw_point, sw_point) + polygon_n_wall = make_polygon(roof_e_point, se_point, ne_point) side_type = 'Wall' - elsif roof_type == 'hip' # TO-DO: not yet implemented for single unit approach + elsif roof_type == 'hip' if y > 0 if x <= (y + y_rear) roof_n_point = OpenStudio::Point3d.new(x / 2.0, y_rear - x / 2.0, wall_height * num_floors + attic_height) roof_s_point = OpenStudio::Point3d.new(x / 2.0, -y + x / 2.0, wall_height * num_floors + attic_height) - polygon_w_roof = Geometry.make_polygon(roof_n_point, nw_point, sw_point, roof_s_point) - polygon_e_roof = Geometry.make_polygon(roof_s_point, se_point, ne_point, roof_n_point) - polygon_s_wall = Geometry.make_polygon(roof_s_point, sw_point, se_point) - polygon_n_wall = Geometry.make_polygon(roof_n_point, ne_point, nw_point) + polygon_w_roof = make_polygon(roof_n_point, nw_point, sw_point, roof_s_point) + polygon_e_roof = make_polygon(roof_s_point, se_point, ne_point, roof_n_point) + polygon_s_wall = make_polygon(roof_s_point, sw_point, se_point) + polygon_n_wall = make_polygon(roof_n_point, ne_point, nw_point) else roof_w_point = OpenStudio::Point3d.new((y + y_rear) / 2.0, (y_rear - y) / 2.0, wall_height * num_floors + attic_height) roof_e_point = OpenStudio::Point3d.new(x - (y + y_rear) / 2.0, (y_rear - y) / 2.0, wall_height * num_floors + attic_height) - polygon_w_roof = Geometry.make_polygon(roof_w_point, sw_point, se_point, roof_e_point) - polygon_e_roof = Geometry.make_polygon(roof_e_point, ne_point, nw_point, roof_w_point) - polygon_s_wall = Geometry.make_polygon(roof_e_point, se_point, ne_point) - polygon_n_wall = Geometry.make_polygon(roof_w_point, nw_point, sw_point) + polygon_w_roof = make_polygon(roof_w_point, sw_point, se_point, roof_e_point) + polygon_e_roof = make_polygon(roof_e_point, ne_point, nw_point, roof_w_point) + polygon_s_wall = make_polygon(roof_e_point, se_point, ne_point) + polygon_n_wall = make_polygon(roof_w_point, nw_point, sw_point) end else if x <= y.abs roof_n_point = OpenStudio::Point3d.new(x / 2.0, -y - x / 2.0, wall_height * num_floors + attic_height) roof_s_point = OpenStudio::Point3d.new(x / 2.0, x / 2.0, wall_height * num_floors + attic_height) - polygon_w_roof = Geometry.make_polygon(roof_n_point, nw_point, sw_point, roof_s_point) - polygon_e_roof = Geometry.make_polygon(roof_s_point, se_point, ne_point, roof_n_point) - polygon_s_wall = Geometry.make_polygon(roof_s_point, sw_point, se_point) - polygon_n_wall = Geometry.make_polygon(roof_n_point, ne_point, nw_point) + polygon_w_roof = make_polygon(roof_n_point, nw_point, sw_point, roof_s_point) + polygon_e_roof = make_polygon(roof_s_point, se_point, ne_point, roof_n_point) + polygon_s_wall = make_polygon(roof_s_point, sw_point, se_point) + polygon_n_wall = make_polygon(roof_n_point, ne_point, nw_point) else roof_w_point = OpenStudio::Point3d.new(-y / 2.0, -y / 2.0, wall_height * num_floors + attic_height) roof_e_point = OpenStudio::Point3d.new(x + y / 2.0, -y / 2.0, wall_height * num_floors + attic_height) - polygon_w_roof = Geometry.make_polygon(roof_w_point, sw_point, se_point, roof_e_point) - polygon_e_roof = Geometry.make_polygon(roof_e_point, ne_point, nw_point, roof_w_point) - polygon_s_wall = Geometry.make_polygon(roof_e_point, se_point, ne_point) - polygon_n_wall = Geometry.make_polygon(roof_w_point, nw_point, sw_point) + polygon_w_roof = make_polygon(roof_w_point, sw_point, se_point, roof_e_point) + polygon_e_roof = make_polygon(roof_e_point, ne_point, nw_point, roof_w_point) + polygon_s_wall = make_polygon(roof_e_point, se_point, ne_point) + polygon_n_wall = make_polygon(roof_w_point, nw_point, sw_point) end end side_type = 'RoofCeiling' @@ -1923,11 +1915,7 @@ def self.get_attic_space(model, x, y, wall_height, num_floors, num_units, roof_p surface_floor.setOutsideBoundaryCondition('Surface') surface_w_roof = OpenStudio::Model::Surface.new(polygon_w_roof, model) surface_w_roof.setSurfaceType('RoofCeiling') - if has_rear_units - surface_w_roof.setOutsideBoundaryCondition('Adiabatic') ### - else - surface_w_roof.setOutsideBoundaryCondition('Outdoors') ### - end + surface_w_roof.setOutsideBoundaryCondition('Outdoors') surface_e_roof = OpenStudio::Model::Surface.new(polygon_e_roof, model) surface_e_roof.setSurfaceType('RoofCeiling') surface_e_roof.setOutsideBoundaryCondition('Outdoors') @@ -1966,6 +1954,7 @@ def self.create_multifamily(runner:, geometry_balcony_depth:, geometry_foundation_type:, geometry_foundation_height:, + geometry_rim_joist_height:, **remainder) cfa = geometry_cfa @@ -1974,7 +1963,7 @@ def self.create_multifamily(runner:, num_floors = geometry_num_floors_above_grade aspect_ratio = geometry_aspect_ratio level = geometry_level.get - horizontal_location = geometry_horizontal_location.get + horz_location = geometry_horizontal_location.get corridor_position = geometry_corridor_position corridor_width = geometry_corridor_width inset_width = geometry_inset_width @@ -1983,19 +1972,27 @@ def self.create_multifamily(runner:, balcony_depth = geometry_balcony_depth foundation_type = geometry_foundation_type foundation_height = geometry_foundation_height + rim_joist_height = geometry_rim_joist_height if level != 'Bottom' foundation_type = HPXML::LocationOtherHousingUnit foundation_height = 0.0 + rim_joist_height = 0.0 end num_units_per_floor = num_units / num_floors + num_units_per_floor_actual = num_units_per_floor + above_ground_floors = num_floors if (num_floors > 1) && (level != 'Bottom') && (foundation_height != 0.0) runner.registerWarning('Unit is not on the bottom floor, setting foundation height to 0.') foundation_height = 0.0 end + if num_floors == 1 + level = 'Bottom' + end + if (num_units_per_floor % 2 == 0) && ((corridor_position == 'Double-Loaded Interior') || (corridor_position == 'Double Exterior')) unit_depth = 2 unit_width = num_units_per_floor / 2 @@ -2041,7 +2038,15 @@ def self.create_multifamily(runner:, runner.registerWarning('Specified a balcony, but there is no inset.') balcony_depth = 0 end - if (unit_width < 3) && (horizontal_location == 'Middle') + if (unit_width == 1) && (horz_location != 'None') + runner.registerWarning("No #{horz_location} location exists, setting horizontal location to 'None'") + horz_location = 'None' + end + if (unit_width > 1) && (horz_location == 'None') + runner.registerError('Specified incompatible horizontal location for the corridor and unit configuration.') + return false + end + if (unit_width < 3) && (horz_location == 'Middle') runner.registerError('No middle horizontal location exists.') return false end @@ -2050,52 +2055,57 @@ def self.create_multifamily(runner:, cfa = UnitConversions.convert(cfa, 'ft^2', 'm^2') wall_height = UnitConversions.convert(wall_height, 'ft', 'm') foundation_height = UnitConversions.convert(foundation_height, 'ft', 'm') - - # starting spaces - runner.registerInitialCondition("The building started with #{model.getSpaces.size} spaces.") + corridor_width = UnitConversions.convert(corridor_width, 'ft', 'm') + inset_width = UnitConversions.convert(inset_width, 'ft', 'm') + inset_depth = UnitConversions.convert(inset_depth, 'ft', 'm') + balcony_depth = UnitConversions.convert(balcony_depth, 'ft', 'm') + rim_joist_height = UnitConversions.convert(rim_joist_height, 'ft', 'm') # calculate the dimensions of the unit footprint = cfa + inset_width * inset_depth x = Math.sqrt(footprint / aspect_ratio) y = footprint / x + story_hash = { 'Bottom' => 0, 'Middle' => 1, 'Top' => num_floors - 1 } + z = wall_height * story_hash[level] + foundation_corr_polygon = nil foundation_front_polygon = nil foundation_back_polygon = nil # create the front prototype unit footprint - nw_point = OpenStudio::Point3d.new(0, 0, 0) - ne_point = OpenStudio::Point3d.new(x, 0, 0) - sw_point = OpenStudio::Point3d.new(0, -y, 0) - se_point = OpenStudio::Point3d.new(x, -y, 0) + nw_point = OpenStudio::Point3d.new(0, 0, rim_joist_height) + ne_point = OpenStudio::Point3d.new(x, 0, rim_joist_height) + sw_point = OpenStudio::Point3d.new(0, -y, rim_joist_height) + se_point = OpenStudio::Point3d.new(x, -y, rim_joist_height) if inset_width * inset_depth > 0 if inset_position == 'Right' # unit footprint - inset_point = OpenStudio::Point3d.new(x - inset_width, inset_depth - y, 0) - front_point = OpenStudio::Point3d.new(x - inset_width, -y, 0) - side_point = OpenStudio::Point3d.new(x, inset_depth - y, 0) + inset_point = OpenStudio::Point3d.new(x - inset_width, inset_depth - y, rim_joist_height) + front_point = OpenStudio::Point3d.new(x - inset_width, -y, rim_joist_height) + side_point = OpenStudio::Point3d.new(x, inset_depth - y, rim_joist_height) living_polygon = make_polygon(sw_point, nw_point, ne_point, side_point, inset_point, front_point) # unit balcony if balcony_depth > 0 - inset_point = OpenStudio::Point3d.new(x - inset_width, inset_depth - y, wall_height) - side_point = OpenStudio::Point3d.new(x, inset_depth - y, wall_height) - se_point = OpenStudio::Point3d.new(x, inset_depth - y - balcony_depth, wall_height) - front_point = OpenStudio::Point3d.new(x - inset_width, inset_depth - y - balcony_depth, wall_height) + inset_point = OpenStudio::Point3d.new(x - inset_width, inset_depth - y, wall_height + rim_joist_height) + side_point = OpenStudio::Point3d.new(x, inset_depth - y, wall_height + rim_joist_height) + se_point = OpenStudio::Point3d.new(x, inset_depth - y - balcony_depth, wall_height + rim_joist_height) + front_point = OpenStudio::Point3d.new(x - inset_width, inset_depth - y - balcony_depth, wall_height + rim_joist_height) shading_surface = OpenStudio::Model::ShadingSurface.new(OpenStudio::Point3dVector.new([front_point, se_point, side_point, inset_point]), model) end else # unit footprint - inset_point = OpenStudio::Point3d.new(inset_width, inset_depth - y, 0) - front_point = OpenStudio::Point3d.new(inset_width, -y, 0) - side_point = OpenStudio::Point3d.new(0, inset_depth - y, 0) + inset_point = OpenStudio::Point3d.new(inset_width, inset_depth - y, rim_joist_height) + front_point = OpenStudio::Point3d.new(inset_width, -y, rim_joist_height) + side_point = OpenStudio::Point3d.new(0, inset_depth - y, rim_joist_height) living_polygon = make_polygon(side_point, nw_point, ne_point, se_point, front_point, inset_point) # unit balcony if balcony_depth > 0 - inset_point = OpenStudio::Point3d.new(inset_width, inset_depth - y, wall_height) - side_point = OpenStudio::Point3d.new(0, inset_depth - y, wall_height) - sw_point = OpenStudio::Point3d.new(0, inset_depth - y - balcony_depth, wall_height) - front_point = OpenStudio::Point3d.new(inset_width, inset_depth - y - balcony_depth, wall_height) + inset_point = OpenStudio::Point3d.new(inset_width, inset_depth - y, wall_height + rim_joist_height) + side_point = OpenStudio::Point3d.new(0, inset_depth - y, wall_height + rim_joist_height) + sw_point = OpenStudio::Point3d.new(0, inset_depth - y - balcony_depth, wall_height + rim_joist_height) + front_point = OpenStudio::Point3d.new(inset_width, inset_depth - y - balcony_depth, wall_height + rim_joist_height) shading_surface = OpenStudio::Model::ShadingSurface.new(OpenStudio::Point3dVector.new([front_point, sw_point, side_point, inset_point]), model) end end @@ -2130,29 +2140,23 @@ def self.create_multifamily(runner:, end living_spaces_front << living_space - ############################################################################################## # Map unit location to adiabatic surfaces horz_hash = { 'Left' => ['right'], 'Right' => ['left'], 'Middle' => ['left', 'right'], 'None' => [] } level_hash = { 'Bottom' => ['RoofCeiling'], 'Top' => ['Floor'], 'Middle' => ['RoofCeiling', 'Floor'], 'None' => [] } - adb_facade = horz_hash[horizontal_location] + adb_facade = horz_hash[horz_location] adb_level = level_hash[level] # Check levels if num_floors == 1 adb_level = [] end - # Check for exposed left and right facades - if (num_units_per_floor == 1) || ((num_units_per_floor == 2) && (has_rear_units == true)) - adb_facade = [] - end if (has_rear_units == true) adb_facade += ['back'] end - adiabatic_surf = adb_facade + horz_hash[horizontal_location] + level_hash[level] - # Make surfaces adiabatic + adiabatic_surf = adb_facade + adb_level + # Make living space surfaces adiabatic model.getSpaces.each do |space| - # Store has_rear_units to call in the door geometry measure space.surfaces.each do |surface| os_facade = get_facade_for_surface(surface) if surface.surfaceType == 'Wall' @@ -2168,20 +2172,20 @@ def self.create_multifamily(runner:, if (adb_level.include? surface.surfaceType) surface.setOutsideBoundaryCondition('Adiabatic') end + end end end - ############################################################################################## if (corridor_position == 'Double-Loaded Interior') interior_corridor_width = corridor_width / 2 # Only half the corridor is attached to a unit # corridors if corridor_width > 0 # create the prototype corridor - nw_point = OpenStudio::Point3d.new(0, interior_corridor_width, 0) - ne_point = OpenStudio::Point3d.new(x, interior_corridor_width, 0) - sw_point = OpenStudio::Point3d.new(0, 0, 0) - se_point = OpenStudio::Point3d.new(x, 0, 0) + nw_point = OpenStudio::Point3d.new(0, interior_corridor_width, rim_joist_height) + ne_point = OpenStudio::Point3d.new(x, interior_corridor_width, rim_joist_height) + sw_point = OpenStudio::Point3d.new(0, 0, rim_joist_height) + se_point = OpenStudio::Point3d.new(x, 0, rim_joist_height) corr_polygon = make_polygon(sw_point, nw_point, ne_point, se_point) if (foundation_height > 0) && foundation_corr_polygon.nil? @@ -2190,32 +2194,24 @@ def self.create_multifamily(runner:, # create corridor zone corridor_zone = OpenStudio::Model::ThermalZone.new(model) - corridor_zone.setName('corridor zone') + corridor_zone.setName(HPXML::LocationOtherHousingUnit) corridor_space = OpenStudio::Model::Space::fromFloorPrint(corr_polygon, wall_height, model) corridor_space = corridor_space.get - corridor_space_name = 'corridor space' - corridor_space.setName(corridor_space_name) + corridor_space.setName(HPXML::LocationOtherHousingUnit) corridor_space_type = OpenStudio::Model::SpaceType.new(model) - corridor_space_type.setStandardsSpaceType('corridor') + corridor_space_type.setStandardsSpaceType(HPXML::LocationOtherHousingUnit) corridor_space.setSpaceType(corridor_space_type) corridor_space.setThermalZone(corridor_zone) - - # Make walls of corridor adiabatic - if has_rear_units == true - corridor_space.surfaces.each do |surface| - os_facade = get_facade_for_surface(surface) - end - end end elsif (corridor_position == 'Double Exterior') || (corridor_position == 'Single Exterior (Front)') interior_corridor_width = 0 # front access - nw_point = OpenStudio::Point3d.new(0, -y, wall_height) - sw_point = OpenStudio::Point3d.new(0, -y - corridor_width, wall_height) - ne_point = OpenStudio::Point3d.new(x, -y, wall_height) - se_point = OpenStudio::Point3d.new(x, -y - corridor_width, wall_height) + nw_point = OpenStudio::Point3d.new(0, -y, wall_height + rim_joist_height) + sw_point = OpenStudio::Point3d.new(0, -y - corridor_width, wall_height + rim_joist_height) + ne_point = OpenStudio::Point3d.new(x, -y, wall_height + rim_joist_height) + se_point = OpenStudio::Point3d.new(x, -y - corridor_width, wall_height + rim_joist_height) shading_surface = OpenStudio::Model::ShadingSurface.new(OpenStudio::Point3dVector.new([sw_point, se_point, ne_point, nw_point]), model) shading_surface_group = OpenStudio::Model::ShadingSurfaceGroup.new(model) @@ -2228,17 +2224,20 @@ def self.create_multifamily(runner:, foundation_spaces = [] # foundation corridor + foundation_corridor_space = nil if (corridor_width > 0) && (corridor_position == 'Double-Loaded Interior') - corridor_space = OpenStudio::Model::Space::fromFloorPrint(foundation_corr_polygon, foundation_height, model) - corridor_space = corridor_space.get + foundation_corridor_space = OpenStudio::Model::Space::fromFloorPrint(foundation_corr_polygon, foundation_height, model) + foundation_corridor_space = foundation_corridor_space.get m = initialize_transformation_matrix(OpenStudio::Matrix.new(4, 4, 0)) - m[2, 3] = foundation_height - corridor_space.changeTransformation(OpenStudio::Transformation.new(m)) - corridor_space.setXOrigin(0) - corridor_space.setYOrigin(0) - corridor_space.setZOrigin(0) + m[2, 3] = foundation_height + rim_joist_height + foundation_corridor_space.changeTransformation(OpenStudio::Transformation.new(m)) + foundation_corridor_space.setXOrigin(0) + foundation_corridor_space.setYOrigin(0) + foundation_corridor_space.setZOrigin(0) + foundation_spaces << foundation_corridor_space - foundation_spaces << corridor_space + # Rim Joist + add_rim_joist(model, foundation_corr_polygon, foundation_corridor_space, rim_joist_height, 0) end # foundation front @@ -2246,7 +2245,7 @@ def self.create_multifamily(runner:, foundation_space = OpenStudio::Model::Space::fromFloorPrint(foundation_front_polygon, foundation_height, model) foundation_space = foundation_space.get m = initialize_transformation_matrix(OpenStudio::Matrix.new(4, 4, 0)) - m[2, 3] = foundation_height + m[2, 3] = foundation_height + rim_joist_height foundation_space.changeTransformation(OpenStudio::Transformation.new(m)) foundation_space.setXOrigin(0) foundation_space.setYOrigin(0) @@ -2255,6 +2254,31 @@ def self.create_multifamily(runner:, foundation_space_front << foundation_space foundation_spaces << foundation_space + foundation_spaces.each do |foundation_space| # (corridor and foundation) + next unless [HPXML::FoundationTypeCrawlspaceVented, HPXML::FoundationTypeCrawlspaceUnvented, HPXML::FoundationTypeBasementUnconditioned].include?(foundation_type) + # create foundation zone + foundation_zone = OpenStudio::Model::ThermalZone.new(model) + + if foundation_type == HPXML::FoundationTypeCrawlspaceVented + foundation_space_name = HPXML::LocationCrawlspaceVented + elsif foundation_type == HPXML::FoundationTypeCrawlspaceUnvented + foundation_space_name = HPXML::LocationCrawlspaceUnvented + elsif foundation_type == HPXML::FoundationTypeBasementUnconditioned + foundation_space_name = HPXML::LocationBasementUnconditioned + end + foundation_zone.setName(foundation_space_name) + foundation_space.setName(foundation_space_name) + foundation_space_type = OpenStudio::Model::SpaceType.new(model) + foundation_space_type.setStandardsSpaceType(foundation_space_name) + foundation_space.setSpaceType(foundation_space_type) + + # set these to the foundation zone + foundation_space.setThermalZone(foundation_zone) + end + + # Rim Joist + add_rim_joist(model, foundation_front_polygon, foundation_space, rim_joist_height, 0) + # put all of the spaces in the model into a vector spaces = OpenStudio::Model::SpaceVector.new model.getSpaces.each do |space| @@ -2265,43 +2289,56 @@ def self.create_multifamily(runner:, OpenStudio::Model.intersectSurfaces(spaces) OpenStudio::Model.matchSurfaces(spaces) - if ([HPXML::FoundationTypeCrawlspaceVented, HPXML::FoundationTypeCrawlspaceUnvented, HPXML::FoundationTypeBasementUnconditioned].include? foundation_type) - foundation_space = make_one_space_from_multiple_spaces(model, foundation_spaces) - if (foundation_type == HPXML::FoundationTypeCrawlspaceVented) || (foundation_type == HPXML::FoundationTypeCrawlspaceUnvented) - foundation_space.setName("#{foundation_type} space") - foundation_zone = OpenStudio::Model::ThermalZone.new(model) - foundation_zone.setName("#{foundation_type} zone") - foundation_space.setThermalZone(foundation_zone) - if foundation_type == HPXML::FoundationTypeCrawlspaceVented - foundation_space_type_name = 'vented crawlspace' + # Foundation space boundary conditions + model.getSpaces.each do |space| + next unless get_space_floor_z(space) + UnitConversions.convert(space.zOrigin, 'm', 'ft') < 0 # Foundation + next if space.name.get.include? 'corridor' + + surfaces = space.surfaces + surfaces.each do |surface| + next unless surface.surfaceType.downcase == 'wall' + + os_facade = get_facade_for_surface(surface) + if adb_facade.include?(os_facade) && (os_facade != 'RoofCeiling') && (os_facade != 'Floor') + surface.setOutsideBoundaryCondition('Adiabatic') + elsif getSurfaceZValues([surface]).min < 0 + surface.setOutsideBoundaryCondition('Foundation') else - foundation_space_type_name = 'unvented crawlspace' + surface.setOutsideBoundaryCondition('Outdoors') end - elsif foundation_type == HPXML::FoundationTypeBasementUnconditioned - foundation_space.setName("#{foundation_type} space") - foundation_zone = OpenStudio::Model::ThermalZone.new(model) - foundation_zone.setName("#{foundation_type} zone") - foundation_space.setThermalZone(foundation_zone) - foundation_space_type_name = 'unconditioned basement' end - foundation_space_type = OpenStudio::Model::SpaceType.new(model) - foundation_space_type.setStandardsSpaceType(foundation_space_type_name) - foundation_space.setSpaceType(foundation_space_type) end - # set foundation walls to ground - spaces = model.getSpaces - spaces.each do |space| - next unless get_space_floor_z(space) + UnitConversions.convert(space.zOrigin, 'm', 'ft') < 0 - - surfaces = space.surfaces - surfaces.each do |surface| - next if surface.surfaceType.downcase != 'wall' + # Foundation corridor space boundary conditions + foundation_corr_obcs = [] + if not foundation_corridor_space.nil? + foundation_corridor_space.surfaces.each do |surface| + next unless surface.surfaceType.downcase == 'wall' - surface.setOutsideBoundaryCondition('Foundation') + os_facade = get_facade_for_surface(surface) + if adb_facade.include? os_facade + surface.setOutsideBoundaryCondition('Adiabatic') + else + surface.setOutsideBoundaryCondition('Foundation') + end end end + end + # Corridor space boundary conditions + model.getSpaces.each do |space| + next unless is_corridor(space) + + space.surfaces.each do |surface| + os_facade = get_facade_for_surface(surface) + if adb_facade.include? os_facade + surface.setOutsideBoundaryCondition('Adiabatic') + end + + if (adb_level.include? surface.surfaceType) + surface.setOutsideBoundaryCondition('Adiabatic') + end + end end # put all of the spaces in the model into a vector @@ -2314,15 +2351,26 @@ def self.create_multifamily(runner:, OpenStudio::Model.intersectSurfaces(spaces) OpenStudio::Model.matchSurfaces(spaces) - # make all surfaces adjacent to corridor spaces into adiabatic surfaces + # make corridor floors adiabatic if no exterior walls to avoid exposed perimeter error + exterior_obcs = ['Foundation', 'Ground', 'Outdoors'] + obcs_hash = {} model.getSpaces.each do |space| - next unless space.spaceType.get.standardsSpaceType.get == 'corridor' + next unless space.name.get.include? 'corridor' # corridor and foundation corridor spaces + space_name = space.name + obcs_hash[space_name] = [] space.surfaces.each do |surface| - if surface.adjacentSurface.is_initialized # only set to adiabatic if the corridor surface is adjacent to another surface - surface.adjacentSurface.get.setOutsideBoundaryCondition('Adiabatic') - surface.setOutsideBoundaryCondition('Adiabatic') - end + next unless surface.surfaceType.downcase == 'wall' + + obcs_hash[space_name] << surface.outsideBoundaryCondition + end + + next if (obcs_hash[space_name] & exterior_obcs).any? + + space.surfaces.each do |surface| + next unless surface.surfaceType.downcase == 'floor' + + surface.setOutsideBoundaryCondition('Adiabatic') end end @@ -2333,9 +2381,25 @@ def self.create_multifamily(runner:, surface.setOutsideBoundaryCondition('Foundation') end + # set adjacent corridor walls to adiabatic + model.getSpaces.each do |space| + next unless is_corridor(space) + + space.surfaces.each do |surface| + if surface.adjacentSurface.is_initialized && (surface.surfaceType.downcase == 'wall') + surface.adjacentSurface.get.setOutsideBoundaryCondition('Adiabatic') + surface.setOutsideBoundaryCondition('Adiabatic') + end + end + end + return true end + def self.is_corridor(space_or_zone) + return space_or_zone_is_of_type(space_or_zone, HPXML::LocationOtherHousingUnit) + end + # Returns true if space is either fully or partially below grade def self.space_is_below_grade(space) space.surfaces.each do |surface| @@ -2386,7 +2450,7 @@ def self.get_walls_connected_to_floor(wall_surfaces, floor_surface, same_space = floor_vertices.each_with_index do |fv1, fidx| fv2 = floor_vertices[fidx - 1] # Wall within floor edge? - next unless is_point_between([wv1.x, wv1.y, wv1.z], [fv1.x, fv1.y, fv1.z], [fv2.x, fv2.y, fv2.z]) && is_point_between([wv2.x, wv2.y, wv2.z], [fv1.x, fv1.y, fv1.z], [fv2.x, fv2.y, fv2.z]) + next unless is_point_between([wv1.x, wv1.y, wv1.z + wall_surface.space.get.zOrigin], [fv1.x, fv1.y, fv1.z + floor_surface.space.get.zOrigin], [fv2.x, fv2.y, fv2.z + floor_surface.space.get.zOrigin]) && is_point_between([wv2.x, wv2.y, wv2.z + wall_surface.space.get.zOrigin], [fv1.x, fv1.y, fv1.z + floor_surface.space.get.zOrigin], [fv2.x, fv2.y, fv2.z + floor_surface.space.get.zOrigin]) if not adjacent_wall_surfaces.include? wall_surface adjacent_wall_surfaces << wall_surface @@ -2457,19 +2521,13 @@ def self.calculate_exposed_perimeter(model, ground_floor_surfaces, has_foundatio end def self.get_edges_for_surfaces(surfaces, use_top_edge) - top_z = -99999 - bottom_z = 99999 - surfaces.each do |surface| - top_z = [getSurfaceZValues([surface]).max, top_z].max - bottom_z = [getSurfaceZValues([surface]).min, bottom_z].min - end edges = [] edge_counter = 0 surfaces.each do |surface| if use_top_edge - matchz = top_z + matchz = getSurfaceZValues([surface]).max else - matchz = bottom_z + matchz = getSurfaceZValues([surface]).min end # get vertices @@ -2585,4 +2643,35 @@ def self.get_surface_height(surface) zrange = zvalues.max - zvalues.min return zrange end + + def self.get_conditioned_attic_height(spaces) + # gable roof type + get_conditioned_spaces(spaces).each do |space| + space.surfaces.each do |surface| + next if surface.vertices.size != 3 + next if surface.outsideBoundaryCondition != 'Outdoors' + next if surface.surfaceType != 'Wall' + + return get_height_of_spaces([space]) + end + end + + # hip roof type + get_conditioned_spaces(spaces).each do |space| + space.surfaces.each do |surface| + next if surface.outsideBoundaryCondition != 'Outdoors' + next if surface.surfaceType != 'RoofCeiling' + + return get_height_of_spaces([space]) + end + end + + return false + end + + def self.surface_is_rim_joist(surface, height) + return false unless (height - Geometry.get_surface_height(surface)).abs < 0.00001 + return false unless Geometry.getSurfaceZValues([surface]).max > 0 + return true + end end diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/resources/location.rb b/example_files/resources/hpxml-measures/BuildResidentialHPXML/resources/location.rb deleted file mode 100644 index 023a520e..00000000 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/resources/location.rb +++ /dev/null @@ -1,24 +0,0 @@ -# frozen_string_literal: true - -class Location - def self.get_climate_zones - zones_csv = File.join(File.dirname(__FILE__), '../../HPXMLtoOpenStudio/resources/data_climate_zones.csv') - if not File.exist?(zones_csv) - return - end - - return zones_csv - end - - def self.get_climate_zone_iecc(wmo) - zones_csv = get_climate_zones - return if zones_csv.nil? - - require 'csv' - CSV.foreach(zones_csv) do |row| - return row[6].to_s if row[0].to_s == wmo - end - - return - end -end diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/resources/schedules.rb b/example_files/resources/hpxml-measures/BuildResidentialHPXML/resources/schedules.rb index 71b54e29..e2cfc214 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/resources/schedules.rb +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/resources/schedules.rb @@ -13,6 +13,10 @@ def initialize(runner:, @runner = runner @model = model @epw_file = epw_file + @state = 'CO' + unless epw_file.stateProvinceRegion.empty? + @state = epw_file.stateProvinceRegion + end @building_id = building_id @random_seed = random_seed end @@ -29,6 +33,9 @@ def get_simulation_parameters @mkc_ts_per_hour = @mkc_ts_per_day / 24 @model.getYearDescription.isLeapYear ? @total_days_in_year = 366 : @total_days_in_year = 365 + + @sim_year = @model.getYearDescription.calendarYear.get + @sim_start_day = DateTime.new(@sim_year, 1, 1) end def get_random_seed @@ -43,47 +50,48 @@ def get_random_seed end def self.col_names - return [ - 'occupants', - 'lighting_interior', - 'lighting_exterior', - 'lighting_garage', - 'lighting_exterior_holiday', - 'cooking_range', - 'refrigerator', - 'extra_refrigerator', - 'freezer', - 'dishwasher', - 'dishwasher_power', - 'clothes_washer', - 'clothes_washer_power', - 'clothes_dryer', - 'clothes_dryer_exhaust', - 'baths', - 'showers', - 'sinks', - 'fixtures', - 'ceiling_fan', - 'plug_loads_other', - 'plug_loads_tv', - 'plug_loads_vehicle', - 'plug_loads_well_pump', - 'fuel_loads_grill', - 'fuel_loads_lighting', - 'fuel_loads_fireplace', - 'pool_pump', - 'pool_heater', - 'hot_tub_pump', - 'hot_tub_heater', - 'sleep', - 'vacancy' - ] + # col_name => affected_by_vacancy + return { + 'occupants' => true, + 'lighting_interior' => true, + 'lighting_exterior' => true, + 'lighting_garage' => true, + 'lighting_exterior_holiday' => true, + 'cooking_range' => true, + 'refrigerator' => false, + 'extra_refrigerator' => false, + 'freezer' => false, + 'dishwasher' => true, + 'dishwasher_power' => true, + 'clothes_washer' => true, + 'clothes_washer_power' => true, + 'clothes_dryer' => true, + 'clothes_dryer_exhaust' => true, + 'baths' => true, + 'showers' => true, + 'sinks' => true, + 'fixtures' => true, + 'ceiling_fan' => true, + 'plug_loads_other' => true, + 'plug_loads_tv' => true, + 'plug_loads_vehicle' => true, + 'plug_loads_well_pump' => true, + 'fuel_loads_grill' => true, + 'fuel_loads_lighting' => true, + 'fuel_loads_fireplace' => true, + 'pool_pump' => false, + 'pool_heater' => false, + 'hot_tub_pump' => false, + 'hot_tub_heater' => false, + 'sleep' => nil, + 'vacancy' => nil + } end - def initialize_schedules(args:) + def initialize_schedules @schedules = {} - ScheduleGenerator.col_names.each do |col_name| + ScheduleGenerator.col_names.keys.each do |col_name| @schedules[col_name] = Array.new(@total_days_in_year * @steps_in_day, 0.0) end @@ -96,7 +104,7 @@ def schedules def create(args:) get_simulation_parameters - initialize_schedules(args: args) + initialize_schedules success = create_average_schedules(args: args) return false if not success @@ -104,7 +112,7 @@ def create(args:) success = create_stochastic_schedules(args: args) return false if not success - success = set_vacancy(args: args, sim_year: @model.getYearDescription.calendarYear.get) + success = set_vacancy(args: args) return false if not success return true @@ -255,19 +263,16 @@ def create_timeseries_from_weekday_weekend_monthly(sch_name:, 'weekend_sch' => weekend_sch.split(',').map { |i| i.to_f }, 'monthly_multiplier' => monthly_sch.split(',').map { |i| i.to_f } } - sim_year = @model.getYearDescription.calendarYear.get - if begin_month.nil? && begin_day_of_month.nil? && end_month.nil? && end_day_of_month.nil? - begin_day = DateTime.new(sim_year, 1, 1) - end_day = DateTime.new(sim_year, 12, 31) + begin_day = @sim_start_day + end_day = DateTime.new(@sim_year, 12, 31) else - begin_day = DateTime.new(sim_year, begin_month, begin_day_of_month) - end_day = DateTime.new(sim_year, end_month, end_day_of_month) + begin_day = DateTime.new(@sim_year, begin_month, begin_day_of_month) + end_day = DateTime.new(@sim_year, end_month, end_day_of_month) end - start_day = DateTime.new(sim_year, 1, 1) @total_days_in_year.times do |day| - today = start_day + day + today = @sim_start_day + day if begin_day <= end_day next if not (begin_day <= today && today <= end_day) else @@ -296,8 +301,6 @@ def create_timeseries_from_months(sch_name:, m = sch.max sch = sch.map { |s| s / m } - sim_year = @model.getYearDescription.calendarYear.get - start_day = DateTime.new(sim_year, 1, 1) @total_days_in_year.times do |day| @steps_in_day.times do |step| minute = day * 1440 + step * @minutes_per_step @@ -360,6 +363,8 @@ def create_stochastic_schedules(args:) event_duration_prob_map = read_event_duration_probs(resources_path: args[:resources_path]) activity_duration_prob_map = read_activity_duration_prob(resources_path: args[:resources_path]) appliance_power_dist_map = read_appliance_power_dist(resources_path: args[:resources_path]) + weekday_monthly_shift_dict = read_monthly_shift_minutes(resources_path: args[:resources_path], daytype: 'weekday') + weekend_monthly_shift_dict = read_monthly_shift_minutes(resources_path: args[:resources_path], daytype: 'weekend') all_simulated_values = [] # holds the markov-chain state for each of the seven simulated states for each occupant. # States are: 'sleeping', 'shower', 'laundry', 'cooking', 'dishwashing', 'absent', 'nothingAtHome' @@ -382,10 +387,8 @@ def create_stochastic_schedules(args:) transition_matrix_weekend = transition_matrix_weekend.map { |x| x.map { |y| y.to_f } } simulated_values = [] - sim_year = @model.getYearDescription.calendarYear.get - start_day = DateTime.new(sim_year, 1, 1) @total_days_in_year.times do |day| - today = start_day + day + today = @sim_start_day + day day_of_week = today.wday if [0, 6].include?(day_of_week) # Weekend @@ -454,9 +457,8 @@ def create_stochastic_schedules(args:) # fill in the yearly time_step resolution schedule for plug/lighting and ceiling fan based on weekday/weekend sch # States are: 0='sleeping', 1='shower', 2='laundry', 3='cooking', 4='dishwashing', 5='absent', 6='nothingAtHome' sim_year = @model.getYearDescription.calendarYear.get - start_day = DateTime.new(sim_year, 1, 1) @total_days_in_year.times do |day| - today = start_day + day + today = @sim_start_day + day month = today.month day_of_week = today.wday [0, 6].include?(day_of_week) ? is_weekday = false : is_weekday = true @@ -794,47 +796,56 @@ def create_stochastic_schedules(args:) offset_range = 30 random_offset = (prng.rand * 2 * offset_range).to_i - offset_range sink_activity_sch = sink_activity_sch.rotate(-4 * 60 + random_offset) # 4 am shifting + sink_activity_sch = apply_monthly_offsets(array: sink_activity_sch, weekday_monthly_shift_dict: weekday_monthly_shift_dict, weekend_monthly_shift_dict: weekend_monthly_shift_dict) sink_activity_sch = aggregate_array(sink_activity_sch, @minutes_per_step) @schedules['sinks'] = sink_activity_sch.map { |flow| flow / Constants.PeakFlowRate } random_offset = (prng.rand * 2 * offset_range).to_i - offset_range dw_activity_sch = dw_activity_sch.rotate(random_offset) + dw_activity_sch = apply_monthly_offsets(array: dw_activity_sch, weekday_monthly_shift_dict: weekday_monthly_shift_dict, weekend_monthly_shift_dict: weekend_monthly_shift_dict) dw_activity_sch = aggregate_array(dw_activity_sch, @minutes_per_step) @schedules['dishwasher'] = dw_activity_sch.map { |flow| flow / Constants.PeakFlowRate } random_offset = (prng.rand * 2 * offset_range).to_i - offset_range cw_activity_sch = cw_activity_sch.rotate(random_offset) + cw_activity_sch = apply_monthly_offsets(array: cw_activity_sch, weekday_monthly_shift_dict: weekday_monthly_shift_dict, weekend_monthly_shift_dict: weekend_monthly_shift_dict) cw_activity_sch = aggregate_array(cw_activity_sch, @minutes_per_step) @schedules['clothes_washer'] = cw_activity_sch.map { |flow| flow / Constants.PeakFlowRate } random_offset = (prng.rand * 2 * offset_range).to_i - offset_range shower_activity_sch = shower_activity_sch.rotate(random_offset) + shower_activity_sch = apply_monthly_offsets(array: shower_activity_sch, weekday_monthly_shift_dict: weekday_monthly_shift_dict, weekend_monthly_shift_dict: weekend_monthly_shift_dict) shower_activity_sch = aggregate_array(shower_activity_sch, @minutes_per_step) @schedules['showers'] = shower_activity_sch.map { |flow| flow / Constants.PeakFlowRate } random_offset = (prng.rand * 2 * offset_range).to_i - offset_range bath_activity_sch = bath_activity_sch.rotate(random_offset) + bath_activity_sch = apply_monthly_offsets(array: bath_activity_sch, weekday_monthly_shift_dict: weekday_monthly_shift_dict, weekend_monthly_shift_dict: weekend_monthly_shift_dict) bath_activity_sch = aggregate_array(bath_activity_sch, @minutes_per_step) @schedules['baths'] = bath_activity_sch.map { |flow| flow / Constants.PeakFlowRate } random_offset = (prng.rand * 2 * offset_range).to_i - offset_range cooking_power_sch = cooking_power_sch.rotate(random_offset) + cooking_power_sch = apply_monthly_offsets(array: cooking_power_sch, weekday_monthly_shift_dict: weekday_monthly_shift_dict, weekend_monthly_shift_dict: weekend_monthly_shift_dict) cooking_power_sch = aggregate_array(cooking_power_sch, @minutes_per_step) @schedules['cooking_range'] = cooking_power_sch.map { |power| power / Constants.PeakPower } random_offset = (prng.rand * 2 * offset_range).to_i - offset_range cw_power_sch = cw_power_sch.rotate(random_offset) + cw_power_sch = apply_monthly_offsets(array: cw_power_sch, weekday_monthly_shift_dict: weekday_monthly_shift_dict, weekend_monthly_shift_dict: weekend_monthly_shift_dict) cw_power_sch = aggregate_array(cw_power_sch, @minutes_per_step) @schedules['clothes_washer_power'] = cw_power_sch.map { |power| power / Constants.PeakPower } random_offset = (prng.rand * 2 * offset_range).to_i - offset_range cd_power_sch = cd_power_sch.rotate(random_offset) + cd_power_sch = apply_monthly_offsets(array: cd_power_sch, weekday_monthly_shift_dict: weekday_monthly_shift_dict, weekend_monthly_shift_dict: weekend_monthly_shift_dict) cd_power_sch = aggregate_array(cd_power_sch, @minutes_per_step) @schedules['clothes_dryer'] = cd_power_sch.map { |power| power / Constants.PeakPower } @schedules['clothes_dryer_exhaust'] = @schedules['clothes_dryer'] random_offset = (prng.rand * 2 * offset_range).to_i - offset_range dw_power_sch = dw_power_sch.rotate(random_offset) + dw_power_sch = apply_monthly_offsets(array: dw_power_sch, weekday_monthly_shift_dict: weekday_monthly_shift_dict, weekend_monthly_shift_dict: weekend_monthly_shift_dict) dw_power_sch = aggregate_array(dw_power_sch, @minutes_per_step) @schedules['dishwasher_power'] = dw_power_sch.map { |power| power / Constants.PeakPower } @@ -845,15 +856,14 @@ def create_stochastic_schedules(args:) return true end - def set_vacancy(args:, - sim_year:) + def set_vacancy(args:) if args[:schedules_vacancy_begin_month].is_initialized && args[:schedules_vacancy_begin_day_of_month].is_initialized && args[:schedules_vacancy_end_month].is_initialized && args[:schedules_vacancy_end_day_of_month].is_initialized begin - vacancy_start_date = Time.new(sim_year, args[:schedules_vacancy_begin_month].get, args[:schedules_vacancy_begin_day_of_month].get) - vacancy_end_date = Time.new(sim_year, args[:schedules_vacancy_end_month].get, args[:schedules_vacancy_end_day_of_month].get, 24) + vacancy_start_date = Time.new(@sim_year, args[:schedules_vacancy_begin_month].get, args[:schedules_vacancy_begin_day_of_month].get) + vacancy_end_date = Time.new(@sim_year, args[:schedules_vacancy_end_month].get, args[:schedules_vacancy_end_day_of_month].get, 24) sec_per_step = @minutes_per_step * 60.0 - ts = Time.new(sim_year, 'Jan', 1) + ts = Time.new(@sim_year, 'Jan', 1) @schedules['vacancy'].each_with_index do |step, i| if vacancy_start_date <= ts && ts <= vacancy_end_date # in the vacancy period @schedules['vacancy'][i] = 1.0 @@ -880,6 +890,39 @@ def aggregate_array(array, group_size) return new_array end + def apply_monthly_offsets(array:, weekday_monthly_shift_dict:, weekend_monthly_shift_dict:) + @total_days_in_year.times do |day| + today = @sim_start_day + day + day_of_week = today.wday + month_strs = ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'July', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'] + month = month_strs[today.month - 1] + if [0, 6].include?(day_of_week) + # Weekend + lead = weekend_monthly_shift_dict[month] + else + # weekday + lead = weekday_monthly_shift_dict[month] + end + if lead.nil? + raise "Could not find the entry for month #{month}, day #{day_of_week} and state #{@state}" + end + + array[day * 1440, 1440] = array[day * 1440, 1440].rotate(lead) + end + return array + end + + def read_monthly_shift_minutes(resources_path:, daytype:) + shift_file = resources_path + "/schedules_#{daytype}_state_and_monthly_schedule_shift.csv" + shifts = CSV.read(shift_file) + state_index = shifts[0].find_index('State') + lead_index = shifts[0].find_index('Lead') + month_index = shifts[0].find_index('Month') + state_shifts = shifts.select { |row| row[state_index] == @state } + monthly_shifts_dict = Hash[state_shifts.map { |row| [row[month_index], row[lead_index].to_i] }] + return monthly_shifts_dict + end + def read_appliance_power_dist(resources_path:) activity_names = ['clothes_washer', 'dishwasher', 'clothes_dryer', 'cooking'] power_dist_map = {} @@ -1065,9 +1108,8 @@ def weighted_random(prng, weights) def get_holiday_lighting_sch(model, runner, holiday_sch) holiday_start_day = 332 # November 27 holiday_end_day = 6 # Jan 6 - @model.getYearDescription.isLeapYear ? total_days_in_year = 366 : total_days_in_year = 365 - sch = [0] * 24 * total_days_in_year - final_days = total_days_in_year - holiday_start_day + 1 + sch = [0] * 24 * @total_days_in_year + final_days = @total_days_in_year - holiday_start_day + 1 beginning_days = holiday_end_day sch[0...holiday_end_day * 24] = holiday_sch * beginning_days sch[(holiday_start_day - 1) * 24..-1] = holiday_sch * final_days diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/resources/schedules_weekday_state_and_monthly_schedule_shift.csv b/example_files/resources/hpxml-measures/BuildResidentialHPXML/resources/schedules_weekday_state_and_monthly_schedule_shift.csv new file mode 100644 index 00000000..865e0942 --- /dev/null +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/resources/schedules_weekday_state_and_monthly_schedule_shift.csv @@ -0,0 +1,613 @@ +Index,Month,State,Sample Count,Weight,Offset,Lead +0,Jan,AL,322,4770479685.057039,-33.0637931379581,30 +1,Jan,AZ,386,6683098926.140461,-3.6719751608533215,0 +2,Jan,AR,215,3582636447.758686,-11.53359174425475,30 +3,Jan,CA,1917,34799947923.171265,5.273180787371416,0 +4,Jan,CO,353,5095475556.302463,-6.767459127983898,15 +5,Jan,CT,250,4293334091.0490756,5.142563084341077,-15 +6,Jan,DE,59,1178861846.1594372,16.25459141658075,0 +7,Jan,DC,53,634409131.0906543,3.9138288582140603,-30 +8,Jan,FL,1065,17638867080.320923,13.498090536079985,0 +9,Jan,GA,533,10018924398.838549,16.180437555366666,0 +10,Jan,HI,59,857258587.5998942,-17.67068645832842,0 +11,Jan,ID,106,1705272985.2992196,-25.31412076915774,15 +12,Jan,IL,797,13603625760.265057,-2.7825314493460382,0 +13,Jan,IN,427,7503702561.474615,0.4640942007429203,0 +14,Jan,IA,253,3977290898.4515333,-4.174482276468666,0 +15,Jan,KS,240,3514267206.500655,1.3518194800529955,0 +16,Jan,KY,314,4557957092.249637,16.735805210748367,0 +17,Jan,LA,284,4168927922.9033165,-16.551329088261355,0 +18,Jan,ME,90,1540082488.2779734,14.400251946548224,0 +19,Jan,MD,403,6696012251.0296335,9.348837572038406,-15 +20,Jan,MA,415,6935140779.008692,9.089666156059934,0 +21,Jan,MI,714,12553483306.033571,15.095886947948316,0 +22,Jan,MN,415,6485604427.354405,-10.824594630884235,0 +23,Jan,MS,188,2775040490.279479,-10.145423984458034,20 +24,Jan,MO,389,6226571400.794956,5.797289209617816,0 +25,Jan,MT,72,908474341.489644,6.188529483927027,0 +26,Jan,NV,194,3118012343.82333,-28.8971331797311,30 +27,Jan,NH,102,1810890293.3642685,-39.138587704776796,15 +28,Jan,NJ,567,9226406264.504179,9.240912468337115,0 +29,Jan,NM,166,2359370915.6764345,-24.75538203450219,25 +30,Jan,NY,1034,16433875470.544922,-1.829866720177165,0 +31,Jan,NC,574,9713522725.509409,-5.73412841609354,0 +32,Jan,OH,753,11655558048.949366,14.678013776234366,0 +33,Jan,OK,253,3398948138.1308637,-3.7062403287887946,0 +34,Jan,OR,314,5134925064.998184,15.337323713180353,0 +35,Jan,PA,836,15565754037.642654,-7.212289336617118,0 +36,Jan,SC,321,4495193243.112128,11.194698868019486,-2 +37,Jan,TN,360,6526632027.194073,-10.71688504998167,15 +38,Jan,TX,1414,25611915019.355957,-2.781887900961806,0 +39,Jan,UT,182,3145097461.4076686,9.004916532446487,0 +40,Jan,VT,41,847602964.8727119,-6.945195358476212,30 +41,Jan,VA,535,8241744916.778457,-12.65574320018004,0 +42,Jan,WA,425,7224982816.163771,-5.702045933924978,8 +43,Jan,WI,447,7483215644.490423,-26.881663771476497,30 +44,Jan,NE,137,2071211969.696039,-5.750199865530021,0 +45,Jan,ND,48,678965747.7387099,14.985839665794515,0 +46,Jan,RI,70,1249513391.777745,-14.03076969745689,0 +47,Jan,SD,56,763845304.9753928,7.49055615258942,0 +48,Jan,WV,122,2013734386.417349,21.3937807241806,0 +49,Jan,WY,37,709554665.3658283,-2.8311352374998933,33 +50,Jan,AK,42,527809194.88608015,-26.77987149117314,0 +51,Feb,AL,272,4295975754.631793,-22.425367152877243,15 +52,Feb,AZ,297,4819620788.284443,-29.01654229626331,30 +53,Feb,AR,141,2123000006.4149928,-9.22123624924643,5 +54,Feb,CA,1517,28189662542.430866,2.4555831597203905,0 +55,Feb,CO,289,4223311733.3730035,-5.589516700234867,12 +56,Feb,CT,164,2875217228.6055408,16.021575958120025,-5 +57,Feb,DE,41,593388637.26184,58.71458630057771,-45 +58,Feb,DC,32,359958101.427902,7.286521873148558,0 +59,Feb,FL,790,13457855221.613382,11.205669935425362,0 +60,Feb,GA,429,8517525310.08934,17.0622243785632,0 +61,Feb,HI,53,910129187.1172825,-0.34736869026824024,5 +62,Feb,ID,99,1298985980.0633974,1.3598806522512632,0 +63,Feb,IL,612,10800651522.77236,-10.469253775051811,0 +64,Feb,IN,332,5660572088.96163,10.478507322583937,0 +65,Feb,IA,199,2648402280.8375015,-2.2017364393676644,0 +66,Feb,KS,183,2705247422.8888726,-7.71091861848663,18 +67,Feb,KY,245,3433812063.4742193,1.5015409396835366,0 +68,Feb,LA,237,3663390375.4709854,-23.63584968191583,30 +69,Feb,ME,70,1117904077.3112333,-8.019183665465903,5 +70,Feb,MD,285,4368150188.836962,-1.586238757299384,0 +71,Feb,MA,319,5470515179.128872,-8.806744950563484,0 +72,Feb,MI,521,8897879964.490149,12.558180871786476,0 +73,Feb,MN,354,5679666392.337878,-8.125814061001961,11 +74,Feb,MS,161,2311973428.9336925,-26.136583040250457,30 +75,Feb,MO,366,6086099759.58458,-10.66964726371225,15 +76,Feb,MT,61,1112342533.398297,15.794207371036464,-30 +77,Feb,NV,122,1925322304.451198,7.788492062550176,0 +78,Feb,NH,82,1516623953.262094,-17.39735167586707,30 +79,Feb,NJ,408,7297238295.5594225,2.2264955167843254,0 +80,Feb,NM,111,1605272770.6076245,6.142879712256104,0 +81,Feb,NY,887,14329146718.834705,4.303899687716807,-15 +82,Feb,NC,473,7713699727.896203,-7.017753136670194,0 +83,Feb,OH,599,10498316248.788332,-11.056430730370494,0 +84,Feb,OK,213,2812242854.1454225,5.118643685462075,0 +85,Feb,OR,241,3911663542.638091,-16.479908298284386,15 +86,Feb,PA,652,12104907351.771381,-7.66668826403793,0 +87,Feb,SC,256,3699343931.399225,-9.004156581856023,0 +88,Feb,TN,295,5414591986.51799,-12.573677216353303,15 +89,Feb,TX,997,17835758118.254707,-1.3210675908344456,0 +90,Feb,UT,151,2234479430.3961086,-16.770620720603688,11 +91,Feb,VT,27,442422058.7009178,-5.1889851045300475,0 +92,Feb,VA,408,7093918870.572657,1.331221844099673,0 +93,Feb,WA,354,6345221039.784683,-8.098841412868751,2 +94,Feb,WI,355,5612845320.170866,-13.838126972480495,30 +95,Feb,NE,121,1654344895.018912,6.5632118075509425,0 +96,Feb,ND,37,655168422.4648821,0.6497040497680473,-1 +97,Feb,RI,58,1057812700.8113961,0.3411778450707743,30 +98,Feb,SD,48,608118228.917038,-8.091619892533686,30 +99,Feb,WV,124,2165316715.2617216,15.877620009898692,0 +100,Feb,WY,41,638945771.8306189,-10.175019273969383,30 +101,Feb,AK,36,674622028.9183232,-12.635120723991463,30 +102,Mar,AL,282,4820960345.810608,-12.610934986052484,20 +103,Mar,AZ,285,4910288232.826552,-27.806961890360867,7 +104,Mar,AR,179,2460198049.047658,14.888535910396627,15 +105,Mar,CA,1697,31181032838.36003,-4.4030193805469935,0 +106,Mar,CO,336,4812061307.511513,-13.84039578652039,0 +107,Mar,CT,209,3393842301.8246045,9.612726793365255,0 +108,Mar,DE,60,833330376.4440901,18.38193487385024,-5 +109,Mar,DC,51,756129634.6232551,-8.563013749779998,0 +110,Mar,FL,986,16350275261.027481,0.014075770166186885,-13 +111,Mar,GA,445,7838735771.309457,4.353706397887436,-5 +112,Mar,HI,57,1234051029.1776495,-28.30563655702042,60 +113,Mar,ID,87,1814942136.70289,2.624203845551847,15 +114,Mar,IL,725,12711971035.081554,-3.877036070627014,0 +115,Mar,IN,390,7330375742.959576,-3.7514190081348033,0 +116,Mar,IA,238,3459690325.5688157,4.173714474226358,0 +117,Mar,KS,220,3128117106.07873,7.6646193611043145,0 +118,Mar,KY,299,4676920238.635747,-6.358748931781065,0 +119,Mar,LA,257,3872778107.0847526,-8.47143297940272,30 +120,Mar,ME,98,1623807509.1768858,-39.98955692776178,30 +121,Mar,MD,353,6115127715.326363,-6.780768255386988,0 +122,Mar,MA,370,7245683278.822421,1.5595411662363858,0 +123,Mar,MI,564,9744271036.585466,0.2100433070897907,0 +124,Mar,MN,386,6432875568.617161,2.234597322299237,0 +125,Mar,MS,195,2782342703.2968273,-16.236388323545384,15 +126,Mar,MO,358,5772361744.324101,-4.640094281723236,13 +127,Mar,MT,61,1023402517.8015666,-18.443202550170668,0 +128,Mar,NV,145,2155248192.707636,-24.371301571331173,30 +129,Mar,NH,70,1213264310.743929,16.76158743520989,15 +130,Mar,NJ,451,7810137759.171498,7.01287263674692,-15 +131,Mar,NM,141,1910838222.3333614,-25.846700881392394,30 +132,Mar,NY,966,17543404663.871334,-1.2838188667760733,-2 +133,Mar,NC,516,8952243156.019615,-4.734763340397649,0 +134,Mar,OH,668,12442032630.553473,7.7194657267258435,0 +135,Mar,OK,236,3601234929.2192855,6.156310472398104,0 +136,Mar,OR,245,4280478843.9884257,-11.183303977553692,0 +137,Mar,PA,777,14172131547.68285,4.5053266092571675,0 +138,Mar,SC,266,3650505966.4468155,-4.070736585387408,0 +139,Mar,TN,315,5409983456.580576,-3.1050762750516014,0 +140,Mar,TX,1188,22150188356.306442,-4.202994429759087,0 +141,Mar,UT,170,2891055704.3523583,5.563229103388153,0 +142,Mar,VT,42,481097319.53026,-45.87466697264517,30 +143,Mar,VA,501,7719083516.674862,2.798226307214918,-5 +144,Mar,WA,404,6370214799.422471,-9.789104863531975,16 +145,Mar,WI,388,7449935059.13869,-3.029742129185024,0 +146,Mar,NE,139,1709703590.8623157,-6.163323664186805,0 +147,Mar,ND,46,582622646.8069338,12.957857357254284,-30 +148,Mar,RI,62,1017083048.8094712,12.42817862641391,5 +149,Mar,SD,55,870265403.046803,40.99232764259352,0 +150,Mar,WV,111,1744183662.9946542,-9.03368553821474,0 +151,Mar,WY,36,761326246.106632,-51.75840580274746,30 +152,Mar,AK,33,609486939.785469,39.58893452498796,0 +153,Apr,AL,265,4545353377.606846,-18.603991249813248,25 +154,Apr,AZ,297,5628916162.9365015,-30.356316554903287,30 +155,Apr,AR,154,2583825091.3561687,-13.060199544692523,15 +156,Apr,CA,1614,33392758718.190517,-4.612430081958223,0 +157,Apr,CO,283,4591319310.380867,-20.377644183324946,0 +158,Apr,CT,202,3516908294.408216,14.939286554987575,0 +159,Apr,DE,45,832017695.7945832,42.14280202376574,0 +160,Apr,DC,37,548407172.706362,40.38622091908326,-31 +161,Apr,FL,848,16231466303.928942,-3.3511719287487267,0 +162,Apr,GA,436,9123227762.852367,14.989833317534362,0 +163,Apr,HI,35,457516120.89654595,23.769703375183894,30 +164,Apr,ID,83,1484934124.6506433,-10.114571569392297,0 +165,Apr,IL,708,12871751905.944214,-11.509583889560986,0 +166,Apr,IN,352,6990971861.761431,-3.556969258760887,0 +167,Apr,IA,218,3475894236.254883,2.5286790417480915,0 +168,Apr,KS,188,3664391739.766348,-10.086944510496664,0 +169,Apr,KY,235,3668989920.684433,-18.965837132862703,0 +170,Apr,LA,226,4110692616.993306,-20.047864302313087,27 +171,Apr,ME,91,1431885733.359869,-4.990252051972448,15 +172,Apr,MD,324,5473038427.540109,-10.48894173872236,0 +173,Apr,MA,332,7290297996.144422,-3.172600427108364,0 +174,Apr,MI,606,11365384562.490934,12.839346000107867,-30 +175,Apr,MN,338,5872322833.8103485,1.7839416825195258,0 +176,Apr,MS,156,2880047277.1924486,-11.411524771313566,25 +177,Apr,MO,370,6769512129.496274,-9.382066390819773,0 +178,Apr,MT,61,1002671690.9131713,-32.974283945461934,0 +179,Apr,NV,146,2525682596.669427,-7.799242898668922,10 +180,Apr,NH,92,1854295087.5960145,-4.324157936687925,25 +181,Apr,NJ,467,9009766007.896173,9.022907402371516,-15 +182,Apr,NM,124,1897897573.4676409,-21.13722412304287,5 +183,Apr,NY,856,16813725012.503597,3.9461016834397924,-4 +184,Apr,NC,523,9334042542.078928,1.2016861545606616,0 +185,Apr,OH,601,10801909535.587786,10.867864282765709,-19 +186,Apr,OK,177,3178094190.1605616,-13.013528973445773,0 +187,Apr,OR,222,3855252866.2678733,-9.867212374063683,0 +188,Apr,PA,672,13474013345.265745,8.498969807494177,0 +189,Apr,SC,244,4034860591.3657403,4.4065488658462755,-5 +190,Apr,TN,351,6589987550.428697,-11.585705867734418,6 +191,Apr,TX,1126,22105901465.91374,-1.9906994012621908,0 +192,Apr,UT,162,3087063187.564513,19.892617606512886,0 +193,Apr,VT,34,789002633.294753,31.150601047472833,-15 +194,Apr,VA,478,8617974029.4146,0.5905692432975229,0 +195,Apr,WA,345,6474102750.777499,-7.073327087740154,0 +196,Apr,WI,366,6507199320.970538,-15.109568734063487,5 +197,Apr,NE,108,1911720003.6862924,6.026542706081045,0 +198,Apr,ND,47,608574278.9802396,-16.03552873434637,-30 +199,Apr,RI,59,1028475623.980529,-51.414918781256006,30 +200,Apr,SD,59,931468947.6402158,-3.32955561406618,0 +201,Apr,WV,112,2234740028.1738076,-30.657336320095283,0 +202,Apr,WY,21,389844157.755938,-32.95729116248128,5 +203,Apr,AK,44,955439913.0031226,-21.85959294217423,0 +204,May,AL,260,4232410364.1910644,-21.456152515105487,20 +205,May,AZ,274,4869980997.609402,-27.420215736485602,30 +206,May,AR,188,2897417210.1047244,-6.521364942358446,5 +207,May,CA,1540,33550676918.261276,-2.323342401656987,0 +208,May,CO,312,5398729015.872258,-16.781112736774162,0 +209,May,CT,188,3055173362.6181145,-0.6575458882707608,0 +210,May,DE,44,745384214.8112963,11.030945597477512,3 +211,May,DC,35,576569271.6682053,-32.13230385521865,0 +212,May,FL,881,16118158774.159512,2.4596553681269597,0 +213,May,GA,408,8019875236.437598,-1.5694389192419749,0 +214,May,HI,48,811259244.2264867,-22.07717932705134,0 +215,May,ID,104,1861634496.8073213,10.095915833155914,0 +216,May,IL,665,12826856546.53931,-6.107701948646195,0 +217,May,IN,362,8106548451.125851,-17.107888151553084,0 +218,May,IA,178,3077154830.47065,-9.364139426738689,0 +219,May,KS,195,3235692101.0894427,4.368587872838134,5 +220,May,KY,258,4567393299.551556,-0.2472385317809085,0 +221,May,LA,232,3859469719.801538,14.195078351805819,10 +222,May,ME,74,1602711306.3609512,6.177063068144548,30 +223,May,MD,293,5297106124.105904,5.0687908541926845,0 +224,May,MA,322,5846178199.933386,2.099617072309343,0 +225,May,MI,512,10087219897.94573,-9.306856377241843,-20 +226,May,MN,356,6433799863.275913,8.704422189625916,0 +227,May,MS,156,2333939964.828731,-20.038205125094123,0 +228,May,MO,348,6632251352.498203,-29.029786289923322,0 +229,May,MT,68,1001793865.2653469,-27.577597036778798,30 +230,May,NV,139,2401293706.807368,-14.53911898209526,0 +231,May,NH,81,1425011134.2925942,4.508203704945004,0 +232,May,NJ,433,9433185183.316729,-5.595990535910005,0 +233,May,NM,129,1659203619.490236,1.525697901859985,3 +234,May,NY,785,15271100035.820278,-11.11649361729826,-9 +235,May,NC,465,9152613416.19749,6.458124284070664,0 +236,May,OH,607,12315989521.154339,-9.898001086890531,-20 +237,May,OK,236,3968427406.580381,-4.7713619981801685,0 +238,May,OR,246,4438141903.714709,1.5366001961203892,0 +239,May,PA,637,12557134264.532001,-10.44816027733657,0 +240,May,SC,247,3966130182.5328817,-2.4017496974501,0 +241,May,TN,283,6093881499.025261,-18.117328919753277,0 +242,May,TX,1073,20982850838.28942,3.305188179639117,0 +243,May,UT,184,3613234490.514857,-10.74107147480072,0 +244,May,VT,23,453914041.1302442,-26.84412558200313,30 +245,May,VA,428,8320608690.300938,-3.559196937801403,-9 +246,May,WA,308,6043469856.186263,-9.131303431416882,0 +247,May,WI,355,7077236383.150806,-8.826409097960436,30 +248,May,NE,112,2063079680.4381497,16.53535100094564,0 +249,May,ND,50,1079042062.0135753,2.1067238047095316,0 +250,May,RI,66,1169506181.698936,-13.049018042932971,9 +251,May,SD,49,878727810.0846109,-21.11428720850654,0 +252,May,WV,108,2093911998.1998065,2.732917069650398,-20 +253,May,WY,35,456359908.95157605,-51.354787612755786,60 +254,May,AK,39,685746138.9889522,35.17196231331229,0 +255,Jun,AL,283,4474739602.246463,-14.549869538697067,30 +256,Jun,AZ,289,5238978836.6043,-14.129938356358025,13 +257,Jun,AR,165,2895471714.6329403,-3.1644629569126437,10 +258,Jun,CA,1564,30033752603.477135,-5.157348144177149,0 +259,Jun,CO,309,4779709130.553852,-12.784700506081435,0 +260,Jun,CT,202,3948244272.0345974,-1.4863697990887204,0 +261,Jun,DE,55,905079301.455927,-61.64212678671686,-60 +262,Jun,DC,36,539501314.4924543,20.267358999612043,-30 +263,Jun,FL,891,16266465994.419098,6.236894142239635,0 +264,Jun,GA,402,7472170720.839482,4.098361053768485,-10 +265,Jun,HI,54,925576765.6539989,-17.24019669010056,0 +266,Jun,ID,95,1412336197.8596656,-2.8757864405171176,8 +267,Jun,IL,644,12944516590.57394,-12.022064651246637,0 +268,Jun,IN,372,7282430627.568274,1.4169125402249847,0 +269,Jun,IA,226,3581938493.1385965,-17.952891587817703,0 +270,Jun,KS,219,3304613765.406577,2.4353561728127033,0 +271,Jun,KY,264,4124482521.589381,-4.695284984284399,0 +272,Jun,LA,205,3067711475.894065,-24.29344076429868,10 +273,Jun,ME,55,833344499.0726937,-5.426106658480762,0 +274,Jun,MD,287,5321866500.440113,10.34337689064273,-30 +275,Jun,MA,312,5596132611.055558,-8.564155293471913,0 +276,Jun,MI,537,9600072181.174406,-0.9064894215789536,-30 +277,Jun,MN,360,6065934480.68444,-20.87708833254362,0 +278,Jun,MS,182,2880755766.0441666,-10.820593920873534,29 +279,Jun,MO,342,5373530639.146533,-13.764360967835046,0 +280,Jun,MT,58,837866991.6804069,-10.297784286722845,0 +281,Jun,NV,140,2324126031.5873494,-19.53147496972315,0 +282,Jun,NH,65,1083487674.655081,-10.96251993244664,30 +283,Jun,NJ,429,8470724879.154278,16.649092996047784,0 +284,Jun,NM,110,1864507711.291298,-29.840427651960567,0 +285,Jun,NY,866,16283374060.289404,11.14756880396203,-20 +286,Jun,NC,481,8531894617.331529,-1.012475328845312,0 +287,Jun,OH,597,11423884317.853783,19.022047663219496,-30 +288,Jun,OK,240,4093144167.212572,-5.744501612360978,0 +289,Jun,OR,233,3753135345.0176134,2.7410752365544795,-20 +290,Jun,PA,701,14142056336.526964,-5.4446280519524635,0 +291,Jun,SC,263,4015662232.739259,13.845097859792077,-10 +292,Jun,TN,307,6064748588.993725,14.82996643165825,0 +293,Jun,TX,1083,20812207583.62748,-7.8882273827777,0 +294,Jun,UT,168,3264052215.280054,-13.834678860783924,-30 +295,Jun,VT,43,944446250.2452279,-1.6048726166238794,30 +296,Jun,VA,439,7335859557.482198,1.9658580087653945,-13 +297,Jun,WA,326,5586683270.14609,-4.008393460977459,0 +298,Jun,WI,349,5768447003.132259,-14.17083158291075,0 +299,Jun,NE,115,1911868683.4681466,-33.69000822545377,0 +300,Jun,ND,38,787303277.422542,-2.4557830999552834,0 +301,Jun,RI,64,858328558.5044342,9.292238399494295,0 +302,Jun,SD,49,663636401.9151609,-25.73317539883078,0 +303,Jun,WV,102,1454185921.1613789,-3.3258985275481336,0 +304,Jun,WY,29,454814982.2829779,-20.278461922883366,37 +305,Jun,AK,26,433590301.5230699,41.0184980880515,-42 +306,July,AL,265,4623095157.742597,-9.12443762649184,25 +307,July,AZ,255,5012048175.675645,-26.637019850628917,0 +308,July,AR,157,3067359827.692923,-13.0451881219102,0 +309,July,CA,1505,29899340412.633,-1.6492377540839698,0 +310,July,CO,286,4676312408.996825,-16.7401857120459,0 +311,July,CT,197,3125570205.66655,12.446792159661868,-10 +312,July,DE,45,898775158.0961839,-16.349162186019498,0 +313,July,DC,54,781583349.3235077,-2.753200932445793,-5 +314,July,FL,900,17178455713.234467,1.8559933852382073,-8 +315,July,GA,421,8559621801.987247,5.587799875486894,0 +316,July,HI,45,735974044.8163931,-22.98264587542235,28 +317,July,ID,91,1276325446.5677752,-6.800566112750857,-30 +318,July,IL,694,13126602622.068523,-14.292178770181295,0 +319,July,IN,329,6319591640.86917,-0.5482322931954968,0 +320,July,IA,180,2789499972.9110303,-9.5765396908904,0 +321,July,KS,192,3135221124.07444,-5.64384776216923,0 +322,July,KY,284,4706037817.076679,-6.769274998314131,-20 +323,July,LA,215,3912978279.8449264,-10.349839574377825,0 +324,July,ME,96,1632577788.1506279,-55.729804299722446,30 +325,July,MD,308,5564498623.025823,-14.414197475381002,-30 +326,July,MA,330,6889901935.300478,17.35700362188402,-24 +327,July,MI,531,10525377678.12523,3.149032507150423,-30 +328,July,MN,350,5842233938.343931,-19.538985060107848,0 +329,July,MS,173,3552449831.0961213,-10.600686500037455,0 +330,July,MO,312,5340383287.060106,-19.13756060972969,0 +331,July,MT,57,963370189.2795134,-6.224833321008191,0 +332,July,NV,132,2084162564.8120673,-21.918120738774178,24 +333,July,NH,67,1398495262.1556923,-46.781017644210465,30 +334,July,NJ,427,8220731739.954223,16.82037641434067,-12 +335,July,NM,127,2254104594.1527495,-16.255507281940595,0 +336,July,NY,858,16033648597.370863,9.186373006913641,-15 +337,July,NC,470,9118327400.181475,-0.7115471388513015,0 +338,July,OH,632,12981343137.46132,-3.256973515653044,-30 +339,July,OK,207,3007660084.99866,-4.11214861330734,0 +340,July,OR,231,4319352868.302605,-14.49462888638152,0 +341,July,PA,711,14281604589.550344,-2.207578076084701,0 +342,July,SC,259,4178217601.3012195,10.894030498429629,0 +343,July,TN,291,6050016182.291098,-6.639068239057792,4 +344,July,TX,1173,23086169966.046024,-1.3134105206581808,0 +345,July,UT,154,2802771287.3462667,2.7666048366220366,-30 +346,July,VT,30,503194661.753783,-29.799030031096663,30 +347,July,VA,464,8217887279.155638,-6.170718624873643,-14 +348,July,WA,375,6721976542.579267,1.3836767390736213,-10 +349,July,WI,349,6028459381.942889,-28.092606651583424,0 +350,July,NE,114,1930367479.97492,-11.342156827927397,0 +351,July,ND,39,691986958.961978,-11.161574805344685,0 +352,July,RI,62,1179686513.3225498,-55.32896017158669,0 +353,July,SD,60,1228922001.7397196,-13.504490223389666,0 +354,July,WV,103,1842491973.6655333,-1.85680397255976,-15 +355,July,WY,36,664673361.8360131,6.340020373328116,-30 +356,July,AK,28,427122847.08929276,2.4340800999993917,30 +357,Aug,AL,263,4514730740.55387,-31.218778203377383,18 +358,Aug,AZ,302,6226737267.0423155,-12.231567229329244,30 +359,Aug,AR,159,2603600017.349863,-11.598616028606443,0 +360,Aug,CA,1541,31919730566.09396,-5.224636794250273,0 +361,Aug,CO,283,5312102023.9574175,2.5795145517245146,0 +362,Aug,CT,183,3387561512.943229,13.035034100112398,0 +363,Aug,DE,43,815134308.5168855,18.701960200445455,0 +364,Aug,DC,40,833106068.6770109,14.512483590897773,0 +365,Aug,FL,835,15218168045.416052,6.759207967016891,-5 +366,Aug,GA,413,7941573236.663953,7.600060331698046,-15 +367,Aug,HI,52,1073610697.4258641,-25.80473285010794,0 +368,Aug,ID,103,1769083726.4743168,-8.95351766510521,0 +369,Aug,IL,659,12735102342.727276,-5.157780411477802,0 +370,Aug,IN,345,6990676784.907407,-17.518165190663126,0 +371,Aug,IA,216,3857067774.204428,6.883147413710958,0 +372,Aug,KS,172,2956693486.089518,-5.027422151577184,0 +373,Aug,KY,263,4593154149.070099,-12.748983177197374,0 +374,Aug,LA,220,4286136762.2671733,-2.394291723594165,0 +375,Aug,ME,75,1508690998.0191166,-52.40849292223584,30 +376,Aug,MD,318,6852475856.927772,20.541224968250276,-30 +377,Aug,MA,336,6731882616.339707,5.2339603680597975,0 +378,Aug,MI,577,10479737394.262196,6.003155421226438,-15 +379,Aug,MN,374,6824776574.118354,-7.899121894287532,0 +380,Aug,MS,178,3146771639.956837,-14.797329165775068,26 +381,Aug,MO,321,5745008458.959866,-7.281249942448312,0 +382,Aug,MT,55,735670815.0980518,5.800660297695799,0 +383,Aug,NV,141,2570127634.7481084,-26.496372042414237,30 +384,Aug,NH,81,1710312150.4740903,2.5429169239331486,0 +385,Aug,NJ,417,7877499390.384023,4.352776410501633,-25 +386,Aug,NM,129,1921193125.2653275,-24.3658563450914,13 +387,Aug,NY,911,17238553760.809105,-2.008800616366102,-20 +388,Aug,NC,522,9227869867.663221,-11.787231185146197,-5 +389,Aug,OH,612,11988587049.720457,-3.99491065382108,-30 +390,Aug,OK,200,3532897953.1446075,-11.097945232648385,0 +391,Aug,OR,241,4339444182.073283,-4.163236361535837,0 +392,Aug,PA,680,13988465619.324165,-10.670594442865308,0 +393,Aug,SC,262,4307955138.743373,-10.142413994380263,0 +394,Aug,TN,313,6119095124.130107,-11.909435040260405,0 +395,Aug,TX,1197,23798919580.73222,-8.860983543239513,0 +396,Aug,UT,133,2560444879.020845,-9.803577201803137,0 +397,Aug,VT,39,502204823.5676832,8.640639377122739,-15 +398,Aug,VA,434,7857014159.794869,18.379827930213764,-10 +399,Aug,WA,347,6431894657.589538,-18.20516380742731,0 +400,Aug,WI,377,6389857849.888933,-7.006499122416244,0 +401,Aug,NE,133,2259643837.737822,5.081903974034049,0 +402,Aug,ND,44,661949422.9287491,-25.77580696728444,-30 +403,Aug,RI,58,977732787.4015753,-28.287757993846185,3 +404,Aug,SD,65,1217352910.9185944,-15.789492937988484,-10 +405,Aug,WV,92,1736993468.0524466,7.26459495824372,0 +406,Aug,WY,30,563165339.8748782,-1.109149885165266,-30 +407,Aug,AK,26,401488566.919879,29.022238607229838,0 +408,Sep,AL,239,4223336329.2930055,-9.931149885067725,0 +409,Sep,AZ,275,5185405658.3233595,-14.778612531027875,30 +410,Sep,AR,189,3726711234.6998477,-2.9796586589257004,15 +411,Sep,CA,1546,31194783346.741146,-4.7281967931425015,0 +412,Sep,CO,268,4400523033.075882,5.170034265837103,15 +413,Sep,CT,204,3369549572.4973745,13.914628380036902,0 +414,Sep,DE,42,700720323.5924549,34.49679181749343,0 +415,Sep,DC,35,347158618.5939969,22.334281928409382,-30 +416,Sep,FL,838,15501397654.091284,0.3866830407398538,0 +417,Sep,GA,433,8839657095.867123,0.3987800204247378,-3 +418,Sep,HI,39,702481093.7573448,-18.418567202647523,-30 +419,Sep,ID,85,1303116251.7447314,-4.760843889765738,0 +420,Sep,IL,659,11946488433.5344,-10.006296448262674,0 +421,Sep,IN,326,6988278273.702606,9.97346060172697,0 +422,Sep,IA,182,2999174933.9151936,-5.087392310961377,0 +423,Sep,KS,160,2757497928.0488377,-3.7402775192496165,0 +424,Sep,KY,260,4673969789.046483,7.673393561501143,0 +425,Sep,LA,226,3942603476.807717,3.9764371085449284,0 +426,Sep,ME,79,1421730570.3413615,4.910376678128159,5 +427,Sep,MD,292,5674829199.213039,0.8332365995548798,0 +428,Sep,MA,333,6010339744.304591,-11.166035707479864,0 +429,Sep,MI,523,10601265120.215525,7.174751548163613,-14 +430,Sep,MN,342,5496374452.439429,-7.862725451647975,0 +431,Sep,MS,163,2792396409.051387,-12.804569777117308,30 +432,Sep,MO,345,5954713519.48097,-17.157705135452147,11 +433,Sep,MT,61,937119427.86814,15.86266336172946,9 +434,Sep,NV,130,2185620966.47121,-31.609657396680745,10 +435,Sep,NH,66,929336840.2129537,-3.134601658755855,0 +436,Sep,NJ,431,8441634034.045566,5.736804626178468,-1 +437,Sep,NM,127,1941617901.4036055,-10.875254840652246,0 +438,Sep,NY,897,17578070787.729847,9.775620740424642,-20 +439,Sep,NC,471,9789790263.629126,-9.89610709935846,0 +440,Sep,OH,569,12247192088.396267,-2.254268016385595,0 +441,Sep,OK,222,3684499253.792857,-22.19358472623594,0 +442,Sep,OR,241,4036158117.389864,0.8802085101567627,21 +443,Sep,PA,672,13619389422.169943,0.5506922051882839,0 +444,Sep,SC,216,3326394720.414948,19.302470623683007,0 +445,Sep,TN,282,5587250184.468258,-9.514020403780478,15 +446,Sep,TX,1067,20329489584.57288,-6.664996749195325,0 +447,Sep,UT,157,2702358621.123317,2.4997100420682727,0 +448,Sep,VT,32,574547792.372944,-41.53331393834526,30 +449,Sep,VA,461,8872126611.669905,-1.4819640402099594,0 +450,Sep,WA,356,6815811896.965548,4.317050308353032,0 +451,Sep,WI,345,5997898302.885914,-24.857080028290966,30 +452,Sep,NE,101,1785328987.0067418,2.7157107557846984,7 +453,Sep,ND,52,891532658.516012,-21.651019531449265,0 +454,Sep,RI,48,699649436.7867562,-0.4910293906117431,0 +455,Sep,SD,48,802277930.2860022,29.241872934180265,0 +456,Sep,WV,114,2144368261.6947153,4.159999748652126,0 +457,Sep,WY,29,585673742.0384002,-16.009318230386043,30 +458,Sep,AK,28,520879504.68253475,26.4756706359791,0 +459,Oct,AL,288,5293733211.491432,-12.348400186422055,30 +460,Oct,AZ,274,5618672010.686819,-40.293971678180924,30 +461,Oct,AR,160,2414668624.6951447,-28.740142878203415,30 +462,Oct,CA,1559,31117455775.292942,-5.046084487441931,0 +463,Oct,CO,327,5503442332.237095,3.0431731745570687,0 +464,Oct,CT,200,3359595976.545434,-9.922298712882366,0 +465,Oct,DE,42,918255314.647329,20.902760991204218,-11 +466,Oct,DC,51,799990669.539036,29.11153285019509,-31 +467,Oct,FL,886,17670748703.501324,11.146371483237544,0 +468,Oct,GA,396,6935984312.610597,8.858985145519,0 +469,Oct,HI,48,979943093.3672328,-44.107635872833384,0 +470,Oct,ID,100,1557739573.095065,-4.213237428029743,0 +471,Oct,IL,646,12344949951.424809,6.9704582012965375,0 +472,Oct,IN,356,7594197583.292417,-26.640919276898217,0 +473,Oct,IA,197,3108153643.3180323,-21.5074990035954,5 +474,Oct,KS,198,3357530202.9637923,-6.9508902890682975,0 +475,Oct,KY,280,5160485214.28805,-8.216572751807803,0 +476,Oct,LA,228,4315019840.444842,-6.448941093954659,20 +477,Oct,ME,73,1257047073.2522485,-40.81393388615595,30 +478,Oct,MD,306,6309649760.188026,6.090727162951225,-22 +479,Oct,MA,310,6115906971.549138,0.2797476430345114,0 +480,Oct,MI,538,10698198255.978077,16.93169665208802,-14 +481,Oct,MN,360,6310396573.856352,20.05872869173436,0 +482,Oct,MS,151,2629147978.0884438,-38.04847027386279,30 +483,Oct,MO,348,7024531892.727447,-17.984037507252765,0 +484,Oct,MT,66,1296245456.4216673,-56.52049595567394,30 +485,Oct,NV,115,2056567449.6160254,-33.97311653130896,30 +486,Oct,NH,76,1265112405.6490362,1.3317403701273633,20 +487,Oct,NJ,412,8902553161.296192,9.279349874891182,-15 +488,Oct,NM,115,1714517041.4408398,29.249453316361837,30 +489,Oct,NY,879,17044585979.943937,-0.015227014983565823,-15 +490,Oct,NC,476,8624982847.081488,18.306568033339545,0 +491,Oct,OH,641,12418067006.36168,3.9666185130356553,0 +492,Oct,OK,257,3974417383.5067697,-11.668621726780088,0 +493,Oct,OR,220,4024765014.34853,12.661710141636263,0 +494,Oct,PA,682,14706614189.92426,-4.797760428188667,0 +495,Oct,SC,265,3951683284.7608104,-5.918855428215238,-11 +496,Oct,TN,314,6499200682.148956,0.7927729070898977,0 +497,Oct,TX,1101,21935765674.340332,4.586336007316731,0 +498,Oct,UT,180,3503780571.1102624,-0.21839436984316762,0 +499,Oct,VT,39,461773655.664996,-6.273694671901126,0 +500,Oct,VA,443,8372787448.15353,16.180433337629893,-15 +501,Oct,WA,373,7278495895.041048,3.585343558170848,0 +502,Oct,WI,374,7625767596.811182,-2.987102240184754,15 +503,Oct,NE,109,1743243278.260685,-13.289132258654035,0 +504,Oct,ND,49,971815592.866176,-10.387734795432266,0 +505,Oct,RI,46,763456860.358554,-23.766502575155982,0 +506,Oct,SD,51,851338255.8732342,8.425710250798943,-30 +507,Oct,WV,112,1955879600.7499623,-14.031940979358183,0 +508,Oct,WY,29,316493258.17611295,-3.979942859676953,0 +509,Oct,AK,30,505581139.6181448,21.355076415614235,0 +510,Nov,AL,273,4882156126.237691,-10.841600397624006,0 +511,Nov,AZ,254,5209609164.130845,-17.82378050086686,30 +512,Nov,AR,144,2372667598.1710563,-0.2802210334658639,0 +513,Nov,CA,1541,31047182273.911568,-9.670192059461101,0 +514,Nov,CO,295,5616753655.726931,-15.095071767896002,7 +515,Nov,CT,179,3123816533.5702634,-14.176216286644717,30 +516,Nov,DE,45,648432789.628825,26.780907808083953,-30 +517,Nov,DC,33,701404681.0957798,31.2237822827625,-31 +518,Nov,FL,805,14785595537.76787,1.5170136982285385,0 +519,Nov,GA,425,9133304712.332943,-9.405417246919114,0 +520,Nov,HI,46,865321129.5404052,18.324363079937598,-30 +521,Nov,ID,87,1409361290.4892473,-14.883806175607106,33 +522,Nov,IL,619,12126817644.49354,-4.957626877371013,0 +523,Nov,IN,332,6418910684.497859,-10.460995072219134,0 +524,Nov,IA,224,3310536461.5477796,-8.87118128497309,0 +525,Nov,KS,160,2599843678.6561594,7.305107486356974,0 +526,Nov,KY,249,4183712283.6692166,-11.008669771027144,0 +527,Nov,LA,208,3573627290.59213,-48.87256833629078,25 +528,Nov,ME,77,1534139837.3185358,-46.89735745574717,47 +529,Nov,MD,312,5482267718.257624,-2.3705979031175275,0 +530,Nov,MA,331,6485542267.779938,2.65744044477799,0 +531,Nov,MI,544,11053986406.712902,1.306770141681227,0 +532,Nov,MN,351,5953490468.514309,-15.226769301787385,0 +533,Nov,MS,161,2530717662.104407,-24.52703775400505,35 +534,Nov,MO,338,5966507632.086328,-17.04654261021676,30 +535,Nov,MT,53,1027448569.9030796,-14.613869643554153,30 +536,Nov,NV,128,2188081158.5274053,-17.051194823106243,29 +537,Nov,NH,75,1447103411.3528292,-5.092741825509847,0 +538,Nov,NJ,392,7516519025.832437,4.921056999690791,0 +539,Nov,NM,103,1426213191.4886189,-23.844915177030884,30 +540,Nov,NY,853,16702190941.394667,-3.915085950813591,0 +541,Nov,NC,478,9602112978.863764,7.429326905291532,0 +542,Nov,OH,579,11979948469.651283,-12.64208755878144,0 +543,Nov,OK,194,2992872832.8273954,22.161743026736758,0 +544,Nov,OR,199,3958590305.0379033,-3.6714616090986283,0 +545,Nov,PA,659,13202701976.158386,-9.259741400629991,0 +546,Nov,SC,267,4982390530.8982,10.067076314252631,-4 +547,Nov,TN,316,6345614346.6442175,-22.456330043950175,9 +548,Nov,TX,1084,23016832370.231976,-0.9839423050643745,0 +549,Nov,UT,171,3056534229.6676283,-1.3174877946206607,0 +550,Nov,VT,42,736576595.7952905,-62.93170098573387,60 +551,Nov,VA,435,8592453993.300503,-9.620447624261487,0 +552,Nov,WA,363,6792370419.778321,2.38022346576588,0 +553,Nov,WI,346,6266919668.916316,-3.6348382279766156,0 +554,Nov,NE,124,1947298622.2253036,9.302487787436576,0 +555,Nov,ND,36,563691953.1479949,19.05491081582568,0 +556,Nov,RI,55,1072213231.4024358,-55.479247335826926,30 +557,Nov,SD,43,749088245.3267571,23.221825238837823,10 +558,Nov,WV,105,1973633853.8085425,-21.418543913223402,30 +559,Nov,WY,36,825427768.0097871,21.773849046963278,30 +560,Nov,AK,25,350645904.1067259,34.98470641390145,15 +561,Dec,AL,248,4052661990.5918827,-28.506437626279308,30 +562,Dec,AZ,250,4354087517.383864,-39.876949236771,30 +563,Dec,AR,167,2808312073.771635,-12.215221565040565,15 +564,Dec,CA,1459,30334319287.01471,-7.969592446576598,0 +565,Dec,CO,282,5271587100.953048,-8.05737578570745,0 +566,Dec,CT,169,2967509713.285758,-21.05233920066553,0 +567,Dec,DE,60,1108661060.409402,-4.692905448304259,0 +568,Dec,DC,32,427723468.18739116,6.588164785497611,-60 +569,Dec,FL,815,15817169687.117638,1.901963498095597,-6 +570,Dec,GA,415,8760032108.130953,0.6713009293382584,-20 +571,Dec,HI,44,745465995.3582728,-58.168806994285774,30 +572,Dec,ID,91,1903228360.2536993,5.396120427556184,0 +573,Dec,IL,634,12426890066.490356,-4.577968310443907,0 +574,Dec,IN,369,7805582525.069725,-6.388144802241754,0 +575,Dec,IA,203,3551947031.0836043,-7.273342251924419,0 +576,Dec,KS,156,2561936702.2877874,-12.643182086941124,0 +577,Dec,KY,258,4956565199.31428,2.312633923845965,-11 +578,Dec,LA,223,3690672563.4359117,-10.78858254909835,29 +579,Dec,ME,74,1248319676.593391,-19.87701102222161,30 +580,Dec,MD,295,5467399929.675827,18.190035711216638,0 +581,Dec,MA,337,6935715581.350615,-21.134815698381544,1 +582,Dec,MI,539,10762075612.899063,5.002756903773047,-1 +583,Dec,MN,355,6552934127.827269,-10.244842932519873,0 +584,Dec,MS,175,2998673539.781294,-23.22402197681663,30 +585,Dec,MO,314,5878592387.810089,-10.246760409906983,0 +586,Dec,MT,52,963129820.1470933,-46.11062408827172,30 +587,Dec,NV,140,3084320905.5365233,-1.0842440934683282,0 +588,Dec,NH,67,1079912116.4096417,-25.008900919914254,15 +589,Dec,NJ,406,8576979514.333734,14.659432669158036,0 +590,Dec,NM,127,1779004137.668842,-34.60524912864798,30 +591,Dec,NY,836,17638742685.630188,7.196782378377748,-14 +592,Dec,NC,478,9290130966.855522,17.276660392016538,-6 +593,Dec,OH,578,12303001751.634512,-15.255977994539876,0 +594,Dec,OK,204,3275084551.7795615,20.64795995380905,0 +595,Dec,OR,225,4211248169.657883,-0.13299101580696515,0 +596,Dec,PA,656,15370157514.38166,2.899516953847524,0 +597,Dec,SC,254,4254237930.2253623,-26.21748825250097,0 +598,Dec,TN,267,5338876090.6356945,-8.44595445591358,0 +599,Dec,TX,1149,24633921922.3137,-11.568507399693772,0 +600,Dec,UT,138,2798365836.381611,10.27292645795319,0 +601,Dec,VT,34,652160598.7689722,20.125508148172457,0 +602,Dec,VA,444,8192463542.448703,5.6140789644520055,0 +603,Dec,WA,342,6879809869.564644,2.2663515983282423,0 +604,Dec,WI,339,6726191336.976771,-24.92282001823139,12 +605,Dec,NE,104,2006242138.88688,1.3294512637090747,6 +606,Dec,ND,41,773457702.3260839,41.433114067745464,-30 +607,Dec,RI,61,1256930815.7085152,-3.493761129768245,4 +608,Dec,SD,52,842472809.8404261,9.905745377848461,-15 +609,Dec,WV,89,1563887791.3803394,-14.811237778821692,0 +610,Dec,WY,29,451177306.2380711,-6.626111182503678,30 +611,Dec,AK,22,400648797.053984,-2.618621530264136,15 diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/resources/schedules_weekend_state_and_monthly_schedule_shift.csv b/example_files/resources/hpxml-measures/BuildResidentialHPXML/resources/schedules_weekend_state_and_monthly_schedule_shift.csv new file mode 100644 index 00000000..888e00fb --- /dev/null +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/resources/schedules_weekend_state_and_monthly_schedule_shift.csv @@ -0,0 +1,613 @@ +Index,Month,State,Sample Count,Weight,Offset,Lead +0,Jan,AL,322,4770479685.057039,-22.830858127581905,30 +1,Jan,AZ,386,6683098926.140461,6.560959849522874,0 +2,Jan,AR,215,3582636447.758686,-1.3006567338785544,30 +3,Jan,CA,1917,34799947923.171265,15.506115797747611,0 +4,Jan,CO,353,5095475556.302463,3.4654758823922975,25 +5,Jan,CT,250,4293334091.0490756,15.375498094717273,-17 +6,Jan,DE,59,1178861846.1594372,26.487526426956947,0 +7,Jan,DC,53,634409131.0906543,14.146763868590256,-30 +8,Jan,FL,1065,17638867080.320923,23.73102554645618,0 +9,Jan,GA,533,10018924398.838549,26.41337256574286,0 +10,Jan,HI,59,857258587.5998942,-7.437751447952223,22 +11,Jan,ID,106,1705272985.2992196,-15.081185758781544,30 +12,Jan,IL,797,13603625760.265057,7.450403561030157,0 +13,Jan,IN,427,7503702561.474615,10.697029211119116,0 +14,Jan,IA,253,3977290898.4515333,6.058452733907529,0 +15,Jan,KS,240,3514267206.500655,11.58475449042919,0 +16,Jan,KY,314,4557957092.249637,26.968740221124563,0 +17,Jan,LA,284,4168927922.9033165,-6.318394077885159,15 +18,Jan,ME,90,1540082488.2779734,24.63318695692442,0 +19,Jan,MD,403,6696012251.0296335,19.5817725824146,-15 +20,Jan,MA,415,6935140779.008692,19.32260116643613,0 +21,Jan,MI,714,12553483306.033571,25.32882195832451,-10 +22,Jan,MN,415,6485604427.354405,-0.5916596205080396,0 +23,Jan,MS,188,2775040490.279479,0.08751102591816107,12 +24,Jan,MO,389,6226571400.794956,16.03022421999401,0 +25,Jan,MT,72,908474341.489644,16.421464494303223,0 +26,Jan,NV,194,3118012343.82333,-18.664198169354904,27 +27,Jan,NH,102,1810890293.3642685,-28.9056526944006,30 +28,Jan,NJ,567,9226406264.504179,19.47384747871331,0 +29,Jan,NM,166,2359370915.6764345,-14.522447024125995,30 +30,Jan,NY,1034,16433875470.544922,8.40306829019903,0 +31,Jan,NC,574,9713522725.509409,4.498806594282655,0 +32,Jan,OH,753,11655558048.949366,24.91094878661056,-7 +33,Jan,OK,253,3398948138.1308637,6.526694681587401,0 +34,Jan,OR,314,5134925064.998184,25.57025872355655,0 +35,Jan,PA,836,15565754037.642654,3.020645673759077,0 +36,Jan,SC,321,4495193243.112128,21.42763387839568,-5 +37,Jan,TN,360,6526632027.194073,-0.48395003960547456,8 +38,Jan,TX,1414,25611915019.355957,7.4510471094143895,0 +39,Jan,UT,182,3145097461.4076686,19.237851542822682,0 +40,Jan,VT,41,847602964.8727119,3.287739651899983,30 +41,Jan,VA,535,8241744916.778457,-2.4228081898038454,0 +42,Jan,WA,425,7224982816.163771,4.530889076451217,0 +43,Jan,WI,447,7483215644.490423,-16.6487287611003,30 +44,Jan,NE,137,2071211969.696039,4.482735144846174,0 +45,Jan,ND,48,678965747.7387099,25.21877467617071,0 +46,Jan,RI,70,1249513391.777745,-3.7978346870806945,0 +47,Jan,SD,56,763845304.9753928,17.723491162965615,0 +48,Jan,WV,122,2013734386.417349,31.626715734556797,0 +49,Jan,WY,37,709554665.3658283,7.401799772876302,30 +50,Jan,AK,42,527809194.88608015,-16.546936480796944,3 +51,Feb,AL,272,4295975754.631793,-12.192432142501048,30 +52,Feb,AZ,297,4819620788.284443,-18.783607285887115,30 +53,Feb,AR,141,2123000006.4149928,1.0116987611297645,5 +54,Feb,CA,1517,28189662542.430866,12.688518170096586,0 +55,Feb,CO,289,4223311733.3730035,4.643418310141328,23 +56,Feb,CT,164,2875217228.6055408,26.25451096849622,0 +57,Feb,DE,41,593388637.26184,68.9475213109539,-50 +58,Feb,DC,32,359958101.427902,17.519456883524754,0 +59,Feb,FL,790,13457855221.613382,21.438604945801558,0 +60,Feb,GA,429,8517525310.08934,27.295159388939396,0 +61,Feb,HI,53,910129187.1172825,9.885566320107955,0 +62,Feb,ID,99,1298985980.0633974,11.592815662627459,0 +63,Feb,IL,612,10800651522.77236,-0.23631876467561597,0 +64,Feb,IN,332,5660572088.96163,20.711442332960132,0 +65,Feb,IA,199,2648402280.8375015,8.031198571008531,0 +66,Feb,KS,183,2705247422.8888726,2.522016391889565,30 +67,Feb,KY,245,3433812063.4742193,11.734475950059732,0 +68,Feb,LA,237,3663390375.4709854,-13.402914671539634,30 +69,Feb,ME,70,1117904077.3112333,2.2137513449102926,0 +70,Feb,MD,285,4368150188.836962,8.646696253076811,0 +71,Feb,MA,319,5470515179.128872,1.4261900598127113,0 +72,Feb,MI,521,8897879964.490149,22.79111588216267,0 +73,Feb,MN,354,5679666392.337878,2.1071209493742344,25 +74,Feb,MS,161,2311973428.9336925,-15.903648029874262,30 +75,Feb,MO,366,6086099759.58458,-0.43671225333605435,12 +76,Feb,MT,61,1112342533.398297,26.02714238141266,-30 +77,Feb,NV,122,1925322304.451198,18.02142707292637,0 +78,Feb,NH,82,1516623953.262094,-7.164416665490876,30 +79,Feb,NJ,408,7297238295.5594225,12.45943052716052,0 +80,Feb,NM,111,1605272770.6076245,16.3758147226323,22 +81,Feb,NY,887,14329146718.834705,14.536834698093003,-15 +82,Feb,NC,473,7713699727.896203,3.215181873706001,0 +83,Feb,OH,599,10498316248.788332,-0.8234957199942983,0 +84,Feb,OK,213,2812242854.1454225,15.35157869583827,0 +85,Feb,OR,241,3911663542.638091,-6.24697328790819,30 +86,Feb,PA,652,12104907351.771381,2.5662467463382654,0 +87,Feb,SC,256,3699343931.399225,1.2287784285201724,0 +88,Feb,TN,295,5414591986.51799,-2.340742205977108,15 +89,Feb,TX,997,17835758118.254707,8.91186741954175,0 +90,Feb,UT,151,2234479430.3961086,-6.537685710227493,20 +91,Feb,VT,27,442422058.7009178,5.043949905846148,0 +92,Feb,VA,408,7093918870.572657,11.564156854475868,0 +93,Feb,WA,354,6345221039.784683,2.1340935975074444,10 +94,Feb,WI,355,5612845320.170866,-3.6051919621043,30 +95,Feb,NE,121,1654344895.018912,16.796146817927138,0 +96,Feb,ND,37,655168422.4648821,10.882639060144243,0 +97,Feb,RI,58,1057812700.8113961,10.57411285544697,24 +98,Feb,SD,48,608118228.917038,2.1413151178425096,30 +99,Feb,WV,124,2165316715.2617216,26.110555020274887,0 +100,Feb,WY,41,638945771.8306189,0.05791573640681236,30 +101,Feb,AK,36,674622028.9183232,-2.4021857136152676,33 +102,Mar,AL,282,4820960345.810608,-2.377999975676289,30 +103,Mar,AZ,285,4910288232.826552,-17.57402687998467,24 +104,Mar,AR,179,2460198049.047658,25.121470920772822,0 +105,Mar,CA,1697,31181032838.36003,5.829915629829202,0 +106,Mar,CO,336,4812061307.511513,-3.607460776144194,20 +107,Mar,CT,209,3393842301.8246045,19.84566180374145,0 +108,Mar,DE,60,833330376.4440901,28.614869884226437,-10 +109,Mar,DC,51,756129634.6232551,1.6699212605961975,0 +110,Mar,FL,986,16350275261.027481,10.247010780542382,0 +111,Mar,GA,445,7838735771.309457,14.586641408263631,0 +112,Mar,HI,57,1234051029.1776495,-18.072701546644225,60 +113,Mar,ID,87,1814942136.70289,12.857138855928042,22 +114,Mar,IL,725,12711971035.081554,6.355898939749181,0 +115,Mar,IN,390,7330375742.959576,6.481516002241392,0 +116,Mar,IA,238,3459690325.5688157,14.406649484602553,0 +117,Mar,KS,220,3128117106.07873,17.89755437148051,0 +118,Mar,KY,299,4676920238.635747,3.8741860785951303,0 +119,Mar,LA,257,3872778107.0847526,1.7615020309734746,30 +120,Mar,ME,98,1623807509.1768858,-29.756621917385587,30 +121,Mar,MD,353,6115127715.326363,3.452166754989207,0 +122,Mar,MA,370,7245683278.822421,11.792476176612581,0 +123,Mar,MI,564,9744271036.585466,10.442978317465986,0 +124,Mar,MN,386,6432875568.617161,12.467532332675432,0 +125,Mar,MS,195,2782342703.2968273,-6.003453313169189,15 +126,Mar,MO,358,5772361744.324101,5.592840728652959,20 +127,Mar,MT,61,1023402517.8015666,-8.210267539794472,30 +128,Mar,NV,145,2155248192.707636,-14.138366560954978,30 +129,Mar,NH,70,1213264310.743929,26.994522445586085,28 +130,Mar,NJ,451,7810137759.171498,17.245807647123115,-10 +131,Mar,NM,141,1910838222.3333614,-15.613765871016199,30 +132,Mar,NY,966,17543404663.871334,8.949116143600122,-2 +133,Mar,NC,516,8952243156.019615,5.498171669978547,0 +134,Mar,OH,668,12442032630.553473,17.95240073710204,-3 +135,Mar,OK,236,3601234929.2192855,16.3892454827743,0 +136,Mar,OR,245,4280478843.9884257,-0.9503689671774964,30 +137,Mar,PA,777,14172131547.68285,14.738261619633363,0 +138,Mar,SC,266,3650505966.4468155,6.162198424988787,0 +139,Mar,TN,315,5409983456.580576,7.127858735324594,0 +140,Mar,TX,1188,22150188356.306442,6.029940580617108,0 +141,Mar,UT,170,2891055704.3523583,15.796164113764348,0 +142,Mar,VT,42,481097319.53026,-35.64173196226898,30 +143,Mar,VA,501,7719083516.674862,13.031161317591113,0 +144,Mar,WA,404,6370214799.422471,0.4438301468442205,30 +145,Mar,WI,388,7449935059.13869,7.203192881191171,0 +146,Mar,NE,139,1709703590.8623157,4.06961134618939,10 +147,Mar,ND,46,582622646.8069338,23.19079236763048,-30 +148,Mar,RI,62,1017083048.8094712,22.661113636790105,0 +149,Mar,SD,55,870265403.046803,51.22526265296972,-5 +150,Mar,WV,111,1744183662.9946542,1.1992494721614548,0 +151,Mar,WY,36,761326246.106632,-41.525470792371266,30 +152,Mar,AK,33,609486939.785469,49.82186953536416,0 +153,Apr,AL,265,4545353377.606846,-8.371056239437053,30 +154,Apr,AZ,297,5628916162.9365015,-20.123381544527092,45 +155,Apr,AR,154,2583825091.3561687,-2.8272645343163276,5 +156,Apr,CA,1614,33392758718.190517,5.620504928417972,0 +157,Apr,CO,283,4591319310.380867,-10.144709172948751,3 +158,Apr,CT,202,3516908294.408216,25.17222156536377,0 +159,Apr,DE,45,832017695.7945832,52.375737034141935,0 +160,Apr,DC,37,548407172.706362,50.61915592945945,-30 +161,Apr,FL,848,16231466303.928942,6.881763081627469,0 +162,Apr,GA,436,9123227762.852367,25.222768327910558,0 +163,Apr,HI,35,457516120.89654595,34.00263838556009,19 +164,Apr,ID,83,1484934124.6506433,0.11836344098389873,30 +165,Apr,IL,708,12871751905.944214,-1.2766488791847905,0 +166,Apr,IN,352,6990971861.761431,6.675965751615308,0 +167,Apr,IA,218,3475894236.254883,12.761614052124287,0 +168,Apr,KS,188,3664391739.766348,0.14599049987953094,1 +169,Apr,KY,235,3668989920.684433,-8.732902122486507,0 +170,Apr,LA,226,4110692616.993306,-9.814929291936892,15 +171,Apr,ME,91,1431885733.359869,5.242682958403748,30 +172,Apr,MD,324,5473038427.540109,-0.2560067283461649,0 +173,Apr,MA,332,7290297996.144422,7.0603345832678315,0 +174,Apr,MI,606,11365384562.490934,23.072281010484062,-30 +175,Apr,MN,338,5872322833.8103485,12.016876692895721,0 +176,Apr,MS,156,2880047277.1924486,-1.1785897609373706,30 +177,Apr,MO,370,6769512129.496274,0.8508686195564223,10 +178,Apr,MT,61,1002671690.9131713,-22.74134893508574,30 +179,Apr,NV,146,2525682596.669427,2.4336921117072734,10 +180,Apr,NH,92,1854295087.5960145,5.90877707368827,30 +181,Apr,NJ,467,9009766007.896173,19.25584241274771,-15 +182,Apr,NM,124,1897897573.4676409,-10.904289112666675,30 +183,Apr,NY,856,16813725012.503597,14.179036693815988,0 +184,Apr,NC,523,9334042542.078928,11.434621164936857,0 +185,Apr,OH,601,10801909535.587786,21.100799293141904,-30 +186,Apr,OK,177,3178094190.1605616,-2.7805939630695775,5 +187,Apr,OR,222,3855252866.2678733,0.3657226363125119,10 +188,Apr,PA,672,13474013345.265745,18.731904817870372,0 +189,Apr,SC,244,4034860591.3657403,14.63948387622247,0 +190,Apr,TN,351,6589987550.428697,-1.3527708573582231,1 +191,Apr,TX,1126,22105901465.91374,8.242235609114005,0 +192,Apr,UT,162,3087063187.564513,30.12555261688908,0 +193,Apr,VT,34,789002633.294753,41.38353605784903,0 +194,Apr,VA,478,8617974029.4146,10.823504253673718,0 +195,Apr,WA,345,6474102750.777499,3.1596079226360416,0 +196,Apr,WI,366,6507199320.970538,-4.876633723687291,20 +197,Apr,NE,108,1911720003.6862924,16.25947771645724,0 +198,Apr,ND,47,608574278.9802396,-5.802593723970176,0 +199,Apr,RI,59,1028475623.980529,-41.18198377087981,35 +200,Apr,SD,59,931468947.6402158,6.903379396310015,0 +201,Apr,WV,112,2234740028.1738076,-20.424401309719087,0 +202,Apr,WY,21,389844157.755938,-22.724356152105088,30 +203,Apr,AK,44,955439913.0031226,-11.626657931798036,0 +204,May,AL,260,4232410364.1910644,-11.223217504729291,30 +205,May,AZ,274,4869980997.609402,-17.187280726109407,30 +206,May,AR,188,2897417210.1047244,3.7115700680177497,0 +207,May,CA,1540,33550676918.261276,7.909592608719208,0 +208,May,CO,312,5398729015.872258,-6.548177726397967,30 +209,May,CT,188,3055173362.6181145,9.575389122105435,0 +210,May,DE,44,745384214.8112963,21.263880607853707,0 +211,May,DC,35,576569271.6682053,-21.899368844842456,30 +212,May,FL,881,16118158774.159512,12.692590378503155,0 +213,May,GA,408,8019875236.437598,8.66349609113422,0 +214,May,HI,48,811259244.2264867,-11.844244316675145,30 +215,May,ID,104,1861634496.8073213,20.32885084353211,10 +216,May,IL,665,12826856546.53931,4.12523306173,0 +217,May,IN,362,8106548451.125851,-6.8749531411768885,0 +218,May,IA,178,3077154830.47065,0.8687955836375068,15 +219,May,KS,195,3235692101.0894427,14.60152288321433,0 +220,May,KY,258,4567393299.551556,9.985696478595287,0 +221,May,LA,232,3859469719.801538,24.428013362182014,0 +222,May,ME,74,1602711306.3609512,16.409998078520744,30 +223,May,MD,293,5297106124.105904,15.30172586456888,0 +224,May,MA,322,5846178199.933386,12.332552082685538,0 +225,May,MI,512,10087219897.94573,0.9260786331343525,0 +226,May,MN,356,6433799863.275913,18.93735720000211,0 +227,May,MS,156,2333939964.828731,-9.805270114717928,0 +228,May,MO,348,6632251352.498203,-18.796851279547127,23 +229,May,MT,68,1001793865.2653469,-17.344662026402602,40 +230,May,NV,139,2401293706.807368,-4.306183971719065,0 +231,May,NH,81,1425011134.2925942,14.741138715321199,15 +232,May,NJ,433,9433185183.316729,4.6369444744661905,0 +233,May,NM,129,1659203619.490236,11.75863291223618,20 +234,May,NY,785,15271100035.820278,-0.8835586069220653,0 +235,May,NC,465,9152613416.19749,16.69105929444686,0 +236,May,OH,607,12315989521.154339,0.3349339234856643,-5 +237,May,OK,236,3968427406.580381,5.461573012196027,0 +238,May,OR,246,4438141903.714709,11.769535206496585,0 +239,May,PA,637,12557134264.532001,-0.21522526696037403,0 +240,May,SC,247,3966130182.5328817,7.831185312926095,0 +241,May,TN,283,6093881499.025261,-7.884393909377081,0 +242,May,TX,1073,20982850838.28942,13.538123190015313,0 +243,May,UT,184,3613234490.514857,-0.5081364644245241,0 +244,May,VT,23,453914041.1302442,-16.611190571626935,45 +245,May,VA,428,8320608690.300938,6.673738072574793,0 +246,May,WA,308,6043469856.186263,1.1016315789593136,0 +247,May,WI,355,7077236383.150806,1.4065259124157592,30 +248,May,NE,112,2063079680.4381497,26.768286011321834,0 +249,May,ND,50,1079042062.0135753,12.339658815085727,0 +250,May,RI,66,1169506181.698936,-2.816083032556776,30 +251,May,SD,49,878727810.0846109,-10.881352198130344,5 +252,May,WV,108,2093911998.1998065,12.965852080026593,-26 +253,May,WY,35,456359908.95157605,-41.12185260237959,60 +254,May,AK,39,685746138.9889522,45.40489732368849,0 +255,Jun,AL,283,4474739602.246463,-4.316934528320871,30 +256,Jun,AZ,289,5238978836.6043,-3.8970033459818296,20 +257,Jun,AR,165,2895471714.6329403,7.068472053463552,0 +258,Jun,CA,1564,30033752603.477135,5.075586866199046,0 +259,Jun,CO,309,4779709130.553852,-2.55176549570524,30 +260,Jun,CT,202,3948244272.0345974,8.746565211287475,0 +261,Jun,DE,55,905079301.455927,-51.40919177634066,-60 +262,Jun,DC,36,539501314.4924543,30.500294009988238,-30 +263,Jun,FL,891,16266465994.419098,16.46982915261583,0 +264,Jun,GA,402,7472170720.839482,14.33129606414468,0 +265,Jun,HI,54,925576765.6539989,-7.007261679724365,0 +266,Jun,ID,95,1412336197.8596656,7.357148569859078,30 +267,Jun,IL,644,12944516590.57394,-1.789129640870442,0 +268,Jun,IN,372,7282430627.568274,11.64984755060118,0 +269,Jun,IA,226,3581938493.1385965,-7.719956577441508,0 +270,Jun,KS,219,3304613765.406577,12.668291183188899,0 +271,Jun,KY,264,4124482521.589381,5.5376500260917965,0 +272,Jun,LA,205,3067711475.894065,-14.060505753922484,25 +273,Jun,ME,55,833344499.0726937,4.806828351895433,0 +274,Jun,MD,287,5321866500.440113,20.576311901018926,-30 +275,Jun,MA,312,5596132611.055558,1.6687797169042824,0 +276,Jun,MI,537,9600072181.174406,9.326445588797242,-30 +277,Jun,MN,360,6065934480.68444,-10.644153322167426,0 +278,Jun,MS,182,2880755766.0441666,-0.5876589104973391,0 +279,Jun,MO,342,5373530639.146533,-3.5314259574588505,0 +280,Jun,MT,58,837866991.6804069,-0.06484927634664928,10 +281,Jun,NV,140,2324126031.5873494,-9.298539959346954,0 +282,Jun,NH,65,1083487674.655081,-0.729584922070444,30 +283,Jun,NJ,429,8470724879.154278,26.88202800642398,0 +284,Jun,NM,110,1864507711.291298,-19.607492641584372,30 +285,Jun,NY,866,16283374060.289404,21.380503814338226,-10 +286,Jun,NC,481,8531894617.331529,9.220459681530883,0 +287,Jun,OH,597,11423884317.853783,29.25498267359569,-30 +288,Jun,OK,240,4093144167.212572,4.488433398015218,0 +289,Jun,OR,233,3753135345.0176134,12.974010246930675,0 +290,Jun,PA,701,14142056336.526964,4.788306958423732,0 +291,Jun,SC,263,4015662232.739259,24.078032870168272,-15 +292,Jun,TN,307,6064748588.993725,25.062901442034445,0 +293,Jun,TX,1083,20812207583.62748,2.3447076275984955,0 +294,Jun,UT,168,3264052215.280054,-3.601743850407729,-27 +295,Jun,VT,43,944446250.2452279,8.628062393752316,30 +296,Jun,VA,439,7335859557.482198,12.19879301914159,-4 +297,Jun,WA,326,5586683270.14609,6.224541549398737,15 +298,Jun,WI,349,5768447003.132259,-3.937896572534555,0 +299,Jun,NE,115,1911868683.4681466,-23.45707321507757,30 +300,Jun,ND,38,787303277.422542,7.777151910420912,0 +301,Jun,RI,64,858328558.5044342,19.52517340987049,0 +302,Jun,SD,49,663636401.9151609,-15.500240388454586,0 +303,Jun,WV,102,1454185921.1613789,6.907036482828062,0 +304,Jun,WY,29,454814982.2829779,-10.045526912507171,60 +305,Jun,AK,26,433590301.5230699,51.2514330984277,-30 +306,July,AL,265,4623095157.742597,1.1084973838843553,5 +307,July,AZ,255,5012048175.675645,-16.40408484025272,15 +308,July,AR,157,3067359827.692923,-2.8122531115340053,0 +309,July,CA,1505,29899340412.633,8.583697256292226,0 +310,July,CO,286,4676312408.996825,-6.5072507016697045,5 +311,July,CT,197,3125570205.66655,22.679727170038063,-7 +312,July,DE,45,898775158.0961839,-6.116227175643303,30 +313,July,DC,54,781583349.3235077,7.479734077930402,-5 +314,July,FL,900,17178455713.234467,12.088928395614403,0 +315,July,GA,421,8559621801.987247,15.82073488586309,-15 +316,July,HI,45,735974044.8163931,-12.749710865046154,30 +317,July,ID,91,1276325446.5677752,3.432368897625338,-30 +318,July,IL,694,13126602622.068523,-4.059243759805099,0 +319,July,IN,329,6319591640.86917,9.684702717180699,0 +320,July,IA,180,2789499972.9110303,0.6563953194857959,0 +321,July,KS,192,3135221124.07444,4.589087248206965,0 +322,July,KY,284,4706037817.076679,3.463660012062064,-10 +323,July,LA,215,3912978279.8449264,-0.1169045640016293,0 +324,July,ME,96,1632577788.1506279,-45.49686928934625,30 +325,July,MD,308,5564498623.025823,-4.1812624650048065,-30 +326,July,MA,330,6889901935.300478,27.589938632260214,-10 +327,July,MI,531,10525377678.12523,13.381967517526618,-30 +328,July,MN,350,5842233938.343931,-9.306050049731653,0 +329,July,MS,173,3552449831.0961213,-0.36775148966125926,0 +330,July,MO,312,5340383287.060106,-8.904625599353494,0 +331,July,MT,57,963370189.2795134,4.008101689368004,0 +332,July,NV,132,2084162564.8120673,-11.685185728397983,13 +333,July,NH,67,1398495262.1556923,-36.54808263383427,30 +334,July,NJ,427,8220731739.954223,27.053311424716867,0 +335,July,NM,127,2254104594.1527495,-6.0225722715644,15 +336,July,NY,858,16033648597.370863,19.419308017289836,-19 +337,July,NC,470,9118327400.181475,9.521387871524894,0 +338,July,OH,632,12981343137.46132,6.975961494723151,-30 +339,July,OK,207,3007660084.99866,6.120786397068855,0 +340,July,OR,231,4319352868.302605,-4.2616938760053245,0 +341,July,PA,711,14281604589.550344,8.025356934291494,0 +342,July,SC,259,4178217601.3012195,21.126965508805824,0 +343,July,TN,291,6050016182.291098,3.593866771318403,0 +344,July,TX,1173,23086169966.046024,8.919524489718015,0 +345,July,UT,154,2802771287.3462667,12.999539846998232,-30 +346,July,VT,30,503194661.753783,-19.566095020720468,45 +347,July,VA,464,8217887279.155638,4.062216385502552,0 +348,July,WA,375,6721976542.579267,11.616611749449817,0 +349,July,WI,349,6028459381.942889,-17.85967164120723,15 +350,July,NE,114,1930367479.97492,-1.1092218175512016,0 +351,July,ND,39,691986958.961978,-0.9286397949684897,0 +352,July,RI,62,1179686513.3225498,-45.09602516121049,20 +353,July,SD,60,1228922001.7397196,-3.271555213013471,15 +354,July,WV,103,1842491973.6655333,8.376131037816435,0 +355,July,WY,36,664673361.8360131,16.57295538370431,-20 +356,July,AK,28,427122847.08929276,12.667015110375587,30 +357,Aug,AL,263,4514730740.55387,-20.985843193001188,30 +358,Aug,AZ,302,6226737267.0423155,-1.9986322189530483,30 +359,Aug,AR,159,2603600017.349863,-1.365681018230248,15 +360,Aug,CA,1541,31919730566.09396,5.008298216125922,0 +361,Aug,CO,283,5312102023.9574175,12.81244956210071,0 +362,Aug,CT,183,3387561512.943229,23.267969110488593,0 +363,Aug,DE,43,815134308.5168855,28.93489521082165,0 +364,Aug,DC,40,833106068.6770109,24.74541860127397,0 +365,Aug,FL,835,15218168045.416052,16.992142977393087,0 +366,Aug,GA,413,7941573236.663953,17.83299534207424,0 +367,Aug,HI,52,1073610697.4258641,-15.571797839731744,0 +368,Aug,ID,103,1769083726.4743168,1.2794173452709856,0 +369,Aug,IL,659,12735102342.727276,5.0751545988983935,0 +370,Aug,IN,345,6990676784.907407,-7.285230180286931,0 +371,Aug,IA,216,3857067774.204428,17.116082424087153,0 +372,Aug,KS,172,2956693486.089518,5.205512858799011,0 +373,Aug,KY,263,4593154149.070099,-2.5160481668211787,0 +374,Aug,LA,220,4286136762.2671733,7.83864328678203,0 +375,Aug,ME,75,1508690998.0191166,-42.17555791185964,45 +376,Aug,MD,318,6852475856.927772,30.77415997862647,-30 +377,Aug,MA,336,6731882616.339707,15.466895378435993,0 +378,Aug,MI,577,10479737394.262196,16.236090431602634,-20 +379,Aug,MN,374,6824776574.118354,2.3338131160886633,0 +380,Aug,MS,178,3146771639.956837,-4.5643941553988725,28 +381,Aug,MO,321,5745008458.959866,2.951685067927883,0 +382,Aug,MT,55,735670815.0980518,16.033595308071995,0 +383,Aug,NV,141,2570127634.7481084,-16.26343703203804,30 +384,Aug,NH,81,1710312150.4740903,12.775851934309344,0 +385,Aug,NJ,417,7877499390.384023,14.585711420877828,-15 +386,Aug,NM,129,1921193125.2653275,-14.132921334715206,19 +387,Aug,NY,911,17238553760.809105,8.224134394010093,-12 +388,Aug,NC,522,9227869867.663221,-1.554296174770002,0 +389,Aug,OH,612,11988587049.720457,6.2380243565551154,-30 +390,Aug,OK,200,3532897953.1446075,-0.8650102222721898,0 +391,Aug,OR,241,4339444182.073283,6.069698648840358,0 +392,Aug,PA,680,13988465619.324165,-0.437659432489113,0 +393,Aug,SC,262,4307955138.743373,0.09052101599593243,0 +394,Aug,TN,313,6119095124.130107,-1.6765000298842097,0 +395,Aug,TX,1197,23798919580.73222,1.3719514671366824,0 +396,Aug,UT,133,2560444879.020845,0.4293578085730587,0 +397,Aug,VT,39,502204823.5676832,18.873574387498934,0 +398,Aug,VA,434,7857014159.794869,28.61276294058996,-25 +399,Aug,WA,347,6431894657.589538,-7.972228797051116,0 +400,Aug,WI,377,6389857849.888933,3.2264358879599513,9 +401,Aug,NE,133,2259643837.737822,15.314838984410244,0 +402,Aug,ND,44,661949422.9287491,-15.542871956908243,-30 +403,Aug,RI,58,977732787.4015753,-18.05482298346999,30 +404,Aug,SD,65,1217352910.9185944,-5.556557927612289,0 +405,Aug,WV,92,1736993468.0524466,17.497529968619915,0 +406,Aug,WY,30,563165339.8748782,9.12378512521093,0 +407,Aug,AK,26,401488566.919879,39.25517361760603,0 +408,Sep,AL,239,4223336329.2930055,0.30178512530847,0 +409,Sep,AZ,275,5185405658.3233595,-4.5456775206516795,30 +410,Sep,AR,189,3726711234.6998477,7.253276351450495,26 +411,Sep,CA,1546,31194783346.741146,5.504738217233694,0 +412,Sep,CO,268,4400523033.075882,15.402969276213298,25 +413,Sep,CT,204,3369549572.4973745,24.147563390413097,0 +414,Sep,DE,42,700720323.5924549,44.72972682786963,0 +415,Sep,DC,35,347158618.5939969,32.56721693878558,-30 +416,Sep,FL,838,15501397654.091284,10.61961805111605,0 +417,Sep,GA,433,8839657095.867123,10.631715030800933,0 +418,Sep,HI,39,702481093.7573448,-8.185632192271328,-40 +419,Sep,ID,85,1303116251.7447314,5.472091120610457,0 +420,Sep,IL,659,11946488433.5344,0.2266385621135214,0 +421,Sep,IN,326,6988278273.702606,20.206395612103165,0 +422,Sep,IA,182,2999174933.9151936,5.145542699414818,10 +423,Sep,KS,160,2757497928.0488377,6.492657491126579,15 +424,Sep,KY,260,4673969789.046483,17.90632857187734,0 +425,Sep,LA,226,3942603476.807717,14.209372118921124,0 +426,Sep,ME,79,1421730570.3413615,15.143311688504355,30 +427,Sep,MD,292,5674829199.213039,11.066171609931075,0 +428,Sep,MA,333,6010339744.304591,-0.9331006971036686,0 +429,Sep,MI,523,10601265120.215525,17.407686558539808,-9 +430,Sep,MN,342,5496374452.439429,2.37020955872822,10 +431,Sep,MS,163,2792396409.051387,-2.571634766741113,30 +432,Sep,MO,345,5954713519.48097,-6.924770125075952,25 +433,Sep,MT,61,937119427.86814,26.095598372105655,0 +434,Sep,NV,130,2185620966.47121,-21.37672238630455,0 +435,Sep,NH,66,929336840.2129537,7.09833335162034,0 +436,Sep,NJ,431,8441634034.045566,15.969739636554664,0 +437,Sep,NM,127,1941617901.4036055,-0.6423198302760511,0 +438,Sep,NY,897,17578070787.729847,20.008555750800838,-24 +439,Sep,NC,471,9789790263.629126,0.33682791101773546,0 +440,Sep,OH,569,12247192088.396267,7.9786669939906005,0 +441,Sep,OK,222,3684499253.792857,-11.960649715859745,8 +442,Sep,OR,241,4036158117.389864,11.113143520532958,30 +443,Sep,PA,672,13619389422.169943,10.78362721556448,0 +444,Sep,SC,216,3326394720.414948,29.535405634059202,-8 +445,Sep,TN,282,5587250184.468258,0.7189146065957175,16 +446,Sep,TX,1067,20329489584.57288,3.5679382611808705,0 +447,Sep,UT,157,2702358621.123317,12.732645052444468,0 +448,Sep,VT,32,574547792.372944,-31.300378927969064,60 +449,Sep,VA,461,8872126611.669905,8.750970970166236,0 +450,Sep,WA,356,6815811896.965548,14.549985318729227,0 +451,Sep,WI,345,5997898302.885914,-14.62414501791477,30 +452,Sep,NE,101,1785328987.0067418,12.948645766160894,10 +453,Sep,ND,52,891532658.516012,-11.41808452107307,0 +454,Sep,RI,48,699649436.7867562,9.741905619764452,-30 +455,Sep,SD,48,802277930.2860022,39.47480794455646,0 +456,Sep,WV,114,2144368261.6947153,14.392934759028321,0 +457,Sep,WY,29,585673742.0384002,-5.776383220009848,60 +458,Sep,AK,28,520879504.68253475,36.708605646355295,0 +459,Oct,AL,288,5293733211.491432,-2.115465176045859,30 +460,Oct,AZ,274,5618672010.686819,-30.06103666780473,30 +461,Oct,AR,160,2414668624.6951447,-18.50720786782722,30 +462,Oct,CA,1559,31117455775.292942,5.1868505229342645,0 +463,Oct,CO,327,5503442332.237095,13.276108184933264,0 +464,Oct,CT,200,3359595976.545434,0.31063629749382926,0 +465,Oct,DE,42,918255314.647329,31.135696001580413,-15 +466,Oct,DC,51,799990669.539036,39.344467860571285,-45 +467,Oct,FL,886,17670748703.501324,21.37930649361374,0 +468,Oct,GA,396,6935984312.610597,19.091920155895195,0 +469,Oct,HI,48,979943093.3672328,-33.87470086245719,0 +470,Oct,ID,100,1557739573.095065,6.019697582346453,0 +471,Oct,IL,646,12344949951.424809,17.203393211672733,0 +472,Oct,IN,356,7594197583.292417,-16.40798426652202,0 +473,Oct,IA,197,3108153643.3180323,-11.274563993219203,15 +474,Oct,KS,198,3357530202.9637923,3.282044721307898,0 +475,Oct,KY,280,5160485214.28805,2.0163622585683925,0 +476,Oct,LA,228,4315019840.444842,3.7839939164215366,8 +477,Oct,ME,73,1257047073.2522485,-30.580998875779756,30 +478,Oct,MD,306,6309649760.188026,16.32366217332742,-30 +479,Oct,MA,310,6115906971.549138,10.512682653410707,0 +480,Oct,MI,538,10698198255.978077,27.164631662464217,-25 +481,Oct,MN,360,6310396573.856352,30.291663702110554,0 +482,Oct,MS,151,2629147978.0884438,-27.815535263486595,30 +483,Oct,MO,348,7024531892.727447,-7.75110249687657,15 +484,Oct,MT,66,1296245456.4216673,-46.28756094529774,30 +485,Oct,NV,115,2056567449.6160254,-23.740181520932765,30 +486,Oct,NH,76,1265112405.6490362,11.564675380503559,30 +487,Oct,NJ,412,8902553161.296192,19.512284885267377,-24 +488,Oct,NM,115,1714517041.4408398,39.48238832673803,27 +489,Oct,NY,879,17044585979.943937,10.21770799539263,-5 +490,Oct,NC,476,8624982847.081488,28.53950304371574,0 +491,Oct,OH,641,12418067006.36168,14.19955352341185,0 +492,Oct,OK,257,3974417383.5067697,-1.4356867164038931,0 +493,Oct,OR,220,4024765014.34853,22.89464515201246,0 +494,Oct,PA,682,14706614189.92426,5.435174582187528,0 +495,Oct,SC,265,3951683284.7608104,4.314079582160957,0 +496,Oct,TN,314,6499200682.148956,11.025707917466093,0 +497,Oct,TX,1101,21935765674.340332,14.819271017692927,0 +498,Oct,UT,180,3503780571.1102624,10.014540640533028,0 +499,Oct,VT,39,461773655.664996,3.9592403384750696,0 +500,Oct,VA,443,8372787448.15353,26.413368348006088,-15 +501,Oct,WA,373,7278495895.041048,13.818278568547044,0 +502,Oct,WI,374,7625767596.811182,7.245832770191441,20 +503,Oct,NE,109,1743243278.260685,-3.05619724827784,0 +504,Oct,ND,49,971815592.866176,-0.1547997850560705,0 +505,Oct,RI,46,763456860.358554,-13.533567564779787,0 +506,Oct,SD,51,851338255.8732342,18.65864526117514,-5 +507,Oct,WV,112,1955879600.7499623,-3.7990059689819873,0 +508,Oct,WY,29,316493258.17611295,6.252992150699242,0 +509,Oct,AK,30,505581139.6181448,31.58801142599043,0 +510,Nov,AL,273,4882156126.237691,-0.6086653872478109,0 +511,Nov,AZ,254,5209609164.130845,-7.590845490490665,30 +512,Nov,AR,144,2372667598.1710563,9.952713976910331,0 +513,Nov,CA,1541,31047182273.911568,0.5627429509150943,0 +514,Nov,CO,295,5616753655.726931,-4.8621367575198065,30 +515,Nov,CT,179,3123816533.5702634,-3.9432812762685217,30 +516,Nov,DE,45,648432789.628825,37.01384281846015,-25 +517,Nov,DC,33,701404681.0957798,41.456717293138695,-34 +518,Nov,FL,805,14785595537.76787,11.749948708604734,0 +519,Nov,GA,425,9133304712.332943,0.827517763457081,0 +520,Nov,HI,46,865321129.5404052,28.557298090313793,-30 +521,Nov,ID,87,1409361290.4892473,-4.65087116523091,30 +522,Nov,IL,619,12126817644.49354,5.275308133005183,0 +523,Nov,IN,332,6418910684.497859,-0.22806006184293892,0 +524,Nov,IA,224,3310536461.5477796,1.361753725403105,0 +525,Nov,KS,160,2599843678.6561594,17.53804249673317,0 +526,Nov,KY,249,4183712283.6692166,-0.7757347606509484,0 +527,Nov,LA,208,3573627290.59213,-38.63963332591459,30 +528,Nov,ME,77,1534139837.3185358,-36.664422445370974,60 +529,Nov,MD,312,5482267718.257624,7.862337107258668,0 +530,Nov,MA,331,6485542267.779938,12.890375455154185,0 +531,Nov,MI,544,11053986406.712902,11.539705152057422,0 +532,Nov,MN,351,5953490468.514309,-4.99383429141119,0 +533,Nov,MS,161,2530717662.104407,-14.294102743628855,56 +534,Nov,MO,338,5966507632.086328,-6.813607599840566,30 +535,Nov,MT,53,1027448569.9030796,-4.380934633177958,30 +536,Nov,NV,128,2188081158.5274053,-6.818259812730048,30 +537,Nov,NH,75,1447103411.3528292,5.140193184866348,0 +538,Nov,NJ,392,7516519025.832437,15.153992010066986,0 +539,Nov,NM,103,1426213191.4886189,-13.61198016665469,30 +540,Nov,NY,853,16702190941.394667,6.3178490595626045,0 +541,Nov,NC,478,9602112978.863764,17.662261915667727,0 +542,Nov,OH,579,11979948469.651283,-2.4091525484052454,0 +543,Nov,OK,194,2992872832.8273954,32.39467803711295,0 +544,Nov,OR,199,3958590305.0379033,6.561473401277567,15 +545,Nov,PA,659,13202701976.158386,0.973193609746204,0 +546,Nov,SC,267,4982390530.8982,20.300011324628827,0 +547,Nov,TN,316,6345614346.6442175,-12.22339503357398,30 +548,Nov,TX,1084,23016832370.231976,9.24899270531182,0 +549,Nov,UT,171,3056534229.6676283,8.915447215755535,0 +550,Nov,VT,42,736576595.7952905,-52.698765975357674,60 +551,Nov,VA,435,8592453993.300503,0.612487386114708,0 +552,Nov,WA,363,6792370419.778321,12.613158476142075,0 +553,Nov,WI,346,6266919668.916316,6.59809678239958,15 +554,Nov,NE,124,1947298622.2253036,19.53542279781277,0 +555,Nov,ND,36,563691953.1479949,29.287845826201874,0 +556,Nov,RI,55,1072213231.4024358,-45.24631232545073,48 +557,Nov,SD,43,749088245.3267571,33.45476024921402,10 +558,Nov,WV,105,1973633853.8085425,-11.185608902847207,30 +559,Nov,WY,36,825427768.0097871,32.00678405733947,30 +560,Nov,AK,25,350645904.1067259,45.217641424277645,15 +561,Dec,AL,248,4052661990.5918827,-18.273502615903112,30 +562,Dec,AZ,250,4354087517.383864,-29.644014226394802,30 +563,Dec,AR,167,2808312073.771635,-1.9822865546643698,30 +564,Dec,CA,1459,30334319287.01471,2.263342563799597,0 +565,Dec,CO,282,5271587100.953048,2.1755592246687456,0 +566,Dec,CT,169,2967509713.285758,-10.819404190289333,0 +567,Dec,DE,60,1108661060.409402,5.540029562071936,0 +568,Dec,DC,32,427723468.18739116,16.821099795873806,-60 +569,Dec,FL,815,15817169687.117638,12.134898508471792,0 +570,Dec,GA,415,8760032108.130953,10.904235939714454,-25 +571,Dec,HI,44,745465995.3582728,-47.93587198390958,60 +572,Dec,ID,91,1903228360.2536993,15.62905543793238,0 +573,Dec,IL,634,12426890066.490356,5.654966699932288,0 +574,Dec,IN,369,7805582525.069725,3.844790208134441,0 +575,Dec,IA,203,3551947031.0836043,2.9595927584517767,0 +576,Dec,KS,156,2561936702.2877874,-2.4102470765649286,0 +577,Dec,KY,258,4956565199.31428,12.54556893422216,-27 +578,Dec,LA,223,3690672563.4359117,-0.5556475387221553,30 +579,Dec,ME,74,1248319676.593391,-9.644076011845414,60 +580,Dec,MD,295,5467399929.675827,28.422970721592833,0 +581,Dec,MA,337,6935715581.350615,-10.901880688005349,15 +582,Dec,MI,539,10762075612.899063,15.235691914149243,0 +583,Dec,MN,355,6552934127.827269,-0.011907922143677752,0 +584,Dec,MS,175,2998673539.781294,-12.991086966440434,30 +585,Dec,MO,314,5878592387.810089,-0.013825399530787763,0 +586,Dec,MT,52,963129820.1470933,-35.877689077895525,59 +587,Dec,NV,140,3084320905.5365233,9.148690916907867,0 +588,Dec,NH,67,1079912116.4096417,-14.775965909538058,30 +589,Dec,NJ,406,8576979514.333734,24.89236767953423,0 +590,Dec,NM,127,1779004137.668842,-24.372314118271788,45 +591,Dec,NY,836,17638742685.630188,17.429717388753943,-10 +592,Dec,NC,478,9290130966.855522,27.509595402392733,-10 +593,Dec,OH,578,12303001751.634512,-5.023042984163681,0 +594,Dec,OK,204,3275084551.7795615,30.880894964185245,0 +595,Dec,OR,225,4211248169.657883,10.09994399456923,2 +596,Dec,PA,656,15370157514.38166,13.13245196422372,0 +597,Dec,SC,254,4254237930.2253623,-15.984553242124775,0 +598,Dec,TN,267,5338876090.6356945,1.786980554462616,0 +599,Dec,TX,1149,24633921922.3137,-1.3355723893175764,0 +600,Dec,UT,138,2798365836.381611,20.505861468329385,0 +601,Dec,VT,34,652160598.7689722,30.358443158548653,0 +602,Dec,VA,444,8192463542.448703,15.8470139748282,0 +603,Dec,WA,342,6879809869.564644,12.499286608704438,0 +604,Dec,WI,339,6726191336.976771,-14.689885007855196,30 +605,Dec,NE,104,2006242138.88688,11.56238627408527,5 +606,Dec,ND,41,773457702.3260839,51.66604907812166,-50 +607,Dec,RI,61,1256930815.7085152,6.73917388060795,25 +608,Dec,SD,52,842472809.8404261,20.138680388224657,-13 +609,Dec,WV,89,1563887791.3803394,-4.578302768445496,0 +610,Dec,WY,29,451177306.2380711,3.6068238278725175,45 +611,Dec,AK,22,400648797.053984,7.6143134801120596,0 diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-appliances-coal.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-appliances-coal.osw index e2710707..4ad437b9 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-appliances-coal.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-appliances-coal.osw @@ -6,58 +6,50 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "moisture", - "clothes_dryer_efficiency_cef": "3.3", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.3", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "coal", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "auto", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "coal", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", "cooling_system_cooling_compressor_type": "single stage", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.73, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "central air conditioner", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -65,8 +57,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -74,11 +65,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "2", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 25.0, @@ -92,17 +82,15 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -133,6 +121,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, @@ -141,6 +130,7 @@ "geometry_num_floors_above_grade": 1, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family detached", @@ -150,22 +140,20 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "64000.0", - "heat_pump_heating_capacity_17F": "auto", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "none", "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "natural gas", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.92, @@ -186,7 +174,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base-appliances-coal.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -208,14 +196,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -236,18 +222,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -274,21 +256,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -315,10 +295,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "none", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -326,8 +304,6 @@ "water_heater_efficiency": 0.95, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "electricity", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "18767", "water_heater_jacket_rvalue": 0, "water_heater_location": "living space", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-appliances-dehumidifier-50percent.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-appliances-dehumidifier-50percent.osw index 1708b2e9..cd70aa00 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-appliances-dehumidifier-50percent.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-appliances-dehumidifier-50percent.osw @@ -6,56 +6,48 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", "cooling_system_cooling_compressor_type": "single stage", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.73, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "central air conditioner", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 0.5, - "dehumidifier_present": true, "dehumidifier_rh_setpoint": 0.5, "dehumidifier_type": "portable", "dhw_distribution_pipe_r": "0.0", @@ -65,8 +57,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -74,11 +65,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "1", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 25.0, @@ -92,17 +82,15 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -133,6 +121,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, @@ -141,6 +130,7 @@ "geometry_num_floors_above_grade": 1, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family detached", @@ -150,22 +140,20 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "64000.0", - "heat_pump_heating_capacity_17F": "auto", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "none", "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "natural gas", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.92, @@ -186,7 +174,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base-appliances-dehumidifier-50percent.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -208,14 +196,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -236,18 +222,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -274,21 +256,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -315,10 +295,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "none", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -326,8 +304,6 @@ "water_heater_efficiency": 0.95, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "electricity", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "18767", "water_heater_jacket_rvalue": 0, "water_heater_location": "living space", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-appliances-dehumidifier-ief-portable.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-appliances-dehumidifier-ief-portable.osw index 487d9ca5..c69ccd4c 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-appliances-dehumidifier-ief-portable.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-appliances-dehumidifier-ief-portable.osw @@ -6,56 +6,48 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", "cooling_system_cooling_compressor_type": "single stage", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.73, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "central air conditioner", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": "1.5", "dehumidifier_efficiency_type": "IntegratedEnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": true, "dehumidifier_rh_setpoint": 0.5, "dehumidifier_type": "portable", "dhw_distribution_pipe_r": "0.0", @@ -65,8 +57,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -74,11 +65,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "1", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 25.0, @@ -92,17 +82,15 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -133,6 +121,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, @@ -141,6 +130,7 @@ "geometry_num_floors_above_grade": 1, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family detached", @@ -150,22 +140,20 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "64000.0", - "heat_pump_heating_capacity_17F": "auto", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "none", "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "natural gas", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.92, @@ -186,7 +174,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base-appliances-dehumidifier-ief-portable.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -208,14 +196,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -236,18 +222,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -274,21 +256,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -315,10 +295,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "none", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -326,8 +304,6 @@ "water_heater_efficiency": 0.95, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "electricity", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "18767", "water_heater_jacket_rvalue": 0, "water_heater_location": "living space", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-appliances-dehumidifier-ief-whole-home.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-appliances-dehumidifier-ief-whole-home.osw index acd81b6e..5ccf4364 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-appliances-dehumidifier-ief-whole-home.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-appliances-dehumidifier-ief-whole-home.osw @@ -6,56 +6,48 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", "cooling_system_cooling_compressor_type": "single stage", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.73, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "central air conditioner", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": "1.5", "dehumidifier_efficiency_type": "IntegratedEnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": true, "dehumidifier_rh_setpoint": 0.5, "dehumidifier_type": "whole-home", "dhw_distribution_pipe_r": "0.0", @@ -65,8 +57,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -74,11 +65,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "1", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 25.0, @@ -92,17 +82,15 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -133,6 +121,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, @@ -141,6 +130,7 @@ "geometry_num_floors_above_grade": 1, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family detached", @@ -150,22 +140,20 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "64000.0", - "heat_pump_heating_capacity_17F": "auto", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "none", "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "natural gas", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.92, @@ -186,7 +174,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base-appliances-dehumidifier-ief-whole-home.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -208,14 +196,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -236,18 +222,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -274,21 +256,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -315,10 +295,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "none", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -326,8 +304,6 @@ "water_heater_efficiency": 0.95, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "electricity", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "18767", "water_heater_jacket_rvalue": 0, "water_heater_location": "living space", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-appliances-dehumidifier.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-appliances-dehumidifier.osw index f631a7e6..166f7065 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-appliances-dehumidifier.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-appliances-dehumidifier.osw @@ -6,56 +6,48 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", "cooling_system_cooling_compressor_type": "single stage", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.73, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "central air conditioner", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": true, "dehumidifier_rh_setpoint": 0.5, "dehumidifier_type": "portable", "dhw_distribution_pipe_r": "0.0", @@ -65,8 +57,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -74,11 +65,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "1", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 25.0, @@ -92,17 +82,15 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -133,6 +121,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, @@ -141,6 +130,7 @@ "geometry_num_floors_above_grade": 1, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family detached", @@ -150,22 +140,20 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "64000.0", - "heat_pump_heating_capacity_17F": "auto", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "none", "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "natural gas", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.92, @@ -186,7 +174,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base-appliances-dehumidifier.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -208,14 +196,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -236,18 +222,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -274,21 +256,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -315,10 +295,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "none", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -326,8 +304,6 @@ "water_heater_efficiency": 0.95, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "electricity", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "18767", "water_heater_jacket_rvalue": 0, "water_heater_location": "living space", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-appliances-gas.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-appliances-gas.osw index 8d6330e4..d36bc05f 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-appliances-gas.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-appliances-gas.osw @@ -6,58 +6,50 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "moisture", - "clothes_dryer_efficiency_cef": "3.3", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.3", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "natural gas", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "auto", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "natural gas", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", "cooling_system_cooling_compressor_type": "single stage", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.73, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "central air conditioner", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -65,8 +57,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -74,11 +65,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "2", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 25.0, @@ -92,17 +82,15 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -133,6 +121,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, @@ -141,6 +130,7 @@ "geometry_num_floors_above_grade": 1, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family detached", @@ -150,22 +140,20 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "64000.0", - "heat_pump_heating_capacity_17F": "auto", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "none", "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "natural gas", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.92, @@ -186,7 +174,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base-appliances-gas.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -208,14 +196,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -236,18 +222,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -274,21 +256,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -315,10 +295,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "none", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -326,8 +304,6 @@ "water_heater_efficiency": 0.95, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "electricity", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "18767", "water_heater_jacket_rvalue": 0, "water_heater_location": "living space", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-appliances-modified.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-appliances-modified.osw index 46e99053..a256736f 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-appliances-modified.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-appliances-modified.osw @@ -6,58 +6,50 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "moisture", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 4.29, + "clothes_dryer_efficiency": "4.29", "clothes_dryer_efficiency_type": "EnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "0.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.65", + "clothes_washer_efficiency": "1.65", "clothes_washer_efficiency_type": "ModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", "cooling_system_cooling_compressor_type": "single stage", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.73, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "central air conditioner", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -65,8 +57,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.7, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": 0.7, "dishwasher_efficiency_type": "EnergyFactor", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -74,11 +65,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "6", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "2", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 25.0, @@ -92,17 +82,15 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -133,6 +121,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, @@ -141,6 +130,7 @@ "geometry_num_floors_above_grade": 1, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family detached", @@ -150,22 +140,20 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "64000.0", - "heat_pump_heating_capacity_17F": "auto", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "none", "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "natural gas", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.92, @@ -186,7 +174,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base-appliances-modified.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -208,14 +196,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -236,18 +222,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -274,21 +256,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -315,10 +295,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "none", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -326,8 +304,6 @@ "water_heater_efficiency": 0.95, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "electricity", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "18767", "water_heater_jacket_rvalue": 0, "water_heater_location": "living space", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-appliances-none.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-appliances-none.osw index d8a4bd4c..0362ce40 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-appliances-none.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-appliances-none.osw @@ -6,58 +6,50 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", - "clothes_dryer_location": "living space", - "clothes_dryer_present": false, + "clothes_dryer_location": "none", "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", - "clothes_washer_location": "living space", - "clothes_washer_present": false, + "clothes_washer_location": "none", "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, - "cooking_range_oven_location": "living space", - "cooking_range_oven_present": false, + "cooking_range_oven_location": "none", "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", "cooling_system_cooling_compressor_type": "single stage", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.73, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "central air conditioner", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -65,20 +57,18 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", "dishwasher_label_gas_rate": "1.09", "dishwasher_label_usage": "4.0", - "dishwasher_location": "living space", + "dishwasher_location": "none", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": false, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "2", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 25.0, @@ -92,17 +82,15 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -133,6 +121,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, @@ -141,6 +130,7 @@ "geometry_num_floors_above_grade": 1, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family detached", @@ -150,22 +140,20 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "64000.0", - "heat_pump_heating_capacity_17F": "auto", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "none", "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "natural gas", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.92, @@ -186,7 +174,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base-appliances-none.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -208,14 +196,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -236,18 +222,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -273,22 +255,20 @@ "pv_system_system_losses_fraction_2": 0.14, "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", - "refrigerator_location": "living space", - "refrigerator_present": false, + "refrigerator_location": "none", "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -315,10 +295,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "none", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -326,8 +304,6 @@ "water_heater_efficiency": 0.95, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "electricity", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "18767", "water_heater_jacket_rvalue": 0, "water_heater_location": "living space", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-appliances-oil.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-appliances-oil.osw index 610342eb..5d9d54ad 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-appliances-oil.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-appliances-oil.osw @@ -6,58 +6,50 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "moisture", - "clothes_dryer_efficiency_cef": "3.3", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.3", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "fuel oil", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "auto", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "fuel oil", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", "cooling_system_cooling_compressor_type": "single stage", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.73, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "central air conditioner", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -65,8 +57,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -74,11 +65,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "2", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 25.0, @@ -92,17 +82,15 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -133,6 +121,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, @@ -141,6 +130,7 @@ "geometry_num_floors_above_grade": 1, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family detached", @@ -150,22 +140,20 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "64000.0", - "heat_pump_heating_capacity_17F": "auto", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "none", "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "natural gas", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.92, @@ -186,7 +174,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base-appliances-oil.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -208,14 +196,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -236,18 +222,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -274,21 +256,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -315,10 +295,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "none", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -326,8 +304,6 @@ "water_heater_efficiency": 0.95, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "electricity", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "18767", "water_heater_jacket_rvalue": 0, "water_heater_location": "living space", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-appliances-propane.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-appliances-propane.osw index 57d66d49..7e188f04 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-appliances-propane.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-appliances-propane.osw @@ -6,58 +6,50 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "moisture", - "clothes_dryer_efficiency_cef": "3.3", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.3", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "propane", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "auto", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "propane", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", "cooling_system_cooling_compressor_type": "single stage", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.73, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "central air conditioner", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -65,8 +57,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -74,11 +65,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "2", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 25.0, @@ -92,17 +82,15 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -133,6 +121,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, @@ -141,6 +130,7 @@ "geometry_num_floors_above_grade": 1, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family detached", @@ -150,22 +140,20 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "64000.0", - "heat_pump_heating_capacity_17F": "auto", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "none", "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "natural gas", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.92, @@ -186,7 +174,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base-appliances-propane.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -208,14 +196,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -236,18 +222,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -274,21 +256,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -315,10 +295,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "none", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -326,8 +304,6 @@ "water_heater_efficiency": 0.95, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "electricity", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "18767", "water_heater_jacket_rvalue": 0, "water_heater_location": "living space", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-appliances-wood.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-appliances-wood.osw index 50ae7971..dd193c7e 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-appliances-wood.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-appliances-wood.osw @@ -6,58 +6,50 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "moisture", - "clothes_dryer_efficiency_cef": "3.3", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.3", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "wood", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "auto", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "wood", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", "cooling_system_cooling_compressor_type": "single stage", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.73, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "central air conditioner", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -65,8 +57,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -74,11 +65,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "2", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 25.0, @@ -92,17 +82,15 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -133,6 +121,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, @@ -141,6 +130,7 @@ "geometry_num_floors_above_grade": 1, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family detached", @@ -150,22 +140,20 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "64000.0", - "heat_pump_heating_capacity_17F": "auto", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "none", "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "natural gas", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.92, @@ -186,7 +174,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base-appliances-wood.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -208,14 +196,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -236,18 +222,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -274,21 +256,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -315,10 +295,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "none", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -326,8 +304,6 @@ "water_heater_efficiency": 0.95, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "electricity", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "18767", "water_heater_jacket_rvalue": 0, "water_heater_location": "living space", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-atticroof-flat.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-atticroof-flat.osw index 06508f83..a1450c9d 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-atticroof-flat.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-atticroof-flat.osw @@ -6,58 +6,50 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", "cooling_system_cooling_compressor_type": "single stage", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.73, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "central air conditioner", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -65,8 +57,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -74,11 +65,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "2", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 0.0, @@ -92,17 +82,15 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -133,6 +121,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, @@ -141,6 +130,7 @@ "geometry_num_floors_above_grade": 1, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "flat", "geometry_unit_type": "single-family detached", @@ -150,22 +140,20 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "64000.0", - "heat_pump_heating_capacity_17F": "auto", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "none", "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "natural gas", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.92, @@ -186,7 +174,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base-atticroof-flat.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -208,14 +196,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -236,18 +222,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -274,21 +256,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 25.8, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -315,10 +295,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "none", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -326,8 +304,6 @@ "water_heater_efficiency": 0.95, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "electricity", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "18767", "water_heater_jacket_rvalue": 0, "water_heater_location": "living space", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-atticroof-radiant-barrier.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-atticroof-radiant-barrier.osw index e163078b..40c7074c 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-atticroof-radiant-barrier.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-atticroof-radiant-barrier.osw @@ -6,58 +6,50 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", "cooling_system_cooling_compressor_type": "single stage", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.73, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "central air conditioner", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -65,8 +57,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -74,11 +65,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "1", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 25.0, @@ -92,17 +82,15 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -133,6 +121,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, @@ -141,6 +130,7 @@ "geometry_num_floors_above_grade": 1, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family detached", @@ -150,22 +140,20 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "64000.0", - "heat_pump_heating_capacity_17F": "auto", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "none", "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "natural gas", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.92, @@ -186,7 +174,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base-atticroof-radiant-barrier.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -208,14 +196,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -236,18 +222,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -274,21 +256,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "true", + "roof_radiant_barrier": true, "roof_radiant_barrier_grade": "2", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -315,10 +295,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "none", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -326,8 +304,6 @@ "water_heater_efficiency": 0.95, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "electricity", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "18767", "water_heater_jacket_rvalue": 0, "water_heater_location": "living space", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-atticroof-unvented-insulated-roof.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-atticroof-unvented-insulated-roof.osw index b6491abe..acb314f7 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-atticroof-unvented-insulated-roof.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-atticroof-unvented-insulated-roof.osw @@ -6,58 +6,50 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 2.1, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", "cooling_system_cooling_compressor_type": "single stage", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.73, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "central air conditioner", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -65,8 +57,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -74,11 +65,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "2", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 25.0, @@ -92,17 +82,15 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -133,6 +121,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, @@ -141,6 +130,7 @@ "geometry_num_floors_above_grade": 1, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family detached", @@ -150,22 +140,20 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "64000.0", - "heat_pump_heating_capacity_17F": "auto", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "none", "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "natural gas", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.92, @@ -186,7 +174,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base-atticroof-unvented-insulated-roof.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -208,14 +196,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -236,18 +222,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -274,21 +256,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 25.8, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -315,10 +295,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "none", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -326,8 +304,6 @@ "water_heater_efficiency": 0.95, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "electricity", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "18767", "water_heater_jacket_rvalue": 0, "water_heater_location": "living space", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-atticroof-vented.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-atticroof-vented.osw index 0b701314..df14e7a3 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-atticroof-vented.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-atticroof-vented.osw @@ -6,58 +6,50 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", "cooling_system_cooling_compressor_type": "single stage", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.73, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "central air conditioner", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -65,8 +57,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -74,11 +65,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "2", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 25.0, @@ -92,17 +82,15 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -133,6 +121,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, @@ -141,6 +130,7 @@ "geometry_num_floors_above_grade": 1, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family detached", @@ -150,22 +140,20 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "64000.0", - "heat_pump_heating_capacity_17F": "auto", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "none", "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "natural gas", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.92, @@ -186,7 +174,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base-atticroof-vented.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -208,14 +196,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -236,18 +222,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -274,21 +256,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -315,10 +295,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "none", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -326,8 +304,6 @@ "water_heater_efficiency": 0.95, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "electricity", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "18767", "water_heater_jacket_rvalue": 0, "water_heater_location": "attic - vented", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-bldgtype-multifamily-shared-mechvent-preconditioning.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-bldgtype-multifamily-shared-mechvent-preconditioning.osw index 3ee357cd..9d4ca3dd 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-bldgtype-multifamily-shared-mechvent-preconditioning.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-bldgtype-multifamily-shared-mechvent-preconditioning.osw @@ -6,58 +6,50 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", "cooling_system_cooling_compressor_type": "single stage", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.73, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "central air conditioner", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -65,8 +57,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -74,11 +65,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 20.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "1", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 0.0, @@ -92,17 +82,15 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -135,6 +123,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_horizontal_location": "Left", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", @@ -145,6 +134,7 @@ "geometry_num_floors_above_grade": 5, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "apartment unit", @@ -154,22 +144,20 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "64000.0", - "heat_pump_heating_capacity_17F": "auto", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "none", "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "natural gas", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.92, @@ -190,7 +178,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base-bldgtype-multifamily-shared-mechvent-preconditioning.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -212,14 +200,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 10, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -240,18 +226,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -278,21 +260,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "shared_mech_vent_frac_recirculation": 0.5, "shared_mech_vent_precooling_efficiency": 4.0, "shared_mech_vent_precooling_fraction_cool_load_served": 0.8, @@ -326,10 +306,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "none", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -337,8 +315,6 @@ "water_heater_efficiency": 0.95, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "electricity", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "18767", "water_heater_jacket_rvalue": 0, "water_heater_location": "living space", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-bldgtype-multifamily-shared-mechvent.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-bldgtype-multifamily-shared-mechvent.osw index 3c692cca..41f1bd2b 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-bldgtype-multifamily-shared-mechvent.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-bldgtype-multifamily-shared-mechvent.osw @@ -6,58 +6,50 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", "cooling_system_cooling_compressor_type": "single stage", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.73, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "central air conditioner", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -65,8 +57,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -74,11 +65,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 20.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "1", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 0.0, @@ -92,17 +82,15 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -135,6 +123,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_horizontal_location": "Left", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", @@ -145,6 +134,7 @@ "geometry_num_floors_above_grade": 5, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "apartment unit", @@ -154,22 +144,20 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "64000.0", - "heat_pump_heating_capacity_17F": "auto", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "none", "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "natural gas", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.92, @@ -190,7 +178,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base-bldgtype-multifamily-shared-mechvent.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -212,14 +200,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 10, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -240,18 +226,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -278,21 +260,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "shared_mech_vent_frac_recirculation": 0.5, "simulation_control_timestep": "60", "site_type": "suburban", @@ -320,10 +300,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "none", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -331,8 +309,6 @@ "water_heater_efficiency": 0.95, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "electricity", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "18767", "water_heater_jacket_rvalue": 0, "water_heater_location": "living space", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-bldgtype-multifamily-shared-pv.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-bldgtype-multifamily-shared-pv.osw index 1591e5d6..69c30b38 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-bldgtype-multifamily-shared-pv.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-bldgtype-multifamily-shared-pv.osw @@ -6,58 +6,50 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", "cooling_system_cooling_compressor_type": "single stage", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.73, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "central air conditioner", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -65,8 +57,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -74,11 +65,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 20.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "1", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 0.0, @@ -92,17 +82,15 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -135,6 +123,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_horizontal_location": "Left", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", @@ -145,6 +134,7 @@ "geometry_num_floors_above_grade": 5, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "apartment unit", @@ -154,22 +144,20 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "64000.0", - "heat_pump_heating_capacity_17F": "auto", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "none", "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "natural gas", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.92, @@ -190,7 +178,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base-bldgtype-multifamily-shared-pv.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -212,14 +200,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -240,18 +226,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -278,21 +260,19 @@ "pv_system_tracking_1": "fixed", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -319,10 +299,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "none", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -330,8 +308,6 @@ "water_heater_efficiency": 0.95, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "electricity", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "18767", "water_heater_jacket_rvalue": 0, "water_heater_location": "living space", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-bldgtype-multifamily-shared-water-heater.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-bldgtype-multifamily-shared-water-heater.osw index 2bfa6e58..5190657c 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-bldgtype-multifamily-shared-water-heater.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-bldgtype-multifamily-shared-water-heater.osw @@ -6,58 +6,50 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", "cooling_system_cooling_compressor_type": "single stage", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.73, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "central air conditioner", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -65,8 +57,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -74,11 +65,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 20.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "1", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 0.0, @@ -92,17 +82,15 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -135,6 +123,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_horizontal_location": "Left", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", @@ -145,6 +134,7 @@ "geometry_num_floors_above_grade": 5, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "apartment unit", @@ -154,22 +144,20 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "64000.0", - "heat_pump_heating_capacity_17F": "auto", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "none", "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "natural gas", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.92, @@ -190,7 +178,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base-bldgtype-multifamily-shared-water-heater.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -212,14 +200,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -240,18 +226,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -278,21 +260,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -319,10 +299,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "none", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -330,8 +308,6 @@ "water_heater_efficiency": 0.59, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "natural gas", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "40000", "water_heater_jacket_rvalue": 0, "water_heater_location": "living space", "water_heater_num_units_served": 6, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-bldgtype-multifamily.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-bldgtype-multifamily.osw index 01616a80..3dad3ed6 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-bldgtype-multifamily.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-bldgtype-multifamily.osw @@ -6,58 +6,50 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", "cooling_system_cooling_compressor_type": "single stage", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.73, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "central air conditioner", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -65,8 +57,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -74,11 +65,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 20.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "1", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 0.0, @@ -92,17 +82,15 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -135,6 +123,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_horizontal_location": "Left", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", @@ -145,6 +134,7 @@ "geometry_num_floors_above_grade": 5, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "apartment unit", @@ -154,22 +144,20 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "64000.0", - "heat_pump_heating_capacity_17F": "auto", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "none", "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "natural gas", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.92, @@ -190,7 +178,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base-bldgtype-multifamily.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -212,14 +200,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -240,18 +226,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -278,21 +260,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -319,10 +299,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "none", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -330,8 +308,6 @@ "water_heater_efficiency": 0.95, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "electricity", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "18767", "water_heater_jacket_rvalue": 0, "water_heater_location": "living space", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-bldgtype-single-family-attached.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-bldgtype-single-family-attached.osw index 11d4cad3..f7707c9b 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-bldgtype-single-family-attached.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-bldgtype-single-family-attached.osw @@ -6,58 +6,50 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", "cooling_system_cooling_compressor_type": "single stage", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.73, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "central air conditioner", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -65,8 +57,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -74,11 +65,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "2", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 25.0, @@ -92,17 +82,15 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -134,6 +122,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_horizontal_location": "Left", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", @@ -143,6 +132,7 @@ "geometry_num_floors_above_grade": 1, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family attached", @@ -152,22 +142,20 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "64000.0", - "heat_pump_heating_capacity_17F": "auto", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "none", "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "natural gas", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.92, @@ -188,7 +176,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base-bldgtype-single-family-attached.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -210,14 +198,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -238,18 +224,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -276,21 +258,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -317,10 +297,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "none", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -328,8 +306,6 @@ "water_heater_efficiency": 0.95, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "electricity", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "18767", "water_heater_jacket_rvalue": 0, "water_heater_location": "living space", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-combi-tankless-outside.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-combi-tankless-outside.osw index e28ea3a9..0b61553c 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-combi-tankless-outside.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-combi-tankless-outside.osw @@ -6,58 +6,50 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", "cooling_system_cooling_compressor_type": "single stage", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.73, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "none", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -65,8 +57,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -74,11 +65,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "2", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 25.0, @@ -92,17 +82,15 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -133,6 +121,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, @@ -141,6 +130,7 @@ "geometry_num_floors_above_grade": 1, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family detached", @@ -150,23 +140,20 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "64000.0", - "heat_pump_heating_capacity_17F": "auto", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "none", - "heating_system_electric_auxiliary_energy": 200.0, "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "natural gas", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.92, @@ -187,7 +174,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base-dhw-combi-tankless-outside.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -209,14 +196,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -237,18 +222,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -275,21 +256,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -316,10 +295,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "none", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -327,8 +304,6 @@ "water_heater_efficiency": 0.95, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "electricity", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "18767", "water_heater_jacket_rvalue": 0, "water_heater_location": "other exterior", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-combi-tankless.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-combi-tankless.osw index 2268fc48..323112c8 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-combi-tankless.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-combi-tankless.osw @@ -6,58 +6,50 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", "cooling_system_cooling_compressor_type": "single stage", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.73, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "none", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -65,8 +57,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -74,11 +65,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "2", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 25.0, @@ -92,17 +82,15 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -133,6 +121,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, @@ -141,6 +130,7 @@ "geometry_num_floors_above_grade": 1, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family detached", @@ -150,23 +140,20 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "64000.0", - "heat_pump_heating_capacity_17F": "auto", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "none", - "heating_system_electric_auxiliary_energy": 200.0, "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "natural gas", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.92, @@ -187,7 +174,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base-dhw-combi-tankless.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -209,14 +196,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -237,18 +222,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -275,21 +256,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -316,10 +295,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "none", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -327,8 +304,6 @@ "water_heater_efficiency": 0.95, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "electricity", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "18767", "water_heater_jacket_rvalue": 0, "water_heater_location": "living space", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-dwhr.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-dwhr.osw index 913e51f3..26a95e0d 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-dwhr.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-dwhr.osw @@ -6,58 +6,50 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", "cooling_system_cooling_compressor_type": "single stage", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.73, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "central air conditioner", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -65,8 +57,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -74,11 +65,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "2", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 25.0, @@ -92,17 +82,15 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "all", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -133,6 +121,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, @@ -141,6 +130,7 @@ "geometry_num_floors_above_grade": 1, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family detached", @@ -150,22 +140,20 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "64000.0", - "heat_pump_heating_capacity_17F": "auto", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "none", "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "natural gas", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.92, @@ -186,7 +174,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base-dhw-dwhr.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -208,14 +196,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -236,18 +222,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -274,21 +256,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -315,10 +295,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "none", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -326,8 +304,6 @@ "water_heater_efficiency": 0.95, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "electricity", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "18767", "water_heater_jacket_rvalue": 0, "water_heater_location": "living space", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-indirect-outside.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-indirect-outside.osw index 6108f0e6..6f82fe1c 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-indirect-outside.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-indirect-outside.osw @@ -6,58 +6,50 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", "cooling_system_cooling_compressor_type": "single stage", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.73, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "none", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -65,8 +57,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -74,11 +65,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "2", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 25.0, @@ -92,17 +82,15 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -133,6 +121,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, @@ -141,6 +130,7 @@ "geometry_num_floors_above_grade": 1, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family detached", @@ -150,23 +140,20 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "64000.0", - "heat_pump_heating_capacity_17F": "auto", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "none", - "heating_system_electric_auxiliary_energy": 200.0, "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "natural gas", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.92, @@ -187,7 +174,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base-dhw-indirect-outside.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -209,14 +196,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -237,18 +222,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -275,21 +256,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -316,10 +295,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "none", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -327,8 +304,6 @@ "water_heater_efficiency": 0.95, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "electricity", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "18767", "water_heater_jacket_rvalue": 0, "water_heater_location": "other exterior", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-indirect-standbyloss.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-indirect-standbyloss.osw index b793735d..9313bea7 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-indirect-standbyloss.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-indirect-standbyloss.osw @@ -6,58 +6,50 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", "cooling_system_cooling_compressor_type": "single stage", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.73, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "none", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -65,8 +57,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -74,11 +65,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "2", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 25.0, @@ -92,17 +82,15 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -133,6 +121,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, @@ -141,6 +130,7 @@ "geometry_num_floors_above_grade": 1, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family detached", @@ -150,23 +140,20 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "64000.0", - "heat_pump_heating_capacity_17F": "auto", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "none", - "heating_system_electric_auxiliary_energy": 200.0, "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "natural gas", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.92, @@ -187,7 +174,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base-dhw-indirect-standbyloss.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -209,14 +196,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -237,18 +222,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -275,21 +256,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -316,10 +295,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "none", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -327,8 +304,6 @@ "water_heater_efficiency": 0.95, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "electricity", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "18767", "water_heater_jacket_rvalue": 0, "water_heater_location": "living space", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-indirect-with-solar-fraction.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-indirect-with-solar-fraction.osw index a0940588..8f278bfc 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-indirect-with-solar-fraction.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-indirect-with-solar-fraction.osw @@ -6,58 +6,50 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", "cooling_system_cooling_compressor_type": "single stage", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.73, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "none", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -65,8 +57,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -74,11 +65,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "2", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 25.0, @@ -92,17 +82,15 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -133,6 +121,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, @@ -141,6 +130,7 @@ "geometry_num_floors_above_grade": 1, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family detached", @@ -150,23 +140,20 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "64000.0", - "heat_pump_heating_capacity_17F": "auto", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "none", - "heating_system_electric_auxiliary_energy": 200.0, "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "natural gas", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.92, @@ -187,7 +174,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base-dhw-indirect-with-solar-fraction.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -209,14 +196,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -237,18 +222,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -275,21 +256,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -316,10 +295,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "hot water", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -327,8 +304,6 @@ "water_heater_efficiency": 0.95, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "electricity", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "18767", "water_heater_jacket_rvalue": 0, "water_heater_location": "living space", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-indirect.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-indirect.osw index f2fb4721..45ca373c 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-indirect.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-indirect.osw @@ -6,58 +6,50 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", "cooling_system_cooling_compressor_type": "single stage", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.73, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "none", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -65,8 +57,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -74,11 +65,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "2", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 25.0, @@ -92,17 +82,15 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -133,6 +121,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, @@ -141,6 +130,7 @@ "geometry_num_floors_above_grade": 1, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family detached", @@ -150,23 +140,20 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "64000.0", - "heat_pump_heating_capacity_17F": "auto", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "none", - "heating_system_electric_auxiliary_energy": 200.0, "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "natural gas", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.92, @@ -187,7 +174,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base-dhw-indirect.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -209,14 +196,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -237,18 +222,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -275,21 +256,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -316,10 +295,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "none", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -327,8 +304,6 @@ "water_heater_efficiency": 0.95, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "electricity", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "18767", "water_heater_jacket_rvalue": 0, "water_heater_location": "living space", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-jacket-electric.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-jacket-electric.osw index ca3d7a9f..c9dbd6bd 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-jacket-electric.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-jacket-electric.osw @@ -6,58 +6,50 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", "cooling_system_cooling_compressor_type": "single stage", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.73, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "central air conditioner", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -65,8 +57,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -74,11 +65,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "2", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 25.0, @@ -92,17 +82,15 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -133,6 +121,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, @@ -141,6 +130,7 @@ "geometry_num_floors_above_grade": 1, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family detached", @@ -150,22 +140,20 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "64000.0", - "heat_pump_heating_capacity_17F": "auto", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "none", "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "natural gas", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.92, @@ -186,7 +174,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base-dhw-jacket-electric.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -208,14 +196,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -236,18 +222,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -274,21 +256,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -315,10 +295,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "none", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -326,8 +304,6 @@ "water_heater_efficiency": 0.95, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "electricity", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "18767", "water_heater_jacket_rvalue": 10.0, "water_heater_location": "living space", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-jacket-gas.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-jacket-gas.osw index 4536ef27..e7f08997 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-jacket-gas.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-jacket-gas.osw @@ -6,58 +6,50 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", "cooling_system_cooling_compressor_type": "single stage", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.73, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "central air conditioner", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -65,8 +57,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -74,11 +65,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "2", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 25.0, @@ -92,17 +82,15 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -133,6 +121,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, @@ -141,6 +130,7 @@ "geometry_num_floors_above_grade": 1, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family detached", @@ -150,22 +140,20 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "64000.0", - "heat_pump_heating_capacity_17F": "auto", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "none", "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "natural gas", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.92, @@ -186,7 +174,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base-dhw-jacket-gas.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -208,14 +196,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -236,18 +222,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -274,21 +256,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -315,10 +295,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "none", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -326,8 +304,6 @@ "water_heater_efficiency": 0.59, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "natural gas", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "40000", "water_heater_jacket_rvalue": 10.0, "water_heater_location": "living space", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-jacket-hpwh.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-jacket-hpwh.osw index bb561c61..ba62d580 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-jacket-hpwh.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-jacket-hpwh.osw @@ -6,58 +6,50 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", "cooling_system_cooling_compressor_type": "single stage", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.73, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "central air conditioner", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -65,8 +57,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -74,11 +65,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "2", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 25.0, @@ -92,17 +82,15 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -133,6 +121,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, @@ -141,6 +130,7 @@ "geometry_num_floors_above_grade": 1, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family detached", @@ -150,22 +140,20 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "64000.0", - "heat_pump_heating_capacity_17F": "auto", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "none", "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "natural gas", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.92, @@ -186,7 +174,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base-dhw-jacket-hpwh.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -208,14 +196,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -236,18 +222,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -274,21 +256,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -315,10 +295,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "none", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -326,8 +304,6 @@ "water_heater_efficiency": 2.3, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "electricity", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "auto", "water_heater_jacket_rvalue": 10.0, "water_heater_location": "living space", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-jacket-indirect.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-jacket-indirect.osw index 23929b9a..3fc0ffad 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-jacket-indirect.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-jacket-indirect.osw @@ -6,58 +6,50 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", "cooling_system_cooling_compressor_type": "single stage", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.73, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "none", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -65,8 +57,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -74,11 +65,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "2", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 25.0, @@ -92,17 +82,15 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -133,6 +121,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, @@ -141,6 +130,7 @@ "geometry_num_floors_above_grade": 1, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family detached", @@ -150,23 +140,20 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "64000.0", - "heat_pump_heating_capacity_17F": "auto", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "none", - "heating_system_electric_auxiliary_energy": 200.0, "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "natural gas", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.92, @@ -187,7 +174,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base-dhw-jacket-indirect.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -209,14 +196,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -237,18 +222,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -275,21 +256,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -316,10 +295,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "none", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -327,8 +304,6 @@ "water_heater_efficiency": 0.95, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "electricity", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "18767", "water_heater_jacket_rvalue": 10.0, "water_heater_location": "living space", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-low-flow-fixtures.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-low-flow-fixtures.osw index cd2d69e5..49291820 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-low-flow-fixtures.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-low-flow-fixtures.osw @@ -6,58 +6,50 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", "cooling_system_cooling_compressor_type": "single stage", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.73, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "central air conditioner", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -65,8 +57,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -74,11 +65,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "2", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 25.0, @@ -92,17 +82,15 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -133,6 +121,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, @@ -141,6 +130,7 @@ "geometry_num_floors_above_grade": 1, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family detached", @@ -150,22 +140,20 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "64000.0", - "heat_pump_heating_capacity_17F": "auto", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "none", "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "natural gas", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.92, @@ -186,7 +174,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base-dhw-low-flow-fixtures.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -208,14 +196,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -236,18 +222,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -274,21 +256,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -315,10 +295,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "none", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": true, @@ -326,8 +304,6 @@ "water_heater_efficiency": 0.95, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "electricity", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "18767", "water_heater_jacket_rvalue": 0, "water_heater_location": "living space", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-none.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-none.osw index c482758c..0e145230 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-none.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-none.osw @@ -6,58 +6,50 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", "cooling_system_cooling_compressor_type": "single stage", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.73, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "central air conditioner", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -65,20 +57,18 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", "dishwasher_label_gas_rate": "1.09", "dishwasher_label_usage": "4.0", - "dishwasher_location": "living space", + "dishwasher_location": "none", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": false, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "2", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 25.0, @@ -92,17 +82,15 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -133,6 +121,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, @@ -141,6 +130,7 @@ "geometry_num_floors_above_grade": 1, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family detached", @@ -150,22 +140,20 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "64000.0", - "heat_pump_heating_capacity_17F": "auto", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "none", "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "natural gas", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.92, @@ -186,7 +174,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base-dhw-none.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -208,14 +196,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -236,18 +222,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -274,21 +256,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -315,10 +295,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "none", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -326,8 +304,6 @@ "water_heater_efficiency": 0.95, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "electricity", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "18767", "water_heater_jacket_rvalue": 0, "water_heater_location": "living space", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-recirc-demand.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-recirc-demand.osw index a61653d7..7908fc32 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-recirc-demand.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-recirc-demand.osw @@ -6,58 +6,50 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", "cooling_system_cooling_compressor_type": "single stage", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.73, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "central air conditioner", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "3.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "presence sensor demand control", @@ -65,8 +57,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Recirculation", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -74,11 +65,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "2", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 25.0, @@ -92,17 +82,15 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -133,6 +121,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, @@ -141,6 +130,7 @@ "geometry_num_floors_above_grade": 1, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family detached", @@ -150,22 +140,20 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "64000.0", - "heat_pump_heating_capacity_17F": "auto", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "none", "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "natural gas", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.92, @@ -186,7 +174,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base-dhw-recirc-demand.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -208,14 +196,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -236,18 +222,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -274,21 +256,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -315,10 +295,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "none", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -326,8 +304,6 @@ "water_heater_efficiency": 0.95, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "electricity", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "18767", "water_heater_jacket_rvalue": 0, "water_heater_location": "living space", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-recirc-manual.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-recirc-manual.osw index a05a20ef..7add14d7 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-recirc-manual.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-recirc-manual.osw @@ -6,58 +6,50 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", "cooling_system_cooling_compressor_type": "single stage", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.73, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "central air conditioner", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "3.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "manual demand control", @@ -65,8 +57,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Recirculation", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -74,11 +65,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "2", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 25.0, @@ -92,17 +82,15 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -133,6 +121,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, @@ -141,6 +130,7 @@ "geometry_num_floors_above_grade": 1, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family detached", @@ -150,22 +140,20 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "64000.0", - "heat_pump_heating_capacity_17F": "auto", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "none", "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "natural gas", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.92, @@ -186,7 +174,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base-dhw-recirc-manual.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -208,14 +196,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -236,18 +222,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -274,21 +256,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -315,10 +295,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "none", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -326,8 +304,6 @@ "water_heater_efficiency": 0.95, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "electricity", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "18767", "water_heater_jacket_rvalue": 0, "water_heater_location": "living space", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-recirc-nocontrol.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-recirc-nocontrol.osw index 71653b0a..79b75bf6 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-recirc-nocontrol.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-recirc-nocontrol.osw @@ -6,58 +6,50 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", "cooling_system_cooling_compressor_type": "single stage", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.73, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "central air conditioner", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -65,8 +57,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Recirculation", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -74,11 +65,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "2", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 25.0, @@ -92,17 +82,15 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -133,6 +121,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, @@ -141,6 +130,7 @@ "geometry_num_floors_above_grade": 1, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family detached", @@ -150,22 +140,20 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "64000.0", - "heat_pump_heating_capacity_17F": "auto", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "none", "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "natural gas", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.92, @@ -186,7 +174,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base-dhw-recirc-nocontrol.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -208,14 +196,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -236,18 +222,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -274,21 +256,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -315,10 +295,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "none", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -326,8 +304,6 @@ "water_heater_efficiency": 0.95, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "electricity", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "18767", "water_heater_jacket_rvalue": 0, "water_heater_location": "living space", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-recirc-temperature.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-recirc-temperature.osw index f765f8be..8172f621 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-recirc-temperature.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-recirc-temperature.osw @@ -6,58 +6,50 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", "cooling_system_cooling_compressor_type": "single stage", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.73, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "central air conditioner", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "temperature", @@ -65,8 +57,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Recirculation", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -74,11 +65,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "2", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 25.0, @@ -92,17 +82,15 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -133,6 +121,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, @@ -141,6 +130,7 @@ "geometry_num_floors_above_grade": 1, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family detached", @@ -150,22 +140,20 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "64000.0", - "heat_pump_heating_capacity_17F": "auto", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "none", "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "natural gas", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.92, @@ -186,7 +174,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base-dhw-recirc-temperature.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -208,14 +196,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -236,18 +222,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -274,21 +256,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -315,10 +295,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "none", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -326,8 +304,6 @@ "water_heater_efficiency": 0.95, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "electricity", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "18767", "water_heater_jacket_rvalue": 0, "water_heater_location": "living space", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-recirc-timer.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-recirc-timer.osw index f647ce5e..925dc2fb 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-recirc-timer.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-recirc-timer.osw @@ -6,58 +6,50 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", "cooling_system_cooling_compressor_type": "single stage", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.73, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "central air conditioner", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "timer", @@ -65,8 +57,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Recirculation", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -74,11 +65,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "2", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 25.0, @@ -92,17 +82,15 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -133,6 +121,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, @@ -141,6 +130,7 @@ "geometry_num_floors_above_grade": 1, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family detached", @@ -150,22 +140,20 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "64000.0", - "heat_pump_heating_capacity_17F": "auto", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "none", "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "natural gas", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.92, @@ -186,7 +174,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base-dhw-recirc-timer.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -208,14 +196,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -236,18 +222,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -274,21 +256,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -315,10 +295,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "none", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -326,8 +304,6 @@ "water_heater_efficiency": 0.95, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "electricity", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "18767", "water_heater_jacket_rvalue": 0, "water_heater_location": "living space", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-solar-direct-evacuated-tube.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-solar-direct-evacuated-tube.osw index ea50ad69..5ca6c58b 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-solar-direct-evacuated-tube.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-solar-direct-evacuated-tube.osw @@ -6,58 +6,50 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", "cooling_system_cooling_compressor_type": "single stage", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.73, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "central air conditioner", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -65,8 +57,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -74,11 +65,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "2", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 25.0, @@ -92,17 +82,15 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -133,6 +121,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, @@ -141,6 +130,7 @@ "geometry_num_floors_above_grade": 1, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family detached", @@ -150,22 +140,20 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "64000.0", - "heat_pump_heating_capacity_17F": "auto", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "none", "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "natural gas", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.92, @@ -186,7 +174,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base-dhw-solar-direct-evacuated-tube.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -208,14 +196,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -236,18 +222,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -274,21 +256,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -315,10 +295,8 @@ "solar_thermal_storage_volume": "60", "solar_thermal_system_type": "hot water", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -326,8 +304,6 @@ "water_heater_efficiency": 0.95, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "electricity", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "18767", "water_heater_jacket_rvalue": 0, "water_heater_location": "living space", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-solar-direct-flat-plate.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-solar-direct-flat-plate.osw index e51a8837..1acea85f 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-solar-direct-flat-plate.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-solar-direct-flat-plate.osw @@ -6,58 +6,50 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", "cooling_system_cooling_compressor_type": "single stage", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.73, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "central air conditioner", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -65,8 +57,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -74,11 +65,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "2", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 25.0, @@ -92,17 +82,15 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -133,6 +121,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, @@ -141,6 +130,7 @@ "geometry_num_floors_above_grade": 1, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family detached", @@ -150,22 +140,20 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "64000.0", - "heat_pump_heating_capacity_17F": "auto", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "none", "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "natural gas", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.92, @@ -186,7 +174,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base-dhw-solar-direct-flat-plate.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -208,14 +196,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -236,18 +222,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -274,21 +256,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -315,10 +295,8 @@ "solar_thermal_storage_volume": "60", "solar_thermal_system_type": "hot water", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -326,8 +304,6 @@ "water_heater_efficiency": 0.95, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "electricity", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "18767", "water_heater_jacket_rvalue": 0, "water_heater_location": "living space", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-solar-direct-ics.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-solar-direct-ics.osw index a5421bc9..04a2d0f8 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-solar-direct-ics.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-solar-direct-ics.osw @@ -6,58 +6,50 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", "cooling_system_cooling_compressor_type": "single stage", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.73, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "central air conditioner", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -65,8 +57,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -74,11 +65,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "2", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 25.0, @@ -92,17 +82,15 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -133,6 +121,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, @@ -141,6 +130,7 @@ "geometry_num_floors_above_grade": 1, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family detached", @@ -150,22 +140,20 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "64000.0", - "heat_pump_heating_capacity_17F": "auto", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "none", "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "natural gas", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.92, @@ -186,7 +174,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base-dhw-solar-direct-ics.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -208,14 +196,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -236,18 +222,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -274,21 +256,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -315,10 +295,8 @@ "solar_thermal_storage_volume": "60", "solar_thermal_system_type": "hot water", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -326,8 +304,6 @@ "water_heater_efficiency": 0.95, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "electricity", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "18767", "water_heater_jacket_rvalue": 0, "water_heater_location": "living space", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-solar-fraction.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-solar-fraction.osw index 20d1c101..22ba05c9 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-solar-fraction.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-solar-fraction.osw @@ -6,58 +6,50 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", "cooling_system_cooling_compressor_type": "single stage", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.73, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "central air conditioner", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -65,8 +57,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -74,11 +65,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "2", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 25.0, @@ -92,17 +82,15 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -133,6 +121,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, @@ -141,6 +130,7 @@ "geometry_num_floors_above_grade": 1, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family detached", @@ -150,22 +140,20 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "64000.0", - "heat_pump_heating_capacity_17F": "auto", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "none", "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "natural gas", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.92, @@ -186,7 +174,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base-dhw-solar-fraction.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -208,14 +196,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -236,18 +222,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -274,21 +256,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -315,10 +295,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "hot water", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -326,8 +304,6 @@ "water_heater_efficiency": 0.95, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "electricity", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "18767", "water_heater_jacket_rvalue": 0, "water_heater_location": "living space", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-solar-indirect-flat-plate.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-solar-indirect-flat-plate.osw index 155f2774..27c2c20f 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-solar-indirect-flat-plate.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-solar-indirect-flat-plate.osw @@ -6,58 +6,50 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", "cooling_system_cooling_compressor_type": "single stage", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.73, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "central air conditioner", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -65,8 +57,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -74,11 +65,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "2", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 25.0, @@ -92,17 +82,15 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -133,6 +121,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, @@ -141,6 +130,7 @@ "geometry_num_floors_above_grade": 1, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family detached", @@ -150,22 +140,20 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "64000.0", - "heat_pump_heating_capacity_17F": "auto", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "none", "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "natural gas", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.92, @@ -186,7 +174,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base-dhw-solar-indirect-flat-plate.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -208,14 +196,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -236,18 +222,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -274,21 +256,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -315,10 +295,8 @@ "solar_thermal_storage_volume": "60", "solar_thermal_system_type": "hot water", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -326,8 +304,6 @@ "water_heater_efficiency": 0.95, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "electricity", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "18767", "water_heater_jacket_rvalue": 0, "water_heater_location": "living space", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-solar-thermosyphon-flat-plate.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-solar-thermosyphon-flat-plate.osw index 10d3e529..972c311b 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-solar-thermosyphon-flat-plate.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-solar-thermosyphon-flat-plate.osw @@ -6,58 +6,50 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", "cooling_system_cooling_compressor_type": "single stage", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.73, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "central air conditioner", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -65,8 +57,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -74,11 +65,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "2", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 25.0, @@ -92,17 +82,15 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -133,6 +121,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, @@ -141,6 +130,7 @@ "geometry_num_floors_above_grade": 1, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family detached", @@ -150,22 +140,20 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "64000.0", - "heat_pump_heating_capacity_17F": "auto", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "none", "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "natural gas", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.92, @@ -186,7 +174,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base-dhw-solar-thermosyphon-flat-plate.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -208,14 +196,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -236,18 +222,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -274,21 +256,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -315,10 +295,8 @@ "solar_thermal_storage_volume": "60", "solar_thermal_system_type": "hot water", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -326,8 +304,6 @@ "water_heater_efficiency": 0.95, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "electricity", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "18767", "water_heater_jacket_rvalue": 0, "water_heater_location": "living space", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-tank-coal.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-tank-coal.osw index 5cb1a470..f2fa74e3 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-tank-coal.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-tank-coal.osw @@ -6,58 +6,50 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", "cooling_system_cooling_compressor_type": "single stage", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.73, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "central air conditioner", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -65,8 +57,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -74,11 +65,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "2", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 25.0, @@ -92,17 +82,15 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -133,6 +121,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, @@ -141,6 +130,7 @@ "geometry_num_floors_above_grade": 1, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family detached", @@ -150,22 +140,20 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "64000.0", - "heat_pump_heating_capacity_17F": "auto", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "none", "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "natural gas", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.92, @@ -186,7 +174,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base-dhw-tank-coal.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -208,14 +196,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -236,18 +222,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -274,21 +256,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -315,10 +295,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "none", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -326,8 +304,6 @@ "water_heater_efficiency": 0.59, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "coal", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "40000", "water_heater_jacket_rvalue": 0, "water_heater_location": "living space", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-tank-elec-uef.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-tank-elec-uef.osw index bd217237..90059ea7 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-tank-elec-uef.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-tank-elec-uef.osw @@ -6,58 +6,50 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", "cooling_system_cooling_compressor_type": "single stage", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.73, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "central air conditioner", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -65,8 +57,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -74,11 +65,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "2", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 25.0, @@ -92,17 +82,15 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -133,6 +121,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, @@ -141,6 +130,7 @@ "geometry_num_floors_above_grade": 1, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family detached", @@ -150,22 +140,20 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "64000.0", - "heat_pump_heating_capacity_17F": "auto", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "none", "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "natural gas", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.92, @@ -186,7 +174,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base-dhw-tank-elec-uef.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -208,14 +196,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -236,18 +222,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -274,21 +256,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -315,10 +295,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "none", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -327,8 +305,6 @@ "water_heater_efficiency_type": "UniformEnergyFactor", "water_heater_first_hour_rating": 46, "water_heater_fuel_type": "electricity", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "15354", "water_heater_jacket_rvalue": 0, "water_heater_location": "living space", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-tank-gas-outside.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-tank-gas-outside.osw index 3055e685..559a2614 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-tank-gas-outside.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-tank-gas-outside.osw @@ -6,58 +6,50 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", "cooling_system_cooling_compressor_type": "single stage", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.73, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "central air conditioner", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -65,8 +57,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -74,11 +65,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "2", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 25.0, @@ -92,17 +82,15 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -133,6 +121,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, @@ -141,6 +130,7 @@ "geometry_num_floors_above_grade": 1, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family detached", @@ -150,22 +140,20 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "64000.0", - "heat_pump_heating_capacity_17F": "auto", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "none", "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "natural gas", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.92, @@ -186,7 +174,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base-dhw-tank-gas-outside.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -208,14 +196,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -236,18 +222,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -274,21 +256,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -315,10 +295,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "none", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -326,8 +304,6 @@ "water_heater_efficiency": 0.59, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "natural gas", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "40000", "water_heater_jacket_rvalue": 0, "water_heater_location": "other exterior", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-tank-gas-uef.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-tank-gas-uef.osw index 1ac14155..11ce571e 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-tank-gas-uef.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-tank-gas-uef.osw @@ -6,58 +6,50 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", "cooling_system_cooling_compressor_type": "single stage", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.73, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "central air conditioner", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -65,8 +57,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -74,11 +65,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "2", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 25.0, @@ -92,17 +82,15 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -133,6 +121,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, @@ -141,6 +130,7 @@ "geometry_num_floors_above_grade": 1, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family detached", @@ -150,22 +140,20 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "64000.0", - "heat_pump_heating_capacity_17F": "auto", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "none", "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "natural gas", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.92, @@ -186,7 +174,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base-dhw-tank-gas-uef.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -208,14 +196,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -236,18 +222,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -274,21 +256,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -315,10 +295,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "none", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -327,8 +305,6 @@ "water_heater_efficiency_type": "UniformEnergyFactor", "water_heater_first_hour_rating": 56, "water_heater_fuel_type": "natural gas", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "30000", "water_heater_jacket_rvalue": 0, "water_heater_location": "living space", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-tank-gas.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-tank-gas.osw index d56441b2..054eeca8 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-tank-gas.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-tank-gas.osw @@ -6,58 +6,50 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", "cooling_system_cooling_compressor_type": "single stage", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.73, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "central air conditioner", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -65,8 +57,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -74,11 +65,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "2", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 25.0, @@ -92,17 +82,15 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -133,6 +121,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, @@ -141,6 +130,7 @@ "geometry_num_floors_above_grade": 1, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family detached", @@ -150,22 +140,20 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "64000.0", - "heat_pump_heating_capacity_17F": "auto", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "none", "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "natural gas", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.92, @@ -186,7 +174,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base-dhw-tank-gas.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -208,14 +196,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -236,18 +222,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -274,21 +256,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -315,10 +295,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "none", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -326,8 +304,6 @@ "water_heater_efficiency": 0.59, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "natural gas", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "40000", "water_heater_jacket_rvalue": 0, "water_heater_location": "living space", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-tank-heat-pump-outside.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-tank-heat-pump-outside.osw index 6bcbeab3..7c563598 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-tank-heat-pump-outside.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-tank-heat-pump-outside.osw @@ -6,58 +6,50 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", "cooling_system_cooling_compressor_type": "single stage", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.73, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "central air conditioner", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -65,8 +57,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -74,11 +65,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "2", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 25.0, @@ -92,17 +82,15 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -133,6 +121,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, @@ -141,6 +130,7 @@ "geometry_num_floors_above_grade": 1, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family detached", @@ -150,22 +140,20 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "64000.0", - "heat_pump_heating_capacity_17F": "auto", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "none", "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "natural gas", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.92, @@ -186,7 +174,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base-dhw-tank-heat-pump-outside.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -208,14 +196,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -236,18 +222,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -274,21 +256,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -315,10 +295,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "none", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -326,8 +304,6 @@ "water_heater_efficiency": 2.3, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "electricity", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "auto", "water_heater_jacket_rvalue": 0, "water_heater_location": "other exterior", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-tank-heat-pump-uef.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-tank-heat-pump-uef.osw index 72ec6be1..d65317a1 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-tank-heat-pump-uef.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-tank-heat-pump-uef.osw @@ -6,58 +6,50 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", "cooling_system_cooling_compressor_type": "single stage", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.73, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "central air conditioner", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -65,8 +57,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -74,11 +65,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "2", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 25.0, @@ -92,17 +82,15 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -133,6 +121,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, @@ -141,6 +130,7 @@ "geometry_num_floors_above_grade": 1, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family detached", @@ -150,22 +140,20 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "64000.0", - "heat_pump_heating_capacity_17F": "auto", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "none", "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "natural gas", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.92, @@ -186,7 +174,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base-dhw-tank-heat-pump-uef.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -208,14 +196,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -236,18 +222,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -274,21 +256,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -315,10 +295,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "none", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -327,8 +305,6 @@ "water_heater_efficiency_type": "UniformEnergyFactor", "water_heater_first_hour_rating": 60, "water_heater_fuel_type": "electricity", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "18767", "water_heater_jacket_rvalue": 0, "water_heater_location": "living space", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-tank-heat-pump-with-solar-fraction.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-tank-heat-pump-with-solar-fraction.osw index 2679659c..4d97b626 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-tank-heat-pump-with-solar-fraction.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-tank-heat-pump-with-solar-fraction.osw @@ -6,58 +6,50 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", "cooling_system_cooling_compressor_type": "single stage", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.73, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "central air conditioner", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -65,8 +57,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -74,11 +65,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "2", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 25.0, @@ -92,17 +82,15 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -133,6 +121,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, @@ -141,6 +130,7 @@ "geometry_num_floors_above_grade": 1, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family detached", @@ -150,22 +140,20 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "64000.0", - "heat_pump_heating_capacity_17F": "auto", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "none", "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "natural gas", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.92, @@ -186,7 +174,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base-dhw-tank-heat-pump-with-solar-fraction.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -208,14 +196,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -236,18 +222,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -274,21 +256,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -315,10 +295,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "hot water", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -326,8 +304,6 @@ "water_heater_efficiency": 2.3, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "electricity", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "auto", "water_heater_jacket_rvalue": 0, "water_heater_location": "living space", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-tank-heat-pump-with-solar.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-tank-heat-pump-with-solar.osw index a5848a3e..a43ae484 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-tank-heat-pump-with-solar.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-tank-heat-pump-with-solar.osw @@ -6,58 +6,50 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", "cooling_system_cooling_compressor_type": "single stage", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.73, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "central air conditioner", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -65,8 +57,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -74,11 +65,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "2", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 25.0, @@ -92,17 +82,15 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -133,6 +121,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, @@ -141,6 +130,7 @@ "geometry_num_floors_above_grade": 1, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family detached", @@ -150,22 +140,20 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "64000.0", - "heat_pump_heating_capacity_17F": "auto", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "none", "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "natural gas", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.92, @@ -186,7 +174,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base-dhw-tank-heat-pump-with-solar.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -208,14 +196,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -236,18 +222,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -274,21 +256,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -315,10 +295,8 @@ "solar_thermal_storage_volume": "60", "solar_thermal_system_type": "hot water", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -326,8 +304,6 @@ "water_heater_efficiency": 2.3, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "electricity", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "auto", "water_heater_jacket_rvalue": 0, "water_heater_location": "living space", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-tank-heat-pump.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-tank-heat-pump.osw index 3cd44149..56a5d63c 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-tank-heat-pump.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-tank-heat-pump.osw @@ -6,58 +6,50 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", "cooling_system_cooling_compressor_type": "single stage", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.73, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "central air conditioner", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -65,8 +57,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -74,11 +65,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "2", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 25.0, @@ -92,17 +82,15 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -133,6 +121,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, @@ -141,6 +130,7 @@ "geometry_num_floors_above_grade": 1, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family detached", @@ -150,22 +140,20 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "64000.0", - "heat_pump_heating_capacity_17F": "auto", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "none", "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "natural gas", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.92, @@ -186,7 +174,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base-dhw-tank-heat-pump.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -208,14 +196,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -236,18 +222,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -274,21 +256,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -315,10 +295,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "none", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -326,8 +304,6 @@ "water_heater_efficiency": 2.3, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "electricity", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "auto", "water_heater_jacket_rvalue": 0, "water_heater_location": "living space", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-tank-oil.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-tank-oil.osw index 6a23dca2..f76321fe 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-tank-oil.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-tank-oil.osw @@ -6,58 +6,50 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", "cooling_system_cooling_compressor_type": "single stage", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.73, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "central air conditioner", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -65,8 +57,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -74,11 +65,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "2", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 25.0, @@ -92,17 +82,15 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -133,6 +121,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, @@ -141,6 +130,7 @@ "geometry_num_floors_above_grade": 1, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family detached", @@ -150,22 +140,20 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "64000.0", - "heat_pump_heating_capacity_17F": "auto", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "none", "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "natural gas", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.92, @@ -186,7 +174,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base-dhw-tank-oil.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -208,14 +196,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -236,18 +222,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -274,21 +256,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -315,10 +295,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "none", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -326,8 +304,6 @@ "water_heater_efficiency": 0.59, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "fuel oil", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "40000", "water_heater_jacket_rvalue": 0, "water_heater_location": "living space", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-tank-wood.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-tank-wood.osw index 7aad9eb9..40cd09ef 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-tank-wood.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-tank-wood.osw @@ -6,58 +6,50 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", "cooling_system_cooling_compressor_type": "single stage", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.73, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "central air conditioner", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -65,8 +57,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -74,11 +65,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "2", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 25.0, @@ -92,17 +82,15 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -133,6 +121,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, @@ -141,6 +130,7 @@ "geometry_num_floors_above_grade": 1, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family detached", @@ -150,22 +140,20 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "64000.0", - "heat_pump_heating_capacity_17F": "auto", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "none", "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "natural gas", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.92, @@ -186,7 +174,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base-dhw-tank-wood.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -208,14 +196,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -236,18 +222,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -274,21 +256,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -315,10 +295,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "none", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -326,8 +304,6 @@ "water_heater_efficiency": 0.59, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "wood", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "40000", "water_heater_jacket_rvalue": 0, "water_heater_location": "living space", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-tankless-electric-outside.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-tankless-electric-outside.osw index d10b4ecf..b584ff84 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-tankless-electric-outside.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-tankless-electric-outside.osw @@ -6,58 +6,50 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", "cooling_system_cooling_compressor_type": "single stage", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.73, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "central air conditioner", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -65,8 +57,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -74,11 +65,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "2", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 25.0, @@ -92,17 +82,15 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -133,6 +121,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, @@ -141,6 +130,7 @@ "geometry_num_floors_above_grade": 1, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family detached", @@ -150,22 +140,20 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "64000.0", - "heat_pump_heating_capacity_17F": "auto", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "none", "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "natural gas", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.92, @@ -186,7 +174,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base-dhw-tankless-electric-outside.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -208,14 +196,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -236,18 +222,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -274,21 +256,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -315,10 +295,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "none", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -326,8 +304,6 @@ "water_heater_efficiency": 0.99, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "electricity", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "18767", "water_heater_jacket_rvalue": 0, "water_heater_location": "other exterior", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-tankless-electric-uef.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-tankless-electric-uef.osw index eb1b7071..9c7dfcf3 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-tankless-electric-uef.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-tankless-electric-uef.osw @@ -6,58 +6,50 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", "cooling_system_cooling_compressor_type": "single stage", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.73, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "central air conditioner", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -65,8 +57,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -74,11 +65,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "2", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 25.0, @@ -92,17 +82,15 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -133,6 +121,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, @@ -141,6 +130,7 @@ "geometry_num_floors_above_grade": 1, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family detached", @@ -150,22 +140,20 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "64000.0", - "heat_pump_heating_capacity_17F": "auto", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "none", "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "natural gas", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.92, @@ -186,7 +174,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base-dhw-tankless-electric-uef.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -208,14 +196,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -236,18 +222,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -274,21 +256,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -315,10 +295,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "none", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -326,8 +304,6 @@ "water_heater_efficiency": 0.98, "water_heater_efficiency_type": "UniformEnergyFactor", "water_heater_fuel_type": "electricity", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "18767", "water_heater_jacket_rvalue": 0, "water_heater_location": "living space", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-tankless-electric.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-tankless-electric.osw index 7311a63f..52c776c9 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-tankless-electric.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-tankless-electric.osw @@ -6,58 +6,50 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", "cooling_system_cooling_compressor_type": "single stage", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.73, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "central air conditioner", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -65,8 +57,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -74,11 +65,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "2", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 25.0, @@ -92,17 +82,15 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -133,6 +121,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, @@ -141,6 +130,7 @@ "geometry_num_floors_above_grade": 1, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family detached", @@ -150,22 +140,20 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "64000.0", - "heat_pump_heating_capacity_17F": "auto", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "none", "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "natural gas", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.92, @@ -186,7 +174,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base-dhw-tankless-electric.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -208,14 +196,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -236,18 +222,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -274,21 +256,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -315,10 +295,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "none", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -326,8 +304,6 @@ "water_heater_efficiency": 0.99, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "electricity", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "18767", "water_heater_jacket_rvalue": 0, "water_heater_location": "living space", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-tankless-gas-uef.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-tankless-gas-uef.osw index b5791128..c6287273 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-tankless-gas-uef.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-tankless-gas-uef.osw @@ -6,58 +6,50 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", "cooling_system_cooling_compressor_type": "single stage", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.73, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "central air conditioner", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -65,8 +57,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -74,11 +65,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "2", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 25.0, @@ -92,17 +82,15 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -133,6 +121,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, @@ -141,6 +130,7 @@ "geometry_num_floors_above_grade": 1, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family detached", @@ -150,22 +140,20 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "64000.0", - "heat_pump_heating_capacity_17F": "auto", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "none", "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "natural gas", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.92, @@ -186,7 +174,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base-dhw-tankless-gas-uef.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -208,14 +196,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -236,18 +222,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -274,21 +256,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -315,10 +295,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "none", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -326,8 +304,6 @@ "water_heater_efficiency": 0.93, "water_heater_efficiency_type": "UniformEnergyFactor", "water_heater_fuel_type": "natural gas", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "18767", "water_heater_jacket_rvalue": 0, "water_heater_location": "living space", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-tankless-gas-with-solar-fraction.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-tankless-gas-with-solar-fraction.osw index 907cbcce..20ed623c 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-tankless-gas-with-solar-fraction.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-tankless-gas-with-solar-fraction.osw @@ -6,58 +6,50 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", "cooling_system_cooling_compressor_type": "single stage", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.73, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "central air conditioner", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -65,8 +57,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -74,11 +65,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "2", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 25.0, @@ -92,17 +82,15 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -133,6 +121,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, @@ -141,6 +130,7 @@ "geometry_num_floors_above_grade": 1, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family detached", @@ -150,22 +140,20 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "64000.0", - "heat_pump_heating_capacity_17F": "auto", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "none", "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "natural gas", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.92, @@ -186,7 +174,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base-dhw-tankless-gas-with-solar-fraction.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -208,14 +196,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -236,18 +222,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -274,21 +256,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -315,10 +295,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "hot water", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -326,8 +304,6 @@ "water_heater_efficiency": 0.82, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "natural gas", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "18767", "water_heater_jacket_rvalue": 0, "water_heater_location": "living space", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-tankless-gas-with-solar.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-tankless-gas-with-solar.osw index 16c4a682..174b7954 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-tankless-gas-with-solar.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-tankless-gas-with-solar.osw @@ -6,58 +6,50 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", "cooling_system_cooling_compressor_type": "single stage", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.73, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "central air conditioner", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -65,8 +57,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -74,11 +65,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "2", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 25.0, @@ -92,17 +82,15 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -133,6 +121,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, @@ -141,6 +130,7 @@ "geometry_num_floors_above_grade": 1, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family detached", @@ -150,22 +140,20 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "64000.0", - "heat_pump_heating_capacity_17F": "auto", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "none", "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "natural gas", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.92, @@ -186,7 +174,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base-dhw-tankless-gas-with-solar.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -208,14 +196,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -236,18 +222,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -274,21 +256,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -315,10 +295,8 @@ "solar_thermal_storage_volume": "60", "solar_thermal_system_type": "hot water", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -326,8 +304,6 @@ "water_heater_efficiency": 0.82, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "natural gas", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "18767", "water_heater_jacket_rvalue": 0, "water_heater_location": "living space", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-tankless-gas.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-tankless-gas.osw index 97c22f90..206253ad 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-tankless-gas.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-tankless-gas.osw @@ -6,58 +6,50 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", "cooling_system_cooling_compressor_type": "single stage", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.73, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "central air conditioner", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -65,8 +57,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -74,11 +65,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "2", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 25.0, @@ -92,17 +82,15 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -133,6 +121,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, @@ -141,6 +130,7 @@ "geometry_num_floors_above_grade": 1, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family detached", @@ -150,22 +140,20 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "64000.0", - "heat_pump_heating_capacity_17F": "auto", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "none", "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "natural gas", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.92, @@ -186,7 +174,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base-dhw-tankless-gas.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -208,14 +196,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -236,18 +222,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -274,21 +256,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -315,10 +295,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "none", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -326,8 +304,6 @@ "water_heater_efficiency": 0.82, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "natural gas", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "18767", "water_heater_jacket_rvalue": 0, "water_heater_location": "living space", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-tankless-propane.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-tankless-propane.osw index e288fb73..2e34a5f8 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-tankless-propane.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-tankless-propane.osw @@ -6,58 +6,50 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", "cooling_system_cooling_compressor_type": "single stage", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.73, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "central air conditioner", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -65,8 +57,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -74,11 +65,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "2", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 25.0, @@ -92,17 +82,15 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -133,6 +121,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, @@ -141,6 +130,7 @@ "geometry_num_floors_above_grade": 1, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family detached", @@ -150,22 +140,20 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "64000.0", - "heat_pump_heating_capacity_17F": "auto", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "none", "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "natural gas", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.92, @@ -186,7 +174,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base-dhw-tankless-propane.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -208,14 +196,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -236,18 +222,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -274,21 +256,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -315,10 +295,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "none", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -326,8 +304,6 @@ "water_heater_efficiency": 0.82, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "propane", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "18767", "water_heater_jacket_rvalue": 0, "water_heater_location": "living space", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-enclosure-2stories-garage.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-enclosure-2stories-garage.osw index a7b960d9..36454a53 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-enclosure-2stories-garage.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-enclosure-2stories-garage.osw @@ -6,58 +6,50 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", "cooling_system_cooling_compressor_type": "single stage", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.73, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "central air conditioner", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -65,8 +57,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -74,11 +65,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "3", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 25.0, @@ -92,17 +82,15 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -133,6 +121,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 20.0, + "geometry_has_flue_or_chimney": "auto", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, @@ -141,6 +130,7 @@ "geometry_num_floors_above_grade": 2, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family detached", @@ -150,22 +140,20 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "64000.0", - "heat_pump_heating_capacity_17F": "auto", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "none", "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "natural gas", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.92, @@ -186,7 +174,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base-enclosure-2stories-garage.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -208,14 +196,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -236,18 +222,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -274,21 +256,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -315,10 +295,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "none", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -326,8 +304,6 @@ "water_heater_efficiency": 0.95, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "electricity", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "18767", "water_heater_jacket_rvalue": 0, "water_heater_location": "living space", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-enclosure-2stories.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-enclosure-2stories.osw index 9ef09a6e..0d5fb887 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-enclosure-2stories.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-enclosure-2stories.osw @@ -6,58 +6,50 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", "cooling_system_cooling_compressor_type": "single stage", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.73, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "central air conditioner", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -65,8 +57,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -74,11 +65,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "3", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 25.0, @@ -92,17 +82,15 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -133,6 +121,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, @@ -141,6 +130,7 @@ "geometry_num_floors_above_grade": 2, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family detached", @@ -150,22 +140,20 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "64000.0", - "heat_pump_heating_capacity_17F": "auto", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "none", "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "natural gas", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.92, @@ -186,7 +174,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base-enclosure-2stories.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -208,14 +196,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -236,18 +222,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -274,21 +256,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -315,10 +295,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "none", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -326,8 +304,6 @@ "water_heater_efficiency": 0.95, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "electricity", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "18767", "water_heater_jacket_rvalue": 0, "water_heater_location": "living space", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-enclosure-beds-1.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-enclosure-beds-1.osw index fd77fe54..091929ad 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-enclosure-beds-1.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-enclosure-beds-1.osw @@ -6,58 +6,50 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", "cooling_system_cooling_compressor_type": "single stage", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.73, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "central air conditioner", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -65,8 +57,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -74,11 +65,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "2", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 25.0, @@ -92,17 +82,15 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -133,6 +121,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, @@ -141,6 +130,7 @@ "geometry_num_floors_above_grade": 1, "geometry_num_occupants": "1", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family detached", @@ -150,22 +140,20 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "64000.0", - "heat_pump_heating_capacity_17F": "auto", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "none", "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "natural gas", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.92, @@ -186,7 +174,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base-enclosure-beds-1.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -208,14 +196,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -236,18 +222,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "482.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -274,21 +256,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -315,10 +295,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "none", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -326,8 +304,6 @@ "water_heater_efficiency": 0.95, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "electricity", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "18767", "water_heater_jacket_rvalue": 0, "water_heater_location": "living space", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-enclosure-beds-2.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-enclosure-beds-2.osw index ea657de7..025f43de 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-enclosure-beds-2.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-enclosure-beds-2.osw @@ -6,58 +6,50 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", "cooling_system_cooling_compressor_type": "single stage", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.73, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "central air conditioner", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -65,8 +57,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -74,11 +65,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "2", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 25.0, @@ -92,17 +82,15 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -133,6 +121,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, @@ -141,6 +130,7 @@ "geometry_num_floors_above_grade": 1, "geometry_num_occupants": "2", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family detached", @@ -150,22 +140,20 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "64000.0", - "heat_pump_heating_capacity_17F": "auto", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "none", "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "natural gas", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.92, @@ -186,7 +174,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base-enclosure-beds-2.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -208,14 +196,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -236,18 +222,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "551.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -274,21 +256,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -315,10 +295,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "none", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -326,8 +304,6 @@ "water_heater_efficiency": 0.95, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "electricity", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "18767", "water_heater_jacket_rvalue": 0, "water_heater_location": "living space", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-enclosure-beds-4.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-enclosure-beds-4.osw index 3ef93ac3..5f84e72d 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-enclosure-beds-4.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-enclosure-beds-4.osw @@ -6,58 +6,50 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", "cooling_system_cooling_compressor_type": "single stage", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.73, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "central air conditioner", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -65,8 +57,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -74,11 +65,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "2", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 25.0, @@ -92,17 +82,15 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -133,6 +121,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, @@ -141,6 +130,7 @@ "geometry_num_floors_above_grade": 1, "geometry_num_occupants": "4", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family detached", @@ -150,22 +140,20 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "64000.0", - "heat_pump_heating_capacity_17F": "auto", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "none", "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "natural gas", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.92, @@ -186,7 +174,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base-enclosure-beds-4.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -208,14 +196,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -236,18 +222,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "689.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -274,21 +256,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -315,10 +295,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "none", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -326,8 +304,6 @@ "water_heater_efficiency": 0.95, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "electricity", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "18767", "water_heater_jacket_rvalue": 0, "water_heater_location": "living space", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-enclosure-beds-5.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-enclosure-beds-5.osw index 743cb707..cd2314b7 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-enclosure-beds-5.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-enclosure-beds-5.osw @@ -6,58 +6,50 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", "cooling_system_cooling_compressor_type": "single stage", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.73, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "central air conditioner", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -65,8 +57,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -74,11 +65,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "2", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 25.0, @@ -92,17 +82,15 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -133,6 +121,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, @@ -141,6 +130,7 @@ "geometry_num_floors_above_grade": 1, "geometry_num_occupants": "5", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family detached", @@ -150,22 +140,20 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "64000.0", - "heat_pump_heating_capacity_17F": "auto", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "none", "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "natural gas", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.92, @@ -186,7 +174,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base-enclosure-beds-5.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -208,14 +196,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -236,18 +222,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "758.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -274,21 +256,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -315,10 +295,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "none", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -326,8 +304,6 @@ "water_heater_efficiency": 0.95, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "electricity", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "18767", "water_heater_jacket_rvalue": 0, "water_heater_location": "living space", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-enclosure-garage.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-enclosure-garage.osw index 7bf287c4..f06c1e45 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-enclosure-garage.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-enclosure-garage.osw @@ -6,58 +6,50 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "garage", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "garage", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "garage", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", "cooling_system_cooling_compressor_type": "single stage", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.73, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "central air conditioner", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -65,8 +57,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -74,11 +65,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "garage", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "2", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 25.0, @@ -92,17 +82,15 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -133,6 +121,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 1.0, "geometry_garage_width": 30.0, + "geometry_has_flue_or_chimney": "auto", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, @@ -141,6 +130,7 @@ "geometry_num_floors_above_grade": 1, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family detached", @@ -150,22 +140,20 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "64000.0", - "heat_pump_heating_capacity_17F": "auto", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "none", "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "natural gas", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.92, @@ -186,7 +174,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base-enclosure-garage.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -208,14 +196,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -236,18 +222,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -274,21 +256,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "garage", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -315,10 +295,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "none", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -326,8 +304,6 @@ "water_heater_efficiency": 0.95, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "electricity", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "18767", "water_heater_jacket_rvalue": 0, "water_heater_location": "garage", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-enclosure-infil-ach-house-pressure.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-enclosure-infil-ach-house-pressure.osw index 6d026f49..b33bd1ee 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-enclosure-infil-ach-house-pressure.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-enclosure-infil-ach-house-pressure.osw @@ -6,58 +6,50 @@ { "arguments": { "air_leakage_house_pressure": 45, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 2.8014, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", "cooling_system_cooling_compressor_type": "single stage", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.73, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "central air conditioner", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -65,8 +57,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -74,11 +65,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "2", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 25.0, @@ -92,17 +82,15 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -133,6 +121,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, @@ -141,6 +130,7 @@ "geometry_num_floors_above_grade": 1, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family detached", @@ -150,22 +140,20 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "64000.0", - "heat_pump_heating_capacity_17F": "auto", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "none", "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "natural gas", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.92, @@ -186,7 +174,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base-enclosure-infil-ach-house-pressure.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -208,14 +196,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -236,18 +222,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -274,21 +256,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -315,10 +295,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "none", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -326,8 +304,6 @@ "water_heater_efficiency": 0.95, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "electricity", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "18767", "water_heater_jacket_rvalue": 0, "water_heater_location": "living space", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-enclosure-infil-cfm-house-pressure.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-enclosure-infil-cfm-house-pressure.osw index 508cafa5..2647337c 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-enclosure-infil-cfm-house-pressure.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-enclosure-infil-cfm-house-pressure.osw @@ -6,58 +6,50 @@ { "arguments": { "air_leakage_house_pressure": 45, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "CFM", "air_leakage_value": 1008.5039999999999, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", "cooling_system_cooling_compressor_type": "single stage", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.73, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "central air conditioner", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -65,8 +57,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -74,11 +65,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "2", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 25.0, @@ -92,17 +82,15 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -133,6 +121,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, @@ -141,6 +130,7 @@ "geometry_num_floors_above_grade": 1, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family detached", @@ -150,22 +140,20 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "64000.0", - "heat_pump_heating_capacity_17F": "auto", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "none", "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "natural gas", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.92, @@ -186,7 +174,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base-enclosure-infil-cfm-house-pressure.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -208,14 +196,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -236,18 +222,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -274,21 +256,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -315,10 +295,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "none", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -326,8 +304,6 @@ "water_heater_efficiency": 0.95, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "electricity", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "18767", "water_heater_jacket_rvalue": 0, "water_heater_location": "living space", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-enclosure-infil-cfm50.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-enclosure-infil-cfm50.osw index 0795ae3a..6c29f73d 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-enclosure-infil-cfm50.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-enclosure-infil-cfm50.osw @@ -6,58 +6,50 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "CFM", "air_leakage_value": 1080, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", "cooling_system_cooling_compressor_type": "single stage", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.73, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "central air conditioner", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -65,8 +57,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -74,11 +65,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "2", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 25.0, @@ -92,17 +82,15 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -133,6 +121,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, @@ -141,6 +130,7 @@ "geometry_num_floors_above_grade": 1, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family detached", @@ -150,22 +140,20 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "64000.0", - "heat_pump_heating_capacity_17F": "auto", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "none", "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "natural gas", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.92, @@ -186,7 +174,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base-enclosure-infil-cfm50.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -208,14 +196,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -236,18 +222,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -274,21 +256,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -315,10 +295,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "none", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -326,8 +304,6 @@ "water_heater_efficiency": 0.95, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "electricity", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "18767", "water_heater_jacket_rvalue": 0, "water_heater_location": "living space", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-enclosure-infil-flue.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-enclosure-infil-flue.osw index a66afbe8..f8b72e6d 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-enclosure-infil-flue.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-enclosure-infil-flue.osw @@ -6,58 +6,50 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", "cooling_system_cooling_compressor_type": "single stage", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.73, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "central air conditioner", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -65,8 +57,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -74,11 +65,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "2", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 25.0, @@ -92,17 +82,15 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -133,6 +121,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "true", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, @@ -141,6 +130,7 @@ "geometry_num_floors_above_grade": 1, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family detached", @@ -150,22 +140,20 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "64000.0", - "heat_pump_heating_capacity_17F": "auto", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "none", "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "natural gas", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": true, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.92, @@ -186,7 +174,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base-enclosure-infil-flue.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -208,14 +196,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -236,18 +222,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -274,21 +256,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -315,10 +295,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "none", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -326,8 +304,6 @@ "water_heater_efficiency": 0.95, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "electricity", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "18767", "water_heater_jacket_rvalue": 0, "water_heater_location": "living space", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-enclosure-infil-natural-ach.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-enclosure-infil-natural-ach.osw index 717f01b9..28b1de8c 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-enclosure-infil-natural-ach.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-enclosure-infil-natural-ach.osw @@ -6,58 +6,50 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACHnatural", "air_leakage_value": 0.67, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", "cooling_system_cooling_compressor_type": "single stage", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.73, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "central air conditioner", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -65,8 +57,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -74,11 +65,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "2", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 25.0, @@ -92,17 +82,15 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -133,6 +121,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, @@ -141,6 +130,7 @@ "geometry_num_floors_above_grade": 1, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family detached", @@ -150,22 +140,20 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "64000.0", - "heat_pump_heating_capacity_17F": "auto", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "none", "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "natural gas", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.92, @@ -186,7 +174,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base-enclosure-infil-natural-ach.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -208,14 +196,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -236,18 +222,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -274,21 +256,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -315,10 +295,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "none", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -326,8 +304,6 @@ "water_heater_efficiency": 0.95, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "electricity", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "18767", "water_heater_jacket_rvalue": 0, "water_heater_location": "living space", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-enclosure-overhangs.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-enclosure-overhangs.osw index 2e0e3e3f..5c2f67a1 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-enclosure-overhangs.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-enclosure-overhangs.osw @@ -6,58 +6,50 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", "cooling_system_cooling_compressor_type": "single stage", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.73, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "central air conditioner", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -65,8 +57,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -74,11 +65,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "2", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 25.0, @@ -92,17 +82,15 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -133,6 +121,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, @@ -141,6 +130,7 @@ "geometry_num_floors_above_grade": 1, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family detached", @@ -150,22 +140,20 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "64000.0", - "heat_pump_heating_capacity_17F": "auto", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "none", "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "natural gas", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.92, @@ -186,7 +174,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base-enclosure-overhangs.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -208,14 +196,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -227,7 +213,7 @@ "overhangs_back_depth": 2.5, "overhangs_back_distance_to_top_of_window": 0, "overhangs_front_depth": 0, - "overhangs_front_distance_to_top_of_window": 0, + "overhangs_front_distance_to_top_of_window": 1.0, "overhangs_left_depth": 1.5, "overhangs_left_distance_to_top_of_window": 2.0, "overhangs_right_depth": 1.5, @@ -236,18 +222,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -274,21 +256,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -315,10 +295,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "none", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -326,8 +304,6 @@ "water_heater_efficiency": 0.95, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "electricity", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "18767", "water_heater_jacket_rvalue": 0, "water_heater_location": "living space", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-enclosure-windows-none.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-enclosure-windows-none.osw index fc2b8f55..2c285e0a 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-enclosure-windows-none.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-enclosure-windows-none.osw @@ -6,58 +6,50 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", "cooling_system_cooling_compressor_type": "single stage", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.73, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "central air conditioner", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -65,8 +57,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -74,11 +65,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "2", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 25.0, @@ -92,17 +82,15 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -133,6 +121,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, @@ -141,6 +130,7 @@ "geometry_num_floors_above_grade": 1, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family detached", @@ -150,22 +140,20 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "64000.0", - "heat_pump_heating_capacity_17F": "auto", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "none", "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "natural gas", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.92, @@ -186,7 +174,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base-enclosure-windows-none.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -208,14 +196,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -236,18 +222,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -274,21 +256,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -315,10 +295,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "none", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -326,8 +304,6 @@ "water_heater_efficiency": 0.95, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "electricity", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "18767", "water_heater_jacket_rvalue": 0, "water_heater_location": "living space", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-foundation-ambient.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-foundation-ambient.osw index 78c139d5..7d87bcfa 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-foundation-ambient.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-foundation-ambient.osw @@ -6,58 +6,50 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", "cooling_system_cooling_compressor_type": "single stage", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.73, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "central air conditioner", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -65,8 +57,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -74,11 +65,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "1", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 25.0, @@ -92,17 +82,15 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 18.7, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -133,6 +121,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, @@ -141,6 +130,7 @@ "geometry_num_floors_above_grade": 1, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 0, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family detached", @@ -150,22 +140,20 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "64000.0", - "heat_pump_heating_capacity_17F": "auto", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "none", "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "natural gas", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.92, @@ -186,7 +174,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base-foundation-ambient.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -208,14 +196,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -236,18 +222,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -274,21 +256,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -315,10 +295,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "none", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -326,8 +304,6 @@ "water_heater_efficiency": 0.95, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "electricity", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "18767", "water_heater_jacket_rvalue": 0, "water_heater_location": "living space", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-foundation-conditioned-basement-slab-insulation.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-foundation-conditioned-basement-slab-insulation.osw index f69cdac6..86e33d03 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-foundation-conditioned-basement-slab-insulation.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-foundation-conditioned-basement-slab-insulation.osw @@ -6,58 +6,50 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", "cooling_system_cooling_compressor_type": "single stage", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.73, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "central air conditioner", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -65,8 +57,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -74,11 +65,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "2", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 25.0, @@ -92,17 +82,15 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -133,6 +121,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, @@ -141,6 +130,7 @@ "geometry_num_floors_above_grade": 1, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family detached", @@ -150,22 +140,20 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "64000.0", - "heat_pump_heating_capacity_17F": "auto", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "none", "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "natural gas", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.92, @@ -186,7 +174,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base-foundation-conditioned-basement-slab-insulation.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -208,14 +196,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -236,18 +222,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -274,21 +256,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -315,10 +295,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "none", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -326,8 +304,6 @@ "water_heater_efficiency": 0.95, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "electricity", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "18767", "water_heater_jacket_rvalue": 0, "water_heater_location": "living space", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-foundation-slab.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-foundation-slab.osw index 91db222e..8ae47e86 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-foundation-slab.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-foundation-slab.osw @@ -6,58 +6,50 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", "cooling_system_cooling_compressor_type": "single stage", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.73, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "central air conditioner", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -65,8 +57,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -74,11 +65,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "1", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 25.0, @@ -92,17 +82,15 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -133,6 +121,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, @@ -141,6 +130,7 @@ "geometry_num_floors_above_grade": 1, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family detached", @@ -150,22 +140,20 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "64000.0", - "heat_pump_heating_capacity_17F": "auto", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "none", "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "natural gas", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.92, @@ -186,7 +174,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base-foundation-slab.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -208,14 +196,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -236,18 +222,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -274,21 +256,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -315,10 +295,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "none", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -326,8 +304,6 @@ "water_heater_efficiency": 0.95, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "electricity", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "18767", "water_heater_jacket_rvalue": 0, "water_heater_location": "living space", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-foundation-unconditioned-basement-assembly-r.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-foundation-unconditioned-basement-assembly-r.osw index 327120f1..be8a82cc 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-foundation-unconditioned-basement-assembly-r.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-foundation-unconditioned-basement-assembly-r.osw @@ -6,58 +6,50 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "basement - unconditioned", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "basement - unconditioned", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "basement - unconditioned", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", "cooling_system_cooling_compressor_type": "single stage", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.73, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "central air conditioner", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -65,8 +57,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -74,11 +65,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "basement - unconditioned", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "1", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 25.0, @@ -92,8 +82,7 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 18.7, @@ -102,8 +91,7 @@ "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 0, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -134,6 +122,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, @@ -142,6 +131,7 @@ "geometry_num_floors_above_grade": 1, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family detached", @@ -151,22 +141,20 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "64000.0", - "heat_pump_heating_capacity_17F": "auto", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "none", "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "natural gas", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.92, @@ -187,7 +175,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base-foundation-unconditioned-basement-assembly-r.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -209,14 +197,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -237,18 +223,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -275,21 +257,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "basement - unconditioned", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 4.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -316,10 +296,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "none", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -327,8 +305,6 @@ "water_heater_efficiency": 0.95, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "electricity", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "18767", "water_heater_jacket_rvalue": 0, "water_heater_location": "basement - unconditioned", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-foundation-unconditioned-basement-wall-insulation.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-foundation-unconditioned-basement-wall-insulation.osw index 15ecd1d9..753b268c 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-foundation-unconditioned-basement-wall-insulation.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-foundation-unconditioned-basement-wall-insulation.osw @@ -6,58 +6,50 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "basement - unconditioned", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "basement - unconditioned", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "basement - unconditioned", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", "cooling_system_cooling_compressor_type": "single stage", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.73, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "central air conditioner", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -65,8 +57,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -74,11 +65,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "basement - unconditioned", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "1", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 25.0, @@ -92,8 +82,7 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 2.1, @@ -101,8 +90,7 @@ "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -133,6 +121,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, @@ -141,6 +130,7 @@ "geometry_num_floors_above_grade": 1, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family detached", @@ -150,22 +140,20 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "64000.0", - "heat_pump_heating_capacity_17F": "auto", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "none", "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "natural gas", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.92, @@ -186,7 +174,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base-foundation-unconditioned-basement-wall-insulation.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -208,14 +196,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -236,18 +222,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -274,21 +256,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "basement - unconditioned", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -315,10 +295,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "none", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -326,8 +304,6 @@ "water_heater_efficiency": 0.95, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "electricity", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "18767", "water_heater_jacket_rvalue": 0, "water_heater_location": "basement - unconditioned", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-foundation-unconditioned-basement.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-foundation-unconditioned-basement.osw index 2a4967c1..d0175d8f 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-foundation-unconditioned-basement.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-foundation-unconditioned-basement.osw @@ -6,58 +6,50 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "basement - unconditioned", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "basement - unconditioned", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "basement - unconditioned", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", "cooling_system_cooling_compressor_type": "single stage", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.73, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "central air conditioner", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -65,8 +57,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -74,11 +65,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "basement - unconditioned", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "1", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 25.0, @@ -92,8 +82,7 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 18.7, @@ -101,8 +90,7 @@ "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 0, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -133,6 +121,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, @@ -141,6 +130,7 @@ "geometry_num_floors_above_grade": 1, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family detached", @@ -150,22 +140,20 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "64000.0", - "heat_pump_heating_capacity_17F": "auto", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "none", "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "natural gas", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.92, @@ -186,7 +174,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base-foundation-unconditioned-basement.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -208,14 +196,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -236,18 +222,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -274,21 +256,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "basement - unconditioned", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 4.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -315,10 +295,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "none", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -326,8 +304,6 @@ "water_heater_efficiency": 0.95, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "electricity", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "18767", "water_heater_jacket_rvalue": 0, "water_heater_location": "basement - unconditioned", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-foundation-unvented-crawlspace.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-foundation-unvented-crawlspace.osw index 571a08fc..08c17551 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-foundation-unvented-crawlspace.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-foundation-unvented-crawlspace.osw @@ -6,58 +6,50 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", "cooling_system_cooling_compressor_type": "single stage", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.73, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "central air conditioner", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -65,8 +57,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -74,11 +65,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "1", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 25.0, @@ -92,8 +82,7 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 18.7, @@ -101,8 +90,7 @@ "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -133,6 +121,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, @@ -141,6 +130,7 @@ "geometry_num_floors_above_grade": 1, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family detached", @@ -150,22 +140,20 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "64000.0", - "heat_pump_heating_capacity_17F": "auto", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "none", "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "natural gas", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.92, @@ -186,7 +174,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base-foundation-unvented-crawlspace.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -208,14 +196,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -236,18 +222,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -274,21 +256,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -315,10 +295,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "none", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -326,8 +304,6 @@ "water_heater_efficiency": 0.95, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "electricity", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "18767", "water_heater_jacket_rvalue": 0, "water_heater_location": "crawlspace - unvented", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-foundation-vented-crawlspace.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-foundation-vented-crawlspace.osw index 0bedf559..8e7993c3 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-foundation-vented-crawlspace.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-foundation-vented-crawlspace.osw @@ -6,58 +6,50 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", "cooling_system_cooling_compressor_type": "single stage", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.73, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "central air conditioner", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -65,8 +57,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -74,11 +65,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "1", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 25.0, @@ -92,8 +82,7 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 18.7, @@ -101,8 +90,7 @@ "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -133,6 +121,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, @@ -141,6 +130,7 @@ "geometry_num_floors_above_grade": 1, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family detached", @@ -150,22 +140,20 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "64000.0", - "heat_pump_heating_capacity_17F": "auto", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "none", "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "natural gas", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.92, @@ -186,7 +174,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base-foundation-vented-crawlspace.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -208,14 +196,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -236,18 +222,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -274,21 +256,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -315,10 +295,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "none", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -326,8 +304,6 @@ "water_heater_efficiency": 0.95, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "electricity", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "18767", "water_heater_jacket_rvalue": 0, "water_heater_location": "crawlspace - vented", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-air-to-air-heat-pump-1-speed-cooling-only.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-air-to-air-heat-pump-1-speed-cooling-only.osw new file mode 100644 index 00000000..875b338d --- /dev/null +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-air-to-air-heat-pump-1-speed-cooling-only.osw @@ -0,0 +1,337 @@ +{ + "measure_paths": [ + "../.." + ], + "steps": [ + { + "arguments": { + "air_leakage_house_pressure": 50, + "air_leakage_shielding_of_home": "auto", + "air_leakage_units": "ACH", + "air_leakage_value": 3, + "bathroom_fans_quantity": "0", + "ceiling_assembly_r": 39.3, + "ceiling_fan_cooling_setpoint_temp_offset": 0, + "ceiling_fan_efficiency": "auto", + "ceiling_fan_present": false, + "ceiling_fan_quantity": "auto", + "clothes_dryer_efficiency": "3.73", + "clothes_dryer_efficiency_type": "CombinedEnergyFactor", + "clothes_dryer_fuel_type": "electricity", + "clothes_dryer_location": "living space", + "clothes_dryer_usage_multiplier": 1.0, + "clothes_dryer_vented_flow_rate": "150.0", + "clothes_washer_capacity": "3.2", + "clothes_washer_efficiency": "1.21", + "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", + "clothes_washer_label_annual_gas_cost": "27.0", + "clothes_washer_label_electric_rate": "0.12", + "clothes_washer_label_gas_rate": "1.09", + "clothes_washer_label_usage": "6.0", + "clothes_washer_location": "living space", + "clothes_washer_rated_annual_kwh": "380.0", + "clothes_washer_usage_multiplier": 1.0, + "cooking_range_oven_fuel_type": "electricity", + "cooking_range_oven_is_convection": false, + "cooking_range_oven_is_induction": false, + "cooking_range_oven_location": "living space", + "cooking_range_oven_usage_multiplier": 1.0, + "cooling_system_cooling_capacity": "48000.0", + "cooling_system_cooling_compressor_type": "single stage", + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", + "cooling_system_cooling_sensible_heat_fraction": 0.73, + "cooling_system_fraction_cool_load_served": 1, + "cooling_system_is_ducted": false, + "cooling_system_type": "none", + "dehumidifier_capacity": 40, + "dehumidifier_efficiency": 1.8, + "dehumidifier_efficiency_type": "EnergyFactor", + "dehumidifier_fraction_dehumidification_load_served": 1, + "dehumidifier_rh_setpoint": 0.5, + "dehumidifier_type": "none", + "dhw_distribution_pipe_r": "0.0", + "dhw_distribution_recirc_branch_piping_length": "50", + "dhw_distribution_recirc_control_type": "no control", + "dhw_distribution_recirc_piping_length": "50", + "dhw_distribution_recirc_pump_power": "50", + "dhw_distribution_standard_piping_length": "50", + "dhw_distribution_system_type": "Standard", + "dishwasher_efficiency": "307", + "dishwasher_efficiency_type": "RatedAnnualkWh", + "dishwasher_label_annual_gas_cost": "22.32", + "dishwasher_label_electric_rate": "0.12", + "dishwasher_label_gas_rate": "1.09", + "dishwasher_label_usage": "4.0", + "dishwasher_location": "living space", + "dishwasher_place_setting_capacity": "12", + "dishwasher_usage_multiplier": 1.0, + "door_area": 80.0, + "door_rvalue": 4.4, + "ducts_number_of_return_registers": "2", + "ducts_return_insulation_r": 0.0, + "ducts_return_leakage_units": "CFM25", + "ducts_return_leakage_value": 25.0, + "ducts_return_location": "attic - unvented", + "ducts_return_surface_area": "50.0", + "ducts_supply_insulation_r": 4.0, + "ducts_supply_leakage_units": "CFM25", + "ducts_supply_leakage_value": 75.0, + "ducts_supply_location": "attic - unvented", + "ducts_supply_surface_area": "150.0", + "dwhr_efficiency": 0.55, + "dwhr_equal_flow": true, + "dwhr_facilities_connected": "none", + "extra_refrigerator_location": "none", + "extra_refrigerator_rated_annual_kwh": "auto", + "extra_refrigerator_usage_multiplier": 1.0, + "floor_assembly_r": 0, + "foundation_wall_insulation_distance_to_bottom": "auto", + "foundation_wall_insulation_distance_to_top": 0.0, + "foundation_wall_insulation_r": 8.9, + "foundation_wall_thickness": "8.0", + "freezer_location": "none", + "freezer_rated_annual_kwh": "auto", + "freezer_usage_multiplier": 1.0, + "fuel_loads_fireplace_annual_therm": "auto", + "fuel_loads_fireplace_frac_latent": "auto", + "fuel_loads_fireplace_frac_sensible": "auto", + "fuel_loads_fireplace_fuel_type": "natural gas", + "fuel_loads_fireplace_present": false, + "fuel_loads_fireplace_usage_multiplier": 0.0, + "fuel_loads_grill_annual_therm": "auto", + "fuel_loads_grill_fuel_type": "natural gas", + "fuel_loads_grill_present": false, + "fuel_loads_grill_usage_multiplier": 0.0, + "fuel_loads_lighting_annual_therm": "auto", + "fuel_loads_lighting_fuel_type": "natural gas", + "fuel_loads_lighting_present": false, + "fuel_loads_lighting_usage_multiplier": 0.0, + "geometry_aspect_ratio": 1.5, + "geometry_attic_type": "UnventedAttic", + "geometry_balcony_depth": 0.0, + "geometry_cfa": 2700.0, + "geometry_corridor_position": "Double-Loaded Interior", + "geometry_corridor_width": 10.0, + "geometry_eaves_depth": 0, + "geometry_foundation_height": 8.0, + "geometry_foundation_height_above_grade": 1.0, + "geometry_foundation_type": "ConditionedBasement", + "geometry_garage_depth": 20.0, + "geometry_garage_position": "Right", + "geometry_garage_protrusion": 0.0, + "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", + "geometry_inset_depth": 0.0, + "geometry_inset_position": "Right", + "geometry_inset_width": 0.0, + "geometry_num_bathrooms": "2", + "geometry_num_bedrooms": 3, + "geometry_num_floors_above_grade": 1, + "geometry_num_occupants": "3", + "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, + "geometry_roof_pitch": "6:12", + "geometry_roof_type": "gable", + "geometry_unit_type": "single-family detached", + "geometry_wall_height": 8.0, + "heat_pump_backup_fuel": "none", + "heat_pump_backup_heating_capacity": "34121.0", + "heat_pump_backup_heating_efficiency": 1, + "heat_pump_cooling_capacity": "48000.0", + "heat_pump_cooling_compressor_type": "single stage", + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", + "heat_pump_cooling_sensible_heat_fraction": 0.73, + "heat_pump_fraction_cool_load_served": 1, + "heat_pump_fraction_heat_load_served": 0, + "heat_pump_heating_capacity": "0.0", + "heat_pump_heating_capacity_17_f": "0.0", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", + "heat_pump_type": "air-to-air", + "heating_system_fraction_heat_load_served": 1, + "heating_system_fraction_heat_load_served_2": 0.25, + "heating_system_fuel": "natural gas", + "heating_system_fuel_2": "electricity", + "heating_system_heating_capacity": "64000.0", + "heating_system_heating_capacity_2": "auto", + "heating_system_heating_efficiency": 0.92, + "heating_system_heating_efficiency_2": 1.0, + "heating_system_type": "none", + "heating_system_type_2": "none", + "holiday_lighting_daily_kwh": "auto", + "holiday_lighting_period_begin_day_of_month": "auto", + "holiday_lighting_period_begin_month": "auto", + "holiday_lighting_period_end_day_of_month": "auto", + "holiday_lighting_period_end_month": "auto", + "holiday_lighting_present": false, + "hot_tub_heater_annual_kwh": "auto", + "hot_tub_heater_annual_therm": "auto", + "hot_tub_heater_type": "electric resistance", + "hot_tub_heater_usage_multiplier": 1.0, + "hot_tub_present": false, + "hot_tub_pump_annual_kwh": "auto", + "hot_tub_pump_usage_multiplier": 1.0, + "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base-hvac-air-to-air-heat-pump-1-speed-cooling-only.xml", + "kitchen_fans_quantity": "0", + "lighting_fraction_cfl_exterior": 0.4, + "lighting_fraction_cfl_garage": 0.4, + "lighting_fraction_cfl_interior": 0.4, + "lighting_fraction_led_exterior": 0.25, + "lighting_fraction_led_garage": 0.25, + "lighting_fraction_led_interior": 0.25, + "lighting_fraction_lfl_exterior": 0.1, + "lighting_fraction_lfl_garage": 0.1, + "lighting_fraction_lfl_interior": 0.1, + "lighting_usage_multiplier_exterior": 1.0, + "lighting_usage_multiplier_garage": 1.0, + "lighting_usage_multiplier_interior": 1.0, + "mech_vent_fan_power": 30, + "mech_vent_fan_power_2": 30, + "mech_vent_fan_type": "none", + "mech_vent_fan_type_2": "none", + "mech_vent_flow_rate": 110, + "mech_vent_flow_rate_2": 110, + "mech_vent_hours_in_operation": 24, + "mech_vent_hours_in_operation_2": 24, + "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", + "mech_vent_sensible_recovery_efficiency": 0.72, + "mech_vent_sensible_recovery_efficiency_2": 0.72, + "mech_vent_total_recovery_efficiency": 0.48, + "mech_vent_total_recovery_efficiency_2": 0.48, + "neighbor_back_distance": 0, + "neighbor_back_height": "auto", + "neighbor_front_distance": 0, + "neighbor_front_height": "auto", + "neighbor_left_distance": 0, + "neighbor_left_height": "auto", + "neighbor_right_distance": 0, + "neighbor_right_height": "auto", + "overhangs_back_depth": 0, + "overhangs_back_distance_to_top_of_window": 0, + "overhangs_front_depth": 0, + "overhangs_front_distance_to_top_of_window": 0, + "overhangs_left_depth": 0, + "overhangs_left_distance_to_top_of_window": 0, + "overhangs_right_depth": 0, + "overhangs_right_distance_to_top_of_window": 0, + "plug_loads_other_annual_kwh": "2457.0", + "plug_loads_other_frac_latent": "0.045", + "plug_loads_other_frac_sensible": "0.855", + "plug_loads_other_usage_multiplier": 1.0, + "plug_loads_television_annual_kwh": "620.0", + "plug_loads_television_usage_multiplier": 1.0, + "plug_loads_vehicle_annual_kwh": "auto", + "plug_loads_vehicle_present": false, + "plug_loads_vehicle_usage_multiplier": 0.0, + "plug_loads_well_pump_annual_kwh": "auto", + "plug_loads_well_pump_present": false, + "plug_loads_well_pump_usage_multiplier": 0.0, + "pool_heater_annual_kwh": "auto", + "pool_heater_annual_therm": "auto", + "pool_heater_type": "electric resistance", + "pool_heater_usage_multiplier": 1.0, + "pool_present": false, + "pool_pump_annual_kwh": "auto", + "pool_pump_usage_multiplier": 1.0, + "pv_system_array_azimuth_1": 180, + "pv_system_array_azimuth_2": 180, + "pv_system_array_tilt_1": "20", + "pv_system_array_tilt_2": "20", + "pv_system_inverter_efficiency_1": 0.96, + "pv_system_inverter_efficiency_2": 0.96, + "pv_system_location_1": "auto", + "pv_system_location_2": "auto", + "pv_system_max_power_output_1": 4000, + "pv_system_max_power_output_2": 4000, + "pv_system_module_type_1": "none", + "pv_system_module_type_2": "none", + "pv_system_num_units_served_1": 1, + "pv_system_num_units_served_2": 1, + "pv_system_system_losses_fraction_1": 0.14, + "pv_system_system_losses_fraction_2": 0.14, + "pv_system_tracking_1": "auto", + "pv_system_tracking_2": "auto", + "refrigerator_location": "living space", + "refrigerator_rated_annual_kwh": "650.0", + "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, + "roof_assembly_r": 2.3, + "roof_color": "medium", + "roof_material_type": "asphalt or fiberglass shingles", + "roof_radiant_barrier": false, + "roof_radiant_barrier_grade": "1", + "schedules_type": "default", + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", + "simulation_control_timestep": "60", + "site_type": "suburban", + "skylight_area_back": 0, + "skylight_area_front": 0, + "skylight_area_left": 0, + "skylight_area_right": 0, + "skylight_shgc": 0.45, + "skylight_ufactor": 0.33, + "slab_carpet_fraction": "0.0", + "slab_carpet_r": "0.0", + "slab_perimeter_depth": 0, + "slab_perimeter_insulation_r": 0, + "slab_thickness": "4.0", + "slab_under_insulation_r": 0, + "slab_under_width": 0, + "solar_thermal_collector_area": 40.0, + "solar_thermal_collector_azimuth": 180, + "solar_thermal_collector_loop_type": "liquid direct", + "solar_thermal_collector_rated_optical_efficiency": 0.5, + "solar_thermal_collector_rated_thermal_losses": 0.2799, + "solar_thermal_collector_tilt": "20", + "solar_thermal_collector_type": "evacuated tube", + "solar_thermal_solar_fraction": 0, + "solar_thermal_storage_volume": "auto", + "solar_thermal_system_type": "none", + "wall_assembly_r": 23, + "wall_color": "medium", + "wall_siding_type": "wood siding", + "wall_type": "WoodStud", + "water_fixtures_shower_low_flow": true, + "water_fixtures_sink_low_flow": false, + "water_fixtures_usage_multiplier": 1.0, + "water_heater_efficiency": 0.95, + "water_heater_efficiency_type": "EnergyFactor", + "water_heater_fuel_type": "electricity", + "water_heater_jacket_rvalue": 0, + "water_heater_location": "living space", + "water_heater_num_units_served": 1, + "water_heater_recovery_efficiency": "0.76", + "water_heater_setpoint_temperature": "125", + "water_heater_standby_loss": 0, + "water_heater_tank_volume": "40", + "water_heater_type": "storage water heater", + "weather_station_epw_filepath": "USA_CO_Denver.Intl.AP.725650_TMY3.epw", + "whole_house_fan_flow_rate": 4500, + "whole_house_fan_power": 300, + "whole_house_fan_present": false, + "window_area_back": 108.0, + "window_area_front": 108.0, + "window_area_left": 72.0, + "window_area_right": 72.0, + "window_aspect_ratio": 1.333, + "window_back_wwr": 0, + "window_fraction_operable": 0.67, + "window_front_wwr": 0, + "window_interior_shading_summer": 0.7, + "window_interior_shading_winter": 0.85, + "window_left_wwr": 0, + "window_right_wwr": 0, + "window_shgc": 0.45, + "window_ufactor": 0.33 + }, + "measure_dir_name": "BuildResidentialHPXML" + } + ] +} \ No newline at end of file diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-air-to-air-heat-pump-1-speed-heating-only.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-air-to-air-heat-pump-1-speed-heating-only.osw new file mode 100644 index 00000000..32449457 --- /dev/null +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-air-to-air-heat-pump-1-speed-heating-only.osw @@ -0,0 +1,337 @@ +{ + "measure_paths": [ + "../.." + ], + "steps": [ + { + "arguments": { + "air_leakage_house_pressure": 50, + "air_leakage_shielding_of_home": "auto", + "air_leakage_units": "ACH", + "air_leakage_value": 3, + "bathroom_fans_quantity": "0", + "ceiling_assembly_r": 39.3, + "ceiling_fan_cooling_setpoint_temp_offset": 0, + "ceiling_fan_efficiency": "auto", + "ceiling_fan_present": false, + "ceiling_fan_quantity": "auto", + "clothes_dryer_efficiency": "3.73", + "clothes_dryer_efficiency_type": "CombinedEnergyFactor", + "clothes_dryer_fuel_type": "electricity", + "clothes_dryer_location": "living space", + "clothes_dryer_usage_multiplier": 1.0, + "clothes_dryer_vented_flow_rate": "150.0", + "clothes_washer_capacity": "3.2", + "clothes_washer_efficiency": "1.21", + "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", + "clothes_washer_label_annual_gas_cost": "27.0", + "clothes_washer_label_electric_rate": "0.12", + "clothes_washer_label_gas_rate": "1.09", + "clothes_washer_label_usage": "6.0", + "clothes_washer_location": "living space", + "clothes_washer_rated_annual_kwh": "380.0", + "clothes_washer_usage_multiplier": 1.0, + "cooking_range_oven_fuel_type": "electricity", + "cooking_range_oven_is_convection": false, + "cooking_range_oven_is_induction": false, + "cooking_range_oven_location": "living space", + "cooking_range_oven_usage_multiplier": 1.0, + "cooling_system_cooling_capacity": "48000.0", + "cooling_system_cooling_compressor_type": "single stage", + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", + "cooling_system_cooling_sensible_heat_fraction": 0.73, + "cooling_system_fraction_cool_load_served": 1, + "cooling_system_is_ducted": false, + "cooling_system_type": "none", + "dehumidifier_capacity": 40, + "dehumidifier_efficiency": 1.8, + "dehumidifier_efficiency_type": "EnergyFactor", + "dehumidifier_fraction_dehumidification_load_served": 1, + "dehumidifier_rh_setpoint": 0.5, + "dehumidifier_type": "none", + "dhw_distribution_pipe_r": "0.0", + "dhw_distribution_recirc_branch_piping_length": "50", + "dhw_distribution_recirc_control_type": "no control", + "dhw_distribution_recirc_piping_length": "50", + "dhw_distribution_recirc_pump_power": "50", + "dhw_distribution_standard_piping_length": "50", + "dhw_distribution_system_type": "Standard", + "dishwasher_efficiency": "307", + "dishwasher_efficiency_type": "RatedAnnualkWh", + "dishwasher_label_annual_gas_cost": "22.32", + "dishwasher_label_electric_rate": "0.12", + "dishwasher_label_gas_rate": "1.09", + "dishwasher_label_usage": "4.0", + "dishwasher_location": "living space", + "dishwasher_place_setting_capacity": "12", + "dishwasher_usage_multiplier": 1.0, + "door_area": 80.0, + "door_rvalue": 4.4, + "ducts_number_of_return_registers": "2", + "ducts_return_insulation_r": 0.0, + "ducts_return_leakage_units": "CFM25", + "ducts_return_leakage_value": 25.0, + "ducts_return_location": "attic - unvented", + "ducts_return_surface_area": "50.0", + "ducts_supply_insulation_r": 4.0, + "ducts_supply_leakage_units": "CFM25", + "ducts_supply_leakage_value": 75.0, + "ducts_supply_location": "attic - unvented", + "ducts_supply_surface_area": "150.0", + "dwhr_efficiency": 0.55, + "dwhr_equal_flow": true, + "dwhr_facilities_connected": "none", + "extra_refrigerator_location": "none", + "extra_refrigerator_rated_annual_kwh": "auto", + "extra_refrigerator_usage_multiplier": 1.0, + "floor_assembly_r": 0, + "foundation_wall_insulation_distance_to_bottom": "auto", + "foundation_wall_insulation_distance_to_top": 0.0, + "foundation_wall_insulation_r": 8.9, + "foundation_wall_thickness": "8.0", + "freezer_location": "none", + "freezer_rated_annual_kwh": "auto", + "freezer_usage_multiplier": 1.0, + "fuel_loads_fireplace_annual_therm": "auto", + "fuel_loads_fireplace_frac_latent": "auto", + "fuel_loads_fireplace_frac_sensible": "auto", + "fuel_loads_fireplace_fuel_type": "natural gas", + "fuel_loads_fireplace_present": false, + "fuel_loads_fireplace_usage_multiplier": 0.0, + "fuel_loads_grill_annual_therm": "auto", + "fuel_loads_grill_fuel_type": "natural gas", + "fuel_loads_grill_present": false, + "fuel_loads_grill_usage_multiplier": 0.0, + "fuel_loads_lighting_annual_therm": "auto", + "fuel_loads_lighting_fuel_type": "natural gas", + "fuel_loads_lighting_present": false, + "fuel_loads_lighting_usage_multiplier": 0.0, + "geometry_aspect_ratio": 1.5, + "geometry_attic_type": "UnventedAttic", + "geometry_balcony_depth": 0.0, + "geometry_cfa": 2700.0, + "geometry_corridor_position": "Double-Loaded Interior", + "geometry_corridor_width": 10.0, + "geometry_eaves_depth": 0, + "geometry_foundation_height": 8.0, + "geometry_foundation_height_above_grade": 1.0, + "geometry_foundation_type": "ConditionedBasement", + "geometry_garage_depth": 20.0, + "geometry_garage_position": "Right", + "geometry_garage_protrusion": 0.0, + "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", + "geometry_inset_depth": 0.0, + "geometry_inset_position": "Right", + "geometry_inset_width": 0.0, + "geometry_num_bathrooms": "2", + "geometry_num_bedrooms": 3, + "geometry_num_floors_above_grade": 1, + "geometry_num_occupants": "3", + "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, + "geometry_roof_pitch": "6:12", + "geometry_roof_type": "gable", + "geometry_unit_type": "single-family detached", + "geometry_wall_height": 8.0, + "heat_pump_backup_fuel": "electricity", + "heat_pump_backup_heating_capacity": "34121.0", + "heat_pump_backup_heating_efficiency": 1, + "heat_pump_cooling_capacity": "0.0", + "heat_pump_cooling_compressor_type": "single stage", + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", + "heat_pump_cooling_sensible_heat_fraction": 0.73, + "heat_pump_fraction_cool_load_served": 0, + "heat_pump_fraction_heat_load_served": 1, + "heat_pump_heating_capacity": "42000.0", + "heat_pump_heating_capacity_17_f": "26460.0", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", + "heat_pump_type": "air-to-air", + "heating_system_fraction_heat_load_served": 1, + "heating_system_fraction_heat_load_served_2": 0.25, + "heating_system_fuel": "natural gas", + "heating_system_fuel_2": "electricity", + "heating_system_heating_capacity": "64000.0", + "heating_system_heating_capacity_2": "auto", + "heating_system_heating_efficiency": 0.92, + "heating_system_heating_efficiency_2": 1.0, + "heating_system_type": "none", + "heating_system_type_2": "none", + "holiday_lighting_daily_kwh": "auto", + "holiday_lighting_period_begin_day_of_month": "auto", + "holiday_lighting_period_begin_month": "auto", + "holiday_lighting_period_end_day_of_month": "auto", + "holiday_lighting_period_end_month": "auto", + "holiday_lighting_present": false, + "hot_tub_heater_annual_kwh": "auto", + "hot_tub_heater_annual_therm": "auto", + "hot_tub_heater_type": "electric resistance", + "hot_tub_heater_usage_multiplier": 1.0, + "hot_tub_present": false, + "hot_tub_pump_annual_kwh": "auto", + "hot_tub_pump_usage_multiplier": 1.0, + "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base-hvac-air-to-air-heat-pump-1-speed-heating-only.xml", + "kitchen_fans_quantity": "0", + "lighting_fraction_cfl_exterior": 0.4, + "lighting_fraction_cfl_garage": 0.4, + "lighting_fraction_cfl_interior": 0.4, + "lighting_fraction_led_exterior": 0.25, + "lighting_fraction_led_garage": 0.25, + "lighting_fraction_led_interior": 0.25, + "lighting_fraction_lfl_exterior": 0.1, + "lighting_fraction_lfl_garage": 0.1, + "lighting_fraction_lfl_interior": 0.1, + "lighting_usage_multiplier_exterior": 1.0, + "lighting_usage_multiplier_garage": 1.0, + "lighting_usage_multiplier_interior": 1.0, + "mech_vent_fan_power": 30, + "mech_vent_fan_power_2": 30, + "mech_vent_fan_type": "none", + "mech_vent_fan_type_2": "none", + "mech_vent_flow_rate": 110, + "mech_vent_flow_rate_2": 110, + "mech_vent_hours_in_operation": 24, + "mech_vent_hours_in_operation_2": 24, + "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", + "mech_vent_sensible_recovery_efficiency": 0.72, + "mech_vent_sensible_recovery_efficiency_2": 0.72, + "mech_vent_total_recovery_efficiency": 0.48, + "mech_vent_total_recovery_efficiency_2": 0.48, + "neighbor_back_distance": 0, + "neighbor_back_height": "auto", + "neighbor_front_distance": 0, + "neighbor_front_height": "auto", + "neighbor_left_distance": 0, + "neighbor_left_height": "auto", + "neighbor_right_distance": 0, + "neighbor_right_height": "auto", + "overhangs_back_depth": 0, + "overhangs_back_distance_to_top_of_window": 0, + "overhangs_front_depth": 0, + "overhangs_front_distance_to_top_of_window": 0, + "overhangs_left_depth": 0, + "overhangs_left_distance_to_top_of_window": 0, + "overhangs_right_depth": 0, + "overhangs_right_distance_to_top_of_window": 0, + "plug_loads_other_annual_kwh": "2457.0", + "plug_loads_other_frac_latent": "0.045", + "plug_loads_other_frac_sensible": "0.855", + "plug_loads_other_usage_multiplier": 1.0, + "plug_loads_television_annual_kwh": "620.0", + "plug_loads_television_usage_multiplier": 1.0, + "plug_loads_vehicle_annual_kwh": "auto", + "plug_loads_vehicle_present": false, + "plug_loads_vehicle_usage_multiplier": 0.0, + "plug_loads_well_pump_annual_kwh": "auto", + "plug_loads_well_pump_present": false, + "plug_loads_well_pump_usage_multiplier": 0.0, + "pool_heater_annual_kwh": "auto", + "pool_heater_annual_therm": "auto", + "pool_heater_type": "electric resistance", + "pool_heater_usage_multiplier": 1.0, + "pool_present": false, + "pool_pump_annual_kwh": "auto", + "pool_pump_usage_multiplier": 1.0, + "pv_system_array_azimuth_1": 180, + "pv_system_array_azimuth_2": 180, + "pv_system_array_tilt_1": "20", + "pv_system_array_tilt_2": "20", + "pv_system_inverter_efficiency_1": 0.96, + "pv_system_inverter_efficiency_2": 0.96, + "pv_system_location_1": "auto", + "pv_system_location_2": "auto", + "pv_system_max_power_output_1": 4000, + "pv_system_max_power_output_2": 4000, + "pv_system_module_type_1": "none", + "pv_system_module_type_2": "none", + "pv_system_num_units_served_1": 1, + "pv_system_num_units_served_2": 1, + "pv_system_system_losses_fraction_1": 0.14, + "pv_system_system_losses_fraction_2": 0.14, + "pv_system_tracking_1": "auto", + "pv_system_tracking_2": "auto", + "refrigerator_location": "living space", + "refrigerator_rated_annual_kwh": "650.0", + "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, + "roof_assembly_r": 2.3, + "roof_color": "medium", + "roof_material_type": "asphalt or fiberglass shingles", + "roof_radiant_barrier": false, + "roof_radiant_barrier_grade": "1", + "schedules_type": "default", + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", + "simulation_control_timestep": "60", + "site_type": "suburban", + "skylight_area_back": 0, + "skylight_area_front": 0, + "skylight_area_left": 0, + "skylight_area_right": 0, + "skylight_shgc": 0.45, + "skylight_ufactor": 0.33, + "slab_carpet_fraction": "0.0", + "slab_carpet_r": "0.0", + "slab_perimeter_depth": 0, + "slab_perimeter_insulation_r": 0, + "slab_thickness": "4.0", + "slab_under_insulation_r": 0, + "slab_under_width": 0, + "solar_thermal_collector_area": 40.0, + "solar_thermal_collector_azimuth": 180, + "solar_thermal_collector_loop_type": "liquid direct", + "solar_thermal_collector_rated_optical_efficiency": 0.5, + "solar_thermal_collector_rated_thermal_losses": 0.2799, + "solar_thermal_collector_tilt": "20", + "solar_thermal_collector_type": "evacuated tube", + "solar_thermal_solar_fraction": 0, + "solar_thermal_storage_volume": "auto", + "solar_thermal_system_type": "none", + "wall_assembly_r": 23, + "wall_color": "medium", + "wall_siding_type": "wood siding", + "wall_type": "WoodStud", + "water_fixtures_shower_low_flow": true, + "water_fixtures_sink_low_flow": false, + "water_fixtures_usage_multiplier": 1.0, + "water_heater_efficiency": 0.95, + "water_heater_efficiency_type": "EnergyFactor", + "water_heater_fuel_type": "electricity", + "water_heater_jacket_rvalue": 0, + "water_heater_location": "living space", + "water_heater_num_units_served": 1, + "water_heater_recovery_efficiency": "0.76", + "water_heater_setpoint_temperature": "125", + "water_heater_standby_loss": 0, + "water_heater_tank_volume": "40", + "water_heater_type": "storage water heater", + "weather_station_epw_filepath": "USA_CO_Denver.Intl.AP.725650_TMY3.epw", + "whole_house_fan_flow_rate": 4500, + "whole_house_fan_power": 300, + "whole_house_fan_present": false, + "window_area_back": 108.0, + "window_area_front": 108.0, + "window_area_left": 72.0, + "window_area_right": 72.0, + "window_aspect_ratio": 1.333, + "window_back_wwr": 0, + "window_fraction_operable": 0.67, + "window_front_wwr": 0, + "window_interior_shading_summer": 0.7, + "window_interior_shading_winter": 0.85, + "window_left_wwr": 0, + "window_right_wwr": 0, + "window_shgc": 0.45, + "window_ufactor": 0.33 + }, + "measure_dir_name": "BuildResidentialHPXML" + } + ] +} \ No newline at end of file diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-air-to-air-heat-pump-1-speed.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-air-to-air-heat-pump-1-speed.osw index 09a424ce..fc3c08c9 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-air-to-air-heat-pump-1-speed.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-air-to-air-heat-pump-1-speed.osw @@ -6,58 +6,50 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", "cooling_system_cooling_compressor_type": "single stage", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.73, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "none", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -65,8 +57,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -74,11 +65,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "2", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 25.0, @@ -92,17 +82,15 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -133,6 +121,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, @@ -141,6 +130,7 @@ "geometry_num_floors_above_grade": 1, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family detached", @@ -150,23 +140,20 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, - "heat_pump_fan_power_watts_per_cfm": 0.45, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "42000.0", - "heat_pump_heating_capacity_17F": "26460.0", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, + "heat_pump_heating_capacity_17_f": "26460.0", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "air-to-air", "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "natural gas", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.92, @@ -187,7 +174,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base-hvac-air-to-air-heat-pump-1-speed.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -209,14 +196,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -237,18 +222,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -275,21 +256,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -316,10 +295,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "none", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -327,8 +304,6 @@ "water_heater_efficiency": 0.95, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "electricity", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "18767", "water_heater_jacket_rvalue": 0, "water_heater_location": "living space", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-air-to-air-heat-pump-2-speed.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-air-to-air-heat-pump-2-speed.osw index 5ee89858..9b341790 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-air-to-air-heat-pump-2-speed.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-air-to-air-heat-pump-2-speed.osw @@ -6,58 +6,50 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", "cooling_system_cooling_compressor_type": "single stage", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.73, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "none", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -65,8 +57,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -74,11 +65,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "2", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 25.0, @@ -92,17 +82,15 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -133,6 +121,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, @@ -141,6 +130,7 @@ "geometry_num_floors_above_grade": 1, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family detached", @@ -150,22 +140,20 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "two stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 18.0, + "heat_pump_cooling_efficiency": 18.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "42000.0", - "heat_pump_heating_capacity_17F": "24780.0", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 9.3, + "heat_pump_heating_capacity_17_f": "24780.0", + "heat_pump_heating_efficiency": 9.3, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "air-to-air", "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "natural gas", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.92, @@ -186,7 +174,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base-hvac-air-to-air-heat-pump-2-speed.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -208,14 +196,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -236,18 +222,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -274,21 +256,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -315,10 +295,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "none", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -326,8 +304,6 @@ "water_heater_efficiency": 0.95, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "electricity", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "18767", "water_heater_jacket_rvalue": 0, "water_heater_location": "living space", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-air-to-air-heat-pump-var-speed.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-air-to-air-heat-pump-var-speed.osw index 1520e1be..21466db8 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-air-to-air-heat-pump-var-speed.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-air-to-air-heat-pump-var-speed.osw @@ -6,58 +6,50 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", "cooling_system_cooling_compressor_type": "single stage", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.73, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "none", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -65,8 +57,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -74,11 +65,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "2", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 25.0, @@ -92,17 +82,15 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -133,6 +121,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, @@ -141,6 +130,7 @@ "geometry_num_floors_above_grade": 1, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family detached", @@ -150,22 +140,20 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "variable speed", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 22.0, + "heat_pump_cooling_efficiency": 22.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.78, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "42000.0", - "heat_pump_heating_capacity_17F": "26880.0", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 10.0, + "heat_pump_heating_capacity_17_f": "26880.0", + "heat_pump_heating_efficiency": 10.0, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "air-to-air", "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "natural gas", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.92, @@ -186,7 +174,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base-hvac-air-to-air-heat-pump-var-speed.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -208,14 +196,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -236,18 +222,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -274,21 +256,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -315,10 +295,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "none", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -326,8 +304,6 @@ "water_heater_efficiency": 0.95, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "electricity", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "18767", "water_heater_jacket_rvalue": 0, "water_heater_location": "living space", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-boiler-coal-only.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-boiler-coal-only.osw index 8bd90f99..eee48921 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-boiler-coal-only.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-boiler-coal-only.osw @@ -6,58 +6,50 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", "cooling_system_cooling_compressor_type": "single stage", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.73, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "none", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -65,8 +57,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -74,11 +65,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "2", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 25.0, @@ -92,17 +82,15 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -133,6 +121,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, @@ -141,6 +130,7 @@ "geometry_num_floors_above_grade": 1, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family detached", @@ -150,22 +140,20 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "64000.0", - "heat_pump_heating_capacity_17F": "auto", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "none", "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "coal", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.92, @@ -186,7 +174,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base-hvac-boiler-coal-only.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -208,14 +196,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -236,18 +222,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -274,21 +256,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -315,10 +295,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "none", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -326,8 +304,6 @@ "water_heater_efficiency": 0.95, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "electricity", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "18767", "water_heater_jacket_rvalue": 0, "water_heater_location": "living space", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-boiler-elec-only.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-boiler-elec-only.osw index 39cad894..0c093ec5 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-boiler-elec-only.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-boiler-elec-only.osw @@ -6,58 +6,50 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", "cooling_system_cooling_compressor_type": "single stage", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.73, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "none", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -65,8 +57,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -74,11 +65,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "2", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 25.0, @@ -92,17 +82,15 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -133,6 +121,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, @@ -141,6 +130,7 @@ "geometry_num_floors_above_grade": 1, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family detached", @@ -150,22 +140,20 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "64000.0", - "heat_pump_heating_capacity_17F": "auto", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "none", "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "electricity", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 1.0, @@ -186,7 +174,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base-hvac-boiler-elec-only.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -208,14 +196,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -236,18 +222,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -274,21 +256,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -315,10 +295,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "none", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -326,8 +304,6 @@ "water_heater_efficiency": 0.95, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "electricity", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "18767", "water_heater_jacket_rvalue": 0, "water_heater_location": "living space", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-boiler-gas-central-ac-1-speed.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-boiler-gas-central-ac-1-speed.osw index 093d12b1..354b9faf 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-boiler-gas-central-ac-1-speed.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-boiler-gas-central-ac-1-speed.osw @@ -6,58 +6,50 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", "cooling_system_cooling_compressor_type": "single stage", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.73, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "central air conditioner", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -65,8 +57,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -74,11 +65,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "3", + "ducts_number_of_return_registers": "2", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 25.0, @@ -92,17 +82,15 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -133,6 +121,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, @@ -141,6 +130,7 @@ "geometry_num_floors_above_grade": 1, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family detached", @@ -150,23 +140,20 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "64000.0", - "heat_pump_heating_capacity_17F": "auto", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "none", - "heating_system_electric_auxiliary_energy": 200.0, "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "natural gas", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.92, @@ -187,7 +174,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base-hvac-boiler-gas-central-ac-1-speed.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -209,14 +196,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -237,18 +222,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -275,21 +256,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -316,10 +295,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "none", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -327,8 +304,6 @@ "water_heater_efficiency": 0.95, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "electricity", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "18767", "water_heater_jacket_rvalue": 0, "water_heater_location": "living space", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-boiler-gas-only.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-boiler-gas-only.osw index e537180b..75103dde 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-boiler-gas-only.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-boiler-gas-only.osw @@ -6,58 +6,50 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", "cooling_system_cooling_compressor_type": "single stage", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.73, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "none", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -65,8 +57,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -74,11 +65,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "2", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 25.0, @@ -92,17 +82,15 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -133,6 +121,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, @@ -141,6 +130,7 @@ "geometry_num_floors_above_grade": 1, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family detached", @@ -150,23 +140,20 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "64000.0", - "heat_pump_heating_capacity_17F": "auto", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "none", - "heating_system_electric_auxiliary_energy": 200.0, "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "natural gas", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.92, @@ -187,7 +174,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base-hvac-boiler-gas-only.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -209,14 +196,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -237,18 +222,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -275,21 +256,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -316,10 +295,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "none", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -327,8 +304,6 @@ "water_heater_efficiency": 0.95, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "electricity", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "18767", "water_heater_jacket_rvalue": 0, "water_heater_location": "living space", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-boiler-oil-only.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-boiler-oil-only.osw index 5633ae80..61f48d06 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-boiler-oil-only.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-boiler-oil-only.osw @@ -6,58 +6,50 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", "cooling_system_cooling_compressor_type": "single stage", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.73, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "none", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -65,8 +57,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -74,11 +65,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "2", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 25.0, @@ -92,17 +82,15 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -133,6 +121,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, @@ -141,6 +130,7 @@ "geometry_num_floors_above_grade": 1, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family detached", @@ -150,22 +140,20 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "64000.0", - "heat_pump_heating_capacity_17F": "auto", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "none", "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "fuel oil", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.92, @@ -186,7 +174,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base-hvac-boiler-oil-only.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -208,14 +196,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -236,18 +222,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -274,21 +256,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -315,10 +295,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "none", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -326,8 +304,6 @@ "water_heater_efficiency": 0.95, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "electricity", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "18767", "water_heater_jacket_rvalue": 0, "water_heater_location": "living space", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-boiler-propane-only.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-boiler-propane-only.osw index ee441609..a62f0d44 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-boiler-propane-only.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-boiler-propane-only.osw @@ -6,58 +6,50 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", "cooling_system_cooling_compressor_type": "single stage", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.73, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "none", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -65,8 +57,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -74,11 +65,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "2", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 25.0, @@ -92,17 +82,15 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -133,6 +121,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, @@ -141,6 +130,7 @@ "geometry_num_floors_above_grade": 1, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family detached", @@ -150,22 +140,20 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "64000.0", - "heat_pump_heating_capacity_17F": "auto", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "none", "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "propane", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.92, @@ -186,7 +174,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base-hvac-boiler-propane-only.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -208,14 +196,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -236,18 +222,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -274,21 +256,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -315,10 +295,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "none", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -326,8 +304,6 @@ "water_heater_efficiency": 0.95, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "electricity", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "18767", "water_heater_jacket_rvalue": 0, "water_heater_location": "living space", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-boiler-wood-only.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-boiler-wood-only.osw index a2ead62a..1d2822fc 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-boiler-wood-only.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-boiler-wood-only.osw @@ -6,58 +6,50 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", "cooling_system_cooling_compressor_type": "single stage", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.73, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "none", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -65,8 +57,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -74,11 +65,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "2", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 25.0, @@ -92,17 +82,15 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -133,6 +121,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, @@ -141,6 +130,7 @@ "geometry_num_floors_above_grade": 1, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family detached", @@ -150,22 +140,20 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "64000.0", - "heat_pump_heating_capacity_17F": "auto", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "none", "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "wood", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.92, @@ -186,7 +174,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base-hvac-boiler-wood-only.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -208,14 +196,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -236,18 +222,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -274,21 +256,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -315,10 +295,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "none", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -326,8 +304,6 @@ "water_heater_efficiency": 0.95, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "electricity", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "18767", "water_heater_jacket_rvalue": 0, "water_heater_location": "living space", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-central-ac-only-1-speed.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-central-ac-only-1-speed.osw index 59be7f8c..cee6d172 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-central-ac-only-1-speed.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-central-ac-only-1-speed.osw @@ -6,59 +6,50 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", "cooling_system_cooling_compressor_type": "single stage", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.73, - "cooling_system_fan_power_watts_per_cfm": 0.45, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "central air conditioner", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -66,8 +57,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -75,11 +65,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "2", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 25.0, @@ -93,17 +82,15 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -134,6 +121,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, @@ -142,6 +130,7 @@ "geometry_num_floors_above_grade": 1, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family detached", @@ -151,22 +140,20 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "64000.0", - "heat_pump_heating_capacity_17F": "auto", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "none", "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "natural gas", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.92, @@ -187,7 +174,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base-hvac-central-ac-only-1-speed.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -209,14 +196,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -237,18 +222,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -275,21 +256,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -316,10 +295,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "none", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -327,8 +304,6 @@ "water_heater_efficiency": 0.95, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "electricity", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "18767", "water_heater_jacket_rvalue": 0, "water_heater_location": "living space", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-central-ac-only-2-speed.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-central-ac-only-2-speed.osw index 141aa5c0..8373635c 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-central-ac-only-2-speed.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-central-ac-only-2-speed.osw @@ -6,58 +6,50 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", "cooling_system_cooling_compressor_type": "two stage", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 18.0, + "cooling_system_cooling_efficiency": 18.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.73, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "central air conditioner", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -65,8 +57,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -74,11 +65,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "2", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 25.0, @@ -92,17 +82,15 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -133,6 +121,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, @@ -141,6 +130,7 @@ "geometry_num_floors_above_grade": 1, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family detached", @@ -150,22 +140,20 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "64000.0", - "heat_pump_heating_capacity_17F": "auto", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "none", "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "natural gas", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.92, @@ -186,7 +174,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base-hvac-central-ac-only-2-speed.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -208,14 +196,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -236,18 +222,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -274,21 +256,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -315,10 +295,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "none", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -326,8 +304,6 @@ "water_heater_efficiency": 0.95, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "electricity", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "18767", "water_heater_jacket_rvalue": 0, "water_heater_location": "living space", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-central-ac-only-var-speed.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-central-ac-only-var-speed.osw index 8910ba07..77f0530f 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-central-ac-only-var-speed.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-central-ac-only-var-speed.osw @@ -6,58 +6,50 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", "cooling_system_cooling_compressor_type": "variable speed", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 24.0, + "cooling_system_cooling_efficiency": 24.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.78, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "central air conditioner", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -65,8 +57,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -74,11 +65,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "2", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 25.0, @@ -92,17 +82,15 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -133,6 +121,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, @@ -141,6 +130,7 @@ "geometry_num_floors_above_grade": 1, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family detached", @@ -150,22 +140,20 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "64000.0", - "heat_pump_heating_capacity_17F": "auto", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "none", "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "natural gas", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.92, @@ -186,7 +174,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base-hvac-central-ac-only-var-speed.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -208,14 +196,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -236,18 +222,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -274,21 +256,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -315,10 +295,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "none", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -326,8 +304,6 @@ "water_heater_efficiency": 0.95, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "electricity", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "18767", "water_heater_jacket_rvalue": 0, "water_heater_location": "living space", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-central-ac-plus-air-to-air-heat-pump-heating.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-central-ac-plus-air-to-air-heat-pump-heating.osw index c22fe241..fb549207 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-central-ac-plus-air-to-air-heat-pump-heating.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-central-ac-plus-air-to-air-heat-pump-heating.osw @@ -6,59 +6,50 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", "cooling_system_cooling_compressor_type": "single stage", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.73, - "cooling_system_fan_power_watts_per_cfm": 0.45, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "central air conditioner", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -66,8 +57,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -75,11 +65,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "2", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 25.0, @@ -93,17 +82,15 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -134,6 +121,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, @@ -142,6 +130,7 @@ "geometry_num_floors_above_grade": 1, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family detached", @@ -151,23 +140,20 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, - "heat_pump_fan_power_watts_per_cfm": 0.45, "heat_pump_fraction_cool_load_served": 0, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "42000.0", - "heat_pump_heating_capacity_17F": "26460.0", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, + "heat_pump_heating_capacity_17_f": "26460.0", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "air-to-air", "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "natural gas", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.92, @@ -188,7 +174,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base-hvac-central-ac-plus-air-to-air-heat-pump-heating.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -210,14 +196,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -238,18 +222,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -276,21 +256,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -317,10 +295,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "none", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -328,8 +304,6 @@ "water_heater_efficiency": 0.95, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "electricity", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "18767", "water_heater_jacket_rvalue": 0, "water_heater_location": "living space", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-dual-fuel-air-to-air-heat-pump-1-speed-electric.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-dual-fuel-air-to-air-heat-pump-1-speed-electric.osw index 545cf3fa..8284f3b5 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-dual-fuel-air-to-air-heat-pump-1-speed-electric.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-dual-fuel-air-to-air-heat-pump-1-speed-electric.osw @@ -6,58 +6,50 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", "cooling_system_cooling_compressor_type": "single stage", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.73, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "none", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -65,8 +57,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -74,11 +65,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "2", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 25.0, @@ -92,17 +82,15 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -133,6 +121,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, @@ -141,6 +130,7 @@ "geometry_num_floors_above_grade": 1, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family detached", @@ -151,23 +141,20 @@ "heat_pump_backup_heating_switchover_temp": 25, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, - "heat_pump_fan_power_watts_per_cfm": 0.45, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "42000.0", - "heat_pump_heating_capacity_17F": "26460.0", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, + "heat_pump_heating_capacity_17_f": "26460.0", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "air-to-air", "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "natural gas", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.92, @@ -188,7 +175,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base-hvac-dual-fuel-air-to-air-heat-pump-1-speed-electric.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -210,14 +197,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -238,18 +223,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -276,21 +257,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -317,10 +296,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "none", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -328,8 +305,6 @@ "water_heater_efficiency": 0.95, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "electricity", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "18767", "water_heater_jacket_rvalue": 0, "water_heater_location": "living space", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-dual-fuel-air-to-air-heat-pump-1-speed.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-dual-fuel-air-to-air-heat-pump-1-speed.osw index 00cac692..218b89b1 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-dual-fuel-air-to-air-heat-pump-1-speed.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-dual-fuel-air-to-air-heat-pump-1-speed.osw @@ -6,58 +6,50 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", "cooling_system_cooling_compressor_type": "single stage", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.73, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "none", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -65,8 +57,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -74,11 +65,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "2", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 25.0, @@ -92,17 +82,15 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -133,6 +121,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, @@ -141,6 +130,7 @@ "geometry_num_floors_above_grade": 1, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family detached", @@ -151,23 +141,20 @@ "heat_pump_backup_heating_switchover_temp": 25, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, - "heat_pump_fan_power_watts_per_cfm": 0.45, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "42000.0", - "heat_pump_heating_capacity_17F": "26460.0", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, + "heat_pump_heating_capacity_17_f": "26460.0", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "air-to-air", "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "natural gas", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.92, @@ -188,7 +175,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base-hvac-dual-fuel-air-to-air-heat-pump-1-speed.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -210,14 +197,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -238,18 +223,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -276,21 +257,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -317,10 +296,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "none", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -328,8 +305,6 @@ "water_heater_efficiency": 0.95, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "electricity", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "18767", "water_heater_jacket_rvalue": 0, "water_heater_location": "living space", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-dual-fuel-air-to-air-heat-pump-2-speed.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-dual-fuel-air-to-air-heat-pump-2-speed.osw index 0fe9db46..46a30f6c 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-dual-fuel-air-to-air-heat-pump-2-speed.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-dual-fuel-air-to-air-heat-pump-2-speed.osw @@ -6,58 +6,50 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", "cooling_system_cooling_compressor_type": "single stage", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.73, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "none", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -65,8 +57,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -74,11 +65,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "2", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 25.0, @@ -92,17 +82,15 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -133,6 +121,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, @@ -141,6 +130,7 @@ "geometry_num_floors_above_grade": 1, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family detached", @@ -151,22 +141,20 @@ "heat_pump_backup_heating_switchover_temp": 25, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "two stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 18.0, + "heat_pump_cooling_efficiency": 18.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "42000.0", - "heat_pump_heating_capacity_17F": "24780.0", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 9.3, + "heat_pump_heating_capacity_17_f": "24780.0", + "heat_pump_heating_efficiency": 9.3, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "air-to-air", "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "natural gas", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.92, @@ -187,7 +175,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base-hvac-dual-fuel-air-to-air-heat-pump-2-speed.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -209,14 +197,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -237,18 +223,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -275,21 +257,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -316,10 +296,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "none", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -327,8 +305,6 @@ "water_heater_efficiency": 0.95, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "electricity", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "18767", "water_heater_jacket_rvalue": 0, "water_heater_location": "living space", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-dual-fuel-air-to-air-heat-pump-var-speed.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-dual-fuel-air-to-air-heat-pump-var-speed.osw index bea4eaa7..ab094a84 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-dual-fuel-air-to-air-heat-pump-var-speed.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-dual-fuel-air-to-air-heat-pump-var-speed.osw @@ -6,58 +6,50 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", "cooling_system_cooling_compressor_type": "single stage", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.73, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "none", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -65,8 +57,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -74,11 +65,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "2", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 25.0, @@ -92,17 +82,15 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -133,6 +121,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, @@ -141,6 +130,7 @@ "geometry_num_floors_above_grade": 1, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family detached", @@ -151,22 +141,20 @@ "heat_pump_backup_heating_switchover_temp": 25, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "variable speed", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 22.0, + "heat_pump_cooling_efficiency": 22.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.78, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "42000.0", - "heat_pump_heating_capacity_17F": "26880.0", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 10.0, + "heat_pump_heating_capacity_17_f": "26880.0", + "heat_pump_heating_efficiency": 10.0, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "air-to-air", "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "natural gas", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.92, @@ -187,7 +175,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base-hvac-dual-fuel-air-to-air-heat-pump-var-speed.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -209,14 +197,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -237,18 +223,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -275,21 +257,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -316,10 +296,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "none", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -327,8 +305,6 @@ "water_heater_efficiency": 0.95, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "electricity", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "18767", "water_heater_jacket_rvalue": 0, "water_heater_location": "living space", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-dual-fuel-mini-split-heat-pump-ducted.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-dual-fuel-mini-split-heat-pump-ducted.osw index 6c9db6b8..a73ad779 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-dual-fuel-mini-split-heat-pump-ducted.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-dual-fuel-mini-split-heat-pump-ducted.osw @@ -6,58 +6,50 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", "cooling_system_cooling_compressor_type": "single stage", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.73, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "none", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -65,8 +57,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -74,11 +65,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "2", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 5.0, @@ -92,17 +82,15 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -133,6 +121,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, @@ -141,6 +130,7 @@ "geometry_num_floors_above_grade": 1, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family detached", @@ -150,24 +140,21 @@ "heat_pump_backup_heating_efficiency": 0.95, "heat_pump_backup_heating_switchover_temp": 25, "heat_pump_cooling_capacity": "48000.0", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 19.0, + "heat_pump_cooling_efficiency": 19.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, - "heat_pump_fan_power_watts_per_cfm": 0.2, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "52000.0", - "heat_pump_heating_capacity_17F": "29500.0", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 10.0, - "heat_pump_mini_split_is_ducted": true, + "heat_pump_heating_capacity_17_f": "29500.0", + "heat_pump_heating_efficiency": 10.0, + "heat_pump_heating_efficiency_type": "HSPF", + "heat_pump_is_ducted": true, "heat_pump_type": "mini-split", "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "natural gas", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.92, @@ -188,7 +175,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base-hvac-dual-fuel-mini-split-heat-pump-ducted.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -210,14 +197,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -238,18 +223,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -276,21 +257,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -317,10 +296,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "none", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -328,8 +305,6 @@ "water_heater_efficiency": 0.95, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "electricity", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "18767", "water_heater_jacket_rvalue": 0, "water_heater_location": "living space", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-ducts-leakage-percent.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-ducts-leakage-percent.osw index 1a125458..cdb7de0b 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-ducts-leakage-percent.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-ducts-leakage-percent.osw @@ -6,58 +6,50 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", "cooling_system_cooling_compressor_type": "single stage", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.73, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "central air conditioner", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -65,8 +57,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -74,11 +65,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "2", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "Percent", "ducts_return_leakage_value": 0.05, @@ -92,17 +82,15 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -133,6 +121,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, @@ -141,6 +130,7 @@ "geometry_num_floors_above_grade": 1, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family detached", @@ -150,22 +140,20 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "64000.0", - "heat_pump_heating_capacity_17F": "auto", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "none", "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "natural gas", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.92, @@ -186,7 +174,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base-hvac-ducts-leakage-percent.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -208,14 +196,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -236,18 +222,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -274,21 +256,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -315,10 +295,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "none", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -326,8 +304,6 @@ "water_heater_efficiency": 0.95, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "electricity", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "18767", "water_heater_jacket_rvalue": 0, "water_heater_location": "living space", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-elec-resistance-only.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-elec-resistance-only.osw index 33e05957..346ec53b 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-elec-resistance-only.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-elec-resistance-only.osw @@ -6,58 +6,50 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", "cooling_system_cooling_compressor_type": "single stage", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.73, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "none", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -65,8 +57,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -74,11 +65,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "2", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 25.0, @@ -92,17 +82,15 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -133,6 +121,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, @@ -141,6 +130,7 @@ "geometry_num_floors_above_grade": 1, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family detached", @@ -150,22 +140,20 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "64000.0", - "heat_pump_heating_capacity_17F": "auto", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "none", "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "electricity", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 1.0, @@ -186,7 +174,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base-hvac-elec-resistance-only.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -208,14 +196,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -236,18 +222,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -274,21 +256,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -315,10 +295,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "none", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -326,8 +304,6 @@ "water_heater_efficiency": 0.95, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "electricity", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "18767", "water_heater_jacket_rvalue": 0, "water_heater_location": "living space", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-evap-cooler-furnace-gas.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-evap-cooler-furnace-gas.osw index 2a132f64..0a0243ad 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-evap-cooler-furnace-gas.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-evap-cooler-furnace-gas.osw @@ -6,56 +6,48 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "evaporative cooler", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -63,8 +55,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -72,11 +63,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "2", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 25.0, @@ -90,17 +80,15 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -131,6 +119,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, @@ -139,6 +128,7 @@ "geometry_num_floors_above_grade": 1, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family detached", @@ -148,22 +138,20 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "64000.0", - "heat_pump_heating_capacity_17F": "auto", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "none", "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "natural gas", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.92, @@ -184,7 +172,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base-hvac-evap-cooler-furnace-gas.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -206,14 +194,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -234,18 +220,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -272,21 +254,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -313,10 +293,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "none", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -324,8 +302,6 @@ "water_heater_efficiency": 0.95, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "electricity", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "18767", "water_heater_jacket_rvalue": 0, "water_heater_location": "living space", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-evap-cooler-only-ducted.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-evap-cooler-only-ducted.osw index e68dd2eb..24cb0f4d 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-evap-cooler-only-ducted.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-evap-cooler-only-ducted.osw @@ -6,56 +6,48 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": true, "cooling_system_type": "evaporative cooler", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -63,8 +55,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -72,14 +63,13 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "2", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", - "ducts_return_leakage_value": 25.0, + "ducts_return_leakage_value": 0.0, "ducts_return_location": "attic - unvented", "ducts_return_surface_area": "50.0", "ducts_supply_insulation_r": 4.0, @@ -90,17 +80,15 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -131,6 +119,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, @@ -139,6 +128,7 @@ "geometry_num_floors_above_grade": 1, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family detached", @@ -148,22 +138,20 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "64000.0", - "heat_pump_heating_capacity_17F": "auto", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "none", "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "natural gas", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.92, @@ -184,7 +172,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base-hvac-evap-cooler-only-ducted.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -206,14 +194,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -234,18 +220,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -272,21 +254,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -313,10 +293,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "none", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -324,8 +302,6 @@ "water_heater_efficiency": 0.95, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "electricity", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "18767", "water_heater_jacket_rvalue": 0, "water_heater_location": "living space", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-evap-cooler-only.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-evap-cooler-only.osw index b5bf002d..f0b4c892 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-evap-cooler-only.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-evap-cooler-only.osw @@ -6,57 +6,48 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, - "cooling_system_fan_power_watts_per_cfm": 0.3, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "evaporative cooler", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -64,8 +55,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -73,11 +63,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "2", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 25.0, @@ -91,17 +80,15 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -132,6 +119,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, @@ -140,6 +128,7 @@ "geometry_num_floors_above_grade": 1, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family detached", @@ -149,22 +138,20 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "64000.0", - "heat_pump_heating_capacity_17F": "auto", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "none", "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "natural gas", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.92, @@ -185,7 +172,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base-hvac-evap-cooler-only.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -207,14 +194,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -235,18 +220,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -273,21 +254,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -314,10 +293,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "none", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -325,8 +302,6 @@ "water_heater_efficiency": 0.95, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "electricity", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "18767", "water_heater_jacket_rvalue": 0, "water_heater_location": "living space", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-fireplace-wood-only.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-fireplace-wood-only.osw index 49fdf3c8..d527f527 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-fireplace-wood-only.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-fireplace-wood-only.osw @@ -6,58 +6,50 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", "cooling_system_cooling_compressor_type": "single stage", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.73, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "none", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -65,8 +57,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -74,11 +65,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "2", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 25.0, @@ -92,17 +82,15 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -133,6 +121,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, @@ -141,6 +130,7 @@ "geometry_num_floors_above_grade": 1, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family detached", @@ -150,23 +140,20 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "64000.0", - "heat_pump_heating_capacity_17F": "auto", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "none", - "heating_system_fan_power_watts": 0.0, "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "wood", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.8, @@ -187,7 +174,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base-hvac-fireplace-wood-only.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -209,14 +196,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -237,18 +222,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -275,21 +256,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -316,10 +295,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "none", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -327,8 +304,6 @@ "water_heater_efficiency": 0.95, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "electricity", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "18767", "water_heater_jacket_rvalue": 0, "water_heater_location": "living space", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-fixed-heater-gas-only.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-fixed-heater-gas-only.osw index 18e9a1eb..4af104c1 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-fixed-heater-gas-only.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-fixed-heater-gas-only.osw @@ -6,58 +6,50 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", "cooling_system_cooling_compressor_type": "single stage", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.73, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "central air conditioner", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -65,8 +57,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -74,11 +65,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "2", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 25.0, @@ -92,17 +82,15 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -133,6 +121,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, @@ -141,6 +130,7 @@ "geometry_num_floors_above_grade": 1, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family detached", @@ -150,23 +140,20 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "64000.0", - "heat_pump_heating_capacity_17F": "auto", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "none", - "heating_system_fan_power_watts": 0.0, "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "natural gas", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 1.0, @@ -187,7 +174,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base-hvac-fixed-heater-gas-only.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -209,14 +196,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -237,18 +222,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -275,21 +256,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -316,10 +295,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "none", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -327,8 +304,6 @@ "water_heater_efficiency": 0.95, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "electricity", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "18767", "water_heater_jacket_rvalue": 0, "water_heater_location": "living space", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-floor-furnace-propane-only.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-floor-furnace-propane-only.osw index 12a32787..8fb28412 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-floor-furnace-propane-only.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-floor-furnace-propane-only.osw @@ -6,58 +6,50 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", "cooling_system_cooling_compressor_type": "single stage", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.73, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "none", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -65,8 +57,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -74,11 +65,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "2", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 25.0, @@ -92,17 +82,15 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -133,6 +121,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, @@ -141,6 +130,7 @@ "geometry_num_floors_above_grade": 1, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family detached", @@ -150,23 +140,20 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "64000.0", - "heat_pump_heating_capacity_17F": "auto", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "none", - "heating_system_fan_power_watts": 0.0, "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "propane", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.8, @@ -187,7 +174,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base-hvac-floor-furnace-propane-only.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -209,14 +196,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -237,18 +222,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -275,21 +256,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -316,10 +295,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "none", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -327,8 +304,6 @@ "water_heater_efficiency": 0.95, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "electricity", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "18767", "water_heater_jacket_rvalue": 0, "water_heater_location": "living space", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-furnace-coal-only.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-furnace-coal-only.osw new file mode 100644 index 00000000..6301bddf --- /dev/null +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-furnace-coal-only.osw @@ -0,0 +1,337 @@ +{ + "measure_paths": [ + "../.." + ], + "steps": [ + { + "arguments": { + "air_leakage_house_pressure": 50, + "air_leakage_shielding_of_home": "auto", + "air_leakage_units": "ACH", + "air_leakage_value": 3, + "bathroom_fans_quantity": "0", + "ceiling_assembly_r": 39.3, + "ceiling_fan_cooling_setpoint_temp_offset": 0, + "ceiling_fan_efficiency": "auto", + "ceiling_fan_present": false, + "ceiling_fan_quantity": "auto", + "clothes_dryer_efficiency": "3.73", + "clothes_dryer_efficiency_type": "CombinedEnergyFactor", + "clothes_dryer_fuel_type": "electricity", + "clothes_dryer_location": "living space", + "clothes_dryer_usage_multiplier": 1.0, + "clothes_dryer_vented_flow_rate": "150.0", + "clothes_washer_capacity": "3.2", + "clothes_washer_efficiency": "1.21", + "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", + "clothes_washer_label_annual_gas_cost": "27.0", + "clothes_washer_label_electric_rate": "0.12", + "clothes_washer_label_gas_rate": "1.09", + "clothes_washer_label_usage": "6.0", + "clothes_washer_location": "living space", + "clothes_washer_rated_annual_kwh": "380.0", + "clothes_washer_usage_multiplier": 1.0, + "cooking_range_oven_fuel_type": "electricity", + "cooking_range_oven_is_convection": false, + "cooking_range_oven_is_induction": false, + "cooking_range_oven_location": "living space", + "cooking_range_oven_usage_multiplier": 1.0, + "cooling_system_cooling_capacity": "48000.0", + "cooling_system_cooling_compressor_type": "single stage", + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", + "cooling_system_cooling_sensible_heat_fraction": 0.73, + "cooling_system_fraction_cool_load_served": 1, + "cooling_system_is_ducted": false, + "cooling_system_type": "none", + "dehumidifier_capacity": 40, + "dehumidifier_efficiency": 1.8, + "dehumidifier_efficiency_type": "EnergyFactor", + "dehumidifier_fraction_dehumidification_load_served": 1, + "dehumidifier_rh_setpoint": 0.5, + "dehumidifier_type": "none", + "dhw_distribution_pipe_r": "0.0", + "dhw_distribution_recirc_branch_piping_length": "50", + "dhw_distribution_recirc_control_type": "no control", + "dhw_distribution_recirc_piping_length": "50", + "dhw_distribution_recirc_pump_power": "50", + "dhw_distribution_standard_piping_length": "50", + "dhw_distribution_system_type": "Standard", + "dishwasher_efficiency": "307", + "dishwasher_efficiency_type": "RatedAnnualkWh", + "dishwasher_label_annual_gas_cost": "22.32", + "dishwasher_label_electric_rate": "0.12", + "dishwasher_label_gas_rate": "1.09", + "dishwasher_label_usage": "4.0", + "dishwasher_location": "living space", + "dishwasher_place_setting_capacity": "12", + "dishwasher_usage_multiplier": 1.0, + "door_area": 80.0, + "door_rvalue": 4.4, + "ducts_number_of_return_registers": "2", + "ducts_return_insulation_r": 0.0, + "ducts_return_leakage_units": "CFM25", + "ducts_return_leakage_value": 25.0, + "ducts_return_location": "attic - unvented", + "ducts_return_surface_area": "50.0", + "ducts_supply_insulation_r": 4.0, + "ducts_supply_leakage_units": "CFM25", + "ducts_supply_leakage_value": 75.0, + "ducts_supply_location": "attic - unvented", + "ducts_supply_surface_area": "150.0", + "dwhr_efficiency": 0.55, + "dwhr_equal_flow": true, + "dwhr_facilities_connected": "none", + "extra_refrigerator_location": "none", + "extra_refrigerator_rated_annual_kwh": "auto", + "extra_refrigerator_usage_multiplier": 1.0, + "floor_assembly_r": 0, + "foundation_wall_insulation_distance_to_bottom": "auto", + "foundation_wall_insulation_distance_to_top": 0.0, + "foundation_wall_insulation_r": 8.9, + "foundation_wall_thickness": "8.0", + "freezer_location": "none", + "freezer_rated_annual_kwh": "auto", + "freezer_usage_multiplier": 1.0, + "fuel_loads_fireplace_annual_therm": "auto", + "fuel_loads_fireplace_frac_latent": "auto", + "fuel_loads_fireplace_frac_sensible": "auto", + "fuel_loads_fireplace_fuel_type": "natural gas", + "fuel_loads_fireplace_present": false, + "fuel_loads_fireplace_usage_multiplier": 0.0, + "fuel_loads_grill_annual_therm": "auto", + "fuel_loads_grill_fuel_type": "natural gas", + "fuel_loads_grill_present": false, + "fuel_loads_grill_usage_multiplier": 0.0, + "fuel_loads_lighting_annual_therm": "auto", + "fuel_loads_lighting_fuel_type": "natural gas", + "fuel_loads_lighting_present": false, + "fuel_loads_lighting_usage_multiplier": 0.0, + "geometry_aspect_ratio": 1.5, + "geometry_attic_type": "UnventedAttic", + "geometry_balcony_depth": 0.0, + "geometry_cfa": 2700.0, + "geometry_corridor_position": "Double-Loaded Interior", + "geometry_corridor_width": 10.0, + "geometry_eaves_depth": 0, + "geometry_foundation_height": 8.0, + "geometry_foundation_height_above_grade": 1.0, + "geometry_foundation_type": "ConditionedBasement", + "geometry_garage_depth": 20.0, + "geometry_garage_position": "Right", + "geometry_garage_protrusion": 0.0, + "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", + "geometry_inset_depth": 0.0, + "geometry_inset_position": "Right", + "geometry_inset_width": 0.0, + "geometry_num_bathrooms": "2", + "geometry_num_bedrooms": 3, + "geometry_num_floors_above_grade": 1, + "geometry_num_occupants": "3", + "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, + "geometry_roof_pitch": "6:12", + "geometry_roof_type": "gable", + "geometry_unit_type": "single-family detached", + "geometry_wall_height": 8.0, + "heat_pump_backup_fuel": "none", + "heat_pump_backup_heating_capacity": "34121.0", + "heat_pump_backup_heating_efficiency": 1, + "heat_pump_cooling_capacity": "48000.0", + "heat_pump_cooling_compressor_type": "single stage", + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", + "heat_pump_cooling_sensible_heat_fraction": 0.73, + "heat_pump_fraction_cool_load_served": 1, + "heat_pump_fraction_heat_load_served": 1, + "heat_pump_heating_capacity": "64000.0", + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", + "heat_pump_type": "none", + "heating_system_fraction_heat_load_served": 1, + "heating_system_fraction_heat_load_served_2": 0.25, + "heating_system_fuel": "coal", + "heating_system_fuel_2": "electricity", + "heating_system_heating_capacity": "64000.0", + "heating_system_heating_capacity_2": "auto", + "heating_system_heating_efficiency": 0.92, + "heating_system_heating_efficiency_2": 1.0, + "heating_system_type": "Furnace", + "heating_system_type_2": "none", + "holiday_lighting_daily_kwh": "auto", + "holiday_lighting_period_begin_day_of_month": "auto", + "holiday_lighting_period_begin_month": "auto", + "holiday_lighting_period_end_day_of_month": "auto", + "holiday_lighting_period_end_month": "auto", + "holiday_lighting_present": false, + "hot_tub_heater_annual_kwh": "auto", + "hot_tub_heater_annual_therm": "auto", + "hot_tub_heater_type": "electric resistance", + "hot_tub_heater_usage_multiplier": 1.0, + "hot_tub_present": false, + "hot_tub_pump_annual_kwh": "auto", + "hot_tub_pump_usage_multiplier": 1.0, + "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base-hvac-furnace-coal-only.xml", + "kitchen_fans_quantity": "0", + "lighting_fraction_cfl_exterior": 0.4, + "lighting_fraction_cfl_garage": 0.4, + "lighting_fraction_cfl_interior": 0.4, + "lighting_fraction_led_exterior": 0.25, + "lighting_fraction_led_garage": 0.25, + "lighting_fraction_led_interior": 0.25, + "lighting_fraction_lfl_exterior": 0.1, + "lighting_fraction_lfl_garage": 0.1, + "lighting_fraction_lfl_interior": 0.1, + "lighting_usage_multiplier_exterior": 1.0, + "lighting_usage_multiplier_garage": 1.0, + "lighting_usage_multiplier_interior": 1.0, + "mech_vent_fan_power": 30, + "mech_vent_fan_power_2": 30, + "mech_vent_fan_type": "none", + "mech_vent_fan_type_2": "none", + "mech_vent_flow_rate": 110, + "mech_vent_flow_rate_2": 110, + "mech_vent_hours_in_operation": 24, + "mech_vent_hours_in_operation_2": 24, + "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", + "mech_vent_sensible_recovery_efficiency": 0.72, + "mech_vent_sensible_recovery_efficiency_2": 0.72, + "mech_vent_total_recovery_efficiency": 0.48, + "mech_vent_total_recovery_efficiency_2": 0.48, + "neighbor_back_distance": 0, + "neighbor_back_height": "auto", + "neighbor_front_distance": 0, + "neighbor_front_height": "auto", + "neighbor_left_distance": 0, + "neighbor_left_height": "auto", + "neighbor_right_distance": 0, + "neighbor_right_height": "auto", + "overhangs_back_depth": 0, + "overhangs_back_distance_to_top_of_window": 0, + "overhangs_front_depth": 0, + "overhangs_front_distance_to_top_of_window": 0, + "overhangs_left_depth": 0, + "overhangs_left_distance_to_top_of_window": 0, + "overhangs_right_depth": 0, + "overhangs_right_distance_to_top_of_window": 0, + "plug_loads_other_annual_kwh": "2457.0", + "plug_loads_other_frac_latent": "0.045", + "plug_loads_other_frac_sensible": "0.855", + "plug_loads_other_usage_multiplier": 1.0, + "plug_loads_television_annual_kwh": "620.0", + "plug_loads_television_usage_multiplier": 1.0, + "plug_loads_vehicle_annual_kwh": "auto", + "plug_loads_vehicle_present": false, + "plug_loads_vehicle_usage_multiplier": 0.0, + "plug_loads_well_pump_annual_kwh": "auto", + "plug_loads_well_pump_present": false, + "plug_loads_well_pump_usage_multiplier": 0.0, + "pool_heater_annual_kwh": "auto", + "pool_heater_annual_therm": "auto", + "pool_heater_type": "electric resistance", + "pool_heater_usage_multiplier": 1.0, + "pool_present": false, + "pool_pump_annual_kwh": "auto", + "pool_pump_usage_multiplier": 1.0, + "pv_system_array_azimuth_1": 180, + "pv_system_array_azimuth_2": 180, + "pv_system_array_tilt_1": "20", + "pv_system_array_tilt_2": "20", + "pv_system_inverter_efficiency_1": 0.96, + "pv_system_inverter_efficiency_2": 0.96, + "pv_system_location_1": "auto", + "pv_system_location_2": "auto", + "pv_system_max_power_output_1": 4000, + "pv_system_max_power_output_2": 4000, + "pv_system_module_type_1": "none", + "pv_system_module_type_2": "none", + "pv_system_num_units_served_1": 1, + "pv_system_num_units_served_2": 1, + "pv_system_system_losses_fraction_1": 0.14, + "pv_system_system_losses_fraction_2": 0.14, + "pv_system_tracking_1": "auto", + "pv_system_tracking_2": "auto", + "refrigerator_location": "living space", + "refrigerator_rated_annual_kwh": "650.0", + "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, + "roof_assembly_r": 2.3, + "roof_color": "medium", + "roof_material_type": "asphalt or fiberglass shingles", + "roof_radiant_barrier": false, + "roof_radiant_barrier_grade": "1", + "schedules_type": "default", + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", + "simulation_control_timestep": "60", + "site_type": "suburban", + "skylight_area_back": 0, + "skylight_area_front": 0, + "skylight_area_left": 0, + "skylight_area_right": 0, + "skylight_shgc": 0.45, + "skylight_ufactor": 0.33, + "slab_carpet_fraction": "0.0", + "slab_carpet_r": "0.0", + "slab_perimeter_depth": 0, + "slab_perimeter_insulation_r": 0, + "slab_thickness": "4.0", + "slab_under_insulation_r": 0, + "slab_under_width": 0, + "solar_thermal_collector_area": 40.0, + "solar_thermal_collector_azimuth": 180, + "solar_thermal_collector_loop_type": "liquid direct", + "solar_thermal_collector_rated_optical_efficiency": 0.5, + "solar_thermal_collector_rated_thermal_losses": 0.2799, + "solar_thermal_collector_tilt": "20", + "solar_thermal_collector_type": "evacuated tube", + "solar_thermal_solar_fraction": 0, + "solar_thermal_storage_volume": "auto", + "solar_thermal_system_type": "none", + "wall_assembly_r": 23, + "wall_color": "medium", + "wall_siding_type": "wood siding", + "wall_type": "WoodStud", + "water_fixtures_shower_low_flow": true, + "water_fixtures_sink_low_flow": false, + "water_fixtures_usage_multiplier": 1.0, + "water_heater_efficiency": 0.95, + "water_heater_efficiency_type": "EnergyFactor", + "water_heater_fuel_type": "electricity", + "water_heater_jacket_rvalue": 0, + "water_heater_location": "living space", + "water_heater_num_units_served": 1, + "water_heater_recovery_efficiency": "0.76", + "water_heater_setpoint_temperature": "125", + "water_heater_standby_loss": 0, + "water_heater_tank_volume": "40", + "water_heater_type": "storage water heater", + "weather_station_epw_filepath": "USA_CO_Denver.Intl.AP.725650_TMY3.epw", + "whole_house_fan_flow_rate": 4500, + "whole_house_fan_power": 300, + "whole_house_fan_present": false, + "window_area_back": 108.0, + "window_area_front": 108.0, + "window_area_left": 72.0, + "window_area_right": 72.0, + "window_aspect_ratio": 1.333, + "window_back_wwr": 0, + "window_fraction_operable": 0.67, + "window_front_wwr": 0, + "window_interior_shading_summer": 0.7, + "window_interior_shading_winter": 0.85, + "window_left_wwr": 0, + "window_right_wwr": 0, + "window_shgc": 0.45, + "window_ufactor": 0.33 + }, + "measure_dir_name": "BuildResidentialHPXML" + } + ] +} \ No newline at end of file diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-furnace-elec-central-ac-1-speed.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-furnace-elec-central-ac-1-speed.osw index 21434001..2ae430b4 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-furnace-elec-central-ac-1-speed.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-furnace-elec-central-ac-1-speed.osw @@ -6,58 +6,50 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", "cooling_system_cooling_compressor_type": "single stage", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.73, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "central air conditioner", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -65,8 +57,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -74,11 +65,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "2", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 25.0, @@ -92,17 +82,15 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -133,6 +121,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, @@ -141,6 +130,7 @@ "geometry_num_floors_above_grade": 1, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family detached", @@ -150,22 +140,20 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "64000.0", - "heat_pump_heating_capacity_17F": "auto", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "none", "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "electricity", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 1.0, @@ -186,7 +174,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base-hvac-furnace-elec-central-ac-1-speed.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -208,14 +196,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -236,18 +222,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -274,21 +256,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -315,10 +295,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "none", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -326,8 +304,6 @@ "water_heater_efficiency": 0.95, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "electricity", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "18767", "water_heater_jacket_rvalue": 0, "water_heater_location": "living space", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-furnace-elec-only.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-furnace-elec-only.osw index fd5e8004..e75f24bb 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-furnace-elec-only.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-furnace-elec-only.osw @@ -6,58 +6,50 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", "cooling_system_cooling_compressor_type": "single stage", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.73, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "none", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -65,8 +57,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -74,11 +65,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "2", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 25.0, @@ -92,17 +82,15 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -133,6 +121,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, @@ -141,6 +130,7 @@ "geometry_num_floors_above_grade": 1, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family detached", @@ -150,22 +140,20 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "64000.0", - "heat_pump_heating_capacity_17F": "auto", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "none", "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "electricity", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 1.0, @@ -186,7 +174,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base-hvac-furnace-elec-only.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -208,14 +196,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -236,18 +222,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -274,21 +256,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -315,10 +295,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "none", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -326,8 +304,6 @@ "water_heater_efficiency": 0.95, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "electricity", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "18767", "water_heater_jacket_rvalue": 0, "water_heater_location": "living space", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-furnace-gas-central-ac-2-speed.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-furnace-gas-central-ac-2-speed.osw index 885e0875..1fbdbb6c 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-furnace-gas-central-ac-2-speed.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-furnace-gas-central-ac-2-speed.osw @@ -6,58 +6,50 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", "cooling_system_cooling_compressor_type": "two stage", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 18.0, + "cooling_system_cooling_efficiency": 18.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.73, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "central air conditioner", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -65,8 +57,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -74,11 +65,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "2", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 25.0, @@ -92,17 +82,15 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -133,6 +121,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, @@ -141,6 +130,7 @@ "geometry_num_floors_above_grade": 1, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family detached", @@ -150,22 +140,20 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "64000.0", - "heat_pump_heating_capacity_17F": "auto", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "none", "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "natural gas", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.92, @@ -186,7 +174,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base-hvac-furnace-gas-central-ac-2-speed.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -208,14 +196,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -236,18 +222,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -274,21 +256,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -315,10 +295,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "none", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -326,8 +304,6 @@ "water_heater_efficiency": 0.95, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "electricity", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "18767", "water_heater_jacket_rvalue": 0, "water_heater_location": "living space", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-furnace-gas-central-ac-var-speed.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-furnace-gas-central-ac-var-speed.osw index 49846d99..e9315c4e 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-furnace-gas-central-ac-var-speed.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-furnace-gas-central-ac-var-speed.osw @@ -6,58 +6,50 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", "cooling_system_cooling_compressor_type": "variable speed", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 24.0, + "cooling_system_cooling_efficiency": 24.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.78, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "central air conditioner", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -65,8 +57,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -74,11 +65,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "2", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 25.0, @@ -92,17 +82,15 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -133,6 +121,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, @@ -141,6 +130,7 @@ "geometry_num_floors_above_grade": 1, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family detached", @@ -150,22 +140,20 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "64000.0", - "heat_pump_heating_capacity_17F": "auto", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "none", "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "natural gas", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.92, @@ -186,7 +174,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base-hvac-furnace-gas-central-ac-var-speed.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -208,14 +196,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -236,18 +222,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -274,21 +256,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -315,10 +295,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "none", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -326,8 +304,6 @@ "water_heater_efficiency": 0.95, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "electricity", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "18767", "water_heater_jacket_rvalue": 0, "water_heater_location": "living space", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-furnace-gas-only.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-furnace-gas-only.osw index 0a30549f..493f405c 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-furnace-gas-only.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-furnace-gas-only.osw @@ -6,58 +6,50 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", "cooling_system_cooling_compressor_type": "single stage", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.73, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "none", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -65,8 +57,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -74,11 +65,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "2", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 25.0, @@ -92,17 +82,15 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -133,6 +121,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, @@ -141,6 +130,7 @@ "geometry_num_floors_above_grade": 1, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family detached", @@ -150,23 +140,20 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "64000.0", - "heat_pump_heating_capacity_17F": "auto", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "none", - "heating_system_fan_power_watts_per_cfm": 0.45, "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "natural gas", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.92, @@ -187,7 +174,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base-hvac-furnace-gas-only.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -209,14 +196,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -237,18 +222,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -275,21 +256,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -316,10 +295,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "none", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -327,8 +304,6 @@ "water_heater_efficiency": 0.95, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "electricity", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "18767", "water_heater_jacket_rvalue": 0, "water_heater_location": "living space", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-furnace-gas-room-ac.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-furnace-gas-room-ac.osw index 35f8d734..6bcd2ffc 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-furnace-gas-room-ac.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-furnace-gas-room-ac.osw @@ -6,57 +6,49 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 8.5, + "cooling_system_cooling_efficiency_type": "EER", "cooling_system_cooling_sensible_heat_fraction": 0.65, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "room air conditioner", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -64,8 +56,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -73,11 +64,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "2", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 25.0, @@ -91,17 +81,15 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -132,6 +120,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, @@ -140,6 +129,7 @@ "geometry_num_floors_above_grade": 1, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family detached", @@ -149,22 +139,20 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "64000.0", - "heat_pump_heating_capacity_17F": "auto", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "none", "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "natural gas", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.92, @@ -185,7 +173,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base-hvac-furnace-gas-room-ac.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -207,14 +195,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -235,18 +221,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -273,21 +255,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -314,10 +294,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "none", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -325,8 +303,6 @@ "water_heater_efficiency": 0.95, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "electricity", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "18767", "water_heater_jacket_rvalue": 0, "water_heater_location": "living space", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-furnace-oil-only.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-furnace-oil-only.osw index 6d3f8982..ce71ed67 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-furnace-oil-only.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-furnace-oil-only.osw @@ -6,58 +6,50 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", "cooling_system_cooling_compressor_type": "single stage", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.73, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "none", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -65,8 +57,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -74,11 +65,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "2", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 25.0, @@ -92,17 +82,15 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -133,6 +121,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, @@ -141,6 +130,7 @@ "geometry_num_floors_above_grade": 1, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family detached", @@ -150,22 +140,20 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "64000.0", - "heat_pump_heating_capacity_17F": "auto", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "none", "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "fuel oil", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.92, @@ -186,7 +174,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base-hvac-furnace-oil-only.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -208,14 +196,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -236,18 +222,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -274,21 +256,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -315,10 +295,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "none", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -326,8 +304,6 @@ "water_heater_efficiency": 0.95, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "electricity", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "18767", "water_heater_jacket_rvalue": 0, "water_heater_location": "living space", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-furnace-propane-only.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-furnace-propane-only.osw index c8f1f8cf..35cae18b 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-furnace-propane-only.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-furnace-propane-only.osw @@ -6,58 +6,50 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", "cooling_system_cooling_compressor_type": "single stage", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.73, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "none", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -65,8 +57,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -74,11 +65,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "2", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 25.0, @@ -92,17 +82,15 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -133,6 +121,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, @@ -141,6 +130,7 @@ "geometry_num_floors_above_grade": 1, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family detached", @@ -150,22 +140,20 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "64000.0", - "heat_pump_heating_capacity_17F": "auto", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "none", "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "propane", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.92, @@ -186,7 +174,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base-hvac-furnace-propane-only.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -208,14 +196,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -236,18 +222,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -274,21 +256,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -315,10 +295,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "none", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -326,8 +304,6 @@ "water_heater_efficiency": 0.95, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "electricity", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "18767", "water_heater_jacket_rvalue": 0, "water_heater_location": "living space", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-furnace-wood-only.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-furnace-wood-only.osw index c3673a7b..f92adee3 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-furnace-wood-only.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-furnace-wood-only.osw @@ -6,58 +6,50 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", "cooling_system_cooling_compressor_type": "single stage", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.73, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "none", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -65,8 +57,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -74,11 +65,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "2", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 25.0, @@ -92,17 +82,15 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -133,6 +121,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, @@ -141,6 +130,7 @@ "geometry_num_floors_above_grade": 1, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family detached", @@ -150,22 +140,20 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "64000.0", - "heat_pump_heating_capacity_17F": "auto", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "none", "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "wood", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.92, @@ -186,7 +174,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base-hvac-furnace-wood-only.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -208,14 +196,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -236,18 +222,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -274,21 +256,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -315,10 +295,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "none", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -326,8 +304,6 @@ "water_heater_efficiency": 0.95, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "electricity", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "18767", "water_heater_jacket_rvalue": 0, "water_heater_location": "living space", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-ground-to-air-heat-pump-cooling-only.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-ground-to-air-heat-pump-cooling-only.osw new file mode 100644 index 00000000..35690393 --- /dev/null +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-ground-to-air-heat-pump-cooling-only.osw @@ -0,0 +1,336 @@ +{ + "measure_paths": [ + "../.." + ], + "steps": [ + { + "arguments": { + "air_leakage_house_pressure": 50, + "air_leakage_shielding_of_home": "auto", + "air_leakage_units": "ACH", + "air_leakage_value": 3, + "bathroom_fans_quantity": "0", + "ceiling_assembly_r": 39.3, + "ceiling_fan_cooling_setpoint_temp_offset": 0, + "ceiling_fan_efficiency": "auto", + "ceiling_fan_present": false, + "ceiling_fan_quantity": "auto", + "clothes_dryer_efficiency": "3.73", + "clothes_dryer_efficiency_type": "CombinedEnergyFactor", + "clothes_dryer_fuel_type": "electricity", + "clothes_dryer_location": "living space", + "clothes_dryer_usage_multiplier": 1.0, + "clothes_dryer_vented_flow_rate": "150.0", + "clothes_washer_capacity": "3.2", + "clothes_washer_efficiency": "1.21", + "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", + "clothes_washer_label_annual_gas_cost": "27.0", + "clothes_washer_label_electric_rate": "0.12", + "clothes_washer_label_gas_rate": "1.09", + "clothes_washer_label_usage": "6.0", + "clothes_washer_location": "living space", + "clothes_washer_rated_annual_kwh": "380.0", + "clothes_washer_usage_multiplier": 1.0, + "cooking_range_oven_fuel_type": "electricity", + "cooking_range_oven_is_convection": false, + "cooking_range_oven_is_induction": false, + "cooking_range_oven_location": "living space", + "cooking_range_oven_usage_multiplier": 1.0, + "cooling_system_cooling_capacity": "48000.0", + "cooling_system_cooling_compressor_type": "single stage", + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", + "cooling_system_cooling_sensible_heat_fraction": 0.73, + "cooling_system_fraction_cool_load_served": 1, + "cooling_system_is_ducted": false, + "cooling_system_type": "none", + "dehumidifier_capacity": 40, + "dehumidifier_efficiency": 1.8, + "dehumidifier_efficiency_type": "EnergyFactor", + "dehumidifier_fraction_dehumidification_load_served": 1, + "dehumidifier_rh_setpoint": 0.5, + "dehumidifier_type": "none", + "dhw_distribution_pipe_r": "0.0", + "dhw_distribution_recirc_branch_piping_length": "50", + "dhw_distribution_recirc_control_type": "no control", + "dhw_distribution_recirc_piping_length": "50", + "dhw_distribution_recirc_pump_power": "50", + "dhw_distribution_standard_piping_length": "50", + "dhw_distribution_system_type": "Standard", + "dishwasher_efficiency": "307", + "dishwasher_efficiency_type": "RatedAnnualkWh", + "dishwasher_label_annual_gas_cost": "22.32", + "dishwasher_label_electric_rate": "0.12", + "dishwasher_label_gas_rate": "1.09", + "dishwasher_label_usage": "4.0", + "dishwasher_location": "living space", + "dishwasher_place_setting_capacity": "12", + "dishwasher_usage_multiplier": 1.0, + "door_area": 80.0, + "door_rvalue": 4.4, + "ducts_number_of_return_registers": "2", + "ducts_return_insulation_r": 0.0, + "ducts_return_leakage_units": "CFM25", + "ducts_return_leakage_value": 25.0, + "ducts_return_location": "attic - unvented", + "ducts_return_surface_area": "50.0", + "ducts_supply_insulation_r": 4.0, + "ducts_supply_leakage_units": "CFM25", + "ducts_supply_leakage_value": 75.0, + "ducts_supply_location": "attic - unvented", + "ducts_supply_surface_area": "150.0", + "dwhr_efficiency": 0.55, + "dwhr_equal_flow": true, + "dwhr_facilities_connected": "none", + "extra_refrigerator_location": "none", + "extra_refrigerator_rated_annual_kwh": "auto", + "extra_refrigerator_usage_multiplier": 1.0, + "floor_assembly_r": 0, + "foundation_wall_insulation_distance_to_bottom": "auto", + "foundation_wall_insulation_distance_to_top": 0.0, + "foundation_wall_insulation_r": 8.9, + "foundation_wall_thickness": "8.0", + "freezer_location": "none", + "freezer_rated_annual_kwh": "auto", + "freezer_usage_multiplier": 1.0, + "fuel_loads_fireplace_annual_therm": "auto", + "fuel_loads_fireplace_frac_latent": "auto", + "fuel_loads_fireplace_frac_sensible": "auto", + "fuel_loads_fireplace_fuel_type": "natural gas", + "fuel_loads_fireplace_present": false, + "fuel_loads_fireplace_usage_multiplier": 0.0, + "fuel_loads_grill_annual_therm": "auto", + "fuel_loads_grill_fuel_type": "natural gas", + "fuel_loads_grill_present": false, + "fuel_loads_grill_usage_multiplier": 0.0, + "fuel_loads_lighting_annual_therm": "auto", + "fuel_loads_lighting_fuel_type": "natural gas", + "fuel_loads_lighting_present": false, + "fuel_loads_lighting_usage_multiplier": 0.0, + "geometry_aspect_ratio": 1.5, + "geometry_attic_type": "UnventedAttic", + "geometry_balcony_depth": 0.0, + "geometry_cfa": 2700.0, + "geometry_corridor_position": "Double-Loaded Interior", + "geometry_corridor_width": 10.0, + "geometry_eaves_depth": 0, + "geometry_foundation_height": 8.0, + "geometry_foundation_height_above_grade": 1.0, + "geometry_foundation_type": "ConditionedBasement", + "geometry_garage_depth": 20.0, + "geometry_garage_position": "Right", + "geometry_garage_protrusion": 0.0, + "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", + "geometry_inset_depth": 0.0, + "geometry_inset_position": "Right", + "geometry_inset_width": 0.0, + "geometry_num_bathrooms": "2", + "geometry_num_bedrooms": 3, + "geometry_num_floors_above_grade": 1, + "geometry_num_occupants": "3", + "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, + "geometry_roof_pitch": "6:12", + "geometry_roof_type": "gable", + "geometry_unit_type": "single-family detached", + "geometry_wall_height": 8.0, + "heat_pump_backup_fuel": "none", + "heat_pump_backup_heating_capacity": "34121.0", + "heat_pump_backup_heating_efficiency": 1, + "heat_pump_cooling_capacity": "48000.0", + "heat_pump_cooling_efficiency": 16.6, + "heat_pump_cooling_efficiency_type": "EER", + "heat_pump_cooling_sensible_heat_fraction": 0.73, + "heat_pump_fraction_cool_load_served": 1, + "heat_pump_fraction_heat_load_served": 0, + "heat_pump_heating_capacity": "0.0", + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 3.6, + "heat_pump_heating_efficiency_type": "COP", + "heat_pump_type": "ground-to-air", + "heating_system_fraction_heat_load_served": 1, + "heating_system_fraction_heat_load_served_2": 0.25, + "heating_system_fuel": "natural gas", + "heating_system_fuel_2": "electricity", + "heating_system_heating_capacity": "64000.0", + "heating_system_heating_capacity_2": "auto", + "heating_system_heating_efficiency": 0.92, + "heating_system_heating_efficiency_2": 1.0, + "heating_system_type": "none", + "heating_system_type_2": "none", + "holiday_lighting_daily_kwh": "auto", + "holiday_lighting_period_begin_day_of_month": "auto", + "holiday_lighting_period_begin_month": "auto", + "holiday_lighting_period_end_day_of_month": "auto", + "holiday_lighting_period_end_month": "auto", + "holiday_lighting_present": false, + "hot_tub_heater_annual_kwh": "auto", + "hot_tub_heater_annual_therm": "auto", + "hot_tub_heater_type": "electric resistance", + "hot_tub_heater_usage_multiplier": 1.0, + "hot_tub_present": false, + "hot_tub_pump_annual_kwh": "auto", + "hot_tub_pump_usage_multiplier": 1.0, + "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base-hvac-ground-to-air-heat-pump-cooling-only.xml", + "kitchen_fans_quantity": "0", + "lighting_fraction_cfl_exterior": 0.4, + "lighting_fraction_cfl_garage": 0.4, + "lighting_fraction_cfl_interior": 0.4, + "lighting_fraction_led_exterior": 0.25, + "lighting_fraction_led_garage": 0.25, + "lighting_fraction_led_interior": 0.25, + "lighting_fraction_lfl_exterior": 0.1, + "lighting_fraction_lfl_garage": 0.1, + "lighting_fraction_lfl_interior": 0.1, + "lighting_usage_multiplier_exterior": 1.0, + "lighting_usage_multiplier_garage": 1.0, + "lighting_usage_multiplier_interior": 1.0, + "mech_vent_fan_power": 30, + "mech_vent_fan_power_2": 30, + "mech_vent_fan_type": "none", + "mech_vent_fan_type_2": "none", + "mech_vent_flow_rate": 110, + "mech_vent_flow_rate_2": 110, + "mech_vent_hours_in_operation": 24, + "mech_vent_hours_in_operation_2": 24, + "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", + "mech_vent_sensible_recovery_efficiency": 0.72, + "mech_vent_sensible_recovery_efficiency_2": 0.72, + "mech_vent_total_recovery_efficiency": 0.48, + "mech_vent_total_recovery_efficiency_2": 0.48, + "neighbor_back_distance": 0, + "neighbor_back_height": "auto", + "neighbor_front_distance": 0, + "neighbor_front_height": "auto", + "neighbor_left_distance": 0, + "neighbor_left_height": "auto", + "neighbor_right_distance": 0, + "neighbor_right_height": "auto", + "overhangs_back_depth": 0, + "overhangs_back_distance_to_top_of_window": 0, + "overhangs_front_depth": 0, + "overhangs_front_distance_to_top_of_window": 0, + "overhangs_left_depth": 0, + "overhangs_left_distance_to_top_of_window": 0, + "overhangs_right_depth": 0, + "overhangs_right_distance_to_top_of_window": 0, + "plug_loads_other_annual_kwh": "2457.0", + "plug_loads_other_frac_latent": "0.045", + "plug_loads_other_frac_sensible": "0.855", + "plug_loads_other_usage_multiplier": 1.0, + "plug_loads_television_annual_kwh": "620.0", + "plug_loads_television_usage_multiplier": 1.0, + "plug_loads_vehicle_annual_kwh": "auto", + "plug_loads_vehicle_present": false, + "plug_loads_vehicle_usage_multiplier": 0.0, + "plug_loads_well_pump_annual_kwh": "auto", + "plug_loads_well_pump_present": false, + "plug_loads_well_pump_usage_multiplier": 0.0, + "pool_heater_annual_kwh": "auto", + "pool_heater_annual_therm": "auto", + "pool_heater_type": "electric resistance", + "pool_heater_usage_multiplier": 1.0, + "pool_present": false, + "pool_pump_annual_kwh": "auto", + "pool_pump_usage_multiplier": 1.0, + "pv_system_array_azimuth_1": 180, + "pv_system_array_azimuth_2": 180, + "pv_system_array_tilt_1": "20", + "pv_system_array_tilt_2": "20", + "pv_system_inverter_efficiency_1": 0.96, + "pv_system_inverter_efficiency_2": 0.96, + "pv_system_location_1": "auto", + "pv_system_location_2": "auto", + "pv_system_max_power_output_1": 4000, + "pv_system_max_power_output_2": 4000, + "pv_system_module_type_1": "none", + "pv_system_module_type_2": "none", + "pv_system_num_units_served_1": 1, + "pv_system_num_units_served_2": 1, + "pv_system_system_losses_fraction_1": 0.14, + "pv_system_system_losses_fraction_2": 0.14, + "pv_system_tracking_1": "auto", + "pv_system_tracking_2": "auto", + "refrigerator_location": "living space", + "refrigerator_rated_annual_kwh": "650.0", + "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, + "roof_assembly_r": 2.3, + "roof_color": "medium", + "roof_material_type": "asphalt or fiberglass shingles", + "roof_radiant_barrier": false, + "roof_radiant_barrier_grade": "1", + "schedules_type": "default", + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", + "simulation_control_timestep": "60", + "site_type": "suburban", + "skylight_area_back": 0, + "skylight_area_front": 0, + "skylight_area_left": 0, + "skylight_area_right": 0, + "skylight_shgc": 0.45, + "skylight_ufactor": 0.33, + "slab_carpet_fraction": "0.0", + "slab_carpet_r": "0.0", + "slab_perimeter_depth": 0, + "slab_perimeter_insulation_r": 0, + "slab_thickness": "4.0", + "slab_under_insulation_r": 0, + "slab_under_width": 0, + "solar_thermal_collector_area": 40.0, + "solar_thermal_collector_azimuth": 180, + "solar_thermal_collector_loop_type": "liquid direct", + "solar_thermal_collector_rated_optical_efficiency": 0.5, + "solar_thermal_collector_rated_thermal_losses": 0.2799, + "solar_thermal_collector_tilt": "20", + "solar_thermal_collector_type": "evacuated tube", + "solar_thermal_solar_fraction": 0, + "solar_thermal_storage_volume": "auto", + "solar_thermal_system_type": "none", + "wall_assembly_r": 23, + "wall_color": "medium", + "wall_siding_type": "wood siding", + "wall_type": "WoodStud", + "water_fixtures_shower_low_flow": true, + "water_fixtures_sink_low_flow": false, + "water_fixtures_usage_multiplier": 1.0, + "water_heater_efficiency": 0.95, + "water_heater_efficiency_type": "EnergyFactor", + "water_heater_fuel_type": "electricity", + "water_heater_jacket_rvalue": 0, + "water_heater_location": "living space", + "water_heater_num_units_served": 1, + "water_heater_recovery_efficiency": "0.76", + "water_heater_setpoint_temperature": "125", + "water_heater_standby_loss": 0, + "water_heater_tank_volume": "40", + "water_heater_type": "storage water heater", + "weather_station_epw_filepath": "USA_CO_Denver.Intl.AP.725650_TMY3.epw", + "whole_house_fan_flow_rate": 4500, + "whole_house_fan_power": 300, + "whole_house_fan_present": false, + "window_area_back": 108.0, + "window_area_front": 108.0, + "window_area_left": 72.0, + "window_area_right": 72.0, + "window_aspect_ratio": 1.333, + "window_back_wwr": 0, + "window_fraction_operable": 0.67, + "window_front_wwr": 0, + "window_interior_shading_summer": 0.7, + "window_interior_shading_winter": 0.85, + "window_left_wwr": 0, + "window_right_wwr": 0, + "window_shgc": 0.45, + "window_ufactor": 0.33 + }, + "measure_dir_name": "BuildResidentialHPXML" + } + ] +} \ No newline at end of file diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-ground-to-air-heat-pump-heating-only.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-ground-to-air-heat-pump-heating-only.osw new file mode 100644 index 00000000..1f52d368 --- /dev/null +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-ground-to-air-heat-pump-heating-only.osw @@ -0,0 +1,336 @@ +{ + "measure_paths": [ + "../.." + ], + "steps": [ + { + "arguments": { + "air_leakage_house_pressure": 50, + "air_leakage_shielding_of_home": "auto", + "air_leakage_units": "ACH", + "air_leakage_value": 3, + "bathroom_fans_quantity": "0", + "ceiling_assembly_r": 39.3, + "ceiling_fan_cooling_setpoint_temp_offset": 0, + "ceiling_fan_efficiency": "auto", + "ceiling_fan_present": false, + "ceiling_fan_quantity": "auto", + "clothes_dryer_efficiency": "3.73", + "clothes_dryer_efficiency_type": "CombinedEnergyFactor", + "clothes_dryer_fuel_type": "electricity", + "clothes_dryer_location": "living space", + "clothes_dryer_usage_multiplier": 1.0, + "clothes_dryer_vented_flow_rate": "150.0", + "clothes_washer_capacity": "3.2", + "clothes_washer_efficiency": "1.21", + "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", + "clothes_washer_label_annual_gas_cost": "27.0", + "clothes_washer_label_electric_rate": "0.12", + "clothes_washer_label_gas_rate": "1.09", + "clothes_washer_label_usage": "6.0", + "clothes_washer_location": "living space", + "clothes_washer_rated_annual_kwh": "380.0", + "clothes_washer_usage_multiplier": 1.0, + "cooking_range_oven_fuel_type": "electricity", + "cooking_range_oven_is_convection": false, + "cooking_range_oven_is_induction": false, + "cooking_range_oven_location": "living space", + "cooking_range_oven_usage_multiplier": 1.0, + "cooling_system_cooling_capacity": "48000.0", + "cooling_system_cooling_compressor_type": "single stage", + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", + "cooling_system_cooling_sensible_heat_fraction": 0.73, + "cooling_system_fraction_cool_load_served": 1, + "cooling_system_is_ducted": false, + "cooling_system_type": "none", + "dehumidifier_capacity": 40, + "dehumidifier_efficiency": 1.8, + "dehumidifier_efficiency_type": "EnergyFactor", + "dehumidifier_fraction_dehumidification_load_served": 1, + "dehumidifier_rh_setpoint": 0.5, + "dehumidifier_type": "none", + "dhw_distribution_pipe_r": "0.0", + "dhw_distribution_recirc_branch_piping_length": "50", + "dhw_distribution_recirc_control_type": "no control", + "dhw_distribution_recirc_piping_length": "50", + "dhw_distribution_recirc_pump_power": "50", + "dhw_distribution_standard_piping_length": "50", + "dhw_distribution_system_type": "Standard", + "dishwasher_efficiency": "307", + "dishwasher_efficiency_type": "RatedAnnualkWh", + "dishwasher_label_annual_gas_cost": "22.32", + "dishwasher_label_electric_rate": "0.12", + "dishwasher_label_gas_rate": "1.09", + "dishwasher_label_usage": "4.0", + "dishwasher_location": "living space", + "dishwasher_place_setting_capacity": "12", + "dishwasher_usage_multiplier": 1.0, + "door_area": 80.0, + "door_rvalue": 4.4, + "ducts_number_of_return_registers": "2", + "ducts_return_insulation_r": 0.0, + "ducts_return_leakage_units": "CFM25", + "ducts_return_leakage_value": 25.0, + "ducts_return_location": "attic - unvented", + "ducts_return_surface_area": "50.0", + "ducts_supply_insulation_r": 4.0, + "ducts_supply_leakage_units": "CFM25", + "ducts_supply_leakage_value": 75.0, + "ducts_supply_location": "attic - unvented", + "ducts_supply_surface_area": "150.0", + "dwhr_efficiency": 0.55, + "dwhr_equal_flow": true, + "dwhr_facilities_connected": "none", + "extra_refrigerator_location": "none", + "extra_refrigerator_rated_annual_kwh": "auto", + "extra_refrigerator_usage_multiplier": 1.0, + "floor_assembly_r": 0, + "foundation_wall_insulation_distance_to_bottom": "auto", + "foundation_wall_insulation_distance_to_top": 0.0, + "foundation_wall_insulation_r": 8.9, + "foundation_wall_thickness": "8.0", + "freezer_location": "none", + "freezer_rated_annual_kwh": "auto", + "freezer_usage_multiplier": 1.0, + "fuel_loads_fireplace_annual_therm": "auto", + "fuel_loads_fireplace_frac_latent": "auto", + "fuel_loads_fireplace_frac_sensible": "auto", + "fuel_loads_fireplace_fuel_type": "natural gas", + "fuel_loads_fireplace_present": false, + "fuel_loads_fireplace_usage_multiplier": 0.0, + "fuel_loads_grill_annual_therm": "auto", + "fuel_loads_grill_fuel_type": "natural gas", + "fuel_loads_grill_present": false, + "fuel_loads_grill_usage_multiplier": 0.0, + "fuel_loads_lighting_annual_therm": "auto", + "fuel_loads_lighting_fuel_type": "natural gas", + "fuel_loads_lighting_present": false, + "fuel_loads_lighting_usage_multiplier": 0.0, + "geometry_aspect_ratio": 1.5, + "geometry_attic_type": "UnventedAttic", + "geometry_balcony_depth": 0.0, + "geometry_cfa": 2700.0, + "geometry_corridor_position": "Double-Loaded Interior", + "geometry_corridor_width": 10.0, + "geometry_eaves_depth": 0, + "geometry_foundation_height": 8.0, + "geometry_foundation_height_above_grade": 1.0, + "geometry_foundation_type": "ConditionedBasement", + "geometry_garage_depth": 20.0, + "geometry_garage_position": "Right", + "geometry_garage_protrusion": 0.0, + "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", + "geometry_inset_depth": 0.0, + "geometry_inset_position": "Right", + "geometry_inset_width": 0.0, + "geometry_num_bathrooms": "2", + "geometry_num_bedrooms": 3, + "geometry_num_floors_above_grade": 1, + "geometry_num_occupants": "3", + "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, + "geometry_roof_pitch": "6:12", + "geometry_roof_type": "gable", + "geometry_unit_type": "single-family detached", + "geometry_wall_height": 8.0, + "heat_pump_backup_fuel": "electricity", + "heat_pump_backup_heating_capacity": "34121.0", + "heat_pump_backup_heating_efficiency": 1, + "heat_pump_cooling_capacity": "0.0", + "heat_pump_cooling_efficiency": 16.6, + "heat_pump_cooling_efficiency_type": "EER", + "heat_pump_cooling_sensible_heat_fraction": 0.73, + "heat_pump_fraction_cool_load_served": 0, + "heat_pump_fraction_heat_load_served": 1, + "heat_pump_heating_capacity": "42000.0", + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 3.6, + "heat_pump_heating_efficiency_type": "COP", + "heat_pump_type": "ground-to-air", + "heating_system_fraction_heat_load_served": 1, + "heating_system_fraction_heat_load_served_2": 0.25, + "heating_system_fuel": "natural gas", + "heating_system_fuel_2": "electricity", + "heating_system_heating_capacity": "64000.0", + "heating_system_heating_capacity_2": "auto", + "heating_system_heating_efficiency": 0.92, + "heating_system_heating_efficiency_2": 1.0, + "heating_system_type": "none", + "heating_system_type_2": "none", + "holiday_lighting_daily_kwh": "auto", + "holiday_lighting_period_begin_day_of_month": "auto", + "holiday_lighting_period_begin_month": "auto", + "holiday_lighting_period_end_day_of_month": "auto", + "holiday_lighting_period_end_month": "auto", + "holiday_lighting_present": false, + "hot_tub_heater_annual_kwh": "auto", + "hot_tub_heater_annual_therm": "auto", + "hot_tub_heater_type": "electric resistance", + "hot_tub_heater_usage_multiplier": 1.0, + "hot_tub_present": false, + "hot_tub_pump_annual_kwh": "auto", + "hot_tub_pump_usage_multiplier": 1.0, + "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base-hvac-ground-to-air-heat-pump-heating-only.xml", + "kitchen_fans_quantity": "0", + "lighting_fraction_cfl_exterior": 0.4, + "lighting_fraction_cfl_garage": 0.4, + "lighting_fraction_cfl_interior": 0.4, + "lighting_fraction_led_exterior": 0.25, + "lighting_fraction_led_garage": 0.25, + "lighting_fraction_led_interior": 0.25, + "lighting_fraction_lfl_exterior": 0.1, + "lighting_fraction_lfl_garage": 0.1, + "lighting_fraction_lfl_interior": 0.1, + "lighting_usage_multiplier_exterior": 1.0, + "lighting_usage_multiplier_garage": 1.0, + "lighting_usage_multiplier_interior": 1.0, + "mech_vent_fan_power": 30, + "mech_vent_fan_power_2": 30, + "mech_vent_fan_type": "none", + "mech_vent_fan_type_2": "none", + "mech_vent_flow_rate": 110, + "mech_vent_flow_rate_2": 110, + "mech_vent_hours_in_operation": 24, + "mech_vent_hours_in_operation_2": 24, + "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", + "mech_vent_sensible_recovery_efficiency": 0.72, + "mech_vent_sensible_recovery_efficiency_2": 0.72, + "mech_vent_total_recovery_efficiency": 0.48, + "mech_vent_total_recovery_efficiency_2": 0.48, + "neighbor_back_distance": 0, + "neighbor_back_height": "auto", + "neighbor_front_distance": 0, + "neighbor_front_height": "auto", + "neighbor_left_distance": 0, + "neighbor_left_height": "auto", + "neighbor_right_distance": 0, + "neighbor_right_height": "auto", + "overhangs_back_depth": 0, + "overhangs_back_distance_to_top_of_window": 0, + "overhangs_front_depth": 0, + "overhangs_front_distance_to_top_of_window": 0, + "overhangs_left_depth": 0, + "overhangs_left_distance_to_top_of_window": 0, + "overhangs_right_depth": 0, + "overhangs_right_distance_to_top_of_window": 0, + "plug_loads_other_annual_kwh": "2457.0", + "plug_loads_other_frac_latent": "0.045", + "plug_loads_other_frac_sensible": "0.855", + "plug_loads_other_usage_multiplier": 1.0, + "plug_loads_television_annual_kwh": "620.0", + "plug_loads_television_usage_multiplier": 1.0, + "plug_loads_vehicle_annual_kwh": "auto", + "plug_loads_vehicle_present": false, + "plug_loads_vehicle_usage_multiplier": 0.0, + "plug_loads_well_pump_annual_kwh": "auto", + "plug_loads_well_pump_present": false, + "plug_loads_well_pump_usage_multiplier": 0.0, + "pool_heater_annual_kwh": "auto", + "pool_heater_annual_therm": "auto", + "pool_heater_type": "electric resistance", + "pool_heater_usage_multiplier": 1.0, + "pool_present": false, + "pool_pump_annual_kwh": "auto", + "pool_pump_usage_multiplier": 1.0, + "pv_system_array_azimuth_1": 180, + "pv_system_array_azimuth_2": 180, + "pv_system_array_tilt_1": "20", + "pv_system_array_tilt_2": "20", + "pv_system_inverter_efficiency_1": 0.96, + "pv_system_inverter_efficiency_2": 0.96, + "pv_system_location_1": "auto", + "pv_system_location_2": "auto", + "pv_system_max_power_output_1": 4000, + "pv_system_max_power_output_2": 4000, + "pv_system_module_type_1": "none", + "pv_system_module_type_2": "none", + "pv_system_num_units_served_1": 1, + "pv_system_num_units_served_2": 1, + "pv_system_system_losses_fraction_1": 0.14, + "pv_system_system_losses_fraction_2": 0.14, + "pv_system_tracking_1": "auto", + "pv_system_tracking_2": "auto", + "refrigerator_location": "living space", + "refrigerator_rated_annual_kwh": "650.0", + "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, + "roof_assembly_r": 2.3, + "roof_color": "medium", + "roof_material_type": "asphalt or fiberglass shingles", + "roof_radiant_barrier": false, + "roof_radiant_barrier_grade": "1", + "schedules_type": "default", + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", + "simulation_control_timestep": "60", + "site_type": "suburban", + "skylight_area_back": 0, + "skylight_area_front": 0, + "skylight_area_left": 0, + "skylight_area_right": 0, + "skylight_shgc": 0.45, + "skylight_ufactor": 0.33, + "slab_carpet_fraction": "0.0", + "slab_carpet_r": "0.0", + "slab_perimeter_depth": 0, + "slab_perimeter_insulation_r": 0, + "slab_thickness": "4.0", + "slab_under_insulation_r": 0, + "slab_under_width": 0, + "solar_thermal_collector_area": 40.0, + "solar_thermal_collector_azimuth": 180, + "solar_thermal_collector_loop_type": "liquid direct", + "solar_thermal_collector_rated_optical_efficiency": 0.5, + "solar_thermal_collector_rated_thermal_losses": 0.2799, + "solar_thermal_collector_tilt": "20", + "solar_thermal_collector_type": "evacuated tube", + "solar_thermal_solar_fraction": 0, + "solar_thermal_storage_volume": "auto", + "solar_thermal_system_type": "none", + "wall_assembly_r": 23, + "wall_color": "medium", + "wall_siding_type": "wood siding", + "wall_type": "WoodStud", + "water_fixtures_shower_low_flow": true, + "water_fixtures_sink_low_flow": false, + "water_fixtures_usage_multiplier": 1.0, + "water_heater_efficiency": 0.95, + "water_heater_efficiency_type": "EnergyFactor", + "water_heater_fuel_type": "electricity", + "water_heater_jacket_rvalue": 0, + "water_heater_location": "living space", + "water_heater_num_units_served": 1, + "water_heater_recovery_efficiency": "0.76", + "water_heater_setpoint_temperature": "125", + "water_heater_standby_loss": 0, + "water_heater_tank_volume": "40", + "water_heater_type": "storage water heater", + "weather_station_epw_filepath": "USA_CO_Denver.Intl.AP.725650_TMY3.epw", + "whole_house_fan_flow_rate": 4500, + "whole_house_fan_power": 300, + "whole_house_fan_present": false, + "window_area_back": 108.0, + "window_area_front": 108.0, + "window_area_left": 72.0, + "window_area_right": 72.0, + "window_aspect_ratio": 1.333, + "window_back_wwr": 0, + "window_fraction_operable": 0.67, + "window_front_wwr": 0, + "window_interior_shading_summer": 0.7, + "window_interior_shading_winter": 0.85, + "window_left_wwr": 0, + "window_right_wwr": 0, + "window_shgc": 0.45, + "window_ufactor": 0.33 + }, + "measure_dir_name": "BuildResidentialHPXML" + } + ] +} \ No newline at end of file diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-ground-to-air-heat-pump.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-ground-to-air-heat-pump.osw index a816e675..f7c47cb9 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-ground-to-air-heat-pump.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-ground-to-air-heat-pump.osw @@ -6,58 +6,50 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", "cooling_system_cooling_compressor_type": "single stage", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.73, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "none", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -65,8 +57,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -74,11 +65,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "2", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 25.0, @@ -92,17 +82,15 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -133,6 +121,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, @@ -141,6 +130,7 @@ "geometry_num_floors_above_grade": 1, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family detached", @@ -149,24 +139,20 @@ "heat_pump_backup_heating_capacity": "34121.0", "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 16.6, + "heat_pump_cooling_efficiency_type": "EER", "heat_pump_cooling_sensible_heat_fraction": 0.73, - "heat_pump_fan_power_watts_per_cfm": 0.45, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "42000.0", - "heat_pump_heating_capacity_17F": "auto", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, - "heat_pump_pump_power_watts_per_ton": 30.0, + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 3.6, + "heat_pump_heating_efficiency_type": "COP", "heat_pump_type": "ground-to-air", "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "natural gas", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.92, @@ -187,7 +173,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base-hvac-ground-to-air-heat-pump.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -209,14 +195,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -237,18 +221,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -275,21 +255,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -316,10 +294,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "none", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -327,8 +303,6 @@ "water_heater_efficiency": 0.95, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "electricity", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "18767", "water_heater_jacket_rvalue": 0, "water_heater_location": "living space", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-plug-loads-additional-multipliers.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-install-quality-airflow-defect-furnace-gas-central-ac-1-speed.osw similarity index 83% rename from example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-plug-loads-additional-multipliers.osw rename to example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-install-quality-airflow-defect-furnace-gas-central-ac-1-speed.osw index bf98d1b3..1785487c 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-plug-loads-additional-multipliers.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-install-quality-airflow-defect-furnace-gas-central-ac-1-speed.osw @@ -6,58 +6,51 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, + "cooling_system_airflow_defect_ratio": -0.25, "cooling_system_cooling_capacity": "48000.0", "cooling_system_cooling_compressor_type": "single stage", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.73, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "central air conditioner", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -65,8 +58,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -74,11 +66,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "2", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 25.0, @@ -92,17 +83,15 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -133,6 +122,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, @@ -141,6 +131,7 @@ "geometry_num_floors_above_grade": 1, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family detached", @@ -150,22 +141,21 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "64000.0", - "heat_pump_heating_capacity_17F": "auto", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "none", + "heating_system_airflow_defect_ratio": -0.25, "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "natural gas", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.92, @@ -185,8 +175,8 @@ "hot_tub_present": false, "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, - "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/extra-plug-loads-additional-multipliers.xml", - "kitchen_fans_present": false, + "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base-hvac-install-quality-airflow-defect-furnace-gas-central-ac-1-speed.xml", + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -208,14 +198,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -236,18 +224,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.5, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.5, "plug_loads_vehicle_annual_kwh": "auto", - "plug_loads_vehicle_present": true, + "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 1.5, "plug_loads_well_pump_annual_kwh": "auto", - "plug_loads_well_pump_present": true, + "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 1.5, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -274,21 +258,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -315,10 +297,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "none", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -326,8 +306,6 @@ "water_heater_efficiency": 0.95, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "electricity", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "18767", "water_heater_jacket_rvalue": 0, "water_heater_location": "living space", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-install-quality-all-air-to-air-heat-pump-1-speed.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-install-quality-all-air-to-air-heat-pump-1-speed.osw new file mode 100644 index 00000000..a4f3cfd1 --- /dev/null +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-install-quality-all-air-to-air-heat-pump-1-speed.osw @@ -0,0 +1,339 @@ +{ + "measure_paths": [ + "../.." + ], + "steps": [ + { + "arguments": { + "air_leakage_house_pressure": 50, + "air_leakage_shielding_of_home": "auto", + "air_leakage_units": "ACH", + "air_leakage_value": 3, + "bathroom_fans_quantity": "0", + "ceiling_assembly_r": 39.3, + "ceiling_fan_cooling_setpoint_temp_offset": 0, + "ceiling_fan_efficiency": "auto", + "ceiling_fan_present": false, + "ceiling_fan_quantity": "auto", + "clothes_dryer_efficiency": "3.73", + "clothes_dryer_efficiency_type": "CombinedEnergyFactor", + "clothes_dryer_fuel_type": "electricity", + "clothes_dryer_location": "living space", + "clothes_dryer_usage_multiplier": 1.0, + "clothes_dryer_vented_flow_rate": "150.0", + "clothes_washer_capacity": "3.2", + "clothes_washer_efficiency": "1.21", + "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", + "clothes_washer_label_annual_gas_cost": "27.0", + "clothes_washer_label_electric_rate": "0.12", + "clothes_washer_label_gas_rate": "1.09", + "clothes_washer_label_usage": "6.0", + "clothes_washer_location": "living space", + "clothes_washer_rated_annual_kwh": "380.0", + "clothes_washer_usage_multiplier": 1.0, + "cooking_range_oven_fuel_type": "electricity", + "cooking_range_oven_is_convection": false, + "cooking_range_oven_is_induction": false, + "cooking_range_oven_location": "living space", + "cooking_range_oven_usage_multiplier": 1.0, + "cooling_system_cooling_capacity": "48000.0", + "cooling_system_cooling_compressor_type": "single stage", + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", + "cooling_system_cooling_sensible_heat_fraction": 0.73, + "cooling_system_fraction_cool_load_served": 1, + "cooling_system_is_ducted": false, + "cooling_system_type": "none", + "dehumidifier_capacity": 40, + "dehumidifier_efficiency": 1.8, + "dehumidifier_efficiency_type": "EnergyFactor", + "dehumidifier_fraction_dehumidification_load_served": 1, + "dehumidifier_rh_setpoint": 0.5, + "dehumidifier_type": "none", + "dhw_distribution_pipe_r": "0.0", + "dhw_distribution_recirc_branch_piping_length": "50", + "dhw_distribution_recirc_control_type": "no control", + "dhw_distribution_recirc_piping_length": "50", + "dhw_distribution_recirc_pump_power": "50", + "dhw_distribution_standard_piping_length": "50", + "dhw_distribution_system_type": "Standard", + "dishwasher_efficiency": "307", + "dishwasher_efficiency_type": "RatedAnnualkWh", + "dishwasher_label_annual_gas_cost": "22.32", + "dishwasher_label_electric_rate": "0.12", + "dishwasher_label_gas_rate": "1.09", + "dishwasher_label_usage": "4.0", + "dishwasher_location": "living space", + "dishwasher_place_setting_capacity": "12", + "dishwasher_usage_multiplier": 1.0, + "door_area": 80.0, + "door_rvalue": 4.4, + "ducts_number_of_return_registers": "2", + "ducts_return_insulation_r": 0.0, + "ducts_return_leakage_units": "CFM25", + "ducts_return_leakage_value": 25.0, + "ducts_return_location": "attic - unvented", + "ducts_return_surface_area": "50.0", + "ducts_supply_insulation_r": 4.0, + "ducts_supply_leakage_units": "CFM25", + "ducts_supply_leakage_value": 75.0, + "ducts_supply_location": "attic - unvented", + "ducts_supply_surface_area": "150.0", + "dwhr_efficiency": 0.55, + "dwhr_equal_flow": true, + "dwhr_facilities_connected": "none", + "extra_refrigerator_location": "none", + "extra_refrigerator_rated_annual_kwh": "auto", + "extra_refrigerator_usage_multiplier": 1.0, + "floor_assembly_r": 0, + "foundation_wall_insulation_distance_to_bottom": "auto", + "foundation_wall_insulation_distance_to_top": 0.0, + "foundation_wall_insulation_r": 8.9, + "foundation_wall_thickness": "8.0", + "freezer_location": "none", + "freezer_rated_annual_kwh": "auto", + "freezer_usage_multiplier": 1.0, + "fuel_loads_fireplace_annual_therm": "auto", + "fuel_loads_fireplace_frac_latent": "auto", + "fuel_loads_fireplace_frac_sensible": "auto", + "fuel_loads_fireplace_fuel_type": "natural gas", + "fuel_loads_fireplace_present": false, + "fuel_loads_fireplace_usage_multiplier": 0.0, + "fuel_loads_grill_annual_therm": "auto", + "fuel_loads_grill_fuel_type": "natural gas", + "fuel_loads_grill_present": false, + "fuel_loads_grill_usage_multiplier": 0.0, + "fuel_loads_lighting_annual_therm": "auto", + "fuel_loads_lighting_fuel_type": "natural gas", + "fuel_loads_lighting_present": false, + "fuel_loads_lighting_usage_multiplier": 0.0, + "geometry_aspect_ratio": 1.5, + "geometry_attic_type": "UnventedAttic", + "geometry_balcony_depth": 0.0, + "geometry_cfa": 2700.0, + "geometry_corridor_position": "Double-Loaded Interior", + "geometry_corridor_width": 10.0, + "geometry_eaves_depth": 0, + "geometry_foundation_height": 8.0, + "geometry_foundation_height_above_grade": 1.0, + "geometry_foundation_type": "ConditionedBasement", + "geometry_garage_depth": 20.0, + "geometry_garage_position": "Right", + "geometry_garage_protrusion": 0.0, + "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", + "geometry_inset_depth": 0.0, + "geometry_inset_position": "Right", + "geometry_inset_width": 0.0, + "geometry_num_bathrooms": "2", + "geometry_num_bedrooms": 3, + "geometry_num_floors_above_grade": 1, + "geometry_num_occupants": "3", + "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, + "geometry_roof_pitch": "6:12", + "geometry_roof_type": "gable", + "geometry_unit_type": "single-family detached", + "geometry_wall_height": 8.0, + "heat_pump_airflow_defect_ratio": -0.25, + "heat_pump_backup_fuel": "electricity", + "heat_pump_backup_heating_capacity": "34121.0", + "heat_pump_backup_heating_efficiency": 1, + "heat_pump_charge_defect_ratio": -0.25, + "heat_pump_cooling_capacity": "48000.0", + "heat_pump_cooling_compressor_type": "single stage", + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", + "heat_pump_cooling_sensible_heat_fraction": 0.73, + "heat_pump_fraction_cool_load_served": 1, + "heat_pump_fraction_heat_load_served": 1, + "heat_pump_heating_capacity": "42000.0", + "heat_pump_heating_capacity_17_f": "26460.0", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", + "heat_pump_type": "air-to-air", + "heating_system_fraction_heat_load_served": 1, + "heating_system_fraction_heat_load_served_2": 0.25, + "heating_system_fuel": "natural gas", + "heating_system_fuel_2": "electricity", + "heating_system_heating_capacity": "64000.0", + "heating_system_heating_capacity_2": "auto", + "heating_system_heating_efficiency": 0.92, + "heating_system_heating_efficiency_2": 1.0, + "heating_system_type": "none", + "heating_system_type_2": "none", + "holiday_lighting_daily_kwh": "auto", + "holiday_lighting_period_begin_day_of_month": "auto", + "holiday_lighting_period_begin_month": "auto", + "holiday_lighting_period_end_day_of_month": "auto", + "holiday_lighting_period_end_month": "auto", + "holiday_lighting_present": false, + "hot_tub_heater_annual_kwh": "auto", + "hot_tub_heater_annual_therm": "auto", + "hot_tub_heater_type": "electric resistance", + "hot_tub_heater_usage_multiplier": 1.0, + "hot_tub_present": false, + "hot_tub_pump_annual_kwh": "auto", + "hot_tub_pump_usage_multiplier": 1.0, + "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base-hvac-install-quality-all-air-to-air-heat-pump-1-speed.xml", + "kitchen_fans_quantity": "0", + "lighting_fraction_cfl_exterior": 0.4, + "lighting_fraction_cfl_garage": 0.4, + "lighting_fraction_cfl_interior": 0.4, + "lighting_fraction_led_exterior": 0.25, + "lighting_fraction_led_garage": 0.25, + "lighting_fraction_led_interior": 0.25, + "lighting_fraction_lfl_exterior": 0.1, + "lighting_fraction_lfl_garage": 0.1, + "lighting_fraction_lfl_interior": 0.1, + "lighting_usage_multiplier_exterior": 1.0, + "lighting_usage_multiplier_garage": 1.0, + "lighting_usage_multiplier_interior": 1.0, + "mech_vent_fan_power": 30, + "mech_vent_fan_power_2": 30, + "mech_vent_fan_type": "none", + "mech_vent_fan_type_2": "none", + "mech_vent_flow_rate": 110, + "mech_vent_flow_rate_2": 110, + "mech_vent_hours_in_operation": 24, + "mech_vent_hours_in_operation_2": 24, + "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", + "mech_vent_sensible_recovery_efficiency": 0.72, + "mech_vent_sensible_recovery_efficiency_2": 0.72, + "mech_vent_total_recovery_efficiency": 0.48, + "mech_vent_total_recovery_efficiency_2": 0.48, + "neighbor_back_distance": 0, + "neighbor_back_height": "auto", + "neighbor_front_distance": 0, + "neighbor_front_height": "auto", + "neighbor_left_distance": 0, + "neighbor_left_height": "auto", + "neighbor_right_distance": 0, + "neighbor_right_height": "auto", + "overhangs_back_depth": 0, + "overhangs_back_distance_to_top_of_window": 0, + "overhangs_front_depth": 0, + "overhangs_front_distance_to_top_of_window": 0, + "overhangs_left_depth": 0, + "overhangs_left_distance_to_top_of_window": 0, + "overhangs_right_depth": 0, + "overhangs_right_distance_to_top_of_window": 0, + "plug_loads_other_annual_kwh": "2457.0", + "plug_loads_other_frac_latent": "0.045", + "plug_loads_other_frac_sensible": "0.855", + "plug_loads_other_usage_multiplier": 1.0, + "plug_loads_television_annual_kwh": "620.0", + "plug_loads_television_usage_multiplier": 1.0, + "plug_loads_vehicle_annual_kwh": "auto", + "plug_loads_vehicle_present": false, + "plug_loads_vehicle_usage_multiplier": 0.0, + "plug_loads_well_pump_annual_kwh": "auto", + "plug_loads_well_pump_present": false, + "plug_loads_well_pump_usage_multiplier": 0.0, + "pool_heater_annual_kwh": "auto", + "pool_heater_annual_therm": "auto", + "pool_heater_type": "electric resistance", + "pool_heater_usage_multiplier": 1.0, + "pool_present": false, + "pool_pump_annual_kwh": "auto", + "pool_pump_usage_multiplier": 1.0, + "pv_system_array_azimuth_1": 180, + "pv_system_array_azimuth_2": 180, + "pv_system_array_tilt_1": "20", + "pv_system_array_tilt_2": "20", + "pv_system_inverter_efficiency_1": 0.96, + "pv_system_inverter_efficiency_2": 0.96, + "pv_system_location_1": "auto", + "pv_system_location_2": "auto", + "pv_system_max_power_output_1": 4000, + "pv_system_max_power_output_2": 4000, + "pv_system_module_type_1": "none", + "pv_system_module_type_2": "none", + "pv_system_num_units_served_1": 1, + "pv_system_num_units_served_2": 1, + "pv_system_system_losses_fraction_1": 0.14, + "pv_system_system_losses_fraction_2": 0.14, + "pv_system_tracking_1": "auto", + "pv_system_tracking_2": "auto", + "refrigerator_location": "living space", + "refrigerator_rated_annual_kwh": "650.0", + "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, + "roof_assembly_r": 2.3, + "roof_color": "medium", + "roof_material_type": "asphalt or fiberglass shingles", + "roof_radiant_barrier": false, + "roof_radiant_barrier_grade": "1", + "schedules_type": "default", + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", + "simulation_control_timestep": "60", + "site_type": "suburban", + "skylight_area_back": 0, + "skylight_area_front": 0, + "skylight_area_left": 0, + "skylight_area_right": 0, + "skylight_shgc": 0.45, + "skylight_ufactor": 0.33, + "slab_carpet_fraction": "0.0", + "slab_carpet_r": "0.0", + "slab_perimeter_depth": 0, + "slab_perimeter_insulation_r": 0, + "slab_thickness": "4.0", + "slab_under_insulation_r": 0, + "slab_under_width": 0, + "solar_thermal_collector_area": 40.0, + "solar_thermal_collector_azimuth": 180, + "solar_thermal_collector_loop_type": "liquid direct", + "solar_thermal_collector_rated_optical_efficiency": 0.5, + "solar_thermal_collector_rated_thermal_losses": 0.2799, + "solar_thermal_collector_tilt": "20", + "solar_thermal_collector_type": "evacuated tube", + "solar_thermal_solar_fraction": 0, + "solar_thermal_storage_volume": "auto", + "solar_thermal_system_type": "none", + "wall_assembly_r": 23, + "wall_color": "medium", + "wall_siding_type": "wood siding", + "wall_type": "WoodStud", + "water_fixtures_shower_low_flow": true, + "water_fixtures_sink_low_flow": false, + "water_fixtures_usage_multiplier": 1.0, + "water_heater_efficiency": 0.95, + "water_heater_efficiency_type": "EnergyFactor", + "water_heater_fuel_type": "electricity", + "water_heater_jacket_rvalue": 0, + "water_heater_location": "living space", + "water_heater_num_units_served": 1, + "water_heater_recovery_efficiency": "0.76", + "water_heater_setpoint_temperature": "125", + "water_heater_standby_loss": 0, + "water_heater_tank_volume": "40", + "water_heater_type": "storage water heater", + "weather_station_epw_filepath": "USA_CO_Denver.Intl.AP.725650_TMY3.epw", + "whole_house_fan_flow_rate": 4500, + "whole_house_fan_power": 300, + "whole_house_fan_present": false, + "window_area_back": 108.0, + "window_area_front": 108.0, + "window_area_left": 72.0, + "window_area_right": 72.0, + "window_aspect_ratio": 1.333, + "window_back_wwr": 0, + "window_fraction_operable": 0.67, + "window_front_wwr": 0, + "window_interior_shading_summer": 0.7, + "window_interior_shading_winter": 0.85, + "window_left_wwr": 0, + "window_right_wwr": 0, + "window_shgc": 0.45, + "window_ufactor": 0.33 + }, + "measure_dir_name": "BuildResidentialHPXML" + } + ] +} \ No newline at end of file diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-install-quality-all-air-to-air-heat-pump-2-speed.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-install-quality-all-air-to-air-heat-pump-2-speed.osw new file mode 100644 index 00000000..1a65b229 --- /dev/null +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-install-quality-all-air-to-air-heat-pump-2-speed.osw @@ -0,0 +1,339 @@ +{ + "measure_paths": [ + "../.." + ], + "steps": [ + { + "arguments": { + "air_leakage_house_pressure": 50, + "air_leakage_shielding_of_home": "auto", + "air_leakage_units": "ACH", + "air_leakage_value": 3, + "bathroom_fans_quantity": "0", + "ceiling_assembly_r": 39.3, + "ceiling_fan_cooling_setpoint_temp_offset": 0, + "ceiling_fan_efficiency": "auto", + "ceiling_fan_present": false, + "ceiling_fan_quantity": "auto", + "clothes_dryer_efficiency": "3.73", + "clothes_dryer_efficiency_type": "CombinedEnergyFactor", + "clothes_dryer_fuel_type": "electricity", + "clothes_dryer_location": "living space", + "clothes_dryer_usage_multiplier": 1.0, + "clothes_dryer_vented_flow_rate": "150.0", + "clothes_washer_capacity": "3.2", + "clothes_washer_efficiency": "1.21", + "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", + "clothes_washer_label_annual_gas_cost": "27.0", + "clothes_washer_label_electric_rate": "0.12", + "clothes_washer_label_gas_rate": "1.09", + "clothes_washer_label_usage": "6.0", + "clothes_washer_location": "living space", + "clothes_washer_rated_annual_kwh": "380.0", + "clothes_washer_usage_multiplier": 1.0, + "cooking_range_oven_fuel_type": "electricity", + "cooking_range_oven_is_convection": false, + "cooking_range_oven_is_induction": false, + "cooking_range_oven_location": "living space", + "cooking_range_oven_usage_multiplier": 1.0, + "cooling_system_cooling_capacity": "48000.0", + "cooling_system_cooling_compressor_type": "single stage", + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", + "cooling_system_cooling_sensible_heat_fraction": 0.73, + "cooling_system_fraction_cool_load_served": 1, + "cooling_system_is_ducted": false, + "cooling_system_type": "none", + "dehumidifier_capacity": 40, + "dehumidifier_efficiency": 1.8, + "dehumidifier_efficiency_type": "EnergyFactor", + "dehumidifier_fraction_dehumidification_load_served": 1, + "dehumidifier_rh_setpoint": 0.5, + "dehumidifier_type": "none", + "dhw_distribution_pipe_r": "0.0", + "dhw_distribution_recirc_branch_piping_length": "50", + "dhw_distribution_recirc_control_type": "no control", + "dhw_distribution_recirc_piping_length": "50", + "dhw_distribution_recirc_pump_power": "50", + "dhw_distribution_standard_piping_length": "50", + "dhw_distribution_system_type": "Standard", + "dishwasher_efficiency": "307", + "dishwasher_efficiency_type": "RatedAnnualkWh", + "dishwasher_label_annual_gas_cost": "22.32", + "dishwasher_label_electric_rate": "0.12", + "dishwasher_label_gas_rate": "1.09", + "dishwasher_label_usage": "4.0", + "dishwasher_location": "living space", + "dishwasher_place_setting_capacity": "12", + "dishwasher_usage_multiplier": 1.0, + "door_area": 80.0, + "door_rvalue": 4.4, + "ducts_number_of_return_registers": "2", + "ducts_return_insulation_r": 0.0, + "ducts_return_leakage_units": "CFM25", + "ducts_return_leakage_value": 25.0, + "ducts_return_location": "attic - unvented", + "ducts_return_surface_area": "50.0", + "ducts_supply_insulation_r": 4.0, + "ducts_supply_leakage_units": "CFM25", + "ducts_supply_leakage_value": 75.0, + "ducts_supply_location": "attic - unvented", + "ducts_supply_surface_area": "150.0", + "dwhr_efficiency": 0.55, + "dwhr_equal_flow": true, + "dwhr_facilities_connected": "none", + "extra_refrigerator_location": "none", + "extra_refrigerator_rated_annual_kwh": "auto", + "extra_refrigerator_usage_multiplier": 1.0, + "floor_assembly_r": 0, + "foundation_wall_insulation_distance_to_bottom": "auto", + "foundation_wall_insulation_distance_to_top": 0.0, + "foundation_wall_insulation_r": 8.9, + "foundation_wall_thickness": "8.0", + "freezer_location": "none", + "freezer_rated_annual_kwh": "auto", + "freezer_usage_multiplier": 1.0, + "fuel_loads_fireplace_annual_therm": "auto", + "fuel_loads_fireplace_frac_latent": "auto", + "fuel_loads_fireplace_frac_sensible": "auto", + "fuel_loads_fireplace_fuel_type": "natural gas", + "fuel_loads_fireplace_present": false, + "fuel_loads_fireplace_usage_multiplier": 0.0, + "fuel_loads_grill_annual_therm": "auto", + "fuel_loads_grill_fuel_type": "natural gas", + "fuel_loads_grill_present": false, + "fuel_loads_grill_usage_multiplier": 0.0, + "fuel_loads_lighting_annual_therm": "auto", + "fuel_loads_lighting_fuel_type": "natural gas", + "fuel_loads_lighting_present": false, + "fuel_loads_lighting_usage_multiplier": 0.0, + "geometry_aspect_ratio": 1.5, + "geometry_attic_type": "UnventedAttic", + "geometry_balcony_depth": 0.0, + "geometry_cfa": 2700.0, + "geometry_corridor_position": "Double-Loaded Interior", + "geometry_corridor_width": 10.0, + "geometry_eaves_depth": 0, + "geometry_foundation_height": 8.0, + "geometry_foundation_height_above_grade": 1.0, + "geometry_foundation_type": "ConditionedBasement", + "geometry_garage_depth": 20.0, + "geometry_garage_position": "Right", + "geometry_garage_protrusion": 0.0, + "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", + "geometry_inset_depth": 0.0, + "geometry_inset_position": "Right", + "geometry_inset_width": 0.0, + "geometry_num_bathrooms": "2", + "geometry_num_bedrooms": 3, + "geometry_num_floors_above_grade": 1, + "geometry_num_occupants": "3", + "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, + "geometry_roof_pitch": "6:12", + "geometry_roof_type": "gable", + "geometry_unit_type": "single-family detached", + "geometry_wall_height": 8.0, + "heat_pump_airflow_defect_ratio": -0.25, + "heat_pump_backup_fuel": "electricity", + "heat_pump_backup_heating_capacity": "34121.0", + "heat_pump_backup_heating_efficiency": 1, + "heat_pump_charge_defect_ratio": -0.25, + "heat_pump_cooling_capacity": "48000.0", + "heat_pump_cooling_compressor_type": "two stage", + "heat_pump_cooling_efficiency": 18.0, + "heat_pump_cooling_efficiency_type": "SEER", + "heat_pump_cooling_sensible_heat_fraction": 0.73, + "heat_pump_fraction_cool_load_served": 1, + "heat_pump_fraction_heat_load_served": 1, + "heat_pump_heating_capacity": "42000.0", + "heat_pump_heating_capacity_17_f": "24780.0", + "heat_pump_heating_efficiency": 9.3, + "heat_pump_heating_efficiency_type": "HSPF", + "heat_pump_type": "air-to-air", + "heating_system_fraction_heat_load_served": 1, + "heating_system_fraction_heat_load_served_2": 0.25, + "heating_system_fuel": "natural gas", + "heating_system_fuel_2": "electricity", + "heating_system_heating_capacity": "64000.0", + "heating_system_heating_capacity_2": "auto", + "heating_system_heating_efficiency": 0.92, + "heating_system_heating_efficiency_2": 1.0, + "heating_system_type": "none", + "heating_system_type_2": "none", + "holiday_lighting_daily_kwh": "auto", + "holiday_lighting_period_begin_day_of_month": "auto", + "holiday_lighting_period_begin_month": "auto", + "holiday_lighting_period_end_day_of_month": "auto", + "holiday_lighting_period_end_month": "auto", + "holiday_lighting_present": false, + "hot_tub_heater_annual_kwh": "auto", + "hot_tub_heater_annual_therm": "auto", + "hot_tub_heater_type": "electric resistance", + "hot_tub_heater_usage_multiplier": 1.0, + "hot_tub_present": false, + "hot_tub_pump_annual_kwh": "auto", + "hot_tub_pump_usage_multiplier": 1.0, + "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base-hvac-install-quality-all-air-to-air-heat-pump-2-speed.xml", + "kitchen_fans_quantity": "0", + "lighting_fraction_cfl_exterior": 0.4, + "lighting_fraction_cfl_garage": 0.4, + "lighting_fraction_cfl_interior": 0.4, + "lighting_fraction_led_exterior": 0.25, + "lighting_fraction_led_garage": 0.25, + "lighting_fraction_led_interior": 0.25, + "lighting_fraction_lfl_exterior": 0.1, + "lighting_fraction_lfl_garage": 0.1, + "lighting_fraction_lfl_interior": 0.1, + "lighting_usage_multiplier_exterior": 1.0, + "lighting_usage_multiplier_garage": 1.0, + "lighting_usage_multiplier_interior": 1.0, + "mech_vent_fan_power": 30, + "mech_vent_fan_power_2": 30, + "mech_vent_fan_type": "none", + "mech_vent_fan_type_2": "none", + "mech_vent_flow_rate": 110, + "mech_vent_flow_rate_2": 110, + "mech_vent_hours_in_operation": 24, + "mech_vent_hours_in_operation_2": 24, + "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", + "mech_vent_sensible_recovery_efficiency": 0.72, + "mech_vent_sensible_recovery_efficiency_2": 0.72, + "mech_vent_total_recovery_efficiency": 0.48, + "mech_vent_total_recovery_efficiency_2": 0.48, + "neighbor_back_distance": 0, + "neighbor_back_height": "auto", + "neighbor_front_distance": 0, + "neighbor_front_height": "auto", + "neighbor_left_distance": 0, + "neighbor_left_height": "auto", + "neighbor_right_distance": 0, + "neighbor_right_height": "auto", + "overhangs_back_depth": 0, + "overhangs_back_distance_to_top_of_window": 0, + "overhangs_front_depth": 0, + "overhangs_front_distance_to_top_of_window": 0, + "overhangs_left_depth": 0, + "overhangs_left_distance_to_top_of_window": 0, + "overhangs_right_depth": 0, + "overhangs_right_distance_to_top_of_window": 0, + "plug_loads_other_annual_kwh": "2457.0", + "plug_loads_other_frac_latent": "0.045", + "plug_loads_other_frac_sensible": "0.855", + "plug_loads_other_usage_multiplier": 1.0, + "plug_loads_television_annual_kwh": "620.0", + "plug_loads_television_usage_multiplier": 1.0, + "plug_loads_vehicle_annual_kwh": "auto", + "plug_loads_vehicle_present": false, + "plug_loads_vehicle_usage_multiplier": 0.0, + "plug_loads_well_pump_annual_kwh": "auto", + "plug_loads_well_pump_present": false, + "plug_loads_well_pump_usage_multiplier": 0.0, + "pool_heater_annual_kwh": "auto", + "pool_heater_annual_therm": "auto", + "pool_heater_type": "electric resistance", + "pool_heater_usage_multiplier": 1.0, + "pool_present": false, + "pool_pump_annual_kwh": "auto", + "pool_pump_usage_multiplier": 1.0, + "pv_system_array_azimuth_1": 180, + "pv_system_array_azimuth_2": 180, + "pv_system_array_tilt_1": "20", + "pv_system_array_tilt_2": "20", + "pv_system_inverter_efficiency_1": 0.96, + "pv_system_inverter_efficiency_2": 0.96, + "pv_system_location_1": "auto", + "pv_system_location_2": "auto", + "pv_system_max_power_output_1": 4000, + "pv_system_max_power_output_2": 4000, + "pv_system_module_type_1": "none", + "pv_system_module_type_2": "none", + "pv_system_num_units_served_1": 1, + "pv_system_num_units_served_2": 1, + "pv_system_system_losses_fraction_1": 0.14, + "pv_system_system_losses_fraction_2": 0.14, + "pv_system_tracking_1": "auto", + "pv_system_tracking_2": "auto", + "refrigerator_location": "living space", + "refrigerator_rated_annual_kwh": "650.0", + "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, + "roof_assembly_r": 2.3, + "roof_color": "medium", + "roof_material_type": "asphalt or fiberglass shingles", + "roof_radiant_barrier": false, + "roof_radiant_barrier_grade": "1", + "schedules_type": "default", + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", + "simulation_control_timestep": "60", + "site_type": "suburban", + "skylight_area_back": 0, + "skylight_area_front": 0, + "skylight_area_left": 0, + "skylight_area_right": 0, + "skylight_shgc": 0.45, + "skylight_ufactor": 0.33, + "slab_carpet_fraction": "0.0", + "slab_carpet_r": "0.0", + "slab_perimeter_depth": 0, + "slab_perimeter_insulation_r": 0, + "slab_thickness": "4.0", + "slab_under_insulation_r": 0, + "slab_under_width": 0, + "solar_thermal_collector_area": 40.0, + "solar_thermal_collector_azimuth": 180, + "solar_thermal_collector_loop_type": "liquid direct", + "solar_thermal_collector_rated_optical_efficiency": 0.5, + "solar_thermal_collector_rated_thermal_losses": 0.2799, + "solar_thermal_collector_tilt": "20", + "solar_thermal_collector_type": "evacuated tube", + "solar_thermal_solar_fraction": 0, + "solar_thermal_storage_volume": "auto", + "solar_thermal_system_type": "none", + "wall_assembly_r": 23, + "wall_color": "medium", + "wall_siding_type": "wood siding", + "wall_type": "WoodStud", + "water_fixtures_shower_low_flow": true, + "water_fixtures_sink_low_flow": false, + "water_fixtures_usage_multiplier": 1.0, + "water_heater_efficiency": 0.95, + "water_heater_efficiency_type": "EnergyFactor", + "water_heater_fuel_type": "electricity", + "water_heater_jacket_rvalue": 0, + "water_heater_location": "living space", + "water_heater_num_units_served": 1, + "water_heater_recovery_efficiency": "0.76", + "water_heater_setpoint_temperature": "125", + "water_heater_standby_loss": 0, + "water_heater_tank_volume": "40", + "water_heater_type": "storage water heater", + "weather_station_epw_filepath": "USA_CO_Denver.Intl.AP.725650_TMY3.epw", + "whole_house_fan_flow_rate": 4500, + "whole_house_fan_power": 300, + "whole_house_fan_present": false, + "window_area_back": 108.0, + "window_area_front": 108.0, + "window_area_left": 72.0, + "window_area_right": 72.0, + "window_aspect_ratio": 1.333, + "window_back_wwr": 0, + "window_fraction_operable": 0.67, + "window_front_wwr": 0, + "window_interior_shading_summer": 0.7, + "window_interior_shading_winter": 0.85, + "window_left_wwr": 0, + "window_right_wwr": 0, + "window_shgc": 0.45, + "window_ufactor": 0.33 + }, + "measure_dir_name": "BuildResidentialHPXML" + } + ] +} \ No newline at end of file diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-install-quality-all-air-to-air-heat-pump-var-speed.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-install-quality-all-air-to-air-heat-pump-var-speed.osw new file mode 100644 index 00000000..24152ba7 --- /dev/null +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-install-quality-all-air-to-air-heat-pump-var-speed.osw @@ -0,0 +1,339 @@ +{ + "measure_paths": [ + "../.." + ], + "steps": [ + { + "arguments": { + "air_leakage_house_pressure": 50, + "air_leakage_shielding_of_home": "auto", + "air_leakage_units": "ACH", + "air_leakage_value": 3, + "bathroom_fans_quantity": "0", + "ceiling_assembly_r": 39.3, + "ceiling_fan_cooling_setpoint_temp_offset": 0, + "ceiling_fan_efficiency": "auto", + "ceiling_fan_present": false, + "ceiling_fan_quantity": "auto", + "clothes_dryer_efficiency": "3.73", + "clothes_dryer_efficiency_type": "CombinedEnergyFactor", + "clothes_dryer_fuel_type": "electricity", + "clothes_dryer_location": "living space", + "clothes_dryer_usage_multiplier": 1.0, + "clothes_dryer_vented_flow_rate": "150.0", + "clothes_washer_capacity": "3.2", + "clothes_washer_efficiency": "1.21", + "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", + "clothes_washer_label_annual_gas_cost": "27.0", + "clothes_washer_label_electric_rate": "0.12", + "clothes_washer_label_gas_rate": "1.09", + "clothes_washer_label_usage": "6.0", + "clothes_washer_location": "living space", + "clothes_washer_rated_annual_kwh": "380.0", + "clothes_washer_usage_multiplier": 1.0, + "cooking_range_oven_fuel_type": "electricity", + "cooking_range_oven_is_convection": false, + "cooking_range_oven_is_induction": false, + "cooking_range_oven_location": "living space", + "cooking_range_oven_usage_multiplier": 1.0, + "cooling_system_cooling_capacity": "48000.0", + "cooling_system_cooling_compressor_type": "single stage", + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", + "cooling_system_cooling_sensible_heat_fraction": 0.73, + "cooling_system_fraction_cool_load_served": 1, + "cooling_system_is_ducted": false, + "cooling_system_type": "none", + "dehumidifier_capacity": 40, + "dehumidifier_efficiency": 1.8, + "dehumidifier_efficiency_type": "EnergyFactor", + "dehumidifier_fraction_dehumidification_load_served": 1, + "dehumidifier_rh_setpoint": 0.5, + "dehumidifier_type": "none", + "dhw_distribution_pipe_r": "0.0", + "dhw_distribution_recirc_branch_piping_length": "50", + "dhw_distribution_recirc_control_type": "no control", + "dhw_distribution_recirc_piping_length": "50", + "dhw_distribution_recirc_pump_power": "50", + "dhw_distribution_standard_piping_length": "50", + "dhw_distribution_system_type": "Standard", + "dishwasher_efficiency": "307", + "dishwasher_efficiency_type": "RatedAnnualkWh", + "dishwasher_label_annual_gas_cost": "22.32", + "dishwasher_label_electric_rate": "0.12", + "dishwasher_label_gas_rate": "1.09", + "dishwasher_label_usage": "4.0", + "dishwasher_location": "living space", + "dishwasher_place_setting_capacity": "12", + "dishwasher_usage_multiplier": 1.0, + "door_area": 80.0, + "door_rvalue": 4.4, + "ducts_number_of_return_registers": "2", + "ducts_return_insulation_r": 0.0, + "ducts_return_leakage_units": "CFM25", + "ducts_return_leakage_value": 25.0, + "ducts_return_location": "attic - unvented", + "ducts_return_surface_area": "50.0", + "ducts_supply_insulation_r": 4.0, + "ducts_supply_leakage_units": "CFM25", + "ducts_supply_leakage_value": 75.0, + "ducts_supply_location": "attic - unvented", + "ducts_supply_surface_area": "150.0", + "dwhr_efficiency": 0.55, + "dwhr_equal_flow": true, + "dwhr_facilities_connected": "none", + "extra_refrigerator_location": "none", + "extra_refrigerator_rated_annual_kwh": "auto", + "extra_refrigerator_usage_multiplier": 1.0, + "floor_assembly_r": 0, + "foundation_wall_insulation_distance_to_bottom": "auto", + "foundation_wall_insulation_distance_to_top": 0.0, + "foundation_wall_insulation_r": 8.9, + "foundation_wall_thickness": "8.0", + "freezer_location": "none", + "freezer_rated_annual_kwh": "auto", + "freezer_usage_multiplier": 1.0, + "fuel_loads_fireplace_annual_therm": "auto", + "fuel_loads_fireplace_frac_latent": "auto", + "fuel_loads_fireplace_frac_sensible": "auto", + "fuel_loads_fireplace_fuel_type": "natural gas", + "fuel_loads_fireplace_present": false, + "fuel_loads_fireplace_usage_multiplier": 0.0, + "fuel_loads_grill_annual_therm": "auto", + "fuel_loads_grill_fuel_type": "natural gas", + "fuel_loads_grill_present": false, + "fuel_loads_grill_usage_multiplier": 0.0, + "fuel_loads_lighting_annual_therm": "auto", + "fuel_loads_lighting_fuel_type": "natural gas", + "fuel_loads_lighting_present": false, + "fuel_loads_lighting_usage_multiplier": 0.0, + "geometry_aspect_ratio": 1.5, + "geometry_attic_type": "UnventedAttic", + "geometry_balcony_depth": 0.0, + "geometry_cfa": 2700.0, + "geometry_corridor_position": "Double-Loaded Interior", + "geometry_corridor_width": 10.0, + "geometry_eaves_depth": 0, + "geometry_foundation_height": 8.0, + "geometry_foundation_height_above_grade": 1.0, + "geometry_foundation_type": "ConditionedBasement", + "geometry_garage_depth": 20.0, + "geometry_garage_position": "Right", + "geometry_garage_protrusion": 0.0, + "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", + "geometry_inset_depth": 0.0, + "geometry_inset_position": "Right", + "geometry_inset_width": 0.0, + "geometry_num_bathrooms": "2", + "geometry_num_bedrooms": 3, + "geometry_num_floors_above_grade": 1, + "geometry_num_occupants": "3", + "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, + "geometry_roof_pitch": "6:12", + "geometry_roof_type": "gable", + "geometry_unit_type": "single-family detached", + "geometry_wall_height": 8.0, + "heat_pump_airflow_defect_ratio": -0.25, + "heat_pump_backup_fuel": "electricity", + "heat_pump_backup_heating_capacity": "34121.0", + "heat_pump_backup_heating_efficiency": 1, + "heat_pump_charge_defect_ratio": -0.25, + "heat_pump_cooling_capacity": "48000.0", + "heat_pump_cooling_compressor_type": "variable speed", + "heat_pump_cooling_efficiency": 22.0, + "heat_pump_cooling_efficiency_type": "SEER", + "heat_pump_cooling_sensible_heat_fraction": 0.78, + "heat_pump_fraction_cool_load_served": 1, + "heat_pump_fraction_heat_load_served": 1, + "heat_pump_heating_capacity": "42000.0", + "heat_pump_heating_capacity_17_f": "26880.0", + "heat_pump_heating_efficiency": 10.0, + "heat_pump_heating_efficiency_type": "HSPF", + "heat_pump_type": "air-to-air", + "heating_system_fraction_heat_load_served": 1, + "heating_system_fraction_heat_load_served_2": 0.25, + "heating_system_fuel": "natural gas", + "heating_system_fuel_2": "electricity", + "heating_system_heating_capacity": "64000.0", + "heating_system_heating_capacity_2": "auto", + "heating_system_heating_efficiency": 0.92, + "heating_system_heating_efficiency_2": 1.0, + "heating_system_type": "none", + "heating_system_type_2": "none", + "holiday_lighting_daily_kwh": "auto", + "holiday_lighting_period_begin_day_of_month": "auto", + "holiday_lighting_period_begin_month": "auto", + "holiday_lighting_period_end_day_of_month": "auto", + "holiday_lighting_period_end_month": "auto", + "holiday_lighting_present": false, + "hot_tub_heater_annual_kwh": "auto", + "hot_tub_heater_annual_therm": "auto", + "hot_tub_heater_type": "electric resistance", + "hot_tub_heater_usage_multiplier": 1.0, + "hot_tub_present": false, + "hot_tub_pump_annual_kwh": "auto", + "hot_tub_pump_usage_multiplier": 1.0, + "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base-hvac-install-quality-all-air-to-air-heat-pump-var-speed.xml", + "kitchen_fans_quantity": "0", + "lighting_fraction_cfl_exterior": 0.4, + "lighting_fraction_cfl_garage": 0.4, + "lighting_fraction_cfl_interior": 0.4, + "lighting_fraction_led_exterior": 0.25, + "lighting_fraction_led_garage": 0.25, + "lighting_fraction_led_interior": 0.25, + "lighting_fraction_lfl_exterior": 0.1, + "lighting_fraction_lfl_garage": 0.1, + "lighting_fraction_lfl_interior": 0.1, + "lighting_usage_multiplier_exterior": 1.0, + "lighting_usage_multiplier_garage": 1.0, + "lighting_usage_multiplier_interior": 1.0, + "mech_vent_fan_power": 30, + "mech_vent_fan_power_2": 30, + "mech_vent_fan_type": "none", + "mech_vent_fan_type_2": "none", + "mech_vent_flow_rate": 110, + "mech_vent_flow_rate_2": 110, + "mech_vent_hours_in_operation": 24, + "mech_vent_hours_in_operation_2": 24, + "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", + "mech_vent_sensible_recovery_efficiency": 0.72, + "mech_vent_sensible_recovery_efficiency_2": 0.72, + "mech_vent_total_recovery_efficiency": 0.48, + "mech_vent_total_recovery_efficiency_2": 0.48, + "neighbor_back_distance": 0, + "neighbor_back_height": "auto", + "neighbor_front_distance": 0, + "neighbor_front_height": "auto", + "neighbor_left_distance": 0, + "neighbor_left_height": "auto", + "neighbor_right_distance": 0, + "neighbor_right_height": "auto", + "overhangs_back_depth": 0, + "overhangs_back_distance_to_top_of_window": 0, + "overhangs_front_depth": 0, + "overhangs_front_distance_to_top_of_window": 0, + "overhangs_left_depth": 0, + "overhangs_left_distance_to_top_of_window": 0, + "overhangs_right_depth": 0, + "overhangs_right_distance_to_top_of_window": 0, + "plug_loads_other_annual_kwh": "2457.0", + "plug_loads_other_frac_latent": "0.045", + "plug_loads_other_frac_sensible": "0.855", + "plug_loads_other_usage_multiplier": 1.0, + "plug_loads_television_annual_kwh": "620.0", + "plug_loads_television_usage_multiplier": 1.0, + "plug_loads_vehicle_annual_kwh": "auto", + "plug_loads_vehicle_present": false, + "plug_loads_vehicle_usage_multiplier": 0.0, + "plug_loads_well_pump_annual_kwh": "auto", + "plug_loads_well_pump_present": false, + "plug_loads_well_pump_usage_multiplier": 0.0, + "pool_heater_annual_kwh": "auto", + "pool_heater_annual_therm": "auto", + "pool_heater_type": "electric resistance", + "pool_heater_usage_multiplier": 1.0, + "pool_present": false, + "pool_pump_annual_kwh": "auto", + "pool_pump_usage_multiplier": 1.0, + "pv_system_array_azimuth_1": 180, + "pv_system_array_azimuth_2": 180, + "pv_system_array_tilt_1": "20", + "pv_system_array_tilt_2": "20", + "pv_system_inverter_efficiency_1": 0.96, + "pv_system_inverter_efficiency_2": 0.96, + "pv_system_location_1": "auto", + "pv_system_location_2": "auto", + "pv_system_max_power_output_1": 4000, + "pv_system_max_power_output_2": 4000, + "pv_system_module_type_1": "none", + "pv_system_module_type_2": "none", + "pv_system_num_units_served_1": 1, + "pv_system_num_units_served_2": 1, + "pv_system_system_losses_fraction_1": 0.14, + "pv_system_system_losses_fraction_2": 0.14, + "pv_system_tracking_1": "auto", + "pv_system_tracking_2": "auto", + "refrigerator_location": "living space", + "refrigerator_rated_annual_kwh": "650.0", + "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, + "roof_assembly_r": 2.3, + "roof_color": "medium", + "roof_material_type": "asphalt or fiberglass shingles", + "roof_radiant_barrier": false, + "roof_radiant_barrier_grade": "1", + "schedules_type": "default", + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", + "simulation_control_timestep": "60", + "site_type": "suburban", + "skylight_area_back": 0, + "skylight_area_front": 0, + "skylight_area_left": 0, + "skylight_area_right": 0, + "skylight_shgc": 0.45, + "skylight_ufactor": 0.33, + "slab_carpet_fraction": "0.0", + "slab_carpet_r": "0.0", + "slab_perimeter_depth": 0, + "slab_perimeter_insulation_r": 0, + "slab_thickness": "4.0", + "slab_under_insulation_r": 0, + "slab_under_width": 0, + "solar_thermal_collector_area": 40.0, + "solar_thermal_collector_azimuth": 180, + "solar_thermal_collector_loop_type": "liquid direct", + "solar_thermal_collector_rated_optical_efficiency": 0.5, + "solar_thermal_collector_rated_thermal_losses": 0.2799, + "solar_thermal_collector_tilt": "20", + "solar_thermal_collector_type": "evacuated tube", + "solar_thermal_solar_fraction": 0, + "solar_thermal_storage_volume": "auto", + "solar_thermal_system_type": "none", + "wall_assembly_r": 23, + "wall_color": "medium", + "wall_siding_type": "wood siding", + "wall_type": "WoodStud", + "water_fixtures_shower_low_flow": true, + "water_fixtures_sink_low_flow": false, + "water_fixtures_usage_multiplier": 1.0, + "water_heater_efficiency": 0.95, + "water_heater_efficiency_type": "EnergyFactor", + "water_heater_fuel_type": "electricity", + "water_heater_jacket_rvalue": 0, + "water_heater_location": "living space", + "water_heater_num_units_served": 1, + "water_heater_recovery_efficiency": "0.76", + "water_heater_setpoint_temperature": "125", + "water_heater_standby_loss": 0, + "water_heater_tank_volume": "40", + "water_heater_type": "storage water heater", + "weather_station_epw_filepath": "USA_CO_Denver.Intl.AP.725650_TMY3.epw", + "whole_house_fan_flow_rate": 4500, + "whole_house_fan_power": 300, + "whole_house_fan_present": false, + "window_area_back": 108.0, + "window_area_front": 108.0, + "window_area_left": 72.0, + "window_area_right": 72.0, + "window_aspect_ratio": 1.333, + "window_back_wwr": 0, + "window_fraction_operable": 0.67, + "window_front_wwr": 0, + "window_interior_shading_summer": 0.7, + "window_interior_shading_winter": 0.85, + "window_left_wwr": 0, + "window_right_wwr": 0, + "window_shgc": 0.45, + "window_ufactor": 0.33 + }, + "measure_dir_name": "BuildResidentialHPXML" + } + ] +} \ No newline at end of file diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-install-quality-all-furnace-gas-central-ac-1-speed.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-install-quality-all-furnace-gas-central-ac-1-speed.osw new file mode 100644 index 00000000..8c4578cd --- /dev/null +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-install-quality-all-furnace-gas-central-ac-1-speed.osw @@ -0,0 +1,340 @@ +{ + "measure_paths": [ + "../.." + ], + "steps": [ + { + "arguments": { + "air_leakage_house_pressure": 50, + "air_leakage_shielding_of_home": "auto", + "air_leakage_units": "ACH", + "air_leakage_value": 3, + "bathroom_fans_quantity": "0", + "ceiling_assembly_r": 39.3, + "ceiling_fan_cooling_setpoint_temp_offset": 0, + "ceiling_fan_efficiency": "auto", + "ceiling_fan_present": false, + "ceiling_fan_quantity": "auto", + "clothes_dryer_efficiency": "3.73", + "clothes_dryer_efficiency_type": "CombinedEnergyFactor", + "clothes_dryer_fuel_type": "electricity", + "clothes_dryer_location": "living space", + "clothes_dryer_usage_multiplier": 1.0, + "clothes_dryer_vented_flow_rate": "150.0", + "clothes_washer_capacity": "3.2", + "clothes_washer_efficiency": "1.21", + "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", + "clothes_washer_label_annual_gas_cost": "27.0", + "clothes_washer_label_electric_rate": "0.12", + "clothes_washer_label_gas_rate": "1.09", + "clothes_washer_label_usage": "6.0", + "clothes_washer_location": "living space", + "clothes_washer_rated_annual_kwh": "380.0", + "clothes_washer_usage_multiplier": 1.0, + "cooking_range_oven_fuel_type": "electricity", + "cooking_range_oven_is_convection": false, + "cooking_range_oven_is_induction": false, + "cooking_range_oven_location": "living space", + "cooking_range_oven_usage_multiplier": 1.0, + "cooling_system_airflow_defect_ratio": -0.25, + "cooling_system_charge_defect_ratio": -0.25, + "cooling_system_cooling_capacity": "48000.0", + "cooling_system_cooling_compressor_type": "single stage", + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", + "cooling_system_cooling_sensible_heat_fraction": 0.73, + "cooling_system_fraction_cool_load_served": 1, + "cooling_system_is_ducted": false, + "cooling_system_type": "central air conditioner", + "dehumidifier_capacity": 40, + "dehumidifier_efficiency": 1.8, + "dehumidifier_efficiency_type": "EnergyFactor", + "dehumidifier_fraction_dehumidification_load_served": 1, + "dehumidifier_rh_setpoint": 0.5, + "dehumidifier_type": "none", + "dhw_distribution_pipe_r": "0.0", + "dhw_distribution_recirc_branch_piping_length": "50", + "dhw_distribution_recirc_control_type": "no control", + "dhw_distribution_recirc_piping_length": "50", + "dhw_distribution_recirc_pump_power": "50", + "dhw_distribution_standard_piping_length": "50", + "dhw_distribution_system_type": "Standard", + "dishwasher_efficiency": "307", + "dishwasher_efficiency_type": "RatedAnnualkWh", + "dishwasher_label_annual_gas_cost": "22.32", + "dishwasher_label_electric_rate": "0.12", + "dishwasher_label_gas_rate": "1.09", + "dishwasher_label_usage": "4.0", + "dishwasher_location": "living space", + "dishwasher_place_setting_capacity": "12", + "dishwasher_usage_multiplier": 1.0, + "door_area": 80.0, + "door_rvalue": 4.4, + "ducts_number_of_return_registers": "2", + "ducts_return_insulation_r": 0.0, + "ducts_return_leakage_units": "CFM25", + "ducts_return_leakage_value": 25.0, + "ducts_return_location": "attic - unvented", + "ducts_return_surface_area": "50.0", + "ducts_supply_insulation_r": 4.0, + "ducts_supply_leakage_units": "CFM25", + "ducts_supply_leakage_value": 75.0, + "ducts_supply_location": "attic - unvented", + "ducts_supply_surface_area": "150.0", + "dwhr_efficiency": 0.55, + "dwhr_equal_flow": true, + "dwhr_facilities_connected": "none", + "extra_refrigerator_location": "none", + "extra_refrigerator_rated_annual_kwh": "auto", + "extra_refrigerator_usage_multiplier": 1.0, + "floor_assembly_r": 0, + "foundation_wall_insulation_distance_to_bottom": "auto", + "foundation_wall_insulation_distance_to_top": 0.0, + "foundation_wall_insulation_r": 8.9, + "foundation_wall_thickness": "8.0", + "freezer_location": "none", + "freezer_rated_annual_kwh": "auto", + "freezer_usage_multiplier": 1.0, + "fuel_loads_fireplace_annual_therm": "auto", + "fuel_loads_fireplace_frac_latent": "auto", + "fuel_loads_fireplace_frac_sensible": "auto", + "fuel_loads_fireplace_fuel_type": "natural gas", + "fuel_loads_fireplace_present": false, + "fuel_loads_fireplace_usage_multiplier": 0.0, + "fuel_loads_grill_annual_therm": "auto", + "fuel_loads_grill_fuel_type": "natural gas", + "fuel_loads_grill_present": false, + "fuel_loads_grill_usage_multiplier": 0.0, + "fuel_loads_lighting_annual_therm": "auto", + "fuel_loads_lighting_fuel_type": "natural gas", + "fuel_loads_lighting_present": false, + "fuel_loads_lighting_usage_multiplier": 0.0, + "geometry_aspect_ratio": 1.5, + "geometry_attic_type": "UnventedAttic", + "geometry_balcony_depth": 0.0, + "geometry_cfa": 2700.0, + "geometry_corridor_position": "Double-Loaded Interior", + "geometry_corridor_width": 10.0, + "geometry_eaves_depth": 0, + "geometry_foundation_height": 8.0, + "geometry_foundation_height_above_grade": 1.0, + "geometry_foundation_type": "ConditionedBasement", + "geometry_garage_depth": 20.0, + "geometry_garage_position": "Right", + "geometry_garage_protrusion": 0.0, + "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", + "geometry_inset_depth": 0.0, + "geometry_inset_position": "Right", + "geometry_inset_width": 0.0, + "geometry_num_bathrooms": "2", + "geometry_num_bedrooms": 3, + "geometry_num_floors_above_grade": 1, + "geometry_num_occupants": "3", + "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, + "geometry_roof_pitch": "6:12", + "geometry_roof_type": "gable", + "geometry_unit_type": "single-family detached", + "geometry_wall_height": 8.0, + "heat_pump_backup_fuel": "none", + "heat_pump_backup_heating_capacity": "34121.0", + "heat_pump_backup_heating_efficiency": 1, + "heat_pump_cooling_capacity": "48000.0", + "heat_pump_cooling_compressor_type": "single stage", + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", + "heat_pump_cooling_sensible_heat_fraction": 0.73, + "heat_pump_fraction_cool_load_served": 1, + "heat_pump_fraction_heat_load_served": 1, + "heat_pump_heating_capacity": "64000.0", + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", + "heat_pump_type": "none", + "heating_system_airflow_defect_ratio": -0.25, + "heating_system_fraction_heat_load_served": 1, + "heating_system_fraction_heat_load_served_2": 0.25, + "heating_system_fuel": "natural gas", + "heating_system_fuel_2": "electricity", + "heating_system_heating_capacity": "64000.0", + "heating_system_heating_capacity_2": "auto", + "heating_system_heating_efficiency": 0.92, + "heating_system_heating_efficiency_2": 1.0, + "heating_system_type": "Furnace", + "heating_system_type_2": "none", + "holiday_lighting_daily_kwh": "auto", + "holiday_lighting_period_begin_day_of_month": "auto", + "holiday_lighting_period_begin_month": "auto", + "holiday_lighting_period_end_day_of_month": "auto", + "holiday_lighting_period_end_month": "auto", + "holiday_lighting_present": false, + "hot_tub_heater_annual_kwh": "auto", + "hot_tub_heater_annual_therm": "auto", + "hot_tub_heater_type": "electric resistance", + "hot_tub_heater_usage_multiplier": 1.0, + "hot_tub_present": false, + "hot_tub_pump_annual_kwh": "auto", + "hot_tub_pump_usage_multiplier": 1.0, + "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base-hvac-install-quality-all-furnace-gas-central-ac-1-speed.xml", + "kitchen_fans_quantity": "0", + "lighting_fraction_cfl_exterior": 0.4, + "lighting_fraction_cfl_garage": 0.4, + "lighting_fraction_cfl_interior": 0.4, + "lighting_fraction_led_exterior": 0.25, + "lighting_fraction_led_garage": 0.25, + "lighting_fraction_led_interior": 0.25, + "lighting_fraction_lfl_exterior": 0.1, + "lighting_fraction_lfl_garage": 0.1, + "lighting_fraction_lfl_interior": 0.1, + "lighting_usage_multiplier_exterior": 1.0, + "lighting_usage_multiplier_garage": 1.0, + "lighting_usage_multiplier_interior": 1.0, + "mech_vent_fan_power": 30, + "mech_vent_fan_power_2": 30, + "mech_vent_fan_type": "none", + "mech_vent_fan_type_2": "none", + "mech_vent_flow_rate": 110, + "mech_vent_flow_rate_2": 110, + "mech_vent_hours_in_operation": 24, + "mech_vent_hours_in_operation_2": 24, + "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", + "mech_vent_sensible_recovery_efficiency": 0.72, + "mech_vent_sensible_recovery_efficiency_2": 0.72, + "mech_vent_total_recovery_efficiency": 0.48, + "mech_vent_total_recovery_efficiency_2": 0.48, + "neighbor_back_distance": 0, + "neighbor_back_height": "auto", + "neighbor_front_distance": 0, + "neighbor_front_height": "auto", + "neighbor_left_distance": 0, + "neighbor_left_height": "auto", + "neighbor_right_distance": 0, + "neighbor_right_height": "auto", + "overhangs_back_depth": 0, + "overhangs_back_distance_to_top_of_window": 0, + "overhangs_front_depth": 0, + "overhangs_front_distance_to_top_of_window": 0, + "overhangs_left_depth": 0, + "overhangs_left_distance_to_top_of_window": 0, + "overhangs_right_depth": 0, + "overhangs_right_distance_to_top_of_window": 0, + "plug_loads_other_annual_kwh": "2457.0", + "plug_loads_other_frac_latent": "0.045", + "plug_loads_other_frac_sensible": "0.855", + "plug_loads_other_usage_multiplier": 1.0, + "plug_loads_television_annual_kwh": "620.0", + "plug_loads_television_usage_multiplier": 1.0, + "plug_loads_vehicle_annual_kwh": "auto", + "plug_loads_vehicle_present": false, + "plug_loads_vehicle_usage_multiplier": 0.0, + "plug_loads_well_pump_annual_kwh": "auto", + "plug_loads_well_pump_present": false, + "plug_loads_well_pump_usage_multiplier": 0.0, + "pool_heater_annual_kwh": "auto", + "pool_heater_annual_therm": "auto", + "pool_heater_type": "electric resistance", + "pool_heater_usage_multiplier": 1.0, + "pool_present": false, + "pool_pump_annual_kwh": "auto", + "pool_pump_usage_multiplier": 1.0, + "pv_system_array_azimuth_1": 180, + "pv_system_array_azimuth_2": 180, + "pv_system_array_tilt_1": "20", + "pv_system_array_tilt_2": "20", + "pv_system_inverter_efficiency_1": 0.96, + "pv_system_inverter_efficiency_2": 0.96, + "pv_system_location_1": "auto", + "pv_system_location_2": "auto", + "pv_system_max_power_output_1": 4000, + "pv_system_max_power_output_2": 4000, + "pv_system_module_type_1": "none", + "pv_system_module_type_2": "none", + "pv_system_num_units_served_1": 1, + "pv_system_num_units_served_2": 1, + "pv_system_system_losses_fraction_1": 0.14, + "pv_system_system_losses_fraction_2": 0.14, + "pv_system_tracking_1": "auto", + "pv_system_tracking_2": "auto", + "refrigerator_location": "living space", + "refrigerator_rated_annual_kwh": "650.0", + "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, + "roof_assembly_r": 2.3, + "roof_color": "medium", + "roof_material_type": "asphalt or fiberglass shingles", + "roof_radiant_barrier": false, + "roof_radiant_barrier_grade": "1", + "schedules_type": "default", + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", + "simulation_control_timestep": "60", + "site_type": "suburban", + "skylight_area_back": 0, + "skylight_area_front": 0, + "skylight_area_left": 0, + "skylight_area_right": 0, + "skylight_shgc": 0.45, + "skylight_ufactor": 0.33, + "slab_carpet_fraction": "0.0", + "slab_carpet_r": "0.0", + "slab_perimeter_depth": 0, + "slab_perimeter_insulation_r": 0, + "slab_thickness": "4.0", + "slab_under_insulation_r": 0, + "slab_under_width": 0, + "solar_thermal_collector_area": 40.0, + "solar_thermal_collector_azimuth": 180, + "solar_thermal_collector_loop_type": "liquid direct", + "solar_thermal_collector_rated_optical_efficiency": 0.5, + "solar_thermal_collector_rated_thermal_losses": 0.2799, + "solar_thermal_collector_tilt": "20", + "solar_thermal_collector_type": "evacuated tube", + "solar_thermal_solar_fraction": 0, + "solar_thermal_storage_volume": "auto", + "solar_thermal_system_type": "none", + "wall_assembly_r": 23, + "wall_color": "medium", + "wall_siding_type": "wood siding", + "wall_type": "WoodStud", + "water_fixtures_shower_low_flow": true, + "water_fixtures_sink_low_flow": false, + "water_fixtures_usage_multiplier": 1.0, + "water_heater_efficiency": 0.95, + "water_heater_efficiency_type": "EnergyFactor", + "water_heater_fuel_type": "electricity", + "water_heater_jacket_rvalue": 0, + "water_heater_location": "living space", + "water_heater_num_units_served": 1, + "water_heater_recovery_efficiency": "0.76", + "water_heater_setpoint_temperature": "125", + "water_heater_standby_loss": 0, + "water_heater_tank_volume": "40", + "water_heater_type": "storage water heater", + "weather_station_epw_filepath": "USA_CO_Denver.Intl.AP.725650_TMY3.epw", + "whole_house_fan_flow_rate": 4500, + "whole_house_fan_power": 300, + "whole_house_fan_present": false, + "window_area_back": 108.0, + "window_area_front": 108.0, + "window_area_left": 72.0, + "window_area_right": 72.0, + "window_aspect_ratio": 1.333, + "window_back_wwr": 0, + "window_fraction_operable": 0.67, + "window_front_wwr": 0, + "window_interior_shading_summer": 0.7, + "window_interior_shading_winter": 0.85, + "window_left_wwr": 0, + "window_right_wwr": 0, + "window_shgc": 0.45, + "window_ufactor": 0.33 + }, + "measure_dir_name": "BuildResidentialHPXML" + } + ] +} \ No newline at end of file diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-install-quality-all-furnace-gas-central-ac-2-speed.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-install-quality-all-furnace-gas-central-ac-2-speed.osw new file mode 100644 index 00000000..21f42650 --- /dev/null +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-install-quality-all-furnace-gas-central-ac-2-speed.osw @@ -0,0 +1,340 @@ +{ + "measure_paths": [ + "../.." + ], + "steps": [ + { + "arguments": { + "air_leakage_house_pressure": 50, + "air_leakage_shielding_of_home": "auto", + "air_leakage_units": "ACH", + "air_leakage_value": 3, + "bathroom_fans_quantity": "0", + "ceiling_assembly_r": 39.3, + "ceiling_fan_cooling_setpoint_temp_offset": 0, + "ceiling_fan_efficiency": "auto", + "ceiling_fan_present": false, + "ceiling_fan_quantity": "auto", + "clothes_dryer_efficiency": "3.73", + "clothes_dryer_efficiency_type": "CombinedEnergyFactor", + "clothes_dryer_fuel_type": "electricity", + "clothes_dryer_location": "living space", + "clothes_dryer_usage_multiplier": 1.0, + "clothes_dryer_vented_flow_rate": "150.0", + "clothes_washer_capacity": "3.2", + "clothes_washer_efficiency": "1.21", + "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", + "clothes_washer_label_annual_gas_cost": "27.0", + "clothes_washer_label_electric_rate": "0.12", + "clothes_washer_label_gas_rate": "1.09", + "clothes_washer_label_usage": "6.0", + "clothes_washer_location": "living space", + "clothes_washer_rated_annual_kwh": "380.0", + "clothes_washer_usage_multiplier": 1.0, + "cooking_range_oven_fuel_type": "electricity", + "cooking_range_oven_is_convection": false, + "cooking_range_oven_is_induction": false, + "cooking_range_oven_location": "living space", + "cooking_range_oven_usage_multiplier": 1.0, + "cooling_system_airflow_defect_ratio": -0.25, + "cooling_system_charge_defect_ratio": -0.25, + "cooling_system_cooling_capacity": "48000.0", + "cooling_system_cooling_compressor_type": "two stage", + "cooling_system_cooling_efficiency": 18.0, + "cooling_system_cooling_efficiency_type": "SEER", + "cooling_system_cooling_sensible_heat_fraction": 0.73, + "cooling_system_fraction_cool_load_served": 1, + "cooling_system_is_ducted": false, + "cooling_system_type": "central air conditioner", + "dehumidifier_capacity": 40, + "dehumidifier_efficiency": 1.8, + "dehumidifier_efficiency_type": "EnergyFactor", + "dehumidifier_fraction_dehumidification_load_served": 1, + "dehumidifier_rh_setpoint": 0.5, + "dehumidifier_type": "none", + "dhw_distribution_pipe_r": "0.0", + "dhw_distribution_recirc_branch_piping_length": "50", + "dhw_distribution_recirc_control_type": "no control", + "dhw_distribution_recirc_piping_length": "50", + "dhw_distribution_recirc_pump_power": "50", + "dhw_distribution_standard_piping_length": "50", + "dhw_distribution_system_type": "Standard", + "dishwasher_efficiency": "307", + "dishwasher_efficiency_type": "RatedAnnualkWh", + "dishwasher_label_annual_gas_cost": "22.32", + "dishwasher_label_electric_rate": "0.12", + "dishwasher_label_gas_rate": "1.09", + "dishwasher_label_usage": "4.0", + "dishwasher_location": "living space", + "dishwasher_place_setting_capacity": "12", + "dishwasher_usage_multiplier": 1.0, + "door_area": 80.0, + "door_rvalue": 4.4, + "ducts_number_of_return_registers": "2", + "ducts_return_insulation_r": 0.0, + "ducts_return_leakage_units": "CFM25", + "ducts_return_leakage_value": 25.0, + "ducts_return_location": "attic - unvented", + "ducts_return_surface_area": "50.0", + "ducts_supply_insulation_r": 4.0, + "ducts_supply_leakage_units": "CFM25", + "ducts_supply_leakage_value": 75.0, + "ducts_supply_location": "attic - unvented", + "ducts_supply_surface_area": "150.0", + "dwhr_efficiency": 0.55, + "dwhr_equal_flow": true, + "dwhr_facilities_connected": "none", + "extra_refrigerator_location": "none", + "extra_refrigerator_rated_annual_kwh": "auto", + "extra_refrigerator_usage_multiplier": 1.0, + "floor_assembly_r": 0, + "foundation_wall_insulation_distance_to_bottom": "auto", + "foundation_wall_insulation_distance_to_top": 0.0, + "foundation_wall_insulation_r": 8.9, + "foundation_wall_thickness": "8.0", + "freezer_location": "none", + "freezer_rated_annual_kwh": "auto", + "freezer_usage_multiplier": 1.0, + "fuel_loads_fireplace_annual_therm": "auto", + "fuel_loads_fireplace_frac_latent": "auto", + "fuel_loads_fireplace_frac_sensible": "auto", + "fuel_loads_fireplace_fuel_type": "natural gas", + "fuel_loads_fireplace_present": false, + "fuel_loads_fireplace_usage_multiplier": 0.0, + "fuel_loads_grill_annual_therm": "auto", + "fuel_loads_grill_fuel_type": "natural gas", + "fuel_loads_grill_present": false, + "fuel_loads_grill_usage_multiplier": 0.0, + "fuel_loads_lighting_annual_therm": "auto", + "fuel_loads_lighting_fuel_type": "natural gas", + "fuel_loads_lighting_present": false, + "fuel_loads_lighting_usage_multiplier": 0.0, + "geometry_aspect_ratio": 1.5, + "geometry_attic_type": "UnventedAttic", + "geometry_balcony_depth": 0.0, + "geometry_cfa": 2700.0, + "geometry_corridor_position": "Double-Loaded Interior", + "geometry_corridor_width": 10.0, + "geometry_eaves_depth": 0, + "geometry_foundation_height": 8.0, + "geometry_foundation_height_above_grade": 1.0, + "geometry_foundation_type": "ConditionedBasement", + "geometry_garage_depth": 20.0, + "geometry_garage_position": "Right", + "geometry_garage_protrusion": 0.0, + "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", + "geometry_inset_depth": 0.0, + "geometry_inset_position": "Right", + "geometry_inset_width": 0.0, + "geometry_num_bathrooms": "2", + "geometry_num_bedrooms": 3, + "geometry_num_floors_above_grade": 1, + "geometry_num_occupants": "3", + "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, + "geometry_roof_pitch": "6:12", + "geometry_roof_type": "gable", + "geometry_unit_type": "single-family detached", + "geometry_wall_height": 8.0, + "heat_pump_backup_fuel": "none", + "heat_pump_backup_heating_capacity": "34121.0", + "heat_pump_backup_heating_efficiency": 1, + "heat_pump_cooling_capacity": "48000.0", + "heat_pump_cooling_compressor_type": "single stage", + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", + "heat_pump_cooling_sensible_heat_fraction": 0.73, + "heat_pump_fraction_cool_load_served": 1, + "heat_pump_fraction_heat_load_served": 1, + "heat_pump_heating_capacity": "64000.0", + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", + "heat_pump_type": "none", + "heating_system_airflow_defect_ratio": -0.25, + "heating_system_fraction_heat_load_served": 1, + "heating_system_fraction_heat_load_served_2": 0.25, + "heating_system_fuel": "natural gas", + "heating_system_fuel_2": "electricity", + "heating_system_heating_capacity": "64000.0", + "heating_system_heating_capacity_2": "auto", + "heating_system_heating_efficiency": 0.92, + "heating_system_heating_efficiency_2": 1.0, + "heating_system_type": "Furnace", + "heating_system_type_2": "none", + "holiday_lighting_daily_kwh": "auto", + "holiday_lighting_period_begin_day_of_month": "auto", + "holiday_lighting_period_begin_month": "auto", + "holiday_lighting_period_end_day_of_month": "auto", + "holiday_lighting_period_end_month": "auto", + "holiday_lighting_present": false, + "hot_tub_heater_annual_kwh": "auto", + "hot_tub_heater_annual_therm": "auto", + "hot_tub_heater_type": "electric resistance", + "hot_tub_heater_usage_multiplier": 1.0, + "hot_tub_present": false, + "hot_tub_pump_annual_kwh": "auto", + "hot_tub_pump_usage_multiplier": 1.0, + "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base-hvac-install-quality-all-furnace-gas-central-ac-2-speed.xml", + "kitchen_fans_quantity": "0", + "lighting_fraction_cfl_exterior": 0.4, + "lighting_fraction_cfl_garage": 0.4, + "lighting_fraction_cfl_interior": 0.4, + "lighting_fraction_led_exterior": 0.25, + "lighting_fraction_led_garage": 0.25, + "lighting_fraction_led_interior": 0.25, + "lighting_fraction_lfl_exterior": 0.1, + "lighting_fraction_lfl_garage": 0.1, + "lighting_fraction_lfl_interior": 0.1, + "lighting_usage_multiplier_exterior": 1.0, + "lighting_usage_multiplier_garage": 1.0, + "lighting_usage_multiplier_interior": 1.0, + "mech_vent_fan_power": 30, + "mech_vent_fan_power_2": 30, + "mech_vent_fan_type": "none", + "mech_vent_fan_type_2": "none", + "mech_vent_flow_rate": 110, + "mech_vent_flow_rate_2": 110, + "mech_vent_hours_in_operation": 24, + "mech_vent_hours_in_operation_2": 24, + "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", + "mech_vent_sensible_recovery_efficiency": 0.72, + "mech_vent_sensible_recovery_efficiency_2": 0.72, + "mech_vent_total_recovery_efficiency": 0.48, + "mech_vent_total_recovery_efficiency_2": 0.48, + "neighbor_back_distance": 0, + "neighbor_back_height": "auto", + "neighbor_front_distance": 0, + "neighbor_front_height": "auto", + "neighbor_left_distance": 0, + "neighbor_left_height": "auto", + "neighbor_right_distance": 0, + "neighbor_right_height": "auto", + "overhangs_back_depth": 0, + "overhangs_back_distance_to_top_of_window": 0, + "overhangs_front_depth": 0, + "overhangs_front_distance_to_top_of_window": 0, + "overhangs_left_depth": 0, + "overhangs_left_distance_to_top_of_window": 0, + "overhangs_right_depth": 0, + "overhangs_right_distance_to_top_of_window": 0, + "plug_loads_other_annual_kwh": "2457.0", + "plug_loads_other_frac_latent": "0.045", + "plug_loads_other_frac_sensible": "0.855", + "plug_loads_other_usage_multiplier": 1.0, + "plug_loads_television_annual_kwh": "620.0", + "plug_loads_television_usage_multiplier": 1.0, + "plug_loads_vehicle_annual_kwh": "auto", + "plug_loads_vehicle_present": false, + "plug_loads_vehicle_usage_multiplier": 0.0, + "plug_loads_well_pump_annual_kwh": "auto", + "plug_loads_well_pump_present": false, + "plug_loads_well_pump_usage_multiplier": 0.0, + "pool_heater_annual_kwh": "auto", + "pool_heater_annual_therm": "auto", + "pool_heater_type": "electric resistance", + "pool_heater_usage_multiplier": 1.0, + "pool_present": false, + "pool_pump_annual_kwh": "auto", + "pool_pump_usage_multiplier": 1.0, + "pv_system_array_azimuth_1": 180, + "pv_system_array_azimuth_2": 180, + "pv_system_array_tilt_1": "20", + "pv_system_array_tilt_2": "20", + "pv_system_inverter_efficiency_1": 0.96, + "pv_system_inverter_efficiency_2": 0.96, + "pv_system_location_1": "auto", + "pv_system_location_2": "auto", + "pv_system_max_power_output_1": 4000, + "pv_system_max_power_output_2": 4000, + "pv_system_module_type_1": "none", + "pv_system_module_type_2": "none", + "pv_system_num_units_served_1": 1, + "pv_system_num_units_served_2": 1, + "pv_system_system_losses_fraction_1": 0.14, + "pv_system_system_losses_fraction_2": 0.14, + "pv_system_tracking_1": "auto", + "pv_system_tracking_2": "auto", + "refrigerator_location": "living space", + "refrigerator_rated_annual_kwh": "650.0", + "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, + "roof_assembly_r": 2.3, + "roof_color": "medium", + "roof_material_type": "asphalt or fiberglass shingles", + "roof_radiant_barrier": false, + "roof_radiant_barrier_grade": "1", + "schedules_type": "default", + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", + "simulation_control_timestep": "60", + "site_type": "suburban", + "skylight_area_back": 0, + "skylight_area_front": 0, + "skylight_area_left": 0, + "skylight_area_right": 0, + "skylight_shgc": 0.45, + "skylight_ufactor": 0.33, + "slab_carpet_fraction": "0.0", + "slab_carpet_r": "0.0", + "slab_perimeter_depth": 0, + "slab_perimeter_insulation_r": 0, + "slab_thickness": "4.0", + "slab_under_insulation_r": 0, + "slab_under_width": 0, + "solar_thermal_collector_area": 40.0, + "solar_thermal_collector_azimuth": 180, + "solar_thermal_collector_loop_type": "liquid direct", + "solar_thermal_collector_rated_optical_efficiency": 0.5, + "solar_thermal_collector_rated_thermal_losses": 0.2799, + "solar_thermal_collector_tilt": "20", + "solar_thermal_collector_type": "evacuated tube", + "solar_thermal_solar_fraction": 0, + "solar_thermal_storage_volume": "auto", + "solar_thermal_system_type": "none", + "wall_assembly_r": 23, + "wall_color": "medium", + "wall_siding_type": "wood siding", + "wall_type": "WoodStud", + "water_fixtures_shower_low_flow": true, + "water_fixtures_sink_low_flow": false, + "water_fixtures_usage_multiplier": 1.0, + "water_heater_efficiency": 0.95, + "water_heater_efficiency_type": "EnergyFactor", + "water_heater_fuel_type": "electricity", + "water_heater_jacket_rvalue": 0, + "water_heater_location": "living space", + "water_heater_num_units_served": 1, + "water_heater_recovery_efficiency": "0.76", + "water_heater_setpoint_temperature": "125", + "water_heater_standby_loss": 0, + "water_heater_tank_volume": "40", + "water_heater_type": "storage water heater", + "weather_station_epw_filepath": "USA_CO_Denver.Intl.AP.725650_TMY3.epw", + "whole_house_fan_flow_rate": 4500, + "whole_house_fan_power": 300, + "whole_house_fan_present": false, + "window_area_back": 108.0, + "window_area_front": 108.0, + "window_area_left": 72.0, + "window_area_right": 72.0, + "window_aspect_ratio": 1.333, + "window_back_wwr": 0, + "window_fraction_operable": 0.67, + "window_front_wwr": 0, + "window_interior_shading_summer": 0.7, + "window_interior_shading_winter": 0.85, + "window_left_wwr": 0, + "window_right_wwr": 0, + "window_shgc": 0.45, + "window_ufactor": 0.33 + }, + "measure_dir_name": "BuildResidentialHPXML" + } + ] +} \ No newline at end of file diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-install-quality-all-furnace-gas-central-ac-var-speed.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-install-quality-all-furnace-gas-central-ac-var-speed.osw new file mode 100644 index 00000000..fe30fd60 --- /dev/null +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-install-quality-all-furnace-gas-central-ac-var-speed.osw @@ -0,0 +1,340 @@ +{ + "measure_paths": [ + "../.." + ], + "steps": [ + { + "arguments": { + "air_leakage_house_pressure": 50, + "air_leakage_shielding_of_home": "auto", + "air_leakage_units": "ACH", + "air_leakage_value": 3, + "bathroom_fans_quantity": "0", + "ceiling_assembly_r": 39.3, + "ceiling_fan_cooling_setpoint_temp_offset": 0, + "ceiling_fan_efficiency": "auto", + "ceiling_fan_present": false, + "ceiling_fan_quantity": "auto", + "clothes_dryer_efficiency": "3.73", + "clothes_dryer_efficiency_type": "CombinedEnergyFactor", + "clothes_dryer_fuel_type": "electricity", + "clothes_dryer_location": "living space", + "clothes_dryer_usage_multiplier": 1.0, + "clothes_dryer_vented_flow_rate": "150.0", + "clothes_washer_capacity": "3.2", + "clothes_washer_efficiency": "1.21", + "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", + "clothes_washer_label_annual_gas_cost": "27.0", + "clothes_washer_label_electric_rate": "0.12", + "clothes_washer_label_gas_rate": "1.09", + "clothes_washer_label_usage": "6.0", + "clothes_washer_location": "living space", + "clothes_washer_rated_annual_kwh": "380.0", + "clothes_washer_usage_multiplier": 1.0, + "cooking_range_oven_fuel_type": "electricity", + "cooking_range_oven_is_convection": false, + "cooking_range_oven_is_induction": false, + "cooking_range_oven_location": "living space", + "cooking_range_oven_usage_multiplier": 1.0, + "cooling_system_airflow_defect_ratio": -0.25, + "cooling_system_charge_defect_ratio": -0.25, + "cooling_system_cooling_capacity": "48000.0", + "cooling_system_cooling_compressor_type": "variable speed", + "cooling_system_cooling_efficiency": 24.0, + "cooling_system_cooling_efficiency_type": "SEER", + "cooling_system_cooling_sensible_heat_fraction": 0.78, + "cooling_system_fraction_cool_load_served": 1, + "cooling_system_is_ducted": false, + "cooling_system_type": "central air conditioner", + "dehumidifier_capacity": 40, + "dehumidifier_efficiency": 1.8, + "dehumidifier_efficiency_type": "EnergyFactor", + "dehumidifier_fraction_dehumidification_load_served": 1, + "dehumidifier_rh_setpoint": 0.5, + "dehumidifier_type": "none", + "dhw_distribution_pipe_r": "0.0", + "dhw_distribution_recirc_branch_piping_length": "50", + "dhw_distribution_recirc_control_type": "no control", + "dhw_distribution_recirc_piping_length": "50", + "dhw_distribution_recirc_pump_power": "50", + "dhw_distribution_standard_piping_length": "50", + "dhw_distribution_system_type": "Standard", + "dishwasher_efficiency": "307", + "dishwasher_efficiency_type": "RatedAnnualkWh", + "dishwasher_label_annual_gas_cost": "22.32", + "dishwasher_label_electric_rate": "0.12", + "dishwasher_label_gas_rate": "1.09", + "dishwasher_label_usage": "4.0", + "dishwasher_location": "living space", + "dishwasher_place_setting_capacity": "12", + "dishwasher_usage_multiplier": 1.0, + "door_area": 80.0, + "door_rvalue": 4.4, + "ducts_number_of_return_registers": "2", + "ducts_return_insulation_r": 0.0, + "ducts_return_leakage_units": "CFM25", + "ducts_return_leakage_value": 25.0, + "ducts_return_location": "attic - unvented", + "ducts_return_surface_area": "50.0", + "ducts_supply_insulation_r": 4.0, + "ducts_supply_leakage_units": "CFM25", + "ducts_supply_leakage_value": 75.0, + "ducts_supply_location": "attic - unvented", + "ducts_supply_surface_area": "150.0", + "dwhr_efficiency": 0.55, + "dwhr_equal_flow": true, + "dwhr_facilities_connected": "none", + "extra_refrigerator_location": "none", + "extra_refrigerator_rated_annual_kwh": "auto", + "extra_refrigerator_usage_multiplier": 1.0, + "floor_assembly_r": 0, + "foundation_wall_insulation_distance_to_bottom": "auto", + "foundation_wall_insulation_distance_to_top": 0.0, + "foundation_wall_insulation_r": 8.9, + "foundation_wall_thickness": "8.0", + "freezer_location": "none", + "freezer_rated_annual_kwh": "auto", + "freezer_usage_multiplier": 1.0, + "fuel_loads_fireplace_annual_therm": "auto", + "fuel_loads_fireplace_frac_latent": "auto", + "fuel_loads_fireplace_frac_sensible": "auto", + "fuel_loads_fireplace_fuel_type": "natural gas", + "fuel_loads_fireplace_present": false, + "fuel_loads_fireplace_usage_multiplier": 0.0, + "fuel_loads_grill_annual_therm": "auto", + "fuel_loads_grill_fuel_type": "natural gas", + "fuel_loads_grill_present": false, + "fuel_loads_grill_usage_multiplier": 0.0, + "fuel_loads_lighting_annual_therm": "auto", + "fuel_loads_lighting_fuel_type": "natural gas", + "fuel_loads_lighting_present": false, + "fuel_loads_lighting_usage_multiplier": 0.0, + "geometry_aspect_ratio": 1.5, + "geometry_attic_type": "UnventedAttic", + "geometry_balcony_depth": 0.0, + "geometry_cfa": 2700.0, + "geometry_corridor_position": "Double-Loaded Interior", + "geometry_corridor_width": 10.0, + "geometry_eaves_depth": 0, + "geometry_foundation_height": 8.0, + "geometry_foundation_height_above_grade": 1.0, + "geometry_foundation_type": "ConditionedBasement", + "geometry_garage_depth": 20.0, + "geometry_garage_position": "Right", + "geometry_garage_protrusion": 0.0, + "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", + "geometry_inset_depth": 0.0, + "geometry_inset_position": "Right", + "geometry_inset_width": 0.0, + "geometry_num_bathrooms": "2", + "geometry_num_bedrooms": 3, + "geometry_num_floors_above_grade": 1, + "geometry_num_occupants": "3", + "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, + "geometry_roof_pitch": "6:12", + "geometry_roof_type": "gable", + "geometry_unit_type": "single-family detached", + "geometry_wall_height": 8.0, + "heat_pump_backup_fuel": "none", + "heat_pump_backup_heating_capacity": "34121.0", + "heat_pump_backup_heating_efficiency": 1, + "heat_pump_cooling_capacity": "48000.0", + "heat_pump_cooling_compressor_type": "single stage", + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", + "heat_pump_cooling_sensible_heat_fraction": 0.73, + "heat_pump_fraction_cool_load_served": 1, + "heat_pump_fraction_heat_load_served": 1, + "heat_pump_heating_capacity": "64000.0", + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", + "heat_pump_type": "none", + "heating_system_airflow_defect_ratio": -0.25, + "heating_system_fraction_heat_load_served": 1, + "heating_system_fraction_heat_load_served_2": 0.25, + "heating_system_fuel": "natural gas", + "heating_system_fuel_2": "electricity", + "heating_system_heating_capacity": "64000.0", + "heating_system_heating_capacity_2": "auto", + "heating_system_heating_efficiency": 0.92, + "heating_system_heating_efficiency_2": 1.0, + "heating_system_type": "Furnace", + "heating_system_type_2": "none", + "holiday_lighting_daily_kwh": "auto", + "holiday_lighting_period_begin_day_of_month": "auto", + "holiday_lighting_period_begin_month": "auto", + "holiday_lighting_period_end_day_of_month": "auto", + "holiday_lighting_period_end_month": "auto", + "holiday_lighting_present": false, + "hot_tub_heater_annual_kwh": "auto", + "hot_tub_heater_annual_therm": "auto", + "hot_tub_heater_type": "electric resistance", + "hot_tub_heater_usage_multiplier": 1.0, + "hot_tub_present": false, + "hot_tub_pump_annual_kwh": "auto", + "hot_tub_pump_usage_multiplier": 1.0, + "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base-hvac-install-quality-all-furnace-gas-central-ac-var-speed.xml", + "kitchen_fans_quantity": "0", + "lighting_fraction_cfl_exterior": 0.4, + "lighting_fraction_cfl_garage": 0.4, + "lighting_fraction_cfl_interior": 0.4, + "lighting_fraction_led_exterior": 0.25, + "lighting_fraction_led_garage": 0.25, + "lighting_fraction_led_interior": 0.25, + "lighting_fraction_lfl_exterior": 0.1, + "lighting_fraction_lfl_garage": 0.1, + "lighting_fraction_lfl_interior": 0.1, + "lighting_usage_multiplier_exterior": 1.0, + "lighting_usage_multiplier_garage": 1.0, + "lighting_usage_multiplier_interior": 1.0, + "mech_vent_fan_power": 30, + "mech_vent_fan_power_2": 30, + "mech_vent_fan_type": "none", + "mech_vent_fan_type_2": "none", + "mech_vent_flow_rate": 110, + "mech_vent_flow_rate_2": 110, + "mech_vent_hours_in_operation": 24, + "mech_vent_hours_in_operation_2": 24, + "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", + "mech_vent_sensible_recovery_efficiency": 0.72, + "mech_vent_sensible_recovery_efficiency_2": 0.72, + "mech_vent_total_recovery_efficiency": 0.48, + "mech_vent_total_recovery_efficiency_2": 0.48, + "neighbor_back_distance": 0, + "neighbor_back_height": "auto", + "neighbor_front_distance": 0, + "neighbor_front_height": "auto", + "neighbor_left_distance": 0, + "neighbor_left_height": "auto", + "neighbor_right_distance": 0, + "neighbor_right_height": "auto", + "overhangs_back_depth": 0, + "overhangs_back_distance_to_top_of_window": 0, + "overhangs_front_depth": 0, + "overhangs_front_distance_to_top_of_window": 0, + "overhangs_left_depth": 0, + "overhangs_left_distance_to_top_of_window": 0, + "overhangs_right_depth": 0, + "overhangs_right_distance_to_top_of_window": 0, + "plug_loads_other_annual_kwh": "2457.0", + "plug_loads_other_frac_latent": "0.045", + "plug_loads_other_frac_sensible": "0.855", + "plug_loads_other_usage_multiplier": 1.0, + "plug_loads_television_annual_kwh": "620.0", + "plug_loads_television_usage_multiplier": 1.0, + "plug_loads_vehicle_annual_kwh": "auto", + "plug_loads_vehicle_present": false, + "plug_loads_vehicle_usage_multiplier": 0.0, + "plug_loads_well_pump_annual_kwh": "auto", + "plug_loads_well_pump_present": false, + "plug_loads_well_pump_usage_multiplier": 0.0, + "pool_heater_annual_kwh": "auto", + "pool_heater_annual_therm": "auto", + "pool_heater_type": "electric resistance", + "pool_heater_usage_multiplier": 1.0, + "pool_present": false, + "pool_pump_annual_kwh": "auto", + "pool_pump_usage_multiplier": 1.0, + "pv_system_array_azimuth_1": 180, + "pv_system_array_azimuth_2": 180, + "pv_system_array_tilt_1": "20", + "pv_system_array_tilt_2": "20", + "pv_system_inverter_efficiency_1": 0.96, + "pv_system_inverter_efficiency_2": 0.96, + "pv_system_location_1": "auto", + "pv_system_location_2": "auto", + "pv_system_max_power_output_1": 4000, + "pv_system_max_power_output_2": 4000, + "pv_system_module_type_1": "none", + "pv_system_module_type_2": "none", + "pv_system_num_units_served_1": 1, + "pv_system_num_units_served_2": 1, + "pv_system_system_losses_fraction_1": 0.14, + "pv_system_system_losses_fraction_2": 0.14, + "pv_system_tracking_1": "auto", + "pv_system_tracking_2": "auto", + "refrigerator_location": "living space", + "refrigerator_rated_annual_kwh": "650.0", + "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, + "roof_assembly_r": 2.3, + "roof_color": "medium", + "roof_material_type": "asphalt or fiberglass shingles", + "roof_radiant_barrier": false, + "roof_radiant_barrier_grade": "1", + "schedules_type": "default", + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", + "simulation_control_timestep": "60", + "site_type": "suburban", + "skylight_area_back": 0, + "skylight_area_front": 0, + "skylight_area_left": 0, + "skylight_area_right": 0, + "skylight_shgc": 0.45, + "skylight_ufactor": 0.33, + "slab_carpet_fraction": "0.0", + "slab_carpet_r": "0.0", + "slab_perimeter_depth": 0, + "slab_perimeter_insulation_r": 0, + "slab_thickness": "4.0", + "slab_under_insulation_r": 0, + "slab_under_width": 0, + "solar_thermal_collector_area": 40.0, + "solar_thermal_collector_azimuth": 180, + "solar_thermal_collector_loop_type": "liquid direct", + "solar_thermal_collector_rated_optical_efficiency": 0.5, + "solar_thermal_collector_rated_thermal_losses": 0.2799, + "solar_thermal_collector_tilt": "20", + "solar_thermal_collector_type": "evacuated tube", + "solar_thermal_solar_fraction": 0, + "solar_thermal_storage_volume": "auto", + "solar_thermal_system_type": "none", + "wall_assembly_r": 23, + "wall_color": "medium", + "wall_siding_type": "wood siding", + "wall_type": "WoodStud", + "water_fixtures_shower_low_flow": true, + "water_fixtures_sink_low_flow": false, + "water_fixtures_usage_multiplier": 1.0, + "water_heater_efficiency": 0.95, + "water_heater_efficiency_type": "EnergyFactor", + "water_heater_fuel_type": "electricity", + "water_heater_jacket_rvalue": 0, + "water_heater_location": "living space", + "water_heater_num_units_served": 1, + "water_heater_recovery_efficiency": "0.76", + "water_heater_setpoint_temperature": "125", + "water_heater_standby_loss": 0, + "water_heater_tank_volume": "40", + "water_heater_type": "storage water heater", + "weather_station_epw_filepath": "USA_CO_Denver.Intl.AP.725650_TMY3.epw", + "whole_house_fan_flow_rate": 4500, + "whole_house_fan_power": 300, + "whole_house_fan_present": false, + "window_area_back": 108.0, + "window_area_front": 108.0, + "window_area_left": 72.0, + "window_area_right": 72.0, + "window_aspect_ratio": 1.333, + "window_back_wwr": 0, + "window_fraction_operable": 0.67, + "window_front_wwr": 0, + "window_interior_shading_summer": 0.7, + "window_interior_shading_winter": 0.85, + "window_left_wwr": 0, + "window_right_wwr": 0, + "window_shgc": 0.45, + "window_ufactor": 0.33 + }, + "measure_dir_name": "BuildResidentialHPXML" + } + ] +} \ No newline at end of file diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-install-quality-all-furnace-gas-only.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-install-quality-all-furnace-gas-only.osw new file mode 100644 index 00000000..fd1116f0 --- /dev/null +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-install-quality-all-furnace-gas-only.osw @@ -0,0 +1,338 @@ +{ + "measure_paths": [ + "../.." + ], + "steps": [ + { + "arguments": { + "air_leakage_house_pressure": 50, + "air_leakage_shielding_of_home": "auto", + "air_leakage_units": "ACH", + "air_leakage_value": 3, + "bathroom_fans_quantity": "0", + "ceiling_assembly_r": 39.3, + "ceiling_fan_cooling_setpoint_temp_offset": 0, + "ceiling_fan_efficiency": "auto", + "ceiling_fan_present": false, + "ceiling_fan_quantity": "auto", + "clothes_dryer_efficiency": "3.73", + "clothes_dryer_efficiency_type": "CombinedEnergyFactor", + "clothes_dryer_fuel_type": "electricity", + "clothes_dryer_location": "living space", + "clothes_dryer_usage_multiplier": 1.0, + "clothes_dryer_vented_flow_rate": "150.0", + "clothes_washer_capacity": "3.2", + "clothes_washer_efficiency": "1.21", + "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", + "clothes_washer_label_annual_gas_cost": "27.0", + "clothes_washer_label_electric_rate": "0.12", + "clothes_washer_label_gas_rate": "1.09", + "clothes_washer_label_usage": "6.0", + "clothes_washer_location": "living space", + "clothes_washer_rated_annual_kwh": "380.0", + "clothes_washer_usage_multiplier": 1.0, + "cooking_range_oven_fuel_type": "electricity", + "cooking_range_oven_is_convection": false, + "cooking_range_oven_is_induction": false, + "cooking_range_oven_location": "living space", + "cooking_range_oven_usage_multiplier": 1.0, + "cooling_system_cooling_capacity": "48000.0", + "cooling_system_cooling_compressor_type": "single stage", + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", + "cooling_system_cooling_sensible_heat_fraction": 0.73, + "cooling_system_fraction_cool_load_served": 1, + "cooling_system_is_ducted": false, + "cooling_system_type": "none", + "dehumidifier_capacity": 40, + "dehumidifier_efficiency": 1.8, + "dehumidifier_efficiency_type": "EnergyFactor", + "dehumidifier_fraction_dehumidification_load_served": 1, + "dehumidifier_rh_setpoint": 0.5, + "dehumidifier_type": "none", + "dhw_distribution_pipe_r": "0.0", + "dhw_distribution_recirc_branch_piping_length": "50", + "dhw_distribution_recirc_control_type": "no control", + "dhw_distribution_recirc_piping_length": "50", + "dhw_distribution_recirc_pump_power": "50", + "dhw_distribution_standard_piping_length": "50", + "dhw_distribution_system_type": "Standard", + "dishwasher_efficiency": "307", + "dishwasher_efficiency_type": "RatedAnnualkWh", + "dishwasher_label_annual_gas_cost": "22.32", + "dishwasher_label_electric_rate": "0.12", + "dishwasher_label_gas_rate": "1.09", + "dishwasher_label_usage": "4.0", + "dishwasher_location": "living space", + "dishwasher_place_setting_capacity": "12", + "dishwasher_usage_multiplier": 1.0, + "door_area": 80.0, + "door_rvalue": 4.4, + "ducts_number_of_return_registers": "2", + "ducts_return_insulation_r": 0.0, + "ducts_return_leakage_units": "CFM25", + "ducts_return_leakage_value": 25.0, + "ducts_return_location": "attic - unvented", + "ducts_return_surface_area": "50.0", + "ducts_supply_insulation_r": 4.0, + "ducts_supply_leakage_units": "CFM25", + "ducts_supply_leakage_value": 75.0, + "ducts_supply_location": "attic - unvented", + "ducts_supply_surface_area": "150.0", + "dwhr_efficiency": 0.55, + "dwhr_equal_flow": true, + "dwhr_facilities_connected": "none", + "extra_refrigerator_location": "none", + "extra_refrigerator_rated_annual_kwh": "auto", + "extra_refrigerator_usage_multiplier": 1.0, + "floor_assembly_r": 0, + "foundation_wall_insulation_distance_to_bottom": "auto", + "foundation_wall_insulation_distance_to_top": 0.0, + "foundation_wall_insulation_r": 8.9, + "foundation_wall_thickness": "8.0", + "freezer_location": "none", + "freezer_rated_annual_kwh": "auto", + "freezer_usage_multiplier": 1.0, + "fuel_loads_fireplace_annual_therm": "auto", + "fuel_loads_fireplace_frac_latent": "auto", + "fuel_loads_fireplace_frac_sensible": "auto", + "fuel_loads_fireplace_fuel_type": "natural gas", + "fuel_loads_fireplace_present": false, + "fuel_loads_fireplace_usage_multiplier": 0.0, + "fuel_loads_grill_annual_therm": "auto", + "fuel_loads_grill_fuel_type": "natural gas", + "fuel_loads_grill_present": false, + "fuel_loads_grill_usage_multiplier": 0.0, + "fuel_loads_lighting_annual_therm": "auto", + "fuel_loads_lighting_fuel_type": "natural gas", + "fuel_loads_lighting_present": false, + "fuel_loads_lighting_usage_multiplier": 0.0, + "geometry_aspect_ratio": 1.5, + "geometry_attic_type": "UnventedAttic", + "geometry_balcony_depth": 0.0, + "geometry_cfa": 2700.0, + "geometry_corridor_position": "Double-Loaded Interior", + "geometry_corridor_width": 10.0, + "geometry_eaves_depth": 0, + "geometry_foundation_height": 8.0, + "geometry_foundation_height_above_grade": 1.0, + "geometry_foundation_type": "ConditionedBasement", + "geometry_garage_depth": 20.0, + "geometry_garage_position": "Right", + "geometry_garage_protrusion": 0.0, + "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", + "geometry_inset_depth": 0.0, + "geometry_inset_position": "Right", + "geometry_inset_width": 0.0, + "geometry_num_bathrooms": "2", + "geometry_num_bedrooms": 3, + "geometry_num_floors_above_grade": 1, + "geometry_num_occupants": "3", + "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, + "geometry_roof_pitch": "6:12", + "geometry_roof_type": "gable", + "geometry_unit_type": "single-family detached", + "geometry_wall_height": 8.0, + "heat_pump_backup_fuel": "none", + "heat_pump_backup_heating_capacity": "34121.0", + "heat_pump_backup_heating_efficiency": 1, + "heat_pump_cooling_capacity": "48000.0", + "heat_pump_cooling_compressor_type": "single stage", + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", + "heat_pump_cooling_sensible_heat_fraction": 0.73, + "heat_pump_fraction_cool_load_served": 1, + "heat_pump_fraction_heat_load_served": 1, + "heat_pump_heating_capacity": "64000.0", + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", + "heat_pump_type": "none", + "heating_system_airflow_defect_ratio": -0.25, + "heating_system_fraction_heat_load_served": 1, + "heating_system_fraction_heat_load_served_2": 0.25, + "heating_system_fuel": "natural gas", + "heating_system_fuel_2": "electricity", + "heating_system_heating_capacity": "64000.0", + "heating_system_heating_capacity_2": "auto", + "heating_system_heating_efficiency": 0.92, + "heating_system_heating_efficiency_2": 1.0, + "heating_system_type": "Furnace", + "heating_system_type_2": "none", + "holiday_lighting_daily_kwh": "auto", + "holiday_lighting_period_begin_day_of_month": "auto", + "holiday_lighting_period_begin_month": "auto", + "holiday_lighting_period_end_day_of_month": "auto", + "holiday_lighting_period_end_month": "auto", + "holiday_lighting_present": false, + "hot_tub_heater_annual_kwh": "auto", + "hot_tub_heater_annual_therm": "auto", + "hot_tub_heater_type": "electric resistance", + "hot_tub_heater_usage_multiplier": 1.0, + "hot_tub_present": false, + "hot_tub_pump_annual_kwh": "auto", + "hot_tub_pump_usage_multiplier": 1.0, + "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base-hvac-install-quality-all-furnace-gas-only.xml", + "kitchen_fans_quantity": "0", + "lighting_fraction_cfl_exterior": 0.4, + "lighting_fraction_cfl_garage": 0.4, + "lighting_fraction_cfl_interior": 0.4, + "lighting_fraction_led_exterior": 0.25, + "lighting_fraction_led_garage": 0.25, + "lighting_fraction_led_interior": 0.25, + "lighting_fraction_lfl_exterior": 0.1, + "lighting_fraction_lfl_garage": 0.1, + "lighting_fraction_lfl_interior": 0.1, + "lighting_usage_multiplier_exterior": 1.0, + "lighting_usage_multiplier_garage": 1.0, + "lighting_usage_multiplier_interior": 1.0, + "mech_vent_fan_power": 30, + "mech_vent_fan_power_2": 30, + "mech_vent_fan_type": "none", + "mech_vent_fan_type_2": "none", + "mech_vent_flow_rate": 110, + "mech_vent_flow_rate_2": 110, + "mech_vent_hours_in_operation": 24, + "mech_vent_hours_in_operation_2": 24, + "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", + "mech_vent_sensible_recovery_efficiency": 0.72, + "mech_vent_sensible_recovery_efficiency_2": 0.72, + "mech_vent_total_recovery_efficiency": 0.48, + "mech_vent_total_recovery_efficiency_2": 0.48, + "neighbor_back_distance": 0, + "neighbor_back_height": "auto", + "neighbor_front_distance": 0, + "neighbor_front_height": "auto", + "neighbor_left_distance": 0, + "neighbor_left_height": "auto", + "neighbor_right_distance": 0, + "neighbor_right_height": "auto", + "overhangs_back_depth": 0, + "overhangs_back_distance_to_top_of_window": 0, + "overhangs_front_depth": 0, + "overhangs_front_distance_to_top_of_window": 0, + "overhangs_left_depth": 0, + "overhangs_left_distance_to_top_of_window": 0, + "overhangs_right_depth": 0, + "overhangs_right_distance_to_top_of_window": 0, + "plug_loads_other_annual_kwh": "2457.0", + "plug_loads_other_frac_latent": "0.045", + "plug_loads_other_frac_sensible": "0.855", + "plug_loads_other_usage_multiplier": 1.0, + "plug_loads_television_annual_kwh": "620.0", + "plug_loads_television_usage_multiplier": 1.0, + "plug_loads_vehicle_annual_kwh": "auto", + "plug_loads_vehicle_present": false, + "plug_loads_vehicle_usage_multiplier": 0.0, + "plug_loads_well_pump_annual_kwh": "auto", + "plug_loads_well_pump_present": false, + "plug_loads_well_pump_usage_multiplier": 0.0, + "pool_heater_annual_kwh": "auto", + "pool_heater_annual_therm": "auto", + "pool_heater_type": "electric resistance", + "pool_heater_usage_multiplier": 1.0, + "pool_present": false, + "pool_pump_annual_kwh": "auto", + "pool_pump_usage_multiplier": 1.0, + "pv_system_array_azimuth_1": 180, + "pv_system_array_azimuth_2": 180, + "pv_system_array_tilt_1": "20", + "pv_system_array_tilt_2": "20", + "pv_system_inverter_efficiency_1": 0.96, + "pv_system_inverter_efficiency_2": 0.96, + "pv_system_location_1": "auto", + "pv_system_location_2": "auto", + "pv_system_max_power_output_1": 4000, + "pv_system_max_power_output_2": 4000, + "pv_system_module_type_1": "none", + "pv_system_module_type_2": "none", + "pv_system_num_units_served_1": 1, + "pv_system_num_units_served_2": 1, + "pv_system_system_losses_fraction_1": 0.14, + "pv_system_system_losses_fraction_2": 0.14, + "pv_system_tracking_1": "auto", + "pv_system_tracking_2": "auto", + "refrigerator_location": "living space", + "refrigerator_rated_annual_kwh": "650.0", + "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, + "roof_assembly_r": 2.3, + "roof_color": "medium", + "roof_material_type": "asphalt or fiberglass shingles", + "roof_radiant_barrier": false, + "roof_radiant_barrier_grade": "1", + "schedules_type": "default", + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", + "simulation_control_timestep": "60", + "site_type": "suburban", + "skylight_area_back": 0, + "skylight_area_front": 0, + "skylight_area_left": 0, + "skylight_area_right": 0, + "skylight_shgc": 0.45, + "skylight_ufactor": 0.33, + "slab_carpet_fraction": "0.0", + "slab_carpet_r": "0.0", + "slab_perimeter_depth": 0, + "slab_perimeter_insulation_r": 0, + "slab_thickness": "4.0", + "slab_under_insulation_r": 0, + "slab_under_width": 0, + "solar_thermal_collector_area": 40.0, + "solar_thermal_collector_azimuth": 180, + "solar_thermal_collector_loop_type": "liquid direct", + "solar_thermal_collector_rated_optical_efficiency": 0.5, + "solar_thermal_collector_rated_thermal_losses": 0.2799, + "solar_thermal_collector_tilt": "20", + "solar_thermal_collector_type": "evacuated tube", + "solar_thermal_solar_fraction": 0, + "solar_thermal_storage_volume": "auto", + "solar_thermal_system_type": "none", + "wall_assembly_r": 23, + "wall_color": "medium", + "wall_siding_type": "wood siding", + "wall_type": "WoodStud", + "water_fixtures_shower_low_flow": true, + "water_fixtures_sink_low_flow": false, + "water_fixtures_usage_multiplier": 1.0, + "water_heater_efficiency": 0.95, + "water_heater_efficiency_type": "EnergyFactor", + "water_heater_fuel_type": "electricity", + "water_heater_jacket_rvalue": 0, + "water_heater_location": "living space", + "water_heater_num_units_served": 1, + "water_heater_recovery_efficiency": "0.76", + "water_heater_setpoint_temperature": "125", + "water_heater_standby_loss": 0, + "water_heater_tank_volume": "40", + "water_heater_type": "storage water heater", + "weather_station_epw_filepath": "USA_CO_Denver.Intl.AP.725650_TMY3.epw", + "whole_house_fan_flow_rate": 4500, + "whole_house_fan_power": 300, + "whole_house_fan_present": false, + "window_area_back": 108.0, + "window_area_front": 108.0, + "window_area_left": 72.0, + "window_area_right": 72.0, + "window_aspect_ratio": 1.333, + "window_back_wwr": 0, + "window_fraction_operable": 0.67, + "window_front_wwr": 0, + "window_interior_shading_summer": 0.7, + "window_interior_shading_winter": 0.85, + "window_left_wwr": 0, + "window_right_wwr": 0, + "window_shgc": 0.45, + "window_ufactor": 0.33 + }, + "measure_dir_name": "BuildResidentialHPXML" + } + ] +} \ No newline at end of file diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-install-quality-all-ground-to-air-heat-pump.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-install-quality-all-ground-to-air-heat-pump.osw new file mode 100644 index 00000000..a25da796 --- /dev/null +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-install-quality-all-ground-to-air-heat-pump.osw @@ -0,0 +1,338 @@ +{ + "measure_paths": [ + "../.." + ], + "steps": [ + { + "arguments": { + "air_leakage_house_pressure": 50, + "air_leakage_shielding_of_home": "auto", + "air_leakage_units": "ACH", + "air_leakage_value": 3, + "bathroom_fans_quantity": "0", + "ceiling_assembly_r": 39.3, + "ceiling_fan_cooling_setpoint_temp_offset": 0, + "ceiling_fan_efficiency": "auto", + "ceiling_fan_present": false, + "ceiling_fan_quantity": "auto", + "clothes_dryer_efficiency": "3.73", + "clothes_dryer_efficiency_type": "CombinedEnergyFactor", + "clothes_dryer_fuel_type": "electricity", + "clothes_dryer_location": "living space", + "clothes_dryer_usage_multiplier": 1.0, + "clothes_dryer_vented_flow_rate": "150.0", + "clothes_washer_capacity": "3.2", + "clothes_washer_efficiency": "1.21", + "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", + "clothes_washer_label_annual_gas_cost": "27.0", + "clothes_washer_label_electric_rate": "0.12", + "clothes_washer_label_gas_rate": "1.09", + "clothes_washer_label_usage": "6.0", + "clothes_washer_location": "living space", + "clothes_washer_rated_annual_kwh": "380.0", + "clothes_washer_usage_multiplier": 1.0, + "cooking_range_oven_fuel_type": "electricity", + "cooking_range_oven_is_convection": false, + "cooking_range_oven_is_induction": false, + "cooking_range_oven_location": "living space", + "cooking_range_oven_usage_multiplier": 1.0, + "cooling_system_cooling_capacity": "48000.0", + "cooling_system_cooling_compressor_type": "single stage", + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", + "cooling_system_cooling_sensible_heat_fraction": 0.73, + "cooling_system_fraction_cool_load_served": 1, + "cooling_system_is_ducted": false, + "cooling_system_type": "none", + "dehumidifier_capacity": 40, + "dehumidifier_efficiency": 1.8, + "dehumidifier_efficiency_type": "EnergyFactor", + "dehumidifier_fraction_dehumidification_load_served": 1, + "dehumidifier_rh_setpoint": 0.5, + "dehumidifier_type": "none", + "dhw_distribution_pipe_r": "0.0", + "dhw_distribution_recirc_branch_piping_length": "50", + "dhw_distribution_recirc_control_type": "no control", + "dhw_distribution_recirc_piping_length": "50", + "dhw_distribution_recirc_pump_power": "50", + "dhw_distribution_standard_piping_length": "50", + "dhw_distribution_system_type": "Standard", + "dishwasher_efficiency": "307", + "dishwasher_efficiency_type": "RatedAnnualkWh", + "dishwasher_label_annual_gas_cost": "22.32", + "dishwasher_label_electric_rate": "0.12", + "dishwasher_label_gas_rate": "1.09", + "dishwasher_label_usage": "4.0", + "dishwasher_location": "living space", + "dishwasher_place_setting_capacity": "12", + "dishwasher_usage_multiplier": 1.0, + "door_area": 80.0, + "door_rvalue": 4.4, + "ducts_number_of_return_registers": "2", + "ducts_return_insulation_r": 0.0, + "ducts_return_leakage_units": "CFM25", + "ducts_return_leakage_value": 25.0, + "ducts_return_location": "attic - unvented", + "ducts_return_surface_area": "50.0", + "ducts_supply_insulation_r": 4.0, + "ducts_supply_leakage_units": "CFM25", + "ducts_supply_leakage_value": 75.0, + "ducts_supply_location": "attic - unvented", + "ducts_supply_surface_area": "150.0", + "dwhr_efficiency": 0.55, + "dwhr_equal_flow": true, + "dwhr_facilities_connected": "none", + "extra_refrigerator_location": "none", + "extra_refrigerator_rated_annual_kwh": "auto", + "extra_refrigerator_usage_multiplier": 1.0, + "floor_assembly_r": 0, + "foundation_wall_insulation_distance_to_bottom": "auto", + "foundation_wall_insulation_distance_to_top": 0.0, + "foundation_wall_insulation_r": 8.9, + "foundation_wall_thickness": "8.0", + "freezer_location": "none", + "freezer_rated_annual_kwh": "auto", + "freezer_usage_multiplier": 1.0, + "fuel_loads_fireplace_annual_therm": "auto", + "fuel_loads_fireplace_frac_latent": "auto", + "fuel_loads_fireplace_frac_sensible": "auto", + "fuel_loads_fireplace_fuel_type": "natural gas", + "fuel_loads_fireplace_present": false, + "fuel_loads_fireplace_usage_multiplier": 0.0, + "fuel_loads_grill_annual_therm": "auto", + "fuel_loads_grill_fuel_type": "natural gas", + "fuel_loads_grill_present": false, + "fuel_loads_grill_usage_multiplier": 0.0, + "fuel_loads_lighting_annual_therm": "auto", + "fuel_loads_lighting_fuel_type": "natural gas", + "fuel_loads_lighting_present": false, + "fuel_loads_lighting_usage_multiplier": 0.0, + "geometry_aspect_ratio": 1.5, + "geometry_attic_type": "UnventedAttic", + "geometry_balcony_depth": 0.0, + "geometry_cfa": 2700.0, + "geometry_corridor_position": "Double-Loaded Interior", + "geometry_corridor_width": 10.0, + "geometry_eaves_depth": 0, + "geometry_foundation_height": 8.0, + "geometry_foundation_height_above_grade": 1.0, + "geometry_foundation_type": "ConditionedBasement", + "geometry_garage_depth": 20.0, + "geometry_garage_position": "Right", + "geometry_garage_protrusion": 0.0, + "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", + "geometry_inset_depth": 0.0, + "geometry_inset_position": "Right", + "geometry_inset_width": 0.0, + "geometry_num_bathrooms": "2", + "geometry_num_bedrooms": 3, + "geometry_num_floors_above_grade": 1, + "geometry_num_occupants": "3", + "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, + "geometry_roof_pitch": "6:12", + "geometry_roof_type": "gable", + "geometry_unit_type": "single-family detached", + "geometry_wall_height": 8.0, + "heat_pump_airflow_defect_ratio": -0.25, + "heat_pump_backup_fuel": "electricity", + "heat_pump_backup_heating_capacity": "34121.0", + "heat_pump_backup_heating_efficiency": 1, + "heat_pump_charge_defect_ratio": 0.0, + "heat_pump_cooling_capacity": "48000.0", + "heat_pump_cooling_efficiency": 16.6, + "heat_pump_cooling_efficiency_type": "EER", + "heat_pump_cooling_sensible_heat_fraction": 0.73, + "heat_pump_fraction_cool_load_served": 1, + "heat_pump_fraction_heat_load_served": 1, + "heat_pump_heating_capacity": "42000.0", + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 3.6, + "heat_pump_heating_efficiency_type": "COP", + "heat_pump_type": "ground-to-air", + "heating_system_fraction_heat_load_served": 1, + "heating_system_fraction_heat_load_served_2": 0.25, + "heating_system_fuel": "natural gas", + "heating_system_fuel_2": "electricity", + "heating_system_heating_capacity": "64000.0", + "heating_system_heating_capacity_2": "auto", + "heating_system_heating_efficiency": 0.92, + "heating_system_heating_efficiency_2": 1.0, + "heating_system_type": "none", + "heating_system_type_2": "none", + "holiday_lighting_daily_kwh": "auto", + "holiday_lighting_period_begin_day_of_month": "auto", + "holiday_lighting_period_begin_month": "auto", + "holiday_lighting_period_end_day_of_month": "auto", + "holiday_lighting_period_end_month": "auto", + "holiday_lighting_present": false, + "hot_tub_heater_annual_kwh": "auto", + "hot_tub_heater_annual_therm": "auto", + "hot_tub_heater_type": "electric resistance", + "hot_tub_heater_usage_multiplier": 1.0, + "hot_tub_present": false, + "hot_tub_pump_annual_kwh": "auto", + "hot_tub_pump_usage_multiplier": 1.0, + "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base-hvac-install-quality-all-ground-to-air-heat-pump.xml", + "kitchen_fans_quantity": "0", + "lighting_fraction_cfl_exterior": 0.4, + "lighting_fraction_cfl_garage": 0.4, + "lighting_fraction_cfl_interior": 0.4, + "lighting_fraction_led_exterior": 0.25, + "lighting_fraction_led_garage": 0.25, + "lighting_fraction_led_interior": 0.25, + "lighting_fraction_lfl_exterior": 0.1, + "lighting_fraction_lfl_garage": 0.1, + "lighting_fraction_lfl_interior": 0.1, + "lighting_usage_multiplier_exterior": 1.0, + "lighting_usage_multiplier_garage": 1.0, + "lighting_usage_multiplier_interior": 1.0, + "mech_vent_fan_power": 30, + "mech_vent_fan_power_2": 30, + "mech_vent_fan_type": "none", + "mech_vent_fan_type_2": "none", + "mech_vent_flow_rate": 110, + "mech_vent_flow_rate_2": 110, + "mech_vent_hours_in_operation": 24, + "mech_vent_hours_in_operation_2": 24, + "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", + "mech_vent_sensible_recovery_efficiency": 0.72, + "mech_vent_sensible_recovery_efficiency_2": 0.72, + "mech_vent_total_recovery_efficiency": 0.48, + "mech_vent_total_recovery_efficiency_2": 0.48, + "neighbor_back_distance": 0, + "neighbor_back_height": "auto", + "neighbor_front_distance": 0, + "neighbor_front_height": "auto", + "neighbor_left_distance": 0, + "neighbor_left_height": "auto", + "neighbor_right_distance": 0, + "neighbor_right_height": "auto", + "overhangs_back_depth": 0, + "overhangs_back_distance_to_top_of_window": 0, + "overhangs_front_depth": 0, + "overhangs_front_distance_to_top_of_window": 0, + "overhangs_left_depth": 0, + "overhangs_left_distance_to_top_of_window": 0, + "overhangs_right_depth": 0, + "overhangs_right_distance_to_top_of_window": 0, + "plug_loads_other_annual_kwh": "2457.0", + "plug_loads_other_frac_latent": "0.045", + "plug_loads_other_frac_sensible": "0.855", + "plug_loads_other_usage_multiplier": 1.0, + "plug_loads_television_annual_kwh": "620.0", + "plug_loads_television_usage_multiplier": 1.0, + "plug_loads_vehicle_annual_kwh": "auto", + "plug_loads_vehicle_present": false, + "plug_loads_vehicle_usage_multiplier": 0.0, + "plug_loads_well_pump_annual_kwh": "auto", + "plug_loads_well_pump_present": false, + "plug_loads_well_pump_usage_multiplier": 0.0, + "pool_heater_annual_kwh": "auto", + "pool_heater_annual_therm": "auto", + "pool_heater_type": "electric resistance", + "pool_heater_usage_multiplier": 1.0, + "pool_present": false, + "pool_pump_annual_kwh": "auto", + "pool_pump_usage_multiplier": 1.0, + "pv_system_array_azimuth_1": 180, + "pv_system_array_azimuth_2": 180, + "pv_system_array_tilt_1": "20", + "pv_system_array_tilt_2": "20", + "pv_system_inverter_efficiency_1": 0.96, + "pv_system_inverter_efficiency_2": 0.96, + "pv_system_location_1": "auto", + "pv_system_location_2": "auto", + "pv_system_max_power_output_1": 4000, + "pv_system_max_power_output_2": 4000, + "pv_system_module_type_1": "none", + "pv_system_module_type_2": "none", + "pv_system_num_units_served_1": 1, + "pv_system_num_units_served_2": 1, + "pv_system_system_losses_fraction_1": 0.14, + "pv_system_system_losses_fraction_2": 0.14, + "pv_system_tracking_1": "auto", + "pv_system_tracking_2": "auto", + "refrigerator_location": "living space", + "refrigerator_rated_annual_kwh": "650.0", + "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, + "roof_assembly_r": 2.3, + "roof_color": "medium", + "roof_material_type": "asphalt or fiberglass shingles", + "roof_radiant_barrier": false, + "roof_radiant_barrier_grade": "1", + "schedules_type": "default", + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", + "simulation_control_timestep": "60", + "site_type": "suburban", + "skylight_area_back": 0, + "skylight_area_front": 0, + "skylight_area_left": 0, + "skylight_area_right": 0, + "skylight_shgc": 0.45, + "skylight_ufactor": 0.33, + "slab_carpet_fraction": "0.0", + "slab_carpet_r": "0.0", + "slab_perimeter_depth": 0, + "slab_perimeter_insulation_r": 0, + "slab_thickness": "4.0", + "slab_under_insulation_r": 0, + "slab_under_width": 0, + "solar_thermal_collector_area": 40.0, + "solar_thermal_collector_azimuth": 180, + "solar_thermal_collector_loop_type": "liquid direct", + "solar_thermal_collector_rated_optical_efficiency": 0.5, + "solar_thermal_collector_rated_thermal_losses": 0.2799, + "solar_thermal_collector_tilt": "20", + "solar_thermal_collector_type": "evacuated tube", + "solar_thermal_solar_fraction": 0, + "solar_thermal_storage_volume": "auto", + "solar_thermal_system_type": "none", + "wall_assembly_r": 23, + "wall_color": "medium", + "wall_siding_type": "wood siding", + "wall_type": "WoodStud", + "water_fixtures_shower_low_flow": true, + "water_fixtures_sink_low_flow": false, + "water_fixtures_usage_multiplier": 1.0, + "water_heater_efficiency": 0.95, + "water_heater_efficiency_type": "EnergyFactor", + "water_heater_fuel_type": "electricity", + "water_heater_jacket_rvalue": 0, + "water_heater_location": "living space", + "water_heater_num_units_served": 1, + "water_heater_recovery_efficiency": "0.76", + "water_heater_setpoint_temperature": "125", + "water_heater_standby_loss": 0, + "water_heater_tank_volume": "40", + "water_heater_type": "storage water heater", + "weather_station_epw_filepath": "USA_CO_Denver.Intl.AP.725650_TMY3.epw", + "whole_house_fan_flow_rate": 4500, + "whole_house_fan_power": 300, + "whole_house_fan_present": false, + "window_area_back": 108.0, + "window_area_front": 108.0, + "window_area_left": 72.0, + "window_area_right": 72.0, + "window_aspect_ratio": 1.333, + "window_back_wwr": 0, + "window_fraction_operable": 0.67, + "window_front_wwr": 0, + "window_interior_shading_summer": 0.7, + "window_interior_shading_winter": 0.85, + "window_left_wwr": 0, + "window_right_wwr": 0, + "window_shgc": 0.45, + "window_ufactor": 0.33 + }, + "measure_dir_name": "BuildResidentialHPXML" + } + ] +} \ No newline at end of file diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-install-quality-all-mini-split-air-conditioner-only-ducted.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-install-quality-all-mini-split-air-conditioner-only-ducted.osw new file mode 100644 index 00000000..3a3a0147 --- /dev/null +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-install-quality-all-mini-split-air-conditioner-only-ducted.osw @@ -0,0 +1,338 @@ +{ + "measure_paths": [ + "../.." + ], + "steps": [ + { + "arguments": { + "air_leakage_house_pressure": 50, + "air_leakage_shielding_of_home": "auto", + "air_leakage_units": "ACH", + "air_leakage_value": 3, + "bathroom_fans_quantity": "0", + "ceiling_assembly_r": 39.3, + "ceiling_fan_cooling_setpoint_temp_offset": 0, + "ceiling_fan_efficiency": "auto", + "ceiling_fan_present": false, + "ceiling_fan_quantity": "auto", + "clothes_dryer_efficiency": "3.73", + "clothes_dryer_efficiency_type": "CombinedEnergyFactor", + "clothes_dryer_fuel_type": "electricity", + "clothes_dryer_location": "living space", + "clothes_dryer_usage_multiplier": 1.0, + "clothes_dryer_vented_flow_rate": "150.0", + "clothes_washer_capacity": "3.2", + "clothes_washer_efficiency": "1.21", + "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", + "clothes_washer_label_annual_gas_cost": "27.0", + "clothes_washer_label_electric_rate": "0.12", + "clothes_washer_label_gas_rate": "1.09", + "clothes_washer_label_usage": "6.0", + "clothes_washer_location": "living space", + "clothes_washer_rated_annual_kwh": "380.0", + "clothes_washer_usage_multiplier": 1.0, + "cooking_range_oven_fuel_type": "electricity", + "cooking_range_oven_is_convection": false, + "cooking_range_oven_is_induction": false, + "cooking_range_oven_location": "living space", + "cooking_range_oven_usage_multiplier": 1.0, + "cooling_system_airflow_defect_ratio": -0.25, + "cooling_system_charge_defect_ratio": -0.25, + "cooling_system_cooling_capacity": "48000.0", + "cooling_system_cooling_efficiency": 19.0, + "cooling_system_cooling_efficiency_type": "SEER", + "cooling_system_cooling_sensible_heat_fraction": 0.73, + "cooling_system_fraction_cool_load_served": 1, + "cooling_system_is_ducted": true, + "cooling_system_type": "mini-split", + "dehumidifier_capacity": 40, + "dehumidifier_efficiency": 1.8, + "dehumidifier_efficiency_type": "EnergyFactor", + "dehumidifier_fraction_dehumidification_load_served": 1, + "dehumidifier_rh_setpoint": 0.5, + "dehumidifier_type": "none", + "dhw_distribution_pipe_r": "0.0", + "dhw_distribution_recirc_branch_piping_length": "50", + "dhw_distribution_recirc_control_type": "no control", + "dhw_distribution_recirc_piping_length": "50", + "dhw_distribution_recirc_pump_power": "50", + "dhw_distribution_standard_piping_length": "50", + "dhw_distribution_system_type": "Standard", + "dishwasher_efficiency": "307", + "dishwasher_efficiency_type": "RatedAnnualkWh", + "dishwasher_label_annual_gas_cost": "22.32", + "dishwasher_label_electric_rate": "0.12", + "dishwasher_label_gas_rate": "1.09", + "dishwasher_label_usage": "4.0", + "dishwasher_location": "living space", + "dishwasher_place_setting_capacity": "12", + "dishwasher_usage_multiplier": 1.0, + "door_area": 80.0, + "door_rvalue": 4.4, + "ducts_number_of_return_registers": "2", + "ducts_return_insulation_r": 0.0, + "ducts_return_leakage_units": "CFM25", + "ducts_return_leakage_value": 5.0, + "ducts_return_location": "attic - unvented", + "ducts_return_surface_area": "10.0", + "ducts_supply_insulation_r": 0.0, + "ducts_supply_leakage_units": "CFM25", + "ducts_supply_leakage_value": 15.0, + "ducts_supply_location": "attic - unvented", + "ducts_supply_surface_area": "30.0", + "dwhr_efficiency": 0.55, + "dwhr_equal_flow": true, + "dwhr_facilities_connected": "none", + "extra_refrigerator_location": "none", + "extra_refrigerator_rated_annual_kwh": "auto", + "extra_refrigerator_usage_multiplier": 1.0, + "floor_assembly_r": 0, + "foundation_wall_insulation_distance_to_bottom": "auto", + "foundation_wall_insulation_distance_to_top": 0.0, + "foundation_wall_insulation_r": 8.9, + "foundation_wall_thickness": "8.0", + "freezer_location": "none", + "freezer_rated_annual_kwh": "auto", + "freezer_usage_multiplier": 1.0, + "fuel_loads_fireplace_annual_therm": "auto", + "fuel_loads_fireplace_frac_latent": "auto", + "fuel_loads_fireplace_frac_sensible": "auto", + "fuel_loads_fireplace_fuel_type": "natural gas", + "fuel_loads_fireplace_present": false, + "fuel_loads_fireplace_usage_multiplier": 0.0, + "fuel_loads_grill_annual_therm": "auto", + "fuel_loads_grill_fuel_type": "natural gas", + "fuel_loads_grill_present": false, + "fuel_loads_grill_usage_multiplier": 0.0, + "fuel_loads_lighting_annual_therm": "auto", + "fuel_loads_lighting_fuel_type": "natural gas", + "fuel_loads_lighting_present": false, + "fuel_loads_lighting_usage_multiplier": 0.0, + "geometry_aspect_ratio": 1.5, + "geometry_attic_type": "UnventedAttic", + "geometry_balcony_depth": 0.0, + "geometry_cfa": 2700.0, + "geometry_corridor_position": "Double-Loaded Interior", + "geometry_corridor_width": 10.0, + "geometry_eaves_depth": 0, + "geometry_foundation_height": 8.0, + "geometry_foundation_height_above_grade": 1.0, + "geometry_foundation_type": "ConditionedBasement", + "geometry_garage_depth": 20.0, + "geometry_garage_position": "Right", + "geometry_garage_protrusion": 0.0, + "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", + "geometry_inset_depth": 0.0, + "geometry_inset_position": "Right", + "geometry_inset_width": 0.0, + "geometry_num_bathrooms": "2", + "geometry_num_bedrooms": 3, + "geometry_num_floors_above_grade": 1, + "geometry_num_occupants": "3", + "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, + "geometry_roof_pitch": "6:12", + "geometry_roof_type": "gable", + "geometry_unit_type": "single-family detached", + "geometry_wall_height": 8.0, + "heat_pump_backup_fuel": "none", + "heat_pump_backup_heating_capacity": "34121.0", + "heat_pump_backup_heating_efficiency": 1, + "heat_pump_cooling_capacity": "48000.0", + "heat_pump_cooling_compressor_type": "single stage", + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", + "heat_pump_cooling_sensible_heat_fraction": 0.73, + "heat_pump_fraction_cool_load_served": 1, + "heat_pump_fraction_heat_load_served": 1, + "heat_pump_heating_capacity": "64000.0", + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", + "heat_pump_type": "none", + "heating_system_fraction_heat_load_served": 1, + "heating_system_fraction_heat_load_served_2": 0.25, + "heating_system_fuel": "natural gas", + "heating_system_fuel_2": "electricity", + "heating_system_heating_capacity": "64000.0", + "heating_system_heating_capacity_2": "auto", + "heating_system_heating_efficiency": 0.92, + "heating_system_heating_efficiency_2": 1.0, + "heating_system_type": "none", + "heating_system_type_2": "none", + "holiday_lighting_daily_kwh": "auto", + "holiday_lighting_period_begin_day_of_month": "auto", + "holiday_lighting_period_begin_month": "auto", + "holiday_lighting_period_end_day_of_month": "auto", + "holiday_lighting_period_end_month": "auto", + "holiday_lighting_present": false, + "hot_tub_heater_annual_kwh": "auto", + "hot_tub_heater_annual_therm": "auto", + "hot_tub_heater_type": "electric resistance", + "hot_tub_heater_usage_multiplier": 1.0, + "hot_tub_present": false, + "hot_tub_pump_annual_kwh": "auto", + "hot_tub_pump_usage_multiplier": 1.0, + "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base-hvac-install-quality-all-mini-split-air-conditioner-only-ducted.xml", + "kitchen_fans_quantity": "0", + "lighting_fraction_cfl_exterior": 0.4, + "lighting_fraction_cfl_garage": 0.4, + "lighting_fraction_cfl_interior": 0.4, + "lighting_fraction_led_exterior": 0.25, + "lighting_fraction_led_garage": 0.25, + "lighting_fraction_led_interior": 0.25, + "lighting_fraction_lfl_exterior": 0.1, + "lighting_fraction_lfl_garage": 0.1, + "lighting_fraction_lfl_interior": 0.1, + "lighting_usage_multiplier_exterior": 1.0, + "lighting_usage_multiplier_garage": 1.0, + "lighting_usage_multiplier_interior": 1.0, + "mech_vent_fan_power": 30, + "mech_vent_fan_power_2": 30, + "mech_vent_fan_type": "none", + "mech_vent_fan_type_2": "none", + "mech_vent_flow_rate": 110, + "mech_vent_flow_rate_2": 110, + "mech_vent_hours_in_operation": 24, + "mech_vent_hours_in_operation_2": 24, + "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", + "mech_vent_sensible_recovery_efficiency": 0.72, + "mech_vent_sensible_recovery_efficiency_2": 0.72, + "mech_vent_total_recovery_efficiency": 0.48, + "mech_vent_total_recovery_efficiency_2": 0.48, + "neighbor_back_distance": 0, + "neighbor_back_height": "auto", + "neighbor_front_distance": 0, + "neighbor_front_height": "auto", + "neighbor_left_distance": 0, + "neighbor_left_height": "auto", + "neighbor_right_distance": 0, + "neighbor_right_height": "auto", + "overhangs_back_depth": 0, + "overhangs_back_distance_to_top_of_window": 0, + "overhangs_front_depth": 0, + "overhangs_front_distance_to_top_of_window": 0, + "overhangs_left_depth": 0, + "overhangs_left_distance_to_top_of_window": 0, + "overhangs_right_depth": 0, + "overhangs_right_distance_to_top_of_window": 0, + "plug_loads_other_annual_kwh": "2457.0", + "plug_loads_other_frac_latent": "0.045", + "plug_loads_other_frac_sensible": "0.855", + "plug_loads_other_usage_multiplier": 1.0, + "plug_loads_television_annual_kwh": "620.0", + "plug_loads_television_usage_multiplier": 1.0, + "plug_loads_vehicle_annual_kwh": "auto", + "plug_loads_vehicle_present": false, + "plug_loads_vehicle_usage_multiplier": 0.0, + "plug_loads_well_pump_annual_kwh": "auto", + "plug_loads_well_pump_present": false, + "plug_loads_well_pump_usage_multiplier": 0.0, + "pool_heater_annual_kwh": "auto", + "pool_heater_annual_therm": "auto", + "pool_heater_type": "electric resistance", + "pool_heater_usage_multiplier": 1.0, + "pool_present": false, + "pool_pump_annual_kwh": "auto", + "pool_pump_usage_multiplier": 1.0, + "pv_system_array_azimuth_1": 180, + "pv_system_array_azimuth_2": 180, + "pv_system_array_tilt_1": "20", + "pv_system_array_tilt_2": "20", + "pv_system_inverter_efficiency_1": 0.96, + "pv_system_inverter_efficiency_2": 0.96, + "pv_system_location_1": "auto", + "pv_system_location_2": "auto", + "pv_system_max_power_output_1": 4000, + "pv_system_max_power_output_2": 4000, + "pv_system_module_type_1": "none", + "pv_system_module_type_2": "none", + "pv_system_num_units_served_1": 1, + "pv_system_num_units_served_2": 1, + "pv_system_system_losses_fraction_1": 0.14, + "pv_system_system_losses_fraction_2": 0.14, + "pv_system_tracking_1": "auto", + "pv_system_tracking_2": "auto", + "refrigerator_location": "living space", + "refrigerator_rated_annual_kwh": "650.0", + "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, + "roof_assembly_r": 2.3, + "roof_color": "medium", + "roof_material_type": "asphalt or fiberglass shingles", + "roof_radiant_barrier": false, + "roof_radiant_barrier_grade": "1", + "schedules_type": "default", + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", + "simulation_control_timestep": "60", + "site_type": "suburban", + "skylight_area_back": 0, + "skylight_area_front": 0, + "skylight_area_left": 0, + "skylight_area_right": 0, + "skylight_shgc": 0.45, + "skylight_ufactor": 0.33, + "slab_carpet_fraction": "0.0", + "slab_carpet_r": "0.0", + "slab_perimeter_depth": 0, + "slab_perimeter_insulation_r": 0, + "slab_thickness": "4.0", + "slab_under_insulation_r": 0, + "slab_under_width": 0, + "solar_thermal_collector_area": 40.0, + "solar_thermal_collector_azimuth": 180, + "solar_thermal_collector_loop_type": "liquid direct", + "solar_thermal_collector_rated_optical_efficiency": 0.5, + "solar_thermal_collector_rated_thermal_losses": 0.2799, + "solar_thermal_collector_tilt": "20", + "solar_thermal_collector_type": "evacuated tube", + "solar_thermal_solar_fraction": 0, + "solar_thermal_storage_volume": "auto", + "solar_thermal_system_type": "none", + "wall_assembly_r": 23, + "wall_color": "medium", + "wall_siding_type": "wood siding", + "wall_type": "WoodStud", + "water_fixtures_shower_low_flow": true, + "water_fixtures_sink_low_flow": false, + "water_fixtures_usage_multiplier": 1.0, + "water_heater_efficiency": 0.95, + "water_heater_efficiency_type": "EnergyFactor", + "water_heater_fuel_type": "electricity", + "water_heater_jacket_rvalue": 0, + "water_heater_location": "living space", + "water_heater_num_units_served": 1, + "water_heater_recovery_efficiency": "0.76", + "water_heater_setpoint_temperature": "125", + "water_heater_standby_loss": 0, + "water_heater_tank_volume": "40", + "water_heater_type": "storage water heater", + "weather_station_epw_filepath": "USA_CO_Denver.Intl.AP.725650_TMY3.epw", + "whole_house_fan_flow_rate": 4500, + "whole_house_fan_power": 300, + "whole_house_fan_present": false, + "window_area_back": 108.0, + "window_area_front": 108.0, + "window_area_left": 72.0, + "window_area_right": 72.0, + "window_aspect_ratio": 1.333, + "window_back_wwr": 0, + "window_fraction_operable": 0.67, + "window_front_wwr": 0, + "window_interior_shading_summer": 0.7, + "window_interior_shading_winter": 0.85, + "window_left_wwr": 0, + "window_right_wwr": 0, + "window_shgc": 0.45, + "window_ufactor": 0.33 + }, + "measure_dir_name": "BuildResidentialHPXML" + } + ] +} \ No newline at end of file diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-install-quality-all-mini-split-heat-pump-ducted.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-install-quality-all-mini-split-heat-pump-ducted.osw new file mode 100644 index 00000000..e2662668 --- /dev/null +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-install-quality-all-mini-split-heat-pump-ducted.osw @@ -0,0 +1,339 @@ +{ + "measure_paths": [ + "../.." + ], + "steps": [ + { + "arguments": { + "air_leakage_house_pressure": 50, + "air_leakage_shielding_of_home": "auto", + "air_leakage_units": "ACH", + "air_leakage_value": 3, + "bathroom_fans_quantity": "0", + "ceiling_assembly_r": 39.3, + "ceiling_fan_cooling_setpoint_temp_offset": 0, + "ceiling_fan_efficiency": "auto", + "ceiling_fan_present": false, + "ceiling_fan_quantity": "auto", + "clothes_dryer_efficiency": "3.73", + "clothes_dryer_efficiency_type": "CombinedEnergyFactor", + "clothes_dryer_fuel_type": "electricity", + "clothes_dryer_location": "living space", + "clothes_dryer_usage_multiplier": 1.0, + "clothes_dryer_vented_flow_rate": "150.0", + "clothes_washer_capacity": "3.2", + "clothes_washer_efficiency": "1.21", + "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", + "clothes_washer_label_annual_gas_cost": "27.0", + "clothes_washer_label_electric_rate": "0.12", + "clothes_washer_label_gas_rate": "1.09", + "clothes_washer_label_usage": "6.0", + "clothes_washer_location": "living space", + "clothes_washer_rated_annual_kwh": "380.0", + "clothes_washer_usage_multiplier": 1.0, + "cooking_range_oven_fuel_type": "electricity", + "cooking_range_oven_is_convection": false, + "cooking_range_oven_is_induction": false, + "cooking_range_oven_location": "living space", + "cooking_range_oven_usage_multiplier": 1.0, + "cooling_system_cooling_capacity": "48000.0", + "cooling_system_cooling_compressor_type": "single stage", + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", + "cooling_system_cooling_sensible_heat_fraction": 0.73, + "cooling_system_fraction_cool_load_served": 1, + "cooling_system_is_ducted": false, + "cooling_system_type": "none", + "dehumidifier_capacity": 40, + "dehumidifier_efficiency": 1.8, + "dehumidifier_efficiency_type": "EnergyFactor", + "dehumidifier_fraction_dehumidification_load_served": 1, + "dehumidifier_rh_setpoint": 0.5, + "dehumidifier_type": "none", + "dhw_distribution_pipe_r": "0.0", + "dhw_distribution_recirc_branch_piping_length": "50", + "dhw_distribution_recirc_control_type": "no control", + "dhw_distribution_recirc_piping_length": "50", + "dhw_distribution_recirc_pump_power": "50", + "dhw_distribution_standard_piping_length": "50", + "dhw_distribution_system_type": "Standard", + "dishwasher_efficiency": "307", + "dishwasher_efficiency_type": "RatedAnnualkWh", + "dishwasher_label_annual_gas_cost": "22.32", + "dishwasher_label_electric_rate": "0.12", + "dishwasher_label_gas_rate": "1.09", + "dishwasher_label_usage": "4.0", + "dishwasher_location": "living space", + "dishwasher_place_setting_capacity": "12", + "dishwasher_usage_multiplier": 1.0, + "door_area": 80.0, + "door_rvalue": 4.4, + "ducts_number_of_return_registers": "2", + "ducts_return_insulation_r": 0.0, + "ducts_return_leakage_units": "CFM25", + "ducts_return_leakage_value": 5.0, + "ducts_return_location": "attic - unvented", + "ducts_return_surface_area": "10.0", + "ducts_supply_insulation_r": 0.0, + "ducts_supply_leakage_units": "CFM25", + "ducts_supply_leakage_value": 15.0, + "ducts_supply_location": "attic - unvented", + "ducts_supply_surface_area": "30.0", + "dwhr_efficiency": 0.55, + "dwhr_equal_flow": true, + "dwhr_facilities_connected": "none", + "extra_refrigerator_location": "none", + "extra_refrigerator_rated_annual_kwh": "auto", + "extra_refrigerator_usage_multiplier": 1.0, + "floor_assembly_r": 0, + "foundation_wall_insulation_distance_to_bottom": "auto", + "foundation_wall_insulation_distance_to_top": 0.0, + "foundation_wall_insulation_r": 8.9, + "foundation_wall_thickness": "8.0", + "freezer_location": "none", + "freezer_rated_annual_kwh": "auto", + "freezer_usage_multiplier": 1.0, + "fuel_loads_fireplace_annual_therm": "auto", + "fuel_loads_fireplace_frac_latent": "auto", + "fuel_loads_fireplace_frac_sensible": "auto", + "fuel_loads_fireplace_fuel_type": "natural gas", + "fuel_loads_fireplace_present": false, + "fuel_loads_fireplace_usage_multiplier": 0.0, + "fuel_loads_grill_annual_therm": "auto", + "fuel_loads_grill_fuel_type": "natural gas", + "fuel_loads_grill_present": false, + "fuel_loads_grill_usage_multiplier": 0.0, + "fuel_loads_lighting_annual_therm": "auto", + "fuel_loads_lighting_fuel_type": "natural gas", + "fuel_loads_lighting_present": false, + "fuel_loads_lighting_usage_multiplier": 0.0, + "geometry_aspect_ratio": 1.5, + "geometry_attic_type": "UnventedAttic", + "geometry_balcony_depth": 0.0, + "geometry_cfa": 2700.0, + "geometry_corridor_position": "Double-Loaded Interior", + "geometry_corridor_width": 10.0, + "geometry_eaves_depth": 0, + "geometry_foundation_height": 8.0, + "geometry_foundation_height_above_grade": 1.0, + "geometry_foundation_type": "ConditionedBasement", + "geometry_garage_depth": 20.0, + "geometry_garage_position": "Right", + "geometry_garage_protrusion": 0.0, + "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", + "geometry_inset_depth": 0.0, + "geometry_inset_position": "Right", + "geometry_inset_width": 0.0, + "geometry_num_bathrooms": "2", + "geometry_num_bedrooms": 3, + "geometry_num_floors_above_grade": 1, + "geometry_num_occupants": "3", + "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, + "geometry_roof_pitch": "6:12", + "geometry_roof_type": "gable", + "geometry_unit_type": "single-family detached", + "geometry_wall_height": 8.0, + "heat_pump_airflow_defect_ratio": -0.25, + "heat_pump_backup_fuel": "electricity", + "heat_pump_backup_heating_capacity": "34121.0", + "heat_pump_backup_heating_efficiency": 1, + "heat_pump_charge_defect_ratio": -0.25, + "heat_pump_cooling_capacity": "48000.0", + "heat_pump_cooling_efficiency": 19.0, + "heat_pump_cooling_efficiency_type": "SEER", + "heat_pump_cooling_sensible_heat_fraction": 0.73, + "heat_pump_fraction_cool_load_served": 1, + "heat_pump_fraction_heat_load_served": 1, + "heat_pump_heating_capacity": "52000.0", + "heat_pump_heating_capacity_17_f": "29500.0", + "heat_pump_heating_efficiency": 10.0, + "heat_pump_heating_efficiency_type": "HSPF", + "heat_pump_is_ducted": true, + "heat_pump_type": "mini-split", + "heating_system_fraction_heat_load_served": 1, + "heating_system_fraction_heat_load_served_2": 0.25, + "heating_system_fuel": "natural gas", + "heating_system_fuel_2": "electricity", + "heating_system_heating_capacity": "64000.0", + "heating_system_heating_capacity_2": "auto", + "heating_system_heating_efficiency": 0.92, + "heating_system_heating_efficiency_2": 1.0, + "heating_system_type": "none", + "heating_system_type_2": "none", + "holiday_lighting_daily_kwh": "auto", + "holiday_lighting_period_begin_day_of_month": "auto", + "holiday_lighting_period_begin_month": "auto", + "holiday_lighting_period_end_day_of_month": "auto", + "holiday_lighting_period_end_month": "auto", + "holiday_lighting_present": false, + "hot_tub_heater_annual_kwh": "auto", + "hot_tub_heater_annual_therm": "auto", + "hot_tub_heater_type": "electric resistance", + "hot_tub_heater_usage_multiplier": 1.0, + "hot_tub_present": false, + "hot_tub_pump_annual_kwh": "auto", + "hot_tub_pump_usage_multiplier": 1.0, + "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base-hvac-install-quality-all-mini-split-heat-pump-ducted.xml", + "kitchen_fans_quantity": "0", + "lighting_fraction_cfl_exterior": 0.4, + "lighting_fraction_cfl_garage": 0.4, + "lighting_fraction_cfl_interior": 0.4, + "lighting_fraction_led_exterior": 0.25, + "lighting_fraction_led_garage": 0.25, + "lighting_fraction_led_interior": 0.25, + "lighting_fraction_lfl_exterior": 0.1, + "lighting_fraction_lfl_garage": 0.1, + "lighting_fraction_lfl_interior": 0.1, + "lighting_usage_multiplier_exterior": 1.0, + "lighting_usage_multiplier_garage": 1.0, + "lighting_usage_multiplier_interior": 1.0, + "mech_vent_fan_power": 30, + "mech_vent_fan_power_2": 30, + "mech_vent_fan_type": "none", + "mech_vent_fan_type_2": "none", + "mech_vent_flow_rate": 110, + "mech_vent_flow_rate_2": 110, + "mech_vent_hours_in_operation": 24, + "mech_vent_hours_in_operation_2": 24, + "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", + "mech_vent_sensible_recovery_efficiency": 0.72, + "mech_vent_sensible_recovery_efficiency_2": 0.72, + "mech_vent_total_recovery_efficiency": 0.48, + "mech_vent_total_recovery_efficiency_2": 0.48, + "neighbor_back_distance": 0, + "neighbor_back_height": "auto", + "neighbor_front_distance": 0, + "neighbor_front_height": "auto", + "neighbor_left_distance": 0, + "neighbor_left_height": "auto", + "neighbor_right_distance": 0, + "neighbor_right_height": "auto", + "overhangs_back_depth": 0, + "overhangs_back_distance_to_top_of_window": 0, + "overhangs_front_depth": 0, + "overhangs_front_distance_to_top_of_window": 0, + "overhangs_left_depth": 0, + "overhangs_left_distance_to_top_of_window": 0, + "overhangs_right_depth": 0, + "overhangs_right_distance_to_top_of_window": 0, + "plug_loads_other_annual_kwh": "2457.0", + "plug_loads_other_frac_latent": "0.045", + "plug_loads_other_frac_sensible": "0.855", + "plug_loads_other_usage_multiplier": 1.0, + "plug_loads_television_annual_kwh": "620.0", + "plug_loads_television_usage_multiplier": 1.0, + "plug_loads_vehicle_annual_kwh": "auto", + "plug_loads_vehicle_present": false, + "plug_loads_vehicle_usage_multiplier": 0.0, + "plug_loads_well_pump_annual_kwh": "auto", + "plug_loads_well_pump_present": false, + "plug_loads_well_pump_usage_multiplier": 0.0, + "pool_heater_annual_kwh": "auto", + "pool_heater_annual_therm": "auto", + "pool_heater_type": "electric resistance", + "pool_heater_usage_multiplier": 1.0, + "pool_present": false, + "pool_pump_annual_kwh": "auto", + "pool_pump_usage_multiplier": 1.0, + "pv_system_array_azimuth_1": 180, + "pv_system_array_azimuth_2": 180, + "pv_system_array_tilt_1": "20", + "pv_system_array_tilt_2": "20", + "pv_system_inverter_efficiency_1": 0.96, + "pv_system_inverter_efficiency_2": 0.96, + "pv_system_location_1": "auto", + "pv_system_location_2": "auto", + "pv_system_max_power_output_1": 4000, + "pv_system_max_power_output_2": 4000, + "pv_system_module_type_1": "none", + "pv_system_module_type_2": "none", + "pv_system_num_units_served_1": 1, + "pv_system_num_units_served_2": 1, + "pv_system_system_losses_fraction_1": 0.14, + "pv_system_system_losses_fraction_2": 0.14, + "pv_system_tracking_1": "auto", + "pv_system_tracking_2": "auto", + "refrigerator_location": "living space", + "refrigerator_rated_annual_kwh": "650.0", + "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, + "roof_assembly_r": 2.3, + "roof_color": "medium", + "roof_material_type": "asphalt or fiberglass shingles", + "roof_radiant_barrier": false, + "roof_radiant_barrier_grade": "1", + "schedules_type": "default", + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", + "simulation_control_timestep": "60", + "site_type": "suburban", + "skylight_area_back": 0, + "skylight_area_front": 0, + "skylight_area_left": 0, + "skylight_area_right": 0, + "skylight_shgc": 0.45, + "skylight_ufactor": 0.33, + "slab_carpet_fraction": "0.0", + "slab_carpet_r": "0.0", + "slab_perimeter_depth": 0, + "slab_perimeter_insulation_r": 0, + "slab_thickness": "4.0", + "slab_under_insulation_r": 0, + "slab_under_width": 0, + "solar_thermal_collector_area": 40.0, + "solar_thermal_collector_azimuth": 180, + "solar_thermal_collector_loop_type": "liquid direct", + "solar_thermal_collector_rated_optical_efficiency": 0.5, + "solar_thermal_collector_rated_thermal_losses": 0.2799, + "solar_thermal_collector_tilt": "20", + "solar_thermal_collector_type": "evacuated tube", + "solar_thermal_solar_fraction": 0, + "solar_thermal_storage_volume": "auto", + "solar_thermal_system_type": "none", + "wall_assembly_r": 23, + "wall_color": "medium", + "wall_siding_type": "wood siding", + "wall_type": "WoodStud", + "water_fixtures_shower_low_flow": true, + "water_fixtures_sink_low_flow": false, + "water_fixtures_usage_multiplier": 1.0, + "water_heater_efficiency": 0.95, + "water_heater_efficiency_type": "EnergyFactor", + "water_heater_fuel_type": "electricity", + "water_heater_jacket_rvalue": 0, + "water_heater_location": "living space", + "water_heater_num_units_served": 1, + "water_heater_recovery_efficiency": "0.76", + "water_heater_setpoint_temperature": "125", + "water_heater_standby_loss": 0, + "water_heater_tank_volume": "40", + "water_heater_type": "storage water heater", + "weather_station_epw_filepath": "USA_CO_Denver.Intl.AP.725650_TMY3.epw", + "whole_house_fan_flow_rate": 4500, + "whole_house_fan_power": 300, + "whole_house_fan_present": false, + "window_area_back": 108.0, + "window_area_front": 108.0, + "window_area_left": 72.0, + "window_area_right": 72.0, + "window_aspect_ratio": 1.333, + "window_back_wwr": 0, + "window_fraction_operable": 0.67, + "window_front_wwr": 0, + "window_interior_shading_summer": 0.7, + "window_interior_shading_winter": 0.85, + "window_left_wwr": 0, + "window_right_wwr": 0, + "window_shgc": 0.45, + "window_ufactor": 0.33 + }, + "measure_dir_name": "BuildResidentialHPXML" + } + ] +} \ No newline at end of file diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-install-quality-charge-defect-furnace-gas-central-ac-1-speed.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-install-quality-charge-defect-furnace-gas-central-ac-1-speed.osw new file mode 100644 index 00000000..96f25af7 --- /dev/null +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-install-quality-charge-defect-furnace-gas-central-ac-1-speed.osw @@ -0,0 +1,338 @@ +{ + "measure_paths": [ + "../.." + ], + "steps": [ + { + "arguments": { + "air_leakage_house_pressure": 50, + "air_leakage_shielding_of_home": "auto", + "air_leakage_units": "ACH", + "air_leakage_value": 3, + "bathroom_fans_quantity": "0", + "ceiling_assembly_r": 39.3, + "ceiling_fan_cooling_setpoint_temp_offset": 0, + "ceiling_fan_efficiency": "auto", + "ceiling_fan_present": false, + "ceiling_fan_quantity": "auto", + "clothes_dryer_efficiency": "3.73", + "clothes_dryer_efficiency_type": "CombinedEnergyFactor", + "clothes_dryer_fuel_type": "electricity", + "clothes_dryer_location": "living space", + "clothes_dryer_usage_multiplier": 1.0, + "clothes_dryer_vented_flow_rate": "150.0", + "clothes_washer_capacity": "3.2", + "clothes_washer_efficiency": "1.21", + "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", + "clothes_washer_label_annual_gas_cost": "27.0", + "clothes_washer_label_electric_rate": "0.12", + "clothes_washer_label_gas_rate": "1.09", + "clothes_washer_label_usage": "6.0", + "clothes_washer_location": "living space", + "clothes_washer_rated_annual_kwh": "380.0", + "clothes_washer_usage_multiplier": 1.0, + "cooking_range_oven_fuel_type": "electricity", + "cooking_range_oven_is_convection": false, + "cooking_range_oven_is_induction": false, + "cooking_range_oven_location": "living space", + "cooking_range_oven_usage_multiplier": 1.0, + "cooling_system_charge_defect_ratio": -0.25, + "cooling_system_cooling_capacity": "48000.0", + "cooling_system_cooling_compressor_type": "single stage", + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", + "cooling_system_cooling_sensible_heat_fraction": 0.73, + "cooling_system_fraction_cool_load_served": 1, + "cooling_system_is_ducted": false, + "cooling_system_type": "central air conditioner", + "dehumidifier_capacity": 40, + "dehumidifier_efficiency": 1.8, + "dehumidifier_efficiency_type": "EnergyFactor", + "dehumidifier_fraction_dehumidification_load_served": 1, + "dehumidifier_rh_setpoint": 0.5, + "dehumidifier_type": "none", + "dhw_distribution_pipe_r": "0.0", + "dhw_distribution_recirc_branch_piping_length": "50", + "dhw_distribution_recirc_control_type": "no control", + "dhw_distribution_recirc_piping_length": "50", + "dhw_distribution_recirc_pump_power": "50", + "dhw_distribution_standard_piping_length": "50", + "dhw_distribution_system_type": "Standard", + "dishwasher_efficiency": "307", + "dishwasher_efficiency_type": "RatedAnnualkWh", + "dishwasher_label_annual_gas_cost": "22.32", + "dishwasher_label_electric_rate": "0.12", + "dishwasher_label_gas_rate": "1.09", + "dishwasher_label_usage": "4.0", + "dishwasher_location": "living space", + "dishwasher_place_setting_capacity": "12", + "dishwasher_usage_multiplier": 1.0, + "door_area": 80.0, + "door_rvalue": 4.4, + "ducts_number_of_return_registers": "2", + "ducts_return_insulation_r": 0.0, + "ducts_return_leakage_units": "CFM25", + "ducts_return_leakage_value": 25.0, + "ducts_return_location": "attic - unvented", + "ducts_return_surface_area": "50.0", + "ducts_supply_insulation_r": 4.0, + "ducts_supply_leakage_units": "CFM25", + "ducts_supply_leakage_value": 75.0, + "ducts_supply_location": "attic - unvented", + "ducts_supply_surface_area": "150.0", + "dwhr_efficiency": 0.55, + "dwhr_equal_flow": true, + "dwhr_facilities_connected": "none", + "extra_refrigerator_location": "none", + "extra_refrigerator_rated_annual_kwh": "auto", + "extra_refrigerator_usage_multiplier": 1.0, + "floor_assembly_r": 0, + "foundation_wall_insulation_distance_to_bottom": "auto", + "foundation_wall_insulation_distance_to_top": 0.0, + "foundation_wall_insulation_r": 8.9, + "foundation_wall_thickness": "8.0", + "freezer_location": "none", + "freezer_rated_annual_kwh": "auto", + "freezer_usage_multiplier": 1.0, + "fuel_loads_fireplace_annual_therm": "auto", + "fuel_loads_fireplace_frac_latent": "auto", + "fuel_loads_fireplace_frac_sensible": "auto", + "fuel_loads_fireplace_fuel_type": "natural gas", + "fuel_loads_fireplace_present": false, + "fuel_loads_fireplace_usage_multiplier": 0.0, + "fuel_loads_grill_annual_therm": "auto", + "fuel_loads_grill_fuel_type": "natural gas", + "fuel_loads_grill_present": false, + "fuel_loads_grill_usage_multiplier": 0.0, + "fuel_loads_lighting_annual_therm": "auto", + "fuel_loads_lighting_fuel_type": "natural gas", + "fuel_loads_lighting_present": false, + "fuel_loads_lighting_usage_multiplier": 0.0, + "geometry_aspect_ratio": 1.5, + "geometry_attic_type": "UnventedAttic", + "geometry_balcony_depth": 0.0, + "geometry_cfa": 2700.0, + "geometry_corridor_position": "Double-Loaded Interior", + "geometry_corridor_width": 10.0, + "geometry_eaves_depth": 0, + "geometry_foundation_height": 8.0, + "geometry_foundation_height_above_grade": 1.0, + "geometry_foundation_type": "ConditionedBasement", + "geometry_garage_depth": 20.0, + "geometry_garage_position": "Right", + "geometry_garage_protrusion": 0.0, + "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", + "geometry_inset_depth": 0.0, + "geometry_inset_position": "Right", + "geometry_inset_width": 0.0, + "geometry_num_bathrooms": "2", + "geometry_num_bedrooms": 3, + "geometry_num_floors_above_grade": 1, + "geometry_num_occupants": "3", + "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, + "geometry_roof_pitch": "6:12", + "geometry_roof_type": "gable", + "geometry_unit_type": "single-family detached", + "geometry_wall_height": 8.0, + "heat_pump_backup_fuel": "none", + "heat_pump_backup_heating_capacity": "34121.0", + "heat_pump_backup_heating_efficiency": 1, + "heat_pump_cooling_capacity": "48000.0", + "heat_pump_cooling_compressor_type": "single stage", + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", + "heat_pump_cooling_sensible_heat_fraction": 0.73, + "heat_pump_fraction_cool_load_served": 1, + "heat_pump_fraction_heat_load_served": 1, + "heat_pump_heating_capacity": "64000.0", + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", + "heat_pump_type": "none", + "heating_system_fraction_heat_load_served": 1, + "heating_system_fraction_heat_load_served_2": 0.25, + "heating_system_fuel": "natural gas", + "heating_system_fuel_2": "electricity", + "heating_system_heating_capacity": "64000.0", + "heating_system_heating_capacity_2": "auto", + "heating_system_heating_efficiency": 0.92, + "heating_system_heating_efficiency_2": 1.0, + "heating_system_type": "Furnace", + "heating_system_type_2": "none", + "holiday_lighting_daily_kwh": "auto", + "holiday_lighting_period_begin_day_of_month": "auto", + "holiday_lighting_period_begin_month": "auto", + "holiday_lighting_period_end_day_of_month": "auto", + "holiday_lighting_period_end_month": "auto", + "holiday_lighting_present": false, + "hot_tub_heater_annual_kwh": "auto", + "hot_tub_heater_annual_therm": "auto", + "hot_tub_heater_type": "electric resistance", + "hot_tub_heater_usage_multiplier": 1.0, + "hot_tub_present": false, + "hot_tub_pump_annual_kwh": "auto", + "hot_tub_pump_usage_multiplier": 1.0, + "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base-hvac-install-quality-charge-defect-furnace-gas-central-ac-1-speed.xml", + "kitchen_fans_quantity": "0", + "lighting_fraction_cfl_exterior": 0.4, + "lighting_fraction_cfl_garage": 0.4, + "lighting_fraction_cfl_interior": 0.4, + "lighting_fraction_led_exterior": 0.25, + "lighting_fraction_led_garage": 0.25, + "lighting_fraction_led_interior": 0.25, + "lighting_fraction_lfl_exterior": 0.1, + "lighting_fraction_lfl_garage": 0.1, + "lighting_fraction_lfl_interior": 0.1, + "lighting_usage_multiplier_exterior": 1.0, + "lighting_usage_multiplier_garage": 1.0, + "lighting_usage_multiplier_interior": 1.0, + "mech_vent_fan_power": 30, + "mech_vent_fan_power_2": 30, + "mech_vent_fan_type": "none", + "mech_vent_fan_type_2": "none", + "mech_vent_flow_rate": 110, + "mech_vent_flow_rate_2": 110, + "mech_vent_hours_in_operation": 24, + "mech_vent_hours_in_operation_2": 24, + "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", + "mech_vent_sensible_recovery_efficiency": 0.72, + "mech_vent_sensible_recovery_efficiency_2": 0.72, + "mech_vent_total_recovery_efficiency": 0.48, + "mech_vent_total_recovery_efficiency_2": 0.48, + "neighbor_back_distance": 0, + "neighbor_back_height": "auto", + "neighbor_front_distance": 0, + "neighbor_front_height": "auto", + "neighbor_left_distance": 0, + "neighbor_left_height": "auto", + "neighbor_right_distance": 0, + "neighbor_right_height": "auto", + "overhangs_back_depth": 0, + "overhangs_back_distance_to_top_of_window": 0, + "overhangs_front_depth": 0, + "overhangs_front_distance_to_top_of_window": 0, + "overhangs_left_depth": 0, + "overhangs_left_distance_to_top_of_window": 0, + "overhangs_right_depth": 0, + "overhangs_right_distance_to_top_of_window": 0, + "plug_loads_other_annual_kwh": "2457.0", + "plug_loads_other_frac_latent": "0.045", + "plug_loads_other_frac_sensible": "0.855", + "plug_loads_other_usage_multiplier": 1.0, + "plug_loads_television_annual_kwh": "620.0", + "plug_loads_television_usage_multiplier": 1.0, + "plug_loads_vehicle_annual_kwh": "auto", + "plug_loads_vehicle_present": false, + "plug_loads_vehicle_usage_multiplier": 0.0, + "plug_loads_well_pump_annual_kwh": "auto", + "plug_loads_well_pump_present": false, + "plug_loads_well_pump_usage_multiplier": 0.0, + "pool_heater_annual_kwh": "auto", + "pool_heater_annual_therm": "auto", + "pool_heater_type": "electric resistance", + "pool_heater_usage_multiplier": 1.0, + "pool_present": false, + "pool_pump_annual_kwh": "auto", + "pool_pump_usage_multiplier": 1.0, + "pv_system_array_azimuth_1": 180, + "pv_system_array_azimuth_2": 180, + "pv_system_array_tilt_1": "20", + "pv_system_array_tilt_2": "20", + "pv_system_inverter_efficiency_1": 0.96, + "pv_system_inverter_efficiency_2": 0.96, + "pv_system_location_1": "auto", + "pv_system_location_2": "auto", + "pv_system_max_power_output_1": 4000, + "pv_system_max_power_output_2": 4000, + "pv_system_module_type_1": "none", + "pv_system_module_type_2": "none", + "pv_system_num_units_served_1": 1, + "pv_system_num_units_served_2": 1, + "pv_system_system_losses_fraction_1": 0.14, + "pv_system_system_losses_fraction_2": 0.14, + "pv_system_tracking_1": "auto", + "pv_system_tracking_2": "auto", + "refrigerator_location": "living space", + "refrigerator_rated_annual_kwh": "650.0", + "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, + "roof_assembly_r": 2.3, + "roof_color": "medium", + "roof_material_type": "asphalt or fiberglass shingles", + "roof_radiant_barrier": false, + "roof_radiant_barrier_grade": "1", + "schedules_type": "default", + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", + "simulation_control_timestep": "60", + "site_type": "suburban", + "skylight_area_back": 0, + "skylight_area_front": 0, + "skylight_area_left": 0, + "skylight_area_right": 0, + "skylight_shgc": 0.45, + "skylight_ufactor": 0.33, + "slab_carpet_fraction": "0.0", + "slab_carpet_r": "0.0", + "slab_perimeter_depth": 0, + "slab_perimeter_insulation_r": 0, + "slab_thickness": "4.0", + "slab_under_insulation_r": 0, + "slab_under_width": 0, + "solar_thermal_collector_area": 40.0, + "solar_thermal_collector_azimuth": 180, + "solar_thermal_collector_loop_type": "liquid direct", + "solar_thermal_collector_rated_optical_efficiency": 0.5, + "solar_thermal_collector_rated_thermal_losses": 0.2799, + "solar_thermal_collector_tilt": "20", + "solar_thermal_collector_type": "evacuated tube", + "solar_thermal_solar_fraction": 0, + "solar_thermal_storage_volume": "auto", + "solar_thermal_system_type": "none", + "wall_assembly_r": 23, + "wall_color": "medium", + "wall_siding_type": "wood siding", + "wall_type": "WoodStud", + "water_fixtures_shower_low_flow": true, + "water_fixtures_sink_low_flow": false, + "water_fixtures_usage_multiplier": 1.0, + "water_heater_efficiency": 0.95, + "water_heater_efficiency_type": "EnergyFactor", + "water_heater_fuel_type": "electricity", + "water_heater_jacket_rvalue": 0, + "water_heater_location": "living space", + "water_heater_num_units_served": 1, + "water_heater_recovery_efficiency": "0.76", + "water_heater_setpoint_temperature": "125", + "water_heater_standby_loss": 0, + "water_heater_tank_volume": "40", + "water_heater_type": "storage water heater", + "weather_station_epw_filepath": "USA_CO_Denver.Intl.AP.725650_TMY3.epw", + "whole_house_fan_flow_rate": 4500, + "whole_house_fan_power": 300, + "whole_house_fan_present": false, + "window_area_back": 108.0, + "window_area_front": 108.0, + "window_area_left": 72.0, + "window_area_right": 72.0, + "window_aspect_ratio": 1.333, + "window_back_wwr": 0, + "window_fraction_operable": 0.67, + "window_front_wwr": 0, + "window_interior_shading_summer": 0.7, + "window_interior_shading_winter": 0.85, + "window_left_wwr": 0, + "window_right_wwr": 0, + "window_shgc": 0.45, + "window_ufactor": 0.33 + }, + "measure_dir_name": "BuildResidentialHPXML" + } + ] +} \ No newline at end of file diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-install-quality-none-furnace-gas-central-ac-1-speed.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-install-quality-none-furnace-gas-central-ac-1-speed.osw new file mode 100644 index 00000000..696265f9 --- /dev/null +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-install-quality-none-furnace-gas-central-ac-1-speed.osw @@ -0,0 +1,340 @@ +{ + "measure_paths": [ + "../.." + ], + "steps": [ + { + "arguments": { + "air_leakage_house_pressure": 50, + "air_leakage_shielding_of_home": "auto", + "air_leakage_units": "ACH", + "air_leakage_value": 3, + "bathroom_fans_quantity": "0", + "ceiling_assembly_r": 39.3, + "ceiling_fan_cooling_setpoint_temp_offset": 0, + "ceiling_fan_efficiency": "auto", + "ceiling_fan_present": false, + "ceiling_fan_quantity": "auto", + "clothes_dryer_efficiency": "3.73", + "clothes_dryer_efficiency_type": "CombinedEnergyFactor", + "clothes_dryer_fuel_type": "electricity", + "clothes_dryer_location": "living space", + "clothes_dryer_usage_multiplier": 1.0, + "clothes_dryer_vented_flow_rate": "150.0", + "clothes_washer_capacity": "3.2", + "clothes_washer_efficiency": "1.21", + "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", + "clothes_washer_label_annual_gas_cost": "27.0", + "clothes_washer_label_electric_rate": "0.12", + "clothes_washer_label_gas_rate": "1.09", + "clothes_washer_label_usage": "6.0", + "clothes_washer_location": "living space", + "clothes_washer_rated_annual_kwh": "380.0", + "clothes_washer_usage_multiplier": 1.0, + "cooking_range_oven_fuel_type": "electricity", + "cooking_range_oven_is_convection": false, + "cooking_range_oven_is_induction": false, + "cooking_range_oven_location": "living space", + "cooking_range_oven_usage_multiplier": 1.0, + "cooling_system_airflow_defect_ratio": 0.0, + "cooling_system_charge_defect_ratio": 0.0, + "cooling_system_cooling_capacity": "48000.0", + "cooling_system_cooling_compressor_type": "single stage", + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", + "cooling_system_cooling_sensible_heat_fraction": 0.73, + "cooling_system_fraction_cool_load_served": 1, + "cooling_system_is_ducted": false, + "cooling_system_type": "central air conditioner", + "dehumidifier_capacity": 40, + "dehumidifier_efficiency": 1.8, + "dehumidifier_efficiency_type": "EnergyFactor", + "dehumidifier_fraction_dehumidification_load_served": 1, + "dehumidifier_rh_setpoint": 0.5, + "dehumidifier_type": "none", + "dhw_distribution_pipe_r": "0.0", + "dhw_distribution_recirc_branch_piping_length": "50", + "dhw_distribution_recirc_control_type": "no control", + "dhw_distribution_recirc_piping_length": "50", + "dhw_distribution_recirc_pump_power": "50", + "dhw_distribution_standard_piping_length": "50", + "dhw_distribution_system_type": "Standard", + "dishwasher_efficiency": "307", + "dishwasher_efficiency_type": "RatedAnnualkWh", + "dishwasher_label_annual_gas_cost": "22.32", + "dishwasher_label_electric_rate": "0.12", + "dishwasher_label_gas_rate": "1.09", + "dishwasher_label_usage": "4.0", + "dishwasher_location": "living space", + "dishwasher_place_setting_capacity": "12", + "dishwasher_usage_multiplier": 1.0, + "door_area": 80.0, + "door_rvalue": 4.4, + "ducts_number_of_return_registers": "2", + "ducts_return_insulation_r": 0.0, + "ducts_return_leakage_units": "CFM25", + "ducts_return_leakage_value": 25.0, + "ducts_return_location": "attic - unvented", + "ducts_return_surface_area": "50.0", + "ducts_supply_insulation_r": 4.0, + "ducts_supply_leakage_units": "CFM25", + "ducts_supply_leakage_value": 75.0, + "ducts_supply_location": "attic - unvented", + "ducts_supply_surface_area": "150.0", + "dwhr_efficiency": 0.55, + "dwhr_equal_flow": true, + "dwhr_facilities_connected": "none", + "extra_refrigerator_location": "none", + "extra_refrigerator_rated_annual_kwh": "auto", + "extra_refrigerator_usage_multiplier": 1.0, + "floor_assembly_r": 0, + "foundation_wall_insulation_distance_to_bottom": "auto", + "foundation_wall_insulation_distance_to_top": 0.0, + "foundation_wall_insulation_r": 8.9, + "foundation_wall_thickness": "8.0", + "freezer_location": "none", + "freezer_rated_annual_kwh": "auto", + "freezer_usage_multiplier": 1.0, + "fuel_loads_fireplace_annual_therm": "auto", + "fuel_loads_fireplace_frac_latent": "auto", + "fuel_loads_fireplace_frac_sensible": "auto", + "fuel_loads_fireplace_fuel_type": "natural gas", + "fuel_loads_fireplace_present": false, + "fuel_loads_fireplace_usage_multiplier": 0.0, + "fuel_loads_grill_annual_therm": "auto", + "fuel_loads_grill_fuel_type": "natural gas", + "fuel_loads_grill_present": false, + "fuel_loads_grill_usage_multiplier": 0.0, + "fuel_loads_lighting_annual_therm": "auto", + "fuel_loads_lighting_fuel_type": "natural gas", + "fuel_loads_lighting_present": false, + "fuel_loads_lighting_usage_multiplier": 0.0, + "geometry_aspect_ratio": 1.5, + "geometry_attic_type": "UnventedAttic", + "geometry_balcony_depth": 0.0, + "geometry_cfa": 2700.0, + "geometry_corridor_position": "Double-Loaded Interior", + "geometry_corridor_width": 10.0, + "geometry_eaves_depth": 0, + "geometry_foundation_height": 8.0, + "geometry_foundation_height_above_grade": 1.0, + "geometry_foundation_type": "ConditionedBasement", + "geometry_garage_depth": 20.0, + "geometry_garage_position": "Right", + "geometry_garage_protrusion": 0.0, + "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", + "geometry_inset_depth": 0.0, + "geometry_inset_position": "Right", + "geometry_inset_width": 0.0, + "geometry_num_bathrooms": "2", + "geometry_num_bedrooms": 3, + "geometry_num_floors_above_grade": 1, + "geometry_num_occupants": "3", + "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, + "geometry_roof_pitch": "6:12", + "geometry_roof_type": "gable", + "geometry_unit_type": "single-family detached", + "geometry_wall_height": 8.0, + "heat_pump_backup_fuel": "none", + "heat_pump_backup_heating_capacity": "34121.0", + "heat_pump_backup_heating_efficiency": 1, + "heat_pump_cooling_capacity": "48000.0", + "heat_pump_cooling_compressor_type": "single stage", + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", + "heat_pump_cooling_sensible_heat_fraction": 0.73, + "heat_pump_fraction_cool_load_served": 1, + "heat_pump_fraction_heat_load_served": 1, + "heat_pump_heating_capacity": "64000.0", + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", + "heat_pump_type": "none", + "heating_system_airflow_defect_ratio": 0.0, + "heating_system_fraction_heat_load_served": 1, + "heating_system_fraction_heat_load_served_2": 0.25, + "heating_system_fuel": "natural gas", + "heating_system_fuel_2": "electricity", + "heating_system_heating_capacity": "64000.0", + "heating_system_heating_capacity_2": "auto", + "heating_system_heating_efficiency": 0.92, + "heating_system_heating_efficiency_2": 1.0, + "heating_system_type": "Furnace", + "heating_system_type_2": "none", + "holiday_lighting_daily_kwh": "auto", + "holiday_lighting_period_begin_day_of_month": "auto", + "holiday_lighting_period_begin_month": "auto", + "holiday_lighting_period_end_day_of_month": "auto", + "holiday_lighting_period_end_month": "auto", + "holiday_lighting_present": false, + "hot_tub_heater_annual_kwh": "auto", + "hot_tub_heater_annual_therm": "auto", + "hot_tub_heater_type": "electric resistance", + "hot_tub_heater_usage_multiplier": 1.0, + "hot_tub_present": false, + "hot_tub_pump_annual_kwh": "auto", + "hot_tub_pump_usage_multiplier": 1.0, + "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base-hvac-install-quality-none-furnace-gas-central-ac-1-speed.xml", + "kitchen_fans_quantity": "0", + "lighting_fraction_cfl_exterior": 0.4, + "lighting_fraction_cfl_garage": 0.4, + "lighting_fraction_cfl_interior": 0.4, + "lighting_fraction_led_exterior": 0.25, + "lighting_fraction_led_garage": 0.25, + "lighting_fraction_led_interior": 0.25, + "lighting_fraction_lfl_exterior": 0.1, + "lighting_fraction_lfl_garage": 0.1, + "lighting_fraction_lfl_interior": 0.1, + "lighting_usage_multiplier_exterior": 1.0, + "lighting_usage_multiplier_garage": 1.0, + "lighting_usage_multiplier_interior": 1.0, + "mech_vent_fan_power": 30, + "mech_vent_fan_power_2": 30, + "mech_vent_fan_type": "none", + "mech_vent_fan_type_2": "none", + "mech_vent_flow_rate": 110, + "mech_vent_flow_rate_2": 110, + "mech_vent_hours_in_operation": 24, + "mech_vent_hours_in_operation_2": 24, + "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", + "mech_vent_sensible_recovery_efficiency": 0.72, + "mech_vent_sensible_recovery_efficiency_2": 0.72, + "mech_vent_total_recovery_efficiency": 0.48, + "mech_vent_total_recovery_efficiency_2": 0.48, + "neighbor_back_distance": 0, + "neighbor_back_height": "auto", + "neighbor_front_distance": 0, + "neighbor_front_height": "auto", + "neighbor_left_distance": 0, + "neighbor_left_height": "auto", + "neighbor_right_distance": 0, + "neighbor_right_height": "auto", + "overhangs_back_depth": 0, + "overhangs_back_distance_to_top_of_window": 0, + "overhangs_front_depth": 0, + "overhangs_front_distance_to_top_of_window": 0, + "overhangs_left_depth": 0, + "overhangs_left_distance_to_top_of_window": 0, + "overhangs_right_depth": 0, + "overhangs_right_distance_to_top_of_window": 0, + "plug_loads_other_annual_kwh": "2457.0", + "plug_loads_other_frac_latent": "0.045", + "plug_loads_other_frac_sensible": "0.855", + "plug_loads_other_usage_multiplier": 1.0, + "plug_loads_television_annual_kwh": "620.0", + "plug_loads_television_usage_multiplier": 1.0, + "plug_loads_vehicle_annual_kwh": "auto", + "plug_loads_vehicle_present": false, + "plug_loads_vehicle_usage_multiplier": 0.0, + "plug_loads_well_pump_annual_kwh": "auto", + "plug_loads_well_pump_present": false, + "plug_loads_well_pump_usage_multiplier": 0.0, + "pool_heater_annual_kwh": "auto", + "pool_heater_annual_therm": "auto", + "pool_heater_type": "electric resistance", + "pool_heater_usage_multiplier": 1.0, + "pool_present": false, + "pool_pump_annual_kwh": "auto", + "pool_pump_usage_multiplier": 1.0, + "pv_system_array_azimuth_1": 180, + "pv_system_array_azimuth_2": 180, + "pv_system_array_tilt_1": "20", + "pv_system_array_tilt_2": "20", + "pv_system_inverter_efficiency_1": 0.96, + "pv_system_inverter_efficiency_2": 0.96, + "pv_system_location_1": "auto", + "pv_system_location_2": "auto", + "pv_system_max_power_output_1": 4000, + "pv_system_max_power_output_2": 4000, + "pv_system_module_type_1": "none", + "pv_system_module_type_2": "none", + "pv_system_num_units_served_1": 1, + "pv_system_num_units_served_2": 1, + "pv_system_system_losses_fraction_1": 0.14, + "pv_system_system_losses_fraction_2": 0.14, + "pv_system_tracking_1": "auto", + "pv_system_tracking_2": "auto", + "refrigerator_location": "living space", + "refrigerator_rated_annual_kwh": "650.0", + "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, + "roof_assembly_r": 2.3, + "roof_color": "medium", + "roof_material_type": "asphalt or fiberglass shingles", + "roof_radiant_barrier": false, + "roof_radiant_barrier_grade": "1", + "schedules_type": "default", + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", + "simulation_control_timestep": "60", + "site_type": "suburban", + "skylight_area_back": 0, + "skylight_area_front": 0, + "skylight_area_left": 0, + "skylight_area_right": 0, + "skylight_shgc": 0.45, + "skylight_ufactor": 0.33, + "slab_carpet_fraction": "0.0", + "slab_carpet_r": "0.0", + "slab_perimeter_depth": 0, + "slab_perimeter_insulation_r": 0, + "slab_thickness": "4.0", + "slab_under_insulation_r": 0, + "slab_under_width": 0, + "solar_thermal_collector_area": 40.0, + "solar_thermal_collector_azimuth": 180, + "solar_thermal_collector_loop_type": "liquid direct", + "solar_thermal_collector_rated_optical_efficiency": 0.5, + "solar_thermal_collector_rated_thermal_losses": 0.2799, + "solar_thermal_collector_tilt": "20", + "solar_thermal_collector_type": "evacuated tube", + "solar_thermal_solar_fraction": 0, + "solar_thermal_storage_volume": "auto", + "solar_thermal_system_type": "none", + "wall_assembly_r": 23, + "wall_color": "medium", + "wall_siding_type": "wood siding", + "wall_type": "WoodStud", + "water_fixtures_shower_low_flow": true, + "water_fixtures_sink_low_flow": false, + "water_fixtures_usage_multiplier": 1.0, + "water_heater_efficiency": 0.95, + "water_heater_efficiency_type": "EnergyFactor", + "water_heater_fuel_type": "electricity", + "water_heater_jacket_rvalue": 0, + "water_heater_location": "living space", + "water_heater_num_units_served": 1, + "water_heater_recovery_efficiency": "0.76", + "water_heater_setpoint_temperature": "125", + "water_heater_standby_loss": 0, + "water_heater_tank_volume": "40", + "water_heater_type": "storage water heater", + "weather_station_epw_filepath": "USA_CO_Denver.Intl.AP.725650_TMY3.epw", + "whole_house_fan_flow_rate": 4500, + "whole_house_fan_power": 300, + "whole_house_fan_present": false, + "window_area_back": 108.0, + "window_area_front": 108.0, + "window_area_left": 72.0, + "window_area_right": 72.0, + "window_aspect_ratio": 1.333, + "window_back_wwr": 0, + "window_fraction_operable": 0.67, + "window_front_wwr": 0, + "window_interior_shading_summer": 0.7, + "window_interior_shading_winter": 0.85, + "window_left_wwr": 0, + "window_right_wwr": 0, + "window_shgc": 0.45, + "window_ufactor": 0.33 + }, + "measure_dir_name": "BuildResidentialHPXML" + } + ] +} \ No newline at end of file diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-mini-split-air-conditioner-only-ducted.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-mini-split-air-conditioner-only-ducted.osw index 03328abd..e694ffb5 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-mini-split-air-conditioner-only-ducted.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-mini-split-air-conditioner-only-ducted.osw @@ -6,58 +6,49 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 19.0, + "cooling_system_cooling_efficiency": 19.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.73, - "cooling_system_fan_power_watts_per_cfm": 0.2, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": true, "cooling_system_type": "mini-split", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -65,8 +56,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -74,11 +64,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "2", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 5.0, @@ -92,17 +81,15 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -133,6 +120,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, @@ -141,6 +129,7 @@ "geometry_num_floors_above_grade": 1, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family detached", @@ -150,22 +139,20 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "64000.0", - "heat_pump_heating_capacity_17F": "auto", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "none", "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "natural gas", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.92, @@ -186,7 +173,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base-hvac-mini-split-air-conditioner-only-ducted.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -208,14 +195,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -236,18 +221,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -274,21 +255,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -315,10 +294,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "none", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -326,8 +303,6 @@ "water_heater_efficiency": 0.95, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "electricity", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "18767", "water_heater_jacket_rvalue": 0, "water_heater_location": "living space", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-mini-split-air-conditioner-only-ductless.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-mini-split-air-conditioner-only-ductless.osw index e15fd18c..0498dff4 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-mini-split-air-conditioner-only-ductless.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-mini-split-air-conditioner-only-ductless.osw @@ -6,58 +6,49 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 19.0, + "cooling_system_cooling_efficiency": 19.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.73, - "cooling_system_fan_power_watts_per_cfm": 0.2, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "mini-split", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -65,8 +56,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -74,11 +64,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "2", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 5.0, @@ -92,17 +81,15 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -133,6 +120,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, @@ -141,6 +129,7 @@ "geometry_num_floors_above_grade": 1, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family detached", @@ -150,22 +139,20 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "64000.0", - "heat_pump_heating_capacity_17F": "auto", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "none", "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "natural gas", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.92, @@ -186,7 +173,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base-hvac-mini-split-air-conditioner-only-ductless.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -208,14 +195,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -236,18 +221,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -274,21 +255,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -315,10 +294,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "none", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -326,8 +303,6 @@ "water_heater_efficiency": 0.95, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "electricity", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "18767", "water_heater_jacket_rvalue": 0, "water_heater_location": "living space", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-mini-split-heat-pump-ducted-cooling-only.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-mini-split-heat-pump-ducted-cooling-only.osw index b3f8e27d..f396c532 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-mini-split-heat-pump-ducted-cooling-only.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-mini-split-heat-pump-ducted-cooling-only.osw @@ -6,58 +6,50 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", "cooling_system_cooling_compressor_type": "single stage", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.73, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "none", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -65,8 +57,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -74,11 +65,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "2", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 5.0, @@ -92,17 +82,15 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -133,6 +121,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, @@ -141,6 +130,7 @@ "geometry_num_floors_above_grade": 1, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family detached", @@ -149,24 +139,21 @@ "heat_pump_backup_heating_capacity": "34121.0", "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 19.0, + "heat_pump_cooling_efficiency": 19.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, - "heat_pump_fan_power_watts_per_cfm": 0.2, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 0, "heat_pump_heating_capacity": "0", - "heat_pump_heating_capacity_17F": "0", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 10.0, - "heat_pump_mini_split_is_ducted": true, + "heat_pump_heating_capacity_17_f": "0", + "heat_pump_heating_efficiency": 10.0, + "heat_pump_heating_efficiency_type": "HSPF", + "heat_pump_is_ducted": true, "heat_pump_type": "mini-split", "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "natural gas", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.92, @@ -187,7 +174,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base-hvac-mini-split-heat-pump-ducted-cooling-only.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -209,14 +196,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -237,18 +222,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -275,21 +256,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -316,10 +295,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "none", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -327,8 +304,6 @@ "water_heater_efficiency": 0.95, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "electricity", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "18767", "water_heater_jacket_rvalue": 0, "water_heater_location": "living space", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-mini-split-heat-pump-ducted-heating-only.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-mini-split-heat-pump-ducted-heating-only.osw index d52ce27b..0e73bddb 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-mini-split-heat-pump-ducted-heating-only.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-mini-split-heat-pump-ducted-heating-only.osw @@ -6,58 +6,50 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", "cooling_system_cooling_compressor_type": "single stage", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.73, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "none", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -65,8 +57,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -74,11 +65,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "2", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 5.0, @@ -92,17 +82,15 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -133,6 +121,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, @@ -141,6 +130,7 @@ "geometry_num_floors_above_grade": 1, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family detached", @@ -149,24 +139,21 @@ "heat_pump_backup_heating_capacity": "34121.0", "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "0", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 19.0, + "heat_pump_cooling_efficiency": 19.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, - "heat_pump_fan_power_watts_per_cfm": 0.2, "heat_pump_fraction_cool_load_served": 0, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "52000.0", - "heat_pump_heating_capacity_17F": "29500.0", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 10.0, - "heat_pump_mini_split_is_ducted": true, + "heat_pump_heating_capacity_17_f": "29500.0", + "heat_pump_heating_efficiency": 10.0, + "heat_pump_heating_efficiency_type": "HSPF", + "heat_pump_is_ducted": true, "heat_pump_type": "mini-split", "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "natural gas", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.92, @@ -187,7 +174,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base-hvac-mini-split-heat-pump-ducted-heating-only.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -209,14 +196,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -237,18 +222,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -275,21 +256,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -316,10 +295,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "none", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -327,8 +304,6 @@ "water_heater_efficiency": 0.95, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "electricity", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "18767", "water_heater_jacket_rvalue": 0, "water_heater_location": "living space", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-mini-split-heat-pump-ducted.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-mini-split-heat-pump-ducted.osw index 36b09c0e..74a1f3bd 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-mini-split-heat-pump-ducted.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-mini-split-heat-pump-ducted.osw @@ -6,58 +6,50 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", "cooling_system_cooling_compressor_type": "single stage", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.73, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "none", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -65,8 +57,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -74,11 +65,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "2", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 5.0, @@ -92,17 +82,15 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -133,6 +121,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, @@ -141,6 +130,7 @@ "geometry_num_floors_above_grade": 1, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family detached", @@ -149,24 +139,21 @@ "heat_pump_backup_heating_capacity": "34121.0", "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 19.0, + "heat_pump_cooling_efficiency": 19.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, - "heat_pump_fan_power_watts_per_cfm": 0.2, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "52000.0", - "heat_pump_heating_capacity_17F": "29500.0", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 10.0, - "heat_pump_mini_split_is_ducted": true, + "heat_pump_heating_capacity_17_f": "29500.0", + "heat_pump_heating_efficiency": 10.0, + "heat_pump_heating_efficiency_type": "HSPF", + "heat_pump_is_ducted": true, "heat_pump_type": "mini-split", "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "natural gas", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.92, @@ -187,7 +174,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base-hvac-mini-split-heat-pump-ducted.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -209,14 +196,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -237,18 +222,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -275,21 +256,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -316,10 +295,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "none", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -327,8 +304,6 @@ "water_heater_efficiency": 0.95, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "electricity", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "18767", "water_heater_jacket_rvalue": 0, "water_heater_location": "living space", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-mini-split-heat-pump-ductless.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-mini-split-heat-pump-ductless.osw index 6db61ca0..ba195a4a 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-mini-split-heat-pump-ductless.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-mini-split-heat-pump-ductless.osw @@ -6,58 +6,50 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", "cooling_system_cooling_compressor_type": "single stage", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.73, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "none", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -65,8 +57,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -74,11 +65,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "2", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 5.0, @@ -92,17 +82,15 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -133,6 +121,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, @@ -141,6 +130,7 @@ "geometry_num_floors_above_grade": 1, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family detached", @@ -149,24 +139,21 @@ "heat_pump_backup_heating_capacity": "34121.0", "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 19.0, + "heat_pump_cooling_efficiency": 19.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, - "heat_pump_fan_power_watts_per_cfm": 0.2, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "52000.0", - "heat_pump_heating_capacity_17F": "29500.0", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 10.0, - "heat_pump_mini_split_is_ducted": false, + "heat_pump_heating_capacity_17_f": "29500.0", + "heat_pump_heating_efficiency": 10.0, + "heat_pump_heating_efficiency_type": "HSPF", + "heat_pump_is_ducted": false, "heat_pump_type": "mini-split", "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "natural gas", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.92, @@ -187,7 +174,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base-hvac-mini-split-heat-pump-ductless.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -209,14 +196,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -237,18 +222,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -275,21 +256,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -316,10 +295,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "none", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -327,8 +304,6 @@ "water_heater_efficiency": 0.95, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "electricity", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "18767", "water_heater_jacket_rvalue": 0, "water_heater_location": "living space", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-none.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-none.osw index 1d4acfd6..e0618044 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-none.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-none.osw @@ -6,58 +6,50 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", "cooling_system_cooling_compressor_type": "single stage", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.73, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "none", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -65,8 +57,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -74,11 +65,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "2", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 25.0, @@ -92,17 +82,15 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -133,6 +121,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, @@ -141,6 +130,7 @@ "geometry_num_floors_above_grade": 1, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family detached", @@ -150,22 +140,20 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "64000.0", - "heat_pump_heating_capacity_17F": "auto", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "none", "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "natural gas", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.92, @@ -186,7 +174,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base-hvac-none.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -208,14 +196,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -236,18 +222,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -274,21 +256,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -315,10 +295,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "none", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -326,8 +304,6 @@ "water_heater_efficiency": 0.95, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "electricity", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "18767", "water_heater_jacket_rvalue": 0, "water_heater_location": "living space", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-portable-heater-gas-only.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-portable-heater-gas-only.osw index 8deb8c71..5634622e 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-portable-heater-gas-only.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-portable-heater-gas-only.osw @@ -6,58 +6,50 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", "cooling_system_cooling_compressor_type": "single stage", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.73, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "central air conditioner", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -65,8 +57,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -74,11 +65,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "2", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 25.0, @@ -92,17 +82,15 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -133,6 +121,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, @@ -141,6 +130,7 @@ "geometry_num_floors_above_grade": 1, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family detached", @@ -150,23 +140,20 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "64000.0", - "heat_pump_heating_capacity_17F": "auto", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "none", - "heating_system_fan_power_watts": 0.0, "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "natural gas", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 1.0, @@ -187,7 +174,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base-hvac-portable-heater-gas-only.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -209,14 +196,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -237,18 +222,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -275,21 +256,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -316,10 +295,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "none", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -327,8 +304,6 @@ "water_heater_efficiency": 0.95, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "electricity", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "18767", "water_heater_jacket_rvalue": 0, "water_heater_location": "living space", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-programmable-thermostat-detailed.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-programmable-thermostat-detailed.osw new file mode 100644 index 00000000..1bb5c873 --- /dev/null +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-programmable-thermostat-detailed.osw @@ -0,0 +1,337 @@ +{ + "measure_paths": [ + "../.." + ], + "steps": [ + { + "arguments": { + "air_leakage_house_pressure": 50, + "air_leakage_shielding_of_home": "auto", + "air_leakage_units": "ACH", + "air_leakage_value": 3, + "bathroom_fans_quantity": "0", + "ceiling_assembly_r": 39.3, + "ceiling_fan_cooling_setpoint_temp_offset": 0, + "ceiling_fan_efficiency": "auto", + "ceiling_fan_present": false, + "ceiling_fan_quantity": "auto", + "clothes_dryer_efficiency": "3.73", + "clothes_dryer_efficiency_type": "CombinedEnergyFactor", + "clothes_dryer_fuel_type": "electricity", + "clothes_dryer_location": "living space", + "clothes_dryer_usage_multiplier": 1.0, + "clothes_dryer_vented_flow_rate": "150.0", + "clothes_washer_capacity": "3.2", + "clothes_washer_efficiency": "1.21", + "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", + "clothes_washer_label_annual_gas_cost": "27.0", + "clothes_washer_label_electric_rate": "0.12", + "clothes_washer_label_gas_rate": "1.09", + "clothes_washer_label_usage": "6.0", + "clothes_washer_location": "living space", + "clothes_washer_rated_annual_kwh": "380.0", + "clothes_washer_usage_multiplier": 1.0, + "cooking_range_oven_fuel_type": "electricity", + "cooking_range_oven_is_convection": false, + "cooking_range_oven_is_induction": false, + "cooking_range_oven_location": "living space", + "cooking_range_oven_usage_multiplier": 1.0, + "cooling_system_cooling_capacity": "48000.0", + "cooling_system_cooling_compressor_type": "single stage", + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", + "cooling_system_cooling_sensible_heat_fraction": 0.73, + "cooling_system_fraction_cool_load_served": 1, + "cooling_system_is_ducted": false, + "cooling_system_type": "central air conditioner", + "dehumidifier_capacity": 40, + "dehumidifier_efficiency": 1.8, + "dehumidifier_efficiency_type": "EnergyFactor", + "dehumidifier_fraction_dehumidification_load_served": 1, + "dehumidifier_rh_setpoint": 0.5, + "dehumidifier_type": "none", + "dhw_distribution_pipe_r": "0.0", + "dhw_distribution_recirc_branch_piping_length": "50", + "dhw_distribution_recirc_control_type": "no control", + "dhw_distribution_recirc_piping_length": "50", + "dhw_distribution_recirc_pump_power": "50", + "dhw_distribution_standard_piping_length": "50", + "dhw_distribution_system_type": "Standard", + "dishwasher_efficiency": "307", + "dishwasher_efficiency_type": "RatedAnnualkWh", + "dishwasher_label_annual_gas_cost": "22.32", + "dishwasher_label_electric_rate": "0.12", + "dishwasher_label_gas_rate": "1.09", + "dishwasher_label_usage": "4.0", + "dishwasher_location": "living space", + "dishwasher_place_setting_capacity": "12", + "dishwasher_usage_multiplier": 1.0, + "door_area": 80.0, + "door_rvalue": 4.4, + "ducts_number_of_return_registers": "2", + "ducts_return_insulation_r": 0.0, + "ducts_return_leakage_units": "CFM25", + "ducts_return_leakage_value": 25.0, + "ducts_return_location": "attic - unvented", + "ducts_return_surface_area": "50.0", + "ducts_supply_insulation_r": 4.0, + "ducts_supply_leakage_units": "CFM25", + "ducts_supply_leakage_value": 75.0, + "ducts_supply_location": "attic - unvented", + "ducts_supply_surface_area": "150.0", + "dwhr_efficiency": 0.55, + "dwhr_equal_flow": true, + "dwhr_facilities_connected": "none", + "extra_refrigerator_location": "none", + "extra_refrigerator_rated_annual_kwh": "auto", + "extra_refrigerator_usage_multiplier": 1.0, + "floor_assembly_r": 0, + "foundation_wall_insulation_distance_to_bottom": "auto", + "foundation_wall_insulation_distance_to_top": 0.0, + "foundation_wall_insulation_r": 8.9, + "foundation_wall_thickness": "8.0", + "freezer_location": "none", + "freezer_rated_annual_kwh": "auto", + "freezer_usage_multiplier": 1.0, + "fuel_loads_fireplace_annual_therm": "auto", + "fuel_loads_fireplace_frac_latent": "auto", + "fuel_loads_fireplace_frac_sensible": "auto", + "fuel_loads_fireplace_fuel_type": "natural gas", + "fuel_loads_fireplace_present": false, + "fuel_loads_fireplace_usage_multiplier": 0.0, + "fuel_loads_grill_annual_therm": "auto", + "fuel_loads_grill_fuel_type": "natural gas", + "fuel_loads_grill_present": false, + "fuel_loads_grill_usage_multiplier": 0.0, + "fuel_loads_lighting_annual_therm": "auto", + "fuel_loads_lighting_fuel_type": "natural gas", + "fuel_loads_lighting_present": false, + "fuel_loads_lighting_usage_multiplier": 0.0, + "geometry_aspect_ratio": 1.5, + "geometry_attic_type": "UnventedAttic", + "geometry_balcony_depth": 0.0, + "geometry_cfa": 2700.0, + "geometry_corridor_position": "Double-Loaded Interior", + "geometry_corridor_width": 10.0, + "geometry_eaves_depth": 0, + "geometry_foundation_height": 8.0, + "geometry_foundation_height_above_grade": 1.0, + "geometry_foundation_type": "ConditionedBasement", + "geometry_garage_depth": 20.0, + "geometry_garage_position": "Right", + "geometry_garage_protrusion": 0.0, + "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", + "geometry_inset_depth": 0.0, + "geometry_inset_position": "Right", + "geometry_inset_width": 0.0, + "geometry_num_bathrooms": "2", + "geometry_num_bedrooms": 3, + "geometry_num_floors_above_grade": 1, + "geometry_num_occupants": "3", + "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, + "geometry_roof_pitch": "6:12", + "geometry_roof_type": "gable", + "geometry_unit_type": "single-family detached", + "geometry_wall_height": 8.0, + "heat_pump_backup_fuel": "none", + "heat_pump_backup_heating_capacity": "34121.0", + "heat_pump_backup_heating_efficiency": 1, + "heat_pump_cooling_capacity": "48000.0", + "heat_pump_cooling_compressor_type": "single stage", + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", + "heat_pump_cooling_sensible_heat_fraction": 0.73, + "heat_pump_fraction_cool_load_served": 1, + "heat_pump_fraction_heat_load_served": 1, + "heat_pump_heating_capacity": "64000.0", + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", + "heat_pump_type": "none", + "heating_system_fraction_heat_load_served": 1, + "heating_system_fraction_heat_load_served_2": 0.25, + "heating_system_fuel": "natural gas", + "heating_system_fuel_2": "electricity", + "heating_system_heating_capacity": "64000.0", + "heating_system_heating_capacity_2": "auto", + "heating_system_heating_efficiency": 0.92, + "heating_system_heating_efficiency_2": 1.0, + "heating_system_type": "Furnace", + "heating_system_type_2": "none", + "holiday_lighting_daily_kwh": "auto", + "holiday_lighting_period_begin_day_of_month": "auto", + "holiday_lighting_period_begin_month": "auto", + "holiday_lighting_period_end_day_of_month": "auto", + "holiday_lighting_period_end_month": "auto", + "holiday_lighting_present": false, + "hot_tub_heater_annual_kwh": "auto", + "hot_tub_heater_annual_therm": "auto", + "hot_tub_heater_type": "electric resistance", + "hot_tub_heater_usage_multiplier": 1.0, + "hot_tub_present": false, + "hot_tub_pump_annual_kwh": "auto", + "hot_tub_pump_usage_multiplier": 1.0, + "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base-hvac-programmable-thermostat-detailed.xml", + "kitchen_fans_quantity": "0", + "lighting_fraction_cfl_exterior": 0.4, + "lighting_fraction_cfl_garage": 0.4, + "lighting_fraction_cfl_interior": 0.4, + "lighting_fraction_led_exterior": 0.25, + "lighting_fraction_led_garage": 0.25, + "lighting_fraction_led_interior": 0.25, + "lighting_fraction_lfl_exterior": 0.1, + "lighting_fraction_lfl_garage": 0.1, + "lighting_fraction_lfl_interior": 0.1, + "lighting_usage_multiplier_exterior": 1.0, + "lighting_usage_multiplier_garage": 1.0, + "lighting_usage_multiplier_interior": 1.0, + "mech_vent_fan_power": 30, + "mech_vent_fan_power_2": 30, + "mech_vent_fan_type": "none", + "mech_vent_fan_type_2": "none", + "mech_vent_flow_rate": 110, + "mech_vent_flow_rate_2": 110, + "mech_vent_hours_in_operation": 24, + "mech_vent_hours_in_operation_2": 24, + "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", + "mech_vent_sensible_recovery_efficiency": 0.72, + "mech_vent_sensible_recovery_efficiency_2": 0.72, + "mech_vent_total_recovery_efficiency": 0.48, + "mech_vent_total_recovery_efficiency_2": 0.48, + "neighbor_back_distance": 0, + "neighbor_back_height": "auto", + "neighbor_front_distance": 0, + "neighbor_front_height": "auto", + "neighbor_left_distance": 0, + "neighbor_left_height": "auto", + "neighbor_right_distance": 0, + "neighbor_right_height": "auto", + "overhangs_back_depth": 0, + "overhangs_back_distance_to_top_of_window": 0, + "overhangs_front_depth": 0, + "overhangs_front_distance_to_top_of_window": 0, + "overhangs_left_depth": 0, + "overhangs_left_distance_to_top_of_window": 0, + "overhangs_right_depth": 0, + "overhangs_right_distance_to_top_of_window": 0, + "plug_loads_other_annual_kwh": "2457.0", + "plug_loads_other_frac_latent": "0.045", + "plug_loads_other_frac_sensible": "0.855", + "plug_loads_other_usage_multiplier": 1.0, + "plug_loads_television_annual_kwh": "620.0", + "plug_loads_television_usage_multiplier": 1.0, + "plug_loads_vehicle_annual_kwh": "auto", + "plug_loads_vehicle_present": false, + "plug_loads_vehicle_usage_multiplier": 0.0, + "plug_loads_well_pump_annual_kwh": "auto", + "plug_loads_well_pump_present": false, + "plug_loads_well_pump_usage_multiplier": 0.0, + "pool_heater_annual_kwh": "auto", + "pool_heater_annual_therm": "auto", + "pool_heater_type": "electric resistance", + "pool_heater_usage_multiplier": 1.0, + "pool_present": false, + "pool_pump_annual_kwh": "auto", + "pool_pump_usage_multiplier": 1.0, + "pv_system_array_azimuth_1": 180, + "pv_system_array_azimuth_2": 180, + "pv_system_array_tilt_1": "20", + "pv_system_array_tilt_2": "20", + "pv_system_inverter_efficiency_1": 0.96, + "pv_system_inverter_efficiency_2": 0.96, + "pv_system_location_1": "auto", + "pv_system_location_2": "auto", + "pv_system_max_power_output_1": 4000, + "pv_system_max_power_output_2": 4000, + "pv_system_module_type_1": "none", + "pv_system_module_type_2": "none", + "pv_system_num_units_served_1": 1, + "pv_system_num_units_served_2": 1, + "pv_system_system_losses_fraction_1": 0.14, + "pv_system_system_losses_fraction_2": 0.14, + "pv_system_tracking_1": "auto", + "pv_system_tracking_2": "auto", + "refrigerator_location": "living space", + "refrigerator_rated_annual_kwh": "650.0", + "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, + "roof_assembly_r": 2.3, + "roof_color": "medium", + "roof_material_type": "asphalt or fiberglass shingles", + "roof_radiant_barrier": false, + "roof_radiant_barrier_grade": "1", + "schedules_type": "default", + "setpoint_cooling_weekday": "82, 82, 82, 82, 82, 82, 82, 72, 72, 80, 80, 80, 80, 80, 80, 80, 80, 78, 78, 78, 78, 78, 82, 82", + "setpoint_cooling_weekend": "78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78", + "setpoint_heating_weekday": "64, 64, 64, 64, 64, 64, 64, 74, 74, 66, 66, 66, 66, 66, 66, 66, 66, 68, 68, 68, 68, 68, 64, 64", + "setpoint_heating_weekend": "74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74", + "simulation_control_timestep": "60", + "site_type": "suburban", + "skylight_area_back": 0, + "skylight_area_front": 0, + "skylight_area_left": 0, + "skylight_area_right": 0, + "skylight_shgc": 0.45, + "skylight_ufactor": 0.33, + "slab_carpet_fraction": "0.0", + "slab_carpet_r": "0.0", + "slab_perimeter_depth": 0, + "slab_perimeter_insulation_r": 0, + "slab_thickness": "4.0", + "slab_under_insulation_r": 0, + "slab_under_width": 0, + "solar_thermal_collector_area": 40.0, + "solar_thermal_collector_azimuth": 180, + "solar_thermal_collector_loop_type": "liquid direct", + "solar_thermal_collector_rated_optical_efficiency": 0.5, + "solar_thermal_collector_rated_thermal_losses": 0.2799, + "solar_thermal_collector_tilt": "20", + "solar_thermal_collector_type": "evacuated tube", + "solar_thermal_solar_fraction": 0, + "solar_thermal_storage_volume": "auto", + "solar_thermal_system_type": "none", + "wall_assembly_r": 23, + "wall_color": "medium", + "wall_siding_type": "wood siding", + "wall_type": "WoodStud", + "water_fixtures_shower_low_flow": true, + "water_fixtures_sink_low_flow": false, + "water_fixtures_usage_multiplier": 1.0, + "water_heater_efficiency": 0.95, + "water_heater_efficiency_type": "EnergyFactor", + "water_heater_fuel_type": "electricity", + "water_heater_jacket_rvalue": 0, + "water_heater_location": "living space", + "water_heater_num_units_served": 1, + "water_heater_recovery_efficiency": "0.76", + "water_heater_setpoint_temperature": "125", + "water_heater_standby_loss": 0, + "water_heater_tank_volume": "40", + "water_heater_type": "storage water heater", + "weather_station_epw_filepath": "USA_CO_Denver.Intl.AP.725650_TMY3.epw", + "whole_house_fan_flow_rate": 4500, + "whole_house_fan_power": 300, + "whole_house_fan_present": false, + "window_area_back": 108.0, + "window_area_front": 108.0, + "window_area_left": 72.0, + "window_area_right": 72.0, + "window_aspect_ratio": 1.333, + "window_back_wwr": 0, + "window_fraction_operable": 0.67, + "window_front_wwr": 0, + "window_interior_shading_summer": 0.7, + "window_interior_shading_winter": 0.85, + "window_left_wwr": 0, + "window_right_wwr": 0, + "window_shgc": 0.45, + "window_ufactor": 0.33 + }, + "measure_dir_name": "BuildResidentialHPXML" + } + ] +} \ No newline at end of file diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-room-ac-only-33percent.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-room-ac-only-33percent.osw index b45e9669..33656d34 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-room-ac-only-33percent.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-room-ac-only-33percent.osw @@ -6,57 +6,49 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 8.5, + "cooling_system_cooling_efficiency_type": "EER", "cooling_system_cooling_sensible_heat_fraction": 0.65, "cooling_system_fraction_cool_load_served": 0.33, "cooling_system_is_ducted": false, "cooling_system_type": "room air conditioner", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -64,8 +56,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -73,11 +64,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "2", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 25.0, @@ -91,17 +81,15 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -132,6 +120,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, @@ -140,6 +129,7 @@ "geometry_num_floors_above_grade": 1, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family detached", @@ -149,22 +139,20 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "64000.0", - "heat_pump_heating_capacity_17F": "auto", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "none", "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "natural gas", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.92, @@ -185,7 +173,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base-hvac-room-ac-only-33percent.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -207,14 +195,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -235,18 +221,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -273,21 +255,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -314,10 +294,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "none", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -325,8 +303,6 @@ "water_heater_efficiency": 0.95, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "electricity", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "18767", "water_heater_jacket_rvalue": 0, "water_heater_location": "living space", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-room-ac-only.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-room-ac-only.osw index 94cd5fdb..61eb45a3 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-room-ac-only.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-room-ac-only.osw @@ -6,57 +6,49 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 8.5, + "cooling_system_cooling_efficiency_type": "EER", "cooling_system_cooling_sensible_heat_fraction": 0.65, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "room air conditioner", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -64,8 +56,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -73,11 +64,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "2", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 25.0, @@ -91,17 +81,15 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -132,6 +120,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, @@ -140,6 +129,7 @@ "geometry_num_floors_above_grade": 1, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family detached", @@ -149,22 +139,20 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "64000.0", - "heat_pump_heating_capacity_17F": "auto", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "none", "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "natural gas", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.92, @@ -185,7 +173,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base-hvac-room-ac-only.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -207,14 +195,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -235,18 +221,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -273,21 +255,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -314,10 +294,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "none", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -325,8 +303,6 @@ "water_heater_efficiency": 0.95, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "electricity", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "18767", "water_heater_jacket_rvalue": 0, "water_heater_location": "living space", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-setpoints.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-setpoints.osw index 6c8d9fcc..564c38f0 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-setpoints.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-setpoints.osw @@ -6,58 +6,50 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", "cooling_system_cooling_compressor_type": "single stage", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.73, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "central air conditioner", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -65,8 +57,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -74,11 +65,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "2", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 25.0, @@ -92,17 +82,15 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -133,6 +121,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, @@ -141,6 +130,7 @@ "geometry_num_floors_above_grade": 1, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family detached", @@ -150,22 +140,20 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "64000.0", - "heat_pump_heating_capacity_17F": "auto", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "none", "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "natural gas", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.92, @@ -186,7 +174,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base-hvac-setpoints.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -208,14 +196,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -236,18 +222,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -274,21 +256,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 80.0, - "setpoint_cooling_weekend_temp": 80.0, - "setpoint_heating_weekday_temp": 60.0, - "setpoint_heating_weekend_temp": 60.0, + "setpoint_cooling_weekday": "80", + "setpoint_cooling_weekend": "80", + "setpoint_heating_weekday": "60", + "setpoint_heating_weekend": "60", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -315,10 +295,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "none", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -326,8 +304,6 @@ "water_heater_efficiency": 0.95, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "electricity", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "18767", "water_heater_jacket_rvalue": 0, "water_heater_location": "living space", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-stove-oil-only.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-stove-oil-only.osw index 6d9889ca..535b7fb9 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-stove-oil-only.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-stove-oil-only.osw @@ -6,58 +6,50 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", "cooling_system_cooling_compressor_type": "single stage", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.73, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "none", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -65,8 +57,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -74,11 +65,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "2", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 25.0, @@ -92,17 +82,15 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -133,6 +121,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, @@ -141,6 +130,7 @@ "geometry_num_floors_above_grade": 1, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family detached", @@ -150,23 +140,20 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "64000.0", - "heat_pump_heating_capacity_17F": "auto", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "none", - "heating_system_fan_power_watts": 40.0, "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "fuel oil", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.8, @@ -187,7 +174,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base-hvac-stove-oil-only.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -209,14 +196,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -237,18 +222,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -275,21 +256,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -316,10 +295,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "none", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -327,8 +304,6 @@ "water_heater_efficiency": 0.95, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "electricity", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "18767", "water_heater_jacket_rvalue": 0, "water_heater_location": "living space", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-stove-wood-pellets-only.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-stove-wood-pellets-only.osw index 2a972b36..339b5c1a 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-stove-wood-pellets-only.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-stove-wood-pellets-only.osw @@ -6,58 +6,50 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", "cooling_system_cooling_compressor_type": "single stage", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.73, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "none", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -65,8 +57,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -74,11 +65,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "2", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 25.0, @@ -92,17 +82,15 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -133,6 +121,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, @@ -141,6 +130,7 @@ "geometry_num_floors_above_grade": 1, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family detached", @@ -150,23 +140,20 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "64000.0", - "heat_pump_heating_capacity_17F": "auto", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "none", - "heating_system_fan_power_watts": 40.0, "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "wood pellets", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.8, @@ -187,7 +174,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base-hvac-stove-wood-pellets-only.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -209,14 +196,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -237,18 +222,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -275,21 +256,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -316,10 +295,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "none", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -327,8 +304,6 @@ "water_heater_efficiency": 0.95, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "electricity", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "18767", "water_heater_jacket_rvalue": 0, "water_heater_location": "living space", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-undersized.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-undersized.osw index 7a6f7121..2f96db1b 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-undersized.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-undersized.osw @@ -6,58 +6,50 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "4800.0", "cooling_system_cooling_compressor_type": "single stage", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.73, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "central air conditioner", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -65,8 +57,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -74,11 +65,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "2", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 2.5, @@ -92,17 +82,15 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -133,6 +121,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, @@ -141,6 +130,7 @@ "geometry_num_floors_above_grade": 1, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family detached", @@ -150,22 +140,20 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "64000.0", - "heat_pump_heating_capacity_17F": "auto", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "none", "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "natural gas", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "6400.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.92, @@ -186,7 +174,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base-hvac-undersized.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -208,14 +196,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -236,18 +222,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -274,21 +256,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -315,10 +295,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "none", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -326,8 +304,6 @@ "water_heater_efficiency": 0.95, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "electricity", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "18767", "water_heater_jacket_rvalue": 0, "water_heater_location": "living space", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-wall-furnace-elec-only.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-wall-furnace-elec-only.osw index 6882cb48..a773f473 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-wall-furnace-elec-only.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-wall-furnace-elec-only.osw @@ -6,58 +6,50 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", "cooling_system_cooling_compressor_type": "single stage", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.73, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "none", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -65,8 +57,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -74,11 +65,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "2", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 25.0, @@ -92,17 +82,15 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -133,6 +121,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, @@ -141,6 +130,7 @@ "geometry_num_floors_above_grade": 1, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family detached", @@ -150,23 +140,20 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "64000.0", - "heat_pump_heating_capacity_17F": "auto", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "none", - "heating_system_fan_power_watts": 0.0, "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "electricity", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 1.0, @@ -187,7 +174,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base-hvac-wall-furnace-elec-only.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -209,14 +196,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -237,18 +222,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -275,21 +256,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -316,10 +295,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "none", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -327,8 +304,6 @@ "water_heater_efficiency": 0.95, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "electricity", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "18767", "water_heater_jacket_rvalue": 0, "water_heater_location": "living space", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-lighting-ceiling-fans.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-lighting-ceiling-fans.osw index 4d16f8d6..9bdb441f 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-lighting-ceiling-fans.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-lighting-ceiling-fans.osw @@ -6,58 +6,50 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0.5, "ceiling_fan_efficiency": "100.0", "ceiling_fan_present": true, "ceiling_fan_quantity": "4", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", "cooling_system_cooling_compressor_type": "single stage", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.73, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "central air conditioner", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -65,8 +57,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -74,11 +65,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "2", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 25.0, @@ -92,17 +82,15 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -133,6 +121,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, @@ -141,6 +130,7 @@ "geometry_num_floors_above_grade": 1, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family detached", @@ -150,22 +140,20 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "64000.0", - "heat_pump_heating_capacity_17F": "auto", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "none", "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "natural gas", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.92, @@ -186,7 +174,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base-lighting-ceiling-fans.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -208,14 +196,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -236,18 +222,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -274,21 +256,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -315,10 +295,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "none", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -326,8 +304,6 @@ "water_heater_efficiency": 0.95, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "electricity", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "18767", "water_heater_jacket_rvalue": 0, "water_heater_location": "living space", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-lighting-detailed.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-lighting-detailed.osw index 613c3556..eabdccf7 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-lighting-detailed.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-lighting-detailed.osw @@ -6,58 +6,50 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", "cooling_system_cooling_compressor_type": "single stage", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.73, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "central air conditioner", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -65,8 +57,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -74,11 +65,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "2", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 25.0, @@ -92,17 +82,15 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -133,6 +121,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, @@ -141,6 +130,7 @@ "geometry_num_floors_above_grade": 1, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family detached", @@ -150,22 +140,20 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "64000.0", - "heat_pump_heating_capacity_17F": "auto", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "none", "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "natural gas", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.92, @@ -186,7 +174,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base-lighting-detailed.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -208,14 +196,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -236,18 +222,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -274,21 +256,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -315,10 +295,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "none", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -326,8 +304,6 @@ "water_heater_efficiency": 0.95, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "electricity", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "18767", "water_heater_jacket_rvalue": 0, "water_heater_location": "living space", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-location-AMY-2012.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-location-AMY-2012.osw index f28cf0d1..a50ac5ab 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-location-AMY-2012.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-location-AMY-2012.osw @@ -6,58 +6,50 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", "cooling_system_cooling_compressor_type": "single stage", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.73, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "central air conditioner", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -65,8 +57,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -74,11 +65,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "2", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 25.0, @@ -92,17 +82,15 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -133,6 +121,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, @@ -141,6 +130,7 @@ "geometry_num_floors_above_grade": 1, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family detached", @@ -150,22 +140,20 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "64000.0", - "heat_pump_heating_capacity_17F": "auto", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "none", "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "natural gas", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.92, @@ -186,7 +174,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base-location-AMY-2012.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -208,14 +196,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -236,18 +222,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -274,21 +256,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -315,10 +295,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "none", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -326,8 +304,6 @@ "water_heater_efficiency": 0.95, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "electricity", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "18767", "water_heater_jacket_rvalue": 0, "water_heater_location": "living space", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-location-baltimore-md.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-location-baltimore-md.osw index 8def6282..27ff30b4 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-location-baltimore-md.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-location-baltimore-md.osw @@ -6,58 +6,50 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", "cooling_system_cooling_compressor_type": "single stage", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.73, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "central air conditioner", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -65,8 +57,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -74,35 +65,32 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "1", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 25.0, - "ducts_return_location": "attic - unvented", + "ducts_return_location": "crawlspace - unvented", "ducts_return_surface_area": "50.0", "ducts_supply_insulation_r": 4.0, "ducts_supply_leakage_units": "CFM25", "ducts_supply_leakage_value": 75.0, - "ducts_supply_location": "attic - unvented", + "ducts_supply_location": "crawlspace - unvented", "ducts_supply_surface_area": "150.0", "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, - "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "floor_assembly_r": 18.7, + "foundation_wall_insulation_distance_to_bottom": 4.0, "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -122,17 +110,18 @@ "geometry_aspect_ratio": 1.5, "geometry_attic_type": "UnventedAttic", "geometry_balcony_depth": 0.0, - "geometry_cfa": 2700.0, + "geometry_cfa": 1350.0, "geometry_corridor_position": "Double-Loaded Interior", "geometry_corridor_width": 10.0, "geometry_eaves_depth": 0, - "geometry_foundation_height": 8.0, + "geometry_foundation_height": 4.0, "geometry_foundation_height_above_grade": 1.0, - "geometry_foundation_type": "ConditionedBasement", + "geometry_foundation_type": "UnventedCrawlspace", "geometry_garage_depth": 20.0, "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, @@ -141,6 +130,7 @@ "geometry_num_floors_above_grade": 1, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family detached", @@ -150,22 +140,20 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "64000.0", - "heat_pump_heating_capacity_17F": "auto", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "none", "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "natural gas", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.92, @@ -186,7 +174,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base-location-baltimore-md.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -208,14 +196,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -232,22 +218,18 @@ "overhangs_left_distance_to_top_of_window": 0, "overhangs_right_depth": 0, "overhangs_right_distance_to_top_of_window": 0, - "plug_loads_other_annual_kwh": "2457.0", + "plug_loads_other_annual_kwh": "1228.5", "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -274,21 +256,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -298,7 +278,7 @@ "skylight_shgc": 0.45, "skylight_ufactor": 0.33, "slab_carpet_fraction": "0.0", - "slab_carpet_r": "0.0", + "slab_carpet_r": "2.5", "slab_perimeter_depth": 0, "slab_perimeter_insulation_r": 0, "slab_thickness": "4.0", @@ -315,10 +295,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "none", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -326,10 +304,8 @@ "water_heater_efficiency": 0.95, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "electricity", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "18767", "water_heater_jacket_rvalue": 0, - "water_heater_location": "living space", + "water_heater_location": "crawlspace - unvented", "water_heater_num_units_served": 1, "water_heater_recovery_efficiency": "0.76", "water_heater_setpoint_temperature": "125", diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-location-dallas-tx.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-location-dallas-tx.osw index bc5bc5cd..900808bf 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-location-dallas-tx.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-location-dallas-tx.osw @@ -6,58 +6,50 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", "cooling_system_cooling_compressor_type": "single stage", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.73, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "central air conditioner", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -65,8 +57,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -74,11 +65,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "1", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 25.0, @@ -92,17 +82,15 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -133,6 +121,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, @@ -141,6 +130,7 @@ "geometry_num_floors_above_grade": 1, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family detached", @@ -150,22 +140,20 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "64000.0", - "heat_pump_heating_capacity_17F": "auto", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "none", "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "natural gas", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.92, @@ -186,7 +174,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base-location-dallas-tx.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -208,14 +196,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -236,18 +222,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -274,21 +256,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -315,10 +295,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "none", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -326,8 +304,6 @@ "water_heater_efficiency": 0.95, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "electricity", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "18767", "water_heater_jacket_rvalue": 0, "water_heater_location": "living space", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-location-duluth-mn.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-location-duluth-mn.osw index f7876e07..a3455963 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-location-duluth-mn.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-location-duluth-mn.osw @@ -6,58 +6,50 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", - "clothes_dryer_location": "living space", - "clothes_dryer_present": true, + "clothes_dryer_location": "basement - unconditioned", "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", - "clothes_washer_location": "living space", - "clothes_washer_present": true, + "clothes_washer_location": "basement - unconditioned", "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, - "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, + "cooking_range_oven_location": "basement - unconditioned", "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", "cooling_system_cooling_compressor_type": "single stage", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.73, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "central air conditioner", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -65,44 +57,40 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", "dishwasher_label_gas_rate": "1.09", "dishwasher_label_usage": "4.0", - "dishwasher_location": "living space", + "dishwasher_location": "basement - unconditioned", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "1", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 25.0, - "ducts_return_location": "attic - unvented", + "ducts_return_location": "basement - unconditioned", "ducts_return_surface_area": "50.0", "ducts_supply_insulation_r": 4.0, "ducts_supply_leakage_units": "CFM25", "ducts_supply_leakage_value": 75.0, - "ducts_supply_location": "attic - unvented", + "ducts_supply_location": "basement - unconditioned", "ducts_supply_surface_area": "150.0", "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, - "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "floor_assembly_r": 18.7, + "foundation_wall_insulation_distance_to_bottom": 0, "foundation_wall_insulation_distance_to_top": 0.0, - "foundation_wall_insulation_r": 8.9, + "foundation_wall_insulation_r": 0, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -122,17 +110,18 @@ "geometry_aspect_ratio": 1.5, "geometry_attic_type": "UnventedAttic", "geometry_balcony_depth": 0.0, - "geometry_cfa": 2700.0, + "geometry_cfa": 1350.0, "geometry_corridor_position": "Double-Loaded Interior", "geometry_corridor_width": 10.0, "geometry_eaves_depth": 0, "geometry_foundation_height": 8.0, "geometry_foundation_height_above_grade": 1.0, - "geometry_foundation_type": "ConditionedBasement", + "geometry_foundation_type": "UnconditionedBasement", "geometry_garage_depth": 20.0, "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, @@ -141,6 +130,7 @@ "geometry_num_floors_above_grade": 1, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family detached", @@ -150,22 +140,20 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "64000.0", - "heat_pump_heating_capacity_17F": "auto", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "none", "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "natural gas", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.92, @@ -186,7 +174,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base-location-duluth-mn.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -208,14 +196,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -232,22 +218,18 @@ "overhangs_left_distance_to_top_of_window": 0, "overhangs_right_depth": 0, "overhangs_right_distance_to_top_of_window": 0, - "plug_loads_other_annual_kwh": "2457.0", + "plug_loads_other_annual_kwh": "1228.5", "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -273,22 +255,20 @@ "pv_system_system_losses_fraction_2": 0.14, "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", - "refrigerator_location": "living space", - "refrigerator_present": true, + "refrigerator_location": "basement - unconditioned", "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 4.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -315,10 +295,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "none", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -326,10 +304,8 @@ "water_heater_efficiency": 0.95, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "electricity", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "18767", "water_heater_jacket_rvalue": 0, - "water_heater_location": "living space", + "water_heater_location": "basement - unconditioned", "water_heater_num_units_served": 1, "water_heater_recovery_efficiency": "0.76", "water_heater_setpoint_temperature": "125", diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-location-helena-mt.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-location-helena-mt.osw new file mode 100644 index 00000000..a6ed79f3 --- /dev/null +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-location-helena-mt.osw @@ -0,0 +1,337 @@ +{ + "measure_paths": [ + "../.." + ], + "steps": [ + { + "arguments": { + "air_leakage_house_pressure": 50, + "air_leakage_shielding_of_home": "auto", + "air_leakage_units": "ACH", + "air_leakage_value": 3, + "bathroom_fans_quantity": "0", + "ceiling_assembly_r": 39.3, + "ceiling_fan_cooling_setpoint_temp_offset": 0, + "ceiling_fan_efficiency": "auto", + "ceiling_fan_present": false, + "ceiling_fan_quantity": "auto", + "clothes_dryer_efficiency": "3.73", + "clothes_dryer_efficiency_type": "CombinedEnergyFactor", + "clothes_dryer_fuel_type": "electricity", + "clothes_dryer_location": "living space", + "clothes_dryer_usage_multiplier": 1.0, + "clothes_dryer_vented_flow_rate": "150.0", + "clothes_washer_capacity": "3.2", + "clothes_washer_efficiency": "1.21", + "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", + "clothes_washer_label_annual_gas_cost": "27.0", + "clothes_washer_label_electric_rate": "0.12", + "clothes_washer_label_gas_rate": "1.09", + "clothes_washer_label_usage": "6.0", + "clothes_washer_location": "living space", + "clothes_washer_rated_annual_kwh": "380.0", + "clothes_washer_usage_multiplier": 1.0, + "cooking_range_oven_fuel_type": "electricity", + "cooking_range_oven_is_convection": false, + "cooking_range_oven_is_induction": false, + "cooking_range_oven_location": "living space", + "cooking_range_oven_usage_multiplier": 1.0, + "cooling_system_cooling_capacity": "48000.0", + "cooling_system_cooling_compressor_type": "single stage", + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", + "cooling_system_cooling_sensible_heat_fraction": 0.73, + "cooling_system_fraction_cool_load_served": 1, + "cooling_system_is_ducted": false, + "cooling_system_type": "central air conditioner", + "dehumidifier_capacity": 40, + "dehumidifier_efficiency": 1.8, + "dehumidifier_efficiency_type": "EnergyFactor", + "dehumidifier_fraction_dehumidification_load_served": 1, + "dehumidifier_rh_setpoint": 0.5, + "dehumidifier_type": "none", + "dhw_distribution_pipe_r": "0.0", + "dhw_distribution_recirc_branch_piping_length": "50", + "dhw_distribution_recirc_control_type": "no control", + "dhw_distribution_recirc_piping_length": "50", + "dhw_distribution_recirc_pump_power": "50", + "dhw_distribution_standard_piping_length": "50", + "dhw_distribution_system_type": "Standard", + "dishwasher_efficiency": "307", + "dishwasher_efficiency_type": "RatedAnnualkWh", + "dishwasher_label_annual_gas_cost": "22.32", + "dishwasher_label_electric_rate": "0.12", + "dishwasher_label_gas_rate": "1.09", + "dishwasher_label_usage": "4.0", + "dishwasher_location": "living space", + "dishwasher_place_setting_capacity": "12", + "dishwasher_usage_multiplier": 1.0, + "door_area": 80.0, + "door_rvalue": 4.4, + "ducts_number_of_return_registers": "2", + "ducts_return_insulation_r": 0.0, + "ducts_return_leakage_units": "CFM25", + "ducts_return_leakage_value": 25.0, + "ducts_return_location": "attic - unvented", + "ducts_return_surface_area": "50.0", + "ducts_supply_insulation_r": 4.0, + "ducts_supply_leakage_units": "CFM25", + "ducts_supply_leakage_value": 75.0, + "ducts_supply_location": "attic - unvented", + "ducts_supply_surface_area": "150.0", + "dwhr_efficiency": 0.55, + "dwhr_equal_flow": true, + "dwhr_facilities_connected": "none", + "extra_refrigerator_location": "none", + "extra_refrigerator_rated_annual_kwh": "auto", + "extra_refrigerator_usage_multiplier": 1.0, + "floor_assembly_r": 0, + "foundation_wall_insulation_distance_to_bottom": "auto", + "foundation_wall_insulation_distance_to_top": 0.0, + "foundation_wall_insulation_r": 8.9, + "foundation_wall_thickness": "8.0", + "freezer_location": "none", + "freezer_rated_annual_kwh": "auto", + "freezer_usage_multiplier": 1.0, + "fuel_loads_fireplace_annual_therm": "auto", + "fuel_loads_fireplace_frac_latent": "auto", + "fuel_loads_fireplace_frac_sensible": "auto", + "fuel_loads_fireplace_fuel_type": "natural gas", + "fuel_loads_fireplace_present": false, + "fuel_loads_fireplace_usage_multiplier": 0.0, + "fuel_loads_grill_annual_therm": "auto", + "fuel_loads_grill_fuel_type": "natural gas", + "fuel_loads_grill_present": false, + "fuel_loads_grill_usage_multiplier": 0.0, + "fuel_loads_lighting_annual_therm": "auto", + "fuel_loads_lighting_fuel_type": "natural gas", + "fuel_loads_lighting_present": false, + "fuel_loads_lighting_usage_multiplier": 0.0, + "geometry_aspect_ratio": 1.5, + "geometry_attic_type": "UnventedAttic", + "geometry_balcony_depth": 0.0, + "geometry_cfa": 2700.0, + "geometry_corridor_position": "Double-Loaded Interior", + "geometry_corridor_width": 10.0, + "geometry_eaves_depth": 0, + "geometry_foundation_height": 8.0, + "geometry_foundation_height_above_grade": 1.0, + "geometry_foundation_type": "ConditionedBasement", + "geometry_garage_depth": 20.0, + "geometry_garage_position": "Right", + "geometry_garage_protrusion": 0.0, + "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", + "geometry_inset_depth": 0.0, + "geometry_inset_position": "Right", + "geometry_inset_width": 0.0, + "geometry_num_bathrooms": "2", + "geometry_num_bedrooms": 3, + "geometry_num_floors_above_grade": 1, + "geometry_num_occupants": "3", + "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, + "geometry_roof_pitch": "6:12", + "geometry_roof_type": "gable", + "geometry_unit_type": "single-family detached", + "geometry_wall_height": 8.0, + "heat_pump_backup_fuel": "none", + "heat_pump_backup_heating_capacity": "34121.0", + "heat_pump_backup_heating_efficiency": 1, + "heat_pump_cooling_capacity": "48000.0", + "heat_pump_cooling_compressor_type": "single stage", + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", + "heat_pump_cooling_sensible_heat_fraction": 0.73, + "heat_pump_fraction_cool_load_served": 1, + "heat_pump_fraction_heat_load_served": 1, + "heat_pump_heating_capacity": "64000.0", + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", + "heat_pump_type": "none", + "heating_system_fraction_heat_load_served": 1, + "heating_system_fraction_heat_load_served_2": 0.25, + "heating_system_fuel": "natural gas", + "heating_system_fuel_2": "electricity", + "heating_system_heating_capacity": "64000.0", + "heating_system_heating_capacity_2": "auto", + "heating_system_heating_efficiency": 0.92, + "heating_system_heating_efficiency_2": 1.0, + "heating_system_type": "Furnace", + "heating_system_type_2": "none", + "holiday_lighting_daily_kwh": "auto", + "holiday_lighting_period_begin_day_of_month": "auto", + "holiday_lighting_period_begin_month": "auto", + "holiday_lighting_period_end_day_of_month": "auto", + "holiday_lighting_period_end_month": "auto", + "holiday_lighting_present": false, + "hot_tub_heater_annual_kwh": "auto", + "hot_tub_heater_annual_therm": "auto", + "hot_tub_heater_type": "electric resistance", + "hot_tub_heater_usage_multiplier": 1.0, + "hot_tub_present": false, + "hot_tub_pump_annual_kwh": "auto", + "hot_tub_pump_usage_multiplier": 1.0, + "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base-location-helena-mt.xml", + "kitchen_fans_quantity": "0", + "lighting_fraction_cfl_exterior": 0.4, + "lighting_fraction_cfl_garage": 0.4, + "lighting_fraction_cfl_interior": 0.4, + "lighting_fraction_led_exterior": 0.25, + "lighting_fraction_led_garage": 0.25, + "lighting_fraction_led_interior": 0.25, + "lighting_fraction_lfl_exterior": 0.1, + "lighting_fraction_lfl_garage": 0.1, + "lighting_fraction_lfl_interior": 0.1, + "lighting_usage_multiplier_exterior": 1.0, + "lighting_usage_multiplier_garage": 1.0, + "lighting_usage_multiplier_interior": 1.0, + "mech_vent_fan_power": 30, + "mech_vent_fan_power_2": 30, + "mech_vent_fan_type": "none", + "mech_vent_fan_type_2": "none", + "mech_vent_flow_rate": 110, + "mech_vent_flow_rate_2": 110, + "mech_vent_hours_in_operation": 24, + "mech_vent_hours_in_operation_2": 24, + "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", + "mech_vent_sensible_recovery_efficiency": 0.72, + "mech_vent_sensible_recovery_efficiency_2": 0.72, + "mech_vent_total_recovery_efficiency": 0.48, + "mech_vent_total_recovery_efficiency_2": 0.48, + "neighbor_back_distance": 0, + "neighbor_back_height": "auto", + "neighbor_front_distance": 0, + "neighbor_front_height": "auto", + "neighbor_left_distance": 0, + "neighbor_left_height": "auto", + "neighbor_right_distance": 0, + "neighbor_right_height": "auto", + "overhangs_back_depth": 0, + "overhangs_back_distance_to_top_of_window": 0, + "overhangs_front_depth": 0, + "overhangs_front_distance_to_top_of_window": 0, + "overhangs_left_depth": 0, + "overhangs_left_distance_to_top_of_window": 0, + "overhangs_right_depth": 0, + "overhangs_right_distance_to_top_of_window": 0, + "plug_loads_other_annual_kwh": "2457.0", + "plug_loads_other_frac_latent": "0.045", + "plug_loads_other_frac_sensible": "0.855", + "plug_loads_other_usage_multiplier": 1.0, + "plug_loads_television_annual_kwh": "620.0", + "plug_loads_television_usage_multiplier": 1.0, + "plug_loads_vehicle_annual_kwh": "auto", + "plug_loads_vehicle_present": false, + "plug_loads_vehicle_usage_multiplier": 0.0, + "plug_loads_well_pump_annual_kwh": "auto", + "plug_loads_well_pump_present": false, + "plug_loads_well_pump_usage_multiplier": 0.0, + "pool_heater_annual_kwh": "auto", + "pool_heater_annual_therm": "auto", + "pool_heater_type": "electric resistance", + "pool_heater_usage_multiplier": 1.0, + "pool_present": false, + "pool_pump_annual_kwh": "auto", + "pool_pump_usage_multiplier": 1.0, + "pv_system_array_azimuth_1": 180, + "pv_system_array_azimuth_2": 180, + "pv_system_array_tilt_1": "20", + "pv_system_array_tilt_2": "20", + "pv_system_inverter_efficiency_1": 0.96, + "pv_system_inverter_efficiency_2": 0.96, + "pv_system_location_1": "auto", + "pv_system_location_2": "auto", + "pv_system_max_power_output_1": 4000, + "pv_system_max_power_output_2": 4000, + "pv_system_module_type_1": "none", + "pv_system_module_type_2": "none", + "pv_system_num_units_served_1": 1, + "pv_system_num_units_served_2": 1, + "pv_system_system_losses_fraction_1": 0.14, + "pv_system_system_losses_fraction_2": 0.14, + "pv_system_tracking_1": "auto", + "pv_system_tracking_2": "auto", + "refrigerator_location": "living space", + "refrigerator_rated_annual_kwh": "650.0", + "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, + "roof_assembly_r": 2.3, + "roof_color": "medium", + "roof_material_type": "asphalt or fiberglass shingles", + "roof_radiant_barrier": false, + "roof_radiant_barrier_grade": "1", + "schedules_type": "default", + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", + "simulation_control_timestep": "60", + "site_type": "suburban", + "skylight_area_back": 0, + "skylight_area_front": 0, + "skylight_area_left": 0, + "skylight_area_right": 0, + "skylight_shgc": 0.45, + "skylight_ufactor": 0.33, + "slab_carpet_fraction": "0.0", + "slab_carpet_r": "0.0", + "slab_perimeter_depth": 0, + "slab_perimeter_insulation_r": 0, + "slab_thickness": "4.0", + "slab_under_insulation_r": 0, + "slab_under_width": 0, + "solar_thermal_collector_area": 40.0, + "solar_thermal_collector_azimuth": 180, + "solar_thermal_collector_loop_type": "liquid direct", + "solar_thermal_collector_rated_optical_efficiency": 0.5, + "solar_thermal_collector_rated_thermal_losses": 0.2799, + "solar_thermal_collector_tilt": "20", + "solar_thermal_collector_type": "evacuated tube", + "solar_thermal_solar_fraction": 0, + "solar_thermal_storage_volume": "auto", + "solar_thermal_system_type": "none", + "wall_assembly_r": 23, + "wall_color": "medium", + "wall_siding_type": "wood siding", + "wall_type": "WoodStud", + "water_fixtures_shower_low_flow": true, + "water_fixtures_sink_low_flow": false, + "water_fixtures_usage_multiplier": 1.0, + "water_heater_efficiency": 0.95, + "water_heater_efficiency_type": "EnergyFactor", + "water_heater_fuel_type": "electricity", + "water_heater_jacket_rvalue": 0, + "water_heater_location": "living space", + "water_heater_num_units_served": 1, + "water_heater_recovery_efficiency": "0.76", + "water_heater_setpoint_temperature": "125", + "water_heater_standby_loss": 0, + "water_heater_tank_volume": "40", + "water_heater_type": "storage water heater", + "weather_station_epw_filepath": "USA_MT_Helena.Rgnl.AP.727720_TMY3.epw", + "whole_house_fan_flow_rate": 4500, + "whole_house_fan_power": 300, + "whole_house_fan_present": false, + "window_area_back": 108.0, + "window_area_front": 108.0, + "window_area_left": 72.0, + "window_area_right": 72.0, + "window_aspect_ratio": 1.333, + "window_back_wwr": 0, + "window_fraction_operable": 0.67, + "window_front_wwr": 0, + "window_interior_shading_summer": 0.7, + "window_interior_shading_winter": 0.85, + "window_left_wwr": 0, + "window_right_wwr": 0, + "window_shgc": 0.45, + "window_ufactor": 0.33 + }, + "measure_dir_name": "BuildResidentialHPXML" + } + ] +} \ No newline at end of file diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-location-honolulu-hi.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-location-honolulu-hi.osw new file mode 100644 index 00000000..8e4b3e1b --- /dev/null +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-location-honolulu-hi.osw @@ -0,0 +1,337 @@ +{ + "measure_paths": [ + "../.." + ], + "steps": [ + { + "arguments": { + "air_leakage_house_pressure": 50, + "air_leakage_shielding_of_home": "auto", + "air_leakage_units": "ACH", + "air_leakage_value": 3, + "bathroom_fans_quantity": "0", + "ceiling_assembly_r": 39.3, + "ceiling_fan_cooling_setpoint_temp_offset": 0, + "ceiling_fan_efficiency": "auto", + "ceiling_fan_present": false, + "ceiling_fan_quantity": "auto", + "clothes_dryer_efficiency": "3.73", + "clothes_dryer_efficiency_type": "CombinedEnergyFactor", + "clothes_dryer_fuel_type": "electricity", + "clothes_dryer_location": "living space", + "clothes_dryer_usage_multiplier": 1.0, + "clothes_dryer_vented_flow_rate": "150.0", + "clothes_washer_capacity": "3.2", + "clothes_washer_efficiency": "1.21", + "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", + "clothes_washer_label_annual_gas_cost": "27.0", + "clothes_washer_label_electric_rate": "0.12", + "clothes_washer_label_gas_rate": "1.09", + "clothes_washer_label_usage": "6.0", + "clothes_washer_location": "living space", + "clothes_washer_rated_annual_kwh": "380.0", + "clothes_washer_usage_multiplier": 1.0, + "cooking_range_oven_fuel_type": "electricity", + "cooking_range_oven_is_convection": false, + "cooking_range_oven_is_induction": false, + "cooking_range_oven_location": "living space", + "cooking_range_oven_usage_multiplier": 1.0, + "cooling_system_cooling_capacity": "48000.0", + "cooling_system_cooling_compressor_type": "single stage", + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", + "cooling_system_cooling_sensible_heat_fraction": 0.73, + "cooling_system_fraction_cool_load_served": 1, + "cooling_system_is_ducted": false, + "cooling_system_type": "central air conditioner", + "dehumidifier_capacity": 40, + "dehumidifier_efficiency": 1.8, + "dehumidifier_efficiency_type": "EnergyFactor", + "dehumidifier_fraction_dehumidification_load_served": 1, + "dehumidifier_rh_setpoint": 0.5, + "dehumidifier_type": "none", + "dhw_distribution_pipe_r": "0.0", + "dhw_distribution_recirc_branch_piping_length": "50", + "dhw_distribution_recirc_control_type": "no control", + "dhw_distribution_recirc_piping_length": "50", + "dhw_distribution_recirc_pump_power": "50", + "dhw_distribution_standard_piping_length": "50", + "dhw_distribution_system_type": "Standard", + "dishwasher_efficiency": "307", + "dishwasher_efficiency_type": "RatedAnnualkWh", + "dishwasher_label_annual_gas_cost": "22.32", + "dishwasher_label_electric_rate": "0.12", + "dishwasher_label_gas_rate": "1.09", + "dishwasher_label_usage": "4.0", + "dishwasher_location": "living space", + "dishwasher_place_setting_capacity": "12", + "dishwasher_usage_multiplier": 1.0, + "door_area": 80.0, + "door_rvalue": 4.4, + "ducts_number_of_return_registers": "1", + "ducts_return_insulation_r": 0.0, + "ducts_return_leakage_units": "CFM25", + "ducts_return_leakage_value": 25.0, + "ducts_return_location": "under slab", + "ducts_return_surface_area": "50.0", + "ducts_supply_insulation_r": 4.0, + "ducts_supply_leakage_units": "CFM25", + "ducts_supply_leakage_value": 75.0, + "ducts_supply_location": "under slab", + "ducts_supply_surface_area": "150.0", + "dwhr_efficiency": 0.55, + "dwhr_equal_flow": true, + "dwhr_facilities_connected": "none", + "extra_refrigerator_location": "none", + "extra_refrigerator_rated_annual_kwh": "auto", + "extra_refrigerator_usage_multiplier": 1.0, + "floor_assembly_r": 0, + "foundation_wall_insulation_distance_to_bottom": "auto", + "foundation_wall_insulation_distance_to_top": 0.0, + "foundation_wall_insulation_r": 8.9, + "foundation_wall_thickness": "8.0", + "freezer_location": "none", + "freezer_rated_annual_kwh": "auto", + "freezer_usage_multiplier": 1.0, + "fuel_loads_fireplace_annual_therm": "auto", + "fuel_loads_fireplace_frac_latent": "auto", + "fuel_loads_fireplace_frac_sensible": "auto", + "fuel_loads_fireplace_fuel_type": "natural gas", + "fuel_loads_fireplace_present": false, + "fuel_loads_fireplace_usage_multiplier": 0.0, + "fuel_loads_grill_annual_therm": "auto", + "fuel_loads_grill_fuel_type": "natural gas", + "fuel_loads_grill_present": false, + "fuel_loads_grill_usage_multiplier": 0.0, + "fuel_loads_lighting_annual_therm": "auto", + "fuel_loads_lighting_fuel_type": "natural gas", + "fuel_loads_lighting_present": false, + "fuel_loads_lighting_usage_multiplier": 0.0, + "geometry_aspect_ratio": 1.5, + "geometry_attic_type": "UnventedAttic", + "geometry_balcony_depth": 0.0, + "geometry_cfa": 1350.0, + "geometry_corridor_position": "Double-Loaded Interior", + "geometry_corridor_width": 10.0, + "geometry_eaves_depth": 0, + "geometry_foundation_height": 0.0, + "geometry_foundation_height_above_grade": 0.0, + "geometry_foundation_type": "SlabOnGrade", + "geometry_garage_depth": 20.0, + "geometry_garage_position": "Right", + "geometry_garage_protrusion": 0.0, + "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", + "geometry_inset_depth": 0.0, + "geometry_inset_position": "Right", + "geometry_inset_width": 0.0, + "geometry_num_bathrooms": "2", + "geometry_num_bedrooms": 3, + "geometry_num_floors_above_grade": 1, + "geometry_num_occupants": "3", + "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, + "geometry_roof_pitch": "6:12", + "geometry_roof_type": "gable", + "geometry_unit_type": "single-family detached", + "geometry_wall_height": 8.0, + "heat_pump_backup_fuel": "none", + "heat_pump_backup_heating_capacity": "34121.0", + "heat_pump_backup_heating_efficiency": 1, + "heat_pump_cooling_capacity": "48000.0", + "heat_pump_cooling_compressor_type": "single stage", + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", + "heat_pump_cooling_sensible_heat_fraction": 0.73, + "heat_pump_fraction_cool_load_served": 1, + "heat_pump_fraction_heat_load_served": 1, + "heat_pump_heating_capacity": "64000.0", + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", + "heat_pump_type": "none", + "heating_system_fraction_heat_load_served": 1, + "heating_system_fraction_heat_load_served_2": 0.25, + "heating_system_fuel": "natural gas", + "heating_system_fuel_2": "electricity", + "heating_system_heating_capacity": "64000.0", + "heating_system_heating_capacity_2": "auto", + "heating_system_heating_efficiency": 0.92, + "heating_system_heating_efficiency_2": 1.0, + "heating_system_type": "Furnace", + "heating_system_type_2": "none", + "holiday_lighting_daily_kwh": "auto", + "holiday_lighting_period_begin_day_of_month": "auto", + "holiday_lighting_period_begin_month": "auto", + "holiday_lighting_period_end_day_of_month": "auto", + "holiday_lighting_period_end_month": "auto", + "holiday_lighting_present": false, + "hot_tub_heater_annual_kwh": "auto", + "hot_tub_heater_annual_therm": "auto", + "hot_tub_heater_type": "electric resistance", + "hot_tub_heater_usage_multiplier": 1.0, + "hot_tub_present": false, + "hot_tub_pump_annual_kwh": "auto", + "hot_tub_pump_usage_multiplier": 1.0, + "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base-location-honolulu-hi.xml", + "kitchen_fans_quantity": "0", + "lighting_fraction_cfl_exterior": 0.4, + "lighting_fraction_cfl_garage": 0.4, + "lighting_fraction_cfl_interior": 0.4, + "lighting_fraction_led_exterior": 0.25, + "lighting_fraction_led_garage": 0.25, + "lighting_fraction_led_interior": 0.25, + "lighting_fraction_lfl_exterior": 0.1, + "lighting_fraction_lfl_garage": 0.1, + "lighting_fraction_lfl_interior": 0.1, + "lighting_usage_multiplier_exterior": 1.0, + "lighting_usage_multiplier_garage": 1.0, + "lighting_usage_multiplier_interior": 1.0, + "mech_vent_fan_power": 30, + "mech_vent_fan_power_2": 30, + "mech_vent_fan_type": "none", + "mech_vent_fan_type_2": "none", + "mech_vent_flow_rate": 110, + "mech_vent_flow_rate_2": 110, + "mech_vent_hours_in_operation": 24, + "mech_vent_hours_in_operation_2": 24, + "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", + "mech_vent_sensible_recovery_efficiency": 0.72, + "mech_vent_sensible_recovery_efficiency_2": 0.72, + "mech_vent_total_recovery_efficiency": 0.48, + "mech_vent_total_recovery_efficiency_2": 0.48, + "neighbor_back_distance": 0, + "neighbor_back_height": "auto", + "neighbor_front_distance": 0, + "neighbor_front_height": "auto", + "neighbor_left_distance": 0, + "neighbor_left_height": "auto", + "neighbor_right_distance": 0, + "neighbor_right_height": "auto", + "overhangs_back_depth": 0, + "overhangs_back_distance_to_top_of_window": 0, + "overhangs_front_depth": 0, + "overhangs_front_distance_to_top_of_window": 0, + "overhangs_left_depth": 0, + "overhangs_left_distance_to_top_of_window": 0, + "overhangs_right_depth": 0, + "overhangs_right_distance_to_top_of_window": 0, + "plug_loads_other_annual_kwh": "1228.5", + "plug_loads_other_frac_latent": "0.045", + "plug_loads_other_frac_sensible": "0.855", + "plug_loads_other_usage_multiplier": 1.0, + "plug_loads_television_annual_kwh": "620.0", + "plug_loads_television_usage_multiplier": 1.0, + "plug_loads_vehicle_annual_kwh": "auto", + "plug_loads_vehicle_present": false, + "plug_loads_vehicle_usage_multiplier": 0.0, + "plug_loads_well_pump_annual_kwh": "auto", + "plug_loads_well_pump_present": false, + "plug_loads_well_pump_usage_multiplier": 0.0, + "pool_heater_annual_kwh": "auto", + "pool_heater_annual_therm": "auto", + "pool_heater_type": "electric resistance", + "pool_heater_usage_multiplier": 1.0, + "pool_present": false, + "pool_pump_annual_kwh": "auto", + "pool_pump_usage_multiplier": 1.0, + "pv_system_array_azimuth_1": 180, + "pv_system_array_azimuth_2": 180, + "pv_system_array_tilt_1": "20", + "pv_system_array_tilt_2": "20", + "pv_system_inverter_efficiency_1": 0.96, + "pv_system_inverter_efficiency_2": 0.96, + "pv_system_location_1": "auto", + "pv_system_location_2": "auto", + "pv_system_max_power_output_1": 4000, + "pv_system_max_power_output_2": 4000, + "pv_system_module_type_1": "none", + "pv_system_module_type_2": "none", + "pv_system_num_units_served_1": 1, + "pv_system_num_units_served_2": 1, + "pv_system_system_losses_fraction_1": 0.14, + "pv_system_system_losses_fraction_2": 0.14, + "pv_system_tracking_1": "auto", + "pv_system_tracking_2": "auto", + "refrigerator_location": "living space", + "refrigerator_rated_annual_kwh": "650.0", + "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, + "roof_assembly_r": 2.3, + "roof_color": "medium", + "roof_material_type": "asphalt or fiberglass shingles", + "roof_radiant_barrier": false, + "roof_radiant_barrier_grade": "1", + "schedules_type": "default", + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", + "simulation_control_timestep": "60", + "site_type": "suburban", + "skylight_area_back": 0, + "skylight_area_front": 0, + "skylight_area_left": 0, + "skylight_area_right": 0, + "skylight_shgc": 0.45, + "skylight_ufactor": 0.33, + "slab_carpet_fraction": "1.0", + "slab_carpet_r": "2.5", + "slab_perimeter_depth": 0, + "slab_perimeter_insulation_r": 0, + "slab_thickness": "4.0", + "slab_under_insulation_r": 5, + "slab_under_width": 999, + "solar_thermal_collector_area": 40.0, + "solar_thermal_collector_azimuth": 180, + "solar_thermal_collector_loop_type": "liquid direct", + "solar_thermal_collector_rated_optical_efficiency": 0.5, + "solar_thermal_collector_rated_thermal_losses": 0.2799, + "solar_thermal_collector_tilt": "20", + "solar_thermal_collector_type": "evacuated tube", + "solar_thermal_solar_fraction": 0, + "solar_thermal_storage_volume": "auto", + "solar_thermal_system_type": "none", + "wall_assembly_r": 23, + "wall_color": "medium", + "wall_siding_type": "wood siding", + "wall_type": "WoodStud", + "water_fixtures_shower_low_flow": true, + "water_fixtures_sink_low_flow": false, + "water_fixtures_usage_multiplier": 1.0, + "water_heater_efficiency": 0.95, + "water_heater_efficiency_type": "EnergyFactor", + "water_heater_fuel_type": "electricity", + "water_heater_jacket_rvalue": 0, + "water_heater_location": "living space", + "water_heater_num_units_served": 1, + "water_heater_recovery_efficiency": "0.76", + "water_heater_setpoint_temperature": "125", + "water_heater_standby_loss": 0, + "water_heater_tank_volume": "40", + "water_heater_type": "storage water heater", + "weather_station_epw_filepath": "USA_HI_Honolulu.Intl.AP.911820_TMY3.epw", + "whole_house_fan_flow_rate": 4500, + "whole_house_fan_power": 300, + "whole_house_fan_present": false, + "window_area_back": 108.0, + "window_area_front": 108.0, + "window_area_left": 72.0, + "window_area_right": 72.0, + "window_aspect_ratio": 1.333, + "window_back_wwr": 0, + "window_fraction_operable": 0.67, + "window_front_wwr": 0, + "window_interior_shading_summer": 0.7, + "window_interior_shading_winter": 0.85, + "window_left_wwr": 0, + "window_right_wwr": 0, + "window_shgc": 0.45, + "window_ufactor": 0.33 + }, + "measure_dir_name": "BuildResidentialHPXML" + } + ] +} \ No newline at end of file diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-location-miami-fl.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-location-miami-fl.osw index 4d18eb61..f49377d8 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-location-miami-fl.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-location-miami-fl.osw @@ -6,58 +6,50 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", "cooling_system_cooling_compressor_type": "single stage", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.73, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "central air conditioner", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -65,8 +57,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -74,11 +65,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "1", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 25.0, @@ -92,17 +82,15 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -133,6 +121,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, @@ -141,6 +130,7 @@ "geometry_num_floors_above_grade": 1, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family detached", @@ -150,22 +140,20 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "64000.0", - "heat_pump_heating_capacity_17F": "auto", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "none", "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "natural gas", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.92, @@ -186,7 +174,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base-location-miami-fl.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -208,14 +196,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -236,18 +222,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -274,21 +256,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -315,10 +295,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "none", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -326,8 +304,6 @@ "water_heater_efficiency": 0.95, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "electricity", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "18767", "water_heater_jacket_rvalue": 0, "water_heater_location": "living space", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-location-phoenix-az.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-location-phoenix-az.osw new file mode 100644 index 00000000..fc6cebb1 --- /dev/null +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-location-phoenix-az.osw @@ -0,0 +1,337 @@ +{ + "measure_paths": [ + "../.." + ], + "steps": [ + { + "arguments": { + "air_leakage_house_pressure": 50, + "air_leakage_shielding_of_home": "auto", + "air_leakage_units": "ACH", + "air_leakage_value": 3, + "bathroom_fans_quantity": "0", + "ceiling_assembly_r": 39.3, + "ceiling_fan_cooling_setpoint_temp_offset": 0, + "ceiling_fan_efficiency": "auto", + "ceiling_fan_present": false, + "ceiling_fan_quantity": "auto", + "clothes_dryer_efficiency": "3.73", + "clothes_dryer_efficiency_type": "CombinedEnergyFactor", + "clothes_dryer_fuel_type": "electricity", + "clothes_dryer_location": "living space", + "clothes_dryer_usage_multiplier": 1.0, + "clothes_dryer_vented_flow_rate": "150.0", + "clothes_washer_capacity": "3.2", + "clothes_washer_efficiency": "1.21", + "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", + "clothes_washer_label_annual_gas_cost": "27.0", + "clothes_washer_label_electric_rate": "0.12", + "clothes_washer_label_gas_rate": "1.09", + "clothes_washer_label_usage": "6.0", + "clothes_washer_location": "living space", + "clothes_washer_rated_annual_kwh": "380.0", + "clothes_washer_usage_multiplier": 1.0, + "cooking_range_oven_fuel_type": "electricity", + "cooking_range_oven_is_convection": false, + "cooking_range_oven_is_induction": false, + "cooking_range_oven_location": "living space", + "cooking_range_oven_usage_multiplier": 1.0, + "cooling_system_cooling_capacity": "48000.0", + "cooling_system_cooling_compressor_type": "single stage", + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", + "cooling_system_cooling_sensible_heat_fraction": 0.73, + "cooling_system_fraction_cool_load_served": 1, + "cooling_system_is_ducted": false, + "cooling_system_type": "central air conditioner", + "dehumidifier_capacity": 40, + "dehumidifier_efficiency": 1.8, + "dehumidifier_efficiency_type": "EnergyFactor", + "dehumidifier_fraction_dehumidification_load_served": 1, + "dehumidifier_rh_setpoint": 0.5, + "dehumidifier_type": "none", + "dhw_distribution_pipe_r": "0.0", + "dhw_distribution_recirc_branch_piping_length": "50", + "dhw_distribution_recirc_control_type": "no control", + "dhw_distribution_recirc_piping_length": "50", + "dhw_distribution_recirc_pump_power": "50", + "dhw_distribution_standard_piping_length": "50", + "dhw_distribution_system_type": "Standard", + "dishwasher_efficiency": "307", + "dishwasher_efficiency_type": "RatedAnnualkWh", + "dishwasher_label_annual_gas_cost": "22.32", + "dishwasher_label_electric_rate": "0.12", + "dishwasher_label_gas_rate": "1.09", + "dishwasher_label_usage": "4.0", + "dishwasher_location": "living space", + "dishwasher_place_setting_capacity": "12", + "dishwasher_usage_multiplier": 1.0, + "door_area": 80.0, + "door_rvalue": 4.4, + "ducts_number_of_return_registers": "1", + "ducts_return_insulation_r": 0.0, + "ducts_return_leakage_units": "CFM25", + "ducts_return_leakage_value": 25.0, + "ducts_return_location": "under slab", + "ducts_return_surface_area": "50.0", + "ducts_supply_insulation_r": 4.0, + "ducts_supply_leakage_units": "CFM25", + "ducts_supply_leakage_value": 75.0, + "ducts_supply_location": "under slab", + "ducts_supply_surface_area": "150.0", + "dwhr_efficiency": 0.55, + "dwhr_equal_flow": true, + "dwhr_facilities_connected": "none", + "extra_refrigerator_location": "none", + "extra_refrigerator_rated_annual_kwh": "auto", + "extra_refrigerator_usage_multiplier": 1.0, + "floor_assembly_r": 0, + "foundation_wall_insulation_distance_to_bottom": "auto", + "foundation_wall_insulation_distance_to_top": 0.0, + "foundation_wall_insulation_r": 8.9, + "foundation_wall_thickness": "8.0", + "freezer_location": "none", + "freezer_rated_annual_kwh": "auto", + "freezer_usage_multiplier": 1.0, + "fuel_loads_fireplace_annual_therm": "auto", + "fuel_loads_fireplace_frac_latent": "auto", + "fuel_loads_fireplace_frac_sensible": "auto", + "fuel_loads_fireplace_fuel_type": "natural gas", + "fuel_loads_fireplace_present": false, + "fuel_loads_fireplace_usage_multiplier": 0.0, + "fuel_loads_grill_annual_therm": "auto", + "fuel_loads_grill_fuel_type": "natural gas", + "fuel_loads_grill_present": false, + "fuel_loads_grill_usage_multiplier": 0.0, + "fuel_loads_lighting_annual_therm": "auto", + "fuel_loads_lighting_fuel_type": "natural gas", + "fuel_loads_lighting_present": false, + "fuel_loads_lighting_usage_multiplier": 0.0, + "geometry_aspect_ratio": 1.5, + "geometry_attic_type": "UnventedAttic", + "geometry_balcony_depth": 0.0, + "geometry_cfa": 1350.0, + "geometry_corridor_position": "Double-Loaded Interior", + "geometry_corridor_width": 10.0, + "geometry_eaves_depth": 0, + "geometry_foundation_height": 0.0, + "geometry_foundation_height_above_grade": 0.0, + "geometry_foundation_type": "SlabOnGrade", + "geometry_garage_depth": 20.0, + "geometry_garage_position": "Right", + "geometry_garage_protrusion": 0.0, + "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", + "geometry_inset_depth": 0.0, + "geometry_inset_position": "Right", + "geometry_inset_width": 0.0, + "geometry_num_bathrooms": "2", + "geometry_num_bedrooms": 3, + "geometry_num_floors_above_grade": 1, + "geometry_num_occupants": "3", + "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, + "geometry_roof_pitch": "6:12", + "geometry_roof_type": "gable", + "geometry_unit_type": "single-family detached", + "geometry_wall_height": 8.0, + "heat_pump_backup_fuel": "none", + "heat_pump_backup_heating_capacity": "34121.0", + "heat_pump_backup_heating_efficiency": 1, + "heat_pump_cooling_capacity": "48000.0", + "heat_pump_cooling_compressor_type": "single stage", + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", + "heat_pump_cooling_sensible_heat_fraction": 0.73, + "heat_pump_fraction_cool_load_served": 1, + "heat_pump_fraction_heat_load_served": 1, + "heat_pump_heating_capacity": "64000.0", + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", + "heat_pump_type": "none", + "heating_system_fraction_heat_load_served": 1, + "heating_system_fraction_heat_load_served_2": 0.25, + "heating_system_fuel": "natural gas", + "heating_system_fuel_2": "electricity", + "heating_system_heating_capacity": "64000.0", + "heating_system_heating_capacity_2": "auto", + "heating_system_heating_efficiency": 0.92, + "heating_system_heating_efficiency_2": 1.0, + "heating_system_type": "Furnace", + "heating_system_type_2": "none", + "holiday_lighting_daily_kwh": "auto", + "holiday_lighting_period_begin_day_of_month": "auto", + "holiday_lighting_period_begin_month": "auto", + "holiday_lighting_period_end_day_of_month": "auto", + "holiday_lighting_period_end_month": "auto", + "holiday_lighting_present": false, + "hot_tub_heater_annual_kwh": "auto", + "hot_tub_heater_annual_therm": "auto", + "hot_tub_heater_type": "electric resistance", + "hot_tub_heater_usage_multiplier": 1.0, + "hot_tub_present": false, + "hot_tub_pump_annual_kwh": "auto", + "hot_tub_pump_usage_multiplier": 1.0, + "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base-location-phoenix-az.xml", + "kitchen_fans_quantity": "0", + "lighting_fraction_cfl_exterior": 0.4, + "lighting_fraction_cfl_garage": 0.4, + "lighting_fraction_cfl_interior": 0.4, + "lighting_fraction_led_exterior": 0.25, + "lighting_fraction_led_garage": 0.25, + "lighting_fraction_led_interior": 0.25, + "lighting_fraction_lfl_exterior": 0.1, + "lighting_fraction_lfl_garage": 0.1, + "lighting_fraction_lfl_interior": 0.1, + "lighting_usage_multiplier_exterior": 1.0, + "lighting_usage_multiplier_garage": 1.0, + "lighting_usage_multiplier_interior": 1.0, + "mech_vent_fan_power": 30, + "mech_vent_fan_power_2": 30, + "mech_vent_fan_type": "none", + "mech_vent_fan_type_2": "none", + "mech_vent_flow_rate": 110, + "mech_vent_flow_rate_2": 110, + "mech_vent_hours_in_operation": 24, + "mech_vent_hours_in_operation_2": 24, + "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", + "mech_vent_sensible_recovery_efficiency": 0.72, + "mech_vent_sensible_recovery_efficiency_2": 0.72, + "mech_vent_total_recovery_efficiency": 0.48, + "mech_vent_total_recovery_efficiency_2": 0.48, + "neighbor_back_distance": 0, + "neighbor_back_height": "auto", + "neighbor_front_distance": 0, + "neighbor_front_height": "auto", + "neighbor_left_distance": 0, + "neighbor_left_height": "auto", + "neighbor_right_distance": 0, + "neighbor_right_height": "auto", + "overhangs_back_depth": 0, + "overhangs_back_distance_to_top_of_window": 0, + "overhangs_front_depth": 0, + "overhangs_front_distance_to_top_of_window": 0, + "overhangs_left_depth": 0, + "overhangs_left_distance_to_top_of_window": 0, + "overhangs_right_depth": 0, + "overhangs_right_distance_to_top_of_window": 0, + "plug_loads_other_annual_kwh": "1228.5", + "plug_loads_other_frac_latent": "0.045", + "plug_loads_other_frac_sensible": "0.855", + "plug_loads_other_usage_multiplier": 1.0, + "plug_loads_television_annual_kwh": "620.0", + "plug_loads_television_usage_multiplier": 1.0, + "plug_loads_vehicle_annual_kwh": "auto", + "plug_loads_vehicle_present": false, + "plug_loads_vehicle_usage_multiplier": 0.0, + "plug_loads_well_pump_annual_kwh": "auto", + "plug_loads_well_pump_present": false, + "plug_loads_well_pump_usage_multiplier": 0.0, + "pool_heater_annual_kwh": "auto", + "pool_heater_annual_therm": "auto", + "pool_heater_type": "electric resistance", + "pool_heater_usage_multiplier": 1.0, + "pool_present": false, + "pool_pump_annual_kwh": "auto", + "pool_pump_usage_multiplier": 1.0, + "pv_system_array_azimuth_1": 180, + "pv_system_array_azimuth_2": 180, + "pv_system_array_tilt_1": "20", + "pv_system_array_tilt_2": "20", + "pv_system_inverter_efficiency_1": 0.96, + "pv_system_inverter_efficiency_2": 0.96, + "pv_system_location_1": "auto", + "pv_system_location_2": "auto", + "pv_system_max_power_output_1": 4000, + "pv_system_max_power_output_2": 4000, + "pv_system_module_type_1": "none", + "pv_system_module_type_2": "none", + "pv_system_num_units_served_1": 1, + "pv_system_num_units_served_2": 1, + "pv_system_system_losses_fraction_1": 0.14, + "pv_system_system_losses_fraction_2": 0.14, + "pv_system_tracking_1": "auto", + "pv_system_tracking_2": "auto", + "refrigerator_location": "living space", + "refrigerator_rated_annual_kwh": "650.0", + "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, + "roof_assembly_r": 2.3, + "roof_color": "medium", + "roof_material_type": "asphalt or fiberglass shingles", + "roof_radiant_barrier": false, + "roof_radiant_barrier_grade": "1", + "schedules_type": "default", + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", + "simulation_control_timestep": "60", + "site_type": "suburban", + "skylight_area_back": 0, + "skylight_area_front": 0, + "skylight_area_left": 0, + "skylight_area_right": 0, + "skylight_shgc": 0.45, + "skylight_ufactor": 0.33, + "slab_carpet_fraction": "1.0", + "slab_carpet_r": "2.5", + "slab_perimeter_depth": 0, + "slab_perimeter_insulation_r": 0, + "slab_thickness": "4.0", + "slab_under_insulation_r": 5, + "slab_under_width": 999, + "solar_thermal_collector_area": 40.0, + "solar_thermal_collector_azimuth": 180, + "solar_thermal_collector_loop_type": "liquid direct", + "solar_thermal_collector_rated_optical_efficiency": 0.5, + "solar_thermal_collector_rated_thermal_losses": 0.2799, + "solar_thermal_collector_tilt": "20", + "solar_thermal_collector_type": "evacuated tube", + "solar_thermal_solar_fraction": 0, + "solar_thermal_storage_volume": "auto", + "solar_thermal_system_type": "none", + "wall_assembly_r": 23, + "wall_color": "medium", + "wall_siding_type": "wood siding", + "wall_type": "WoodStud", + "water_fixtures_shower_low_flow": true, + "water_fixtures_sink_low_flow": false, + "water_fixtures_usage_multiplier": 1.0, + "water_heater_efficiency": 0.95, + "water_heater_efficiency_type": "EnergyFactor", + "water_heater_fuel_type": "electricity", + "water_heater_jacket_rvalue": 0, + "water_heater_location": "living space", + "water_heater_num_units_served": 1, + "water_heater_recovery_efficiency": "0.76", + "water_heater_setpoint_temperature": "125", + "water_heater_standby_loss": 0, + "water_heater_tank_volume": "40", + "water_heater_type": "storage water heater", + "weather_station_epw_filepath": "USA_AZ_Phoenix-Sky.Harbor.Intl.AP.722780_TMY3.epw", + "whole_house_fan_flow_rate": 4500, + "whole_house_fan_power": 300, + "whole_house_fan_present": false, + "window_area_back": 108.0, + "window_area_front": 108.0, + "window_area_left": 72.0, + "window_area_right": 72.0, + "window_aspect_ratio": 1.333, + "window_back_wwr": 0, + "window_fraction_operable": 0.67, + "window_front_wwr": 0, + "window_interior_shading_summer": 0.7, + "window_interior_shading_winter": 0.85, + "window_left_wwr": 0, + "window_right_wwr": 0, + "window_shgc": 0.45, + "window_ufactor": 0.33 + }, + "measure_dir_name": "BuildResidentialHPXML" + } + ] +} \ No newline at end of file diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-location-portland-or.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-location-portland-or.osw new file mode 100644 index 00000000..53251961 --- /dev/null +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-location-portland-or.osw @@ -0,0 +1,337 @@ +{ + "measure_paths": [ + "../.." + ], + "steps": [ + { + "arguments": { + "air_leakage_house_pressure": 50, + "air_leakage_shielding_of_home": "auto", + "air_leakage_units": "ACH", + "air_leakage_value": 3, + "bathroom_fans_quantity": "0", + "ceiling_assembly_r": 39.3, + "ceiling_fan_cooling_setpoint_temp_offset": 0, + "ceiling_fan_efficiency": "auto", + "ceiling_fan_present": false, + "ceiling_fan_quantity": "auto", + "clothes_dryer_efficiency": "3.73", + "clothes_dryer_efficiency_type": "CombinedEnergyFactor", + "clothes_dryer_fuel_type": "electricity", + "clothes_dryer_location": "living space", + "clothes_dryer_usage_multiplier": 1.0, + "clothes_dryer_vented_flow_rate": "150.0", + "clothes_washer_capacity": "3.2", + "clothes_washer_efficiency": "1.21", + "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", + "clothes_washer_label_annual_gas_cost": "27.0", + "clothes_washer_label_electric_rate": "0.12", + "clothes_washer_label_gas_rate": "1.09", + "clothes_washer_label_usage": "6.0", + "clothes_washer_location": "living space", + "clothes_washer_rated_annual_kwh": "380.0", + "clothes_washer_usage_multiplier": 1.0, + "cooking_range_oven_fuel_type": "electricity", + "cooking_range_oven_is_convection": false, + "cooking_range_oven_is_induction": false, + "cooking_range_oven_location": "living space", + "cooking_range_oven_usage_multiplier": 1.0, + "cooling_system_cooling_capacity": "48000.0", + "cooling_system_cooling_compressor_type": "single stage", + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", + "cooling_system_cooling_sensible_heat_fraction": 0.73, + "cooling_system_fraction_cool_load_served": 1, + "cooling_system_is_ducted": false, + "cooling_system_type": "central air conditioner", + "dehumidifier_capacity": 40, + "dehumidifier_efficiency": 1.8, + "dehumidifier_efficiency_type": "EnergyFactor", + "dehumidifier_fraction_dehumidification_load_served": 1, + "dehumidifier_rh_setpoint": 0.5, + "dehumidifier_type": "none", + "dhw_distribution_pipe_r": "0.0", + "dhw_distribution_recirc_branch_piping_length": "50", + "dhw_distribution_recirc_control_type": "no control", + "dhw_distribution_recirc_piping_length": "50", + "dhw_distribution_recirc_pump_power": "50", + "dhw_distribution_standard_piping_length": "50", + "dhw_distribution_system_type": "Standard", + "dishwasher_efficiency": "307", + "dishwasher_efficiency_type": "RatedAnnualkWh", + "dishwasher_label_annual_gas_cost": "22.32", + "dishwasher_label_electric_rate": "0.12", + "dishwasher_label_gas_rate": "1.09", + "dishwasher_label_usage": "4.0", + "dishwasher_location": "living space", + "dishwasher_place_setting_capacity": "12", + "dishwasher_usage_multiplier": 1.0, + "door_area": 80.0, + "door_rvalue": 4.4, + "ducts_number_of_return_registers": "1", + "ducts_return_insulation_r": 0.0, + "ducts_return_leakage_units": "CFM25", + "ducts_return_leakage_value": 25.0, + "ducts_return_location": "crawlspace - vented", + "ducts_return_surface_area": "50.0", + "ducts_supply_insulation_r": 4.0, + "ducts_supply_leakage_units": "CFM25", + "ducts_supply_leakage_value": 75.0, + "ducts_supply_location": "crawlspace - vented", + "ducts_supply_surface_area": "150.0", + "dwhr_efficiency": 0.55, + "dwhr_equal_flow": true, + "dwhr_facilities_connected": "none", + "extra_refrigerator_location": "none", + "extra_refrigerator_rated_annual_kwh": "auto", + "extra_refrigerator_usage_multiplier": 1.0, + "floor_assembly_r": 18.7, + "foundation_wall_insulation_distance_to_bottom": 4.0, + "foundation_wall_insulation_distance_to_top": 0.0, + "foundation_wall_insulation_r": 8.9, + "foundation_wall_thickness": "8.0", + "freezer_location": "none", + "freezer_rated_annual_kwh": "auto", + "freezer_usage_multiplier": 1.0, + "fuel_loads_fireplace_annual_therm": "auto", + "fuel_loads_fireplace_frac_latent": "auto", + "fuel_loads_fireplace_frac_sensible": "auto", + "fuel_loads_fireplace_fuel_type": "natural gas", + "fuel_loads_fireplace_present": false, + "fuel_loads_fireplace_usage_multiplier": 0.0, + "fuel_loads_grill_annual_therm": "auto", + "fuel_loads_grill_fuel_type": "natural gas", + "fuel_loads_grill_present": false, + "fuel_loads_grill_usage_multiplier": 0.0, + "fuel_loads_lighting_annual_therm": "auto", + "fuel_loads_lighting_fuel_type": "natural gas", + "fuel_loads_lighting_present": false, + "fuel_loads_lighting_usage_multiplier": 0.0, + "geometry_aspect_ratio": 1.5, + "geometry_attic_type": "UnventedAttic", + "geometry_balcony_depth": 0.0, + "geometry_cfa": 1350.0, + "geometry_corridor_position": "Double-Loaded Interior", + "geometry_corridor_width": 10.0, + "geometry_eaves_depth": 0, + "geometry_foundation_height": 4.0, + "geometry_foundation_height_above_grade": 1.0, + "geometry_foundation_type": "VentedCrawlspace", + "geometry_garage_depth": 20.0, + "geometry_garage_position": "Right", + "geometry_garage_protrusion": 0.0, + "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", + "geometry_inset_depth": 0.0, + "geometry_inset_position": "Right", + "geometry_inset_width": 0.0, + "geometry_num_bathrooms": "2", + "geometry_num_bedrooms": 3, + "geometry_num_floors_above_grade": 1, + "geometry_num_occupants": "3", + "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, + "geometry_roof_pitch": "6:12", + "geometry_roof_type": "gable", + "geometry_unit_type": "single-family detached", + "geometry_wall_height": 8.0, + "heat_pump_backup_fuel": "none", + "heat_pump_backup_heating_capacity": "34121.0", + "heat_pump_backup_heating_efficiency": 1, + "heat_pump_cooling_capacity": "48000.0", + "heat_pump_cooling_compressor_type": "single stage", + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", + "heat_pump_cooling_sensible_heat_fraction": 0.73, + "heat_pump_fraction_cool_load_served": 1, + "heat_pump_fraction_heat_load_served": 1, + "heat_pump_heating_capacity": "64000.0", + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", + "heat_pump_type": "none", + "heating_system_fraction_heat_load_served": 1, + "heating_system_fraction_heat_load_served_2": 0.25, + "heating_system_fuel": "natural gas", + "heating_system_fuel_2": "electricity", + "heating_system_heating_capacity": "64000.0", + "heating_system_heating_capacity_2": "auto", + "heating_system_heating_efficiency": 0.92, + "heating_system_heating_efficiency_2": 1.0, + "heating_system_type": "Furnace", + "heating_system_type_2": "none", + "holiday_lighting_daily_kwh": "auto", + "holiday_lighting_period_begin_day_of_month": "auto", + "holiday_lighting_period_begin_month": "auto", + "holiday_lighting_period_end_day_of_month": "auto", + "holiday_lighting_period_end_month": "auto", + "holiday_lighting_present": false, + "hot_tub_heater_annual_kwh": "auto", + "hot_tub_heater_annual_therm": "auto", + "hot_tub_heater_type": "electric resistance", + "hot_tub_heater_usage_multiplier": 1.0, + "hot_tub_present": false, + "hot_tub_pump_annual_kwh": "auto", + "hot_tub_pump_usage_multiplier": 1.0, + "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base-location-portland-or.xml", + "kitchen_fans_quantity": "0", + "lighting_fraction_cfl_exterior": 0.4, + "lighting_fraction_cfl_garage": 0.4, + "lighting_fraction_cfl_interior": 0.4, + "lighting_fraction_led_exterior": 0.25, + "lighting_fraction_led_garage": 0.25, + "lighting_fraction_led_interior": 0.25, + "lighting_fraction_lfl_exterior": 0.1, + "lighting_fraction_lfl_garage": 0.1, + "lighting_fraction_lfl_interior": 0.1, + "lighting_usage_multiplier_exterior": 1.0, + "lighting_usage_multiplier_garage": 1.0, + "lighting_usage_multiplier_interior": 1.0, + "mech_vent_fan_power": 30, + "mech_vent_fan_power_2": 30, + "mech_vent_fan_type": "none", + "mech_vent_fan_type_2": "none", + "mech_vent_flow_rate": 110, + "mech_vent_flow_rate_2": 110, + "mech_vent_hours_in_operation": 24, + "mech_vent_hours_in_operation_2": 24, + "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", + "mech_vent_sensible_recovery_efficiency": 0.72, + "mech_vent_sensible_recovery_efficiency_2": 0.72, + "mech_vent_total_recovery_efficiency": 0.48, + "mech_vent_total_recovery_efficiency_2": 0.48, + "neighbor_back_distance": 0, + "neighbor_back_height": "auto", + "neighbor_front_distance": 0, + "neighbor_front_height": "auto", + "neighbor_left_distance": 0, + "neighbor_left_height": "auto", + "neighbor_right_distance": 0, + "neighbor_right_height": "auto", + "overhangs_back_depth": 0, + "overhangs_back_distance_to_top_of_window": 0, + "overhangs_front_depth": 0, + "overhangs_front_distance_to_top_of_window": 0, + "overhangs_left_depth": 0, + "overhangs_left_distance_to_top_of_window": 0, + "overhangs_right_depth": 0, + "overhangs_right_distance_to_top_of_window": 0, + "plug_loads_other_annual_kwh": "1228.5", + "plug_loads_other_frac_latent": "0.045", + "plug_loads_other_frac_sensible": "0.855", + "plug_loads_other_usage_multiplier": 1.0, + "plug_loads_television_annual_kwh": "620.0", + "plug_loads_television_usage_multiplier": 1.0, + "plug_loads_vehicle_annual_kwh": "auto", + "plug_loads_vehicle_present": false, + "plug_loads_vehicle_usage_multiplier": 0.0, + "plug_loads_well_pump_annual_kwh": "auto", + "plug_loads_well_pump_present": false, + "plug_loads_well_pump_usage_multiplier": 0.0, + "pool_heater_annual_kwh": "auto", + "pool_heater_annual_therm": "auto", + "pool_heater_type": "electric resistance", + "pool_heater_usage_multiplier": 1.0, + "pool_present": false, + "pool_pump_annual_kwh": "auto", + "pool_pump_usage_multiplier": 1.0, + "pv_system_array_azimuth_1": 180, + "pv_system_array_azimuth_2": 180, + "pv_system_array_tilt_1": "20", + "pv_system_array_tilt_2": "20", + "pv_system_inverter_efficiency_1": 0.96, + "pv_system_inverter_efficiency_2": 0.96, + "pv_system_location_1": "auto", + "pv_system_location_2": "auto", + "pv_system_max_power_output_1": 4000, + "pv_system_max_power_output_2": 4000, + "pv_system_module_type_1": "none", + "pv_system_module_type_2": "none", + "pv_system_num_units_served_1": 1, + "pv_system_num_units_served_2": 1, + "pv_system_system_losses_fraction_1": 0.14, + "pv_system_system_losses_fraction_2": 0.14, + "pv_system_tracking_1": "auto", + "pv_system_tracking_2": "auto", + "refrigerator_location": "living space", + "refrigerator_rated_annual_kwh": "650.0", + "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, + "roof_assembly_r": 2.3, + "roof_color": "medium", + "roof_material_type": "asphalt or fiberglass shingles", + "roof_radiant_barrier": false, + "roof_radiant_barrier_grade": "1", + "schedules_type": "default", + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", + "simulation_control_timestep": "60", + "site_type": "suburban", + "skylight_area_back": 0, + "skylight_area_front": 0, + "skylight_area_left": 0, + "skylight_area_right": 0, + "skylight_shgc": 0.45, + "skylight_ufactor": 0.33, + "slab_carpet_fraction": "0.0", + "slab_carpet_r": "2.5", + "slab_perimeter_depth": 0, + "slab_perimeter_insulation_r": 0, + "slab_thickness": "4.0", + "slab_under_insulation_r": 0, + "slab_under_width": 0, + "solar_thermal_collector_area": 40.0, + "solar_thermal_collector_azimuth": 180, + "solar_thermal_collector_loop_type": "liquid direct", + "solar_thermal_collector_rated_optical_efficiency": 0.5, + "solar_thermal_collector_rated_thermal_losses": 0.2799, + "solar_thermal_collector_tilt": "20", + "solar_thermal_collector_type": "evacuated tube", + "solar_thermal_solar_fraction": 0, + "solar_thermal_storage_volume": "auto", + "solar_thermal_system_type": "none", + "wall_assembly_r": 23, + "wall_color": "medium", + "wall_siding_type": "wood siding", + "wall_type": "WoodStud", + "water_fixtures_shower_low_flow": true, + "water_fixtures_sink_low_flow": false, + "water_fixtures_usage_multiplier": 1.0, + "water_heater_efficiency": 0.95, + "water_heater_efficiency_type": "EnergyFactor", + "water_heater_fuel_type": "electricity", + "water_heater_jacket_rvalue": 0, + "water_heater_location": "crawlspace - vented", + "water_heater_num_units_served": 1, + "water_heater_recovery_efficiency": "0.76", + "water_heater_setpoint_temperature": "125", + "water_heater_standby_loss": 0, + "water_heater_tank_volume": "40", + "water_heater_type": "storage water heater", + "weather_station_epw_filepath": "USA_OR_Portland.Intl.AP.726980_TMY3.epw", + "whole_house_fan_flow_rate": 4500, + "whole_house_fan_power": 300, + "whole_house_fan_present": false, + "window_area_back": 108.0, + "window_area_front": 108.0, + "window_area_left": 72.0, + "window_area_right": 72.0, + "window_aspect_ratio": 1.333, + "window_back_wwr": 0, + "window_fraction_operable": 0.67, + "window_front_wwr": 0, + "window_interior_shading_summer": 0.7, + "window_interior_shading_winter": 0.85, + "window_left_wwr": 0, + "window_right_wwr": 0, + "window_shgc": 0.45, + "window_ufactor": 0.33 + }, + "measure_dir_name": "BuildResidentialHPXML" + } + ] +} \ No newline at end of file diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-mechvent-balanced.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-mechvent-balanced.osw index 6da65a0f..0e0fbd65 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-mechvent-balanced.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-mechvent-balanced.osw @@ -6,58 +6,50 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", "cooling_system_cooling_compressor_type": "single stage", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.73, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "central air conditioner", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -65,8 +57,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -74,11 +65,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "2", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 25.0, @@ -92,17 +82,15 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -133,6 +121,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, @@ -141,6 +130,7 @@ "geometry_num_floors_above_grade": 1, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family detached", @@ -150,22 +140,20 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "64000.0", - "heat_pump_heating_capacity_17F": "auto", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "none", "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "natural gas", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.92, @@ -186,7 +174,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base-mechvent-balanced.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -208,14 +196,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -236,18 +222,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -274,21 +256,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -315,10 +295,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "none", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -326,8 +304,6 @@ "water_heater_efficiency": 0.95, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "electricity", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "18767", "water_heater_jacket_rvalue": 0, "water_heater_location": "living space", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-mechvent-bath-kitchen-fans.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-mechvent-bath-kitchen-fans.osw index 1b732cac..1cb5c4a0 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-mechvent-bath-kitchen-fans.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-mechvent-bath-kitchen-fans.osw @@ -6,63 +6,54 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_flow_rate": 50.0, - "bathroom_fans_hours_in_operation": 1.5, - "bathroom_fans_power": 15.0, - "bathroom_fans_present": true, - "bathroom_fans_quantity": 2, - "bathroom_fans_start_hour": 7, + "bathroom_fans_flow_rate": "50.0", + "bathroom_fans_hours_in_operation": "1.5", + "bathroom_fans_power": "15.0", + "bathroom_fans_quantity": "2", + "bathroom_fans_start_hour": "7", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", "cooling_system_cooling_compressor_type": "single stage", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.73, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "central air conditioner", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -70,8 +61,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -79,11 +69,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "2", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 25.0, @@ -97,17 +86,15 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -138,6 +125,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, @@ -146,6 +134,7 @@ "geometry_num_floors_above_grade": 1, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family detached", @@ -155,22 +144,20 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "64000.0", - "heat_pump_heating_capacity_17F": "auto", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "none", "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "natural gas", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.92, @@ -191,12 +178,11 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base-mechvent-bath-kitchen-fans.xml", - "kitchen_fans_flow_rate": 100.0, - "kitchen_fans_hours_in_operation": 1.5, - "kitchen_fans_power": 30.0, - "kitchen_fans_present": true, - "kitchen_fans_quantity": 1, - "kitchen_fans_start_hour": 18, + "kitchen_fans_flow_rate": "100.0", + "kitchen_fans_hours_in_operation": "1.5", + "kitchen_fans_power": "30.0", + "kitchen_fans_quantity": "1", + "kitchen_fans_start_hour": "18", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -218,14 +204,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -246,18 +230,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -284,21 +264,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -325,10 +303,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "none", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -336,8 +312,6 @@ "water_heater_efficiency": 0.95, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "electricity", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "18767", "water_heater_jacket_rvalue": 0, "water_heater_location": "living space", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-mechvent-cfis-evap-cooler-only-ducted.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-mechvent-cfis-evap-cooler-only-ducted.osw index 44d20be7..192e2810 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-mechvent-cfis-evap-cooler-only-ducted.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-mechvent-cfis-evap-cooler-only-ducted.osw @@ -6,56 +6,48 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": true, "cooling_system_type": "evaporative cooler", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -63,8 +55,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -72,14 +63,13 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "2", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", - "ducts_return_leakage_value": 25.0, + "ducts_return_leakage_value": 0.0, "ducts_return_location": "attic - unvented", "ducts_return_surface_area": "50.0", "ducts_supply_insulation_r": 4.0, @@ -90,17 +80,15 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -131,6 +119,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, @@ -139,6 +128,7 @@ "geometry_num_floors_above_grade": 1, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family detached", @@ -148,22 +138,20 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "64000.0", - "heat_pump_heating_capacity_17F": "auto", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "none", "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "natural gas", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.92, @@ -184,7 +172,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base-mechvent-cfis-evap-cooler-only-ducted.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -206,14 +194,12 @@ "mech_vent_hours_in_operation": 8, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -234,18 +220,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -272,21 +254,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -313,10 +293,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "none", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -324,8 +302,6 @@ "water_heater_efficiency": 0.95, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "electricity", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "18767", "water_heater_jacket_rvalue": 0, "water_heater_location": "living space", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-mechvent-cfis.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-mechvent-cfis.osw index 6065d6ee..30a4800d 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-mechvent-cfis.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-mechvent-cfis.osw @@ -6,58 +6,50 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", "cooling_system_cooling_compressor_type": "single stage", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.73, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "central air conditioner", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -65,8 +57,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -74,11 +65,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "2", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 25.0, @@ -92,17 +82,15 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -133,6 +121,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, @@ -141,6 +130,7 @@ "geometry_num_floors_above_grade": 1, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family detached", @@ -150,22 +140,20 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "64000.0", - "heat_pump_heating_capacity_17F": "auto", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "none", "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "natural gas", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.92, @@ -186,7 +174,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base-mechvent-cfis.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -208,14 +196,12 @@ "mech_vent_hours_in_operation": 8, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -236,18 +222,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -274,21 +256,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -315,10 +295,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "none", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -326,8 +304,6 @@ "water_heater_efficiency": 0.95, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "electricity", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "18767", "water_heater_jacket_rvalue": 0, "water_heater_location": "living space", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-mechvent-erv-atre-asre.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-mechvent-erv-atre-asre.osw index acefbeb2..9b281a19 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-mechvent-erv-atre-asre.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-mechvent-erv-atre-asre.osw @@ -6,58 +6,50 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", "cooling_system_cooling_compressor_type": "single stage", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.73, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "central air conditioner", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -65,8 +57,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -74,11 +65,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "2", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 25.0, @@ -92,17 +82,15 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -133,6 +121,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, @@ -141,6 +130,7 @@ "geometry_num_floors_above_grade": 1, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family detached", @@ -150,22 +140,20 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "64000.0", - "heat_pump_heating_capacity_17F": "auto", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "none", "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "natural gas", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.92, @@ -186,7 +174,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base-mechvent-erv-atre-asre.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -208,14 +196,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Adjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.79, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Adjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.526, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Adjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -236,18 +222,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -274,21 +256,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -315,10 +295,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "none", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -326,8 +304,6 @@ "water_heater_efficiency": 0.95, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "electricity", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "18767", "water_heater_jacket_rvalue": 0, "water_heater_location": "living space", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-mechvent-erv.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-mechvent-erv.osw index 8d14491e..13529f66 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-mechvent-erv.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-mechvent-erv.osw @@ -6,58 +6,50 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", "cooling_system_cooling_compressor_type": "single stage", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.73, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "central air conditioner", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -65,8 +57,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -74,11 +65,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "2", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 25.0, @@ -92,17 +82,15 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -133,6 +121,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, @@ -141,6 +130,7 @@ "geometry_num_floors_above_grade": 1, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family detached", @@ -150,22 +140,20 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "64000.0", - "heat_pump_heating_capacity_17F": "auto", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "none", "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "natural gas", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.92, @@ -186,7 +174,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base-mechvent-erv.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -208,14 +196,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -236,18 +222,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -274,21 +256,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -315,10 +295,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "none", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -326,8 +304,6 @@ "water_heater_efficiency": 0.95, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "electricity", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "18767", "water_heater_jacket_rvalue": 0, "water_heater_location": "living space", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-mechvent-exhaust-rated-flow-rate.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-mechvent-exhaust-rated-flow-rate.osw new file mode 100644 index 00000000..eba5a12d --- /dev/null +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-mechvent-exhaust-rated-flow-rate.osw @@ -0,0 +1,337 @@ +{ + "measure_paths": [ + "../.." + ], + "steps": [ + { + "arguments": { + "air_leakage_house_pressure": 50, + "air_leakage_shielding_of_home": "auto", + "air_leakage_units": "ACH", + "air_leakage_value": 3, + "bathroom_fans_quantity": "0", + "ceiling_assembly_r": 39.3, + "ceiling_fan_cooling_setpoint_temp_offset": 0, + "ceiling_fan_efficiency": "auto", + "ceiling_fan_present": false, + "ceiling_fan_quantity": "auto", + "clothes_dryer_efficiency": "3.73", + "clothes_dryer_efficiency_type": "CombinedEnergyFactor", + "clothes_dryer_fuel_type": "electricity", + "clothes_dryer_location": "living space", + "clothes_dryer_usage_multiplier": 1.0, + "clothes_dryer_vented_flow_rate": "150.0", + "clothes_washer_capacity": "3.2", + "clothes_washer_efficiency": "1.21", + "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", + "clothes_washer_label_annual_gas_cost": "27.0", + "clothes_washer_label_electric_rate": "0.12", + "clothes_washer_label_gas_rate": "1.09", + "clothes_washer_label_usage": "6.0", + "clothes_washer_location": "living space", + "clothes_washer_rated_annual_kwh": "380.0", + "clothes_washer_usage_multiplier": 1.0, + "cooking_range_oven_fuel_type": "electricity", + "cooking_range_oven_is_convection": false, + "cooking_range_oven_is_induction": false, + "cooking_range_oven_location": "living space", + "cooking_range_oven_usage_multiplier": 1.0, + "cooling_system_cooling_capacity": "48000.0", + "cooling_system_cooling_compressor_type": "single stage", + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", + "cooling_system_cooling_sensible_heat_fraction": 0.73, + "cooling_system_fraction_cool_load_served": 1, + "cooling_system_is_ducted": false, + "cooling_system_type": "central air conditioner", + "dehumidifier_capacity": 40, + "dehumidifier_efficiency": 1.8, + "dehumidifier_efficiency_type": "EnergyFactor", + "dehumidifier_fraction_dehumidification_load_served": 1, + "dehumidifier_rh_setpoint": 0.5, + "dehumidifier_type": "none", + "dhw_distribution_pipe_r": "0.0", + "dhw_distribution_recirc_branch_piping_length": "50", + "dhw_distribution_recirc_control_type": "no control", + "dhw_distribution_recirc_piping_length": "50", + "dhw_distribution_recirc_pump_power": "50", + "dhw_distribution_standard_piping_length": "50", + "dhw_distribution_system_type": "Standard", + "dishwasher_efficiency": "307", + "dishwasher_efficiency_type": "RatedAnnualkWh", + "dishwasher_label_annual_gas_cost": "22.32", + "dishwasher_label_electric_rate": "0.12", + "dishwasher_label_gas_rate": "1.09", + "dishwasher_label_usage": "4.0", + "dishwasher_location": "living space", + "dishwasher_place_setting_capacity": "12", + "dishwasher_usage_multiplier": 1.0, + "door_area": 80.0, + "door_rvalue": 4.4, + "ducts_number_of_return_registers": "2", + "ducts_return_insulation_r": 0.0, + "ducts_return_leakage_units": "CFM25", + "ducts_return_leakage_value": 25.0, + "ducts_return_location": "attic - unvented", + "ducts_return_surface_area": "50.0", + "ducts_supply_insulation_r": 4.0, + "ducts_supply_leakage_units": "CFM25", + "ducts_supply_leakage_value": 75.0, + "ducts_supply_location": "attic - unvented", + "ducts_supply_surface_area": "150.0", + "dwhr_efficiency": 0.55, + "dwhr_equal_flow": true, + "dwhr_facilities_connected": "none", + "extra_refrigerator_location": "none", + "extra_refrigerator_rated_annual_kwh": "auto", + "extra_refrigerator_usage_multiplier": 1.0, + "floor_assembly_r": 0, + "foundation_wall_insulation_distance_to_bottom": "auto", + "foundation_wall_insulation_distance_to_top": 0.0, + "foundation_wall_insulation_r": 8.9, + "foundation_wall_thickness": "8.0", + "freezer_location": "none", + "freezer_rated_annual_kwh": "auto", + "freezer_usage_multiplier": 1.0, + "fuel_loads_fireplace_annual_therm": "auto", + "fuel_loads_fireplace_frac_latent": "auto", + "fuel_loads_fireplace_frac_sensible": "auto", + "fuel_loads_fireplace_fuel_type": "natural gas", + "fuel_loads_fireplace_present": false, + "fuel_loads_fireplace_usage_multiplier": 0.0, + "fuel_loads_grill_annual_therm": "auto", + "fuel_loads_grill_fuel_type": "natural gas", + "fuel_loads_grill_present": false, + "fuel_loads_grill_usage_multiplier": 0.0, + "fuel_loads_lighting_annual_therm": "auto", + "fuel_loads_lighting_fuel_type": "natural gas", + "fuel_loads_lighting_present": false, + "fuel_loads_lighting_usage_multiplier": 0.0, + "geometry_aspect_ratio": 1.5, + "geometry_attic_type": "UnventedAttic", + "geometry_balcony_depth": 0.0, + "geometry_cfa": 2700.0, + "geometry_corridor_position": "Double-Loaded Interior", + "geometry_corridor_width": 10.0, + "geometry_eaves_depth": 0, + "geometry_foundation_height": 8.0, + "geometry_foundation_height_above_grade": 1.0, + "geometry_foundation_type": "ConditionedBasement", + "geometry_garage_depth": 20.0, + "geometry_garage_position": "Right", + "geometry_garage_protrusion": 0.0, + "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", + "geometry_inset_depth": 0.0, + "geometry_inset_position": "Right", + "geometry_inset_width": 0.0, + "geometry_num_bathrooms": "2", + "geometry_num_bedrooms": 3, + "geometry_num_floors_above_grade": 1, + "geometry_num_occupants": "3", + "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, + "geometry_roof_pitch": "6:12", + "geometry_roof_type": "gable", + "geometry_unit_type": "single-family detached", + "geometry_wall_height": 8.0, + "heat_pump_backup_fuel": "none", + "heat_pump_backup_heating_capacity": "34121.0", + "heat_pump_backup_heating_efficiency": 1, + "heat_pump_cooling_capacity": "48000.0", + "heat_pump_cooling_compressor_type": "single stage", + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", + "heat_pump_cooling_sensible_heat_fraction": 0.73, + "heat_pump_fraction_cool_load_served": 1, + "heat_pump_fraction_heat_load_served": 1, + "heat_pump_heating_capacity": "64000.0", + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", + "heat_pump_type": "none", + "heating_system_fraction_heat_load_served": 1, + "heating_system_fraction_heat_load_served_2": 0.25, + "heating_system_fuel": "natural gas", + "heating_system_fuel_2": "electricity", + "heating_system_heating_capacity": "64000.0", + "heating_system_heating_capacity_2": "auto", + "heating_system_heating_efficiency": 0.92, + "heating_system_heating_efficiency_2": 1.0, + "heating_system_type": "Furnace", + "heating_system_type_2": "none", + "holiday_lighting_daily_kwh": "auto", + "holiday_lighting_period_begin_day_of_month": "auto", + "holiday_lighting_period_begin_month": "auto", + "holiday_lighting_period_end_day_of_month": "auto", + "holiday_lighting_period_end_month": "auto", + "holiday_lighting_present": false, + "hot_tub_heater_annual_kwh": "auto", + "hot_tub_heater_annual_therm": "auto", + "hot_tub_heater_type": "electric resistance", + "hot_tub_heater_usage_multiplier": 1.0, + "hot_tub_present": false, + "hot_tub_pump_annual_kwh": "auto", + "hot_tub_pump_usage_multiplier": 1.0, + "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base-mechvent-exhaust-rated-flow-rate.xml", + "kitchen_fans_quantity": "0", + "lighting_fraction_cfl_exterior": 0.4, + "lighting_fraction_cfl_garage": 0.4, + "lighting_fraction_cfl_interior": 0.4, + "lighting_fraction_led_exterior": 0.25, + "lighting_fraction_led_garage": 0.25, + "lighting_fraction_led_interior": 0.25, + "lighting_fraction_lfl_exterior": 0.1, + "lighting_fraction_lfl_garage": 0.1, + "lighting_fraction_lfl_interior": 0.1, + "lighting_usage_multiplier_exterior": 1.0, + "lighting_usage_multiplier_garage": 1.0, + "lighting_usage_multiplier_interior": 1.0, + "mech_vent_fan_power": 30, + "mech_vent_fan_power_2": 30, + "mech_vent_fan_type": "exhaust only", + "mech_vent_fan_type_2": "none", + "mech_vent_flow_rate": 110, + "mech_vent_flow_rate_2": 110, + "mech_vent_hours_in_operation": 24, + "mech_vent_hours_in_operation_2": 24, + "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", + "mech_vent_sensible_recovery_efficiency": 0.72, + "mech_vent_sensible_recovery_efficiency_2": 0.72, + "mech_vent_total_recovery_efficiency": 0.48, + "mech_vent_total_recovery_efficiency_2": 0.48, + "neighbor_back_distance": 0, + "neighbor_back_height": "auto", + "neighbor_front_distance": 0, + "neighbor_front_height": "auto", + "neighbor_left_distance": 0, + "neighbor_left_height": "auto", + "neighbor_right_distance": 0, + "neighbor_right_height": "auto", + "overhangs_back_depth": 0, + "overhangs_back_distance_to_top_of_window": 0, + "overhangs_front_depth": 0, + "overhangs_front_distance_to_top_of_window": 0, + "overhangs_left_depth": 0, + "overhangs_left_distance_to_top_of_window": 0, + "overhangs_right_depth": 0, + "overhangs_right_distance_to_top_of_window": 0, + "plug_loads_other_annual_kwh": "2457.0", + "plug_loads_other_frac_latent": "0.045", + "plug_loads_other_frac_sensible": "0.855", + "plug_loads_other_usage_multiplier": 1.0, + "plug_loads_television_annual_kwh": "620.0", + "plug_loads_television_usage_multiplier": 1.0, + "plug_loads_vehicle_annual_kwh": "auto", + "plug_loads_vehicle_present": false, + "plug_loads_vehicle_usage_multiplier": 0.0, + "plug_loads_well_pump_annual_kwh": "auto", + "plug_loads_well_pump_present": false, + "plug_loads_well_pump_usage_multiplier": 0.0, + "pool_heater_annual_kwh": "auto", + "pool_heater_annual_therm": "auto", + "pool_heater_type": "electric resistance", + "pool_heater_usage_multiplier": 1.0, + "pool_present": false, + "pool_pump_annual_kwh": "auto", + "pool_pump_usage_multiplier": 1.0, + "pv_system_array_azimuth_1": 180, + "pv_system_array_azimuth_2": 180, + "pv_system_array_tilt_1": "20", + "pv_system_array_tilt_2": "20", + "pv_system_inverter_efficiency_1": 0.96, + "pv_system_inverter_efficiency_2": 0.96, + "pv_system_location_1": "auto", + "pv_system_location_2": "auto", + "pv_system_max_power_output_1": 4000, + "pv_system_max_power_output_2": 4000, + "pv_system_module_type_1": "none", + "pv_system_module_type_2": "none", + "pv_system_num_units_served_1": 1, + "pv_system_num_units_served_2": 1, + "pv_system_system_losses_fraction_1": 0.14, + "pv_system_system_losses_fraction_2": 0.14, + "pv_system_tracking_1": "auto", + "pv_system_tracking_2": "auto", + "refrigerator_location": "living space", + "refrigerator_rated_annual_kwh": "650.0", + "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, + "roof_assembly_r": 2.3, + "roof_color": "medium", + "roof_material_type": "asphalt or fiberglass shingles", + "roof_radiant_barrier": false, + "roof_radiant_barrier_grade": "1", + "schedules_type": "default", + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", + "simulation_control_timestep": "60", + "site_type": "suburban", + "skylight_area_back": 0, + "skylight_area_front": 0, + "skylight_area_left": 0, + "skylight_area_right": 0, + "skylight_shgc": 0.45, + "skylight_ufactor": 0.33, + "slab_carpet_fraction": "0.0", + "slab_carpet_r": "0.0", + "slab_perimeter_depth": 0, + "slab_perimeter_insulation_r": 0, + "slab_thickness": "4.0", + "slab_under_insulation_r": 0, + "slab_under_width": 0, + "solar_thermal_collector_area": 40.0, + "solar_thermal_collector_azimuth": 180, + "solar_thermal_collector_loop_type": "liquid direct", + "solar_thermal_collector_rated_optical_efficiency": 0.5, + "solar_thermal_collector_rated_thermal_losses": 0.2799, + "solar_thermal_collector_tilt": "20", + "solar_thermal_collector_type": "evacuated tube", + "solar_thermal_solar_fraction": 0, + "solar_thermal_storage_volume": "auto", + "solar_thermal_system_type": "none", + "wall_assembly_r": 23, + "wall_color": "medium", + "wall_siding_type": "wood siding", + "wall_type": "WoodStud", + "water_fixtures_shower_low_flow": true, + "water_fixtures_sink_low_flow": false, + "water_fixtures_usage_multiplier": 1.0, + "water_heater_efficiency": 0.95, + "water_heater_efficiency_type": "EnergyFactor", + "water_heater_fuel_type": "electricity", + "water_heater_jacket_rvalue": 0, + "water_heater_location": "living space", + "water_heater_num_units_served": 1, + "water_heater_recovery_efficiency": "0.76", + "water_heater_setpoint_temperature": "125", + "water_heater_standby_loss": 0, + "water_heater_tank_volume": "40", + "water_heater_type": "storage water heater", + "weather_station_epw_filepath": "USA_CO_Denver.Intl.AP.725650_TMY3.epw", + "whole_house_fan_flow_rate": 4500, + "whole_house_fan_power": 300, + "whole_house_fan_present": false, + "window_area_back": 108.0, + "window_area_front": 108.0, + "window_area_left": 72.0, + "window_area_right": 72.0, + "window_aspect_ratio": 1.333, + "window_back_wwr": 0, + "window_fraction_operable": 0.67, + "window_front_wwr": 0, + "window_interior_shading_summer": 0.7, + "window_interior_shading_winter": 0.85, + "window_left_wwr": 0, + "window_right_wwr": 0, + "window_shgc": 0.45, + "window_ufactor": 0.33 + }, + "measure_dir_name": "BuildResidentialHPXML" + } + ] +} \ No newline at end of file diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-mechvent-exhaust.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-mechvent-exhaust.osw index ff8f2806..9aba92b4 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-mechvent-exhaust.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-mechvent-exhaust.osw @@ -6,58 +6,50 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", "cooling_system_cooling_compressor_type": "single stage", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.73, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "central air conditioner", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -65,8 +57,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -74,11 +65,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "2", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 25.0, @@ -92,17 +82,15 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -133,6 +121,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, @@ -141,6 +130,7 @@ "geometry_num_floors_above_grade": 1, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family detached", @@ -150,22 +140,20 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "64000.0", - "heat_pump_heating_capacity_17F": "auto", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "none", "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "natural gas", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.92, @@ -186,7 +174,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base-mechvent-exhaust.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -208,14 +196,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -236,18 +222,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -274,21 +256,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -315,10 +295,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "none", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -326,8 +304,6 @@ "water_heater_efficiency": 0.95, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "electricity", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "18767", "water_heater_jacket_rvalue": 0, "water_heater_location": "living space", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-mechvent-hrv-asre.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-mechvent-hrv-asre.osw index 41a5db35..15c44e6d 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-mechvent-hrv-asre.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-mechvent-hrv-asre.osw @@ -6,58 +6,50 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", "cooling_system_cooling_compressor_type": "single stage", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.73, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "central air conditioner", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -65,8 +57,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -74,11 +65,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "2", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 25.0, @@ -92,17 +82,15 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -133,6 +121,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, @@ -141,6 +130,7 @@ "geometry_num_floors_above_grade": 1, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family detached", @@ -150,22 +140,20 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "64000.0", - "heat_pump_heating_capacity_17F": "auto", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "none", "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "natural gas", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.92, @@ -186,7 +174,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base-mechvent-hrv-asre.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -208,14 +196,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Adjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.79, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Adjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -236,18 +222,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -274,21 +256,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -315,10 +295,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "none", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -326,8 +304,6 @@ "water_heater_efficiency": 0.95, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "electricity", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "18767", "water_heater_jacket_rvalue": 0, "water_heater_location": "living space", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-mechvent-hrv.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-mechvent-hrv.osw index 3f4de2a3..30c0596a 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-mechvent-hrv.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-mechvent-hrv.osw @@ -6,58 +6,50 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", "cooling_system_cooling_compressor_type": "single stage", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.73, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "central air conditioner", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -65,8 +57,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -74,11 +65,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "2", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 25.0, @@ -92,17 +82,15 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -133,6 +121,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, @@ -141,6 +130,7 @@ "geometry_num_floors_above_grade": 1, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family detached", @@ -150,22 +140,20 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "64000.0", - "heat_pump_heating_capacity_17F": "auto", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "none", "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "natural gas", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.92, @@ -186,7 +174,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base-mechvent-hrv.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -208,14 +196,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -236,18 +222,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -274,21 +256,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -315,10 +295,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "none", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -326,8 +304,6 @@ "water_heater_efficiency": 0.95, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "electricity", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "18767", "water_heater_jacket_rvalue": 0, "water_heater_location": "living space", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-mechvent-supply.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-mechvent-supply.osw index 96d92a93..6c177e12 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-mechvent-supply.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-mechvent-supply.osw @@ -6,58 +6,50 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", "cooling_system_cooling_compressor_type": "single stage", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.73, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "central air conditioner", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -65,8 +57,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -74,11 +65,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "2", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 25.0, @@ -92,17 +82,15 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -133,6 +121,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, @@ -141,6 +130,7 @@ "geometry_num_floors_above_grade": 1, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family detached", @@ -150,22 +140,20 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "64000.0", - "heat_pump_heating_capacity_17F": "auto", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "none", "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "natural gas", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.92, @@ -186,7 +174,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base-mechvent-supply.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -208,14 +196,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -236,18 +222,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -274,21 +256,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -315,10 +295,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "none", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -326,8 +304,6 @@ "water_heater_efficiency": 0.95, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "electricity", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "18767", "water_heater_jacket_rvalue": 0, "water_heater_location": "living space", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-mechvent-whole-house-fan.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-mechvent-whole-house-fan.osw index 981daf89..f6e79568 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-mechvent-whole-house-fan.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-mechvent-whole-house-fan.osw @@ -6,58 +6,50 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", "cooling_system_cooling_compressor_type": "single stage", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.73, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "central air conditioner", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -65,8 +57,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -74,11 +65,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "2", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 25.0, @@ -92,17 +82,15 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -133,6 +121,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, @@ -141,6 +130,7 @@ "geometry_num_floors_above_grade": 1, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family detached", @@ -150,22 +140,20 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "64000.0", - "heat_pump_heating_capacity_17F": "auto", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "none", "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "natural gas", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.92, @@ -186,7 +174,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base-mechvent-whole-house-fan.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -208,14 +196,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -236,18 +222,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -274,21 +256,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -315,10 +295,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "none", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -326,8 +304,6 @@ "water_heater_efficiency": 0.95, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "electricity", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "18767", "water_heater_jacket_rvalue": 0, "water_heater_location": "living space", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-misc-defaults.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-misc-defaults.osw index fe9776b6..dda906b2 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-misc-defaults.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-misc-defaults.osw @@ -6,54 +6,46 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": true, + "bathroom_fans_quantity": "auto", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": true, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "auto", - "clothes_dryer_efficiency_cef": "auto", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "auto", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "auto", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "auto", "clothes_washer_capacity": "auto", - "clothes_washer_efficiency_imef": "auto", - "clothes_washer_efficiency_mef": "auto", + "clothes_washer_efficiency": "auto", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "auto", "clothes_washer_label_electric_rate": "auto", "clothes_washer_label_gas_rate": "auto", "clothes_washer_label_usage": "auto", "clothes_washer_location": "auto", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "auto", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_location": "auto", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "central air conditioner", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "auto", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -61,8 +53,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "auto", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "auto", + "dishwasher_efficiency": "auto", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "auto", "dishwasher_label_electric_rate": "auto", @@ -70,11 +61,10 @@ "dishwasher_label_usage": "auto", "dishwasher_location": "auto", "dishwasher_place_setting_capacity": "auto", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "2", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 25.0, @@ -88,17 +78,15 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "auto", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -129,6 +117,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, @@ -137,6 +126,7 @@ "geometry_num_floors_above_grade": 1, "geometry_num_occupants": "auto", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family detached", @@ -146,22 +136,20 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "64000.0", - "heat_pump_heating_capacity_17F": "auto", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "none", "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "natural gas", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.92, @@ -182,7 +170,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base-misc-defaults.xml", - "kitchen_fans_present": true, + "kitchen_fans_quantity": "auto", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -204,14 +192,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -232,18 +218,14 @@ "plug_loads_other_frac_latent": "auto", "plug_loads_other_frac_sensible": "auto", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "auto", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -268,20 +250,18 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "auto", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "auto", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, "roof_color": "light", - "roof_emittance": "auto", - "roof_radiant_barrier": "auto", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "skylight_area_back": 0, "skylight_area_front": 0, "skylight_area_left": 0, @@ -307,8 +287,6 @@ "solar_thermal_system_type": "hot water", "wall_assembly_r": 23, "wall_color": "medium", - "wall_emittance": "auto", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -316,8 +294,6 @@ "water_heater_efficiency": 0.95, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "electricity", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "auto", "water_heater_jacket_rvalue": 0, "water_heater_location": "auto", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-misc-loads-large-uncommon.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-misc-loads-large-uncommon.osw index 9b0de665..478d47e9 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-misc-loads-large-uncommon.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-misc-loads-large-uncommon.osw @@ -6,58 +6,50 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", "cooling_system_cooling_compressor_type": "single stage", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.73, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "central air conditioner", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -65,8 +57,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -74,11 +65,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "2", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 25.0, @@ -93,16 +83,14 @@ "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", "extra_refrigerator_location": "auto", - "extra_refrigerator_present": true, "extra_refrigerator_rated_annual_kwh": "700.0", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", "freezer_location": "living space", - "freezer_present": true, "freezer_rated_annual_kwh": "300.0", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "55.0", @@ -133,6 +121,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, @@ -141,6 +130,7 @@ "geometry_num_floors_above_grade": 1, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family detached", @@ -150,22 +140,20 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "64000.0", - "heat_pump_heating_capacity_17F": "auto", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "none", "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "natural gas", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.92, @@ -186,7 +174,7 @@ "hot_tub_pump_annual_kwh": "1000.0", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base-misc-loads-large-uncommon.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -208,14 +196,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -236,18 +222,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "1500.0", "plug_loads_vehicle_present": true, "plug_loads_vehicle_usage_multiplier": 1.0, - "plug_loads_vehicle_usage_multiplier_2": 1.0, "plug_loads_well_pump_annual_kwh": "475.0", "plug_loads_well_pump_present": true, "plug_loads_well_pump_usage_multiplier": 1.0, - "plug_loads_well_pump_usage_multiplier_2": 1.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "500.0", "pool_heater_type": "gas fired", @@ -274,21 +256,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -315,10 +295,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "none", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -326,8 +304,6 @@ "water_heater_efficiency": 0.95, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "electricity", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "18767", "water_heater_jacket_rvalue": 0, "water_heater_location": "living space", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-misc-loads-large-uncommon2.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-misc-loads-large-uncommon2.osw index 7b26d088..3e3c82e2 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-misc-loads-large-uncommon2.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-misc-loads-large-uncommon2.osw @@ -6,58 +6,50 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", "cooling_system_cooling_compressor_type": "single stage", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.73, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "central air conditioner", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -65,8 +57,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -74,11 +65,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "2", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 25.0, @@ -93,16 +83,14 @@ "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", "extra_refrigerator_location": "auto", - "extra_refrigerator_present": true, "extra_refrigerator_rated_annual_kwh": "700.0", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", "freezer_location": "living space", - "freezer_present": true, "freezer_rated_annual_kwh": "300.0", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "55.0", @@ -133,6 +121,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, @@ -141,6 +130,7 @@ "geometry_num_floors_above_grade": 1, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family detached", @@ -150,22 +140,20 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "64000.0", - "heat_pump_heating_capacity_17F": "auto", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "none", "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "natural gas", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.92, @@ -186,7 +174,7 @@ "hot_tub_pump_annual_kwh": "1000.0", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base-misc-loads-large-uncommon2.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -208,14 +196,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -236,18 +222,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "1500.0", "plug_loads_vehicle_present": true, "plug_loads_vehicle_usage_multiplier": 1.0, - "plug_loads_vehicle_usage_multiplier_2": 1.0, "plug_loads_well_pump_annual_kwh": "475.0", "plug_loads_well_pump_present": true, "plug_loads_well_pump_usage_multiplier": 1.0, - "plug_loads_well_pump_usage_multiplier_2": 1.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "500.0", "pool_heater_type": "none", @@ -274,21 +256,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -315,10 +295,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "none", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -326,8 +304,6 @@ "water_heater_efficiency": 0.95, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "electricity", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "18767", "water_heater_jacket_rvalue": 0, "water_heater_location": "living space", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-misc-neighbor-shading.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-misc-neighbor-shading.osw index 8947cb73..216ceea3 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-misc-neighbor-shading.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-misc-neighbor-shading.osw @@ -6,58 +6,50 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", "cooling_system_cooling_compressor_type": "single stage", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.73, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "central air conditioner", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -65,8 +57,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -74,11 +65,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "2", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 25.0, @@ -92,17 +82,15 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -133,6 +121,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, @@ -141,6 +130,7 @@ "geometry_num_floors_above_grade": 1, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family detached", @@ -150,22 +140,20 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "64000.0", - "heat_pump_heating_capacity_17F": "auto", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "none", "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "natural gas", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.92, @@ -186,7 +174,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base-misc-neighbor-shading.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -208,14 +196,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 10, "neighbor_back_height": "auto", "neighbor_front_distance": 15, @@ -236,18 +222,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -274,21 +256,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -315,10 +295,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "none", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -326,8 +304,6 @@ "water_heater_efficiency": 0.95, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "electricity", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "18767", "water_heater_jacket_rvalue": 0, "water_heater_location": "living space", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-misc-shielding-of-home.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-misc-shielding-of-home.osw new file mode 100644 index 00000000..d4fe2a57 --- /dev/null +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-misc-shielding-of-home.osw @@ -0,0 +1,337 @@ +{ + "measure_paths": [ + "../.." + ], + "steps": [ + { + "arguments": { + "air_leakage_house_pressure": 50, + "air_leakage_shielding_of_home": "well-shielded", + "air_leakage_units": "ACH", + "air_leakage_value": 3, + "bathroom_fans_quantity": "0", + "ceiling_assembly_r": 39.3, + "ceiling_fan_cooling_setpoint_temp_offset": 0, + "ceiling_fan_efficiency": "auto", + "ceiling_fan_present": false, + "ceiling_fan_quantity": "auto", + "clothes_dryer_efficiency": "3.73", + "clothes_dryer_efficiency_type": "CombinedEnergyFactor", + "clothes_dryer_fuel_type": "electricity", + "clothes_dryer_location": "living space", + "clothes_dryer_usage_multiplier": 1.0, + "clothes_dryer_vented_flow_rate": "150.0", + "clothes_washer_capacity": "3.2", + "clothes_washer_efficiency": "1.21", + "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", + "clothes_washer_label_annual_gas_cost": "27.0", + "clothes_washer_label_electric_rate": "0.12", + "clothes_washer_label_gas_rate": "1.09", + "clothes_washer_label_usage": "6.0", + "clothes_washer_location": "living space", + "clothes_washer_rated_annual_kwh": "380.0", + "clothes_washer_usage_multiplier": 1.0, + "cooking_range_oven_fuel_type": "electricity", + "cooking_range_oven_is_convection": false, + "cooking_range_oven_is_induction": false, + "cooking_range_oven_location": "living space", + "cooking_range_oven_usage_multiplier": 1.0, + "cooling_system_cooling_capacity": "48000.0", + "cooling_system_cooling_compressor_type": "single stage", + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", + "cooling_system_cooling_sensible_heat_fraction": 0.73, + "cooling_system_fraction_cool_load_served": 1, + "cooling_system_is_ducted": false, + "cooling_system_type": "central air conditioner", + "dehumidifier_capacity": 40, + "dehumidifier_efficiency": 1.8, + "dehumidifier_efficiency_type": "EnergyFactor", + "dehumidifier_fraction_dehumidification_load_served": 1, + "dehumidifier_rh_setpoint": 0.5, + "dehumidifier_type": "none", + "dhw_distribution_pipe_r": "0.0", + "dhw_distribution_recirc_branch_piping_length": "50", + "dhw_distribution_recirc_control_type": "no control", + "dhw_distribution_recirc_piping_length": "50", + "dhw_distribution_recirc_pump_power": "50", + "dhw_distribution_standard_piping_length": "50", + "dhw_distribution_system_type": "Standard", + "dishwasher_efficiency": "307", + "dishwasher_efficiency_type": "RatedAnnualkWh", + "dishwasher_label_annual_gas_cost": "22.32", + "dishwasher_label_electric_rate": "0.12", + "dishwasher_label_gas_rate": "1.09", + "dishwasher_label_usage": "4.0", + "dishwasher_location": "living space", + "dishwasher_place_setting_capacity": "12", + "dishwasher_usage_multiplier": 1.0, + "door_area": 80.0, + "door_rvalue": 4.4, + "ducts_number_of_return_registers": "2", + "ducts_return_insulation_r": 0.0, + "ducts_return_leakage_units": "CFM25", + "ducts_return_leakage_value": 25.0, + "ducts_return_location": "attic - unvented", + "ducts_return_surface_area": "50.0", + "ducts_supply_insulation_r": 4.0, + "ducts_supply_leakage_units": "CFM25", + "ducts_supply_leakage_value": 75.0, + "ducts_supply_location": "attic - unvented", + "ducts_supply_surface_area": "150.0", + "dwhr_efficiency": 0.55, + "dwhr_equal_flow": true, + "dwhr_facilities_connected": "none", + "extra_refrigerator_location": "none", + "extra_refrigerator_rated_annual_kwh": "auto", + "extra_refrigerator_usage_multiplier": 1.0, + "floor_assembly_r": 0, + "foundation_wall_insulation_distance_to_bottom": "auto", + "foundation_wall_insulation_distance_to_top": 0.0, + "foundation_wall_insulation_r": 8.9, + "foundation_wall_thickness": "8.0", + "freezer_location": "none", + "freezer_rated_annual_kwh": "auto", + "freezer_usage_multiplier": 1.0, + "fuel_loads_fireplace_annual_therm": "auto", + "fuel_loads_fireplace_frac_latent": "auto", + "fuel_loads_fireplace_frac_sensible": "auto", + "fuel_loads_fireplace_fuel_type": "natural gas", + "fuel_loads_fireplace_present": false, + "fuel_loads_fireplace_usage_multiplier": 0.0, + "fuel_loads_grill_annual_therm": "auto", + "fuel_loads_grill_fuel_type": "natural gas", + "fuel_loads_grill_present": false, + "fuel_loads_grill_usage_multiplier": 0.0, + "fuel_loads_lighting_annual_therm": "auto", + "fuel_loads_lighting_fuel_type": "natural gas", + "fuel_loads_lighting_present": false, + "fuel_loads_lighting_usage_multiplier": 0.0, + "geometry_aspect_ratio": 1.5, + "geometry_attic_type": "UnventedAttic", + "geometry_balcony_depth": 0.0, + "geometry_cfa": 2700.0, + "geometry_corridor_position": "Double-Loaded Interior", + "geometry_corridor_width": 10.0, + "geometry_eaves_depth": 0, + "geometry_foundation_height": 8.0, + "geometry_foundation_height_above_grade": 1.0, + "geometry_foundation_type": "ConditionedBasement", + "geometry_garage_depth": 20.0, + "geometry_garage_position": "Right", + "geometry_garage_protrusion": 0.0, + "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", + "geometry_inset_depth": 0.0, + "geometry_inset_position": "Right", + "geometry_inset_width": 0.0, + "geometry_num_bathrooms": "2", + "geometry_num_bedrooms": 3, + "geometry_num_floors_above_grade": 1, + "geometry_num_occupants": "3", + "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, + "geometry_roof_pitch": "6:12", + "geometry_roof_type": "gable", + "geometry_unit_type": "single-family detached", + "geometry_wall_height": 8.0, + "heat_pump_backup_fuel": "none", + "heat_pump_backup_heating_capacity": "34121.0", + "heat_pump_backup_heating_efficiency": 1, + "heat_pump_cooling_capacity": "48000.0", + "heat_pump_cooling_compressor_type": "single stage", + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", + "heat_pump_cooling_sensible_heat_fraction": 0.73, + "heat_pump_fraction_cool_load_served": 1, + "heat_pump_fraction_heat_load_served": 1, + "heat_pump_heating_capacity": "64000.0", + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", + "heat_pump_type": "none", + "heating_system_fraction_heat_load_served": 1, + "heating_system_fraction_heat_load_served_2": 0.25, + "heating_system_fuel": "natural gas", + "heating_system_fuel_2": "electricity", + "heating_system_heating_capacity": "64000.0", + "heating_system_heating_capacity_2": "auto", + "heating_system_heating_efficiency": 0.92, + "heating_system_heating_efficiency_2": 1.0, + "heating_system_type": "Furnace", + "heating_system_type_2": "none", + "holiday_lighting_daily_kwh": "auto", + "holiday_lighting_period_begin_day_of_month": "auto", + "holiday_lighting_period_begin_month": "auto", + "holiday_lighting_period_end_day_of_month": "auto", + "holiday_lighting_period_end_month": "auto", + "holiday_lighting_present": false, + "hot_tub_heater_annual_kwh": "auto", + "hot_tub_heater_annual_therm": "auto", + "hot_tub_heater_type": "electric resistance", + "hot_tub_heater_usage_multiplier": 1.0, + "hot_tub_present": false, + "hot_tub_pump_annual_kwh": "auto", + "hot_tub_pump_usage_multiplier": 1.0, + "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base-misc-shielding-of-home.xml", + "kitchen_fans_quantity": "0", + "lighting_fraction_cfl_exterior": 0.4, + "lighting_fraction_cfl_garage": 0.4, + "lighting_fraction_cfl_interior": 0.4, + "lighting_fraction_led_exterior": 0.25, + "lighting_fraction_led_garage": 0.25, + "lighting_fraction_led_interior": 0.25, + "lighting_fraction_lfl_exterior": 0.1, + "lighting_fraction_lfl_garage": 0.1, + "lighting_fraction_lfl_interior": 0.1, + "lighting_usage_multiplier_exterior": 1.0, + "lighting_usage_multiplier_garage": 1.0, + "lighting_usage_multiplier_interior": 1.0, + "mech_vent_fan_power": 30, + "mech_vent_fan_power_2": 30, + "mech_vent_fan_type": "none", + "mech_vent_fan_type_2": "none", + "mech_vent_flow_rate": 110, + "mech_vent_flow_rate_2": 110, + "mech_vent_hours_in_operation": 24, + "mech_vent_hours_in_operation_2": 24, + "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", + "mech_vent_sensible_recovery_efficiency": 0.72, + "mech_vent_sensible_recovery_efficiency_2": 0.72, + "mech_vent_total_recovery_efficiency": 0.48, + "mech_vent_total_recovery_efficiency_2": 0.48, + "neighbor_back_distance": 0, + "neighbor_back_height": "auto", + "neighbor_front_distance": 0, + "neighbor_front_height": "auto", + "neighbor_left_distance": 0, + "neighbor_left_height": "auto", + "neighbor_right_distance": 0, + "neighbor_right_height": "auto", + "overhangs_back_depth": 0, + "overhangs_back_distance_to_top_of_window": 0, + "overhangs_front_depth": 0, + "overhangs_front_distance_to_top_of_window": 0, + "overhangs_left_depth": 0, + "overhangs_left_distance_to_top_of_window": 0, + "overhangs_right_depth": 0, + "overhangs_right_distance_to_top_of_window": 0, + "plug_loads_other_annual_kwh": "2457.0", + "plug_loads_other_frac_latent": "0.045", + "plug_loads_other_frac_sensible": "0.855", + "plug_loads_other_usage_multiplier": 1.0, + "plug_loads_television_annual_kwh": "620.0", + "plug_loads_television_usage_multiplier": 1.0, + "plug_loads_vehicle_annual_kwh": "auto", + "plug_loads_vehicle_present": false, + "plug_loads_vehicle_usage_multiplier": 0.0, + "plug_loads_well_pump_annual_kwh": "auto", + "plug_loads_well_pump_present": false, + "plug_loads_well_pump_usage_multiplier": 0.0, + "pool_heater_annual_kwh": "auto", + "pool_heater_annual_therm": "auto", + "pool_heater_type": "electric resistance", + "pool_heater_usage_multiplier": 1.0, + "pool_present": false, + "pool_pump_annual_kwh": "auto", + "pool_pump_usage_multiplier": 1.0, + "pv_system_array_azimuth_1": 180, + "pv_system_array_azimuth_2": 180, + "pv_system_array_tilt_1": "20", + "pv_system_array_tilt_2": "20", + "pv_system_inverter_efficiency_1": 0.96, + "pv_system_inverter_efficiency_2": 0.96, + "pv_system_location_1": "auto", + "pv_system_location_2": "auto", + "pv_system_max_power_output_1": 4000, + "pv_system_max_power_output_2": 4000, + "pv_system_module_type_1": "none", + "pv_system_module_type_2": "none", + "pv_system_num_units_served_1": 1, + "pv_system_num_units_served_2": 1, + "pv_system_system_losses_fraction_1": 0.14, + "pv_system_system_losses_fraction_2": 0.14, + "pv_system_tracking_1": "auto", + "pv_system_tracking_2": "auto", + "refrigerator_location": "living space", + "refrigerator_rated_annual_kwh": "650.0", + "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, + "roof_assembly_r": 2.3, + "roof_color": "medium", + "roof_material_type": "asphalt or fiberglass shingles", + "roof_radiant_barrier": false, + "roof_radiant_barrier_grade": "1", + "schedules_type": "default", + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", + "simulation_control_timestep": "60", + "site_type": "suburban", + "skylight_area_back": 0, + "skylight_area_front": 0, + "skylight_area_left": 0, + "skylight_area_right": 0, + "skylight_shgc": 0.45, + "skylight_ufactor": 0.33, + "slab_carpet_fraction": "0.0", + "slab_carpet_r": "0.0", + "slab_perimeter_depth": 0, + "slab_perimeter_insulation_r": 0, + "slab_thickness": "4.0", + "slab_under_insulation_r": 0, + "slab_under_width": 0, + "solar_thermal_collector_area": 40.0, + "solar_thermal_collector_azimuth": 180, + "solar_thermal_collector_loop_type": "liquid direct", + "solar_thermal_collector_rated_optical_efficiency": 0.5, + "solar_thermal_collector_rated_thermal_losses": 0.2799, + "solar_thermal_collector_tilt": "20", + "solar_thermal_collector_type": "evacuated tube", + "solar_thermal_solar_fraction": 0, + "solar_thermal_storage_volume": "auto", + "solar_thermal_system_type": "none", + "wall_assembly_r": 23, + "wall_color": "medium", + "wall_siding_type": "wood siding", + "wall_type": "WoodStud", + "water_fixtures_shower_low_flow": true, + "water_fixtures_sink_low_flow": false, + "water_fixtures_usage_multiplier": 1.0, + "water_heater_efficiency": 0.95, + "water_heater_efficiency_type": "EnergyFactor", + "water_heater_fuel_type": "electricity", + "water_heater_jacket_rvalue": 0, + "water_heater_location": "living space", + "water_heater_num_units_served": 1, + "water_heater_recovery_efficiency": "0.76", + "water_heater_setpoint_temperature": "125", + "water_heater_standby_loss": 0, + "water_heater_tank_volume": "40", + "water_heater_type": "storage water heater", + "weather_station_epw_filepath": "USA_CO_Denver.Intl.AP.725650_TMY3.epw", + "whole_house_fan_flow_rate": 4500, + "whole_house_fan_power": 300, + "whole_house_fan_present": false, + "window_area_back": 108.0, + "window_area_front": 108.0, + "window_area_left": 72.0, + "window_area_right": 72.0, + "window_aspect_ratio": 1.333, + "window_back_wwr": 0, + "window_fraction_operable": 0.67, + "window_front_wwr": 0, + "window_interior_shading_summer": 0.7, + "window_interior_shading_winter": 0.85, + "window_left_wwr": 0, + "window_right_wwr": 0, + "window_shgc": 0.45, + "window_ufactor": 0.33 + }, + "measure_dir_name": "BuildResidentialHPXML" + } + ] +} \ No newline at end of file diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-misc-usage-multiplier.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-misc-usage-multiplier.osw index 48a0dd06..134b2d85 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-misc-usage-multiplier.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-misc-usage-multiplier.osw @@ -6,58 +6,50 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 0.9, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 0.9, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 0.9, "cooling_system_cooling_capacity": "48000.0", "cooling_system_cooling_compressor_type": "single stage", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.73, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "central air conditioner", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -65,8 +57,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -74,11 +65,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 0.9, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "2", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 25.0, @@ -92,17 +82,15 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", "freezer_location": "living space", - "freezer_present": true, "freezer_rated_annual_kwh": "300.0", "freezer_usage_multiplier": 0.9, "fuel_loads_fireplace_annual_therm": "55.0", @@ -133,6 +121,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, @@ -141,6 +130,7 @@ "geometry_num_floors_above_grade": 1, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family detached", @@ -150,22 +140,20 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "64000.0", - "heat_pump_heating_capacity_17F": "auto", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "none", "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "natural gas", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.92, @@ -186,7 +174,7 @@ "hot_tub_pump_annual_kwh": "1000.0", "hot_tub_pump_usage_multiplier": 0.9, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base-misc-usage-multiplier.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -208,14 +196,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -236,18 +222,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 0.9, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 0.9, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "500.0", "pool_heater_type": "gas fired", @@ -274,21 +256,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 0.9, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -315,10 +295,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "none", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -326,8 +304,6 @@ "water_heater_efficiency": 0.95, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "electricity", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "18767", "water_heater_jacket_rvalue": 0, "water_heater_location": "living space", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-pv.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-pv.osw index 5340d7ff..4429ad91 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-pv.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-pv.osw @@ -6,58 +6,50 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", "cooling_system_cooling_compressor_type": "single stage", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.73, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "central air conditioner", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -65,8 +57,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -74,11 +65,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "2", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 25.0, @@ -92,17 +82,15 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -133,6 +121,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, @@ -141,6 +130,7 @@ "geometry_num_floors_above_grade": 1, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family detached", @@ -150,22 +140,20 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "64000.0", - "heat_pump_heating_capacity_17F": "auto", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "none", "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "natural gas", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.92, @@ -186,7 +174,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base-pv.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -208,14 +196,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -236,18 +222,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -274,21 +256,19 @@ "pv_system_tracking_1": "fixed", "pv_system_tracking_2": "fixed", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -315,10 +295,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "none", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -326,8 +304,6 @@ "water_heater_efficiency": 0.95, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "electricity", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "18767", "water_heater_jacket_rvalue": 0, "water_heater_location": "living space", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-vacancy-6-months.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-schedules-stochastic-vacant.osw similarity index 83% rename from example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-vacancy-6-months.osw rename to example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-schedules-stochastic-vacant.osw index 8c3a0d60..b1652a97 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-vacancy-6-months.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-schedules-stochastic-vacant.osw @@ -6,58 +6,50 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", "cooling_system_cooling_compressor_type": "single stage", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.73, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "central air conditioner", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -65,8 +57,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -74,11 +65,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "2", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 25.0, @@ -92,17 +82,15 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -133,6 +121,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, @@ -141,6 +130,7 @@ "geometry_num_floors_above_grade": 1, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family detached", @@ -150,22 +140,20 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "64000.0", - "heat_pump_heating_capacity_17F": "auto", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "none", "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "natural gas", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.92, @@ -185,8 +173,8 @@ "hot_tub_present": false, "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, - "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/extra-vacancy-6-months.xml", - "kitchen_fans_present": false, + "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base-schedules-stochastic-vacant.xml", + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -208,14 +196,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -236,18 +222,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -274,25 +256,23 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "stochastic", "schedules_vacancy_begin_day_of_month": 1, "schedules_vacancy_begin_month": 1, - "schedules_vacancy_end_day_of_month": 30, - "schedules_vacancy_end_month": 6, - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "schedules_vacancy_end_day_of_month": 31, + "schedules_vacancy_end_month": 12, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -319,10 +299,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "none", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -330,8 +308,6 @@ "water_heater_efficiency": 0.95, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "electricity", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "18767", "water_heater_jacket_rvalue": 0, "water_heater_location": "living space", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-schedules-stochastic.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-schedules-stochastic.osw index 75f46733..3260598f 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-schedules-stochastic.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-schedules-stochastic.osw @@ -6,58 +6,50 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", "cooling_system_cooling_compressor_type": "single stage", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.73, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "central air conditioner", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -65,8 +57,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -74,11 +65,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "2", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 25.0, @@ -92,17 +82,15 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -133,6 +121,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, @@ -141,6 +130,7 @@ "geometry_num_floors_above_grade": 1, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family detached", @@ -150,22 +140,20 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "64000.0", - "heat_pump_heating_capacity_17F": "auto", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "none", "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "natural gas", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.92, @@ -186,7 +174,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base-schedules-stochastic.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -208,14 +196,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -236,18 +222,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -274,21 +256,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "stochastic", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -315,10 +295,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "none", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -326,8 +304,6 @@ "water_heater_efficiency": 0.95, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "electricity", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "18767", "water_heater_jacket_rvalue": 0, "water_heater_location": "living space", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-schedules-user-specified.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-schedules-user-specified.osw index 272e2330..17399936 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-schedules-user-specified.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-schedules-user-specified.osw @@ -6,58 +6,50 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", "cooling_system_cooling_compressor_type": "single stage", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.73, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "central air conditioner", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -65,8 +57,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -74,11 +65,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "2", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 25.0, @@ -92,17 +82,15 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -133,6 +121,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, @@ -141,6 +130,7 @@ "geometry_num_floors_above_grade": 1, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family detached", @@ -150,22 +140,20 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "64000.0", - "heat_pump_heating_capacity_17F": "auto", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "none", "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "natural gas", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.92, @@ -186,7 +174,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base-schedules-user-specified.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -208,14 +196,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -236,18 +222,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -274,22 +256,20 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_path": "BuildResidentialHPXML/tests/schedules/user-specified.csv", "schedules_type": "user-specified", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -316,10 +296,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "none", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -327,8 +305,6 @@ "water_heater_efficiency": 0.95, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "electricity", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "18767", "water_heater_jacket_rvalue": 0, "water_heater_location": "living space", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-simcontrol-calendar-year-custom.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-simcontrol-calendar-year-custom.osw index 6600a6d2..00f59409 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-simcontrol-calendar-year-custom.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-simcontrol-calendar-year-custom.osw @@ -6,58 +6,50 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", "cooling_system_cooling_compressor_type": "single stage", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.73, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "central air conditioner", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -65,8 +57,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -74,11 +65,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "2", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 25.0, @@ -92,17 +82,15 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -133,6 +121,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, @@ -141,6 +130,7 @@ "geometry_num_floors_above_grade": 1, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family detached", @@ -150,22 +140,20 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "64000.0", - "heat_pump_heating_capacity_17F": "auto", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "none", "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "natural gas", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.92, @@ -186,7 +174,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base-simcontrol-calendar-year-custom.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -208,14 +196,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -236,18 +222,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -274,21 +256,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_run_period_calendar_year": 2008, "simulation_control_timestep": "60", "site_type": "suburban", @@ -316,10 +296,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "none", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -327,8 +305,6 @@ "water_heater_efficiency": 0.95, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "electricity", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "18767", "water_heater_jacket_rvalue": 0, "water_heater_location": "living space", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-simcontrol-daylight-saving-custom.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-simcontrol-daylight-saving-custom.osw index b19fd9ad..6c89d92d 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-simcontrol-daylight-saving-custom.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-simcontrol-daylight-saving-custom.osw @@ -6,58 +6,50 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", "cooling_system_cooling_compressor_type": "single stage", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.73, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "central air conditioner", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -65,8 +57,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -74,11 +65,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "2", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 25.0, @@ -92,17 +82,15 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -133,6 +121,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, @@ -141,6 +130,7 @@ "geometry_num_floors_above_grade": 1, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family detached", @@ -150,22 +140,20 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "64000.0", - "heat_pump_heating_capacity_17F": "auto", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "none", "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "natural gas", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.92, @@ -186,7 +174,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base-simcontrol-daylight-saving-custom.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -208,14 +196,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -236,18 +222,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -274,21 +256,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_daylight_saving_begin_day_of_month": 10, "simulation_control_daylight_saving_begin_month": 3, "simulation_control_daylight_saving_enabled": true, @@ -320,10 +300,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "none", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -331,8 +309,6 @@ "water_heater_efficiency": 0.95, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "electricity", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "18767", "water_heater_jacket_rvalue": 0, "water_heater_location": "living space", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-simcontrol-daylight-saving-disabled.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-simcontrol-daylight-saving-disabled.osw index 4cc14119..ca6698e3 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-simcontrol-daylight-saving-disabled.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-simcontrol-daylight-saving-disabled.osw @@ -6,58 +6,50 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", "cooling_system_cooling_compressor_type": "single stage", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.73, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "central air conditioner", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -65,8 +57,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -74,11 +65,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "2", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 25.0, @@ -92,17 +82,15 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -133,6 +121,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, @@ -141,6 +130,7 @@ "geometry_num_floors_above_grade": 1, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family detached", @@ -150,22 +140,20 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "64000.0", - "heat_pump_heating_capacity_17F": "auto", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "none", "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "natural gas", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.92, @@ -186,7 +174,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base-simcontrol-daylight-saving-disabled.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -208,14 +196,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -236,18 +222,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -274,21 +256,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_daylight_saving_enabled": false, "simulation_control_timestep": "60", "site_type": "suburban", @@ -316,10 +296,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "none", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -327,8 +305,6 @@ "water_heater_efficiency": 0.95, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "electricity", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "18767", "water_heater_jacket_rvalue": 0, "water_heater_location": "living space", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-simcontrol-runperiod-1-month.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-simcontrol-runperiod-1-month.osw index fe20c81d..f3b6250c 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-simcontrol-runperiod-1-month.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-simcontrol-runperiod-1-month.osw @@ -6,58 +6,50 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", "cooling_system_cooling_compressor_type": "single stage", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.73, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "central air conditioner", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -65,8 +57,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -74,11 +65,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "2", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 25.0, @@ -92,17 +82,15 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -133,6 +121,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, @@ -141,6 +130,7 @@ "geometry_num_floors_above_grade": 1, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family detached", @@ -150,22 +140,20 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "64000.0", - "heat_pump_heating_capacity_17F": "auto", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "none", "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "natural gas", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.92, @@ -186,7 +174,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base-simcontrol-runperiod-1-month.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -208,14 +196,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -236,18 +222,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -274,21 +256,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_run_period_begin_day_of_month": 1, "simulation_control_run_period_begin_month": 1, "simulation_control_run_period_end_day_of_month": 31, @@ -319,10 +299,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "none", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -330,8 +308,6 @@ "water_heater_efficiency": 0.95, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "electricity", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "18767", "water_heater_jacket_rvalue": 0, "water_heater_location": "living space", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-simcontrol-timestep-10-mins.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-simcontrol-timestep-10-mins.osw index 399977d3..cf55cbb6 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-simcontrol-timestep-10-mins.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-simcontrol-timestep-10-mins.osw @@ -6,58 +6,50 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", "cooling_system_cooling_compressor_type": "single stage", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.73, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "central air conditioner", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -65,8 +57,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -74,11 +65,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "2", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 25.0, @@ -92,17 +82,15 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -133,6 +121,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, @@ -141,6 +130,7 @@ "geometry_num_floors_above_grade": 1, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family detached", @@ -150,22 +140,20 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "64000.0", - "heat_pump_heating_capacity_17F": "auto", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "none", "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "natural gas", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.92, @@ -186,7 +174,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base-simcontrol-timestep-10-mins.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -208,14 +196,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -236,18 +222,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -274,21 +256,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "10", "site_type": "suburban", "skylight_area_back": 0, @@ -315,10 +295,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "none", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -326,8 +304,6 @@ "water_heater_efficiency": 0.95, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "electricity", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "18767", "water_heater_jacket_rvalue": 0, "water_heater_location": "living space", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base.osw index b40d323e..5fa418ee 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base.osw @@ -6,58 +6,50 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", "cooling_system_cooling_compressor_type": "single stage", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.73, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "central air conditioner", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -65,8 +57,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -74,11 +65,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "2", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 25.0, @@ -92,17 +82,15 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -133,6 +121,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, @@ -141,6 +130,7 @@ "geometry_num_floors_above_grade": 1, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family detached", @@ -150,22 +140,20 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "64000.0", - "heat_pump_heating_capacity_17F": "auto", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "none", "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "natural gas", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.92, @@ -186,7 +174,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/base.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -208,14 +196,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -236,18 +222,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -274,21 +256,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -315,10 +295,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "none", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -326,8 +304,6 @@ "water_heater_efficiency": 0.95, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "electricity", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "18767", "water_heater_jacket_rvalue": 0, "water_heater_location": "living space", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/build_residential_hpxml_test.rb b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/build_residential_hpxml_test.rb index e059933e..3051cd1a 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/build_residential_hpxml_test.rb +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/build_residential_hpxml_test.rb @@ -19,13 +19,16 @@ def test_workflows this_dir, ] + test_base = true + test_extra = true + osws = [] test_dirs.each do |test_dir| Dir["#{test_dir}/base*.osw"].sort.each do |osw| - osws << File.absolute_path(osw) + osws << File.absolute_path(osw) if test_base end Dir["#{test_dir}/extra*.osw"].sort.each do |osw| - osws << File.absolute_path(osw) + osws << File.absolute_path(osw) if test_extra end end @@ -107,7 +110,10 @@ def test_invalid_workflows 'unvented-attic-with-floor-and-roof-insulation.osw' => 'geometry_attic_type=UnventedAttic and ceiling_assembly_r=39.3 and roof_assembly_r=10.0', 'conditioned-basement-with-ceiling-insulation.osw' => 'geometry_foundation_type=ConditionedBasement and floor_assembly_r=10.0', 'conditioned-attic-with-floor-insulation.osw' => 'geometry_attic_type=ConditionedAttic and ceiling_assembly_r=39.3', - 'multipliers-without-plug-loads.osw' => 'plug_loads_television_annual_kwh=0.0 and plug_loads_television_usage_multiplier=1.0 and plug_loads_television_usage_multiplier_2=1.0 and plug_loads_other_annual_kwh=0.0 and plug_loads_other_usage_multiplier=1.0 and plug_loads_other_usage_multiplier_2=1.0 and plug_loads_well_pump_present=false and plug_loads_well_pump_usage_multiplier=1.0 and plug_loads_well_pump_usage_multiplier_2=1.0 and plug_loads_vehicle_present=false and plug_loads_vehicle_usage_multiplier=1.0 and plug_loads_vehicle_usage_multiplier_2=1.0', + 'multipliers-without-tv-plug-loads.osw' => 'plug_loads_television_annual_kwh=0.0 and plug_loads_television_usage_multiplier=1.0', + 'multipliers-without-other-plug-loads.osw' => 'plug_loads_other_annual_kwh=0.0 and plug_loads_other_usage_multiplier=1.0', + 'multipliers-without-well-pump-plug-loads.osw' => 'plug_loads_well_pump_annual_kwh=0.0 and plug_loads_well_pump_usage_multiplier=1.0', + 'multipliers-without-vehicle-plug-loads.osw' => 'plug_loads_vehicle_annual_kwh=0.0 and plug_loads_vehicle_usage_multiplier=1.0', 'multipliers-without-fuel-loads.osw' => 'fuel_loads_grill_present=false and fuel_loads_grill_usage_multiplier=1.0 and fuel_loads_lighting_present=false and fuel_loads_lighting_usage_multiplier=1.0 and fuel_loads_fireplace_present=false and fuel_loads_fireplace_usage_multiplier=1.0' } @@ -120,9 +126,14 @@ def test_invalid_workflows 'single-family-attached-ambient.osw' => 'geometry_unit_type=single-family attached and geometry_foundation_type=Ambient', 'multifamily-bottom-crawlspace-zero-foundation-height.osw' => 'geometry_unit_type=apartment unit and geometry_level=Bottom and geometry_foundation_type=UnventedCrawlspace and geometry_foundation_height=0.0', 'ducts-location-and-areas-not-same-type.osw' => 'ducts_supply_location=auto and ducts_supply_surface_area=150.0 and ducts_return_location=attic - unvented and ducts_return_surface_area=50.0', + 'second-heating-system-serves-total-heat-load.osw' => 'heating_system_type_2=Fireplace and heating_system_fraction_heat_load_served_2=1.0', + 'second-heating-system-but-no-primary-heating.osw' => 'heating_system_type=none and heat_pump_type=none and heating_system_type_2=Fireplace', 'single-family-attached-no-building-orientation.osw' => 'geometry_unit_type=single-family attached and geometry_building_num_units=false and geometry_horizontal_location=false', 'multifamily-no-building-orientation.osw' => 'geometry_unit_type=apartment unit and geometry_building_num_units=false and geometry_level=false and geometry_horizontal_location=false', - 'dhw-indirect-without-boiler.osw' => 'water_heater_type=space-heating boiler with storage tank and heating_system_type=Furnace' + 'dhw-indirect-without-boiler.osw' => 'water_heater_type=space-heating boiler with storage tank and heating_system_type=Furnace', + 'foundation-wall-insulation-greater-than-height.osw' => 'foundation_wall_insulation_distance_to_bottom=6.0 and geometry_foundation_height=4.0', + 'conditioned-attic-with-one-floor-above-grade.osw' => 'geometry_num_floors_above_grade=1 and geometry_attic_type=ConditionedAttic', + 'zero-number-of-bedrooms.osw' => 'geometry_num_bedrooms=0' } measures = {} @@ -141,7 +152,11 @@ def test_invalid_workflows success = apply_measures(measures_dir, measures, runner, model) # Report warnings/errors - assert(runner.result.stepWarnings.length > 1 || runner.result.stepErrors.length > 0) + if Gem::Specification::find_all_by_name('nokogiri').any? + assert(runner.result.stepWarnings.length > 0 || runner.result.stepErrors.length > 0) + else + assert(runner.result.stepWarnings.length > 1 || runner.result.stepErrors.length > 0) + end runner.result.stepWarnings.each do |s| next if s.include? 'nokogiri' @@ -185,6 +200,7 @@ def _check_hpxmls(workflow_dir, built_dir, test_dir, hpxml_path) hpxml.roofs.sort_by! { |roof| roof.area } hpxml.walls.sort_by! { |wall| [wall.exterior_adjacent_to, wall.insulation_assembly_r_value, wall.area] } hpxml.foundation_walls.sort_by! { |foundation_wall| foundation_wall.area } + hpxml.rim_joists.sort_by! { |rim_joist| [rim_joist.exterior_adjacent_to, rim_joist.insulation_assembly_r_value, rim_joist.area] } hpxml.frame_floors.sort_by! { |frame_floor| [frame_floor.insulation_assembly_r_value, frame_floor.area] } hpxml.slabs.sort_by! { |slab| slab.area } hpxml.windows.sort_by! { |window| [window.azimuth, window.area] } @@ -197,26 +213,42 @@ def _check_hpxmls(workflow_dir, built_dir, test_dir, hpxml_path) hpxml.header.schedules_path = nil hpxml.site.fuels = [] # Not used by model hpxml.climate_and_risk_zones.weather_station_name = nil - hpxml.header.state_code = nil hpxml.building_construction.conditioned_building_volume = nil hpxml.building_construction.average_ceiling_height = nil # Comparing conditioned volume instead hpxml.air_infiltration_measurements[0].infiltration_volume = nil - hpxml.attics.clear() - hpxml.foundations.clear() - hpxml.rim_joists.clear() # TODO - hpxml.refrigerators.each do |refrigerator| - refrigerator.adjusted_annual_kwh = nil - end + hpxml.foundations.clear + hpxml.attics.clear hpxml.foundation_walls.each do |foundation_wall| next if foundation_wall.insulation_assembly_r_value.nil? foundation_wall.insulation_assembly_r_value = foundation_wall.insulation_assembly_r_value.round(2) end + if hpxml.rim_joists.length > 0 + (0...hpxml.rim_joists.length).to_a.reverse.each do |i| + next unless [HPXML::LocationLivingSpace].include? hpxml.rim_joists[i].interior_adjacent_to + + hpxml.rim_joists.delete_at(i) + end + end + hpxml.rim_joists.each do |rim_joist| + rim_joist.area = rim_joist.area.round + rim_joist.insulation_assembly_r_value = rim_joist.insulation_assembly_r_value.round(2) + rim_joist.solar_absorptance = nil + rim_joist.emittance = nil + rim_joist.color = nil + end hpxml.roofs.each do |roof| roof.azimuth = nil + roof.radiant_barrier = nil + roof.solar_absorptance = nil + roof.emittance = nil + roof.roof_color = nil end hpxml.walls.each do |wall| wall.azimuth = nil - next unless wall.exterior_adjacent_to == HPXML::LocationOutside + wall.solar_absorptance = nil + wall.emittance = nil + wall.color = nil + next if wall.exterior_adjacent_to != HPXML::LocationOutside next unless [HPXML::LocationAtticUnvented, HPXML::LocationAtticVented].include? wall.interior_adjacent_to wall.area = nil # TODO: Attic gable wall areas @@ -231,7 +263,17 @@ def _check_hpxmls(workflow_dir, built_dir, test_dir, hpxml_path) door.delete end end + hpxml.heating_systems.each do |heating_system| + heating_system.electric_auxiliary_energy = nil # Detailed input not offered + heating_system.fan_watts = nil # Detailed input not offered + heating_system.fan_watts_per_cfm = nil # Detailed input not offered + end + hpxml.cooling_systems.each do |cooling_system| + cooling_system.fan_watts_per_cfm = nil # Detailed input not offered + end hpxml.heat_pumps.each do |heat_pump| + heat_pump.fan_watts_per_cfm = nil # Detailed input not offered + heat_pump.pump_watts_per_ton = nil # Detailed input not offered next if heat_pump.backup_heating_efficiency_afue.nil? # These are treated the same in the model, so allow AFUE/percent comparison @@ -248,12 +290,6 @@ def _check_hpxmls(workflow_dir, built_dir, test_dir, hpxml_path) end hpxml.hvac_controls.each do |hvac_control| hvac_control.control_type = nil # Not used by model - hvac_control.heating_setpoint_temp = nil - hvac_control.cooling_setpoint_temp = nil - hvac_control.weekday_heating_setpoints = nil - hvac_control.weekend_heating_setpoints = nil - hvac_control.weekday_cooling_setpoints = nil - hvac_control.weekend_cooling_setpoints = nil end if hpxml.hvac_distributions.length > 0 (2..hpxml.hvac_distributions[0].ducts.length).to_a.reverse.each do |i| @@ -262,6 +298,7 @@ def _check_hpxmls(workflow_dir, built_dir, test_dir, hpxml_path) end hpxml.water_heating_systems.each do |wh| wh.performance_adjustment = nil # Detailed input not exposed + wh.heating_capacity = nil # Detailed input not exposed end if hpxml.refrigerators.length > 0 (2..hpxml.refrigerators.length).to_a.reverse.each do |i| @@ -270,6 +307,7 @@ def _check_hpxmls(workflow_dir, built_dir, test_dir, hpxml_path) end hpxml.refrigerators.each do |refrigerator| refrigerator.primary_indicator = nil + refrigerator.adjusted_annual_kwh = nil refrigerator.weekday_fractions = nil refrigerator.weekend_fractions = nil refrigerator.monthly_multipliers = nil @@ -367,43 +405,6 @@ def _setup(this_dir) Dir.mkdir(rundir) end - def _test_measure(osm_file_or_model, args_hash) - # create an instance of the measure - measure = HPXMLExporter.new - - # check for standard methods - assert(!measure.name.empty?) - assert(!measure.description.empty?) - - # create an instance of a runner - runner = OpenStudio::Measure::OSRunner.new(OpenStudio::WorkflowJSON.new) - - model = get_model(File.dirname(__FILE__), osm_file_or_model) - - # get arguments - arguments = measure.arguments(model) - argument_map = OpenStudio::Measure.convertOSArgumentVectorToMap(arguments) - - # populate argument with specified hash value if specified - arguments.each do |arg| - temp_arg_var = arg.clone - if args_hash.has_key?(arg.name) - assert(temp_arg_var.setValue(args_hash[arg.name])) - end - argument_map[arg.name] = temp_arg_var - end - - # run the measure - measure.run(model, runner, argument_map) - result = runner.result - - # show the output - show_output(result) unless result.value.valueName == 'Success' - - # assert that it ran correctly - assert_equal('Success', result.value.valueName) - end - def _rm_path(path) if Dir.exist?(path) FileUtils.rm_r(path) diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-auto.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-auto.osw index e75bfcd9..a1f49957 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-auto.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-auto.osw @@ -6,58 +6,50 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "auto", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "auto", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", "cooling_system_cooling_compressor_type": "single stage", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.73, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "central air conditioner", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -65,8 +57,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "auto", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -74,11 +65,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "2", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 25.0, @@ -92,17 +82,15 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -133,6 +121,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, @@ -141,6 +130,7 @@ "geometry_num_floors_above_grade": 1, "geometry_num_occupants": "auto", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family detached", @@ -150,22 +140,20 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "64000.0", - "heat_pump_heating_capacity_17F": "auto", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "none", "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "natural gas", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.92, @@ -186,7 +174,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/extra-auto.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -208,14 +196,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -236,18 +222,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -274,21 +256,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "auto", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -315,10 +295,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "none", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -326,8 +304,6 @@ "water_heater_efficiency": 0.95, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "electricity", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "18767", "water_heater_jacket_rvalue": 0, "water_heater_location": "auto", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-double-exterior.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-double-exterior.osw new file mode 100644 index 00000000..cf124be6 --- /dev/null +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-double-exterior.osw @@ -0,0 +1,341 @@ +{ + "measure_paths": [ + "../.." + ], + "steps": [ + { + "arguments": { + "air_leakage_house_pressure": 50, + "air_leakage_shielding_of_home": "auto", + "air_leakage_units": "ACH", + "air_leakage_value": 3, + "bathroom_fans_quantity": "0", + "ceiling_assembly_r": 39.3, + "ceiling_fan_cooling_setpoint_temp_offset": 0, + "ceiling_fan_efficiency": "auto", + "ceiling_fan_present": false, + "ceiling_fan_quantity": "auto", + "clothes_dryer_efficiency": "3.73", + "clothes_dryer_efficiency_type": "CombinedEnergyFactor", + "clothes_dryer_fuel_type": "electricity", + "clothes_dryer_location": "living space", + "clothes_dryer_usage_multiplier": 1.0, + "clothes_dryer_vented_flow_rate": "150.0", + "clothes_washer_capacity": "3.2", + "clothes_washer_efficiency": "1.21", + "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", + "clothes_washer_label_annual_gas_cost": "27.0", + "clothes_washer_label_electric_rate": "0.12", + "clothes_washer_label_gas_rate": "1.09", + "clothes_washer_label_usage": "6.0", + "clothes_washer_location": "living space", + "clothes_washer_rated_annual_kwh": "380.0", + "clothes_washer_usage_multiplier": 1.0, + "cooking_range_oven_fuel_type": "electricity", + "cooking_range_oven_is_convection": false, + "cooking_range_oven_is_induction": false, + "cooking_range_oven_location": "living space", + "cooking_range_oven_usage_multiplier": 1.0, + "cooling_system_cooling_capacity": "48000.0", + "cooling_system_cooling_compressor_type": "single stage", + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", + "cooling_system_cooling_sensible_heat_fraction": 0.73, + "cooling_system_fraction_cool_load_served": 1, + "cooling_system_is_ducted": false, + "cooling_system_type": "central air conditioner", + "dehumidifier_capacity": 40, + "dehumidifier_efficiency": 1.8, + "dehumidifier_efficiency_type": "EnergyFactor", + "dehumidifier_fraction_dehumidification_load_served": 1, + "dehumidifier_rh_setpoint": 0.5, + "dehumidifier_type": "none", + "dhw_distribution_pipe_r": "0.0", + "dhw_distribution_recirc_branch_piping_length": "50", + "dhw_distribution_recirc_control_type": "no control", + "dhw_distribution_recirc_piping_length": "50", + "dhw_distribution_recirc_pump_power": "50", + "dhw_distribution_standard_piping_length": "50", + "dhw_distribution_system_type": "Standard", + "dishwasher_efficiency": "307", + "dishwasher_efficiency_type": "RatedAnnualkWh", + "dishwasher_label_annual_gas_cost": "22.32", + "dishwasher_label_electric_rate": "0.12", + "dishwasher_label_gas_rate": "1.09", + "dishwasher_label_usage": "4.0", + "dishwasher_location": "living space", + "dishwasher_place_setting_capacity": "12", + "dishwasher_usage_multiplier": 1.0, + "door_area": 20.0, + "door_rvalue": 4.4, + "ducts_number_of_return_registers": "1", + "ducts_return_insulation_r": 0.0, + "ducts_return_leakage_units": "CFM25", + "ducts_return_leakage_value": 0.0, + "ducts_return_location": "living space", + "ducts_return_surface_area": "50.0", + "ducts_supply_insulation_r": 0.0, + "ducts_supply_leakage_units": "CFM25", + "ducts_supply_leakage_value": 0.0, + "ducts_supply_location": "living space", + "ducts_supply_surface_area": "150.0", + "dwhr_efficiency": 0.55, + "dwhr_equal_flow": true, + "dwhr_facilities_connected": "none", + "extra_refrigerator_location": "none", + "extra_refrigerator_rated_annual_kwh": "auto", + "extra_refrigerator_usage_multiplier": 1.0, + "floor_assembly_r": 0, + "foundation_wall_insulation_distance_to_bottom": "auto", + "foundation_wall_insulation_distance_to_top": 0.0, + "foundation_wall_insulation_r": 8.9, + "foundation_wall_thickness": "8.0", + "freezer_location": "none", + "freezer_rated_annual_kwh": "auto", + "freezer_usage_multiplier": 1.0, + "fuel_loads_fireplace_annual_therm": "auto", + "fuel_loads_fireplace_frac_latent": "auto", + "fuel_loads_fireplace_frac_sensible": "auto", + "fuel_loads_fireplace_fuel_type": "natural gas", + "fuel_loads_fireplace_present": false, + "fuel_loads_fireplace_usage_multiplier": 0.0, + "fuel_loads_grill_annual_therm": "auto", + "fuel_loads_grill_fuel_type": "natural gas", + "fuel_loads_grill_present": false, + "fuel_loads_grill_usage_multiplier": 0.0, + "fuel_loads_lighting_annual_therm": "auto", + "fuel_loads_lighting_fuel_type": "natural gas", + "fuel_loads_lighting_present": false, + "fuel_loads_lighting_usage_multiplier": 0.0, + "geometry_aspect_ratio": 1.5, + "geometry_attic_type": "UnventedAttic", + "geometry_balcony_depth": 0.0, + "geometry_building_num_bedrooms": 150, + "geometry_building_num_units": 50, + "geometry_cfa": 900.0, + "geometry_corridor_position": "Double Exterior", + "geometry_corridor_width": 10.0, + "geometry_eaves_depth": 0, + "geometry_foundation_height": 8.0, + "geometry_foundation_height_above_grade": 1.0, + "geometry_foundation_type": "UnconditionedBasement", + "geometry_garage_depth": 20.0, + "geometry_garage_position": "Right", + "geometry_garage_protrusion": 0.0, + "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", + "geometry_horizontal_location": "Left", + "geometry_inset_depth": 0.0, + "geometry_inset_position": "Right", + "geometry_inset_width": 0.0, + "geometry_level": "Middle", + "geometry_num_bathrooms": "2", + "geometry_num_bedrooms": 3, + "geometry_num_floors_above_grade": 5, + "geometry_num_occupants": "3", + "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, + "geometry_roof_pitch": "6:12", + "geometry_roof_type": "gable", + "geometry_unit_type": "apartment unit", + "geometry_wall_height": 8.0, + "heat_pump_backup_fuel": "none", + "heat_pump_backup_heating_capacity": "34121.0", + "heat_pump_backup_heating_efficiency": 1, + "heat_pump_cooling_capacity": "48000.0", + "heat_pump_cooling_compressor_type": "single stage", + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", + "heat_pump_cooling_sensible_heat_fraction": 0.73, + "heat_pump_fraction_cool_load_served": 1, + "heat_pump_fraction_heat_load_served": 1, + "heat_pump_heating_capacity": "64000.0", + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", + "heat_pump_type": "none", + "heating_system_fraction_heat_load_served": 1, + "heating_system_fraction_heat_load_served_2": 0.25, + "heating_system_fuel": "natural gas", + "heating_system_fuel_2": "electricity", + "heating_system_heating_capacity": "64000.0", + "heating_system_heating_capacity_2": "auto", + "heating_system_heating_efficiency": 0.92, + "heating_system_heating_efficiency_2": 1.0, + "heating_system_type": "Furnace", + "heating_system_type_2": "none", + "holiday_lighting_daily_kwh": "auto", + "holiday_lighting_period_begin_day_of_month": "auto", + "holiday_lighting_period_begin_month": "auto", + "holiday_lighting_period_end_day_of_month": "auto", + "holiday_lighting_period_end_month": "auto", + "holiday_lighting_present": false, + "hot_tub_heater_annual_kwh": "auto", + "hot_tub_heater_annual_therm": "auto", + "hot_tub_heater_type": "electric resistance", + "hot_tub_heater_usage_multiplier": 1.0, + "hot_tub_present": false, + "hot_tub_pump_annual_kwh": "auto", + "hot_tub_pump_usage_multiplier": 1.0, + "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/extra-bldgtype-multifamily-double-exterior.xml", + "kitchen_fans_quantity": "0", + "lighting_fraction_cfl_exterior": 0.4, + "lighting_fraction_cfl_garage": 0.4, + "lighting_fraction_cfl_interior": 0.4, + "lighting_fraction_led_exterior": 0.25, + "lighting_fraction_led_garage": 0.25, + "lighting_fraction_led_interior": 0.25, + "lighting_fraction_lfl_exterior": 0.1, + "lighting_fraction_lfl_garage": 0.1, + "lighting_fraction_lfl_interior": 0.1, + "lighting_usage_multiplier_exterior": 1.0, + "lighting_usage_multiplier_garage": 1.0, + "lighting_usage_multiplier_interior": 1.0, + "mech_vent_fan_power": 30, + "mech_vent_fan_power_2": 30, + "mech_vent_fan_type": "none", + "mech_vent_fan_type_2": "none", + "mech_vent_flow_rate": 110, + "mech_vent_flow_rate_2": 110, + "mech_vent_hours_in_operation": 24, + "mech_vent_hours_in_operation_2": 24, + "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", + "mech_vent_sensible_recovery_efficiency": 0.72, + "mech_vent_sensible_recovery_efficiency_2": 0.72, + "mech_vent_total_recovery_efficiency": 0.48, + "mech_vent_total_recovery_efficiency_2": 0.48, + "neighbor_back_distance": 0, + "neighbor_back_height": "auto", + "neighbor_front_distance": 0, + "neighbor_front_height": "auto", + "neighbor_left_distance": 0, + "neighbor_left_height": "auto", + "neighbor_right_distance": 0, + "neighbor_right_height": "auto", + "overhangs_back_depth": 0, + "overhangs_back_distance_to_top_of_window": 0, + "overhangs_front_depth": 0, + "overhangs_front_distance_to_top_of_window": 0, + "overhangs_left_depth": 0, + "overhangs_left_distance_to_top_of_window": 0, + "overhangs_right_depth": 0, + "overhangs_right_distance_to_top_of_window": 0, + "plug_loads_other_annual_kwh": "819.0", + "plug_loads_other_frac_latent": "0.045", + "plug_loads_other_frac_sensible": "0.855", + "plug_loads_other_usage_multiplier": 1.0, + "plug_loads_television_annual_kwh": "620.0", + "plug_loads_television_usage_multiplier": 1.0, + "plug_loads_vehicle_annual_kwh": "auto", + "plug_loads_vehicle_present": false, + "plug_loads_vehicle_usage_multiplier": 0.0, + "plug_loads_well_pump_annual_kwh": "auto", + "plug_loads_well_pump_present": false, + "plug_loads_well_pump_usage_multiplier": 0.0, + "pool_heater_annual_kwh": "auto", + "pool_heater_annual_therm": "auto", + "pool_heater_type": "electric resistance", + "pool_heater_usage_multiplier": 1.0, + "pool_present": false, + "pool_pump_annual_kwh": "auto", + "pool_pump_usage_multiplier": 1.0, + "pv_system_array_azimuth_1": 180, + "pv_system_array_azimuth_2": 180, + "pv_system_array_tilt_1": "20", + "pv_system_array_tilt_2": "20", + "pv_system_inverter_efficiency_1": 0.96, + "pv_system_inverter_efficiency_2": 0.96, + "pv_system_location_1": "auto", + "pv_system_location_2": "auto", + "pv_system_max_power_output_1": 4000, + "pv_system_max_power_output_2": 4000, + "pv_system_module_type_1": "none", + "pv_system_module_type_2": "none", + "pv_system_num_units_served_1": 1, + "pv_system_num_units_served_2": 1, + "pv_system_system_losses_fraction_1": 0.14, + "pv_system_system_losses_fraction_2": 0.14, + "pv_system_tracking_1": "auto", + "pv_system_tracking_2": "auto", + "refrigerator_location": "living space", + "refrigerator_rated_annual_kwh": "650.0", + "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, + "roof_assembly_r": 2.3, + "roof_color": "medium", + "roof_material_type": "asphalt or fiberglass shingles", + "roof_radiant_barrier": false, + "roof_radiant_barrier_grade": "1", + "schedules_type": "default", + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", + "simulation_control_timestep": "60", + "site_type": "suburban", + "skylight_area_back": 0, + "skylight_area_front": 0, + "skylight_area_left": 0, + "skylight_area_right": 0, + "skylight_shgc": 0.45, + "skylight_ufactor": 0.33, + "slab_carpet_fraction": "0.0", + "slab_carpet_r": "0.0", + "slab_perimeter_depth": 0, + "slab_perimeter_insulation_r": 0, + "slab_thickness": "4.0", + "slab_under_insulation_r": 0, + "slab_under_width": 0, + "solar_thermal_collector_area": 40.0, + "solar_thermal_collector_azimuth": 180, + "solar_thermal_collector_loop_type": "liquid direct", + "solar_thermal_collector_rated_optical_efficiency": 0.5, + "solar_thermal_collector_rated_thermal_losses": 0.2799, + "solar_thermal_collector_tilt": "20", + "solar_thermal_collector_type": "evacuated tube", + "solar_thermal_solar_fraction": 0, + "solar_thermal_storage_volume": "auto", + "solar_thermal_system_type": "none", + "wall_assembly_r": 23, + "wall_color": "medium", + "wall_siding_type": "wood siding", + "wall_type": "WoodStud", + "water_fixtures_shower_low_flow": true, + "water_fixtures_sink_low_flow": false, + "water_fixtures_usage_multiplier": 1.0, + "water_heater_efficiency": 0.95, + "water_heater_efficiency_type": "EnergyFactor", + "water_heater_fuel_type": "electricity", + "water_heater_jacket_rvalue": 0, + "water_heater_location": "living space", + "water_heater_num_units_served": 1, + "water_heater_recovery_efficiency": "0.76", + "water_heater_setpoint_temperature": "125", + "water_heater_standby_loss": 0, + "water_heater_tank_volume": "40", + "water_heater_type": "storage water heater", + "weather_station_epw_filepath": "USA_CO_Denver.Intl.AP.725650_TMY3.epw", + "whole_house_fan_flow_rate": 4500, + "whole_house_fan_power": 300, + "whole_house_fan_present": false, + "window_area_back": 0, + "window_area_front": 0, + "window_area_left": 0, + "window_area_right": 0, + "window_aspect_ratio": 1.333, + "window_back_wwr": 0.18, + "window_fraction_operable": 0.67, + "window_front_wwr": 0.18, + "window_interior_shading_summer": 0.7, + "window_interior_shading_winter": 0.85, + "window_left_wwr": 0.18, + "window_right_wwr": 0.18, + "window_shgc": 0.45, + "window_ufactor": 0.33 + }, + "measure_dir_name": "BuildResidentialHPXML" + } + ] +} \ No newline at end of file diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-double-loaded-interior.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-double-loaded-interior.osw new file mode 100644 index 00000000..d6aa01bf --- /dev/null +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-double-loaded-interior.osw @@ -0,0 +1,341 @@ +{ + "measure_paths": [ + "../.." + ], + "steps": [ + { + "arguments": { + "air_leakage_house_pressure": 50, + "air_leakage_shielding_of_home": "auto", + "air_leakage_units": "ACH", + "air_leakage_value": 3, + "bathroom_fans_quantity": "0", + "ceiling_assembly_r": 39.3, + "ceiling_fan_cooling_setpoint_temp_offset": 0, + "ceiling_fan_efficiency": "auto", + "ceiling_fan_present": false, + "ceiling_fan_quantity": "auto", + "clothes_dryer_efficiency": "3.73", + "clothes_dryer_efficiency_type": "CombinedEnergyFactor", + "clothes_dryer_fuel_type": "electricity", + "clothes_dryer_location": "living space", + "clothes_dryer_usage_multiplier": 1.0, + "clothes_dryer_vented_flow_rate": "150.0", + "clothes_washer_capacity": "3.2", + "clothes_washer_efficiency": "1.21", + "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", + "clothes_washer_label_annual_gas_cost": "27.0", + "clothes_washer_label_electric_rate": "0.12", + "clothes_washer_label_gas_rate": "1.09", + "clothes_washer_label_usage": "6.0", + "clothes_washer_location": "living space", + "clothes_washer_rated_annual_kwh": "380.0", + "clothes_washer_usage_multiplier": 1.0, + "cooking_range_oven_fuel_type": "electricity", + "cooking_range_oven_is_convection": false, + "cooking_range_oven_is_induction": false, + "cooking_range_oven_location": "living space", + "cooking_range_oven_usage_multiplier": 1.0, + "cooling_system_cooling_capacity": "48000.0", + "cooling_system_cooling_compressor_type": "single stage", + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", + "cooling_system_cooling_sensible_heat_fraction": 0.73, + "cooling_system_fraction_cool_load_served": 1, + "cooling_system_is_ducted": false, + "cooling_system_type": "central air conditioner", + "dehumidifier_capacity": 40, + "dehumidifier_efficiency": 1.8, + "dehumidifier_efficiency_type": "EnergyFactor", + "dehumidifier_fraction_dehumidification_load_served": 1, + "dehumidifier_rh_setpoint": 0.5, + "dehumidifier_type": "none", + "dhw_distribution_pipe_r": "0.0", + "dhw_distribution_recirc_branch_piping_length": "50", + "dhw_distribution_recirc_control_type": "no control", + "dhw_distribution_recirc_piping_length": "50", + "dhw_distribution_recirc_pump_power": "50", + "dhw_distribution_standard_piping_length": "50", + "dhw_distribution_system_type": "Standard", + "dishwasher_efficiency": "307", + "dishwasher_efficiency_type": "RatedAnnualkWh", + "dishwasher_label_annual_gas_cost": "22.32", + "dishwasher_label_electric_rate": "0.12", + "dishwasher_label_gas_rate": "1.09", + "dishwasher_label_usage": "4.0", + "dishwasher_location": "living space", + "dishwasher_place_setting_capacity": "12", + "dishwasher_usage_multiplier": 1.0, + "door_area": 20.0, + "door_rvalue": 4.4, + "ducts_number_of_return_registers": "1", + "ducts_return_insulation_r": 0.0, + "ducts_return_leakage_units": "CFM25", + "ducts_return_leakage_value": 0.0, + "ducts_return_location": "living space", + "ducts_return_surface_area": "50.0", + "ducts_supply_insulation_r": 0.0, + "ducts_supply_leakage_units": "CFM25", + "ducts_supply_leakage_value": 0.0, + "ducts_supply_location": "living space", + "ducts_supply_surface_area": "150.0", + "dwhr_efficiency": 0.55, + "dwhr_equal_flow": true, + "dwhr_facilities_connected": "none", + "extra_refrigerator_location": "none", + "extra_refrigerator_rated_annual_kwh": "auto", + "extra_refrigerator_usage_multiplier": 1.0, + "floor_assembly_r": 0, + "foundation_wall_insulation_distance_to_bottom": "auto", + "foundation_wall_insulation_distance_to_top": 0.0, + "foundation_wall_insulation_r": 8.9, + "foundation_wall_thickness": "8.0", + "freezer_location": "none", + "freezer_rated_annual_kwh": "auto", + "freezer_usage_multiplier": 1.0, + "fuel_loads_fireplace_annual_therm": "auto", + "fuel_loads_fireplace_frac_latent": "auto", + "fuel_loads_fireplace_frac_sensible": "auto", + "fuel_loads_fireplace_fuel_type": "natural gas", + "fuel_loads_fireplace_present": false, + "fuel_loads_fireplace_usage_multiplier": 0.0, + "fuel_loads_grill_annual_therm": "auto", + "fuel_loads_grill_fuel_type": "natural gas", + "fuel_loads_grill_present": false, + "fuel_loads_grill_usage_multiplier": 0.0, + "fuel_loads_lighting_annual_therm": "auto", + "fuel_loads_lighting_fuel_type": "natural gas", + "fuel_loads_lighting_present": false, + "fuel_loads_lighting_usage_multiplier": 0.0, + "geometry_aspect_ratio": 1.5, + "geometry_attic_type": "UnventedAttic", + "geometry_balcony_depth": 0.0, + "geometry_building_num_bedrooms": 150, + "geometry_building_num_units": 50, + "geometry_cfa": 900.0, + "geometry_corridor_position": "Double-Loaded Interior", + "geometry_corridor_width": 10.0, + "geometry_eaves_depth": 0, + "geometry_foundation_height": 8.0, + "geometry_foundation_height_above_grade": 1.0, + "geometry_foundation_type": "UnconditionedBasement", + "geometry_garage_depth": 20.0, + "geometry_garage_position": "Right", + "geometry_garage_protrusion": 0.0, + "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", + "geometry_horizontal_location": "Left", + "geometry_inset_depth": 0.0, + "geometry_inset_position": "Right", + "geometry_inset_width": 0.0, + "geometry_level": "Middle", + "geometry_num_bathrooms": "2", + "geometry_num_bedrooms": 3, + "geometry_num_floors_above_grade": 5, + "geometry_num_occupants": "3", + "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, + "geometry_roof_pitch": "6:12", + "geometry_roof_type": "gable", + "geometry_unit_type": "apartment unit", + "geometry_wall_height": 8.0, + "heat_pump_backup_fuel": "none", + "heat_pump_backup_heating_capacity": "34121.0", + "heat_pump_backup_heating_efficiency": 1, + "heat_pump_cooling_capacity": "48000.0", + "heat_pump_cooling_compressor_type": "single stage", + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", + "heat_pump_cooling_sensible_heat_fraction": 0.73, + "heat_pump_fraction_cool_load_served": 1, + "heat_pump_fraction_heat_load_served": 1, + "heat_pump_heating_capacity": "64000.0", + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", + "heat_pump_type": "none", + "heating_system_fraction_heat_load_served": 1, + "heating_system_fraction_heat_load_served_2": 0.25, + "heating_system_fuel": "natural gas", + "heating_system_fuel_2": "electricity", + "heating_system_heating_capacity": "64000.0", + "heating_system_heating_capacity_2": "auto", + "heating_system_heating_efficiency": 0.92, + "heating_system_heating_efficiency_2": 1.0, + "heating_system_type": "Furnace", + "heating_system_type_2": "none", + "holiday_lighting_daily_kwh": "auto", + "holiday_lighting_period_begin_day_of_month": "auto", + "holiday_lighting_period_begin_month": "auto", + "holiday_lighting_period_end_day_of_month": "auto", + "holiday_lighting_period_end_month": "auto", + "holiday_lighting_present": false, + "hot_tub_heater_annual_kwh": "auto", + "hot_tub_heater_annual_therm": "auto", + "hot_tub_heater_type": "electric resistance", + "hot_tub_heater_usage_multiplier": 1.0, + "hot_tub_present": false, + "hot_tub_pump_annual_kwh": "auto", + "hot_tub_pump_usage_multiplier": 1.0, + "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/extra-bldgtype-multifamily-double-loaded-interior.xml", + "kitchen_fans_quantity": "0", + "lighting_fraction_cfl_exterior": 0.4, + "lighting_fraction_cfl_garage": 0.4, + "lighting_fraction_cfl_interior": 0.4, + "lighting_fraction_led_exterior": 0.25, + "lighting_fraction_led_garage": 0.25, + "lighting_fraction_led_interior": 0.25, + "lighting_fraction_lfl_exterior": 0.1, + "lighting_fraction_lfl_garage": 0.1, + "lighting_fraction_lfl_interior": 0.1, + "lighting_usage_multiplier_exterior": 1.0, + "lighting_usage_multiplier_garage": 1.0, + "lighting_usage_multiplier_interior": 1.0, + "mech_vent_fan_power": 30, + "mech_vent_fan_power_2": 30, + "mech_vent_fan_type": "none", + "mech_vent_fan_type_2": "none", + "mech_vent_flow_rate": 110, + "mech_vent_flow_rate_2": 110, + "mech_vent_hours_in_operation": 24, + "mech_vent_hours_in_operation_2": 24, + "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", + "mech_vent_sensible_recovery_efficiency": 0.72, + "mech_vent_sensible_recovery_efficiency_2": 0.72, + "mech_vent_total_recovery_efficiency": 0.48, + "mech_vent_total_recovery_efficiency_2": 0.48, + "neighbor_back_distance": 0, + "neighbor_back_height": "auto", + "neighbor_front_distance": 0, + "neighbor_front_height": "auto", + "neighbor_left_distance": 0, + "neighbor_left_height": "auto", + "neighbor_right_distance": 0, + "neighbor_right_height": "auto", + "overhangs_back_depth": 0, + "overhangs_back_distance_to_top_of_window": 0, + "overhangs_front_depth": 0, + "overhangs_front_distance_to_top_of_window": 0, + "overhangs_left_depth": 0, + "overhangs_left_distance_to_top_of_window": 0, + "overhangs_right_depth": 0, + "overhangs_right_distance_to_top_of_window": 0, + "plug_loads_other_annual_kwh": "819.0", + "plug_loads_other_frac_latent": "0.045", + "plug_loads_other_frac_sensible": "0.855", + "plug_loads_other_usage_multiplier": 1.0, + "plug_loads_television_annual_kwh": "620.0", + "plug_loads_television_usage_multiplier": 1.0, + "plug_loads_vehicle_annual_kwh": "auto", + "plug_loads_vehicle_present": false, + "plug_loads_vehicle_usage_multiplier": 0.0, + "plug_loads_well_pump_annual_kwh": "auto", + "plug_loads_well_pump_present": false, + "plug_loads_well_pump_usage_multiplier": 0.0, + "pool_heater_annual_kwh": "auto", + "pool_heater_annual_therm": "auto", + "pool_heater_type": "electric resistance", + "pool_heater_usage_multiplier": 1.0, + "pool_present": false, + "pool_pump_annual_kwh": "auto", + "pool_pump_usage_multiplier": 1.0, + "pv_system_array_azimuth_1": 180, + "pv_system_array_azimuth_2": 180, + "pv_system_array_tilt_1": "20", + "pv_system_array_tilt_2": "20", + "pv_system_inverter_efficiency_1": 0.96, + "pv_system_inverter_efficiency_2": 0.96, + "pv_system_location_1": "auto", + "pv_system_location_2": "auto", + "pv_system_max_power_output_1": 4000, + "pv_system_max_power_output_2": 4000, + "pv_system_module_type_1": "none", + "pv_system_module_type_2": "none", + "pv_system_num_units_served_1": 1, + "pv_system_num_units_served_2": 1, + "pv_system_system_losses_fraction_1": 0.14, + "pv_system_system_losses_fraction_2": 0.14, + "pv_system_tracking_1": "auto", + "pv_system_tracking_2": "auto", + "refrigerator_location": "living space", + "refrigerator_rated_annual_kwh": "650.0", + "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, + "roof_assembly_r": 2.3, + "roof_color": "medium", + "roof_material_type": "asphalt or fiberglass shingles", + "roof_radiant_barrier": false, + "roof_radiant_barrier_grade": "1", + "schedules_type": "default", + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", + "simulation_control_timestep": "60", + "site_type": "suburban", + "skylight_area_back": 0, + "skylight_area_front": 0, + "skylight_area_left": 0, + "skylight_area_right": 0, + "skylight_shgc": 0.45, + "skylight_ufactor": 0.33, + "slab_carpet_fraction": "0.0", + "slab_carpet_r": "0.0", + "slab_perimeter_depth": 0, + "slab_perimeter_insulation_r": 0, + "slab_thickness": "4.0", + "slab_under_insulation_r": 0, + "slab_under_width": 0, + "solar_thermal_collector_area": 40.0, + "solar_thermal_collector_azimuth": 180, + "solar_thermal_collector_loop_type": "liquid direct", + "solar_thermal_collector_rated_optical_efficiency": 0.5, + "solar_thermal_collector_rated_thermal_losses": 0.2799, + "solar_thermal_collector_tilt": "20", + "solar_thermal_collector_type": "evacuated tube", + "solar_thermal_solar_fraction": 0, + "solar_thermal_storage_volume": "auto", + "solar_thermal_system_type": "none", + "wall_assembly_r": 23, + "wall_color": "medium", + "wall_siding_type": "wood siding", + "wall_type": "WoodStud", + "water_fixtures_shower_low_flow": true, + "water_fixtures_sink_low_flow": false, + "water_fixtures_usage_multiplier": 1.0, + "water_heater_efficiency": 0.95, + "water_heater_efficiency_type": "EnergyFactor", + "water_heater_fuel_type": "electricity", + "water_heater_jacket_rvalue": 0, + "water_heater_location": "living space", + "water_heater_num_units_served": 1, + "water_heater_recovery_efficiency": "0.76", + "water_heater_setpoint_temperature": "125", + "water_heater_standby_loss": 0, + "water_heater_tank_volume": "40", + "water_heater_type": "storage water heater", + "weather_station_epw_filepath": "USA_CO_Denver.Intl.AP.725650_TMY3.epw", + "whole_house_fan_flow_rate": 4500, + "whole_house_fan_power": 300, + "whole_house_fan_present": false, + "window_area_back": 0, + "window_area_front": 0, + "window_area_left": 0, + "window_area_right": 0, + "window_aspect_ratio": 1.333, + "window_back_wwr": 0.18, + "window_fraction_operable": 0.67, + "window_front_wwr": 0.18, + "window_interior_shading_summer": 0.7, + "window_interior_shading_winter": 0.85, + "window_left_wwr": 0.18, + "window_right_wwr": 0.18, + "window_shgc": 0.45, + "window_ufactor": 0.33 + }, + "measure_dir_name": "BuildResidentialHPXML" + } + ] +} \ No newline at end of file diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-eaves.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-eaves.osw new file mode 100644 index 00000000..76a1a9a0 --- /dev/null +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-eaves.osw @@ -0,0 +1,341 @@ +{ + "measure_paths": [ + "../.." + ], + "steps": [ + { + "arguments": { + "air_leakage_house_pressure": 50, + "air_leakage_shielding_of_home": "auto", + "air_leakage_units": "ACH", + "air_leakage_value": 3, + "bathroom_fans_quantity": "0", + "ceiling_assembly_r": 39.3, + "ceiling_fan_cooling_setpoint_temp_offset": 0, + "ceiling_fan_efficiency": "auto", + "ceiling_fan_present": false, + "ceiling_fan_quantity": "auto", + "clothes_dryer_efficiency": "3.73", + "clothes_dryer_efficiency_type": "CombinedEnergyFactor", + "clothes_dryer_fuel_type": "electricity", + "clothes_dryer_location": "living space", + "clothes_dryer_usage_multiplier": 1.0, + "clothes_dryer_vented_flow_rate": "150.0", + "clothes_washer_capacity": "3.2", + "clothes_washer_efficiency": "1.21", + "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", + "clothes_washer_label_annual_gas_cost": "27.0", + "clothes_washer_label_electric_rate": "0.12", + "clothes_washer_label_gas_rate": "1.09", + "clothes_washer_label_usage": "6.0", + "clothes_washer_location": "living space", + "clothes_washer_rated_annual_kwh": "380.0", + "clothes_washer_usage_multiplier": 1.0, + "cooking_range_oven_fuel_type": "electricity", + "cooking_range_oven_is_convection": false, + "cooking_range_oven_is_induction": false, + "cooking_range_oven_location": "living space", + "cooking_range_oven_usage_multiplier": 1.0, + "cooling_system_cooling_capacity": "48000.0", + "cooling_system_cooling_compressor_type": "single stage", + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", + "cooling_system_cooling_sensible_heat_fraction": 0.73, + "cooling_system_fraction_cool_load_served": 1, + "cooling_system_is_ducted": false, + "cooling_system_type": "central air conditioner", + "dehumidifier_capacity": 40, + "dehumidifier_efficiency": 1.8, + "dehumidifier_efficiency_type": "EnergyFactor", + "dehumidifier_fraction_dehumidification_load_served": 1, + "dehumidifier_rh_setpoint": 0.5, + "dehumidifier_type": "none", + "dhw_distribution_pipe_r": "0.0", + "dhw_distribution_recirc_branch_piping_length": "50", + "dhw_distribution_recirc_control_type": "no control", + "dhw_distribution_recirc_piping_length": "50", + "dhw_distribution_recirc_pump_power": "50", + "dhw_distribution_standard_piping_length": "50", + "dhw_distribution_system_type": "Standard", + "dishwasher_efficiency": "307", + "dishwasher_efficiency_type": "RatedAnnualkWh", + "dishwasher_label_annual_gas_cost": "22.32", + "dishwasher_label_electric_rate": "0.12", + "dishwasher_label_gas_rate": "1.09", + "dishwasher_label_usage": "4.0", + "dishwasher_location": "living space", + "dishwasher_place_setting_capacity": "12", + "dishwasher_usage_multiplier": 1.0, + "door_area": 20.0, + "door_rvalue": 4.4, + "ducts_number_of_return_registers": "1", + "ducts_return_insulation_r": 0.0, + "ducts_return_leakage_units": "CFM25", + "ducts_return_leakage_value": 0.0, + "ducts_return_location": "living space", + "ducts_return_surface_area": "50.0", + "ducts_supply_insulation_r": 0.0, + "ducts_supply_leakage_units": "CFM25", + "ducts_supply_leakage_value": 0.0, + "ducts_supply_location": "living space", + "ducts_supply_surface_area": "150.0", + "dwhr_efficiency": 0.55, + "dwhr_equal_flow": true, + "dwhr_facilities_connected": "none", + "extra_refrigerator_location": "none", + "extra_refrigerator_rated_annual_kwh": "auto", + "extra_refrigerator_usage_multiplier": 1.0, + "floor_assembly_r": 0, + "foundation_wall_insulation_distance_to_bottom": "auto", + "foundation_wall_insulation_distance_to_top": 0.0, + "foundation_wall_insulation_r": 8.9, + "foundation_wall_thickness": "8.0", + "freezer_location": "none", + "freezer_rated_annual_kwh": "auto", + "freezer_usage_multiplier": 1.0, + "fuel_loads_fireplace_annual_therm": "auto", + "fuel_loads_fireplace_frac_latent": "auto", + "fuel_loads_fireplace_frac_sensible": "auto", + "fuel_loads_fireplace_fuel_type": "natural gas", + "fuel_loads_fireplace_present": false, + "fuel_loads_fireplace_usage_multiplier": 0.0, + "fuel_loads_grill_annual_therm": "auto", + "fuel_loads_grill_fuel_type": "natural gas", + "fuel_loads_grill_present": false, + "fuel_loads_grill_usage_multiplier": 0.0, + "fuel_loads_lighting_annual_therm": "auto", + "fuel_loads_lighting_fuel_type": "natural gas", + "fuel_loads_lighting_present": false, + "fuel_loads_lighting_usage_multiplier": 0.0, + "geometry_aspect_ratio": 1.5, + "geometry_attic_type": "UnventedAttic", + "geometry_balcony_depth": 0.0, + "geometry_building_num_bedrooms": 150, + "geometry_building_num_units": 50, + "geometry_cfa": 900.0, + "geometry_corridor_position": "None", + "geometry_corridor_width": 10.0, + "geometry_eaves_depth": 2, + "geometry_foundation_height": 0.0, + "geometry_foundation_height_above_grade": 0.0, + "geometry_foundation_type": "SlabOnGrade", + "geometry_garage_depth": 20.0, + "geometry_garage_position": "Right", + "geometry_garage_protrusion": 0.0, + "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", + "geometry_horizontal_location": "Left", + "geometry_inset_depth": 0.0, + "geometry_inset_position": "Right", + "geometry_inset_width": 0.0, + "geometry_level": "Middle", + "geometry_num_bathrooms": "2", + "geometry_num_bedrooms": 3, + "geometry_num_floors_above_grade": 5, + "geometry_num_occupants": "3", + "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, + "geometry_roof_pitch": "6:12", + "geometry_roof_type": "gable", + "geometry_unit_type": "apartment unit", + "geometry_wall_height": 8.0, + "heat_pump_backup_fuel": "none", + "heat_pump_backup_heating_capacity": "34121.0", + "heat_pump_backup_heating_efficiency": 1, + "heat_pump_cooling_capacity": "48000.0", + "heat_pump_cooling_compressor_type": "single stage", + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", + "heat_pump_cooling_sensible_heat_fraction": 0.73, + "heat_pump_fraction_cool_load_served": 1, + "heat_pump_fraction_heat_load_served": 1, + "heat_pump_heating_capacity": "64000.0", + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", + "heat_pump_type": "none", + "heating_system_fraction_heat_load_served": 1, + "heating_system_fraction_heat_load_served_2": 0.25, + "heating_system_fuel": "natural gas", + "heating_system_fuel_2": "electricity", + "heating_system_heating_capacity": "64000.0", + "heating_system_heating_capacity_2": "auto", + "heating_system_heating_efficiency": 0.92, + "heating_system_heating_efficiency_2": 1.0, + "heating_system_type": "Furnace", + "heating_system_type_2": "none", + "holiday_lighting_daily_kwh": "auto", + "holiday_lighting_period_begin_day_of_month": "auto", + "holiday_lighting_period_begin_month": "auto", + "holiday_lighting_period_end_day_of_month": "auto", + "holiday_lighting_period_end_month": "auto", + "holiday_lighting_present": false, + "hot_tub_heater_annual_kwh": "auto", + "hot_tub_heater_annual_therm": "auto", + "hot_tub_heater_type": "electric resistance", + "hot_tub_heater_usage_multiplier": 1.0, + "hot_tub_present": false, + "hot_tub_pump_annual_kwh": "auto", + "hot_tub_pump_usage_multiplier": 1.0, + "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/extra-bldgtype-multifamily-eaves.xml", + "kitchen_fans_quantity": "0", + "lighting_fraction_cfl_exterior": 0.4, + "lighting_fraction_cfl_garage": 0.4, + "lighting_fraction_cfl_interior": 0.4, + "lighting_fraction_led_exterior": 0.25, + "lighting_fraction_led_garage": 0.25, + "lighting_fraction_led_interior": 0.25, + "lighting_fraction_lfl_exterior": 0.1, + "lighting_fraction_lfl_garage": 0.1, + "lighting_fraction_lfl_interior": 0.1, + "lighting_usage_multiplier_exterior": 1.0, + "lighting_usage_multiplier_garage": 1.0, + "lighting_usage_multiplier_interior": 1.0, + "mech_vent_fan_power": 30, + "mech_vent_fan_power_2": 30, + "mech_vent_fan_type": "none", + "mech_vent_fan_type_2": "none", + "mech_vent_flow_rate": 110, + "mech_vent_flow_rate_2": 110, + "mech_vent_hours_in_operation": 24, + "mech_vent_hours_in_operation_2": 24, + "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", + "mech_vent_sensible_recovery_efficiency": 0.72, + "mech_vent_sensible_recovery_efficiency_2": 0.72, + "mech_vent_total_recovery_efficiency": 0.48, + "mech_vent_total_recovery_efficiency_2": 0.48, + "neighbor_back_distance": 0, + "neighbor_back_height": "auto", + "neighbor_front_distance": 0, + "neighbor_front_height": "auto", + "neighbor_left_distance": 0, + "neighbor_left_height": "auto", + "neighbor_right_distance": 0, + "neighbor_right_height": "auto", + "overhangs_back_depth": 0, + "overhangs_back_distance_to_top_of_window": 0, + "overhangs_front_depth": 0, + "overhangs_front_distance_to_top_of_window": 0, + "overhangs_left_depth": 0, + "overhangs_left_distance_to_top_of_window": 0, + "overhangs_right_depth": 0, + "overhangs_right_distance_to_top_of_window": 0, + "plug_loads_other_annual_kwh": "819.0", + "plug_loads_other_frac_latent": "0.045", + "plug_loads_other_frac_sensible": "0.855", + "plug_loads_other_usage_multiplier": 1.0, + "plug_loads_television_annual_kwh": "620.0", + "plug_loads_television_usage_multiplier": 1.0, + "plug_loads_vehicle_annual_kwh": "auto", + "plug_loads_vehicle_present": false, + "plug_loads_vehicle_usage_multiplier": 0.0, + "plug_loads_well_pump_annual_kwh": "auto", + "plug_loads_well_pump_present": false, + "plug_loads_well_pump_usage_multiplier": 0.0, + "pool_heater_annual_kwh": "auto", + "pool_heater_annual_therm": "auto", + "pool_heater_type": "electric resistance", + "pool_heater_usage_multiplier": 1.0, + "pool_present": false, + "pool_pump_annual_kwh": "auto", + "pool_pump_usage_multiplier": 1.0, + "pv_system_array_azimuth_1": 180, + "pv_system_array_azimuth_2": 180, + "pv_system_array_tilt_1": "20", + "pv_system_array_tilt_2": "20", + "pv_system_inverter_efficiency_1": 0.96, + "pv_system_inverter_efficiency_2": 0.96, + "pv_system_location_1": "auto", + "pv_system_location_2": "auto", + "pv_system_max_power_output_1": 4000, + "pv_system_max_power_output_2": 4000, + "pv_system_module_type_1": "none", + "pv_system_module_type_2": "none", + "pv_system_num_units_served_1": 1, + "pv_system_num_units_served_2": 1, + "pv_system_system_losses_fraction_1": 0.14, + "pv_system_system_losses_fraction_2": 0.14, + "pv_system_tracking_1": "auto", + "pv_system_tracking_2": "auto", + "refrigerator_location": "living space", + "refrigerator_rated_annual_kwh": "650.0", + "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, + "roof_assembly_r": 2.3, + "roof_color": "medium", + "roof_material_type": "asphalt or fiberglass shingles", + "roof_radiant_barrier": false, + "roof_radiant_barrier_grade": "1", + "schedules_type": "default", + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", + "simulation_control_timestep": "60", + "site_type": "suburban", + "skylight_area_back": 0, + "skylight_area_front": 0, + "skylight_area_left": 0, + "skylight_area_right": 0, + "skylight_shgc": 0.45, + "skylight_ufactor": 0.33, + "slab_carpet_fraction": "0.0", + "slab_carpet_r": "0.0", + "slab_perimeter_depth": 0, + "slab_perimeter_insulation_r": 0, + "slab_thickness": "4.0", + "slab_under_insulation_r": 0, + "slab_under_width": 0, + "solar_thermal_collector_area": 40.0, + "solar_thermal_collector_azimuth": 180, + "solar_thermal_collector_loop_type": "liquid direct", + "solar_thermal_collector_rated_optical_efficiency": 0.5, + "solar_thermal_collector_rated_thermal_losses": 0.2799, + "solar_thermal_collector_tilt": "20", + "solar_thermal_collector_type": "evacuated tube", + "solar_thermal_solar_fraction": 0, + "solar_thermal_storage_volume": "auto", + "solar_thermal_system_type": "none", + "wall_assembly_r": 23, + "wall_color": "medium", + "wall_siding_type": "wood siding", + "wall_type": "WoodStud", + "water_fixtures_shower_low_flow": true, + "water_fixtures_sink_low_flow": false, + "water_fixtures_usage_multiplier": 1.0, + "water_heater_efficiency": 0.95, + "water_heater_efficiency_type": "EnergyFactor", + "water_heater_fuel_type": "electricity", + "water_heater_jacket_rvalue": 0, + "water_heater_location": "living space", + "water_heater_num_units_served": 1, + "water_heater_recovery_efficiency": "0.76", + "water_heater_setpoint_temperature": "125", + "water_heater_standby_loss": 0, + "water_heater_tank_volume": "40", + "water_heater_type": "storage water heater", + "weather_station_epw_filepath": "USA_CO_Denver.Intl.AP.725650_TMY3.epw", + "whole_house_fan_flow_rate": 4500, + "whole_house_fan_power": 300, + "whole_house_fan_present": false, + "window_area_back": 0, + "window_area_front": 0, + "window_area_left": 0, + "window_area_right": 0, + "window_aspect_ratio": 1.333, + "window_back_wwr": 0.18, + "window_fraction_operable": 0.67, + "window_front_wwr": 0.18, + "window_interior_shading_summer": 0.7, + "window_interior_shading_winter": 0.85, + "window_left_wwr": 0.18, + "window_right_wwr": 0.18, + "window_shgc": 0.45, + "window_ufactor": 0.33 + }, + "measure_dir_name": "BuildResidentialHPXML" + } + ] +} \ No newline at end of file diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-single-exterior-front.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-single-exterior-front.osw new file mode 100644 index 00000000..711828d8 --- /dev/null +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-single-exterior-front.osw @@ -0,0 +1,341 @@ +{ + "measure_paths": [ + "../.." + ], + "steps": [ + { + "arguments": { + "air_leakage_house_pressure": 50, + "air_leakage_shielding_of_home": "auto", + "air_leakage_units": "ACH", + "air_leakage_value": 3, + "bathroom_fans_quantity": "0", + "ceiling_assembly_r": 39.3, + "ceiling_fan_cooling_setpoint_temp_offset": 0, + "ceiling_fan_efficiency": "auto", + "ceiling_fan_present": false, + "ceiling_fan_quantity": "auto", + "clothes_dryer_efficiency": "3.73", + "clothes_dryer_efficiency_type": "CombinedEnergyFactor", + "clothes_dryer_fuel_type": "electricity", + "clothes_dryer_location": "living space", + "clothes_dryer_usage_multiplier": 1.0, + "clothes_dryer_vented_flow_rate": "150.0", + "clothes_washer_capacity": "3.2", + "clothes_washer_efficiency": "1.21", + "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", + "clothes_washer_label_annual_gas_cost": "27.0", + "clothes_washer_label_electric_rate": "0.12", + "clothes_washer_label_gas_rate": "1.09", + "clothes_washer_label_usage": "6.0", + "clothes_washer_location": "living space", + "clothes_washer_rated_annual_kwh": "380.0", + "clothes_washer_usage_multiplier": 1.0, + "cooking_range_oven_fuel_type": "electricity", + "cooking_range_oven_is_convection": false, + "cooking_range_oven_is_induction": false, + "cooking_range_oven_location": "living space", + "cooking_range_oven_usage_multiplier": 1.0, + "cooling_system_cooling_capacity": "48000.0", + "cooling_system_cooling_compressor_type": "single stage", + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", + "cooling_system_cooling_sensible_heat_fraction": 0.73, + "cooling_system_fraction_cool_load_served": 1, + "cooling_system_is_ducted": false, + "cooling_system_type": "central air conditioner", + "dehumidifier_capacity": 40, + "dehumidifier_efficiency": 1.8, + "dehumidifier_efficiency_type": "EnergyFactor", + "dehumidifier_fraction_dehumidification_load_served": 1, + "dehumidifier_rh_setpoint": 0.5, + "dehumidifier_type": "none", + "dhw_distribution_pipe_r": "0.0", + "dhw_distribution_recirc_branch_piping_length": "50", + "dhw_distribution_recirc_control_type": "no control", + "dhw_distribution_recirc_piping_length": "50", + "dhw_distribution_recirc_pump_power": "50", + "dhw_distribution_standard_piping_length": "50", + "dhw_distribution_system_type": "Standard", + "dishwasher_efficiency": "307", + "dishwasher_efficiency_type": "RatedAnnualkWh", + "dishwasher_label_annual_gas_cost": "22.32", + "dishwasher_label_electric_rate": "0.12", + "dishwasher_label_gas_rate": "1.09", + "dishwasher_label_usage": "4.0", + "dishwasher_location": "living space", + "dishwasher_place_setting_capacity": "12", + "dishwasher_usage_multiplier": 1.0, + "door_area": 20.0, + "door_rvalue": 4.4, + "ducts_number_of_return_registers": "1", + "ducts_return_insulation_r": 0.0, + "ducts_return_leakage_units": "CFM25", + "ducts_return_leakage_value": 0.0, + "ducts_return_location": "living space", + "ducts_return_surface_area": "50.0", + "ducts_supply_insulation_r": 0.0, + "ducts_supply_leakage_units": "CFM25", + "ducts_supply_leakage_value": 0.0, + "ducts_supply_location": "living space", + "ducts_supply_surface_area": "150.0", + "dwhr_efficiency": 0.55, + "dwhr_equal_flow": true, + "dwhr_facilities_connected": "none", + "extra_refrigerator_location": "none", + "extra_refrigerator_rated_annual_kwh": "auto", + "extra_refrigerator_usage_multiplier": 1.0, + "floor_assembly_r": 0, + "foundation_wall_insulation_distance_to_bottom": "auto", + "foundation_wall_insulation_distance_to_top": 0.0, + "foundation_wall_insulation_r": 8.9, + "foundation_wall_thickness": "8.0", + "freezer_location": "none", + "freezer_rated_annual_kwh": "auto", + "freezer_usage_multiplier": 1.0, + "fuel_loads_fireplace_annual_therm": "auto", + "fuel_loads_fireplace_frac_latent": "auto", + "fuel_loads_fireplace_frac_sensible": "auto", + "fuel_loads_fireplace_fuel_type": "natural gas", + "fuel_loads_fireplace_present": false, + "fuel_loads_fireplace_usage_multiplier": 0.0, + "fuel_loads_grill_annual_therm": "auto", + "fuel_loads_grill_fuel_type": "natural gas", + "fuel_loads_grill_present": false, + "fuel_loads_grill_usage_multiplier": 0.0, + "fuel_loads_lighting_annual_therm": "auto", + "fuel_loads_lighting_fuel_type": "natural gas", + "fuel_loads_lighting_present": false, + "fuel_loads_lighting_usage_multiplier": 0.0, + "geometry_aspect_ratio": 1.5, + "geometry_attic_type": "UnventedAttic", + "geometry_balcony_depth": 0.0, + "geometry_building_num_bedrooms": 150, + "geometry_building_num_units": 50, + "geometry_cfa": 900.0, + "geometry_corridor_position": "Single Exterior (Front)", + "geometry_corridor_width": 10.0, + "geometry_eaves_depth": 0, + "geometry_foundation_height": 8.0, + "geometry_foundation_height_above_grade": 1.0, + "geometry_foundation_type": "UnconditionedBasement", + "geometry_garage_depth": 20.0, + "geometry_garage_position": "Right", + "geometry_garage_protrusion": 0.0, + "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", + "geometry_horizontal_location": "Left", + "geometry_inset_depth": 0.0, + "geometry_inset_position": "Right", + "geometry_inset_width": 0.0, + "geometry_level": "Middle", + "geometry_num_bathrooms": "2", + "geometry_num_bedrooms": 3, + "geometry_num_floors_above_grade": 5, + "geometry_num_occupants": "3", + "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, + "geometry_roof_pitch": "6:12", + "geometry_roof_type": "gable", + "geometry_unit_type": "apartment unit", + "geometry_wall_height": 8.0, + "heat_pump_backup_fuel": "none", + "heat_pump_backup_heating_capacity": "34121.0", + "heat_pump_backup_heating_efficiency": 1, + "heat_pump_cooling_capacity": "48000.0", + "heat_pump_cooling_compressor_type": "single stage", + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", + "heat_pump_cooling_sensible_heat_fraction": 0.73, + "heat_pump_fraction_cool_load_served": 1, + "heat_pump_fraction_heat_load_served": 1, + "heat_pump_heating_capacity": "64000.0", + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", + "heat_pump_type": "none", + "heating_system_fraction_heat_load_served": 1, + "heating_system_fraction_heat_load_served_2": 0.25, + "heating_system_fuel": "natural gas", + "heating_system_fuel_2": "electricity", + "heating_system_heating_capacity": "64000.0", + "heating_system_heating_capacity_2": "auto", + "heating_system_heating_efficiency": 0.92, + "heating_system_heating_efficiency_2": 1.0, + "heating_system_type": "Furnace", + "heating_system_type_2": "none", + "holiday_lighting_daily_kwh": "auto", + "holiday_lighting_period_begin_day_of_month": "auto", + "holiday_lighting_period_begin_month": "auto", + "holiday_lighting_period_end_day_of_month": "auto", + "holiday_lighting_period_end_month": "auto", + "holiday_lighting_present": false, + "hot_tub_heater_annual_kwh": "auto", + "hot_tub_heater_annual_therm": "auto", + "hot_tub_heater_type": "electric resistance", + "hot_tub_heater_usage_multiplier": 1.0, + "hot_tub_present": false, + "hot_tub_pump_annual_kwh": "auto", + "hot_tub_pump_usage_multiplier": 1.0, + "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/extra-bldgtype-multifamily-single-exterior-front.xml", + "kitchen_fans_quantity": "0", + "lighting_fraction_cfl_exterior": 0.4, + "lighting_fraction_cfl_garage": 0.4, + "lighting_fraction_cfl_interior": 0.4, + "lighting_fraction_led_exterior": 0.25, + "lighting_fraction_led_garage": 0.25, + "lighting_fraction_led_interior": 0.25, + "lighting_fraction_lfl_exterior": 0.1, + "lighting_fraction_lfl_garage": 0.1, + "lighting_fraction_lfl_interior": 0.1, + "lighting_usage_multiplier_exterior": 1.0, + "lighting_usage_multiplier_garage": 1.0, + "lighting_usage_multiplier_interior": 1.0, + "mech_vent_fan_power": 30, + "mech_vent_fan_power_2": 30, + "mech_vent_fan_type": "none", + "mech_vent_fan_type_2": "none", + "mech_vent_flow_rate": 110, + "mech_vent_flow_rate_2": 110, + "mech_vent_hours_in_operation": 24, + "mech_vent_hours_in_operation_2": 24, + "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", + "mech_vent_sensible_recovery_efficiency": 0.72, + "mech_vent_sensible_recovery_efficiency_2": 0.72, + "mech_vent_total_recovery_efficiency": 0.48, + "mech_vent_total_recovery_efficiency_2": 0.48, + "neighbor_back_distance": 0, + "neighbor_back_height": "auto", + "neighbor_front_distance": 0, + "neighbor_front_height": "auto", + "neighbor_left_distance": 0, + "neighbor_left_height": "auto", + "neighbor_right_distance": 0, + "neighbor_right_height": "auto", + "overhangs_back_depth": 0, + "overhangs_back_distance_to_top_of_window": 0, + "overhangs_front_depth": 0, + "overhangs_front_distance_to_top_of_window": 0, + "overhangs_left_depth": 0, + "overhangs_left_distance_to_top_of_window": 0, + "overhangs_right_depth": 0, + "overhangs_right_distance_to_top_of_window": 0, + "plug_loads_other_annual_kwh": "819.0", + "plug_loads_other_frac_latent": "0.045", + "plug_loads_other_frac_sensible": "0.855", + "plug_loads_other_usage_multiplier": 1.0, + "plug_loads_television_annual_kwh": "620.0", + "plug_loads_television_usage_multiplier": 1.0, + "plug_loads_vehicle_annual_kwh": "auto", + "plug_loads_vehicle_present": false, + "plug_loads_vehicle_usage_multiplier": 0.0, + "plug_loads_well_pump_annual_kwh": "auto", + "plug_loads_well_pump_present": false, + "plug_loads_well_pump_usage_multiplier": 0.0, + "pool_heater_annual_kwh": "auto", + "pool_heater_annual_therm": "auto", + "pool_heater_type": "electric resistance", + "pool_heater_usage_multiplier": 1.0, + "pool_present": false, + "pool_pump_annual_kwh": "auto", + "pool_pump_usage_multiplier": 1.0, + "pv_system_array_azimuth_1": 180, + "pv_system_array_azimuth_2": 180, + "pv_system_array_tilt_1": "20", + "pv_system_array_tilt_2": "20", + "pv_system_inverter_efficiency_1": 0.96, + "pv_system_inverter_efficiency_2": 0.96, + "pv_system_location_1": "auto", + "pv_system_location_2": "auto", + "pv_system_max_power_output_1": 4000, + "pv_system_max_power_output_2": 4000, + "pv_system_module_type_1": "none", + "pv_system_module_type_2": "none", + "pv_system_num_units_served_1": 1, + "pv_system_num_units_served_2": 1, + "pv_system_system_losses_fraction_1": 0.14, + "pv_system_system_losses_fraction_2": 0.14, + "pv_system_tracking_1": "auto", + "pv_system_tracking_2": "auto", + "refrigerator_location": "living space", + "refrigerator_rated_annual_kwh": "650.0", + "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, + "roof_assembly_r": 2.3, + "roof_color": "medium", + "roof_material_type": "asphalt or fiberglass shingles", + "roof_radiant_barrier": false, + "roof_radiant_barrier_grade": "1", + "schedules_type": "default", + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", + "simulation_control_timestep": "60", + "site_type": "suburban", + "skylight_area_back": 0, + "skylight_area_front": 0, + "skylight_area_left": 0, + "skylight_area_right": 0, + "skylight_shgc": 0.45, + "skylight_ufactor": 0.33, + "slab_carpet_fraction": "0.0", + "slab_carpet_r": "0.0", + "slab_perimeter_depth": 0, + "slab_perimeter_insulation_r": 0, + "slab_thickness": "4.0", + "slab_under_insulation_r": 0, + "slab_under_width": 0, + "solar_thermal_collector_area": 40.0, + "solar_thermal_collector_azimuth": 180, + "solar_thermal_collector_loop_type": "liquid direct", + "solar_thermal_collector_rated_optical_efficiency": 0.5, + "solar_thermal_collector_rated_thermal_losses": 0.2799, + "solar_thermal_collector_tilt": "20", + "solar_thermal_collector_type": "evacuated tube", + "solar_thermal_solar_fraction": 0, + "solar_thermal_storage_volume": "auto", + "solar_thermal_system_type": "none", + "wall_assembly_r": 23, + "wall_color": "medium", + "wall_siding_type": "wood siding", + "wall_type": "WoodStud", + "water_fixtures_shower_low_flow": true, + "water_fixtures_sink_low_flow": false, + "water_fixtures_usage_multiplier": 1.0, + "water_heater_efficiency": 0.95, + "water_heater_efficiency_type": "EnergyFactor", + "water_heater_fuel_type": "electricity", + "water_heater_jacket_rvalue": 0, + "water_heater_location": "living space", + "water_heater_num_units_served": 1, + "water_heater_recovery_efficiency": "0.76", + "water_heater_setpoint_temperature": "125", + "water_heater_standby_loss": 0, + "water_heater_tank_volume": "40", + "water_heater_type": "storage water heater", + "weather_station_epw_filepath": "USA_CO_Denver.Intl.AP.725650_TMY3.epw", + "whole_house_fan_flow_rate": 4500, + "whole_house_fan_power": 300, + "whole_house_fan_present": false, + "window_area_back": 0, + "window_area_front": 0, + "window_area_left": 0, + "window_area_right": 0, + "window_aspect_ratio": 1.333, + "window_back_wwr": 0.18, + "window_fraction_operable": 0.67, + "window_front_wwr": 0.18, + "window_interior_shading_summer": 0.7, + "window_interior_shading_winter": 0.85, + "window_left_wwr": 0.18, + "window_right_wwr": 0.18, + "window_shgc": 0.45, + "window_ufactor": 0.33 + }, + "measure_dir_name": "BuildResidentialHPXML" + } + ] +} \ No newline at end of file diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-slab-double-loaded-interior.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-slab-double-loaded-interior.osw new file mode 100644 index 00000000..0d330154 --- /dev/null +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-slab-double-loaded-interior.osw @@ -0,0 +1,341 @@ +{ + "measure_paths": [ + "../.." + ], + "steps": [ + { + "arguments": { + "air_leakage_house_pressure": 50, + "air_leakage_shielding_of_home": "auto", + "air_leakage_units": "ACH", + "air_leakage_value": 3, + "bathroom_fans_quantity": "0", + "ceiling_assembly_r": 39.3, + "ceiling_fan_cooling_setpoint_temp_offset": 0, + "ceiling_fan_efficiency": "auto", + "ceiling_fan_present": false, + "ceiling_fan_quantity": "auto", + "clothes_dryer_efficiency": "3.73", + "clothes_dryer_efficiency_type": "CombinedEnergyFactor", + "clothes_dryer_fuel_type": "electricity", + "clothes_dryer_location": "living space", + "clothes_dryer_usage_multiplier": 1.0, + "clothes_dryer_vented_flow_rate": "150.0", + "clothes_washer_capacity": "3.2", + "clothes_washer_efficiency": "1.21", + "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", + "clothes_washer_label_annual_gas_cost": "27.0", + "clothes_washer_label_electric_rate": "0.12", + "clothes_washer_label_gas_rate": "1.09", + "clothes_washer_label_usage": "6.0", + "clothes_washer_location": "living space", + "clothes_washer_rated_annual_kwh": "380.0", + "clothes_washer_usage_multiplier": 1.0, + "cooking_range_oven_fuel_type": "electricity", + "cooking_range_oven_is_convection": false, + "cooking_range_oven_is_induction": false, + "cooking_range_oven_location": "living space", + "cooking_range_oven_usage_multiplier": 1.0, + "cooling_system_cooling_capacity": "48000.0", + "cooling_system_cooling_compressor_type": "single stage", + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", + "cooling_system_cooling_sensible_heat_fraction": 0.73, + "cooling_system_fraction_cool_load_served": 1, + "cooling_system_is_ducted": false, + "cooling_system_type": "central air conditioner", + "dehumidifier_capacity": 40, + "dehumidifier_efficiency": 1.8, + "dehumidifier_efficiency_type": "EnergyFactor", + "dehumidifier_fraction_dehumidification_load_served": 1, + "dehumidifier_rh_setpoint": 0.5, + "dehumidifier_type": "none", + "dhw_distribution_pipe_r": "0.0", + "dhw_distribution_recirc_branch_piping_length": "50", + "dhw_distribution_recirc_control_type": "no control", + "dhw_distribution_recirc_piping_length": "50", + "dhw_distribution_recirc_pump_power": "50", + "dhw_distribution_standard_piping_length": "50", + "dhw_distribution_system_type": "Standard", + "dishwasher_efficiency": "307", + "dishwasher_efficiency_type": "RatedAnnualkWh", + "dishwasher_label_annual_gas_cost": "22.32", + "dishwasher_label_electric_rate": "0.12", + "dishwasher_label_gas_rate": "1.09", + "dishwasher_label_usage": "4.0", + "dishwasher_location": "living space", + "dishwasher_place_setting_capacity": "12", + "dishwasher_usage_multiplier": 1.0, + "door_area": 20.0, + "door_rvalue": 4.4, + "ducts_number_of_return_registers": "1", + "ducts_return_insulation_r": 0.0, + "ducts_return_leakage_units": "CFM25", + "ducts_return_leakage_value": 0.0, + "ducts_return_location": "living space", + "ducts_return_surface_area": "50.0", + "ducts_supply_insulation_r": 0.0, + "ducts_supply_leakage_units": "CFM25", + "ducts_supply_leakage_value": 0.0, + "ducts_supply_location": "living space", + "ducts_supply_surface_area": "150.0", + "dwhr_efficiency": 0.55, + "dwhr_equal_flow": true, + "dwhr_facilities_connected": "none", + "extra_refrigerator_location": "none", + "extra_refrigerator_rated_annual_kwh": "auto", + "extra_refrigerator_usage_multiplier": 1.0, + "floor_assembly_r": 0, + "foundation_wall_insulation_distance_to_bottom": "auto", + "foundation_wall_insulation_distance_to_top": 0.0, + "foundation_wall_insulation_r": 8.9, + "foundation_wall_thickness": "8.0", + "freezer_location": "none", + "freezer_rated_annual_kwh": "auto", + "freezer_usage_multiplier": 1.0, + "fuel_loads_fireplace_annual_therm": "auto", + "fuel_loads_fireplace_frac_latent": "auto", + "fuel_loads_fireplace_frac_sensible": "auto", + "fuel_loads_fireplace_fuel_type": "natural gas", + "fuel_loads_fireplace_present": false, + "fuel_loads_fireplace_usage_multiplier": 0.0, + "fuel_loads_grill_annual_therm": "auto", + "fuel_loads_grill_fuel_type": "natural gas", + "fuel_loads_grill_present": false, + "fuel_loads_grill_usage_multiplier": 0.0, + "fuel_loads_lighting_annual_therm": "auto", + "fuel_loads_lighting_fuel_type": "natural gas", + "fuel_loads_lighting_present": false, + "fuel_loads_lighting_usage_multiplier": 0.0, + "geometry_aspect_ratio": 1.5, + "geometry_attic_type": "UnventedAttic", + "geometry_balcony_depth": 0.0, + "geometry_building_num_bedrooms": 150, + "geometry_building_num_units": 50, + "geometry_cfa": 900.0, + "geometry_corridor_position": "Double-Loaded Interior", + "geometry_corridor_width": 10.0, + "geometry_eaves_depth": 0, + "geometry_foundation_height": 0.0, + "geometry_foundation_height_above_grade": 0.0, + "geometry_foundation_type": "SlabOnGrade", + "geometry_garage_depth": 20.0, + "geometry_garage_position": "Right", + "geometry_garage_protrusion": 0.0, + "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", + "geometry_horizontal_location": "Left", + "geometry_inset_depth": 0.0, + "geometry_inset_position": "Right", + "geometry_inset_width": 0.0, + "geometry_level": "Middle", + "geometry_num_bathrooms": "2", + "geometry_num_bedrooms": 3, + "geometry_num_floors_above_grade": 5, + "geometry_num_occupants": "3", + "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, + "geometry_roof_pitch": "6:12", + "geometry_roof_type": "gable", + "geometry_unit_type": "apartment unit", + "geometry_wall_height": 8.0, + "heat_pump_backup_fuel": "none", + "heat_pump_backup_heating_capacity": "34121.0", + "heat_pump_backup_heating_efficiency": 1, + "heat_pump_cooling_capacity": "48000.0", + "heat_pump_cooling_compressor_type": "single stage", + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", + "heat_pump_cooling_sensible_heat_fraction": 0.73, + "heat_pump_fraction_cool_load_served": 1, + "heat_pump_fraction_heat_load_served": 1, + "heat_pump_heating_capacity": "64000.0", + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", + "heat_pump_type": "none", + "heating_system_fraction_heat_load_served": 1, + "heating_system_fraction_heat_load_served_2": 0.25, + "heating_system_fuel": "natural gas", + "heating_system_fuel_2": "electricity", + "heating_system_heating_capacity": "64000.0", + "heating_system_heating_capacity_2": "auto", + "heating_system_heating_efficiency": 0.92, + "heating_system_heating_efficiency_2": 1.0, + "heating_system_type": "Furnace", + "heating_system_type_2": "none", + "holiday_lighting_daily_kwh": "auto", + "holiday_lighting_period_begin_day_of_month": "auto", + "holiday_lighting_period_begin_month": "auto", + "holiday_lighting_period_end_day_of_month": "auto", + "holiday_lighting_period_end_month": "auto", + "holiday_lighting_present": false, + "hot_tub_heater_annual_kwh": "auto", + "hot_tub_heater_annual_therm": "auto", + "hot_tub_heater_type": "electric resistance", + "hot_tub_heater_usage_multiplier": 1.0, + "hot_tub_present": false, + "hot_tub_pump_annual_kwh": "auto", + "hot_tub_pump_usage_multiplier": 1.0, + "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/extra-bldgtype-multifamily-slab-double-loaded-interior.xml", + "kitchen_fans_quantity": "0", + "lighting_fraction_cfl_exterior": 0.4, + "lighting_fraction_cfl_garage": 0.4, + "lighting_fraction_cfl_interior": 0.4, + "lighting_fraction_led_exterior": 0.25, + "lighting_fraction_led_garage": 0.25, + "lighting_fraction_led_interior": 0.25, + "lighting_fraction_lfl_exterior": 0.1, + "lighting_fraction_lfl_garage": 0.1, + "lighting_fraction_lfl_interior": 0.1, + "lighting_usage_multiplier_exterior": 1.0, + "lighting_usage_multiplier_garage": 1.0, + "lighting_usage_multiplier_interior": 1.0, + "mech_vent_fan_power": 30, + "mech_vent_fan_power_2": 30, + "mech_vent_fan_type": "none", + "mech_vent_fan_type_2": "none", + "mech_vent_flow_rate": 110, + "mech_vent_flow_rate_2": 110, + "mech_vent_hours_in_operation": 24, + "mech_vent_hours_in_operation_2": 24, + "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", + "mech_vent_sensible_recovery_efficiency": 0.72, + "mech_vent_sensible_recovery_efficiency_2": 0.72, + "mech_vent_total_recovery_efficiency": 0.48, + "mech_vent_total_recovery_efficiency_2": 0.48, + "neighbor_back_distance": 0, + "neighbor_back_height": "auto", + "neighbor_front_distance": 0, + "neighbor_front_height": "auto", + "neighbor_left_distance": 0, + "neighbor_left_height": "auto", + "neighbor_right_distance": 0, + "neighbor_right_height": "auto", + "overhangs_back_depth": 0, + "overhangs_back_distance_to_top_of_window": 0, + "overhangs_front_depth": 0, + "overhangs_front_distance_to_top_of_window": 0, + "overhangs_left_depth": 0, + "overhangs_left_distance_to_top_of_window": 0, + "overhangs_right_depth": 0, + "overhangs_right_distance_to_top_of_window": 0, + "plug_loads_other_annual_kwh": "819.0", + "plug_loads_other_frac_latent": "0.045", + "plug_loads_other_frac_sensible": "0.855", + "plug_loads_other_usage_multiplier": 1.0, + "plug_loads_television_annual_kwh": "620.0", + "plug_loads_television_usage_multiplier": 1.0, + "plug_loads_vehicle_annual_kwh": "auto", + "plug_loads_vehicle_present": false, + "plug_loads_vehicle_usage_multiplier": 0.0, + "plug_loads_well_pump_annual_kwh": "auto", + "plug_loads_well_pump_present": false, + "plug_loads_well_pump_usage_multiplier": 0.0, + "pool_heater_annual_kwh": "auto", + "pool_heater_annual_therm": "auto", + "pool_heater_type": "electric resistance", + "pool_heater_usage_multiplier": 1.0, + "pool_present": false, + "pool_pump_annual_kwh": "auto", + "pool_pump_usage_multiplier": 1.0, + "pv_system_array_azimuth_1": 180, + "pv_system_array_azimuth_2": 180, + "pv_system_array_tilt_1": "20", + "pv_system_array_tilt_2": "20", + "pv_system_inverter_efficiency_1": 0.96, + "pv_system_inverter_efficiency_2": 0.96, + "pv_system_location_1": "auto", + "pv_system_location_2": "auto", + "pv_system_max_power_output_1": 4000, + "pv_system_max_power_output_2": 4000, + "pv_system_module_type_1": "none", + "pv_system_module_type_2": "none", + "pv_system_num_units_served_1": 1, + "pv_system_num_units_served_2": 1, + "pv_system_system_losses_fraction_1": 0.14, + "pv_system_system_losses_fraction_2": 0.14, + "pv_system_tracking_1": "auto", + "pv_system_tracking_2": "auto", + "refrigerator_location": "living space", + "refrigerator_rated_annual_kwh": "650.0", + "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, + "roof_assembly_r": 2.3, + "roof_color": "medium", + "roof_material_type": "asphalt or fiberglass shingles", + "roof_radiant_barrier": false, + "roof_radiant_barrier_grade": "1", + "schedules_type": "default", + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", + "simulation_control_timestep": "60", + "site_type": "suburban", + "skylight_area_back": 0, + "skylight_area_front": 0, + "skylight_area_left": 0, + "skylight_area_right": 0, + "skylight_shgc": 0.45, + "skylight_ufactor": 0.33, + "slab_carpet_fraction": "0.0", + "slab_carpet_r": "0.0", + "slab_perimeter_depth": 0, + "slab_perimeter_insulation_r": 0, + "slab_thickness": "4.0", + "slab_under_insulation_r": 0, + "slab_under_width": 0, + "solar_thermal_collector_area": 40.0, + "solar_thermal_collector_azimuth": 180, + "solar_thermal_collector_loop_type": "liquid direct", + "solar_thermal_collector_rated_optical_efficiency": 0.5, + "solar_thermal_collector_rated_thermal_losses": 0.2799, + "solar_thermal_collector_tilt": "20", + "solar_thermal_collector_type": "evacuated tube", + "solar_thermal_solar_fraction": 0, + "solar_thermal_storage_volume": "auto", + "solar_thermal_system_type": "none", + "wall_assembly_r": 23, + "wall_color": "medium", + "wall_siding_type": "wood siding", + "wall_type": "WoodStud", + "water_fixtures_shower_low_flow": true, + "water_fixtures_sink_low_flow": false, + "water_fixtures_usage_multiplier": 1.0, + "water_heater_efficiency": 0.95, + "water_heater_efficiency_type": "EnergyFactor", + "water_heater_fuel_type": "electricity", + "water_heater_jacket_rvalue": 0, + "water_heater_location": "living space", + "water_heater_num_units_served": 1, + "water_heater_recovery_efficiency": "0.76", + "water_heater_setpoint_temperature": "125", + "water_heater_standby_loss": 0, + "water_heater_tank_volume": "40", + "water_heater_type": "storage water heater", + "weather_station_epw_filepath": "USA_CO_Denver.Intl.AP.725650_TMY3.epw", + "whole_house_fan_flow_rate": 4500, + "whole_house_fan_power": 300, + "whole_house_fan_present": false, + "window_area_back": 0, + "window_area_front": 0, + "window_area_left": 0, + "window_area_right": 0, + "window_aspect_ratio": 1.333, + "window_back_wwr": 0.18, + "window_fraction_operable": 0.67, + "window_front_wwr": 0.18, + "window_interior_shading_summer": 0.7, + "window_interior_shading_winter": 0.85, + "window_left_wwr": 0.18, + "window_right_wwr": 0.18, + "window_shgc": 0.45, + "window_ufactor": 0.33 + }, + "measure_dir_name": "BuildResidentialHPXML" + } + ] +} \ No newline at end of file diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-slab-left-bottom-double-loaded-interior.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-slab-left-bottom-double-loaded-interior.osw new file mode 100644 index 00000000..6ae385ac --- /dev/null +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-slab-left-bottom-double-loaded-interior.osw @@ -0,0 +1,341 @@ +{ + "measure_paths": [ + "../.." + ], + "steps": [ + { + "arguments": { + "air_leakage_house_pressure": 50, + "air_leakage_shielding_of_home": "auto", + "air_leakage_units": "ACH", + "air_leakage_value": 3, + "bathroom_fans_quantity": "0", + "ceiling_assembly_r": 39.3, + "ceiling_fan_cooling_setpoint_temp_offset": 0, + "ceiling_fan_efficiency": "auto", + "ceiling_fan_present": false, + "ceiling_fan_quantity": "auto", + "clothes_dryer_efficiency": "3.73", + "clothes_dryer_efficiency_type": "CombinedEnergyFactor", + "clothes_dryer_fuel_type": "electricity", + "clothes_dryer_location": "living space", + "clothes_dryer_usage_multiplier": 1.0, + "clothes_dryer_vented_flow_rate": "150.0", + "clothes_washer_capacity": "3.2", + "clothes_washer_efficiency": "1.21", + "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", + "clothes_washer_label_annual_gas_cost": "27.0", + "clothes_washer_label_electric_rate": "0.12", + "clothes_washer_label_gas_rate": "1.09", + "clothes_washer_label_usage": "6.0", + "clothes_washer_location": "living space", + "clothes_washer_rated_annual_kwh": "380.0", + "clothes_washer_usage_multiplier": 1.0, + "cooking_range_oven_fuel_type": "electricity", + "cooking_range_oven_is_convection": false, + "cooking_range_oven_is_induction": false, + "cooking_range_oven_location": "living space", + "cooking_range_oven_usage_multiplier": 1.0, + "cooling_system_cooling_capacity": "48000.0", + "cooling_system_cooling_compressor_type": "single stage", + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", + "cooling_system_cooling_sensible_heat_fraction": 0.73, + "cooling_system_fraction_cool_load_served": 1, + "cooling_system_is_ducted": false, + "cooling_system_type": "central air conditioner", + "dehumidifier_capacity": 40, + "dehumidifier_efficiency": 1.8, + "dehumidifier_efficiency_type": "EnergyFactor", + "dehumidifier_fraction_dehumidification_load_served": 1, + "dehumidifier_rh_setpoint": 0.5, + "dehumidifier_type": "none", + "dhw_distribution_pipe_r": "0.0", + "dhw_distribution_recirc_branch_piping_length": "50", + "dhw_distribution_recirc_control_type": "no control", + "dhw_distribution_recirc_piping_length": "50", + "dhw_distribution_recirc_pump_power": "50", + "dhw_distribution_standard_piping_length": "50", + "dhw_distribution_system_type": "Standard", + "dishwasher_efficiency": "307", + "dishwasher_efficiency_type": "RatedAnnualkWh", + "dishwasher_label_annual_gas_cost": "22.32", + "dishwasher_label_electric_rate": "0.12", + "dishwasher_label_gas_rate": "1.09", + "dishwasher_label_usage": "4.0", + "dishwasher_location": "living space", + "dishwasher_place_setting_capacity": "12", + "dishwasher_usage_multiplier": 1.0, + "door_area": 20.0, + "door_rvalue": 4.4, + "ducts_number_of_return_registers": "1", + "ducts_return_insulation_r": 0.0, + "ducts_return_leakage_units": "CFM25", + "ducts_return_leakage_value": 0.0, + "ducts_return_location": "living space", + "ducts_return_surface_area": "50.0", + "ducts_supply_insulation_r": 0.0, + "ducts_supply_leakage_units": "CFM25", + "ducts_supply_leakage_value": 0.0, + "ducts_supply_location": "living space", + "ducts_supply_surface_area": "150.0", + "dwhr_efficiency": 0.55, + "dwhr_equal_flow": true, + "dwhr_facilities_connected": "none", + "extra_refrigerator_location": "none", + "extra_refrigerator_rated_annual_kwh": "auto", + "extra_refrigerator_usage_multiplier": 1.0, + "floor_assembly_r": 0, + "foundation_wall_insulation_distance_to_bottom": "auto", + "foundation_wall_insulation_distance_to_top": 0.0, + "foundation_wall_insulation_r": 8.9, + "foundation_wall_thickness": "8.0", + "freezer_location": "none", + "freezer_rated_annual_kwh": "auto", + "freezer_usage_multiplier": 1.0, + "fuel_loads_fireplace_annual_therm": "auto", + "fuel_loads_fireplace_frac_latent": "auto", + "fuel_loads_fireplace_frac_sensible": "auto", + "fuel_loads_fireplace_fuel_type": "natural gas", + "fuel_loads_fireplace_present": false, + "fuel_loads_fireplace_usage_multiplier": 0.0, + "fuel_loads_grill_annual_therm": "auto", + "fuel_loads_grill_fuel_type": "natural gas", + "fuel_loads_grill_present": false, + "fuel_loads_grill_usage_multiplier": 0.0, + "fuel_loads_lighting_annual_therm": "auto", + "fuel_loads_lighting_fuel_type": "natural gas", + "fuel_loads_lighting_present": false, + "fuel_loads_lighting_usage_multiplier": 0.0, + "geometry_aspect_ratio": 1.5, + "geometry_attic_type": "UnventedAttic", + "geometry_balcony_depth": 0.0, + "geometry_building_num_bedrooms": 150, + "geometry_building_num_units": 50, + "geometry_cfa": 900.0, + "geometry_corridor_position": "Double-Loaded Interior", + "geometry_corridor_width": 10.0, + "geometry_eaves_depth": 0, + "geometry_foundation_height": 0.0, + "geometry_foundation_height_above_grade": 0.0, + "geometry_foundation_type": "SlabOnGrade", + "geometry_garage_depth": 20.0, + "geometry_garage_position": "Right", + "geometry_garage_protrusion": 0.0, + "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", + "geometry_horizontal_location": "Left", + "geometry_inset_depth": 0.0, + "geometry_inset_position": "Right", + "geometry_inset_width": 0.0, + "geometry_level": "Bottom", + "geometry_num_bathrooms": "2", + "geometry_num_bedrooms": 3, + "geometry_num_floors_above_grade": 5, + "geometry_num_occupants": "3", + "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, + "geometry_roof_pitch": "6:12", + "geometry_roof_type": "gable", + "geometry_unit_type": "apartment unit", + "geometry_wall_height": 8.0, + "heat_pump_backup_fuel": "none", + "heat_pump_backup_heating_capacity": "34121.0", + "heat_pump_backup_heating_efficiency": 1, + "heat_pump_cooling_capacity": "48000.0", + "heat_pump_cooling_compressor_type": "single stage", + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", + "heat_pump_cooling_sensible_heat_fraction": 0.73, + "heat_pump_fraction_cool_load_served": 1, + "heat_pump_fraction_heat_load_served": 1, + "heat_pump_heating_capacity": "64000.0", + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", + "heat_pump_type": "none", + "heating_system_fraction_heat_load_served": 1, + "heating_system_fraction_heat_load_served_2": 0.25, + "heating_system_fuel": "natural gas", + "heating_system_fuel_2": "electricity", + "heating_system_heating_capacity": "64000.0", + "heating_system_heating_capacity_2": "auto", + "heating_system_heating_efficiency": 0.92, + "heating_system_heating_efficiency_2": 1.0, + "heating_system_type": "Furnace", + "heating_system_type_2": "none", + "holiday_lighting_daily_kwh": "auto", + "holiday_lighting_period_begin_day_of_month": "auto", + "holiday_lighting_period_begin_month": "auto", + "holiday_lighting_period_end_day_of_month": "auto", + "holiday_lighting_period_end_month": "auto", + "holiday_lighting_present": false, + "hot_tub_heater_annual_kwh": "auto", + "hot_tub_heater_annual_therm": "auto", + "hot_tub_heater_type": "electric resistance", + "hot_tub_heater_usage_multiplier": 1.0, + "hot_tub_present": false, + "hot_tub_pump_annual_kwh": "auto", + "hot_tub_pump_usage_multiplier": 1.0, + "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/extra-bldgtype-multifamily-slab-left-bottom-double-loaded-interior.xml", + "kitchen_fans_quantity": "0", + "lighting_fraction_cfl_exterior": 0.4, + "lighting_fraction_cfl_garage": 0.4, + "lighting_fraction_cfl_interior": 0.4, + "lighting_fraction_led_exterior": 0.25, + "lighting_fraction_led_garage": 0.25, + "lighting_fraction_led_interior": 0.25, + "lighting_fraction_lfl_exterior": 0.1, + "lighting_fraction_lfl_garage": 0.1, + "lighting_fraction_lfl_interior": 0.1, + "lighting_usage_multiplier_exterior": 1.0, + "lighting_usage_multiplier_garage": 1.0, + "lighting_usage_multiplier_interior": 1.0, + "mech_vent_fan_power": 30, + "mech_vent_fan_power_2": 30, + "mech_vent_fan_type": "none", + "mech_vent_fan_type_2": "none", + "mech_vent_flow_rate": 110, + "mech_vent_flow_rate_2": 110, + "mech_vent_hours_in_operation": 24, + "mech_vent_hours_in_operation_2": 24, + "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", + "mech_vent_sensible_recovery_efficiency": 0.72, + "mech_vent_sensible_recovery_efficiency_2": 0.72, + "mech_vent_total_recovery_efficiency": 0.48, + "mech_vent_total_recovery_efficiency_2": 0.48, + "neighbor_back_distance": 0, + "neighbor_back_height": "auto", + "neighbor_front_distance": 0, + "neighbor_front_height": "auto", + "neighbor_left_distance": 0, + "neighbor_left_height": "auto", + "neighbor_right_distance": 0, + "neighbor_right_height": "auto", + "overhangs_back_depth": 0, + "overhangs_back_distance_to_top_of_window": 0, + "overhangs_front_depth": 0, + "overhangs_front_distance_to_top_of_window": 0, + "overhangs_left_depth": 0, + "overhangs_left_distance_to_top_of_window": 0, + "overhangs_right_depth": 0, + "overhangs_right_distance_to_top_of_window": 0, + "plug_loads_other_annual_kwh": "819.0", + "plug_loads_other_frac_latent": "0.045", + "plug_loads_other_frac_sensible": "0.855", + "plug_loads_other_usage_multiplier": 1.0, + "plug_loads_television_annual_kwh": "620.0", + "plug_loads_television_usage_multiplier": 1.0, + "plug_loads_vehicle_annual_kwh": "auto", + "plug_loads_vehicle_present": false, + "plug_loads_vehicle_usage_multiplier": 0.0, + "plug_loads_well_pump_annual_kwh": "auto", + "plug_loads_well_pump_present": false, + "plug_loads_well_pump_usage_multiplier": 0.0, + "pool_heater_annual_kwh": "auto", + "pool_heater_annual_therm": "auto", + "pool_heater_type": "electric resistance", + "pool_heater_usage_multiplier": 1.0, + "pool_present": false, + "pool_pump_annual_kwh": "auto", + "pool_pump_usage_multiplier": 1.0, + "pv_system_array_azimuth_1": 180, + "pv_system_array_azimuth_2": 180, + "pv_system_array_tilt_1": "20", + "pv_system_array_tilt_2": "20", + "pv_system_inverter_efficiency_1": 0.96, + "pv_system_inverter_efficiency_2": 0.96, + "pv_system_location_1": "auto", + "pv_system_location_2": "auto", + "pv_system_max_power_output_1": 4000, + "pv_system_max_power_output_2": 4000, + "pv_system_module_type_1": "none", + "pv_system_module_type_2": "none", + "pv_system_num_units_served_1": 1, + "pv_system_num_units_served_2": 1, + "pv_system_system_losses_fraction_1": 0.14, + "pv_system_system_losses_fraction_2": 0.14, + "pv_system_tracking_1": "auto", + "pv_system_tracking_2": "auto", + "refrigerator_location": "living space", + "refrigerator_rated_annual_kwh": "650.0", + "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, + "roof_assembly_r": 2.3, + "roof_color": "medium", + "roof_material_type": "asphalt or fiberglass shingles", + "roof_radiant_barrier": false, + "roof_radiant_barrier_grade": "1", + "schedules_type": "default", + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", + "simulation_control_timestep": "60", + "site_type": "suburban", + "skylight_area_back": 0, + "skylight_area_front": 0, + "skylight_area_left": 0, + "skylight_area_right": 0, + "skylight_shgc": 0.45, + "skylight_ufactor": 0.33, + "slab_carpet_fraction": "0.0", + "slab_carpet_r": "0.0", + "slab_perimeter_depth": 0, + "slab_perimeter_insulation_r": 0, + "slab_thickness": "4.0", + "slab_under_insulation_r": 0, + "slab_under_width": 0, + "solar_thermal_collector_area": 40.0, + "solar_thermal_collector_azimuth": 180, + "solar_thermal_collector_loop_type": "liquid direct", + "solar_thermal_collector_rated_optical_efficiency": 0.5, + "solar_thermal_collector_rated_thermal_losses": 0.2799, + "solar_thermal_collector_tilt": "20", + "solar_thermal_collector_type": "evacuated tube", + "solar_thermal_solar_fraction": 0, + "solar_thermal_storage_volume": "auto", + "solar_thermal_system_type": "none", + "wall_assembly_r": 23, + "wall_color": "medium", + "wall_siding_type": "wood siding", + "wall_type": "WoodStud", + "water_fixtures_shower_low_flow": true, + "water_fixtures_sink_low_flow": false, + "water_fixtures_usage_multiplier": 1.0, + "water_heater_efficiency": 0.95, + "water_heater_efficiency_type": "EnergyFactor", + "water_heater_fuel_type": "electricity", + "water_heater_jacket_rvalue": 0, + "water_heater_location": "living space", + "water_heater_num_units_served": 1, + "water_heater_recovery_efficiency": "0.76", + "water_heater_setpoint_temperature": "125", + "water_heater_standby_loss": 0, + "water_heater_tank_volume": "40", + "water_heater_type": "storage water heater", + "weather_station_epw_filepath": "USA_CO_Denver.Intl.AP.725650_TMY3.epw", + "whole_house_fan_flow_rate": 4500, + "whole_house_fan_power": 300, + "whole_house_fan_present": false, + "window_area_back": 0, + "window_area_front": 0, + "window_area_left": 0, + "window_area_right": 0, + "window_aspect_ratio": 1.333, + "window_back_wwr": 0.18, + "window_fraction_operable": 0.67, + "window_front_wwr": 0.18, + "window_interior_shading_summer": 0.7, + "window_interior_shading_winter": 0.85, + "window_left_wwr": 0.18, + "window_right_wwr": 0.18, + "window_shgc": 0.45, + "window_ufactor": 0.33 + }, + "measure_dir_name": "BuildResidentialHPXML" + } + ] +} \ No newline at end of file diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-slab-left-bottom.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-slab-left-bottom.osw new file mode 100644 index 00000000..cac8bf93 --- /dev/null +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-slab-left-bottom.osw @@ -0,0 +1,341 @@ +{ + "measure_paths": [ + "../.." + ], + "steps": [ + { + "arguments": { + "air_leakage_house_pressure": 50, + "air_leakage_shielding_of_home": "auto", + "air_leakage_units": "ACH", + "air_leakage_value": 3, + "bathroom_fans_quantity": "0", + "ceiling_assembly_r": 39.3, + "ceiling_fan_cooling_setpoint_temp_offset": 0, + "ceiling_fan_efficiency": "auto", + "ceiling_fan_present": false, + "ceiling_fan_quantity": "auto", + "clothes_dryer_efficiency": "3.73", + "clothes_dryer_efficiency_type": "CombinedEnergyFactor", + "clothes_dryer_fuel_type": "electricity", + "clothes_dryer_location": "living space", + "clothes_dryer_usage_multiplier": 1.0, + "clothes_dryer_vented_flow_rate": "150.0", + "clothes_washer_capacity": "3.2", + "clothes_washer_efficiency": "1.21", + "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", + "clothes_washer_label_annual_gas_cost": "27.0", + "clothes_washer_label_electric_rate": "0.12", + "clothes_washer_label_gas_rate": "1.09", + "clothes_washer_label_usage": "6.0", + "clothes_washer_location": "living space", + "clothes_washer_rated_annual_kwh": "380.0", + "clothes_washer_usage_multiplier": 1.0, + "cooking_range_oven_fuel_type": "electricity", + "cooking_range_oven_is_convection": false, + "cooking_range_oven_is_induction": false, + "cooking_range_oven_location": "living space", + "cooking_range_oven_usage_multiplier": 1.0, + "cooling_system_cooling_capacity": "48000.0", + "cooling_system_cooling_compressor_type": "single stage", + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", + "cooling_system_cooling_sensible_heat_fraction": 0.73, + "cooling_system_fraction_cool_load_served": 1, + "cooling_system_is_ducted": false, + "cooling_system_type": "central air conditioner", + "dehumidifier_capacity": 40, + "dehumidifier_efficiency": 1.8, + "dehumidifier_efficiency_type": "EnergyFactor", + "dehumidifier_fraction_dehumidification_load_served": 1, + "dehumidifier_rh_setpoint": 0.5, + "dehumidifier_type": "none", + "dhw_distribution_pipe_r": "0.0", + "dhw_distribution_recirc_branch_piping_length": "50", + "dhw_distribution_recirc_control_type": "no control", + "dhw_distribution_recirc_piping_length": "50", + "dhw_distribution_recirc_pump_power": "50", + "dhw_distribution_standard_piping_length": "50", + "dhw_distribution_system_type": "Standard", + "dishwasher_efficiency": "307", + "dishwasher_efficiency_type": "RatedAnnualkWh", + "dishwasher_label_annual_gas_cost": "22.32", + "dishwasher_label_electric_rate": "0.12", + "dishwasher_label_gas_rate": "1.09", + "dishwasher_label_usage": "4.0", + "dishwasher_location": "living space", + "dishwasher_place_setting_capacity": "12", + "dishwasher_usage_multiplier": 1.0, + "door_area": 20.0, + "door_rvalue": 4.4, + "ducts_number_of_return_registers": "1", + "ducts_return_insulation_r": 0.0, + "ducts_return_leakage_units": "CFM25", + "ducts_return_leakage_value": 0.0, + "ducts_return_location": "living space", + "ducts_return_surface_area": "50.0", + "ducts_supply_insulation_r": 0.0, + "ducts_supply_leakage_units": "CFM25", + "ducts_supply_leakage_value": 0.0, + "ducts_supply_location": "living space", + "ducts_supply_surface_area": "150.0", + "dwhr_efficiency": 0.55, + "dwhr_equal_flow": true, + "dwhr_facilities_connected": "none", + "extra_refrigerator_location": "none", + "extra_refrigerator_rated_annual_kwh": "auto", + "extra_refrigerator_usage_multiplier": 1.0, + "floor_assembly_r": 0, + "foundation_wall_insulation_distance_to_bottom": "auto", + "foundation_wall_insulation_distance_to_top": 0.0, + "foundation_wall_insulation_r": 8.9, + "foundation_wall_thickness": "8.0", + "freezer_location": "none", + "freezer_rated_annual_kwh": "auto", + "freezer_usage_multiplier": 1.0, + "fuel_loads_fireplace_annual_therm": "auto", + "fuel_loads_fireplace_frac_latent": "auto", + "fuel_loads_fireplace_frac_sensible": "auto", + "fuel_loads_fireplace_fuel_type": "natural gas", + "fuel_loads_fireplace_present": false, + "fuel_loads_fireplace_usage_multiplier": 0.0, + "fuel_loads_grill_annual_therm": "auto", + "fuel_loads_grill_fuel_type": "natural gas", + "fuel_loads_grill_present": false, + "fuel_loads_grill_usage_multiplier": 0.0, + "fuel_loads_lighting_annual_therm": "auto", + "fuel_loads_lighting_fuel_type": "natural gas", + "fuel_loads_lighting_present": false, + "fuel_loads_lighting_usage_multiplier": 0.0, + "geometry_aspect_ratio": 1.5, + "geometry_attic_type": "UnventedAttic", + "geometry_balcony_depth": 0.0, + "geometry_building_num_bedrooms": 150, + "geometry_building_num_units": 50, + "geometry_cfa": 900.0, + "geometry_corridor_position": "None", + "geometry_corridor_width": 10.0, + "geometry_eaves_depth": 0, + "geometry_foundation_height": 0.0, + "geometry_foundation_height_above_grade": 0.0, + "geometry_foundation_type": "SlabOnGrade", + "geometry_garage_depth": 20.0, + "geometry_garage_position": "Right", + "geometry_garage_protrusion": 0.0, + "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", + "geometry_horizontal_location": "Left", + "geometry_inset_depth": 0.0, + "geometry_inset_position": "Right", + "geometry_inset_width": 0.0, + "geometry_level": "Bottom", + "geometry_num_bathrooms": "2", + "geometry_num_bedrooms": 3, + "geometry_num_floors_above_grade": 5, + "geometry_num_occupants": "3", + "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, + "geometry_roof_pitch": "6:12", + "geometry_roof_type": "gable", + "geometry_unit_type": "apartment unit", + "geometry_wall_height": 8.0, + "heat_pump_backup_fuel": "none", + "heat_pump_backup_heating_capacity": "34121.0", + "heat_pump_backup_heating_efficiency": 1, + "heat_pump_cooling_capacity": "48000.0", + "heat_pump_cooling_compressor_type": "single stage", + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", + "heat_pump_cooling_sensible_heat_fraction": 0.73, + "heat_pump_fraction_cool_load_served": 1, + "heat_pump_fraction_heat_load_served": 1, + "heat_pump_heating_capacity": "64000.0", + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", + "heat_pump_type": "none", + "heating_system_fraction_heat_load_served": 1, + "heating_system_fraction_heat_load_served_2": 0.25, + "heating_system_fuel": "natural gas", + "heating_system_fuel_2": "electricity", + "heating_system_heating_capacity": "64000.0", + "heating_system_heating_capacity_2": "auto", + "heating_system_heating_efficiency": 0.92, + "heating_system_heating_efficiency_2": 1.0, + "heating_system_type": "Furnace", + "heating_system_type_2": "none", + "holiday_lighting_daily_kwh": "auto", + "holiday_lighting_period_begin_day_of_month": "auto", + "holiday_lighting_period_begin_month": "auto", + "holiday_lighting_period_end_day_of_month": "auto", + "holiday_lighting_period_end_month": "auto", + "holiday_lighting_present": false, + "hot_tub_heater_annual_kwh": "auto", + "hot_tub_heater_annual_therm": "auto", + "hot_tub_heater_type": "electric resistance", + "hot_tub_heater_usage_multiplier": 1.0, + "hot_tub_present": false, + "hot_tub_pump_annual_kwh": "auto", + "hot_tub_pump_usage_multiplier": 1.0, + "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/extra-bldgtype-multifamily-slab-left-bottom.xml", + "kitchen_fans_quantity": "0", + "lighting_fraction_cfl_exterior": 0.4, + "lighting_fraction_cfl_garage": 0.4, + "lighting_fraction_cfl_interior": 0.4, + "lighting_fraction_led_exterior": 0.25, + "lighting_fraction_led_garage": 0.25, + "lighting_fraction_led_interior": 0.25, + "lighting_fraction_lfl_exterior": 0.1, + "lighting_fraction_lfl_garage": 0.1, + "lighting_fraction_lfl_interior": 0.1, + "lighting_usage_multiplier_exterior": 1.0, + "lighting_usage_multiplier_garage": 1.0, + "lighting_usage_multiplier_interior": 1.0, + "mech_vent_fan_power": 30, + "mech_vent_fan_power_2": 30, + "mech_vent_fan_type": "none", + "mech_vent_fan_type_2": "none", + "mech_vent_flow_rate": 110, + "mech_vent_flow_rate_2": 110, + "mech_vent_hours_in_operation": 24, + "mech_vent_hours_in_operation_2": 24, + "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", + "mech_vent_sensible_recovery_efficiency": 0.72, + "mech_vent_sensible_recovery_efficiency_2": 0.72, + "mech_vent_total_recovery_efficiency": 0.48, + "mech_vent_total_recovery_efficiency_2": 0.48, + "neighbor_back_distance": 0, + "neighbor_back_height": "auto", + "neighbor_front_distance": 0, + "neighbor_front_height": "auto", + "neighbor_left_distance": 0, + "neighbor_left_height": "auto", + "neighbor_right_distance": 0, + "neighbor_right_height": "auto", + "overhangs_back_depth": 0, + "overhangs_back_distance_to_top_of_window": 0, + "overhangs_front_depth": 0, + "overhangs_front_distance_to_top_of_window": 0, + "overhangs_left_depth": 0, + "overhangs_left_distance_to_top_of_window": 0, + "overhangs_right_depth": 0, + "overhangs_right_distance_to_top_of_window": 0, + "plug_loads_other_annual_kwh": "819.0", + "plug_loads_other_frac_latent": "0.045", + "plug_loads_other_frac_sensible": "0.855", + "plug_loads_other_usage_multiplier": 1.0, + "plug_loads_television_annual_kwh": "620.0", + "plug_loads_television_usage_multiplier": 1.0, + "plug_loads_vehicle_annual_kwh": "auto", + "plug_loads_vehicle_present": false, + "plug_loads_vehicle_usage_multiplier": 0.0, + "plug_loads_well_pump_annual_kwh": "auto", + "plug_loads_well_pump_present": false, + "plug_loads_well_pump_usage_multiplier": 0.0, + "pool_heater_annual_kwh": "auto", + "pool_heater_annual_therm": "auto", + "pool_heater_type": "electric resistance", + "pool_heater_usage_multiplier": 1.0, + "pool_present": false, + "pool_pump_annual_kwh": "auto", + "pool_pump_usage_multiplier": 1.0, + "pv_system_array_azimuth_1": 180, + "pv_system_array_azimuth_2": 180, + "pv_system_array_tilt_1": "20", + "pv_system_array_tilt_2": "20", + "pv_system_inverter_efficiency_1": 0.96, + "pv_system_inverter_efficiency_2": 0.96, + "pv_system_location_1": "auto", + "pv_system_location_2": "auto", + "pv_system_max_power_output_1": 4000, + "pv_system_max_power_output_2": 4000, + "pv_system_module_type_1": "none", + "pv_system_module_type_2": "none", + "pv_system_num_units_served_1": 1, + "pv_system_num_units_served_2": 1, + "pv_system_system_losses_fraction_1": 0.14, + "pv_system_system_losses_fraction_2": 0.14, + "pv_system_tracking_1": "auto", + "pv_system_tracking_2": "auto", + "refrigerator_location": "living space", + "refrigerator_rated_annual_kwh": "650.0", + "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, + "roof_assembly_r": 2.3, + "roof_color": "medium", + "roof_material_type": "asphalt or fiberglass shingles", + "roof_radiant_barrier": false, + "roof_radiant_barrier_grade": "1", + "schedules_type": "default", + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", + "simulation_control_timestep": "60", + "site_type": "suburban", + "skylight_area_back": 0, + "skylight_area_front": 0, + "skylight_area_left": 0, + "skylight_area_right": 0, + "skylight_shgc": 0.45, + "skylight_ufactor": 0.33, + "slab_carpet_fraction": "0.0", + "slab_carpet_r": "0.0", + "slab_perimeter_depth": 0, + "slab_perimeter_insulation_r": 0, + "slab_thickness": "4.0", + "slab_under_insulation_r": 0, + "slab_under_width": 0, + "solar_thermal_collector_area": 40.0, + "solar_thermal_collector_azimuth": 180, + "solar_thermal_collector_loop_type": "liquid direct", + "solar_thermal_collector_rated_optical_efficiency": 0.5, + "solar_thermal_collector_rated_thermal_losses": 0.2799, + "solar_thermal_collector_tilt": "20", + "solar_thermal_collector_type": "evacuated tube", + "solar_thermal_solar_fraction": 0, + "solar_thermal_storage_volume": "auto", + "solar_thermal_system_type": "none", + "wall_assembly_r": 23, + "wall_color": "medium", + "wall_siding_type": "wood siding", + "wall_type": "WoodStud", + "water_fixtures_shower_low_flow": true, + "water_fixtures_sink_low_flow": false, + "water_fixtures_usage_multiplier": 1.0, + "water_heater_efficiency": 0.95, + "water_heater_efficiency_type": "EnergyFactor", + "water_heater_fuel_type": "electricity", + "water_heater_jacket_rvalue": 0, + "water_heater_location": "living space", + "water_heater_num_units_served": 1, + "water_heater_recovery_efficiency": "0.76", + "water_heater_setpoint_temperature": "125", + "water_heater_standby_loss": 0, + "water_heater_tank_volume": "40", + "water_heater_type": "storage water heater", + "weather_station_epw_filepath": "USA_CO_Denver.Intl.AP.725650_TMY3.epw", + "whole_house_fan_flow_rate": 4500, + "whole_house_fan_power": 300, + "whole_house_fan_present": false, + "window_area_back": 0, + "window_area_front": 0, + "window_area_left": 0, + "window_area_right": 0, + "window_aspect_ratio": 1.333, + "window_back_wwr": 0.18, + "window_fraction_operable": 0.67, + "window_front_wwr": 0.18, + "window_interior_shading_summer": 0.7, + "window_interior_shading_winter": 0.85, + "window_left_wwr": 0.18, + "window_right_wwr": 0.18, + "window_shgc": 0.45, + "window_ufactor": 0.33 + }, + "measure_dir_name": "BuildResidentialHPXML" + } + ] +} \ No newline at end of file diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-slab-left-middle-double-loaded-interior.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-slab-left-middle-double-loaded-interior.osw new file mode 100644 index 00000000..beda2181 --- /dev/null +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-slab-left-middle-double-loaded-interior.osw @@ -0,0 +1,341 @@ +{ + "measure_paths": [ + "../.." + ], + "steps": [ + { + "arguments": { + "air_leakage_house_pressure": 50, + "air_leakage_shielding_of_home": "auto", + "air_leakage_units": "ACH", + "air_leakage_value": 3, + "bathroom_fans_quantity": "0", + "ceiling_assembly_r": 39.3, + "ceiling_fan_cooling_setpoint_temp_offset": 0, + "ceiling_fan_efficiency": "auto", + "ceiling_fan_present": false, + "ceiling_fan_quantity": "auto", + "clothes_dryer_efficiency": "3.73", + "clothes_dryer_efficiency_type": "CombinedEnergyFactor", + "clothes_dryer_fuel_type": "electricity", + "clothes_dryer_location": "living space", + "clothes_dryer_usage_multiplier": 1.0, + "clothes_dryer_vented_flow_rate": "150.0", + "clothes_washer_capacity": "3.2", + "clothes_washer_efficiency": "1.21", + "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", + "clothes_washer_label_annual_gas_cost": "27.0", + "clothes_washer_label_electric_rate": "0.12", + "clothes_washer_label_gas_rate": "1.09", + "clothes_washer_label_usage": "6.0", + "clothes_washer_location": "living space", + "clothes_washer_rated_annual_kwh": "380.0", + "clothes_washer_usage_multiplier": 1.0, + "cooking_range_oven_fuel_type": "electricity", + "cooking_range_oven_is_convection": false, + "cooking_range_oven_is_induction": false, + "cooking_range_oven_location": "living space", + "cooking_range_oven_usage_multiplier": 1.0, + "cooling_system_cooling_capacity": "48000.0", + "cooling_system_cooling_compressor_type": "single stage", + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", + "cooling_system_cooling_sensible_heat_fraction": 0.73, + "cooling_system_fraction_cool_load_served": 1, + "cooling_system_is_ducted": false, + "cooling_system_type": "central air conditioner", + "dehumidifier_capacity": 40, + "dehumidifier_efficiency": 1.8, + "dehumidifier_efficiency_type": "EnergyFactor", + "dehumidifier_fraction_dehumidification_load_served": 1, + "dehumidifier_rh_setpoint": 0.5, + "dehumidifier_type": "none", + "dhw_distribution_pipe_r": "0.0", + "dhw_distribution_recirc_branch_piping_length": "50", + "dhw_distribution_recirc_control_type": "no control", + "dhw_distribution_recirc_piping_length": "50", + "dhw_distribution_recirc_pump_power": "50", + "dhw_distribution_standard_piping_length": "50", + "dhw_distribution_system_type": "Standard", + "dishwasher_efficiency": "307", + "dishwasher_efficiency_type": "RatedAnnualkWh", + "dishwasher_label_annual_gas_cost": "22.32", + "dishwasher_label_electric_rate": "0.12", + "dishwasher_label_gas_rate": "1.09", + "dishwasher_label_usage": "4.0", + "dishwasher_location": "living space", + "dishwasher_place_setting_capacity": "12", + "dishwasher_usage_multiplier": 1.0, + "door_area": 20.0, + "door_rvalue": 4.4, + "ducts_number_of_return_registers": "1", + "ducts_return_insulation_r": 0.0, + "ducts_return_leakage_units": "CFM25", + "ducts_return_leakage_value": 0.0, + "ducts_return_location": "living space", + "ducts_return_surface_area": "50.0", + "ducts_supply_insulation_r": 0.0, + "ducts_supply_leakage_units": "CFM25", + "ducts_supply_leakage_value": 0.0, + "ducts_supply_location": "living space", + "ducts_supply_surface_area": "150.0", + "dwhr_efficiency": 0.55, + "dwhr_equal_flow": true, + "dwhr_facilities_connected": "none", + "extra_refrigerator_location": "none", + "extra_refrigerator_rated_annual_kwh": "auto", + "extra_refrigerator_usage_multiplier": 1.0, + "floor_assembly_r": 0, + "foundation_wall_insulation_distance_to_bottom": "auto", + "foundation_wall_insulation_distance_to_top": 0.0, + "foundation_wall_insulation_r": 8.9, + "foundation_wall_thickness": "8.0", + "freezer_location": "none", + "freezer_rated_annual_kwh": "auto", + "freezer_usage_multiplier": 1.0, + "fuel_loads_fireplace_annual_therm": "auto", + "fuel_loads_fireplace_frac_latent": "auto", + "fuel_loads_fireplace_frac_sensible": "auto", + "fuel_loads_fireplace_fuel_type": "natural gas", + "fuel_loads_fireplace_present": false, + "fuel_loads_fireplace_usage_multiplier": 0.0, + "fuel_loads_grill_annual_therm": "auto", + "fuel_loads_grill_fuel_type": "natural gas", + "fuel_loads_grill_present": false, + "fuel_loads_grill_usage_multiplier": 0.0, + "fuel_loads_lighting_annual_therm": "auto", + "fuel_loads_lighting_fuel_type": "natural gas", + "fuel_loads_lighting_present": false, + "fuel_loads_lighting_usage_multiplier": 0.0, + "geometry_aspect_ratio": 1.5, + "geometry_attic_type": "UnventedAttic", + "geometry_balcony_depth": 0.0, + "geometry_building_num_bedrooms": 150, + "geometry_building_num_units": 50, + "geometry_cfa": 900.0, + "geometry_corridor_position": "Double-Loaded Interior", + "geometry_corridor_width": 10.0, + "geometry_eaves_depth": 0, + "geometry_foundation_height": 0.0, + "geometry_foundation_height_above_grade": 0.0, + "geometry_foundation_type": "SlabOnGrade", + "geometry_garage_depth": 20.0, + "geometry_garage_position": "Right", + "geometry_garage_protrusion": 0.0, + "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", + "geometry_horizontal_location": "Left", + "geometry_inset_depth": 0.0, + "geometry_inset_position": "Right", + "geometry_inset_width": 0.0, + "geometry_level": "Middle", + "geometry_num_bathrooms": "2", + "geometry_num_bedrooms": 3, + "geometry_num_floors_above_grade": 5, + "geometry_num_occupants": "3", + "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, + "geometry_roof_pitch": "6:12", + "geometry_roof_type": "gable", + "geometry_unit_type": "apartment unit", + "geometry_wall_height": 8.0, + "heat_pump_backup_fuel": "none", + "heat_pump_backup_heating_capacity": "34121.0", + "heat_pump_backup_heating_efficiency": 1, + "heat_pump_cooling_capacity": "48000.0", + "heat_pump_cooling_compressor_type": "single stage", + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", + "heat_pump_cooling_sensible_heat_fraction": 0.73, + "heat_pump_fraction_cool_load_served": 1, + "heat_pump_fraction_heat_load_served": 1, + "heat_pump_heating_capacity": "64000.0", + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", + "heat_pump_type": "none", + "heating_system_fraction_heat_load_served": 1, + "heating_system_fraction_heat_load_served_2": 0.25, + "heating_system_fuel": "natural gas", + "heating_system_fuel_2": "electricity", + "heating_system_heating_capacity": "64000.0", + "heating_system_heating_capacity_2": "auto", + "heating_system_heating_efficiency": 0.92, + "heating_system_heating_efficiency_2": 1.0, + "heating_system_type": "Furnace", + "heating_system_type_2": "none", + "holiday_lighting_daily_kwh": "auto", + "holiday_lighting_period_begin_day_of_month": "auto", + "holiday_lighting_period_begin_month": "auto", + "holiday_lighting_period_end_day_of_month": "auto", + "holiday_lighting_period_end_month": "auto", + "holiday_lighting_present": false, + "hot_tub_heater_annual_kwh": "auto", + "hot_tub_heater_annual_therm": "auto", + "hot_tub_heater_type": "electric resistance", + "hot_tub_heater_usage_multiplier": 1.0, + "hot_tub_present": false, + "hot_tub_pump_annual_kwh": "auto", + "hot_tub_pump_usage_multiplier": 1.0, + "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/extra-bldgtype-multifamily-slab-left-middle-double-loaded-interior.xml", + "kitchen_fans_quantity": "0", + "lighting_fraction_cfl_exterior": 0.4, + "lighting_fraction_cfl_garage": 0.4, + "lighting_fraction_cfl_interior": 0.4, + "lighting_fraction_led_exterior": 0.25, + "lighting_fraction_led_garage": 0.25, + "lighting_fraction_led_interior": 0.25, + "lighting_fraction_lfl_exterior": 0.1, + "lighting_fraction_lfl_garage": 0.1, + "lighting_fraction_lfl_interior": 0.1, + "lighting_usage_multiplier_exterior": 1.0, + "lighting_usage_multiplier_garage": 1.0, + "lighting_usage_multiplier_interior": 1.0, + "mech_vent_fan_power": 30, + "mech_vent_fan_power_2": 30, + "mech_vent_fan_type": "none", + "mech_vent_fan_type_2": "none", + "mech_vent_flow_rate": 110, + "mech_vent_flow_rate_2": 110, + "mech_vent_hours_in_operation": 24, + "mech_vent_hours_in_operation_2": 24, + "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", + "mech_vent_sensible_recovery_efficiency": 0.72, + "mech_vent_sensible_recovery_efficiency_2": 0.72, + "mech_vent_total_recovery_efficiency": 0.48, + "mech_vent_total_recovery_efficiency_2": 0.48, + "neighbor_back_distance": 0, + "neighbor_back_height": "auto", + "neighbor_front_distance": 0, + "neighbor_front_height": "auto", + "neighbor_left_distance": 0, + "neighbor_left_height": "auto", + "neighbor_right_distance": 0, + "neighbor_right_height": "auto", + "overhangs_back_depth": 0, + "overhangs_back_distance_to_top_of_window": 0, + "overhangs_front_depth": 0, + "overhangs_front_distance_to_top_of_window": 0, + "overhangs_left_depth": 0, + "overhangs_left_distance_to_top_of_window": 0, + "overhangs_right_depth": 0, + "overhangs_right_distance_to_top_of_window": 0, + "plug_loads_other_annual_kwh": "819.0", + "plug_loads_other_frac_latent": "0.045", + "plug_loads_other_frac_sensible": "0.855", + "plug_loads_other_usage_multiplier": 1.0, + "plug_loads_television_annual_kwh": "620.0", + "plug_loads_television_usage_multiplier": 1.0, + "plug_loads_vehicle_annual_kwh": "auto", + "plug_loads_vehicle_present": false, + "plug_loads_vehicle_usage_multiplier": 0.0, + "plug_loads_well_pump_annual_kwh": "auto", + "plug_loads_well_pump_present": false, + "plug_loads_well_pump_usage_multiplier": 0.0, + "pool_heater_annual_kwh": "auto", + "pool_heater_annual_therm": "auto", + "pool_heater_type": "electric resistance", + "pool_heater_usage_multiplier": 1.0, + "pool_present": false, + "pool_pump_annual_kwh": "auto", + "pool_pump_usage_multiplier": 1.0, + "pv_system_array_azimuth_1": 180, + "pv_system_array_azimuth_2": 180, + "pv_system_array_tilt_1": "20", + "pv_system_array_tilt_2": "20", + "pv_system_inverter_efficiency_1": 0.96, + "pv_system_inverter_efficiency_2": 0.96, + "pv_system_location_1": "auto", + "pv_system_location_2": "auto", + "pv_system_max_power_output_1": 4000, + "pv_system_max_power_output_2": 4000, + "pv_system_module_type_1": "none", + "pv_system_module_type_2": "none", + "pv_system_num_units_served_1": 1, + "pv_system_num_units_served_2": 1, + "pv_system_system_losses_fraction_1": 0.14, + "pv_system_system_losses_fraction_2": 0.14, + "pv_system_tracking_1": "auto", + "pv_system_tracking_2": "auto", + "refrigerator_location": "living space", + "refrigerator_rated_annual_kwh": "650.0", + "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, + "roof_assembly_r": 2.3, + "roof_color": "medium", + "roof_material_type": "asphalt or fiberglass shingles", + "roof_radiant_barrier": false, + "roof_radiant_barrier_grade": "1", + "schedules_type": "default", + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", + "simulation_control_timestep": "60", + "site_type": "suburban", + "skylight_area_back": 0, + "skylight_area_front": 0, + "skylight_area_left": 0, + "skylight_area_right": 0, + "skylight_shgc": 0.45, + "skylight_ufactor": 0.33, + "slab_carpet_fraction": "0.0", + "slab_carpet_r": "0.0", + "slab_perimeter_depth": 0, + "slab_perimeter_insulation_r": 0, + "slab_thickness": "4.0", + "slab_under_insulation_r": 0, + "slab_under_width": 0, + "solar_thermal_collector_area": 40.0, + "solar_thermal_collector_azimuth": 180, + "solar_thermal_collector_loop_type": "liquid direct", + "solar_thermal_collector_rated_optical_efficiency": 0.5, + "solar_thermal_collector_rated_thermal_losses": 0.2799, + "solar_thermal_collector_tilt": "20", + "solar_thermal_collector_type": "evacuated tube", + "solar_thermal_solar_fraction": 0, + "solar_thermal_storage_volume": "auto", + "solar_thermal_system_type": "none", + "wall_assembly_r": 23, + "wall_color": "medium", + "wall_siding_type": "wood siding", + "wall_type": "WoodStud", + "water_fixtures_shower_low_flow": true, + "water_fixtures_sink_low_flow": false, + "water_fixtures_usage_multiplier": 1.0, + "water_heater_efficiency": 0.95, + "water_heater_efficiency_type": "EnergyFactor", + "water_heater_fuel_type": "electricity", + "water_heater_jacket_rvalue": 0, + "water_heater_location": "living space", + "water_heater_num_units_served": 1, + "water_heater_recovery_efficiency": "0.76", + "water_heater_setpoint_temperature": "125", + "water_heater_standby_loss": 0, + "water_heater_tank_volume": "40", + "water_heater_type": "storage water heater", + "weather_station_epw_filepath": "USA_CO_Denver.Intl.AP.725650_TMY3.epw", + "whole_house_fan_flow_rate": 4500, + "whole_house_fan_power": 300, + "whole_house_fan_present": false, + "window_area_back": 0, + "window_area_front": 0, + "window_area_left": 0, + "window_area_right": 0, + "window_aspect_ratio": 1.333, + "window_back_wwr": 0.18, + "window_fraction_operable": 0.67, + "window_front_wwr": 0.18, + "window_interior_shading_summer": 0.7, + "window_interior_shading_winter": 0.85, + "window_left_wwr": 0.18, + "window_right_wwr": 0.18, + "window_shgc": 0.45, + "window_ufactor": 0.33 + }, + "measure_dir_name": "BuildResidentialHPXML" + } + ] +} \ No newline at end of file diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-slab-left-middle.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-slab-left-middle.osw new file mode 100644 index 00000000..35a116e6 --- /dev/null +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-slab-left-middle.osw @@ -0,0 +1,341 @@ +{ + "measure_paths": [ + "../.." + ], + "steps": [ + { + "arguments": { + "air_leakage_house_pressure": 50, + "air_leakage_shielding_of_home": "auto", + "air_leakage_units": "ACH", + "air_leakage_value": 3, + "bathroom_fans_quantity": "0", + "ceiling_assembly_r": 39.3, + "ceiling_fan_cooling_setpoint_temp_offset": 0, + "ceiling_fan_efficiency": "auto", + "ceiling_fan_present": false, + "ceiling_fan_quantity": "auto", + "clothes_dryer_efficiency": "3.73", + "clothes_dryer_efficiency_type": "CombinedEnergyFactor", + "clothes_dryer_fuel_type": "electricity", + "clothes_dryer_location": "living space", + "clothes_dryer_usage_multiplier": 1.0, + "clothes_dryer_vented_flow_rate": "150.0", + "clothes_washer_capacity": "3.2", + "clothes_washer_efficiency": "1.21", + "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", + "clothes_washer_label_annual_gas_cost": "27.0", + "clothes_washer_label_electric_rate": "0.12", + "clothes_washer_label_gas_rate": "1.09", + "clothes_washer_label_usage": "6.0", + "clothes_washer_location": "living space", + "clothes_washer_rated_annual_kwh": "380.0", + "clothes_washer_usage_multiplier": 1.0, + "cooking_range_oven_fuel_type": "electricity", + "cooking_range_oven_is_convection": false, + "cooking_range_oven_is_induction": false, + "cooking_range_oven_location": "living space", + "cooking_range_oven_usage_multiplier": 1.0, + "cooling_system_cooling_capacity": "48000.0", + "cooling_system_cooling_compressor_type": "single stage", + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", + "cooling_system_cooling_sensible_heat_fraction": 0.73, + "cooling_system_fraction_cool_load_served": 1, + "cooling_system_is_ducted": false, + "cooling_system_type": "central air conditioner", + "dehumidifier_capacity": 40, + "dehumidifier_efficiency": 1.8, + "dehumidifier_efficiency_type": "EnergyFactor", + "dehumidifier_fraction_dehumidification_load_served": 1, + "dehumidifier_rh_setpoint": 0.5, + "dehumidifier_type": "none", + "dhw_distribution_pipe_r": "0.0", + "dhw_distribution_recirc_branch_piping_length": "50", + "dhw_distribution_recirc_control_type": "no control", + "dhw_distribution_recirc_piping_length": "50", + "dhw_distribution_recirc_pump_power": "50", + "dhw_distribution_standard_piping_length": "50", + "dhw_distribution_system_type": "Standard", + "dishwasher_efficiency": "307", + "dishwasher_efficiency_type": "RatedAnnualkWh", + "dishwasher_label_annual_gas_cost": "22.32", + "dishwasher_label_electric_rate": "0.12", + "dishwasher_label_gas_rate": "1.09", + "dishwasher_label_usage": "4.0", + "dishwasher_location": "living space", + "dishwasher_place_setting_capacity": "12", + "dishwasher_usage_multiplier": 1.0, + "door_area": 20.0, + "door_rvalue": 4.4, + "ducts_number_of_return_registers": "1", + "ducts_return_insulation_r": 0.0, + "ducts_return_leakage_units": "CFM25", + "ducts_return_leakage_value": 0.0, + "ducts_return_location": "living space", + "ducts_return_surface_area": "50.0", + "ducts_supply_insulation_r": 0.0, + "ducts_supply_leakage_units": "CFM25", + "ducts_supply_leakage_value": 0.0, + "ducts_supply_location": "living space", + "ducts_supply_surface_area": "150.0", + "dwhr_efficiency": 0.55, + "dwhr_equal_flow": true, + "dwhr_facilities_connected": "none", + "extra_refrigerator_location": "none", + "extra_refrigerator_rated_annual_kwh": "auto", + "extra_refrigerator_usage_multiplier": 1.0, + "floor_assembly_r": 0, + "foundation_wall_insulation_distance_to_bottom": "auto", + "foundation_wall_insulation_distance_to_top": 0.0, + "foundation_wall_insulation_r": 8.9, + "foundation_wall_thickness": "8.0", + "freezer_location": "none", + "freezer_rated_annual_kwh": "auto", + "freezer_usage_multiplier": 1.0, + "fuel_loads_fireplace_annual_therm": "auto", + "fuel_loads_fireplace_frac_latent": "auto", + "fuel_loads_fireplace_frac_sensible": "auto", + "fuel_loads_fireplace_fuel_type": "natural gas", + "fuel_loads_fireplace_present": false, + "fuel_loads_fireplace_usage_multiplier": 0.0, + "fuel_loads_grill_annual_therm": "auto", + "fuel_loads_grill_fuel_type": "natural gas", + "fuel_loads_grill_present": false, + "fuel_loads_grill_usage_multiplier": 0.0, + "fuel_loads_lighting_annual_therm": "auto", + "fuel_loads_lighting_fuel_type": "natural gas", + "fuel_loads_lighting_present": false, + "fuel_loads_lighting_usage_multiplier": 0.0, + "geometry_aspect_ratio": 1.5, + "geometry_attic_type": "UnventedAttic", + "geometry_balcony_depth": 0.0, + "geometry_building_num_bedrooms": 150, + "geometry_building_num_units": 50, + "geometry_cfa": 900.0, + "geometry_corridor_position": "None", + "geometry_corridor_width": 10.0, + "geometry_eaves_depth": 0, + "geometry_foundation_height": 0.0, + "geometry_foundation_height_above_grade": 0.0, + "geometry_foundation_type": "SlabOnGrade", + "geometry_garage_depth": 20.0, + "geometry_garage_position": "Right", + "geometry_garage_protrusion": 0.0, + "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", + "geometry_horizontal_location": "Left", + "geometry_inset_depth": 0.0, + "geometry_inset_position": "Right", + "geometry_inset_width": 0.0, + "geometry_level": "Middle", + "geometry_num_bathrooms": "2", + "geometry_num_bedrooms": 3, + "geometry_num_floors_above_grade": 5, + "geometry_num_occupants": "3", + "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, + "geometry_roof_pitch": "6:12", + "geometry_roof_type": "gable", + "geometry_unit_type": "apartment unit", + "geometry_wall_height": 8.0, + "heat_pump_backup_fuel": "none", + "heat_pump_backup_heating_capacity": "34121.0", + "heat_pump_backup_heating_efficiency": 1, + "heat_pump_cooling_capacity": "48000.0", + "heat_pump_cooling_compressor_type": "single stage", + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", + "heat_pump_cooling_sensible_heat_fraction": 0.73, + "heat_pump_fraction_cool_load_served": 1, + "heat_pump_fraction_heat_load_served": 1, + "heat_pump_heating_capacity": "64000.0", + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", + "heat_pump_type": "none", + "heating_system_fraction_heat_load_served": 1, + "heating_system_fraction_heat_load_served_2": 0.25, + "heating_system_fuel": "natural gas", + "heating_system_fuel_2": "electricity", + "heating_system_heating_capacity": "64000.0", + "heating_system_heating_capacity_2": "auto", + "heating_system_heating_efficiency": 0.92, + "heating_system_heating_efficiency_2": 1.0, + "heating_system_type": "Furnace", + "heating_system_type_2": "none", + "holiday_lighting_daily_kwh": "auto", + "holiday_lighting_period_begin_day_of_month": "auto", + "holiday_lighting_period_begin_month": "auto", + "holiday_lighting_period_end_day_of_month": "auto", + "holiday_lighting_period_end_month": "auto", + "holiday_lighting_present": false, + "hot_tub_heater_annual_kwh": "auto", + "hot_tub_heater_annual_therm": "auto", + "hot_tub_heater_type": "electric resistance", + "hot_tub_heater_usage_multiplier": 1.0, + "hot_tub_present": false, + "hot_tub_pump_annual_kwh": "auto", + "hot_tub_pump_usage_multiplier": 1.0, + "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/extra-bldgtype-multifamily-slab-left-middle.xml", + "kitchen_fans_quantity": "0", + "lighting_fraction_cfl_exterior": 0.4, + "lighting_fraction_cfl_garage": 0.4, + "lighting_fraction_cfl_interior": 0.4, + "lighting_fraction_led_exterior": 0.25, + "lighting_fraction_led_garage": 0.25, + "lighting_fraction_led_interior": 0.25, + "lighting_fraction_lfl_exterior": 0.1, + "lighting_fraction_lfl_garage": 0.1, + "lighting_fraction_lfl_interior": 0.1, + "lighting_usage_multiplier_exterior": 1.0, + "lighting_usage_multiplier_garage": 1.0, + "lighting_usage_multiplier_interior": 1.0, + "mech_vent_fan_power": 30, + "mech_vent_fan_power_2": 30, + "mech_vent_fan_type": "none", + "mech_vent_fan_type_2": "none", + "mech_vent_flow_rate": 110, + "mech_vent_flow_rate_2": 110, + "mech_vent_hours_in_operation": 24, + "mech_vent_hours_in_operation_2": 24, + "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", + "mech_vent_sensible_recovery_efficiency": 0.72, + "mech_vent_sensible_recovery_efficiency_2": 0.72, + "mech_vent_total_recovery_efficiency": 0.48, + "mech_vent_total_recovery_efficiency_2": 0.48, + "neighbor_back_distance": 0, + "neighbor_back_height": "auto", + "neighbor_front_distance": 0, + "neighbor_front_height": "auto", + "neighbor_left_distance": 0, + "neighbor_left_height": "auto", + "neighbor_right_distance": 0, + "neighbor_right_height": "auto", + "overhangs_back_depth": 0, + "overhangs_back_distance_to_top_of_window": 0, + "overhangs_front_depth": 0, + "overhangs_front_distance_to_top_of_window": 0, + "overhangs_left_depth": 0, + "overhangs_left_distance_to_top_of_window": 0, + "overhangs_right_depth": 0, + "overhangs_right_distance_to_top_of_window": 0, + "plug_loads_other_annual_kwh": "819.0", + "plug_loads_other_frac_latent": "0.045", + "plug_loads_other_frac_sensible": "0.855", + "plug_loads_other_usage_multiplier": 1.0, + "plug_loads_television_annual_kwh": "620.0", + "plug_loads_television_usage_multiplier": 1.0, + "plug_loads_vehicle_annual_kwh": "auto", + "plug_loads_vehicle_present": false, + "plug_loads_vehicle_usage_multiplier": 0.0, + "plug_loads_well_pump_annual_kwh": "auto", + "plug_loads_well_pump_present": false, + "plug_loads_well_pump_usage_multiplier": 0.0, + "pool_heater_annual_kwh": "auto", + "pool_heater_annual_therm": "auto", + "pool_heater_type": "electric resistance", + "pool_heater_usage_multiplier": 1.0, + "pool_present": false, + "pool_pump_annual_kwh": "auto", + "pool_pump_usage_multiplier": 1.0, + "pv_system_array_azimuth_1": 180, + "pv_system_array_azimuth_2": 180, + "pv_system_array_tilt_1": "20", + "pv_system_array_tilt_2": "20", + "pv_system_inverter_efficiency_1": 0.96, + "pv_system_inverter_efficiency_2": 0.96, + "pv_system_location_1": "auto", + "pv_system_location_2": "auto", + "pv_system_max_power_output_1": 4000, + "pv_system_max_power_output_2": 4000, + "pv_system_module_type_1": "none", + "pv_system_module_type_2": "none", + "pv_system_num_units_served_1": 1, + "pv_system_num_units_served_2": 1, + "pv_system_system_losses_fraction_1": 0.14, + "pv_system_system_losses_fraction_2": 0.14, + "pv_system_tracking_1": "auto", + "pv_system_tracking_2": "auto", + "refrigerator_location": "living space", + "refrigerator_rated_annual_kwh": "650.0", + "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, + "roof_assembly_r": 2.3, + "roof_color": "medium", + "roof_material_type": "asphalt or fiberglass shingles", + "roof_radiant_barrier": false, + "roof_radiant_barrier_grade": "1", + "schedules_type": "default", + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", + "simulation_control_timestep": "60", + "site_type": "suburban", + "skylight_area_back": 0, + "skylight_area_front": 0, + "skylight_area_left": 0, + "skylight_area_right": 0, + "skylight_shgc": 0.45, + "skylight_ufactor": 0.33, + "slab_carpet_fraction": "0.0", + "slab_carpet_r": "0.0", + "slab_perimeter_depth": 0, + "slab_perimeter_insulation_r": 0, + "slab_thickness": "4.0", + "slab_under_insulation_r": 0, + "slab_under_width": 0, + "solar_thermal_collector_area": 40.0, + "solar_thermal_collector_azimuth": 180, + "solar_thermal_collector_loop_type": "liquid direct", + "solar_thermal_collector_rated_optical_efficiency": 0.5, + "solar_thermal_collector_rated_thermal_losses": 0.2799, + "solar_thermal_collector_tilt": "20", + "solar_thermal_collector_type": "evacuated tube", + "solar_thermal_solar_fraction": 0, + "solar_thermal_storage_volume": "auto", + "solar_thermal_system_type": "none", + "wall_assembly_r": 23, + "wall_color": "medium", + "wall_siding_type": "wood siding", + "wall_type": "WoodStud", + "water_fixtures_shower_low_flow": true, + "water_fixtures_sink_low_flow": false, + "water_fixtures_usage_multiplier": 1.0, + "water_heater_efficiency": 0.95, + "water_heater_efficiency_type": "EnergyFactor", + "water_heater_fuel_type": "electricity", + "water_heater_jacket_rvalue": 0, + "water_heater_location": "living space", + "water_heater_num_units_served": 1, + "water_heater_recovery_efficiency": "0.76", + "water_heater_setpoint_temperature": "125", + "water_heater_standby_loss": 0, + "water_heater_tank_volume": "40", + "water_heater_type": "storage water heater", + "weather_station_epw_filepath": "USA_CO_Denver.Intl.AP.725650_TMY3.epw", + "whole_house_fan_flow_rate": 4500, + "whole_house_fan_power": 300, + "whole_house_fan_present": false, + "window_area_back": 0, + "window_area_front": 0, + "window_area_left": 0, + "window_area_right": 0, + "window_aspect_ratio": 1.333, + "window_back_wwr": 0.18, + "window_fraction_operable": 0.67, + "window_front_wwr": 0.18, + "window_interior_shading_summer": 0.7, + "window_interior_shading_winter": 0.85, + "window_left_wwr": 0.18, + "window_right_wwr": 0.18, + "window_shgc": 0.45, + "window_ufactor": 0.33 + }, + "measure_dir_name": "BuildResidentialHPXML" + } + ] +} \ No newline at end of file diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-slab-left-top-double-loaded-interior.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-slab-left-top-double-loaded-interior.osw new file mode 100644 index 00000000..ed26c068 --- /dev/null +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-slab-left-top-double-loaded-interior.osw @@ -0,0 +1,341 @@ +{ + "measure_paths": [ + "../.." + ], + "steps": [ + { + "arguments": { + "air_leakage_house_pressure": 50, + "air_leakage_shielding_of_home": "auto", + "air_leakage_units": "ACH", + "air_leakage_value": 3, + "bathroom_fans_quantity": "0", + "ceiling_assembly_r": 39.3, + "ceiling_fan_cooling_setpoint_temp_offset": 0, + "ceiling_fan_efficiency": "auto", + "ceiling_fan_present": false, + "ceiling_fan_quantity": "auto", + "clothes_dryer_efficiency": "3.73", + "clothes_dryer_efficiency_type": "CombinedEnergyFactor", + "clothes_dryer_fuel_type": "electricity", + "clothes_dryer_location": "living space", + "clothes_dryer_usage_multiplier": 1.0, + "clothes_dryer_vented_flow_rate": "150.0", + "clothes_washer_capacity": "3.2", + "clothes_washer_efficiency": "1.21", + "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", + "clothes_washer_label_annual_gas_cost": "27.0", + "clothes_washer_label_electric_rate": "0.12", + "clothes_washer_label_gas_rate": "1.09", + "clothes_washer_label_usage": "6.0", + "clothes_washer_location": "living space", + "clothes_washer_rated_annual_kwh": "380.0", + "clothes_washer_usage_multiplier": 1.0, + "cooking_range_oven_fuel_type": "electricity", + "cooking_range_oven_is_convection": false, + "cooking_range_oven_is_induction": false, + "cooking_range_oven_location": "living space", + "cooking_range_oven_usage_multiplier": 1.0, + "cooling_system_cooling_capacity": "48000.0", + "cooling_system_cooling_compressor_type": "single stage", + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", + "cooling_system_cooling_sensible_heat_fraction": 0.73, + "cooling_system_fraction_cool_load_served": 1, + "cooling_system_is_ducted": false, + "cooling_system_type": "central air conditioner", + "dehumidifier_capacity": 40, + "dehumidifier_efficiency": 1.8, + "dehumidifier_efficiency_type": "EnergyFactor", + "dehumidifier_fraction_dehumidification_load_served": 1, + "dehumidifier_rh_setpoint": 0.5, + "dehumidifier_type": "none", + "dhw_distribution_pipe_r": "0.0", + "dhw_distribution_recirc_branch_piping_length": "50", + "dhw_distribution_recirc_control_type": "no control", + "dhw_distribution_recirc_piping_length": "50", + "dhw_distribution_recirc_pump_power": "50", + "dhw_distribution_standard_piping_length": "50", + "dhw_distribution_system_type": "Standard", + "dishwasher_efficiency": "307", + "dishwasher_efficiency_type": "RatedAnnualkWh", + "dishwasher_label_annual_gas_cost": "22.32", + "dishwasher_label_electric_rate": "0.12", + "dishwasher_label_gas_rate": "1.09", + "dishwasher_label_usage": "4.0", + "dishwasher_location": "living space", + "dishwasher_place_setting_capacity": "12", + "dishwasher_usage_multiplier": 1.0, + "door_area": 20.0, + "door_rvalue": 4.4, + "ducts_number_of_return_registers": "1", + "ducts_return_insulation_r": 0.0, + "ducts_return_leakage_units": "CFM25", + "ducts_return_leakage_value": 0.0, + "ducts_return_location": "living space", + "ducts_return_surface_area": "50.0", + "ducts_supply_insulation_r": 0.0, + "ducts_supply_leakage_units": "CFM25", + "ducts_supply_leakage_value": 0.0, + "ducts_supply_location": "living space", + "ducts_supply_surface_area": "150.0", + "dwhr_efficiency": 0.55, + "dwhr_equal_flow": true, + "dwhr_facilities_connected": "none", + "extra_refrigerator_location": "none", + "extra_refrigerator_rated_annual_kwh": "auto", + "extra_refrigerator_usage_multiplier": 1.0, + "floor_assembly_r": 0, + "foundation_wall_insulation_distance_to_bottom": "auto", + "foundation_wall_insulation_distance_to_top": 0.0, + "foundation_wall_insulation_r": 8.9, + "foundation_wall_thickness": "8.0", + "freezer_location": "none", + "freezer_rated_annual_kwh": "auto", + "freezer_usage_multiplier": 1.0, + "fuel_loads_fireplace_annual_therm": "auto", + "fuel_loads_fireplace_frac_latent": "auto", + "fuel_loads_fireplace_frac_sensible": "auto", + "fuel_loads_fireplace_fuel_type": "natural gas", + "fuel_loads_fireplace_present": false, + "fuel_loads_fireplace_usage_multiplier": 0.0, + "fuel_loads_grill_annual_therm": "auto", + "fuel_loads_grill_fuel_type": "natural gas", + "fuel_loads_grill_present": false, + "fuel_loads_grill_usage_multiplier": 0.0, + "fuel_loads_lighting_annual_therm": "auto", + "fuel_loads_lighting_fuel_type": "natural gas", + "fuel_loads_lighting_present": false, + "fuel_loads_lighting_usage_multiplier": 0.0, + "geometry_aspect_ratio": 1.5, + "geometry_attic_type": "UnventedAttic", + "geometry_balcony_depth": 0.0, + "geometry_building_num_bedrooms": 150, + "geometry_building_num_units": 50, + "geometry_cfa": 900.0, + "geometry_corridor_position": "Double-Loaded Interior", + "geometry_corridor_width": 10.0, + "geometry_eaves_depth": 0, + "geometry_foundation_height": 0.0, + "geometry_foundation_height_above_grade": 0.0, + "geometry_foundation_type": "SlabOnGrade", + "geometry_garage_depth": 20.0, + "geometry_garage_position": "Right", + "geometry_garage_protrusion": 0.0, + "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", + "geometry_horizontal_location": "Left", + "geometry_inset_depth": 0.0, + "geometry_inset_position": "Right", + "geometry_inset_width": 0.0, + "geometry_level": "Top", + "geometry_num_bathrooms": "2", + "geometry_num_bedrooms": 3, + "geometry_num_floors_above_grade": 5, + "geometry_num_occupants": "3", + "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, + "geometry_roof_pitch": "6:12", + "geometry_roof_type": "gable", + "geometry_unit_type": "apartment unit", + "geometry_wall_height": 8.0, + "heat_pump_backup_fuel": "none", + "heat_pump_backup_heating_capacity": "34121.0", + "heat_pump_backup_heating_efficiency": 1, + "heat_pump_cooling_capacity": "48000.0", + "heat_pump_cooling_compressor_type": "single stage", + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", + "heat_pump_cooling_sensible_heat_fraction": 0.73, + "heat_pump_fraction_cool_load_served": 1, + "heat_pump_fraction_heat_load_served": 1, + "heat_pump_heating_capacity": "64000.0", + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", + "heat_pump_type": "none", + "heating_system_fraction_heat_load_served": 1, + "heating_system_fraction_heat_load_served_2": 0.25, + "heating_system_fuel": "natural gas", + "heating_system_fuel_2": "electricity", + "heating_system_heating_capacity": "64000.0", + "heating_system_heating_capacity_2": "auto", + "heating_system_heating_efficiency": 0.92, + "heating_system_heating_efficiency_2": 1.0, + "heating_system_type": "Furnace", + "heating_system_type_2": "none", + "holiday_lighting_daily_kwh": "auto", + "holiday_lighting_period_begin_day_of_month": "auto", + "holiday_lighting_period_begin_month": "auto", + "holiday_lighting_period_end_day_of_month": "auto", + "holiday_lighting_period_end_month": "auto", + "holiday_lighting_present": false, + "hot_tub_heater_annual_kwh": "auto", + "hot_tub_heater_annual_therm": "auto", + "hot_tub_heater_type": "electric resistance", + "hot_tub_heater_usage_multiplier": 1.0, + "hot_tub_present": false, + "hot_tub_pump_annual_kwh": "auto", + "hot_tub_pump_usage_multiplier": 1.0, + "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/extra-bldgtype-multifamily-slab-left-top-double-loaded-interior.xml", + "kitchen_fans_quantity": "0", + "lighting_fraction_cfl_exterior": 0.4, + "lighting_fraction_cfl_garage": 0.4, + "lighting_fraction_cfl_interior": 0.4, + "lighting_fraction_led_exterior": 0.25, + "lighting_fraction_led_garage": 0.25, + "lighting_fraction_led_interior": 0.25, + "lighting_fraction_lfl_exterior": 0.1, + "lighting_fraction_lfl_garage": 0.1, + "lighting_fraction_lfl_interior": 0.1, + "lighting_usage_multiplier_exterior": 1.0, + "lighting_usage_multiplier_garage": 1.0, + "lighting_usage_multiplier_interior": 1.0, + "mech_vent_fan_power": 30, + "mech_vent_fan_power_2": 30, + "mech_vent_fan_type": "none", + "mech_vent_fan_type_2": "none", + "mech_vent_flow_rate": 110, + "mech_vent_flow_rate_2": 110, + "mech_vent_hours_in_operation": 24, + "mech_vent_hours_in_operation_2": 24, + "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", + "mech_vent_sensible_recovery_efficiency": 0.72, + "mech_vent_sensible_recovery_efficiency_2": 0.72, + "mech_vent_total_recovery_efficiency": 0.48, + "mech_vent_total_recovery_efficiency_2": 0.48, + "neighbor_back_distance": 0, + "neighbor_back_height": "auto", + "neighbor_front_distance": 0, + "neighbor_front_height": "auto", + "neighbor_left_distance": 0, + "neighbor_left_height": "auto", + "neighbor_right_distance": 0, + "neighbor_right_height": "auto", + "overhangs_back_depth": 0, + "overhangs_back_distance_to_top_of_window": 0, + "overhangs_front_depth": 0, + "overhangs_front_distance_to_top_of_window": 0, + "overhangs_left_depth": 0, + "overhangs_left_distance_to_top_of_window": 0, + "overhangs_right_depth": 0, + "overhangs_right_distance_to_top_of_window": 0, + "plug_loads_other_annual_kwh": "819.0", + "plug_loads_other_frac_latent": "0.045", + "plug_loads_other_frac_sensible": "0.855", + "plug_loads_other_usage_multiplier": 1.0, + "plug_loads_television_annual_kwh": "620.0", + "plug_loads_television_usage_multiplier": 1.0, + "plug_loads_vehicle_annual_kwh": "auto", + "plug_loads_vehicle_present": false, + "plug_loads_vehicle_usage_multiplier": 0.0, + "plug_loads_well_pump_annual_kwh": "auto", + "plug_loads_well_pump_present": false, + "plug_loads_well_pump_usage_multiplier": 0.0, + "pool_heater_annual_kwh": "auto", + "pool_heater_annual_therm": "auto", + "pool_heater_type": "electric resistance", + "pool_heater_usage_multiplier": 1.0, + "pool_present": false, + "pool_pump_annual_kwh": "auto", + "pool_pump_usage_multiplier": 1.0, + "pv_system_array_azimuth_1": 180, + "pv_system_array_azimuth_2": 180, + "pv_system_array_tilt_1": "20", + "pv_system_array_tilt_2": "20", + "pv_system_inverter_efficiency_1": 0.96, + "pv_system_inverter_efficiency_2": 0.96, + "pv_system_location_1": "auto", + "pv_system_location_2": "auto", + "pv_system_max_power_output_1": 4000, + "pv_system_max_power_output_2": 4000, + "pv_system_module_type_1": "none", + "pv_system_module_type_2": "none", + "pv_system_num_units_served_1": 1, + "pv_system_num_units_served_2": 1, + "pv_system_system_losses_fraction_1": 0.14, + "pv_system_system_losses_fraction_2": 0.14, + "pv_system_tracking_1": "auto", + "pv_system_tracking_2": "auto", + "refrigerator_location": "living space", + "refrigerator_rated_annual_kwh": "650.0", + "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, + "roof_assembly_r": 2.3, + "roof_color": "medium", + "roof_material_type": "asphalt or fiberglass shingles", + "roof_radiant_barrier": false, + "roof_radiant_barrier_grade": "1", + "schedules_type": "default", + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", + "simulation_control_timestep": "60", + "site_type": "suburban", + "skylight_area_back": 0, + "skylight_area_front": 0, + "skylight_area_left": 0, + "skylight_area_right": 0, + "skylight_shgc": 0.45, + "skylight_ufactor": 0.33, + "slab_carpet_fraction": "0.0", + "slab_carpet_r": "0.0", + "slab_perimeter_depth": 0, + "slab_perimeter_insulation_r": 0, + "slab_thickness": "4.0", + "slab_under_insulation_r": 0, + "slab_under_width": 0, + "solar_thermal_collector_area": 40.0, + "solar_thermal_collector_azimuth": 180, + "solar_thermal_collector_loop_type": "liquid direct", + "solar_thermal_collector_rated_optical_efficiency": 0.5, + "solar_thermal_collector_rated_thermal_losses": 0.2799, + "solar_thermal_collector_tilt": "20", + "solar_thermal_collector_type": "evacuated tube", + "solar_thermal_solar_fraction": 0, + "solar_thermal_storage_volume": "auto", + "solar_thermal_system_type": "none", + "wall_assembly_r": 23, + "wall_color": "medium", + "wall_siding_type": "wood siding", + "wall_type": "WoodStud", + "water_fixtures_shower_low_flow": true, + "water_fixtures_sink_low_flow": false, + "water_fixtures_usage_multiplier": 1.0, + "water_heater_efficiency": 0.95, + "water_heater_efficiency_type": "EnergyFactor", + "water_heater_fuel_type": "electricity", + "water_heater_jacket_rvalue": 0, + "water_heater_location": "living space", + "water_heater_num_units_served": 1, + "water_heater_recovery_efficiency": "0.76", + "water_heater_setpoint_temperature": "125", + "water_heater_standby_loss": 0, + "water_heater_tank_volume": "40", + "water_heater_type": "storage water heater", + "weather_station_epw_filepath": "USA_CO_Denver.Intl.AP.725650_TMY3.epw", + "whole_house_fan_flow_rate": 4500, + "whole_house_fan_power": 300, + "whole_house_fan_present": false, + "window_area_back": 0, + "window_area_front": 0, + "window_area_left": 0, + "window_area_right": 0, + "window_aspect_ratio": 1.333, + "window_back_wwr": 0.18, + "window_fraction_operable": 0.67, + "window_front_wwr": 0.18, + "window_interior_shading_summer": 0.7, + "window_interior_shading_winter": 0.85, + "window_left_wwr": 0.18, + "window_right_wwr": 0.18, + "window_shgc": 0.45, + "window_ufactor": 0.33 + }, + "measure_dir_name": "BuildResidentialHPXML" + } + ] +} \ No newline at end of file diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-slab-left-top.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-slab-left-top.osw new file mode 100644 index 00000000..d9574945 --- /dev/null +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-slab-left-top.osw @@ -0,0 +1,341 @@ +{ + "measure_paths": [ + "../.." + ], + "steps": [ + { + "arguments": { + "air_leakage_house_pressure": 50, + "air_leakage_shielding_of_home": "auto", + "air_leakage_units": "ACH", + "air_leakage_value": 3, + "bathroom_fans_quantity": "0", + "ceiling_assembly_r": 39.3, + "ceiling_fan_cooling_setpoint_temp_offset": 0, + "ceiling_fan_efficiency": "auto", + "ceiling_fan_present": false, + "ceiling_fan_quantity": "auto", + "clothes_dryer_efficiency": "3.73", + "clothes_dryer_efficiency_type": "CombinedEnergyFactor", + "clothes_dryer_fuel_type": "electricity", + "clothes_dryer_location": "living space", + "clothes_dryer_usage_multiplier": 1.0, + "clothes_dryer_vented_flow_rate": "150.0", + "clothes_washer_capacity": "3.2", + "clothes_washer_efficiency": "1.21", + "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", + "clothes_washer_label_annual_gas_cost": "27.0", + "clothes_washer_label_electric_rate": "0.12", + "clothes_washer_label_gas_rate": "1.09", + "clothes_washer_label_usage": "6.0", + "clothes_washer_location": "living space", + "clothes_washer_rated_annual_kwh": "380.0", + "clothes_washer_usage_multiplier": 1.0, + "cooking_range_oven_fuel_type": "electricity", + "cooking_range_oven_is_convection": false, + "cooking_range_oven_is_induction": false, + "cooking_range_oven_location": "living space", + "cooking_range_oven_usage_multiplier": 1.0, + "cooling_system_cooling_capacity": "48000.0", + "cooling_system_cooling_compressor_type": "single stage", + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", + "cooling_system_cooling_sensible_heat_fraction": 0.73, + "cooling_system_fraction_cool_load_served": 1, + "cooling_system_is_ducted": false, + "cooling_system_type": "central air conditioner", + "dehumidifier_capacity": 40, + "dehumidifier_efficiency": 1.8, + "dehumidifier_efficiency_type": "EnergyFactor", + "dehumidifier_fraction_dehumidification_load_served": 1, + "dehumidifier_rh_setpoint": 0.5, + "dehumidifier_type": "none", + "dhw_distribution_pipe_r": "0.0", + "dhw_distribution_recirc_branch_piping_length": "50", + "dhw_distribution_recirc_control_type": "no control", + "dhw_distribution_recirc_piping_length": "50", + "dhw_distribution_recirc_pump_power": "50", + "dhw_distribution_standard_piping_length": "50", + "dhw_distribution_system_type": "Standard", + "dishwasher_efficiency": "307", + "dishwasher_efficiency_type": "RatedAnnualkWh", + "dishwasher_label_annual_gas_cost": "22.32", + "dishwasher_label_electric_rate": "0.12", + "dishwasher_label_gas_rate": "1.09", + "dishwasher_label_usage": "4.0", + "dishwasher_location": "living space", + "dishwasher_place_setting_capacity": "12", + "dishwasher_usage_multiplier": 1.0, + "door_area": 20.0, + "door_rvalue": 4.4, + "ducts_number_of_return_registers": "1", + "ducts_return_insulation_r": 0.0, + "ducts_return_leakage_units": "CFM25", + "ducts_return_leakage_value": 0.0, + "ducts_return_location": "living space", + "ducts_return_surface_area": "50.0", + "ducts_supply_insulation_r": 0.0, + "ducts_supply_leakage_units": "CFM25", + "ducts_supply_leakage_value": 0.0, + "ducts_supply_location": "living space", + "ducts_supply_surface_area": "150.0", + "dwhr_efficiency": 0.55, + "dwhr_equal_flow": true, + "dwhr_facilities_connected": "none", + "extra_refrigerator_location": "none", + "extra_refrigerator_rated_annual_kwh": "auto", + "extra_refrigerator_usage_multiplier": 1.0, + "floor_assembly_r": 0, + "foundation_wall_insulation_distance_to_bottom": "auto", + "foundation_wall_insulation_distance_to_top": 0.0, + "foundation_wall_insulation_r": 8.9, + "foundation_wall_thickness": "8.0", + "freezer_location": "none", + "freezer_rated_annual_kwh": "auto", + "freezer_usage_multiplier": 1.0, + "fuel_loads_fireplace_annual_therm": "auto", + "fuel_loads_fireplace_frac_latent": "auto", + "fuel_loads_fireplace_frac_sensible": "auto", + "fuel_loads_fireplace_fuel_type": "natural gas", + "fuel_loads_fireplace_present": false, + "fuel_loads_fireplace_usage_multiplier": 0.0, + "fuel_loads_grill_annual_therm": "auto", + "fuel_loads_grill_fuel_type": "natural gas", + "fuel_loads_grill_present": false, + "fuel_loads_grill_usage_multiplier": 0.0, + "fuel_loads_lighting_annual_therm": "auto", + "fuel_loads_lighting_fuel_type": "natural gas", + "fuel_loads_lighting_present": false, + "fuel_loads_lighting_usage_multiplier": 0.0, + "geometry_aspect_ratio": 1.5, + "geometry_attic_type": "UnventedAttic", + "geometry_balcony_depth": 0.0, + "geometry_building_num_bedrooms": 150, + "geometry_building_num_units": 50, + "geometry_cfa": 900.0, + "geometry_corridor_position": "None", + "geometry_corridor_width": 10.0, + "geometry_eaves_depth": 0, + "geometry_foundation_height": 0.0, + "geometry_foundation_height_above_grade": 0.0, + "geometry_foundation_type": "SlabOnGrade", + "geometry_garage_depth": 20.0, + "geometry_garage_position": "Right", + "geometry_garage_protrusion": 0.0, + "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", + "geometry_horizontal_location": "Left", + "geometry_inset_depth": 0.0, + "geometry_inset_position": "Right", + "geometry_inset_width": 0.0, + "geometry_level": "Top", + "geometry_num_bathrooms": "2", + "geometry_num_bedrooms": 3, + "geometry_num_floors_above_grade": 5, + "geometry_num_occupants": "3", + "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, + "geometry_roof_pitch": "6:12", + "geometry_roof_type": "gable", + "geometry_unit_type": "apartment unit", + "geometry_wall_height": 8.0, + "heat_pump_backup_fuel": "none", + "heat_pump_backup_heating_capacity": "34121.0", + "heat_pump_backup_heating_efficiency": 1, + "heat_pump_cooling_capacity": "48000.0", + "heat_pump_cooling_compressor_type": "single stage", + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", + "heat_pump_cooling_sensible_heat_fraction": 0.73, + "heat_pump_fraction_cool_load_served": 1, + "heat_pump_fraction_heat_load_served": 1, + "heat_pump_heating_capacity": "64000.0", + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", + "heat_pump_type": "none", + "heating_system_fraction_heat_load_served": 1, + "heating_system_fraction_heat_load_served_2": 0.25, + "heating_system_fuel": "natural gas", + "heating_system_fuel_2": "electricity", + "heating_system_heating_capacity": "64000.0", + "heating_system_heating_capacity_2": "auto", + "heating_system_heating_efficiency": 0.92, + "heating_system_heating_efficiency_2": 1.0, + "heating_system_type": "Furnace", + "heating_system_type_2": "none", + "holiday_lighting_daily_kwh": "auto", + "holiday_lighting_period_begin_day_of_month": "auto", + "holiday_lighting_period_begin_month": "auto", + "holiday_lighting_period_end_day_of_month": "auto", + "holiday_lighting_period_end_month": "auto", + "holiday_lighting_present": false, + "hot_tub_heater_annual_kwh": "auto", + "hot_tub_heater_annual_therm": "auto", + "hot_tub_heater_type": "electric resistance", + "hot_tub_heater_usage_multiplier": 1.0, + "hot_tub_present": false, + "hot_tub_pump_annual_kwh": "auto", + "hot_tub_pump_usage_multiplier": 1.0, + "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/extra-bldgtype-multifamily-slab-left-top.xml", + "kitchen_fans_quantity": "0", + "lighting_fraction_cfl_exterior": 0.4, + "lighting_fraction_cfl_garage": 0.4, + "lighting_fraction_cfl_interior": 0.4, + "lighting_fraction_led_exterior": 0.25, + "lighting_fraction_led_garage": 0.25, + "lighting_fraction_led_interior": 0.25, + "lighting_fraction_lfl_exterior": 0.1, + "lighting_fraction_lfl_garage": 0.1, + "lighting_fraction_lfl_interior": 0.1, + "lighting_usage_multiplier_exterior": 1.0, + "lighting_usage_multiplier_garage": 1.0, + "lighting_usage_multiplier_interior": 1.0, + "mech_vent_fan_power": 30, + "mech_vent_fan_power_2": 30, + "mech_vent_fan_type": "none", + "mech_vent_fan_type_2": "none", + "mech_vent_flow_rate": 110, + "mech_vent_flow_rate_2": 110, + "mech_vent_hours_in_operation": 24, + "mech_vent_hours_in_operation_2": 24, + "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", + "mech_vent_sensible_recovery_efficiency": 0.72, + "mech_vent_sensible_recovery_efficiency_2": 0.72, + "mech_vent_total_recovery_efficiency": 0.48, + "mech_vent_total_recovery_efficiency_2": 0.48, + "neighbor_back_distance": 0, + "neighbor_back_height": "auto", + "neighbor_front_distance": 0, + "neighbor_front_height": "auto", + "neighbor_left_distance": 0, + "neighbor_left_height": "auto", + "neighbor_right_distance": 0, + "neighbor_right_height": "auto", + "overhangs_back_depth": 0, + "overhangs_back_distance_to_top_of_window": 0, + "overhangs_front_depth": 0, + "overhangs_front_distance_to_top_of_window": 0, + "overhangs_left_depth": 0, + "overhangs_left_distance_to_top_of_window": 0, + "overhangs_right_depth": 0, + "overhangs_right_distance_to_top_of_window": 0, + "plug_loads_other_annual_kwh": "819.0", + "plug_loads_other_frac_latent": "0.045", + "plug_loads_other_frac_sensible": "0.855", + "plug_loads_other_usage_multiplier": 1.0, + "plug_loads_television_annual_kwh": "620.0", + "plug_loads_television_usage_multiplier": 1.0, + "plug_loads_vehicle_annual_kwh": "auto", + "plug_loads_vehicle_present": false, + "plug_loads_vehicle_usage_multiplier": 0.0, + "plug_loads_well_pump_annual_kwh": "auto", + "plug_loads_well_pump_present": false, + "plug_loads_well_pump_usage_multiplier": 0.0, + "pool_heater_annual_kwh": "auto", + "pool_heater_annual_therm": "auto", + "pool_heater_type": "electric resistance", + "pool_heater_usage_multiplier": 1.0, + "pool_present": false, + "pool_pump_annual_kwh": "auto", + "pool_pump_usage_multiplier": 1.0, + "pv_system_array_azimuth_1": 180, + "pv_system_array_azimuth_2": 180, + "pv_system_array_tilt_1": "20", + "pv_system_array_tilt_2": "20", + "pv_system_inverter_efficiency_1": 0.96, + "pv_system_inverter_efficiency_2": 0.96, + "pv_system_location_1": "auto", + "pv_system_location_2": "auto", + "pv_system_max_power_output_1": 4000, + "pv_system_max_power_output_2": 4000, + "pv_system_module_type_1": "none", + "pv_system_module_type_2": "none", + "pv_system_num_units_served_1": 1, + "pv_system_num_units_served_2": 1, + "pv_system_system_losses_fraction_1": 0.14, + "pv_system_system_losses_fraction_2": 0.14, + "pv_system_tracking_1": "auto", + "pv_system_tracking_2": "auto", + "refrigerator_location": "living space", + "refrigerator_rated_annual_kwh": "650.0", + "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, + "roof_assembly_r": 2.3, + "roof_color": "medium", + "roof_material_type": "asphalt or fiberglass shingles", + "roof_radiant_barrier": false, + "roof_radiant_barrier_grade": "1", + "schedules_type": "default", + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", + "simulation_control_timestep": "60", + "site_type": "suburban", + "skylight_area_back": 0, + "skylight_area_front": 0, + "skylight_area_left": 0, + "skylight_area_right": 0, + "skylight_shgc": 0.45, + "skylight_ufactor": 0.33, + "slab_carpet_fraction": "0.0", + "slab_carpet_r": "0.0", + "slab_perimeter_depth": 0, + "slab_perimeter_insulation_r": 0, + "slab_thickness": "4.0", + "slab_under_insulation_r": 0, + "slab_under_width": 0, + "solar_thermal_collector_area": 40.0, + "solar_thermal_collector_azimuth": 180, + "solar_thermal_collector_loop_type": "liquid direct", + "solar_thermal_collector_rated_optical_efficiency": 0.5, + "solar_thermal_collector_rated_thermal_losses": 0.2799, + "solar_thermal_collector_tilt": "20", + "solar_thermal_collector_type": "evacuated tube", + "solar_thermal_solar_fraction": 0, + "solar_thermal_storage_volume": "auto", + "solar_thermal_system_type": "none", + "wall_assembly_r": 23, + "wall_color": "medium", + "wall_siding_type": "wood siding", + "wall_type": "WoodStud", + "water_fixtures_shower_low_flow": true, + "water_fixtures_sink_low_flow": false, + "water_fixtures_usage_multiplier": 1.0, + "water_heater_efficiency": 0.95, + "water_heater_efficiency_type": "EnergyFactor", + "water_heater_fuel_type": "electricity", + "water_heater_jacket_rvalue": 0, + "water_heater_location": "living space", + "water_heater_num_units_served": 1, + "water_heater_recovery_efficiency": "0.76", + "water_heater_setpoint_temperature": "125", + "water_heater_standby_loss": 0, + "water_heater_tank_volume": "40", + "water_heater_type": "storage water heater", + "weather_station_epw_filepath": "USA_CO_Denver.Intl.AP.725650_TMY3.epw", + "whole_house_fan_flow_rate": 4500, + "whole_house_fan_power": 300, + "whole_house_fan_present": false, + "window_area_back": 0, + "window_area_front": 0, + "window_area_left": 0, + "window_area_right": 0, + "window_aspect_ratio": 1.333, + "window_back_wwr": 0.18, + "window_fraction_operable": 0.67, + "window_front_wwr": 0.18, + "window_interior_shading_summer": 0.7, + "window_interior_shading_winter": 0.85, + "window_left_wwr": 0.18, + "window_right_wwr": 0.18, + "window_shgc": 0.45, + "window_ufactor": 0.33 + }, + "measure_dir_name": "BuildResidentialHPXML" + } + ] +} \ No newline at end of file diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-slab-middle-bottom-double-loaded-interior.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-slab-middle-bottom-double-loaded-interior.osw new file mode 100644 index 00000000..fd8c351e --- /dev/null +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-slab-middle-bottom-double-loaded-interior.osw @@ -0,0 +1,341 @@ +{ + "measure_paths": [ + "../.." + ], + "steps": [ + { + "arguments": { + "air_leakage_house_pressure": 50, + "air_leakage_shielding_of_home": "auto", + "air_leakage_units": "ACH", + "air_leakage_value": 3, + "bathroom_fans_quantity": "0", + "ceiling_assembly_r": 39.3, + "ceiling_fan_cooling_setpoint_temp_offset": 0, + "ceiling_fan_efficiency": "auto", + "ceiling_fan_present": false, + "ceiling_fan_quantity": "auto", + "clothes_dryer_efficiency": "3.73", + "clothes_dryer_efficiency_type": "CombinedEnergyFactor", + "clothes_dryer_fuel_type": "electricity", + "clothes_dryer_location": "living space", + "clothes_dryer_usage_multiplier": 1.0, + "clothes_dryer_vented_flow_rate": "150.0", + "clothes_washer_capacity": "3.2", + "clothes_washer_efficiency": "1.21", + "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", + "clothes_washer_label_annual_gas_cost": "27.0", + "clothes_washer_label_electric_rate": "0.12", + "clothes_washer_label_gas_rate": "1.09", + "clothes_washer_label_usage": "6.0", + "clothes_washer_location": "living space", + "clothes_washer_rated_annual_kwh": "380.0", + "clothes_washer_usage_multiplier": 1.0, + "cooking_range_oven_fuel_type": "electricity", + "cooking_range_oven_is_convection": false, + "cooking_range_oven_is_induction": false, + "cooking_range_oven_location": "living space", + "cooking_range_oven_usage_multiplier": 1.0, + "cooling_system_cooling_capacity": "48000.0", + "cooling_system_cooling_compressor_type": "single stage", + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", + "cooling_system_cooling_sensible_heat_fraction": 0.73, + "cooling_system_fraction_cool_load_served": 1, + "cooling_system_is_ducted": false, + "cooling_system_type": "central air conditioner", + "dehumidifier_capacity": 40, + "dehumidifier_efficiency": 1.8, + "dehumidifier_efficiency_type": "EnergyFactor", + "dehumidifier_fraction_dehumidification_load_served": 1, + "dehumidifier_rh_setpoint": 0.5, + "dehumidifier_type": "none", + "dhw_distribution_pipe_r": "0.0", + "dhw_distribution_recirc_branch_piping_length": "50", + "dhw_distribution_recirc_control_type": "no control", + "dhw_distribution_recirc_piping_length": "50", + "dhw_distribution_recirc_pump_power": "50", + "dhw_distribution_standard_piping_length": "50", + "dhw_distribution_system_type": "Standard", + "dishwasher_efficiency": "307", + "dishwasher_efficiency_type": "RatedAnnualkWh", + "dishwasher_label_annual_gas_cost": "22.32", + "dishwasher_label_electric_rate": "0.12", + "dishwasher_label_gas_rate": "1.09", + "dishwasher_label_usage": "4.0", + "dishwasher_location": "living space", + "dishwasher_place_setting_capacity": "12", + "dishwasher_usage_multiplier": 1.0, + "door_area": 20.0, + "door_rvalue": 4.4, + "ducts_number_of_return_registers": "1", + "ducts_return_insulation_r": 0.0, + "ducts_return_leakage_units": "CFM25", + "ducts_return_leakage_value": 0.0, + "ducts_return_location": "living space", + "ducts_return_surface_area": "50.0", + "ducts_supply_insulation_r": 0.0, + "ducts_supply_leakage_units": "CFM25", + "ducts_supply_leakage_value": 0.0, + "ducts_supply_location": "living space", + "ducts_supply_surface_area": "150.0", + "dwhr_efficiency": 0.55, + "dwhr_equal_flow": true, + "dwhr_facilities_connected": "none", + "extra_refrigerator_location": "none", + "extra_refrigerator_rated_annual_kwh": "auto", + "extra_refrigerator_usage_multiplier": 1.0, + "floor_assembly_r": 0, + "foundation_wall_insulation_distance_to_bottom": "auto", + "foundation_wall_insulation_distance_to_top": 0.0, + "foundation_wall_insulation_r": 8.9, + "foundation_wall_thickness": "8.0", + "freezer_location": "none", + "freezer_rated_annual_kwh": "auto", + "freezer_usage_multiplier": 1.0, + "fuel_loads_fireplace_annual_therm": "auto", + "fuel_loads_fireplace_frac_latent": "auto", + "fuel_loads_fireplace_frac_sensible": "auto", + "fuel_loads_fireplace_fuel_type": "natural gas", + "fuel_loads_fireplace_present": false, + "fuel_loads_fireplace_usage_multiplier": 0.0, + "fuel_loads_grill_annual_therm": "auto", + "fuel_loads_grill_fuel_type": "natural gas", + "fuel_loads_grill_present": false, + "fuel_loads_grill_usage_multiplier": 0.0, + "fuel_loads_lighting_annual_therm": "auto", + "fuel_loads_lighting_fuel_type": "natural gas", + "fuel_loads_lighting_present": false, + "fuel_loads_lighting_usage_multiplier": 0.0, + "geometry_aspect_ratio": 1.5, + "geometry_attic_type": "UnventedAttic", + "geometry_balcony_depth": 0.0, + "geometry_building_num_bedrooms": 150, + "geometry_building_num_units": 50, + "geometry_cfa": 900.0, + "geometry_corridor_position": "Double-Loaded Interior", + "geometry_corridor_width": 10.0, + "geometry_eaves_depth": 0, + "geometry_foundation_height": 0.0, + "geometry_foundation_height_above_grade": 0.0, + "geometry_foundation_type": "SlabOnGrade", + "geometry_garage_depth": 20.0, + "geometry_garage_position": "Right", + "geometry_garage_protrusion": 0.0, + "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", + "geometry_horizontal_location": "Middle", + "geometry_inset_depth": 0.0, + "geometry_inset_position": "Right", + "geometry_inset_width": 0.0, + "geometry_level": "Bottom", + "geometry_num_bathrooms": "2", + "geometry_num_bedrooms": 3, + "geometry_num_floors_above_grade": 5, + "geometry_num_occupants": "3", + "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, + "geometry_roof_pitch": "6:12", + "geometry_roof_type": "gable", + "geometry_unit_type": "apartment unit", + "geometry_wall_height": 8.0, + "heat_pump_backup_fuel": "none", + "heat_pump_backup_heating_capacity": "34121.0", + "heat_pump_backup_heating_efficiency": 1, + "heat_pump_cooling_capacity": "48000.0", + "heat_pump_cooling_compressor_type": "single stage", + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", + "heat_pump_cooling_sensible_heat_fraction": 0.73, + "heat_pump_fraction_cool_load_served": 1, + "heat_pump_fraction_heat_load_served": 1, + "heat_pump_heating_capacity": "64000.0", + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", + "heat_pump_type": "none", + "heating_system_fraction_heat_load_served": 1, + "heating_system_fraction_heat_load_served_2": 0.25, + "heating_system_fuel": "natural gas", + "heating_system_fuel_2": "electricity", + "heating_system_heating_capacity": "64000.0", + "heating_system_heating_capacity_2": "auto", + "heating_system_heating_efficiency": 0.92, + "heating_system_heating_efficiency_2": 1.0, + "heating_system_type": "Furnace", + "heating_system_type_2": "none", + "holiday_lighting_daily_kwh": "auto", + "holiday_lighting_period_begin_day_of_month": "auto", + "holiday_lighting_period_begin_month": "auto", + "holiday_lighting_period_end_day_of_month": "auto", + "holiday_lighting_period_end_month": "auto", + "holiday_lighting_present": false, + "hot_tub_heater_annual_kwh": "auto", + "hot_tub_heater_annual_therm": "auto", + "hot_tub_heater_type": "electric resistance", + "hot_tub_heater_usage_multiplier": 1.0, + "hot_tub_present": false, + "hot_tub_pump_annual_kwh": "auto", + "hot_tub_pump_usage_multiplier": 1.0, + "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/extra-bldgtype-multifamily-slab-middle-bottom-double-loaded-interior.xml", + "kitchen_fans_quantity": "0", + "lighting_fraction_cfl_exterior": 0.4, + "lighting_fraction_cfl_garage": 0.4, + "lighting_fraction_cfl_interior": 0.4, + "lighting_fraction_led_exterior": 0.25, + "lighting_fraction_led_garage": 0.25, + "lighting_fraction_led_interior": 0.25, + "lighting_fraction_lfl_exterior": 0.1, + "lighting_fraction_lfl_garage": 0.1, + "lighting_fraction_lfl_interior": 0.1, + "lighting_usage_multiplier_exterior": 1.0, + "lighting_usage_multiplier_garage": 1.0, + "lighting_usage_multiplier_interior": 1.0, + "mech_vent_fan_power": 30, + "mech_vent_fan_power_2": 30, + "mech_vent_fan_type": "none", + "mech_vent_fan_type_2": "none", + "mech_vent_flow_rate": 110, + "mech_vent_flow_rate_2": 110, + "mech_vent_hours_in_operation": 24, + "mech_vent_hours_in_operation_2": 24, + "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", + "mech_vent_sensible_recovery_efficiency": 0.72, + "mech_vent_sensible_recovery_efficiency_2": 0.72, + "mech_vent_total_recovery_efficiency": 0.48, + "mech_vent_total_recovery_efficiency_2": 0.48, + "neighbor_back_distance": 0, + "neighbor_back_height": "auto", + "neighbor_front_distance": 0, + "neighbor_front_height": "auto", + "neighbor_left_distance": 0, + "neighbor_left_height": "auto", + "neighbor_right_distance": 0, + "neighbor_right_height": "auto", + "overhangs_back_depth": 0, + "overhangs_back_distance_to_top_of_window": 0, + "overhangs_front_depth": 0, + "overhangs_front_distance_to_top_of_window": 0, + "overhangs_left_depth": 0, + "overhangs_left_distance_to_top_of_window": 0, + "overhangs_right_depth": 0, + "overhangs_right_distance_to_top_of_window": 0, + "plug_loads_other_annual_kwh": "819.0", + "plug_loads_other_frac_latent": "0.045", + "plug_loads_other_frac_sensible": "0.855", + "plug_loads_other_usage_multiplier": 1.0, + "plug_loads_television_annual_kwh": "620.0", + "plug_loads_television_usage_multiplier": 1.0, + "plug_loads_vehicle_annual_kwh": "auto", + "plug_loads_vehicle_present": false, + "plug_loads_vehicle_usage_multiplier": 0.0, + "plug_loads_well_pump_annual_kwh": "auto", + "plug_loads_well_pump_present": false, + "plug_loads_well_pump_usage_multiplier": 0.0, + "pool_heater_annual_kwh": "auto", + "pool_heater_annual_therm": "auto", + "pool_heater_type": "electric resistance", + "pool_heater_usage_multiplier": 1.0, + "pool_present": false, + "pool_pump_annual_kwh": "auto", + "pool_pump_usage_multiplier": 1.0, + "pv_system_array_azimuth_1": 180, + "pv_system_array_azimuth_2": 180, + "pv_system_array_tilt_1": "20", + "pv_system_array_tilt_2": "20", + "pv_system_inverter_efficiency_1": 0.96, + "pv_system_inverter_efficiency_2": 0.96, + "pv_system_location_1": "auto", + "pv_system_location_2": "auto", + "pv_system_max_power_output_1": 4000, + "pv_system_max_power_output_2": 4000, + "pv_system_module_type_1": "none", + "pv_system_module_type_2": "none", + "pv_system_num_units_served_1": 1, + "pv_system_num_units_served_2": 1, + "pv_system_system_losses_fraction_1": 0.14, + "pv_system_system_losses_fraction_2": 0.14, + "pv_system_tracking_1": "auto", + "pv_system_tracking_2": "auto", + "refrigerator_location": "living space", + "refrigerator_rated_annual_kwh": "650.0", + "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, + "roof_assembly_r": 2.3, + "roof_color": "medium", + "roof_material_type": "asphalt or fiberglass shingles", + "roof_radiant_barrier": false, + "roof_radiant_barrier_grade": "1", + "schedules_type": "default", + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", + "simulation_control_timestep": "60", + "site_type": "suburban", + "skylight_area_back": 0, + "skylight_area_front": 0, + "skylight_area_left": 0, + "skylight_area_right": 0, + "skylight_shgc": 0.45, + "skylight_ufactor": 0.33, + "slab_carpet_fraction": "0.0", + "slab_carpet_r": "0.0", + "slab_perimeter_depth": 0, + "slab_perimeter_insulation_r": 0, + "slab_thickness": "4.0", + "slab_under_insulation_r": 0, + "slab_under_width": 0, + "solar_thermal_collector_area": 40.0, + "solar_thermal_collector_azimuth": 180, + "solar_thermal_collector_loop_type": "liquid direct", + "solar_thermal_collector_rated_optical_efficiency": 0.5, + "solar_thermal_collector_rated_thermal_losses": 0.2799, + "solar_thermal_collector_tilt": "20", + "solar_thermal_collector_type": "evacuated tube", + "solar_thermal_solar_fraction": 0, + "solar_thermal_storage_volume": "auto", + "solar_thermal_system_type": "none", + "wall_assembly_r": 23, + "wall_color": "medium", + "wall_siding_type": "wood siding", + "wall_type": "WoodStud", + "water_fixtures_shower_low_flow": true, + "water_fixtures_sink_low_flow": false, + "water_fixtures_usage_multiplier": 1.0, + "water_heater_efficiency": 0.95, + "water_heater_efficiency_type": "EnergyFactor", + "water_heater_fuel_type": "electricity", + "water_heater_jacket_rvalue": 0, + "water_heater_location": "living space", + "water_heater_num_units_served": 1, + "water_heater_recovery_efficiency": "0.76", + "water_heater_setpoint_temperature": "125", + "water_heater_standby_loss": 0, + "water_heater_tank_volume": "40", + "water_heater_type": "storage water heater", + "weather_station_epw_filepath": "USA_CO_Denver.Intl.AP.725650_TMY3.epw", + "whole_house_fan_flow_rate": 4500, + "whole_house_fan_power": 300, + "whole_house_fan_present": false, + "window_area_back": 0, + "window_area_front": 0, + "window_area_left": 0, + "window_area_right": 0, + "window_aspect_ratio": 1.333, + "window_back_wwr": 0.18, + "window_fraction_operable": 0.67, + "window_front_wwr": 0.18, + "window_interior_shading_summer": 0.7, + "window_interior_shading_winter": 0.85, + "window_left_wwr": 0.18, + "window_right_wwr": 0.18, + "window_shgc": 0.45, + "window_ufactor": 0.33 + }, + "measure_dir_name": "BuildResidentialHPXML" + } + ] +} \ No newline at end of file diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-slab-middle-bottom.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-slab-middle-bottom.osw new file mode 100644 index 00000000..efcae43b --- /dev/null +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-slab-middle-bottom.osw @@ -0,0 +1,341 @@ +{ + "measure_paths": [ + "../.." + ], + "steps": [ + { + "arguments": { + "air_leakage_house_pressure": 50, + "air_leakage_shielding_of_home": "auto", + "air_leakage_units": "ACH", + "air_leakage_value": 3, + "bathroom_fans_quantity": "0", + "ceiling_assembly_r": 39.3, + "ceiling_fan_cooling_setpoint_temp_offset": 0, + "ceiling_fan_efficiency": "auto", + "ceiling_fan_present": false, + "ceiling_fan_quantity": "auto", + "clothes_dryer_efficiency": "3.73", + "clothes_dryer_efficiency_type": "CombinedEnergyFactor", + "clothes_dryer_fuel_type": "electricity", + "clothes_dryer_location": "living space", + "clothes_dryer_usage_multiplier": 1.0, + "clothes_dryer_vented_flow_rate": "150.0", + "clothes_washer_capacity": "3.2", + "clothes_washer_efficiency": "1.21", + "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", + "clothes_washer_label_annual_gas_cost": "27.0", + "clothes_washer_label_electric_rate": "0.12", + "clothes_washer_label_gas_rate": "1.09", + "clothes_washer_label_usage": "6.0", + "clothes_washer_location": "living space", + "clothes_washer_rated_annual_kwh": "380.0", + "clothes_washer_usage_multiplier": 1.0, + "cooking_range_oven_fuel_type": "electricity", + "cooking_range_oven_is_convection": false, + "cooking_range_oven_is_induction": false, + "cooking_range_oven_location": "living space", + "cooking_range_oven_usage_multiplier": 1.0, + "cooling_system_cooling_capacity": "48000.0", + "cooling_system_cooling_compressor_type": "single stage", + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", + "cooling_system_cooling_sensible_heat_fraction": 0.73, + "cooling_system_fraction_cool_load_served": 1, + "cooling_system_is_ducted": false, + "cooling_system_type": "central air conditioner", + "dehumidifier_capacity": 40, + "dehumidifier_efficiency": 1.8, + "dehumidifier_efficiency_type": "EnergyFactor", + "dehumidifier_fraction_dehumidification_load_served": 1, + "dehumidifier_rh_setpoint": 0.5, + "dehumidifier_type": "none", + "dhw_distribution_pipe_r": "0.0", + "dhw_distribution_recirc_branch_piping_length": "50", + "dhw_distribution_recirc_control_type": "no control", + "dhw_distribution_recirc_piping_length": "50", + "dhw_distribution_recirc_pump_power": "50", + "dhw_distribution_standard_piping_length": "50", + "dhw_distribution_system_type": "Standard", + "dishwasher_efficiency": "307", + "dishwasher_efficiency_type": "RatedAnnualkWh", + "dishwasher_label_annual_gas_cost": "22.32", + "dishwasher_label_electric_rate": "0.12", + "dishwasher_label_gas_rate": "1.09", + "dishwasher_label_usage": "4.0", + "dishwasher_location": "living space", + "dishwasher_place_setting_capacity": "12", + "dishwasher_usage_multiplier": 1.0, + "door_area": 20.0, + "door_rvalue": 4.4, + "ducts_number_of_return_registers": "1", + "ducts_return_insulation_r": 0.0, + "ducts_return_leakage_units": "CFM25", + "ducts_return_leakage_value": 0.0, + "ducts_return_location": "living space", + "ducts_return_surface_area": "50.0", + "ducts_supply_insulation_r": 0.0, + "ducts_supply_leakage_units": "CFM25", + "ducts_supply_leakage_value": 0.0, + "ducts_supply_location": "living space", + "ducts_supply_surface_area": "150.0", + "dwhr_efficiency": 0.55, + "dwhr_equal_flow": true, + "dwhr_facilities_connected": "none", + "extra_refrigerator_location": "none", + "extra_refrigerator_rated_annual_kwh": "auto", + "extra_refrigerator_usage_multiplier": 1.0, + "floor_assembly_r": 0, + "foundation_wall_insulation_distance_to_bottom": "auto", + "foundation_wall_insulation_distance_to_top": 0.0, + "foundation_wall_insulation_r": 8.9, + "foundation_wall_thickness": "8.0", + "freezer_location": "none", + "freezer_rated_annual_kwh": "auto", + "freezer_usage_multiplier": 1.0, + "fuel_loads_fireplace_annual_therm": "auto", + "fuel_loads_fireplace_frac_latent": "auto", + "fuel_loads_fireplace_frac_sensible": "auto", + "fuel_loads_fireplace_fuel_type": "natural gas", + "fuel_loads_fireplace_present": false, + "fuel_loads_fireplace_usage_multiplier": 0.0, + "fuel_loads_grill_annual_therm": "auto", + "fuel_loads_grill_fuel_type": "natural gas", + "fuel_loads_grill_present": false, + "fuel_loads_grill_usage_multiplier": 0.0, + "fuel_loads_lighting_annual_therm": "auto", + "fuel_loads_lighting_fuel_type": "natural gas", + "fuel_loads_lighting_present": false, + "fuel_loads_lighting_usage_multiplier": 0.0, + "geometry_aspect_ratio": 1.5, + "geometry_attic_type": "UnventedAttic", + "geometry_balcony_depth": 0.0, + "geometry_building_num_bedrooms": 150, + "geometry_building_num_units": 50, + "geometry_cfa": 900.0, + "geometry_corridor_position": "None", + "geometry_corridor_width": 10.0, + "geometry_eaves_depth": 0, + "geometry_foundation_height": 0.0, + "geometry_foundation_height_above_grade": 0.0, + "geometry_foundation_type": "SlabOnGrade", + "geometry_garage_depth": 20.0, + "geometry_garage_position": "Right", + "geometry_garage_protrusion": 0.0, + "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", + "geometry_horizontal_location": "Middle", + "geometry_inset_depth": 0.0, + "geometry_inset_position": "Right", + "geometry_inset_width": 0.0, + "geometry_level": "Bottom", + "geometry_num_bathrooms": "2", + "geometry_num_bedrooms": 3, + "geometry_num_floors_above_grade": 5, + "geometry_num_occupants": "3", + "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, + "geometry_roof_pitch": "6:12", + "geometry_roof_type": "gable", + "geometry_unit_type": "apartment unit", + "geometry_wall_height": 8.0, + "heat_pump_backup_fuel": "none", + "heat_pump_backup_heating_capacity": "34121.0", + "heat_pump_backup_heating_efficiency": 1, + "heat_pump_cooling_capacity": "48000.0", + "heat_pump_cooling_compressor_type": "single stage", + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", + "heat_pump_cooling_sensible_heat_fraction": 0.73, + "heat_pump_fraction_cool_load_served": 1, + "heat_pump_fraction_heat_load_served": 1, + "heat_pump_heating_capacity": "64000.0", + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", + "heat_pump_type": "none", + "heating_system_fraction_heat_load_served": 1, + "heating_system_fraction_heat_load_served_2": 0.25, + "heating_system_fuel": "natural gas", + "heating_system_fuel_2": "electricity", + "heating_system_heating_capacity": "64000.0", + "heating_system_heating_capacity_2": "auto", + "heating_system_heating_efficiency": 0.92, + "heating_system_heating_efficiency_2": 1.0, + "heating_system_type": "Furnace", + "heating_system_type_2": "none", + "holiday_lighting_daily_kwh": "auto", + "holiday_lighting_period_begin_day_of_month": "auto", + "holiday_lighting_period_begin_month": "auto", + "holiday_lighting_period_end_day_of_month": "auto", + "holiday_lighting_period_end_month": "auto", + "holiday_lighting_present": false, + "hot_tub_heater_annual_kwh": "auto", + "hot_tub_heater_annual_therm": "auto", + "hot_tub_heater_type": "electric resistance", + "hot_tub_heater_usage_multiplier": 1.0, + "hot_tub_present": false, + "hot_tub_pump_annual_kwh": "auto", + "hot_tub_pump_usage_multiplier": 1.0, + "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/extra-bldgtype-multifamily-slab-middle-bottom.xml", + "kitchen_fans_quantity": "0", + "lighting_fraction_cfl_exterior": 0.4, + "lighting_fraction_cfl_garage": 0.4, + "lighting_fraction_cfl_interior": 0.4, + "lighting_fraction_led_exterior": 0.25, + "lighting_fraction_led_garage": 0.25, + "lighting_fraction_led_interior": 0.25, + "lighting_fraction_lfl_exterior": 0.1, + "lighting_fraction_lfl_garage": 0.1, + "lighting_fraction_lfl_interior": 0.1, + "lighting_usage_multiplier_exterior": 1.0, + "lighting_usage_multiplier_garage": 1.0, + "lighting_usage_multiplier_interior": 1.0, + "mech_vent_fan_power": 30, + "mech_vent_fan_power_2": 30, + "mech_vent_fan_type": "none", + "mech_vent_fan_type_2": "none", + "mech_vent_flow_rate": 110, + "mech_vent_flow_rate_2": 110, + "mech_vent_hours_in_operation": 24, + "mech_vent_hours_in_operation_2": 24, + "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", + "mech_vent_sensible_recovery_efficiency": 0.72, + "mech_vent_sensible_recovery_efficiency_2": 0.72, + "mech_vent_total_recovery_efficiency": 0.48, + "mech_vent_total_recovery_efficiency_2": 0.48, + "neighbor_back_distance": 0, + "neighbor_back_height": "auto", + "neighbor_front_distance": 0, + "neighbor_front_height": "auto", + "neighbor_left_distance": 0, + "neighbor_left_height": "auto", + "neighbor_right_distance": 0, + "neighbor_right_height": "auto", + "overhangs_back_depth": 0, + "overhangs_back_distance_to_top_of_window": 0, + "overhangs_front_depth": 0, + "overhangs_front_distance_to_top_of_window": 0, + "overhangs_left_depth": 0, + "overhangs_left_distance_to_top_of_window": 0, + "overhangs_right_depth": 0, + "overhangs_right_distance_to_top_of_window": 0, + "plug_loads_other_annual_kwh": "819.0", + "plug_loads_other_frac_latent": "0.045", + "plug_loads_other_frac_sensible": "0.855", + "plug_loads_other_usage_multiplier": 1.0, + "plug_loads_television_annual_kwh": "620.0", + "plug_loads_television_usage_multiplier": 1.0, + "plug_loads_vehicle_annual_kwh": "auto", + "plug_loads_vehicle_present": false, + "plug_loads_vehicle_usage_multiplier": 0.0, + "plug_loads_well_pump_annual_kwh": "auto", + "plug_loads_well_pump_present": false, + "plug_loads_well_pump_usage_multiplier": 0.0, + "pool_heater_annual_kwh": "auto", + "pool_heater_annual_therm": "auto", + "pool_heater_type": "electric resistance", + "pool_heater_usage_multiplier": 1.0, + "pool_present": false, + "pool_pump_annual_kwh": "auto", + "pool_pump_usage_multiplier": 1.0, + "pv_system_array_azimuth_1": 180, + "pv_system_array_azimuth_2": 180, + "pv_system_array_tilt_1": "20", + "pv_system_array_tilt_2": "20", + "pv_system_inverter_efficiency_1": 0.96, + "pv_system_inverter_efficiency_2": 0.96, + "pv_system_location_1": "auto", + "pv_system_location_2": "auto", + "pv_system_max_power_output_1": 4000, + "pv_system_max_power_output_2": 4000, + "pv_system_module_type_1": "none", + "pv_system_module_type_2": "none", + "pv_system_num_units_served_1": 1, + "pv_system_num_units_served_2": 1, + "pv_system_system_losses_fraction_1": 0.14, + "pv_system_system_losses_fraction_2": 0.14, + "pv_system_tracking_1": "auto", + "pv_system_tracking_2": "auto", + "refrigerator_location": "living space", + "refrigerator_rated_annual_kwh": "650.0", + "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, + "roof_assembly_r": 2.3, + "roof_color": "medium", + "roof_material_type": "asphalt or fiberglass shingles", + "roof_radiant_barrier": false, + "roof_radiant_barrier_grade": "1", + "schedules_type": "default", + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", + "simulation_control_timestep": "60", + "site_type": "suburban", + "skylight_area_back": 0, + "skylight_area_front": 0, + "skylight_area_left": 0, + "skylight_area_right": 0, + "skylight_shgc": 0.45, + "skylight_ufactor": 0.33, + "slab_carpet_fraction": "0.0", + "slab_carpet_r": "0.0", + "slab_perimeter_depth": 0, + "slab_perimeter_insulation_r": 0, + "slab_thickness": "4.0", + "slab_under_insulation_r": 0, + "slab_under_width": 0, + "solar_thermal_collector_area": 40.0, + "solar_thermal_collector_azimuth": 180, + "solar_thermal_collector_loop_type": "liquid direct", + "solar_thermal_collector_rated_optical_efficiency": 0.5, + "solar_thermal_collector_rated_thermal_losses": 0.2799, + "solar_thermal_collector_tilt": "20", + "solar_thermal_collector_type": "evacuated tube", + "solar_thermal_solar_fraction": 0, + "solar_thermal_storage_volume": "auto", + "solar_thermal_system_type": "none", + "wall_assembly_r": 23, + "wall_color": "medium", + "wall_siding_type": "wood siding", + "wall_type": "WoodStud", + "water_fixtures_shower_low_flow": true, + "water_fixtures_sink_low_flow": false, + "water_fixtures_usage_multiplier": 1.0, + "water_heater_efficiency": 0.95, + "water_heater_efficiency_type": "EnergyFactor", + "water_heater_fuel_type": "electricity", + "water_heater_jacket_rvalue": 0, + "water_heater_location": "living space", + "water_heater_num_units_served": 1, + "water_heater_recovery_efficiency": "0.76", + "water_heater_setpoint_temperature": "125", + "water_heater_standby_loss": 0, + "water_heater_tank_volume": "40", + "water_heater_type": "storage water heater", + "weather_station_epw_filepath": "USA_CO_Denver.Intl.AP.725650_TMY3.epw", + "whole_house_fan_flow_rate": 4500, + "whole_house_fan_power": 300, + "whole_house_fan_present": false, + "window_area_back": 0, + "window_area_front": 0, + "window_area_left": 0, + "window_area_right": 0, + "window_aspect_ratio": 1.333, + "window_back_wwr": 0.18, + "window_fraction_operable": 0.67, + "window_front_wwr": 0.18, + "window_interior_shading_summer": 0.7, + "window_interior_shading_winter": 0.85, + "window_left_wwr": 0.18, + "window_right_wwr": 0.18, + "window_shgc": 0.45, + "window_ufactor": 0.33 + }, + "measure_dir_name": "BuildResidentialHPXML" + } + ] +} \ No newline at end of file diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-slab-middle-middle-double-loaded-interior.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-slab-middle-middle-double-loaded-interior.osw new file mode 100644 index 00000000..e611ecd1 --- /dev/null +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-slab-middle-middle-double-loaded-interior.osw @@ -0,0 +1,341 @@ +{ + "measure_paths": [ + "../.." + ], + "steps": [ + { + "arguments": { + "air_leakage_house_pressure": 50, + "air_leakage_shielding_of_home": "auto", + "air_leakage_units": "ACH", + "air_leakage_value": 3, + "bathroom_fans_quantity": "0", + "ceiling_assembly_r": 39.3, + "ceiling_fan_cooling_setpoint_temp_offset": 0, + "ceiling_fan_efficiency": "auto", + "ceiling_fan_present": false, + "ceiling_fan_quantity": "auto", + "clothes_dryer_efficiency": "3.73", + "clothes_dryer_efficiency_type": "CombinedEnergyFactor", + "clothes_dryer_fuel_type": "electricity", + "clothes_dryer_location": "living space", + "clothes_dryer_usage_multiplier": 1.0, + "clothes_dryer_vented_flow_rate": "150.0", + "clothes_washer_capacity": "3.2", + "clothes_washer_efficiency": "1.21", + "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", + "clothes_washer_label_annual_gas_cost": "27.0", + "clothes_washer_label_electric_rate": "0.12", + "clothes_washer_label_gas_rate": "1.09", + "clothes_washer_label_usage": "6.0", + "clothes_washer_location": "living space", + "clothes_washer_rated_annual_kwh": "380.0", + "clothes_washer_usage_multiplier": 1.0, + "cooking_range_oven_fuel_type": "electricity", + "cooking_range_oven_is_convection": false, + "cooking_range_oven_is_induction": false, + "cooking_range_oven_location": "living space", + "cooking_range_oven_usage_multiplier": 1.0, + "cooling_system_cooling_capacity": "48000.0", + "cooling_system_cooling_compressor_type": "single stage", + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", + "cooling_system_cooling_sensible_heat_fraction": 0.73, + "cooling_system_fraction_cool_load_served": 1, + "cooling_system_is_ducted": false, + "cooling_system_type": "central air conditioner", + "dehumidifier_capacity": 40, + "dehumidifier_efficiency": 1.8, + "dehumidifier_efficiency_type": "EnergyFactor", + "dehumidifier_fraction_dehumidification_load_served": 1, + "dehumidifier_rh_setpoint": 0.5, + "dehumidifier_type": "none", + "dhw_distribution_pipe_r": "0.0", + "dhw_distribution_recirc_branch_piping_length": "50", + "dhw_distribution_recirc_control_type": "no control", + "dhw_distribution_recirc_piping_length": "50", + "dhw_distribution_recirc_pump_power": "50", + "dhw_distribution_standard_piping_length": "50", + "dhw_distribution_system_type": "Standard", + "dishwasher_efficiency": "307", + "dishwasher_efficiency_type": "RatedAnnualkWh", + "dishwasher_label_annual_gas_cost": "22.32", + "dishwasher_label_electric_rate": "0.12", + "dishwasher_label_gas_rate": "1.09", + "dishwasher_label_usage": "4.0", + "dishwasher_location": "living space", + "dishwasher_place_setting_capacity": "12", + "dishwasher_usage_multiplier": 1.0, + "door_area": 20.0, + "door_rvalue": 4.4, + "ducts_number_of_return_registers": "1", + "ducts_return_insulation_r": 0.0, + "ducts_return_leakage_units": "CFM25", + "ducts_return_leakage_value": 0.0, + "ducts_return_location": "living space", + "ducts_return_surface_area": "50.0", + "ducts_supply_insulation_r": 0.0, + "ducts_supply_leakage_units": "CFM25", + "ducts_supply_leakage_value": 0.0, + "ducts_supply_location": "living space", + "ducts_supply_surface_area": "150.0", + "dwhr_efficiency": 0.55, + "dwhr_equal_flow": true, + "dwhr_facilities_connected": "none", + "extra_refrigerator_location": "none", + "extra_refrigerator_rated_annual_kwh": "auto", + "extra_refrigerator_usage_multiplier": 1.0, + "floor_assembly_r": 0, + "foundation_wall_insulation_distance_to_bottom": "auto", + "foundation_wall_insulation_distance_to_top": 0.0, + "foundation_wall_insulation_r": 8.9, + "foundation_wall_thickness": "8.0", + "freezer_location": "none", + "freezer_rated_annual_kwh": "auto", + "freezer_usage_multiplier": 1.0, + "fuel_loads_fireplace_annual_therm": "auto", + "fuel_loads_fireplace_frac_latent": "auto", + "fuel_loads_fireplace_frac_sensible": "auto", + "fuel_loads_fireplace_fuel_type": "natural gas", + "fuel_loads_fireplace_present": false, + "fuel_loads_fireplace_usage_multiplier": 0.0, + "fuel_loads_grill_annual_therm": "auto", + "fuel_loads_grill_fuel_type": "natural gas", + "fuel_loads_grill_present": false, + "fuel_loads_grill_usage_multiplier": 0.0, + "fuel_loads_lighting_annual_therm": "auto", + "fuel_loads_lighting_fuel_type": "natural gas", + "fuel_loads_lighting_present": false, + "fuel_loads_lighting_usage_multiplier": 0.0, + "geometry_aspect_ratio": 1.5, + "geometry_attic_type": "UnventedAttic", + "geometry_balcony_depth": 0.0, + "geometry_building_num_bedrooms": 150, + "geometry_building_num_units": 50, + "geometry_cfa": 900.0, + "geometry_corridor_position": "Double-Loaded Interior", + "geometry_corridor_width": 10.0, + "geometry_eaves_depth": 0, + "geometry_foundation_height": 0.0, + "geometry_foundation_height_above_grade": 0.0, + "geometry_foundation_type": "SlabOnGrade", + "geometry_garage_depth": 20.0, + "geometry_garage_position": "Right", + "geometry_garage_protrusion": 0.0, + "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", + "geometry_horizontal_location": "Middle", + "geometry_inset_depth": 0.0, + "geometry_inset_position": "Right", + "geometry_inset_width": 0.0, + "geometry_level": "Middle", + "geometry_num_bathrooms": "2", + "geometry_num_bedrooms": 3, + "geometry_num_floors_above_grade": 5, + "geometry_num_occupants": "3", + "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, + "geometry_roof_pitch": "6:12", + "geometry_roof_type": "gable", + "geometry_unit_type": "apartment unit", + "geometry_wall_height": 8.0, + "heat_pump_backup_fuel": "none", + "heat_pump_backup_heating_capacity": "34121.0", + "heat_pump_backup_heating_efficiency": 1, + "heat_pump_cooling_capacity": "48000.0", + "heat_pump_cooling_compressor_type": "single stage", + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", + "heat_pump_cooling_sensible_heat_fraction": 0.73, + "heat_pump_fraction_cool_load_served": 1, + "heat_pump_fraction_heat_load_served": 1, + "heat_pump_heating_capacity": "64000.0", + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", + "heat_pump_type": "none", + "heating_system_fraction_heat_load_served": 1, + "heating_system_fraction_heat_load_served_2": 0.25, + "heating_system_fuel": "natural gas", + "heating_system_fuel_2": "electricity", + "heating_system_heating_capacity": "64000.0", + "heating_system_heating_capacity_2": "auto", + "heating_system_heating_efficiency": 0.92, + "heating_system_heating_efficiency_2": 1.0, + "heating_system_type": "Furnace", + "heating_system_type_2": "none", + "holiday_lighting_daily_kwh": "auto", + "holiday_lighting_period_begin_day_of_month": "auto", + "holiday_lighting_period_begin_month": "auto", + "holiday_lighting_period_end_day_of_month": "auto", + "holiday_lighting_period_end_month": "auto", + "holiday_lighting_present": false, + "hot_tub_heater_annual_kwh": "auto", + "hot_tub_heater_annual_therm": "auto", + "hot_tub_heater_type": "electric resistance", + "hot_tub_heater_usage_multiplier": 1.0, + "hot_tub_present": false, + "hot_tub_pump_annual_kwh": "auto", + "hot_tub_pump_usage_multiplier": 1.0, + "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/extra-bldgtype-multifamily-slab-middle-middle-double-loaded-interior.xml", + "kitchen_fans_quantity": "0", + "lighting_fraction_cfl_exterior": 0.4, + "lighting_fraction_cfl_garage": 0.4, + "lighting_fraction_cfl_interior": 0.4, + "lighting_fraction_led_exterior": 0.25, + "lighting_fraction_led_garage": 0.25, + "lighting_fraction_led_interior": 0.25, + "lighting_fraction_lfl_exterior": 0.1, + "lighting_fraction_lfl_garage": 0.1, + "lighting_fraction_lfl_interior": 0.1, + "lighting_usage_multiplier_exterior": 1.0, + "lighting_usage_multiplier_garage": 1.0, + "lighting_usage_multiplier_interior": 1.0, + "mech_vent_fan_power": 30, + "mech_vent_fan_power_2": 30, + "mech_vent_fan_type": "none", + "mech_vent_fan_type_2": "none", + "mech_vent_flow_rate": 110, + "mech_vent_flow_rate_2": 110, + "mech_vent_hours_in_operation": 24, + "mech_vent_hours_in_operation_2": 24, + "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", + "mech_vent_sensible_recovery_efficiency": 0.72, + "mech_vent_sensible_recovery_efficiency_2": 0.72, + "mech_vent_total_recovery_efficiency": 0.48, + "mech_vent_total_recovery_efficiency_2": 0.48, + "neighbor_back_distance": 0, + "neighbor_back_height": "auto", + "neighbor_front_distance": 0, + "neighbor_front_height": "auto", + "neighbor_left_distance": 0, + "neighbor_left_height": "auto", + "neighbor_right_distance": 0, + "neighbor_right_height": "auto", + "overhangs_back_depth": 0, + "overhangs_back_distance_to_top_of_window": 0, + "overhangs_front_depth": 0, + "overhangs_front_distance_to_top_of_window": 0, + "overhangs_left_depth": 0, + "overhangs_left_distance_to_top_of_window": 0, + "overhangs_right_depth": 0, + "overhangs_right_distance_to_top_of_window": 0, + "plug_loads_other_annual_kwh": "819.0", + "plug_loads_other_frac_latent": "0.045", + "plug_loads_other_frac_sensible": "0.855", + "plug_loads_other_usage_multiplier": 1.0, + "plug_loads_television_annual_kwh": "620.0", + "plug_loads_television_usage_multiplier": 1.0, + "plug_loads_vehicle_annual_kwh": "auto", + "plug_loads_vehicle_present": false, + "plug_loads_vehicle_usage_multiplier": 0.0, + "plug_loads_well_pump_annual_kwh": "auto", + "plug_loads_well_pump_present": false, + "plug_loads_well_pump_usage_multiplier": 0.0, + "pool_heater_annual_kwh": "auto", + "pool_heater_annual_therm": "auto", + "pool_heater_type": "electric resistance", + "pool_heater_usage_multiplier": 1.0, + "pool_present": false, + "pool_pump_annual_kwh": "auto", + "pool_pump_usage_multiplier": 1.0, + "pv_system_array_azimuth_1": 180, + "pv_system_array_azimuth_2": 180, + "pv_system_array_tilt_1": "20", + "pv_system_array_tilt_2": "20", + "pv_system_inverter_efficiency_1": 0.96, + "pv_system_inverter_efficiency_2": 0.96, + "pv_system_location_1": "auto", + "pv_system_location_2": "auto", + "pv_system_max_power_output_1": 4000, + "pv_system_max_power_output_2": 4000, + "pv_system_module_type_1": "none", + "pv_system_module_type_2": "none", + "pv_system_num_units_served_1": 1, + "pv_system_num_units_served_2": 1, + "pv_system_system_losses_fraction_1": 0.14, + "pv_system_system_losses_fraction_2": 0.14, + "pv_system_tracking_1": "auto", + "pv_system_tracking_2": "auto", + "refrigerator_location": "living space", + "refrigerator_rated_annual_kwh": "650.0", + "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, + "roof_assembly_r": 2.3, + "roof_color": "medium", + "roof_material_type": "asphalt or fiberglass shingles", + "roof_radiant_barrier": false, + "roof_radiant_barrier_grade": "1", + "schedules_type": "default", + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", + "simulation_control_timestep": "60", + "site_type": "suburban", + "skylight_area_back": 0, + "skylight_area_front": 0, + "skylight_area_left": 0, + "skylight_area_right": 0, + "skylight_shgc": 0.45, + "skylight_ufactor": 0.33, + "slab_carpet_fraction": "0.0", + "slab_carpet_r": "0.0", + "slab_perimeter_depth": 0, + "slab_perimeter_insulation_r": 0, + "slab_thickness": "4.0", + "slab_under_insulation_r": 0, + "slab_under_width": 0, + "solar_thermal_collector_area": 40.0, + "solar_thermal_collector_azimuth": 180, + "solar_thermal_collector_loop_type": "liquid direct", + "solar_thermal_collector_rated_optical_efficiency": 0.5, + "solar_thermal_collector_rated_thermal_losses": 0.2799, + "solar_thermal_collector_tilt": "20", + "solar_thermal_collector_type": "evacuated tube", + "solar_thermal_solar_fraction": 0, + "solar_thermal_storage_volume": "auto", + "solar_thermal_system_type": "none", + "wall_assembly_r": 23, + "wall_color": "medium", + "wall_siding_type": "wood siding", + "wall_type": "WoodStud", + "water_fixtures_shower_low_flow": true, + "water_fixtures_sink_low_flow": false, + "water_fixtures_usage_multiplier": 1.0, + "water_heater_efficiency": 0.95, + "water_heater_efficiency_type": "EnergyFactor", + "water_heater_fuel_type": "electricity", + "water_heater_jacket_rvalue": 0, + "water_heater_location": "living space", + "water_heater_num_units_served": 1, + "water_heater_recovery_efficiency": "0.76", + "water_heater_setpoint_temperature": "125", + "water_heater_standby_loss": 0, + "water_heater_tank_volume": "40", + "water_heater_type": "storage water heater", + "weather_station_epw_filepath": "USA_CO_Denver.Intl.AP.725650_TMY3.epw", + "whole_house_fan_flow_rate": 4500, + "whole_house_fan_power": 300, + "whole_house_fan_present": false, + "window_area_back": 0, + "window_area_front": 0, + "window_area_left": 0, + "window_area_right": 0, + "window_aspect_ratio": 1.333, + "window_back_wwr": 0.18, + "window_fraction_operable": 0.67, + "window_front_wwr": 0.18, + "window_interior_shading_summer": 0.7, + "window_interior_shading_winter": 0.85, + "window_left_wwr": 0.18, + "window_right_wwr": 0.18, + "window_shgc": 0.45, + "window_ufactor": 0.33 + }, + "measure_dir_name": "BuildResidentialHPXML" + } + ] +} \ No newline at end of file diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-slab-middle-middle.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-slab-middle-middle.osw new file mode 100644 index 00000000..a10b0c41 --- /dev/null +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-slab-middle-middle.osw @@ -0,0 +1,341 @@ +{ + "measure_paths": [ + "../.." + ], + "steps": [ + { + "arguments": { + "air_leakage_house_pressure": 50, + "air_leakage_shielding_of_home": "auto", + "air_leakage_units": "ACH", + "air_leakage_value": 3, + "bathroom_fans_quantity": "0", + "ceiling_assembly_r": 39.3, + "ceiling_fan_cooling_setpoint_temp_offset": 0, + "ceiling_fan_efficiency": "auto", + "ceiling_fan_present": false, + "ceiling_fan_quantity": "auto", + "clothes_dryer_efficiency": "3.73", + "clothes_dryer_efficiency_type": "CombinedEnergyFactor", + "clothes_dryer_fuel_type": "electricity", + "clothes_dryer_location": "living space", + "clothes_dryer_usage_multiplier": 1.0, + "clothes_dryer_vented_flow_rate": "150.0", + "clothes_washer_capacity": "3.2", + "clothes_washer_efficiency": "1.21", + "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", + "clothes_washer_label_annual_gas_cost": "27.0", + "clothes_washer_label_electric_rate": "0.12", + "clothes_washer_label_gas_rate": "1.09", + "clothes_washer_label_usage": "6.0", + "clothes_washer_location": "living space", + "clothes_washer_rated_annual_kwh": "380.0", + "clothes_washer_usage_multiplier": 1.0, + "cooking_range_oven_fuel_type": "electricity", + "cooking_range_oven_is_convection": false, + "cooking_range_oven_is_induction": false, + "cooking_range_oven_location": "living space", + "cooking_range_oven_usage_multiplier": 1.0, + "cooling_system_cooling_capacity": "48000.0", + "cooling_system_cooling_compressor_type": "single stage", + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", + "cooling_system_cooling_sensible_heat_fraction": 0.73, + "cooling_system_fraction_cool_load_served": 1, + "cooling_system_is_ducted": false, + "cooling_system_type": "central air conditioner", + "dehumidifier_capacity": 40, + "dehumidifier_efficiency": 1.8, + "dehumidifier_efficiency_type": "EnergyFactor", + "dehumidifier_fraction_dehumidification_load_served": 1, + "dehumidifier_rh_setpoint": 0.5, + "dehumidifier_type": "none", + "dhw_distribution_pipe_r": "0.0", + "dhw_distribution_recirc_branch_piping_length": "50", + "dhw_distribution_recirc_control_type": "no control", + "dhw_distribution_recirc_piping_length": "50", + "dhw_distribution_recirc_pump_power": "50", + "dhw_distribution_standard_piping_length": "50", + "dhw_distribution_system_type": "Standard", + "dishwasher_efficiency": "307", + "dishwasher_efficiency_type": "RatedAnnualkWh", + "dishwasher_label_annual_gas_cost": "22.32", + "dishwasher_label_electric_rate": "0.12", + "dishwasher_label_gas_rate": "1.09", + "dishwasher_label_usage": "4.0", + "dishwasher_location": "living space", + "dishwasher_place_setting_capacity": "12", + "dishwasher_usage_multiplier": 1.0, + "door_area": 20.0, + "door_rvalue": 4.4, + "ducts_number_of_return_registers": "1", + "ducts_return_insulation_r": 0.0, + "ducts_return_leakage_units": "CFM25", + "ducts_return_leakage_value": 0.0, + "ducts_return_location": "living space", + "ducts_return_surface_area": "50.0", + "ducts_supply_insulation_r": 0.0, + "ducts_supply_leakage_units": "CFM25", + "ducts_supply_leakage_value": 0.0, + "ducts_supply_location": "living space", + "ducts_supply_surface_area": "150.0", + "dwhr_efficiency": 0.55, + "dwhr_equal_flow": true, + "dwhr_facilities_connected": "none", + "extra_refrigerator_location": "none", + "extra_refrigerator_rated_annual_kwh": "auto", + "extra_refrigerator_usage_multiplier": 1.0, + "floor_assembly_r": 0, + "foundation_wall_insulation_distance_to_bottom": "auto", + "foundation_wall_insulation_distance_to_top": 0.0, + "foundation_wall_insulation_r": 8.9, + "foundation_wall_thickness": "8.0", + "freezer_location": "none", + "freezer_rated_annual_kwh": "auto", + "freezer_usage_multiplier": 1.0, + "fuel_loads_fireplace_annual_therm": "auto", + "fuel_loads_fireplace_frac_latent": "auto", + "fuel_loads_fireplace_frac_sensible": "auto", + "fuel_loads_fireplace_fuel_type": "natural gas", + "fuel_loads_fireplace_present": false, + "fuel_loads_fireplace_usage_multiplier": 0.0, + "fuel_loads_grill_annual_therm": "auto", + "fuel_loads_grill_fuel_type": "natural gas", + "fuel_loads_grill_present": false, + "fuel_loads_grill_usage_multiplier": 0.0, + "fuel_loads_lighting_annual_therm": "auto", + "fuel_loads_lighting_fuel_type": "natural gas", + "fuel_loads_lighting_present": false, + "fuel_loads_lighting_usage_multiplier": 0.0, + "geometry_aspect_ratio": 1.5, + "geometry_attic_type": "UnventedAttic", + "geometry_balcony_depth": 0.0, + "geometry_building_num_bedrooms": 150, + "geometry_building_num_units": 50, + "geometry_cfa": 900.0, + "geometry_corridor_position": "None", + "geometry_corridor_width": 10.0, + "geometry_eaves_depth": 0, + "geometry_foundation_height": 0.0, + "geometry_foundation_height_above_grade": 0.0, + "geometry_foundation_type": "SlabOnGrade", + "geometry_garage_depth": 20.0, + "geometry_garage_position": "Right", + "geometry_garage_protrusion": 0.0, + "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", + "geometry_horizontal_location": "Middle", + "geometry_inset_depth": 0.0, + "geometry_inset_position": "Right", + "geometry_inset_width": 0.0, + "geometry_level": "Middle", + "geometry_num_bathrooms": "2", + "geometry_num_bedrooms": 3, + "geometry_num_floors_above_grade": 5, + "geometry_num_occupants": "3", + "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, + "geometry_roof_pitch": "6:12", + "geometry_roof_type": "gable", + "geometry_unit_type": "apartment unit", + "geometry_wall_height": 8.0, + "heat_pump_backup_fuel": "none", + "heat_pump_backup_heating_capacity": "34121.0", + "heat_pump_backup_heating_efficiency": 1, + "heat_pump_cooling_capacity": "48000.0", + "heat_pump_cooling_compressor_type": "single stage", + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", + "heat_pump_cooling_sensible_heat_fraction": 0.73, + "heat_pump_fraction_cool_load_served": 1, + "heat_pump_fraction_heat_load_served": 1, + "heat_pump_heating_capacity": "64000.0", + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", + "heat_pump_type": "none", + "heating_system_fraction_heat_load_served": 1, + "heating_system_fraction_heat_load_served_2": 0.25, + "heating_system_fuel": "natural gas", + "heating_system_fuel_2": "electricity", + "heating_system_heating_capacity": "64000.0", + "heating_system_heating_capacity_2": "auto", + "heating_system_heating_efficiency": 0.92, + "heating_system_heating_efficiency_2": 1.0, + "heating_system_type": "Furnace", + "heating_system_type_2": "none", + "holiday_lighting_daily_kwh": "auto", + "holiday_lighting_period_begin_day_of_month": "auto", + "holiday_lighting_period_begin_month": "auto", + "holiday_lighting_period_end_day_of_month": "auto", + "holiday_lighting_period_end_month": "auto", + "holiday_lighting_present": false, + "hot_tub_heater_annual_kwh": "auto", + "hot_tub_heater_annual_therm": "auto", + "hot_tub_heater_type": "electric resistance", + "hot_tub_heater_usage_multiplier": 1.0, + "hot_tub_present": false, + "hot_tub_pump_annual_kwh": "auto", + "hot_tub_pump_usage_multiplier": 1.0, + "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/extra-bldgtype-multifamily-slab-middle-middle.xml", + "kitchen_fans_quantity": "0", + "lighting_fraction_cfl_exterior": 0.4, + "lighting_fraction_cfl_garage": 0.4, + "lighting_fraction_cfl_interior": 0.4, + "lighting_fraction_led_exterior": 0.25, + "lighting_fraction_led_garage": 0.25, + "lighting_fraction_led_interior": 0.25, + "lighting_fraction_lfl_exterior": 0.1, + "lighting_fraction_lfl_garage": 0.1, + "lighting_fraction_lfl_interior": 0.1, + "lighting_usage_multiplier_exterior": 1.0, + "lighting_usage_multiplier_garage": 1.0, + "lighting_usage_multiplier_interior": 1.0, + "mech_vent_fan_power": 30, + "mech_vent_fan_power_2": 30, + "mech_vent_fan_type": "none", + "mech_vent_fan_type_2": "none", + "mech_vent_flow_rate": 110, + "mech_vent_flow_rate_2": 110, + "mech_vent_hours_in_operation": 24, + "mech_vent_hours_in_operation_2": 24, + "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", + "mech_vent_sensible_recovery_efficiency": 0.72, + "mech_vent_sensible_recovery_efficiency_2": 0.72, + "mech_vent_total_recovery_efficiency": 0.48, + "mech_vent_total_recovery_efficiency_2": 0.48, + "neighbor_back_distance": 0, + "neighbor_back_height": "auto", + "neighbor_front_distance": 0, + "neighbor_front_height": "auto", + "neighbor_left_distance": 0, + "neighbor_left_height": "auto", + "neighbor_right_distance": 0, + "neighbor_right_height": "auto", + "overhangs_back_depth": 0, + "overhangs_back_distance_to_top_of_window": 0, + "overhangs_front_depth": 0, + "overhangs_front_distance_to_top_of_window": 0, + "overhangs_left_depth": 0, + "overhangs_left_distance_to_top_of_window": 0, + "overhangs_right_depth": 0, + "overhangs_right_distance_to_top_of_window": 0, + "plug_loads_other_annual_kwh": "819.0", + "plug_loads_other_frac_latent": "0.045", + "plug_loads_other_frac_sensible": "0.855", + "plug_loads_other_usage_multiplier": 1.0, + "plug_loads_television_annual_kwh": "620.0", + "plug_loads_television_usage_multiplier": 1.0, + "plug_loads_vehicle_annual_kwh": "auto", + "plug_loads_vehicle_present": false, + "plug_loads_vehicle_usage_multiplier": 0.0, + "plug_loads_well_pump_annual_kwh": "auto", + "plug_loads_well_pump_present": false, + "plug_loads_well_pump_usage_multiplier": 0.0, + "pool_heater_annual_kwh": "auto", + "pool_heater_annual_therm": "auto", + "pool_heater_type": "electric resistance", + "pool_heater_usage_multiplier": 1.0, + "pool_present": false, + "pool_pump_annual_kwh": "auto", + "pool_pump_usage_multiplier": 1.0, + "pv_system_array_azimuth_1": 180, + "pv_system_array_azimuth_2": 180, + "pv_system_array_tilt_1": "20", + "pv_system_array_tilt_2": "20", + "pv_system_inverter_efficiency_1": 0.96, + "pv_system_inverter_efficiency_2": 0.96, + "pv_system_location_1": "auto", + "pv_system_location_2": "auto", + "pv_system_max_power_output_1": 4000, + "pv_system_max_power_output_2": 4000, + "pv_system_module_type_1": "none", + "pv_system_module_type_2": "none", + "pv_system_num_units_served_1": 1, + "pv_system_num_units_served_2": 1, + "pv_system_system_losses_fraction_1": 0.14, + "pv_system_system_losses_fraction_2": 0.14, + "pv_system_tracking_1": "auto", + "pv_system_tracking_2": "auto", + "refrigerator_location": "living space", + "refrigerator_rated_annual_kwh": "650.0", + "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, + "roof_assembly_r": 2.3, + "roof_color": "medium", + "roof_material_type": "asphalt or fiberglass shingles", + "roof_radiant_barrier": false, + "roof_radiant_barrier_grade": "1", + "schedules_type": "default", + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", + "simulation_control_timestep": "60", + "site_type": "suburban", + "skylight_area_back": 0, + "skylight_area_front": 0, + "skylight_area_left": 0, + "skylight_area_right": 0, + "skylight_shgc": 0.45, + "skylight_ufactor": 0.33, + "slab_carpet_fraction": "0.0", + "slab_carpet_r": "0.0", + "slab_perimeter_depth": 0, + "slab_perimeter_insulation_r": 0, + "slab_thickness": "4.0", + "slab_under_insulation_r": 0, + "slab_under_width": 0, + "solar_thermal_collector_area": 40.0, + "solar_thermal_collector_azimuth": 180, + "solar_thermal_collector_loop_type": "liquid direct", + "solar_thermal_collector_rated_optical_efficiency": 0.5, + "solar_thermal_collector_rated_thermal_losses": 0.2799, + "solar_thermal_collector_tilt": "20", + "solar_thermal_collector_type": "evacuated tube", + "solar_thermal_solar_fraction": 0, + "solar_thermal_storage_volume": "auto", + "solar_thermal_system_type": "none", + "wall_assembly_r": 23, + "wall_color": "medium", + "wall_siding_type": "wood siding", + "wall_type": "WoodStud", + "water_fixtures_shower_low_flow": true, + "water_fixtures_sink_low_flow": false, + "water_fixtures_usage_multiplier": 1.0, + "water_heater_efficiency": 0.95, + "water_heater_efficiency_type": "EnergyFactor", + "water_heater_fuel_type": "electricity", + "water_heater_jacket_rvalue": 0, + "water_heater_location": "living space", + "water_heater_num_units_served": 1, + "water_heater_recovery_efficiency": "0.76", + "water_heater_setpoint_temperature": "125", + "water_heater_standby_loss": 0, + "water_heater_tank_volume": "40", + "water_heater_type": "storage water heater", + "weather_station_epw_filepath": "USA_CO_Denver.Intl.AP.725650_TMY3.epw", + "whole_house_fan_flow_rate": 4500, + "whole_house_fan_power": 300, + "whole_house_fan_present": false, + "window_area_back": 0, + "window_area_front": 0, + "window_area_left": 0, + "window_area_right": 0, + "window_aspect_ratio": 1.333, + "window_back_wwr": 0.18, + "window_fraction_operable": 0.67, + "window_front_wwr": 0.18, + "window_interior_shading_summer": 0.7, + "window_interior_shading_winter": 0.85, + "window_left_wwr": 0.18, + "window_right_wwr": 0.18, + "window_shgc": 0.45, + "window_ufactor": 0.33 + }, + "measure_dir_name": "BuildResidentialHPXML" + } + ] +} \ No newline at end of file diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-slab-middle-top-double-loaded-interior.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-slab-middle-top-double-loaded-interior.osw new file mode 100644 index 00000000..ab67e8a1 --- /dev/null +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-slab-middle-top-double-loaded-interior.osw @@ -0,0 +1,341 @@ +{ + "measure_paths": [ + "../.." + ], + "steps": [ + { + "arguments": { + "air_leakage_house_pressure": 50, + "air_leakage_shielding_of_home": "auto", + "air_leakage_units": "ACH", + "air_leakage_value": 3, + "bathroom_fans_quantity": "0", + "ceiling_assembly_r": 39.3, + "ceiling_fan_cooling_setpoint_temp_offset": 0, + "ceiling_fan_efficiency": "auto", + "ceiling_fan_present": false, + "ceiling_fan_quantity": "auto", + "clothes_dryer_efficiency": "3.73", + "clothes_dryer_efficiency_type": "CombinedEnergyFactor", + "clothes_dryer_fuel_type": "electricity", + "clothes_dryer_location": "living space", + "clothes_dryer_usage_multiplier": 1.0, + "clothes_dryer_vented_flow_rate": "150.0", + "clothes_washer_capacity": "3.2", + "clothes_washer_efficiency": "1.21", + "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", + "clothes_washer_label_annual_gas_cost": "27.0", + "clothes_washer_label_electric_rate": "0.12", + "clothes_washer_label_gas_rate": "1.09", + "clothes_washer_label_usage": "6.0", + "clothes_washer_location": "living space", + "clothes_washer_rated_annual_kwh": "380.0", + "clothes_washer_usage_multiplier": 1.0, + "cooking_range_oven_fuel_type": "electricity", + "cooking_range_oven_is_convection": false, + "cooking_range_oven_is_induction": false, + "cooking_range_oven_location": "living space", + "cooking_range_oven_usage_multiplier": 1.0, + "cooling_system_cooling_capacity": "48000.0", + "cooling_system_cooling_compressor_type": "single stage", + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", + "cooling_system_cooling_sensible_heat_fraction": 0.73, + "cooling_system_fraction_cool_load_served": 1, + "cooling_system_is_ducted": false, + "cooling_system_type": "central air conditioner", + "dehumidifier_capacity": 40, + "dehumidifier_efficiency": 1.8, + "dehumidifier_efficiency_type": "EnergyFactor", + "dehumidifier_fraction_dehumidification_load_served": 1, + "dehumidifier_rh_setpoint": 0.5, + "dehumidifier_type": "none", + "dhw_distribution_pipe_r": "0.0", + "dhw_distribution_recirc_branch_piping_length": "50", + "dhw_distribution_recirc_control_type": "no control", + "dhw_distribution_recirc_piping_length": "50", + "dhw_distribution_recirc_pump_power": "50", + "dhw_distribution_standard_piping_length": "50", + "dhw_distribution_system_type": "Standard", + "dishwasher_efficiency": "307", + "dishwasher_efficiency_type": "RatedAnnualkWh", + "dishwasher_label_annual_gas_cost": "22.32", + "dishwasher_label_electric_rate": "0.12", + "dishwasher_label_gas_rate": "1.09", + "dishwasher_label_usage": "4.0", + "dishwasher_location": "living space", + "dishwasher_place_setting_capacity": "12", + "dishwasher_usage_multiplier": 1.0, + "door_area": 20.0, + "door_rvalue": 4.4, + "ducts_number_of_return_registers": "1", + "ducts_return_insulation_r": 0.0, + "ducts_return_leakage_units": "CFM25", + "ducts_return_leakage_value": 0.0, + "ducts_return_location": "living space", + "ducts_return_surface_area": "50.0", + "ducts_supply_insulation_r": 0.0, + "ducts_supply_leakage_units": "CFM25", + "ducts_supply_leakage_value": 0.0, + "ducts_supply_location": "living space", + "ducts_supply_surface_area": "150.0", + "dwhr_efficiency": 0.55, + "dwhr_equal_flow": true, + "dwhr_facilities_connected": "none", + "extra_refrigerator_location": "none", + "extra_refrigerator_rated_annual_kwh": "auto", + "extra_refrigerator_usage_multiplier": 1.0, + "floor_assembly_r": 0, + "foundation_wall_insulation_distance_to_bottom": "auto", + "foundation_wall_insulation_distance_to_top": 0.0, + "foundation_wall_insulation_r": 8.9, + "foundation_wall_thickness": "8.0", + "freezer_location": "none", + "freezer_rated_annual_kwh": "auto", + "freezer_usage_multiplier": 1.0, + "fuel_loads_fireplace_annual_therm": "auto", + "fuel_loads_fireplace_frac_latent": "auto", + "fuel_loads_fireplace_frac_sensible": "auto", + "fuel_loads_fireplace_fuel_type": "natural gas", + "fuel_loads_fireplace_present": false, + "fuel_loads_fireplace_usage_multiplier": 0.0, + "fuel_loads_grill_annual_therm": "auto", + "fuel_loads_grill_fuel_type": "natural gas", + "fuel_loads_grill_present": false, + "fuel_loads_grill_usage_multiplier": 0.0, + "fuel_loads_lighting_annual_therm": "auto", + "fuel_loads_lighting_fuel_type": "natural gas", + "fuel_loads_lighting_present": false, + "fuel_loads_lighting_usage_multiplier": 0.0, + "geometry_aspect_ratio": 1.5, + "geometry_attic_type": "UnventedAttic", + "geometry_balcony_depth": 0.0, + "geometry_building_num_bedrooms": 150, + "geometry_building_num_units": 50, + "geometry_cfa": 900.0, + "geometry_corridor_position": "Double-Loaded Interior", + "geometry_corridor_width": 10.0, + "geometry_eaves_depth": 0, + "geometry_foundation_height": 0.0, + "geometry_foundation_height_above_grade": 0.0, + "geometry_foundation_type": "SlabOnGrade", + "geometry_garage_depth": 20.0, + "geometry_garage_position": "Right", + "geometry_garage_protrusion": 0.0, + "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", + "geometry_horizontal_location": "Middle", + "geometry_inset_depth": 0.0, + "geometry_inset_position": "Right", + "geometry_inset_width": 0.0, + "geometry_level": "Top", + "geometry_num_bathrooms": "2", + "geometry_num_bedrooms": 3, + "geometry_num_floors_above_grade": 5, + "geometry_num_occupants": "3", + "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, + "geometry_roof_pitch": "6:12", + "geometry_roof_type": "gable", + "geometry_unit_type": "apartment unit", + "geometry_wall_height": 8.0, + "heat_pump_backup_fuel": "none", + "heat_pump_backup_heating_capacity": "34121.0", + "heat_pump_backup_heating_efficiency": 1, + "heat_pump_cooling_capacity": "48000.0", + "heat_pump_cooling_compressor_type": "single stage", + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", + "heat_pump_cooling_sensible_heat_fraction": 0.73, + "heat_pump_fraction_cool_load_served": 1, + "heat_pump_fraction_heat_load_served": 1, + "heat_pump_heating_capacity": "64000.0", + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", + "heat_pump_type": "none", + "heating_system_fraction_heat_load_served": 1, + "heating_system_fraction_heat_load_served_2": 0.25, + "heating_system_fuel": "natural gas", + "heating_system_fuel_2": "electricity", + "heating_system_heating_capacity": "64000.0", + "heating_system_heating_capacity_2": "auto", + "heating_system_heating_efficiency": 0.92, + "heating_system_heating_efficiency_2": 1.0, + "heating_system_type": "Furnace", + "heating_system_type_2": "none", + "holiday_lighting_daily_kwh": "auto", + "holiday_lighting_period_begin_day_of_month": "auto", + "holiday_lighting_period_begin_month": "auto", + "holiday_lighting_period_end_day_of_month": "auto", + "holiday_lighting_period_end_month": "auto", + "holiday_lighting_present": false, + "hot_tub_heater_annual_kwh": "auto", + "hot_tub_heater_annual_therm": "auto", + "hot_tub_heater_type": "electric resistance", + "hot_tub_heater_usage_multiplier": 1.0, + "hot_tub_present": false, + "hot_tub_pump_annual_kwh": "auto", + "hot_tub_pump_usage_multiplier": 1.0, + "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/extra-bldgtype-multifamily-slab-middle-top-double-loaded-interior.xml", + "kitchen_fans_quantity": "0", + "lighting_fraction_cfl_exterior": 0.4, + "lighting_fraction_cfl_garage": 0.4, + "lighting_fraction_cfl_interior": 0.4, + "lighting_fraction_led_exterior": 0.25, + "lighting_fraction_led_garage": 0.25, + "lighting_fraction_led_interior": 0.25, + "lighting_fraction_lfl_exterior": 0.1, + "lighting_fraction_lfl_garage": 0.1, + "lighting_fraction_lfl_interior": 0.1, + "lighting_usage_multiplier_exterior": 1.0, + "lighting_usage_multiplier_garage": 1.0, + "lighting_usage_multiplier_interior": 1.0, + "mech_vent_fan_power": 30, + "mech_vent_fan_power_2": 30, + "mech_vent_fan_type": "none", + "mech_vent_fan_type_2": "none", + "mech_vent_flow_rate": 110, + "mech_vent_flow_rate_2": 110, + "mech_vent_hours_in_operation": 24, + "mech_vent_hours_in_operation_2": 24, + "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", + "mech_vent_sensible_recovery_efficiency": 0.72, + "mech_vent_sensible_recovery_efficiency_2": 0.72, + "mech_vent_total_recovery_efficiency": 0.48, + "mech_vent_total_recovery_efficiency_2": 0.48, + "neighbor_back_distance": 0, + "neighbor_back_height": "auto", + "neighbor_front_distance": 0, + "neighbor_front_height": "auto", + "neighbor_left_distance": 0, + "neighbor_left_height": "auto", + "neighbor_right_distance": 0, + "neighbor_right_height": "auto", + "overhangs_back_depth": 0, + "overhangs_back_distance_to_top_of_window": 0, + "overhangs_front_depth": 0, + "overhangs_front_distance_to_top_of_window": 0, + "overhangs_left_depth": 0, + "overhangs_left_distance_to_top_of_window": 0, + "overhangs_right_depth": 0, + "overhangs_right_distance_to_top_of_window": 0, + "plug_loads_other_annual_kwh": "819.0", + "plug_loads_other_frac_latent": "0.045", + "plug_loads_other_frac_sensible": "0.855", + "plug_loads_other_usage_multiplier": 1.0, + "plug_loads_television_annual_kwh": "620.0", + "plug_loads_television_usage_multiplier": 1.0, + "plug_loads_vehicle_annual_kwh": "auto", + "plug_loads_vehicle_present": false, + "plug_loads_vehicle_usage_multiplier": 0.0, + "plug_loads_well_pump_annual_kwh": "auto", + "plug_loads_well_pump_present": false, + "plug_loads_well_pump_usage_multiplier": 0.0, + "pool_heater_annual_kwh": "auto", + "pool_heater_annual_therm": "auto", + "pool_heater_type": "electric resistance", + "pool_heater_usage_multiplier": 1.0, + "pool_present": false, + "pool_pump_annual_kwh": "auto", + "pool_pump_usage_multiplier": 1.0, + "pv_system_array_azimuth_1": 180, + "pv_system_array_azimuth_2": 180, + "pv_system_array_tilt_1": "20", + "pv_system_array_tilt_2": "20", + "pv_system_inverter_efficiency_1": 0.96, + "pv_system_inverter_efficiency_2": 0.96, + "pv_system_location_1": "auto", + "pv_system_location_2": "auto", + "pv_system_max_power_output_1": 4000, + "pv_system_max_power_output_2": 4000, + "pv_system_module_type_1": "none", + "pv_system_module_type_2": "none", + "pv_system_num_units_served_1": 1, + "pv_system_num_units_served_2": 1, + "pv_system_system_losses_fraction_1": 0.14, + "pv_system_system_losses_fraction_2": 0.14, + "pv_system_tracking_1": "auto", + "pv_system_tracking_2": "auto", + "refrigerator_location": "living space", + "refrigerator_rated_annual_kwh": "650.0", + "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, + "roof_assembly_r": 2.3, + "roof_color": "medium", + "roof_material_type": "asphalt or fiberglass shingles", + "roof_radiant_barrier": false, + "roof_radiant_barrier_grade": "1", + "schedules_type": "default", + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", + "simulation_control_timestep": "60", + "site_type": "suburban", + "skylight_area_back": 0, + "skylight_area_front": 0, + "skylight_area_left": 0, + "skylight_area_right": 0, + "skylight_shgc": 0.45, + "skylight_ufactor": 0.33, + "slab_carpet_fraction": "0.0", + "slab_carpet_r": "0.0", + "slab_perimeter_depth": 0, + "slab_perimeter_insulation_r": 0, + "slab_thickness": "4.0", + "slab_under_insulation_r": 0, + "slab_under_width": 0, + "solar_thermal_collector_area": 40.0, + "solar_thermal_collector_azimuth": 180, + "solar_thermal_collector_loop_type": "liquid direct", + "solar_thermal_collector_rated_optical_efficiency": 0.5, + "solar_thermal_collector_rated_thermal_losses": 0.2799, + "solar_thermal_collector_tilt": "20", + "solar_thermal_collector_type": "evacuated tube", + "solar_thermal_solar_fraction": 0, + "solar_thermal_storage_volume": "auto", + "solar_thermal_system_type": "none", + "wall_assembly_r": 23, + "wall_color": "medium", + "wall_siding_type": "wood siding", + "wall_type": "WoodStud", + "water_fixtures_shower_low_flow": true, + "water_fixtures_sink_low_flow": false, + "water_fixtures_usage_multiplier": 1.0, + "water_heater_efficiency": 0.95, + "water_heater_efficiency_type": "EnergyFactor", + "water_heater_fuel_type": "electricity", + "water_heater_jacket_rvalue": 0, + "water_heater_location": "living space", + "water_heater_num_units_served": 1, + "water_heater_recovery_efficiency": "0.76", + "water_heater_setpoint_temperature": "125", + "water_heater_standby_loss": 0, + "water_heater_tank_volume": "40", + "water_heater_type": "storage water heater", + "weather_station_epw_filepath": "USA_CO_Denver.Intl.AP.725650_TMY3.epw", + "whole_house_fan_flow_rate": 4500, + "whole_house_fan_power": 300, + "whole_house_fan_present": false, + "window_area_back": 0, + "window_area_front": 0, + "window_area_left": 0, + "window_area_right": 0, + "window_aspect_ratio": 1.333, + "window_back_wwr": 0.18, + "window_fraction_operable": 0.67, + "window_front_wwr": 0.18, + "window_interior_shading_summer": 0.7, + "window_interior_shading_winter": 0.85, + "window_left_wwr": 0.18, + "window_right_wwr": 0.18, + "window_shgc": 0.45, + "window_ufactor": 0.33 + }, + "measure_dir_name": "BuildResidentialHPXML" + } + ] +} \ No newline at end of file diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-slab-middle-top.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-slab-middle-top.osw new file mode 100644 index 00000000..92ab7dac --- /dev/null +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-slab-middle-top.osw @@ -0,0 +1,341 @@ +{ + "measure_paths": [ + "../.." + ], + "steps": [ + { + "arguments": { + "air_leakage_house_pressure": 50, + "air_leakage_shielding_of_home": "auto", + "air_leakage_units": "ACH", + "air_leakage_value": 3, + "bathroom_fans_quantity": "0", + "ceiling_assembly_r": 39.3, + "ceiling_fan_cooling_setpoint_temp_offset": 0, + "ceiling_fan_efficiency": "auto", + "ceiling_fan_present": false, + "ceiling_fan_quantity": "auto", + "clothes_dryer_efficiency": "3.73", + "clothes_dryer_efficiency_type": "CombinedEnergyFactor", + "clothes_dryer_fuel_type": "electricity", + "clothes_dryer_location": "living space", + "clothes_dryer_usage_multiplier": 1.0, + "clothes_dryer_vented_flow_rate": "150.0", + "clothes_washer_capacity": "3.2", + "clothes_washer_efficiency": "1.21", + "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", + "clothes_washer_label_annual_gas_cost": "27.0", + "clothes_washer_label_electric_rate": "0.12", + "clothes_washer_label_gas_rate": "1.09", + "clothes_washer_label_usage": "6.0", + "clothes_washer_location": "living space", + "clothes_washer_rated_annual_kwh": "380.0", + "clothes_washer_usage_multiplier": 1.0, + "cooking_range_oven_fuel_type": "electricity", + "cooking_range_oven_is_convection": false, + "cooking_range_oven_is_induction": false, + "cooking_range_oven_location": "living space", + "cooking_range_oven_usage_multiplier": 1.0, + "cooling_system_cooling_capacity": "48000.0", + "cooling_system_cooling_compressor_type": "single stage", + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", + "cooling_system_cooling_sensible_heat_fraction": 0.73, + "cooling_system_fraction_cool_load_served": 1, + "cooling_system_is_ducted": false, + "cooling_system_type": "central air conditioner", + "dehumidifier_capacity": 40, + "dehumidifier_efficiency": 1.8, + "dehumidifier_efficiency_type": "EnergyFactor", + "dehumidifier_fraction_dehumidification_load_served": 1, + "dehumidifier_rh_setpoint": 0.5, + "dehumidifier_type": "none", + "dhw_distribution_pipe_r": "0.0", + "dhw_distribution_recirc_branch_piping_length": "50", + "dhw_distribution_recirc_control_type": "no control", + "dhw_distribution_recirc_piping_length": "50", + "dhw_distribution_recirc_pump_power": "50", + "dhw_distribution_standard_piping_length": "50", + "dhw_distribution_system_type": "Standard", + "dishwasher_efficiency": "307", + "dishwasher_efficiency_type": "RatedAnnualkWh", + "dishwasher_label_annual_gas_cost": "22.32", + "dishwasher_label_electric_rate": "0.12", + "dishwasher_label_gas_rate": "1.09", + "dishwasher_label_usage": "4.0", + "dishwasher_location": "living space", + "dishwasher_place_setting_capacity": "12", + "dishwasher_usage_multiplier": 1.0, + "door_area": 20.0, + "door_rvalue": 4.4, + "ducts_number_of_return_registers": "1", + "ducts_return_insulation_r": 0.0, + "ducts_return_leakage_units": "CFM25", + "ducts_return_leakage_value": 0.0, + "ducts_return_location": "living space", + "ducts_return_surface_area": "50.0", + "ducts_supply_insulation_r": 0.0, + "ducts_supply_leakage_units": "CFM25", + "ducts_supply_leakage_value": 0.0, + "ducts_supply_location": "living space", + "ducts_supply_surface_area": "150.0", + "dwhr_efficiency": 0.55, + "dwhr_equal_flow": true, + "dwhr_facilities_connected": "none", + "extra_refrigerator_location": "none", + "extra_refrigerator_rated_annual_kwh": "auto", + "extra_refrigerator_usage_multiplier": 1.0, + "floor_assembly_r": 0, + "foundation_wall_insulation_distance_to_bottom": "auto", + "foundation_wall_insulation_distance_to_top": 0.0, + "foundation_wall_insulation_r": 8.9, + "foundation_wall_thickness": "8.0", + "freezer_location": "none", + "freezer_rated_annual_kwh": "auto", + "freezer_usage_multiplier": 1.0, + "fuel_loads_fireplace_annual_therm": "auto", + "fuel_loads_fireplace_frac_latent": "auto", + "fuel_loads_fireplace_frac_sensible": "auto", + "fuel_loads_fireplace_fuel_type": "natural gas", + "fuel_loads_fireplace_present": false, + "fuel_loads_fireplace_usage_multiplier": 0.0, + "fuel_loads_grill_annual_therm": "auto", + "fuel_loads_grill_fuel_type": "natural gas", + "fuel_loads_grill_present": false, + "fuel_loads_grill_usage_multiplier": 0.0, + "fuel_loads_lighting_annual_therm": "auto", + "fuel_loads_lighting_fuel_type": "natural gas", + "fuel_loads_lighting_present": false, + "fuel_loads_lighting_usage_multiplier": 0.0, + "geometry_aspect_ratio": 1.5, + "geometry_attic_type": "UnventedAttic", + "geometry_balcony_depth": 0.0, + "geometry_building_num_bedrooms": 150, + "geometry_building_num_units": 50, + "geometry_cfa": 900.0, + "geometry_corridor_position": "None", + "geometry_corridor_width": 10.0, + "geometry_eaves_depth": 0, + "geometry_foundation_height": 0.0, + "geometry_foundation_height_above_grade": 0.0, + "geometry_foundation_type": "SlabOnGrade", + "geometry_garage_depth": 20.0, + "geometry_garage_position": "Right", + "geometry_garage_protrusion": 0.0, + "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", + "geometry_horizontal_location": "Middle", + "geometry_inset_depth": 0.0, + "geometry_inset_position": "Right", + "geometry_inset_width": 0.0, + "geometry_level": "Top", + "geometry_num_bathrooms": "2", + "geometry_num_bedrooms": 3, + "geometry_num_floors_above_grade": 5, + "geometry_num_occupants": "3", + "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, + "geometry_roof_pitch": "6:12", + "geometry_roof_type": "gable", + "geometry_unit_type": "apartment unit", + "geometry_wall_height": 8.0, + "heat_pump_backup_fuel": "none", + "heat_pump_backup_heating_capacity": "34121.0", + "heat_pump_backup_heating_efficiency": 1, + "heat_pump_cooling_capacity": "48000.0", + "heat_pump_cooling_compressor_type": "single stage", + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", + "heat_pump_cooling_sensible_heat_fraction": 0.73, + "heat_pump_fraction_cool_load_served": 1, + "heat_pump_fraction_heat_load_served": 1, + "heat_pump_heating_capacity": "64000.0", + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", + "heat_pump_type": "none", + "heating_system_fraction_heat_load_served": 1, + "heating_system_fraction_heat_load_served_2": 0.25, + "heating_system_fuel": "natural gas", + "heating_system_fuel_2": "electricity", + "heating_system_heating_capacity": "64000.0", + "heating_system_heating_capacity_2": "auto", + "heating_system_heating_efficiency": 0.92, + "heating_system_heating_efficiency_2": 1.0, + "heating_system_type": "Furnace", + "heating_system_type_2": "none", + "holiday_lighting_daily_kwh": "auto", + "holiday_lighting_period_begin_day_of_month": "auto", + "holiday_lighting_period_begin_month": "auto", + "holiday_lighting_period_end_day_of_month": "auto", + "holiday_lighting_period_end_month": "auto", + "holiday_lighting_present": false, + "hot_tub_heater_annual_kwh": "auto", + "hot_tub_heater_annual_therm": "auto", + "hot_tub_heater_type": "electric resistance", + "hot_tub_heater_usage_multiplier": 1.0, + "hot_tub_present": false, + "hot_tub_pump_annual_kwh": "auto", + "hot_tub_pump_usage_multiplier": 1.0, + "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/extra-bldgtype-multifamily-slab-middle-top.xml", + "kitchen_fans_quantity": "0", + "lighting_fraction_cfl_exterior": 0.4, + "lighting_fraction_cfl_garage": 0.4, + "lighting_fraction_cfl_interior": 0.4, + "lighting_fraction_led_exterior": 0.25, + "lighting_fraction_led_garage": 0.25, + "lighting_fraction_led_interior": 0.25, + "lighting_fraction_lfl_exterior": 0.1, + "lighting_fraction_lfl_garage": 0.1, + "lighting_fraction_lfl_interior": 0.1, + "lighting_usage_multiplier_exterior": 1.0, + "lighting_usage_multiplier_garage": 1.0, + "lighting_usage_multiplier_interior": 1.0, + "mech_vent_fan_power": 30, + "mech_vent_fan_power_2": 30, + "mech_vent_fan_type": "none", + "mech_vent_fan_type_2": "none", + "mech_vent_flow_rate": 110, + "mech_vent_flow_rate_2": 110, + "mech_vent_hours_in_operation": 24, + "mech_vent_hours_in_operation_2": 24, + "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", + "mech_vent_sensible_recovery_efficiency": 0.72, + "mech_vent_sensible_recovery_efficiency_2": 0.72, + "mech_vent_total_recovery_efficiency": 0.48, + "mech_vent_total_recovery_efficiency_2": 0.48, + "neighbor_back_distance": 0, + "neighbor_back_height": "auto", + "neighbor_front_distance": 0, + "neighbor_front_height": "auto", + "neighbor_left_distance": 0, + "neighbor_left_height": "auto", + "neighbor_right_distance": 0, + "neighbor_right_height": "auto", + "overhangs_back_depth": 0, + "overhangs_back_distance_to_top_of_window": 0, + "overhangs_front_depth": 0, + "overhangs_front_distance_to_top_of_window": 0, + "overhangs_left_depth": 0, + "overhangs_left_distance_to_top_of_window": 0, + "overhangs_right_depth": 0, + "overhangs_right_distance_to_top_of_window": 0, + "plug_loads_other_annual_kwh": "819.0", + "plug_loads_other_frac_latent": "0.045", + "plug_loads_other_frac_sensible": "0.855", + "plug_loads_other_usage_multiplier": 1.0, + "plug_loads_television_annual_kwh": "620.0", + "plug_loads_television_usage_multiplier": 1.0, + "plug_loads_vehicle_annual_kwh": "auto", + "plug_loads_vehicle_present": false, + "plug_loads_vehicle_usage_multiplier": 0.0, + "plug_loads_well_pump_annual_kwh": "auto", + "plug_loads_well_pump_present": false, + "plug_loads_well_pump_usage_multiplier": 0.0, + "pool_heater_annual_kwh": "auto", + "pool_heater_annual_therm": "auto", + "pool_heater_type": "electric resistance", + "pool_heater_usage_multiplier": 1.0, + "pool_present": false, + "pool_pump_annual_kwh": "auto", + "pool_pump_usage_multiplier": 1.0, + "pv_system_array_azimuth_1": 180, + "pv_system_array_azimuth_2": 180, + "pv_system_array_tilt_1": "20", + "pv_system_array_tilt_2": "20", + "pv_system_inverter_efficiency_1": 0.96, + "pv_system_inverter_efficiency_2": 0.96, + "pv_system_location_1": "auto", + "pv_system_location_2": "auto", + "pv_system_max_power_output_1": 4000, + "pv_system_max_power_output_2": 4000, + "pv_system_module_type_1": "none", + "pv_system_module_type_2": "none", + "pv_system_num_units_served_1": 1, + "pv_system_num_units_served_2": 1, + "pv_system_system_losses_fraction_1": 0.14, + "pv_system_system_losses_fraction_2": 0.14, + "pv_system_tracking_1": "auto", + "pv_system_tracking_2": "auto", + "refrigerator_location": "living space", + "refrigerator_rated_annual_kwh": "650.0", + "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, + "roof_assembly_r": 2.3, + "roof_color": "medium", + "roof_material_type": "asphalt or fiberglass shingles", + "roof_radiant_barrier": false, + "roof_radiant_barrier_grade": "1", + "schedules_type": "default", + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", + "simulation_control_timestep": "60", + "site_type": "suburban", + "skylight_area_back": 0, + "skylight_area_front": 0, + "skylight_area_left": 0, + "skylight_area_right": 0, + "skylight_shgc": 0.45, + "skylight_ufactor": 0.33, + "slab_carpet_fraction": "0.0", + "slab_carpet_r": "0.0", + "slab_perimeter_depth": 0, + "slab_perimeter_insulation_r": 0, + "slab_thickness": "4.0", + "slab_under_insulation_r": 0, + "slab_under_width": 0, + "solar_thermal_collector_area": 40.0, + "solar_thermal_collector_azimuth": 180, + "solar_thermal_collector_loop_type": "liquid direct", + "solar_thermal_collector_rated_optical_efficiency": 0.5, + "solar_thermal_collector_rated_thermal_losses": 0.2799, + "solar_thermal_collector_tilt": "20", + "solar_thermal_collector_type": "evacuated tube", + "solar_thermal_solar_fraction": 0, + "solar_thermal_storage_volume": "auto", + "solar_thermal_system_type": "none", + "wall_assembly_r": 23, + "wall_color": "medium", + "wall_siding_type": "wood siding", + "wall_type": "WoodStud", + "water_fixtures_shower_low_flow": true, + "water_fixtures_sink_low_flow": false, + "water_fixtures_usage_multiplier": 1.0, + "water_heater_efficiency": 0.95, + "water_heater_efficiency_type": "EnergyFactor", + "water_heater_fuel_type": "electricity", + "water_heater_jacket_rvalue": 0, + "water_heater_location": "living space", + "water_heater_num_units_served": 1, + "water_heater_recovery_efficiency": "0.76", + "water_heater_setpoint_temperature": "125", + "water_heater_standby_loss": 0, + "water_heater_tank_volume": "40", + "water_heater_type": "storage water heater", + "weather_station_epw_filepath": "USA_CO_Denver.Intl.AP.725650_TMY3.epw", + "whole_house_fan_flow_rate": 4500, + "whole_house_fan_power": 300, + "whole_house_fan_present": false, + "window_area_back": 0, + "window_area_front": 0, + "window_area_left": 0, + "window_area_right": 0, + "window_aspect_ratio": 1.333, + "window_back_wwr": 0.18, + "window_fraction_operable": 0.67, + "window_front_wwr": 0.18, + "window_interior_shading_summer": 0.7, + "window_interior_shading_winter": 0.85, + "window_left_wwr": 0.18, + "window_right_wwr": 0.18, + "window_shgc": 0.45, + "window_ufactor": 0.33 + }, + "measure_dir_name": "BuildResidentialHPXML" + } + ] +} \ No newline at end of file diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-slab-right-bottom-double-loaded-interior.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-slab-right-bottom-double-loaded-interior.osw new file mode 100644 index 00000000..b11aad00 --- /dev/null +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-slab-right-bottom-double-loaded-interior.osw @@ -0,0 +1,341 @@ +{ + "measure_paths": [ + "../.." + ], + "steps": [ + { + "arguments": { + "air_leakage_house_pressure": 50, + "air_leakage_shielding_of_home": "auto", + "air_leakage_units": "ACH", + "air_leakage_value": 3, + "bathroom_fans_quantity": "0", + "ceiling_assembly_r": 39.3, + "ceiling_fan_cooling_setpoint_temp_offset": 0, + "ceiling_fan_efficiency": "auto", + "ceiling_fan_present": false, + "ceiling_fan_quantity": "auto", + "clothes_dryer_efficiency": "3.73", + "clothes_dryer_efficiency_type": "CombinedEnergyFactor", + "clothes_dryer_fuel_type": "electricity", + "clothes_dryer_location": "living space", + "clothes_dryer_usage_multiplier": 1.0, + "clothes_dryer_vented_flow_rate": "150.0", + "clothes_washer_capacity": "3.2", + "clothes_washer_efficiency": "1.21", + "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", + "clothes_washer_label_annual_gas_cost": "27.0", + "clothes_washer_label_electric_rate": "0.12", + "clothes_washer_label_gas_rate": "1.09", + "clothes_washer_label_usage": "6.0", + "clothes_washer_location": "living space", + "clothes_washer_rated_annual_kwh": "380.0", + "clothes_washer_usage_multiplier": 1.0, + "cooking_range_oven_fuel_type": "electricity", + "cooking_range_oven_is_convection": false, + "cooking_range_oven_is_induction": false, + "cooking_range_oven_location": "living space", + "cooking_range_oven_usage_multiplier": 1.0, + "cooling_system_cooling_capacity": "48000.0", + "cooling_system_cooling_compressor_type": "single stage", + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", + "cooling_system_cooling_sensible_heat_fraction": 0.73, + "cooling_system_fraction_cool_load_served": 1, + "cooling_system_is_ducted": false, + "cooling_system_type": "central air conditioner", + "dehumidifier_capacity": 40, + "dehumidifier_efficiency": 1.8, + "dehumidifier_efficiency_type": "EnergyFactor", + "dehumidifier_fraction_dehumidification_load_served": 1, + "dehumidifier_rh_setpoint": 0.5, + "dehumidifier_type": "none", + "dhw_distribution_pipe_r": "0.0", + "dhw_distribution_recirc_branch_piping_length": "50", + "dhw_distribution_recirc_control_type": "no control", + "dhw_distribution_recirc_piping_length": "50", + "dhw_distribution_recirc_pump_power": "50", + "dhw_distribution_standard_piping_length": "50", + "dhw_distribution_system_type": "Standard", + "dishwasher_efficiency": "307", + "dishwasher_efficiency_type": "RatedAnnualkWh", + "dishwasher_label_annual_gas_cost": "22.32", + "dishwasher_label_electric_rate": "0.12", + "dishwasher_label_gas_rate": "1.09", + "dishwasher_label_usage": "4.0", + "dishwasher_location": "living space", + "dishwasher_place_setting_capacity": "12", + "dishwasher_usage_multiplier": 1.0, + "door_area": 20.0, + "door_rvalue": 4.4, + "ducts_number_of_return_registers": "1", + "ducts_return_insulation_r": 0.0, + "ducts_return_leakage_units": "CFM25", + "ducts_return_leakage_value": 0.0, + "ducts_return_location": "living space", + "ducts_return_surface_area": "50.0", + "ducts_supply_insulation_r": 0.0, + "ducts_supply_leakage_units": "CFM25", + "ducts_supply_leakage_value": 0.0, + "ducts_supply_location": "living space", + "ducts_supply_surface_area": "150.0", + "dwhr_efficiency": 0.55, + "dwhr_equal_flow": true, + "dwhr_facilities_connected": "none", + "extra_refrigerator_location": "none", + "extra_refrigerator_rated_annual_kwh": "auto", + "extra_refrigerator_usage_multiplier": 1.0, + "floor_assembly_r": 0, + "foundation_wall_insulation_distance_to_bottom": "auto", + "foundation_wall_insulation_distance_to_top": 0.0, + "foundation_wall_insulation_r": 8.9, + "foundation_wall_thickness": "8.0", + "freezer_location": "none", + "freezer_rated_annual_kwh": "auto", + "freezer_usage_multiplier": 1.0, + "fuel_loads_fireplace_annual_therm": "auto", + "fuel_loads_fireplace_frac_latent": "auto", + "fuel_loads_fireplace_frac_sensible": "auto", + "fuel_loads_fireplace_fuel_type": "natural gas", + "fuel_loads_fireplace_present": false, + "fuel_loads_fireplace_usage_multiplier": 0.0, + "fuel_loads_grill_annual_therm": "auto", + "fuel_loads_grill_fuel_type": "natural gas", + "fuel_loads_grill_present": false, + "fuel_loads_grill_usage_multiplier": 0.0, + "fuel_loads_lighting_annual_therm": "auto", + "fuel_loads_lighting_fuel_type": "natural gas", + "fuel_loads_lighting_present": false, + "fuel_loads_lighting_usage_multiplier": 0.0, + "geometry_aspect_ratio": 1.5, + "geometry_attic_type": "UnventedAttic", + "geometry_balcony_depth": 0.0, + "geometry_building_num_bedrooms": 150, + "geometry_building_num_units": 50, + "geometry_cfa": 900.0, + "geometry_corridor_position": "Double-Loaded Interior", + "geometry_corridor_width": 10.0, + "geometry_eaves_depth": 0, + "geometry_foundation_height": 0.0, + "geometry_foundation_height_above_grade": 0.0, + "geometry_foundation_type": "SlabOnGrade", + "geometry_garage_depth": 20.0, + "geometry_garage_position": "Right", + "geometry_garage_protrusion": 0.0, + "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", + "geometry_horizontal_location": "Right", + "geometry_inset_depth": 0.0, + "geometry_inset_position": "Right", + "geometry_inset_width": 0.0, + "geometry_level": "Bottom", + "geometry_num_bathrooms": "2", + "geometry_num_bedrooms": 3, + "geometry_num_floors_above_grade": 5, + "geometry_num_occupants": "3", + "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, + "geometry_roof_pitch": "6:12", + "geometry_roof_type": "gable", + "geometry_unit_type": "apartment unit", + "geometry_wall_height": 8.0, + "heat_pump_backup_fuel": "none", + "heat_pump_backup_heating_capacity": "34121.0", + "heat_pump_backup_heating_efficiency": 1, + "heat_pump_cooling_capacity": "48000.0", + "heat_pump_cooling_compressor_type": "single stage", + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", + "heat_pump_cooling_sensible_heat_fraction": 0.73, + "heat_pump_fraction_cool_load_served": 1, + "heat_pump_fraction_heat_load_served": 1, + "heat_pump_heating_capacity": "64000.0", + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", + "heat_pump_type": "none", + "heating_system_fraction_heat_load_served": 1, + "heating_system_fraction_heat_load_served_2": 0.25, + "heating_system_fuel": "natural gas", + "heating_system_fuel_2": "electricity", + "heating_system_heating_capacity": "64000.0", + "heating_system_heating_capacity_2": "auto", + "heating_system_heating_efficiency": 0.92, + "heating_system_heating_efficiency_2": 1.0, + "heating_system_type": "Furnace", + "heating_system_type_2": "none", + "holiday_lighting_daily_kwh": "auto", + "holiday_lighting_period_begin_day_of_month": "auto", + "holiday_lighting_period_begin_month": "auto", + "holiday_lighting_period_end_day_of_month": "auto", + "holiday_lighting_period_end_month": "auto", + "holiday_lighting_present": false, + "hot_tub_heater_annual_kwh": "auto", + "hot_tub_heater_annual_therm": "auto", + "hot_tub_heater_type": "electric resistance", + "hot_tub_heater_usage_multiplier": 1.0, + "hot_tub_present": false, + "hot_tub_pump_annual_kwh": "auto", + "hot_tub_pump_usage_multiplier": 1.0, + "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/extra-bldgtype-multifamily-slab-right-bottom-double-loaded-interior.xml", + "kitchen_fans_quantity": "0", + "lighting_fraction_cfl_exterior": 0.4, + "lighting_fraction_cfl_garage": 0.4, + "lighting_fraction_cfl_interior": 0.4, + "lighting_fraction_led_exterior": 0.25, + "lighting_fraction_led_garage": 0.25, + "lighting_fraction_led_interior": 0.25, + "lighting_fraction_lfl_exterior": 0.1, + "lighting_fraction_lfl_garage": 0.1, + "lighting_fraction_lfl_interior": 0.1, + "lighting_usage_multiplier_exterior": 1.0, + "lighting_usage_multiplier_garage": 1.0, + "lighting_usage_multiplier_interior": 1.0, + "mech_vent_fan_power": 30, + "mech_vent_fan_power_2": 30, + "mech_vent_fan_type": "none", + "mech_vent_fan_type_2": "none", + "mech_vent_flow_rate": 110, + "mech_vent_flow_rate_2": 110, + "mech_vent_hours_in_operation": 24, + "mech_vent_hours_in_operation_2": 24, + "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", + "mech_vent_sensible_recovery_efficiency": 0.72, + "mech_vent_sensible_recovery_efficiency_2": 0.72, + "mech_vent_total_recovery_efficiency": 0.48, + "mech_vent_total_recovery_efficiency_2": 0.48, + "neighbor_back_distance": 0, + "neighbor_back_height": "auto", + "neighbor_front_distance": 0, + "neighbor_front_height": "auto", + "neighbor_left_distance": 0, + "neighbor_left_height": "auto", + "neighbor_right_distance": 0, + "neighbor_right_height": "auto", + "overhangs_back_depth": 0, + "overhangs_back_distance_to_top_of_window": 0, + "overhangs_front_depth": 0, + "overhangs_front_distance_to_top_of_window": 0, + "overhangs_left_depth": 0, + "overhangs_left_distance_to_top_of_window": 0, + "overhangs_right_depth": 0, + "overhangs_right_distance_to_top_of_window": 0, + "plug_loads_other_annual_kwh": "819.0", + "plug_loads_other_frac_latent": "0.045", + "plug_loads_other_frac_sensible": "0.855", + "plug_loads_other_usage_multiplier": 1.0, + "plug_loads_television_annual_kwh": "620.0", + "plug_loads_television_usage_multiplier": 1.0, + "plug_loads_vehicle_annual_kwh": "auto", + "plug_loads_vehicle_present": false, + "plug_loads_vehicle_usage_multiplier": 0.0, + "plug_loads_well_pump_annual_kwh": "auto", + "plug_loads_well_pump_present": false, + "plug_loads_well_pump_usage_multiplier": 0.0, + "pool_heater_annual_kwh": "auto", + "pool_heater_annual_therm": "auto", + "pool_heater_type": "electric resistance", + "pool_heater_usage_multiplier": 1.0, + "pool_present": false, + "pool_pump_annual_kwh": "auto", + "pool_pump_usage_multiplier": 1.0, + "pv_system_array_azimuth_1": 180, + "pv_system_array_azimuth_2": 180, + "pv_system_array_tilt_1": "20", + "pv_system_array_tilt_2": "20", + "pv_system_inverter_efficiency_1": 0.96, + "pv_system_inverter_efficiency_2": 0.96, + "pv_system_location_1": "auto", + "pv_system_location_2": "auto", + "pv_system_max_power_output_1": 4000, + "pv_system_max_power_output_2": 4000, + "pv_system_module_type_1": "none", + "pv_system_module_type_2": "none", + "pv_system_num_units_served_1": 1, + "pv_system_num_units_served_2": 1, + "pv_system_system_losses_fraction_1": 0.14, + "pv_system_system_losses_fraction_2": 0.14, + "pv_system_tracking_1": "auto", + "pv_system_tracking_2": "auto", + "refrigerator_location": "living space", + "refrigerator_rated_annual_kwh": "650.0", + "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, + "roof_assembly_r": 2.3, + "roof_color": "medium", + "roof_material_type": "asphalt or fiberglass shingles", + "roof_radiant_barrier": false, + "roof_radiant_barrier_grade": "1", + "schedules_type": "default", + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", + "simulation_control_timestep": "60", + "site_type": "suburban", + "skylight_area_back": 0, + "skylight_area_front": 0, + "skylight_area_left": 0, + "skylight_area_right": 0, + "skylight_shgc": 0.45, + "skylight_ufactor": 0.33, + "slab_carpet_fraction": "0.0", + "slab_carpet_r": "0.0", + "slab_perimeter_depth": 0, + "slab_perimeter_insulation_r": 0, + "slab_thickness": "4.0", + "slab_under_insulation_r": 0, + "slab_under_width": 0, + "solar_thermal_collector_area": 40.0, + "solar_thermal_collector_azimuth": 180, + "solar_thermal_collector_loop_type": "liquid direct", + "solar_thermal_collector_rated_optical_efficiency": 0.5, + "solar_thermal_collector_rated_thermal_losses": 0.2799, + "solar_thermal_collector_tilt": "20", + "solar_thermal_collector_type": "evacuated tube", + "solar_thermal_solar_fraction": 0, + "solar_thermal_storage_volume": "auto", + "solar_thermal_system_type": "none", + "wall_assembly_r": 23, + "wall_color": "medium", + "wall_siding_type": "wood siding", + "wall_type": "WoodStud", + "water_fixtures_shower_low_flow": true, + "water_fixtures_sink_low_flow": false, + "water_fixtures_usage_multiplier": 1.0, + "water_heater_efficiency": 0.95, + "water_heater_efficiency_type": "EnergyFactor", + "water_heater_fuel_type": "electricity", + "water_heater_jacket_rvalue": 0, + "water_heater_location": "living space", + "water_heater_num_units_served": 1, + "water_heater_recovery_efficiency": "0.76", + "water_heater_setpoint_temperature": "125", + "water_heater_standby_loss": 0, + "water_heater_tank_volume": "40", + "water_heater_type": "storage water heater", + "weather_station_epw_filepath": "USA_CO_Denver.Intl.AP.725650_TMY3.epw", + "whole_house_fan_flow_rate": 4500, + "whole_house_fan_power": 300, + "whole_house_fan_present": false, + "window_area_back": 0, + "window_area_front": 0, + "window_area_left": 0, + "window_area_right": 0, + "window_aspect_ratio": 1.333, + "window_back_wwr": 0.18, + "window_fraction_operable": 0.67, + "window_front_wwr": 0.18, + "window_interior_shading_summer": 0.7, + "window_interior_shading_winter": 0.85, + "window_left_wwr": 0.18, + "window_right_wwr": 0.18, + "window_shgc": 0.45, + "window_ufactor": 0.33 + }, + "measure_dir_name": "BuildResidentialHPXML" + } + ] +} \ No newline at end of file diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-slab-right-bottom.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-slab-right-bottom.osw new file mode 100644 index 00000000..8f81a1a6 --- /dev/null +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-slab-right-bottom.osw @@ -0,0 +1,341 @@ +{ + "measure_paths": [ + "../.." + ], + "steps": [ + { + "arguments": { + "air_leakage_house_pressure": 50, + "air_leakage_shielding_of_home": "auto", + "air_leakage_units": "ACH", + "air_leakage_value": 3, + "bathroom_fans_quantity": "0", + "ceiling_assembly_r": 39.3, + "ceiling_fan_cooling_setpoint_temp_offset": 0, + "ceiling_fan_efficiency": "auto", + "ceiling_fan_present": false, + "ceiling_fan_quantity": "auto", + "clothes_dryer_efficiency": "3.73", + "clothes_dryer_efficiency_type": "CombinedEnergyFactor", + "clothes_dryer_fuel_type": "electricity", + "clothes_dryer_location": "living space", + "clothes_dryer_usage_multiplier": 1.0, + "clothes_dryer_vented_flow_rate": "150.0", + "clothes_washer_capacity": "3.2", + "clothes_washer_efficiency": "1.21", + "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", + "clothes_washer_label_annual_gas_cost": "27.0", + "clothes_washer_label_electric_rate": "0.12", + "clothes_washer_label_gas_rate": "1.09", + "clothes_washer_label_usage": "6.0", + "clothes_washer_location": "living space", + "clothes_washer_rated_annual_kwh": "380.0", + "clothes_washer_usage_multiplier": 1.0, + "cooking_range_oven_fuel_type": "electricity", + "cooking_range_oven_is_convection": false, + "cooking_range_oven_is_induction": false, + "cooking_range_oven_location": "living space", + "cooking_range_oven_usage_multiplier": 1.0, + "cooling_system_cooling_capacity": "48000.0", + "cooling_system_cooling_compressor_type": "single stage", + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", + "cooling_system_cooling_sensible_heat_fraction": 0.73, + "cooling_system_fraction_cool_load_served": 1, + "cooling_system_is_ducted": false, + "cooling_system_type": "central air conditioner", + "dehumidifier_capacity": 40, + "dehumidifier_efficiency": 1.8, + "dehumidifier_efficiency_type": "EnergyFactor", + "dehumidifier_fraction_dehumidification_load_served": 1, + "dehumidifier_rh_setpoint": 0.5, + "dehumidifier_type": "none", + "dhw_distribution_pipe_r": "0.0", + "dhw_distribution_recirc_branch_piping_length": "50", + "dhw_distribution_recirc_control_type": "no control", + "dhw_distribution_recirc_piping_length": "50", + "dhw_distribution_recirc_pump_power": "50", + "dhw_distribution_standard_piping_length": "50", + "dhw_distribution_system_type": "Standard", + "dishwasher_efficiency": "307", + "dishwasher_efficiency_type": "RatedAnnualkWh", + "dishwasher_label_annual_gas_cost": "22.32", + "dishwasher_label_electric_rate": "0.12", + "dishwasher_label_gas_rate": "1.09", + "dishwasher_label_usage": "4.0", + "dishwasher_location": "living space", + "dishwasher_place_setting_capacity": "12", + "dishwasher_usage_multiplier": 1.0, + "door_area": 20.0, + "door_rvalue": 4.4, + "ducts_number_of_return_registers": "1", + "ducts_return_insulation_r": 0.0, + "ducts_return_leakage_units": "CFM25", + "ducts_return_leakage_value": 0.0, + "ducts_return_location": "living space", + "ducts_return_surface_area": "50.0", + "ducts_supply_insulation_r": 0.0, + "ducts_supply_leakage_units": "CFM25", + "ducts_supply_leakage_value": 0.0, + "ducts_supply_location": "living space", + "ducts_supply_surface_area": "150.0", + "dwhr_efficiency": 0.55, + "dwhr_equal_flow": true, + "dwhr_facilities_connected": "none", + "extra_refrigerator_location": "none", + "extra_refrigerator_rated_annual_kwh": "auto", + "extra_refrigerator_usage_multiplier": 1.0, + "floor_assembly_r": 0, + "foundation_wall_insulation_distance_to_bottom": "auto", + "foundation_wall_insulation_distance_to_top": 0.0, + "foundation_wall_insulation_r": 8.9, + "foundation_wall_thickness": "8.0", + "freezer_location": "none", + "freezer_rated_annual_kwh": "auto", + "freezer_usage_multiplier": 1.0, + "fuel_loads_fireplace_annual_therm": "auto", + "fuel_loads_fireplace_frac_latent": "auto", + "fuel_loads_fireplace_frac_sensible": "auto", + "fuel_loads_fireplace_fuel_type": "natural gas", + "fuel_loads_fireplace_present": false, + "fuel_loads_fireplace_usage_multiplier": 0.0, + "fuel_loads_grill_annual_therm": "auto", + "fuel_loads_grill_fuel_type": "natural gas", + "fuel_loads_grill_present": false, + "fuel_loads_grill_usage_multiplier": 0.0, + "fuel_loads_lighting_annual_therm": "auto", + "fuel_loads_lighting_fuel_type": "natural gas", + "fuel_loads_lighting_present": false, + "fuel_loads_lighting_usage_multiplier": 0.0, + "geometry_aspect_ratio": 1.5, + "geometry_attic_type": "UnventedAttic", + "geometry_balcony_depth": 0.0, + "geometry_building_num_bedrooms": 150, + "geometry_building_num_units": 50, + "geometry_cfa": 900.0, + "geometry_corridor_position": "None", + "geometry_corridor_width": 10.0, + "geometry_eaves_depth": 0, + "geometry_foundation_height": 0.0, + "geometry_foundation_height_above_grade": 0.0, + "geometry_foundation_type": "SlabOnGrade", + "geometry_garage_depth": 20.0, + "geometry_garage_position": "Right", + "geometry_garage_protrusion": 0.0, + "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", + "geometry_horizontal_location": "Right", + "geometry_inset_depth": 0.0, + "geometry_inset_position": "Right", + "geometry_inset_width": 0.0, + "geometry_level": "Bottom", + "geometry_num_bathrooms": "2", + "geometry_num_bedrooms": 3, + "geometry_num_floors_above_grade": 5, + "geometry_num_occupants": "3", + "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, + "geometry_roof_pitch": "6:12", + "geometry_roof_type": "gable", + "geometry_unit_type": "apartment unit", + "geometry_wall_height": 8.0, + "heat_pump_backup_fuel": "none", + "heat_pump_backup_heating_capacity": "34121.0", + "heat_pump_backup_heating_efficiency": 1, + "heat_pump_cooling_capacity": "48000.0", + "heat_pump_cooling_compressor_type": "single stage", + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", + "heat_pump_cooling_sensible_heat_fraction": 0.73, + "heat_pump_fraction_cool_load_served": 1, + "heat_pump_fraction_heat_load_served": 1, + "heat_pump_heating_capacity": "64000.0", + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", + "heat_pump_type": "none", + "heating_system_fraction_heat_load_served": 1, + "heating_system_fraction_heat_load_served_2": 0.25, + "heating_system_fuel": "natural gas", + "heating_system_fuel_2": "electricity", + "heating_system_heating_capacity": "64000.0", + "heating_system_heating_capacity_2": "auto", + "heating_system_heating_efficiency": 0.92, + "heating_system_heating_efficiency_2": 1.0, + "heating_system_type": "Furnace", + "heating_system_type_2": "none", + "holiday_lighting_daily_kwh": "auto", + "holiday_lighting_period_begin_day_of_month": "auto", + "holiday_lighting_period_begin_month": "auto", + "holiday_lighting_period_end_day_of_month": "auto", + "holiday_lighting_period_end_month": "auto", + "holiday_lighting_present": false, + "hot_tub_heater_annual_kwh": "auto", + "hot_tub_heater_annual_therm": "auto", + "hot_tub_heater_type": "electric resistance", + "hot_tub_heater_usage_multiplier": 1.0, + "hot_tub_present": false, + "hot_tub_pump_annual_kwh": "auto", + "hot_tub_pump_usage_multiplier": 1.0, + "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/extra-bldgtype-multifamily-slab-right-bottom.xml", + "kitchen_fans_quantity": "0", + "lighting_fraction_cfl_exterior": 0.4, + "lighting_fraction_cfl_garage": 0.4, + "lighting_fraction_cfl_interior": 0.4, + "lighting_fraction_led_exterior": 0.25, + "lighting_fraction_led_garage": 0.25, + "lighting_fraction_led_interior": 0.25, + "lighting_fraction_lfl_exterior": 0.1, + "lighting_fraction_lfl_garage": 0.1, + "lighting_fraction_lfl_interior": 0.1, + "lighting_usage_multiplier_exterior": 1.0, + "lighting_usage_multiplier_garage": 1.0, + "lighting_usage_multiplier_interior": 1.0, + "mech_vent_fan_power": 30, + "mech_vent_fan_power_2": 30, + "mech_vent_fan_type": "none", + "mech_vent_fan_type_2": "none", + "mech_vent_flow_rate": 110, + "mech_vent_flow_rate_2": 110, + "mech_vent_hours_in_operation": 24, + "mech_vent_hours_in_operation_2": 24, + "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", + "mech_vent_sensible_recovery_efficiency": 0.72, + "mech_vent_sensible_recovery_efficiency_2": 0.72, + "mech_vent_total_recovery_efficiency": 0.48, + "mech_vent_total_recovery_efficiency_2": 0.48, + "neighbor_back_distance": 0, + "neighbor_back_height": "auto", + "neighbor_front_distance": 0, + "neighbor_front_height": "auto", + "neighbor_left_distance": 0, + "neighbor_left_height": "auto", + "neighbor_right_distance": 0, + "neighbor_right_height": "auto", + "overhangs_back_depth": 0, + "overhangs_back_distance_to_top_of_window": 0, + "overhangs_front_depth": 0, + "overhangs_front_distance_to_top_of_window": 0, + "overhangs_left_depth": 0, + "overhangs_left_distance_to_top_of_window": 0, + "overhangs_right_depth": 0, + "overhangs_right_distance_to_top_of_window": 0, + "plug_loads_other_annual_kwh": "819.0", + "plug_loads_other_frac_latent": "0.045", + "plug_loads_other_frac_sensible": "0.855", + "plug_loads_other_usage_multiplier": 1.0, + "plug_loads_television_annual_kwh": "620.0", + "plug_loads_television_usage_multiplier": 1.0, + "plug_loads_vehicle_annual_kwh": "auto", + "plug_loads_vehicle_present": false, + "plug_loads_vehicle_usage_multiplier": 0.0, + "plug_loads_well_pump_annual_kwh": "auto", + "plug_loads_well_pump_present": false, + "plug_loads_well_pump_usage_multiplier": 0.0, + "pool_heater_annual_kwh": "auto", + "pool_heater_annual_therm": "auto", + "pool_heater_type": "electric resistance", + "pool_heater_usage_multiplier": 1.0, + "pool_present": false, + "pool_pump_annual_kwh": "auto", + "pool_pump_usage_multiplier": 1.0, + "pv_system_array_azimuth_1": 180, + "pv_system_array_azimuth_2": 180, + "pv_system_array_tilt_1": "20", + "pv_system_array_tilt_2": "20", + "pv_system_inverter_efficiency_1": 0.96, + "pv_system_inverter_efficiency_2": 0.96, + "pv_system_location_1": "auto", + "pv_system_location_2": "auto", + "pv_system_max_power_output_1": 4000, + "pv_system_max_power_output_2": 4000, + "pv_system_module_type_1": "none", + "pv_system_module_type_2": "none", + "pv_system_num_units_served_1": 1, + "pv_system_num_units_served_2": 1, + "pv_system_system_losses_fraction_1": 0.14, + "pv_system_system_losses_fraction_2": 0.14, + "pv_system_tracking_1": "auto", + "pv_system_tracking_2": "auto", + "refrigerator_location": "living space", + "refrigerator_rated_annual_kwh": "650.0", + "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, + "roof_assembly_r": 2.3, + "roof_color": "medium", + "roof_material_type": "asphalt or fiberglass shingles", + "roof_radiant_barrier": false, + "roof_radiant_barrier_grade": "1", + "schedules_type": "default", + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", + "simulation_control_timestep": "60", + "site_type": "suburban", + "skylight_area_back": 0, + "skylight_area_front": 0, + "skylight_area_left": 0, + "skylight_area_right": 0, + "skylight_shgc": 0.45, + "skylight_ufactor": 0.33, + "slab_carpet_fraction": "0.0", + "slab_carpet_r": "0.0", + "slab_perimeter_depth": 0, + "slab_perimeter_insulation_r": 0, + "slab_thickness": "4.0", + "slab_under_insulation_r": 0, + "slab_under_width": 0, + "solar_thermal_collector_area": 40.0, + "solar_thermal_collector_azimuth": 180, + "solar_thermal_collector_loop_type": "liquid direct", + "solar_thermal_collector_rated_optical_efficiency": 0.5, + "solar_thermal_collector_rated_thermal_losses": 0.2799, + "solar_thermal_collector_tilt": "20", + "solar_thermal_collector_type": "evacuated tube", + "solar_thermal_solar_fraction": 0, + "solar_thermal_storage_volume": "auto", + "solar_thermal_system_type": "none", + "wall_assembly_r": 23, + "wall_color": "medium", + "wall_siding_type": "wood siding", + "wall_type": "WoodStud", + "water_fixtures_shower_low_flow": true, + "water_fixtures_sink_low_flow": false, + "water_fixtures_usage_multiplier": 1.0, + "water_heater_efficiency": 0.95, + "water_heater_efficiency_type": "EnergyFactor", + "water_heater_fuel_type": "electricity", + "water_heater_jacket_rvalue": 0, + "water_heater_location": "living space", + "water_heater_num_units_served": 1, + "water_heater_recovery_efficiency": "0.76", + "water_heater_setpoint_temperature": "125", + "water_heater_standby_loss": 0, + "water_heater_tank_volume": "40", + "water_heater_type": "storage water heater", + "weather_station_epw_filepath": "USA_CO_Denver.Intl.AP.725650_TMY3.epw", + "whole_house_fan_flow_rate": 4500, + "whole_house_fan_power": 300, + "whole_house_fan_present": false, + "window_area_back": 0, + "window_area_front": 0, + "window_area_left": 0, + "window_area_right": 0, + "window_aspect_ratio": 1.333, + "window_back_wwr": 0.18, + "window_fraction_operable": 0.67, + "window_front_wwr": 0.18, + "window_interior_shading_summer": 0.7, + "window_interior_shading_winter": 0.85, + "window_left_wwr": 0.18, + "window_right_wwr": 0.18, + "window_shgc": 0.45, + "window_ufactor": 0.33 + }, + "measure_dir_name": "BuildResidentialHPXML" + } + ] +} \ No newline at end of file diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-slab-right-middle-double-loaded-interior.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-slab-right-middle-double-loaded-interior.osw new file mode 100644 index 00000000..d62a518b --- /dev/null +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-slab-right-middle-double-loaded-interior.osw @@ -0,0 +1,341 @@ +{ + "measure_paths": [ + "../.." + ], + "steps": [ + { + "arguments": { + "air_leakage_house_pressure": 50, + "air_leakage_shielding_of_home": "auto", + "air_leakage_units": "ACH", + "air_leakage_value": 3, + "bathroom_fans_quantity": "0", + "ceiling_assembly_r": 39.3, + "ceiling_fan_cooling_setpoint_temp_offset": 0, + "ceiling_fan_efficiency": "auto", + "ceiling_fan_present": false, + "ceiling_fan_quantity": "auto", + "clothes_dryer_efficiency": "3.73", + "clothes_dryer_efficiency_type": "CombinedEnergyFactor", + "clothes_dryer_fuel_type": "electricity", + "clothes_dryer_location": "living space", + "clothes_dryer_usage_multiplier": 1.0, + "clothes_dryer_vented_flow_rate": "150.0", + "clothes_washer_capacity": "3.2", + "clothes_washer_efficiency": "1.21", + "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", + "clothes_washer_label_annual_gas_cost": "27.0", + "clothes_washer_label_electric_rate": "0.12", + "clothes_washer_label_gas_rate": "1.09", + "clothes_washer_label_usage": "6.0", + "clothes_washer_location": "living space", + "clothes_washer_rated_annual_kwh": "380.0", + "clothes_washer_usage_multiplier": 1.0, + "cooking_range_oven_fuel_type": "electricity", + "cooking_range_oven_is_convection": false, + "cooking_range_oven_is_induction": false, + "cooking_range_oven_location": "living space", + "cooking_range_oven_usage_multiplier": 1.0, + "cooling_system_cooling_capacity": "48000.0", + "cooling_system_cooling_compressor_type": "single stage", + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", + "cooling_system_cooling_sensible_heat_fraction": 0.73, + "cooling_system_fraction_cool_load_served": 1, + "cooling_system_is_ducted": false, + "cooling_system_type": "central air conditioner", + "dehumidifier_capacity": 40, + "dehumidifier_efficiency": 1.8, + "dehumidifier_efficiency_type": "EnergyFactor", + "dehumidifier_fraction_dehumidification_load_served": 1, + "dehumidifier_rh_setpoint": 0.5, + "dehumidifier_type": "none", + "dhw_distribution_pipe_r": "0.0", + "dhw_distribution_recirc_branch_piping_length": "50", + "dhw_distribution_recirc_control_type": "no control", + "dhw_distribution_recirc_piping_length": "50", + "dhw_distribution_recirc_pump_power": "50", + "dhw_distribution_standard_piping_length": "50", + "dhw_distribution_system_type": "Standard", + "dishwasher_efficiency": "307", + "dishwasher_efficiency_type": "RatedAnnualkWh", + "dishwasher_label_annual_gas_cost": "22.32", + "dishwasher_label_electric_rate": "0.12", + "dishwasher_label_gas_rate": "1.09", + "dishwasher_label_usage": "4.0", + "dishwasher_location": "living space", + "dishwasher_place_setting_capacity": "12", + "dishwasher_usage_multiplier": 1.0, + "door_area": 20.0, + "door_rvalue": 4.4, + "ducts_number_of_return_registers": "1", + "ducts_return_insulation_r": 0.0, + "ducts_return_leakage_units": "CFM25", + "ducts_return_leakage_value": 0.0, + "ducts_return_location": "living space", + "ducts_return_surface_area": "50.0", + "ducts_supply_insulation_r": 0.0, + "ducts_supply_leakage_units": "CFM25", + "ducts_supply_leakage_value": 0.0, + "ducts_supply_location": "living space", + "ducts_supply_surface_area": "150.0", + "dwhr_efficiency": 0.55, + "dwhr_equal_flow": true, + "dwhr_facilities_connected": "none", + "extra_refrigerator_location": "none", + "extra_refrigerator_rated_annual_kwh": "auto", + "extra_refrigerator_usage_multiplier": 1.0, + "floor_assembly_r": 0, + "foundation_wall_insulation_distance_to_bottom": "auto", + "foundation_wall_insulation_distance_to_top": 0.0, + "foundation_wall_insulation_r": 8.9, + "foundation_wall_thickness": "8.0", + "freezer_location": "none", + "freezer_rated_annual_kwh": "auto", + "freezer_usage_multiplier": 1.0, + "fuel_loads_fireplace_annual_therm": "auto", + "fuel_loads_fireplace_frac_latent": "auto", + "fuel_loads_fireplace_frac_sensible": "auto", + "fuel_loads_fireplace_fuel_type": "natural gas", + "fuel_loads_fireplace_present": false, + "fuel_loads_fireplace_usage_multiplier": 0.0, + "fuel_loads_grill_annual_therm": "auto", + "fuel_loads_grill_fuel_type": "natural gas", + "fuel_loads_grill_present": false, + "fuel_loads_grill_usage_multiplier": 0.0, + "fuel_loads_lighting_annual_therm": "auto", + "fuel_loads_lighting_fuel_type": "natural gas", + "fuel_loads_lighting_present": false, + "fuel_loads_lighting_usage_multiplier": 0.0, + "geometry_aspect_ratio": 1.5, + "geometry_attic_type": "UnventedAttic", + "geometry_balcony_depth": 0.0, + "geometry_building_num_bedrooms": 150, + "geometry_building_num_units": 50, + "geometry_cfa": 900.0, + "geometry_corridor_position": "Double-Loaded Interior", + "geometry_corridor_width": 10.0, + "geometry_eaves_depth": 0, + "geometry_foundation_height": 0.0, + "geometry_foundation_height_above_grade": 0.0, + "geometry_foundation_type": "SlabOnGrade", + "geometry_garage_depth": 20.0, + "geometry_garage_position": "Right", + "geometry_garage_protrusion": 0.0, + "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", + "geometry_horizontal_location": "Right", + "geometry_inset_depth": 0.0, + "geometry_inset_position": "Right", + "geometry_inset_width": 0.0, + "geometry_level": "Middle", + "geometry_num_bathrooms": "2", + "geometry_num_bedrooms": 3, + "geometry_num_floors_above_grade": 5, + "geometry_num_occupants": "3", + "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, + "geometry_roof_pitch": "6:12", + "geometry_roof_type": "gable", + "geometry_unit_type": "apartment unit", + "geometry_wall_height": 8.0, + "heat_pump_backup_fuel": "none", + "heat_pump_backup_heating_capacity": "34121.0", + "heat_pump_backup_heating_efficiency": 1, + "heat_pump_cooling_capacity": "48000.0", + "heat_pump_cooling_compressor_type": "single stage", + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", + "heat_pump_cooling_sensible_heat_fraction": 0.73, + "heat_pump_fraction_cool_load_served": 1, + "heat_pump_fraction_heat_load_served": 1, + "heat_pump_heating_capacity": "64000.0", + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", + "heat_pump_type": "none", + "heating_system_fraction_heat_load_served": 1, + "heating_system_fraction_heat_load_served_2": 0.25, + "heating_system_fuel": "natural gas", + "heating_system_fuel_2": "electricity", + "heating_system_heating_capacity": "64000.0", + "heating_system_heating_capacity_2": "auto", + "heating_system_heating_efficiency": 0.92, + "heating_system_heating_efficiency_2": 1.0, + "heating_system_type": "Furnace", + "heating_system_type_2": "none", + "holiday_lighting_daily_kwh": "auto", + "holiday_lighting_period_begin_day_of_month": "auto", + "holiday_lighting_period_begin_month": "auto", + "holiday_lighting_period_end_day_of_month": "auto", + "holiday_lighting_period_end_month": "auto", + "holiday_lighting_present": false, + "hot_tub_heater_annual_kwh": "auto", + "hot_tub_heater_annual_therm": "auto", + "hot_tub_heater_type": "electric resistance", + "hot_tub_heater_usage_multiplier": 1.0, + "hot_tub_present": false, + "hot_tub_pump_annual_kwh": "auto", + "hot_tub_pump_usage_multiplier": 1.0, + "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/extra-bldgtype-multifamily-slab-right-middle-double-loaded-interior.xml", + "kitchen_fans_quantity": "0", + "lighting_fraction_cfl_exterior": 0.4, + "lighting_fraction_cfl_garage": 0.4, + "lighting_fraction_cfl_interior": 0.4, + "lighting_fraction_led_exterior": 0.25, + "lighting_fraction_led_garage": 0.25, + "lighting_fraction_led_interior": 0.25, + "lighting_fraction_lfl_exterior": 0.1, + "lighting_fraction_lfl_garage": 0.1, + "lighting_fraction_lfl_interior": 0.1, + "lighting_usage_multiplier_exterior": 1.0, + "lighting_usage_multiplier_garage": 1.0, + "lighting_usage_multiplier_interior": 1.0, + "mech_vent_fan_power": 30, + "mech_vent_fan_power_2": 30, + "mech_vent_fan_type": "none", + "mech_vent_fan_type_2": "none", + "mech_vent_flow_rate": 110, + "mech_vent_flow_rate_2": 110, + "mech_vent_hours_in_operation": 24, + "mech_vent_hours_in_operation_2": 24, + "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", + "mech_vent_sensible_recovery_efficiency": 0.72, + "mech_vent_sensible_recovery_efficiency_2": 0.72, + "mech_vent_total_recovery_efficiency": 0.48, + "mech_vent_total_recovery_efficiency_2": 0.48, + "neighbor_back_distance": 0, + "neighbor_back_height": "auto", + "neighbor_front_distance": 0, + "neighbor_front_height": "auto", + "neighbor_left_distance": 0, + "neighbor_left_height": "auto", + "neighbor_right_distance": 0, + "neighbor_right_height": "auto", + "overhangs_back_depth": 0, + "overhangs_back_distance_to_top_of_window": 0, + "overhangs_front_depth": 0, + "overhangs_front_distance_to_top_of_window": 0, + "overhangs_left_depth": 0, + "overhangs_left_distance_to_top_of_window": 0, + "overhangs_right_depth": 0, + "overhangs_right_distance_to_top_of_window": 0, + "plug_loads_other_annual_kwh": "819.0", + "plug_loads_other_frac_latent": "0.045", + "plug_loads_other_frac_sensible": "0.855", + "plug_loads_other_usage_multiplier": 1.0, + "plug_loads_television_annual_kwh": "620.0", + "plug_loads_television_usage_multiplier": 1.0, + "plug_loads_vehicle_annual_kwh": "auto", + "plug_loads_vehicle_present": false, + "plug_loads_vehicle_usage_multiplier": 0.0, + "plug_loads_well_pump_annual_kwh": "auto", + "plug_loads_well_pump_present": false, + "plug_loads_well_pump_usage_multiplier": 0.0, + "pool_heater_annual_kwh": "auto", + "pool_heater_annual_therm": "auto", + "pool_heater_type": "electric resistance", + "pool_heater_usage_multiplier": 1.0, + "pool_present": false, + "pool_pump_annual_kwh": "auto", + "pool_pump_usage_multiplier": 1.0, + "pv_system_array_azimuth_1": 180, + "pv_system_array_azimuth_2": 180, + "pv_system_array_tilt_1": "20", + "pv_system_array_tilt_2": "20", + "pv_system_inverter_efficiency_1": 0.96, + "pv_system_inverter_efficiency_2": 0.96, + "pv_system_location_1": "auto", + "pv_system_location_2": "auto", + "pv_system_max_power_output_1": 4000, + "pv_system_max_power_output_2": 4000, + "pv_system_module_type_1": "none", + "pv_system_module_type_2": "none", + "pv_system_num_units_served_1": 1, + "pv_system_num_units_served_2": 1, + "pv_system_system_losses_fraction_1": 0.14, + "pv_system_system_losses_fraction_2": 0.14, + "pv_system_tracking_1": "auto", + "pv_system_tracking_2": "auto", + "refrigerator_location": "living space", + "refrigerator_rated_annual_kwh": "650.0", + "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, + "roof_assembly_r": 2.3, + "roof_color": "medium", + "roof_material_type": "asphalt or fiberglass shingles", + "roof_radiant_barrier": false, + "roof_radiant_barrier_grade": "1", + "schedules_type": "default", + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", + "simulation_control_timestep": "60", + "site_type": "suburban", + "skylight_area_back": 0, + "skylight_area_front": 0, + "skylight_area_left": 0, + "skylight_area_right": 0, + "skylight_shgc": 0.45, + "skylight_ufactor": 0.33, + "slab_carpet_fraction": "0.0", + "slab_carpet_r": "0.0", + "slab_perimeter_depth": 0, + "slab_perimeter_insulation_r": 0, + "slab_thickness": "4.0", + "slab_under_insulation_r": 0, + "slab_under_width": 0, + "solar_thermal_collector_area": 40.0, + "solar_thermal_collector_azimuth": 180, + "solar_thermal_collector_loop_type": "liquid direct", + "solar_thermal_collector_rated_optical_efficiency": 0.5, + "solar_thermal_collector_rated_thermal_losses": 0.2799, + "solar_thermal_collector_tilt": "20", + "solar_thermal_collector_type": "evacuated tube", + "solar_thermal_solar_fraction": 0, + "solar_thermal_storage_volume": "auto", + "solar_thermal_system_type": "none", + "wall_assembly_r": 23, + "wall_color": "medium", + "wall_siding_type": "wood siding", + "wall_type": "WoodStud", + "water_fixtures_shower_low_flow": true, + "water_fixtures_sink_low_flow": false, + "water_fixtures_usage_multiplier": 1.0, + "water_heater_efficiency": 0.95, + "water_heater_efficiency_type": "EnergyFactor", + "water_heater_fuel_type": "electricity", + "water_heater_jacket_rvalue": 0, + "water_heater_location": "living space", + "water_heater_num_units_served": 1, + "water_heater_recovery_efficiency": "0.76", + "water_heater_setpoint_temperature": "125", + "water_heater_standby_loss": 0, + "water_heater_tank_volume": "40", + "water_heater_type": "storage water heater", + "weather_station_epw_filepath": "USA_CO_Denver.Intl.AP.725650_TMY3.epw", + "whole_house_fan_flow_rate": 4500, + "whole_house_fan_power": 300, + "whole_house_fan_present": false, + "window_area_back": 0, + "window_area_front": 0, + "window_area_left": 0, + "window_area_right": 0, + "window_aspect_ratio": 1.333, + "window_back_wwr": 0.18, + "window_fraction_operable": 0.67, + "window_front_wwr": 0.18, + "window_interior_shading_summer": 0.7, + "window_interior_shading_winter": 0.85, + "window_left_wwr": 0.18, + "window_right_wwr": 0.18, + "window_shgc": 0.45, + "window_ufactor": 0.33 + }, + "measure_dir_name": "BuildResidentialHPXML" + } + ] +} \ No newline at end of file diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-slab-right-middle.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-slab-right-middle.osw new file mode 100644 index 00000000..4ef2c79a --- /dev/null +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-slab-right-middle.osw @@ -0,0 +1,341 @@ +{ + "measure_paths": [ + "../.." + ], + "steps": [ + { + "arguments": { + "air_leakage_house_pressure": 50, + "air_leakage_shielding_of_home": "auto", + "air_leakage_units": "ACH", + "air_leakage_value": 3, + "bathroom_fans_quantity": "0", + "ceiling_assembly_r": 39.3, + "ceiling_fan_cooling_setpoint_temp_offset": 0, + "ceiling_fan_efficiency": "auto", + "ceiling_fan_present": false, + "ceiling_fan_quantity": "auto", + "clothes_dryer_efficiency": "3.73", + "clothes_dryer_efficiency_type": "CombinedEnergyFactor", + "clothes_dryer_fuel_type": "electricity", + "clothes_dryer_location": "living space", + "clothes_dryer_usage_multiplier": 1.0, + "clothes_dryer_vented_flow_rate": "150.0", + "clothes_washer_capacity": "3.2", + "clothes_washer_efficiency": "1.21", + "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", + "clothes_washer_label_annual_gas_cost": "27.0", + "clothes_washer_label_electric_rate": "0.12", + "clothes_washer_label_gas_rate": "1.09", + "clothes_washer_label_usage": "6.0", + "clothes_washer_location": "living space", + "clothes_washer_rated_annual_kwh": "380.0", + "clothes_washer_usage_multiplier": 1.0, + "cooking_range_oven_fuel_type": "electricity", + "cooking_range_oven_is_convection": false, + "cooking_range_oven_is_induction": false, + "cooking_range_oven_location": "living space", + "cooking_range_oven_usage_multiplier": 1.0, + "cooling_system_cooling_capacity": "48000.0", + "cooling_system_cooling_compressor_type": "single stage", + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", + "cooling_system_cooling_sensible_heat_fraction": 0.73, + "cooling_system_fraction_cool_load_served": 1, + "cooling_system_is_ducted": false, + "cooling_system_type": "central air conditioner", + "dehumidifier_capacity": 40, + "dehumidifier_efficiency": 1.8, + "dehumidifier_efficiency_type": "EnergyFactor", + "dehumidifier_fraction_dehumidification_load_served": 1, + "dehumidifier_rh_setpoint": 0.5, + "dehumidifier_type": "none", + "dhw_distribution_pipe_r": "0.0", + "dhw_distribution_recirc_branch_piping_length": "50", + "dhw_distribution_recirc_control_type": "no control", + "dhw_distribution_recirc_piping_length": "50", + "dhw_distribution_recirc_pump_power": "50", + "dhw_distribution_standard_piping_length": "50", + "dhw_distribution_system_type": "Standard", + "dishwasher_efficiency": "307", + "dishwasher_efficiency_type": "RatedAnnualkWh", + "dishwasher_label_annual_gas_cost": "22.32", + "dishwasher_label_electric_rate": "0.12", + "dishwasher_label_gas_rate": "1.09", + "dishwasher_label_usage": "4.0", + "dishwasher_location": "living space", + "dishwasher_place_setting_capacity": "12", + "dishwasher_usage_multiplier": 1.0, + "door_area": 20.0, + "door_rvalue": 4.4, + "ducts_number_of_return_registers": "1", + "ducts_return_insulation_r": 0.0, + "ducts_return_leakage_units": "CFM25", + "ducts_return_leakage_value": 0.0, + "ducts_return_location": "living space", + "ducts_return_surface_area": "50.0", + "ducts_supply_insulation_r": 0.0, + "ducts_supply_leakage_units": "CFM25", + "ducts_supply_leakage_value": 0.0, + "ducts_supply_location": "living space", + "ducts_supply_surface_area": "150.0", + "dwhr_efficiency": 0.55, + "dwhr_equal_flow": true, + "dwhr_facilities_connected": "none", + "extra_refrigerator_location": "none", + "extra_refrigerator_rated_annual_kwh": "auto", + "extra_refrigerator_usage_multiplier": 1.0, + "floor_assembly_r": 0, + "foundation_wall_insulation_distance_to_bottom": "auto", + "foundation_wall_insulation_distance_to_top": 0.0, + "foundation_wall_insulation_r": 8.9, + "foundation_wall_thickness": "8.0", + "freezer_location": "none", + "freezer_rated_annual_kwh": "auto", + "freezer_usage_multiplier": 1.0, + "fuel_loads_fireplace_annual_therm": "auto", + "fuel_loads_fireplace_frac_latent": "auto", + "fuel_loads_fireplace_frac_sensible": "auto", + "fuel_loads_fireplace_fuel_type": "natural gas", + "fuel_loads_fireplace_present": false, + "fuel_loads_fireplace_usage_multiplier": 0.0, + "fuel_loads_grill_annual_therm": "auto", + "fuel_loads_grill_fuel_type": "natural gas", + "fuel_loads_grill_present": false, + "fuel_loads_grill_usage_multiplier": 0.0, + "fuel_loads_lighting_annual_therm": "auto", + "fuel_loads_lighting_fuel_type": "natural gas", + "fuel_loads_lighting_present": false, + "fuel_loads_lighting_usage_multiplier": 0.0, + "geometry_aspect_ratio": 1.5, + "geometry_attic_type": "UnventedAttic", + "geometry_balcony_depth": 0.0, + "geometry_building_num_bedrooms": 150, + "geometry_building_num_units": 50, + "geometry_cfa": 900.0, + "geometry_corridor_position": "None", + "geometry_corridor_width": 10.0, + "geometry_eaves_depth": 0, + "geometry_foundation_height": 0.0, + "geometry_foundation_height_above_grade": 0.0, + "geometry_foundation_type": "SlabOnGrade", + "geometry_garage_depth": 20.0, + "geometry_garage_position": "Right", + "geometry_garage_protrusion": 0.0, + "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", + "geometry_horizontal_location": "Right", + "geometry_inset_depth": 0.0, + "geometry_inset_position": "Right", + "geometry_inset_width": 0.0, + "geometry_level": "Middle", + "geometry_num_bathrooms": "2", + "geometry_num_bedrooms": 3, + "geometry_num_floors_above_grade": 5, + "geometry_num_occupants": "3", + "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, + "geometry_roof_pitch": "6:12", + "geometry_roof_type": "gable", + "geometry_unit_type": "apartment unit", + "geometry_wall_height": 8.0, + "heat_pump_backup_fuel": "none", + "heat_pump_backup_heating_capacity": "34121.0", + "heat_pump_backup_heating_efficiency": 1, + "heat_pump_cooling_capacity": "48000.0", + "heat_pump_cooling_compressor_type": "single stage", + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", + "heat_pump_cooling_sensible_heat_fraction": 0.73, + "heat_pump_fraction_cool_load_served": 1, + "heat_pump_fraction_heat_load_served": 1, + "heat_pump_heating_capacity": "64000.0", + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", + "heat_pump_type": "none", + "heating_system_fraction_heat_load_served": 1, + "heating_system_fraction_heat_load_served_2": 0.25, + "heating_system_fuel": "natural gas", + "heating_system_fuel_2": "electricity", + "heating_system_heating_capacity": "64000.0", + "heating_system_heating_capacity_2": "auto", + "heating_system_heating_efficiency": 0.92, + "heating_system_heating_efficiency_2": 1.0, + "heating_system_type": "Furnace", + "heating_system_type_2": "none", + "holiday_lighting_daily_kwh": "auto", + "holiday_lighting_period_begin_day_of_month": "auto", + "holiday_lighting_period_begin_month": "auto", + "holiday_lighting_period_end_day_of_month": "auto", + "holiday_lighting_period_end_month": "auto", + "holiday_lighting_present": false, + "hot_tub_heater_annual_kwh": "auto", + "hot_tub_heater_annual_therm": "auto", + "hot_tub_heater_type": "electric resistance", + "hot_tub_heater_usage_multiplier": 1.0, + "hot_tub_present": false, + "hot_tub_pump_annual_kwh": "auto", + "hot_tub_pump_usage_multiplier": 1.0, + "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/extra-bldgtype-multifamily-slab-right-middle.xml", + "kitchen_fans_quantity": "0", + "lighting_fraction_cfl_exterior": 0.4, + "lighting_fraction_cfl_garage": 0.4, + "lighting_fraction_cfl_interior": 0.4, + "lighting_fraction_led_exterior": 0.25, + "lighting_fraction_led_garage": 0.25, + "lighting_fraction_led_interior": 0.25, + "lighting_fraction_lfl_exterior": 0.1, + "lighting_fraction_lfl_garage": 0.1, + "lighting_fraction_lfl_interior": 0.1, + "lighting_usage_multiplier_exterior": 1.0, + "lighting_usage_multiplier_garage": 1.0, + "lighting_usage_multiplier_interior": 1.0, + "mech_vent_fan_power": 30, + "mech_vent_fan_power_2": 30, + "mech_vent_fan_type": "none", + "mech_vent_fan_type_2": "none", + "mech_vent_flow_rate": 110, + "mech_vent_flow_rate_2": 110, + "mech_vent_hours_in_operation": 24, + "mech_vent_hours_in_operation_2": 24, + "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", + "mech_vent_sensible_recovery_efficiency": 0.72, + "mech_vent_sensible_recovery_efficiency_2": 0.72, + "mech_vent_total_recovery_efficiency": 0.48, + "mech_vent_total_recovery_efficiency_2": 0.48, + "neighbor_back_distance": 0, + "neighbor_back_height": "auto", + "neighbor_front_distance": 0, + "neighbor_front_height": "auto", + "neighbor_left_distance": 0, + "neighbor_left_height": "auto", + "neighbor_right_distance": 0, + "neighbor_right_height": "auto", + "overhangs_back_depth": 0, + "overhangs_back_distance_to_top_of_window": 0, + "overhangs_front_depth": 0, + "overhangs_front_distance_to_top_of_window": 0, + "overhangs_left_depth": 0, + "overhangs_left_distance_to_top_of_window": 0, + "overhangs_right_depth": 0, + "overhangs_right_distance_to_top_of_window": 0, + "plug_loads_other_annual_kwh": "819.0", + "plug_loads_other_frac_latent": "0.045", + "plug_loads_other_frac_sensible": "0.855", + "plug_loads_other_usage_multiplier": 1.0, + "plug_loads_television_annual_kwh": "620.0", + "plug_loads_television_usage_multiplier": 1.0, + "plug_loads_vehicle_annual_kwh": "auto", + "plug_loads_vehicle_present": false, + "plug_loads_vehicle_usage_multiplier": 0.0, + "plug_loads_well_pump_annual_kwh": "auto", + "plug_loads_well_pump_present": false, + "plug_loads_well_pump_usage_multiplier": 0.0, + "pool_heater_annual_kwh": "auto", + "pool_heater_annual_therm": "auto", + "pool_heater_type": "electric resistance", + "pool_heater_usage_multiplier": 1.0, + "pool_present": false, + "pool_pump_annual_kwh": "auto", + "pool_pump_usage_multiplier": 1.0, + "pv_system_array_azimuth_1": 180, + "pv_system_array_azimuth_2": 180, + "pv_system_array_tilt_1": "20", + "pv_system_array_tilt_2": "20", + "pv_system_inverter_efficiency_1": 0.96, + "pv_system_inverter_efficiency_2": 0.96, + "pv_system_location_1": "auto", + "pv_system_location_2": "auto", + "pv_system_max_power_output_1": 4000, + "pv_system_max_power_output_2": 4000, + "pv_system_module_type_1": "none", + "pv_system_module_type_2": "none", + "pv_system_num_units_served_1": 1, + "pv_system_num_units_served_2": 1, + "pv_system_system_losses_fraction_1": 0.14, + "pv_system_system_losses_fraction_2": 0.14, + "pv_system_tracking_1": "auto", + "pv_system_tracking_2": "auto", + "refrigerator_location": "living space", + "refrigerator_rated_annual_kwh": "650.0", + "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, + "roof_assembly_r": 2.3, + "roof_color": "medium", + "roof_material_type": "asphalt or fiberglass shingles", + "roof_radiant_barrier": false, + "roof_radiant_barrier_grade": "1", + "schedules_type": "default", + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", + "simulation_control_timestep": "60", + "site_type": "suburban", + "skylight_area_back": 0, + "skylight_area_front": 0, + "skylight_area_left": 0, + "skylight_area_right": 0, + "skylight_shgc": 0.45, + "skylight_ufactor": 0.33, + "slab_carpet_fraction": "0.0", + "slab_carpet_r": "0.0", + "slab_perimeter_depth": 0, + "slab_perimeter_insulation_r": 0, + "slab_thickness": "4.0", + "slab_under_insulation_r": 0, + "slab_under_width": 0, + "solar_thermal_collector_area": 40.0, + "solar_thermal_collector_azimuth": 180, + "solar_thermal_collector_loop_type": "liquid direct", + "solar_thermal_collector_rated_optical_efficiency": 0.5, + "solar_thermal_collector_rated_thermal_losses": 0.2799, + "solar_thermal_collector_tilt": "20", + "solar_thermal_collector_type": "evacuated tube", + "solar_thermal_solar_fraction": 0, + "solar_thermal_storage_volume": "auto", + "solar_thermal_system_type": "none", + "wall_assembly_r": 23, + "wall_color": "medium", + "wall_siding_type": "wood siding", + "wall_type": "WoodStud", + "water_fixtures_shower_low_flow": true, + "water_fixtures_sink_low_flow": false, + "water_fixtures_usage_multiplier": 1.0, + "water_heater_efficiency": 0.95, + "water_heater_efficiency_type": "EnergyFactor", + "water_heater_fuel_type": "electricity", + "water_heater_jacket_rvalue": 0, + "water_heater_location": "living space", + "water_heater_num_units_served": 1, + "water_heater_recovery_efficiency": "0.76", + "water_heater_setpoint_temperature": "125", + "water_heater_standby_loss": 0, + "water_heater_tank_volume": "40", + "water_heater_type": "storage water heater", + "weather_station_epw_filepath": "USA_CO_Denver.Intl.AP.725650_TMY3.epw", + "whole_house_fan_flow_rate": 4500, + "whole_house_fan_power": 300, + "whole_house_fan_present": false, + "window_area_back": 0, + "window_area_front": 0, + "window_area_left": 0, + "window_area_right": 0, + "window_aspect_ratio": 1.333, + "window_back_wwr": 0.18, + "window_fraction_operable": 0.67, + "window_front_wwr": 0.18, + "window_interior_shading_summer": 0.7, + "window_interior_shading_winter": 0.85, + "window_left_wwr": 0.18, + "window_right_wwr": 0.18, + "window_shgc": 0.45, + "window_ufactor": 0.33 + }, + "measure_dir_name": "BuildResidentialHPXML" + } + ] +} \ No newline at end of file diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-slab-right-top-double-loaded-interior.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-slab-right-top-double-loaded-interior.osw new file mode 100644 index 00000000..4d8b2ee0 --- /dev/null +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-slab-right-top-double-loaded-interior.osw @@ -0,0 +1,341 @@ +{ + "measure_paths": [ + "../.." + ], + "steps": [ + { + "arguments": { + "air_leakage_house_pressure": 50, + "air_leakage_shielding_of_home": "auto", + "air_leakage_units": "ACH", + "air_leakage_value": 3, + "bathroom_fans_quantity": "0", + "ceiling_assembly_r": 39.3, + "ceiling_fan_cooling_setpoint_temp_offset": 0, + "ceiling_fan_efficiency": "auto", + "ceiling_fan_present": false, + "ceiling_fan_quantity": "auto", + "clothes_dryer_efficiency": "3.73", + "clothes_dryer_efficiency_type": "CombinedEnergyFactor", + "clothes_dryer_fuel_type": "electricity", + "clothes_dryer_location": "living space", + "clothes_dryer_usage_multiplier": 1.0, + "clothes_dryer_vented_flow_rate": "150.0", + "clothes_washer_capacity": "3.2", + "clothes_washer_efficiency": "1.21", + "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", + "clothes_washer_label_annual_gas_cost": "27.0", + "clothes_washer_label_electric_rate": "0.12", + "clothes_washer_label_gas_rate": "1.09", + "clothes_washer_label_usage": "6.0", + "clothes_washer_location": "living space", + "clothes_washer_rated_annual_kwh": "380.0", + "clothes_washer_usage_multiplier": 1.0, + "cooking_range_oven_fuel_type": "electricity", + "cooking_range_oven_is_convection": false, + "cooking_range_oven_is_induction": false, + "cooking_range_oven_location": "living space", + "cooking_range_oven_usage_multiplier": 1.0, + "cooling_system_cooling_capacity": "48000.0", + "cooling_system_cooling_compressor_type": "single stage", + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", + "cooling_system_cooling_sensible_heat_fraction": 0.73, + "cooling_system_fraction_cool_load_served": 1, + "cooling_system_is_ducted": false, + "cooling_system_type": "central air conditioner", + "dehumidifier_capacity": 40, + "dehumidifier_efficiency": 1.8, + "dehumidifier_efficiency_type": "EnergyFactor", + "dehumidifier_fraction_dehumidification_load_served": 1, + "dehumidifier_rh_setpoint": 0.5, + "dehumidifier_type": "none", + "dhw_distribution_pipe_r": "0.0", + "dhw_distribution_recirc_branch_piping_length": "50", + "dhw_distribution_recirc_control_type": "no control", + "dhw_distribution_recirc_piping_length": "50", + "dhw_distribution_recirc_pump_power": "50", + "dhw_distribution_standard_piping_length": "50", + "dhw_distribution_system_type": "Standard", + "dishwasher_efficiency": "307", + "dishwasher_efficiency_type": "RatedAnnualkWh", + "dishwasher_label_annual_gas_cost": "22.32", + "dishwasher_label_electric_rate": "0.12", + "dishwasher_label_gas_rate": "1.09", + "dishwasher_label_usage": "4.0", + "dishwasher_location": "living space", + "dishwasher_place_setting_capacity": "12", + "dishwasher_usage_multiplier": 1.0, + "door_area": 20.0, + "door_rvalue": 4.4, + "ducts_number_of_return_registers": "1", + "ducts_return_insulation_r": 0.0, + "ducts_return_leakage_units": "CFM25", + "ducts_return_leakage_value": 0.0, + "ducts_return_location": "living space", + "ducts_return_surface_area": "50.0", + "ducts_supply_insulation_r": 0.0, + "ducts_supply_leakage_units": "CFM25", + "ducts_supply_leakage_value": 0.0, + "ducts_supply_location": "living space", + "ducts_supply_surface_area": "150.0", + "dwhr_efficiency": 0.55, + "dwhr_equal_flow": true, + "dwhr_facilities_connected": "none", + "extra_refrigerator_location": "none", + "extra_refrigerator_rated_annual_kwh": "auto", + "extra_refrigerator_usage_multiplier": 1.0, + "floor_assembly_r": 0, + "foundation_wall_insulation_distance_to_bottom": "auto", + "foundation_wall_insulation_distance_to_top": 0.0, + "foundation_wall_insulation_r": 8.9, + "foundation_wall_thickness": "8.0", + "freezer_location": "none", + "freezer_rated_annual_kwh": "auto", + "freezer_usage_multiplier": 1.0, + "fuel_loads_fireplace_annual_therm": "auto", + "fuel_loads_fireplace_frac_latent": "auto", + "fuel_loads_fireplace_frac_sensible": "auto", + "fuel_loads_fireplace_fuel_type": "natural gas", + "fuel_loads_fireplace_present": false, + "fuel_loads_fireplace_usage_multiplier": 0.0, + "fuel_loads_grill_annual_therm": "auto", + "fuel_loads_grill_fuel_type": "natural gas", + "fuel_loads_grill_present": false, + "fuel_loads_grill_usage_multiplier": 0.0, + "fuel_loads_lighting_annual_therm": "auto", + "fuel_loads_lighting_fuel_type": "natural gas", + "fuel_loads_lighting_present": false, + "fuel_loads_lighting_usage_multiplier": 0.0, + "geometry_aspect_ratio": 1.5, + "geometry_attic_type": "UnventedAttic", + "geometry_balcony_depth": 0.0, + "geometry_building_num_bedrooms": 150, + "geometry_building_num_units": 50, + "geometry_cfa": 900.0, + "geometry_corridor_position": "Double-Loaded Interior", + "geometry_corridor_width": 10.0, + "geometry_eaves_depth": 0, + "geometry_foundation_height": 0.0, + "geometry_foundation_height_above_grade": 0.0, + "geometry_foundation_type": "SlabOnGrade", + "geometry_garage_depth": 20.0, + "geometry_garage_position": "Right", + "geometry_garage_protrusion": 0.0, + "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", + "geometry_horizontal_location": "Right", + "geometry_inset_depth": 0.0, + "geometry_inset_position": "Right", + "geometry_inset_width": 0.0, + "geometry_level": "Top", + "geometry_num_bathrooms": "2", + "geometry_num_bedrooms": 3, + "geometry_num_floors_above_grade": 5, + "geometry_num_occupants": "3", + "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, + "geometry_roof_pitch": "6:12", + "geometry_roof_type": "gable", + "geometry_unit_type": "apartment unit", + "geometry_wall_height": 8.0, + "heat_pump_backup_fuel": "none", + "heat_pump_backup_heating_capacity": "34121.0", + "heat_pump_backup_heating_efficiency": 1, + "heat_pump_cooling_capacity": "48000.0", + "heat_pump_cooling_compressor_type": "single stage", + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", + "heat_pump_cooling_sensible_heat_fraction": 0.73, + "heat_pump_fraction_cool_load_served": 1, + "heat_pump_fraction_heat_load_served": 1, + "heat_pump_heating_capacity": "64000.0", + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", + "heat_pump_type": "none", + "heating_system_fraction_heat_load_served": 1, + "heating_system_fraction_heat_load_served_2": 0.25, + "heating_system_fuel": "natural gas", + "heating_system_fuel_2": "electricity", + "heating_system_heating_capacity": "64000.0", + "heating_system_heating_capacity_2": "auto", + "heating_system_heating_efficiency": 0.92, + "heating_system_heating_efficiency_2": 1.0, + "heating_system_type": "Furnace", + "heating_system_type_2": "none", + "holiday_lighting_daily_kwh": "auto", + "holiday_lighting_period_begin_day_of_month": "auto", + "holiday_lighting_period_begin_month": "auto", + "holiday_lighting_period_end_day_of_month": "auto", + "holiday_lighting_period_end_month": "auto", + "holiday_lighting_present": false, + "hot_tub_heater_annual_kwh": "auto", + "hot_tub_heater_annual_therm": "auto", + "hot_tub_heater_type": "electric resistance", + "hot_tub_heater_usage_multiplier": 1.0, + "hot_tub_present": false, + "hot_tub_pump_annual_kwh": "auto", + "hot_tub_pump_usage_multiplier": 1.0, + "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/extra-bldgtype-multifamily-slab-right-top-double-loaded-interior.xml", + "kitchen_fans_quantity": "0", + "lighting_fraction_cfl_exterior": 0.4, + "lighting_fraction_cfl_garage": 0.4, + "lighting_fraction_cfl_interior": 0.4, + "lighting_fraction_led_exterior": 0.25, + "lighting_fraction_led_garage": 0.25, + "lighting_fraction_led_interior": 0.25, + "lighting_fraction_lfl_exterior": 0.1, + "lighting_fraction_lfl_garage": 0.1, + "lighting_fraction_lfl_interior": 0.1, + "lighting_usage_multiplier_exterior": 1.0, + "lighting_usage_multiplier_garage": 1.0, + "lighting_usage_multiplier_interior": 1.0, + "mech_vent_fan_power": 30, + "mech_vent_fan_power_2": 30, + "mech_vent_fan_type": "none", + "mech_vent_fan_type_2": "none", + "mech_vent_flow_rate": 110, + "mech_vent_flow_rate_2": 110, + "mech_vent_hours_in_operation": 24, + "mech_vent_hours_in_operation_2": 24, + "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", + "mech_vent_sensible_recovery_efficiency": 0.72, + "mech_vent_sensible_recovery_efficiency_2": 0.72, + "mech_vent_total_recovery_efficiency": 0.48, + "mech_vent_total_recovery_efficiency_2": 0.48, + "neighbor_back_distance": 0, + "neighbor_back_height": "auto", + "neighbor_front_distance": 0, + "neighbor_front_height": "auto", + "neighbor_left_distance": 0, + "neighbor_left_height": "auto", + "neighbor_right_distance": 0, + "neighbor_right_height": "auto", + "overhangs_back_depth": 0, + "overhangs_back_distance_to_top_of_window": 0, + "overhangs_front_depth": 0, + "overhangs_front_distance_to_top_of_window": 0, + "overhangs_left_depth": 0, + "overhangs_left_distance_to_top_of_window": 0, + "overhangs_right_depth": 0, + "overhangs_right_distance_to_top_of_window": 0, + "plug_loads_other_annual_kwh": "819.0", + "plug_loads_other_frac_latent": "0.045", + "plug_loads_other_frac_sensible": "0.855", + "plug_loads_other_usage_multiplier": 1.0, + "plug_loads_television_annual_kwh": "620.0", + "plug_loads_television_usage_multiplier": 1.0, + "plug_loads_vehicle_annual_kwh": "auto", + "plug_loads_vehicle_present": false, + "plug_loads_vehicle_usage_multiplier": 0.0, + "plug_loads_well_pump_annual_kwh": "auto", + "plug_loads_well_pump_present": false, + "plug_loads_well_pump_usage_multiplier": 0.0, + "pool_heater_annual_kwh": "auto", + "pool_heater_annual_therm": "auto", + "pool_heater_type": "electric resistance", + "pool_heater_usage_multiplier": 1.0, + "pool_present": false, + "pool_pump_annual_kwh": "auto", + "pool_pump_usage_multiplier": 1.0, + "pv_system_array_azimuth_1": 180, + "pv_system_array_azimuth_2": 180, + "pv_system_array_tilt_1": "20", + "pv_system_array_tilt_2": "20", + "pv_system_inverter_efficiency_1": 0.96, + "pv_system_inverter_efficiency_2": 0.96, + "pv_system_location_1": "auto", + "pv_system_location_2": "auto", + "pv_system_max_power_output_1": 4000, + "pv_system_max_power_output_2": 4000, + "pv_system_module_type_1": "none", + "pv_system_module_type_2": "none", + "pv_system_num_units_served_1": 1, + "pv_system_num_units_served_2": 1, + "pv_system_system_losses_fraction_1": 0.14, + "pv_system_system_losses_fraction_2": 0.14, + "pv_system_tracking_1": "auto", + "pv_system_tracking_2": "auto", + "refrigerator_location": "living space", + "refrigerator_rated_annual_kwh": "650.0", + "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, + "roof_assembly_r": 2.3, + "roof_color": "medium", + "roof_material_type": "asphalt or fiberglass shingles", + "roof_radiant_barrier": false, + "roof_radiant_barrier_grade": "1", + "schedules_type": "default", + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", + "simulation_control_timestep": "60", + "site_type": "suburban", + "skylight_area_back": 0, + "skylight_area_front": 0, + "skylight_area_left": 0, + "skylight_area_right": 0, + "skylight_shgc": 0.45, + "skylight_ufactor": 0.33, + "slab_carpet_fraction": "0.0", + "slab_carpet_r": "0.0", + "slab_perimeter_depth": 0, + "slab_perimeter_insulation_r": 0, + "slab_thickness": "4.0", + "slab_under_insulation_r": 0, + "slab_under_width": 0, + "solar_thermal_collector_area": 40.0, + "solar_thermal_collector_azimuth": 180, + "solar_thermal_collector_loop_type": "liquid direct", + "solar_thermal_collector_rated_optical_efficiency": 0.5, + "solar_thermal_collector_rated_thermal_losses": 0.2799, + "solar_thermal_collector_tilt": "20", + "solar_thermal_collector_type": "evacuated tube", + "solar_thermal_solar_fraction": 0, + "solar_thermal_storage_volume": "auto", + "solar_thermal_system_type": "none", + "wall_assembly_r": 23, + "wall_color": "medium", + "wall_siding_type": "wood siding", + "wall_type": "WoodStud", + "water_fixtures_shower_low_flow": true, + "water_fixtures_sink_low_flow": false, + "water_fixtures_usage_multiplier": 1.0, + "water_heater_efficiency": 0.95, + "water_heater_efficiency_type": "EnergyFactor", + "water_heater_fuel_type": "electricity", + "water_heater_jacket_rvalue": 0, + "water_heater_location": "living space", + "water_heater_num_units_served": 1, + "water_heater_recovery_efficiency": "0.76", + "water_heater_setpoint_temperature": "125", + "water_heater_standby_loss": 0, + "water_heater_tank_volume": "40", + "water_heater_type": "storage water heater", + "weather_station_epw_filepath": "USA_CO_Denver.Intl.AP.725650_TMY3.epw", + "whole_house_fan_flow_rate": 4500, + "whole_house_fan_power": 300, + "whole_house_fan_present": false, + "window_area_back": 0, + "window_area_front": 0, + "window_area_left": 0, + "window_area_right": 0, + "window_aspect_ratio": 1.333, + "window_back_wwr": 0.18, + "window_fraction_operable": 0.67, + "window_front_wwr": 0.18, + "window_interior_shading_summer": 0.7, + "window_interior_shading_winter": 0.85, + "window_left_wwr": 0.18, + "window_right_wwr": 0.18, + "window_shgc": 0.45, + "window_ufactor": 0.33 + }, + "measure_dir_name": "BuildResidentialHPXML" + } + ] +} \ No newline at end of file diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-slab-right-top.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-slab-right-top.osw new file mode 100644 index 00000000..13958235 --- /dev/null +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-slab-right-top.osw @@ -0,0 +1,341 @@ +{ + "measure_paths": [ + "../.." + ], + "steps": [ + { + "arguments": { + "air_leakage_house_pressure": 50, + "air_leakage_shielding_of_home": "auto", + "air_leakage_units": "ACH", + "air_leakage_value": 3, + "bathroom_fans_quantity": "0", + "ceiling_assembly_r": 39.3, + "ceiling_fan_cooling_setpoint_temp_offset": 0, + "ceiling_fan_efficiency": "auto", + "ceiling_fan_present": false, + "ceiling_fan_quantity": "auto", + "clothes_dryer_efficiency": "3.73", + "clothes_dryer_efficiency_type": "CombinedEnergyFactor", + "clothes_dryer_fuel_type": "electricity", + "clothes_dryer_location": "living space", + "clothes_dryer_usage_multiplier": 1.0, + "clothes_dryer_vented_flow_rate": "150.0", + "clothes_washer_capacity": "3.2", + "clothes_washer_efficiency": "1.21", + "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", + "clothes_washer_label_annual_gas_cost": "27.0", + "clothes_washer_label_electric_rate": "0.12", + "clothes_washer_label_gas_rate": "1.09", + "clothes_washer_label_usage": "6.0", + "clothes_washer_location": "living space", + "clothes_washer_rated_annual_kwh": "380.0", + "clothes_washer_usage_multiplier": 1.0, + "cooking_range_oven_fuel_type": "electricity", + "cooking_range_oven_is_convection": false, + "cooking_range_oven_is_induction": false, + "cooking_range_oven_location": "living space", + "cooking_range_oven_usage_multiplier": 1.0, + "cooling_system_cooling_capacity": "48000.0", + "cooling_system_cooling_compressor_type": "single stage", + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", + "cooling_system_cooling_sensible_heat_fraction": 0.73, + "cooling_system_fraction_cool_load_served": 1, + "cooling_system_is_ducted": false, + "cooling_system_type": "central air conditioner", + "dehumidifier_capacity": 40, + "dehumidifier_efficiency": 1.8, + "dehumidifier_efficiency_type": "EnergyFactor", + "dehumidifier_fraction_dehumidification_load_served": 1, + "dehumidifier_rh_setpoint": 0.5, + "dehumidifier_type": "none", + "dhw_distribution_pipe_r": "0.0", + "dhw_distribution_recirc_branch_piping_length": "50", + "dhw_distribution_recirc_control_type": "no control", + "dhw_distribution_recirc_piping_length": "50", + "dhw_distribution_recirc_pump_power": "50", + "dhw_distribution_standard_piping_length": "50", + "dhw_distribution_system_type": "Standard", + "dishwasher_efficiency": "307", + "dishwasher_efficiency_type": "RatedAnnualkWh", + "dishwasher_label_annual_gas_cost": "22.32", + "dishwasher_label_electric_rate": "0.12", + "dishwasher_label_gas_rate": "1.09", + "dishwasher_label_usage": "4.0", + "dishwasher_location": "living space", + "dishwasher_place_setting_capacity": "12", + "dishwasher_usage_multiplier": 1.0, + "door_area": 20.0, + "door_rvalue": 4.4, + "ducts_number_of_return_registers": "1", + "ducts_return_insulation_r": 0.0, + "ducts_return_leakage_units": "CFM25", + "ducts_return_leakage_value": 0.0, + "ducts_return_location": "living space", + "ducts_return_surface_area": "50.0", + "ducts_supply_insulation_r": 0.0, + "ducts_supply_leakage_units": "CFM25", + "ducts_supply_leakage_value": 0.0, + "ducts_supply_location": "living space", + "ducts_supply_surface_area": "150.0", + "dwhr_efficiency": 0.55, + "dwhr_equal_flow": true, + "dwhr_facilities_connected": "none", + "extra_refrigerator_location": "none", + "extra_refrigerator_rated_annual_kwh": "auto", + "extra_refrigerator_usage_multiplier": 1.0, + "floor_assembly_r": 0, + "foundation_wall_insulation_distance_to_bottom": "auto", + "foundation_wall_insulation_distance_to_top": 0.0, + "foundation_wall_insulation_r": 8.9, + "foundation_wall_thickness": "8.0", + "freezer_location": "none", + "freezer_rated_annual_kwh": "auto", + "freezer_usage_multiplier": 1.0, + "fuel_loads_fireplace_annual_therm": "auto", + "fuel_loads_fireplace_frac_latent": "auto", + "fuel_loads_fireplace_frac_sensible": "auto", + "fuel_loads_fireplace_fuel_type": "natural gas", + "fuel_loads_fireplace_present": false, + "fuel_loads_fireplace_usage_multiplier": 0.0, + "fuel_loads_grill_annual_therm": "auto", + "fuel_loads_grill_fuel_type": "natural gas", + "fuel_loads_grill_present": false, + "fuel_loads_grill_usage_multiplier": 0.0, + "fuel_loads_lighting_annual_therm": "auto", + "fuel_loads_lighting_fuel_type": "natural gas", + "fuel_loads_lighting_present": false, + "fuel_loads_lighting_usage_multiplier": 0.0, + "geometry_aspect_ratio": 1.5, + "geometry_attic_type": "UnventedAttic", + "geometry_balcony_depth": 0.0, + "geometry_building_num_bedrooms": 150, + "geometry_building_num_units": 50, + "geometry_cfa": 900.0, + "geometry_corridor_position": "None", + "geometry_corridor_width": 10.0, + "geometry_eaves_depth": 0, + "geometry_foundation_height": 0.0, + "geometry_foundation_height_above_grade": 0.0, + "geometry_foundation_type": "SlabOnGrade", + "geometry_garage_depth": 20.0, + "geometry_garage_position": "Right", + "geometry_garage_protrusion": 0.0, + "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", + "geometry_horizontal_location": "Right", + "geometry_inset_depth": 0.0, + "geometry_inset_position": "Right", + "geometry_inset_width": 0.0, + "geometry_level": "Top", + "geometry_num_bathrooms": "2", + "geometry_num_bedrooms": 3, + "geometry_num_floors_above_grade": 5, + "geometry_num_occupants": "3", + "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, + "geometry_roof_pitch": "6:12", + "geometry_roof_type": "gable", + "geometry_unit_type": "apartment unit", + "geometry_wall_height": 8.0, + "heat_pump_backup_fuel": "none", + "heat_pump_backup_heating_capacity": "34121.0", + "heat_pump_backup_heating_efficiency": 1, + "heat_pump_cooling_capacity": "48000.0", + "heat_pump_cooling_compressor_type": "single stage", + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", + "heat_pump_cooling_sensible_heat_fraction": 0.73, + "heat_pump_fraction_cool_load_served": 1, + "heat_pump_fraction_heat_load_served": 1, + "heat_pump_heating_capacity": "64000.0", + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", + "heat_pump_type": "none", + "heating_system_fraction_heat_load_served": 1, + "heating_system_fraction_heat_load_served_2": 0.25, + "heating_system_fuel": "natural gas", + "heating_system_fuel_2": "electricity", + "heating_system_heating_capacity": "64000.0", + "heating_system_heating_capacity_2": "auto", + "heating_system_heating_efficiency": 0.92, + "heating_system_heating_efficiency_2": 1.0, + "heating_system_type": "Furnace", + "heating_system_type_2": "none", + "holiday_lighting_daily_kwh": "auto", + "holiday_lighting_period_begin_day_of_month": "auto", + "holiday_lighting_period_begin_month": "auto", + "holiday_lighting_period_end_day_of_month": "auto", + "holiday_lighting_period_end_month": "auto", + "holiday_lighting_present": false, + "hot_tub_heater_annual_kwh": "auto", + "hot_tub_heater_annual_therm": "auto", + "hot_tub_heater_type": "electric resistance", + "hot_tub_heater_usage_multiplier": 1.0, + "hot_tub_present": false, + "hot_tub_pump_annual_kwh": "auto", + "hot_tub_pump_usage_multiplier": 1.0, + "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/extra-bldgtype-multifamily-slab-right-top.xml", + "kitchen_fans_quantity": "0", + "lighting_fraction_cfl_exterior": 0.4, + "lighting_fraction_cfl_garage": 0.4, + "lighting_fraction_cfl_interior": 0.4, + "lighting_fraction_led_exterior": 0.25, + "lighting_fraction_led_garage": 0.25, + "lighting_fraction_led_interior": 0.25, + "lighting_fraction_lfl_exterior": 0.1, + "lighting_fraction_lfl_garage": 0.1, + "lighting_fraction_lfl_interior": 0.1, + "lighting_usage_multiplier_exterior": 1.0, + "lighting_usage_multiplier_garage": 1.0, + "lighting_usage_multiplier_interior": 1.0, + "mech_vent_fan_power": 30, + "mech_vent_fan_power_2": 30, + "mech_vent_fan_type": "none", + "mech_vent_fan_type_2": "none", + "mech_vent_flow_rate": 110, + "mech_vent_flow_rate_2": 110, + "mech_vent_hours_in_operation": 24, + "mech_vent_hours_in_operation_2": 24, + "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", + "mech_vent_sensible_recovery_efficiency": 0.72, + "mech_vent_sensible_recovery_efficiency_2": 0.72, + "mech_vent_total_recovery_efficiency": 0.48, + "mech_vent_total_recovery_efficiency_2": 0.48, + "neighbor_back_distance": 0, + "neighbor_back_height": "auto", + "neighbor_front_distance": 0, + "neighbor_front_height": "auto", + "neighbor_left_distance": 0, + "neighbor_left_height": "auto", + "neighbor_right_distance": 0, + "neighbor_right_height": "auto", + "overhangs_back_depth": 0, + "overhangs_back_distance_to_top_of_window": 0, + "overhangs_front_depth": 0, + "overhangs_front_distance_to_top_of_window": 0, + "overhangs_left_depth": 0, + "overhangs_left_distance_to_top_of_window": 0, + "overhangs_right_depth": 0, + "overhangs_right_distance_to_top_of_window": 0, + "plug_loads_other_annual_kwh": "819.0", + "plug_loads_other_frac_latent": "0.045", + "plug_loads_other_frac_sensible": "0.855", + "plug_loads_other_usage_multiplier": 1.0, + "plug_loads_television_annual_kwh": "620.0", + "plug_loads_television_usage_multiplier": 1.0, + "plug_loads_vehicle_annual_kwh": "auto", + "plug_loads_vehicle_present": false, + "plug_loads_vehicle_usage_multiplier": 0.0, + "plug_loads_well_pump_annual_kwh": "auto", + "plug_loads_well_pump_present": false, + "plug_loads_well_pump_usage_multiplier": 0.0, + "pool_heater_annual_kwh": "auto", + "pool_heater_annual_therm": "auto", + "pool_heater_type": "electric resistance", + "pool_heater_usage_multiplier": 1.0, + "pool_present": false, + "pool_pump_annual_kwh": "auto", + "pool_pump_usage_multiplier": 1.0, + "pv_system_array_azimuth_1": 180, + "pv_system_array_azimuth_2": 180, + "pv_system_array_tilt_1": "20", + "pv_system_array_tilt_2": "20", + "pv_system_inverter_efficiency_1": 0.96, + "pv_system_inverter_efficiency_2": 0.96, + "pv_system_location_1": "auto", + "pv_system_location_2": "auto", + "pv_system_max_power_output_1": 4000, + "pv_system_max_power_output_2": 4000, + "pv_system_module_type_1": "none", + "pv_system_module_type_2": "none", + "pv_system_num_units_served_1": 1, + "pv_system_num_units_served_2": 1, + "pv_system_system_losses_fraction_1": 0.14, + "pv_system_system_losses_fraction_2": 0.14, + "pv_system_tracking_1": "auto", + "pv_system_tracking_2": "auto", + "refrigerator_location": "living space", + "refrigerator_rated_annual_kwh": "650.0", + "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, + "roof_assembly_r": 2.3, + "roof_color": "medium", + "roof_material_type": "asphalt or fiberglass shingles", + "roof_radiant_barrier": false, + "roof_radiant_barrier_grade": "1", + "schedules_type": "default", + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", + "simulation_control_timestep": "60", + "site_type": "suburban", + "skylight_area_back": 0, + "skylight_area_front": 0, + "skylight_area_left": 0, + "skylight_area_right": 0, + "skylight_shgc": 0.45, + "skylight_ufactor": 0.33, + "slab_carpet_fraction": "0.0", + "slab_carpet_r": "0.0", + "slab_perimeter_depth": 0, + "slab_perimeter_insulation_r": 0, + "slab_thickness": "4.0", + "slab_under_insulation_r": 0, + "slab_under_width": 0, + "solar_thermal_collector_area": 40.0, + "solar_thermal_collector_azimuth": 180, + "solar_thermal_collector_loop_type": "liquid direct", + "solar_thermal_collector_rated_optical_efficiency": 0.5, + "solar_thermal_collector_rated_thermal_losses": 0.2799, + "solar_thermal_collector_tilt": "20", + "solar_thermal_collector_type": "evacuated tube", + "solar_thermal_solar_fraction": 0, + "solar_thermal_storage_volume": "auto", + "solar_thermal_system_type": "none", + "wall_assembly_r": 23, + "wall_color": "medium", + "wall_siding_type": "wood siding", + "wall_type": "WoodStud", + "water_fixtures_shower_low_flow": true, + "water_fixtures_sink_low_flow": false, + "water_fixtures_usage_multiplier": 1.0, + "water_heater_efficiency": 0.95, + "water_heater_efficiency_type": "EnergyFactor", + "water_heater_fuel_type": "electricity", + "water_heater_jacket_rvalue": 0, + "water_heater_location": "living space", + "water_heater_num_units_served": 1, + "water_heater_recovery_efficiency": "0.76", + "water_heater_setpoint_temperature": "125", + "water_heater_standby_loss": 0, + "water_heater_tank_volume": "40", + "water_heater_type": "storage water heater", + "weather_station_epw_filepath": "USA_CO_Denver.Intl.AP.725650_TMY3.epw", + "whole_house_fan_flow_rate": 4500, + "whole_house_fan_power": 300, + "whole_house_fan_present": false, + "window_area_back": 0, + "window_area_front": 0, + "window_area_left": 0, + "window_area_right": 0, + "window_aspect_ratio": 1.333, + "window_back_wwr": 0.18, + "window_fraction_operable": 0.67, + "window_front_wwr": 0.18, + "window_interior_shading_summer": 0.7, + "window_interior_shading_winter": 0.85, + "window_left_wwr": 0.18, + "window_right_wwr": 0.18, + "window_shgc": 0.45, + "window_ufactor": 0.33 + }, + "measure_dir_name": "BuildResidentialHPXML" + } + ] +} \ No newline at end of file diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-slab.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-slab.osw new file mode 100644 index 00000000..45927005 --- /dev/null +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-slab.osw @@ -0,0 +1,341 @@ +{ + "measure_paths": [ + "../.." + ], + "steps": [ + { + "arguments": { + "air_leakage_house_pressure": 50, + "air_leakage_shielding_of_home": "auto", + "air_leakage_units": "ACH", + "air_leakage_value": 3, + "bathroom_fans_quantity": "0", + "ceiling_assembly_r": 39.3, + "ceiling_fan_cooling_setpoint_temp_offset": 0, + "ceiling_fan_efficiency": "auto", + "ceiling_fan_present": false, + "ceiling_fan_quantity": "auto", + "clothes_dryer_efficiency": "3.73", + "clothes_dryer_efficiency_type": "CombinedEnergyFactor", + "clothes_dryer_fuel_type": "electricity", + "clothes_dryer_location": "living space", + "clothes_dryer_usage_multiplier": 1.0, + "clothes_dryer_vented_flow_rate": "150.0", + "clothes_washer_capacity": "3.2", + "clothes_washer_efficiency": "1.21", + "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", + "clothes_washer_label_annual_gas_cost": "27.0", + "clothes_washer_label_electric_rate": "0.12", + "clothes_washer_label_gas_rate": "1.09", + "clothes_washer_label_usage": "6.0", + "clothes_washer_location": "living space", + "clothes_washer_rated_annual_kwh": "380.0", + "clothes_washer_usage_multiplier": 1.0, + "cooking_range_oven_fuel_type": "electricity", + "cooking_range_oven_is_convection": false, + "cooking_range_oven_is_induction": false, + "cooking_range_oven_location": "living space", + "cooking_range_oven_usage_multiplier": 1.0, + "cooling_system_cooling_capacity": "48000.0", + "cooling_system_cooling_compressor_type": "single stage", + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", + "cooling_system_cooling_sensible_heat_fraction": 0.73, + "cooling_system_fraction_cool_load_served": 1, + "cooling_system_is_ducted": false, + "cooling_system_type": "central air conditioner", + "dehumidifier_capacity": 40, + "dehumidifier_efficiency": 1.8, + "dehumidifier_efficiency_type": "EnergyFactor", + "dehumidifier_fraction_dehumidification_load_served": 1, + "dehumidifier_rh_setpoint": 0.5, + "dehumidifier_type": "none", + "dhw_distribution_pipe_r": "0.0", + "dhw_distribution_recirc_branch_piping_length": "50", + "dhw_distribution_recirc_control_type": "no control", + "dhw_distribution_recirc_piping_length": "50", + "dhw_distribution_recirc_pump_power": "50", + "dhw_distribution_standard_piping_length": "50", + "dhw_distribution_system_type": "Standard", + "dishwasher_efficiency": "307", + "dishwasher_efficiency_type": "RatedAnnualkWh", + "dishwasher_label_annual_gas_cost": "22.32", + "dishwasher_label_electric_rate": "0.12", + "dishwasher_label_gas_rate": "1.09", + "dishwasher_label_usage": "4.0", + "dishwasher_location": "living space", + "dishwasher_place_setting_capacity": "12", + "dishwasher_usage_multiplier": 1.0, + "door_area": 20.0, + "door_rvalue": 4.4, + "ducts_number_of_return_registers": "1", + "ducts_return_insulation_r": 0.0, + "ducts_return_leakage_units": "CFM25", + "ducts_return_leakage_value": 0.0, + "ducts_return_location": "living space", + "ducts_return_surface_area": "50.0", + "ducts_supply_insulation_r": 0.0, + "ducts_supply_leakage_units": "CFM25", + "ducts_supply_leakage_value": 0.0, + "ducts_supply_location": "living space", + "ducts_supply_surface_area": "150.0", + "dwhr_efficiency": 0.55, + "dwhr_equal_flow": true, + "dwhr_facilities_connected": "none", + "extra_refrigerator_location": "none", + "extra_refrigerator_rated_annual_kwh": "auto", + "extra_refrigerator_usage_multiplier": 1.0, + "floor_assembly_r": 0, + "foundation_wall_insulation_distance_to_bottom": "auto", + "foundation_wall_insulation_distance_to_top": 0.0, + "foundation_wall_insulation_r": 8.9, + "foundation_wall_thickness": "8.0", + "freezer_location": "none", + "freezer_rated_annual_kwh": "auto", + "freezer_usage_multiplier": 1.0, + "fuel_loads_fireplace_annual_therm": "auto", + "fuel_loads_fireplace_frac_latent": "auto", + "fuel_loads_fireplace_frac_sensible": "auto", + "fuel_loads_fireplace_fuel_type": "natural gas", + "fuel_loads_fireplace_present": false, + "fuel_loads_fireplace_usage_multiplier": 0.0, + "fuel_loads_grill_annual_therm": "auto", + "fuel_loads_grill_fuel_type": "natural gas", + "fuel_loads_grill_present": false, + "fuel_loads_grill_usage_multiplier": 0.0, + "fuel_loads_lighting_annual_therm": "auto", + "fuel_loads_lighting_fuel_type": "natural gas", + "fuel_loads_lighting_present": false, + "fuel_loads_lighting_usage_multiplier": 0.0, + "geometry_aspect_ratio": 1.5, + "geometry_attic_type": "UnventedAttic", + "geometry_balcony_depth": 0.0, + "geometry_building_num_bedrooms": 150, + "geometry_building_num_units": 50, + "geometry_cfa": 900.0, + "geometry_corridor_position": "None", + "geometry_corridor_width": 10.0, + "geometry_eaves_depth": 0, + "geometry_foundation_height": 0.0, + "geometry_foundation_height_above_grade": 0.0, + "geometry_foundation_type": "SlabOnGrade", + "geometry_garage_depth": 20.0, + "geometry_garage_position": "Right", + "geometry_garage_protrusion": 0.0, + "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", + "geometry_horizontal_location": "Left", + "geometry_inset_depth": 0.0, + "geometry_inset_position": "Right", + "geometry_inset_width": 0.0, + "geometry_level": "Middle", + "geometry_num_bathrooms": "2", + "geometry_num_bedrooms": 3, + "geometry_num_floors_above_grade": 5, + "geometry_num_occupants": "3", + "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, + "geometry_roof_pitch": "6:12", + "geometry_roof_type": "gable", + "geometry_unit_type": "apartment unit", + "geometry_wall_height": 8.0, + "heat_pump_backup_fuel": "none", + "heat_pump_backup_heating_capacity": "34121.0", + "heat_pump_backup_heating_efficiency": 1, + "heat_pump_cooling_capacity": "48000.0", + "heat_pump_cooling_compressor_type": "single stage", + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", + "heat_pump_cooling_sensible_heat_fraction": 0.73, + "heat_pump_fraction_cool_load_served": 1, + "heat_pump_fraction_heat_load_served": 1, + "heat_pump_heating_capacity": "64000.0", + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", + "heat_pump_type": "none", + "heating_system_fraction_heat_load_served": 1, + "heating_system_fraction_heat_load_served_2": 0.25, + "heating_system_fuel": "natural gas", + "heating_system_fuel_2": "electricity", + "heating_system_heating_capacity": "64000.0", + "heating_system_heating_capacity_2": "auto", + "heating_system_heating_efficiency": 0.92, + "heating_system_heating_efficiency_2": 1.0, + "heating_system_type": "Furnace", + "heating_system_type_2": "none", + "holiday_lighting_daily_kwh": "auto", + "holiday_lighting_period_begin_day_of_month": "auto", + "holiday_lighting_period_begin_month": "auto", + "holiday_lighting_period_end_day_of_month": "auto", + "holiday_lighting_period_end_month": "auto", + "holiday_lighting_present": false, + "hot_tub_heater_annual_kwh": "auto", + "hot_tub_heater_annual_therm": "auto", + "hot_tub_heater_type": "electric resistance", + "hot_tub_heater_usage_multiplier": 1.0, + "hot_tub_present": false, + "hot_tub_pump_annual_kwh": "auto", + "hot_tub_pump_usage_multiplier": 1.0, + "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/extra-bldgtype-multifamily-slab.xml", + "kitchen_fans_quantity": "0", + "lighting_fraction_cfl_exterior": 0.4, + "lighting_fraction_cfl_garage": 0.4, + "lighting_fraction_cfl_interior": 0.4, + "lighting_fraction_led_exterior": 0.25, + "lighting_fraction_led_garage": 0.25, + "lighting_fraction_led_interior": 0.25, + "lighting_fraction_lfl_exterior": 0.1, + "lighting_fraction_lfl_garage": 0.1, + "lighting_fraction_lfl_interior": 0.1, + "lighting_usage_multiplier_exterior": 1.0, + "lighting_usage_multiplier_garage": 1.0, + "lighting_usage_multiplier_interior": 1.0, + "mech_vent_fan_power": 30, + "mech_vent_fan_power_2": 30, + "mech_vent_fan_type": "none", + "mech_vent_fan_type_2": "none", + "mech_vent_flow_rate": 110, + "mech_vent_flow_rate_2": 110, + "mech_vent_hours_in_operation": 24, + "mech_vent_hours_in_operation_2": 24, + "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", + "mech_vent_sensible_recovery_efficiency": 0.72, + "mech_vent_sensible_recovery_efficiency_2": 0.72, + "mech_vent_total_recovery_efficiency": 0.48, + "mech_vent_total_recovery_efficiency_2": 0.48, + "neighbor_back_distance": 0, + "neighbor_back_height": "auto", + "neighbor_front_distance": 0, + "neighbor_front_height": "auto", + "neighbor_left_distance": 0, + "neighbor_left_height": "auto", + "neighbor_right_distance": 0, + "neighbor_right_height": "auto", + "overhangs_back_depth": 0, + "overhangs_back_distance_to_top_of_window": 0, + "overhangs_front_depth": 0, + "overhangs_front_distance_to_top_of_window": 0, + "overhangs_left_depth": 0, + "overhangs_left_distance_to_top_of_window": 0, + "overhangs_right_depth": 0, + "overhangs_right_distance_to_top_of_window": 0, + "plug_loads_other_annual_kwh": "819.0", + "plug_loads_other_frac_latent": "0.045", + "plug_loads_other_frac_sensible": "0.855", + "plug_loads_other_usage_multiplier": 1.0, + "plug_loads_television_annual_kwh": "620.0", + "plug_loads_television_usage_multiplier": 1.0, + "plug_loads_vehicle_annual_kwh": "auto", + "plug_loads_vehicle_present": false, + "plug_loads_vehicle_usage_multiplier": 0.0, + "plug_loads_well_pump_annual_kwh": "auto", + "plug_loads_well_pump_present": false, + "plug_loads_well_pump_usage_multiplier": 0.0, + "pool_heater_annual_kwh": "auto", + "pool_heater_annual_therm": "auto", + "pool_heater_type": "electric resistance", + "pool_heater_usage_multiplier": 1.0, + "pool_present": false, + "pool_pump_annual_kwh": "auto", + "pool_pump_usage_multiplier": 1.0, + "pv_system_array_azimuth_1": 180, + "pv_system_array_azimuth_2": 180, + "pv_system_array_tilt_1": "20", + "pv_system_array_tilt_2": "20", + "pv_system_inverter_efficiency_1": 0.96, + "pv_system_inverter_efficiency_2": 0.96, + "pv_system_location_1": "auto", + "pv_system_location_2": "auto", + "pv_system_max_power_output_1": 4000, + "pv_system_max_power_output_2": 4000, + "pv_system_module_type_1": "none", + "pv_system_module_type_2": "none", + "pv_system_num_units_served_1": 1, + "pv_system_num_units_served_2": 1, + "pv_system_system_losses_fraction_1": 0.14, + "pv_system_system_losses_fraction_2": 0.14, + "pv_system_tracking_1": "auto", + "pv_system_tracking_2": "auto", + "refrigerator_location": "living space", + "refrigerator_rated_annual_kwh": "650.0", + "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, + "roof_assembly_r": 2.3, + "roof_color": "medium", + "roof_material_type": "asphalt or fiberglass shingles", + "roof_radiant_barrier": false, + "roof_radiant_barrier_grade": "1", + "schedules_type": "default", + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", + "simulation_control_timestep": "60", + "site_type": "suburban", + "skylight_area_back": 0, + "skylight_area_front": 0, + "skylight_area_left": 0, + "skylight_area_right": 0, + "skylight_shgc": 0.45, + "skylight_ufactor": 0.33, + "slab_carpet_fraction": "0.0", + "slab_carpet_r": "0.0", + "slab_perimeter_depth": 0, + "slab_perimeter_insulation_r": 0, + "slab_thickness": "4.0", + "slab_under_insulation_r": 0, + "slab_under_width": 0, + "solar_thermal_collector_area": 40.0, + "solar_thermal_collector_azimuth": 180, + "solar_thermal_collector_loop_type": "liquid direct", + "solar_thermal_collector_rated_optical_efficiency": 0.5, + "solar_thermal_collector_rated_thermal_losses": 0.2799, + "solar_thermal_collector_tilt": "20", + "solar_thermal_collector_type": "evacuated tube", + "solar_thermal_solar_fraction": 0, + "solar_thermal_storage_volume": "auto", + "solar_thermal_system_type": "none", + "wall_assembly_r": 23, + "wall_color": "medium", + "wall_siding_type": "wood siding", + "wall_type": "WoodStud", + "water_fixtures_shower_low_flow": true, + "water_fixtures_sink_low_flow": false, + "water_fixtures_usage_multiplier": 1.0, + "water_heater_efficiency": 0.95, + "water_heater_efficiency_type": "EnergyFactor", + "water_heater_fuel_type": "electricity", + "water_heater_jacket_rvalue": 0, + "water_heater_location": "living space", + "water_heater_num_units_served": 1, + "water_heater_recovery_efficiency": "0.76", + "water_heater_setpoint_temperature": "125", + "water_heater_standby_loss": 0, + "water_heater_tank_volume": "40", + "water_heater_type": "storage water heater", + "weather_station_epw_filepath": "USA_CO_Denver.Intl.AP.725650_TMY3.epw", + "whole_house_fan_flow_rate": 4500, + "whole_house_fan_power": 300, + "whole_house_fan_present": false, + "window_area_back": 0, + "window_area_front": 0, + "window_area_left": 0, + "window_area_right": 0, + "window_aspect_ratio": 1.333, + "window_back_wwr": 0.18, + "window_fraction_operable": 0.67, + "window_front_wwr": 0.18, + "window_interior_shading_summer": 0.7, + "window_interior_shading_winter": 0.85, + "window_left_wwr": 0.18, + "window_right_wwr": 0.18, + "window_shgc": 0.45, + "window_ufactor": 0.33 + }, + "measure_dir_name": "BuildResidentialHPXML" + } + ] +} \ No newline at end of file diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-unvented-crawlspace-double-loaded-interior.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-unvented-crawlspace-double-loaded-interior.osw new file mode 100644 index 00000000..2b0d7d92 --- /dev/null +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-unvented-crawlspace-double-loaded-interior.osw @@ -0,0 +1,341 @@ +{ + "measure_paths": [ + "../.." + ], + "steps": [ + { + "arguments": { + "air_leakage_house_pressure": 50, + "air_leakage_shielding_of_home": "auto", + "air_leakage_units": "ACH", + "air_leakage_value": 3, + "bathroom_fans_quantity": "0", + "ceiling_assembly_r": 39.3, + "ceiling_fan_cooling_setpoint_temp_offset": 0, + "ceiling_fan_efficiency": "auto", + "ceiling_fan_present": false, + "ceiling_fan_quantity": "auto", + "clothes_dryer_efficiency": "3.73", + "clothes_dryer_efficiency_type": "CombinedEnergyFactor", + "clothes_dryer_fuel_type": "electricity", + "clothes_dryer_location": "living space", + "clothes_dryer_usage_multiplier": 1.0, + "clothes_dryer_vented_flow_rate": "150.0", + "clothes_washer_capacity": "3.2", + "clothes_washer_efficiency": "1.21", + "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", + "clothes_washer_label_annual_gas_cost": "27.0", + "clothes_washer_label_electric_rate": "0.12", + "clothes_washer_label_gas_rate": "1.09", + "clothes_washer_label_usage": "6.0", + "clothes_washer_location": "living space", + "clothes_washer_rated_annual_kwh": "380.0", + "clothes_washer_usage_multiplier": 1.0, + "cooking_range_oven_fuel_type": "electricity", + "cooking_range_oven_is_convection": false, + "cooking_range_oven_is_induction": false, + "cooking_range_oven_location": "living space", + "cooking_range_oven_usage_multiplier": 1.0, + "cooling_system_cooling_capacity": "48000.0", + "cooling_system_cooling_compressor_type": "single stage", + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", + "cooling_system_cooling_sensible_heat_fraction": 0.73, + "cooling_system_fraction_cool_load_served": 1, + "cooling_system_is_ducted": false, + "cooling_system_type": "central air conditioner", + "dehumidifier_capacity": 40, + "dehumidifier_efficiency": 1.8, + "dehumidifier_efficiency_type": "EnergyFactor", + "dehumidifier_fraction_dehumidification_load_served": 1, + "dehumidifier_rh_setpoint": 0.5, + "dehumidifier_type": "none", + "dhw_distribution_pipe_r": "0.0", + "dhw_distribution_recirc_branch_piping_length": "50", + "dhw_distribution_recirc_control_type": "no control", + "dhw_distribution_recirc_piping_length": "50", + "dhw_distribution_recirc_pump_power": "50", + "dhw_distribution_standard_piping_length": "50", + "dhw_distribution_system_type": "Standard", + "dishwasher_efficiency": "307", + "dishwasher_efficiency_type": "RatedAnnualkWh", + "dishwasher_label_annual_gas_cost": "22.32", + "dishwasher_label_electric_rate": "0.12", + "dishwasher_label_gas_rate": "1.09", + "dishwasher_label_usage": "4.0", + "dishwasher_location": "living space", + "dishwasher_place_setting_capacity": "12", + "dishwasher_usage_multiplier": 1.0, + "door_area": 20.0, + "door_rvalue": 4.4, + "ducts_number_of_return_registers": "1", + "ducts_return_insulation_r": 0.0, + "ducts_return_leakage_units": "CFM25", + "ducts_return_leakage_value": 0.0, + "ducts_return_location": "living space", + "ducts_return_surface_area": "50.0", + "ducts_supply_insulation_r": 0.0, + "ducts_supply_leakage_units": "CFM25", + "ducts_supply_leakage_value": 0.0, + "ducts_supply_location": "living space", + "ducts_supply_surface_area": "150.0", + "dwhr_efficiency": 0.55, + "dwhr_equal_flow": true, + "dwhr_facilities_connected": "none", + "extra_refrigerator_location": "none", + "extra_refrigerator_rated_annual_kwh": "auto", + "extra_refrigerator_usage_multiplier": 1.0, + "floor_assembly_r": 18.7, + "foundation_wall_insulation_distance_to_bottom": 4.0, + "foundation_wall_insulation_distance_to_top": 0.0, + "foundation_wall_insulation_r": 8.9, + "foundation_wall_thickness": "8.0", + "freezer_location": "none", + "freezer_rated_annual_kwh": "auto", + "freezer_usage_multiplier": 1.0, + "fuel_loads_fireplace_annual_therm": "auto", + "fuel_loads_fireplace_frac_latent": "auto", + "fuel_loads_fireplace_frac_sensible": "auto", + "fuel_loads_fireplace_fuel_type": "natural gas", + "fuel_loads_fireplace_present": false, + "fuel_loads_fireplace_usage_multiplier": 0.0, + "fuel_loads_grill_annual_therm": "auto", + "fuel_loads_grill_fuel_type": "natural gas", + "fuel_loads_grill_present": false, + "fuel_loads_grill_usage_multiplier": 0.0, + "fuel_loads_lighting_annual_therm": "auto", + "fuel_loads_lighting_fuel_type": "natural gas", + "fuel_loads_lighting_present": false, + "fuel_loads_lighting_usage_multiplier": 0.0, + "geometry_aspect_ratio": 1.5, + "geometry_attic_type": "UnventedAttic", + "geometry_balcony_depth": 0.0, + "geometry_building_num_bedrooms": 150, + "geometry_building_num_units": 50, + "geometry_cfa": 900.0, + "geometry_corridor_position": "Double-Loaded Interior", + "geometry_corridor_width": 10.0, + "geometry_eaves_depth": 0, + "geometry_foundation_height": 4.0, + "geometry_foundation_height_above_grade": 1.0, + "geometry_foundation_type": "UnventedCrawlspace", + "geometry_garage_depth": 20.0, + "geometry_garage_position": "Right", + "geometry_garage_protrusion": 0.0, + "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", + "geometry_horizontal_location": "Left", + "geometry_inset_depth": 0.0, + "geometry_inset_position": "Right", + "geometry_inset_width": 0.0, + "geometry_level": "Middle", + "geometry_num_bathrooms": "2", + "geometry_num_bedrooms": 3, + "geometry_num_floors_above_grade": 5, + "geometry_num_occupants": "3", + "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, + "geometry_roof_pitch": "6:12", + "geometry_roof_type": "gable", + "geometry_unit_type": "apartment unit", + "geometry_wall_height": 8.0, + "heat_pump_backup_fuel": "none", + "heat_pump_backup_heating_capacity": "34121.0", + "heat_pump_backup_heating_efficiency": 1, + "heat_pump_cooling_capacity": "48000.0", + "heat_pump_cooling_compressor_type": "single stage", + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", + "heat_pump_cooling_sensible_heat_fraction": 0.73, + "heat_pump_fraction_cool_load_served": 1, + "heat_pump_fraction_heat_load_served": 1, + "heat_pump_heating_capacity": "64000.0", + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", + "heat_pump_type": "none", + "heating_system_fraction_heat_load_served": 1, + "heating_system_fraction_heat_load_served_2": 0.25, + "heating_system_fuel": "natural gas", + "heating_system_fuel_2": "electricity", + "heating_system_heating_capacity": "64000.0", + "heating_system_heating_capacity_2": "auto", + "heating_system_heating_efficiency": 0.92, + "heating_system_heating_efficiency_2": 1.0, + "heating_system_type": "Furnace", + "heating_system_type_2": "none", + "holiday_lighting_daily_kwh": "auto", + "holiday_lighting_period_begin_day_of_month": "auto", + "holiday_lighting_period_begin_month": "auto", + "holiday_lighting_period_end_day_of_month": "auto", + "holiday_lighting_period_end_month": "auto", + "holiday_lighting_present": false, + "hot_tub_heater_annual_kwh": "auto", + "hot_tub_heater_annual_therm": "auto", + "hot_tub_heater_type": "electric resistance", + "hot_tub_heater_usage_multiplier": 1.0, + "hot_tub_present": false, + "hot_tub_pump_annual_kwh": "auto", + "hot_tub_pump_usage_multiplier": 1.0, + "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/extra-bldgtype-multifamily-unvented-crawlspace-double-loaded-interior.xml", + "kitchen_fans_quantity": "0", + "lighting_fraction_cfl_exterior": 0.4, + "lighting_fraction_cfl_garage": 0.4, + "lighting_fraction_cfl_interior": 0.4, + "lighting_fraction_led_exterior": 0.25, + "lighting_fraction_led_garage": 0.25, + "lighting_fraction_led_interior": 0.25, + "lighting_fraction_lfl_exterior": 0.1, + "lighting_fraction_lfl_garage": 0.1, + "lighting_fraction_lfl_interior": 0.1, + "lighting_usage_multiplier_exterior": 1.0, + "lighting_usage_multiplier_garage": 1.0, + "lighting_usage_multiplier_interior": 1.0, + "mech_vent_fan_power": 30, + "mech_vent_fan_power_2": 30, + "mech_vent_fan_type": "none", + "mech_vent_fan_type_2": "none", + "mech_vent_flow_rate": 110, + "mech_vent_flow_rate_2": 110, + "mech_vent_hours_in_operation": 24, + "mech_vent_hours_in_operation_2": 24, + "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", + "mech_vent_sensible_recovery_efficiency": 0.72, + "mech_vent_sensible_recovery_efficiency_2": 0.72, + "mech_vent_total_recovery_efficiency": 0.48, + "mech_vent_total_recovery_efficiency_2": 0.48, + "neighbor_back_distance": 0, + "neighbor_back_height": "auto", + "neighbor_front_distance": 0, + "neighbor_front_height": "auto", + "neighbor_left_distance": 0, + "neighbor_left_height": "auto", + "neighbor_right_distance": 0, + "neighbor_right_height": "auto", + "overhangs_back_depth": 0, + "overhangs_back_distance_to_top_of_window": 0, + "overhangs_front_depth": 0, + "overhangs_front_distance_to_top_of_window": 0, + "overhangs_left_depth": 0, + "overhangs_left_distance_to_top_of_window": 0, + "overhangs_right_depth": 0, + "overhangs_right_distance_to_top_of_window": 0, + "plug_loads_other_annual_kwh": "819.0", + "plug_loads_other_frac_latent": "0.045", + "plug_loads_other_frac_sensible": "0.855", + "plug_loads_other_usage_multiplier": 1.0, + "plug_loads_television_annual_kwh": "620.0", + "plug_loads_television_usage_multiplier": 1.0, + "plug_loads_vehicle_annual_kwh": "auto", + "plug_loads_vehicle_present": false, + "plug_loads_vehicle_usage_multiplier": 0.0, + "plug_loads_well_pump_annual_kwh": "auto", + "plug_loads_well_pump_present": false, + "plug_loads_well_pump_usage_multiplier": 0.0, + "pool_heater_annual_kwh": "auto", + "pool_heater_annual_therm": "auto", + "pool_heater_type": "electric resistance", + "pool_heater_usage_multiplier": 1.0, + "pool_present": false, + "pool_pump_annual_kwh": "auto", + "pool_pump_usage_multiplier": 1.0, + "pv_system_array_azimuth_1": 180, + "pv_system_array_azimuth_2": 180, + "pv_system_array_tilt_1": "20", + "pv_system_array_tilt_2": "20", + "pv_system_inverter_efficiency_1": 0.96, + "pv_system_inverter_efficiency_2": 0.96, + "pv_system_location_1": "auto", + "pv_system_location_2": "auto", + "pv_system_max_power_output_1": 4000, + "pv_system_max_power_output_2": 4000, + "pv_system_module_type_1": "none", + "pv_system_module_type_2": "none", + "pv_system_num_units_served_1": 1, + "pv_system_num_units_served_2": 1, + "pv_system_system_losses_fraction_1": 0.14, + "pv_system_system_losses_fraction_2": 0.14, + "pv_system_tracking_1": "auto", + "pv_system_tracking_2": "auto", + "refrigerator_location": "living space", + "refrigerator_rated_annual_kwh": "650.0", + "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, + "roof_assembly_r": 2.3, + "roof_color": "medium", + "roof_material_type": "asphalt or fiberglass shingles", + "roof_radiant_barrier": false, + "roof_radiant_barrier_grade": "1", + "schedules_type": "default", + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", + "simulation_control_timestep": "60", + "site_type": "suburban", + "skylight_area_back": 0, + "skylight_area_front": 0, + "skylight_area_left": 0, + "skylight_area_right": 0, + "skylight_shgc": 0.45, + "skylight_ufactor": 0.33, + "slab_carpet_fraction": "0.0", + "slab_carpet_r": "0.0", + "slab_perimeter_depth": 0, + "slab_perimeter_insulation_r": 0, + "slab_thickness": "4.0", + "slab_under_insulation_r": 0, + "slab_under_width": 0, + "solar_thermal_collector_area": 40.0, + "solar_thermal_collector_azimuth": 180, + "solar_thermal_collector_loop_type": "liquid direct", + "solar_thermal_collector_rated_optical_efficiency": 0.5, + "solar_thermal_collector_rated_thermal_losses": 0.2799, + "solar_thermal_collector_tilt": "20", + "solar_thermal_collector_type": "evacuated tube", + "solar_thermal_solar_fraction": 0, + "solar_thermal_storage_volume": "auto", + "solar_thermal_system_type": "none", + "wall_assembly_r": 23, + "wall_color": "medium", + "wall_siding_type": "wood siding", + "wall_type": "WoodStud", + "water_fixtures_shower_low_flow": true, + "water_fixtures_sink_low_flow": false, + "water_fixtures_usage_multiplier": 1.0, + "water_heater_efficiency": 0.95, + "water_heater_efficiency_type": "EnergyFactor", + "water_heater_fuel_type": "electricity", + "water_heater_jacket_rvalue": 0, + "water_heater_location": "living space", + "water_heater_num_units_served": 1, + "water_heater_recovery_efficiency": "0.76", + "water_heater_setpoint_temperature": "125", + "water_heater_standby_loss": 0, + "water_heater_tank_volume": "40", + "water_heater_type": "storage water heater", + "weather_station_epw_filepath": "USA_CO_Denver.Intl.AP.725650_TMY3.epw", + "whole_house_fan_flow_rate": 4500, + "whole_house_fan_power": 300, + "whole_house_fan_present": false, + "window_area_back": 0, + "window_area_front": 0, + "window_area_left": 0, + "window_area_right": 0, + "window_aspect_ratio": 1.333, + "window_back_wwr": 0.18, + "window_fraction_operable": 0.67, + "window_front_wwr": 0.18, + "window_interior_shading_summer": 0.7, + "window_interior_shading_winter": 0.85, + "window_left_wwr": 0.18, + "window_right_wwr": 0.18, + "window_shgc": 0.45, + "window_ufactor": 0.33 + }, + "measure_dir_name": "BuildResidentialHPXML" + } + ] +} \ No newline at end of file diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-unvented-crawlspace-left-bottom-double-loaded-interior.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-unvented-crawlspace-left-bottom-double-loaded-interior.osw new file mode 100644 index 00000000..ece2c4f7 --- /dev/null +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-unvented-crawlspace-left-bottom-double-loaded-interior.osw @@ -0,0 +1,341 @@ +{ + "measure_paths": [ + "../.." + ], + "steps": [ + { + "arguments": { + "air_leakage_house_pressure": 50, + "air_leakage_shielding_of_home": "auto", + "air_leakage_units": "ACH", + "air_leakage_value": 3, + "bathroom_fans_quantity": "0", + "ceiling_assembly_r": 39.3, + "ceiling_fan_cooling_setpoint_temp_offset": 0, + "ceiling_fan_efficiency": "auto", + "ceiling_fan_present": false, + "ceiling_fan_quantity": "auto", + "clothes_dryer_efficiency": "3.73", + "clothes_dryer_efficiency_type": "CombinedEnergyFactor", + "clothes_dryer_fuel_type": "electricity", + "clothes_dryer_location": "living space", + "clothes_dryer_usage_multiplier": 1.0, + "clothes_dryer_vented_flow_rate": "150.0", + "clothes_washer_capacity": "3.2", + "clothes_washer_efficiency": "1.21", + "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", + "clothes_washer_label_annual_gas_cost": "27.0", + "clothes_washer_label_electric_rate": "0.12", + "clothes_washer_label_gas_rate": "1.09", + "clothes_washer_label_usage": "6.0", + "clothes_washer_location": "living space", + "clothes_washer_rated_annual_kwh": "380.0", + "clothes_washer_usage_multiplier": 1.0, + "cooking_range_oven_fuel_type": "electricity", + "cooking_range_oven_is_convection": false, + "cooking_range_oven_is_induction": false, + "cooking_range_oven_location": "living space", + "cooking_range_oven_usage_multiplier": 1.0, + "cooling_system_cooling_capacity": "48000.0", + "cooling_system_cooling_compressor_type": "single stage", + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", + "cooling_system_cooling_sensible_heat_fraction": 0.73, + "cooling_system_fraction_cool_load_served": 1, + "cooling_system_is_ducted": false, + "cooling_system_type": "central air conditioner", + "dehumidifier_capacity": 40, + "dehumidifier_efficiency": 1.8, + "dehumidifier_efficiency_type": "EnergyFactor", + "dehumidifier_fraction_dehumidification_load_served": 1, + "dehumidifier_rh_setpoint": 0.5, + "dehumidifier_type": "none", + "dhw_distribution_pipe_r": "0.0", + "dhw_distribution_recirc_branch_piping_length": "50", + "dhw_distribution_recirc_control_type": "no control", + "dhw_distribution_recirc_piping_length": "50", + "dhw_distribution_recirc_pump_power": "50", + "dhw_distribution_standard_piping_length": "50", + "dhw_distribution_system_type": "Standard", + "dishwasher_efficiency": "307", + "dishwasher_efficiency_type": "RatedAnnualkWh", + "dishwasher_label_annual_gas_cost": "22.32", + "dishwasher_label_electric_rate": "0.12", + "dishwasher_label_gas_rate": "1.09", + "dishwasher_label_usage": "4.0", + "dishwasher_location": "living space", + "dishwasher_place_setting_capacity": "12", + "dishwasher_usage_multiplier": 1.0, + "door_area": 20.0, + "door_rvalue": 4.4, + "ducts_number_of_return_registers": "1", + "ducts_return_insulation_r": 0.0, + "ducts_return_leakage_units": "CFM25", + "ducts_return_leakage_value": 0.0, + "ducts_return_location": "living space", + "ducts_return_surface_area": "50.0", + "ducts_supply_insulation_r": 0.0, + "ducts_supply_leakage_units": "CFM25", + "ducts_supply_leakage_value": 0.0, + "ducts_supply_location": "living space", + "ducts_supply_surface_area": "150.0", + "dwhr_efficiency": 0.55, + "dwhr_equal_flow": true, + "dwhr_facilities_connected": "none", + "extra_refrigerator_location": "none", + "extra_refrigerator_rated_annual_kwh": "auto", + "extra_refrigerator_usage_multiplier": 1.0, + "floor_assembly_r": 18.7, + "foundation_wall_insulation_distance_to_bottom": 4.0, + "foundation_wall_insulation_distance_to_top": 0.0, + "foundation_wall_insulation_r": 8.9, + "foundation_wall_thickness": "8.0", + "freezer_location": "none", + "freezer_rated_annual_kwh": "auto", + "freezer_usage_multiplier": 1.0, + "fuel_loads_fireplace_annual_therm": "auto", + "fuel_loads_fireplace_frac_latent": "auto", + "fuel_loads_fireplace_frac_sensible": "auto", + "fuel_loads_fireplace_fuel_type": "natural gas", + "fuel_loads_fireplace_present": false, + "fuel_loads_fireplace_usage_multiplier": 0.0, + "fuel_loads_grill_annual_therm": "auto", + "fuel_loads_grill_fuel_type": "natural gas", + "fuel_loads_grill_present": false, + "fuel_loads_grill_usage_multiplier": 0.0, + "fuel_loads_lighting_annual_therm": "auto", + "fuel_loads_lighting_fuel_type": "natural gas", + "fuel_loads_lighting_present": false, + "fuel_loads_lighting_usage_multiplier": 0.0, + "geometry_aspect_ratio": 1.5, + "geometry_attic_type": "UnventedAttic", + "geometry_balcony_depth": 0.0, + "geometry_building_num_bedrooms": 150, + "geometry_building_num_units": 50, + "geometry_cfa": 900.0, + "geometry_corridor_position": "Double-Loaded Interior", + "geometry_corridor_width": 10.0, + "geometry_eaves_depth": 0, + "geometry_foundation_height": 4.0, + "geometry_foundation_height_above_grade": 1.0, + "geometry_foundation_type": "UnventedCrawlspace", + "geometry_garage_depth": 20.0, + "geometry_garage_position": "Right", + "geometry_garage_protrusion": 0.0, + "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", + "geometry_horizontal_location": "Left", + "geometry_inset_depth": 0.0, + "geometry_inset_position": "Right", + "geometry_inset_width": 0.0, + "geometry_level": "Bottom", + "geometry_num_bathrooms": "2", + "geometry_num_bedrooms": 3, + "geometry_num_floors_above_grade": 5, + "geometry_num_occupants": "3", + "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, + "geometry_roof_pitch": "6:12", + "geometry_roof_type": "gable", + "geometry_unit_type": "apartment unit", + "geometry_wall_height": 8.0, + "heat_pump_backup_fuel": "none", + "heat_pump_backup_heating_capacity": "34121.0", + "heat_pump_backup_heating_efficiency": 1, + "heat_pump_cooling_capacity": "48000.0", + "heat_pump_cooling_compressor_type": "single stage", + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", + "heat_pump_cooling_sensible_heat_fraction": 0.73, + "heat_pump_fraction_cool_load_served": 1, + "heat_pump_fraction_heat_load_served": 1, + "heat_pump_heating_capacity": "64000.0", + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", + "heat_pump_type": "none", + "heating_system_fraction_heat_load_served": 1, + "heating_system_fraction_heat_load_served_2": 0.25, + "heating_system_fuel": "natural gas", + "heating_system_fuel_2": "electricity", + "heating_system_heating_capacity": "64000.0", + "heating_system_heating_capacity_2": "auto", + "heating_system_heating_efficiency": 0.92, + "heating_system_heating_efficiency_2": 1.0, + "heating_system_type": "Furnace", + "heating_system_type_2": "none", + "holiday_lighting_daily_kwh": "auto", + "holiday_lighting_period_begin_day_of_month": "auto", + "holiday_lighting_period_begin_month": "auto", + "holiday_lighting_period_end_day_of_month": "auto", + "holiday_lighting_period_end_month": "auto", + "holiday_lighting_present": false, + "hot_tub_heater_annual_kwh": "auto", + "hot_tub_heater_annual_therm": "auto", + "hot_tub_heater_type": "electric resistance", + "hot_tub_heater_usage_multiplier": 1.0, + "hot_tub_present": false, + "hot_tub_pump_annual_kwh": "auto", + "hot_tub_pump_usage_multiplier": 1.0, + "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/extra-bldgtype-multifamily-unvented-crawlspace-left-bottom-double-loaded-interior.xml", + "kitchen_fans_quantity": "0", + "lighting_fraction_cfl_exterior": 0.4, + "lighting_fraction_cfl_garage": 0.4, + "lighting_fraction_cfl_interior": 0.4, + "lighting_fraction_led_exterior": 0.25, + "lighting_fraction_led_garage": 0.25, + "lighting_fraction_led_interior": 0.25, + "lighting_fraction_lfl_exterior": 0.1, + "lighting_fraction_lfl_garage": 0.1, + "lighting_fraction_lfl_interior": 0.1, + "lighting_usage_multiplier_exterior": 1.0, + "lighting_usage_multiplier_garage": 1.0, + "lighting_usage_multiplier_interior": 1.0, + "mech_vent_fan_power": 30, + "mech_vent_fan_power_2": 30, + "mech_vent_fan_type": "none", + "mech_vent_fan_type_2": "none", + "mech_vent_flow_rate": 110, + "mech_vent_flow_rate_2": 110, + "mech_vent_hours_in_operation": 24, + "mech_vent_hours_in_operation_2": 24, + "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", + "mech_vent_sensible_recovery_efficiency": 0.72, + "mech_vent_sensible_recovery_efficiency_2": 0.72, + "mech_vent_total_recovery_efficiency": 0.48, + "mech_vent_total_recovery_efficiency_2": 0.48, + "neighbor_back_distance": 0, + "neighbor_back_height": "auto", + "neighbor_front_distance": 0, + "neighbor_front_height": "auto", + "neighbor_left_distance": 0, + "neighbor_left_height": "auto", + "neighbor_right_distance": 0, + "neighbor_right_height": "auto", + "overhangs_back_depth": 0, + "overhangs_back_distance_to_top_of_window": 0, + "overhangs_front_depth": 0, + "overhangs_front_distance_to_top_of_window": 0, + "overhangs_left_depth": 0, + "overhangs_left_distance_to_top_of_window": 0, + "overhangs_right_depth": 0, + "overhangs_right_distance_to_top_of_window": 0, + "plug_loads_other_annual_kwh": "819.0", + "plug_loads_other_frac_latent": "0.045", + "plug_loads_other_frac_sensible": "0.855", + "plug_loads_other_usage_multiplier": 1.0, + "plug_loads_television_annual_kwh": "620.0", + "plug_loads_television_usage_multiplier": 1.0, + "plug_loads_vehicle_annual_kwh": "auto", + "plug_loads_vehicle_present": false, + "plug_loads_vehicle_usage_multiplier": 0.0, + "plug_loads_well_pump_annual_kwh": "auto", + "plug_loads_well_pump_present": false, + "plug_loads_well_pump_usage_multiplier": 0.0, + "pool_heater_annual_kwh": "auto", + "pool_heater_annual_therm": "auto", + "pool_heater_type": "electric resistance", + "pool_heater_usage_multiplier": 1.0, + "pool_present": false, + "pool_pump_annual_kwh": "auto", + "pool_pump_usage_multiplier": 1.0, + "pv_system_array_azimuth_1": 180, + "pv_system_array_azimuth_2": 180, + "pv_system_array_tilt_1": "20", + "pv_system_array_tilt_2": "20", + "pv_system_inverter_efficiency_1": 0.96, + "pv_system_inverter_efficiency_2": 0.96, + "pv_system_location_1": "auto", + "pv_system_location_2": "auto", + "pv_system_max_power_output_1": 4000, + "pv_system_max_power_output_2": 4000, + "pv_system_module_type_1": "none", + "pv_system_module_type_2": "none", + "pv_system_num_units_served_1": 1, + "pv_system_num_units_served_2": 1, + "pv_system_system_losses_fraction_1": 0.14, + "pv_system_system_losses_fraction_2": 0.14, + "pv_system_tracking_1": "auto", + "pv_system_tracking_2": "auto", + "refrigerator_location": "living space", + "refrigerator_rated_annual_kwh": "650.0", + "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, + "roof_assembly_r": 2.3, + "roof_color": "medium", + "roof_material_type": "asphalt or fiberglass shingles", + "roof_radiant_barrier": false, + "roof_radiant_barrier_grade": "1", + "schedules_type": "default", + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", + "simulation_control_timestep": "60", + "site_type": "suburban", + "skylight_area_back": 0, + "skylight_area_front": 0, + "skylight_area_left": 0, + "skylight_area_right": 0, + "skylight_shgc": 0.45, + "skylight_ufactor": 0.33, + "slab_carpet_fraction": "0.0", + "slab_carpet_r": "0.0", + "slab_perimeter_depth": 0, + "slab_perimeter_insulation_r": 0, + "slab_thickness": "4.0", + "slab_under_insulation_r": 0, + "slab_under_width": 0, + "solar_thermal_collector_area": 40.0, + "solar_thermal_collector_azimuth": 180, + "solar_thermal_collector_loop_type": "liquid direct", + "solar_thermal_collector_rated_optical_efficiency": 0.5, + "solar_thermal_collector_rated_thermal_losses": 0.2799, + "solar_thermal_collector_tilt": "20", + "solar_thermal_collector_type": "evacuated tube", + "solar_thermal_solar_fraction": 0, + "solar_thermal_storage_volume": "auto", + "solar_thermal_system_type": "none", + "wall_assembly_r": 23, + "wall_color": "medium", + "wall_siding_type": "wood siding", + "wall_type": "WoodStud", + "water_fixtures_shower_low_flow": true, + "water_fixtures_sink_low_flow": false, + "water_fixtures_usage_multiplier": 1.0, + "water_heater_efficiency": 0.95, + "water_heater_efficiency_type": "EnergyFactor", + "water_heater_fuel_type": "electricity", + "water_heater_jacket_rvalue": 0, + "water_heater_location": "living space", + "water_heater_num_units_served": 1, + "water_heater_recovery_efficiency": "0.76", + "water_heater_setpoint_temperature": "125", + "water_heater_standby_loss": 0, + "water_heater_tank_volume": "40", + "water_heater_type": "storage water heater", + "weather_station_epw_filepath": "USA_CO_Denver.Intl.AP.725650_TMY3.epw", + "whole_house_fan_flow_rate": 4500, + "whole_house_fan_power": 300, + "whole_house_fan_present": false, + "window_area_back": 0, + "window_area_front": 0, + "window_area_left": 0, + "window_area_right": 0, + "window_aspect_ratio": 1.333, + "window_back_wwr": 0.18, + "window_fraction_operable": 0.67, + "window_front_wwr": 0.18, + "window_interior_shading_summer": 0.7, + "window_interior_shading_winter": 0.85, + "window_left_wwr": 0.18, + "window_right_wwr": 0.18, + "window_shgc": 0.45, + "window_ufactor": 0.33 + }, + "measure_dir_name": "BuildResidentialHPXML" + } + ] +} \ No newline at end of file diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-unvented-crawlspace-left-bottom.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-unvented-crawlspace-left-bottom.osw new file mode 100644 index 00000000..a51d8d35 --- /dev/null +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-unvented-crawlspace-left-bottom.osw @@ -0,0 +1,341 @@ +{ + "measure_paths": [ + "../.." + ], + "steps": [ + { + "arguments": { + "air_leakage_house_pressure": 50, + "air_leakage_shielding_of_home": "auto", + "air_leakage_units": "ACH", + "air_leakage_value": 3, + "bathroom_fans_quantity": "0", + "ceiling_assembly_r": 39.3, + "ceiling_fan_cooling_setpoint_temp_offset": 0, + "ceiling_fan_efficiency": "auto", + "ceiling_fan_present": false, + "ceiling_fan_quantity": "auto", + "clothes_dryer_efficiency": "3.73", + "clothes_dryer_efficiency_type": "CombinedEnergyFactor", + "clothes_dryer_fuel_type": "electricity", + "clothes_dryer_location": "living space", + "clothes_dryer_usage_multiplier": 1.0, + "clothes_dryer_vented_flow_rate": "150.0", + "clothes_washer_capacity": "3.2", + "clothes_washer_efficiency": "1.21", + "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", + "clothes_washer_label_annual_gas_cost": "27.0", + "clothes_washer_label_electric_rate": "0.12", + "clothes_washer_label_gas_rate": "1.09", + "clothes_washer_label_usage": "6.0", + "clothes_washer_location": "living space", + "clothes_washer_rated_annual_kwh": "380.0", + "clothes_washer_usage_multiplier": 1.0, + "cooking_range_oven_fuel_type": "electricity", + "cooking_range_oven_is_convection": false, + "cooking_range_oven_is_induction": false, + "cooking_range_oven_location": "living space", + "cooking_range_oven_usage_multiplier": 1.0, + "cooling_system_cooling_capacity": "48000.0", + "cooling_system_cooling_compressor_type": "single stage", + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", + "cooling_system_cooling_sensible_heat_fraction": 0.73, + "cooling_system_fraction_cool_load_served": 1, + "cooling_system_is_ducted": false, + "cooling_system_type": "central air conditioner", + "dehumidifier_capacity": 40, + "dehumidifier_efficiency": 1.8, + "dehumidifier_efficiency_type": "EnergyFactor", + "dehumidifier_fraction_dehumidification_load_served": 1, + "dehumidifier_rh_setpoint": 0.5, + "dehumidifier_type": "none", + "dhw_distribution_pipe_r": "0.0", + "dhw_distribution_recirc_branch_piping_length": "50", + "dhw_distribution_recirc_control_type": "no control", + "dhw_distribution_recirc_piping_length": "50", + "dhw_distribution_recirc_pump_power": "50", + "dhw_distribution_standard_piping_length": "50", + "dhw_distribution_system_type": "Standard", + "dishwasher_efficiency": "307", + "dishwasher_efficiency_type": "RatedAnnualkWh", + "dishwasher_label_annual_gas_cost": "22.32", + "dishwasher_label_electric_rate": "0.12", + "dishwasher_label_gas_rate": "1.09", + "dishwasher_label_usage": "4.0", + "dishwasher_location": "living space", + "dishwasher_place_setting_capacity": "12", + "dishwasher_usage_multiplier": 1.0, + "door_area": 20.0, + "door_rvalue": 4.4, + "ducts_number_of_return_registers": "1", + "ducts_return_insulation_r": 0.0, + "ducts_return_leakage_units": "CFM25", + "ducts_return_leakage_value": 0.0, + "ducts_return_location": "living space", + "ducts_return_surface_area": "50.0", + "ducts_supply_insulation_r": 0.0, + "ducts_supply_leakage_units": "CFM25", + "ducts_supply_leakage_value": 0.0, + "ducts_supply_location": "living space", + "ducts_supply_surface_area": "150.0", + "dwhr_efficiency": 0.55, + "dwhr_equal_flow": true, + "dwhr_facilities_connected": "none", + "extra_refrigerator_location": "none", + "extra_refrigerator_rated_annual_kwh": "auto", + "extra_refrigerator_usage_multiplier": 1.0, + "floor_assembly_r": 18.7, + "foundation_wall_insulation_distance_to_bottom": 4.0, + "foundation_wall_insulation_distance_to_top": 0.0, + "foundation_wall_insulation_r": 8.9, + "foundation_wall_thickness": "8.0", + "freezer_location": "none", + "freezer_rated_annual_kwh": "auto", + "freezer_usage_multiplier": 1.0, + "fuel_loads_fireplace_annual_therm": "auto", + "fuel_loads_fireplace_frac_latent": "auto", + "fuel_loads_fireplace_frac_sensible": "auto", + "fuel_loads_fireplace_fuel_type": "natural gas", + "fuel_loads_fireplace_present": false, + "fuel_loads_fireplace_usage_multiplier": 0.0, + "fuel_loads_grill_annual_therm": "auto", + "fuel_loads_grill_fuel_type": "natural gas", + "fuel_loads_grill_present": false, + "fuel_loads_grill_usage_multiplier": 0.0, + "fuel_loads_lighting_annual_therm": "auto", + "fuel_loads_lighting_fuel_type": "natural gas", + "fuel_loads_lighting_present": false, + "fuel_loads_lighting_usage_multiplier": 0.0, + "geometry_aspect_ratio": 1.5, + "geometry_attic_type": "UnventedAttic", + "geometry_balcony_depth": 0.0, + "geometry_building_num_bedrooms": 150, + "geometry_building_num_units": 50, + "geometry_cfa": 900.0, + "geometry_corridor_position": "None", + "geometry_corridor_width": 10.0, + "geometry_eaves_depth": 0, + "geometry_foundation_height": 4.0, + "geometry_foundation_height_above_grade": 1.0, + "geometry_foundation_type": "UnventedCrawlspace", + "geometry_garage_depth": 20.0, + "geometry_garage_position": "Right", + "geometry_garage_protrusion": 0.0, + "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", + "geometry_horizontal_location": "Left", + "geometry_inset_depth": 0.0, + "geometry_inset_position": "Right", + "geometry_inset_width": 0.0, + "geometry_level": "Bottom", + "geometry_num_bathrooms": "2", + "geometry_num_bedrooms": 3, + "geometry_num_floors_above_grade": 5, + "geometry_num_occupants": "3", + "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, + "geometry_roof_pitch": "6:12", + "geometry_roof_type": "gable", + "geometry_unit_type": "apartment unit", + "geometry_wall_height": 8.0, + "heat_pump_backup_fuel": "none", + "heat_pump_backup_heating_capacity": "34121.0", + "heat_pump_backup_heating_efficiency": 1, + "heat_pump_cooling_capacity": "48000.0", + "heat_pump_cooling_compressor_type": "single stage", + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", + "heat_pump_cooling_sensible_heat_fraction": 0.73, + "heat_pump_fraction_cool_load_served": 1, + "heat_pump_fraction_heat_load_served": 1, + "heat_pump_heating_capacity": "64000.0", + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", + "heat_pump_type": "none", + "heating_system_fraction_heat_load_served": 1, + "heating_system_fraction_heat_load_served_2": 0.25, + "heating_system_fuel": "natural gas", + "heating_system_fuel_2": "electricity", + "heating_system_heating_capacity": "64000.0", + "heating_system_heating_capacity_2": "auto", + "heating_system_heating_efficiency": 0.92, + "heating_system_heating_efficiency_2": 1.0, + "heating_system_type": "Furnace", + "heating_system_type_2": "none", + "holiday_lighting_daily_kwh": "auto", + "holiday_lighting_period_begin_day_of_month": "auto", + "holiday_lighting_period_begin_month": "auto", + "holiday_lighting_period_end_day_of_month": "auto", + "holiday_lighting_period_end_month": "auto", + "holiday_lighting_present": false, + "hot_tub_heater_annual_kwh": "auto", + "hot_tub_heater_annual_therm": "auto", + "hot_tub_heater_type": "electric resistance", + "hot_tub_heater_usage_multiplier": 1.0, + "hot_tub_present": false, + "hot_tub_pump_annual_kwh": "auto", + "hot_tub_pump_usage_multiplier": 1.0, + "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/extra-bldgtype-multifamily-unvented-crawlspace-left-bottom.xml", + "kitchen_fans_quantity": "0", + "lighting_fraction_cfl_exterior": 0.4, + "lighting_fraction_cfl_garage": 0.4, + "lighting_fraction_cfl_interior": 0.4, + "lighting_fraction_led_exterior": 0.25, + "lighting_fraction_led_garage": 0.25, + "lighting_fraction_led_interior": 0.25, + "lighting_fraction_lfl_exterior": 0.1, + "lighting_fraction_lfl_garage": 0.1, + "lighting_fraction_lfl_interior": 0.1, + "lighting_usage_multiplier_exterior": 1.0, + "lighting_usage_multiplier_garage": 1.0, + "lighting_usage_multiplier_interior": 1.0, + "mech_vent_fan_power": 30, + "mech_vent_fan_power_2": 30, + "mech_vent_fan_type": "none", + "mech_vent_fan_type_2": "none", + "mech_vent_flow_rate": 110, + "mech_vent_flow_rate_2": 110, + "mech_vent_hours_in_operation": 24, + "mech_vent_hours_in_operation_2": 24, + "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", + "mech_vent_sensible_recovery_efficiency": 0.72, + "mech_vent_sensible_recovery_efficiency_2": 0.72, + "mech_vent_total_recovery_efficiency": 0.48, + "mech_vent_total_recovery_efficiency_2": 0.48, + "neighbor_back_distance": 0, + "neighbor_back_height": "auto", + "neighbor_front_distance": 0, + "neighbor_front_height": "auto", + "neighbor_left_distance": 0, + "neighbor_left_height": "auto", + "neighbor_right_distance": 0, + "neighbor_right_height": "auto", + "overhangs_back_depth": 0, + "overhangs_back_distance_to_top_of_window": 0, + "overhangs_front_depth": 0, + "overhangs_front_distance_to_top_of_window": 0, + "overhangs_left_depth": 0, + "overhangs_left_distance_to_top_of_window": 0, + "overhangs_right_depth": 0, + "overhangs_right_distance_to_top_of_window": 0, + "plug_loads_other_annual_kwh": "819.0", + "plug_loads_other_frac_latent": "0.045", + "plug_loads_other_frac_sensible": "0.855", + "plug_loads_other_usage_multiplier": 1.0, + "plug_loads_television_annual_kwh": "620.0", + "plug_loads_television_usage_multiplier": 1.0, + "plug_loads_vehicle_annual_kwh": "auto", + "plug_loads_vehicle_present": false, + "plug_loads_vehicle_usage_multiplier": 0.0, + "plug_loads_well_pump_annual_kwh": "auto", + "plug_loads_well_pump_present": false, + "plug_loads_well_pump_usage_multiplier": 0.0, + "pool_heater_annual_kwh": "auto", + "pool_heater_annual_therm": "auto", + "pool_heater_type": "electric resistance", + "pool_heater_usage_multiplier": 1.0, + "pool_present": false, + "pool_pump_annual_kwh": "auto", + "pool_pump_usage_multiplier": 1.0, + "pv_system_array_azimuth_1": 180, + "pv_system_array_azimuth_2": 180, + "pv_system_array_tilt_1": "20", + "pv_system_array_tilt_2": "20", + "pv_system_inverter_efficiency_1": 0.96, + "pv_system_inverter_efficiency_2": 0.96, + "pv_system_location_1": "auto", + "pv_system_location_2": "auto", + "pv_system_max_power_output_1": 4000, + "pv_system_max_power_output_2": 4000, + "pv_system_module_type_1": "none", + "pv_system_module_type_2": "none", + "pv_system_num_units_served_1": 1, + "pv_system_num_units_served_2": 1, + "pv_system_system_losses_fraction_1": 0.14, + "pv_system_system_losses_fraction_2": 0.14, + "pv_system_tracking_1": "auto", + "pv_system_tracking_2": "auto", + "refrigerator_location": "living space", + "refrigerator_rated_annual_kwh": "650.0", + "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, + "roof_assembly_r": 2.3, + "roof_color": "medium", + "roof_material_type": "asphalt or fiberglass shingles", + "roof_radiant_barrier": false, + "roof_radiant_barrier_grade": "1", + "schedules_type": "default", + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", + "simulation_control_timestep": "60", + "site_type": "suburban", + "skylight_area_back": 0, + "skylight_area_front": 0, + "skylight_area_left": 0, + "skylight_area_right": 0, + "skylight_shgc": 0.45, + "skylight_ufactor": 0.33, + "slab_carpet_fraction": "0.0", + "slab_carpet_r": "0.0", + "slab_perimeter_depth": 0, + "slab_perimeter_insulation_r": 0, + "slab_thickness": "4.0", + "slab_under_insulation_r": 0, + "slab_under_width": 0, + "solar_thermal_collector_area": 40.0, + "solar_thermal_collector_azimuth": 180, + "solar_thermal_collector_loop_type": "liquid direct", + "solar_thermal_collector_rated_optical_efficiency": 0.5, + "solar_thermal_collector_rated_thermal_losses": 0.2799, + "solar_thermal_collector_tilt": "20", + "solar_thermal_collector_type": "evacuated tube", + "solar_thermal_solar_fraction": 0, + "solar_thermal_storage_volume": "auto", + "solar_thermal_system_type": "none", + "wall_assembly_r": 23, + "wall_color": "medium", + "wall_siding_type": "wood siding", + "wall_type": "WoodStud", + "water_fixtures_shower_low_flow": true, + "water_fixtures_sink_low_flow": false, + "water_fixtures_usage_multiplier": 1.0, + "water_heater_efficiency": 0.95, + "water_heater_efficiency_type": "EnergyFactor", + "water_heater_fuel_type": "electricity", + "water_heater_jacket_rvalue": 0, + "water_heater_location": "living space", + "water_heater_num_units_served": 1, + "water_heater_recovery_efficiency": "0.76", + "water_heater_setpoint_temperature": "125", + "water_heater_standby_loss": 0, + "water_heater_tank_volume": "40", + "water_heater_type": "storage water heater", + "weather_station_epw_filepath": "USA_CO_Denver.Intl.AP.725650_TMY3.epw", + "whole_house_fan_flow_rate": 4500, + "whole_house_fan_power": 300, + "whole_house_fan_present": false, + "window_area_back": 0, + "window_area_front": 0, + "window_area_left": 0, + "window_area_right": 0, + "window_aspect_ratio": 1.333, + "window_back_wwr": 0.18, + "window_fraction_operable": 0.67, + "window_front_wwr": 0.18, + "window_interior_shading_summer": 0.7, + "window_interior_shading_winter": 0.85, + "window_left_wwr": 0.18, + "window_right_wwr": 0.18, + "window_shgc": 0.45, + "window_ufactor": 0.33 + }, + "measure_dir_name": "BuildResidentialHPXML" + } + ] +} \ No newline at end of file diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-unvented-crawlspace-left-middle-double-loaded-interior.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-unvented-crawlspace-left-middle-double-loaded-interior.osw new file mode 100644 index 00000000..551b0d5e --- /dev/null +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-unvented-crawlspace-left-middle-double-loaded-interior.osw @@ -0,0 +1,341 @@ +{ + "measure_paths": [ + "../.." + ], + "steps": [ + { + "arguments": { + "air_leakage_house_pressure": 50, + "air_leakage_shielding_of_home": "auto", + "air_leakage_units": "ACH", + "air_leakage_value": 3, + "bathroom_fans_quantity": "0", + "ceiling_assembly_r": 39.3, + "ceiling_fan_cooling_setpoint_temp_offset": 0, + "ceiling_fan_efficiency": "auto", + "ceiling_fan_present": false, + "ceiling_fan_quantity": "auto", + "clothes_dryer_efficiency": "3.73", + "clothes_dryer_efficiency_type": "CombinedEnergyFactor", + "clothes_dryer_fuel_type": "electricity", + "clothes_dryer_location": "living space", + "clothes_dryer_usage_multiplier": 1.0, + "clothes_dryer_vented_flow_rate": "150.0", + "clothes_washer_capacity": "3.2", + "clothes_washer_efficiency": "1.21", + "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", + "clothes_washer_label_annual_gas_cost": "27.0", + "clothes_washer_label_electric_rate": "0.12", + "clothes_washer_label_gas_rate": "1.09", + "clothes_washer_label_usage": "6.0", + "clothes_washer_location": "living space", + "clothes_washer_rated_annual_kwh": "380.0", + "clothes_washer_usage_multiplier": 1.0, + "cooking_range_oven_fuel_type": "electricity", + "cooking_range_oven_is_convection": false, + "cooking_range_oven_is_induction": false, + "cooking_range_oven_location": "living space", + "cooking_range_oven_usage_multiplier": 1.0, + "cooling_system_cooling_capacity": "48000.0", + "cooling_system_cooling_compressor_type": "single stage", + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", + "cooling_system_cooling_sensible_heat_fraction": 0.73, + "cooling_system_fraction_cool_load_served": 1, + "cooling_system_is_ducted": false, + "cooling_system_type": "central air conditioner", + "dehumidifier_capacity": 40, + "dehumidifier_efficiency": 1.8, + "dehumidifier_efficiency_type": "EnergyFactor", + "dehumidifier_fraction_dehumidification_load_served": 1, + "dehumidifier_rh_setpoint": 0.5, + "dehumidifier_type": "none", + "dhw_distribution_pipe_r": "0.0", + "dhw_distribution_recirc_branch_piping_length": "50", + "dhw_distribution_recirc_control_type": "no control", + "dhw_distribution_recirc_piping_length": "50", + "dhw_distribution_recirc_pump_power": "50", + "dhw_distribution_standard_piping_length": "50", + "dhw_distribution_system_type": "Standard", + "dishwasher_efficiency": "307", + "dishwasher_efficiency_type": "RatedAnnualkWh", + "dishwasher_label_annual_gas_cost": "22.32", + "dishwasher_label_electric_rate": "0.12", + "dishwasher_label_gas_rate": "1.09", + "dishwasher_label_usage": "4.0", + "dishwasher_location": "living space", + "dishwasher_place_setting_capacity": "12", + "dishwasher_usage_multiplier": 1.0, + "door_area": 20.0, + "door_rvalue": 4.4, + "ducts_number_of_return_registers": "1", + "ducts_return_insulation_r": 0.0, + "ducts_return_leakage_units": "CFM25", + "ducts_return_leakage_value": 0.0, + "ducts_return_location": "living space", + "ducts_return_surface_area": "50.0", + "ducts_supply_insulation_r": 0.0, + "ducts_supply_leakage_units": "CFM25", + "ducts_supply_leakage_value": 0.0, + "ducts_supply_location": "living space", + "ducts_supply_surface_area": "150.0", + "dwhr_efficiency": 0.55, + "dwhr_equal_flow": true, + "dwhr_facilities_connected": "none", + "extra_refrigerator_location": "none", + "extra_refrigerator_rated_annual_kwh": "auto", + "extra_refrigerator_usage_multiplier": 1.0, + "floor_assembly_r": 18.7, + "foundation_wall_insulation_distance_to_bottom": 4.0, + "foundation_wall_insulation_distance_to_top": 0.0, + "foundation_wall_insulation_r": 8.9, + "foundation_wall_thickness": "8.0", + "freezer_location": "none", + "freezer_rated_annual_kwh": "auto", + "freezer_usage_multiplier": 1.0, + "fuel_loads_fireplace_annual_therm": "auto", + "fuel_loads_fireplace_frac_latent": "auto", + "fuel_loads_fireplace_frac_sensible": "auto", + "fuel_loads_fireplace_fuel_type": "natural gas", + "fuel_loads_fireplace_present": false, + "fuel_loads_fireplace_usage_multiplier": 0.0, + "fuel_loads_grill_annual_therm": "auto", + "fuel_loads_grill_fuel_type": "natural gas", + "fuel_loads_grill_present": false, + "fuel_loads_grill_usage_multiplier": 0.0, + "fuel_loads_lighting_annual_therm": "auto", + "fuel_loads_lighting_fuel_type": "natural gas", + "fuel_loads_lighting_present": false, + "fuel_loads_lighting_usage_multiplier": 0.0, + "geometry_aspect_ratio": 1.5, + "geometry_attic_type": "UnventedAttic", + "geometry_balcony_depth": 0.0, + "geometry_building_num_bedrooms": 150, + "geometry_building_num_units": 50, + "geometry_cfa": 900.0, + "geometry_corridor_position": "Double-Loaded Interior", + "geometry_corridor_width": 10.0, + "geometry_eaves_depth": 0, + "geometry_foundation_height": 4.0, + "geometry_foundation_height_above_grade": 1.0, + "geometry_foundation_type": "UnventedCrawlspace", + "geometry_garage_depth": 20.0, + "geometry_garage_position": "Right", + "geometry_garage_protrusion": 0.0, + "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", + "geometry_horizontal_location": "Left", + "geometry_inset_depth": 0.0, + "geometry_inset_position": "Right", + "geometry_inset_width": 0.0, + "geometry_level": "Middle", + "geometry_num_bathrooms": "2", + "geometry_num_bedrooms": 3, + "geometry_num_floors_above_grade": 5, + "geometry_num_occupants": "3", + "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, + "geometry_roof_pitch": "6:12", + "geometry_roof_type": "gable", + "geometry_unit_type": "apartment unit", + "geometry_wall_height": 8.0, + "heat_pump_backup_fuel": "none", + "heat_pump_backup_heating_capacity": "34121.0", + "heat_pump_backup_heating_efficiency": 1, + "heat_pump_cooling_capacity": "48000.0", + "heat_pump_cooling_compressor_type": "single stage", + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", + "heat_pump_cooling_sensible_heat_fraction": 0.73, + "heat_pump_fraction_cool_load_served": 1, + "heat_pump_fraction_heat_load_served": 1, + "heat_pump_heating_capacity": "64000.0", + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", + "heat_pump_type": "none", + "heating_system_fraction_heat_load_served": 1, + "heating_system_fraction_heat_load_served_2": 0.25, + "heating_system_fuel": "natural gas", + "heating_system_fuel_2": "electricity", + "heating_system_heating_capacity": "64000.0", + "heating_system_heating_capacity_2": "auto", + "heating_system_heating_efficiency": 0.92, + "heating_system_heating_efficiency_2": 1.0, + "heating_system_type": "Furnace", + "heating_system_type_2": "none", + "holiday_lighting_daily_kwh": "auto", + "holiday_lighting_period_begin_day_of_month": "auto", + "holiday_lighting_period_begin_month": "auto", + "holiday_lighting_period_end_day_of_month": "auto", + "holiday_lighting_period_end_month": "auto", + "holiday_lighting_present": false, + "hot_tub_heater_annual_kwh": "auto", + "hot_tub_heater_annual_therm": "auto", + "hot_tub_heater_type": "electric resistance", + "hot_tub_heater_usage_multiplier": 1.0, + "hot_tub_present": false, + "hot_tub_pump_annual_kwh": "auto", + "hot_tub_pump_usage_multiplier": 1.0, + "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/extra-bldgtype-multifamily-unvented-crawlspace-left-middle-double-loaded-interior.xml", + "kitchen_fans_quantity": "0", + "lighting_fraction_cfl_exterior": 0.4, + "lighting_fraction_cfl_garage": 0.4, + "lighting_fraction_cfl_interior": 0.4, + "lighting_fraction_led_exterior": 0.25, + "lighting_fraction_led_garage": 0.25, + "lighting_fraction_led_interior": 0.25, + "lighting_fraction_lfl_exterior": 0.1, + "lighting_fraction_lfl_garage": 0.1, + "lighting_fraction_lfl_interior": 0.1, + "lighting_usage_multiplier_exterior": 1.0, + "lighting_usage_multiplier_garage": 1.0, + "lighting_usage_multiplier_interior": 1.0, + "mech_vent_fan_power": 30, + "mech_vent_fan_power_2": 30, + "mech_vent_fan_type": "none", + "mech_vent_fan_type_2": "none", + "mech_vent_flow_rate": 110, + "mech_vent_flow_rate_2": 110, + "mech_vent_hours_in_operation": 24, + "mech_vent_hours_in_operation_2": 24, + "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", + "mech_vent_sensible_recovery_efficiency": 0.72, + "mech_vent_sensible_recovery_efficiency_2": 0.72, + "mech_vent_total_recovery_efficiency": 0.48, + "mech_vent_total_recovery_efficiency_2": 0.48, + "neighbor_back_distance": 0, + "neighbor_back_height": "auto", + "neighbor_front_distance": 0, + "neighbor_front_height": "auto", + "neighbor_left_distance": 0, + "neighbor_left_height": "auto", + "neighbor_right_distance": 0, + "neighbor_right_height": "auto", + "overhangs_back_depth": 0, + "overhangs_back_distance_to_top_of_window": 0, + "overhangs_front_depth": 0, + "overhangs_front_distance_to_top_of_window": 0, + "overhangs_left_depth": 0, + "overhangs_left_distance_to_top_of_window": 0, + "overhangs_right_depth": 0, + "overhangs_right_distance_to_top_of_window": 0, + "plug_loads_other_annual_kwh": "819.0", + "plug_loads_other_frac_latent": "0.045", + "plug_loads_other_frac_sensible": "0.855", + "plug_loads_other_usage_multiplier": 1.0, + "plug_loads_television_annual_kwh": "620.0", + "plug_loads_television_usage_multiplier": 1.0, + "plug_loads_vehicle_annual_kwh": "auto", + "plug_loads_vehicle_present": false, + "plug_loads_vehicle_usage_multiplier": 0.0, + "plug_loads_well_pump_annual_kwh": "auto", + "plug_loads_well_pump_present": false, + "plug_loads_well_pump_usage_multiplier": 0.0, + "pool_heater_annual_kwh": "auto", + "pool_heater_annual_therm": "auto", + "pool_heater_type": "electric resistance", + "pool_heater_usage_multiplier": 1.0, + "pool_present": false, + "pool_pump_annual_kwh": "auto", + "pool_pump_usage_multiplier": 1.0, + "pv_system_array_azimuth_1": 180, + "pv_system_array_azimuth_2": 180, + "pv_system_array_tilt_1": "20", + "pv_system_array_tilt_2": "20", + "pv_system_inverter_efficiency_1": 0.96, + "pv_system_inverter_efficiency_2": 0.96, + "pv_system_location_1": "auto", + "pv_system_location_2": "auto", + "pv_system_max_power_output_1": 4000, + "pv_system_max_power_output_2": 4000, + "pv_system_module_type_1": "none", + "pv_system_module_type_2": "none", + "pv_system_num_units_served_1": 1, + "pv_system_num_units_served_2": 1, + "pv_system_system_losses_fraction_1": 0.14, + "pv_system_system_losses_fraction_2": 0.14, + "pv_system_tracking_1": "auto", + "pv_system_tracking_2": "auto", + "refrigerator_location": "living space", + "refrigerator_rated_annual_kwh": "650.0", + "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, + "roof_assembly_r": 2.3, + "roof_color": "medium", + "roof_material_type": "asphalt or fiberglass shingles", + "roof_radiant_barrier": false, + "roof_radiant_barrier_grade": "1", + "schedules_type": "default", + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", + "simulation_control_timestep": "60", + "site_type": "suburban", + "skylight_area_back": 0, + "skylight_area_front": 0, + "skylight_area_left": 0, + "skylight_area_right": 0, + "skylight_shgc": 0.45, + "skylight_ufactor": 0.33, + "slab_carpet_fraction": "0.0", + "slab_carpet_r": "0.0", + "slab_perimeter_depth": 0, + "slab_perimeter_insulation_r": 0, + "slab_thickness": "4.0", + "slab_under_insulation_r": 0, + "slab_under_width": 0, + "solar_thermal_collector_area": 40.0, + "solar_thermal_collector_azimuth": 180, + "solar_thermal_collector_loop_type": "liquid direct", + "solar_thermal_collector_rated_optical_efficiency": 0.5, + "solar_thermal_collector_rated_thermal_losses": 0.2799, + "solar_thermal_collector_tilt": "20", + "solar_thermal_collector_type": "evacuated tube", + "solar_thermal_solar_fraction": 0, + "solar_thermal_storage_volume": "auto", + "solar_thermal_system_type": "none", + "wall_assembly_r": 23, + "wall_color": "medium", + "wall_siding_type": "wood siding", + "wall_type": "WoodStud", + "water_fixtures_shower_low_flow": true, + "water_fixtures_sink_low_flow": false, + "water_fixtures_usage_multiplier": 1.0, + "water_heater_efficiency": 0.95, + "water_heater_efficiency_type": "EnergyFactor", + "water_heater_fuel_type": "electricity", + "water_heater_jacket_rvalue": 0, + "water_heater_location": "living space", + "water_heater_num_units_served": 1, + "water_heater_recovery_efficiency": "0.76", + "water_heater_setpoint_temperature": "125", + "water_heater_standby_loss": 0, + "water_heater_tank_volume": "40", + "water_heater_type": "storage water heater", + "weather_station_epw_filepath": "USA_CO_Denver.Intl.AP.725650_TMY3.epw", + "whole_house_fan_flow_rate": 4500, + "whole_house_fan_power": 300, + "whole_house_fan_present": false, + "window_area_back": 0, + "window_area_front": 0, + "window_area_left": 0, + "window_area_right": 0, + "window_aspect_ratio": 1.333, + "window_back_wwr": 0.18, + "window_fraction_operable": 0.67, + "window_front_wwr": 0.18, + "window_interior_shading_summer": 0.7, + "window_interior_shading_winter": 0.85, + "window_left_wwr": 0.18, + "window_right_wwr": 0.18, + "window_shgc": 0.45, + "window_ufactor": 0.33 + }, + "measure_dir_name": "BuildResidentialHPXML" + } + ] +} \ No newline at end of file diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-unvented-crawlspace-left-middle.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-unvented-crawlspace-left-middle.osw new file mode 100644 index 00000000..0be69ed0 --- /dev/null +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-unvented-crawlspace-left-middle.osw @@ -0,0 +1,341 @@ +{ + "measure_paths": [ + "../.." + ], + "steps": [ + { + "arguments": { + "air_leakage_house_pressure": 50, + "air_leakage_shielding_of_home": "auto", + "air_leakage_units": "ACH", + "air_leakage_value": 3, + "bathroom_fans_quantity": "0", + "ceiling_assembly_r": 39.3, + "ceiling_fan_cooling_setpoint_temp_offset": 0, + "ceiling_fan_efficiency": "auto", + "ceiling_fan_present": false, + "ceiling_fan_quantity": "auto", + "clothes_dryer_efficiency": "3.73", + "clothes_dryer_efficiency_type": "CombinedEnergyFactor", + "clothes_dryer_fuel_type": "electricity", + "clothes_dryer_location": "living space", + "clothes_dryer_usage_multiplier": 1.0, + "clothes_dryer_vented_flow_rate": "150.0", + "clothes_washer_capacity": "3.2", + "clothes_washer_efficiency": "1.21", + "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", + "clothes_washer_label_annual_gas_cost": "27.0", + "clothes_washer_label_electric_rate": "0.12", + "clothes_washer_label_gas_rate": "1.09", + "clothes_washer_label_usage": "6.0", + "clothes_washer_location": "living space", + "clothes_washer_rated_annual_kwh": "380.0", + "clothes_washer_usage_multiplier": 1.0, + "cooking_range_oven_fuel_type": "electricity", + "cooking_range_oven_is_convection": false, + "cooking_range_oven_is_induction": false, + "cooking_range_oven_location": "living space", + "cooking_range_oven_usage_multiplier": 1.0, + "cooling_system_cooling_capacity": "48000.0", + "cooling_system_cooling_compressor_type": "single stage", + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", + "cooling_system_cooling_sensible_heat_fraction": 0.73, + "cooling_system_fraction_cool_load_served": 1, + "cooling_system_is_ducted": false, + "cooling_system_type": "central air conditioner", + "dehumidifier_capacity": 40, + "dehumidifier_efficiency": 1.8, + "dehumidifier_efficiency_type": "EnergyFactor", + "dehumidifier_fraction_dehumidification_load_served": 1, + "dehumidifier_rh_setpoint": 0.5, + "dehumidifier_type": "none", + "dhw_distribution_pipe_r": "0.0", + "dhw_distribution_recirc_branch_piping_length": "50", + "dhw_distribution_recirc_control_type": "no control", + "dhw_distribution_recirc_piping_length": "50", + "dhw_distribution_recirc_pump_power": "50", + "dhw_distribution_standard_piping_length": "50", + "dhw_distribution_system_type": "Standard", + "dishwasher_efficiency": "307", + "dishwasher_efficiency_type": "RatedAnnualkWh", + "dishwasher_label_annual_gas_cost": "22.32", + "dishwasher_label_electric_rate": "0.12", + "dishwasher_label_gas_rate": "1.09", + "dishwasher_label_usage": "4.0", + "dishwasher_location": "living space", + "dishwasher_place_setting_capacity": "12", + "dishwasher_usage_multiplier": 1.0, + "door_area": 20.0, + "door_rvalue": 4.4, + "ducts_number_of_return_registers": "1", + "ducts_return_insulation_r": 0.0, + "ducts_return_leakage_units": "CFM25", + "ducts_return_leakage_value": 0.0, + "ducts_return_location": "living space", + "ducts_return_surface_area": "50.0", + "ducts_supply_insulation_r": 0.0, + "ducts_supply_leakage_units": "CFM25", + "ducts_supply_leakage_value": 0.0, + "ducts_supply_location": "living space", + "ducts_supply_surface_area": "150.0", + "dwhr_efficiency": 0.55, + "dwhr_equal_flow": true, + "dwhr_facilities_connected": "none", + "extra_refrigerator_location": "none", + "extra_refrigerator_rated_annual_kwh": "auto", + "extra_refrigerator_usage_multiplier": 1.0, + "floor_assembly_r": 18.7, + "foundation_wall_insulation_distance_to_bottom": 4.0, + "foundation_wall_insulation_distance_to_top": 0.0, + "foundation_wall_insulation_r": 8.9, + "foundation_wall_thickness": "8.0", + "freezer_location": "none", + "freezer_rated_annual_kwh": "auto", + "freezer_usage_multiplier": 1.0, + "fuel_loads_fireplace_annual_therm": "auto", + "fuel_loads_fireplace_frac_latent": "auto", + "fuel_loads_fireplace_frac_sensible": "auto", + "fuel_loads_fireplace_fuel_type": "natural gas", + "fuel_loads_fireplace_present": false, + "fuel_loads_fireplace_usage_multiplier": 0.0, + "fuel_loads_grill_annual_therm": "auto", + "fuel_loads_grill_fuel_type": "natural gas", + "fuel_loads_grill_present": false, + "fuel_loads_grill_usage_multiplier": 0.0, + "fuel_loads_lighting_annual_therm": "auto", + "fuel_loads_lighting_fuel_type": "natural gas", + "fuel_loads_lighting_present": false, + "fuel_loads_lighting_usage_multiplier": 0.0, + "geometry_aspect_ratio": 1.5, + "geometry_attic_type": "UnventedAttic", + "geometry_balcony_depth": 0.0, + "geometry_building_num_bedrooms": 150, + "geometry_building_num_units": 50, + "geometry_cfa": 900.0, + "geometry_corridor_position": "None", + "geometry_corridor_width": 10.0, + "geometry_eaves_depth": 0, + "geometry_foundation_height": 4.0, + "geometry_foundation_height_above_grade": 1.0, + "geometry_foundation_type": "UnventedCrawlspace", + "geometry_garage_depth": 20.0, + "geometry_garage_position": "Right", + "geometry_garage_protrusion": 0.0, + "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", + "geometry_horizontal_location": "Left", + "geometry_inset_depth": 0.0, + "geometry_inset_position": "Right", + "geometry_inset_width": 0.0, + "geometry_level": "Middle", + "geometry_num_bathrooms": "2", + "geometry_num_bedrooms": 3, + "geometry_num_floors_above_grade": 5, + "geometry_num_occupants": "3", + "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, + "geometry_roof_pitch": "6:12", + "geometry_roof_type": "gable", + "geometry_unit_type": "apartment unit", + "geometry_wall_height": 8.0, + "heat_pump_backup_fuel": "none", + "heat_pump_backup_heating_capacity": "34121.0", + "heat_pump_backup_heating_efficiency": 1, + "heat_pump_cooling_capacity": "48000.0", + "heat_pump_cooling_compressor_type": "single stage", + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", + "heat_pump_cooling_sensible_heat_fraction": 0.73, + "heat_pump_fraction_cool_load_served": 1, + "heat_pump_fraction_heat_load_served": 1, + "heat_pump_heating_capacity": "64000.0", + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", + "heat_pump_type": "none", + "heating_system_fraction_heat_load_served": 1, + "heating_system_fraction_heat_load_served_2": 0.25, + "heating_system_fuel": "natural gas", + "heating_system_fuel_2": "electricity", + "heating_system_heating_capacity": "64000.0", + "heating_system_heating_capacity_2": "auto", + "heating_system_heating_efficiency": 0.92, + "heating_system_heating_efficiency_2": 1.0, + "heating_system_type": "Furnace", + "heating_system_type_2": "none", + "holiday_lighting_daily_kwh": "auto", + "holiday_lighting_period_begin_day_of_month": "auto", + "holiday_lighting_period_begin_month": "auto", + "holiday_lighting_period_end_day_of_month": "auto", + "holiday_lighting_period_end_month": "auto", + "holiday_lighting_present": false, + "hot_tub_heater_annual_kwh": "auto", + "hot_tub_heater_annual_therm": "auto", + "hot_tub_heater_type": "electric resistance", + "hot_tub_heater_usage_multiplier": 1.0, + "hot_tub_present": false, + "hot_tub_pump_annual_kwh": "auto", + "hot_tub_pump_usage_multiplier": 1.0, + "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/extra-bldgtype-multifamily-unvented-crawlspace-left-middle.xml", + "kitchen_fans_quantity": "0", + "lighting_fraction_cfl_exterior": 0.4, + "lighting_fraction_cfl_garage": 0.4, + "lighting_fraction_cfl_interior": 0.4, + "lighting_fraction_led_exterior": 0.25, + "lighting_fraction_led_garage": 0.25, + "lighting_fraction_led_interior": 0.25, + "lighting_fraction_lfl_exterior": 0.1, + "lighting_fraction_lfl_garage": 0.1, + "lighting_fraction_lfl_interior": 0.1, + "lighting_usage_multiplier_exterior": 1.0, + "lighting_usage_multiplier_garage": 1.0, + "lighting_usage_multiplier_interior": 1.0, + "mech_vent_fan_power": 30, + "mech_vent_fan_power_2": 30, + "mech_vent_fan_type": "none", + "mech_vent_fan_type_2": "none", + "mech_vent_flow_rate": 110, + "mech_vent_flow_rate_2": 110, + "mech_vent_hours_in_operation": 24, + "mech_vent_hours_in_operation_2": 24, + "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", + "mech_vent_sensible_recovery_efficiency": 0.72, + "mech_vent_sensible_recovery_efficiency_2": 0.72, + "mech_vent_total_recovery_efficiency": 0.48, + "mech_vent_total_recovery_efficiency_2": 0.48, + "neighbor_back_distance": 0, + "neighbor_back_height": "auto", + "neighbor_front_distance": 0, + "neighbor_front_height": "auto", + "neighbor_left_distance": 0, + "neighbor_left_height": "auto", + "neighbor_right_distance": 0, + "neighbor_right_height": "auto", + "overhangs_back_depth": 0, + "overhangs_back_distance_to_top_of_window": 0, + "overhangs_front_depth": 0, + "overhangs_front_distance_to_top_of_window": 0, + "overhangs_left_depth": 0, + "overhangs_left_distance_to_top_of_window": 0, + "overhangs_right_depth": 0, + "overhangs_right_distance_to_top_of_window": 0, + "plug_loads_other_annual_kwh": "819.0", + "plug_loads_other_frac_latent": "0.045", + "plug_loads_other_frac_sensible": "0.855", + "plug_loads_other_usage_multiplier": 1.0, + "plug_loads_television_annual_kwh": "620.0", + "plug_loads_television_usage_multiplier": 1.0, + "plug_loads_vehicle_annual_kwh": "auto", + "plug_loads_vehicle_present": false, + "plug_loads_vehicle_usage_multiplier": 0.0, + "plug_loads_well_pump_annual_kwh": "auto", + "plug_loads_well_pump_present": false, + "plug_loads_well_pump_usage_multiplier": 0.0, + "pool_heater_annual_kwh": "auto", + "pool_heater_annual_therm": "auto", + "pool_heater_type": "electric resistance", + "pool_heater_usage_multiplier": 1.0, + "pool_present": false, + "pool_pump_annual_kwh": "auto", + "pool_pump_usage_multiplier": 1.0, + "pv_system_array_azimuth_1": 180, + "pv_system_array_azimuth_2": 180, + "pv_system_array_tilt_1": "20", + "pv_system_array_tilt_2": "20", + "pv_system_inverter_efficiency_1": 0.96, + "pv_system_inverter_efficiency_2": 0.96, + "pv_system_location_1": "auto", + "pv_system_location_2": "auto", + "pv_system_max_power_output_1": 4000, + "pv_system_max_power_output_2": 4000, + "pv_system_module_type_1": "none", + "pv_system_module_type_2": "none", + "pv_system_num_units_served_1": 1, + "pv_system_num_units_served_2": 1, + "pv_system_system_losses_fraction_1": 0.14, + "pv_system_system_losses_fraction_2": 0.14, + "pv_system_tracking_1": "auto", + "pv_system_tracking_2": "auto", + "refrigerator_location": "living space", + "refrigerator_rated_annual_kwh": "650.0", + "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, + "roof_assembly_r": 2.3, + "roof_color": "medium", + "roof_material_type": "asphalt or fiberglass shingles", + "roof_radiant_barrier": false, + "roof_radiant_barrier_grade": "1", + "schedules_type": "default", + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", + "simulation_control_timestep": "60", + "site_type": "suburban", + "skylight_area_back": 0, + "skylight_area_front": 0, + "skylight_area_left": 0, + "skylight_area_right": 0, + "skylight_shgc": 0.45, + "skylight_ufactor": 0.33, + "slab_carpet_fraction": "0.0", + "slab_carpet_r": "0.0", + "slab_perimeter_depth": 0, + "slab_perimeter_insulation_r": 0, + "slab_thickness": "4.0", + "slab_under_insulation_r": 0, + "slab_under_width": 0, + "solar_thermal_collector_area": 40.0, + "solar_thermal_collector_azimuth": 180, + "solar_thermal_collector_loop_type": "liquid direct", + "solar_thermal_collector_rated_optical_efficiency": 0.5, + "solar_thermal_collector_rated_thermal_losses": 0.2799, + "solar_thermal_collector_tilt": "20", + "solar_thermal_collector_type": "evacuated tube", + "solar_thermal_solar_fraction": 0, + "solar_thermal_storage_volume": "auto", + "solar_thermal_system_type": "none", + "wall_assembly_r": 23, + "wall_color": "medium", + "wall_siding_type": "wood siding", + "wall_type": "WoodStud", + "water_fixtures_shower_low_flow": true, + "water_fixtures_sink_low_flow": false, + "water_fixtures_usage_multiplier": 1.0, + "water_heater_efficiency": 0.95, + "water_heater_efficiency_type": "EnergyFactor", + "water_heater_fuel_type": "electricity", + "water_heater_jacket_rvalue": 0, + "water_heater_location": "living space", + "water_heater_num_units_served": 1, + "water_heater_recovery_efficiency": "0.76", + "water_heater_setpoint_temperature": "125", + "water_heater_standby_loss": 0, + "water_heater_tank_volume": "40", + "water_heater_type": "storage water heater", + "weather_station_epw_filepath": "USA_CO_Denver.Intl.AP.725650_TMY3.epw", + "whole_house_fan_flow_rate": 4500, + "whole_house_fan_power": 300, + "whole_house_fan_present": false, + "window_area_back": 0, + "window_area_front": 0, + "window_area_left": 0, + "window_area_right": 0, + "window_aspect_ratio": 1.333, + "window_back_wwr": 0.18, + "window_fraction_operable": 0.67, + "window_front_wwr": 0.18, + "window_interior_shading_summer": 0.7, + "window_interior_shading_winter": 0.85, + "window_left_wwr": 0.18, + "window_right_wwr": 0.18, + "window_shgc": 0.45, + "window_ufactor": 0.33 + }, + "measure_dir_name": "BuildResidentialHPXML" + } + ] +} \ No newline at end of file diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-unvented-crawlspace-left-top-double-loaded-interior.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-unvented-crawlspace-left-top-double-loaded-interior.osw new file mode 100644 index 00000000..cb2e9126 --- /dev/null +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-unvented-crawlspace-left-top-double-loaded-interior.osw @@ -0,0 +1,341 @@ +{ + "measure_paths": [ + "../.." + ], + "steps": [ + { + "arguments": { + "air_leakage_house_pressure": 50, + "air_leakage_shielding_of_home": "auto", + "air_leakage_units": "ACH", + "air_leakage_value": 3, + "bathroom_fans_quantity": "0", + "ceiling_assembly_r": 39.3, + "ceiling_fan_cooling_setpoint_temp_offset": 0, + "ceiling_fan_efficiency": "auto", + "ceiling_fan_present": false, + "ceiling_fan_quantity": "auto", + "clothes_dryer_efficiency": "3.73", + "clothes_dryer_efficiency_type": "CombinedEnergyFactor", + "clothes_dryer_fuel_type": "electricity", + "clothes_dryer_location": "living space", + "clothes_dryer_usage_multiplier": 1.0, + "clothes_dryer_vented_flow_rate": "150.0", + "clothes_washer_capacity": "3.2", + "clothes_washer_efficiency": "1.21", + "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", + "clothes_washer_label_annual_gas_cost": "27.0", + "clothes_washer_label_electric_rate": "0.12", + "clothes_washer_label_gas_rate": "1.09", + "clothes_washer_label_usage": "6.0", + "clothes_washer_location": "living space", + "clothes_washer_rated_annual_kwh": "380.0", + "clothes_washer_usage_multiplier": 1.0, + "cooking_range_oven_fuel_type": "electricity", + "cooking_range_oven_is_convection": false, + "cooking_range_oven_is_induction": false, + "cooking_range_oven_location": "living space", + "cooking_range_oven_usage_multiplier": 1.0, + "cooling_system_cooling_capacity": "48000.0", + "cooling_system_cooling_compressor_type": "single stage", + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", + "cooling_system_cooling_sensible_heat_fraction": 0.73, + "cooling_system_fraction_cool_load_served": 1, + "cooling_system_is_ducted": false, + "cooling_system_type": "central air conditioner", + "dehumidifier_capacity": 40, + "dehumidifier_efficiency": 1.8, + "dehumidifier_efficiency_type": "EnergyFactor", + "dehumidifier_fraction_dehumidification_load_served": 1, + "dehumidifier_rh_setpoint": 0.5, + "dehumidifier_type": "none", + "dhw_distribution_pipe_r": "0.0", + "dhw_distribution_recirc_branch_piping_length": "50", + "dhw_distribution_recirc_control_type": "no control", + "dhw_distribution_recirc_piping_length": "50", + "dhw_distribution_recirc_pump_power": "50", + "dhw_distribution_standard_piping_length": "50", + "dhw_distribution_system_type": "Standard", + "dishwasher_efficiency": "307", + "dishwasher_efficiency_type": "RatedAnnualkWh", + "dishwasher_label_annual_gas_cost": "22.32", + "dishwasher_label_electric_rate": "0.12", + "dishwasher_label_gas_rate": "1.09", + "dishwasher_label_usage": "4.0", + "dishwasher_location": "living space", + "dishwasher_place_setting_capacity": "12", + "dishwasher_usage_multiplier": 1.0, + "door_area": 20.0, + "door_rvalue": 4.4, + "ducts_number_of_return_registers": "1", + "ducts_return_insulation_r": 0.0, + "ducts_return_leakage_units": "CFM25", + "ducts_return_leakage_value": 0.0, + "ducts_return_location": "living space", + "ducts_return_surface_area": "50.0", + "ducts_supply_insulation_r": 0.0, + "ducts_supply_leakage_units": "CFM25", + "ducts_supply_leakage_value": 0.0, + "ducts_supply_location": "living space", + "ducts_supply_surface_area": "150.0", + "dwhr_efficiency": 0.55, + "dwhr_equal_flow": true, + "dwhr_facilities_connected": "none", + "extra_refrigerator_location": "none", + "extra_refrigerator_rated_annual_kwh": "auto", + "extra_refrigerator_usage_multiplier": 1.0, + "floor_assembly_r": 18.7, + "foundation_wall_insulation_distance_to_bottom": 4.0, + "foundation_wall_insulation_distance_to_top": 0.0, + "foundation_wall_insulation_r": 8.9, + "foundation_wall_thickness": "8.0", + "freezer_location": "none", + "freezer_rated_annual_kwh": "auto", + "freezer_usage_multiplier": 1.0, + "fuel_loads_fireplace_annual_therm": "auto", + "fuel_loads_fireplace_frac_latent": "auto", + "fuel_loads_fireplace_frac_sensible": "auto", + "fuel_loads_fireplace_fuel_type": "natural gas", + "fuel_loads_fireplace_present": false, + "fuel_loads_fireplace_usage_multiplier": 0.0, + "fuel_loads_grill_annual_therm": "auto", + "fuel_loads_grill_fuel_type": "natural gas", + "fuel_loads_grill_present": false, + "fuel_loads_grill_usage_multiplier": 0.0, + "fuel_loads_lighting_annual_therm": "auto", + "fuel_loads_lighting_fuel_type": "natural gas", + "fuel_loads_lighting_present": false, + "fuel_loads_lighting_usage_multiplier": 0.0, + "geometry_aspect_ratio": 1.5, + "geometry_attic_type": "UnventedAttic", + "geometry_balcony_depth": 0.0, + "geometry_building_num_bedrooms": 150, + "geometry_building_num_units": 50, + "geometry_cfa": 900.0, + "geometry_corridor_position": "Double-Loaded Interior", + "geometry_corridor_width": 10.0, + "geometry_eaves_depth": 0, + "geometry_foundation_height": 4.0, + "geometry_foundation_height_above_grade": 1.0, + "geometry_foundation_type": "UnventedCrawlspace", + "geometry_garage_depth": 20.0, + "geometry_garage_position": "Right", + "geometry_garage_protrusion": 0.0, + "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", + "geometry_horizontal_location": "Left", + "geometry_inset_depth": 0.0, + "geometry_inset_position": "Right", + "geometry_inset_width": 0.0, + "geometry_level": "Top", + "geometry_num_bathrooms": "2", + "geometry_num_bedrooms": 3, + "geometry_num_floors_above_grade": 5, + "geometry_num_occupants": "3", + "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, + "geometry_roof_pitch": "6:12", + "geometry_roof_type": "gable", + "geometry_unit_type": "apartment unit", + "geometry_wall_height": 8.0, + "heat_pump_backup_fuel": "none", + "heat_pump_backup_heating_capacity": "34121.0", + "heat_pump_backup_heating_efficiency": 1, + "heat_pump_cooling_capacity": "48000.0", + "heat_pump_cooling_compressor_type": "single stage", + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", + "heat_pump_cooling_sensible_heat_fraction": 0.73, + "heat_pump_fraction_cool_load_served": 1, + "heat_pump_fraction_heat_load_served": 1, + "heat_pump_heating_capacity": "64000.0", + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", + "heat_pump_type": "none", + "heating_system_fraction_heat_load_served": 1, + "heating_system_fraction_heat_load_served_2": 0.25, + "heating_system_fuel": "natural gas", + "heating_system_fuel_2": "electricity", + "heating_system_heating_capacity": "64000.0", + "heating_system_heating_capacity_2": "auto", + "heating_system_heating_efficiency": 0.92, + "heating_system_heating_efficiency_2": 1.0, + "heating_system_type": "Furnace", + "heating_system_type_2": "none", + "holiday_lighting_daily_kwh": "auto", + "holiday_lighting_period_begin_day_of_month": "auto", + "holiday_lighting_period_begin_month": "auto", + "holiday_lighting_period_end_day_of_month": "auto", + "holiday_lighting_period_end_month": "auto", + "holiday_lighting_present": false, + "hot_tub_heater_annual_kwh": "auto", + "hot_tub_heater_annual_therm": "auto", + "hot_tub_heater_type": "electric resistance", + "hot_tub_heater_usage_multiplier": 1.0, + "hot_tub_present": false, + "hot_tub_pump_annual_kwh": "auto", + "hot_tub_pump_usage_multiplier": 1.0, + "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/extra-bldgtype-multifamily-unvented-crawlspace-left-top-double-loaded-interior.xml", + "kitchen_fans_quantity": "0", + "lighting_fraction_cfl_exterior": 0.4, + "lighting_fraction_cfl_garage": 0.4, + "lighting_fraction_cfl_interior": 0.4, + "lighting_fraction_led_exterior": 0.25, + "lighting_fraction_led_garage": 0.25, + "lighting_fraction_led_interior": 0.25, + "lighting_fraction_lfl_exterior": 0.1, + "lighting_fraction_lfl_garage": 0.1, + "lighting_fraction_lfl_interior": 0.1, + "lighting_usage_multiplier_exterior": 1.0, + "lighting_usage_multiplier_garage": 1.0, + "lighting_usage_multiplier_interior": 1.0, + "mech_vent_fan_power": 30, + "mech_vent_fan_power_2": 30, + "mech_vent_fan_type": "none", + "mech_vent_fan_type_2": "none", + "mech_vent_flow_rate": 110, + "mech_vent_flow_rate_2": 110, + "mech_vent_hours_in_operation": 24, + "mech_vent_hours_in_operation_2": 24, + "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", + "mech_vent_sensible_recovery_efficiency": 0.72, + "mech_vent_sensible_recovery_efficiency_2": 0.72, + "mech_vent_total_recovery_efficiency": 0.48, + "mech_vent_total_recovery_efficiency_2": 0.48, + "neighbor_back_distance": 0, + "neighbor_back_height": "auto", + "neighbor_front_distance": 0, + "neighbor_front_height": "auto", + "neighbor_left_distance": 0, + "neighbor_left_height": "auto", + "neighbor_right_distance": 0, + "neighbor_right_height": "auto", + "overhangs_back_depth": 0, + "overhangs_back_distance_to_top_of_window": 0, + "overhangs_front_depth": 0, + "overhangs_front_distance_to_top_of_window": 0, + "overhangs_left_depth": 0, + "overhangs_left_distance_to_top_of_window": 0, + "overhangs_right_depth": 0, + "overhangs_right_distance_to_top_of_window": 0, + "plug_loads_other_annual_kwh": "819.0", + "plug_loads_other_frac_latent": "0.045", + "plug_loads_other_frac_sensible": "0.855", + "plug_loads_other_usage_multiplier": 1.0, + "plug_loads_television_annual_kwh": "620.0", + "plug_loads_television_usage_multiplier": 1.0, + "plug_loads_vehicle_annual_kwh": "auto", + "plug_loads_vehicle_present": false, + "plug_loads_vehicle_usage_multiplier": 0.0, + "plug_loads_well_pump_annual_kwh": "auto", + "plug_loads_well_pump_present": false, + "plug_loads_well_pump_usage_multiplier": 0.0, + "pool_heater_annual_kwh": "auto", + "pool_heater_annual_therm": "auto", + "pool_heater_type": "electric resistance", + "pool_heater_usage_multiplier": 1.0, + "pool_present": false, + "pool_pump_annual_kwh": "auto", + "pool_pump_usage_multiplier": 1.0, + "pv_system_array_azimuth_1": 180, + "pv_system_array_azimuth_2": 180, + "pv_system_array_tilt_1": "20", + "pv_system_array_tilt_2": "20", + "pv_system_inverter_efficiency_1": 0.96, + "pv_system_inverter_efficiency_2": 0.96, + "pv_system_location_1": "auto", + "pv_system_location_2": "auto", + "pv_system_max_power_output_1": 4000, + "pv_system_max_power_output_2": 4000, + "pv_system_module_type_1": "none", + "pv_system_module_type_2": "none", + "pv_system_num_units_served_1": 1, + "pv_system_num_units_served_2": 1, + "pv_system_system_losses_fraction_1": 0.14, + "pv_system_system_losses_fraction_2": 0.14, + "pv_system_tracking_1": "auto", + "pv_system_tracking_2": "auto", + "refrigerator_location": "living space", + "refrigerator_rated_annual_kwh": "650.0", + "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, + "roof_assembly_r": 2.3, + "roof_color": "medium", + "roof_material_type": "asphalt or fiberglass shingles", + "roof_radiant_barrier": false, + "roof_radiant_barrier_grade": "1", + "schedules_type": "default", + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", + "simulation_control_timestep": "60", + "site_type": "suburban", + "skylight_area_back": 0, + "skylight_area_front": 0, + "skylight_area_left": 0, + "skylight_area_right": 0, + "skylight_shgc": 0.45, + "skylight_ufactor": 0.33, + "slab_carpet_fraction": "0.0", + "slab_carpet_r": "0.0", + "slab_perimeter_depth": 0, + "slab_perimeter_insulation_r": 0, + "slab_thickness": "4.0", + "slab_under_insulation_r": 0, + "slab_under_width": 0, + "solar_thermal_collector_area": 40.0, + "solar_thermal_collector_azimuth": 180, + "solar_thermal_collector_loop_type": "liquid direct", + "solar_thermal_collector_rated_optical_efficiency": 0.5, + "solar_thermal_collector_rated_thermal_losses": 0.2799, + "solar_thermal_collector_tilt": "20", + "solar_thermal_collector_type": "evacuated tube", + "solar_thermal_solar_fraction": 0, + "solar_thermal_storage_volume": "auto", + "solar_thermal_system_type": "none", + "wall_assembly_r": 23, + "wall_color": "medium", + "wall_siding_type": "wood siding", + "wall_type": "WoodStud", + "water_fixtures_shower_low_flow": true, + "water_fixtures_sink_low_flow": false, + "water_fixtures_usage_multiplier": 1.0, + "water_heater_efficiency": 0.95, + "water_heater_efficiency_type": "EnergyFactor", + "water_heater_fuel_type": "electricity", + "water_heater_jacket_rvalue": 0, + "water_heater_location": "living space", + "water_heater_num_units_served": 1, + "water_heater_recovery_efficiency": "0.76", + "water_heater_setpoint_temperature": "125", + "water_heater_standby_loss": 0, + "water_heater_tank_volume": "40", + "water_heater_type": "storage water heater", + "weather_station_epw_filepath": "USA_CO_Denver.Intl.AP.725650_TMY3.epw", + "whole_house_fan_flow_rate": 4500, + "whole_house_fan_power": 300, + "whole_house_fan_present": false, + "window_area_back": 0, + "window_area_front": 0, + "window_area_left": 0, + "window_area_right": 0, + "window_aspect_ratio": 1.333, + "window_back_wwr": 0.18, + "window_fraction_operable": 0.67, + "window_front_wwr": 0.18, + "window_interior_shading_summer": 0.7, + "window_interior_shading_winter": 0.85, + "window_left_wwr": 0.18, + "window_right_wwr": 0.18, + "window_shgc": 0.45, + "window_ufactor": 0.33 + }, + "measure_dir_name": "BuildResidentialHPXML" + } + ] +} \ No newline at end of file diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-unvented-crawlspace-left-top.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-unvented-crawlspace-left-top.osw new file mode 100644 index 00000000..fc0ce165 --- /dev/null +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-unvented-crawlspace-left-top.osw @@ -0,0 +1,341 @@ +{ + "measure_paths": [ + "../.." + ], + "steps": [ + { + "arguments": { + "air_leakage_house_pressure": 50, + "air_leakage_shielding_of_home": "auto", + "air_leakage_units": "ACH", + "air_leakage_value": 3, + "bathroom_fans_quantity": "0", + "ceiling_assembly_r": 39.3, + "ceiling_fan_cooling_setpoint_temp_offset": 0, + "ceiling_fan_efficiency": "auto", + "ceiling_fan_present": false, + "ceiling_fan_quantity": "auto", + "clothes_dryer_efficiency": "3.73", + "clothes_dryer_efficiency_type": "CombinedEnergyFactor", + "clothes_dryer_fuel_type": "electricity", + "clothes_dryer_location": "living space", + "clothes_dryer_usage_multiplier": 1.0, + "clothes_dryer_vented_flow_rate": "150.0", + "clothes_washer_capacity": "3.2", + "clothes_washer_efficiency": "1.21", + "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", + "clothes_washer_label_annual_gas_cost": "27.0", + "clothes_washer_label_electric_rate": "0.12", + "clothes_washer_label_gas_rate": "1.09", + "clothes_washer_label_usage": "6.0", + "clothes_washer_location": "living space", + "clothes_washer_rated_annual_kwh": "380.0", + "clothes_washer_usage_multiplier": 1.0, + "cooking_range_oven_fuel_type": "electricity", + "cooking_range_oven_is_convection": false, + "cooking_range_oven_is_induction": false, + "cooking_range_oven_location": "living space", + "cooking_range_oven_usage_multiplier": 1.0, + "cooling_system_cooling_capacity": "48000.0", + "cooling_system_cooling_compressor_type": "single stage", + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", + "cooling_system_cooling_sensible_heat_fraction": 0.73, + "cooling_system_fraction_cool_load_served": 1, + "cooling_system_is_ducted": false, + "cooling_system_type": "central air conditioner", + "dehumidifier_capacity": 40, + "dehumidifier_efficiency": 1.8, + "dehumidifier_efficiency_type": "EnergyFactor", + "dehumidifier_fraction_dehumidification_load_served": 1, + "dehumidifier_rh_setpoint": 0.5, + "dehumidifier_type": "none", + "dhw_distribution_pipe_r": "0.0", + "dhw_distribution_recirc_branch_piping_length": "50", + "dhw_distribution_recirc_control_type": "no control", + "dhw_distribution_recirc_piping_length": "50", + "dhw_distribution_recirc_pump_power": "50", + "dhw_distribution_standard_piping_length": "50", + "dhw_distribution_system_type": "Standard", + "dishwasher_efficiency": "307", + "dishwasher_efficiency_type": "RatedAnnualkWh", + "dishwasher_label_annual_gas_cost": "22.32", + "dishwasher_label_electric_rate": "0.12", + "dishwasher_label_gas_rate": "1.09", + "dishwasher_label_usage": "4.0", + "dishwasher_location": "living space", + "dishwasher_place_setting_capacity": "12", + "dishwasher_usage_multiplier": 1.0, + "door_area": 20.0, + "door_rvalue": 4.4, + "ducts_number_of_return_registers": "1", + "ducts_return_insulation_r": 0.0, + "ducts_return_leakage_units": "CFM25", + "ducts_return_leakage_value": 0.0, + "ducts_return_location": "living space", + "ducts_return_surface_area": "50.0", + "ducts_supply_insulation_r": 0.0, + "ducts_supply_leakage_units": "CFM25", + "ducts_supply_leakage_value": 0.0, + "ducts_supply_location": "living space", + "ducts_supply_surface_area": "150.0", + "dwhr_efficiency": 0.55, + "dwhr_equal_flow": true, + "dwhr_facilities_connected": "none", + "extra_refrigerator_location": "none", + "extra_refrigerator_rated_annual_kwh": "auto", + "extra_refrigerator_usage_multiplier": 1.0, + "floor_assembly_r": 18.7, + "foundation_wall_insulation_distance_to_bottom": 4.0, + "foundation_wall_insulation_distance_to_top": 0.0, + "foundation_wall_insulation_r": 8.9, + "foundation_wall_thickness": "8.0", + "freezer_location": "none", + "freezer_rated_annual_kwh": "auto", + "freezer_usage_multiplier": 1.0, + "fuel_loads_fireplace_annual_therm": "auto", + "fuel_loads_fireplace_frac_latent": "auto", + "fuel_loads_fireplace_frac_sensible": "auto", + "fuel_loads_fireplace_fuel_type": "natural gas", + "fuel_loads_fireplace_present": false, + "fuel_loads_fireplace_usage_multiplier": 0.0, + "fuel_loads_grill_annual_therm": "auto", + "fuel_loads_grill_fuel_type": "natural gas", + "fuel_loads_grill_present": false, + "fuel_loads_grill_usage_multiplier": 0.0, + "fuel_loads_lighting_annual_therm": "auto", + "fuel_loads_lighting_fuel_type": "natural gas", + "fuel_loads_lighting_present": false, + "fuel_loads_lighting_usage_multiplier": 0.0, + "geometry_aspect_ratio": 1.5, + "geometry_attic_type": "UnventedAttic", + "geometry_balcony_depth": 0.0, + "geometry_building_num_bedrooms": 150, + "geometry_building_num_units": 50, + "geometry_cfa": 900.0, + "geometry_corridor_position": "None", + "geometry_corridor_width": 10.0, + "geometry_eaves_depth": 0, + "geometry_foundation_height": 4.0, + "geometry_foundation_height_above_grade": 1.0, + "geometry_foundation_type": "UnventedCrawlspace", + "geometry_garage_depth": 20.0, + "geometry_garage_position": "Right", + "geometry_garage_protrusion": 0.0, + "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", + "geometry_horizontal_location": "Left", + "geometry_inset_depth": 0.0, + "geometry_inset_position": "Right", + "geometry_inset_width": 0.0, + "geometry_level": "Top", + "geometry_num_bathrooms": "2", + "geometry_num_bedrooms": 3, + "geometry_num_floors_above_grade": 5, + "geometry_num_occupants": "3", + "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, + "geometry_roof_pitch": "6:12", + "geometry_roof_type": "gable", + "geometry_unit_type": "apartment unit", + "geometry_wall_height": 8.0, + "heat_pump_backup_fuel": "none", + "heat_pump_backup_heating_capacity": "34121.0", + "heat_pump_backup_heating_efficiency": 1, + "heat_pump_cooling_capacity": "48000.0", + "heat_pump_cooling_compressor_type": "single stage", + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", + "heat_pump_cooling_sensible_heat_fraction": 0.73, + "heat_pump_fraction_cool_load_served": 1, + "heat_pump_fraction_heat_load_served": 1, + "heat_pump_heating_capacity": "64000.0", + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", + "heat_pump_type": "none", + "heating_system_fraction_heat_load_served": 1, + "heating_system_fraction_heat_load_served_2": 0.25, + "heating_system_fuel": "natural gas", + "heating_system_fuel_2": "electricity", + "heating_system_heating_capacity": "64000.0", + "heating_system_heating_capacity_2": "auto", + "heating_system_heating_efficiency": 0.92, + "heating_system_heating_efficiency_2": 1.0, + "heating_system_type": "Furnace", + "heating_system_type_2": "none", + "holiday_lighting_daily_kwh": "auto", + "holiday_lighting_period_begin_day_of_month": "auto", + "holiday_lighting_period_begin_month": "auto", + "holiday_lighting_period_end_day_of_month": "auto", + "holiday_lighting_period_end_month": "auto", + "holiday_lighting_present": false, + "hot_tub_heater_annual_kwh": "auto", + "hot_tub_heater_annual_therm": "auto", + "hot_tub_heater_type": "electric resistance", + "hot_tub_heater_usage_multiplier": 1.0, + "hot_tub_present": false, + "hot_tub_pump_annual_kwh": "auto", + "hot_tub_pump_usage_multiplier": 1.0, + "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/extra-bldgtype-multifamily-unvented-crawlspace-left-top.xml", + "kitchen_fans_quantity": "0", + "lighting_fraction_cfl_exterior": 0.4, + "lighting_fraction_cfl_garage": 0.4, + "lighting_fraction_cfl_interior": 0.4, + "lighting_fraction_led_exterior": 0.25, + "lighting_fraction_led_garage": 0.25, + "lighting_fraction_led_interior": 0.25, + "lighting_fraction_lfl_exterior": 0.1, + "lighting_fraction_lfl_garage": 0.1, + "lighting_fraction_lfl_interior": 0.1, + "lighting_usage_multiplier_exterior": 1.0, + "lighting_usage_multiplier_garage": 1.0, + "lighting_usage_multiplier_interior": 1.0, + "mech_vent_fan_power": 30, + "mech_vent_fan_power_2": 30, + "mech_vent_fan_type": "none", + "mech_vent_fan_type_2": "none", + "mech_vent_flow_rate": 110, + "mech_vent_flow_rate_2": 110, + "mech_vent_hours_in_operation": 24, + "mech_vent_hours_in_operation_2": 24, + "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", + "mech_vent_sensible_recovery_efficiency": 0.72, + "mech_vent_sensible_recovery_efficiency_2": 0.72, + "mech_vent_total_recovery_efficiency": 0.48, + "mech_vent_total_recovery_efficiency_2": 0.48, + "neighbor_back_distance": 0, + "neighbor_back_height": "auto", + "neighbor_front_distance": 0, + "neighbor_front_height": "auto", + "neighbor_left_distance": 0, + "neighbor_left_height": "auto", + "neighbor_right_distance": 0, + "neighbor_right_height": "auto", + "overhangs_back_depth": 0, + "overhangs_back_distance_to_top_of_window": 0, + "overhangs_front_depth": 0, + "overhangs_front_distance_to_top_of_window": 0, + "overhangs_left_depth": 0, + "overhangs_left_distance_to_top_of_window": 0, + "overhangs_right_depth": 0, + "overhangs_right_distance_to_top_of_window": 0, + "plug_loads_other_annual_kwh": "819.0", + "plug_loads_other_frac_latent": "0.045", + "plug_loads_other_frac_sensible": "0.855", + "plug_loads_other_usage_multiplier": 1.0, + "plug_loads_television_annual_kwh": "620.0", + "plug_loads_television_usage_multiplier": 1.0, + "plug_loads_vehicle_annual_kwh": "auto", + "plug_loads_vehicle_present": false, + "plug_loads_vehicle_usage_multiplier": 0.0, + "plug_loads_well_pump_annual_kwh": "auto", + "plug_loads_well_pump_present": false, + "plug_loads_well_pump_usage_multiplier": 0.0, + "pool_heater_annual_kwh": "auto", + "pool_heater_annual_therm": "auto", + "pool_heater_type": "electric resistance", + "pool_heater_usage_multiplier": 1.0, + "pool_present": false, + "pool_pump_annual_kwh": "auto", + "pool_pump_usage_multiplier": 1.0, + "pv_system_array_azimuth_1": 180, + "pv_system_array_azimuth_2": 180, + "pv_system_array_tilt_1": "20", + "pv_system_array_tilt_2": "20", + "pv_system_inverter_efficiency_1": 0.96, + "pv_system_inverter_efficiency_2": 0.96, + "pv_system_location_1": "auto", + "pv_system_location_2": "auto", + "pv_system_max_power_output_1": 4000, + "pv_system_max_power_output_2": 4000, + "pv_system_module_type_1": "none", + "pv_system_module_type_2": "none", + "pv_system_num_units_served_1": 1, + "pv_system_num_units_served_2": 1, + "pv_system_system_losses_fraction_1": 0.14, + "pv_system_system_losses_fraction_2": 0.14, + "pv_system_tracking_1": "auto", + "pv_system_tracking_2": "auto", + "refrigerator_location": "living space", + "refrigerator_rated_annual_kwh": "650.0", + "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, + "roof_assembly_r": 2.3, + "roof_color": "medium", + "roof_material_type": "asphalt or fiberglass shingles", + "roof_radiant_barrier": false, + "roof_radiant_barrier_grade": "1", + "schedules_type": "default", + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", + "simulation_control_timestep": "60", + "site_type": "suburban", + "skylight_area_back": 0, + "skylight_area_front": 0, + "skylight_area_left": 0, + "skylight_area_right": 0, + "skylight_shgc": 0.45, + "skylight_ufactor": 0.33, + "slab_carpet_fraction": "0.0", + "slab_carpet_r": "0.0", + "slab_perimeter_depth": 0, + "slab_perimeter_insulation_r": 0, + "slab_thickness": "4.0", + "slab_under_insulation_r": 0, + "slab_under_width": 0, + "solar_thermal_collector_area": 40.0, + "solar_thermal_collector_azimuth": 180, + "solar_thermal_collector_loop_type": "liquid direct", + "solar_thermal_collector_rated_optical_efficiency": 0.5, + "solar_thermal_collector_rated_thermal_losses": 0.2799, + "solar_thermal_collector_tilt": "20", + "solar_thermal_collector_type": "evacuated tube", + "solar_thermal_solar_fraction": 0, + "solar_thermal_storage_volume": "auto", + "solar_thermal_system_type": "none", + "wall_assembly_r": 23, + "wall_color": "medium", + "wall_siding_type": "wood siding", + "wall_type": "WoodStud", + "water_fixtures_shower_low_flow": true, + "water_fixtures_sink_low_flow": false, + "water_fixtures_usage_multiplier": 1.0, + "water_heater_efficiency": 0.95, + "water_heater_efficiency_type": "EnergyFactor", + "water_heater_fuel_type": "electricity", + "water_heater_jacket_rvalue": 0, + "water_heater_location": "living space", + "water_heater_num_units_served": 1, + "water_heater_recovery_efficiency": "0.76", + "water_heater_setpoint_temperature": "125", + "water_heater_standby_loss": 0, + "water_heater_tank_volume": "40", + "water_heater_type": "storage water heater", + "weather_station_epw_filepath": "USA_CO_Denver.Intl.AP.725650_TMY3.epw", + "whole_house_fan_flow_rate": 4500, + "whole_house_fan_power": 300, + "whole_house_fan_present": false, + "window_area_back": 0, + "window_area_front": 0, + "window_area_left": 0, + "window_area_right": 0, + "window_aspect_ratio": 1.333, + "window_back_wwr": 0.18, + "window_fraction_operable": 0.67, + "window_front_wwr": 0.18, + "window_interior_shading_summer": 0.7, + "window_interior_shading_winter": 0.85, + "window_left_wwr": 0.18, + "window_right_wwr": 0.18, + "window_shgc": 0.45, + "window_ufactor": 0.33 + }, + "measure_dir_name": "BuildResidentialHPXML" + } + ] +} \ No newline at end of file diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-unvented-crawlspace-middle-bottom-double-loaded-interior.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-unvented-crawlspace-middle-bottom-double-loaded-interior.osw new file mode 100644 index 00000000..ab9ede09 --- /dev/null +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-unvented-crawlspace-middle-bottom-double-loaded-interior.osw @@ -0,0 +1,341 @@ +{ + "measure_paths": [ + "../.." + ], + "steps": [ + { + "arguments": { + "air_leakage_house_pressure": 50, + "air_leakage_shielding_of_home": "auto", + "air_leakage_units": "ACH", + "air_leakage_value": 3, + "bathroom_fans_quantity": "0", + "ceiling_assembly_r": 39.3, + "ceiling_fan_cooling_setpoint_temp_offset": 0, + "ceiling_fan_efficiency": "auto", + "ceiling_fan_present": false, + "ceiling_fan_quantity": "auto", + "clothes_dryer_efficiency": "3.73", + "clothes_dryer_efficiency_type": "CombinedEnergyFactor", + "clothes_dryer_fuel_type": "electricity", + "clothes_dryer_location": "living space", + "clothes_dryer_usage_multiplier": 1.0, + "clothes_dryer_vented_flow_rate": "150.0", + "clothes_washer_capacity": "3.2", + "clothes_washer_efficiency": "1.21", + "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", + "clothes_washer_label_annual_gas_cost": "27.0", + "clothes_washer_label_electric_rate": "0.12", + "clothes_washer_label_gas_rate": "1.09", + "clothes_washer_label_usage": "6.0", + "clothes_washer_location": "living space", + "clothes_washer_rated_annual_kwh": "380.0", + "clothes_washer_usage_multiplier": 1.0, + "cooking_range_oven_fuel_type": "electricity", + "cooking_range_oven_is_convection": false, + "cooking_range_oven_is_induction": false, + "cooking_range_oven_location": "living space", + "cooking_range_oven_usage_multiplier": 1.0, + "cooling_system_cooling_capacity": "48000.0", + "cooling_system_cooling_compressor_type": "single stage", + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", + "cooling_system_cooling_sensible_heat_fraction": 0.73, + "cooling_system_fraction_cool_load_served": 1, + "cooling_system_is_ducted": false, + "cooling_system_type": "central air conditioner", + "dehumidifier_capacity": 40, + "dehumidifier_efficiency": 1.8, + "dehumidifier_efficiency_type": "EnergyFactor", + "dehumidifier_fraction_dehumidification_load_served": 1, + "dehumidifier_rh_setpoint": 0.5, + "dehumidifier_type": "none", + "dhw_distribution_pipe_r": "0.0", + "dhw_distribution_recirc_branch_piping_length": "50", + "dhw_distribution_recirc_control_type": "no control", + "dhw_distribution_recirc_piping_length": "50", + "dhw_distribution_recirc_pump_power": "50", + "dhw_distribution_standard_piping_length": "50", + "dhw_distribution_system_type": "Standard", + "dishwasher_efficiency": "307", + "dishwasher_efficiency_type": "RatedAnnualkWh", + "dishwasher_label_annual_gas_cost": "22.32", + "dishwasher_label_electric_rate": "0.12", + "dishwasher_label_gas_rate": "1.09", + "dishwasher_label_usage": "4.0", + "dishwasher_location": "living space", + "dishwasher_place_setting_capacity": "12", + "dishwasher_usage_multiplier": 1.0, + "door_area": 20.0, + "door_rvalue": 4.4, + "ducts_number_of_return_registers": "1", + "ducts_return_insulation_r": 0.0, + "ducts_return_leakage_units": "CFM25", + "ducts_return_leakage_value": 0.0, + "ducts_return_location": "living space", + "ducts_return_surface_area": "50.0", + "ducts_supply_insulation_r": 0.0, + "ducts_supply_leakage_units": "CFM25", + "ducts_supply_leakage_value": 0.0, + "ducts_supply_location": "living space", + "ducts_supply_surface_area": "150.0", + "dwhr_efficiency": 0.55, + "dwhr_equal_flow": true, + "dwhr_facilities_connected": "none", + "extra_refrigerator_location": "none", + "extra_refrigerator_rated_annual_kwh": "auto", + "extra_refrigerator_usage_multiplier": 1.0, + "floor_assembly_r": 18.7, + "foundation_wall_insulation_distance_to_bottom": 4.0, + "foundation_wall_insulation_distance_to_top": 0.0, + "foundation_wall_insulation_r": 8.9, + "foundation_wall_thickness": "8.0", + "freezer_location": "none", + "freezer_rated_annual_kwh": "auto", + "freezer_usage_multiplier": 1.0, + "fuel_loads_fireplace_annual_therm": "auto", + "fuel_loads_fireplace_frac_latent": "auto", + "fuel_loads_fireplace_frac_sensible": "auto", + "fuel_loads_fireplace_fuel_type": "natural gas", + "fuel_loads_fireplace_present": false, + "fuel_loads_fireplace_usage_multiplier": 0.0, + "fuel_loads_grill_annual_therm": "auto", + "fuel_loads_grill_fuel_type": "natural gas", + "fuel_loads_grill_present": false, + "fuel_loads_grill_usage_multiplier": 0.0, + "fuel_loads_lighting_annual_therm": "auto", + "fuel_loads_lighting_fuel_type": "natural gas", + "fuel_loads_lighting_present": false, + "fuel_loads_lighting_usage_multiplier": 0.0, + "geometry_aspect_ratio": 1.5, + "geometry_attic_type": "UnventedAttic", + "geometry_balcony_depth": 0.0, + "geometry_building_num_bedrooms": 150, + "geometry_building_num_units": 50, + "geometry_cfa": 900.0, + "geometry_corridor_position": "Double-Loaded Interior", + "geometry_corridor_width": 10.0, + "geometry_eaves_depth": 0, + "geometry_foundation_height": 4.0, + "geometry_foundation_height_above_grade": 1.0, + "geometry_foundation_type": "UnventedCrawlspace", + "geometry_garage_depth": 20.0, + "geometry_garage_position": "Right", + "geometry_garage_protrusion": 0.0, + "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", + "geometry_horizontal_location": "Middle", + "geometry_inset_depth": 0.0, + "geometry_inset_position": "Right", + "geometry_inset_width": 0.0, + "geometry_level": "Bottom", + "geometry_num_bathrooms": "2", + "geometry_num_bedrooms": 3, + "geometry_num_floors_above_grade": 5, + "geometry_num_occupants": "3", + "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, + "geometry_roof_pitch": "6:12", + "geometry_roof_type": "gable", + "geometry_unit_type": "apartment unit", + "geometry_wall_height": 8.0, + "heat_pump_backup_fuel": "none", + "heat_pump_backup_heating_capacity": "34121.0", + "heat_pump_backup_heating_efficiency": 1, + "heat_pump_cooling_capacity": "48000.0", + "heat_pump_cooling_compressor_type": "single stage", + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", + "heat_pump_cooling_sensible_heat_fraction": 0.73, + "heat_pump_fraction_cool_load_served": 1, + "heat_pump_fraction_heat_load_served": 1, + "heat_pump_heating_capacity": "64000.0", + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", + "heat_pump_type": "none", + "heating_system_fraction_heat_load_served": 1, + "heating_system_fraction_heat_load_served_2": 0.25, + "heating_system_fuel": "natural gas", + "heating_system_fuel_2": "electricity", + "heating_system_heating_capacity": "64000.0", + "heating_system_heating_capacity_2": "auto", + "heating_system_heating_efficiency": 0.92, + "heating_system_heating_efficiency_2": 1.0, + "heating_system_type": "Furnace", + "heating_system_type_2": "none", + "holiday_lighting_daily_kwh": "auto", + "holiday_lighting_period_begin_day_of_month": "auto", + "holiday_lighting_period_begin_month": "auto", + "holiday_lighting_period_end_day_of_month": "auto", + "holiday_lighting_period_end_month": "auto", + "holiday_lighting_present": false, + "hot_tub_heater_annual_kwh": "auto", + "hot_tub_heater_annual_therm": "auto", + "hot_tub_heater_type": "electric resistance", + "hot_tub_heater_usage_multiplier": 1.0, + "hot_tub_present": false, + "hot_tub_pump_annual_kwh": "auto", + "hot_tub_pump_usage_multiplier": 1.0, + "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/extra-bldgtype-multifamily-unvented-crawlspace-middle-bottom-double-loaded-interior.xml", + "kitchen_fans_quantity": "0", + "lighting_fraction_cfl_exterior": 0.4, + "lighting_fraction_cfl_garage": 0.4, + "lighting_fraction_cfl_interior": 0.4, + "lighting_fraction_led_exterior": 0.25, + "lighting_fraction_led_garage": 0.25, + "lighting_fraction_led_interior": 0.25, + "lighting_fraction_lfl_exterior": 0.1, + "lighting_fraction_lfl_garage": 0.1, + "lighting_fraction_lfl_interior": 0.1, + "lighting_usage_multiplier_exterior": 1.0, + "lighting_usage_multiplier_garage": 1.0, + "lighting_usage_multiplier_interior": 1.0, + "mech_vent_fan_power": 30, + "mech_vent_fan_power_2": 30, + "mech_vent_fan_type": "none", + "mech_vent_fan_type_2": "none", + "mech_vent_flow_rate": 110, + "mech_vent_flow_rate_2": 110, + "mech_vent_hours_in_operation": 24, + "mech_vent_hours_in_operation_2": 24, + "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", + "mech_vent_sensible_recovery_efficiency": 0.72, + "mech_vent_sensible_recovery_efficiency_2": 0.72, + "mech_vent_total_recovery_efficiency": 0.48, + "mech_vent_total_recovery_efficiency_2": 0.48, + "neighbor_back_distance": 0, + "neighbor_back_height": "auto", + "neighbor_front_distance": 0, + "neighbor_front_height": "auto", + "neighbor_left_distance": 0, + "neighbor_left_height": "auto", + "neighbor_right_distance": 0, + "neighbor_right_height": "auto", + "overhangs_back_depth": 0, + "overhangs_back_distance_to_top_of_window": 0, + "overhangs_front_depth": 0, + "overhangs_front_distance_to_top_of_window": 0, + "overhangs_left_depth": 0, + "overhangs_left_distance_to_top_of_window": 0, + "overhangs_right_depth": 0, + "overhangs_right_distance_to_top_of_window": 0, + "plug_loads_other_annual_kwh": "819.0", + "plug_loads_other_frac_latent": "0.045", + "plug_loads_other_frac_sensible": "0.855", + "plug_loads_other_usage_multiplier": 1.0, + "plug_loads_television_annual_kwh": "620.0", + "plug_loads_television_usage_multiplier": 1.0, + "plug_loads_vehicle_annual_kwh": "auto", + "plug_loads_vehicle_present": false, + "plug_loads_vehicle_usage_multiplier": 0.0, + "plug_loads_well_pump_annual_kwh": "auto", + "plug_loads_well_pump_present": false, + "plug_loads_well_pump_usage_multiplier": 0.0, + "pool_heater_annual_kwh": "auto", + "pool_heater_annual_therm": "auto", + "pool_heater_type": "electric resistance", + "pool_heater_usage_multiplier": 1.0, + "pool_present": false, + "pool_pump_annual_kwh": "auto", + "pool_pump_usage_multiplier": 1.0, + "pv_system_array_azimuth_1": 180, + "pv_system_array_azimuth_2": 180, + "pv_system_array_tilt_1": "20", + "pv_system_array_tilt_2": "20", + "pv_system_inverter_efficiency_1": 0.96, + "pv_system_inverter_efficiency_2": 0.96, + "pv_system_location_1": "auto", + "pv_system_location_2": "auto", + "pv_system_max_power_output_1": 4000, + "pv_system_max_power_output_2": 4000, + "pv_system_module_type_1": "none", + "pv_system_module_type_2": "none", + "pv_system_num_units_served_1": 1, + "pv_system_num_units_served_2": 1, + "pv_system_system_losses_fraction_1": 0.14, + "pv_system_system_losses_fraction_2": 0.14, + "pv_system_tracking_1": "auto", + "pv_system_tracking_2": "auto", + "refrigerator_location": "living space", + "refrigerator_rated_annual_kwh": "650.0", + "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, + "roof_assembly_r": 2.3, + "roof_color": "medium", + "roof_material_type": "asphalt or fiberglass shingles", + "roof_radiant_barrier": false, + "roof_radiant_barrier_grade": "1", + "schedules_type": "default", + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", + "simulation_control_timestep": "60", + "site_type": "suburban", + "skylight_area_back": 0, + "skylight_area_front": 0, + "skylight_area_left": 0, + "skylight_area_right": 0, + "skylight_shgc": 0.45, + "skylight_ufactor": 0.33, + "slab_carpet_fraction": "0.0", + "slab_carpet_r": "0.0", + "slab_perimeter_depth": 0, + "slab_perimeter_insulation_r": 0, + "slab_thickness": "4.0", + "slab_under_insulation_r": 0, + "slab_under_width": 0, + "solar_thermal_collector_area": 40.0, + "solar_thermal_collector_azimuth": 180, + "solar_thermal_collector_loop_type": "liquid direct", + "solar_thermal_collector_rated_optical_efficiency": 0.5, + "solar_thermal_collector_rated_thermal_losses": 0.2799, + "solar_thermal_collector_tilt": "20", + "solar_thermal_collector_type": "evacuated tube", + "solar_thermal_solar_fraction": 0, + "solar_thermal_storage_volume": "auto", + "solar_thermal_system_type": "none", + "wall_assembly_r": 23, + "wall_color": "medium", + "wall_siding_type": "wood siding", + "wall_type": "WoodStud", + "water_fixtures_shower_low_flow": true, + "water_fixtures_sink_low_flow": false, + "water_fixtures_usage_multiplier": 1.0, + "water_heater_efficiency": 0.95, + "water_heater_efficiency_type": "EnergyFactor", + "water_heater_fuel_type": "electricity", + "water_heater_jacket_rvalue": 0, + "water_heater_location": "living space", + "water_heater_num_units_served": 1, + "water_heater_recovery_efficiency": "0.76", + "water_heater_setpoint_temperature": "125", + "water_heater_standby_loss": 0, + "water_heater_tank_volume": "40", + "water_heater_type": "storage water heater", + "weather_station_epw_filepath": "USA_CO_Denver.Intl.AP.725650_TMY3.epw", + "whole_house_fan_flow_rate": 4500, + "whole_house_fan_power": 300, + "whole_house_fan_present": false, + "window_area_back": 0, + "window_area_front": 0, + "window_area_left": 0, + "window_area_right": 0, + "window_aspect_ratio": 1.333, + "window_back_wwr": 0.18, + "window_fraction_operable": 0.67, + "window_front_wwr": 0.18, + "window_interior_shading_summer": 0.7, + "window_interior_shading_winter": 0.85, + "window_left_wwr": 0.18, + "window_right_wwr": 0.18, + "window_shgc": 0.45, + "window_ufactor": 0.33 + }, + "measure_dir_name": "BuildResidentialHPXML" + } + ] +} \ No newline at end of file diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-unvented-crawlspace-middle-bottom.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-unvented-crawlspace-middle-bottom.osw new file mode 100644 index 00000000..679cb5af --- /dev/null +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-unvented-crawlspace-middle-bottom.osw @@ -0,0 +1,341 @@ +{ + "measure_paths": [ + "../.." + ], + "steps": [ + { + "arguments": { + "air_leakage_house_pressure": 50, + "air_leakage_shielding_of_home": "auto", + "air_leakage_units": "ACH", + "air_leakage_value": 3, + "bathroom_fans_quantity": "0", + "ceiling_assembly_r": 39.3, + "ceiling_fan_cooling_setpoint_temp_offset": 0, + "ceiling_fan_efficiency": "auto", + "ceiling_fan_present": false, + "ceiling_fan_quantity": "auto", + "clothes_dryer_efficiency": "3.73", + "clothes_dryer_efficiency_type": "CombinedEnergyFactor", + "clothes_dryer_fuel_type": "electricity", + "clothes_dryer_location": "living space", + "clothes_dryer_usage_multiplier": 1.0, + "clothes_dryer_vented_flow_rate": "150.0", + "clothes_washer_capacity": "3.2", + "clothes_washer_efficiency": "1.21", + "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", + "clothes_washer_label_annual_gas_cost": "27.0", + "clothes_washer_label_electric_rate": "0.12", + "clothes_washer_label_gas_rate": "1.09", + "clothes_washer_label_usage": "6.0", + "clothes_washer_location": "living space", + "clothes_washer_rated_annual_kwh": "380.0", + "clothes_washer_usage_multiplier": 1.0, + "cooking_range_oven_fuel_type": "electricity", + "cooking_range_oven_is_convection": false, + "cooking_range_oven_is_induction": false, + "cooking_range_oven_location": "living space", + "cooking_range_oven_usage_multiplier": 1.0, + "cooling_system_cooling_capacity": "48000.0", + "cooling_system_cooling_compressor_type": "single stage", + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", + "cooling_system_cooling_sensible_heat_fraction": 0.73, + "cooling_system_fraction_cool_load_served": 1, + "cooling_system_is_ducted": false, + "cooling_system_type": "central air conditioner", + "dehumidifier_capacity": 40, + "dehumidifier_efficiency": 1.8, + "dehumidifier_efficiency_type": "EnergyFactor", + "dehumidifier_fraction_dehumidification_load_served": 1, + "dehumidifier_rh_setpoint": 0.5, + "dehumidifier_type": "none", + "dhw_distribution_pipe_r": "0.0", + "dhw_distribution_recirc_branch_piping_length": "50", + "dhw_distribution_recirc_control_type": "no control", + "dhw_distribution_recirc_piping_length": "50", + "dhw_distribution_recirc_pump_power": "50", + "dhw_distribution_standard_piping_length": "50", + "dhw_distribution_system_type": "Standard", + "dishwasher_efficiency": "307", + "dishwasher_efficiency_type": "RatedAnnualkWh", + "dishwasher_label_annual_gas_cost": "22.32", + "dishwasher_label_electric_rate": "0.12", + "dishwasher_label_gas_rate": "1.09", + "dishwasher_label_usage": "4.0", + "dishwasher_location": "living space", + "dishwasher_place_setting_capacity": "12", + "dishwasher_usage_multiplier": 1.0, + "door_area": 20.0, + "door_rvalue": 4.4, + "ducts_number_of_return_registers": "1", + "ducts_return_insulation_r": 0.0, + "ducts_return_leakage_units": "CFM25", + "ducts_return_leakage_value": 0.0, + "ducts_return_location": "living space", + "ducts_return_surface_area": "50.0", + "ducts_supply_insulation_r": 0.0, + "ducts_supply_leakage_units": "CFM25", + "ducts_supply_leakage_value": 0.0, + "ducts_supply_location": "living space", + "ducts_supply_surface_area": "150.0", + "dwhr_efficiency": 0.55, + "dwhr_equal_flow": true, + "dwhr_facilities_connected": "none", + "extra_refrigerator_location": "none", + "extra_refrigerator_rated_annual_kwh": "auto", + "extra_refrigerator_usage_multiplier": 1.0, + "floor_assembly_r": 18.7, + "foundation_wall_insulation_distance_to_bottom": 4.0, + "foundation_wall_insulation_distance_to_top": 0.0, + "foundation_wall_insulation_r": 8.9, + "foundation_wall_thickness": "8.0", + "freezer_location": "none", + "freezer_rated_annual_kwh": "auto", + "freezer_usage_multiplier": 1.0, + "fuel_loads_fireplace_annual_therm": "auto", + "fuel_loads_fireplace_frac_latent": "auto", + "fuel_loads_fireplace_frac_sensible": "auto", + "fuel_loads_fireplace_fuel_type": "natural gas", + "fuel_loads_fireplace_present": false, + "fuel_loads_fireplace_usage_multiplier": 0.0, + "fuel_loads_grill_annual_therm": "auto", + "fuel_loads_grill_fuel_type": "natural gas", + "fuel_loads_grill_present": false, + "fuel_loads_grill_usage_multiplier": 0.0, + "fuel_loads_lighting_annual_therm": "auto", + "fuel_loads_lighting_fuel_type": "natural gas", + "fuel_loads_lighting_present": false, + "fuel_loads_lighting_usage_multiplier": 0.0, + "geometry_aspect_ratio": 1.5, + "geometry_attic_type": "UnventedAttic", + "geometry_balcony_depth": 0.0, + "geometry_building_num_bedrooms": 150, + "geometry_building_num_units": 50, + "geometry_cfa": 900.0, + "geometry_corridor_position": "None", + "geometry_corridor_width": 10.0, + "geometry_eaves_depth": 0, + "geometry_foundation_height": 4.0, + "geometry_foundation_height_above_grade": 1.0, + "geometry_foundation_type": "UnventedCrawlspace", + "geometry_garage_depth": 20.0, + "geometry_garage_position": "Right", + "geometry_garage_protrusion": 0.0, + "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", + "geometry_horizontal_location": "Middle", + "geometry_inset_depth": 0.0, + "geometry_inset_position": "Right", + "geometry_inset_width": 0.0, + "geometry_level": "Bottom", + "geometry_num_bathrooms": "2", + "geometry_num_bedrooms": 3, + "geometry_num_floors_above_grade": 5, + "geometry_num_occupants": "3", + "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, + "geometry_roof_pitch": "6:12", + "geometry_roof_type": "gable", + "geometry_unit_type": "apartment unit", + "geometry_wall_height": 8.0, + "heat_pump_backup_fuel": "none", + "heat_pump_backup_heating_capacity": "34121.0", + "heat_pump_backup_heating_efficiency": 1, + "heat_pump_cooling_capacity": "48000.0", + "heat_pump_cooling_compressor_type": "single stage", + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", + "heat_pump_cooling_sensible_heat_fraction": 0.73, + "heat_pump_fraction_cool_load_served": 1, + "heat_pump_fraction_heat_load_served": 1, + "heat_pump_heating_capacity": "64000.0", + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", + "heat_pump_type": "none", + "heating_system_fraction_heat_load_served": 1, + "heating_system_fraction_heat_load_served_2": 0.25, + "heating_system_fuel": "natural gas", + "heating_system_fuel_2": "electricity", + "heating_system_heating_capacity": "64000.0", + "heating_system_heating_capacity_2": "auto", + "heating_system_heating_efficiency": 0.92, + "heating_system_heating_efficiency_2": 1.0, + "heating_system_type": "Furnace", + "heating_system_type_2": "none", + "holiday_lighting_daily_kwh": "auto", + "holiday_lighting_period_begin_day_of_month": "auto", + "holiday_lighting_period_begin_month": "auto", + "holiday_lighting_period_end_day_of_month": "auto", + "holiday_lighting_period_end_month": "auto", + "holiday_lighting_present": false, + "hot_tub_heater_annual_kwh": "auto", + "hot_tub_heater_annual_therm": "auto", + "hot_tub_heater_type": "electric resistance", + "hot_tub_heater_usage_multiplier": 1.0, + "hot_tub_present": false, + "hot_tub_pump_annual_kwh": "auto", + "hot_tub_pump_usage_multiplier": 1.0, + "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/extra-bldgtype-multifamily-unvented-crawlspace-middle-bottom.xml", + "kitchen_fans_quantity": "0", + "lighting_fraction_cfl_exterior": 0.4, + "lighting_fraction_cfl_garage": 0.4, + "lighting_fraction_cfl_interior": 0.4, + "lighting_fraction_led_exterior": 0.25, + "lighting_fraction_led_garage": 0.25, + "lighting_fraction_led_interior": 0.25, + "lighting_fraction_lfl_exterior": 0.1, + "lighting_fraction_lfl_garage": 0.1, + "lighting_fraction_lfl_interior": 0.1, + "lighting_usage_multiplier_exterior": 1.0, + "lighting_usage_multiplier_garage": 1.0, + "lighting_usage_multiplier_interior": 1.0, + "mech_vent_fan_power": 30, + "mech_vent_fan_power_2": 30, + "mech_vent_fan_type": "none", + "mech_vent_fan_type_2": "none", + "mech_vent_flow_rate": 110, + "mech_vent_flow_rate_2": 110, + "mech_vent_hours_in_operation": 24, + "mech_vent_hours_in_operation_2": 24, + "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", + "mech_vent_sensible_recovery_efficiency": 0.72, + "mech_vent_sensible_recovery_efficiency_2": 0.72, + "mech_vent_total_recovery_efficiency": 0.48, + "mech_vent_total_recovery_efficiency_2": 0.48, + "neighbor_back_distance": 0, + "neighbor_back_height": "auto", + "neighbor_front_distance": 0, + "neighbor_front_height": "auto", + "neighbor_left_distance": 0, + "neighbor_left_height": "auto", + "neighbor_right_distance": 0, + "neighbor_right_height": "auto", + "overhangs_back_depth": 0, + "overhangs_back_distance_to_top_of_window": 0, + "overhangs_front_depth": 0, + "overhangs_front_distance_to_top_of_window": 0, + "overhangs_left_depth": 0, + "overhangs_left_distance_to_top_of_window": 0, + "overhangs_right_depth": 0, + "overhangs_right_distance_to_top_of_window": 0, + "plug_loads_other_annual_kwh": "819.0", + "plug_loads_other_frac_latent": "0.045", + "plug_loads_other_frac_sensible": "0.855", + "plug_loads_other_usage_multiplier": 1.0, + "plug_loads_television_annual_kwh": "620.0", + "plug_loads_television_usage_multiplier": 1.0, + "plug_loads_vehicle_annual_kwh": "auto", + "plug_loads_vehicle_present": false, + "plug_loads_vehicle_usage_multiplier": 0.0, + "plug_loads_well_pump_annual_kwh": "auto", + "plug_loads_well_pump_present": false, + "plug_loads_well_pump_usage_multiplier": 0.0, + "pool_heater_annual_kwh": "auto", + "pool_heater_annual_therm": "auto", + "pool_heater_type": "electric resistance", + "pool_heater_usage_multiplier": 1.0, + "pool_present": false, + "pool_pump_annual_kwh": "auto", + "pool_pump_usage_multiplier": 1.0, + "pv_system_array_azimuth_1": 180, + "pv_system_array_azimuth_2": 180, + "pv_system_array_tilt_1": "20", + "pv_system_array_tilt_2": "20", + "pv_system_inverter_efficiency_1": 0.96, + "pv_system_inverter_efficiency_2": 0.96, + "pv_system_location_1": "auto", + "pv_system_location_2": "auto", + "pv_system_max_power_output_1": 4000, + "pv_system_max_power_output_2": 4000, + "pv_system_module_type_1": "none", + "pv_system_module_type_2": "none", + "pv_system_num_units_served_1": 1, + "pv_system_num_units_served_2": 1, + "pv_system_system_losses_fraction_1": 0.14, + "pv_system_system_losses_fraction_2": 0.14, + "pv_system_tracking_1": "auto", + "pv_system_tracking_2": "auto", + "refrigerator_location": "living space", + "refrigerator_rated_annual_kwh": "650.0", + "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, + "roof_assembly_r": 2.3, + "roof_color": "medium", + "roof_material_type": "asphalt or fiberglass shingles", + "roof_radiant_barrier": false, + "roof_radiant_barrier_grade": "1", + "schedules_type": "default", + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", + "simulation_control_timestep": "60", + "site_type": "suburban", + "skylight_area_back": 0, + "skylight_area_front": 0, + "skylight_area_left": 0, + "skylight_area_right": 0, + "skylight_shgc": 0.45, + "skylight_ufactor": 0.33, + "slab_carpet_fraction": "0.0", + "slab_carpet_r": "0.0", + "slab_perimeter_depth": 0, + "slab_perimeter_insulation_r": 0, + "slab_thickness": "4.0", + "slab_under_insulation_r": 0, + "slab_under_width": 0, + "solar_thermal_collector_area": 40.0, + "solar_thermal_collector_azimuth": 180, + "solar_thermal_collector_loop_type": "liquid direct", + "solar_thermal_collector_rated_optical_efficiency": 0.5, + "solar_thermal_collector_rated_thermal_losses": 0.2799, + "solar_thermal_collector_tilt": "20", + "solar_thermal_collector_type": "evacuated tube", + "solar_thermal_solar_fraction": 0, + "solar_thermal_storage_volume": "auto", + "solar_thermal_system_type": "none", + "wall_assembly_r": 23, + "wall_color": "medium", + "wall_siding_type": "wood siding", + "wall_type": "WoodStud", + "water_fixtures_shower_low_flow": true, + "water_fixtures_sink_low_flow": false, + "water_fixtures_usage_multiplier": 1.0, + "water_heater_efficiency": 0.95, + "water_heater_efficiency_type": "EnergyFactor", + "water_heater_fuel_type": "electricity", + "water_heater_jacket_rvalue": 0, + "water_heater_location": "living space", + "water_heater_num_units_served": 1, + "water_heater_recovery_efficiency": "0.76", + "water_heater_setpoint_temperature": "125", + "water_heater_standby_loss": 0, + "water_heater_tank_volume": "40", + "water_heater_type": "storage water heater", + "weather_station_epw_filepath": "USA_CO_Denver.Intl.AP.725650_TMY3.epw", + "whole_house_fan_flow_rate": 4500, + "whole_house_fan_power": 300, + "whole_house_fan_present": false, + "window_area_back": 0, + "window_area_front": 0, + "window_area_left": 0, + "window_area_right": 0, + "window_aspect_ratio": 1.333, + "window_back_wwr": 0.18, + "window_fraction_operable": 0.67, + "window_front_wwr": 0.18, + "window_interior_shading_summer": 0.7, + "window_interior_shading_winter": 0.85, + "window_left_wwr": 0.18, + "window_right_wwr": 0.18, + "window_shgc": 0.45, + "window_ufactor": 0.33 + }, + "measure_dir_name": "BuildResidentialHPXML" + } + ] +} \ No newline at end of file diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-unvented-crawlspace-middle-middle-double-loaded-interior.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-unvented-crawlspace-middle-middle-double-loaded-interior.osw new file mode 100644 index 00000000..74ad1152 --- /dev/null +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-unvented-crawlspace-middle-middle-double-loaded-interior.osw @@ -0,0 +1,341 @@ +{ + "measure_paths": [ + "../.." + ], + "steps": [ + { + "arguments": { + "air_leakage_house_pressure": 50, + "air_leakage_shielding_of_home": "auto", + "air_leakage_units": "ACH", + "air_leakage_value": 3, + "bathroom_fans_quantity": "0", + "ceiling_assembly_r": 39.3, + "ceiling_fan_cooling_setpoint_temp_offset": 0, + "ceiling_fan_efficiency": "auto", + "ceiling_fan_present": false, + "ceiling_fan_quantity": "auto", + "clothes_dryer_efficiency": "3.73", + "clothes_dryer_efficiency_type": "CombinedEnergyFactor", + "clothes_dryer_fuel_type": "electricity", + "clothes_dryer_location": "living space", + "clothes_dryer_usage_multiplier": 1.0, + "clothes_dryer_vented_flow_rate": "150.0", + "clothes_washer_capacity": "3.2", + "clothes_washer_efficiency": "1.21", + "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", + "clothes_washer_label_annual_gas_cost": "27.0", + "clothes_washer_label_electric_rate": "0.12", + "clothes_washer_label_gas_rate": "1.09", + "clothes_washer_label_usage": "6.0", + "clothes_washer_location": "living space", + "clothes_washer_rated_annual_kwh": "380.0", + "clothes_washer_usage_multiplier": 1.0, + "cooking_range_oven_fuel_type": "electricity", + "cooking_range_oven_is_convection": false, + "cooking_range_oven_is_induction": false, + "cooking_range_oven_location": "living space", + "cooking_range_oven_usage_multiplier": 1.0, + "cooling_system_cooling_capacity": "48000.0", + "cooling_system_cooling_compressor_type": "single stage", + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", + "cooling_system_cooling_sensible_heat_fraction": 0.73, + "cooling_system_fraction_cool_load_served": 1, + "cooling_system_is_ducted": false, + "cooling_system_type": "central air conditioner", + "dehumidifier_capacity": 40, + "dehumidifier_efficiency": 1.8, + "dehumidifier_efficiency_type": "EnergyFactor", + "dehumidifier_fraction_dehumidification_load_served": 1, + "dehumidifier_rh_setpoint": 0.5, + "dehumidifier_type": "none", + "dhw_distribution_pipe_r": "0.0", + "dhw_distribution_recirc_branch_piping_length": "50", + "dhw_distribution_recirc_control_type": "no control", + "dhw_distribution_recirc_piping_length": "50", + "dhw_distribution_recirc_pump_power": "50", + "dhw_distribution_standard_piping_length": "50", + "dhw_distribution_system_type": "Standard", + "dishwasher_efficiency": "307", + "dishwasher_efficiency_type": "RatedAnnualkWh", + "dishwasher_label_annual_gas_cost": "22.32", + "dishwasher_label_electric_rate": "0.12", + "dishwasher_label_gas_rate": "1.09", + "dishwasher_label_usage": "4.0", + "dishwasher_location": "living space", + "dishwasher_place_setting_capacity": "12", + "dishwasher_usage_multiplier": 1.0, + "door_area": 20.0, + "door_rvalue": 4.4, + "ducts_number_of_return_registers": "1", + "ducts_return_insulation_r": 0.0, + "ducts_return_leakage_units": "CFM25", + "ducts_return_leakage_value": 0.0, + "ducts_return_location": "living space", + "ducts_return_surface_area": "50.0", + "ducts_supply_insulation_r": 0.0, + "ducts_supply_leakage_units": "CFM25", + "ducts_supply_leakage_value": 0.0, + "ducts_supply_location": "living space", + "ducts_supply_surface_area": "150.0", + "dwhr_efficiency": 0.55, + "dwhr_equal_flow": true, + "dwhr_facilities_connected": "none", + "extra_refrigerator_location": "none", + "extra_refrigerator_rated_annual_kwh": "auto", + "extra_refrigerator_usage_multiplier": 1.0, + "floor_assembly_r": 18.7, + "foundation_wall_insulation_distance_to_bottom": 4.0, + "foundation_wall_insulation_distance_to_top": 0.0, + "foundation_wall_insulation_r": 8.9, + "foundation_wall_thickness": "8.0", + "freezer_location": "none", + "freezer_rated_annual_kwh": "auto", + "freezer_usage_multiplier": 1.0, + "fuel_loads_fireplace_annual_therm": "auto", + "fuel_loads_fireplace_frac_latent": "auto", + "fuel_loads_fireplace_frac_sensible": "auto", + "fuel_loads_fireplace_fuel_type": "natural gas", + "fuel_loads_fireplace_present": false, + "fuel_loads_fireplace_usage_multiplier": 0.0, + "fuel_loads_grill_annual_therm": "auto", + "fuel_loads_grill_fuel_type": "natural gas", + "fuel_loads_grill_present": false, + "fuel_loads_grill_usage_multiplier": 0.0, + "fuel_loads_lighting_annual_therm": "auto", + "fuel_loads_lighting_fuel_type": "natural gas", + "fuel_loads_lighting_present": false, + "fuel_loads_lighting_usage_multiplier": 0.0, + "geometry_aspect_ratio": 1.5, + "geometry_attic_type": "UnventedAttic", + "geometry_balcony_depth": 0.0, + "geometry_building_num_bedrooms": 150, + "geometry_building_num_units": 50, + "geometry_cfa": 900.0, + "geometry_corridor_position": "Double-Loaded Interior", + "geometry_corridor_width": 10.0, + "geometry_eaves_depth": 0, + "geometry_foundation_height": 4.0, + "geometry_foundation_height_above_grade": 1.0, + "geometry_foundation_type": "UnventedCrawlspace", + "geometry_garage_depth": 20.0, + "geometry_garage_position": "Right", + "geometry_garage_protrusion": 0.0, + "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", + "geometry_horizontal_location": "Middle", + "geometry_inset_depth": 0.0, + "geometry_inset_position": "Right", + "geometry_inset_width": 0.0, + "geometry_level": "Middle", + "geometry_num_bathrooms": "2", + "geometry_num_bedrooms": 3, + "geometry_num_floors_above_grade": 5, + "geometry_num_occupants": "3", + "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, + "geometry_roof_pitch": "6:12", + "geometry_roof_type": "gable", + "geometry_unit_type": "apartment unit", + "geometry_wall_height": 8.0, + "heat_pump_backup_fuel": "none", + "heat_pump_backup_heating_capacity": "34121.0", + "heat_pump_backup_heating_efficiency": 1, + "heat_pump_cooling_capacity": "48000.0", + "heat_pump_cooling_compressor_type": "single stage", + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", + "heat_pump_cooling_sensible_heat_fraction": 0.73, + "heat_pump_fraction_cool_load_served": 1, + "heat_pump_fraction_heat_load_served": 1, + "heat_pump_heating_capacity": "64000.0", + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", + "heat_pump_type": "none", + "heating_system_fraction_heat_load_served": 1, + "heating_system_fraction_heat_load_served_2": 0.25, + "heating_system_fuel": "natural gas", + "heating_system_fuel_2": "electricity", + "heating_system_heating_capacity": "64000.0", + "heating_system_heating_capacity_2": "auto", + "heating_system_heating_efficiency": 0.92, + "heating_system_heating_efficiency_2": 1.0, + "heating_system_type": "Furnace", + "heating_system_type_2": "none", + "holiday_lighting_daily_kwh": "auto", + "holiday_lighting_period_begin_day_of_month": "auto", + "holiday_lighting_period_begin_month": "auto", + "holiday_lighting_period_end_day_of_month": "auto", + "holiday_lighting_period_end_month": "auto", + "holiday_lighting_present": false, + "hot_tub_heater_annual_kwh": "auto", + "hot_tub_heater_annual_therm": "auto", + "hot_tub_heater_type": "electric resistance", + "hot_tub_heater_usage_multiplier": 1.0, + "hot_tub_present": false, + "hot_tub_pump_annual_kwh": "auto", + "hot_tub_pump_usage_multiplier": 1.0, + "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/extra-bldgtype-multifamily-unvented-crawlspace-middle-middle-double-loaded-interior.xml", + "kitchen_fans_quantity": "0", + "lighting_fraction_cfl_exterior": 0.4, + "lighting_fraction_cfl_garage": 0.4, + "lighting_fraction_cfl_interior": 0.4, + "lighting_fraction_led_exterior": 0.25, + "lighting_fraction_led_garage": 0.25, + "lighting_fraction_led_interior": 0.25, + "lighting_fraction_lfl_exterior": 0.1, + "lighting_fraction_lfl_garage": 0.1, + "lighting_fraction_lfl_interior": 0.1, + "lighting_usage_multiplier_exterior": 1.0, + "lighting_usage_multiplier_garage": 1.0, + "lighting_usage_multiplier_interior": 1.0, + "mech_vent_fan_power": 30, + "mech_vent_fan_power_2": 30, + "mech_vent_fan_type": "none", + "mech_vent_fan_type_2": "none", + "mech_vent_flow_rate": 110, + "mech_vent_flow_rate_2": 110, + "mech_vent_hours_in_operation": 24, + "mech_vent_hours_in_operation_2": 24, + "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", + "mech_vent_sensible_recovery_efficiency": 0.72, + "mech_vent_sensible_recovery_efficiency_2": 0.72, + "mech_vent_total_recovery_efficiency": 0.48, + "mech_vent_total_recovery_efficiency_2": 0.48, + "neighbor_back_distance": 0, + "neighbor_back_height": "auto", + "neighbor_front_distance": 0, + "neighbor_front_height": "auto", + "neighbor_left_distance": 0, + "neighbor_left_height": "auto", + "neighbor_right_distance": 0, + "neighbor_right_height": "auto", + "overhangs_back_depth": 0, + "overhangs_back_distance_to_top_of_window": 0, + "overhangs_front_depth": 0, + "overhangs_front_distance_to_top_of_window": 0, + "overhangs_left_depth": 0, + "overhangs_left_distance_to_top_of_window": 0, + "overhangs_right_depth": 0, + "overhangs_right_distance_to_top_of_window": 0, + "plug_loads_other_annual_kwh": "819.0", + "plug_loads_other_frac_latent": "0.045", + "plug_loads_other_frac_sensible": "0.855", + "plug_loads_other_usage_multiplier": 1.0, + "plug_loads_television_annual_kwh": "620.0", + "plug_loads_television_usage_multiplier": 1.0, + "plug_loads_vehicle_annual_kwh": "auto", + "plug_loads_vehicle_present": false, + "plug_loads_vehicle_usage_multiplier": 0.0, + "plug_loads_well_pump_annual_kwh": "auto", + "plug_loads_well_pump_present": false, + "plug_loads_well_pump_usage_multiplier": 0.0, + "pool_heater_annual_kwh": "auto", + "pool_heater_annual_therm": "auto", + "pool_heater_type": "electric resistance", + "pool_heater_usage_multiplier": 1.0, + "pool_present": false, + "pool_pump_annual_kwh": "auto", + "pool_pump_usage_multiplier": 1.0, + "pv_system_array_azimuth_1": 180, + "pv_system_array_azimuth_2": 180, + "pv_system_array_tilt_1": "20", + "pv_system_array_tilt_2": "20", + "pv_system_inverter_efficiency_1": 0.96, + "pv_system_inverter_efficiency_2": 0.96, + "pv_system_location_1": "auto", + "pv_system_location_2": "auto", + "pv_system_max_power_output_1": 4000, + "pv_system_max_power_output_2": 4000, + "pv_system_module_type_1": "none", + "pv_system_module_type_2": "none", + "pv_system_num_units_served_1": 1, + "pv_system_num_units_served_2": 1, + "pv_system_system_losses_fraction_1": 0.14, + "pv_system_system_losses_fraction_2": 0.14, + "pv_system_tracking_1": "auto", + "pv_system_tracking_2": "auto", + "refrigerator_location": "living space", + "refrigerator_rated_annual_kwh": "650.0", + "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, + "roof_assembly_r": 2.3, + "roof_color": "medium", + "roof_material_type": "asphalt or fiberglass shingles", + "roof_radiant_barrier": false, + "roof_radiant_barrier_grade": "1", + "schedules_type": "default", + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", + "simulation_control_timestep": "60", + "site_type": "suburban", + "skylight_area_back": 0, + "skylight_area_front": 0, + "skylight_area_left": 0, + "skylight_area_right": 0, + "skylight_shgc": 0.45, + "skylight_ufactor": 0.33, + "slab_carpet_fraction": "0.0", + "slab_carpet_r": "0.0", + "slab_perimeter_depth": 0, + "slab_perimeter_insulation_r": 0, + "slab_thickness": "4.0", + "slab_under_insulation_r": 0, + "slab_under_width": 0, + "solar_thermal_collector_area": 40.0, + "solar_thermal_collector_azimuth": 180, + "solar_thermal_collector_loop_type": "liquid direct", + "solar_thermal_collector_rated_optical_efficiency": 0.5, + "solar_thermal_collector_rated_thermal_losses": 0.2799, + "solar_thermal_collector_tilt": "20", + "solar_thermal_collector_type": "evacuated tube", + "solar_thermal_solar_fraction": 0, + "solar_thermal_storage_volume": "auto", + "solar_thermal_system_type": "none", + "wall_assembly_r": 23, + "wall_color": "medium", + "wall_siding_type": "wood siding", + "wall_type": "WoodStud", + "water_fixtures_shower_low_flow": true, + "water_fixtures_sink_low_flow": false, + "water_fixtures_usage_multiplier": 1.0, + "water_heater_efficiency": 0.95, + "water_heater_efficiency_type": "EnergyFactor", + "water_heater_fuel_type": "electricity", + "water_heater_jacket_rvalue": 0, + "water_heater_location": "living space", + "water_heater_num_units_served": 1, + "water_heater_recovery_efficiency": "0.76", + "water_heater_setpoint_temperature": "125", + "water_heater_standby_loss": 0, + "water_heater_tank_volume": "40", + "water_heater_type": "storage water heater", + "weather_station_epw_filepath": "USA_CO_Denver.Intl.AP.725650_TMY3.epw", + "whole_house_fan_flow_rate": 4500, + "whole_house_fan_power": 300, + "whole_house_fan_present": false, + "window_area_back": 0, + "window_area_front": 0, + "window_area_left": 0, + "window_area_right": 0, + "window_aspect_ratio": 1.333, + "window_back_wwr": 0.18, + "window_fraction_operable": 0.67, + "window_front_wwr": 0.18, + "window_interior_shading_summer": 0.7, + "window_interior_shading_winter": 0.85, + "window_left_wwr": 0.18, + "window_right_wwr": 0.18, + "window_shgc": 0.45, + "window_ufactor": 0.33 + }, + "measure_dir_name": "BuildResidentialHPXML" + } + ] +} \ No newline at end of file diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-unvented-crawlspace-middle-middle.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-unvented-crawlspace-middle-middle.osw new file mode 100644 index 00000000..8665f4c8 --- /dev/null +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-unvented-crawlspace-middle-middle.osw @@ -0,0 +1,341 @@ +{ + "measure_paths": [ + "../.." + ], + "steps": [ + { + "arguments": { + "air_leakage_house_pressure": 50, + "air_leakage_shielding_of_home": "auto", + "air_leakage_units": "ACH", + "air_leakage_value": 3, + "bathroom_fans_quantity": "0", + "ceiling_assembly_r": 39.3, + "ceiling_fan_cooling_setpoint_temp_offset": 0, + "ceiling_fan_efficiency": "auto", + "ceiling_fan_present": false, + "ceiling_fan_quantity": "auto", + "clothes_dryer_efficiency": "3.73", + "clothes_dryer_efficiency_type": "CombinedEnergyFactor", + "clothes_dryer_fuel_type": "electricity", + "clothes_dryer_location": "living space", + "clothes_dryer_usage_multiplier": 1.0, + "clothes_dryer_vented_flow_rate": "150.0", + "clothes_washer_capacity": "3.2", + "clothes_washer_efficiency": "1.21", + "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", + "clothes_washer_label_annual_gas_cost": "27.0", + "clothes_washer_label_electric_rate": "0.12", + "clothes_washer_label_gas_rate": "1.09", + "clothes_washer_label_usage": "6.0", + "clothes_washer_location": "living space", + "clothes_washer_rated_annual_kwh": "380.0", + "clothes_washer_usage_multiplier": 1.0, + "cooking_range_oven_fuel_type": "electricity", + "cooking_range_oven_is_convection": false, + "cooking_range_oven_is_induction": false, + "cooking_range_oven_location": "living space", + "cooking_range_oven_usage_multiplier": 1.0, + "cooling_system_cooling_capacity": "48000.0", + "cooling_system_cooling_compressor_type": "single stage", + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", + "cooling_system_cooling_sensible_heat_fraction": 0.73, + "cooling_system_fraction_cool_load_served": 1, + "cooling_system_is_ducted": false, + "cooling_system_type": "central air conditioner", + "dehumidifier_capacity": 40, + "dehumidifier_efficiency": 1.8, + "dehumidifier_efficiency_type": "EnergyFactor", + "dehumidifier_fraction_dehumidification_load_served": 1, + "dehumidifier_rh_setpoint": 0.5, + "dehumidifier_type": "none", + "dhw_distribution_pipe_r": "0.0", + "dhw_distribution_recirc_branch_piping_length": "50", + "dhw_distribution_recirc_control_type": "no control", + "dhw_distribution_recirc_piping_length": "50", + "dhw_distribution_recirc_pump_power": "50", + "dhw_distribution_standard_piping_length": "50", + "dhw_distribution_system_type": "Standard", + "dishwasher_efficiency": "307", + "dishwasher_efficiency_type": "RatedAnnualkWh", + "dishwasher_label_annual_gas_cost": "22.32", + "dishwasher_label_electric_rate": "0.12", + "dishwasher_label_gas_rate": "1.09", + "dishwasher_label_usage": "4.0", + "dishwasher_location": "living space", + "dishwasher_place_setting_capacity": "12", + "dishwasher_usage_multiplier": 1.0, + "door_area": 20.0, + "door_rvalue": 4.4, + "ducts_number_of_return_registers": "1", + "ducts_return_insulation_r": 0.0, + "ducts_return_leakage_units": "CFM25", + "ducts_return_leakage_value": 0.0, + "ducts_return_location": "living space", + "ducts_return_surface_area": "50.0", + "ducts_supply_insulation_r": 0.0, + "ducts_supply_leakage_units": "CFM25", + "ducts_supply_leakage_value": 0.0, + "ducts_supply_location": "living space", + "ducts_supply_surface_area": "150.0", + "dwhr_efficiency": 0.55, + "dwhr_equal_flow": true, + "dwhr_facilities_connected": "none", + "extra_refrigerator_location": "none", + "extra_refrigerator_rated_annual_kwh": "auto", + "extra_refrigerator_usage_multiplier": 1.0, + "floor_assembly_r": 18.7, + "foundation_wall_insulation_distance_to_bottom": 4.0, + "foundation_wall_insulation_distance_to_top": 0.0, + "foundation_wall_insulation_r": 8.9, + "foundation_wall_thickness": "8.0", + "freezer_location": "none", + "freezer_rated_annual_kwh": "auto", + "freezer_usage_multiplier": 1.0, + "fuel_loads_fireplace_annual_therm": "auto", + "fuel_loads_fireplace_frac_latent": "auto", + "fuel_loads_fireplace_frac_sensible": "auto", + "fuel_loads_fireplace_fuel_type": "natural gas", + "fuel_loads_fireplace_present": false, + "fuel_loads_fireplace_usage_multiplier": 0.0, + "fuel_loads_grill_annual_therm": "auto", + "fuel_loads_grill_fuel_type": "natural gas", + "fuel_loads_grill_present": false, + "fuel_loads_grill_usage_multiplier": 0.0, + "fuel_loads_lighting_annual_therm": "auto", + "fuel_loads_lighting_fuel_type": "natural gas", + "fuel_loads_lighting_present": false, + "fuel_loads_lighting_usage_multiplier": 0.0, + "geometry_aspect_ratio": 1.5, + "geometry_attic_type": "UnventedAttic", + "geometry_balcony_depth": 0.0, + "geometry_building_num_bedrooms": 150, + "geometry_building_num_units": 50, + "geometry_cfa": 900.0, + "geometry_corridor_position": "None", + "geometry_corridor_width": 10.0, + "geometry_eaves_depth": 0, + "geometry_foundation_height": 4.0, + "geometry_foundation_height_above_grade": 1.0, + "geometry_foundation_type": "UnventedCrawlspace", + "geometry_garage_depth": 20.0, + "geometry_garage_position": "Right", + "geometry_garage_protrusion": 0.0, + "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", + "geometry_horizontal_location": "Middle", + "geometry_inset_depth": 0.0, + "geometry_inset_position": "Right", + "geometry_inset_width": 0.0, + "geometry_level": "Middle", + "geometry_num_bathrooms": "2", + "geometry_num_bedrooms": 3, + "geometry_num_floors_above_grade": 5, + "geometry_num_occupants": "3", + "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, + "geometry_roof_pitch": "6:12", + "geometry_roof_type": "gable", + "geometry_unit_type": "apartment unit", + "geometry_wall_height": 8.0, + "heat_pump_backup_fuel": "none", + "heat_pump_backup_heating_capacity": "34121.0", + "heat_pump_backup_heating_efficiency": 1, + "heat_pump_cooling_capacity": "48000.0", + "heat_pump_cooling_compressor_type": "single stage", + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", + "heat_pump_cooling_sensible_heat_fraction": 0.73, + "heat_pump_fraction_cool_load_served": 1, + "heat_pump_fraction_heat_load_served": 1, + "heat_pump_heating_capacity": "64000.0", + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", + "heat_pump_type": "none", + "heating_system_fraction_heat_load_served": 1, + "heating_system_fraction_heat_load_served_2": 0.25, + "heating_system_fuel": "natural gas", + "heating_system_fuel_2": "electricity", + "heating_system_heating_capacity": "64000.0", + "heating_system_heating_capacity_2": "auto", + "heating_system_heating_efficiency": 0.92, + "heating_system_heating_efficiency_2": 1.0, + "heating_system_type": "Furnace", + "heating_system_type_2": "none", + "holiday_lighting_daily_kwh": "auto", + "holiday_lighting_period_begin_day_of_month": "auto", + "holiday_lighting_period_begin_month": "auto", + "holiday_lighting_period_end_day_of_month": "auto", + "holiday_lighting_period_end_month": "auto", + "holiday_lighting_present": false, + "hot_tub_heater_annual_kwh": "auto", + "hot_tub_heater_annual_therm": "auto", + "hot_tub_heater_type": "electric resistance", + "hot_tub_heater_usage_multiplier": 1.0, + "hot_tub_present": false, + "hot_tub_pump_annual_kwh": "auto", + "hot_tub_pump_usage_multiplier": 1.0, + "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/extra-bldgtype-multifamily-unvented-crawlspace-middle-middle.xml", + "kitchen_fans_quantity": "0", + "lighting_fraction_cfl_exterior": 0.4, + "lighting_fraction_cfl_garage": 0.4, + "lighting_fraction_cfl_interior": 0.4, + "lighting_fraction_led_exterior": 0.25, + "lighting_fraction_led_garage": 0.25, + "lighting_fraction_led_interior": 0.25, + "lighting_fraction_lfl_exterior": 0.1, + "lighting_fraction_lfl_garage": 0.1, + "lighting_fraction_lfl_interior": 0.1, + "lighting_usage_multiplier_exterior": 1.0, + "lighting_usage_multiplier_garage": 1.0, + "lighting_usage_multiplier_interior": 1.0, + "mech_vent_fan_power": 30, + "mech_vent_fan_power_2": 30, + "mech_vent_fan_type": "none", + "mech_vent_fan_type_2": "none", + "mech_vent_flow_rate": 110, + "mech_vent_flow_rate_2": 110, + "mech_vent_hours_in_operation": 24, + "mech_vent_hours_in_operation_2": 24, + "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", + "mech_vent_sensible_recovery_efficiency": 0.72, + "mech_vent_sensible_recovery_efficiency_2": 0.72, + "mech_vent_total_recovery_efficiency": 0.48, + "mech_vent_total_recovery_efficiency_2": 0.48, + "neighbor_back_distance": 0, + "neighbor_back_height": "auto", + "neighbor_front_distance": 0, + "neighbor_front_height": "auto", + "neighbor_left_distance": 0, + "neighbor_left_height": "auto", + "neighbor_right_distance": 0, + "neighbor_right_height": "auto", + "overhangs_back_depth": 0, + "overhangs_back_distance_to_top_of_window": 0, + "overhangs_front_depth": 0, + "overhangs_front_distance_to_top_of_window": 0, + "overhangs_left_depth": 0, + "overhangs_left_distance_to_top_of_window": 0, + "overhangs_right_depth": 0, + "overhangs_right_distance_to_top_of_window": 0, + "plug_loads_other_annual_kwh": "819.0", + "plug_loads_other_frac_latent": "0.045", + "plug_loads_other_frac_sensible": "0.855", + "plug_loads_other_usage_multiplier": 1.0, + "plug_loads_television_annual_kwh": "620.0", + "plug_loads_television_usage_multiplier": 1.0, + "plug_loads_vehicle_annual_kwh": "auto", + "plug_loads_vehicle_present": false, + "plug_loads_vehicle_usage_multiplier": 0.0, + "plug_loads_well_pump_annual_kwh": "auto", + "plug_loads_well_pump_present": false, + "plug_loads_well_pump_usage_multiplier": 0.0, + "pool_heater_annual_kwh": "auto", + "pool_heater_annual_therm": "auto", + "pool_heater_type": "electric resistance", + "pool_heater_usage_multiplier": 1.0, + "pool_present": false, + "pool_pump_annual_kwh": "auto", + "pool_pump_usage_multiplier": 1.0, + "pv_system_array_azimuth_1": 180, + "pv_system_array_azimuth_2": 180, + "pv_system_array_tilt_1": "20", + "pv_system_array_tilt_2": "20", + "pv_system_inverter_efficiency_1": 0.96, + "pv_system_inverter_efficiency_2": 0.96, + "pv_system_location_1": "auto", + "pv_system_location_2": "auto", + "pv_system_max_power_output_1": 4000, + "pv_system_max_power_output_2": 4000, + "pv_system_module_type_1": "none", + "pv_system_module_type_2": "none", + "pv_system_num_units_served_1": 1, + "pv_system_num_units_served_2": 1, + "pv_system_system_losses_fraction_1": 0.14, + "pv_system_system_losses_fraction_2": 0.14, + "pv_system_tracking_1": "auto", + "pv_system_tracking_2": "auto", + "refrigerator_location": "living space", + "refrigerator_rated_annual_kwh": "650.0", + "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, + "roof_assembly_r": 2.3, + "roof_color": "medium", + "roof_material_type": "asphalt or fiberglass shingles", + "roof_radiant_barrier": false, + "roof_radiant_barrier_grade": "1", + "schedules_type": "default", + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", + "simulation_control_timestep": "60", + "site_type": "suburban", + "skylight_area_back": 0, + "skylight_area_front": 0, + "skylight_area_left": 0, + "skylight_area_right": 0, + "skylight_shgc": 0.45, + "skylight_ufactor": 0.33, + "slab_carpet_fraction": "0.0", + "slab_carpet_r": "0.0", + "slab_perimeter_depth": 0, + "slab_perimeter_insulation_r": 0, + "slab_thickness": "4.0", + "slab_under_insulation_r": 0, + "slab_under_width": 0, + "solar_thermal_collector_area": 40.0, + "solar_thermal_collector_azimuth": 180, + "solar_thermal_collector_loop_type": "liquid direct", + "solar_thermal_collector_rated_optical_efficiency": 0.5, + "solar_thermal_collector_rated_thermal_losses": 0.2799, + "solar_thermal_collector_tilt": "20", + "solar_thermal_collector_type": "evacuated tube", + "solar_thermal_solar_fraction": 0, + "solar_thermal_storage_volume": "auto", + "solar_thermal_system_type": "none", + "wall_assembly_r": 23, + "wall_color": "medium", + "wall_siding_type": "wood siding", + "wall_type": "WoodStud", + "water_fixtures_shower_low_flow": true, + "water_fixtures_sink_low_flow": false, + "water_fixtures_usage_multiplier": 1.0, + "water_heater_efficiency": 0.95, + "water_heater_efficiency_type": "EnergyFactor", + "water_heater_fuel_type": "electricity", + "water_heater_jacket_rvalue": 0, + "water_heater_location": "living space", + "water_heater_num_units_served": 1, + "water_heater_recovery_efficiency": "0.76", + "water_heater_setpoint_temperature": "125", + "water_heater_standby_loss": 0, + "water_heater_tank_volume": "40", + "water_heater_type": "storage water heater", + "weather_station_epw_filepath": "USA_CO_Denver.Intl.AP.725650_TMY3.epw", + "whole_house_fan_flow_rate": 4500, + "whole_house_fan_power": 300, + "whole_house_fan_present": false, + "window_area_back": 0, + "window_area_front": 0, + "window_area_left": 0, + "window_area_right": 0, + "window_aspect_ratio": 1.333, + "window_back_wwr": 0.18, + "window_fraction_operable": 0.67, + "window_front_wwr": 0.18, + "window_interior_shading_summer": 0.7, + "window_interior_shading_winter": 0.85, + "window_left_wwr": 0.18, + "window_right_wwr": 0.18, + "window_shgc": 0.45, + "window_ufactor": 0.33 + }, + "measure_dir_name": "BuildResidentialHPXML" + } + ] +} \ No newline at end of file diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-unvented-crawlspace-middle-top-double-loaded-interior.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-unvented-crawlspace-middle-top-double-loaded-interior.osw new file mode 100644 index 00000000..f425d8b8 --- /dev/null +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-unvented-crawlspace-middle-top-double-loaded-interior.osw @@ -0,0 +1,341 @@ +{ + "measure_paths": [ + "../.." + ], + "steps": [ + { + "arguments": { + "air_leakage_house_pressure": 50, + "air_leakage_shielding_of_home": "auto", + "air_leakage_units": "ACH", + "air_leakage_value": 3, + "bathroom_fans_quantity": "0", + "ceiling_assembly_r": 39.3, + "ceiling_fan_cooling_setpoint_temp_offset": 0, + "ceiling_fan_efficiency": "auto", + "ceiling_fan_present": false, + "ceiling_fan_quantity": "auto", + "clothes_dryer_efficiency": "3.73", + "clothes_dryer_efficiency_type": "CombinedEnergyFactor", + "clothes_dryer_fuel_type": "electricity", + "clothes_dryer_location": "living space", + "clothes_dryer_usage_multiplier": 1.0, + "clothes_dryer_vented_flow_rate": "150.0", + "clothes_washer_capacity": "3.2", + "clothes_washer_efficiency": "1.21", + "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", + "clothes_washer_label_annual_gas_cost": "27.0", + "clothes_washer_label_electric_rate": "0.12", + "clothes_washer_label_gas_rate": "1.09", + "clothes_washer_label_usage": "6.0", + "clothes_washer_location": "living space", + "clothes_washer_rated_annual_kwh": "380.0", + "clothes_washer_usage_multiplier": 1.0, + "cooking_range_oven_fuel_type": "electricity", + "cooking_range_oven_is_convection": false, + "cooking_range_oven_is_induction": false, + "cooking_range_oven_location": "living space", + "cooking_range_oven_usage_multiplier": 1.0, + "cooling_system_cooling_capacity": "48000.0", + "cooling_system_cooling_compressor_type": "single stage", + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", + "cooling_system_cooling_sensible_heat_fraction": 0.73, + "cooling_system_fraction_cool_load_served": 1, + "cooling_system_is_ducted": false, + "cooling_system_type": "central air conditioner", + "dehumidifier_capacity": 40, + "dehumidifier_efficiency": 1.8, + "dehumidifier_efficiency_type": "EnergyFactor", + "dehumidifier_fraction_dehumidification_load_served": 1, + "dehumidifier_rh_setpoint": 0.5, + "dehumidifier_type": "none", + "dhw_distribution_pipe_r": "0.0", + "dhw_distribution_recirc_branch_piping_length": "50", + "dhw_distribution_recirc_control_type": "no control", + "dhw_distribution_recirc_piping_length": "50", + "dhw_distribution_recirc_pump_power": "50", + "dhw_distribution_standard_piping_length": "50", + "dhw_distribution_system_type": "Standard", + "dishwasher_efficiency": "307", + "dishwasher_efficiency_type": "RatedAnnualkWh", + "dishwasher_label_annual_gas_cost": "22.32", + "dishwasher_label_electric_rate": "0.12", + "dishwasher_label_gas_rate": "1.09", + "dishwasher_label_usage": "4.0", + "dishwasher_location": "living space", + "dishwasher_place_setting_capacity": "12", + "dishwasher_usage_multiplier": 1.0, + "door_area": 20.0, + "door_rvalue": 4.4, + "ducts_number_of_return_registers": "1", + "ducts_return_insulation_r": 0.0, + "ducts_return_leakage_units": "CFM25", + "ducts_return_leakage_value": 0.0, + "ducts_return_location": "living space", + "ducts_return_surface_area": "50.0", + "ducts_supply_insulation_r": 0.0, + "ducts_supply_leakage_units": "CFM25", + "ducts_supply_leakage_value": 0.0, + "ducts_supply_location": "living space", + "ducts_supply_surface_area": "150.0", + "dwhr_efficiency": 0.55, + "dwhr_equal_flow": true, + "dwhr_facilities_connected": "none", + "extra_refrigerator_location": "none", + "extra_refrigerator_rated_annual_kwh": "auto", + "extra_refrigerator_usage_multiplier": 1.0, + "floor_assembly_r": 18.7, + "foundation_wall_insulation_distance_to_bottom": 4.0, + "foundation_wall_insulation_distance_to_top": 0.0, + "foundation_wall_insulation_r": 8.9, + "foundation_wall_thickness": "8.0", + "freezer_location": "none", + "freezer_rated_annual_kwh": "auto", + "freezer_usage_multiplier": 1.0, + "fuel_loads_fireplace_annual_therm": "auto", + "fuel_loads_fireplace_frac_latent": "auto", + "fuel_loads_fireplace_frac_sensible": "auto", + "fuel_loads_fireplace_fuel_type": "natural gas", + "fuel_loads_fireplace_present": false, + "fuel_loads_fireplace_usage_multiplier": 0.0, + "fuel_loads_grill_annual_therm": "auto", + "fuel_loads_grill_fuel_type": "natural gas", + "fuel_loads_grill_present": false, + "fuel_loads_grill_usage_multiplier": 0.0, + "fuel_loads_lighting_annual_therm": "auto", + "fuel_loads_lighting_fuel_type": "natural gas", + "fuel_loads_lighting_present": false, + "fuel_loads_lighting_usage_multiplier": 0.0, + "geometry_aspect_ratio": 1.5, + "geometry_attic_type": "UnventedAttic", + "geometry_balcony_depth": 0.0, + "geometry_building_num_bedrooms": 150, + "geometry_building_num_units": 50, + "geometry_cfa": 900.0, + "geometry_corridor_position": "Double-Loaded Interior", + "geometry_corridor_width": 10.0, + "geometry_eaves_depth": 0, + "geometry_foundation_height": 4.0, + "geometry_foundation_height_above_grade": 1.0, + "geometry_foundation_type": "UnventedCrawlspace", + "geometry_garage_depth": 20.0, + "geometry_garage_position": "Right", + "geometry_garage_protrusion": 0.0, + "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", + "geometry_horizontal_location": "Middle", + "geometry_inset_depth": 0.0, + "geometry_inset_position": "Right", + "geometry_inset_width": 0.0, + "geometry_level": "Top", + "geometry_num_bathrooms": "2", + "geometry_num_bedrooms": 3, + "geometry_num_floors_above_grade": 5, + "geometry_num_occupants": "3", + "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, + "geometry_roof_pitch": "6:12", + "geometry_roof_type": "gable", + "geometry_unit_type": "apartment unit", + "geometry_wall_height": 8.0, + "heat_pump_backup_fuel": "none", + "heat_pump_backup_heating_capacity": "34121.0", + "heat_pump_backup_heating_efficiency": 1, + "heat_pump_cooling_capacity": "48000.0", + "heat_pump_cooling_compressor_type": "single stage", + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", + "heat_pump_cooling_sensible_heat_fraction": 0.73, + "heat_pump_fraction_cool_load_served": 1, + "heat_pump_fraction_heat_load_served": 1, + "heat_pump_heating_capacity": "64000.0", + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", + "heat_pump_type": "none", + "heating_system_fraction_heat_load_served": 1, + "heating_system_fraction_heat_load_served_2": 0.25, + "heating_system_fuel": "natural gas", + "heating_system_fuel_2": "electricity", + "heating_system_heating_capacity": "64000.0", + "heating_system_heating_capacity_2": "auto", + "heating_system_heating_efficiency": 0.92, + "heating_system_heating_efficiency_2": 1.0, + "heating_system_type": "Furnace", + "heating_system_type_2": "none", + "holiday_lighting_daily_kwh": "auto", + "holiday_lighting_period_begin_day_of_month": "auto", + "holiday_lighting_period_begin_month": "auto", + "holiday_lighting_period_end_day_of_month": "auto", + "holiday_lighting_period_end_month": "auto", + "holiday_lighting_present": false, + "hot_tub_heater_annual_kwh": "auto", + "hot_tub_heater_annual_therm": "auto", + "hot_tub_heater_type": "electric resistance", + "hot_tub_heater_usage_multiplier": 1.0, + "hot_tub_present": false, + "hot_tub_pump_annual_kwh": "auto", + "hot_tub_pump_usage_multiplier": 1.0, + "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/extra-bldgtype-multifamily-unvented-crawlspace-middle-top-double-loaded-interior.xml", + "kitchen_fans_quantity": "0", + "lighting_fraction_cfl_exterior": 0.4, + "lighting_fraction_cfl_garage": 0.4, + "lighting_fraction_cfl_interior": 0.4, + "lighting_fraction_led_exterior": 0.25, + "lighting_fraction_led_garage": 0.25, + "lighting_fraction_led_interior": 0.25, + "lighting_fraction_lfl_exterior": 0.1, + "lighting_fraction_lfl_garage": 0.1, + "lighting_fraction_lfl_interior": 0.1, + "lighting_usage_multiplier_exterior": 1.0, + "lighting_usage_multiplier_garage": 1.0, + "lighting_usage_multiplier_interior": 1.0, + "mech_vent_fan_power": 30, + "mech_vent_fan_power_2": 30, + "mech_vent_fan_type": "none", + "mech_vent_fan_type_2": "none", + "mech_vent_flow_rate": 110, + "mech_vent_flow_rate_2": 110, + "mech_vent_hours_in_operation": 24, + "mech_vent_hours_in_operation_2": 24, + "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", + "mech_vent_sensible_recovery_efficiency": 0.72, + "mech_vent_sensible_recovery_efficiency_2": 0.72, + "mech_vent_total_recovery_efficiency": 0.48, + "mech_vent_total_recovery_efficiency_2": 0.48, + "neighbor_back_distance": 0, + "neighbor_back_height": "auto", + "neighbor_front_distance": 0, + "neighbor_front_height": "auto", + "neighbor_left_distance": 0, + "neighbor_left_height": "auto", + "neighbor_right_distance": 0, + "neighbor_right_height": "auto", + "overhangs_back_depth": 0, + "overhangs_back_distance_to_top_of_window": 0, + "overhangs_front_depth": 0, + "overhangs_front_distance_to_top_of_window": 0, + "overhangs_left_depth": 0, + "overhangs_left_distance_to_top_of_window": 0, + "overhangs_right_depth": 0, + "overhangs_right_distance_to_top_of_window": 0, + "plug_loads_other_annual_kwh": "819.0", + "plug_loads_other_frac_latent": "0.045", + "plug_loads_other_frac_sensible": "0.855", + "plug_loads_other_usage_multiplier": 1.0, + "plug_loads_television_annual_kwh": "620.0", + "plug_loads_television_usage_multiplier": 1.0, + "plug_loads_vehicle_annual_kwh": "auto", + "plug_loads_vehicle_present": false, + "plug_loads_vehicle_usage_multiplier": 0.0, + "plug_loads_well_pump_annual_kwh": "auto", + "plug_loads_well_pump_present": false, + "plug_loads_well_pump_usage_multiplier": 0.0, + "pool_heater_annual_kwh": "auto", + "pool_heater_annual_therm": "auto", + "pool_heater_type": "electric resistance", + "pool_heater_usage_multiplier": 1.0, + "pool_present": false, + "pool_pump_annual_kwh": "auto", + "pool_pump_usage_multiplier": 1.0, + "pv_system_array_azimuth_1": 180, + "pv_system_array_azimuth_2": 180, + "pv_system_array_tilt_1": "20", + "pv_system_array_tilt_2": "20", + "pv_system_inverter_efficiency_1": 0.96, + "pv_system_inverter_efficiency_2": 0.96, + "pv_system_location_1": "auto", + "pv_system_location_2": "auto", + "pv_system_max_power_output_1": 4000, + "pv_system_max_power_output_2": 4000, + "pv_system_module_type_1": "none", + "pv_system_module_type_2": "none", + "pv_system_num_units_served_1": 1, + "pv_system_num_units_served_2": 1, + "pv_system_system_losses_fraction_1": 0.14, + "pv_system_system_losses_fraction_2": 0.14, + "pv_system_tracking_1": "auto", + "pv_system_tracking_2": "auto", + "refrigerator_location": "living space", + "refrigerator_rated_annual_kwh": "650.0", + "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, + "roof_assembly_r": 2.3, + "roof_color": "medium", + "roof_material_type": "asphalt or fiberglass shingles", + "roof_radiant_barrier": false, + "roof_radiant_barrier_grade": "1", + "schedules_type": "default", + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", + "simulation_control_timestep": "60", + "site_type": "suburban", + "skylight_area_back": 0, + "skylight_area_front": 0, + "skylight_area_left": 0, + "skylight_area_right": 0, + "skylight_shgc": 0.45, + "skylight_ufactor": 0.33, + "slab_carpet_fraction": "0.0", + "slab_carpet_r": "0.0", + "slab_perimeter_depth": 0, + "slab_perimeter_insulation_r": 0, + "slab_thickness": "4.0", + "slab_under_insulation_r": 0, + "slab_under_width": 0, + "solar_thermal_collector_area": 40.0, + "solar_thermal_collector_azimuth": 180, + "solar_thermal_collector_loop_type": "liquid direct", + "solar_thermal_collector_rated_optical_efficiency": 0.5, + "solar_thermal_collector_rated_thermal_losses": 0.2799, + "solar_thermal_collector_tilt": "20", + "solar_thermal_collector_type": "evacuated tube", + "solar_thermal_solar_fraction": 0, + "solar_thermal_storage_volume": "auto", + "solar_thermal_system_type": "none", + "wall_assembly_r": 23, + "wall_color": "medium", + "wall_siding_type": "wood siding", + "wall_type": "WoodStud", + "water_fixtures_shower_low_flow": true, + "water_fixtures_sink_low_flow": false, + "water_fixtures_usage_multiplier": 1.0, + "water_heater_efficiency": 0.95, + "water_heater_efficiency_type": "EnergyFactor", + "water_heater_fuel_type": "electricity", + "water_heater_jacket_rvalue": 0, + "water_heater_location": "living space", + "water_heater_num_units_served": 1, + "water_heater_recovery_efficiency": "0.76", + "water_heater_setpoint_temperature": "125", + "water_heater_standby_loss": 0, + "water_heater_tank_volume": "40", + "water_heater_type": "storage water heater", + "weather_station_epw_filepath": "USA_CO_Denver.Intl.AP.725650_TMY3.epw", + "whole_house_fan_flow_rate": 4500, + "whole_house_fan_power": 300, + "whole_house_fan_present": false, + "window_area_back": 0, + "window_area_front": 0, + "window_area_left": 0, + "window_area_right": 0, + "window_aspect_ratio": 1.333, + "window_back_wwr": 0.18, + "window_fraction_operable": 0.67, + "window_front_wwr": 0.18, + "window_interior_shading_summer": 0.7, + "window_interior_shading_winter": 0.85, + "window_left_wwr": 0.18, + "window_right_wwr": 0.18, + "window_shgc": 0.45, + "window_ufactor": 0.33 + }, + "measure_dir_name": "BuildResidentialHPXML" + } + ] +} \ No newline at end of file diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-unvented-crawlspace-middle-top.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-unvented-crawlspace-middle-top.osw new file mode 100644 index 00000000..0d0bea3c --- /dev/null +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-unvented-crawlspace-middle-top.osw @@ -0,0 +1,341 @@ +{ + "measure_paths": [ + "../.." + ], + "steps": [ + { + "arguments": { + "air_leakage_house_pressure": 50, + "air_leakage_shielding_of_home": "auto", + "air_leakage_units": "ACH", + "air_leakage_value": 3, + "bathroom_fans_quantity": "0", + "ceiling_assembly_r": 39.3, + "ceiling_fan_cooling_setpoint_temp_offset": 0, + "ceiling_fan_efficiency": "auto", + "ceiling_fan_present": false, + "ceiling_fan_quantity": "auto", + "clothes_dryer_efficiency": "3.73", + "clothes_dryer_efficiency_type": "CombinedEnergyFactor", + "clothes_dryer_fuel_type": "electricity", + "clothes_dryer_location": "living space", + "clothes_dryer_usage_multiplier": 1.0, + "clothes_dryer_vented_flow_rate": "150.0", + "clothes_washer_capacity": "3.2", + "clothes_washer_efficiency": "1.21", + "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", + "clothes_washer_label_annual_gas_cost": "27.0", + "clothes_washer_label_electric_rate": "0.12", + "clothes_washer_label_gas_rate": "1.09", + "clothes_washer_label_usage": "6.0", + "clothes_washer_location": "living space", + "clothes_washer_rated_annual_kwh": "380.0", + "clothes_washer_usage_multiplier": 1.0, + "cooking_range_oven_fuel_type": "electricity", + "cooking_range_oven_is_convection": false, + "cooking_range_oven_is_induction": false, + "cooking_range_oven_location": "living space", + "cooking_range_oven_usage_multiplier": 1.0, + "cooling_system_cooling_capacity": "48000.0", + "cooling_system_cooling_compressor_type": "single stage", + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", + "cooling_system_cooling_sensible_heat_fraction": 0.73, + "cooling_system_fraction_cool_load_served": 1, + "cooling_system_is_ducted": false, + "cooling_system_type": "central air conditioner", + "dehumidifier_capacity": 40, + "dehumidifier_efficiency": 1.8, + "dehumidifier_efficiency_type": "EnergyFactor", + "dehumidifier_fraction_dehumidification_load_served": 1, + "dehumidifier_rh_setpoint": 0.5, + "dehumidifier_type": "none", + "dhw_distribution_pipe_r": "0.0", + "dhw_distribution_recirc_branch_piping_length": "50", + "dhw_distribution_recirc_control_type": "no control", + "dhw_distribution_recirc_piping_length": "50", + "dhw_distribution_recirc_pump_power": "50", + "dhw_distribution_standard_piping_length": "50", + "dhw_distribution_system_type": "Standard", + "dishwasher_efficiency": "307", + "dishwasher_efficiency_type": "RatedAnnualkWh", + "dishwasher_label_annual_gas_cost": "22.32", + "dishwasher_label_electric_rate": "0.12", + "dishwasher_label_gas_rate": "1.09", + "dishwasher_label_usage": "4.0", + "dishwasher_location": "living space", + "dishwasher_place_setting_capacity": "12", + "dishwasher_usage_multiplier": 1.0, + "door_area": 20.0, + "door_rvalue": 4.4, + "ducts_number_of_return_registers": "1", + "ducts_return_insulation_r": 0.0, + "ducts_return_leakage_units": "CFM25", + "ducts_return_leakage_value": 0.0, + "ducts_return_location": "living space", + "ducts_return_surface_area": "50.0", + "ducts_supply_insulation_r": 0.0, + "ducts_supply_leakage_units": "CFM25", + "ducts_supply_leakage_value": 0.0, + "ducts_supply_location": "living space", + "ducts_supply_surface_area": "150.0", + "dwhr_efficiency": 0.55, + "dwhr_equal_flow": true, + "dwhr_facilities_connected": "none", + "extra_refrigerator_location": "none", + "extra_refrigerator_rated_annual_kwh": "auto", + "extra_refrigerator_usage_multiplier": 1.0, + "floor_assembly_r": 18.7, + "foundation_wall_insulation_distance_to_bottom": 4.0, + "foundation_wall_insulation_distance_to_top": 0.0, + "foundation_wall_insulation_r": 8.9, + "foundation_wall_thickness": "8.0", + "freezer_location": "none", + "freezer_rated_annual_kwh": "auto", + "freezer_usage_multiplier": 1.0, + "fuel_loads_fireplace_annual_therm": "auto", + "fuel_loads_fireplace_frac_latent": "auto", + "fuel_loads_fireplace_frac_sensible": "auto", + "fuel_loads_fireplace_fuel_type": "natural gas", + "fuel_loads_fireplace_present": false, + "fuel_loads_fireplace_usage_multiplier": 0.0, + "fuel_loads_grill_annual_therm": "auto", + "fuel_loads_grill_fuel_type": "natural gas", + "fuel_loads_grill_present": false, + "fuel_loads_grill_usage_multiplier": 0.0, + "fuel_loads_lighting_annual_therm": "auto", + "fuel_loads_lighting_fuel_type": "natural gas", + "fuel_loads_lighting_present": false, + "fuel_loads_lighting_usage_multiplier": 0.0, + "geometry_aspect_ratio": 1.5, + "geometry_attic_type": "UnventedAttic", + "geometry_balcony_depth": 0.0, + "geometry_building_num_bedrooms": 150, + "geometry_building_num_units": 50, + "geometry_cfa": 900.0, + "geometry_corridor_position": "None", + "geometry_corridor_width": 10.0, + "geometry_eaves_depth": 0, + "geometry_foundation_height": 4.0, + "geometry_foundation_height_above_grade": 1.0, + "geometry_foundation_type": "UnventedCrawlspace", + "geometry_garage_depth": 20.0, + "geometry_garage_position": "Right", + "geometry_garage_protrusion": 0.0, + "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", + "geometry_horizontal_location": "Middle", + "geometry_inset_depth": 0.0, + "geometry_inset_position": "Right", + "geometry_inset_width": 0.0, + "geometry_level": "Top", + "geometry_num_bathrooms": "2", + "geometry_num_bedrooms": 3, + "geometry_num_floors_above_grade": 5, + "geometry_num_occupants": "3", + "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, + "geometry_roof_pitch": "6:12", + "geometry_roof_type": "gable", + "geometry_unit_type": "apartment unit", + "geometry_wall_height": 8.0, + "heat_pump_backup_fuel": "none", + "heat_pump_backup_heating_capacity": "34121.0", + "heat_pump_backup_heating_efficiency": 1, + "heat_pump_cooling_capacity": "48000.0", + "heat_pump_cooling_compressor_type": "single stage", + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", + "heat_pump_cooling_sensible_heat_fraction": 0.73, + "heat_pump_fraction_cool_load_served": 1, + "heat_pump_fraction_heat_load_served": 1, + "heat_pump_heating_capacity": "64000.0", + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", + "heat_pump_type": "none", + "heating_system_fraction_heat_load_served": 1, + "heating_system_fraction_heat_load_served_2": 0.25, + "heating_system_fuel": "natural gas", + "heating_system_fuel_2": "electricity", + "heating_system_heating_capacity": "64000.0", + "heating_system_heating_capacity_2": "auto", + "heating_system_heating_efficiency": 0.92, + "heating_system_heating_efficiency_2": 1.0, + "heating_system_type": "Furnace", + "heating_system_type_2": "none", + "holiday_lighting_daily_kwh": "auto", + "holiday_lighting_period_begin_day_of_month": "auto", + "holiday_lighting_period_begin_month": "auto", + "holiday_lighting_period_end_day_of_month": "auto", + "holiday_lighting_period_end_month": "auto", + "holiday_lighting_present": false, + "hot_tub_heater_annual_kwh": "auto", + "hot_tub_heater_annual_therm": "auto", + "hot_tub_heater_type": "electric resistance", + "hot_tub_heater_usage_multiplier": 1.0, + "hot_tub_present": false, + "hot_tub_pump_annual_kwh": "auto", + "hot_tub_pump_usage_multiplier": 1.0, + "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/extra-bldgtype-multifamily-unvented-crawlspace-middle-top.xml", + "kitchen_fans_quantity": "0", + "lighting_fraction_cfl_exterior": 0.4, + "lighting_fraction_cfl_garage": 0.4, + "lighting_fraction_cfl_interior": 0.4, + "lighting_fraction_led_exterior": 0.25, + "lighting_fraction_led_garage": 0.25, + "lighting_fraction_led_interior": 0.25, + "lighting_fraction_lfl_exterior": 0.1, + "lighting_fraction_lfl_garage": 0.1, + "lighting_fraction_lfl_interior": 0.1, + "lighting_usage_multiplier_exterior": 1.0, + "lighting_usage_multiplier_garage": 1.0, + "lighting_usage_multiplier_interior": 1.0, + "mech_vent_fan_power": 30, + "mech_vent_fan_power_2": 30, + "mech_vent_fan_type": "none", + "mech_vent_fan_type_2": "none", + "mech_vent_flow_rate": 110, + "mech_vent_flow_rate_2": 110, + "mech_vent_hours_in_operation": 24, + "mech_vent_hours_in_operation_2": 24, + "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", + "mech_vent_sensible_recovery_efficiency": 0.72, + "mech_vent_sensible_recovery_efficiency_2": 0.72, + "mech_vent_total_recovery_efficiency": 0.48, + "mech_vent_total_recovery_efficiency_2": 0.48, + "neighbor_back_distance": 0, + "neighbor_back_height": "auto", + "neighbor_front_distance": 0, + "neighbor_front_height": "auto", + "neighbor_left_distance": 0, + "neighbor_left_height": "auto", + "neighbor_right_distance": 0, + "neighbor_right_height": "auto", + "overhangs_back_depth": 0, + "overhangs_back_distance_to_top_of_window": 0, + "overhangs_front_depth": 0, + "overhangs_front_distance_to_top_of_window": 0, + "overhangs_left_depth": 0, + "overhangs_left_distance_to_top_of_window": 0, + "overhangs_right_depth": 0, + "overhangs_right_distance_to_top_of_window": 0, + "plug_loads_other_annual_kwh": "819.0", + "plug_loads_other_frac_latent": "0.045", + "plug_loads_other_frac_sensible": "0.855", + "plug_loads_other_usage_multiplier": 1.0, + "plug_loads_television_annual_kwh": "620.0", + "plug_loads_television_usage_multiplier": 1.0, + "plug_loads_vehicle_annual_kwh": "auto", + "plug_loads_vehicle_present": false, + "plug_loads_vehicle_usage_multiplier": 0.0, + "plug_loads_well_pump_annual_kwh": "auto", + "plug_loads_well_pump_present": false, + "plug_loads_well_pump_usage_multiplier": 0.0, + "pool_heater_annual_kwh": "auto", + "pool_heater_annual_therm": "auto", + "pool_heater_type": "electric resistance", + "pool_heater_usage_multiplier": 1.0, + "pool_present": false, + "pool_pump_annual_kwh": "auto", + "pool_pump_usage_multiplier": 1.0, + "pv_system_array_azimuth_1": 180, + "pv_system_array_azimuth_2": 180, + "pv_system_array_tilt_1": "20", + "pv_system_array_tilt_2": "20", + "pv_system_inverter_efficiency_1": 0.96, + "pv_system_inverter_efficiency_2": 0.96, + "pv_system_location_1": "auto", + "pv_system_location_2": "auto", + "pv_system_max_power_output_1": 4000, + "pv_system_max_power_output_2": 4000, + "pv_system_module_type_1": "none", + "pv_system_module_type_2": "none", + "pv_system_num_units_served_1": 1, + "pv_system_num_units_served_2": 1, + "pv_system_system_losses_fraction_1": 0.14, + "pv_system_system_losses_fraction_2": 0.14, + "pv_system_tracking_1": "auto", + "pv_system_tracking_2": "auto", + "refrigerator_location": "living space", + "refrigerator_rated_annual_kwh": "650.0", + "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, + "roof_assembly_r": 2.3, + "roof_color": "medium", + "roof_material_type": "asphalt or fiberglass shingles", + "roof_radiant_barrier": false, + "roof_radiant_barrier_grade": "1", + "schedules_type": "default", + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", + "simulation_control_timestep": "60", + "site_type": "suburban", + "skylight_area_back": 0, + "skylight_area_front": 0, + "skylight_area_left": 0, + "skylight_area_right": 0, + "skylight_shgc": 0.45, + "skylight_ufactor": 0.33, + "slab_carpet_fraction": "0.0", + "slab_carpet_r": "0.0", + "slab_perimeter_depth": 0, + "slab_perimeter_insulation_r": 0, + "slab_thickness": "4.0", + "slab_under_insulation_r": 0, + "slab_under_width": 0, + "solar_thermal_collector_area": 40.0, + "solar_thermal_collector_azimuth": 180, + "solar_thermal_collector_loop_type": "liquid direct", + "solar_thermal_collector_rated_optical_efficiency": 0.5, + "solar_thermal_collector_rated_thermal_losses": 0.2799, + "solar_thermal_collector_tilt": "20", + "solar_thermal_collector_type": "evacuated tube", + "solar_thermal_solar_fraction": 0, + "solar_thermal_storage_volume": "auto", + "solar_thermal_system_type": "none", + "wall_assembly_r": 23, + "wall_color": "medium", + "wall_siding_type": "wood siding", + "wall_type": "WoodStud", + "water_fixtures_shower_low_flow": true, + "water_fixtures_sink_low_flow": false, + "water_fixtures_usage_multiplier": 1.0, + "water_heater_efficiency": 0.95, + "water_heater_efficiency_type": "EnergyFactor", + "water_heater_fuel_type": "electricity", + "water_heater_jacket_rvalue": 0, + "water_heater_location": "living space", + "water_heater_num_units_served": 1, + "water_heater_recovery_efficiency": "0.76", + "water_heater_setpoint_temperature": "125", + "water_heater_standby_loss": 0, + "water_heater_tank_volume": "40", + "water_heater_type": "storage water heater", + "weather_station_epw_filepath": "USA_CO_Denver.Intl.AP.725650_TMY3.epw", + "whole_house_fan_flow_rate": 4500, + "whole_house_fan_power": 300, + "whole_house_fan_present": false, + "window_area_back": 0, + "window_area_front": 0, + "window_area_left": 0, + "window_area_right": 0, + "window_aspect_ratio": 1.333, + "window_back_wwr": 0.18, + "window_fraction_operable": 0.67, + "window_front_wwr": 0.18, + "window_interior_shading_summer": 0.7, + "window_interior_shading_winter": 0.85, + "window_left_wwr": 0.18, + "window_right_wwr": 0.18, + "window_shgc": 0.45, + "window_ufactor": 0.33 + }, + "measure_dir_name": "BuildResidentialHPXML" + } + ] +} \ No newline at end of file diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-unvented-crawlspace-right-bottom-double-loaded-interior.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-unvented-crawlspace-right-bottom-double-loaded-interior.osw new file mode 100644 index 00000000..4b32e6ed --- /dev/null +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-unvented-crawlspace-right-bottom-double-loaded-interior.osw @@ -0,0 +1,341 @@ +{ + "measure_paths": [ + "../.." + ], + "steps": [ + { + "arguments": { + "air_leakage_house_pressure": 50, + "air_leakage_shielding_of_home": "auto", + "air_leakage_units": "ACH", + "air_leakage_value": 3, + "bathroom_fans_quantity": "0", + "ceiling_assembly_r": 39.3, + "ceiling_fan_cooling_setpoint_temp_offset": 0, + "ceiling_fan_efficiency": "auto", + "ceiling_fan_present": false, + "ceiling_fan_quantity": "auto", + "clothes_dryer_efficiency": "3.73", + "clothes_dryer_efficiency_type": "CombinedEnergyFactor", + "clothes_dryer_fuel_type": "electricity", + "clothes_dryer_location": "living space", + "clothes_dryer_usage_multiplier": 1.0, + "clothes_dryer_vented_flow_rate": "150.0", + "clothes_washer_capacity": "3.2", + "clothes_washer_efficiency": "1.21", + "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", + "clothes_washer_label_annual_gas_cost": "27.0", + "clothes_washer_label_electric_rate": "0.12", + "clothes_washer_label_gas_rate": "1.09", + "clothes_washer_label_usage": "6.0", + "clothes_washer_location": "living space", + "clothes_washer_rated_annual_kwh": "380.0", + "clothes_washer_usage_multiplier": 1.0, + "cooking_range_oven_fuel_type": "electricity", + "cooking_range_oven_is_convection": false, + "cooking_range_oven_is_induction": false, + "cooking_range_oven_location": "living space", + "cooking_range_oven_usage_multiplier": 1.0, + "cooling_system_cooling_capacity": "48000.0", + "cooling_system_cooling_compressor_type": "single stage", + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", + "cooling_system_cooling_sensible_heat_fraction": 0.73, + "cooling_system_fraction_cool_load_served": 1, + "cooling_system_is_ducted": false, + "cooling_system_type": "central air conditioner", + "dehumidifier_capacity": 40, + "dehumidifier_efficiency": 1.8, + "dehumidifier_efficiency_type": "EnergyFactor", + "dehumidifier_fraction_dehumidification_load_served": 1, + "dehumidifier_rh_setpoint": 0.5, + "dehumidifier_type": "none", + "dhw_distribution_pipe_r": "0.0", + "dhw_distribution_recirc_branch_piping_length": "50", + "dhw_distribution_recirc_control_type": "no control", + "dhw_distribution_recirc_piping_length": "50", + "dhw_distribution_recirc_pump_power": "50", + "dhw_distribution_standard_piping_length": "50", + "dhw_distribution_system_type": "Standard", + "dishwasher_efficiency": "307", + "dishwasher_efficiency_type": "RatedAnnualkWh", + "dishwasher_label_annual_gas_cost": "22.32", + "dishwasher_label_electric_rate": "0.12", + "dishwasher_label_gas_rate": "1.09", + "dishwasher_label_usage": "4.0", + "dishwasher_location": "living space", + "dishwasher_place_setting_capacity": "12", + "dishwasher_usage_multiplier": 1.0, + "door_area": 20.0, + "door_rvalue": 4.4, + "ducts_number_of_return_registers": "1", + "ducts_return_insulation_r": 0.0, + "ducts_return_leakage_units": "CFM25", + "ducts_return_leakage_value": 0.0, + "ducts_return_location": "living space", + "ducts_return_surface_area": "50.0", + "ducts_supply_insulation_r": 0.0, + "ducts_supply_leakage_units": "CFM25", + "ducts_supply_leakage_value": 0.0, + "ducts_supply_location": "living space", + "ducts_supply_surface_area": "150.0", + "dwhr_efficiency": 0.55, + "dwhr_equal_flow": true, + "dwhr_facilities_connected": "none", + "extra_refrigerator_location": "none", + "extra_refrigerator_rated_annual_kwh": "auto", + "extra_refrigerator_usage_multiplier": 1.0, + "floor_assembly_r": 18.7, + "foundation_wall_insulation_distance_to_bottom": 4.0, + "foundation_wall_insulation_distance_to_top": 0.0, + "foundation_wall_insulation_r": 8.9, + "foundation_wall_thickness": "8.0", + "freezer_location": "none", + "freezer_rated_annual_kwh": "auto", + "freezer_usage_multiplier": 1.0, + "fuel_loads_fireplace_annual_therm": "auto", + "fuel_loads_fireplace_frac_latent": "auto", + "fuel_loads_fireplace_frac_sensible": "auto", + "fuel_loads_fireplace_fuel_type": "natural gas", + "fuel_loads_fireplace_present": false, + "fuel_loads_fireplace_usage_multiplier": 0.0, + "fuel_loads_grill_annual_therm": "auto", + "fuel_loads_grill_fuel_type": "natural gas", + "fuel_loads_grill_present": false, + "fuel_loads_grill_usage_multiplier": 0.0, + "fuel_loads_lighting_annual_therm": "auto", + "fuel_loads_lighting_fuel_type": "natural gas", + "fuel_loads_lighting_present": false, + "fuel_loads_lighting_usage_multiplier": 0.0, + "geometry_aspect_ratio": 1.5, + "geometry_attic_type": "UnventedAttic", + "geometry_balcony_depth": 0.0, + "geometry_building_num_bedrooms": 150, + "geometry_building_num_units": 50, + "geometry_cfa": 900.0, + "geometry_corridor_position": "Double-Loaded Interior", + "geometry_corridor_width": 10.0, + "geometry_eaves_depth": 0, + "geometry_foundation_height": 4.0, + "geometry_foundation_height_above_grade": 1.0, + "geometry_foundation_type": "UnventedCrawlspace", + "geometry_garage_depth": 20.0, + "geometry_garage_position": "Right", + "geometry_garage_protrusion": 0.0, + "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", + "geometry_horizontal_location": "Right", + "geometry_inset_depth": 0.0, + "geometry_inset_position": "Right", + "geometry_inset_width": 0.0, + "geometry_level": "Bottom", + "geometry_num_bathrooms": "2", + "geometry_num_bedrooms": 3, + "geometry_num_floors_above_grade": 5, + "geometry_num_occupants": "3", + "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, + "geometry_roof_pitch": "6:12", + "geometry_roof_type": "gable", + "geometry_unit_type": "apartment unit", + "geometry_wall_height": 8.0, + "heat_pump_backup_fuel": "none", + "heat_pump_backup_heating_capacity": "34121.0", + "heat_pump_backup_heating_efficiency": 1, + "heat_pump_cooling_capacity": "48000.0", + "heat_pump_cooling_compressor_type": "single stage", + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", + "heat_pump_cooling_sensible_heat_fraction": 0.73, + "heat_pump_fraction_cool_load_served": 1, + "heat_pump_fraction_heat_load_served": 1, + "heat_pump_heating_capacity": "64000.0", + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", + "heat_pump_type": "none", + "heating_system_fraction_heat_load_served": 1, + "heating_system_fraction_heat_load_served_2": 0.25, + "heating_system_fuel": "natural gas", + "heating_system_fuel_2": "electricity", + "heating_system_heating_capacity": "64000.0", + "heating_system_heating_capacity_2": "auto", + "heating_system_heating_efficiency": 0.92, + "heating_system_heating_efficiency_2": 1.0, + "heating_system_type": "Furnace", + "heating_system_type_2": "none", + "holiday_lighting_daily_kwh": "auto", + "holiday_lighting_period_begin_day_of_month": "auto", + "holiday_lighting_period_begin_month": "auto", + "holiday_lighting_period_end_day_of_month": "auto", + "holiday_lighting_period_end_month": "auto", + "holiday_lighting_present": false, + "hot_tub_heater_annual_kwh": "auto", + "hot_tub_heater_annual_therm": "auto", + "hot_tub_heater_type": "electric resistance", + "hot_tub_heater_usage_multiplier": 1.0, + "hot_tub_present": false, + "hot_tub_pump_annual_kwh": "auto", + "hot_tub_pump_usage_multiplier": 1.0, + "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/extra-bldgtype-multifamily-unvented-crawlspace-right-bottom-double-loaded-interior.xml", + "kitchen_fans_quantity": "0", + "lighting_fraction_cfl_exterior": 0.4, + "lighting_fraction_cfl_garage": 0.4, + "lighting_fraction_cfl_interior": 0.4, + "lighting_fraction_led_exterior": 0.25, + "lighting_fraction_led_garage": 0.25, + "lighting_fraction_led_interior": 0.25, + "lighting_fraction_lfl_exterior": 0.1, + "lighting_fraction_lfl_garage": 0.1, + "lighting_fraction_lfl_interior": 0.1, + "lighting_usage_multiplier_exterior": 1.0, + "lighting_usage_multiplier_garage": 1.0, + "lighting_usage_multiplier_interior": 1.0, + "mech_vent_fan_power": 30, + "mech_vent_fan_power_2": 30, + "mech_vent_fan_type": "none", + "mech_vent_fan_type_2": "none", + "mech_vent_flow_rate": 110, + "mech_vent_flow_rate_2": 110, + "mech_vent_hours_in_operation": 24, + "mech_vent_hours_in_operation_2": 24, + "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", + "mech_vent_sensible_recovery_efficiency": 0.72, + "mech_vent_sensible_recovery_efficiency_2": 0.72, + "mech_vent_total_recovery_efficiency": 0.48, + "mech_vent_total_recovery_efficiency_2": 0.48, + "neighbor_back_distance": 0, + "neighbor_back_height": "auto", + "neighbor_front_distance": 0, + "neighbor_front_height": "auto", + "neighbor_left_distance": 0, + "neighbor_left_height": "auto", + "neighbor_right_distance": 0, + "neighbor_right_height": "auto", + "overhangs_back_depth": 0, + "overhangs_back_distance_to_top_of_window": 0, + "overhangs_front_depth": 0, + "overhangs_front_distance_to_top_of_window": 0, + "overhangs_left_depth": 0, + "overhangs_left_distance_to_top_of_window": 0, + "overhangs_right_depth": 0, + "overhangs_right_distance_to_top_of_window": 0, + "plug_loads_other_annual_kwh": "819.0", + "plug_loads_other_frac_latent": "0.045", + "plug_loads_other_frac_sensible": "0.855", + "plug_loads_other_usage_multiplier": 1.0, + "plug_loads_television_annual_kwh": "620.0", + "plug_loads_television_usage_multiplier": 1.0, + "plug_loads_vehicle_annual_kwh": "auto", + "plug_loads_vehicle_present": false, + "plug_loads_vehicle_usage_multiplier": 0.0, + "plug_loads_well_pump_annual_kwh": "auto", + "plug_loads_well_pump_present": false, + "plug_loads_well_pump_usage_multiplier": 0.0, + "pool_heater_annual_kwh": "auto", + "pool_heater_annual_therm": "auto", + "pool_heater_type": "electric resistance", + "pool_heater_usage_multiplier": 1.0, + "pool_present": false, + "pool_pump_annual_kwh": "auto", + "pool_pump_usage_multiplier": 1.0, + "pv_system_array_azimuth_1": 180, + "pv_system_array_azimuth_2": 180, + "pv_system_array_tilt_1": "20", + "pv_system_array_tilt_2": "20", + "pv_system_inverter_efficiency_1": 0.96, + "pv_system_inverter_efficiency_2": 0.96, + "pv_system_location_1": "auto", + "pv_system_location_2": "auto", + "pv_system_max_power_output_1": 4000, + "pv_system_max_power_output_2": 4000, + "pv_system_module_type_1": "none", + "pv_system_module_type_2": "none", + "pv_system_num_units_served_1": 1, + "pv_system_num_units_served_2": 1, + "pv_system_system_losses_fraction_1": 0.14, + "pv_system_system_losses_fraction_2": 0.14, + "pv_system_tracking_1": "auto", + "pv_system_tracking_2": "auto", + "refrigerator_location": "living space", + "refrigerator_rated_annual_kwh": "650.0", + "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, + "roof_assembly_r": 2.3, + "roof_color": "medium", + "roof_material_type": "asphalt or fiberglass shingles", + "roof_radiant_barrier": false, + "roof_radiant_barrier_grade": "1", + "schedules_type": "default", + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", + "simulation_control_timestep": "60", + "site_type": "suburban", + "skylight_area_back": 0, + "skylight_area_front": 0, + "skylight_area_left": 0, + "skylight_area_right": 0, + "skylight_shgc": 0.45, + "skylight_ufactor": 0.33, + "slab_carpet_fraction": "0.0", + "slab_carpet_r": "0.0", + "slab_perimeter_depth": 0, + "slab_perimeter_insulation_r": 0, + "slab_thickness": "4.0", + "slab_under_insulation_r": 0, + "slab_under_width": 0, + "solar_thermal_collector_area": 40.0, + "solar_thermal_collector_azimuth": 180, + "solar_thermal_collector_loop_type": "liquid direct", + "solar_thermal_collector_rated_optical_efficiency": 0.5, + "solar_thermal_collector_rated_thermal_losses": 0.2799, + "solar_thermal_collector_tilt": "20", + "solar_thermal_collector_type": "evacuated tube", + "solar_thermal_solar_fraction": 0, + "solar_thermal_storage_volume": "auto", + "solar_thermal_system_type": "none", + "wall_assembly_r": 23, + "wall_color": "medium", + "wall_siding_type": "wood siding", + "wall_type": "WoodStud", + "water_fixtures_shower_low_flow": true, + "water_fixtures_sink_low_flow": false, + "water_fixtures_usage_multiplier": 1.0, + "water_heater_efficiency": 0.95, + "water_heater_efficiency_type": "EnergyFactor", + "water_heater_fuel_type": "electricity", + "water_heater_jacket_rvalue": 0, + "water_heater_location": "living space", + "water_heater_num_units_served": 1, + "water_heater_recovery_efficiency": "0.76", + "water_heater_setpoint_temperature": "125", + "water_heater_standby_loss": 0, + "water_heater_tank_volume": "40", + "water_heater_type": "storage water heater", + "weather_station_epw_filepath": "USA_CO_Denver.Intl.AP.725650_TMY3.epw", + "whole_house_fan_flow_rate": 4500, + "whole_house_fan_power": 300, + "whole_house_fan_present": false, + "window_area_back": 0, + "window_area_front": 0, + "window_area_left": 0, + "window_area_right": 0, + "window_aspect_ratio": 1.333, + "window_back_wwr": 0.18, + "window_fraction_operable": 0.67, + "window_front_wwr": 0.18, + "window_interior_shading_summer": 0.7, + "window_interior_shading_winter": 0.85, + "window_left_wwr": 0.18, + "window_right_wwr": 0.18, + "window_shgc": 0.45, + "window_ufactor": 0.33 + }, + "measure_dir_name": "BuildResidentialHPXML" + } + ] +} \ No newline at end of file diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-unvented-crawlspace-right-bottom.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-unvented-crawlspace-right-bottom.osw new file mode 100644 index 00000000..7b68232f --- /dev/null +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-unvented-crawlspace-right-bottom.osw @@ -0,0 +1,341 @@ +{ + "measure_paths": [ + "../.." + ], + "steps": [ + { + "arguments": { + "air_leakage_house_pressure": 50, + "air_leakage_shielding_of_home": "auto", + "air_leakage_units": "ACH", + "air_leakage_value": 3, + "bathroom_fans_quantity": "0", + "ceiling_assembly_r": 39.3, + "ceiling_fan_cooling_setpoint_temp_offset": 0, + "ceiling_fan_efficiency": "auto", + "ceiling_fan_present": false, + "ceiling_fan_quantity": "auto", + "clothes_dryer_efficiency": "3.73", + "clothes_dryer_efficiency_type": "CombinedEnergyFactor", + "clothes_dryer_fuel_type": "electricity", + "clothes_dryer_location": "living space", + "clothes_dryer_usage_multiplier": 1.0, + "clothes_dryer_vented_flow_rate": "150.0", + "clothes_washer_capacity": "3.2", + "clothes_washer_efficiency": "1.21", + "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", + "clothes_washer_label_annual_gas_cost": "27.0", + "clothes_washer_label_electric_rate": "0.12", + "clothes_washer_label_gas_rate": "1.09", + "clothes_washer_label_usage": "6.0", + "clothes_washer_location": "living space", + "clothes_washer_rated_annual_kwh": "380.0", + "clothes_washer_usage_multiplier": 1.0, + "cooking_range_oven_fuel_type": "electricity", + "cooking_range_oven_is_convection": false, + "cooking_range_oven_is_induction": false, + "cooking_range_oven_location": "living space", + "cooking_range_oven_usage_multiplier": 1.0, + "cooling_system_cooling_capacity": "48000.0", + "cooling_system_cooling_compressor_type": "single stage", + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", + "cooling_system_cooling_sensible_heat_fraction": 0.73, + "cooling_system_fraction_cool_load_served": 1, + "cooling_system_is_ducted": false, + "cooling_system_type": "central air conditioner", + "dehumidifier_capacity": 40, + "dehumidifier_efficiency": 1.8, + "dehumidifier_efficiency_type": "EnergyFactor", + "dehumidifier_fraction_dehumidification_load_served": 1, + "dehumidifier_rh_setpoint": 0.5, + "dehumidifier_type": "none", + "dhw_distribution_pipe_r": "0.0", + "dhw_distribution_recirc_branch_piping_length": "50", + "dhw_distribution_recirc_control_type": "no control", + "dhw_distribution_recirc_piping_length": "50", + "dhw_distribution_recirc_pump_power": "50", + "dhw_distribution_standard_piping_length": "50", + "dhw_distribution_system_type": "Standard", + "dishwasher_efficiency": "307", + "dishwasher_efficiency_type": "RatedAnnualkWh", + "dishwasher_label_annual_gas_cost": "22.32", + "dishwasher_label_electric_rate": "0.12", + "dishwasher_label_gas_rate": "1.09", + "dishwasher_label_usage": "4.0", + "dishwasher_location": "living space", + "dishwasher_place_setting_capacity": "12", + "dishwasher_usage_multiplier": 1.0, + "door_area": 20.0, + "door_rvalue": 4.4, + "ducts_number_of_return_registers": "1", + "ducts_return_insulation_r": 0.0, + "ducts_return_leakage_units": "CFM25", + "ducts_return_leakage_value": 0.0, + "ducts_return_location": "living space", + "ducts_return_surface_area": "50.0", + "ducts_supply_insulation_r": 0.0, + "ducts_supply_leakage_units": "CFM25", + "ducts_supply_leakage_value": 0.0, + "ducts_supply_location": "living space", + "ducts_supply_surface_area": "150.0", + "dwhr_efficiency": 0.55, + "dwhr_equal_flow": true, + "dwhr_facilities_connected": "none", + "extra_refrigerator_location": "none", + "extra_refrigerator_rated_annual_kwh": "auto", + "extra_refrigerator_usage_multiplier": 1.0, + "floor_assembly_r": 18.7, + "foundation_wall_insulation_distance_to_bottom": 4.0, + "foundation_wall_insulation_distance_to_top": 0.0, + "foundation_wall_insulation_r": 8.9, + "foundation_wall_thickness": "8.0", + "freezer_location": "none", + "freezer_rated_annual_kwh": "auto", + "freezer_usage_multiplier": 1.0, + "fuel_loads_fireplace_annual_therm": "auto", + "fuel_loads_fireplace_frac_latent": "auto", + "fuel_loads_fireplace_frac_sensible": "auto", + "fuel_loads_fireplace_fuel_type": "natural gas", + "fuel_loads_fireplace_present": false, + "fuel_loads_fireplace_usage_multiplier": 0.0, + "fuel_loads_grill_annual_therm": "auto", + "fuel_loads_grill_fuel_type": "natural gas", + "fuel_loads_grill_present": false, + "fuel_loads_grill_usage_multiplier": 0.0, + "fuel_loads_lighting_annual_therm": "auto", + "fuel_loads_lighting_fuel_type": "natural gas", + "fuel_loads_lighting_present": false, + "fuel_loads_lighting_usage_multiplier": 0.0, + "geometry_aspect_ratio": 1.5, + "geometry_attic_type": "UnventedAttic", + "geometry_balcony_depth": 0.0, + "geometry_building_num_bedrooms": 150, + "geometry_building_num_units": 50, + "geometry_cfa": 900.0, + "geometry_corridor_position": "None", + "geometry_corridor_width": 10.0, + "geometry_eaves_depth": 0, + "geometry_foundation_height": 4.0, + "geometry_foundation_height_above_grade": 1.0, + "geometry_foundation_type": "UnventedCrawlspace", + "geometry_garage_depth": 20.0, + "geometry_garage_position": "Right", + "geometry_garage_protrusion": 0.0, + "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", + "geometry_horizontal_location": "Right", + "geometry_inset_depth": 0.0, + "geometry_inset_position": "Right", + "geometry_inset_width": 0.0, + "geometry_level": "Bottom", + "geometry_num_bathrooms": "2", + "geometry_num_bedrooms": 3, + "geometry_num_floors_above_grade": 5, + "geometry_num_occupants": "3", + "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, + "geometry_roof_pitch": "6:12", + "geometry_roof_type": "gable", + "geometry_unit_type": "apartment unit", + "geometry_wall_height": 8.0, + "heat_pump_backup_fuel": "none", + "heat_pump_backup_heating_capacity": "34121.0", + "heat_pump_backup_heating_efficiency": 1, + "heat_pump_cooling_capacity": "48000.0", + "heat_pump_cooling_compressor_type": "single stage", + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", + "heat_pump_cooling_sensible_heat_fraction": 0.73, + "heat_pump_fraction_cool_load_served": 1, + "heat_pump_fraction_heat_load_served": 1, + "heat_pump_heating_capacity": "64000.0", + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", + "heat_pump_type": "none", + "heating_system_fraction_heat_load_served": 1, + "heating_system_fraction_heat_load_served_2": 0.25, + "heating_system_fuel": "natural gas", + "heating_system_fuel_2": "electricity", + "heating_system_heating_capacity": "64000.0", + "heating_system_heating_capacity_2": "auto", + "heating_system_heating_efficiency": 0.92, + "heating_system_heating_efficiency_2": 1.0, + "heating_system_type": "Furnace", + "heating_system_type_2": "none", + "holiday_lighting_daily_kwh": "auto", + "holiday_lighting_period_begin_day_of_month": "auto", + "holiday_lighting_period_begin_month": "auto", + "holiday_lighting_period_end_day_of_month": "auto", + "holiday_lighting_period_end_month": "auto", + "holiday_lighting_present": false, + "hot_tub_heater_annual_kwh": "auto", + "hot_tub_heater_annual_therm": "auto", + "hot_tub_heater_type": "electric resistance", + "hot_tub_heater_usage_multiplier": 1.0, + "hot_tub_present": false, + "hot_tub_pump_annual_kwh": "auto", + "hot_tub_pump_usage_multiplier": 1.0, + "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/extra-bldgtype-multifamily-unvented-crawlspace-right-bottom.xml", + "kitchen_fans_quantity": "0", + "lighting_fraction_cfl_exterior": 0.4, + "lighting_fraction_cfl_garage": 0.4, + "lighting_fraction_cfl_interior": 0.4, + "lighting_fraction_led_exterior": 0.25, + "lighting_fraction_led_garage": 0.25, + "lighting_fraction_led_interior": 0.25, + "lighting_fraction_lfl_exterior": 0.1, + "lighting_fraction_lfl_garage": 0.1, + "lighting_fraction_lfl_interior": 0.1, + "lighting_usage_multiplier_exterior": 1.0, + "lighting_usage_multiplier_garage": 1.0, + "lighting_usage_multiplier_interior": 1.0, + "mech_vent_fan_power": 30, + "mech_vent_fan_power_2": 30, + "mech_vent_fan_type": "none", + "mech_vent_fan_type_2": "none", + "mech_vent_flow_rate": 110, + "mech_vent_flow_rate_2": 110, + "mech_vent_hours_in_operation": 24, + "mech_vent_hours_in_operation_2": 24, + "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", + "mech_vent_sensible_recovery_efficiency": 0.72, + "mech_vent_sensible_recovery_efficiency_2": 0.72, + "mech_vent_total_recovery_efficiency": 0.48, + "mech_vent_total_recovery_efficiency_2": 0.48, + "neighbor_back_distance": 0, + "neighbor_back_height": "auto", + "neighbor_front_distance": 0, + "neighbor_front_height": "auto", + "neighbor_left_distance": 0, + "neighbor_left_height": "auto", + "neighbor_right_distance": 0, + "neighbor_right_height": "auto", + "overhangs_back_depth": 0, + "overhangs_back_distance_to_top_of_window": 0, + "overhangs_front_depth": 0, + "overhangs_front_distance_to_top_of_window": 0, + "overhangs_left_depth": 0, + "overhangs_left_distance_to_top_of_window": 0, + "overhangs_right_depth": 0, + "overhangs_right_distance_to_top_of_window": 0, + "plug_loads_other_annual_kwh": "819.0", + "plug_loads_other_frac_latent": "0.045", + "plug_loads_other_frac_sensible": "0.855", + "plug_loads_other_usage_multiplier": 1.0, + "plug_loads_television_annual_kwh": "620.0", + "plug_loads_television_usage_multiplier": 1.0, + "plug_loads_vehicle_annual_kwh": "auto", + "plug_loads_vehicle_present": false, + "plug_loads_vehicle_usage_multiplier": 0.0, + "plug_loads_well_pump_annual_kwh": "auto", + "plug_loads_well_pump_present": false, + "plug_loads_well_pump_usage_multiplier": 0.0, + "pool_heater_annual_kwh": "auto", + "pool_heater_annual_therm": "auto", + "pool_heater_type": "electric resistance", + "pool_heater_usage_multiplier": 1.0, + "pool_present": false, + "pool_pump_annual_kwh": "auto", + "pool_pump_usage_multiplier": 1.0, + "pv_system_array_azimuth_1": 180, + "pv_system_array_azimuth_2": 180, + "pv_system_array_tilt_1": "20", + "pv_system_array_tilt_2": "20", + "pv_system_inverter_efficiency_1": 0.96, + "pv_system_inverter_efficiency_2": 0.96, + "pv_system_location_1": "auto", + "pv_system_location_2": "auto", + "pv_system_max_power_output_1": 4000, + "pv_system_max_power_output_2": 4000, + "pv_system_module_type_1": "none", + "pv_system_module_type_2": "none", + "pv_system_num_units_served_1": 1, + "pv_system_num_units_served_2": 1, + "pv_system_system_losses_fraction_1": 0.14, + "pv_system_system_losses_fraction_2": 0.14, + "pv_system_tracking_1": "auto", + "pv_system_tracking_2": "auto", + "refrigerator_location": "living space", + "refrigerator_rated_annual_kwh": "650.0", + "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, + "roof_assembly_r": 2.3, + "roof_color": "medium", + "roof_material_type": "asphalt or fiberglass shingles", + "roof_radiant_barrier": false, + "roof_radiant_barrier_grade": "1", + "schedules_type": "default", + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", + "simulation_control_timestep": "60", + "site_type": "suburban", + "skylight_area_back": 0, + "skylight_area_front": 0, + "skylight_area_left": 0, + "skylight_area_right": 0, + "skylight_shgc": 0.45, + "skylight_ufactor": 0.33, + "slab_carpet_fraction": "0.0", + "slab_carpet_r": "0.0", + "slab_perimeter_depth": 0, + "slab_perimeter_insulation_r": 0, + "slab_thickness": "4.0", + "slab_under_insulation_r": 0, + "slab_under_width": 0, + "solar_thermal_collector_area": 40.0, + "solar_thermal_collector_azimuth": 180, + "solar_thermal_collector_loop_type": "liquid direct", + "solar_thermal_collector_rated_optical_efficiency": 0.5, + "solar_thermal_collector_rated_thermal_losses": 0.2799, + "solar_thermal_collector_tilt": "20", + "solar_thermal_collector_type": "evacuated tube", + "solar_thermal_solar_fraction": 0, + "solar_thermal_storage_volume": "auto", + "solar_thermal_system_type": "none", + "wall_assembly_r": 23, + "wall_color": "medium", + "wall_siding_type": "wood siding", + "wall_type": "WoodStud", + "water_fixtures_shower_low_flow": true, + "water_fixtures_sink_low_flow": false, + "water_fixtures_usage_multiplier": 1.0, + "water_heater_efficiency": 0.95, + "water_heater_efficiency_type": "EnergyFactor", + "water_heater_fuel_type": "electricity", + "water_heater_jacket_rvalue": 0, + "water_heater_location": "living space", + "water_heater_num_units_served": 1, + "water_heater_recovery_efficiency": "0.76", + "water_heater_setpoint_temperature": "125", + "water_heater_standby_loss": 0, + "water_heater_tank_volume": "40", + "water_heater_type": "storage water heater", + "weather_station_epw_filepath": "USA_CO_Denver.Intl.AP.725650_TMY3.epw", + "whole_house_fan_flow_rate": 4500, + "whole_house_fan_power": 300, + "whole_house_fan_present": false, + "window_area_back": 0, + "window_area_front": 0, + "window_area_left": 0, + "window_area_right": 0, + "window_aspect_ratio": 1.333, + "window_back_wwr": 0.18, + "window_fraction_operable": 0.67, + "window_front_wwr": 0.18, + "window_interior_shading_summer": 0.7, + "window_interior_shading_winter": 0.85, + "window_left_wwr": 0.18, + "window_right_wwr": 0.18, + "window_shgc": 0.45, + "window_ufactor": 0.33 + }, + "measure_dir_name": "BuildResidentialHPXML" + } + ] +} \ No newline at end of file diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-unvented-crawlspace-right-middle-double-loaded-interior.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-unvented-crawlspace-right-middle-double-loaded-interior.osw new file mode 100644 index 00000000..99c4dcaf --- /dev/null +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-unvented-crawlspace-right-middle-double-loaded-interior.osw @@ -0,0 +1,341 @@ +{ + "measure_paths": [ + "../.." + ], + "steps": [ + { + "arguments": { + "air_leakage_house_pressure": 50, + "air_leakage_shielding_of_home": "auto", + "air_leakage_units": "ACH", + "air_leakage_value": 3, + "bathroom_fans_quantity": "0", + "ceiling_assembly_r": 39.3, + "ceiling_fan_cooling_setpoint_temp_offset": 0, + "ceiling_fan_efficiency": "auto", + "ceiling_fan_present": false, + "ceiling_fan_quantity": "auto", + "clothes_dryer_efficiency": "3.73", + "clothes_dryer_efficiency_type": "CombinedEnergyFactor", + "clothes_dryer_fuel_type": "electricity", + "clothes_dryer_location": "living space", + "clothes_dryer_usage_multiplier": 1.0, + "clothes_dryer_vented_flow_rate": "150.0", + "clothes_washer_capacity": "3.2", + "clothes_washer_efficiency": "1.21", + "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", + "clothes_washer_label_annual_gas_cost": "27.0", + "clothes_washer_label_electric_rate": "0.12", + "clothes_washer_label_gas_rate": "1.09", + "clothes_washer_label_usage": "6.0", + "clothes_washer_location": "living space", + "clothes_washer_rated_annual_kwh": "380.0", + "clothes_washer_usage_multiplier": 1.0, + "cooking_range_oven_fuel_type": "electricity", + "cooking_range_oven_is_convection": false, + "cooking_range_oven_is_induction": false, + "cooking_range_oven_location": "living space", + "cooking_range_oven_usage_multiplier": 1.0, + "cooling_system_cooling_capacity": "48000.0", + "cooling_system_cooling_compressor_type": "single stage", + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", + "cooling_system_cooling_sensible_heat_fraction": 0.73, + "cooling_system_fraction_cool_load_served": 1, + "cooling_system_is_ducted": false, + "cooling_system_type": "central air conditioner", + "dehumidifier_capacity": 40, + "dehumidifier_efficiency": 1.8, + "dehumidifier_efficiency_type": "EnergyFactor", + "dehumidifier_fraction_dehumidification_load_served": 1, + "dehumidifier_rh_setpoint": 0.5, + "dehumidifier_type": "none", + "dhw_distribution_pipe_r": "0.0", + "dhw_distribution_recirc_branch_piping_length": "50", + "dhw_distribution_recirc_control_type": "no control", + "dhw_distribution_recirc_piping_length": "50", + "dhw_distribution_recirc_pump_power": "50", + "dhw_distribution_standard_piping_length": "50", + "dhw_distribution_system_type": "Standard", + "dishwasher_efficiency": "307", + "dishwasher_efficiency_type": "RatedAnnualkWh", + "dishwasher_label_annual_gas_cost": "22.32", + "dishwasher_label_electric_rate": "0.12", + "dishwasher_label_gas_rate": "1.09", + "dishwasher_label_usage": "4.0", + "dishwasher_location": "living space", + "dishwasher_place_setting_capacity": "12", + "dishwasher_usage_multiplier": 1.0, + "door_area": 20.0, + "door_rvalue": 4.4, + "ducts_number_of_return_registers": "1", + "ducts_return_insulation_r": 0.0, + "ducts_return_leakage_units": "CFM25", + "ducts_return_leakage_value": 0.0, + "ducts_return_location": "living space", + "ducts_return_surface_area": "50.0", + "ducts_supply_insulation_r": 0.0, + "ducts_supply_leakage_units": "CFM25", + "ducts_supply_leakage_value": 0.0, + "ducts_supply_location": "living space", + "ducts_supply_surface_area": "150.0", + "dwhr_efficiency": 0.55, + "dwhr_equal_flow": true, + "dwhr_facilities_connected": "none", + "extra_refrigerator_location": "none", + "extra_refrigerator_rated_annual_kwh": "auto", + "extra_refrigerator_usage_multiplier": 1.0, + "floor_assembly_r": 18.7, + "foundation_wall_insulation_distance_to_bottom": 4.0, + "foundation_wall_insulation_distance_to_top": 0.0, + "foundation_wall_insulation_r": 8.9, + "foundation_wall_thickness": "8.0", + "freezer_location": "none", + "freezer_rated_annual_kwh": "auto", + "freezer_usage_multiplier": 1.0, + "fuel_loads_fireplace_annual_therm": "auto", + "fuel_loads_fireplace_frac_latent": "auto", + "fuel_loads_fireplace_frac_sensible": "auto", + "fuel_loads_fireplace_fuel_type": "natural gas", + "fuel_loads_fireplace_present": false, + "fuel_loads_fireplace_usage_multiplier": 0.0, + "fuel_loads_grill_annual_therm": "auto", + "fuel_loads_grill_fuel_type": "natural gas", + "fuel_loads_grill_present": false, + "fuel_loads_grill_usage_multiplier": 0.0, + "fuel_loads_lighting_annual_therm": "auto", + "fuel_loads_lighting_fuel_type": "natural gas", + "fuel_loads_lighting_present": false, + "fuel_loads_lighting_usage_multiplier": 0.0, + "geometry_aspect_ratio": 1.5, + "geometry_attic_type": "UnventedAttic", + "geometry_balcony_depth": 0.0, + "geometry_building_num_bedrooms": 150, + "geometry_building_num_units": 50, + "geometry_cfa": 900.0, + "geometry_corridor_position": "Double-Loaded Interior", + "geometry_corridor_width": 10.0, + "geometry_eaves_depth": 0, + "geometry_foundation_height": 4.0, + "geometry_foundation_height_above_grade": 1.0, + "geometry_foundation_type": "UnventedCrawlspace", + "geometry_garage_depth": 20.0, + "geometry_garage_position": "Right", + "geometry_garage_protrusion": 0.0, + "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", + "geometry_horizontal_location": "Right", + "geometry_inset_depth": 0.0, + "geometry_inset_position": "Right", + "geometry_inset_width": 0.0, + "geometry_level": "Middle", + "geometry_num_bathrooms": "2", + "geometry_num_bedrooms": 3, + "geometry_num_floors_above_grade": 5, + "geometry_num_occupants": "3", + "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, + "geometry_roof_pitch": "6:12", + "geometry_roof_type": "gable", + "geometry_unit_type": "apartment unit", + "geometry_wall_height": 8.0, + "heat_pump_backup_fuel": "none", + "heat_pump_backup_heating_capacity": "34121.0", + "heat_pump_backup_heating_efficiency": 1, + "heat_pump_cooling_capacity": "48000.0", + "heat_pump_cooling_compressor_type": "single stage", + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", + "heat_pump_cooling_sensible_heat_fraction": 0.73, + "heat_pump_fraction_cool_load_served": 1, + "heat_pump_fraction_heat_load_served": 1, + "heat_pump_heating_capacity": "64000.0", + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", + "heat_pump_type": "none", + "heating_system_fraction_heat_load_served": 1, + "heating_system_fraction_heat_load_served_2": 0.25, + "heating_system_fuel": "natural gas", + "heating_system_fuel_2": "electricity", + "heating_system_heating_capacity": "64000.0", + "heating_system_heating_capacity_2": "auto", + "heating_system_heating_efficiency": 0.92, + "heating_system_heating_efficiency_2": 1.0, + "heating_system_type": "Furnace", + "heating_system_type_2": "none", + "holiday_lighting_daily_kwh": "auto", + "holiday_lighting_period_begin_day_of_month": "auto", + "holiday_lighting_period_begin_month": "auto", + "holiday_lighting_period_end_day_of_month": "auto", + "holiday_lighting_period_end_month": "auto", + "holiday_lighting_present": false, + "hot_tub_heater_annual_kwh": "auto", + "hot_tub_heater_annual_therm": "auto", + "hot_tub_heater_type": "electric resistance", + "hot_tub_heater_usage_multiplier": 1.0, + "hot_tub_present": false, + "hot_tub_pump_annual_kwh": "auto", + "hot_tub_pump_usage_multiplier": 1.0, + "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/extra-bldgtype-multifamily-unvented-crawlspace-right-middle-double-loaded-interior.xml", + "kitchen_fans_quantity": "0", + "lighting_fraction_cfl_exterior": 0.4, + "lighting_fraction_cfl_garage": 0.4, + "lighting_fraction_cfl_interior": 0.4, + "lighting_fraction_led_exterior": 0.25, + "lighting_fraction_led_garage": 0.25, + "lighting_fraction_led_interior": 0.25, + "lighting_fraction_lfl_exterior": 0.1, + "lighting_fraction_lfl_garage": 0.1, + "lighting_fraction_lfl_interior": 0.1, + "lighting_usage_multiplier_exterior": 1.0, + "lighting_usage_multiplier_garage": 1.0, + "lighting_usage_multiplier_interior": 1.0, + "mech_vent_fan_power": 30, + "mech_vent_fan_power_2": 30, + "mech_vent_fan_type": "none", + "mech_vent_fan_type_2": "none", + "mech_vent_flow_rate": 110, + "mech_vent_flow_rate_2": 110, + "mech_vent_hours_in_operation": 24, + "mech_vent_hours_in_operation_2": 24, + "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", + "mech_vent_sensible_recovery_efficiency": 0.72, + "mech_vent_sensible_recovery_efficiency_2": 0.72, + "mech_vent_total_recovery_efficiency": 0.48, + "mech_vent_total_recovery_efficiency_2": 0.48, + "neighbor_back_distance": 0, + "neighbor_back_height": "auto", + "neighbor_front_distance": 0, + "neighbor_front_height": "auto", + "neighbor_left_distance": 0, + "neighbor_left_height": "auto", + "neighbor_right_distance": 0, + "neighbor_right_height": "auto", + "overhangs_back_depth": 0, + "overhangs_back_distance_to_top_of_window": 0, + "overhangs_front_depth": 0, + "overhangs_front_distance_to_top_of_window": 0, + "overhangs_left_depth": 0, + "overhangs_left_distance_to_top_of_window": 0, + "overhangs_right_depth": 0, + "overhangs_right_distance_to_top_of_window": 0, + "plug_loads_other_annual_kwh": "819.0", + "plug_loads_other_frac_latent": "0.045", + "plug_loads_other_frac_sensible": "0.855", + "plug_loads_other_usage_multiplier": 1.0, + "plug_loads_television_annual_kwh": "620.0", + "plug_loads_television_usage_multiplier": 1.0, + "plug_loads_vehicle_annual_kwh": "auto", + "plug_loads_vehicle_present": false, + "plug_loads_vehicle_usage_multiplier": 0.0, + "plug_loads_well_pump_annual_kwh": "auto", + "plug_loads_well_pump_present": false, + "plug_loads_well_pump_usage_multiplier": 0.0, + "pool_heater_annual_kwh": "auto", + "pool_heater_annual_therm": "auto", + "pool_heater_type": "electric resistance", + "pool_heater_usage_multiplier": 1.0, + "pool_present": false, + "pool_pump_annual_kwh": "auto", + "pool_pump_usage_multiplier": 1.0, + "pv_system_array_azimuth_1": 180, + "pv_system_array_azimuth_2": 180, + "pv_system_array_tilt_1": "20", + "pv_system_array_tilt_2": "20", + "pv_system_inverter_efficiency_1": 0.96, + "pv_system_inverter_efficiency_2": 0.96, + "pv_system_location_1": "auto", + "pv_system_location_2": "auto", + "pv_system_max_power_output_1": 4000, + "pv_system_max_power_output_2": 4000, + "pv_system_module_type_1": "none", + "pv_system_module_type_2": "none", + "pv_system_num_units_served_1": 1, + "pv_system_num_units_served_2": 1, + "pv_system_system_losses_fraction_1": 0.14, + "pv_system_system_losses_fraction_2": 0.14, + "pv_system_tracking_1": "auto", + "pv_system_tracking_2": "auto", + "refrigerator_location": "living space", + "refrigerator_rated_annual_kwh": "650.0", + "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, + "roof_assembly_r": 2.3, + "roof_color": "medium", + "roof_material_type": "asphalt or fiberglass shingles", + "roof_radiant_barrier": false, + "roof_radiant_barrier_grade": "1", + "schedules_type": "default", + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", + "simulation_control_timestep": "60", + "site_type": "suburban", + "skylight_area_back": 0, + "skylight_area_front": 0, + "skylight_area_left": 0, + "skylight_area_right": 0, + "skylight_shgc": 0.45, + "skylight_ufactor": 0.33, + "slab_carpet_fraction": "0.0", + "slab_carpet_r": "0.0", + "slab_perimeter_depth": 0, + "slab_perimeter_insulation_r": 0, + "slab_thickness": "4.0", + "slab_under_insulation_r": 0, + "slab_under_width": 0, + "solar_thermal_collector_area": 40.0, + "solar_thermal_collector_azimuth": 180, + "solar_thermal_collector_loop_type": "liquid direct", + "solar_thermal_collector_rated_optical_efficiency": 0.5, + "solar_thermal_collector_rated_thermal_losses": 0.2799, + "solar_thermal_collector_tilt": "20", + "solar_thermal_collector_type": "evacuated tube", + "solar_thermal_solar_fraction": 0, + "solar_thermal_storage_volume": "auto", + "solar_thermal_system_type": "none", + "wall_assembly_r": 23, + "wall_color": "medium", + "wall_siding_type": "wood siding", + "wall_type": "WoodStud", + "water_fixtures_shower_low_flow": true, + "water_fixtures_sink_low_flow": false, + "water_fixtures_usage_multiplier": 1.0, + "water_heater_efficiency": 0.95, + "water_heater_efficiency_type": "EnergyFactor", + "water_heater_fuel_type": "electricity", + "water_heater_jacket_rvalue": 0, + "water_heater_location": "living space", + "water_heater_num_units_served": 1, + "water_heater_recovery_efficiency": "0.76", + "water_heater_setpoint_temperature": "125", + "water_heater_standby_loss": 0, + "water_heater_tank_volume": "40", + "water_heater_type": "storage water heater", + "weather_station_epw_filepath": "USA_CO_Denver.Intl.AP.725650_TMY3.epw", + "whole_house_fan_flow_rate": 4500, + "whole_house_fan_power": 300, + "whole_house_fan_present": false, + "window_area_back": 0, + "window_area_front": 0, + "window_area_left": 0, + "window_area_right": 0, + "window_aspect_ratio": 1.333, + "window_back_wwr": 0.18, + "window_fraction_operable": 0.67, + "window_front_wwr": 0.18, + "window_interior_shading_summer": 0.7, + "window_interior_shading_winter": 0.85, + "window_left_wwr": 0.18, + "window_right_wwr": 0.18, + "window_shgc": 0.45, + "window_ufactor": 0.33 + }, + "measure_dir_name": "BuildResidentialHPXML" + } + ] +} \ No newline at end of file diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-unvented-crawlspace-right-middle.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-unvented-crawlspace-right-middle.osw new file mode 100644 index 00000000..4bef7775 --- /dev/null +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-unvented-crawlspace-right-middle.osw @@ -0,0 +1,341 @@ +{ + "measure_paths": [ + "../.." + ], + "steps": [ + { + "arguments": { + "air_leakage_house_pressure": 50, + "air_leakage_shielding_of_home": "auto", + "air_leakage_units": "ACH", + "air_leakage_value": 3, + "bathroom_fans_quantity": "0", + "ceiling_assembly_r": 39.3, + "ceiling_fan_cooling_setpoint_temp_offset": 0, + "ceiling_fan_efficiency": "auto", + "ceiling_fan_present": false, + "ceiling_fan_quantity": "auto", + "clothes_dryer_efficiency": "3.73", + "clothes_dryer_efficiency_type": "CombinedEnergyFactor", + "clothes_dryer_fuel_type": "electricity", + "clothes_dryer_location": "living space", + "clothes_dryer_usage_multiplier": 1.0, + "clothes_dryer_vented_flow_rate": "150.0", + "clothes_washer_capacity": "3.2", + "clothes_washer_efficiency": "1.21", + "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", + "clothes_washer_label_annual_gas_cost": "27.0", + "clothes_washer_label_electric_rate": "0.12", + "clothes_washer_label_gas_rate": "1.09", + "clothes_washer_label_usage": "6.0", + "clothes_washer_location": "living space", + "clothes_washer_rated_annual_kwh": "380.0", + "clothes_washer_usage_multiplier": 1.0, + "cooking_range_oven_fuel_type": "electricity", + "cooking_range_oven_is_convection": false, + "cooking_range_oven_is_induction": false, + "cooking_range_oven_location": "living space", + "cooking_range_oven_usage_multiplier": 1.0, + "cooling_system_cooling_capacity": "48000.0", + "cooling_system_cooling_compressor_type": "single stage", + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", + "cooling_system_cooling_sensible_heat_fraction": 0.73, + "cooling_system_fraction_cool_load_served": 1, + "cooling_system_is_ducted": false, + "cooling_system_type": "central air conditioner", + "dehumidifier_capacity": 40, + "dehumidifier_efficiency": 1.8, + "dehumidifier_efficiency_type": "EnergyFactor", + "dehumidifier_fraction_dehumidification_load_served": 1, + "dehumidifier_rh_setpoint": 0.5, + "dehumidifier_type": "none", + "dhw_distribution_pipe_r": "0.0", + "dhw_distribution_recirc_branch_piping_length": "50", + "dhw_distribution_recirc_control_type": "no control", + "dhw_distribution_recirc_piping_length": "50", + "dhw_distribution_recirc_pump_power": "50", + "dhw_distribution_standard_piping_length": "50", + "dhw_distribution_system_type": "Standard", + "dishwasher_efficiency": "307", + "dishwasher_efficiency_type": "RatedAnnualkWh", + "dishwasher_label_annual_gas_cost": "22.32", + "dishwasher_label_electric_rate": "0.12", + "dishwasher_label_gas_rate": "1.09", + "dishwasher_label_usage": "4.0", + "dishwasher_location": "living space", + "dishwasher_place_setting_capacity": "12", + "dishwasher_usage_multiplier": 1.0, + "door_area": 20.0, + "door_rvalue": 4.4, + "ducts_number_of_return_registers": "1", + "ducts_return_insulation_r": 0.0, + "ducts_return_leakage_units": "CFM25", + "ducts_return_leakage_value": 0.0, + "ducts_return_location": "living space", + "ducts_return_surface_area": "50.0", + "ducts_supply_insulation_r": 0.0, + "ducts_supply_leakage_units": "CFM25", + "ducts_supply_leakage_value": 0.0, + "ducts_supply_location": "living space", + "ducts_supply_surface_area": "150.0", + "dwhr_efficiency": 0.55, + "dwhr_equal_flow": true, + "dwhr_facilities_connected": "none", + "extra_refrigerator_location": "none", + "extra_refrigerator_rated_annual_kwh": "auto", + "extra_refrigerator_usage_multiplier": 1.0, + "floor_assembly_r": 18.7, + "foundation_wall_insulation_distance_to_bottom": 4.0, + "foundation_wall_insulation_distance_to_top": 0.0, + "foundation_wall_insulation_r": 8.9, + "foundation_wall_thickness": "8.0", + "freezer_location": "none", + "freezer_rated_annual_kwh": "auto", + "freezer_usage_multiplier": 1.0, + "fuel_loads_fireplace_annual_therm": "auto", + "fuel_loads_fireplace_frac_latent": "auto", + "fuel_loads_fireplace_frac_sensible": "auto", + "fuel_loads_fireplace_fuel_type": "natural gas", + "fuel_loads_fireplace_present": false, + "fuel_loads_fireplace_usage_multiplier": 0.0, + "fuel_loads_grill_annual_therm": "auto", + "fuel_loads_grill_fuel_type": "natural gas", + "fuel_loads_grill_present": false, + "fuel_loads_grill_usage_multiplier": 0.0, + "fuel_loads_lighting_annual_therm": "auto", + "fuel_loads_lighting_fuel_type": "natural gas", + "fuel_loads_lighting_present": false, + "fuel_loads_lighting_usage_multiplier": 0.0, + "geometry_aspect_ratio": 1.5, + "geometry_attic_type": "UnventedAttic", + "geometry_balcony_depth": 0.0, + "geometry_building_num_bedrooms": 150, + "geometry_building_num_units": 50, + "geometry_cfa": 900.0, + "geometry_corridor_position": "None", + "geometry_corridor_width": 10.0, + "geometry_eaves_depth": 0, + "geometry_foundation_height": 4.0, + "geometry_foundation_height_above_grade": 1.0, + "geometry_foundation_type": "UnventedCrawlspace", + "geometry_garage_depth": 20.0, + "geometry_garage_position": "Right", + "geometry_garage_protrusion": 0.0, + "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", + "geometry_horizontal_location": "Right", + "geometry_inset_depth": 0.0, + "geometry_inset_position": "Right", + "geometry_inset_width": 0.0, + "geometry_level": "Middle", + "geometry_num_bathrooms": "2", + "geometry_num_bedrooms": 3, + "geometry_num_floors_above_grade": 5, + "geometry_num_occupants": "3", + "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, + "geometry_roof_pitch": "6:12", + "geometry_roof_type": "gable", + "geometry_unit_type": "apartment unit", + "geometry_wall_height": 8.0, + "heat_pump_backup_fuel": "none", + "heat_pump_backup_heating_capacity": "34121.0", + "heat_pump_backup_heating_efficiency": 1, + "heat_pump_cooling_capacity": "48000.0", + "heat_pump_cooling_compressor_type": "single stage", + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", + "heat_pump_cooling_sensible_heat_fraction": 0.73, + "heat_pump_fraction_cool_load_served": 1, + "heat_pump_fraction_heat_load_served": 1, + "heat_pump_heating_capacity": "64000.0", + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", + "heat_pump_type": "none", + "heating_system_fraction_heat_load_served": 1, + "heating_system_fraction_heat_load_served_2": 0.25, + "heating_system_fuel": "natural gas", + "heating_system_fuel_2": "electricity", + "heating_system_heating_capacity": "64000.0", + "heating_system_heating_capacity_2": "auto", + "heating_system_heating_efficiency": 0.92, + "heating_system_heating_efficiency_2": 1.0, + "heating_system_type": "Furnace", + "heating_system_type_2": "none", + "holiday_lighting_daily_kwh": "auto", + "holiday_lighting_period_begin_day_of_month": "auto", + "holiday_lighting_period_begin_month": "auto", + "holiday_lighting_period_end_day_of_month": "auto", + "holiday_lighting_period_end_month": "auto", + "holiday_lighting_present": false, + "hot_tub_heater_annual_kwh": "auto", + "hot_tub_heater_annual_therm": "auto", + "hot_tub_heater_type": "electric resistance", + "hot_tub_heater_usage_multiplier": 1.0, + "hot_tub_present": false, + "hot_tub_pump_annual_kwh": "auto", + "hot_tub_pump_usage_multiplier": 1.0, + "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/extra-bldgtype-multifamily-unvented-crawlspace-right-middle.xml", + "kitchen_fans_quantity": "0", + "lighting_fraction_cfl_exterior": 0.4, + "lighting_fraction_cfl_garage": 0.4, + "lighting_fraction_cfl_interior": 0.4, + "lighting_fraction_led_exterior": 0.25, + "lighting_fraction_led_garage": 0.25, + "lighting_fraction_led_interior": 0.25, + "lighting_fraction_lfl_exterior": 0.1, + "lighting_fraction_lfl_garage": 0.1, + "lighting_fraction_lfl_interior": 0.1, + "lighting_usage_multiplier_exterior": 1.0, + "lighting_usage_multiplier_garage": 1.0, + "lighting_usage_multiplier_interior": 1.0, + "mech_vent_fan_power": 30, + "mech_vent_fan_power_2": 30, + "mech_vent_fan_type": "none", + "mech_vent_fan_type_2": "none", + "mech_vent_flow_rate": 110, + "mech_vent_flow_rate_2": 110, + "mech_vent_hours_in_operation": 24, + "mech_vent_hours_in_operation_2": 24, + "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", + "mech_vent_sensible_recovery_efficiency": 0.72, + "mech_vent_sensible_recovery_efficiency_2": 0.72, + "mech_vent_total_recovery_efficiency": 0.48, + "mech_vent_total_recovery_efficiency_2": 0.48, + "neighbor_back_distance": 0, + "neighbor_back_height": "auto", + "neighbor_front_distance": 0, + "neighbor_front_height": "auto", + "neighbor_left_distance": 0, + "neighbor_left_height": "auto", + "neighbor_right_distance": 0, + "neighbor_right_height": "auto", + "overhangs_back_depth": 0, + "overhangs_back_distance_to_top_of_window": 0, + "overhangs_front_depth": 0, + "overhangs_front_distance_to_top_of_window": 0, + "overhangs_left_depth": 0, + "overhangs_left_distance_to_top_of_window": 0, + "overhangs_right_depth": 0, + "overhangs_right_distance_to_top_of_window": 0, + "plug_loads_other_annual_kwh": "819.0", + "plug_loads_other_frac_latent": "0.045", + "plug_loads_other_frac_sensible": "0.855", + "plug_loads_other_usage_multiplier": 1.0, + "plug_loads_television_annual_kwh": "620.0", + "plug_loads_television_usage_multiplier": 1.0, + "plug_loads_vehicle_annual_kwh": "auto", + "plug_loads_vehicle_present": false, + "plug_loads_vehicle_usage_multiplier": 0.0, + "plug_loads_well_pump_annual_kwh": "auto", + "plug_loads_well_pump_present": false, + "plug_loads_well_pump_usage_multiplier": 0.0, + "pool_heater_annual_kwh": "auto", + "pool_heater_annual_therm": "auto", + "pool_heater_type": "electric resistance", + "pool_heater_usage_multiplier": 1.0, + "pool_present": false, + "pool_pump_annual_kwh": "auto", + "pool_pump_usage_multiplier": 1.0, + "pv_system_array_azimuth_1": 180, + "pv_system_array_azimuth_2": 180, + "pv_system_array_tilt_1": "20", + "pv_system_array_tilt_2": "20", + "pv_system_inverter_efficiency_1": 0.96, + "pv_system_inverter_efficiency_2": 0.96, + "pv_system_location_1": "auto", + "pv_system_location_2": "auto", + "pv_system_max_power_output_1": 4000, + "pv_system_max_power_output_2": 4000, + "pv_system_module_type_1": "none", + "pv_system_module_type_2": "none", + "pv_system_num_units_served_1": 1, + "pv_system_num_units_served_2": 1, + "pv_system_system_losses_fraction_1": 0.14, + "pv_system_system_losses_fraction_2": 0.14, + "pv_system_tracking_1": "auto", + "pv_system_tracking_2": "auto", + "refrigerator_location": "living space", + "refrigerator_rated_annual_kwh": "650.0", + "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, + "roof_assembly_r": 2.3, + "roof_color": "medium", + "roof_material_type": "asphalt or fiberglass shingles", + "roof_radiant_barrier": false, + "roof_radiant_barrier_grade": "1", + "schedules_type": "default", + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", + "simulation_control_timestep": "60", + "site_type": "suburban", + "skylight_area_back": 0, + "skylight_area_front": 0, + "skylight_area_left": 0, + "skylight_area_right": 0, + "skylight_shgc": 0.45, + "skylight_ufactor": 0.33, + "slab_carpet_fraction": "0.0", + "slab_carpet_r": "0.0", + "slab_perimeter_depth": 0, + "slab_perimeter_insulation_r": 0, + "slab_thickness": "4.0", + "slab_under_insulation_r": 0, + "slab_under_width": 0, + "solar_thermal_collector_area": 40.0, + "solar_thermal_collector_azimuth": 180, + "solar_thermal_collector_loop_type": "liquid direct", + "solar_thermal_collector_rated_optical_efficiency": 0.5, + "solar_thermal_collector_rated_thermal_losses": 0.2799, + "solar_thermal_collector_tilt": "20", + "solar_thermal_collector_type": "evacuated tube", + "solar_thermal_solar_fraction": 0, + "solar_thermal_storage_volume": "auto", + "solar_thermal_system_type": "none", + "wall_assembly_r": 23, + "wall_color": "medium", + "wall_siding_type": "wood siding", + "wall_type": "WoodStud", + "water_fixtures_shower_low_flow": true, + "water_fixtures_sink_low_flow": false, + "water_fixtures_usage_multiplier": 1.0, + "water_heater_efficiency": 0.95, + "water_heater_efficiency_type": "EnergyFactor", + "water_heater_fuel_type": "electricity", + "water_heater_jacket_rvalue": 0, + "water_heater_location": "living space", + "water_heater_num_units_served": 1, + "water_heater_recovery_efficiency": "0.76", + "water_heater_setpoint_temperature": "125", + "water_heater_standby_loss": 0, + "water_heater_tank_volume": "40", + "water_heater_type": "storage water heater", + "weather_station_epw_filepath": "USA_CO_Denver.Intl.AP.725650_TMY3.epw", + "whole_house_fan_flow_rate": 4500, + "whole_house_fan_power": 300, + "whole_house_fan_present": false, + "window_area_back": 0, + "window_area_front": 0, + "window_area_left": 0, + "window_area_right": 0, + "window_aspect_ratio": 1.333, + "window_back_wwr": 0.18, + "window_fraction_operable": 0.67, + "window_front_wwr": 0.18, + "window_interior_shading_summer": 0.7, + "window_interior_shading_winter": 0.85, + "window_left_wwr": 0.18, + "window_right_wwr": 0.18, + "window_shgc": 0.45, + "window_ufactor": 0.33 + }, + "measure_dir_name": "BuildResidentialHPXML" + } + ] +} \ No newline at end of file diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-unvented-crawlspace-right-top-double-loaded-interior.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-unvented-crawlspace-right-top-double-loaded-interior.osw new file mode 100644 index 00000000..5f4cab33 --- /dev/null +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-unvented-crawlspace-right-top-double-loaded-interior.osw @@ -0,0 +1,341 @@ +{ + "measure_paths": [ + "../.." + ], + "steps": [ + { + "arguments": { + "air_leakage_house_pressure": 50, + "air_leakage_shielding_of_home": "auto", + "air_leakage_units": "ACH", + "air_leakage_value": 3, + "bathroom_fans_quantity": "0", + "ceiling_assembly_r": 39.3, + "ceiling_fan_cooling_setpoint_temp_offset": 0, + "ceiling_fan_efficiency": "auto", + "ceiling_fan_present": false, + "ceiling_fan_quantity": "auto", + "clothes_dryer_efficiency": "3.73", + "clothes_dryer_efficiency_type": "CombinedEnergyFactor", + "clothes_dryer_fuel_type": "electricity", + "clothes_dryer_location": "living space", + "clothes_dryer_usage_multiplier": 1.0, + "clothes_dryer_vented_flow_rate": "150.0", + "clothes_washer_capacity": "3.2", + "clothes_washer_efficiency": "1.21", + "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", + "clothes_washer_label_annual_gas_cost": "27.0", + "clothes_washer_label_electric_rate": "0.12", + "clothes_washer_label_gas_rate": "1.09", + "clothes_washer_label_usage": "6.0", + "clothes_washer_location": "living space", + "clothes_washer_rated_annual_kwh": "380.0", + "clothes_washer_usage_multiplier": 1.0, + "cooking_range_oven_fuel_type": "electricity", + "cooking_range_oven_is_convection": false, + "cooking_range_oven_is_induction": false, + "cooking_range_oven_location": "living space", + "cooking_range_oven_usage_multiplier": 1.0, + "cooling_system_cooling_capacity": "48000.0", + "cooling_system_cooling_compressor_type": "single stage", + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", + "cooling_system_cooling_sensible_heat_fraction": 0.73, + "cooling_system_fraction_cool_load_served": 1, + "cooling_system_is_ducted": false, + "cooling_system_type": "central air conditioner", + "dehumidifier_capacity": 40, + "dehumidifier_efficiency": 1.8, + "dehumidifier_efficiency_type": "EnergyFactor", + "dehumidifier_fraction_dehumidification_load_served": 1, + "dehumidifier_rh_setpoint": 0.5, + "dehumidifier_type": "none", + "dhw_distribution_pipe_r": "0.0", + "dhw_distribution_recirc_branch_piping_length": "50", + "dhw_distribution_recirc_control_type": "no control", + "dhw_distribution_recirc_piping_length": "50", + "dhw_distribution_recirc_pump_power": "50", + "dhw_distribution_standard_piping_length": "50", + "dhw_distribution_system_type": "Standard", + "dishwasher_efficiency": "307", + "dishwasher_efficiency_type": "RatedAnnualkWh", + "dishwasher_label_annual_gas_cost": "22.32", + "dishwasher_label_electric_rate": "0.12", + "dishwasher_label_gas_rate": "1.09", + "dishwasher_label_usage": "4.0", + "dishwasher_location": "living space", + "dishwasher_place_setting_capacity": "12", + "dishwasher_usage_multiplier": 1.0, + "door_area": 20.0, + "door_rvalue": 4.4, + "ducts_number_of_return_registers": "1", + "ducts_return_insulation_r": 0.0, + "ducts_return_leakage_units": "CFM25", + "ducts_return_leakage_value": 0.0, + "ducts_return_location": "living space", + "ducts_return_surface_area": "50.0", + "ducts_supply_insulation_r": 0.0, + "ducts_supply_leakage_units": "CFM25", + "ducts_supply_leakage_value": 0.0, + "ducts_supply_location": "living space", + "ducts_supply_surface_area": "150.0", + "dwhr_efficiency": 0.55, + "dwhr_equal_flow": true, + "dwhr_facilities_connected": "none", + "extra_refrigerator_location": "none", + "extra_refrigerator_rated_annual_kwh": "auto", + "extra_refrigerator_usage_multiplier": 1.0, + "floor_assembly_r": 18.7, + "foundation_wall_insulation_distance_to_bottom": 4.0, + "foundation_wall_insulation_distance_to_top": 0.0, + "foundation_wall_insulation_r": 8.9, + "foundation_wall_thickness": "8.0", + "freezer_location": "none", + "freezer_rated_annual_kwh": "auto", + "freezer_usage_multiplier": 1.0, + "fuel_loads_fireplace_annual_therm": "auto", + "fuel_loads_fireplace_frac_latent": "auto", + "fuel_loads_fireplace_frac_sensible": "auto", + "fuel_loads_fireplace_fuel_type": "natural gas", + "fuel_loads_fireplace_present": false, + "fuel_loads_fireplace_usage_multiplier": 0.0, + "fuel_loads_grill_annual_therm": "auto", + "fuel_loads_grill_fuel_type": "natural gas", + "fuel_loads_grill_present": false, + "fuel_loads_grill_usage_multiplier": 0.0, + "fuel_loads_lighting_annual_therm": "auto", + "fuel_loads_lighting_fuel_type": "natural gas", + "fuel_loads_lighting_present": false, + "fuel_loads_lighting_usage_multiplier": 0.0, + "geometry_aspect_ratio": 1.5, + "geometry_attic_type": "UnventedAttic", + "geometry_balcony_depth": 0.0, + "geometry_building_num_bedrooms": 150, + "geometry_building_num_units": 50, + "geometry_cfa": 900.0, + "geometry_corridor_position": "Double-Loaded Interior", + "geometry_corridor_width": 10.0, + "geometry_eaves_depth": 0, + "geometry_foundation_height": 4.0, + "geometry_foundation_height_above_grade": 1.0, + "geometry_foundation_type": "UnventedCrawlspace", + "geometry_garage_depth": 20.0, + "geometry_garage_position": "Right", + "geometry_garage_protrusion": 0.0, + "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", + "geometry_horizontal_location": "Right", + "geometry_inset_depth": 0.0, + "geometry_inset_position": "Right", + "geometry_inset_width": 0.0, + "geometry_level": "Top", + "geometry_num_bathrooms": "2", + "geometry_num_bedrooms": 3, + "geometry_num_floors_above_grade": 5, + "geometry_num_occupants": "3", + "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, + "geometry_roof_pitch": "6:12", + "geometry_roof_type": "gable", + "geometry_unit_type": "apartment unit", + "geometry_wall_height": 8.0, + "heat_pump_backup_fuel": "none", + "heat_pump_backup_heating_capacity": "34121.0", + "heat_pump_backup_heating_efficiency": 1, + "heat_pump_cooling_capacity": "48000.0", + "heat_pump_cooling_compressor_type": "single stage", + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", + "heat_pump_cooling_sensible_heat_fraction": 0.73, + "heat_pump_fraction_cool_load_served": 1, + "heat_pump_fraction_heat_load_served": 1, + "heat_pump_heating_capacity": "64000.0", + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", + "heat_pump_type": "none", + "heating_system_fraction_heat_load_served": 1, + "heating_system_fraction_heat_load_served_2": 0.25, + "heating_system_fuel": "natural gas", + "heating_system_fuel_2": "electricity", + "heating_system_heating_capacity": "64000.0", + "heating_system_heating_capacity_2": "auto", + "heating_system_heating_efficiency": 0.92, + "heating_system_heating_efficiency_2": 1.0, + "heating_system_type": "Furnace", + "heating_system_type_2": "none", + "holiday_lighting_daily_kwh": "auto", + "holiday_lighting_period_begin_day_of_month": "auto", + "holiday_lighting_period_begin_month": "auto", + "holiday_lighting_period_end_day_of_month": "auto", + "holiday_lighting_period_end_month": "auto", + "holiday_lighting_present": false, + "hot_tub_heater_annual_kwh": "auto", + "hot_tub_heater_annual_therm": "auto", + "hot_tub_heater_type": "electric resistance", + "hot_tub_heater_usage_multiplier": 1.0, + "hot_tub_present": false, + "hot_tub_pump_annual_kwh": "auto", + "hot_tub_pump_usage_multiplier": 1.0, + "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/extra-bldgtype-multifamily-unvented-crawlspace-right-top-double-loaded-interior.xml", + "kitchen_fans_quantity": "0", + "lighting_fraction_cfl_exterior": 0.4, + "lighting_fraction_cfl_garage": 0.4, + "lighting_fraction_cfl_interior": 0.4, + "lighting_fraction_led_exterior": 0.25, + "lighting_fraction_led_garage": 0.25, + "lighting_fraction_led_interior": 0.25, + "lighting_fraction_lfl_exterior": 0.1, + "lighting_fraction_lfl_garage": 0.1, + "lighting_fraction_lfl_interior": 0.1, + "lighting_usage_multiplier_exterior": 1.0, + "lighting_usage_multiplier_garage": 1.0, + "lighting_usage_multiplier_interior": 1.0, + "mech_vent_fan_power": 30, + "mech_vent_fan_power_2": 30, + "mech_vent_fan_type": "none", + "mech_vent_fan_type_2": "none", + "mech_vent_flow_rate": 110, + "mech_vent_flow_rate_2": 110, + "mech_vent_hours_in_operation": 24, + "mech_vent_hours_in_operation_2": 24, + "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", + "mech_vent_sensible_recovery_efficiency": 0.72, + "mech_vent_sensible_recovery_efficiency_2": 0.72, + "mech_vent_total_recovery_efficiency": 0.48, + "mech_vent_total_recovery_efficiency_2": 0.48, + "neighbor_back_distance": 0, + "neighbor_back_height": "auto", + "neighbor_front_distance": 0, + "neighbor_front_height": "auto", + "neighbor_left_distance": 0, + "neighbor_left_height": "auto", + "neighbor_right_distance": 0, + "neighbor_right_height": "auto", + "overhangs_back_depth": 0, + "overhangs_back_distance_to_top_of_window": 0, + "overhangs_front_depth": 0, + "overhangs_front_distance_to_top_of_window": 0, + "overhangs_left_depth": 0, + "overhangs_left_distance_to_top_of_window": 0, + "overhangs_right_depth": 0, + "overhangs_right_distance_to_top_of_window": 0, + "plug_loads_other_annual_kwh": "819.0", + "plug_loads_other_frac_latent": "0.045", + "plug_loads_other_frac_sensible": "0.855", + "plug_loads_other_usage_multiplier": 1.0, + "plug_loads_television_annual_kwh": "620.0", + "plug_loads_television_usage_multiplier": 1.0, + "plug_loads_vehicle_annual_kwh": "auto", + "plug_loads_vehicle_present": false, + "plug_loads_vehicle_usage_multiplier": 0.0, + "plug_loads_well_pump_annual_kwh": "auto", + "plug_loads_well_pump_present": false, + "plug_loads_well_pump_usage_multiplier": 0.0, + "pool_heater_annual_kwh": "auto", + "pool_heater_annual_therm": "auto", + "pool_heater_type": "electric resistance", + "pool_heater_usage_multiplier": 1.0, + "pool_present": false, + "pool_pump_annual_kwh": "auto", + "pool_pump_usage_multiplier": 1.0, + "pv_system_array_azimuth_1": 180, + "pv_system_array_azimuth_2": 180, + "pv_system_array_tilt_1": "20", + "pv_system_array_tilt_2": "20", + "pv_system_inverter_efficiency_1": 0.96, + "pv_system_inverter_efficiency_2": 0.96, + "pv_system_location_1": "auto", + "pv_system_location_2": "auto", + "pv_system_max_power_output_1": 4000, + "pv_system_max_power_output_2": 4000, + "pv_system_module_type_1": "none", + "pv_system_module_type_2": "none", + "pv_system_num_units_served_1": 1, + "pv_system_num_units_served_2": 1, + "pv_system_system_losses_fraction_1": 0.14, + "pv_system_system_losses_fraction_2": 0.14, + "pv_system_tracking_1": "auto", + "pv_system_tracking_2": "auto", + "refrigerator_location": "living space", + "refrigerator_rated_annual_kwh": "650.0", + "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, + "roof_assembly_r": 2.3, + "roof_color": "medium", + "roof_material_type": "asphalt or fiberglass shingles", + "roof_radiant_barrier": false, + "roof_radiant_barrier_grade": "1", + "schedules_type": "default", + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", + "simulation_control_timestep": "60", + "site_type": "suburban", + "skylight_area_back": 0, + "skylight_area_front": 0, + "skylight_area_left": 0, + "skylight_area_right": 0, + "skylight_shgc": 0.45, + "skylight_ufactor": 0.33, + "slab_carpet_fraction": "0.0", + "slab_carpet_r": "0.0", + "slab_perimeter_depth": 0, + "slab_perimeter_insulation_r": 0, + "slab_thickness": "4.0", + "slab_under_insulation_r": 0, + "slab_under_width": 0, + "solar_thermal_collector_area": 40.0, + "solar_thermal_collector_azimuth": 180, + "solar_thermal_collector_loop_type": "liquid direct", + "solar_thermal_collector_rated_optical_efficiency": 0.5, + "solar_thermal_collector_rated_thermal_losses": 0.2799, + "solar_thermal_collector_tilt": "20", + "solar_thermal_collector_type": "evacuated tube", + "solar_thermal_solar_fraction": 0, + "solar_thermal_storage_volume": "auto", + "solar_thermal_system_type": "none", + "wall_assembly_r": 23, + "wall_color": "medium", + "wall_siding_type": "wood siding", + "wall_type": "WoodStud", + "water_fixtures_shower_low_flow": true, + "water_fixtures_sink_low_flow": false, + "water_fixtures_usage_multiplier": 1.0, + "water_heater_efficiency": 0.95, + "water_heater_efficiency_type": "EnergyFactor", + "water_heater_fuel_type": "electricity", + "water_heater_jacket_rvalue": 0, + "water_heater_location": "living space", + "water_heater_num_units_served": 1, + "water_heater_recovery_efficiency": "0.76", + "water_heater_setpoint_temperature": "125", + "water_heater_standby_loss": 0, + "water_heater_tank_volume": "40", + "water_heater_type": "storage water heater", + "weather_station_epw_filepath": "USA_CO_Denver.Intl.AP.725650_TMY3.epw", + "whole_house_fan_flow_rate": 4500, + "whole_house_fan_power": 300, + "whole_house_fan_present": false, + "window_area_back": 0, + "window_area_front": 0, + "window_area_left": 0, + "window_area_right": 0, + "window_aspect_ratio": 1.333, + "window_back_wwr": 0.18, + "window_fraction_operable": 0.67, + "window_front_wwr": 0.18, + "window_interior_shading_summer": 0.7, + "window_interior_shading_winter": 0.85, + "window_left_wwr": 0.18, + "window_right_wwr": 0.18, + "window_shgc": 0.45, + "window_ufactor": 0.33 + }, + "measure_dir_name": "BuildResidentialHPXML" + } + ] +} \ No newline at end of file diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-unvented-crawlspace-right-top.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-unvented-crawlspace-right-top.osw new file mode 100644 index 00000000..05ff1e48 --- /dev/null +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-unvented-crawlspace-right-top.osw @@ -0,0 +1,341 @@ +{ + "measure_paths": [ + "../.." + ], + "steps": [ + { + "arguments": { + "air_leakage_house_pressure": 50, + "air_leakage_shielding_of_home": "auto", + "air_leakage_units": "ACH", + "air_leakage_value": 3, + "bathroom_fans_quantity": "0", + "ceiling_assembly_r": 39.3, + "ceiling_fan_cooling_setpoint_temp_offset": 0, + "ceiling_fan_efficiency": "auto", + "ceiling_fan_present": false, + "ceiling_fan_quantity": "auto", + "clothes_dryer_efficiency": "3.73", + "clothes_dryer_efficiency_type": "CombinedEnergyFactor", + "clothes_dryer_fuel_type": "electricity", + "clothes_dryer_location": "living space", + "clothes_dryer_usage_multiplier": 1.0, + "clothes_dryer_vented_flow_rate": "150.0", + "clothes_washer_capacity": "3.2", + "clothes_washer_efficiency": "1.21", + "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", + "clothes_washer_label_annual_gas_cost": "27.0", + "clothes_washer_label_electric_rate": "0.12", + "clothes_washer_label_gas_rate": "1.09", + "clothes_washer_label_usage": "6.0", + "clothes_washer_location": "living space", + "clothes_washer_rated_annual_kwh": "380.0", + "clothes_washer_usage_multiplier": 1.0, + "cooking_range_oven_fuel_type": "electricity", + "cooking_range_oven_is_convection": false, + "cooking_range_oven_is_induction": false, + "cooking_range_oven_location": "living space", + "cooking_range_oven_usage_multiplier": 1.0, + "cooling_system_cooling_capacity": "48000.0", + "cooling_system_cooling_compressor_type": "single stage", + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", + "cooling_system_cooling_sensible_heat_fraction": 0.73, + "cooling_system_fraction_cool_load_served": 1, + "cooling_system_is_ducted": false, + "cooling_system_type": "central air conditioner", + "dehumidifier_capacity": 40, + "dehumidifier_efficiency": 1.8, + "dehumidifier_efficiency_type": "EnergyFactor", + "dehumidifier_fraction_dehumidification_load_served": 1, + "dehumidifier_rh_setpoint": 0.5, + "dehumidifier_type": "none", + "dhw_distribution_pipe_r": "0.0", + "dhw_distribution_recirc_branch_piping_length": "50", + "dhw_distribution_recirc_control_type": "no control", + "dhw_distribution_recirc_piping_length": "50", + "dhw_distribution_recirc_pump_power": "50", + "dhw_distribution_standard_piping_length": "50", + "dhw_distribution_system_type": "Standard", + "dishwasher_efficiency": "307", + "dishwasher_efficiency_type": "RatedAnnualkWh", + "dishwasher_label_annual_gas_cost": "22.32", + "dishwasher_label_electric_rate": "0.12", + "dishwasher_label_gas_rate": "1.09", + "dishwasher_label_usage": "4.0", + "dishwasher_location": "living space", + "dishwasher_place_setting_capacity": "12", + "dishwasher_usage_multiplier": 1.0, + "door_area": 20.0, + "door_rvalue": 4.4, + "ducts_number_of_return_registers": "1", + "ducts_return_insulation_r": 0.0, + "ducts_return_leakage_units": "CFM25", + "ducts_return_leakage_value": 0.0, + "ducts_return_location": "living space", + "ducts_return_surface_area": "50.0", + "ducts_supply_insulation_r": 0.0, + "ducts_supply_leakage_units": "CFM25", + "ducts_supply_leakage_value": 0.0, + "ducts_supply_location": "living space", + "ducts_supply_surface_area": "150.0", + "dwhr_efficiency": 0.55, + "dwhr_equal_flow": true, + "dwhr_facilities_connected": "none", + "extra_refrigerator_location": "none", + "extra_refrigerator_rated_annual_kwh": "auto", + "extra_refrigerator_usage_multiplier": 1.0, + "floor_assembly_r": 18.7, + "foundation_wall_insulation_distance_to_bottom": 4.0, + "foundation_wall_insulation_distance_to_top": 0.0, + "foundation_wall_insulation_r": 8.9, + "foundation_wall_thickness": "8.0", + "freezer_location": "none", + "freezer_rated_annual_kwh": "auto", + "freezer_usage_multiplier": 1.0, + "fuel_loads_fireplace_annual_therm": "auto", + "fuel_loads_fireplace_frac_latent": "auto", + "fuel_loads_fireplace_frac_sensible": "auto", + "fuel_loads_fireplace_fuel_type": "natural gas", + "fuel_loads_fireplace_present": false, + "fuel_loads_fireplace_usage_multiplier": 0.0, + "fuel_loads_grill_annual_therm": "auto", + "fuel_loads_grill_fuel_type": "natural gas", + "fuel_loads_grill_present": false, + "fuel_loads_grill_usage_multiplier": 0.0, + "fuel_loads_lighting_annual_therm": "auto", + "fuel_loads_lighting_fuel_type": "natural gas", + "fuel_loads_lighting_present": false, + "fuel_loads_lighting_usage_multiplier": 0.0, + "geometry_aspect_ratio": 1.5, + "geometry_attic_type": "UnventedAttic", + "geometry_balcony_depth": 0.0, + "geometry_building_num_bedrooms": 150, + "geometry_building_num_units": 50, + "geometry_cfa": 900.0, + "geometry_corridor_position": "None", + "geometry_corridor_width": 10.0, + "geometry_eaves_depth": 0, + "geometry_foundation_height": 4.0, + "geometry_foundation_height_above_grade": 1.0, + "geometry_foundation_type": "UnventedCrawlspace", + "geometry_garage_depth": 20.0, + "geometry_garage_position": "Right", + "geometry_garage_protrusion": 0.0, + "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", + "geometry_horizontal_location": "Right", + "geometry_inset_depth": 0.0, + "geometry_inset_position": "Right", + "geometry_inset_width": 0.0, + "geometry_level": "Top", + "geometry_num_bathrooms": "2", + "geometry_num_bedrooms": 3, + "geometry_num_floors_above_grade": 5, + "geometry_num_occupants": "3", + "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, + "geometry_roof_pitch": "6:12", + "geometry_roof_type": "gable", + "geometry_unit_type": "apartment unit", + "geometry_wall_height": 8.0, + "heat_pump_backup_fuel": "none", + "heat_pump_backup_heating_capacity": "34121.0", + "heat_pump_backup_heating_efficiency": 1, + "heat_pump_cooling_capacity": "48000.0", + "heat_pump_cooling_compressor_type": "single stage", + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", + "heat_pump_cooling_sensible_heat_fraction": 0.73, + "heat_pump_fraction_cool_load_served": 1, + "heat_pump_fraction_heat_load_served": 1, + "heat_pump_heating_capacity": "64000.0", + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", + "heat_pump_type": "none", + "heating_system_fraction_heat_load_served": 1, + "heating_system_fraction_heat_load_served_2": 0.25, + "heating_system_fuel": "natural gas", + "heating_system_fuel_2": "electricity", + "heating_system_heating_capacity": "64000.0", + "heating_system_heating_capacity_2": "auto", + "heating_system_heating_efficiency": 0.92, + "heating_system_heating_efficiency_2": 1.0, + "heating_system_type": "Furnace", + "heating_system_type_2": "none", + "holiday_lighting_daily_kwh": "auto", + "holiday_lighting_period_begin_day_of_month": "auto", + "holiday_lighting_period_begin_month": "auto", + "holiday_lighting_period_end_day_of_month": "auto", + "holiday_lighting_period_end_month": "auto", + "holiday_lighting_present": false, + "hot_tub_heater_annual_kwh": "auto", + "hot_tub_heater_annual_therm": "auto", + "hot_tub_heater_type": "electric resistance", + "hot_tub_heater_usage_multiplier": 1.0, + "hot_tub_present": false, + "hot_tub_pump_annual_kwh": "auto", + "hot_tub_pump_usage_multiplier": 1.0, + "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/extra-bldgtype-multifamily-unvented-crawlspace-right-top.xml", + "kitchen_fans_quantity": "0", + "lighting_fraction_cfl_exterior": 0.4, + "lighting_fraction_cfl_garage": 0.4, + "lighting_fraction_cfl_interior": 0.4, + "lighting_fraction_led_exterior": 0.25, + "lighting_fraction_led_garage": 0.25, + "lighting_fraction_led_interior": 0.25, + "lighting_fraction_lfl_exterior": 0.1, + "lighting_fraction_lfl_garage": 0.1, + "lighting_fraction_lfl_interior": 0.1, + "lighting_usage_multiplier_exterior": 1.0, + "lighting_usage_multiplier_garage": 1.0, + "lighting_usage_multiplier_interior": 1.0, + "mech_vent_fan_power": 30, + "mech_vent_fan_power_2": 30, + "mech_vent_fan_type": "none", + "mech_vent_fan_type_2": "none", + "mech_vent_flow_rate": 110, + "mech_vent_flow_rate_2": 110, + "mech_vent_hours_in_operation": 24, + "mech_vent_hours_in_operation_2": 24, + "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", + "mech_vent_sensible_recovery_efficiency": 0.72, + "mech_vent_sensible_recovery_efficiency_2": 0.72, + "mech_vent_total_recovery_efficiency": 0.48, + "mech_vent_total_recovery_efficiency_2": 0.48, + "neighbor_back_distance": 0, + "neighbor_back_height": "auto", + "neighbor_front_distance": 0, + "neighbor_front_height": "auto", + "neighbor_left_distance": 0, + "neighbor_left_height": "auto", + "neighbor_right_distance": 0, + "neighbor_right_height": "auto", + "overhangs_back_depth": 0, + "overhangs_back_distance_to_top_of_window": 0, + "overhangs_front_depth": 0, + "overhangs_front_distance_to_top_of_window": 0, + "overhangs_left_depth": 0, + "overhangs_left_distance_to_top_of_window": 0, + "overhangs_right_depth": 0, + "overhangs_right_distance_to_top_of_window": 0, + "plug_loads_other_annual_kwh": "819.0", + "plug_loads_other_frac_latent": "0.045", + "plug_loads_other_frac_sensible": "0.855", + "plug_loads_other_usage_multiplier": 1.0, + "plug_loads_television_annual_kwh": "620.0", + "plug_loads_television_usage_multiplier": 1.0, + "plug_loads_vehicle_annual_kwh": "auto", + "plug_loads_vehicle_present": false, + "plug_loads_vehicle_usage_multiplier": 0.0, + "plug_loads_well_pump_annual_kwh": "auto", + "plug_loads_well_pump_present": false, + "plug_loads_well_pump_usage_multiplier": 0.0, + "pool_heater_annual_kwh": "auto", + "pool_heater_annual_therm": "auto", + "pool_heater_type": "electric resistance", + "pool_heater_usage_multiplier": 1.0, + "pool_present": false, + "pool_pump_annual_kwh": "auto", + "pool_pump_usage_multiplier": 1.0, + "pv_system_array_azimuth_1": 180, + "pv_system_array_azimuth_2": 180, + "pv_system_array_tilt_1": "20", + "pv_system_array_tilt_2": "20", + "pv_system_inverter_efficiency_1": 0.96, + "pv_system_inverter_efficiency_2": 0.96, + "pv_system_location_1": "auto", + "pv_system_location_2": "auto", + "pv_system_max_power_output_1": 4000, + "pv_system_max_power_output_2": 4000, + "pv_system_module_type_1": "none", + "pv_system_module_type_2": "none", + "pv_system_num_units_served_1": 1, + "pv_system_num_units_served_2": 1, + "pv_system_system_losses_fraction_1": 0.14, + "pv_system_system_losses_fraction_2": 0.14, + "pv_system_tracking_1": "auto", + "pv_system_tracking_2": "auto", + "refrigerator_location": "living space", + "refrigerator_rated_annual_kwh": "650.0", + "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, + "roof_assembly_r": 2.3, + "roof_color": "medium", + "roof_material_type": "asphalt or fiberglass shingles", + "roof_radiant_barrier": false, + "roof_radiant_barrier_grade": "1", + "schedules_type": "default", + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", + "simulation_control_timestep": "60", + "site_type": "suburban", + "skylight_area_back": 0, + "skylight_area_front": 0, + "skylight_area_left": 0, + "skylight_area_right": 0, + "skylight_shgc": 0.45, + "skylight_ufactor": 0.33, + "slab_carpet_fraction": "0.0", + "slab_carpet_r": "0.0", + "slab_perimeter_depth": 0, + "slab_perimeter_insulation_r": 0, + "slab_thickness": "4.0", + "slab_under_insulation_r": 0, + "slab_under_width": 0, + "solar_thermal_collector_area": 40.0, + "solar_thermal_collector_azimuth": 180, + "solar_thermal_collector_loop_type": "liquid direct", + "solar_thermal_collector_rated_optical_efficiency": 0.5, + "solar_thermal_collector_rated_thermal_losses": 0.2799, + "solar_thermal_collector_tilt": "20", + "solar_thermal_collector_type": "evacuated tube", + "solar_thermal_solar_fraction": 0, + "solar_thermal_storage_volume": "auto", + "solar_thermal_system_type": "none", + "wall_assembly_r": 23, + "wall_color": "medium", + "wall_siding_type": "wood siding", + "wall_type": "WoodStud", + "water_fixtures_shower_low_flow": true, + "water_fixtures_sink_low_flow": false, + "water_fixtures_usage_multiplier": 1.0, + "water_heater_efficiency": 0.95, + "water_heater_efficiency_type": "EnergyFactor", + "water_heater_fuel_type": "electricity", + "water_heater_jacket_rvalue": 0, + "water_heater_location": "living space", + "water_heater_num_units_served": 1, + "water_heater_recovery_efficiency": "0.76", + "water_heater_setpoint_temperature": "125", + "water_heater_standby_loss": 0, + "water_heater_tank_volume": "40", + "water_heater_type": "storage water heater", + "weather_station_epw_filepath": "USA_CO_Denver.Intl.AP.725650_TMY3.epw", + "whole_house_fan_flow_rate": 4500, + "whole_house_fan_power": 300, + "whole_house_fan_present": false, + "window_area_back": 0, + "window_area_front": 0, + "window_area_left": 0, + "window_area_right": 0, + "window_aspect_ratio": 1.333, + "window_back_wwr": 0.18, + "window_fraction_operable": 0.67, + "window_front_wwr": 0.18, + "window_interior_shading_summer": 0.7, + "window_interior_shading_winter": 0.85, + "window_left_wwr": 0.18, + "window_right_wwr": 0.18, + "window_shgc": 0.45, + "window_ufactor": 0.33 + }, + "measure_dir_name": "BuildResidentialHPXML" + } + ] +} \ No newline at end of file diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-unvented-crawlspace.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-unvented-crawlspace.osw new file mode 100644 index 00000000..cfd84c45 --- /dev/null +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-unvented-crawlspace.osw @@ -0,0 +1,341 @@ +{ + "measure_paths": [ + "../.." + ], + "steps": [ + { + "arguments": { + "air_leakage_house_pressure": 50, + "air_leakage_shielding_of_home": "auto", + "air_leakage_units": "ACH", + "air_leakage_value": 3, + "bathroom_fans_quantity": "0", + "ceiling_assembly_r": 39.3, + "ceiling_fan_cooling_setpoint_temp_offset": 0, + "ceiling_fan_efficiency": "auto", + "ceiling_fan_present": false, + "ceiling_fan_quantity": "auto", + "clothes_dryer_efficiency": "3.73", + "clothes_dryer_efficiency_type": "CombinedEnergyFactor", + "clothes_dryer_fuel_type": "electricity", + "clothes_dryer_location": "living space", + "clothes_dryer_usage_multiplier": 1.0, + "clothes_dryer_vented_flow_rate": "150.0", + "clothes_washer_capacity": "3.2", + "clothes_washer_efficiency": "1.21", + "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", + "clothes_washer_label_annual_gas_cost": "27.0", + "clothes_washer_label_electric_rate": "0.12", + "clothes_washer_label_gas_rate": "1.09", + "clothes_washer_label_usage": "6.0", + "clothes_washer_location": "living space", + "clothes_washer_rated_annual_kwh": "380.0", + "clothes_washer_usage_multiplier": 1.0, + "cooking_range_oven_fuel_type": "electricity", + "cooking_range_oven_is_convection": false, + "cooking_range_oven_is_induction": false, + "cooking_range_oven_location": "living space", + "cooking_range_oven_usage_multiplier": 1.0, + "cooling_system_cooling_capacity": "48000.0", + "cooling_system_cooling_compressor_type": "single stage", + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", + "cooling_system_cooling_sensible_heat_fraction": 0.73, + "cooling_system_fraction_cool_load_served": 1, + "cooling_system_is_ducted": false, + "cooling_system_type": "central air conditioner", + "dehumidifier_capacity": 40, + "dehumidifier_efficiency": 1.8, + "dehumidifier_efficiency_type": "EnergyFactor", + "dehumidifier_fraction_dehumidification_load_served": 1, + "dehumidifier_rh_setpoint": 0.5, + "dehumidifier_type": "none", + "dhw_distribution_pipe_r": "0.0", + "dhw_distribution_recirc_branch_piping_length": "50", + "dhw_distribution_recirc_control_type": "no control", + "dhw_distribution_recirc_piping_length": "50", + "dhw_distribution_recirc_pump_power": "50", + "dhw_distribution_standard_piping_length": "50", + "dhw_distribution_system_type": "Standard", + "dishwasher_efficiency": "307", + "dishwasher_efficiency_type": "RatedAnnualkWh", + "dishwasher_label_annual_gas_cost": "22.32", + "dishwasher_label_electric_rate": "0.12", + "dishwasher_label_gas_rate": "1.09", + "dishwasher_label_usage": "4.0", + "dishwasher_location": "living space", + "dishwasher_place_setting_capacity": "12", + "dishwasher_usage_multiplier": 1.0, + "door_area": 20.0, + "door_rvalue": 4.4, + "ducts_number_of_return_registers": "1", + "ducts_return_insulation_r": 0.0, + "ducts_return_leakage_units": "CFM25", + "ducts_return_leakage_value": 0.0, + "ducts_return_location": "living space", + "ducts_return_surface_area": "50.0", + "ducts_supply_insulation_r": 0.0, + "ducts_supply_leakage_units": "CFM25", + "ducts_supply_leakage_value": 0.0, + "ducts_supply_location": "living space", + "ducts_supply_surface_area": "150.0", + "dwhr_efficiency": 0.55, + "dwhr_equal_flow": true, + "dwhr_facilities_connected": "none", + "extra_refrigerator_location": "none", + "extra_refrigerator_rated_annual_kwh": "auto", + "extra_refrigerator_usage_multiplier": 1.0, + "floor_assembly_r": 18.7, + "foundation_wall_insulation_distance_to_bottom": 4.0, + "foundation_wall_insulation_distance_to_top": 0.0, + "foundation_wall_insulation_r": 8.9, + "foundation_wall_thickness": "8.0", + "freezer_location": "none", + "freezer_rated_annual_kwh": "auto", + "freezer_usage_multiplier": 1.0, + "fuel_loads_fireplace_annual_therm": "auto", + "fuel_loads_fireplace_frac_latent": "auto", + "fuel_loads_fireplace_frac_sensible": "auto", + "fuel_loads_fireplace_fuel_type": "natural gas", + "fuel_loads_fireplace_present": false, + "fuel_loads_fireplace_usage_multiplier": 0.0, + "fuel_loads_grill_annual_therm": "auto", + "fuel_loads_grill_fuel_type": "natural gas", + "fuel_loads_grill_present": false, + "fuel_loads_grill_usage_multiplier": 0.0, + "fuel_loads_lighting_annual_therm": "auto", + "fuel_loads_lighting_fuel_type": "natural gas", + "fuel_loads_lighting_present": false, + "fuel_loads_lighting_usage_multiplier": 0.0, + "geometry_aspect_ratio": 1.5, + "geometry_attic_type": "UnventedAttic", + "geometry_balcony_depth": 0.0, + "geometry_building_num_bedrooms": 150, + "geometry_building_num_units": 50, + "geometry_cfa": 900.0, + "geometry_corridor_position": "None", + "geometry_corridor_width": 10.0, + "geometry_eaves_depth": 0, + "geometry_foundation_height": 4.0, + "geometry_foundation_height_above_grade": 1.0, + "geometry_foundation_type": "UnventedCrawlspace", + "geometry_garage_depth": 20.0, + "geometry_garage_position": "Right", + "geometry_garage_protrusion": 0.0, + "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", + "geometry_horizontal_location": "Left", + "geometry_inset_depth": 0.0, + "geometry_inset_position": "Right", + "geometry_inset_width": 0.0, + "geometry_level": "Middle", + "geometry_num_bathrooms": "2", + "geometry_num_bedrooms": 3, + "geometry_num_floors_above_grade": 5, + "geometry_num_occupants": "3", + "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, + "geometry_roof_pitch": "6:12", + "geometry_roof_type": "gable", + "geometry_unit_type": "apartment unit", + "geometry_wall_height": 8.0, + "heat_pump_backup_fuel": "none", + "heat_pump_backup_heating_capacity": "34121.0", + "heat_pump_backup_heating_efficiency": 1, + "heat_pump_cooling_capacity": "48000.0", + "heat_pump_cooling_compressor_type": "single stage", + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", + "heat_pump_cooling_sensible_heat_fraction": 0.73, + "heat_pump_fraction_cool_load_served": 1, + "heat_pump_fraction_heat_load_served": 1, + "heat_pump_heating_capacity": "64000.0", + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", + "heat_pump_type": "none", + "heating_system_fraction_heat_load_served": 1, + "heating_system_fraction_heat_load_served_2": 0.25, + "heating_system_fuel": "natural gas", + "heating_system_fuel_2": "electricity", + "heating_system_heating_capacity": "64000.0", + "heating_system_heating_capacity_2": "auto", + "heating_system_heating_efficiency": 0.92, + "heating_system_heating_efficiency_2": 1.0, + "heating_system_type": "Furnace", + "heating_system_type_2": "none", + "holiday_lighting_daily_kwh": "auto", + "holiday_lighting_period_begin_day_of_month": "auto", + "holiday_lighting_period_begin_month": "auto", + "holiday_lighting_period_end_day_of_month": "auto", + "holiday_lighting_period_end_month": "auto", + "holiday_lighting_present": false, + "hot_tub_heater_annual_kwh": "auto", + "hot_tub_heater_annual_therm": "auto", + "hot_tub_heater_type": "electric resistance", + "hot_tub_heater_usage_multiplier": 1.0, + "hot_tub_present": false, + "hot_tub_pump_annual_kwh": "auto", + "hot_tub_pump_usage_multiplier": 1.0, + "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/extra-bldgtype-multifamily-unvented-crawlspace.xml", + "kitchen_fans_quantity": "0", + "lighting_fraction_cfl_exterior": 0.4, + "lighting_fraction_cfl_garage": 0.4, + "lighting_fraction_cfl_interior": 0.4, + "lighting_fraction_led_exterior": 0.25, + "lighting_fraction_led_garage": 0.25, + "lighting_fraction_led_interior": 0.25, + "lighting_fraction_lfl_exterior": 0.1, + "lighting_fraction_lfl_garage": 0.1, + "lighting_fraction_lfl_interior": 0.1, + "lighting_usage_multiplier_exterior": 1.0, + "lighting_usage_multiplier_garage": 1.0, + "lighting_usage_multiplier_interior": 1.0, + "mech_vent_fan_power": 30, + "mech_vent_fan_power_2": 30, + "mech_vent_fan_type": "none", + "mech_vent_fan_type_2": "none", + "mech_vent_flow_rate": 110, + "mech_vent_flow_rate_2": 110, + "mech_vent_hours_in_operation": 24, + "mech_vent_hours_in_operation_2": 24, + "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", + "mech_vent_sensible_recovery_efficiency": 0.72, + "mech_vent_sensible_recovery_efficiency_2": 0.72, + "mech_vent_total_recovery_efficiency": 0.48, + "mech_vent_total_recovery_efficiency_2": 0.48, + "neighbor_back_distance": 0, + "neighbor_back_height": "auto", + "neighbor_front_distance": 0, + "neighbor_front_height": "auto", + "neighbor_left_distance": 0, + "neighbor_left_height": "auto", + "neighbor_right_distance": 0, + "neighbor_right_height": "auto", + "overhangs_back_depth": 0, + "overhangs_back_distance_to_top_of_window": 0, + "overhangs_front_depth": 0, + "overhangs_front_distance_to_top_of_window": 0, + "overhangs_left_depth": 0, + "overhangs_left_distance_to_top_of_window": 0, + "overhangs_right_depth": 0, + "overhangs_right_distance_to_top_of_window": 0, + "plug_loads_other_annual_kwh": "819.0", + "plug_loads_other_frac_latent": "0.045", + "plug_loads_other_frac_sensible": "0.855", + "plug_loads_other_usage_multiplier": 1.0, + "plug_loads_television_annual_kwh": "620.0", + "plug_loads_television_usage_multiplier": 1.0, + "plug_loads_vehicle_annual_kwh": "auto", + "plug_loads_vehicle_present": false, + "plug_loads_vehicle_usage_multiplier": 0.0, + "plug_loads_well_pump_annual_kwh": "auto", + "plug_loads_well_pump_present": false, + "plug_loads_well_pump_usage_multiplier": 0.0, + "pool_heater_annual_kwh": "auto", + "pool_heater_annual_therm": "auto", + "pool_heater_type": "electric resistance", + "pool_heater_usage_multiplier": 1.0, + "pool_present": false, + "pool_pump_annual_kwh": "auto", + "pool_pump_usage_multiplier": 1.0, + "pv_system_array_azimuth_1": 180, + "pv_system_array_azimuth_2": 180, + "pv_system_array_tilt_1": "20", + "pv_system_array_tilt_2": "20", + "pv_system_inverter_efficiency_1": 0.96, + "pv_system_inverter_efficiency_2": 0.96, + "pv_system_location_1": "auto", + "pv_system_location_2": "auto", + "pv_system_max_power_output_1": 4000, + "pv_system_max_power_output_2": 4000, + "pv_system_module_type_1": "none", + "pv_system_module_type_2": "none", + "pv_system_num_units_served_1": 1, + "pv_system_num_units_served_2": 1, + "pv_system_system_losses_fraction_1": 0.14, + "pv_system_system_losses_fraction_2": 0.14, + "pv_system_tracking_1": "auto", + "pv_system_tracking_2": "auto", + "refrigerator_location": "living space", + "refrigerator_rated_annual_kwh": "650.0", + "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, + "roof_assembly_r": 2.3, + "roof_color": "medium", + "roof_material_type": "asphalt or fiberglass shingles", + "roof_radiant_barrier": false, + "roof_radiant_barrier_grade": "1", + "schedules_type": "default", + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", + "simulation_control_timestep": "60", + "site_type": "suburban", + "skylight_area_back": 0, + "skylight_area_front": 0, + "skylight_area_left": 0, + "skylight_area_right": 0, + "skylight_shgc": 0.45, + "skylight_ufactor": 0.33, + "slab_carpet_fraction": "0.0", + "slab_carpet_r": "0.0", + "slab_perimeter_depth": 0, + "slab_perimeter_insulation_r": 0, + "slab_thickness": "4.0", + "slab_under_insulation_r": 0, + "slab_under_width": 0, + "solar_thermal_collector_area": 40.0, + "solar_thermal_collector_azimuth": 180, + "solar_thermal_collector_loop_type": "liquid direct", + "solar_thermal_collector_rated_optical_efficiency": 0.5, + "solar_thermal_collector_rated_thermal_losses": 0.2799, + "solar_thermal_collector_tilt": "20", + "solar_thermal_collector_type": "evacuated tube", + "solar_thermal_solar_fraction": 0, + "solar_thermal_storage_volume": "auto", + "solar_thermal_system_type": "none", + "wall_assembly_r": 23, + "wall_color": "medium", + "wall_siding_type": "wood siding", + "wall_type": "WoodStud", + "water_fixtures_shower_low_flow": true, + "water_fixtures_sink_low_flow": false, + "water_fixtures_usage_multiplier": 1.0, + "water_heater_efficiency": 0.95, + "water_heater_efficiency_type": "EnergyFactor", + "water_heater_fuel_type": "electricity", + "water_heater_jacket_rvalue": 0, + "water_heater_location": "living space", + "water_heater_num_units_served": 1, + "water_heater_recovery_efficiency": "0.76", + "water_heater_setpoint_temperature": "125", + "water_heater_standby_loss": 0, + "water_heater_tank_volume": "40", + "water_heater_type": "storage water heater", + "weather_station_epw_filepath": "USA_CO_Denver.Intl.AP.725650_TMY3.epw", + "whole_house_fan_flow_rate": 4500, + "whole_house_fan_power": 300, + "whole_house_fan_present": false, + "window_area_back": 0, + "window_area_front": 0, + "window_area_left": 0, + "window_area_right": 0, + "window_aspect_ratio": 1.333, + "window_back_wwr": 0.18, + "window_fraction_operable": 0.67, + "window_front_wwr": 0.18, + "window_interior_shading_summer": 0.7, + "window_interior_shading_winter": 0.85, + "window_left_wwr": 0.18, + "window_right_wwr": 0.18, + "window_shgc": 0.45, + "window_ufactor": 0.33 + }, + "measure_dir_name": "BuildResidentialHPXML" + } + ] +} \ No newline at end of file diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-vented-crawlspace-double-loaded-interior.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-vented-crawlspace-double-loaded-interior.osw new file mode 100644 index 00000000..478c738f --- /dev/null +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-vented-crawlspace-double-loaded-interior.osw @@ -0,0 +1,341 @@ +{ + "measure_paths": [ + "../.." + ], + "steps": [ + { + "arguments": { + "air_leakage_house_pressure": 50, + "air_leakage_shielding_of_home": "auto", + "air_leakage_units": "ACH", + "air_leakage_value": 3, + "bathroom_fans_quantity": "0", + "ceiling_assembly_r": 39.3, + "ceiling_fan_cooling_setpoint_temp_offset": 0, + "ceiling_fan_efficiency": "auto", + "ceiling_fan_present": false, + "ceiling_fan_quantity": "auto", + "clothes_dryer_efficiency": "3.73", + "clothes_dryer_efficiency_type": "CombinedEnergyFactor", + "clothes_dryer_fuel_type": "electricity", + "clothes_dryer_location": "living space", + "clothes_dryer_usage_multiplier": 1.0, + "clothes_dryer_vented_flow_rate": "150.0", + "clothes_washer_capacity": "3.2", + "clothes_washer_efficiency": "1.21", + "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", + "clothes_washer_label_annual_gas_cost": "27.0", + "clothes_washer_label_electric_rate": "0.12", + "clothes_washer_label_gas_rate": "1.09", + "clothes_washer_label_usage": "6.0", + "clothes_washer_location": "living space", + "clothes_washer_rated_annual_kwh": "380.0", + "clothes_washer_usage_multiplier": 1.0, + "cooking_range_oven_fuel_type": "electricity", + "cooking_range_oven_is_convection": false, + "cooking_range_oven_is_induction": false, + "cooking_range_oven_location": "living space", + "cooking_range_oven_usage_multiplier": 1.0, + "cooling_system_cooling_capacity": "48000.0", + "cooling_system_cooling_compressor_type": "single stage", + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", + "cooling_system_cooling_sensible_heat_fraction": 0.73, + "cooling_system_fraction_cool_load_served": 1, + "cooling_system_is_ducted": false, + "cooling_system_type": "central air conditioner", + "dehumidifier_capacity": 40, + "dehumidifier_efficiency": 1.8, + "dehumidifier_efficiency_type": "EnergyFactor", + "dehumidifier_fraction_dehumidification_load_served": 1, + "dehumidifier_rh_setpoint": 0.5, + "dehumidifier_type": "none", + "dhw_distribution_pipe_r": "0.0", + "dhw_distribution_recirc_branch_piping_length": "50", + "dhw_distribution_recirc_control_type": "no control", + "dhw_distribution_recirc_piping_length": "50", + "dhw_distribution_recirc_pump_power": "50", + "dhw_distribution_standard_piping_length": "50", + "dhw_distribution_system_type": "Standard", + "dishwasher_efficiency": "307", + "dishwasher_efficiency_type": "RatedAnnualkWh", + "dishwasher_label_annual_gas_cost": "22.32", + "dishwasher_label_electric_rate": "0.12", + "dishwasher_label_gas_rate": "1.09", + "dishwasher_label_usage": "4.0", + "dishwasher_location": "living space", + "dishwasher_place_setting_capacity": "12", + "dishwasher_usage_multiplier": 1.0, + "door_area": 20.0, + "door_rvalue": 4.4, + "ducts_number_of_return_registers": "1", + "ducts_return_insulation_r": 0.0, + "ducts_return_leakage_units": "CFM25", + "ducts_return_leakage_value": 0.0, + "ducts_return_location": "living space", + "ducts_return_surface_area": "50.0", + "ducts_supply_insulation_r": 0.0, + "ducts_supply_leakage_units": "CFM25", + "ducts_supply_leakage_value": 0.0, + "ducts_supply_location": "living space", + "ducts_supply_surface_area": "150.0", + "dwhr_efficiency": 0.55, + "dwhr_equal_flow": true, + "dwhr_facilities_connected": "none", + "extra_refrigerator_location": "none", + "extra_refrigerator_rated_annual_kwh": "auto", + "extra_refrigerator_usage_multiplier": 1.0, + "floor_assembly_r": 18.7, + "foundation_wall_insulation_distance_to_bottom": 4.0, + "foundation_wall_insulation_distance_to_top": 0.0, + "foundation_wall_insulation_r": 8.9, + "foundation_wall_thickness": "8.0", + "freezer_location": "none", + "freezer_rated_annual_kwh": "auto", + "freezer_usage_multiplier": 1.0, + "fuel_loads_fireplace_annual_therm": "auto", + "fuel_loads_fireplace_frac_latent": "auto", + "fuel_loads_fireplace_frac_sensible": "auto", + "fuel_loads_fireplace_fuel_type": "natural gas", + "fuel_loads_fireplace_present": false, + "fuel_loads_fireplace_usage_multiplier": 0.0, + "fuel_loads_grill_annual_therm": "auto", + "fuel_loads_grill_fuel_type": "natural gas", + "fuel_loads_grill_present": false, + "fuel_loads_grill_usage_multiplier": 0.0, + "fuel_loads_lighting_annual_therm": "auto", + "fuel_loads_lighting_fuel_type": "natural gas", + "fuel_loads_lighting_present": false, + "fuel_loads_lighting_usage_multiplier": 0.0, + "geometry_aspect_ratio": 1.5, + "geometry_attic_type": "UnventedAttic", + "geometry_balcony_depth": 0.0, + "geometry_building_num_bedrooms": 150, + "geometry_building_num_units": 50, + "geometry_cfa": 900.0, + "geometry_corridor_position": "Double-Loaded Interior", + "geometry_corridor_width": 10.0, + "geometry_eaves_depth": 0, + "geometry_foundation_height": 4.0, + "geometry_foundation_height_above_grade": 1.0, + "geometry_foundation_type": "VentedCrawlspace", + "geometry_garage_depth": 20.0, + "geometry_garage_position": "Right", + "geometry_garage_protrusion": 0.0, + "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", + "geometry_horizontal_location": "Left", + "geometry_inset_depth": 0.0, + "geometry_inset_position": "Right", + "geometry_inset_width": 0.0, + "geometry_level": "Middle", + "geometry_num_bathrooms": "2", + "geometry_num_bedrooms": 3, + "geometry_num_floors_above_grade": 5, + "geometry_num_occupants": "3", + "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, + "geometry_roof_pitch": "6:12", + "geometry_roof_type": "gable", + "geometry_unit_type": "apartment unit", + "geometry_wall_height": 8.0, + "heat_pump_backup_fuel": "none", + "heat_pump_backup_heating_capacity": "34121.0", + "heat_pump_backup_heating_efficiency": 1, + "heat_pump_cooling_capacity": "48000.0", + "heat_pump_cooling_compressor_type": "single stage", + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", + "heat_pump_cooling_sensible_heat_fraction": 0.73, + "heat_pump_fraction_cool_load_served": 1, + "heat_pump_fraction_heat_load_served": 1, + "heat_pump_heating_capacity": "64000.0", + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", + "heat_pump_type": "none", + "heating_system_fraction_heat_load_served": 1, + "heating_system_fraction_heat_load_served_2": 0.25, + "heating_system_fuel": "natural gas", + "heating_system_fuel_2": "electricity", + "heating_system_heating_capacity": "64000.0", + "heating_system_heating_capacity_2": "auto", + "heating_system_heating_efficiency": 0.92, + "heating_system_heating_efficiency_2": 1.0, + "heating_system_type": "Furnace", + "heating_system_type_2": "none", + "holiday_lighting_daily_kwh": "auto", + "holiday_lighting_period_begin_day_of_month": "auto", + "holiday_lighting_period_begin_month": "auto", + "holiday_lighting_period_end_day_of_month": "auto", + "holiday_lighting_period_end_month": "auto", + "holiday_lighting_present": false, + "hot_tub_heater_annual_kwh": "auto", + "hot_tub_heater_annual_therm": "auto", + "hot_tub_heater_type": "electric resistance", + "hot_tub_heater_usage_multiplier": 1.0, + "hot_tub_present": false, + "hot_tub_pump_annual_kwh": "auto", + "hot_tub_pump_usage_multiplier": 1.0, + "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/extra-bldgtype-multifamily-vented-crawlspace-double-loaded-interior.xml", + "kitchen_fans_quantity": "0", + "lighting_fraction_cfl_exterior": 0.4, + "lighting_fraction_cfl_garage": 0.4, + "lighting_fraction_cfl_interior": 0.4, + "lighting_fraction_led_exterior": 0.25, + "lighting_fraction_led_garage": 0.25, + "lighting_fraction_led_interior": 0.25, + "lighting_fraction_lfl_exterior": 0.1, + "lighting_fraction_lfl_garage": 0.1, + "lighting_fraction_lfl_interior": 0.1, + "lighting_usage_multiplier_exterior": 1.0, + "lighting_usage_multiplier_garage": 1.0, + "lighting_usage_multiplier_interior": 1.0, + "mech_vent_fan_power": 30, + "mech_vent_fan_power_2": 30, + "mech_vent_fan_type": "none", + "mech_vent_fan_type_2": "none", + "mech_vent_flow_rate": 110, + "mech_vent_flow_rate_2": 110, + "mech_vent_hours_in_operation": 24, + "mech_vent_hours_in_operation_2": 24, + "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", + "mech_vent_sensible_recovery_efficiency": 0.72, + "mech_vent_sensible_recovery_efficiency_2": 0.72, + "mech_vent_total_recovery_efficiency": 0.48, + "mech_vent_total_recovery_efficiency_2": 0.48, + "neighbor_back_distance": 0, + "neighbor_back_height": "auto", + "neighbor_front_distance": 0, + "neighbor_front_height": "auto", + "neighbor_left_distance": 0, + "neighbor_left_height": "auto", + "neighbor_right_distance": 0, + "neighbor_right_height": "auto", + "overhangs_back_depth": 0, + "overhangs_back_distance_to_top_of_window": 0, + "overhangs_front_depth": 0, + "overhangs_front_distance_to_top_of_window": 0, + "overhangs_left_depth": 0, + "overhangs_left_distance_to_top_of_window": 0, + "overhangs_right_depth": 0, + "overhangs_right_distance_to_top_of_window": 0, + "plug_loads_other_annual_kwh": "819.0", + "plug_loads_other_frac_latent": "0.045", + "plug_loads_other_frac_sensible": "0.855", + "plug_loads_other_usage_multiplier": 1.0, + "plug_loads_television_annual_kwh": "620.0", + "plug_loads_television_usage_multiplier": 1.0, + "plug_loads_vehicle_annual_kwh": "auto", + "plug_loads_vehicle_present": false, + "plug_loads_vehicle_usage_multiplier": 0.0, + "plug_loads_well_pump_annual_kwh": "auto", + "plug_loads_well_pump_present": false, + "plug_loads_well_pump_usage_multiplier": 0.0, + "pool_heater_annual_kwh": "auto", + "pool_heater_annual_therm": "auto", + "pool_heater_type": "electric resistance", + "pool_heater_usage_multiplier": 1.0, + "pool_present": false, + "pool_pump_annual_kwh": "auto", + "pool_pump_usage_multiplier": 1.0, + "pv_system_array_azimuth_1": 180, + "pv_system_array_azimuth_2": 180, + "pv_system_array_tilt_1": "20", + "pv_system_array_tilt_2": "20", + "pv_system_inverter_efficiency_1": 0.96, + "pv_system_inverter_efficiency_2": 0.96, + "pv_system_location_1": "auto", + "pv_system_location_2": "auto", + "pv_system_max_power_output_1": 4000, + "pv_system_max_power_output_2": 4000, + "pv_system_module_type_1": "none", + "pv_system_module_type_2": "none", + "pv_system_num_units_served_1": 1, + "pv_system_num_units_served_2": 1, + "pv_system_system_losses_fraction_1": 0.14, + "pv_system_system_losses_fraction_2": 0.14, + "pv_system_tracking_1": "auto", + "pv_system_tracking_2": "auto", + "refrigerator_location": "living space", + "refrigerator_rated_annual_kwh": "650.0", + "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, + "roof_assembly_r": 2.3, + "roof_color": "medium", + "roof_material_type": "asphalt or fiberglass shingles", + "roof_radiant_barrier": false, + "roof_radiant_barrier_grade": "1", + "schedules_type": "default", + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", + "simulation_control_timestep": "60", + "site_type": "suburban", + "skylight_area_back": 0, + "skylight_area_front": 0, + "skylight_area_left": 0, + "skylight_area_right": 0, + "skylight_shgc": 0.45, + "skylight_ufactor": 0.33, + "slab_carpet_fraction": "0.0", + "slab_carpet_r": "0.0", + "slab_perimeter_depth": 0, + "slab_perimeter_insulation_r": 0, + "slab_thickness": "4.0", + "slab_under_insulation_r": 0, + "slab_under_width": 0, + "solar_thermal_collector_area": 40.0, + "solar_thermal_collector_azimuth": 180, + "solar_thermal_collector_loop_type": "liquid direct", + "solar_thermal_collector_rated_optical_efficiency": 0.5, + "solar_thermal_collector_rated_thermal_losses": 0.2799, + "solar_thermal_collector_tilt": "20", + "solar_thermal_collector_type": "evacuated tube", + "solar_thermal_solar_fraction": 0, + "solar_thermal_storage_volume": "auto", + "solar_thermal_system_type": "none", + "wall_assembly_r": 23, + "wall_color": "medium", + "wall_siding_type": "wood siding", + "wall_type": "WoodStud", + "water_fixtures_shower_low_flow": true, + "water_fixtures_sink_low_flow": false, + "water_fixtures_usage_multiplier": 1.0, + "water_heater_efficiency": 0.95, + "water_heater_efficiency_type": "EnergyFactor", + "water_heater_fuel_type": "electricity", + "water_heater_jacket_rvalue": 0, + "water_heater_location": "living space", + "water_heater_num_units_served": 1, + "water_heater_recovery_efficiency": "0.76", + "water_heater_setpoint_temperature": "125", + "water_heater_standby_loss": 0, + "water_heater_tank_volume": "40", + "water_heater_type": "storage water heater", + "weather_station_epw_filepath": "USA_CO_Denver.Intl.AP.725650_TMY3.epw", + "whole_house_fan_flow_rate": 4500, + "whole_house_fan_power": 300, + "whole_house_fan_present": false, + "window_area_back": 0, + "window_area_front": 0, + "window_area_left": 0, + "window_area_right": 0, + "window_aspect_ratio": 1.333, + "window_back_wwr": 0.18, + "window_fraction_operable": 0.67, + "window_front_wwr": 0.18, + "window_interior_shading_summer": 0.7, + "window_interior_shading_winter": 0.85, + "window_left_wwr": 0.18, + "window_right_wwr": 0.18, + "window_shgc": 0.45, + "window_ufactor": 0.33 + }, + "measure_dir_name": "BuildResidentialHPXML" + } + ] +} \ No newline at end of file diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-vented-crawlspace-left-bottom-double-loaded-interior.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-vented-crawlspace-left-bottom-double-loaded-interior.osw new file mode 100644 index 00000000..01a65096 --- /dev/null +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-vented-crawlspace-left-bottom-double-loaded-interior.osw @@ -0,0 +1,341 @@ +{ + "measure_paths": [ + "../.." + ], + "steps": [ + { + "arguments": { + "air_leakage_house_pressure": 50, + "air_leakage_shielding_of_home": "auto", + "air_leakage_units": "ACH", + "air_leakage_value": 3, + "bathroom_fans_quantity": "0", + "ceiling_assembly_r": 39.3, + "ceiling_fan_cooling_setpoint_temp_offset": 0, + "ceiling_fan_efficiency": "auto", + "ceiling_fan_present": false, + "ceiling_fan_quantity": "auto", + "clothes_dryer_efficiency": "3.73", + "clothes_dryer_efficiency_type": "CombinedEnergyFactor", + "clothes_dryer_fuel_type": "electricity", + "clothes_dryer_location": "living space", + "clothes_dryer_usage_multiplier": 1.0, + "clothes_dryer_vented_flow_rate": "150.0", + "clothes_washer_capacity": "3.2", + "clothes_washer_efficiency": "1.21", + "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", + "clothes_washer_label_annual_gas_cost": "27.0", + "clothes_washer_label_electric_rate": "0.12", + "clothes_washer_label_gas_rate": "1.09", + "clothes_washer_label_usage": "6.0", + "clothes_washer_location": "living space", + "clothes_washer_rated_annual_kwh": "380.0", + "clothes_washer_usage_multiplier": 1.0, + "cooking_range_oven_fuel_type": "electricity", + "cooking_range_oven_is_convection": false, + "cooking_range_oven_is_induction": false, + "cooking_range_oven_location": "living space", + "cooking_range_oven_usage_multiplier": 1.0, + "cooling_system_cooling_capacity": "48000.0", + "cooling_system_cooling_compressor_type": "single stage", + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", + "cooling_system_cooling_sensible_heat_fraction": 0.73, + "cooling_system_fraction_cool_load_served": 1, + "cooling_system_is_ducted": false, + "cooling_system_type": "central air conditioner", + "dehumidifier_capacity": 40, + "dehumidifier_efficiency": 1.8, + "dehumidifier_efficiency_type": "EnergyFactor", + "dehumidifier_fraction_dehumidification_load_served": 1, + "dehumidifier_rh_setpoint": 0.5, + "dehumidifier_type": "none", + "dhw_distribution_pipe_r": "0.0", + "dhw_distribution_recirc_branch_piping_length": "50", + "dhw_distribution_recirc_control_type": "no control", + "dhw_distribution_recirc_piping_length": "50", + "dhw_distribution_recirc_pump_power": "50", + "dhw_distribution_standard_piping_length": "50", + "dhw_distribution_system_type": "Standard", + "dishwasher_efficiency": "307", + "dishwasher_efficiency_type": "RatedAnnualkWh", + "dishwasher_label_annual_gas_cost": "22.32", + "dishwasher_label_electric_rate": "0.12", + "dishwasher_label_gas_rate": "1.09", + "dishwasher_label_usage": "4.0", + "dishwasher_location": "living space", + "dishwasher_place_setting_capacity": "12", + "dishwasher_usage_multiplier": 1.0, + "door_area": 20.0, + "door_rvalue": 4.4, + "ducts_number_of_return_registers": "1", + "ducts_return_insulation_r": 0.0, + "ducts_return_leakage_units": "CFM25", + "ducts_return_leakage_value": 0.0, + "ducts_return_location": "living space", + "ducts_return_surface_area": "50.0", + "ducts_supply_insulation_r": 0.0, + "ducts_supply_leakage_units": "CFM25", + "ducts_supply_leakage_value": 0.0, + "ducts_supply_location": "living space", + "ducts_supply_surface_area": "150.0", + "dwhr_efficiency": 0.55, + "dwhr_equal_flow": true, + "dwhr_facilities_connected": "none", + "extra_refrigerator_location": "none", + "extra_refrigerator_rated_annual_kwh": "auto", + "extra_refrigerator_usage_multiplier": 1.0, + "floor_assembly_r": 18.7, + "foundation_wall_insulation_distance_to_bottom": 4.0, + "foundation_wall_insulation_distance_to_top": 0.0, + "foundation_wall_insulation_r": 8.9, + "foundation_wall_thickness": "8.0", + "freezer_location": "none", + "freezer_rated_annual_kwh": "auto", + "freezer_usage_multiplier": 1.0, + "fuel_loads_fireplace_annual_therm": "auto", + "fuel_loads_fireplace_frac_latent": "auto", + "fuel_loads_fireplace_frac_sensible": "auto", + "fuel_loads_fireplace_fuel_type": "natural gas", + "fuel_loads_fireplace_present": false, + "fuel_loads_fireplace_usage_multiplier": 0.0, + "fuel_loads_grill_annual_therm": "auto", + "fuel_loads_grill_fuel_type": "natural gas", + "fuel_loads_grill_present": false, + "fuel_loads_grill_usage_multiplier": 0.0, + "fuel_loads_lighting_annual_therm": "auto", + "fuel_loads_lighting_fuel_type": "natural gas", + "fuel_loads_lighting_present": false, + "fuel_loads_lighting_usage_multiplier": 0.0, + "geometry_aspect_ratio": 1.5, + "geometry_attic_type": "UnventedAttic", + "geometry_balcony_depth": 0.0, + "geometry_building_num_bedrooms": 150, + "geometry_building_num_units": 50, + "geometry_cfa": 900.0, + "geometry_corridor_position": "Double-Loaded Interior", + "geometry_corridor_width": 10.0, + "geometry_eaves_depth": 0, + "geometry_foundation_height": 4.0, + "geometry_foundation_height_above_grade": 1.0, + "geometry_foundation_type": "VentedCrawlspace", + "geometry_garage_depth": 20.0, + "geometry_garage_position": "Right", + "geometry_garage_protrusion": 0.0, + "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", + "geometry_horizontal_location": "Left", + "geometry_inset_depth": 0.0, + "geometry_inset_position": "Right", + "geometry_inset_width": 0.0, + "geometry_level": "Bottom", + "geometry_num_bathrooms": "2", + "geometry_num_bedrooms": 3, + "geometry_num_floors_above_grade": 5, + "geometry_num_occupants": "3", + "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, + "geometry_roof_pitch": "6:12", + "geometry_roof_type": "gable", + "geometry_unit_type": "apartment unit", + "geometry_wall_height": 8.0, + "heat_pump_backup_fuel": "none", + "heat_pump_backup_heating_capacity": "34121.0", + "heat_pump_backup_heating_efficiency": 1, + "heat_pump_cooling_capacity": "48000.0", + "heat_pump_cooling_compressor_type": "single stage", + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", + "heat_pump_cooling_sensible_heat_fraction": 0.73, + "heat_pump_fraction_cool_load_served": 1, + "heat_pump_fraction_heat_load_served": 1, + "heat_pump_heating_capacity": "64000.0", + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", + "heat_pump_type": "none", + "heating_system_fraction_heat_load_served": 1, + "heating_system_fraction_heat_load_served_2": 0.25, + "heating_system_fuel": "natural gas", + "heating_system_fuel_2": "electricity", + "heating_system_heating_capacity": "64000.0", + "heating_system_heating_capacity_2": "auto", + "heating_system_heating_efficiency": 0.92, + "heating_system_heating_efficiency_2": 1.0, + "heating_system_type": "Furnace", + "heating_system_type_2": "none", + "holiday_lighting_daily_kwh": "auto", + "holiday_lighting_period_begin_day_of_month": "auto", + "holiday_lighting_period_begin_month": "auto", + "holiday_lighting_period_end_day_of_month": "auto", + "holiday_lighting_period_end_month": "auto", + "holiday_lighting_present": false, + "hot_tub_heater_annual_kwh": "auto", + "hot_tub_heater_annual_therm": "auto", + "hot_tub_heater_type": "electric resistance", + "hot_tub_heater_usage_multiplier": 1.0, + "hot_tub_present": false, + "hot_tub_pump_annual_kwh": "auto", + "hot_tub_pump_usage_multiplier": 1.0, + "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/extra-bldgtype-multifamily-vented-crawlspace-left-bottom-double-loaded-interior.xml", + "kitchen_fans_quantity": "0", + "lighting_fraction_cfl_exterior": 0.4, + "lighting_fraction_cfl_garage": 0.4, + "lighting_fraction_cfl_interior": 0.4, + "lighting_fraction_led_exterior": 0.25, + "lighting_fraction_led_garage": 0.25, + "lighting_fraction_led_interior": 0.25, + "lighting_fraction_lfl_exterior": 0.1, + "lighting_fraction_lfl_garage": 0.1, + "lighting_fraction_lfl_interior": 0.1, + "lighting_usage_multiplier_exterior": 1.0, + "lighting_usage_multiplier_garage": 1.0, + "lighting_usage_multiplier_interior": 1.0, + "mech_vent_fan_power": 30, + "mech_vent_fan_power_2": 30, + "mech_vent_fan_type": "none", + "mech_vent_fan_type_2": "none", + "mech_vent_flow_rate": 110, + "mech_vent_flow_rate_2": 110, + "mech_vent_hours_in_operation": 24, + "mech_vent_hours_in_operation_2": 24, + "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", + "mech_vent_sensible_recovery_efficiency": 0.72, + "mech_vent_sensible_recovery_efficiency_2": 0.72, + "mech_vent_total_recovery_efficiency": 0.48, + "mech_vent_total_recovery_efficiency_2": 0.48, + "neighbor_back_distance": 0, + "neighbor_back_height": "auto", + "neighbor_front_distance": 0, + "neighbor_front_height": "auto", + "neighbor_left_distance": 0, + "neighbor_left_height": "auto", + "neighbor_right_distance": 0, + "neighbor_right_height": "auto", + "overhangs_back_depth": 0, + "overhangs_back_distance_to_top_of_window": 0, + "overhangs_front_depth": 0, + "overhangs_front_distance_to_top_of_window": 0, + "overhangs_left_depth": 0, + "overhangs_left_distance_to_top_of_window": 0, + "overhangs_right_depth": 0, + "overhangs_right_distance_to_top_of_window": 0, + "plug_loads_other_annual_kwh": "819.0", + "plug_loads_other_frac_latent": "0.045", + "plug_loads_other_frac_sensible": "0.855", + "plug_loads_other_usage_multiplier": 1.0, + "plug_loads_television_annual_kwh": "620.0", + "plug_loads_television_usage_multiplier": 1.0, + "plug_loads_vehicle_annual_kwh": "auto", + "plug_loads_vehicle_present": false, + "plug_loads_vehicle_usage_multiplier": 0.0, + "plug_loads_well_pump_annual_kwh": "auto", + "plug_loads_well_pump_present": false, + "plug_loads_well_pump_usage_multiplier": 0.0, + "pool_heater_annual_kwh": "auto", + "pool_heater_annual_therm": "auto", + "pool_heater_type": "electric resistance", + "pool_heater_usage_multiplier": 1.0, + "pool_present": false, + "pool_pump_annual_kwh": "auto", + "pool_pump_usage_multiplier": 1.0, + "pv_system_array_azimuth_1": 180, + "pv_system_array_azimuth_2": 180, + "pv_system_array_tilt_1": "20", + "pv_system_array_tilt_2": "20", + "pv_system_inverter_efficiency_1": 0.96, + "pv_system_inverter_efficiency_2": 0.96, + "pv_system_location_1": "auto", + "pv_system_location_2": "auto", + "pv_system_max_power_output_1": 4000, + "pv_system_max_power_output_2": 4000, + "pv_system_module_type_1": "none", + "pv_system_module_type_2": "none", + "pv_system_num_units_served_1": 1, + "pv_system_num_units_served_2": 1, + "pv_system_system_losses_fraction_1": 0.14, + "pv_system_system_losses_fraction_2": 0.14, + "pv_system_tracking_1": "auto", + "pv_system_tracking_2": "auto", + "refrigerator_location": "living space", + "refrigerator_rated_annual_kwh": "650.0", + "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, + "roof_assembly_r": 2.3, + "roof_color": "medium", + "roof_material_type": "asphalt or fiberglass shingles", + "roof_radiant_barrier": false, + "roof_radiant_barrier_grade": "1", + "schedules_type": "default", + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", + "simulation_control_timestep": "60", + "site_type": "suburban", + "skylight_area_back": 0, + "skylight_area_front": 0, + "skylight_area_left": 0, + "skylight_area_right": 0, + "skylight_shgc": 0.45, + "skylight_ufactor": 0.33, + "slab_carpet_fraction": "0.0", + "slab_carpet_r": "0.0", + "slab_perimeter_depth": 0, + "slab_perimeter_insulation_r": 0, + "slab_thickness": "4.0", + "slab_under_insulation_r": 0, + "slab_under_width": 0, + "solar_thermal_collector_area": 40.0, + "solar_thermal_collector_azimuth": 180, + "solar_thermal_collector_loop_type": "liquid direct", + "solar_thermal_collector_rated_optical_efficiency": 0.5, + "solar_thermal_collector_rated_thermal_losses": 0.2799, + "solar_thermal_collector_tilt": "20", + "solar_thermal_collector_type": "evacuated tube", + "solar_thermal_solar_fraction": 0, + "solar_thermal_storage_volume": "auto", + "solar_thermal_system_type": "none", + "wall_assembly_r": 23, + "wall_color": "medium", + "wall_siding_type": "wood siding", + "wall_type": "WoodStud", + "water_fixtures_shower_low_flow": true, + "water_fixtures_sink_low_flow": false, + "water_fixtures_usage_multiplier": 1.0, + "water_heater_efficiency": 0.95, + "water_heater_efficiency_type": "EnergyFactor", + "water_heater_fuel_type": "electricity", + "water_heater_jacket_rvalue": 0, + "water_heater_location": "living space", + "water_heater_num_units_served": 1, + "water_heater_recovery_efficiency": "0.76", + "water_heater_setpoint_temperature": "125", + "water_heater_standby_loss": 0, + "water_heater_tank_volume": "40", + "water_heater_type": "storage water heater", + "weather_station_epw_filepath": "USA_CO_Denver.Intl.AP.725650_TMY3.epw", + "whole_house_fan_flow_rate": 4500, + "whole_house_fan_power": 300, + "whole_house_fan_present": false, + "window_area_back": 0, + "window_area_front": 0, + "window_area_left": 0, + "window_area_right": 0, + "window_aspect_ratio": 1.333, + "window_back_wwr": 0.18, + "window_fraction_operable": 0.67, + "window_front_wwr": 0.18, + "window_interior_shading_summer": 0.7, + "window_interior_shading_winter": 0.85, + "window_left_wwr": 0.18, + "window_right_wwr": 0.18, + "window_shgc": 0.45, + "window_ufactor": 0.33 + }, + "measure_dir_name": "BuildResidentialHPXML" + } + ] +} \ No newline at end of file diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-vented-crawlspace-left-bottom.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-vented-crawlspace-left-bottom.osw new file mode 100644 index 00000000..4e2c68d5 --- /dev/null +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-vented-crawlspace-left-bottom.osw @@ -0,0 +1,341 @@ +{ + "measure_paths": [ + "../.." + ], + "steps": [ + { + "arguments": { + "air_leakage_house_pressure": 50, + "air_leakage_shielding_of_home": "auto", + "air_leakage_units": "ACH", + "air_leakage_value": 3, + "bathroom_fans_quantity": "0", + "ceiling_assembly_r": 39.3, + "ceiling_fan_cooling_setpoint_temp_offset": 0, + "ceiling_fan_efficiency": "auto", + "ceiling_fan_present": false, + "ceiling_fan_quantity": "auto", + "clothes_dryer_efficiency": "3.73", + "clothes_dryer_efficiency_type": "CombinedEnergyFactor", + "clothes_dryer_fuel_type": "electricity", + "clothes_dryer_location": "living space", + "clothes_dryer_usage_multiplier": 1.0, + "clothes_dryer_vented_flow_rate": "150.0", + "clothes_washer_capacity": "3.2", + "clothes_washer_efficiency": "1.21", + "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", + "clothes_washer_label_annual_gas_cost": "27.0", + "clothes_washer_label_electric_rate": "0.12", + "clothes_washer_label_gas_rate": "1.09", + "clothes_washer_label_usage": "6.0", + "clothes_washer_location": "living space", + "clothes_washer_rated_annual_kwh": "380.0", + "clothes_washer_usage_multiplier": 1.0, + "cooking_range_oven_fuel_type": "electricity", + "cooking_range_oven_is_convection": false, + "cooking_range_oven_is_induction": false, + "cooking_range_oven_location": "living space", + "cooking_range_oven_usage_multiplier": 1.0, + "cooling_system_cooling_capacity": "48000.0", + "cooling_system_cooling_compressor_type": "single stage", + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", + "cooling_system_cooling_sensible_heat_fraction": 0.73, + "cooling_system_fraction_cool_load_served": 1, + "cooling_system_is_ducted": false, + "cooling_system_type": "central air conditioner", + "dehumidifier_capacity": 40, + "dehumidifier_efficiency": 1.8, + "dehumidifier_efficiency_type": "EnergyFactor", + "dehumidifier_fraction_dehumidification_load_served": 1, + "dehumidifier_rh_setpoint": 0.5, + "dehumidifier_type": "none", + "dhw_distribution_pipe_r": "0.0", + "dhw_distribution_recirc_branch_piping_length": "50", + "dhw_distribution_recirc_control_type": "no control", + "dhw_distribution_recirc_piping_length": "50", + "dhw_distribution_recirc_pump_power": "50", + "dhw_distribution_standard_piping_length": "50", + "dhw_distribution_system_type": "Standard", + "dishwasher_efficiency": "307", + "dishwasher_efficiency_type": "RatedAnnualkWh", + "dishwasher_label_annual_gas_cost": "22.32", + "dishwasher_label_electric_rate": "0.12", + "dishwasher_label_gas_rate": "1.09", + "dishwasher_label_usage": "4.0", + "dishwasher_location": "living space", + "dishwasher_place_setting_capacity": "12", + "dishwasher_usage_multiplier": 1.0, + "door_area": 20.0, + "door_rvalue": 4.4, + "ducts_number_of_return_registers": "1", + "ducts_return_insulation_r": 0.0, + "ducts_return_leakage_units": "CFM25", + "ducts_return_leakage_value": 0.0, + "ducts_return_location": "living space", + "ducts_return_surface_area": "50.0", + "ducts_supply_insulation_r": 0.0, + "ducts_supply_leakage_units": "CFM25", + "ducts_supply_leakage_value": 0.0, + "ducts_supply_location": "living space", + "ducts_supply_surface_area": "150.0", + "dwhr_efficiency": 0.55, + "dwhr_equal_flow": true, + "dwhr_facilities_connected": "none", + "extra_refrigerator_location": "none", + "extra_refrigerator_rated_annual_kwh": "auto", + "extra_refrigerator_usage_multiplier": 1.0, + "floor_assembly_r": 18.7, + "foundation_wall_insulation_distance_to_bottom": 4.0, + "foundation_wall_insulation_distance_to_top": 0.0, + "foundation_wall_insulation_r": 8.9, + "foundation_wall_thickness": "8.0", + "freezer_location": "none", + "freezer_rated_annual_kwh": "auto", + "freezer_usage_multiplier": 1.0, + "fuel_loads_fireplace_annual_therm": "auto", + "fuel_loads_fireplace_frac_latent": "auto", + "fuel_loads_fireplace_frac_sensible": "auto", + "fuel_loads_fireplace_fuel_type": "natural gas", + "fuel_loads_fireplace_present": false, + "fuel_loads_fireplace_usage_multiplier": 0.0, + "fuel_loads_grill_annual_therm": "auto", + "fuel_loads_grill_fuel_type": "natural gas", + "fuel_loads_grill_present": false, + "fuel_loads_grill_usage_multiplier": 0.0, + "fuel_loads_lighting_annual_therm": "auto", + "fuel_loads_lighting_fuel_type": "natural gas", + "fuel_loads_lighting_present": false, + "fuel_loads_lighting_usage_multiplier": 0.0, + "geometry_aspect_ratio": 1.5, + "geometry_attic_type": "UnventedAttic", + "geometry_balcony_depth": 0.0, + "geometry_building_num_bedrooms": 150, + "geometry_building_num_units": 50, + "geometry_cfa": 900.0, + "geometry_corridor_position": "None", + "geometry_corridor_width": 10.0, + "geometry_eaves_depth": 0, + "geometry_foundation_height": 4.0, + "geometry_foundation_height_above_grade": 1.0, + "geometry_foundation_type": "VentedCrawlspace", + "geometry_garage_depth": 20.0, + "geometry_garage_position": "Right", + "geometry_garage_protrusion": 0.0, + "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", + "geometry_horizontal_location": "Left", + "geometry_inset_depth": 0.0, + "geometry_inset_position": "Right", + "geometry_inset_width": 0.0, + "geometry_level": "Bottom", + "geometry_num_bathrooms": "2", + "geometry_num_bedrooms": 3, + "geometry_num_floors_above_grade": 5, + "geometry_num_occupants": "3", + "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, + "geometry_roof_pitch": "6:12", + "geometry_roof_type": "gable", + "geometry_unit_type": "apartment unit", + "geometry_wall_height": 8.0, + "heat_pump_backup_fuel": "none", + "heat_pump_backup_heating_capacity": "34121.0", + "heat_pump_backup_heating_efficiency": 1, + "heat_pump_cooling_capacity": "48000.0", + "heat_pump_cooling_compressor_type": "single stage", + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", + "heat_pump_cooling_sensible_heat_fraction": 0.73, + "heat_pump_fraction_cool_load_served": 1, + "heat_pump_fraction_heat_load_served": 1, + "heat_pump_heating_capacity": "64000.0", + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", + "heat_pump_type": "none", + "heating_system_fraction_heat_load_served": 1, + "heating_system_fraction_heat_load_served_2": 0.25, + "heating_system_fuel": "natural gas", + "heating_system_fuel_2": "electricity", + "heating_system_heating_capacity": "64000.0", + "heating_system_heating_capacity_2": "auto", + "heating_system_heating_efficiency": 0.92, + "heating_system_heating_efficiency_2": 1.0, + "heating_system_type": "Furnace", + "heating_system_type_2": "none", + "holiday_lighting_daily_kwh": "auto", + "holiday_lighting_period_begin_day_of_month": "auto", + "holiday_lighting_period_begin_month": "auto", + "holiday_lighting_period_end_day_of_month": "auto", + "holiday_lighting_period_end_month": "auto", + "holiday_lighting_present": false, + "hot_tub_heater_annual_kwh": "auto", + "hot_tub_heater_annual_therm": "auto", + "hot_tub_heater_type": "electric resistance", + "hot_tub_heater_usage_multiplier": 1.0, + "hot_tub_present": false, + "hot_tub_pump_annual_kwh": "auto", + "hot_tub_pump_usage_multiplier": 1.0, + "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/extra-bldgtype-multifamily-vented-crawlspace-left-bottom.xml", + "kitchen_fans_quantity": "0", + "lighting_fraction_cfl_exterior": 0.4, + "lighting_fraction_cfl_garage": 0.4, + "lighting_fraction_cfl_interior": 0.4, + "lighting_fraction_led_exterior": 0.25, + "lighting_fraction_led_garage": 0.25, + "lighting_fraction_led_interior": 0.25, + "lighting_fraction_lfl_exterior": 0.1, + "lighting_fraction_lfl_garage": 0.1, + "lighting_fraction_lfl_interior": 0.1, + "lighting_usage_multiplier_exterior": 1.0, + "lighting_usage_multiplier_garage": 1.0, + "lighting_usage_multiplier_interior": 1.0, + "mech_vent_fan_power": 30, + "mech_vent_fan_power_2": 30, + "mech_vent_fan_type": "none", + "mech_vent_fan_type_2": "none", + "mech_vent_flow_rate": 110, + "mech_vent_flow_rate_2": 110, + "mech_vent_hours_in_operation": 24, + "mech_vent_hours_in_operation_2": 24, + "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", + "mech_vent_sensible_recovery_efficiency": 0.72, + "mech_vent_sensible_recovery_efficiency_2": 0.72, + "mech_vent_total_recovery_efficiency": 0.48, + "mech_vent_total_recovery_efficiency_2": 0.48, + "neighbor_back_distance": 0, + "neighbor_back_height": "auto", + "neighbor_front_distance": 0, + "neighbor_front_height": "auto", + "neighbor_left_distance": 0, + "neighbor_left_height": "auto", + "neighbor_right_distance": 0, + "neighbor_right_height": "auto", + "overhangs_back_depth": 0, + "overhangs_back_distance_to_top_of_window": 0, + "overhangs_front_depth": 0, + "overhangs_front_distance_to_top_of_window": 0, + "overhangs_left_depth": 0, + "overhangs_left_distance_to_top_of_window": 0, + "overhangs_right_depth": 0, + "overhangs_right_distance_to_top_of_window": 0, + "plug_loads_other_annual_kwh": "819.0", + "plug_loads_other_frac_latent": "0.045", + "plug_loads_other_frac_sensible": "0.855", + "plug_loads_other_usage_multiplier": 1.0, + "plug_loads_television_annual_kwh": "620.0", + "plug_loads_television_usage_multiplier": 1.0, + "plug_loads_vehicle_annual_kwh": "auto", + "plug_loads_vehicle_present": false, + "plug_loads_vehicle_usage_multiplier": 0.0, + "plug_loads_well_pump_annual_kwh": "auto", + "plug_loads_well_pump_present": false, + "plug_loads_well_pump_usage_multiplier": 0.0, + "pool_heater_annual_kwh": "auto", + "pool_heater_annual_therm": "auto", + "pool_heater_type": "electric resistance", + "pool_heater_usage_multiplier": 1.0, + "pool_present": false, + "pool_pump_annual_kwh": "auto", + "pool_pump_usage_multiplier": 1.0, + "pv_system_array_azimuth_1": 180, + "pv_system_array_azimuth_2": 180, + "pv_system_array_tilt_1": "20", + "pv_system_array_tilt_2": "20", + "pv_system_inverter_efficiency_1": 0.96, + "pv_system_inverter_efficiency_2": 0.96, + "pv_system_location_1": "auto", + "pv_system_location_2": "auto", + "pv_system_max_power_output_1": 4000, + "pv_system_max_power_output_2": 4000, + "pv_system_module_type_1": "none", + "pv_system_module_type_2": "none", + "pv_system_num_units_served_1": 1, + "pv_system_num_units_served_2": 1, + "pv_system_system_losses_fraction_1": 0.14, + "pv_system_system_losses_fraction_2": 0.14, + "pv_system_tracking_1": "auto", + "pv_system_tracking_2": "auto", + "refrigerator_location": "living space", + "refrigerator_rated_annual_kwh": "650.0", + "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, + "roof_assembly_r": 2.3, + "roof_color": "medium", + "roof_material_type": "asphalt or fiberglass shingles", + "roof_radiant_barrier": false, + "roof_radiant_barrier_grade": "1", + "schedules_type": "default", + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", + "simulation_control_timestep": "60", + "site_type": "suburban", + "skylight_area_back": 0, + "skylight_area_front": 0, + "skylight_area_left": 0, + "skylight_area_right": 0, + "skylight_shgc": 0.45, + "skylight_ufactor": 0.33, + "slab_carpet_fraction": "0.0", + "slab_carpet_r": "0.0", + "slab_perimeter_depth": 0, + "slab_perimeter_insulation_r": 0, + "slab_thickness": "4.0", + "slab_under_insulation_r": 0, + "slab_under_width": 0, + "solar_thermal_collector_area": 40.0, + "solar_thermal_collector_azimuth": 180, + "solar_thermal_collector_loop_type": "liquid direct", + "solar_thermal_collector_rated_optical_efficiency": 0.5, + "solar_thermal_collector_rated_thermal_losses": 0.2799, + "solar_thermal_collector_tilt": "20", + "solar_thermal_collector_type": "evacuated tube", + "solar_thermal_solar_fraction": 0, + "solar_thermal_storage_volume": "auto", + "solar_thermal_system_type": "none", + "wall_assembly_r": 23, + "wall_color": "medium", + "wall_siding_type": "wood siding", + "wall_type": "WoodStud", + "water_fixtures_shower_low_flow": true, + "water_fixtures_sink_low_flow": false, + "water_fixtures_usage_multiplier": 1.0, + "water_heater_efficiency": 0.95, + "water_heater_efficiency_type": "EnergyFactor", + "water_heater_fuel_type": "electricity", + "water_heater_jacket_rvalue": 0, + "water_heater_location": "living space", + "water_heater_num_units_served": 1, + "water_heater_recovery_efficiency": "0.76", + "water_heater_setpoint_temperature": "125", + "water_heater_standby_loss": 0, + "water_heater_tank_volume": "40", + "water_heater_type": "storage water heater", + "weather_station_epw_filepath": "USA_CO_Denver.Intl.AP.725650_TMY3.epw", + "whole_house_fan_flow_rate": 4500, + "whole_house_fan_power": 300, + "whole_house_fan_present": false, + "window_area_back": 0, + "window_area_front": 0, + "window_area_left": 0, + "window_area_right": 0, + "window_aspect_ratio": 1.333, + "window_back_wwr": 0.18, + "window_fraction_operable": 0.67, + "window_front_wwr": 0.18, + "window_interior_shading_summer": 0.7, + "window_interior_shading_winter": 0.85, + "window_left_wwr": 0.18, + "window_right_wwr": 0.18, + "window_shgc": 0.45, + "window_ufactor": 0.33 + }, + "measure_dir_name": "BuildResidentialHPXML" + } + ] +} \ No newline at end of file diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-vented-crawlspace-left-middle-double-loaded-interior.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-vented-crawlspace-left-middle-double-loaded-interior.osw new file mode 100644 index 00000000..1cb14a49 --- /dev/null +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-vented-crawlspace-left-middle-double-loaded-interior.osw @@ -0,0 +1,341 @@ +{ + "measure_paths": [ + "../.." + ], + "steps": [ + { + "arguments": { + "air_leakage_house_pressure": 50, + "air_leakage_shielding_of_home": "auto", + "air_leakage_units": "ACH", + "air_leakage_value": 3, + "bathroom_fans_quantity": "0", + "ceiling_assembly_r": 39.3, + "ceiling_fan_cooling_setpoint_temp_offset": 0, + "ceiling_fan_efficiency": "auto", + "ceiling_fan_present": false, + "ceiling_fan_quantity": "auto", + "clothes_dryer_efficiency": "3.73", + "clothes_dryer_efficiency_type": "CombinedEnergyFactor", + "clothes_dryer_fuel_type": "electricity", + "clothes_dryer_location": "living space", + "clothes_dryer_usage_multiplier": 1.0, + "clothes_dryer_vented_flow_rate": "150.0", + "clothes_washer_capacity": "3.2", + "clothes_washer_efficiency": "1.21", + "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", + "clothes_washer_label_annual_gas_cost": "27.0", + "clothes_washer_label_electric_rate": "0.12", + "clothes_washer_label_gas_rate": "1.09", + "clothes_washer_label_usage": "6.0", + "clothes_washer_location": "living space", + "clothes_washer_rated_annual_kwh": "380.0", + "clothes_washer_usage_multiplier": 1.0, + "cooking_range_oven_fuel_type": "electricity", + "cooking_range_oven_is_convection": false, + "cooking_range_oven_is_induction": false, + "cooking_range_oven_location": "living space", + "cooking_range_oven_usage_multiplier": 1.0, + "cooling_system_cooling_capacity": "48000.0", + "cooling_system_cooling_compressor_type": "single stage", + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", + "cooling_system_cooling_sensible_heat_fraction": 0.73, + "cooling_system_fraction_cool_load_served": 1, + "cooling_system_is_ducted": false, + "cooling_system_type": "central air conditioner", + "dehumidifier_capacity": 40, + "dehumidifier_efficiency": 1.8, + "dehumidifier_efficiency_type": "EnergyFactor", + "dehumidifier_fraction_dehumidification_load_served": 1, + "dehumidifier_rh_setpoint": 0.5, + "dehumidifier_type": "none", + "dhw_distribution_pipe_r": "0.0", + "dhw_distribution_recirc_branch_piping_length": "50", + "dhw_distribution_recirc_control_type": "no control", + "dhw_distribution_recirc_piping_length": "50", + "dhw_distribution_recirc_pump_power": "50", + "dhw_distribution_standard_piping_length": "50", + "dhw_distribution_system_type": "Standard", + "dishwasher_efficiency": "307", + "dishwasher_efficiency_type": "RatedAnnualkWh", + "dishwasher_label_annual_gas_cost": "22.32", + "dishwasher_label_electric_rate": "0.12", + "dishwasher_label_gas_rate": "1.09", + "dishwasher_label_usage": "4.0", + "dishwasher_location": "living space", + "dishwasher_place_setting_capacity": "12", + "dishwasher_usage_multiplier": 1.0, + "door_area": 20.0, + "door_rvalue": 4.4, + "ducts_number_of_return_registers": "1", + "ducts_return_insulation_r": 0.0, + "ducts_return_leakage_units": "CFM25", + "ducts_return_leakage_value": 0.0, + "ducts_return_location": "living space", + "ducts_return_surface_area": "50.0", + "ducts_supply_insulation_r": 0.0, + "ducts_supply_leakage_units": "CFM25", + "ducts_supply_leakage_value": 0.0, + "ducts_supply_location": "living space", + "ducts_supply_surface_area": "150.0", + "dwhr_efficiency": 0.55, + "dwhr_equal_flow": true, + "dwhr_facilities_connected": "none", + "extra_refrigerator_location": "none", + "extra_refrigerator_rated_annual_kwh": "auto", + "extra_refrigerator_usage_multiplier": 1.0, + "floor_assembly_r": 18.7, + "foundation_wall_insulation_distance_to_bottom": 4.0, + "foundation_wall_insulation_distance_to_top": 0.0, + "foundation_wall_insulation_r": 8.9, + "foundation_wall_thickness": "8.0", + "freezer_location": "none", + "freezer_rated_annual_kwh": "auto", + "freezer_usage_multiplier": 1.0, + "fuel_loads_fireplace_annual_therm": "auto", + "fuel_loads_fireplace_frac_latent": "auto", + "fuel_loads_fireplace_frac_sensible": "auto", + "fuel_loads_fireplace_fuel_type": "natural gas", + "fuel_loads_fireplace_present": false, + "fuel_loads_fireplace_usage_multiplier": 0.0, + "fuel_loads_grill_annual_therm": "auto", + "fuel_loads_grill_fuel_type": "natural gas", + "fuel_loads_grill_present": false, + "fuel_loads_grill_usage_multiplier": 0.0, + "fuel_loads_lighting_annual_therm": "auto", + "fuel_loads_lighting_fuel_type": "natural gas", + "fuel_loads_lighting_present": false, + "fuel_loads_lighting_usage_multiplier": 0.0, + "geometry_aspect_ratio": 1.5, + "geometry_attic_type": "UnventedAttic", + "geometry_balcony_depth": 0.0, + "geometry_building_num_bedrooms": 150, + "geometry_building_num_units": 50, + "geometry_cfa": 900.0, + "geometry_corridor_position": "Double-Loaded Interior", + "geometry_corridor_width": 10.0, + "geometry_eaves_depth": 0, + "geometry_foundation_height": 4.0, + "geometry_foundation_height_above_grade": 1.0, + "geometry_foundation_type": "VentedCrawlspace", + "geometry_garage_depth": 20.0, + "geometry_garage_position": "Right", + "geometry_garage_protrusion": 0.0, + "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", + "geometry_horizontal_location": "Left", + "geometry_inset_depth": 0.0, + "geometry_inset_position": "Right", + "geometry_inset_width": 0.0, + "geometry_level": "Middle", + "geometry_num_bathrooms": "2", + "geometry_num_bedrooms": 3, + "geometry_num_floors_above_grade": 5, + "geometry_num_occupants": "3", + "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, + "geometry_roof_pitch": "6:12", + "geometry_roof_type": "gable", + "geometry_unit_type": "apartment unit", + "geometry_wall_height": 8.0, + "heat_pump_backup_fuel": "none", + "heat_pump_backup_heating_capacity": "34121.0", + "heat_pump_backup_heating_efficiency": 1, + "heat_pump_cooling_capacity": "48000.0", + "heat_pump_cooling_compressor_type": "single stage", + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", + "heat_pump_cooling_sensible_heat_fraction": 0.73, + "heat_pump_fraction_cool_load_served": 1, + "heat_pump_fraction_heat_load_served": 1, + "heat_pump_heating_capacity": "64000.0", + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", + "heat_pump_type": "none", + "heating_system_fraction_heat_load_served": 1, + "heating_system_fraction_heat_load_served_2": 0.25, + "heating_system_fuel": "natural gas", + "heating_system_fuel_2": "electricity", + "heating_system_heating_capacity": "64000.0", + "heating_system_heating_capacity_2": "auto", + "heating_system_heating_efficiency": 0.92, + "heating_system_heating_efficiency_2": 1.0, + "heating_system_type": "Furnace", + "heating_system_type_2": "none", + "holiday_lighting_daily_kwh": "auto", + "holiday_lighting_period_begin_day_of_month": "auto", + "holiday_lighting_period_begin_month": "auto", + "holiday_lighting_period_end_day_of_month": "auto", + "holiday_lighting_period_end_month": "auto", + "holiday_lighting_present": false, + "hot_tub_heater_annual_kwh": "auto", + "hot_tub_heater_annual_therm": "auto", + "hot_tub_heater_type": "electric resistance", + "hot_tub_heater_usage_multiplier": 1.0, + "hot_tub_present": false, + "hot_tub_pump_annual_kwh": "auto", + "hot_tub_pump_usage_multiplier": 1.0, + "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/extra-bldgtype-multifamily-vented-crawlspace-left-middle-double-loaded-interior.xml", + "kitchen_fans_quantity": "0", + "lighting_fraction_cfl_exterior": 0.4, + "lighting_fraction_cfl_garage": 0.4, + "lighting_fraction_cfl_interior": 0.4, + "lighting_fraction_led_exterior": 0.25, + "lighting_fraction_led_garage": 0.25, + "lighting_fraction_led_interior": 0.25, + "lighting_fraction_lfl_exterior": 0.1, + "lighting_fraction_lfl_garage": 0.1, + "lighting_fraction_lfl_interior": 0.1, + "lighting_usage_multiplier_exterior": 1.0, + "lighting_usage_multiplier_garage": 1.0, + "lighting_usage_multiplier_interior": 1.0, + "mech_vent_fan_power": 30, + "mech_vent_fan_power_2": 30, + "mech_vent_fan_type": "none", + "mech_vent_fan_type_2": "none", + "mech_vent_flow_rate": 110, + "mech_vent_flow_rate_2": 110, + "mech_vent_hours_in_operation": 24, + "mech_vent_hours_in_operation_2": 24, + "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", + "mech_vent_sensible_recovery_efficiency": 0.72, + "mech_vent_sensible_recovery_efficiency_2": 0.72, + "mech_vent_total_recovery_efficiency": 0.48, + "mech_vent_total_recovery_efficiency_2": 0.48, + "neighbor_back_distance": 0, + "neighbor_back_height": "auto", + "neighbor_front_distance": 0, + "neighbor_front_height": "auto", + "neighbor_left_distance": 0, + "neighbor_left_height": "auto", + "neighbor_right_distance": 0, + "neighbor_right_height": "auto", + "overhangs_back_depth": 0, + "overhangs_back_distance_to_top_of_window": 0, + "overhangs_front_depth": 0, + "overhangs_front_distance_to_top_of_window": 0, + "overhangs_left_depth": 0, + "overhangs_left_distance_to_top_of_window": 0, + "overhangs_right_depth": 0, + "overhangs_right_distance_to_top_of_window": 0, + "plug_loads_other_annual_kwh": "819.0", + "plug_loads_other_frac_latent": "0.045", + "plug_loads_other_frac_sensible": "0.855", + "plug_loads_other_usage_multiplier": 1.0, + "plug_loads_television_annual_kwh": "620.0", + "plug_loads_television_usage_multiplier": 1.0, + "plug_loads_vehicle_annual_kwh": "auto", + "plug_loads_vehicle_present": false, + "plug_loads_vehicle_usage_multiplier": 0.0, + "plug_loads_well_pump_annual_kwh": "auto", + "plug_loads_well_pump_present": false, + "plug_loads_well_pump_usage_multiplier": 0.0, + "pool_heater_annual_kwh": "auto", + "pool_heater_annual_therm": "auto", + "pool_heater_type": "electric resistance", + "pool_heater_usage_multiplier": 1.0, + "pool_present": false, + "pool_pump_annual_kwh": "auto", + "pool_pump_usage_multiplier": 1.0, + "pv_system_array_azimuth_1": 180, + "pv_system_array_azimuth_2": 180, + "pv_system_array_tilt_1": "20", + "pv_system_array_tilt_2": "20", + "pv_system_inverter_efficiency_1": 0.96, + "pv_system_inverter_efficiency_2": 0.96, + "pv_system_location_1": "auto", + "pv_system_location_2": "auto", + "pv_system_max_power_output_1": 4000, + "pv_system_max_power_output_2": 4000, + "pv_system_module_type_1": "none", + "pv_system_module_type_2": "none", + "pv_system_num_units_served_1": 1, + "pv_system_num_units_served_2": 1, + "pv_system_system_losses_fraction_1": 0.14, + "pv_system_system_losses_fraction_2": 0.14, + "pv_system_tracking_1": "auto", + "pv_system_tracking_2": "auto", + "refrigerator_location": "living space", + "refrigerator_rated_annual_kwh": "650.0", + "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, + "roof_assembly_r": 2.3, + "roof_color": "medium", + "roof_material_type": "asphalt or fiberglass shingles", + "roof_radiant_barrier": false, + "roof_radiant_barrier_grade": "1", + "schedules_type": "default", + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", + "simulation_control_timestep": "60", + "site_type": "suburban", + "skylight_area_back": 0, + "skylight_area_front": 0, + "skylight_area_left": 0, + "skylight_area_right": 0, + "skylight_shgc": 0.45, + "skylight_ufactor": 0.33, + "slab_carpet_fraction": "0.0", + "slab_carpet_r": "0.0", + "slab_perimeter_depth": 0, + "slab_perimeter_insulation_r": 0, + "slab_thickness": "4.0", + "slab_under_insulation_r": 0, + "slab_under_width": 0, + "solar_thermal_collector_area": 40.0, + "solar_thermal_collector_azimuth": 180, + "solar_thermal_collector_loop_type": "liquid direct", + "solar_thermal_collector_rated_optical_efficiency": 0.5, + "solar_thermal_collector_rated_thermal_losses": 0.2799, + "solar_thermal_collector_tilt": "20", + "solar_thermal_collector_type": "evacuated tube", + "solar_thermal_solar_fraction": 0, + "solar_thermal_storage_volume": "auto", + "solar_thermal_system_type": "none", + "wall_assembly_r": 23, + "wall_color": "medium", + "wall_siding_type": "wood siding", + "wall_type": "WoodStud", + "water_fixtures_shower_low_flow": true, + "water_fixtures_sink_low_flow": false, + "water_fixtures_usage_multiplier": 1.0, + "water_heater_efficiency": 0.95, + "water_heater_efficiency_type": "EnergyFactor", + "water_heater_fuel_type": "electricity", + "water_heater_jacket_rvalue": 0, + "water_heater_location": "living space", + "water_heater_num_units_served": 1, + "water_heater_recovery_efficiency": "0.76", + "water_heater_setpoint_temperature": "125", + "water_heater_standby_loss": 0, + "water_heater_tank_volume": "40", + "water_heater_type": "storage water heater", + "weather_station_epw_filepath": "USA_CO_Denver.Intl.AP.725650_TMY3.epw", + "whole_house_fan_flow_rate": 4500, + "whole_house_fan_power": 300, + "whole_house_fan_present": false, + "window_area_back": 0, + "window_area_front": 0, + "window_area_left": 0, + "window_area_right": 0, + "window_aspect_ratio": 1.333, + "window_back_wwr": 0.18, + "window_fraction_operable": 0.67, + "window_front_wwr": 0.18, + "window_interior_shading_summer": 0.7, + "window_interior_shading_winter": 0.85, + "window_left_wwr": 0.18, + "window_right_wwr": 0.18, + "window_shgc": 0.45, + "window_ufactor": 0.33 + }, + "measure_dir_name": "BuildResidentialHPXML" + } + ] +} \ No newline at end of file diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-vented-crawlspace-left-middle.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-vented-crawlspace-left-middle.osw new file mode 100644 index 00000000..13ded293 --- /dev/null +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-vented-crawlspace-left-middle.osw @@ -0,0 +1,341 @@ +{ + "measure_paths": [ + "../.." + ], + "steps": [ + { + "arguments": { + "air_leakage_house_pressure": 50, + "air_leakage_shielding_of_home": "auto", + "air_leakage_units": "ACH", + "air_leakage_value": 3, + "bathroom_fans_quantity": "0", + "ceiling_assembly_r": 39.3, + "ceiling_fan_cooling_setpoint_temp_offset": 0, + "ceiling_fan_efficiency": "auto", + "ceiling_fan_present": false, + "ceiling_fan_quantity": "auto", + "clothes_dryer_efficiency": "3.73", + "clothes_dryer_efficiency_type": "CombinedEnergyFactor", + "clothes_dryer_fuel_type": "electricity", + "clothes_dryer_location": "living space", + "clothes_dryer_usage_multiplier": 1.0, + "clothes_dryer_vented_flow_rate": "150.0", + "clothes_washer_capacity": "3.2", + "clothes_washer_efficiency": "1.21", + "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", + "clothes_washer_label_annual_gas_cost": "27.0", + "clothes_washer_label_electric_rate": "0.12", + "clothes_washer_label_gas_rate": "1.09", + "clothes_washer_label_usage": "6.0", + "clothes_washer_location": "living space", + "clothes_washer_rated_annual_kwh": "380.0", + "clothes_washer_usage_multiplier": 1.0, + "cooking_range_oven_fuel_type": "electricity", + "cooking_range_oven_is_convection": false, + "cooking_range_oven_is_induction": false, + "cooking_range_oven_location": "living space", + "cooking_range_oven_usage_multiplier": 1.0, + "cooling_system_cooling_capacity": "48000.0", + "cooling_system_cooling_compressor_type": "single stage", + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", + "cooling_system_cooling_sensible_heat_fraction": 0.73, + "cooling_system_fraction_cool_load_served": 1, + "cooling_system_is_ducted": false, + "cooling_system_type": "central air conditioner", + "dehumidifier_capacity": 40, + "dehumidifier_efficiency": 1.8, + "dehumidifier_efficiency_type": "EnergyFactor", + "dehumidifier_fraction_dehumidification_load_served": 1, + "dehumidifier_rh_setpoint": 0.5, + "dehumidifier_type": "none", + "dhw_distribution_pipe_r": "0.0", + "dhw_distribution_recirc_branch_piping_length": "50", + "dhw_distribution_recirc_control_type": "no control", + "dhw_distribution_recirc_piping_length": "50", + "dhw_distribution_recirc_pump_power": "50", + "dhw_distribution_standard_piping_length": "50", + "dhw_distribution_system_type": "Standard", + "dishwasher_efficiency": "307", + "dishwasher_efficiency_type": "RatedAnnualkWh", + "dishwasher_label_annual_gas_cost": "22.32", + "dishwasher_label_electric_rate": "0.12", + "dishwasher_label_gas_rate": "1.09", + "dishwasher_label_usage": "4.0", + "dishwasher_location": "living space", + "dishwasher_place_setting_capacity": "12", + "dishwasher_usage_multiplier": 1.0, + "door_area": 20.0, + "door_rvalue": 4.4, + "ducts_number_of_return_registers": "1", + "ducts_return_insulation_r": 0.0, + "ducts_return_leakage_units": "CFM25", + "ducts_return_leakage_value": 0.0, + "ducts_return_location": "living space", + "ducts_return_surface_area": "50.0", + "ducts_supply_insulation_r": 0.0, + "ducts_supply_leakage_units": "CFM25", + "ducts_supply_leakage_value": 0.0, + "ducts_supply_location": "living space", + "ducts_supply_surface_area": "150.0", + "dwhr_efficiency": 0.55, + "dwhr_equal_flow": true, + "dwhr_facilities_connected": "none", + "extra_refrigerator_location": "none", + "extra_refrigerator_rated_annual_kwh": "auto", + "extra_refrigerator_usage_multiplier": 1.0, + "floor_assembly_r": 18.7, + "foundation_wall_insulation_distance_to_bottom": 4.0, + "foundation_wall_insulation_distance_to_top": 0.0, + "foundation_wall_insulation_r": 8.9, + "foundation_wall_thickness": "8.0", + "freezer_location": "none", + "freezer_rated_annual_kwh": "auto", + "freezer_usage_multiplier": 1.0, + "fuel_loads_fireplace_annual_therm": "auto", + "fuel_loads_fireplace_frac_latent": "auto", + "fuel_loads_fireplace_frac_sensible": "auto", + "fuel_loads_fireplace_fuel_type": "natural gas", + "fuel_loads_fireplace_present": false, + "fuel_loads_fireplace_usage_multiplier": 0.0, + "fuel_loads_grill_annual_therm": "auto", + "fuel_loads_grill_fuel_type": "natural gas", + "fuel_loads_grill_present": false, + "fuel_loads_grill_usage_multiplier": 0.0, + "fuel_loads_lighting_annual_therm": "auto", + "fuel_loads_lighting_fuel_type": "natural gas", + "fuel_loads_lighting_present": false, + "fuel_loads_lighting_usage_multiplier": 0.0, + "geometry_aspect_ratio": 1.5, + "geometry_attic_type": "UnventedAttic", + "geometry_balcony_depth": 0.0, + "geometry_building_num_bedrooms": 150, + "geometry_building_num_units": 50, + "geometry_cfa": 900.0, + "geometry_corridor_position": "None", + "geometry_corridor_width": 10.0, + "geometry_eaves_depth": 0, + "geometry_foundation_height": 4.0, + "geometry_foundation_height_above_grade": 1.0, + "geometry_foundation_type": "VentedCrawlspace", + "geometry_garage_depth": 20.0, + "geometry_garage_position": "Right", + "geometry_garage_protrusion": 0.0, + "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", + "geometry_horizontal_location": "Left", + "geometry_inset_depth": 0.0, + "geometry_inset_position": "Right", + "geometry_inset_width": 0.0, + "geometry_level": "Middle", + "geometry_num_bathrooms": "2", + "geometry_num_bedrooms": 3, + "geometry_num_floors_above_grade": 5, + "geometry_num_occupants": "3", + "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, + "geometry_roof_pitch": "6:12", + "geometry_roof_type": "gable", + "geometry_unit_type": "apartment unit", + "geometry_wall_height": 8.0, + "heat_pump_backup_fuel": "none", + "heat_pump_backup_heating_capacity": "34121.0", + "heat_pump_backup_heating_efficiency": 1, + "heat_pump_cooling_capacity": "48000.0", + "heat_pump_cooling_compressor_type": "single stage", + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", + "heat_pump_cooling_sensible_heat_fraction": 0.73, + "heat_pump_fraction_cool_load_served": 1, + "heat_pump_fraction_heat_load_served": 1, + "heat_pump_heating_capacity": "64000.0", + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", + "heat_pump_type": "none", + "heating_system_fraction_heat_load_served": 1, + "heating_system_fraction_heat_load_served_2": 0.25, + "heating_system_fuel": "natural gas", + "heating_system_fuel_2": "electricity", + "heating_system_heating_capacity": "64000.0", + "heating_system_heating_capacity_2": "auto", + "heating_system_heating_efficiency": 0.92, + "heating_system_heating_efficiency_2": 1.0, + "heating_system_type": "Furnace", + "heating_system_type_2": "none", + "holiday_lighting_daily_kwh": "auto", + "holiday_lighting_period_begin_day_of_month": "auto", + "holiday_lighting_period_begin_month": "auto", + "holiday_lighting_period_end_day_of_month": "auto", + "holiday_lighting_period_end_month": "auto", + "holiday_lighting_present": false, + "hot_tub_heater_annual_kwh": "auto", + "hot_tub_heater_annual_therm": "auto", + "hot_tub_heater_type": "electric resistance", + "hot_tub_heater_usage_multiplier": 1.0, + "hot_tub_present": false, + "hot_tub_pump_annual_kwh": "auto", + "hot_tub_pump_usage_multiplier": 1.0, + "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/extra-bldgtype-multifamily-vented-crawlspace-left-middle.xml", + "kitchen_fans_quantity": "0", + "lighting_fraction_cfl_exterior": 0.4, + "lighting_fraction_cfl_garage": 0.4, + "lighting_fraction_cfl_interior": 0.4, + "lighting_fraction_led_exterior": 0.25, + "lighting_fraction_led_garage": 0.25, + "lighting_fraction_led_interior": 0.25, + "lighting_fraction_lfl_exterior": 0.1, + "lighting_fraction_lfl_garage": 0.1, + "lighting_fraction_lfl_interior": 0.1, + "lighting_usage_multiplier_exterior": 1.0, + "lighting_usage_multiplier_garage": 1.0, + "lighting_usage_multiplier_interior": 1.0, + "mech_vent_fan_power": 30, + "mech_vent_fan_power_2": 30, + "mech_vent_fan_type": "none", + "mech_vent_fan_type_2": "none", + "mech_vent_flow_rate": 110, + "mech_vent_flow_rate_2": 110, + "mech_vent_hours_in_operation": 24, + "mech_vent_hours_in_operation_2": 24, + "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", + "mech_vent_sensible_recovery_efficiency": 0.72, + "mech_vent_sensible_recovery_efficiency_2": 0.72, + "mech_vent_total_recovery_efficiency": 0.48, + "mech_vent_total_recovery_efficiency_2": 0.48, + "neighbor_back_distance": 0, + "neighbor_back_height": "auto", + "neighbor_front_distance": 0, + "neighbor_front_height": "auto", + "neighbor_left_distance": 0, + "neighbor_left_height": "auto", + "neighbor_right_distance": 0, + "neighbor_right_height": "auto", + "overhangs_back_depth": 0, + "overhangs_back_distance_to_top_of_window": 0, + "overhangs_front_depth": 0, + "overhangs_front_distance_to_top_of_window": 0, + "overhangs_left_depth": 0, + "overhangs_left_distance_to_top_of_window": 0, + "overhangs_right_depth": 0, + "overhangs_right_distance_to_top_of_window": 0, + "plug_loads_other_annual_kwh": "819.0", + "plug_loads_other_frac_latent": "0.045", + "plug_loads_other_frac_sensible": "0.855", + "plug_loads_other_usage_multiplier": 1.0, + "plug_loads_television_annual_kwh": "620.0", + "plug_loads_television_usage_multiplier": 1.0, + "plug_loads_vehicle_annual_kwh": "auto", + "plug_loads_vehicle_present": false, + "plug_loads_vehicle_usage_multiplier": 0.0, + "plug_loads_well_pump_annual_kwh": "auto", + "plug_loads_well_pump_present": false, + "plug_loads_well_pump_usage_multiplier": 0.0, + "pool_heater_annual_kwh": "auto", + "pool_heater_annual_therm": "auto", + "pool_heater_type": "electric resistance", + "pool_heater_usage_multiplier": 1.0, + "pool_present": false, + "pool_pump_annual_kwh": "auto", + "pool_pump_usage_multiplier": 1.0, + "pv_system_array_azimuth_1": 180, + "pv_system_array_azimuth_2": 180, + "pv_system_array_tilt_1": "20", + "pv_system_array_tilt_2": "20", + "pv_system_inverter_efficiency_1": 0.96, + "pv_system_inverter_efficiency_2": 0.96, + "pv_system_location_1": "auto", + "pv_system_location_2": "auto", + "pv_system_max_power_output_1": 4000, + "pv_system_max_power_output_2": 4000, + "pv_system_module_type_1": "none", + "pv_system_module_type_2": "none", + "pv_system_num_units_served_1": 1, + "pv_system_num_units_served_2": 1, + "pv_system_system_losses_fraction_1": 0.14, + "pv_system_system_losses_fraction_2": 0.14, + "pv_system_tracking_1": "auto", + "pv_system_tracking_2": "auto", + "refrigerator_location": "living space", + "refrigerator_rated_annual_kwh": "650.0", + "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, + "roof_assembly_r": 2.3, + "roof_color": "medium", + "roof_material_type": "asphalt or fiberglass shingles", + "roof_radiant_barrier": false, + "roof_radiant_barrier_grade": "1", + "schedules_type": "default", + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", + "simulation_control_timestep": "60", + "site_type": "suburban", + "skylight_area_back": 0, + "skylight_area_front": 0, + "skylight_area_left": 0, + "skylight_area_right": 0, + "skylight_shgc": 0.45, + "skylight_ufactor": 0.33, + "slab_carpet_fraction": "0.0", + "slab_carpet_r": "0.0", + "slab_perimeter_depth": 0, + "slab_perimeter_insulation_r": 0, + "slab_thickness": "4.0", + "slab_under_insulation_r": 0, + "slab_under_width": 0, + "solar_thermal_collector_area": 40.0, + "solar_thermal_collector_azimuth": 180, + "solar_thermal_collector_loop_type": "liquid direct", + "solar_thermal_collector_rated_optical_efficiency": 0.5, + "solar_thermal_collector_rated_thermal_losses": 0.2799, + "solar_thermal_collector_tilt": "20", + "solar_thermal_collector_type": "evacuated tube", + "solar_thermal_solar_fraction": 0, + "solar_thermal_storage_volume": "auto", + "solar_thermal_system_type": "none", + "wall_assembly_r": 23, + "wall_color": "medium", + "wall_siding_type": "wood siding", + "wall_type": "WoodStud", + "water_fixtures_shower_low_flow": true, + "water_fixtures_sink_low_flow": false, + "water_fixtures_usage_multiplier": 1.0, + "water_heater_efficiency": 0.95, + "water_heater_efficiency_type": "EnergyFactor", + "water_heater_fuel_type": "electricity", + "water_heater_jacket_rvalue": 0, + "water_heater_location": "living space", + "water_heater_num_units_served": 1, + "water_heater_recovery_efficiency": "0.76", + "water_heater_setpoint_temperature": "125", + "water_heater_standby_loss": 0, + "water_heater_tank_volume": "40", + "water_heater_type": "storage water heater", + "weather_station_epw_filepath": "USA_CO_Denver.Intl.AP.725650_TMY3.epw", + "whole_house_fan_flow_rate": 4500, + "whole_house_fan_power": 300, + "whole_house_fan_present": false, + "window_area_back": 0, + "window_area_front": 0, + "window_area_left": 0, + "window_area_right": 0, + "window_aspect_ratio": 1.333, + "window_back_wwr": 0.18, + "window_fraction_operable": 0.67, + "window_front_wwr": 0.18, + "window_interior_shading_summer": 0.7, + "window_interior_shading_winter": 0.85, + "window_left_wwr": 0.18, + "window_right_wwr": 0.18, + "window_shgc": 0.45, + "window_ufactor": 0.33 + }, + "measure_dir_name": "BuildResidentialHPXML" + } + ] +} \ No newline at end of file diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-vented-crawlspace-left-top-double-loaded-interior.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-vented-crawlspace-left-top-double-loaded-interior.osw new file mode 100644 index 00000000..0b384a64 --- /dev/null +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-vented-crawlspace-left-top-double-loaded-interior.osw @@ -0,0 +1,341 @@ +{ + "measure_paths": [ + "../.." + ], + "steps": [ + { + "arguments": { + "air_leakage_house_pressure": 50, + "air_leakage_shielding_of_home": "auto", + "air_leakage_units": "ACH", + "air_leakage_value": 3, + "bathroom_fans_quantity": "0", + "ceiling_assembly_r": 39.3, + "ceiling_fan_cooling_setpoint_temp_offset": 0, + "ceiling_fan_efficiency": "auto", + "ceiling_fan_present": false, + "ceiling_fan_quantity": "auto", + "clothes_dryer_efficiency": "3.73", + "clothes_dryer_efficiency_type": "CombinedEnergyFactor", + "clothes_dryer_fuel_type": "electricity", + "clothes_dryer_location": "living space", + "clothes_dryer_usage_multiplier": 1.0, + "clothes_dryer_vented_flow_rate": "150.0", + "clothes_washer_capacity": "3.2", + "clothes_washer_efficiency": "1.21", + "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", + "clothes_washer_label_annual_gas_cost": "27.0", + "clothes_washer_label_electric_rate": "0.12", + "clothes_washer_label_gas_rate": "1.09", + "clothes_washer_label_usage": "6.0", + "clothes_washer_location": "living space", + "clothes_washer_rated_annual_kwh": "380.0", + "clothes_washer_usage_multiplier": 1.0, + "cooking_range_oven_fuel_type": "electricity", + "cooking_range_oven_is_convection": false, + "cooking_range_oven_is_induction": false, + "cooking_range_oven_location": "living space", + "cooking_range_oven_usage_multiplier": 1.0, + "cooling_system_cooling_capacity": "48000.0", + "cooling_system_cooling_compressor_type": "single stage", + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", + "cooling_system_cooling_sensible_heat_fraction": 0.73, + "cooling_system_fraction_cool_load_served": 1, + "cooling_system_is_ducted": false, + "cooling_system_type": "central air conditioner", + "dehumidifier_capacity": 40, + "dehumidifier_efficiency": 1.8, + "dehumidifier_efficiency_type": "EnergyFactor", + "dehumidifier_fraction_dehumidification_load_served": 1, + "dehumidifier_rh_setpoint": 0.5, + "dehumidifier_type": "none", + "dhw_distribution_pipe_r": "0.0", + "dhw_distribution_recirc_branch_piping_length": "50", + "dhw_distribution_recirc_control_type": "no control", + "dhw_distribution_recirc_piping_length": "50", + "dhw_distribution_recirc_pump_power": "50", + "dhw_distribution_standard_piping_length": "50", + "dhw_distribution_system_type": "Standard", + "dishwasher_efficiency": "307", + "dishwasher_efficiency_type": "RatedAnnualkWh", + "dishwasher_label_annual_gas_cost": "22.32", + "dishwasher_label_electric_rate": "0.12", + "dishwasher_label_gas_rate": "1.09", + "dishwasher_label_usage": "4.0", + "dishwasher_location": "living space", + "dishwasher_place_setting_capacity": "12", + "dishwasher_usage_multiplier": 1.0, + "door_area": 20.0, + "door_rvalue": 4.4, + "ducts_number_of_return_registers": "1", + "ducts_return_insulation_r": 0.0, + "ducts_return_leakage_units": "CFM25", + "ducts_return_leakage_value": 0.0, + "ducts_return_location": "living space", + "ducts_return_surface_area": "50.0", + "ducts_supply_insulation_r": 0.0, + "ducts_supply_leakage_units": "CFM25", + "ducts_supply_leakage_value": 0.0, + "ducts_supply_location": "living space", + "ducts_supply_surface_area": "150.0", + "dwhr_efficiency": 0.55, + "dwhr_equal_flow": true, + "dwhr_facilities_connected": "none", + "extra_refrigerator_location": "none", + "extra_refrigerator_rated_annual_kwh": "auto", + "extra_refrigerator_usage_multiplier": 1.0, + "floor_assembly_r": 18.7, + "foundation_wall_insulation_distance_to_bottom": 4.0, + "foundation_wall_insulation_distance_to_top": 0.0, + "foundation_wall_insulation_r": 8.9, + "foundation_wall_thickness": "8.0", + "freezer_location": "none", + "freezer_rated_annual_kwh": "auto", + "freezer_usage_multiplier": 1.0, + "fuel_loads_fireplace_annual_therm": "auto", + "fuel_loads_fireplace_frac_latent": "auto", + "fuel_loads_fireplace_frac_sensible": "auto", + "fuel_loads_fireplace_fuel_type": "natural gas", + "fuel_loads_fireplace_present": false, + "fuel_loads_fireplace_usage_multiplier": 0.0, + "fuel_loads_grill_annual_therm": "auto", + "fuel_loads_grill_fuel_type": "natural gas", + "fuel_loads_grill_present": false, + "fuel_loads_grill_usage_multiplier": 0.0, + "fuel_loads_lighting_annual_therm": "auto", + "fuel_loads_lighting_fuel_type": "natural gas", + "fuel_loads_lighting_present": false, + "fuel_loads_lighting_usage_multiplier": 0.0, + "geometry_aspect_ratio": 1.5, + "geometry_attic_type": "UnventedAttic", + "geometry_balcony_depth": 0.0, + "geometry_building_num_bedrooms": 150, + "geometry_building_num_units": 50, + "geometry_cfa": 900.0, + "geometry_corridor_position": "Double-Loaded Interior", + "geometry_corridor_width": 10.0, + "geometry_eaves_depth": 0, + "geometry_foundation_height": 4.0, + "geometry_foundation_height_above_grade": 1.0, + "geometry_foundation_type": "VentedCrawlspace", + "geometry_garage_depth": 20.0, + "geometry_garage_position": "Right", + "geometry_garage_protrusion": 0.0, + "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", + "geometry_horizontal_location": "Left", + "geometry_inset_depth": 0.0, + "geometry_inset_position": "Right", + "geometry_inset_width": 0.0, + "geometry_level": "Top", + "geometry_num_bathrooms": "2", + "geometry_num_bedrooms": 3, + "geometry_num_floors_above_grade": 5, + "geometry_num_occupants": "3", + "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, + "geometry_roof_pitch": "6:12", + "geometry_roof_type": "gable", + "geometry_unit_type": "apartment unit", + "geometry_wall_height": 8.0, + "heat_pump_backup_fuel": "none", + "heat_pump_backup_heating_capacity": "34121.0", + "heat_pump_backup_heating_efficiency": 1, + "heat_pump_cooling_capacity": "48000.0", + "heat_pump_cooling_compressor_type": "single stage", + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", + "heat_pump_cooling_sensible_heat_fraction": 0.73, + "heat_pump_fraction_cool_load_served": 1, + "heat_pump_fraction_heat_load_served": 1, + "heat_pump_heating_capacity": "64000.0", + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", + "heat_pump_type": "none", + "heating_system_fraction_heat_load_served": 1, + "heating_system_fraction_heat_load_served_2": 0.25, + "heating_system_fuel": "natural gas", + "heating_system_fuel_2": "electricity", + "heating_system_heating_capacity": "64000.0", + "heating_system_heating_capacity_2": "auto", + "heating_system_heating_efficiency": 0.92, + "heating_system_heating_efficiency_2": 1.0, + "heating_system_type": "Furnace", + "heating_system_type_2": "none", + "holiday_lighting_daily_kwh": "auto", + "holiday_lighting_period_begin_day_of_month": "auto", + "holiday_lighting_period_begin_month": "auto", + "holiday_lighting_period_end_day_of_month": "auto", + "holiday_lighting_period_end_month": "auto", + "holiday_lighting_present": false, + "hot_tub_heater_annual_kwh": "auto", + "hot_tub_heater_annual_therm": "auto", + "hot_tub_heater_type": "electric resistance", + "hot_tub_heater_usage_multiplier": 1.0, + "hot_tub_present": false, + "hot_tub_pump_annual_kwh": "auto", + "hot_tub_pump_usage_multiplier": 1.0, + "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/extra-bldgtype-multifamily-vented-crawlspace-left-top-double-loaded-interior.xml", + "kitchen_fans_quantity": "0", + "lighting_fraction_cfl_exterior": 0.4, + "lighting_fraction_cfl_garage": 0.4, + "lighting_fraction_cfl_interior": 0.4, + "lighting_fraction_led_exterior": 0.25, + "lighting_fraction_led_garage": 0.25, + "lighting_fraction_led_interior": 0.25, + "lighting_fraction_lfl_exterior": 0.1, + "lighting_fraction_lfl_garage": 0.1, + "lighting_fraction_lfl_interior": 0.1, + "lighting_usage_multiplier_exterior": 1.0, + "lighting_usage_multiplier_garage": 1.0, + "lighting_usage_multiplier_interior": 1.0, + "mech_vent_fan_power": 30, + "mech_vent_fan_power_2": 30, + "mech_vent_fan_type": "none", + "mech_vent_fan_type_2": "none", + "mech_vent_flow_rate": 110, + "mech_vent_flow_rate_2": 110, + "mech_vent_hours_in_operation": 24, + "mech_vent_hours_in_operation_2": 24, + "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", + "mech_vent_sensible_recovery_efficiency": 0.72, + "mech_vent_sensible_recovery_efficiency_2": 0.72, + "mech_vent_total_recovery_efficiency": 0.48, + "mech_vent_total_recovery_efficiency_2": 0.48, + "neighbor_back_distance": 0, + "neighbor_back_height": "auto", + "neighbor_front_distance": 0, + "neighbor_front_height": "auto", + "neighbor_left_distance": 0, + "neighbor_left_height": "auto", + "neighbor_right_distance": 0, + "neighbor_right_height": "auto", + "overhangs_back_depth": 0, + "overhangs_back_distance_to_top_of_window": 0, + "overhangs_front_depth": 0, + "overhangs_front_distance_to_top_of_window": 0, + "overhangs_left_depth": 0, + "overhangs_left_distance_to_top_of_window": 0, + "overhangs_right_depth": 0, + "overhangs_right_distance_to_top_of_window": 0, + "plug_loads_other_annual_kwh": "819.0", + "plug_loads_other_frac_latent": "0.045", + "plug_loads_other_frac_sensible": "0.855", + "plug_loads_other_usage_multiplier": 1.0, + "plug_loads_television_annual_kwh": "620.0", + "plug_loads_television_usage_multiplier": 1.0, + "plug_loads_vehicle_annual_kwh": "auto", + "plug_loads_vehicle_present": false, + "plug_loads_vehicle_usage_multiplier": 0.0, + "plug_loads_well_pump_annual_kwh": "auto", + "plug_loads_well_pump_present": false, + "plug_loads_well_pump_usage_multiplier": 0.0, + "pool_heater_annual_kwh": "auto", + "pool_heater_annual_therm": "auto", + "pool_heater_type": "electric resistance", + "pool_heater_usage_multiplier": 1.0, + "pool_present": false, + "pool_pump_annual_kwh": "auto", + "pool_pump_usage_multiplier": 1.0, + "pv_system_array_azimuth_1": 180, + "pv_system_array_azimuth_2": 180, + "pv_system_array_tilt_1": "20", + "pv_system_array_tilt_2": "20", + "pv_system_inverter_efficiency_1": 0.96, + "pv_system_inverter_efficiency_2": 0.96, + "pv_system_location_1": "auto", + "pv_system_location_2": "auto", + "pv_system_max_power_output_1": 4000, + "pv_system_max_power_output_2": 4000, + "pv_system_module_type_1": "none", + "pv_system_module_type_2": "none", + "pv_system_num_units_served_1": 1, + "pv_system_num_units_served_2": 1, + "pv_system_system_losses_fraction_1": 0.14, + "pv_system_system_losses_fraction_2": 0.14, + "pv_system_tracking_1": "auto", + "pv_system_tracking_2": "auto", + "refrigerator_location": "living space", + "refrigerator_rated_annual_kwh": "650.0", + "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, + "roof_assembly_r": 2.3, + "roof_color": "medium", + "roof_material_type": "asphalt or fiberglass shingles", + "roof_radiant_barrier": false, + "roof_radiant_barrier_grade": "1", + "schedules_type": "default", + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", + "simulation_control_timestep": "60", + "site_type": "suburban", + "skylight_area_back": 0, + "skylight_area_front": 0, + "skylight_area_left": 0, + "skylight_area_right": 0, + "skylight_shgc": 0.45, + "skylight_ufactor": 0.33, + "slab_carpet_fraction": "0.0", + "slab_carpet_r": "0.0", + "slab_perimeter_depth": 0, + "slab_perimeter_insulation_r": 0, + "slab_thickness": "4.0", + "slab_under_insulation_r": 0, + "slab_under_width": 0, + "solar_thermal_collector_area": 40.0, + "solar_thermal_collector_azimuth": 180, + "solar_thermal_collector_loop_type": "liquid direct", + "solar_thermal_collector_rated_optical_efficiency": 0.5, + "solar_thermal_collector_rated_thermal_losses": 0.2799, + "solar_thermal_collector_tilt": "20", + "solar_thermal_collector_type": "evacuated tube", + "solar_thermal_solar_fraction": 0, + "solar_thermal_storage_volume": "auto", + "solar_thermal_system_type": "none", + "wall_assembly_r": 23, + "wall_color": "medium", + "wall_siding_type": "wood siding", + "wall_type": "WoodStud", + "water_fixtures_shower_low_flow": true, + "water_fixtures_sink_low_flow": false, + "water_fixtures_usage_multiplier": 1.0, + "water_heater_efficiency": 0.95, + "water_heater_efficiency_type": "EnergyFactor", + "water_heater_fuel_type": "electricity", + "water_heater_jacket_rvalue": 0, + "water_heater_location": "living space", + "water_heater_num_units_served": 1, + "water_heater_recovery_efficiency": "0.76", + "water_heater_setpoint_temperature": "125", + "water_heater_standby_loss": 0, + "water_heater_tank_volume": "40", + "water_heater_type": "storage water heater", + "weather_station_epw_filepath": "USA_CO_Denver.Intl.AP.725650_TMY3.epw", + "whole_house_fan_flow_rate": 4500, + "whole_house_fan_power": 300, + "whole_house_fan_present": false, + "window_area_back": 0, + "window_area_front": 0, + "window_area_left": 0, + "window_area_right": 0, + "window_aspect_ratio": 1.333, + "window_back_wwr": 0.18, + "window_fraction_operable": 0.67, + "window_front_wwr": 0.18, + "window_interior_shading_summer": 0.7, + "window_interior_shading_winter": 0.85, + "window_left_wwr": 0.18, + "window_right_wwr": 0.18, + "window_shgc": 0.45, + "window_ufactor": 0.33 + }, + "measure_dir_name": "BuildResidentialHPXML" + } + ] +} \ No newline at end of file diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-vented-crawlspace-left-top.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-vented-crawlspace-left-top.osw new file mode 100644 index 00000000..1d96c0aa --- /dev/null +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-vented-crawlspace-left-top.osw @@ -0,0 +1,341 @@ +{ + "measure_paths": [ + "../.." + ], + "steps": [ + { + "arguments": { + "air_leakage_house_pressure": 50, + "air_leakage_shielding_of_home": "auto", + "air_leakage_units": "ACH", + "air_leakage_value": 3, + "bathroom_fans_quantity": "0", + "ceiling_assembly_r": 39.3, + "ceiling_fan_cooling_setpoint_temp_offset": 0, + "ceiling_fan_efficiency": "auto", + "ceiling_fan_present": false, + "ceiling_fan_quantity": "auto", + "clothes_dryer_efficiency": "3.73", + "clothes_dryer_efficiency_type": "CombinedEnergyFactor", + "clothes_dryer_fuel_type": "electricity", + "clothes_dryer_location": "living space", + "clothes_dryer_usage_multiplier": 1.0, + "clothes_dryer_vented_flow_rate": "150.0", + "clothes_washer_capacity": "3.2", + "clothes_washer_efficiency": "1.21", + "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", + "clothes_washer_label_annual_gas_cost": "27.0", + "clothes_washer_label_electric_rate": "0.12", + "clothes_washer_label_gas_rate": "1.09", + "clothes_washer_label_usage": "6.0", + "clothes_washer_location": "living space", + "clothes_washer_rated_annual_kwh": "380.0", + "clothes_washer_usage_multiplier": 1.0, + "cooking_range_oven_fuel_type": "electricity", + "cooking_range_oven_is_convection": false, + "cooking_range_oven_is_induction": false, + "cooking_range_oven_location": "living space", + "cooking_range_oven_usage_multiplier": 1.0, + "cooling_system_cooling_capacity": "48000.0", + "cooling_system_cooling_compressor_type": "single stage", + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", + "cooling_system_cooling_sensible_heat_fraction": 0.73, + "cooling_system_fraction_cool_load_served": 1, + "cooling_system_is_ducted": false, + "cooling_system_type": "central air conditioner", + "dehumidifier_capacity": 40, + "dehumidifier_efficiency": 1.8, + "dehumidifier_efficiency_type": "EnergyFactor", + "dehumidifier_fraction_dehumidification_load_served": 1, + "dehumidifier_rh_setpoint": 0.5, + "dehumidifier_type": "none", + "dhw_distribution_pipe_r": "0.0", + "dhw_distribution_recirc_branch_piping_length": "50", + "dhw_distribution_recirc_control_type": "no control", + "dhw_distribution_recirc_piping_length": "50", + "dhw_distribution_recirc_pump_power": "50", + "dhw_distribution_standard_piping_length": "50", + "dhw_distribution_system_type": "Standard", + "dishwasher_efficiency": "307", + "dishwasher_efficiency_type": "RatedAnnualkWh", + "dishwasher_label_annual_gas_cost": "22.32", + "dishwasher_label_electric_rate": "0.12", + "dishwasher_label_gas_rate": "1.09", + "dishwasher_label_usage": "4.0", + "dishwasher_location": "living space", + "dishwasher_place_setting_capacity": "12", + "dishwasher_usage_multiplier": 1.0, + "door_area": 20.0, + "door_rvalue": 4.4, + "ducts_number_of_return_registers": "1", + "ducts_return_insulation_r": 0.0, + "ducts_return_leakage_units": "CFM25", + "ducts_return_leakage_value": 0.0, + "ducts_return_location": "living space", + "ducts_return_surface_area": "50.0", + "ducts_supply_insulation_r": 0.0, + "ducts_supply_leakage_units": "CFM25", + "ducts_supply_leakage_value": 0.0, + "ducts_supply_location": "living space", + "ducts_supply_surface_area": "150.0", + "dwhr_efficiency": 0.55, + "dwhr_equal_flow": true, + "dwhr_facilities_connected": "none", + "extra_refrigerator_location": "none", + "extra_refrigerator_rated_annual_kwh": "auto", + "extra_refrigerator_usage_multiplier": 1.0, + "floor_assembly_r": 18.7, + "foundation_wall_insulation_distance_to_bottom": 4.0, + "foundation_wall_insulation_distance_to_top": 0.0, + "foundation_wall_insulation_r": 8.9, + "foundation_wall_thickness": "8.0", + "freezer_location": "none", + "freezer_rated_annual_kwh": "auto", + "freezer_usage_multiplier": 1.0, + "fuel_loads_fireplace_annual_therm": "auto", + "fuel_loads_fireplace_frac_latent": "auto", + "fuel_loads_fireplace_frac_sensible": "auto", + "fuel_loads_fireplace_fuel_type": "natural gas", + "fuel_loads_fireplace_present": false, + "fuel_loads_fireplace_usage_multiplier": 0.0, + "fuel_loads_grill_annual_therm": "auto", + "fuel_loads_grill_fuel_type": "natural gas", + "fuel_loads_grill_present": false, + "fuel_loads_grill_usage_multiplier": 0.0, + "fuel_loads_lighting_annual_therm": "auto", + "fuel_loads_lighting_fuel_type": "natural gas", + "fuel_loads_lighting_present": false, + "fuel_loads_lighting_usage_multiplier": 0.0, + "geometry_aspect_ratio": 1.5, + "geometry_attic_type": "UnventedAttic", + "geometry_balcony_depth": 0.0, + "geometry_building_num_bedrooms": 150, + "geometry_building_num_units": 50, + "geometry_cfa": 900.0, + "geometry_corridor_position": "None", + "geometry_corridor_width": 10.0, + "geometry_eaves_depth": 0, + "geometry_foundation_height": 4.0, + "geometry_foundation_height_above_grade": 1.0, + "geometry_foundation_type": "VentedCrawlspace", + "geometry_garage_depth": 20.0, + "geometry_garage_position": "Right", + "geometry_garage_protrusion": 0.0, + "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", + "geometry_horizontal_location": "Left", + "geometry_inset_depth": 0.0, + "geometry_inset_position": "Right", + "geometry_inset_width": 0.0, + "geometry_level": "Top", + "geometry_num_bathrooms": "2", + "geometry_num_bedrooms": 3, + "geometry_num_floors_above_grade": 5, + "geometry_num_occupants": "3", + "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, + "geometry_roof_pitch": "6:12", + "geometry_roof_type": "gable", + "geometry_unit_type": "apartment unit", + "geometry_wall_height": 8.0, + "heat_pump_backup_fuel": "none", + "heat_pump_backup_heating_capacity": "34121.0", + "heat_pump_backup_heating_efficiency": 1, + "heat_pump_cooling_capacity": "48000.0", + "heat_pump_cooling_compressor_type": "single stage", + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", + "heat_pump_cooling_sensible_heat_fraction": 0.73, + "heat_pump_fraction_cool_load_served": 1, + "heat_pump_fraction_heat_load_served": 1, + "heat_pump_heating_capacity": "64000.0", + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", + "heat_pump_type": "none", + "heating_system_fraction_heat_load_served": 1, + "heating_system_fraction_heat_load_served_2": 0.25, + "heating_system_fuel": "natural gas", + "heating_system_fuel_2": "electricity", + "heating_system_heating_capacity": "64000.0", + "heating_system_heating_capacity_2": "auto", + "heating_system_heating_efficiency": 0.92, + "heating_system_heating_efficiency_2": 1.0, + "heating_system_type": "Furnace", + "heating_system_type_2": "none", + "holiday_lighting_daily_kwh": "auto", + "holiday_lighting_period_begin_day_of_month": "auto", + "holiday_lighting_period_begin_month": "auto", + "holiday_lighting_period_end_day_of_month": "auto", + "holiday_lighting_period_end_month": "auto", + "holiday_lighting_present": false, + "hot_tub_heater_annual_kwh": "auto", + "hot_tub_heater_annual_therm": "auto", + "hot_tub_heater_type": "electric resistance", + "hot_tub_heater_usage_multiplier": 1.0, + "hot_tub_present": false, + "hot_tub_pump_annual_kwh": "auto", + "hot_tub_pump_usage_multiplier": 1.0, + "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/extra-bldgtype-multifamily-vented-crawlspace-left-top.xml", + "kitchen_fans_quantity": "0", + "lighting_fraction_cfl_exterior": 0.4, + "lighting_fraction_cfl_garage": 0.4, + "lighting_fraction_cfl_interior": 0.4, + "lighting_fraction_led_exterior": 0.25, + "lighting_fraction_led_garage": 0.25, + "lighting_fraction_led_interior": 0.25, + "lighting_fraction_lfl_exterior": 0.1, + "lighting_fraction_lfl_garage": 0.1, + "lighting_fraction_lfl_interior": 0.1, + "lighting_usage_multiplier_exterior": 1.0, + "lighting_usage_multiplier_garage": 1.0, + "lighting_usage_multiplier_interior": 1.0, + "mech_vent_fan_power": 30, + "mech_vent_fan_power_2": 30, + "mech_vent_fan_type": "none", + "mech_vent_fan_type_2": "none", + "mech_vent_flow_rate": 110, + "mech_vent_flow_rate_2": 110, + "mech_vent_hours_in_operation": 24, + "mech_vent_hours_in_operation_2": 24, + "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", + "mech_vent_sensible_recovery_efficiency": 0.72, + "mech_vent_sensible_recovery_efficiency_2": 0.72, + "mech_vent_total_recovery_efficiency": 0.48, + "mech_vent_total_recovery_efficiency_2": 0.48, + "neighbor_back_distance": 0, + "neighbor_back_height": "auto", + "neighbor_front_distance": 0, + "neighbor_front_height": "auto", + "neighbor_left_distance": 0, + "neighbor_left_height": "auto", + "neighbor_right_distance": 0, + "neighbor_right_height": "auto", + "overhangs_back_depth": 0, + "overhangs_back_distance_to_top_of_window": 0, + "overhangs_front_depth": 0, + "overhangs_front_distance_to_top_of_window": 0, + "overhangs_left_depth": 0, + "overhangs_left_distance_to_top_of_window": 0, + "overhangs_right_depth": 0, + "overhangs_right_distance_to_top_of_window": 0, + "plug_loads_other_annual_kwh": "819.0", + "plug_loads_other_frac_latent": "0.045", + "plug_loads_other_frac_sensible": "0.855", + "plug_loads_other_usage_multiplier": 1.0, + "plug_loads_television_annual_kwh": "620.0", + "plug_loads_television_usage_multiplier": 1.0, + "plug_loads_vehicle_annual_kwh": "auto", + "plug_loads_vehicle_present": false, + "plug_loads_vehicle_usage_multiplier": 0.0, + "plug_loads_well_pump_annual_kwh": "auto", + "plug_loads_well_pump_present": false, + "plug_loads_well_pump_usage_multiplier": 0.0, + "pool_heater_annual_kwh": "auto", + "pool_heater_annual_therm": "auto", + "pool_heater_type": "electric resistance", + "pool_heater_usage_multiplier": 1.0, + "pool_present": false, + "pool_pump_annual_kwh": "auto", + "pool_pump_usage_multiplier": 1.0, + "pv_system_array_azimuth_1": 180, + "pv_system_array_azimuth_2": 180, + "pv_system_array_tilt_1": "20", + "pv_system_array_tilt_2": "20", + "pv_system_inverter_efficiency_1": 0.96, + "pv_system_inverter_efficiency_2": 0.96, + "pv_system_location_1": "auto", + "pv_system_location_2": "auto", + "pv_system_max_power_output_1": 4000, + "pv_system_max_power_output_2": 4000, + "pv_system_module_type_1": "none", + "pv_system_module_type_2": "none", + "pv_system_num_units_served_1": 1, + "pv_system_num_units_served_2": 1, + "pv_system_system_losses_fraction_1": 0.14, + "pv_system_system_losses_fraction_2": 0.14, + "pv_system_tracking_1": "auto", + "pv_system_tracking_2": "auto", + "refrigerator_location": "living space", + "refrigerator_rated_annual_kwh": "650.0", + "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, + "roof_assembly_r": 2.3, + "roof_color": "medium", + "roof_material_type": "asphalt or fiberglass shingles", + "roof_radiant_barrier": false, + "roof_radiant_barrier_grade": "1", + "schedules_type": "default", + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", + "simulation_control_timestep": "60", + "site_type": "suburban", + "skylight_area_back": 0, + "skylight_area_front": 0, + "skylight_area_left": 0, + "skylight_area_right": 0, + "skylight_shgc": 0.45, + "skylight_ufactor": 0.33, + "slab_carpet_fraction": "0.0", + "slab_carpet_r": "0.0", + "slab_perimeter_depth": 0, + "slab_perimeter_insulation_r": 0, + "slab_thickness": "4.0", + "slab_under_insulation_r": 0, + "slab_under_width": 0, + "solar_thermal_collector_area": 40.0, + "solar_thermal_collector_azimuth": 180, + "solar_thermal_collector_loop_type": "liquid direct", + "solar_thermal_collector_rated_optical_efficiency": 0.5, + "solar_thermal_collector_rated_thermal_losses": 0.2799, + "solar_thermal_collector_tilt": "20", + "solar_thermal_collector_type": "evacuated tube", + "solar_thermal_solar_fraction": 0, + "solar_thermal_storage_volume": "auto", + "solar_thermal_system_type": "none", + "wall_assembly_r": 23, + "wall_color": "medium", + "wall_siding_type": "wood siding", + "wall_type": "WoodStud", + "water_fixtures_shower_low_flow": true, + "water_fixtures_sink_low_flow": false, + "water_fixtures_usage_multiplier": 1.0, + "water_heater_efficiency": 0.95, + "water_heater_efficiency_type": "EnergyFactor", + "water_heater_fuel_type": "electricity", + "water_heater_jacket_rvalue": 0, + "water_heater_location": "living space", + "water_heater_num_units_served": 1, + "water_heater_recovery_efficiency": "0.76", + "water_heater_setpoint_temperature": "125", + "water_heater_standby_loss": 0, + "water_heater_tank_volume": "40", + "water_heater_type": "storage water heater", + "weather_station_epw_filepath": "USA_CO_Denver.Intl.AP.725650_TMY3.epw", + "whole_house_fan_flow_rate": 4500, + "whole_house_fan_power": 300, + "whole_house_fan_present": false, + "window_area_back": 0, + "window_area_front": 0, + "window_area_left": 0, + "window_area_right": 0, + "window_aspect_ratio": 1.333, + "window_back_wwr": 0.18, + "window_fraction_operable": 0.67, + "window_front_wwr": 0.18, + "window_interior_shading_summer": 0.7, + "window_interior_shading_winter": 0.85, + "window_left_wwr": 0.18, + "window_right_wwr": 0.18, + "window_shgc": 0.45, + "window_ufactor": 0.33 + }, + "measure_dir_name": "BuildResidentialHPXML" + } + ] +} \ No newline at end of file diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-vented-crawlspace-middle-bottom-double-loaded-interior.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-vented-crawlspace-middle-bottom-double-loaded-interior.osw new file mode 100644 index 00000000..e06e99ad --- /dev/null +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-vented-crawlspace-middle-bottom-double-loaded-interior.osw @@ -0,0 +1,341 @@ +{ + "measure_paths": [ + "../.." + ], + "steps": [ + { + "arguments": { + "air_leakage_house_pressure": 50, + "air_leakage_shielding_of_home": "auto", + "air_leakage_units": "ACH", + "air_leakage_value": 3, + "bathroom_fans_quantity": "0", + "ceiling_assembly_r": 39.3, + "ceiling_fan_cooling_setpoint_temp_offset": 0, + "ceiling_fan_efficiency": "auto", + "ceiling_fan_present": false, + "ceiling_fan_quantity": "auto", + "clothes_dryer_efficiency": "3.73", + "clothes_dryer_efficiency_type": "CombinedEnergyFactor", + "clothes_dryer_fuel_type": "electricity", + "clothes_dryer_location": "living space", + "clothes_dryer_usage_multiplier": 1.0, + "clothes_dryer_vented_flow_rate": "150.0", + "clothes_washer_capacity": "3.2", + "clothes_washer_efficiency": "1.21", + "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", + "clothes_washer_label_annual_gas_cost": "27.0", + "clothes_washer_label_electric_rate": "0.12", + "clothes_washer_label_gas_rate": "1.09", + "clothes_washer_label_usage": "6.0", + "clothes_washer_location": "living space", + "clothes_washer_rated_annual_kwh": "380.0", + "clothes_washer_usage_multiplier": 1.0, + "cooking_range_oven_fuel_type": "electricity", + "cooking_range_oven_is_convection": false, + "cooking_range_oven_is_induction": false, + "cooking_range_oven_location": "living space", + "cooking_range_oven_usage_multiplier": 1.0, + "cooling_system_cooling_capacity": "48000.0", + "cooling_system_cooling_compressor_type": "single stage", + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", + "cooling_system_cooling_sensible_heat_fraction": 0.73, + "cooling_system_fraction_cool_load_served": 1, + "cooling_system_is_ducted": false, + "cooling_system_type": "central air conditioner", + "dehumidifier_capacity": 40, + "dehumidifier_efficiency": 1.8, + "dehumidifier_efficiency_type": "EnergyFactor", + "dehumidifier_fraction_dehumidification_load_served": 1, + "dehumidifier_rh_setpoint": 0.5, + "dehumidifier_type": "none", + "dhw_distribution_pipe_r": "0.0", + "dhw_distribution_recirc_branch_piping_length": "50", + "dhw_distribution_recirc_control_type": "no control", + "dhw_distribution_recirc_piping_length": "50", + "dhw_distribution_recirc_pump_power": "50", + "dhw_distribution_standard_piping_length": "50", + "dhw_distribution_system_type": "Standard", + "dishwasher_efficiency": "307", + "dishwasher_efficiency_type": "RatedAnnualkWh", + "dishwasher_label_annual_gas_cost": "22.32", + "dishwasher_label_electric_rate": "0.12", + "dishwasher_label_gas_rate": "1.09", + "dishwasher_label_usage": "4.0", + "dishwasher_location": "living space", + "dishwasher_place_setting_capacity": "12", + "dishwasher_usage_multiplier": 1.0, + "door_area": 20.0, + "door_rvalue": 4.4, + "ducts_number_of_return_registers": "1", + "ducts_return_insulation_r": 0.0, + "ducts_return_leakage_units": "CFM25", + "ducts_return_leakage_value": 0.0, + "ducts_return_location": "living space", + "ducts_return_surface_area": "50.0", + "ducts_supply_insulation_r": 0.0, + "ducts_supply_leakage_units": "CFM25", + "ducts_supply_leakage_value": 0.0, + "ducts_supply_location": "living space", + "ducts_supply_surface_area": "150.0", + "dwhr_efficiency": 0.55, + "dwhr_equal_flow": true, + "dwhr_facilities_connected": "none", + "extra_refrigerator_location": "none", + "extra_refrigerator_rated_annual_kwh": "auto", + "extra_refrigerator_usage_multiplier": 1.0, + "floor_assembly_r": 18.7, + "foundation_wall_insulation_distance_to_bottom": 4.0, + "foundation_wall_insulation_distance_to_top": 0.0, + "foundation_wall_insulation_r": 8.9, + "foundation_wall_thickness": "8.0", + "freezer_location": "none", + "freezer_rated_annual_kwh": "auto", + "freezer_usage_multiplier": 1.0, + "fuel_loads_fireplace_annual_therm": "auto", + "fuel_loads_fireplace_frac_latent": "auto", + "fuel_loads_fireplace_frac_sensible": "auto", + "fuel_loads_fireplace_fuel_type": "natural gas", + "fuel_loads_fireplace_present": false, + "fuel_loads_fireplace_usage_multiplier": 0.0, + "fuel_loads_grill_annual_therm": "auto", + "fuel_loads_grill_fuel_type": "natural gas", + "fuel_loads_grill_present": false, + "fuel_loads_grill_usage_multiplier": 0.0, + "fuel_loads_lighting_annual_therm": "auto", + "fuel_loads_lighting_fuel_type": "natural gas", + "fuel_loads_lighting_present": false, + "fuel_loads_lighting_usage_multiplier": 0.0, + "geometry_aspect_ratio": 1.5, + "geometry_attic_type": "UnventedAttic", + "geometry_balcony_depth": 0.0, + "geometry_building_num_bedrooms": 150, + "geometry_building_num_units": 50, + "geometry_cfa": 900.0, + "geometry_corridor_position": "Double-Loaded Interior", + "geometry_corridor_width": 10.0, + "geometry_eaves_depth": 0, + "geometry_foundation_height": 4.0, + "geometry_foundation_height_above_grade": 1.0, + "geometry_foundation_type": "VentedCrawlspace", + "geometry_garage_depth": 20.0, + "geometry_garage_position": "Right", + "geometry_garage_protrusion": 0.0, + "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", + "geometry_horizontal_location": "Middle", + "geometry_inset_depth": 0.0, + "geometry_inset_position": "Right", + "geometry_inset_width": 0.0, + "geometry_level": "Bottom", + "geometry_num_bathrooms": "2", + "geometry_num_bedrooms": 3, + "geometry_num_floors_above_grade": 5, + "geometry_num_occupants": "3", + "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, + "geometry_roof_pitch": "6:12", + "geometry_roof_type": "gable", + "geometry_unit_type": "apartment unit", + "geometry_wall_height": 8.0, + "heat_pump_backup_fuel": "none", + "heat_pump_backup_heating_capacity": "34121.0", + "heat_pump_backup_heating_efficiency": 1, + "heat_pump_cooling_capacity": "48000.0", + "heat_pump_cooling_compressor_type": "single stage", + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", + "heat_pump_cooling_sensible_heat_fraction": 0.73, + "heat_pump_fraction_cool_load_served": 1, + "heat_pump_fraction_heat_load_served": 1, + "heat_pump_heating_capacity": "64000.0", + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", + "heat_pump_type": "none", + "heating_system_fraction_heat_load_served": 1, + "heating_system_fraction_heat_load_served_2": 0.25, + "heating_system_fuel": "natural gas", + "heating_system_fuel_2": "electricity", + "heating_system_heating_capacity": "64000.0", + "heating_system_heating_capacity_2": "auto", + "heating_system_heating_efficiency": 0.92, + "heating_system_heating_efficiency_2": 1.0, + "heating_system_type": "Furnace", + "heating_system_type_2": "none", + "holiday_lighting_daily_kwh": "auto", + "holiday_lighting_period_begin_day_of_month": "auto", + "holiday_lighting_period_begin_month": "auto", + "holiday_lighting_period_end_day_of_month": "auto", + "holiday_lighting_period_end_month": "auto", + "holiday_lighting_present": false, + "hot_tub_heater_annual_kwh": "auto", + "hot_tub_heater_annual_therm": "auto", + "hot_tub_heater_type": "electric resistance", + "hot_tub_heater_usage_multiplier": 1.0, + "hot_tub_present": false, + "hot_tub_pump_annual_kwh": "auto", + "hot_tub_pump_usage_multiplier": 1.0, + "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/extra-bldgtype-multifamily-vented-crawlspace-middle-bottom-double-loaded-interior.xml", + "kitchen_fans_quantity": "0", + "lighting_fraction_cfl_exterior": 0.4, + "lighting_fraction_cfl_garage": 0.4, + "lighting_fraction_cfl_interior": 0.4, + "lighting_fraction_led_exterior": 0.25, + "lighting_fraction_led_garage": 0.25, + "lighting_fraction_led_interior": 0.25, + "lighting_fraction_lfl_exterior": 0.1, + "lighting_fraction_lfl_garage": 0.1, + "lighting_fraction_lfl_interior": 0.1, + "lighting_usage_multiplier_exterior": 1.0, + "lighting_usage_multiplier_garage": 1.0, + "lighting_usage_multiplier_interior": 1.0, + "mech_vent_fan_power": 30, + "mech_vent_fan_power_2": 30, + "mech_vent_fan_type": "none", + "mech_vent_fan_type_2": "none", + "mech_vent_flow_rate": 110, + "mech_vent_flow_rate_2": 110, + "mech_vent_hours_in_operation": 24, + "mech_vent_hours_in_operation_2": 24, + "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", + "mech_vent_sensible_recovery_efficiency": 0.72, + "mech_vent_sensible_recovery_efficiency_2": 0.72, + "mech_vent_total_recovery_efficiency": 0.48, + "mech_vent_total_recovery_efficiency_2": 0.48, + "neighbor_back_distance": 0, + "neighbor_back_height": "auto", + "neighbor_front_distance": 0, + "neighbor_front_height": "auto", + "neighbor_left_distance": 0, + "neighbor_left_height": "auto", + "neighbor_right_distance": 0, + "neighbor_right_height": "auto", + "overhangs_back_depth": 0, + "overhangs_back_distance_to_top_of_window": 0, + "overhangs_front_depth": 0, + "overhangs_front_distance_to_top_of_window": 0, + "overhangs_left_depth": 0, + "overhangs_left_distance_to_top_of_window": 0, + "overhangs_right_depth": 0, + "overhangs_right_distance_to_top_of_window": 0, + "plug_loads_other_annual_kwh": "819.0", + "plug_loads_other_frac_latent": "0.045", + "plug_loads_other_frac_sensible": "0.855", + "plug_loads_other_usage_multiplier": 1.0, + "plug_loads_television_annual_kwh": "620.0", + "plug_loads_television_usage_multiplier": 1.0, + "plug_loads_vehicle_annual_kwh": "auto", + "plug_loads_vehicle_present": false, + "plug_loads_vehicle_usage_multiplier": 0.0, + "plug_loads_well_pump_annual_kwh": "auto", + "plug_loads_well_pump_present": false, + "plug_loads_well_pump_usage_multiplier": 0.0, + "pool_heater_annual_kwh": "auto", + "pool_heater_annual_therm": "auto", + "pool_heater_type": "electric resistance", + "pool_heater_usage_multiplier": 1.0, + "pool_present": false, + "pool_pump_annual_kwh": "auto", + "pool_pump_usage_multiplier": 1.0, + "pv_system_array_azimuth_1": 180, + "pv_system_array_azimuth_2": 180, + "pv_system_array_tilt_1": "20", + "pv_system_array_tilt_2": "20", + "pv_system_inverter_efficiency_1": 0.96, + "pv_system_inverter_efficiency_2": 0.96, + "pv_system_location_1": "auto", + "pv_system_location_2": "auto", + "pv_system_max_power_output_1": 4000, + "pv_system_max_power_output_2": 4000, + "pv_system_module_type_1": "none", + "pv_system_module_type_2": "none", + "pv_system_num_units_served_1": 1, + "pv_system_num_units_served_2": 1, + "pv_system_system_losses_fraction_1": 0.14, + "pv_system_system_losses_fraction_2": 0.14, + "pv_system_tracking_1": "auto", + "pv_system_tracking_2": "auto", + "refrigerator_location": "living space", + "refrigerator_rated_annual_kwh": "650.0", + "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, + "roof_assembly_r": 2.3, + "roof_color": "medium", + "roof_material_type": "asphalt or fiberglass shingles", + "roof_radiant_barrier": false, + "roof_radiant_barrier_grade": "1", + "schedules_type": "default", + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", + "simulation_control_timestep": "60", + "site_type": "suburban", + "skylight_area_back": 0, + "skylight_area_front": 0, + "skylight_area_left": 0, + "skylight_area_right": 0, + "skylight_shgc": 0.45, + "skylight_ufactor": 0.33, + "slab_carpet_fraction": "0.0", + "slab_carpet_r": "0.0", + "slab_perimeter_depth": 0, + "slab_perimeter_insulation_r": 0, + "slab_thickness": "4.0", + "slab_under_insulation_r": 0, + "slab_under_width": 0, + "solar_thermal_collector_area": 40.0, + "solar_thermal_collector_azimuth": 180, + "solar_thermal_collector_loop_type": "liquid direct", + "solar_thermal_collector_rated_optical_efficiency": 0.5, + "solar_thermal_collector_rated_thermal_losses": 0.2799, + "solar_thermal_collector_tilt": "20", + "solar_thermal_collector_type": "evacuated tube", + "solar_thermal_solar_fraction": 0, + "solar_thermal_storage_volume": "auto", + "solar_thermal_system_type": "none", + "wall_assembly_r": 23, + "wall_color": "medium", + "wall_siding_type": "wood siding", + "wall_type": "WoodStud", + "water_fixtures_shower_low_flow": true, + "water_fixtures_sink_low_flow": false, + "water_fixtures_usage_multiplier": 1.0, + "water_heater_efficiency": 0.95, + "water_heater_efficiency_type": "EnergyFactor", + "water_heater_fuel_type": "electricity", + "water_heater_jacket_rvalue": 0, + "water_heater_location": "living space", + "water_heater_num_units_served": 1, + "water_heater_recovery_efficiency": "0.76", + "water_heater_setpoint_temperature": "125", + "water_heater_standby_loss": 0, + "water_heater_tank_volume": "40", + "water_heater_type": "storage water heater", + "weather_station_epw_filepath": "USA_CO_Denver.Intl.AP.725650_TMY3.epw", + "whole_house_fan_flow_rate": 4500, + "whole_house_fan_power": 300, + "whole_house_fan_present": false, + "window_area_back": 0, + "window_area_front": 0, + "window_area_left": 0, + "window_area_right": 0, + "window_aspect_ratio": 1.333, + "window_back_wwr": 0.18, + "window_fraction_operable": 0.67, + "window_front_wwr": 0.18, + "window_interior_shading_summer": 0.7, + "window_interior_shading_winter": 0.85, + "window_left_wwr": 0.18, + "window_right_wwr": 0.18, + "window_shgc": 0.45, + "window_ufactor": 0.33 + }, + "measure_dir_name": "BuildResidentialHPXML" + } + ] +} \ No newline at end of file diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-vented-crawlspace-middle-bottom.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-vented-crawlspace-middle-bottom.osw new file mode 100644 index 00000000..a3283a3f --- /dev/null +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-vented-crawlspace-middle-bottom.osw @@ -0,0 +1,341 @@ +{ + "measure_paths": [ + "../.." + ], + "steps": [ + { + "arguments": { + "air_leakage_house_pressure": 50, + "air_leakage_shielding_of_home": "auto", + "air_leakage_units": "ACH", + "air_leakage_value": 3, + "bathroom_fans_quantity": "0", + "ceiling_assembly_r": 39.3, + "ceiling_fan_cooling_setpoint_temp_offset": 0, + "ceiling_fan_efficiency": "auto", + "ceiling_fan_present": false, + "ceiling_fan_quantity": "auto", + "clothes_dryer_efficiency": "3.73", + "clothes_dryer_efficiency_type": "CombinedEnergyFactor", + "clothes_dryer_fuel_type": "electricity", + "clothes_dryer_location": "living space", + "clothes_dryer_usage_multiplier": 1.0, + "clothes_dryer_vented_flow_rate": "150.0", + "clothes_washer_capacity": "3.2", + "clothes_washer_efficiency": "1.21", + "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", + "clothes_washer_label_annual_gas_cost": "27.0", + "clothes_washer_label_electric_rate": "0.12", + "clothes_washer_label_gas_rate": "1.09", + "clothes_washer_label_usage": "6.0", + "clothes_washer_location": "living space", + "clothes_washer_rated_annual_kwh": "380.0", + "clothes_washer_usage_multiplier": 1.0, + "cooking_range_oven_fuel_type": "electricity", + "cooking_range_oven_is_convection": false, + "cooking_range_oven_is_induction": false, + "cooking_range_oven_location": "living space", + "cooking_range_oven_usage_multiplier": 1.0, + "cooling_system_cooling_capacity": "48000.0", + "cooling_system_cooling_compressor_type": "single stage", + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", + "cooling_system_cooling_sensible_heat_fraction": 0.73, + "cooling_system_fraction_cool_load_served": 1, + "cooling_system_is_ducted": false, + "cooling_system_type": "central air conditioner", + "dehumidifier_capacity": 40, + "dehumidifier_efficiency": 1.8, + "dehumidifier_efficiency_type": "EnergyFactor", + "dehumidifier_fraction_dehumidification_load_served": 1, + "dehumidifier_rh_setpoint": 0.5, + "dehumidifier_type": "none", + "dhw_distribution_pipe_r": "0.0", + "dhw_distribution_recirc_branch_piping_length": "50", + "dhw_distribution_recirc_control_type": "no control", + "dhw_distribution_recirc_piping_length": "50", + "dhw_distribution_recirc_pump_power": "50", + "dhw_distribution_standard_piping_length": "50", + "dhw_distribution_system_type": "Standard", + "dishwasher_efficiency": "307", + "dishwasher_efficiency_type": "RatedAnnualkWh", + "dishwasher_label_annual_gas_cost": "22.32", + "dishwasher_label_electric_rate": "0.12", + "dishwasher_label_gas_rate": "1.09", + "dishwasher_label_usage": "4.0", + "dishwasher_location": "living space", + "dishwasher_place_setting_capacity": "12", + "dishwasher_usage_multiplier": 1.0, + "door_area": 20.0, + "door_rvalue": 4.4, + "ducts_number_of_return_registers": "1", + "ducts_return_insulation_r": 0.0, + "ducts_return_leakage_units": "CFM25", + "ducts_return_leakage_value": 0.0, + "ducts_return_location": "living space", + "ducts_return_surface_area": "50.0", + "ducts_supply_insulation_r": 0.0, + "ducts_supply_leakage_units": "CFM25", + "ducts_supply_leakage_value": 0.0, + "ducts_supply_location": "living space", + "ducts_supply_surface_area": "150.0", + "dwhr_efficiency": 0.55, + "dwhr_equal_flow": true, + "dwhr_facilities_connected": "none", + "extra_refrigerator_location": "none", + "extra_refrigerator_rated_annual_kwh": "auto", + "extra_refrigerator_usage_multiplier": 1.0, + "floor_assembly_r": 18.7, + "foundation_wall_insulation_distance_to_bottom": 4.0, + "foundation_wall_insulation_distance_to_top": 0.0, + "foundation_wall_insulation_r": 8.9, + "foundation_wall_thickness": "8.0", + "freezer_location": "none", + "freezer_rated_annual_kwh": "auto", + "freezer_usage_multiplier": 1.0, + "fuel_loads_fireplace_annual_therm": "auto", + "fuel_loads_fireplace_frac_latent": "auto", + "fuel_loads_fireplace_frac_sensible": "auto", + "fuel_loads_fireplace_fuel_type": "natural gas", + "fuel_loads_fireplace_present": false, + "fuel_loads_fireplace_usage_multiplier": 0.0, + "fuel_loads_grill_annual_therm": "auto", + "fuel_loads_grill_fuel_type": "natural gas", + "fuel_loads_grill_present": false, + "fuel_loads_grill_usage_multiplier": 0.0, + "fuel_loads_lighting_annual_therm": "auto", + "fuel_loads_lighting_fuel_type": "natural gas", + "fuel_loads_lighting_present": false, + "fuel_loads_lighting_usage_multiplier": 0.0, + "geometry_aspect_ratio": 1.5, + "geometry_attic_type": "UnventedAttic", + "geometry_balcony_depth": 0.0, + "geometry_building_num_bedrooms": 150, + "geometry_building_num_units": 50, + "geometry_cfa": 900.0, + "geometry_corridor_position": "None", + "geometry_corridor_width": 10.0, + "geometry_eaves_depth": 0, + "geometry_foundation_height": 4.0, + "geometry_foundation_height_above_grade": 1.0, + "geometry_foundation_type": "VentedCrawlspace", + "geometry_garage_depth": 20.0, + "geometry_garage_position": "Right", + "geometry_garage_protrusion": 0.0, + "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", + "geometry_horizontal_location": "Middle", + "geometry_inset_depth": 0.0, + "geometry_inset_position": "Right", + "geometry_inset_width": 0.0, + "geometry_level": "Bottom", + "geometry_num_bathrooms": "2", + "geometry_num_bedrooms": 3, + "geometry_num_floors_above_grade": 5, + "geometry_num_occupants": "3", + "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, + "geometry_roof_pitch": "6:12", + "geometry_roof_type": "gable", + "geometry_unit_type": "apartment unit", + "geometry_wall_height": 8.0, + "heat_pump_backup_fuel": "none", + "heat_pump_backup_heating_capacity": "34121.0", + "heat_pump_backup_heating_efficiency": 1, + "heat_pump_cooling_capacity": "48000.0", + "heat_pump_cooling_compressor_type": "single stage", + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", + "heat_pump_cooling_sensible_heat_fraction": 0.73, + "heat_pump_fraction_cool_load_served": 1, + "heat_pump_fraction_heat_load_served": 1, + "heat_pump_heating_capacity": "64000.0", + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", + "heat_pump_type": "none", + "heating_system_fraction_heat_load_served": 1, + "heating_system_fraction_heat_load_served_2": 0.25, + "heating_system_fuel": "natural gas", + "heating_system_fuel_2": "electricity", + "heating_system_heating_capacity": "64000.0", + "heating_system_heating_capacity_2": "auto", + "heating_system_heating_efficiency": 0.92, + "heating_system_heating_efficiency_2": 1.0, + "heating_system_type": "Furnace", + "heating_system_type_2": "none", + "holiday_lighting_daily_kwh": "auto", + "holiday_lighting_period_begin_day_of_month": "auto", + "holiday_lighting_period_begin_month": "auto", + "holiday_lighting_period_end_day_of_month": "auto", + "holiday_lighting_period_end_month": "auto", + "holiday_lighting_present": false, + "hot_tub_heater_annual_kwh": "auto", + "hot_tub_heater_annual_therm": "auto", + "hot_tub_heater_type": "electric resistance", + "hot_tub_heater_usage_multiplier": 1.0, + "hot_tub_present": false, + "hot_tub_pump_annual_kwh": "auto", + "hot_tub_pump_usage_multiplier": 1.0, + "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/extra-bldgtype-multifamily-vented-crawlspace-middle-bottom.xml", + "kitchen_fans_quantity": "0", + "lighting_fraction_cfl_exterior": 0.4, + "lighting_fraction_cfl_garage": 0.4, + "lighting_fraction_cfl_interior": 0.4, + "lighting_fraction_led_exterior": 0.25, + "lighting_fraction_led_garage": 0.25, + "lighting_fraction_led_interior": 0.25, + "lighting_fraction_lfl_exterior": 0.1, + "lighting_fraction_lfl_garage": 0.1, + "lighting_fraction_lfl_interior": 0.1, + "lighting_usage_multiplier_exterior": 1.0, + "lighting_usage_multiplier_garage": 1.0, + "lighting_usage_multiplier_interior": 1.0, + "mech_vent_fan_power": 30, + "mech_vent_fan_power_2": 30, + "mech_vent_fan_type": "none", + "mech_vent_fan_type_2": "none", + "mech_vent_flow_rate": 110, + "mech_vent_flow_rate_2": 110, + "mech_vent_hours_in_operation": 24, + "mech_vent_hours_in_operation_2": 24, + "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", + "mech_vent_sensible_recovery_efficiency": 0.72, + "mech_vent_sensible_recovery_efficiency_2": 0.72, + "mech_vent_total_recovery_efficiency": 0.48, + "mech_vent_total_recovery_efficiency_2": 0.48, + "neighbor_back_distance": 0, + "neighbor_back_height": "auto", + "neighbor_front_distance": 0, + "neighbor_front_height": "auto", + "neighbor_left_distance": 0, + "neighbor_left_height": "auto", + "neighbor_right_distance": 0, + "neighbor_right_height": "auto", + "overhangs_back_depth": 0, + "overhangs_back_distance_to_top_of_window": 0, + "overhangs_front_depth": 0, + "overhangs_front_distance_to_top_of_window": 0, + "overhangs_left_depth": 0, + "overhangs_left_distance_to_top_of_window": 0, + "overhangs_right_depth": 0, + "overhangs_right_distance_to_top_of_window": 0, + "plug_loads_other_annual_kwh": "819.0", + "plug_loads_other_frac_latent": "0.045", + "plug_loads_other_frac_sensible": "0.855", + "plug_loads_other_usage_multiplier": 1.0, + "plug_loads_television_annual_kwh": "620.0", + "plug_loads_television_usage_multiplier": 1.0, + "plug_loads_vehicle_annual_kwh": "auto", + "plug_loads_vehicle_present": false, + "plug_loads_vehicle_usage_multiplier": 0.0, + "plug_loads_well_pump_annual_kwh": "auto", + "plug_loads_well_pump_present": false, + "plug_loads_well_pump_usage_multiplier": 0.0, + "pool_heater_annual_kwh": "auto", + "pool_heater_annual_therm": "auto", + "pool_heater_type": "electric resistance", + "pool_heater_usage_multiplier": 1.0, + "pool_present": false, + "pool_pump_annual_kwh": "auto", + "pool_pump_usage_multiplier": 1.0, + "pv_system_array_azimuth_1": 180, + "pv_system_array_azimuth_2": 180, + "pv_system_array_tilt_1": "20", + "pv_system_array_tilt_2": "20", + "pv_system_inverter_efficiency_1": 0.96, + "pv_system_inverter_efficiency_2": 0.96, + "pv_system_location_1": "auto", + "pv_system_location_2": "auto", + "pv_system_max_power_output_1": 4000, + "pv_system_max_power_output_2": 4000, + "pv_system_module_type_1": "none", + "pv_system_module_type_2": "none", + "pv_system_num_units_served_1": 1, + "pv_system_num_units_served_2": 1, + "pv_system_system_losses_fraction_1": 0.14, + "pv_system_system_losses_fraction_2": 0.14, + "pv_system_tracking_1": "auto", + "pv_system_tracking_2": "auto", + "refrigerator_location": "living space", + "refrigerator_rated_annual_kwh": "650.0", + "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, + "roof_assembly_r": 2.3, + "roof_color": "medium", + "roof_material_type": "asphalt or fiberglass shingles", + "roof_radiant_barrier": false, + "roof_radiant_barrier_grade": "1", + "schedules_type": "default", + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", + "simulation_control_timestep": "60", + "site_type": "suburban", + "skylight_area_back": 0, + "skylight_area_front": 0, + "skylight_area_left": 0, + "skylight_area_right": 0, + "skylight_shgc": 0.45, + "skylight_ufactor": 0.33, + "slab_carpet_fraction": "0.0", + "slab_carpet_r": "0.0", + "slab_perimeter_depth": 0, + "slab_perimeter_insulation_r": 0, + "slab_thickness": "4.0", + "slab_under_insulation_r": 0, + "slab_under_width": 0, + "solar_thermal_collector_area": 40.0, + "solar_thermal_collector_azimuth": 180, + "solar_thermal_collector_loop_type": "liquid direct", + "solar_thermal_collector_rated_optical_efficiency": 0.5, + "solar_thermal_collector_rated_thermal_losses": 0.2799, + "solar_thermal_collector_tilt": "20", + "solar_thermal_collector_type": "evacuated tube", + "solar_thermal_solar_fraction": 0, + "solar_thermal_storage_volume": "auto", + "solar_thermal_system_type": "none", + "wall_assembly_r": 23, + "wall_color": "medium", + "wall_siding_type": "wood siding", + "wall_type": "WoodStud", + "water_fixtures_shower_low_flow": true, + "water_fixtures_sink_low_flow": false, + "water_fixtures_usage_multiplier": 1.0, + "water_heater_efficiency": 0.95, + "water_heater_efficiency_type": "EnergyFactor", + "water_heater_fuel_type": "electricity", + "water_heater_jacket_rvalue": 0, + "water_heater_location": "living space", + "water_heater_num_units_served": 1, + "water_heater_recovery_efficiency": "0.76", + "water_heater_setpoint_temperature": "125", + "water_heater_standby_loss": 0, + "water_heater_tank_volume": "40", + "water_heater_type": "storage water heater", + "weather_station_epw_filepath": "USA_CO_Denver.Intl.AP.725650_TMY3.epw", + "whole_house_fan_flow_rate": 4500, + "whole_house_fan_power": 300, + "whole_house_fan_present": false, + "window_area_back": 0, + "window_area_front": 0, + "window_area_left": 0, + "window_area_right": 0, + "window_aspect_ratio": 1.333, + "window_back_wwr": 0.18, + "window_fraction_operable": 0.67, + "window_front_wwr": 0.18, + "window_interior_shading_summer": 0.7, + "window_interior_shading_winter": 0.85, + "window_left_wwr": 0.18, + "window_right_wwr": 0.18, + "window_shgc": 0.45, + "window_ufactor": 0.33 + }, + "measure_dir_name": "BuildResidentialHPXML" + } + ] +} \ No newline at end of file diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-vented-crawlspace-middle-middle-double-loaded-interior.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-vented-crawlspace-middle-middle-double-loaded-interior.osw new file mode 100644 index 00000000..b8835640 --- /dev/null +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-vented-crawlspace-middle-middle-double-loaded-interior.osw @@ -0,0 +1,341 @@ +{ + "measure_paths": [ + "../.." + ], + "steps": [ + { + "arguments": { + "air_leakage_house_pressure": 50, + "air_leakage_shielding_of_home": "auto", + "air_leakage_units": "ACH", + "air_leakage_value": 3, + "bathroom_fans_quantity": "0", + "ceiling_assembly_r": 39.3, + "ceiling_fan_cooling_setpoint_temp_offset": 0, + "ceiling_fan_efficiency": "auto", + "ceiling_fan_present": false, + "ceiling_fan_quantity": "auto", + "clothes_dryer_efficiency": "3.73", + "clothes_dryer_efficiency_type": "CombinedEnergyFactor", + "clothes_dryer_fuel_type": "electricity", + "clothes_dryer_location": "living space", + "clothes_dryer_usage_multiplier": 1.0, + "clothes_dryer_vented_flow_rate": "150.0", + "clothes_washer_capacity": "3.2", + "clothes_washer_efficiency": "1.21", + "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", + "clothes_washer_label_annual_gas_cost": "27.0", + "clothes_washer_label_electric_rate": "0.12", + "clothes_washer_label_gas_rate": "1.09", + "clothes_washer_label_usage": "6.0", + "clothes_washer_location": "living space", + "clothes_washer_rated_annual_kwh": "380.0", + "clothes_washer_usage_multiplier": 1.0, + "cooking_range_oven_fuel_type": "electricity", + "cooking_range_oven_is_convection": false, + "cooking_range_oven_is_induction": false, + "cooking_range_oven_location": "living space", + "cooking_range_oven_usage_multiplier": 1.0, + "cooling_system_cooling_capacity": "48000.0", + "cooling_system_cooling_compressor_type": "single stage", + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", + "cooling_system_cooling_sensible_heat_fraction": 0.73, + "cooling_system_fraction_cool_load_served": 1, + "cooling_system_is_ducted": false, + "cooling_system_type": "central air conditioner", + "dehumidifier_capacity": 40, + "dehumidifier_efficiency": 1.8, + "dehumidifier_efficiency_type": "EnergyFactor", + "dehumidifier_fraction_dehumidification_load_served": 1, + "dehumidifier_rh_setpoint": 0.5, + "dehumidifier_type": "none", + "dhw_distribution_pipe_r": "0.0", + "dhw_distribution_recirc_branch_piping_length": "50", + "dhw_distribution_recirc_control_type": "no control", + "dhw_distribution_recirc_piping_length": "50", + "dhw_distribution_recirc_pump_power": "50", + "dhw_distribution_standard_piping_length": "50", + "dhw_distribution_system_type": "Standard", + "dishwasher_efficiency": "307", + "dishwasher_efficiency_type": "RatedAnnualkWh", + "dishwasher_label_annual_gas_cost": "22.32", + "dishwasher_label_electric_rate": "0.12", + "dishwasher_label_gas_rate": "1.09", + "dishwasher_label_usage": "4.0", + "dishwasher_location": "living space", + "dishwasher_place_setting_capacity": "12", + "dishwasher_usage_multiplier": 1.0, + "door_area": 20.0, + "door_rvalue": 4.4, + "ducts_number_of_return_registers": "1", + "ducts_return_insulation_r": 0.0, + "ducts_return_leakage_units": "CFM25", + "ducts_return_leakage_value": 0.0, + "ducts_return_location": "living space", + "ducts_return_surface_area": "50.0", + "ducts_supply_insulation_r": 0.0, + "ducts_supply_leakage_units": "CFM25", + "ducts_supply_leakage_value": 0.0, + "ducts_supply_location": "living space", + "ducts_supply_surface_area": "150.0", + "dwhr_efficiency": 0.55, + "dwhr_equal_flow": true, + "dwhr_facilities_connected": "none", + "extra_refrigerator_location": "none", + "extra_refrigerator_rated_annual_kwh": "auto", + "extra_refrigerator_usage_multiplier": 1.0, + "floor_assembly_r": 18.7, + "foundation_wall_insulation_distance_to_bottom": 4.0, + "foundation_wall_insulation_distance_to_top": 0.0, + "foundation_wall_insulation_r": 8.9, + "foundation_wall_thickness": "8.0", + "freezer_location": "none", + "freezer_rated_annual_kwh": "auto", + "freezer_usage_multiplier": 1.0, + "fuel_loads_fireplace_annual_therm": "auto", + "fuel_loads_fireplace_frac_latent": "auto", + "fuel_loads_fireplace_frac_sensible": "auto", + "fuel_loads_fireplace_fuel_type": "natural gas", + "fuel_loads_fireplace_present": false, + "fuel_loads_fireplace_usage_multiplier": 0.0, + "fuel_loads_grill_annual_therm": "auto", + "fuel_loads_grill_fuel_type": "natural gas", + "fuel_loads_grill_present": false, + "fuel_loads_grill_usage_multiplier": 0.0, + "fuel_loads_lighting_annual_therm": "auto", + "fuel_loads_lighting_fuel_type": "natural gas", + "fuel_loads_lighting_present": false, + "fuel_loads_lighting_usage_multiplier": 0.0, + "geometry_aspect_ratio": 1.5, + "geometry_attic_type": "UnventedAttic", + "geometry_balcony_depth": 0.0, + "geometry_building_num_bedrooms": 150, + "geometry_building_num_units": 50, + "geometry_cfa": 900.0, + "geometry_corridor_position": "Double-Loaded Interior", + "geometry_corridor_width": 10.0, + "geometry_eaves_depth": 0, + "geometry_foundation_height": 4.0, + "geometry_foundation_height_above_grade": 1.0, + "geometry_foundation_type": "VentedCrawlspace", + "geometry_garage_depth": 20.0, + "geometry_garage_position": "Right", + "geometry_garage_protrusion": 0.0, + "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", + "geometry_horizontal_location": "Middle", + "geometry_inset_depth": 0.0, + "geometry_inset_position": "Right", + "geometry_inset_width": 0.0, + "geometry_level": "Middle", + "geometry_num_bathrooms": "2", + "geometry_num_bedrooms": 3, + "geometry_num_floors_above_grade": 5, + "geometry_num_occupants": "3", + "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, + "geometry_roof_pitch": "6:12", + "geometry_roof_type": "gable", + "geometry_unit_type": "apartment unit", + "geometry_wall_height": 8.0, + "heat_pump_backup_fuel": "none", + "heat_pump_backup_heating_capacity": "34121.0", + "heat_pump_backup_heating_efficiency": 1, + "heat_pump_cooling_capacity": "48000.0", + "heat_pump_cooling_compressor_type": "single stage", + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", + "heat_pump_cooling_sensible_heat_fraction": 0.73, + "heat_pump_fraction_cool_load_served": 1, + "heat_pump_fraction_heat_load_served": 1, + "heat_pump_heating_capacity": "64000.0", + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", + "heat_pump_type": "none", + "heating_system_fraction_heat_load_served": 1, + "heating_system_fraction_heat_load_served_2": 0.25, + "heating_system_fuel": "natural gas", + "heating_system_fuel_2": "electricity", + "heating_system_heating_capacity": "64000.0", + "heating_system_heating_capacity_2": "auto", + "heating_system_heating_efficiency": 0.92, + "heating_system_heating_efficiency_2": 1.0, + "heating_system_type": "Furnace", + "heating_system_type_2": "none", + "holiday_lighting_daily_kwh": "auto", + "holiday_lighting_period_begin_day_of_month": "auto", + "holiday_lighting_period_begin_month": "auto", + "holiday_lighting_period_end_day_of_month": "auto", + "holiday_lighting_period_end_month": "auto", + "holiday_lighting_present": false, + "hot_tub_heater_annual_kwh": "auto", + "hot_tub_heater_annual_therm": "auto", + "hot_tub_heater_type": "electric resistance", + "hot_tub_heater_usage_multiplier": 1.0, + "hot_tub_present": false, + "hot_tub_pump_annual_kwh": "auto", + "hot_tub_pump_usage_multiplier": 1.0, + "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/extra-bldgtype-multifamily-vented-crawlspace-middle-middle-double-loaded-interior.xml", + "kitchen_fans_quantity": "0", + "lighting_fraction_cfl_exterior": 0.4, + "lighting_fraction_cfl_garage": 0.4, + "lighting_fraction_cfl_interior": 0.4, + "lighting_fraction_led_exterior": 0.25, + "lighting_fraction_led_garage": 0.25, + "lighting_fraction_led_interior": 0.25, + "lighting_fraction_lfl_exterior": 0.1, + "lighting_fraction_lfl_garage": 0.1, + "lighting_fraction_lfl_interior": 0.1, + "lighting_usage_multiplier_exterior": 1.0, + "lighting_usage_multiplier_garage": 1.0, + "lighting_usage_multiplier_interior": 1.0, + "mech_vent_fan_power": 30, + "mech_vent_fan_power_2": 30, + "mech_vent_fan_type": "none", + "mech_vent_fan_type_2": "none", + "mech_vent_flow_rate": 110, + "mech_vent_flow_rate_2": 110, + "mech_vent_hours_in_operation": 24, + "mech_vent_hours_in_operation_2": 24, + "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", + "mech_vent_sensible_recovery_efficiency": 0.72, + "mech_vent_sensible_recovery_efficiency_2": 0.72, + "mech_vent_total_recovery_efficiency": 0.48, + "mech_vent_total_recovery_efficiency_2": 0.48, + "neighbor_back_distance": 0, + "neighbor_back_height": "auto", + "neighbor_front_distance": 0, + "neighbor_front_height": "auto", + "neighbor_left_distance": 0, + "neighbor_left_height": "auto", + "neighbor_right_distance": 0, + "neighbor_right_height": "auto", + "overhangs_back_depth": 0, + "overhangs_back_distance_to_top_of_window": 0, + "overhangs_front_depth": 0, + "overhangs_front_distance_to_top_of_window": 0, + "overhangs_left_depth": 0, + "overhangs_left_distance_to_top_of_window": 0, + "overhangs_right_depth": 0, + "overhangs_right_distance_to_top_of_window": 0, + "plug_loads_other_annual_kwh": "819.0", + "plug_loads_other_frac_latent": "0.045", + "plug_loads_other_frac_sensible": "0.855", + "plug_loads_other_usage_multiplier": 1.0, + "plug_loads_television_annual_kwh": "620.0", + "plug_loads_television_usage_multiplier": 1.0, + "plug_loads_vehicle_annual_kwh": "auto", + "plug_loads_vehicle_present": false, + "plug_loads_vehicle_usage_multiplier": 0.0, + "plug_loads_well_pump_annual_kwh": "auto", + "plug_loads_well_pump_present": false, + "plug_loads_well_pump_usage_multiplier": 0.0, + "pool_heater_annual_kwh": "auto", + "pool_heater_annual_therm": "auto", + "pool_heater_type": "electric resistance", + "pool_heater_usage_multiplier": 1.0, + "pool_present": false, + "pool_pump_annual_kwh": "auto", + "pool_pump_usage_multiplier": 1.0, + "pv_system_array_azimuth_1": 180, + "pv_system_array_azimuth_2": 180, + "pv_system_array_tilt_1": "20", + "pv_system_array_tilt_2": "20", + "pv_system_inverter_efficiency_1": 0.96, + "pv_system_inverter_efficiency_2": 0.96, + "pv_system_location_1": "auto", + "pv_system_location_2": "auto", + "pv_system_max_power_output_1": 4000, + "pv_system_max_power_output_2": 4000, + "pv_system_module_type_1": "none", + "pv_system_module_type_2": "none", + "pv_system_num_units_served_1": 1, + "pv_system_num_units_served_2": 1, + "pv_system_system_losses_fraction_1": 0.14, + "pv_system_system_losses_fraction_2": 0.14, + "pv_system_tracking_1": "auto", + "pv_system_tracking_2": "auto", + "refrigerator_location": "living space", + "refrigerator_rated_annual_kwh": "650.0", + "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, + "roof_assembly_r": 2.3, + "roof_color": "medium", + "roof_material_type": "asphalt or fiberglass shingles", + "roof_radiant_barrier": false, + "roof_radiant_barrier_grade": "1", + "schedules_type": "default", + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", + "simulation_control_timestep": "60", + "site_type": "suburban", + "skylight_area_back": 0, + "skylight_area_front": 0, + "skylight_area_left": 0, + "skylight_area_right": 0, + "skylight_shgc": 0.45, + "skylight_ufactor": 0.33, + "slab_carpet_fraction": "0.0", + "slab_carpet_r": "0.0", + "slab_perimeter_depth": 0, + "slab_perimeter_insulation_r": 0, + "slab_thickness": "4.0", + "slab_under_insulation_r": 0, + "slab_under_width": 0, + "solar_thermal_collector_area": 40.0, + "solar_thermal_collector_azimuth": 180, + "solar_thermal_collector_loop_type": "liquid direct", + "solar_thermal_collector_rated_optical_efficiency": 0.5, + "solar_thermal_collector_rated_thermal_losses": 0.2799, + "solar_thermal_collector_tilt": "20", + "solar_thermal_collector_type": "evacuated tube", + "solar_thermal_solar_fraction": 0, + "solar_thermal_storage_volume": "auto", + "solar_thermal_system_type": "none", + "wall_assembly_r": 23, + "wall_color": "medium", + "wall_siding_type": "wood siding", + "wall_type": "WoodStud", + "water_fixtures_shower_low_flow": true, + "water_fixtures_sink_low_flow": false, + "water_fixtures_usage_multiplier": 1.0, + "water_heater_efficiency": 0.95, + "water_heater_efficiency_type": "EnergyFactor", + "water_heater_fuel_type": "electricity", + "water_heater_jacket_rvalue": 0, + "water_heater_location": "living space", + "water_heater_num_units_served": 1, + "water_heater_recovery_efficiency": "0.76", + "water_heater_setpoint_temperature": "125", + "water_heater_standby_loss": 0, + "water_heater_tank_volume": "40", + "water_heater_type": "storage water heater", + "weather_station_epw_filepath": "USA_CO_Denver.Intl.AP.725650_TMY3.epw", + "whole_house_fan_flow_rate": 4500, + "whole_house_fan_power": 300, + "whole_house_fan_present": false, + "window_area_back": 0, + "window_area_front": 0, + "window_area_left": 0, + "window_area_right": 0, + "window_aspect_ratio": 1.333, + "window_back_wwr": 0.18, + "window_fraction_operable": 0.67, + "window_front_wwr": 0.18, + "window_interior_shading_summer": 0.7, + "window_interior_shading_winter": 0.85, + "window_left_wwr": 0.18, + "window_right_wwr": 0.18, + "window_shgc": 0.45, + "window_ufactor": 0.33 + }, + "measure_dir_name": "BuildResidentialHPXML" + } + ] +} \ No newline at end of file diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-vented-crawlspace-middle-middle.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-vented-crawlspace-middle-middle.osw new file mode 100644 index 00000000..ce7e4171 --- /dev/null +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-vented-crawlspace-middle-middle.osw @@ -0,0 +1,341 @@ +{ + "measure_paths": [ + "../.." + ], + "steps": [ + { + "arguments": { + "air_leakage_house_pressure": 50, + "air_leakage_shielding_of_home": "auto", + "air_leakage_units": "ACH", + "air_leakage_value": 3, + "bathroom_fans_quantity": "0", + "ceiling_assembly_r": 39.3, + "ceiling_fan_cooling_setpoint_temp_offset": 0, + "ceiling_fan_efficiency": "auto", + "ceiling_fan_present": false, + "ceiling_fan_quantity": "auto", + "clothes_dryer_efficiency": "3.73", + "clothes_dryer_efficiency_type": "CombinedEnergyFactor", + "clothes_dryer_fuel_type": "electricity", + "clothes_dryer_location": "living space", + "clothes_dryer_usage_multiplier": 1.0, + "clothes_dryer_vented_flow_rate": "150.0", + "clothes_washer_capacity": "3.2", + "clothes_washer_efficiency": "1.21", + "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", + "clothes_washer_label_annual_gas_cost": "27.0", + "clothes_washer_label_electric_rate": "0.12", + "clothes_washer_label_gas_rate": "1.09", + "clothes_washer_label_usage": "6.0", + "clothes_washer_location": "living space", + "clothes_washer_rated_annual_kwh": "380.0", + "clothes_washer_usage_multiplier": 1.0, + "cooking_range_oven_fuel_type": "electricity", + "cooking_range_oven_is_convection": false, + "cooking_range_oven_is_induction": false, + "cooking_range_oven_location": "living space", + "cooking_range_oven_usage_multiplier": 1.0, + "cooling_system_cooling_capacity": "48000.0", + "cooling_system_cooling_compressor_type": "single stage", + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", + "cooling_system_cooling_sensible_heat_fraction": 0.73, + "cooling_system_fraction_cool_load_served": 1, + "cooling_system_is_ducted": false, + "cooling_system_type": "central air conditioner", + "dehumidifier_capacity": 40, + "dehumidifier_efficiency": 1.8, + "dehumidifier_efficiency_type": "EnergyFactor", + "dehumidifier_fraction_dehumidification_load_served": 1, + "dehumidifier_rh_setpoint": 0.5, + "dehumidifier_type": "none", + "dhw_distribution_pipe_r": "0.0", + "dhw_distribution_recirc_branch_piping_length": "50", + "dhw_distribution_recirc_control_type": "no control", + "dhw_distribution_recirc_piping_length": "50", + "dhw_distribution_recirc_pump_power": "50", + "dhw_distribution_standard_piping_length": "50", + "dhw_distribution_system_type": "Standard", + "dishwasher_efficiency": "307", + "dishwasher_efficiency_type": "RatedAnnualkWh", + "dishwasher_label_annual_gas_cost": "22.32", + "dishwasher_label_electric_rate": "0.12", + "dishwasher_label_gas_rate": "1.09", + "dishwasher_label_usage": "4.0", + "dishwasher_location": "living space", + "dishwasher_place_setting_capacity": "12", + "dishwasher_usage_multiplier": 1.0, + "door_area": 20.0, + "door_rvalue": 4.4, + "ducts_number_of_return_registers": "1", + "ducts_return_insulation_r": 0.0, + "ducts_return_leakage_units": "CFM25", + "ducts_return_leakage_value": 0.0, + "ducts_return_location": "living space", + "ducts_return_surface_area": "50.0", + "ducts_supply_insulation_r": 0.0, + "ducts_supply_leakage_units": "CFM25", + "ducts_supply_leakage_value": 0.0, + "ducts_supply_location": "living space", + "ducts_supply_surface_area": "150.0", + "dwhr_efficiency": 0.55, + "dwhr_equal_flow": true, + "dwhr_facilities_connected": "none", + "extra_refrigerator_location": "none", + "extra_refrigerator_rated_annual_kwh": "auto", + "extra_refrigerator_usage_multiplier": 1.0, + "floor_assembly_r": 18.7, + "foundation_wall_insulation_distance_to_bottom": 4.0, + "foundation_wall_insulation_distance_to_top": 0.0, + "foundation_wall_insulation_r": 8.9, + "foundation_wall_thickness": "8.0", + "freezer_location": "none", + "freezer_rated_annual_kwh": "auto", + "freezer_usage_multiplier": 1.0, + "fuel_loads_fireplace_annual_therm": "auto", + "fuel_loads_fireplace_frac_latent": "auto", + "fuel_loads_fireplace_frac_sensible": "auto", + "fuel_loads_fireplace_fuel_type": "natural gas", + "fuel_loads_fireplace_present": false, + "fuel_loads_fireplace_usage_multiplier": 0.0, + "fuel_loads_grill_annual_therm": "auto", + "fuel_loads_grill_fuel_type": "natural gas", + "fuel_loads_grill_present": false, + "fuel_loads_grill_usage_multiplier": 0.0, + "fuel_loads_lighting_annual_therm": "auto", + "fuel_loads_lighting_fuel_type": "natural gas", + "fuel_loads_lighting_present": false, + "fuel_loads_lighting_usage_multiplier": 0.0, + "geometry_aspect_ratio": 1.5, + "geometry_attic_type": "UnventedAttic", + "geometry_balcony_depth": 0.0, + "geometry_building_num_bedrooms": 150, + "geometry_building_num_units": 50, + "geometry_cfa": 900.0, + "geometry_corridor_position": "None", + "geometry_corridor_width": 10.0, + "geometry_eaves_depth": 0, + "geometry_foundation_height": 4.0, + "geometry_foundation_height_above_grade": 1.0, + "geometry_foundation_type": "VentedCrawlspace", + "geometry_garage_depth": 20.0, + "geometry_garage_position": "Right", + "geometry_garage_protrusion": 0.0, + "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", + "geometry_horizontal_location": "Middle", + "geometry_inset_depth": 0.0, + "geometry_inset_position": "Right", + "geometry_inset_width": 0.0, + "geometry_level": "Middle", + "geometry_num_bathrooms": "2", + "geometry_num_bedrooms": 3, + "geometry_num_floors_above_grade": 5, + "geometry_num_occupants": "3", + "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, + "geometry_roof_pitch": "6:12", + "geometry_roof_type": "gable", + "geometry_unit_type": "apartment unit", + "geometry_wall_height": 8.0, + "heat_pump_backup_fuel": "none", + "heat_pump_backup_heating_capacity": "34121.0", + "heat_pump_backup_heating_efficiency": 1, + "heat_pump_cooling_capacity": "48000.0", + "heat_pump_cooling_compressor_type": "single stage", + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", + "heat_pump_cooling_sensible_heat_fraction": 0.73, + "heat_pump_fraction_cool_load_served": 1, + "heat_pump_fraction_heat_load_served": 1, + "heat_pump_heating_capacity": "64000.0", + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", + "heat_pump_type": "none", + "heating_system_fraction_heat_load_served": 1, + "heating_system_fraction_heat_load_served_2": 0.25, + "heating_system_fuel": "natural gas", + "heating_system_fuel_2": "electricity", + "heating_system_heating_capacity": "64000.0", + "heating_system_heating_capacity_2": "auto", + "heating_system_heating_efficiency": 0.92, + "heating_system_heating_efficiency_2": 1.0, + "heating_system_type": "Furnace", + "heating_system_type_2": "none", + "holiday_lighting_daily_kwh": "auto", + "holiday_lighting_period_begin_day_of_month": "auto", + "holiday_lighting_period_begin_month": "auto", + "holiday_lighting_period_end_day_of_month": "auto", + "holiday_lighting_period_end_month": "auto", + "holiday_lighting_present": false, + "hot_tub_heater_annual_kwh": "auto", + "hot_tub_heater_annual_therm": "auto", + "hot_tub_heater_type": "electric resistance", + "hot_tub_heater_usage_multiplier": 1.0, + "hot_tub_present": false, + "hot_tub_pump_annual_kwh": "auto", + "hot_tub_pump_usage_multiplier": 1.0, + "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/extra-bldgtype-multifamily-vented-crawlspace-middle-middle.xml", + "kitchen_fans_quantity": "0", + "lighting_fraction_cfl_exterior": 0.4, + "lighting_fraction_cfl_garage": 0.4, + "lighting_fraction_cfl_interior": 0.4, + "lighting_fraction_led_exterior": 0.25, + "lighting_fraction_led_garage": 0.25, + "lighting_fraction_led_interior": 0.25, + "lighting_fraction_lfl_exterior": 0.1, + "lighting_fraction_lfl_garage": 0.1, + "lighting_fraction_lfl_interior": 0.1, + "lighting_usage_multiplier_exterior": 1.0, + "lighting_usage_multiplier_garage": 1.0, + "lighting_usage_multiplier_interior": 1.0, + "mech_vent_fan_power": 30, + "mech_vent_fan_power_2": 30, + "mech_vent_fan_type": "none", + "mech_vent_fan_type_2": "none", + "mech_vent_flow_rate": 110, + "mech_vent_flow_rate_2": 110, + "mech_vent_hours_in_operation": 24, + "mech_vent_hours_in_operation_2": 24, + "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", + "mech_vent_sensible_recovery_efficiency": 0.72, + "mech_vent_sensible_recovery_efficiency_2": 0.72, + "mech_vent_total_recovery_efficiency": 0.48, + "mech_vent_total_recovery_efficiency_2": 0.48, + "neighbor_back_distance": 0, + "neighbor_back_height": "auto", + "neighbor_front_distance": 0, + "neighbor_front_height": "auto", + "neighbor_left_distance": 0, + "neighbor_left_height": "auto", + "neighbor_right_distance": 0, + "neighbor_right_height": "auto", + "overhangs_back_depth": 0, + "overhangs_back_distance_to_top_of_window": 0, + "overhangs_front_depth": 0, + "overhangs_front_distance_to_top_of_window": 0, + "overhangs_left_depth": 0, + "overhangs_left_distance_to_top_of_window": 0, + "overhangs_right_depth": 0, + "overhangs_right_distance_to_top_of_window": 0, + "plug_loads_other_annual_kwh": "819.0", + "plug_loads_other_frac_latent": "0.045", + "plug_loads_other_frac_sensible": "0.855", + "plug_loads_other_usage_multiplier": 1.0, + "plug_loads_television_annual_kwh": "620.0", + "plug_loads_television_usage_multiplier": 1.0, + "plug_loads_vehicle_annual_kwh": "auto", + "plug_loads_vehicle_present": false, + "plug_loads_vehicle_usage_multiplier": 0.0, + "plug_loads_well_pump_annual_kwh": "auto", + "plug_loads_well_pump_present": false, + "plug_loads_well_pump_usage_multiplier": 0.0, + "pool_heater_annual_kwh": "auto", + "pool_heater_annual_therm": "auto", + "pool_heater_type": "electric resistance", + "pool_heater_usage_multiplier": 1.0, + "pool_present": false, + "pool_pump_annual_kwh": "auto", + "pool_pump_usage_multiplier": 1.0, + "pv_system_array_azimuth_1": 180, + "pv_system_array_azimuth_2": 180, + "pv_system_array_tilt_1": "20", + "pv_system_array_tilt_2": "20", + "pv_system_inverter_efficiency_1": 0.96, + "pv_system_inverter_efficiency_2": 0.96, + "pv_system_location_1": "auto", + "pv_system_location_2": "auto", + "pv_system_max_power_output_1": 4000, + "pv_system_max_power_output_2": 4000, + "pv_system_module_type_1": "none", + "pv_system_module_type_2": "none", + "pv_system_num_units_served_1": 1, + "pv_system_num_units_served_2": 1, + "pv_system_system_losses_fraction_1": 0.14, + "pv_system_system_losses_fraction_2": 0.14, + "pv_system_tracking_1": "auto", + "pv_system_tracking_2": "auto", + "refrigerator_location": "living space", + "refrigerator_rated_annual_kwh": "650.0", + "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, + "roof_assembly_r": 2.3, + "roof_color": "medium", + "roof_material_type": "asphalt or fiberglass shingles", + "roof_radiant_barrier": false, + "roof_radiant_barrier_grade": "1", + "schedules_type": "default", + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", + "simulation_control_timestep": "60", + "site_type": "suburban", + "skylight_area_back": 0, + "skylight_area_front": 0, + "skylight_area_left": 0, + "skylight_area_right": 0, + "skylight_shgc": 0.45, + "skylight_ufactor": 0.33, + "slab_carpet_fraction": "0.0", + "slab_carpet_r": "0.0", + "slab_perimeter_depth": 0, + "slab_perimeter_insulation_r": 0, + "slab_thickness": "4.0", + "slab_under_insulation_r": 0, + "slab_under_width": 0, + "solar_thermal_collector_area": 40.0, + "solar_thermal_collector_azimuth": 180, + "solar_thermal_collector_loop_type": "liquid direct", + "solar_thermal_collector_rated_optical_efficiency": 0.5, + "solar_thermal_collector_rated_thermal_losses": 0.2799, + "solar_thermal_collector_tilt": "20", + "solar_thermal_collector_type": "evacuated tube", + "solar_thermal_solar_fraction": 0, + "solar_thermal_storage_volume": "auto", + "solar_thermal_system_type": "none", + "wall_assembly_r": 23, + "wall_color": "medium", + "wall_siding_type": "wood siding", + "wall_type": "WoodStud", + "water_fixtures_shower_low_flow": true, + "water_fixtures_sink_low_flow": false, + "water_fixtures_usage_multiplier": 1.0, + "water_heater_efficiency": 0.95, + "water_heater_efficiency_type": "EnergyFactor", + "water_heater_fuel_type": "electricity", + "water_heater_jacket_rvalue": 0, + "water_heater_location": "living space", + "water_heater_num_units_served": 1, + "water_heater_recovery_efficiency": "0.76", + "water_heater_setpoint_temperature": "125", + "water_heater_standby_loss": 0, + "water_heater_tank_volume": "40", + "water_heater_type": "storage water heater", + "weather_station_epw_filepath": "USA_CO_Denver.Intl.AP.725650_TMY3.epw", + "whole_house_fan_flow_rate": 4500, + "whole_house_fan_power": 300, + "whole_house_fan_present": false, + "window_area_back": 0, + "window_area_front": 0, + "window_area_left": 0, + "window_area_right": 0, + "window_aspect_ratio": 1.333, + "window_back_wwr": 0.18, + "window_fraction_operable": 0.67, + "window_front_wwr": 0.18, + "window_interior_shading_summer": 0.7, + "window_interior_shading_winter": 0.85, + "window_left_wwr": 0.18, + "window_right_wwr": 0.18, + "window_shgc": 0.45, + "window_ufactor": 0.33 + }, + "measure_dir_name": "BuildResidentialHPXML" + } + ] +} \ No newline at end of file diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-vented-crawlspace-middle-top-double-loaded-interior.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-vented-crawlspace-middle-top-double-loaded-interior.osw new file mode 100644 index 00000000..3049784b --- /dev/null +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-vented-crawlspace-middle-top-double-loaded-interior.osw @@ -0,0 +1,341 @@ +{ + "measure_paths": [ + "../.." + ], + "steps": [ + { + "arguments": { + "air_leakage_house_pressure": 50, + "air_leakage_shielding_of_home": "auto", + "air_leakage_units": "ACH", + "air_leakage_value": 3, + "bathroom_fans_quantity": "0", + "ceiling_assembly_r": 39.3, + "ceiling_fan_cooling_setpoint_temp_offset": 0, + "ceiling_fan_efficiency": "auto", + "ceiling_fan_present": false, + "ceiling_fan_quantity": "auto", + "clothes_dryer_efficiency": "3.73", + "clothes_dryer_efficiency_type": "CombinedEnergyFactor", + "clothes_dryer_fuel_type": "electricity", + "clothes_dryer_location": "living space", + "clothes_dryer_usage_multiplier": 1.0, + "clothes_dryer_vented_flow_rate": "150.0", + "clothes_washer_capacity": "3.2", + "clothes_washer_efficiency": "1.21", + "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", + "clothes_washer_label_annual_gas_cost": "27.0", + "clothes_washer_label_electric_rate": "0.12", + "clothes_washer_label_gas_rate": "1.09", + "clothes_washer_label_usage": "6.0", + "clothes_washer_location": "living space", + "clothes_washer_rated_annual_kwh": "380.0", + "clothes_washer_usage_multiplier": 1.0, + "cooking_range_oven_fuel_type": "electricity", + "cooking_range_oven_is_convection": false, + "cooking_range_oven_is_induction": false, + "cooking_range_oven_location": "living space", + "cooking_range_oven_usage_multiplier": 1.0, + "cooling_system_cooling_capacity": "48000.0", + "cooling_system_cooling_compressor_type": "single stage", + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", + "cooling_system_cooling_sensible_heat_fraction": 0.73, + "cooling_system_fraction_cool_load_served": 1, + "cooling_system_is_ducted": false, + "cooling_system_type": "central air conditioner", + "dehumidifier_capacity": 40, + "dehumidifier_efficiency": 1.8, + "dehumidifier_efficiency_type": "EnergyFactor", + "dehumidifier_fraction_dehumidification_load_served": 1, + "dehumidifier_rh_setpoint": 0.5, + "dehumidifier_type": "none", + "dhw_distribution_pipe_r": "0.0", + "dhw_distribution_recirc_branch_piping_length": "50", + "dhw_distribution_recirc_control_type": "no control", + "dhw_distribution_recirc_piping_length": "50", + "dhw_distribution_recirc_pump_power": "50", + "dhw_distribution_standard_piping_length": "50", + "dhw_distribution_system_type": "Standard", + "dishwasher_efficiency": "307", + "dishwasher_efficiency_type": "RatedAnnualkWh", + "dishwasher_label_annual_gas_cost": "22.32", + "dishwasher_label_electric_rate": "0.12", + "dishwasher_label_gas_rate": "1.09", + "dishwasher_label_usage": "4.0", + "dishwasher_location": "living space", + "dishwasher_place_setting_capacity": "12", + "dishwasher_usage_multiplier": 1.0, + "door_area": 20.0, + "door_rvalue": 4.4, + "ducts_number_of_return_registers": "1", + "ducts_return_insulation_r": 0.0, + "ducts_return_leakage_units": "CFM25", + "ducts_return_leakage_value": 0.0, + "ducts_return_location": "living space", + "ducts_return_surface_area": "50.0", + "ducts_supply_insulation_r": 0.0, + "ducts_supply_leakage_units": "CFM25", + "ducts_supply_leakage_value": 0.0, + "ducts_supply_location": "living space", + "ducts_supply_surface_area": "150.0", + "dwhr_efficiency": 0.55, + "dwhr_equal_flow": true, + "dwhr_facilities_connected": "none", + "extra_refrigerator_location": "none", + "extra_refrigerator_rated_annual_kwh": "auto", + "extra_refrigerator_usage_multiplier": 1.0, + "floor_assembly_r": 18.7, + "foundation_wall_insulation_distance_to_bottom": 4.0, + "foundation_wall_insulation_distance_to_top": 0.0, + "foundation_wall_insulation_r": 8.9, + "foundation_wall_thickness": "8.0", + "freezer_location": "none", + "freezer_rated_annual_kwh": "auto", + "freezer_usage_multiplier": 1.0, + "fuel_loads_fireplace_annual_therm": "auto", + "fuel_loads_fireplace_frac_latent": "auto", + "fuel_loads_fireplace_frac_sensible": "auto", + "fuel_loads_fireplace_fuel_type": "natural gas", + "fuel_loads_fireplace_present": false, + "fuel_loads_fireplace_usage_multiplier": 0.0, + "fuel_loads_grill_annual_therm": "auto", + "fuel_loads_grill_fuel_type": "natural gas", + "fuel_loads_grill_present": false, + "fuel_loads_grill_usage_multiplier": 0.0, + "fuel_loads_lighting_annual_therm": "auto", + "fuel_loads_lighting_fuel_type": "natural gas", + "fuel_loads_lighting_present": false, + "fuel_loads_lighting_usage_multiplier": 0.0, + "geometry_aspect_ratio": 1.5, + "geometry_attic_type": "UnventedAttic", + "geometry_balcony_depth": 0.0, + "geometry_building_num_bedrooms": 150, + "geometry_building_num_units": 50, + "geometry_cfa": 900.0, + "geometry_corridor_position": "Double-Loaded Interior", + "geometry_corridor_width": 10.0, + "geometry_eaves_depth": 0, + "geometry_foundation_height": 4.0, + "geometry_foundation_height_above_grade": 1.0, + "geometry_foundation_type": "VentedCrawlspace", + "geometry_garage_depth": 20.0, + "geometry_garage_position": "Right", + "geometry_garage_protrusion": 0.0, + "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", + "geometry_horizontal_location": "Middle", + "geometry_inset_depth": 0.0, + "geometry_inset_position": "Right", + "geometry_inset_width": 0.0, + "geometry_level": "Top", + "geometry_num_bathrooms": "2", + "geometry_num_bedrooms": 3, + "geometry_num_floors_above_grade": 5, + "geometry_num_occupants": "3", + "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, + "geometry_roof_pitch": "6:12", + "geometry_roof_type": "gable", + "geometry_unit_type": "apartment unit", + "geometry_wall_height": 8.0, + "heat_pump_backup_fuel": "none", + "heat_pump_backup_heating_capacity": "34121.0", + "heat_pump_backup_heating_efficiency": 1, + "heat_pump_cooling_capacity": "48000.0", + "heat_pump_cooling_compressor_type": "single stage", + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", + "heat_pump_cooling_sensible_heat_fraction": 0.73, + "heat_pump_fraction_cool_load_served": 1, + "heat_pump_fraction_heat_load_served": 1, + "heat_pump_heating_capacity": "64000.0", + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", + "heat_pump_type": "none", + "heating_system_fraction_heat_load_served": 1, + "heating_system_fraction_heat_load_served_2": 0.25, + "heating_system_fuel": "natural gas", + "heating_system_fuel_2": "electricity", + "heating_system_heating_capacity": "64000.0", + "heating_system_heating_capacity_2": "auto", + "heating_system_heating_efficiency": 0.92, + "heating_system_heating_efficiency_2": 1.0, + "heating_system_type": "Furnace", + "heating_system_type_2": "none", + "holiday_lighting_daily_kwh": "auto", + "holiday_lighting_period_begin_day_of_month": "auto", + "holiday_lighting_period_begin_month": "auto", + "holiday_lighting_period_end_day_of_month": "auto", + "holiday_lighting_period_end_month": "auto", + "holiday_lighting_present": false, + "hot_tub_heater_annual_kwh": "auto", + "hot_tub_heater_annual_therm": "auto", + "hot_tub_heater_type": "electric resistance", + "hot_tub_heater_usage_multiplier": 1.0, + "hot_tub_present": false, + "hot_tub_pump_annual_kwh": "auto", + "hot_tub_pump_usage_multiplier": 1.0, + "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/extra-bldgtype-multifamily-vented-crawlspace-middle-top-double-loaded-interior.xml", + "kitchen_fans_quantity": "0", + "lighting_fraction_cfl_exterior": 0.4, + "lighting_fraction_cfl_garage": 0.4, + "lighting_fraction_cfl_interior": 0.4, + "lighting_fraction_led_exterior": 0.25, + "lighting_fraction_led_garage": 0.25, + "lighting_fraction_led_interior": 0.25, + "lighting_fraction_lfl_exterior": 0.1, + "lighting_fraction_lfl_garage": 0.1, + "lighting_fraction_lfl_interior": 0.1, + "lighting_usage_multiplier_exterior": 1.0, + "lighting_usage_multiplier_garage": 1.0, + "lighting_usage_multiplier_interior": 1.0, + "mech_vent_fan_power": 30, + "mech_vent_fan_power_2": 30, + "mech_vent_fan_type": "none", + "mech_vent_fan_type_2": "none", + "mech_vent_flow_rate": 110, + "mech_vent_flow_rate_2": 110, + "mech_vent_hours_in_operation": 24, + "mech_vent_hours_in_operation_2": 24, + "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", + "mech_vent_sensible_recovery_efficiency": 0.72, + "mech_vent_sensible_recovery_efficiency_2": 0.72, + "mech_vent_total_recovery_efficiency": 0.48, + "mech_vent_total_recovery_efficiency_2": 0.48, + "neighbor_back_distance": 0, + "neighbor_back_height": "auto", + "neighbor_front_distance": 0, + "neighbor_front_height": "auto", + "neighbor_left_distance": 0, + "neighbor_left_height": "auto", + "neighbor_right_distance": 0, + "neighbor_right_height": "auto", + "overhangs_back_depth": 0, + "overhangs_back_distance_to_top_of_window": 0, + "overhangs_front_depth": 0, + "overhangs_front_distance_to_top_of_window": 0, + "overhangs_left_depth": 0, + "overhangs_left_distance_to_top_of_window": 0, + "overhangs_right_depth": 0, + "overhangs_right_distance_to_top_of_window": 0, + "plug_loads_other_annual_kwh": "819.0", + "plug_loads_other_frac_latent": "0.045", + "plug_loads_other_frac_sensible": "0.855", + "plug_loads_other_usage_multiplier": 1.0, + "plug_loads_television_annual_kwh": "620.0", + "plug_loads_television_usage_multiplier": 1.0, + "plug_loads_vehicle_annual_kwh": "auto", + "plug_loads_vehicle_present": false, + "plug_loads_vehicle_usage_multiplier": 0.0, + "plug_loads_well_pump_annual_kwh": "auto", + "plug_loads_well_pump_present": false, + "plug_loads_well_pump_usage_multiplier": 0.0, + "pool_heater_annual_kwh": "auto", + "pool_heater_annual_therm": "auto", + "pool_heater_type": "electric resistance", + "pool_heater_usage_multiplier": 1.0, + "pool_present": false, + "pool_pump_annual_kwh": "auto", + "pool_pump_usage_multiplier": 1.0, + "pv_system_array_azimuth_1": 180, + "pv_system_array_azimuth_2": 180, + "pv_system_array_tilt_1": "20", + "pv_system_array_tilt_2": "20", + "pv_system_inverter_efficiency_1": 0.96, + "pv_system_inverter_efficiency_2": 0.96, + "pv_system_location_1": "auto", + "pv_system_location_2": "auto", + "pv_system_max_power_output_1": 4000, + "pv_system_max_power_output_2": 4000, + "pv_system_module_type_1": "none", + "pv_system_module_type_2": "none", + "pv_system_num_units_served_1": 1, + "pv_system_num_units_served_2": 1, + "pv_system_system_losses_fraction_1": 0.14, + "pv_system_system_losses_fraction_2": 0.14, + "pv_system_tracking_1": "auto", + "pv_system_tracking_2": "auto", + "refrigerator_location": "living space", + "refrigerator_rated_annual_kwh": "650.0", + "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, + "roof_assembly_r": 2.3, + "roof_color": "medium", + "roof_material_type": "asphalt or fiberglass shingles", + "roof_radiant_barrier": false, + "roof_radiant_barrier_grade": "1", + "schedules_type": "default", + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", + "simulation_control_timestep": "60", + "site_type": "suburban", + "skylight_area_back": 0, + "skylight_area_front": 0, + "skylight_area_left": 0, + "skylight_area_right": 0, + "skylight_shgc": 0.45, + "skylight_ufactor": 0.33, + "slab_carpet_fraction": "0.0", + "slab_carpet_r": "0.0", + "slab_perimeter_depth": 0, + "slab_perimeter_insulation_r": 0, + "slab_thickness": "4.0", + "slab_under_insulation_r": 0, + "slab_under_width": 0, + "solar_thermal_collector_area": 40.0, + "solar_thermal_collector_azimuth": 180, + "solar_thermal_collector_loop_type": "liquid direct", + "solar_thermal_collector_rated_optical_efficiency": 0.5, + "solar_thermal_collector_rated_thermal_losses": 0.2799, + "solar_thermal_collector_tilt": "20", + "solar_thermal_collector_type": "evacuated tube", + "solar_thermal_solar_fraction": 0, + "solar_thermal_storage_volume": "auto", + "solar_thermal_system_type": "none", + "wall_assembly_r": 23, + "wall_color": "medium", + "wall_siding_type": "wood siding", + "wall_type": "WoodStud", + "water_fixtures_shower_low_flow": true, + "water_fixtures_sink_low_flow": false, + "water_fixtures_usage_multiplier": 1.0, + "water_heater_efficiency": 0.95, + "water_heater_efficiency_type": "EnergyFactor", + "water_heater_fuel_type": "electricity", + "water_heater_jacket_rvalue": 0, + "water_heater_location": "living space", + "water_heater_num_units_served": 1, + "water_heater_recovery_efficiency": "0.76", + "water_heater_setpoint_temperature": "125", + "water_heater_standby_loss": 0, + "water_heater_tank_volume": "40", + "water_heater_type": "storage water heater", + "weather_station_epw_filepath": "USA_CO_Denver.Intl.AP.725650_TMY3.epw", + "whole_house_fan_flow_rate": 4500, + "whole_house_fan_power": 300, + "whole_house_fan_present": false, + "window_area_back": 0, + "window_area_front": 0, + "window_area_left": 0, + "window_area_right": 0, + "window_aspect_ratio": 1.333, + "window_back_wwr": 0.18, + "window_fraction_operable": 0.67, + "window_front_wwr": 0.18, + "window_interior_shading_summer": 0.7, + "window_interior_shading_winter": 0.85, + "window_left_wwr": 0.18, + "window_right_wwr": 0.18, + "window_shgc": 0.45, + "window_ufactor": 0.33 + }, + "measure_dir_name": "BuildResidentialHPXML" + } + ] +} \ No newline at end of file diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-vented-crawlspace-middle-top.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-vented-crawlspace-middle-top.osw new file mode 100644 index 00000000..54236095 --- /dev/null +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-vented-crawlspace-middle-top.osw @@ -0,0 +1,341 @@ +{ + "measure_paths": [ + "../.." + ], + "steps": [ + { + "arguments": { + "air_leakage_house_pressure": 50, + "air_leakage_shielding_of_home": "auto", + "air_leakage_units": "ACH", + "air_leakage_value": 3, + "bathroom_fans_quantity": "0", + "ceiling_assembly_r": 39.3, + "ceiling_fan_cooling_setpoint_temp_offset": 0, + "ceiling_fan_efficiency": "auto", + "ceiling_fan_present": false, + "ceiling_fan_quantity": "auto", + "clothes_dryer_efficiency": "3.73", + "clothes_dryer_efficiency_type": "CombinedEnergyFactor", + "clothes_dryer_fuel_type": "electricity", + "clothes_dryer_location": "living space", + "clothes_dryer_usage_multiplier": 1.0, + "clothes_dryer_vented_flow_rate": "150.0", + "clothes_washer_capacity": "3.2", + "clothes_washer_efficiency": "1.21", + "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", + "clothes_washer_label_annual_gas_cost": "27.0", + "clothes_washer_label_electric_rate": "0.12", + "clothes_washer_label_gas_rate": "1.09", + "clothes_washer_label_usage": "6.0", + "clothes_washer_location": "living space", + "clothes_washer_rated_annual_kwh": "380.0", + "clothes_washer_usage_multiplier": 1.0, + "cooking_range_oven_fuel_type": "electricity", + "cooking_range_oven_is_convection": false, + "cooking_range_oven_is_induction": false, + "cooking_range_oven_location": "living space", + "cooking_range_oven_usage_multiplier": 1.0, + "cooling_system_cooling_capacity": "48000.0", + "cooling_system_cooling_compressor_type": "single stage", + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", + "cooling_system_cooling_sensible_heat_fraction": 0.73, + "cooling_system_fraction_cool_load_served": 1, + "cooling_system_is_ducted": false, + "cooling_system_type": "central air conditioner", + "dehumidifier_capacity": 40, + "dehumidifier_efficiency": 1.8, + "dehumidifier_efficiency_type": "EnergyFactor", + "dehumidifier_fraction_dehumidification_load_served": 1, + "dehumidifier_rh_setpoint": 0.5, + "dehumidifier_type": "none", + "dhw_distribution_pipe_r": "0.0", + "dhw_distribution_recirc_branch_piping_length": "50", + "dhw_distribution_recirc_control_type": "no control", + "dhw_distribution_recirc_piping_length": "50", + "dhw_distribution_recirc_pump_power": "50", + "dhw_distribution_standard_piping_length": "50", + "dhw_distribution_system_type": "Standard", + "dishwasher_efficiency": "307", + "dishwasher_efficiency_type": "RatedAnnualkWh", + "dishwasher_label_annual_gas_cost": "22.32", + "dishwasher_label_electric_rate": "0.12", + "dishwasher_label_gas_rate": "1.09", + "dishwasher_label_usage": "4.0", + "dishwasher_location": "living space", + "dishwasher_place_setting_capacity": "12", + "dishwasher_usage_multiplier": 1.0, + "door_area": 20.0, + "door_rvalue": 4.4, + "ducts_number_of_return_registers": "1", + "ducts_return_insulation_r": 0.0, + "ducts_return_leakage_units": "CFM25", + "ducts_return_leakage_value": 0.0, + "ducts_return_location": "living space", + "ducts_return_surface_area": "50.0", + "ducts_supply_insulation_r": 0.0, + "ducts_supply_leakage_units": "CFM25", + "ducts_supply_leakage_value": 0.0, + "ducts_supply_location": "living space", + "ducts_supply_surface_area": "150.0", + "dwhr_efficiency": 0.55, + "dwhr_equal_flow": true, + "dwhr_facilities_connected": "none", + "extra_refrigerator_location": "none", + "extra_refrigerator_rated_annual_kwh": "auto", + "extra_refrigerator_usage_multiplier": 1.0, + "floor_assembly_r": 18.7, + "foundation_wall_insulation_distance_to_bottom": 4.0, + "foundation_wall_insulation_distance_to_top": 0.0, + "foundation_wall_insulation_r": 8.9, + "foundation_wall_thickness": "8.0", + "freezer_location": "none", + "freezer_rated_annual_kwh": "auto", + "freezer_usage_multiplier": 1.0, + "fuel_loads_fireplace_annual_therm": "auto", + "fuel_loads_fireplace_frac_latent": "auto", + "fuel_loads_fireplace_frac_sensible": "auto", + "fuel_loads_fireplace_fuel_type": "natural gas", + "fuel_loads_fireplace_present": false, + "fuel_loads_fireplace_usage_multiplier": 0.0, + "fuel_loads_grill_annual_therm": "auto", + "fuel_loads_grill_fuel_type": "natural gas", + "fuel_loads_grill_present": false, + "fuel_loads_grill_usage_multiplier": 0.0, + "fuel_loads_lighting_annual_therm": "auto", + "fuel_loads_lighting_fuel_type": "natural gas", + "fuel_loads_lighting_present": false, + "fuel_loads_lighting_usage_multiplier": 0.0, + "geometry_aspect_ratio": 1.5, + "geometry_attic_type": "UnventedAttic", + "geometry_balcony_depth": 0.0, + "geometry_building_num_bedrooms": 150, + "geometry_building_num_units": 50, + "geometry_cfa": 900.0, + "geometry_corridor_position": "None", + "geometry_corridor_width": 10.0, + "geometry_eaves_depth": 0, + "geometry_foundation_height": 4.0, + "geometry_foundation_height_above_grade": 1.0, + "geometry_foundation_type": "VentedCrawlspace", + "geometry_garage_depth": 20.0, + "geometry_garage_position": "Right", + "geometry_garage_protrusion": 0.0, + "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", + "geometry_horizontal_location": "Middle", + "geometry_inset_depth": 0.0, + "geometry_inset_position": "Right", + "geometry_inset_width": 0.0, + "geometry_level": "Top", + "geometry_num_bathrooms": "2", + "geometry_num_bedrooms": 3, + "geometry_num_floors_above_grade": 5, + "geometry_num_occupants": "3", + "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, + "geometry_roof_pitch": "6:12", + "geometry_roof_type": "gable", + "geometry_unit_type": "apartment unit", + "geometry_wall_height": 8.0, + "heat_pump_backup_fuel": "none", + "heat_pump_backup_heating_capacity": "34121.0", + "heat_pump_backup_heating_efficiency": 1, + "heat_pump_cooling_capacity": "48000.0", + "heat_pump_cooling_compressor_type": "single stage", + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", + "heat_pump_cooling_sensible_heat_fraction": 0.73, + "heat_pump_fraction_cool_load_served": 1, + "heat_pump_fraction_heat_load_served": 1, + "heat_pump_heating_capacity": "64000.0", + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", + "heat_pump_type": "none", + "heating_system_fraction_heat_load_served": 1, + "heating_system_fraction_heat_load_served_2": 0.25, + "heating_system_fuel": "natural gas", + "heating_system_fuel_2": "electricity", + "heating_system_heating_capacity": "64000.0", + "heating_system_heating_capacity_2": "auto", + "heating_system_heating_efficiency": 0.92, + "heating_system_heating_efficiency_2": 1.0, + "heating_system_type": "Furnace", + "heating_system_type_2": "none", + "holiday_lighting_daily_kwh": "auto", + "holiday_lighting_period_begin_day_of_month": "auto", + "holiday_lighting_period_begin_month": "auto", + "holiday_lighting_period_end_day_of_month": "auto", + "holiday_lighting_period_end_month": "auto", + "holiday_lighting_present": false, + "hot_tub_heater_annual_kwh": "auto", + "hot_tub_heater_annual_therm": "auto", + "hot_tub_heater_type": "electric resistance", + "hot_tub_heater_usage_multiplier": 1.0, + "hot_tub_present": false, + "hot_tub_pump_annual_kwh": "auto", + "hot_tub_pump_usage_multiplier": 1.0, + "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/extra-bldgtype-multifamily-vented-crawlspace-middle-top.xml", + "kitchen_fans_quantity": "0", + "lighting_fraction_cfl_exterior": 0.4, + "lighting_fraction_cfl_garage": 0.4, + "lighting_fraction_cfl_interior": 0.4, + "lighting_fraction_led_exterior": 0.25, + "lighting_fraction_led_garage": 0.25, + "lighting_fraction_led_interior": 0.25, + "lighting_fraction_lfl_exterior": 0.1, + "lighting_fraction_lfl_garage": 0.1, + "lighting_fraction_lfl_interior": 0.1, + "lighting_usage_multiplier_exterior": 1.0, + "lighting_usage_multiplier_garage": 1.0, + "lighting_usage_multiplier_interior": 1.0, + "mech_vent_fan_power": 30, + "mech_vent_fan_power_2": 30, + "mech_vent_fan_type": "none", + "mech_vent_fan_type_2": "none", + "mech_vent_flow_rate": 110, + "mech_vent_flow_rate_2": 110, + "mech_vent_hours_in_operation": 24, + "mech_vent_hours_in_operation_2": 24, + "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", + "mech_vent_sensible_recovery_efficiency": 0.72, + "mech_vent_sensible_recovery_efficiency_2": 0.72, + "mech_vent_total_recovery_efficiency": 0.48, + "mech_vent_total_recovery_efficiency_2": 0.48, + "neighbor_back_distance": 0, + "neighbor_back_height": "auto", + "neighbor_front_distance": 0, + "neighbor_front_height": "auto", + "neighbor_left_distance": 0, + "neighbor_left_height": "auto", + "neighbor_right_distance": 0, + "neighbor_right_height": "auto", + "overhangs_back_depth": 0, + "overhangs_back_distance_to_top_of_window": 0, + "overhangs_front_depth": 0, + "overhangs_front_distance_to_top_of_window": 0, + "overhangs_left_depth": 0, + "overhangs_left_distance_to_top_of_window": 0, + "overhangs_right_depth": 0, + "overhangs_right_distance_to_top_of_window": 0, + "plug_loads_other_annual_kwh": "819.0", + "plug_loads_other_frac_latent": "0.045", + "plug_loads_other_frac_sensible": "0.855", + "plug_loads_other_usage_multiplier": 1.0, + "plug_loads_television_annual_kwh": "620.0", + "plug_loads_television_usage_multiplier": 1.0, + "plug_loads_vehicle_annual_kwh": "auto", + "plug_loads_vehicle_present": false, + "plug_loads_vehicle_usage_multiplier": 0.0, + "plug_loads_well_pump_annual_kwh": "auto", + "plug_loads_well_pump_present": false, + "plug_loads_well_pump_usage_multiplier": 0.0, + "pool_heater_annual_kwh": "auto", + "pool_heater_annual_therm": "auto", + "pool_heater_type": "electric resistance", + "pool_heater_usage_multiplier": 1.0, + "pool_present": false, + "pool_pump_annual_kwh": "auto", + "pool_pump_usage_multiplier": 1.0, + "pv_system_array_azimuth_1": 180, + "pv_system_array_azimuth_2": 180, + "pv_system_array_tilt_1": "20", + "pv_system_array_tilt_2": "20", + "pv_system_inverter_efficiency_1": 0.96, + "pv_system_inverter_efficiency_2": 0.96, + "pv_system_location_1": "auto", + "pv_system_location_2": "auto", + "pv_system_max_power_output_1": 4000, + "pv_system_max_power_output_2": 4000, + "pv_system_module_type_1": "none", + "pv_system_module_type_2": "none", + "pv_system_num_units_served_1": 1, + "pv_system_num_units_served_2": 1, + "pv_system_system_losses_fraction_1": 0.14, + "pv_system_system_losses_fraction_2": 0.14, + "pv_system_tracking_1": "auto", + "pv_system_tracking_2": "auto", + "refrigerator_location": "living space", + "refrigerator_rated_annual_kwh": "650.0", + "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, + "roof_assembly_r": 2.3, + "roof_color": "medium", + "roof_material_type": "asphalt or fiberglass shingles", + "roof_radiant_barrier": false, + "roof_radiant_barrier_grade": "1", + "schedules_type": "default", + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", + "simulation_control_timestep": "60", + "site_type": "suburban", + "skylight_area_back": 0, + "skylight_area_front": 0, + "skylight_area_left": 0, + "skylight_area_right": 0, + "skylight_shgc": 0.45, + "skylight_ufactor": 0.33, + "slab_carpet_fraction": "0.0", + "slab_carpet_r": "0.0", + "slab_perimeter_depth": 0, + "slab_perimeter_insulation_r": 0, + "slab_thickness": "4.0", + "slab_under_insulation_r": 0, + "slab_under_width": 0, + "solar_thermal_collector_area": 40.0, + "solar_thermal_collector_azimuth": 180, + "solar_thermal_collector_loop_type": "liquid direct", + "solar_thermal_collector_rated_optical_efficiency": 0.5, + "solar_thermal_collector_rated_thermal_losses": 0.2799, + "solar_thermal_collector_tilt": "20", + "solar_thermal_collector_type": "evacuated tube", + "solar_thermal_solar_fraction": 0, + "solar_thermal_storage_volume": "auto", + "solar_thermal_system_type": "none", + "wall_assembly_r": 23, + "wall_color": "medium", + "wall_siding_type": "wood siding", + "wall_type": "WoodStud", + "water_fixtures_shower_low_flow": true, + "water_fixtures_sink_low_flow": false, + "water_fixtures_usage_multiplier": 1.0, + "water_heater_efficiency": 0.95, + "water_heater_efficiency_type": "EnergyFactor", + "water_heater_fuel_type": "electricity", + "water_heater_jacket_rvalue": 0, + "water_heater_location": "living space", + "water_heater_num_units_served": 1, + "water_heater_recovery_efficiency": "0.76", + "water_heater_setpoint_temperature": "125", + "water_heater_standby_loss": 0, + "water_heater_tank_volume": "40", + "water_heater_type": "storage water heater", + "weather_station_epw_filepath": "USA_CO_Denver.Intl.AP.725650_TMY3.epw", + "whole_house_fan_flow_rate": 4500, + "whole_house_fan_power": 300, + "whole_house_fan_present": false, + "window_area_back": 0, + "window_area_front": 0, + "window_area_left": 0, + "window_area_right": 0, + "window_aspect_ratio": 1.333, + "window_back_wwr": 0.18, + "window_fraction_operable": 0.67, + "window_front_wwr": 0.18, + "window_interior_shading_summer": 0.7, + "window_interior_shading_winter": 0.85, + "window_left_wwr": 0.18, + "window_right_wwr": 0.18, + "window_shgc": 0.45, + "window_ufactor": 0.33 + }, + "measure_dir_name": "BuildResidentialHPXML" + } + ] +} \ No newline at end of file diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-vented-crawlspace-right-bottom-double-loaded-interior.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-vented-crawlspace-right-bottom-double-loaded-interior.osw new file mode 100644 index 00000000..a71e43ca --- /dev/null +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-vented-crawlspace-right-bottom-double-loaded-interior.osw @@ -0,0 +1,341 @@ +{ + "measure_paths": [ + "../.." + ], + "steps": [ + { + "arguments": { + "air_leakage_house_pressure": 50, + "air_leakage_shielding_of_home": "auto", + "air_leakage_units": "ACH", + "air_leakage_value": 3, + "bathroom_fans_quantity": "0", + "ceiling_assembly_r": 39.3, + "ceiling_fan_cooling_setpoint_temp_offset": 0, + "ceiling_fan_efficiency": "auto", + "ceiling_fan_present": false, + "ceiling_fan_quantity": "auto", + "clothes_dryer_efficiency": "3.73", + "clothes_dryer_efficiency_type": "CombinedEnergyFactor", + "clothes_dryer_fuel_type": "electricity", + "clothes_dryer_location": "living space", + "clothes_dryer_usage_multiplier": 1.0, + "clothes_dryer_vented_flow_rate": "150.0", + "clothes_washer_capacity": "3.2", + "clothes_washer_efficiency": "1.21", + "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", + "clothes_washer_label_annual_gas_cost": "27.0", + "clothes_washer_label_electric_rate": "0.12", + "clothes_washer_label_gas_rate": "1.09", + "clothes_washer_label_usage": "6.0", + "clothes_washer_location": "living space", + "clothes_washer_rated_annual_kwh": "380.0", + "clothes_washer_usage_multiplier": 1.0, + "cooking_range_oven_fuel_type": "electricity", + "cooking_range_oven_is_convection": false, + "cooking_range_oven_is_induction": false, + "cooking_range_oven_location": "living space", + "cooking_range_oven_usage_multiplier": 1.0, + "cooling_system_cooling_capacity": "48000.0", + "cooling_system_cooling_compressor_type": "single stage", + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", + "cooling_system_cooling_sensible_heat_fraction": 0.73, + "cooling_system_fraction_cool_load_served": 1, + "cooling_system_is_ducted": false, + "cooling_system_type": "central air conditioner", + "dehumidifier_capacity": 40, + "dehumidifier_efficiency": 1.8, + "dehumidifier_efficiency_type": "EnergyFactor", + "dehumidifier_fraction_dehumidification_load_served": 1, + "dehumidifier_rh_setpoint": 0.5, + "dehumidifier_type": "none", + "dhw_distribution_pipe_r": "0.0", + "dhw_distribution_recirc_branch_piping_length": "50", + "dhw_distribution_recirc_control_type": "no control", + "dhw_distribution_recirc_piping_length": "50", + "dhw_distribution_recirc_pump_power": "50", + "dhw_distribution_standard_piping_length": "50", + "dhw_distribution_system_type": "Standard", + "dishwasher_efficiency": "307", + "dishwasher_efficiency_type": "RatedAnnualkWh", + "dishwasher_label_annual_gas_cost": "22.32", + "dishwasher_label_electric_rate": "0.12", + "dishwasher_label_gas_rate": "1.09", + "dishwasher_label_usage": "4.0", + "dishwasher_location": "living space", + "dishwasher_place_setting_capacity": "12", + "dishwasher_usage_multiplier": 1.0, + "door_area": 20.0, + "door_rvalue": 4.4, + "ducts_number_of_return_registers": "1", + "ducts_return_insulation_r": 0.0, + "ducts_return_leakage_units": "CFM25", + "ducts_return_leakage_value": 0.0, + "ducts_return_location": "living space", + "ducts_return_surface_area": "50.0", + "ducts_supply_insulation_r": 0.0, + "ducts_supply_leakage_units": "CFM25", + "ducts_supply_leakage_value": 0.0, + "ducts_supply_location": "living space", + "ducts_supply_surface_area": "150.0", + "dwhr_efficiency": 0.55, + "dwhr_equal_flow": true, + "dwhr_facilities_connected": "none", + "extra_refrigerator_location": "none", + "extra_refrigerator_rated_annual_kwh": "auto", + "extra_refrigerator_usage_multiplier": 1.0, + "floor_assembly_r": 18.7, + "foundation_wall_insulation_distance_to_bottom": 4.0, + "foundation_wall_insulation_distance_to_top": 0.0, + "foundation_wall_insulation_r": 8.9, + "foundation_wall_thickness": "8.0", + "freezer_location": "none", + "freezer_rated_annual_kwh": "auto", + "freezer_usage_multiplier": 1.0, + "fuel_loads_fireplace_annual_therm": "auto", + "fuel_loads_fireplace_frac_latent": "auto", + "fuel_loads_fireplace_frac_sensible": "auto", + "fuel_loads_fireplace_fuel_type": "natural gas", + "fuel_loads_fireplace_present": false, + "fuel_loads_fireplace_usage_multiplier": 0.0, + "fuel_loads_grill_annual_therm": "auto", + "fuel_loads_grill_fuel_type": "natural gas", + "fuel_loads_grill_present": false, + "fuel_loads_grill_usage_multiplier": 0.0, + "fuel_loads_lighting_annual_therm": "auto", + "fuel_loads_lighting_fuel_type": "natural gas", + "fuel_loads_lighting_present": false, + "fuel_loads_lighting_usage_multiplier": 0.0, + "geometry_aspect_ratio": 1.5, + "geometry_attic_type": "UnventedAttic", + "geometry_balcony_depth": 0.0, + "geometry_building_num_bedrooms": 150, + "geometry_building_num_units": 50, + "geometry_cfa": 900.0, + "geometry_corridor_position": "Double-Loaded Interior", + "geometry_corridor_width": 10.0, + "geometry_eaves_depth": 0, + "geometry_foundation_height": 4.0, + "geometry_foundation_height_above_grade": 1.0, + "geometry_foundation_type": "VentedCrawlspace", + "geometry_garage_depth": 20.0, + "geometry_garage_position": "Right", + "geometry_garage_protrusion": 0.0, + "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", + "geometry_horizontal_location": "Right", + "geometry_inset_depth": 0.0, + "geometry_inset_position": "Right", + "geometry_inset_width": 0.0, + "geometry_level": "Bottom", + "geometry_num_bathrooms": "2", + "geometry_num_bedrooms": 3, + "geometry_num_floors_above_grade": 5, + "geometry_num_occupants": "3", + "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, + "geometry_roof_pitch": "6:12", + "geometry_roof_type": "gable", + "geometry_unit_type": "apartment unit", + "geometry_wall_height": 8.0, + "heat_pump_backup_fuel": "none", + "heat_pump_backup_heating_capacity": "34121.0", + "heat_pump_backup_heating_efficiency": 1, + "heat_pump_cooling_capacity": "48000.0", + "heat_pump_cooling_compressor_type": "single stage", + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", + "heat_pump_cooling_sensible_heat_fraction": 0.73, + "heat_pump_fraction_cool_load_served": 1, + "heat_pump_fraction_heat_load_served": 1, + "heat_pump_heating_capacity": "64000.0", + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", + "heat_pump_type": "none", + "heating_system_fraction_heat_load_served": 1, + "heating_system_fraction_heat_load_served_2": 0.25, + "heating_system_fuel": "natural gas", + "heating_system_fuel_2": "electricity", + "heating_system_heating_capacity": "64000.0", + "heating_system_heating_capacity_2": "auto", + "heating_system_heating_efficiency": 0.92, + "heating_system_heating_efficiency_2": 1.0, + "heating_system_type": "Furnace", + "heating_system_type_2": "none", + "holiday_lighting_daily_kwh": "auto", + "holiday_lighting_period_begin_day_of_month": "auto", + "holiday_lighting_period_begin_month": "auto", + "holiday_lighting_period_end_day_of_month": "auto", + "holiday_lighting_period_end_month": "auto", + "holiday_lighting_present": false, + "hot_tub_heater_annual_kwh": "auto", + "hot_tub_heater_annual_therm": "auto", + "hot_tub_heater_type": "electric resistance", + "hot_tub_heater_usage_multiplier": 1.0, + "hot_tub_present": false, + "hot_tub_pump_annual_kwh": "auto", + "hot_tub_pump_usage_multiplier": 1.0, + "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/extra-bldgtype-multifamily-vented-crawlspace-right-bottom-double-loaded-interior.xml", + "kitchen_fans_quantity": "0", + "lighting_fraction_cfl_exterior": 0.4, + "lighting_fraction_cfl_garage": 0.4, + "lighting_fraction_cfl_interior": 0.4, + "lighting_fraction_led_exterior": 0.25, + "lighting_fraction_led_garage": 0.25, + "lighting_fraction_led_interior": 0.25, + "lighting_fraction_lfl_exterior": 0.1, + "lighting_fraction_lfl_garage": 0.1, + "lighting_fraction_lfl_interior": 0.1, + "lighting_usage_multiplier_exterior": 1.0, + "lighting_usage_multiplier_garage": 1.0, + "lighting_usage_multiplier_interior": 1.0, + "mech_vent_fan_power": 30, + "mech_vent_fan_power_2": 30, + "mech_vent_fan_type": "none", + "mech_vent_fan_type_2": "none", + "mech_vent_flow_rate": 110, + "mech_vent_flow_rate_2": 110, + "mech_vent_hours_in_operation": 24, + "mech_vent_hours_in_operation_2": 24, + "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", + "mech_vent_sensible_recovery_efficiency": 0.72, + "mech_vent_sensible_recovery_efficiency_2": 0.72, + "mech_vent_total_recovery_efficiency": 0.48, + "mech_vent_total_recovery_efficiency_2": 0.48, + "neighbor_back_distance": 0, + "neighbor_back_height": "auto", + "neighbor_front_distance": 0, + "neighbor_front_height": "auto", + "neighbor_left_distance": 0, + "neighbor_left_height": "auto", + "neighbor_right_distance": 0, + "neighbor_right_height": "auto", + "overhangs_back_depth": 0, + "overhangs_back_distance_to_top_of_window": 0, + "overhangs_front_depth": 0, + "overhangs_front_distance_to_top_of_window": 0, + "overhangs_left_depth": 0, + "overhangs_left_distance_to_top_of_window": 0, + "overhangs_right_depth": 0, + "overhangs_right_distance_to_top_of_window": 0, + "plug_loads_other_annual_kwh": "819.0", + "plug_loads_other_frac_latent": "0.045", + "plug_loads_other_frac_sensible": "0.855", + "plug_loads_other_usage_multiplier": 1.0, + "plug_loads_television_annual_kwh": "620.0", + "plug_loads_television_usage_multiplier": 1.0, + "plug_loads_vehicle_annual_kwh": "auto", + "plug_loads_vehicle_present": false, + "plug_loads_vehicle_usage_multiplier": 0.0, + "plug_loads_well_pump_annual_kwh": "auto", + "plug_loads_well_pump_present": false, + "plug_loads_well_pump_usage_multiplier": 0.0, + "pool_heater_annual_kwh": "auto", + "pool_heater_annual_therm": "auto", + "pool_heater_type": "electric resistance", + "pool_heater_usage_multiplier": 1.0, + "pool_present": false, + "pool_pump_annual_kwh": "auto", + "pool_pump_usage_multiplier": 1.0, + "pv_system_array_azimuth_1": 180, + "pv_system_array_azimuth_2": 180, + "pv_system_array_tilt_1": "20", + "pv_system_array_tilt_2": "20", + "pv_system_inverter_efficiency_1": 0.96, + "pv_system_inverter_efficiency_2": 0.96, + "pv_system_location_1": "auto", + "pv_system_location_2": "auto", + "pv_system_max_power_output_1": 4000, + "pv_system_max_power_output_2": 4000, + "pv_system_module_type_1": "none", + "pv_system_module_type_2": "none", + "pv_system_num_units_served_1": 1, + "pv_system_num_units_served_2": 1, + "pv_system_system_losses_fraction_1": 0.14, + "pv_system_system_losses_fraction_2": 0.14, + "pv_system_tracking_1": "auto", + "pv_system_tracking_2": "auto", + "refrigerator_location": "living space", + "refrigerator_rated_annual_kwh": "650.0", + "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, + "roof_assembly_r": 2.3, + "roof_color": "medium", + "roof_material_type": "asphalt or fiberglass shingles", + "roof_radiant_barrier": false, + "roof_radiant_barrier_grade": "1", + "schedules_type": "default", + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", + "simulation_control_timestep": "60", + "site_type": "suburban", + "skylight_area_back": 0, + "skylight_area_front": 0, + "skylight_area_left": 0, + "skylight_area_right": 0, + "skylight_shgc": 0.45, + "skylight_ufactor": 0.33, + "slab_carpet_fraction": "0.0", + "slab_carpet_r": "0.0", + "slab_perimeter_depth": 0, + "slab_perimeter_insulation_r": 0, + "slab_thickness": "4.0", + "slab_under_insulation_r": 0, + "slab_under_width": 0, + "solar_thermal_collector_area": 40.0, + "solar_thermal_collector_azimuth": 180, + "solar_thermal_collector_loop_type": "liquid direct", + "solar_thermal_collector_rated_optical_efficiency": 0.5, + "solar_thermal_collector_rated_thermal_losses": 0.2799, + "solar_thermal_collector_tilt": "20", + "solar_thermal_collector_type": "evacuated tube", + "solar_thermal_solar_fraction": 0, + "solar_thermal_storage_volume": "auto", + "solar_thermal_system_type": "none", + "wall_assembly_r": 23, + "wall_color": "medium", + "wall_siding_type": "wood siding", + "wall_type": "WoodStud", + "water_fixtures_shower_low_flow": true, + "water_fixtures_sink_low_flow": false, + "water_fixtures_usage_multiplier": 1.0, + "water_heater_efficiency": 0.95, + "water_heater_efficiency_type": "EnergyFactor", + "water_heater_fuel_type": "electricity", + "water_heater_jacket_rvalue": 0, + "water_heater_location": "living space", + "water_heater_num_units_served": 1, + "water_heater_recovery_efficiency": "0.76", + "water_heater_setpoint_temperature": "125", + "water_heater_standby_loss": 0, + "water_heater_tank_volume": "40", + "water_heater_type": "storage water heater", + "weather_station_epw_filepath": "USA_CO_Denver.Intl.AP.725650_TMY3.epw", + "whole_house_fan_flow_rate": 4500, + "whole_house_fan_power": 300, + "whole_house_fan_present": false, + "window_area_back": 0, + "window_area_front": 0, + "window_area_left": 0, + "window_area_right": 0, + "window_aspect_ratio": 1.333, + "window_back_wwr": 0.18, + "window_fraction_operable": 0.67, + "window_front_wwr": 0.18, + "window_interior_shading_summer": 0.7, + "window_interior_shading_winter": 0.85, + "window_left_wwr": 0.18, + "window_right_wwr": 0.18, + "window_shgc": 0.45, + "window_ufactor": 0.33 + }, + "measure_dir_name": "BuildResidentialHPXML" + } + ] +} \ No newline at end of file diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-vented-crawlspace-right-bottom.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-vented-crawlspace-right-bottom.osw new file mode 100644 index 00000000..c62f9e68 --- /dev/null +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-vented-crawlspace-right-bottom.osw @@ -0,0 +1,341 @@ +{ + "measure_paths": [ + "../.." + ], + "steps": [ + { + "arguments": { + "air_leakage_house_pressure": 50, + "air_leakage_shielding_of_home": "auto", + "air_leakage_units": "ACH", + "air_leakage_value": 3, + "bathroom_fans_quantity": "0", + "ceiling_assembly_r": 39.3, + "ceiling_fan_cooling_setpoint_temp_offset": 0, + "ceiling_fan_efficiency": "auto", + "ceiling_fan_present": false, + "ceiling_fan_quantity": "auto", + "clothes_dryer_efficiency": "3.73", + "clothes_dryer_efficiency_type": "CombinedEnergyFactor", + "clothes_dryer_fuel_type": "electricity", + "clothes_dryer_location": "living space", + "clothes_dryer_usage_multiplier": 1.0, + "clothes_dryer_vented_flow_rate": "150.0", + "clothes_washer_capacity": "3.2", + "clothes_washer_efficiency": "1.21", + "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", + "clothes_washer_label_annual_gas_cost": "27.0", + "clothes_washer_label_electric_rate": "0.12", + "clothes_washer_label_gas_rate": "1.09", + "clothes_washer_label_usage": "6.0", + "clothes_washer_location": "living space", + "clothes_washer_rated_annual_kwh": "380.0", + "clothes_washer_usage_multiplier": 1.0, + "cooking_range_oven_fuel_type": "electricity", + "cooking_range_oven_is_convection": false, + "cooking_range_oven_is_induction": false, + "cooking_range_oven_location": "living space", + "cooking_range_oven_usage_multiplier": 1.0, + "cooling_system_cooling_capacity": "48000.0", + "cooling_system_cooling_compressor_type": "single stage", + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", + "cooling_system_cooling_sensible_heat_fraction": 0.73, + "cooling_system_fraction_cool_load_served": 1, + "cooling_system_is_ducted": false, + "cooling_system_type": "central air conditioner", + "dehumidifier_capacity": 40, + "dehumidifier_efficiency": 1.8, + "dehumidifier_efficiency_type": "EnergyFactor", + "dehumidifier_fraction_dehumidification_load_served": 1, + "dehumidifier_rh_setpoint": 0.5, + "dehumidifier_type": "none", + "dhw_distribution_pipe_r": "0.0", + "dhw_distribution_recirc_branch_piping_length": "50", + "dhw_distribution_recirc_control_type": "no control", + "dhw_distribution_recirc_piping_length": "50", + "dhw_distribution_recirc_pump_power": "50", + "dhw_distribution_standard_piping_length": "50", + "dhw_distribution_system_type": "Standard", + "dishwasher_efficiency": "307", + "dishwasher_efficiency_type": "RatedAnnualkWh", + "dishwasher_label_annual_gas_cost": "22.32", + "dishwasher_label_electric_rate": "0.12", + "dishwasher_label_gas_rate": "1.09", + "dishwasher_label_usage": "4.0", + "dishwasher_location": "living space", + "dishwasher_place_setting_capacity": "12", + "dishwasher_usage_multiplier": 1.0, + "door_area": 20.0, + "door_rvalue": 4.4, + "ducts_number_of_return_registers": "1", + "ducts_return_insulation_r": 0.0, + "ducts_return_leakage_units": "CFM25", + "ducts_return_leakage_value": 0.0, + "ducts_return_location": "living space", + "ducts_return_surface_area": "50.0", + "ducts_supply_insulation_r": 0.0, + "ducts_supply_leakage_units": "CFM25", + "ducts_supply_leakage_value": 0.0, + "ducts_supply_location": "living space", + "ducts_supply_surface_area": "150.0", + "dwhr_efficiency": 0.55, + "dwhr_equal_flow": true, + "dwhr_facilities_connected": "none", + "extra_refrigerator_location": "none", + "extra_refrigerator_rated_annual_kwh": "auto", + "extra_refrigerator_usage_multiplier": 1.0, + "floor_assembly_r": 18.7, + "foundation_wall_insulation_distance_to_bottom": 4.0, + "foundation_wall_insulation_distance_to_top": 0.0, + "foundation_wall_insulation_r": 8.9, + "foundation_wall_thickness": "8.0", + "freezer_location": "none", + "freezer_rated_annual_kwh": "auto", + "freezer_usage_multiplier": 1.0, + "fuel_loads_fireplace_annual_therm": "auto", + "fuel_loads_fireplace_frac_latent": "auto", + "fuel_loads_fireplace_frac_sensible": "auto", + "fuel_loads_fireplace_fuel_type": "natural gas", + "fuel_loads_fireplace_present": false, + "fuel_loads_fireplace_usage_multiplier": 0.0, + "fuel_loads_grill_annual_therm": "auto", + "fuel_loads_grill_fuel_type": "natural gas", + "fuel_loads_grill_present": false, + "fuel_loads_grill_usage_multiplier": 0.0, + "fuel_loads_lighting_annual_therm": "auto", + "fuel_loads_lighting_fuel_type": "natural gas", + "fuel_loads_lighting_present": false, + "fuel_loads_lighting_usage_multiplier": 0.0, + "geometry_aspect_ratio": 1.5, + "geometry_attic_type": "UnventedAttic", + "geometry_balcony_depth": 0.0, + "geometry_building_num_bedrooms": 150, + "geometry_building_num_units": 50, + "geometry_cfa": 900.0, + "geometry_corridor_position": "None", + "geometry_corridor_width": 10.0, + "geometry_eaves_depth": 0, + "geometry_foundation_height": 4.0, + "geometry_foundation_height_above_grade": 1.0, + "geometry_foundation_type": "VentedCrawlspace", + "geometry_garage_depth": 20.0, + "geometry_garage_position": "Right", + "geometry_garage_protrusion": 0.0, + "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", + "geometry_horizontal_location": "Right", + "geometry_inset_depth": 0.0, + "geometry_inset_position": "Right", + "geometry_inset_width": 0.0, + "geometry_level": "Bottom", + "geometry_num_bathrooms": "2", + "geometry_num_bedrooms": 3, + "geometry_num_floors_above_grade": 5, + "geometry_num_occupants": "3", + "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, + "geometry_roof_pitch": "6:12", + "geometry_roof_type": "gable", + "geometry_unit_type": "apartment unit", + "geometry_wall_height": 8.0, + "heat_pump_backup_fuel": "none", + "heat_pump_backup_heating_capacity": "34121.0", + "heat_pump_backup_heating_efficiency": 1, + "heat_pump_cooling_capacity": "48000.0", + "heat_pump_cooling_compressor_type": "single stage", + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", + "heat_pump_cooling_sensible_heat_fraction": 0.73, + "heat_pump_fraction_cool_load_served": 1, + "heat_pump_fraction_heat_load_served": 1, + "heat_pump_heating_capacity": "64000.0", + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", + "heat_pump_type": "none", + "heating_system_fraction_heat_load_served": 1, + "heating_system_fraction_heat_load_served_2": 0.25, + "heating_system_fuel": "natural gas", + "heating_system_fuel_2": "electricity", + "heating_system_heating_capacity": "64000.0", + "heating_system_heating_capacity_2": "auto", + "heating_system_heating_efficiency": 0.92, + "heating_system_heating_efficiency_2": 1.0, + "heating_system_type": "Furnace", + "heating_system_type_2": "none", + "holiday_lighting_daily_kwh": "auto", + "holiday_lighting_period_begin_day_of_month": "auto", + "holiday_lighting_period_begin_month": "auto", + "holiday_lighting_period_end_day_of_month": "auto", + "holiday_lighting_period_end_month": "auto", + "holiday_lighting_present": false, + "hot_tub_heater_annual_kwh": "auto", + "hot_tub_heater_annual_therm": "auto", + "hot_tub_heater_type": "electric resistance", + "hot_tub_heater_usage_multiplier": 1.0, + "hot_tub_present": false, + "hot_tub_pump_annual_kwh": "auto", + "hot_tub_pump_usage_multiplier": 1.0, + "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/extra-bldgtype-multifamily-vented-crawlspace-right-bottom.xml", + "kitchen_fans_quantity": "0", + "lighting_fraction_cfl_exterior": 0.4, + "lighting_fraction_cfl_garage": 0.4, + "lighting_fraction_cfl_interior": 0.4, + "lighting_fraction_led_exterior": 0.25, + "lighting_fraction_led_garage": 0.25, + "lighting_fraction_led_interior": 0.25, + "lighting_fraction_lfl_exterior": 0.1, + "lighting_fraction_lfl_garage": 0.1, + "lighting_fraction_lfl_interior": 0.1, + "lighting_usage_multiplier_exterior": 1.0, + "lighting_usage_multiplier_garage": 1.0, + "lighting_usage_multiplier_interior": 1.0, + "mech_vent_fan_power": 30, + "mech_vent_fan_power_2": 30, + "mech_vent_fan_type": "none", + "mech_vent_fan_type_2": "none", + "mech_vent_flow_rate": 110, + "mech_vent_flow_rate_2": 110, + "mech_vent_hours_in_operation": 24, + "mech_vent_hours_in_operation_2": 24, + "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", + "mech_vent_sensible_recovery_efficiency": 0.72, + "mech_vent_sensible_recovery_efficiency_2": 0.72, + "mech_vent_total_recovery_efficiency": 0.48, + "mech_vent_total_recovery_efficiency_2": 0.48, + "neighbor_back_distance": 0, + "neighbor_back_height": "auto", + "neighbor_front_distance": 0, + "neighbor_front_height": "auto", + "neighbor_left_distance": 0, + "neighbor_left_height": "auto", + "neighbor_right_distance": 0, + "neighbor_right_height": "auto", + "overhangs_back_depth": 0, + "overhangs_back_distance_to_top_of_window": 0, + "overhangs_front_depth": 0, + "overhangs_front_distance_to_top_of_window": 0, + "overhangs_left_depth": 0, + "overhangs_left_distance_to_top_of_window": 0, + "overhangs_right_depth": 0, + "overhangs_right_distance_to_top_of_window": 0, + "plug_loads_other_annual_kwh": "819.0", + "plug_loads_other_frac_latent": "0.045", + "plug_loads_other_frac_sensible": "0.855", + "plug_loads_other_usage_multiplier": 1.0, + "plug_loads_television_annual_kwh": "620.0", + "plug_loads_television_usage_multiplier": 1.0, + "plug_loads_vehicle_annual_kwh": "auto", + "plug_loads_vehicle_present": false, + "plug_loads_vehicle_usage_multiplier": 0.0, + "plug_loads_well_pump_annual_kwh": "auto", + "plug_loads_well_pump_present": false, + "plug_loads_well_pump_usage_multiplier": 0.0, + "pool_heater_annual_kwh": "auto", + "pool_heater_annual_therm": "auto", + "pool_heater_type": "electric resistance", + "pool_heater_usage_multiplier": 1.0, + "pool_present": false, + "pool_pump_annual_kwh": "auto", + "pool_pump_usage_multiplier": 1.0, + "pv_system_array_azimuth_1": 180, + "pv_system_array_azimuth_2": 180, + "pv_system_array_tilt_1": "20", + "pv_system_array_tilt_2": "20", + "pv_system_inverter_efficiency_1": 0.96, + "pv_system_inverter_efficiency_2": 0.96, + "pv_system_location_1": "auto", + "pv_system_location_2": "auto", + "pv_system_max_power_output_1": 4000, + "pv_system_max_power_output_2": 4000, + "pv_system_module_type_1": "none", + "pv_system_module_type_2": "none", + "pv_system_num_units_served_1": 1, + "pv_system_num_units_served_2": 1, + "pv_system_system_losses_fraction_1": 0.14, + "pv_system_system_losses_fraction_2": 0.14, + "pv_system_tracking_1": "auto", + "pv_system_tracking_2": "auto", + "refrigerator_location": "living space", + "refrigerator_rated_annual_kwh": "650.0", + "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, + "roof_assembly_r": 2.3, + "roof_color": "medium", + "roof_material_type": "asphalt or fiberglass shingles", + "roof_radiant_barrier": false, + "roof_radiant_barrier_grade": "1", + "schedules_type": "default", + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", + "simulation_control_timestep": "60", + "site_type": "suburban", + "skylight_area_back": 0, + "skylight_area_front": 0, + "skylight_area_left": 0, + "skylight_area_right": 0, + "skylight_shgc": 0.45, + "skylight_ufactor": 0.33, + "slab_carpet_fraction": "0.0", + "slab_carpet_r": "0.0", + "slab_perimeter_depth": 0, + "slab_perimeter_insulation_r": 0, + "slab_thickness": "4.0", + "slab_under_insulation_r": 0, + "slab_under_width": 0, + "solar_thermal_collector_area": 40.0, + "solar_thermal_collector_azimuth": 180, + "solar_thermal_collector_loop_type": "liquid direct", + "solar_thermal_collector_rated_optical_efficiency": 0.5, + "solar_thermal_collector_rated_thermal_losses": 0.2799, + "solar_thermal_collector_tilt": "20", + "solar_thermal_collector_type": "evacuated tube", + "solar_thermal_solar_fraction": 0, + "solar_thermal_storage_volume": "auto", + "solar_thermal_system_type": "none", + "wall_assembly_r": 23, + "wall_color": "medium", + "wall_siding_type": "wood siding", + "wall_type": "WoodStud", + "water_fixtures_shower_low_flow": true, + "water_fixtures_sink_low_flow": false, + "water_fixtures_usage_multiplier": 1.0, + "water_heater_efficiency": 0.95, + "water_heater_efficiency_type": "EnergyFactor", + "water_heater_fuel_type": "electricity", + "water_heater_jacket_rvalue": 0, + "water_heater_location": "living space", + "water_heater_num_units_served": 1, + "water_heater_recovery_efficiency": "0.76", + "water_heater_setpoint_temperature": "125", + "water_heater_standby_loss": 0, + "water_heater_tank_volume": "40", + "water_heater_type": "storage water heater", + "weather_station_epw_filepath": "USA_CO_Denver.Intl.AP.725650_TMY3.epw", + "whole_house_fan_flow_rate": 4500, + "whole_house_fan_power": 300, + "whole_house_fan_present": false, + "window_area_back": 0, + "window_area_front": 0, + "window_area_left": 0, + "window_area_right": 0, + "window_aspect_ratio": 1.333, + "window_back_wwr": 0.18, + "window_fraction_operable": 0.67, + "window_front_wwr": 0.18, + "window_interior_shading_summer": 0.7, + "window_interior_shading_winter": 0.85, + "window_left_wwr": 0.18, + "window_right_wwr": 0.18, + "window_shgc": 0.45, + "window_ufactor": 0.33 + }, + "measure_dir_name": "BuildResidentialHPXML" + } + ] +} \ No newline at end of file diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-vented-crawlspace-right-middle-double-loaded-interior.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-vented-crawlspace-right-middle-double-loaded-interior.osw new file mode 100644 index 00000000..0df27959 --- /dev/null +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-vented-crawlspace-right-middle-double-loaded-interior.osw @@ -0,0 +1,341 @@ +{ + "measure_paths": [ + "../.." + ], + "steps": [ + { + "arguments": { + "air_leakage_house_pressure": 50, + "air_leakage_shielding_of_home": "auto", + "air_leakage_units": "ACH", + "air_leakage_value": 3, + "bathroom_fans_quantity": "0", + "ceiling_assembly_r": 39.3, + "ceiling_fan_cooling_setpoint_temp_offset": 0, + "ceiling_fan_efficiency": "auto", + "ceiling_fan_present": false, + "ceiling_fan_quantity": "auto", + "clothes_dryer_efficiency": "3.73", + "clothes_dryer_efficiency_type": "CombinedEnergyFactor", + "clothes_dryer_fuel_type": "electricity", + "clothes_dryer_location": "living space", + "clothes_dryer_usage_multiplier": 1.0, + "clothes_dryer_vented_flow_rate": "150.0", + "clothes_washer_capacity": "3.2", + "clothes_washer_efficiency": "1.21", + "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", + "clothes_washer_label_annual_gas_cost": "27.0", + "clothes_washer_label_electric_rate": "0.12", + "clothes_washer_label_gas_rate": "1.09", + "clothes_washer_label_usage": "6.0", + "clothes_washer_location": "living space", + "clothes_washer_rated_annual_kwh": "380.0", + "clothes_washer_usage_multiplier": 1.0, + "cooking_range_oven_fuel_type": "electricity", + "cooking_range_oven_is_convection": false, + "cooking_range_oven_is_induction": false, + "cooking_range_oven_location": "living space", + "cooking_range_oven_usage_multiplier": 1.0, + "cooling_system_cooling_capacity": "48000.0", + "cooling_system_cooling_compressor_type": "single stage", + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", + "cooling_system_cooling_sensible_heat_fraction": 0.73, + "cooling_system_fraction_cool_load_served": 1, + "cooling_system_is_ducted": false, + "cooling_system_type": "central air conditioner", + "dehumidifier_capacity": 40, + "dehumidifier_efficiency": 1.8, + "dehumidifier_efficiency_type": "EnergyFactor", + "dehumidifier_fraction_dehumidification_load_served": 1, + "dehumidifier_rh_setpoint": 0.5, + "dehumidifier_type": "none", + "dhw_distribution_pipe_r": "0.0", + "dhw_distribution_recirc_branch_piping_length": "50", + "dhw_distribution_recirc_control_type": "no control", + "dhw_distribution_recirc_piping_length": "50", + "dhw_distribution_recirc_pump_power": "50", + "dhw_distribution_standard_piping_length": "50", + "dhw_distribution_system_type": "Standard", + "dishwasher_efficiency": "307", + "dishwasher_efficiency_type": "RatedAnnualkWh", + "dishwasher_label_annual_gas_cost": "22.32", + "dishwasher_label_electric_rate": "0.12", + "dishwasher_label_gas_rate": "1.09", + "dishwasher_label_usage": "4.0", + "dishwasher_location": "living space", + "dishwasher_place_setting_capacity": "12", + "dishwasher_usage_multiplier": 1.0, + "door_area": 20.0, + "door_rvalue": 4.4, + "ducts_number_of_return_registers": "1", + "ducts_return_insulation_r": 0.0, + "ducts_return_leakage_units": "CFM25", + "ducts_return_leakage_value": 0.0, + "ducts_return_location": "living space", + "ducts_return_surface_area": "50.0", + "ducts_supply_insulation_r": 0.0, + "ducts_supply_leakage_units": "CFM25", + "ducts_supply_leakage_value": 0.0, + "ducts_supply_location": "living space", + "ducts_supply_surface_area": "150.0", + "dwhr_efficiency": 0.55, + "dwhr_equal_flow": true, + "dwhr_facilities_connected": "none", + "extra_refrigerator_location": "none", + "extra_refrigerator_rated_annual_kwh": "auto", + "extra_refrigerator_usage_multiplier": 1.0, + "floor_assembly_r": 18.7, + "foundation_wall_insulation_distance_to_bottom": 4.0, + "foundation_wall_insulation_distance_to_top": 0.0, + "foundation_wall_insulation_r": 8.9, + "foundation_wall_thickness": "8.0", + "freezer_location": "none", + "freezer_rated_annual_kwh": "auto", + "freezer_usage_multiplier": 1.0, + "fuel_loads_fireplace_annual_therm": "auto", + "fuel_loads_fireplace_frac_latent": "auto", + "fuel_loads_fireplace_frac_sensible": "auto", + "fuel_loads_fireplace_fuel_type": "natural gas", + "fuel_loads_fireplace_present": false, + "fuel_loads_fireplace_usage_multiplier": 0.0, + "fuel_loads_grill_annual_therm": "auto", + "fuel_loads_grill_fuel_type": "natural gas", + "fuel_loads_grill_present": false, + "fuel_loads_grill_usage_multiplier": 0.0, + "fuel_loads_lighting_annual_therm": "auto", + "fuel_loads_lighting_fuel_type": "natural gas", + "fuel_loads_lighting_present": false, + "fuel_loads_lighting_usage_multiplier": 0.0, + "geometry_aspect_ratio": 1.5, + "geometry_attic_type": "UnventedAttic", + "geometry_balcony_depth": 0.0, + "geometry_building_num_bedrooms": 150, + "geometry_building_num_units": 50, + "geometry_cfa": 900.0, + "geometry_corridor_position": "Double-Loaded Interior", + "geometry_corridor_width": 10.0, + "geometry_eaves_depth": 0, + "geometry_foundation_height": 4.0, + "geometry_foundation_height_above_grade": 1.0, + "geometry_foundation_type": "VentedCrawlspace", + "geometry_garage_depth": 20.0, + "geometry_garage_position": "Right", + "geometry_garage_protrusion": 0.0, + "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", + "geometry_horizontal_location": "Right", + "geometry_inset_depth": 0.0, + "geometry_inset_position": "Right", + "geometry_inset_width": 0.0, + "geometry_level": "Middle", + "geometry_num_bathrooms": "2", + "geometry_num_bedrooms": 3, + "geometry_num_floors_above_grade": 5, + "geometry_num_occupants": "3", + "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, + "geometry_roof_pitch": "6:12", + "geometry_roof_type": "gable", + "geometry_unit_type": "apartment unit", + "geometry_wall_height": 8.0, + "heat_pump_backup_fuel": "none", + "heat_pump_backup_heating_capacity": "34121.0", + "heat_pump_backup_heating_efficiency": 1, + "heat_pump_cooling_capacity": "48000.0", + "heat_pump_cooling_compressor_type": "single stage", + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", + "heat_pump_cooling_sensible_heat_fraction": 0.73, + "heat_pump_fraction_cool_load_served": 1, + "heat_pump_fraction_heat_load_served": 1, + "heat_pump_heating_capacity": "64000.0", + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", + "heat_pump_type": "none", + "heating_system_fraction_heat_load_served": 1, + "heating_system_fraction_heat_load_served_2": 0.25, + "heating_system_fuel": "natural gas", + "heating_system_fuel_2": "electricity", + "heating_system_heating_capacity": "64000.0", + "heating_system_heating_capacity_2": "auto", + "heating_system_heating_efficiency": 0.92, + "heating_system_heating_efficiency_2": 1.0, + "heating_system_type": "Furnace", + "heating_system_type_2": "none", + "holiday_lighting_daily_kwh": "auto", + "holiday_lighting_period_begin_day_of_month": "auto", + "holiday_lighting_period_begin_month": "auto", + "holiday_lighting_period_end_day_of_month": "auto", + "holiday_lighting_period_end_month": "auto", + "holiday_lighting_present": false, + "hot_tub_heater_annual_kwh": "auto", + "hot_tub_heater_annual_therm": "auto", + "hot_tub_heater_type": "electric resistance", + "hot_tub_heater_usage_multiplier": 1.0, + "hot_tub_present": false, + "hot_tub_pump_annual_kwh": "auto", + "hot_tub_pump_usage_multiplier": 1.0, + "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/extra-bldgtype-multifamily-vented-crawlspace-right-middle-double-loaded-interior.xml", + "kitchen_fans_quantity": "0", + "lighting_fraction_cfl_exterior": 0.4, + "lighting_fraction_cfl_garage": 0.4, + "lighting_fraction_cfl_interior": 0.4, + "lighting_fraction_led_exterior": 0.25, + "lighting_fraction_led_garage": 0.25, + "lighting_fraction_led_interior": 0.25, + "lighting_fraction_lfl_exterior": 0.1, + "lighting_fraction_lfl_garage": 0.1, + "lighting_fraction_lfl_interior": 0.1, + "lighting_usage_multiplier_exterior": 1.0, + "lighting_usage_multiplier_garage": 1.0, + "lighting_usage_multiplier_interior": 1.0, + "mech_vent_fan_power": 30, + "mech_vent_fan_power_2": 30, + "mech_vent_fan_type": "none", + "mech_vent_fan_type_2": "none", + "mech_vent_flow_rate": 110, + "mech_vent_flow_rate_2": 110, + "mech_vent_hours_in_operation": 24, + "mech_vent_hours_in_operation_2": 24, + "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", + "mech_vent_sensible_recovery_efficiency": 0.72, + "mech_vent_sensible_recovery_efficiency_2": 0.72, + "mech_vent_total_recovery_efficiency": 0.48, + "mech_vent_total_recovery_efficiency_2": 0.48, + "neighbor_back_distance": 0, + "neighbor_back_height": "auto", + "neighbor_front_distance": 0, + "neighbor_front_height": "auto", + "neighbor_left_distance": 0, + "neighbor_left_height": "auto", + "neighbor_right_distance": 0, + "neighbor_right_height": "auto", + "overhangs_back_depth": 0, + "overhangs_back_distance_to_top_of_window": 0, + "overhangs_front_depth": 0, + "overhangs_front_distance_to_top_of_window": 0, + "overhangs_left_depth": 0, + "overhangs_left_distance_to_top_of_window": 0, + "overhangs_right_depth": 0, + "overhangs_right_distance_to_top_of_window": 0, + "plug_loads_other_annual_kwh": "819.0", + "plug_loads_other_frac_latent": "0.045", + "plug_loads_other_frac_sensible": "0.855", + "plug_loads_other_usage_multiplier": 1.0, + "plug_loads_television_annual_kwh": "620.0", + "plug_loads_television_usage_multiplier": 1.0, + "plug_loads_vehicle_annual_kwh": "auto", + "plug_loads_vehicle_present": false, + "plug_loads_vehicle_usage_multiplier": 0.0, + "plug_loads_well_pump_annual_kwh": "auto", + "plug_loads_well_pump_present": false, + "plug_loads_well_pump_usage_multiplier": 0.0, + "pool_heater_annual_kwh": "auto", + "pool_heater_annual_therm": "auto", + "pool_heater_type": "electric resistance", + "pool_heater_usage_multiplier": 1.0, + "pool_present": false, + "pool_pump_annual_kwh": "auto", + "pool_pump_usage_multiplier": 1.0, + "pv_system_array_azimuth_1": 180, + "pv_system_array_azimuth_2": 180, + "pv_system_array_tilt_1": "20", + "pv_system_array_tilt_2": "20", + "pv_system_inverter_efficiency_1": 0.96, + "pv_system_inverter_efficiency_2": 0.96, + "pv_system_location_1": "auto", + "pv_system_location_2": "auto", + "pv_system_max_power_output_1": 4000, + "pv_system_max_power_output_2": 4000, + "pv_system_module_type_1": "none", + "pv_system_module_type_2": "none", + "pv_system_num_units_served_1": 1, + "pv_system_num_units_served_2": 1, + "pv_system_system_losses_fraction_1": 0.14, + "pv_system_system_losses_fraction_2": 0.14, + "pv_system_tracking_1": "auto", + "pv_system_tracking_2": "auto", + "refrigerator_location": "living space", + "refrigerator_rated_annual_kwh": "650.0", + "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, + "roof_assembly_r": 2.3, + "roof_color": "medium", + "roof_material_type": "asphalt or fiberglass shingles", + "roof_radiant_barrier": false, + "roof_radiant_barrier_grade": "1", + "schedules_type": "default", + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", + "simulation_control_timestep": "60", + "site_type": "suburban", + "skylight_area_back": 0, + "skylight_area_front": 0, + "skylight_area_left": 0, + "skylight_area_right": 0, + "skylight_shgc": 0.45, + "skylight_ufactor": 0.33, + "slab_carpet_fraction": "0.0", + "slab_carpet_r": "0.0", + "slab_perimeter_depth": 0, + "slab_perimeter_insulation_r": 0, + "slab_thickness": "4.0", + "slab_under_insulation_r": 0, + "slab_under_width": 0, + "solar_thermal_collector_area": 40.0, + "solar_thermal_collector_azimuth": 180, + "solar_thermal_collector_loop_type": "liquid direct", + "solar_thermal_collector_rated_optical_efficiency": 0.5, + "solar_thermal_collector_rated_thermal_losses": 0.2799, + "solar_thermal_collector_tilt": "20", + "solar_thermal_collector_type": "evacuated tube", + "solar_thermal_solar_fraction": 0, + "solar_thermal_storage_volume": "auto", + "solar_thermal_system_type": "none", + "wall_assembly_r": 23, + "wall_color": "medium", + "wall_siding_type": "wood siding", + "wall_type": "WoodStud", + "water_fixtures_shower_low_flow": true, + "water_fixtures_sink_low_flow": false, + "water_fixtures_usage_multiplier": 1.0, + "water_heater_efficiency": 0.95, + "water_heater_efficiency_type": "EnergyFactor", + "water_heater_fuel_type": "electricity", + "water_heater_jacket_rvalue": 0, + "water_heater_location": "living space", + "water_heater_num_units_served": 1, + "water_heater_recovery_efficiency": "0.76", + "water_heater_setpoint_temperature": "125", + "water_heater_standby_loss": 0, + "water_heater_tank_volume": "40", + "water_heater_type": "storage water heater", + "weather_station_epw_filepath": "USA_CO_Denver.Intl.AP.725650_TMY3.epw", + "whole_house_fan_flow_rate": 4500, + "whole_house_fan_power": 300, + "whole_house_fan_present": false, + "window_area_back": 0, + "window_area_front": 0, + "window_area_left": 0, + "window_area_right": 0, + "window_aspect_ratio": 1.333, + "window_back_wwr": 0.18, + "window_fraction_operable": 0.67, + "window_front_wwr": 0.18, + "window_interior_shading_summer": 0.7, + "window_interior_shading_winter": 0.85, + "window_left_wwr": 0.18, + "window_right_wwr": 0.18, + "window_shgc": 0.45, + "window_ufactor": 0.33 + }, + "measure_dir_name": "BuildResidentialHPXML" + } + ] +} \ No newline at end of file diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-vented-crawlspace-right-middle.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-vented-crawlspace-right-middle.osw new file mode 100644 index 00000000..27c67a88 --- /dev/null +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-vented-crawlspace-right-middle.osw @@ -0,0 +1,341 @@ +{ + "measure_paths": [ + "../.." + ], + "steps": [ + { + "arguments": { + "air_leakage_house_pressure": 50, + "air_leakage_shielding_of_home": "auto", + "air_leakage_units": "ACH", + "air_leakage_value": 3, + "bathroom_fans_quantity": "0", + "ceiling_assembly_r": 39.3, + "ceiling_fan_cooling_setpoint_temp_offset": 0, + "ceiling_fan_efficiency": "auto", + "ceiling_fan_present": false, + "ceiling_fan_quantity": "auto", + "clothes_dryer_efficiency": "3.73", + "clothes_dryer_efficiency_type": "CombinedEnergyFactor", + "clothes_dryer_fuel_type": "electricity", + "clothes_dryer_location": "living space", + "clothes_dryer_usage_multiplier": 1.0, + "clothes_dryer_vented_flow_rate": "150.0", + "clothes_washer_capacity": "3.2", + "clothes_washer_efficiency": "1.21", + "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", + "clothes_washer_label_annual_gas_cost": "27.0", + "clothes_washer_label_electric_rate": "0.12", + "clothes_washer_label_gas_rate": "1.09", + "clothes_washer_label_usage": "6.0", + "clothes_washer_location": "living space", + "clothes_washer_rated_annual_kwh": "380.0", + "clothes_washer_usage_multiplier": 1.0, + "cooking_range_oven_fuel_type": "electricity", + "cooking_range_oven_is_convection": false, + "cooking_range_oven_is_induction": false, + "cooking_range_oven_location": "living space", + "cooking_range_oven_usage_multiplier": 1.0, + "cooling_system_cooling_capacity": "48000.0", + "cooling_system_cooling_compressor_type": "single stage", + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", + "cooling_system_cooling_sensible_heat_fraction": 0.73, + "cooling_system_fraction_cool_load_served": 1, + "cooling_system_is_ducted": false, + "cooling_system_type": "central air conditioner", + "dehumidifier_capacity": 40, + "dehumidifier_efficiency": 1.8, + "dehumidifier_efficiency_type": "EnergyFactor", + "dehumidifier_fraction_dehumidification_load_served": 1, + "dehumidifier_rh_setpoint": 0.5, + "dehumidifier_type": "none", + "dhw_distribution_pipe_r": "0.0", + "dhw_distribution_recirc_branch_piping_length": "50", + "dhw_distribution_recirc_control_type": "no control", + "dhw_distribution_recirc_piping_length": "50", + "dhw_distribution_recirc_pump_power": "50", + "dhw_distribution_standard_piping_length": "50", + "dhw_distribution_system_type": "Standard", + "dishwasher_efficiency": "307", + "dishwasher_efficiency_type": "RatedAnnualkWh", + "dishwasher_label_annual_gas_cost": "22.32", + "dishwasher_label_electric_rate": "0.12", + "dishwasher_label_gas_rate": "1.09", + "dishwasher_label_usage": "4.0", + "dishwasher_location": "living space", + "dishwasher_place_setting_capacity": "12", + "dishwasher_usage_multiplier": 1.0, + "door_area": 20.0, + "door_rvalue": 4.4, + "ducts_number_of_return_registers": "1", + "ducts_return_insulation_r": 0.0, + "ducts_return_leakage_units": "CFM25", + "ducts_return_leakage_value": 0.0, + "ducts_return_location": "living space", + "ducts_return_surface_area": "50.0", + "ducts_supply_insulation_r": 0.0, + "ducts_supply_leakage_units": "CFM25", + "ducts_supply_leakage_value": 0.0, + "ducts_supply_location": "living space", + "ducts_supply_surface_area": "150.0", + "dwhr_efficiency": 0.55, + "dwhr_equal_flow": true, + "dwhr_facilities_connected": "none", + "extra_refrigerator_location": "none", + "extra_refrigerator_rated_annual_kwh": "auto", + "extra_refrigerator_usage_multiplier": 1.0, + "floor_assembly_r": 18.7, + "foundation_wall_insulation_distance_to_bottom": 4.0, + "foundation_wall_insulation_distance_to_top": 0.0, + "foundation_wall_insulation_r": 8.9, + "foundation_wall_thickness": "8.0", + "freezer_location": "none", + "freezer_rated_annual_kwh": "auto", + "freezer_usage_multiplier": 1.0, + "fuel_loads_fireplace_annual_therm": "auto", + "fuel_loads_fireplace_frac_latent": "auto", + "fuel_loads_fireplace_frac_sensible": "auto", + "fuel_loads_fireplace_fuel_type": "natural gas", + "fuel_loads_fireplace_present": false, + "fuel_loads_fireplace_usage_multiplier": 0.0, + "fuel_loads_grill_annual_therm": "auto", + "fuel_loads_grill_fuel_type": "natural gas", + "fuel_loads_grill_present": false, + "fuel_loads_grill_usage_multiplier": 0.0, + "fuel_loads_lighting_annual_therm": "auto", + "fuel_loads_lighting_fuel_type": "natural gas", + "fuel_loads_lighting_present": false, + "fuel_loads_lighting_usage_multiplier": 0.0, + "geometry_aspect_ratio": 1.5, + "geometry_attic_type": "UnventedAttic", + "geometry_balcony_depth": 0.0, + "geometry_building_num_bedrooms": 150, + "geometry_building_num_units": 50, + "geometry_cfa": 900.0, + "geometry_corridor_position": "None", + "geometry_corridor_width": 10.0, + "geometry_eaves_depth": 0, + "geometry_foundation_height": 4.0, + "geometry_foundation_height_above_grade": 1.0, + "geometry_foundation_type": "VentedCrawlspace", + "geometry_garage_depth": 20.0, + "geometry_garage_position": "Right", + "geometry_garage_protrusion": 0.0, + "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", + "geometry_horizontal_location": "Right", + "geometry_inset_depth": 0.0, + "geometry_inset_position": "Right", + "geometry_inset_width": 0.0, + "geometry_level": "Middle", + "geometry_num_bathrooms": "2", + "geometry_num_bedrooms": 3, + "geometry_num_floors_above_grade": 5, + "geometry_num_occupants": "3", + "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, + "geometry_roof_pitch": "6:12", + "geometry_roof_type": "gable", + "geometry_unit_type": "apartment unit", + "geometry_wall_height": 8.0, + "heat_pump_backup_fuel": "none", + "heat_pump_backup_heating_capacity": "34121.0", + "heat_pump_backup_heating_efficiency": 1, + "heat_pump_cooling_capacity": "48000.0", + "heat_pump_cooling_compressor_type": "single stage", + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", + "heat_pump_cooling_sensible_heat_fraction": 0.73, + "heat_pump_fraction_cool_load_served": 1, + "heat_pump_fraction_heat_load_served": 1, + "heat_pump_heating_capacity": "64000.0", + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", + "heat_pump_type": "none", + "heating_system_fraction_heat_load_served": 1, + "heating_system_fraction_heat_load_served_2": 0.25, + "heating_system_fuel": "natural gas", + "heating_system_fuel_2": "electricity", + "heating_system_heating_capacity": "64000.0", + "heating_system_heating_capacity_2": "auto", + "heating_system_heating_efficiency": 0.92, + "heating_system_heating_efficiency_2": 1.0, + "heating_system_type": "Furnace", + "heating_system_type_2": "none", + "holiday_lighting_daily_kwh": "auto", + "holiday_lighting_period_begin_day_of_month": "auto", + "holiday_lighting_period_begin_month": "auto", + "holiday_lighting_period_end_day_of_month": "auto", + "holiday_lighting_period_end_month": "auto", + "holiday_lighting_present": false, + "hot_tub_heater_annual_kwh": "auto", + "hot_tub_heater_annual_therm": "auto", + "hot_tub_heater_type": "electric resistance", + "hot_tub_heater_usage_multiplier": 1.0, + "hot_tub_present": false, + "hot_tub_pump_annual_kwh": "auto", + "hot_tub_pump_usage_multiplier": 1.0, + "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/extra-bldgtype-multifamily-vented-crawlspace-right-middle.xml", + "kitchen_fans_quantity": "0", + "lighting_fraction_cfl_exterior": 0.4, + "lighting_fraction_cfl_garage": 0.4, + "lighting_fraction_cfl_interior": 0.4, + "lighting_fraction_led_exterior": 0.25, + "lighting_fraction_led_garage": 0.25, + "lighting_fraction_led_interior": 0.25, + "lighting_fraction_lfl_exterior": 0.1, + "lighting_fraction_lfl_garage": 0.1, + "lighting_fraction_lfl_interior": 0.1, + "lighting_usage_multiplier_exterior": 1.0, + "lighting_usage_multiplier_garage": 1.0, + "lighting_usage_multiplier_interior": 1.0, + "mech_vent_fan_power": 30, + "mech_vent_fan_power_2": 30, + "mech_vent_fan_type": "none", + "mech_vent_fan_type_2": "none", + "mech_vent_flow_rate": 110, + "mech_vent_flow_rate_2": 110, + "mech_vent_hours_in_operation": 24, + "mech_vent_hours_in_operation_2": 24, + "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", + "mech_vent_sensible_recovery_efficiency": 0.72, + "mech_vent_sensible_recovery_efficiency_2": 0.72, + "mech_vent_total_recovery_efficiency": 0.48, + "mech_vent_total_recovery_efficiency_2": 0.48, + "neighbor_back_distance": 0, + "neighbor_back_height": "auto", + "neighbor_front_distance": 0, + "neighbor_front_height": "auto", + "neighbor_left_distance": 0, + "neighbor_left_height": "auto", + "neighbor_right_distance": 0, + "neighbor_right_height": "auto", + "overhangs_back_depth": 0, + "overhangs_back_distance_to_top_of_window": 0, + "overhangs_front_depth": 0, + "overhangs_front_distance_to_top_of_window": 0, + "overhangs_left_depth": 0, + "overhangs_left_distance_to_top_of_window": 0, + "overhangs_right_depth": 0, + "overhangs_right_distance_to_top_of_window": 0, + "plug_loads_other_annual_kwh": "819.0", + "plug_loads_other_frac_latent": "0.045", + "plug_loads_other_frac_sensible": "0.855", + "plug_loads_other_usage_multiplier": 1.0, + "plug_loads_television_annual_kwh": "620.0", + "plug_loads_television_usage_multiplier": 1.0, + "plug_loads_vehicle_annual_kwh": "auto", + "plug_loads_vehicle_present": false, + "plug_loads_vehicle_usage_multiplier": 0.0, + "plug_loads_well_pump_annual_kwh": "auto", + "plug_loads_well_pump_present": false, + "plug_loads_well_pump_usage_multiplier": 0.0, + "pool_heater_annual_kwh": "auto", + "pool_heater_annual_therm": "auto", + "pool_heater_type": "electric resistance", + "pool_heater_usage_multiplier": 1.0, + "pool_present": false, + "pool_pump_annual_kwh": "auto", + "pool_pump_usage_multiplier": 1.0, + "pv_system_array_azimuth_1": 180, + "pv_system_array_azimuth_2": 180, + "pv_system_array_tilt_1": "20", + "pv_system_array_tilt_2": "20", + "pv_system_inverter_efficiency_1": 0.96, + "pv_system_inverter_efficiency_2": 0.96, + "pv_system_location_1": "auto", + "pv_system_location_2": "auto", + "pv_system_max_power_output_1": 4000, + "pv_system_max_power_output_2": 4000, + "pv_system_module_type_1": "none", + "pv_system_module_type_2": "none", + "pv_system_num_units_served_1": 1, + "pv_system_num_units_served_2": 1, + "pv_system_system_losses_fraction_1": 0.14, + "pv_system_system_losses_fraction_2": 0.14, + "pv_system_tracking_1": "auto", + "pv_system_tracking_2": "auto", + "refrigerator_location": "living space", + "refrigerator_rated_annual_kwh": "650.0", + "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, + "roof_assembly_r": 2.3, + "roof_color": "medium", + "roof_material_type": "asphalt or fiberglass shingles", + "roof_radiant_barrier": false, + "roof_radiant_barrier_grade": "1", + "schedules_type": "default", + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", + "simulation_control_timestep": "60", + "site_type": "suburban", + "skylight_area_back": 0, + "skylight_area_front": 0, + "skylight_area_left": 0, + "skylight_area_right": 0, + "skylight_shgc": 0.45, + "skylight_ufactor": 0.33, + "slab_carpet_fraction": "0.0", + "slab_carpet_r": "0.0", + "slab_perimeter_depth": 0, + "slab_perimeter_insulation_r": 0, + "slab_thickness": "4.0", + "slab_under_insulation_r": 0, + "slab_under_width": 0, + "solar_thermal_collector_area": 40.0, + "solar_thermal_collector_azimuth": 180, + "solar_thermal_collector_loop_type": "liquid direct", + "solar_thermal_collector_rated_optical_efficiency": 0.5, + "solar_thermal_collector_rated_thermal_losses": 0.2799, + "solar_thermal_collector_tilt": "20", + "solar_thermal_collector_type": "evacuated tube", + "solar_thermal_solar_fraction": 0, + "solar_thermal_storage_volume": "auto", + "solar_thermal_system_type": "none", + "wall_assembly_r": 23, + "wall_color": "medium", + "wall_siding_type": "wood siding", + "wall_type": "WoodStud", + "water_fixtures_shower_low_flow": true, + "water_fixtures_sink_low_flow": false, + "water_fixtures_usage_multiplier": 1.0, + "water_heater_efficiency": 0.95, + "water_heater_efficiency_type": "EnergyFactor", + "water_heater_fuel_type": "electricity", + "water_heater_jacket_rvalue": 0, + "water_heater_location": "living space", + "water_heater_num_units_served": 1, + "water_heater_recovery_efficiency": "0.76", + "water_heater_setpoint_temperature": "125", + "water_heater_standby_loss": 0, + "water_heater_tank_volume": "40", + "water_heater_type": "storage water heater", + "weather_station_epw_filepath": "USA_CO_Denver.Intl.AP.725650_TMY3.epw", + "whole_house_fan_flow_rate": 4500, + "whole_house_fan_power": 300, + "whole_house_fan_present": false, + "window_area_back": 0, + "window_area_front": 0, + "window_area_left": 0, + "window_area_right": 0, + "window_aspect_ratio": 1.333, + "window_back_wwr": 0.18, + "window_fraction_operable": 0.67, + "window_front_wwr": 0.18, + "window_interior_shading_summer": 0.7, + "window_interior_shading_winter": 0.85, + "window_left_wwr": 0.18, + "window_right_wwr": 0.18, + "window_shgc": 0.45, + "window_ufactor": 0.33 + }, + "measure_dir_name": "BuildResidentialHPXML" + } + ] +} \ No newline at end of file diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-vented-crawlspace-right-top-double-loaded-interior.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-vented-crawlspace-right-top-double-loaded-interior.osw new file mode 100644 index 00000000..1a108cec --- /dev/null +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-vented-crawlspace-right-top-double-loaded-interior.osw @@ -0,0 +1,341 @@ +{ + "measure_paths": [ + "../.." + ], + "steps": [ + { + "arguments": { + "air_leakage_house_pressure": 50, + "air_leakage_shielding_of_home": "auto", + "air_leakage_units": "ACH", + "air_leakage_value": 3, + "bathroom_fans_quantity": "0", + "ceiling_assembly_r": 39.3, + "ceiling_fan_cooling_setpoint_temp_offset": 0, + "ceiling_fan_efficiency": "auto", + "ceiling_fan_present": false, + "ceiling_fan_quantity": "auto", + "clothes_dryer_efficiency": "3.73", + "clothes_dryer_efficiency_type": "CombinedEnergyFactor", + "clothes_dryer_fuel_type": "electricity", + "clothes_dryer_location": "living space", + "clothes_dryer_usage_multiplier": 1.0, + "clothes_dryer_vented_flow_rate": "150.0", + "clothes_washer_capacity": "3.2", + "clothes_washer_efficiency": "1.21", + "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", + "clothes_washer_label_annual_gas_cost": "27.0", + "clothes_washer_label_electric_rate": "0.12", + "clothes_washer_label_gas_rate": "1.09", + "clothes_washer_label_usage": "6.0", + "clothes_washer_location": "living space", + "clothes_washer_rated_annual_kwh": "380.0", + "clothes_washer_usage_multiplier": 1.0, + "cooking_range_oven_fuel_type": "electricity", + "cooking_range_oven_is_convection": false, + "cooking_range_oven_is_induction": false, + "cooking_range_oven_location": "living space", + "cooking_range_oven_usage_multiplier": 1.0, + "cooling_system_cooling_capacity": "48000.0", + "cooling_system_cooling_compressor_type": "single stage", + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", + "cooling_system_cooling_sensible_heat_fraction": 0.73, + "cooling_system_fraction_cool_load_served": 1, + "cooling_system_is_ducted": false, + "cooling_system_type": "central air conditioner", + "dehumidifier_capacity": 40, + "dehumidifier_efficiency": 1.8, + "dehumidifier_efficiency_type": "EnergyFactor", + "dehumidifier_fraction_dehumidification_load_served": 1, + "dehumidifier_rh_setpoint": 0.5, + "dehumidifier_type": "none", + "dhw_distribution_pipe_r": "0.0", + "dhw_distribution_recirc_branch_piping_length": "50", + "dhw_distribution_recirc_control_type": "no control", + "dhw_distribution_recirc_piping_length": "50", + "dhw_distribution_recirc_pump_power": "50", + "dhw_distribution_standard_piping_length": "50", + "dhw_distribution_system_type": "Standard", + "dishwasher_efficiency": "307", + "dishwasher_efficiency_type": "RatedAnnualkWh", + "dishwasher_label_annual_gas_cost": "22.32", + "dishwasher_label_electric_rate": "0.12", + "dishwasher_label_gas_rate": "1.09", + "dishwasher_label_usage": "4.0", + "dishwasher_location": "living space", + "dishwasher_place_setting_capacity": "12", + "dishwasher_usage_multiplier": 1.0, + "door_area": 20.0, + "door_rvalue": 4.4, + "ducts_number_of_return_registers": "1", + "ducts_return_insulation_r": 0.0, + "ducts_return_leakage_units": "CFM25", + "ducts_return_leakage_value": 0.0, + "ducts_return_location": "living space", + "ducts_return_surface_area": "50.0", + "ducts_supply_insulation_r": 0.0, + "ducts_supply_leakage_units": "CFM25", + "ducts_supply_leakage_value": 0.0, + "ducts_supply_location": "living space", + "ducts_supply_surface_area": "150.0", + "dwhr_efficiency": 0.55, + "dwhr_equal_flow": true, + "dwhr_facilities_connected": "none", + "extra_refrigerator_location": "none", + "extra_refrigerator_rated_annual_kwh": "auto", + "extra_refrigerator_usage_multiplier": 1.0, + "floor_assembly_r": 18.7, + "foundation_wall_insulation_distance_to_bottom": 4.0, + "foundation_wall_insulation_distance_to_top": 0.0, + "foundation_wall_insulation_r": 8.9, + "foundation_wall_thickness": "8.0", + "freezer_location": "none", + "freezer_rated_annual_kwh": "auto", + "freezer_usage_multiplier": 1.0, + "fuel_loads_fireplace_annual_therm": "auto", + "fuel_loads_fireplace_frac_latent": "auto", + "fuel_loads_fireplace_frac_sensible": "auto", + "fuel_loads_fireplace_fuel_type": "natural gas", + "fuel_loads_fireplace_present": false, + "fuel_loads_fireplace_usage_multiplier": 0.0, + "fuel_loads_grill_annual_therm": "auto", + "fuel_loads_grill_fuel_type": "natural gas", + "fuel_loads_grill_present": false, + "fuel_loads_grill_usage_multiplier": 0.0, + "fuel_loads_lighting_annual_therm": "auto", + "fuel_loads_lighting_fuel_type": "natural gas", + "fuel_loads_lighting_present": false, + "fuel_loads_lighting_usage_multiplier": 0.0, + "geometry_aspect_ratio": 1.5, + "geometry_attic_type": "UnventedAttic", + "geometry_balcony_depth": 0.0, + "geometry_building_num_bedrooms": 150, + "geometry_building_num_units": 50, + "geometry_cfa": 900.0, + "geometry_corridor_position": "Double-Loaded Interior", + "geometry_corridor_width": 10.0, + "geometry_eaves_depth": 0, + "geometry_foundation_height": 4.0, + "geometry_foundation_height_above_grade": 1.0, + "geometry_foundation_type": "VentedCrawlspace", + "geometry_garage_depth": 20.0, + "geometry_garage_position": "Right", + "geometry_garage_protrusion": 0.0, + "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", + "geometry_horizontal_location": "Right", + "geometry_inset_depth": 0.0, + "geometry_inset_position": "Right", + "geometry_inset_width": 0.0, + "geometry_level": "Top", + "geometry_num_bathrooms": "2", + "geometry_num_bedrooms": 3, + "geometry_num_floors_above_grade": 5, + "geometry_num_occupants": "3", + "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, + "geometry_roof_pitch": "6:12", + "geometry_roof_type": "gable", + "geometry_unit_type": "apartment unit", + "geometry_wall_height": 8.0, + "heat_pump_backup_fuel": "none", + "heat_pump_backup_heating_capacity": "34121.0", + "heat_pump_backup_heating_efficiency": 1, + "heat_pump_cooling_capacity": "48000.0", + "heat_pump_cooling_compressor_type": "single stage", + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", + "heat_pump_cooling_sensible_heat_fraction": 0.73, + "heat_pump_fraction_cool_load_served": 1, + "heat_pump_fraction_heat_load_served": 1, + "heat_pump_heating_capacity": "64000.0", + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", + "heat_pump_type": "none", + "heating_system_fraction_heat_load_served": 1, + "heating_system_fraction_heat_load_served_2": 0.25, + "heating_system_fuel": "natural gas", + "heating_system_fuel_2": "electricity", + "heating_system_heating_capacity": "64000.0", + "heating_system_heating_capacity_2": "auto", + "heating_system_heating_efficiency": 0.92, + "heating_system_heating_efficiency_2": 1.0, + "heating_system_type": "Furnace", + "heating_system_type_2": "none", + "holiday_lighting_daily_kwh": "auto", + "holiday_lighting_period_begin_day_of_month": "auto", + "holiday_lighting_period_begin_month": "auto", + "holiday_lighting_period_end_day_of_month": "auto", + "holiday_lighting_period_end_month": "auto", + "holiday_lighting_present": false, + "hot_tub_heater_annual_kwh": "auto", + "hot_tub_heater_annual_therm": "auto", + "hot_tub_heater_type": "electric resistance", + "hot_tub_heater_usage_multiplier": 1.0, + "hot_tub_present": false, + "hot_tub_pump_annual_kwh": "auto", + "hot_tub_pump_usage_multiplier": 1.0, + "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/extra-bldgtype-multifamily-vented-crawlspace-right-top-double-loaded-interior.xml", + "kitchen_fans_quantity": "0", + "lighting_fraction_cfl_exterior": 0.4, + "lighting_fraction_cfl_garage": 0.4, + "lighting_fraction_cfl_interior": 0.4, + "lighting_fraction_led_exterior": 0.25, + "lighting_fraction_led_garage": 0.25, + "lighting_fraction_led_interior": 0.25, + "lighting_fraction_lfl_exterior": 0.1, + "lighting_fraction_lfl_garage": 0.1, + "lighting_fraction_lfl_interior": 0.1, + "lighting_usage_multiplier_exterior": 1.0, + "lighting_usage_multiplier_garage": 1.0, + "lighting_usage_multiplier_interior": 1.0, + "mech_vent_fan_power": 30, + "mech_vent_fan_power_2": 30, + "mech_vent_fan_type": "none", + "mech_vent_fan_type_2": "none", + "mech_vent_flow_rate": 110, + "mech_vent_flow_rate_2": 110, + "mech_vent_hours_in_operation": 24, + "mech_vent_hours_in_operation_2": 24, + "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", + "mech_vent_sensible_recovery_efficiency": 0.72, + "mech_vent_sensible_recovery_efficiency_2": 0.72, + "mech_vent_total_recovery_efficiency": 0.48, + "mech_vent_total_recovery_efficiency_2": 0.48, + "neighbor_back_distance": 0, + "neighbor_back_height": "auto", + "neighbor_front_distance": 0, + "neighbor_front_height": "auto", + "neighbor_left_distance": 0, + "neighbor_left_height": "auto", + "neighbor_right_distance": 0, + "neighbor_right_height": "auto", + "overhangs_back_depth": 0, + "overhangs_back_distance_to_top_of_window": 0, + "overhangs_front_depth": 0, + "overhangs_front_distance_to_top_of_window": 0, + "overhangs_left_depth": 0, + "overhangs_left_distance_to_top_of_window": 0, + "overhangs_right_depth": 0, + "overhangs_right_distance_to_top_of_window": 0, + "plug_loads_other_annual_kwh": "819.0", + "plug_loads_other_frac_latent": "0.045", + "plug_loads_other_frac_sensible": "0.855", + "plug_loads_other_usage_multiplier": 1.0, + "plug_loads_television_annual_kwh": "620.0", + "plug_loads_television_usage_multiplier": 1.0, + "plug_loads_vehicle_annual_kwh": "auto", + "plug_loads_vehicle_present": false, + "plug_loads_vehicle_usage_multiplier": 0.0, + "plug_loads_well_pump_annual_kwh": "auto", + "plug_loads_well_pump_present": false, + "plug_loads_well_pump_usage_multiplier": 0.0, + "pool_heater_annual_kwh": "auto", + "pool_heater_annual_therm": "auto", + "pool_heater_type": "electric resistance", + "pool_heater_usage_multiplier": 1.0, + "pool_present": false, + "pool_pump_annual_kwh": "auto", + "pool_pump_usage_multiplier": 1.0, + "pv_system_array_azimuth_1": 180, + "pv_system_array_azimuth_2": 180, + "pv_system_array_tilt_1": "20", + "pv_system_array_tilt_2": "20", + "pv_system_inverter_efficiency_1": 0.96, + "pv_system_inverter_efficiency_2": 0.96, + "pv_system_location_1": "auto", + "pv_system_location_2": "auto", + "pv_system_max_power_output_1": 4000, + "pv_system_max_power_output_2": 4000, + "pv_system_module_type_1": "none", + "pv_system_module_type_2": "none", + "pv_system_num_units_served_1": 1, + "pv_system_num_units_served_2": 1, + "pv_system_system_losses_fraction_1": 0.14, + "pv_system_system_losses_fraction_2": 0.14, + "pv_system_tracking_1": "auto", + "pv_system_tracking_2": "auto", + "refrigerator_location": "living space", + "refrigerator_rated_annual_kwh": "650.0", + "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, + "roof_assembly_r": 2.3, + "roof_color": "medium", + "roof_material_type": "asphalt or fiberglass shingles", + "roof_radiant_barrier": false, + "roof_radiant_barrier_grade": "1", + "schedules_type": "default", + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", + "simulation_control_timestep": "60", + "site_type": "suburban", + "skylight_area_back": 0, + "skylight_area_front": 0, + "skylight_area_left": 0, + "skylight_area_right": 0, + "skylight_shgc": 0.45, + "skylight_ufactor": 0.33, + "slab_carpet_fraction": "0.0", + "slab_carpet_r": "0.0", + "slab_perimeter_depth": 0, + "slab_perimeter_insulation_r": 0, + "slab_thickness": "4.0", + "slab_under_insulation_r": 0, + "slab_under_width": 0, + "solar_thermal_collector_area": 40.0, + "solar_thermal_collector_azimuth": 180, + "solar_thermal_collector_loop_type": "liquid direct", + "solar_thermal_collector_rated_optical_efficiency": 0.5, + "solar_thermal_collector_rated_thermal_losses": 0.2799, + "solar_thermal_collector_tilt": "20", + "solar_thermal_collector_type": "evacuated tube", + "solar_thermal_solar_fraction": 0, + "solar_thermal_storage_volume": "auto", + "solar_thermal_system_type": "none", + "wall_assembly_r": 23, + "wall_color": "medium", + "wall_siding_type": "wood siding", + "wall_type": "WoodStud", + "water_fixtures_shower_low_flow": true, + "water_fixtures_sink_low_flow": false, + "water_fixtures_usage_multiplier": 1.0, + "water_heater_efficiency": 0.95, + "water_heater_efficiency_type": "EnergyFactor", + "water_heater_fuel_type": "electricity", + "water_heater_jacket_rvalue": 0, + "water_heater_location": "living space", + "water_heater_num_units_served": 1, + "water_heater_recovery_efficiency": "0.76", + "water_heater_setpoint_temperature": "125", + "water_heater_standby_loss": 0, + "water_heater_tank_volume": "40", + "water_heater_type": "storage water heater", + "weather_station_epw_filepath": "USA_CO_Denver.Intl.AP.725650_TMY3.epw", + "whole_house_fan_flow_rate": 4500, + "whole_house_fan_power": 300, + "whole_house_fan_present": false, + "window_area_back": 0, + "window_area_front": 0, + "window_area_left": 0, + "window_area_right": 0, + "window_aspect_ratio": 1.333, + "window_back_wwr": 0.18, + "window_fraction_operable": 0.67, + "window_front_wwr": 0.18, + "window_interior_shading_summer": 0.7, + "window_interior_shading_winter": 0.85, + "window_left_wwr": 0.18, + "window_right_wwr": 0.18, + "window_shgc": 0.45, + "window_ufactor": 0.33 + }, + "measure_dir_name": "BuildResidentialHPXML" + } + ] +} \ No newline at end of file diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-vented-crawlspace-right-top.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-vented-crawlspace-right-top.osw new file mode 100644 index 00000000..64a466f6 --- /dev/null +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-vented-crawlspace-right-top.osw @@ -0,0 +1,341 @@ +{ + "measure_paths": [ + "../.." + ], + "steps": [ + { + "arguments": { + "air_leakage_house_pressure": 50, + "air_leakage_shielding_of_home": "auto", + "air_leakage_units": "ACH", + "air_leakage_value": 3, + "bathroom_fans_quantity": "0", + "ceiling_assembly_r": 39.3, + "ceiling_fan_cooling_setpoint_temp_offset": 0, + "ceiling_fan_efficiency": "auto", + "ceiling_fan_present": false, + "ceiling_fan_quantity": "auto", + "clothes_dryer_efficiency": "3.73", + "clothes_dryer_efficiency_type": "CombinedEnergyFactor", + "clothes_dryer_fuel_type": "electricity", + "clothes_dryer_location": "living space", + "clothes_dryer_usage_multiplier": 1.0, + "clothes_dryer_vented_flow_rate": "150.0", + "clothes_washer_capacity": "3.2", + "clothes_washer_efficiency": "1.21", + "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", + "clothes_washer_label_annual_gas_cost": "27.0", + "clothes_washer_label_electric_rate": "0.12", + "clothes_washer_label_gas_rate": "1.09", + "clothes_washer_label_usage": "6.0", + "clothes_washer_location": "living space", + "clothes_washer_rated_annual_kwh": "380.0", + "clothes_washer_usage_multiplier": 1.0, + "cooking_range_oven_fuel_type": "electricity", + "cooking_range_oven_is_convection": false, + "cooking_range_oven_is_induction": false, + "cooking_range_oven_location": "living space", + "cooking_range_oven_usage_multiplier": 1.0, + "cooling_system_cooling_capacity": "48000.0", + "cooling_system_cooling_compressor_type": "single stage", + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", + "cooling_system_cooling_sensible_heat_fraction": 0.73, + "cooling_system_fraction_cool_load_served": 1, + "cooling_system_is_ducted": false, + "cooling_system_type": "central air conditioner", + "dehumidifier_capacity": 40, + "dehumidifier_efficiency": 1.8, + "dehumidifier_efficiency_type": "EnergyFactor", + "dehumidifier_fraction_dehumidification_load_served": 1, + "dehumidifier_rh_setpoint": 0.5, + "dehumidifier_type": "none", + "dhw_distribution_pipe_r": "0.0", + "dhw_distribution_recirc_branch_piping_length": "50", + "dhw_distribution_recirc_control_type": "no control", + "dhw_distribution_recirc_piping_length": "50", + "dhw_distribution_recirc_pump_power": "50", + "dhw_distribution_standard_piping_length": "50", + "dhw_distribution_system_type": "Standard", + "dishwasher_efficiency": "307", + "dishwasher_efficiency_type": "RatedAnnualkWh", + "dishwasher_label_annual_gas_cost": "22.32", + "dishwasher_label_electric_rate": "0.12", + "dishwasher_label_gas_rate": "1.09", + "dishwasher_label_usage": "4.0", + "dishwasher_location": "living space", + "dishwasher_place_setting_capacity": "12", + "dishwasher_usage_multiplier": 1.0, + "door_area": 20.0, + "door_rvalue": 4.4, + "ducts_number_of_return_registers": "1", + "ducts_return_insulation_r": 0.0, + "ducts_return_leakage_units": "CFM25", + "ducts_return_leakage_value": 0.0, + "ducts_return_location": "living space", + "ducts_return_surface_area": "50.0", + "ducts_supply_insulation_r": 0.0, + "ducts_supply_leakage_units": "CFM25", + "ducts_supply_leakage_value": 0.0, + "ducts_supply_location": "living space", + "ducts_supply_surface_area": "150.0", + "dwhr_efficiency": 0.55, + "dwhr_equal_flow": true, + "dwhr_facilities_connected": "none", + "extra_refrigerator_location": "none", + "extra_refrigerator_rated_annual_kwh": "auto", + "extra_refrigerator_usage_multiplier": 1.0, + "floor_assembly_r": 18.7, + "foundation_wall_insulation_distance_to_bottom": 4.0, + "foundation_wall_insulation_distance_to_top": 0.0, + "foundation_wall_insulation_r": 8.9, + "foundation_wall_thickness": "8.0", + "freezer_location": "none", + "freezer_rated_annual_kwh": "auto", + "freezer_usage_multiplier": 1.0, + "fuel_loads_fireplace_annual_therm": "auto", + "fuel_loads_fireplace_frac_latent": "auto", + "fuel_loads_fireplace_frac_sensible": "auto", + "fuel_loads_fireplace_fuel_type": "natural gas", + "fuel_loads_fireplace_present": false, + "fuel_loads_fireplace_usage_multiplier": 0.0, + "fuel_loads_grill_annual_therm": "auto", + "fuel_loads_grill_fuel_type": "natural gas", + "fuel_loads_grill_present": false, + "fuel_loads_grill_usage_multiplier": 0.0, + "fuel_loads_lighting_annual_therm": "auto", + "fuel_loads_lighting_fuel_type": "natural gas", + "fuel_loads_lighting_present": false, + "fuel_loads_lighting_usage_multiplier": 0.0, + "geometry_aspect_ratio": 1.5, + "geometry_attic_type": "UnventedAttic", + "geometry_balcony_depth": 0.0, + "geometry_building_num_bedrooms": 150, + "geometry_building_num_units": 50, + "geometry_cfa": 900.0, + "geometry_corridor_position": "None", + "geometry_corridor_width": 10.0, + "geometry_eaves_depth": 0, + "geometry_foundation_height": 4.0, + "geometry_foundation_height_above_grade": 1.0, + "geometry_foundation_type": "VentedCrawlspace", + "geometry_garage_depth": 20.0, + "geometry_garage_position": "Right", + "geometry_garage_protrusion": 0.0, + "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", + "geometry_horizontal_location": "Right", + "geometry_inset_depth": 0.0, + "geometry_inset_position": "Right", + "geometry_inset_width": 0.0, + "geometry_level": "Top", + "geometry_num_bathrooms": "2", + "geometry_num_bedrooms": 3, + "geometry_num_floors_above_grade": 5, + "geometry_num_occupants": "3", + "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, + "geometry_roof_pitch": "6:12", + "geometry_roof_type": "gable", + "geometry_unit_type": "apartment unit", + "geometry_wall_height": 8.0, + "heat_pump_backup_fuel": "none", + "heat_pump_backup_heating_capacity": "34121.0", + "heat_pump_backup_heating_efficiency": 1, + "heat_pump_cooling_capacity": "48000.0", + "heat_pump_cooling_compressor_type": "single stage", + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", + "heat_pump_cooling_sensible_heat_fraction": 0.73, + "heat_pump_fraction_cool_load_served": 1, + "heat_pump_fraction_heat_load_served": 1, + "heat_pump_heating_capacity": "64000.0", + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", + "heat_pump_type": "none", + "heating_system_fraction_heat_load_served": 1, + "heating_system_fraction_heat_load_served_2": 0.25, + "heating_system_fuel": "natural gas", + "heating_system_fuel_2": "electricity", + "heating_system_heating_capacity": "64000.0", + "heating_system_heating_capacity_2": "auto", + "heating_system_heating_efficiency": 0.92, + "heating_system_heating_efficiency_2": 1.0, + "heating_system_type": "Furnace", + "heating_system_type_2": "none", + "holiday_lighting_daily_kwh": "auto", + "holiday_lighting_period_begin_day_of_month": "auto", + "holiday_lighting_period_begin_month": "auto", + "holiday_lighting_period_end_day_of_month": "auto", + "holiday_lighting_period_end_month": "auto", + "holiday_lighting_present": false, + "hot_tub_heater_annual_kwh": "auto", + "hot_tub_heater_annual_therm": "auto", + "hot_tub_heater_type": "electric resistance", + "hot_tub_heater_usage_multiplier": 1.0, + "hot_tub_present": false, + "hot_tub_pump_annual_kwh": "auto", + "hot_tub_pump_usage_multiplier": 1.0, + "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/extra-bldgtype-multifamily-vented-crawlspace-right-top.xml", + "kitchen_fans_quantity": "0", + "lighting_fraction_cfl_exterior": 0.4, + "lighting_fraction_cfl_garage": 0.4, + "lighting_fraction_cfl_interior": 0.4, + "lighting_fraction_led_exterior": 0.25, + "lighting_fraction_led_garage": 0.25, + "lighting_fraction_led_interior": 0.25, + "lighting_fraction_lfl_exterior": 0.1, + "lighting_fraction_lfl_garage": 0.1, + "lighting_fraction_lfl_interior": 0.1, + "lighting_usage_multiplier_exterior": 1.0, + "lighting_usage_multiplier_garage": 1.0, + "lighting_usage_multiplier_interior": 1.0, + "mech_vent_fan_power": 30, + "mech_vent_fan_power_2": 30, + "mech_vent_fan_type": "none", + "mech_vent_fan_type_2": "none", + "mech_vent_flow_rate": 110, + "mech_vent_flow_rate_2": 110, + "mech_vent_hours_in_operation": 24, + "mech_vent_hours_in_operation_2": 24, + "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", + "mech_vent_sensible_recovery_efficiency": 0.72, + "mech_vent_sensible_recovery_efficiency_2": 0.72, + "mech_vent_total_recovery_efficiency": 0.48, + "mech_vent_total_recovery_efficiency_2": 0.48, + "neighbor_back_distance": 0, + "neighbor_back_height": "auto", + "neighbor_front_distance": 0, + "neighbor_front_height": "auto", + "neighbor_left_distance": 0, + "neighbor_left_height": "auto", + "neighbor_right_distance": 0, + "neighbor_right_height": "auto", + "overhangs_back_depth": 0, + "overhangs_back_distance_to_top_of_window": 0, + "overhangs_front_depth": 0, + "overhangs_front_distance_to_top_of_window": 0, + "overhangs_left_depth": 0, + "overhangs_left_distance_to_top_of_window": 0, + "overhangs_right_depth": 0, + "overhangs_right_distance_to_top_of_window": 0, + "plug_loads_other_annual_kwh": "819.0", + "plug_loads_other_frac_latent": "0.045", + "plug_loads_other_frac_sensible": "0.855", + "plug_loads_other_usage_multiplier": 1.0, + "plug_loads_television_annual_kwh": "620.0", + "plug_loads_television_usage_multiplier": 1.0, + "plug_loads_vehicle_annual_kwh": "auto", + "plug_loads_vehicle_present": false, + "plug_loads_vehicle_usage_multiplier": 0.0, + "plug_loads_well_pump_annual_kwh": "auto", + "plug_loads_well_pump_present": false, + "plug_loads_well_pump_usage_multiplier": 0.0, + "pool_heater_annual_kwh": "auto", + "pool_heater_annual_therm": "auto", + "pool_heater_type": "electric resistance", + "pool_heater_usage_multiplier": 1.0, + "pool_present": false, + "pool_pump_annual_kwh": "auto", + "pool_pump_usage_multiplier": 1.0, + "pv_system_array_azimuth_1": 180, + "pv_system_array_azimuth_2": 180, + "pv_system_array_tilt_1": "20", + "pv_system_array_tilt_2": "20", + "pv_system_inverter_efficiency_1": 0.96, + "pv_system_inverter_efficiency_2": 0.96, + "pv_system_location_1": "auto", + "pv_system_location_2": "auto", + "pv_system_max_power_output_1": 4000, + "pv_system_max_power_output_2": 4000, + "pv_system_module_type_1": "none", + "pv_system_module_type_2": "none", + "pv_system_num_units_served_1": 1, + "pv_system_num_units_served_2": 1, + "pv_system_system_losses_fraction_1": 0.14, + "pv_system_system_losses_fraction_2": 0.14, + "pv_system_tracking_1": "auto", + "pv_system_tracking_2": "auto", + "refrigerator_location": "living space", + "refrigerator_rated_annual_kwh": "650.0", + "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, + "roof_assembly_r": 2.3, + "roof_color": "medium", + "roof_material_type": "asphalt or fiberglass shingles", + "roof_radiant_barrier": false, + "roof_radiant_barrier_grade": "1", + "schedules_type": "default", + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", + "simulation_control_timestep": "60", + "site_type": "suburban", + "skylight_area_back": 0, + "skylight_area_front": 0, + "skylight_area_left": 0, + "skylight_area_right": 0, + "skylight_shgc": 0.45, + "skylight_ufactor": 0.33, + "slab_carpet_fraction": "0.0", + "slab_carpet_r": "0.0", + "slab_perimeter_depth": 0, + "slab_perimeter_insulation_r": 0, + "slab_thickness": "4.0", + "slab_under_insulation_r": 0, + "slab_under_width": 0, + "solar_thermal_collector_area": 40.0, + "solar_thermal_collector_azimuth": 180, + "solar_thermal_collector_loop_type": "liquid direct", + "solar_thermal_collector_rated_optical_efficiency": 0.5, + "solar_thermal_collector_rated_thermal_losses": 0.2799, + "solar_thermal_collector_tilt": "20", + "solar_thermal_collector_type": "evacuated tube", + "solar_thermal_solar_fraction": 0, + "solar_thermal_storage_volume": "auto", + "solar_thermal_system_type": "none", + "wall_assembly_r": 23, + "wall_color": "medium", + "wall_siding_type": "wood siding", + "wall_type": "WoodStud", + "water_fixtures_shower_low_flow": true, + "water_fixtures_sink_low_flow": false, + "water_fixtures_usage_multiplier": 1.0, + "water_heater_efficiency": 0.95, + "water_heater_efficiency_type": "EnergyFactor", + "water_heater_fuel_type": "electricity", + "water_heater_jacket_rvalue": 0, + "water_heater_location": "living space", + "water_heater_num_units_served": 1, + "water_heater_recovery_efficiency": "0.76", + "water_heater_setpoint_temperature": "125", + "water_heater_standby_loss": 0, + "water_heater_tank_volume": "40", + "water_heater_type": "storage water heater", + "weather_station_epw_filepath": "USA_CO_Denver.Intl.AP.725650_TMY3.epw", + "whole_house_fan_flow_rate": 4500, + "whole_house_fan_power": 300, + "whole_house_fan_present": false, + "window_area_back": 0, + "window_area_front": 0, + "window_area_left": 0, + "window_area_right": 0, + "window_aspect_ratio": 1.333, + "window_back_wwr": 0.18, + "window_fraction_operable": 0.67, + "window_front_wwr": 0.18, + "window_interior_shading_summer": 0.7, + "window_interior_shading_winter": 0.85, + "window_left_wwr": 0.18, + "window_right_wwr": 0.18, + "window_shgc": 0.45, + "window_ufactor": 0.33 + }, + "measure_dir_name": "BuildResidentialHPXML" + } + ] +} \ No newline at end of file diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-vented-crawlspace.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-vented-crawlspace.osw new file mode 100644 index 00000000..6dfc71f4 --- /dev/null +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-vented-crawlspace.osw @@ -0,0 +1,341 @@ +{ + "measure_paths": [ + "../.." + ], + "steps": [ + { + "arguments": { + "air_leakage_house_pressure": 50, + "air_leakage_shielding_of_home": "auto", + "air_leakage_units": "ACH", + "air_leakage_value": 3, + "bathroom_fans_quantity": "0", + "ceiling_assembly_r": 39.3, + "ceiling_fan_cooling_setpoint_temp_offset": 0, + "ceiling_fan_efficiency": "auto", + "ceiling_fan_present": false, + "ceiling_fan_quantity": "auto", + "clothes_dryer_efficiency": "3.73", + "clothes_dryer_efficiency_type": "CombinedEnergyFactor", + "clothes_dryer_fuel_type": "electricity", + "clothes_dryer_location": "living space", + "clothes_dryer_usage_multiplier": 1.0, + "clothes_dryer_vented_flow_rate": "150.0", + "clothes_washer_capacity": "3.2", + "clothes_washer_efficiency": "1.21", + "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", + "clothes_washer_label_annual_gas_cost": "27.0", + "clothes_washer_label_electric_rate": "0.12", + "clothes_washer_label_gas_rate": "1.09", + "clothes_washer_label_usage": "6.0", + "clothes_washer_location": "living space", + "clothes_washer_rated_annual_kwh": "380.0", + "clothes_washer_usage_multiplier": 1.0, + "cooking_range_oven_fuel_type": "electricity", + "cooking_range_oven_is_convection": false, + "cooking_range_oven_is_induction": false, + "cooking_range_oven_location": "living space", + "cooking_range_oven_usage_multiplier": 1.0, + "cooling_system_cooling_capacity": "48000.0", + "cooling_system_cooling_compressor_type": "single stage", + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", + "cooling_system_cooling_sensible_heat_fraction": 0.73, + "cooling_system_fraction_cool_load_served": 1, + "cooling_system_is_ducted": false, + "cooling_system_type": "central air conditioner", + "dehumidifier_capacity": 40, + "dehumidifier_efficiency": 1.8, + "dehumidifier_efficiency_type": "EnergyFactor", + "dehumidifier_fraction_dehumidification_load_served": 1, + "dehumidifier_rh_setpoint": 0.5, + "dehumidifier_type": "none", + "dhw_distribution_pipe_r": "0.0", + "dhw_distribution_recirc_branch_piping_length": "50", + "dhw_distribution_recirc_control_type": "no control", + "dhw_distribution_recirc_piping_length": "50", + "dhw_distribution_recirc_pump_power": "50", + "dhw_distribution_standard_piping_length": "50", + "dhw_distribution_system_type": "Standard", + "dishwasher_efficiency": "307", + "dishwasher_efficiency_type": "RatedAnnualkWh", + "dishwasher_label_annual_gas_cost": "22.32", + "dishwasher_label_electric_rate": "0.12", + "dishwasher_label_gas_rate": "1.09", + "dishwasher_label_usage": "4.0", + "dishwasher_location": "living space", + "dishwasher_place_setting_capacity": "12", + "dishwasher_usage_multiplier": 1.0, + "door_area": 20.0, + "door_rvalue": 4.4, + "ducts_number_of_return_registers": "1", + "ducts_return_insulation_r": 0.0, + "ducts_return_leakage_units": "CFM25", + "ducts_return_leakage_value": 0.0, + "ducts_return_location": "living space", + "ducts_return_surface_area": "50.0", + "ducts_supply_insulation_r": 0.0, + "ducts_supply_leakage_units": "CFM25", + "ducts_supply_leakage_value": 0.0, + "ducts_supply_location": "living space", + "ducts_supply_surface_area": "150.0", + "dwhr_efficiency": 0.55, + "dwhr_equal_flow": true, + "dwhr_facilities_connected": "none", + "extra_refrigerator_location": "none", + "extra_refrigerator_rated_annual_kwh": "auto", + "extra_refrigerator_usage_multiplier": 1.0, + "floor_assembly_r": 18.7, + "foundation_wall_insulation_distance_to_bottom": 4.0, + "foundation_wall_insulation_distance_to_top": 0.0, + "foundation_wall_insulation_r": 8.9, + "foundation_wall_thickness": "8.0", + "freezer_location": "none", + "freezer_rated_annual_kwh": "auto", + "freezer_usage_multiplier": 1.0, + "fuel_loads_fireplace_annual_therm": "auto", + "fuel_loads_fireplace_frac_latent": "auto", + "fuel_loads_fireplace_frac_sensible": "auto", + "fuel_loads_fireplace_fuel_type": "natural gas", + "fuel_loads_fireplace_present": false, + "fuel_loads_fireplace_usage_multiplier": 0.0, + "fuel_loads_grill_annual_therm": "auto", + "fuel_loads_grill_fuel_type": "natural gas", + "fuel_loads_grill_present": false, + "fuel_loads_grill_usage_multiplier": 0.0, + "fuel_loads_lighting_annual_therm": "auto", + "fuel_loads_lighting_fuel_type": "natural gas", + "fuel_loads_lighting_present": false, + "fuel_loads_lighting_usage_multiplier": 0.0, + "geometry_aspect_ratio": 1.5, + "geometry_attic_type": "UnventedAttic", + "geometry_balcony_depth": 0.0, + "geometry_building_num_bedrooms": 150, + "geometry_building_num_units": 50, + "geometry_cfa": 900.0, + "geometry_corridor_position": "None", + "geometry_corridor_width": 10.0, + "geometry_eaves_depth": 0, + "geometry_foundation_height": 4.0, + "geometry_foundation_height_above_grade": 1.0, + "geometry_foundation_type": "VentedCrawlspace", + "geometry_garage_depth": 20.0, + "geometry_garage_position": "Right", + "geometry_garage_protrusion": 0.0, + "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", + "geometry_horizontal_location": "Left", + "geometry_inset_depth": 0.0, + "geometry_inset_position": "Right", + "geometry_inset_width": 0.0, + "geometry_level": "Middle", + "geometry_num_bathrooms": "2", + "geometry_num_bedrooms": 3, + "geometry_num_floors_above_grade": 5, + "geometry_num_occupants": "3", + "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, + "geometry_roof_pitch": "6:12", + "geometry_roof_type": "gable", + "geometry_unit_type": "apartment unit", + "geometry_wall_height": 8.0, + "heat_pump_backup_fuel": "none", + "heat_pump_backup_heating_capacity": "34121.0", + "heat_pump_backup_heating_efficiency": 1, + "heat_pump_cooling_capacity": "48000.0", + "heat_pump_cooling_compressor_type": "single stage", + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", + "heat_pump_cooling_sensible_heat_fraction": 0.73, + "heat_pump_fraction_cool_load_served": 1, + "heat_pump_fraction_heat_load_served": 1, + "heat_pump_heating_capacity": "64000.0", + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", + "heat_pump_type": "none", + "heating_system_fraction_heat_load_served": 1, + "heating_system_fraction_heat_load_served_2": 0.25, + "heating_system_fuel": "natural gas", + "heating_system_fuel_2": "electricity", + "heating_system_heating_capacity": "64000.0", + "heating_system_heating_capacity_2": "auto", + "heating_system_heating_efficiency": 0.92, + "heating_system_heating_efficiency_2": 1.0, + "heating_system_type": "Furnace", + "heating_system_type_2": "none", + "holiday_lighting_daily_kwh": "auto", + "holiday_lighting_period_begin_day_of_month": "auto", + "holiday_lighting_period_begin_month": "auto", + "holiday_lighting_period_end_day_of_month": "auto", + "holiday_lighting_period_end_month": "auto", + "holiday_lighting_present": false, + "hot_tub_heater_annual_kwh": "auto", + "hot_tub_heater_annual_therm": "auto", + "hot_tub_heater_type": "electric resistance", + "hot_tub_heater_usage_multiplier": 1.0, + "hot_tub_present": false, + "hot_tub_pump_annual_kwh": "auto", + "hot_tub_pump_usage_multiplier": 1.0, + "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/extra-bldgtype-multifamily-vented-crawlspace.xml", + "kitchen_fans_quantity": "0", + "lighting_fraction_cfl_exterior": 0.4, + "lighting_fraction_cfl_garage": 0.4, + "lighting_fraction_cfl_interior": 0.4, + "lighting_fraction_led_exterior": 0.25, + "lighting_fraction_led_garage": 0.25, + "lighting_fraction_led_interior": 0.25, + "lighting_fraction_lfl_exterior": 0.1, + "lighting_fraction_lfl_garage": 0.1, + "lighting_fraction_lfl_interior": 0.1, + "lighting_usage_multiplier_exterior": 1.0, + "lighting_usage_multiplier_garage": 1.0, + "lighting_usage_multiplier_interior": 1.0, + "mech_vent_fan_power": 30, + "mech_vent_fan_power_2": 30, + "mech_vent_fan_type": "none", + "mech_vent_fan_type_2": "none", + "mech_vent_flow_rate": 110, + "mech_vent_flow_rate_2": 110, + "mech_vent_hours_in_operation": 24, + "mech_vent_hours_in_operation_2": 24, + "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", + "mech_vent_sensible_recovery_efficiency": 0.72, + "mech_vent_sensible_recovery_efficiency_2": 0.72, + "mech_vent_total_recovery_efficiency": 0.48, + "mech_vent_total_recovery_efficiency_2": 0.48, + "neighbor_back_distance": 0, + "neighbor_back_height": "auto", + "neighbor_front_distance": 0, + "neighbor_front_height": "auto", + "neighbor_left_distance": 0, + "neighbor_left_height": "auto", + "neighbor_right_distance": 0, + "neighbor_right_height": "auto", + "overhangs_back_depth": 0, + "overhangs_back_distance_to_top_of_window": 0, + "overhangs_front_depth": 0, + "overhangs_front_distance_to_top_of_window": 0, + "overhangs_left_depth": 0, + "overhangs_left_distance_to_top_of_window": 0, + "overhangs_right_depth": 0, + "overhangs_right_distance_to_top_of_window": 0, + "plug_loads_other_annual_kwh": "819.0", + "plug_loads_other_frac_latent": "0.045", + "plug_loads_other_frac_sensible": "0.855", + "plug_loads_other_usage_multiplier": 1.0, + "plug_loads_television_annual_kwh": "620.0", + "plug_loads_television_usage_multiplier": 1.0, + "plug_loads_vehicle_annual_kwh": "auto", + "plug_loads_vehicle_present": false, + "plug_loads_vehicle_usage_multiplier": 0.0, + "plug_loads_well_pump_annual_kwh": "auto", + "plug_loads_well_pump_present": false, + "plug_loads_well_pump_usage_multiplier": 0.0, + "pool_heater_annual_kwh": "auto", + "pool_heater_annual_therm": "auto", + "pool_heater_type": "electric resistance", + "pool_heater_usage_multiplier": 1.0, + "pool_present": false, + "pool_pump_annual_kwh": "auto", + "pool_pump_usage_multiplier": 1.0, + "pv_system_array_azimuth_1": 180, + "pv_system_array_azimuth_2": 180, + "pv_system_array_tilt_1": "20", + "pv_system_array_tilt_2": "20", + "pv_system_inverter_efficiency_1": 0.96, + "pv_system_inverter_efficiency_2": 0.96, + "pv_system_location_1": "auto", + "pv_system_location_2": "auto", + "pv_system_max_power_output_1": 4000, + "pv_system_max_power_output_2": 4000, + "pv_system_module_type_1": "none", + "pv_system_module_type_2": "none", + "pv_system_num_units_served_1": 1, + "pv_system_num_units_served_2": 1, + "pv_system_system_losses_fraction_1": 0.14, + "pv_system_system_losses_fraction_2": 0.14, + "pv_system_tracking_1": "auto", + "pv_system_tracking_2": "auto", + "refrigerator_location": "living space", + "refrigerator_rated_annual_kwh": "650.0", + "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, + "roof_assembly_r": 2.3, + "roof_color": "medium", + "roof_material_type": "asphalt or fiberglass shingles", + "roof_radiant_barrier": false, + "roof_radiant_barrier_grade": "1", + "schedules_type": "default", + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", + "simulation_control_timestep": "60", + "site_type": "suburban", + "skylight_area_back": 0, + "skylight_area_front": 0, + "skylight_area_left": 0, + "skylight_area_right": 0, + "skylight_shgc": 0.45, + "skylight_ufactor": 0.33, + "slab_carpet_fraction": "0.0", + "slab_carpet_r": "0.0", + "slab_perimeter_depth": 0, + "slab_perimeter_insulation_r": 0, + "slab_thickness": "4.0", + "slab_under_insulation_r": 0, + "slab_under_width": 0, + "solar_thermal_collector_area": 40.0, + "solar_thermal_collector_azimuth": 180, + "solar_thermal_collector_loop_type": "liquid direct", + "solar_thermal_collector_rated_optical_efficiency": 0.5, + "solar_thermal_collector_rated_thermal_losses": 0.2799, + "solar_thermal_collector_tilt": "20", + "solar_thermal_collector_type": "evacuated tube", + "solar_thermal_solar_fraction": 0, + "solar_thermal_storage_volume": "auto", + "solar_thermal_system_type": "none", + "wall_assembly_r": 23, + "wall_color": "medium", + "wall_siding_type": "wood siding", + "wall_type": "WoodStud", + "water_fixtures_shower_low_flow": true, + "water_fixtures_sink_low_flow": false, + "water_fixtures_usage_multiplier": 1.0, + "water_heater_efficiency": 0.95, + "water_heater_efficiency_type": "EnergyFactor", + "water_heater_fuel_type": "electricity", + "water_heater_jacket_rvalue": 0, + "water_heater_location": "living space", + "water_heater_num_units_served": 1, + "water_heater_recovery_efficiency": "0.76", + "water_heater_setpoint_temperature": "125", + "water_heater_standby_loss": 0, + "water_heater_tank_volume": "40", + "water_heater_type": "storage water heater", + "weather_station_epw_filepath": "USA_CO_Denver.Intl.AP.725650_TMY3.epw", + "whole_house_fan_flow_rate": 4500, + "whole_house_fan_power": 300, + "whole_house_fan_present": false, + "window_area_back": 0, + "window_area_front": 0, + "window_area_left": 0, + "window_area_right": 0, + "window_aspect_ratio": 1.333, + "window_back_wwr": 0.18, + "window_fraction_operable": 0.67, + "window_front_wwr": 0.18, + "window_interior_shading_summer": 0.7, + "window_interior_shading_winter": 0.85, + "window_left_wwr": 0.18, + "window_right_wwr": 0.18, + "window_shgc": 0.45, + "window_ufactor": 0.33 + }, + "measure_dir_name": "BuildResidentialHPXML" + } + ] +} \ No newline at end of file diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-single-family-attached-atticroof-conditioned-eaves-gable.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-single-family-attached-atticroof-conditioned-eaves-gable.osw new file mode 100644 index 00000000..62c7842f --- /dev/null +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-single-family-attached-atticroof-conditioned-eaves-gable.osw @@ -0,0 +1,339 @@ +{ + "measure_paths": [ + "../.." + ], + "steps": [ + { + "arguments": { + "air_leakage_house_pressure": 50, + "air_leakage_shielding_of_home": "auto", + "air_leakage_units": "ACH", + "air_leakage_value": 3, + "bathroom_fans_quantity": "0", + "ceiling_assembly_r": 39.3, + "ceiling_fan_cooling_setpoint_temp_offset": 0, + "ceiling_fan_efficiency": "auto", + "ceiling_fan_present": false, + "ceiling_fan_quantity": "auto", + "clothes_dryer_efficiency": "3.73", + "clothes_dryer_efficiency_type": "CombinedEnergyFactor", + "clothes_dryer_fuel_type": "electricity", + "clothes_dryer_location": "living space", + "clothes_dryer_usage_multiplier": 1.0, + "clothes_dryer_vented_flow_rate": "150.0", + "clothes_washer_capacity": "3.2", + "clothes_washer_efficiency": "1.21", + "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", + "clothes_washer_label_annual_gas_cost": "27.0", + "clothes_washer_label_electric_rate": "0.12", + "clothes_washer_label_gas_rate": "1.09", + "clothes_washer_label_usage": "6.0", + "clothes_washer_location": "living space", + "clothes_washer_rated_annual_kwh": "380.0", + "clothes_washer_usage_multiplier": 1.0, + "cooking_range_oven_fuel_type": "electricity", + "cooking_range_oven_is_convection": false, + "cooking_range_oven_is_induction": false, + "cooking_range_oven_location": "living space", + "cooking_range_oven_usage_multiplier": 1.0, + "cooling_system_cooling_capacity": "48000.0", + "cooling_system_cooling_compressor_type": "single stage", + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", + "cooling_system_cooling_sensible_heat_fraction": 0.73, + "cooling_system_fraction_cool_load_served": 1, + "cooling_system_is_ducted": false, + "cooling_system_type": "central air conditioner", + "dehumidifier_capacity": 40, + "dehumidifier_efficiency": 1.8, + "dehumidifier_efficiency_type": "EnergyFactor", + "dehumidifier_fraction_dehumidification_load_served": 1, + "dehumidifier_rh_setpoint": 0.5, + "dehumidifier_type": "none", + "dhw_distribution_pipe_r": "0.0", + "dhw_distribution_recirc_branch_piping_length": "50", + "dhw_distribution_recirc_control_type": "no control", + "dhw_distribution_recirc_piping_length": "50", + "dhw_distribution_recirc_pump_power": "50", + "dhw_distribution_standard_piping_length": "50", + "dhw_distribution_system_type": "Standard", + "dishwasher_efficiency": "307", + "dishwasher_efficiency_type": "RatedAnnualkWh", + "dishwasher_label_annual_gas_cost": "22.32", + "dishwasher_label_electric_rate": "0.12", + "dishwasher_label_gas_rate": "1.09", + "dishwasher_label_usage": "4.0", + "dishwasher_location": "living space", + "dishwasher_place_setting_capacity": "12", + "dishwasher_usage_multiplier": 1.0, + "door_area": 80.0, + "door_rvalue": 4.4, + "ducts_number_of_return_registers": "2", + "ducts_return_insulation_r": 0.0, + "ducts_return_leakage_units": "CFM25", + "ducts_return_leakage_value": 25.0, + "ducts_return_location": "living space", + "ducts_return_surface_area": "50.0", + "ducts_supply_insulation_r": 4.0, + "ducts_supply_leakage_units": "CFM25", + "ducts_supply_leakage_value": 75.0, + "ducts_supply_location": "living space", + "ducts_supply_surface_area": "150.0", + "dwhr_efficiency": 0.55, + "dwhr_equal_flow": true, + "dwhr_facilities_connected": "none", + "extra_refrigerator_location": "none", + "extra_refrigerator_rated_annual_kwh": "auto", + "extra_refrigerator_usage_multiplier": 1.0, + "floor_assembly_r": 0, + "foundation_wall_insulation_distance_to_bottom": "auto", + "foundation_wall_insulation_distance_to_top": 0.0, + "foundation_wall_insulation_r": 8.9, + "foundation_wall_thickness": "8.0", + "freezer_location": "none", + "freezer_rated_annual_kwh": "auto", + "freezer_usage_multiplier": 1.0, + "fuel_loads_fireplace_annual_therm": "auto", + "fuel_loads_fireplace_frac_latent": "auto", + "fuel_loads_fireplace_frac_sensible": "auto", + "fuel_loads_fireplace_fuel_type": "natural gas", + "fuel_loads_fireplace_present": false, + "fuel_loads_fireplace_usage_multiplier": 0.0, + "fuel_loads_grill_annual_therm": "auto", + "fuel_loads_grill_fuel_type": "natural gas", + "fuel_loads_grill_present": false, + "fuel_loads_grill_usage_multiplier": 0.0, + "fuel_loads_lighting_annual_therm": "auto", + "fuel_loads_lighting_fuel_type": "natural gas", + "fuel_loads_lighting_present": false, + "fuel_loads_lighting_usage_multiplier": 0.0, + "geometry_aspect_ratio": 1.5, + "geometry_attic_type": "ConditionedAttic", + "geometry_balcony_depth": 0.0, + "geometry_building_num_units": 3, + "geometry_cfa": 1800.0, + "geometry_corridor_position": "None", + "geometry_corridor_width": 10.0, + "geometry_eaves_depth": 2, + "geometry_foundation_height": 0.0, + "geometry_foundation_height_above_grade": 0.0, + "geometry_foundation_type": "SlabOnGrade", + "geometry_garage_depth": 20.0, + "geometry_garage_position": "Right", + "geometry_garage_protrusion": 0.0, + "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", + "geometry_horizontal_location": "Left", + "geometry_inset_depth": 0.0, + "geometry_inset_position": "Right", + "geometry_inset_width": 0.0, + "geometry_num_bathrooms": "2", + "geometry_num_bedrooms": 3, + "geometry_num_floors_above_grade": 2, + "geometry_num_occupants": "3", + "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, + "geometry_roof_pitch": "6:12", + "geometry_roof_type": "gable", + "geometry_unit_type": "single-family attached", + "geometry_wall_height": 8.0, + "heat_pump_backup_fuel": "none", + "heat_pump_backup_heating_capacity": "34121.0", + "heat_pump_backup_heating_efficiency": 1, + "heat_pump_cooling_capacity": "48000.0", + "heat_pump_cooling_compressor_type": "single stage", + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", + "heat_pump_cooling_sensible_heat_fraction": 0.73, + "heat_pump_fraction_cool_load_served": 1, + "heat_pump_fraction_heat_load_served": 1, + "heat_pump_heating_capacity": "64000.0", + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", + "heat_pump_type": "none", + "heating_system_fraction_heat_load_served": 1, + "heating_system_fraction_heat_load_served_2": 0.25, + "heating_system_fuel": "natural gas", + "heating_system_fuel_2": "electricity", + "heating_system_heating_capacity": "64000.0", + "heating_system_heating_capacity_2": "auto", + "heating_system_heating_efficiency": 0.92, + "heating_system_heating_efficiency_2": 1.0, + "heating_system_type": "Furnace", + "heating_system_type_2": "none", + "holiday_lighting_daily_kwh": "auto", + "holiday_lighting_period_begin_day_of_month": "auto", + "holiday_lighting_period_begin_month": "auto", + "holiday_lighting_period_end_day_of_month": "auto", + "holiday_lighting_period_end_month": "auto", + "holiday_lighting_present": false, + "hot_tub_heater_annual_kwh": "auto", + "hot_tub_heater_annual_therm": "auto", + "hot_tub_heater_type": "electric resistance", + "hot_tub_heater_usage_multiplier": 1.0, + "hot_tub_present": false, + "hot_tub_pump_annual_kwh": "auto", + "hot_tub_pump_usage_multiplier": 1.0, + "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/extra-bldgtype-single-family-attached-atticroof-conditioned-eaves-gable.xml", + "kitchen_fans_quantity": "0", + "lighting_fraction_cfl_exterior": 0.4, + "lighting_fraction_cfl_garage": 0.4, + "lighting_fraction_cfl_interior": 0.4, + "lighting_fraction_led_exterior": 0.25, + "lighting_fraction_led_garage": 0.25, + "lighting_fraction_led_interior": 0.25, + "lighting_fraction_lfl_exterior": 0.1, + "lighting_fraction_lfl_garage": 0.1, + "lighting_fraction_lfl_interior": 0.1, + "lighting_usage_multiplier_exterior": 1.0, + "lighting_usage_multiplier_garage": 1.0, + "lighting_usage_multiplier_interior": 1.0, + "mech_vent_fan_power": 30, + "mech_vent_fan_power_2": 30, + "mech_vent_fan_type": "none", + "mech_vent_fan_type_2": "none", + "mech_vent_flow_rate": 110, + "mech_vent_flow_rate_2": 110, + "mech_vent_hours_in_operation": 24, + "mech_vent_hours_in_operation_2": 24, + "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", + "mech_vent_sensible_recovery_efficiency": 0.72, + "mech_vent_sensible_recovery_efficiency_2": 0.72, + "mech_vent_total_recovery_efficiency": 0.48, + "mech_vent_total_recovery_efficiency_2": 0.48, + "neighbor_back_distance": 0, + "neighbor_back_height": "auto", + "neighbor_front_distance": 0, + "neighbor_front_height": "auto", + "neighbor_left_distance": 0, + "neighbor_left_height": "auto", + "neighbor_right_distance": 0, + "neighbor_right_height": "auto", + "overhangs_back_depth": 0, + "overhangs_back_distance_to_top_of_window": 0, + "overhangs_front_depth": 0, + "overhangs_front_distance_to_top_of_window": 0, + "overhangs_left_depth": 0, + "overhangs_left_distance_to_top_of_window": 0, + "overhangs_right_depth": 0, + "overhangs_right_distance_to_top_of_window": 0, + "plug_loads_other_annual_kwh": "1638.0", + "plug_loads_other_frac_latent": "0.045", + "plug_loads_other_frac_sensible": "0.855", + "plug_loads_other_usage_multiplier": 1.0, + "plug_loads_television_annual_kwh": "620.0", + "plug_loads_television_usage_multiplier": 1.0, + "plug_loads_vehicle_annual_kwh": "auto", + "plug_loads_vehicle_present": false, + "plug_loads_vehicle_usage_multiplier": 0.0, + "plug_loads_well_pump_annual_kwh": "auto", + "plug_loads_well_pump_present": false, + "plug_loads_well_pump_usage_multiplier": 0.0, + "pool_heater_annual_kwh": "auto", + "pool_heater_annual_therm": "auto", + "pool_heater_type": "electric resistance", + "pool_heater_usage_multiplier": 1.0, + "pool_present": false, + "pool_pump_annual_kwh": "auto", + "pool_pump_usage_multiplier": 1.0, + "pv_system_array_azimuth_1": 180, + "pv_system_array_azimuth_2": 180, + "pv_system_array_tilt_1": "20", + "pv_system_array_tilt_2": "20", + "pv_system_inverter_efficiency_1": 0.96, + "pv_system_inverter_efficiency_2": 0.96, + "pv_system_location_1": "auto", + "pv_system_location_2": "auto", + "pv_system_max_power_output_1": 4000, + "pv_system_max_power_output_2": 4000, + "pv_system_module_type_1": "none", + "pv_system_module_type_2": "none", + "pv_system_num_units_served_1": 1, + "pv_system_num_units_served_2": 1, + "pv_system_system_losses_fraction_1": 0.14, + "pv_system_system_losses_fraction_2": 0.14, + "pv_system_tracking_1": "auto", + "pv_system_tracking_2": "auto", + "refrigerator_location": "living space", + "refrigerator_rated_annual_kwh": "650.0", + "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, + "roof_assembly_r": 2.3, + "roof_color": "medium", + "roof_material_type": "asphalt or fiberglass shingles", + "roof_radiant_barrier": false, + "roof_radiant_barrier_grade": "1", + "schedules_type": "default", + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", + "simulation_control_timestep": "60", + "site_type": "suburban", + "skylight_area_back": 0, + "skylight_area_front": 0, + "skylight_area_left": 0, + "skylight_area_right": 0, + "skylight_shgc": 0.45, + "skylight_ufactor": 0.33, + "slab_carpet_fraction": "0.0", + "slab_carpet_r": "0.0", + "slab_perimeter_depth": 0, + "slab_perimeter_insulation_r": 0, + "slab_thickness": "4.0", + "slab_under_insulation_r": 0, + "slab_under_width": 0, + "solar_thermal_collector_area": 40.0, + "solar_thermal_collector_azimuth": 180, + "solar_thermal_collector_loop_type": "liquid direct", + "solar_thermal_collector_rated_optical_efficiency": 0.5, + "solar_thermal_collector_rated_thermal_losses": 0.2799, + "solar_thermal_collector_tilt": "20", + "solar_thermal_collector_type": "evacuated tube", + "solar_thermal_solar_fraction": 0, + "solar_thermal_storage_volume": "auto", + "solar_thermal_system_type": "none", + "wall_assembly_r": 23, + "wall_color": "medium", + "wall_siding_type": "wood siding", + "wall_type": "WoodStud", + "water_fixtures_shower_low_flow": true, + "water_fixtures_sink_low_flow": false, + "water_fixtures_usage_multiplier": 1.0, + "water_heater_efficiency": 0.95, + "water_heater_efficiency_type": "EnergyFactor", + "water_heater_fuel_type": "electricity", + "water_heater_jacket_rvalue": 0, + "water_heater_location": "living space", + "water_heater_num_units_served": 1, + "water_heater_recovery_efficiency": "0.76", + "water_heater_setpoint_temperature": "125", + "water_heater_standby_loss": 0, + "water_heater_tank_volume": "40", + "water_heater_type": "storage water heater", + "weather_station_epw_filepath": "USA_CO_Denver.Intl.AP.725650_TMY3.epw", + "whole_house_fan_flow_rate": 4500, + "whole_house_fan_power": 300, + "whole_house_fan_present": false, + "window_area_back": 0, + "window_area_front": 0, + "window_area_left": 0, + "window_area_right": 0, + "window_aspect_ratio": 1.333, + "window_back_wwr": 0.18, + "window_fraction_operable": 0.67, + "window_front_wwr": 0.18, + "window_interior_shading_summer": 0.7, + "window_interior_shading_winter": 0.85, + "window_left_wwr": 0.18, + "window_right_wwr": 0.18, + "window_shgc": 0.45, + "window_ufactor": 0.33 + }, + "measure_dir_name": "BuildResidentialHPXML" + } + ] +} \ No newline at end of file diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-single-family-attached-atticroof-conditioned-eaves-hip.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-single-family-attached-atticroof-conditioned-eaves-hip.osw new file mode 100644 index 00000000..3f1bbf78 --- /dev/null +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-single-family-attached-atticroof-conditioned-eaves-hip.osw @@ -0,0 +1,339 @@ +{ + "measure_paths": [ + "../.." + ], + "steps": [ + { + "arguments": { + "air_leakage_house_pressure": 50, + "air_leakage_shielding_of_home": "auto", + "air_leakage_units": "ACH", + "air_leakage_value": 3, + "bathroom_fans_quantity": "0", + "ceiling_assembly_r": 39.3, + "ceiling_fan_cooling_setpoint_temp_offset": 0, + "ceiling_fan_efficiency": "auto", + "ceiling_fan_present": false, + "ceiling_fan_quantity": "auto", + "clothes_dryer_efficiency": "3.73", + "clothes_dryer_efficiency_type": "CombinedEnergyFactor", + "clothes_dryer_fuel_type": "electricity", + "clothes_dryer_location": "living space", + "clothes_dryer_usage_multiplier": 1.0, + "clothes_dryer_vented_flow_rate": "150.0", + "clothes_washer_capacity": "3.2", + "clothes_washer_efficiency": "1.21", + "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", + "clothes_washer_label_annual_gas_cost": "27.0", + "clothes_washer_label_electric_rate": "0.12", + "clothes_washer_label_gas_rate": "1.09", + "clothes_washer_label_usage": "6.0", + "clothes_washer_location": "living space", + "clothes_washer_rated_annual_kwh": "380.0", + "clothes_washer_usage_multiplier": 1.0, + "cooking_range_oven_fuel_type": "electricity", + "cooking_range_oven_is_convection": false, + "cooking_range_oven_is_induction": false, + "cooking_range_oven_location": "living space", + "cooking_range_oven_usage_multiplier": 1.0, + "cooling_system_cooling_capacity": "48000.0", + "cooling_system_cooling_compressor_type": "single stage", + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", + "cooling_system_cooling_sensible_heat_fraction": 0.73, + "cooling_system_fraction_cool_load_served": 1, + "cooling_system_is_ducted": false, + "cooling_system_type": "central air conditioner", + "dehumidifier_capacity": 40, + "dehumidifier_efficiency": 1.8, + "dehumidifier_efficiency_type": "EnergyFactor", + "dehumidifier_fraction_dehumidification_load_served": 1, + "dehumidifier_rh_setpoint": 0.5, + "dehumidifier_type": "none", + "dhw_distribution_pipe_r": "0.0", + "dhw_distribution_recirc_branch_piping_length": "50", + "dhw_distribution_recirc_control_type": "no control", + "dhw_distribution_recirc_piping_length": "50", + "dhw_distribution_recirc_pump_power": "50", + "dhw_distribution_standard_piping_length": "50", + "dhw_distribution_system_type": "Standard", + "dishwasher_efficiency": "307", + "dishwasher_efficiency_type": "RatedAnnualkWh", + "dishwasher_label_annual_gas_cost": "22.32", + "dishwasher_label_electric_rate": "0.12", + "dishwasher_label_gas_rate": "1.09", + "dishwasher_label_usage": "4.0", + "dishwasher_location": "living space", + "dishwasher_place_setting_capacity": "12", + "dishwasher_usage_multiplier": 1.0, + "door_area": 80.0, + "door_rvalue": 4.4, + "ducts_number_of_return_registers": "2", + "ducts_return_insulation_r": 0.0, + "ducts_return_leakage_units": "CFM25", + "ducts_return_leakage_value": 25.0, + "ducts_return_location": "living space", + "ducts_return_surface_area": "50.0", + "ducts_supply_insulation_r": 4.0, + "ducts_supply_leakage_units": "CFM25", + "ducts_supply_leakage_value": 75.0, + "ducts_supply_location": "living space", + "ducts_supply_surface_area": "150.0", + "dwhr_efficiency": 0.55, + "dwhr_equal_flow": true, + "dwhr_facilities_connected": "none", + "extra_refrigerator_location": "none", + "extra_refrigerator_rated_annual_kwh": "auto", + "extra_refrigerator_usage_multiplier": 1.0, + "floor_assembly_r": 0, + "foundation_wall_insulation_distance_to_bottom": "auto", + "foundation_wall_insulation_distance_to_top": 0.0, + "foundation_wall_insulation_r": 8.9, + "foundation_wall_thickness": "8.0", + "freezer_location": "none", + "freezer_rated_annual_kwh": "auto", + "freezer_usage_multiplier": 1.0, + "fuel_loads_fireplace_annual_therm": "auto", + "fuel_loads_fireplace_frac_latent": "auto", + "fuel_loads_fireplace_frac_sensible": "auto", + "fuel_loads_fireplace_fuel_type": "natural gas", + "fuel_loads_fireplace_present": false, + "fuel_loads_fireplace_usage_multiplier": 0.0, + "fuel_loads_grill_annual_therm": "auto", + "fuel_loads_grill_fuel_type": "natural gas", + "fuel_loads_grill_present": false, + "fuel_loads_grill_usage_multiplier": 0.0, + "fuel_loads_lighting_annual_therm": "auto", + "fuel_loads_lighting_fuel_type": "natural gas", + "fuel_loads_lighting_present": false, + "fuel_loads_lighting_usage_multiplier": 0.0, + "geometry_aspect_ratio": 1.5, + "geometry_attic_type": "ConditionedAttic", + "geometry_balcony_depth": 0.0, + "geometry_building_num_units": 3, + "geometry_cfa": 1800.0, + "geometry_corridor_position": "None", + "geometry_corridor_width": 10.0, + "geometry_eaves_depth": 2, + "geometry_foundation_height": 0.0, + "geometry_foundation_height_above_grade": 0.0, + "geometry_foundation_type": "SlabOnGrade", + "geometry_garage_depth": 20.0, + "geometry_garage_position": "Right", + "geometry_garage_protrusion": 0.0, + "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", + "geometry_horizontal_location": "Left", + "geometry_inset_depth": 0.0, + "geometry_inset_position": "Right", + "geometry_inset_width": 0.0, + "geometry_num_bathrooms": "2", + "geometry_num_bedrooms": 3, + "geometry_num_floors_above_grade": 2, + "geometry_num_occupants": "3", + "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, + "geometry_roof_pitch": "6:12", + "geometry_roof_type": "hip", + "geometry_unit_type": "single-family attached", + "geometry_wall_height": 8.0, + "heat_pump_backup_fuel": "none", + "heat_pump_backup_heating_capacity": "34121.0", + "heat_pump_backup_heating_efficiency": 1, + "heat_pump_cooling_capacity": "48000.0", + "heat_pump_cooling_compressor_type": "single stage", + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", + "heat_pump_cooling_sensible_heat_fraction": 0.73, + "heat_pump_fraction_cool_load_served": 1, + "heat_pump_fraction_heat_load_served": 1, + "heat_pump_heating_capacity": "64000.0", + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", + "heat_pump_type": "none", + "heating_system_fraction_heat_load_served": 1, + "heating_system_fraction_heat_load_served_2": 0.25, + "heating_system_fuel": "natural gas", + "heating_system_fuel_2": "electricity", + "heating_system_heating_capacity": "64000.0", + "heating_system_heating_capacity_2": "auto", + "heating_system_heating_efficiency": 0.92, + "heating_system_heating_efficiency_2": 1.0, + "heating_system_type": "Furnace", + "heating_system_type_2": "none", + "holiday_lighting_daily_kwh": "auto", + "holiday_lighting_period_begin_day_of_month": "auto", + "holiday_lighting_period_begin_month": "auto", + "holiday_lighting_period_end_day_of_month": "auto", + "holiday_lighting_period_end_month": "auto", + "holiday_lighting_present": false, + "hot_tub_heater_annual_kwh": "auto", + "hot_tub_heater_annual_therm": "auto", + "hot_tub_heater_type": "electric resistance", + "hot_tub_heater_usage_multiplier": 1.0, + "hot_tub_present": false, + "hot_tub_pump_annual_kwh": "auto", + "hot_tub_pump_usage_multiplier": 1.0, + "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/extra-bldgtype-single-family-attached-atticroof-conditioned-eaves-hip.xml", + "kitchen_fans_quantity": "0", + "lighting_fraction_cfl_exterior": 0.4, + "lighting_fraction_cfl_garage": 0.4, + "lighting_fraction_cfl_interior": 0.4, + "lighting_fraction_led_exterior": 0.25, + "lighting_fraction_led_garage": 0.25, + "lighting_fraction_led_interior": 0.25, + "lighting_fraction_lfl_exterior": 0.1, + "lighting_fraction_lfl_garage": 0.1, + "lighting_fraction_lfl_interior": 0.1, + "lighting_usage_multiplier_exterior": 1.0, + "lighting_usage_multiplier_garage": 1.0, + "lighting_usage_multiplier_interior": 1.0, + "mech_vent_fan_power": 30, + "mech_vent_fan_power_2": 30, + "mech_vent_fan_type": "none", + "mech_vent_fan_type_2": "none", + "mech_vent_flow_rate": 110, + "mech_vent_flow_rate_2": 110, + "mech_vent_hours_in_operation": 24, + "mech_vent_hours_in_operation_2": 24, + "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", + "mech_vent_sensible_recovery_efficiency": 0.72, + "mech_vent_sensible_recovery_efficiency_2": 0.72, + "mech_vent_total_recovery_efficiency": 0.48, + "mech_vent_total_recovery_efficiency_2": 0.48, + "neighbor_back_distance": 0, + "neighbor_back_height": "auto", + "neighbor_front_distance": 0, + "neighbor_front_height": "auto", + "neighbor_left_distance": 0, + "neighbor_left_height": "auto", + "neighbor_right_distance": 0, + "neighbor_right_height": "auto", + "overhangs_back_depth": 0, + "overhangs_back_distance_to_top_of_window": 0, + "overhangs_front_depth": 0, + "overhangs_front_distance_to_top_of_window": 0, + "overhangs_left_depth": 0, + "overhangs_left_distance_to_top_of_window": 0, + "overhangs_right_depth": 0, + "overhangs_right_distance_to_top_of_window": 0, + "plug_loads_other_annual_kwh": "1638.0", + "plug_loads_other_frac_latent": "0.045", + "plug_loads_other_frac_sensible": "0.855", + "plug_loads_other_usage_multiplier": 1.0, + "plug_loads_television_annual_kwh": "620.0", + "plug_loads_television_usage_multiplier": 1.0, + "plug_loads_vehicle_annual_kwh": "auto", + "plug_loads_vehicle_present": false, + "plug_loads_vehicle_usage_multiplier": 0.0, + "plug_loads_well_pump_annual_kwh": "auto", + "plug_loads_well_pump_present": false, + "plug_loads_well_pump_usage_multiplier": 0.0, + "pool_heater_annual_kwh": "auto", + "pool_heater_annual_therm": "auto", + "pool_heater_type": "electric resistance", + "pool_heater_usage_multiplier": 1.0, + "pool_present": false, + "pool_pump_annual_kwh": "auto", + "pool_pump_usage_multiplier": 1.0, + "pv_system_array_azimuth_1": 180, + "pv_system_array_azimuth_2": 180, + "pv_system_array_tilt_1": "20", + "pv_system_array_tilt_2": "20", + "pv_system_inverter_efficiency_1": 0.96, + "pv_system_inverter_efficiency_2": 0.96, + "pv_system_location_1": "auto", + "pv_system_location_2": "auto", + "pv_system_max_power_output_1": 4000, + "pv_system_max_power_output_2": 4000, + "pv_system_module_type_1": "none", + "pv_system_module_type_2": "none", + "pv_system_num_units_served_1": 1, + "pv_system_num_units_served_2": 1, + "pv_system_system_losses_fraction_1": 0.14, + "pv_system_system_losses_fraction_2": 0.14, + "pv_system_tracking_1": "auto", + "pv_system_tracking_2": "auto", + "refrigerator_location": "living space", + "refrigerator_rated_annual_kwh": "650.0", + "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, + "roof_assembly_r": 2.3, + "roof_color": "medium", + "roof_material_type": "asphalt or fiberglass shingles", + "roof_radiant_barrier": false, + "roof_radiant_barrier_grade": "1", + "schedules_type": "default", + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", + "simulation_control_timestep": "60", + "site_type": "suburban", + "skylight_area_back": 0, + "skylight_area_front": 0, + "skylight_area_left": 0, + "skylight_area_right": 0, + "skylight_shgc": 0.45, + "skylight_ufactor": 0.33, + "slab_carpet_fraction": "0.0", + "slab_carpet_r": "0.0", + "slab_perimeter_depth": 0, + "slab_perimeter_insulation_r": 0, + "slab_thickness": "4.0", + "slab_under_insulation_r": 0, + "slab_under_width": 0, + "solar_thermal_collector_area": 40.0, + "solar_thermal_collector_azimuth": 180, + "solar_thermal_collector_loop_type": "liquid direct", + "solar_thermal_collector_rated_optical_efficiency": 0.5, + "solar_thermal_collector_rated_thermal_losses": 0.2799, + "solar_thermal_collector_tilt": "20", + "solar_thermal_collector_type": "evacuated tube", + "solar_thermal_solar_fraction": 0, + "solar_thermal_storage_volume": "auto", + "solar_thermal_system_type": "none", + "wall_assembly_r": 23, + "wall_color": "medium", + "wall_siding_type": "wood siding", + "wall_type": "WoodStud", + "water_fixtures_shower_low_flow": true, + "water_fixtures_sink_low_flow": false, + "water_fixtures_usage_multiplier": 1.0, + "water_heater_efficiency": 0.95, + "water_heater_efficiency_type": "EnergyFactor", + "water_heater_fuel_type": "electricity", + "water_heater_jacket_rvalue": 0, + "water_heater_location": "living space", + "water_heater_num_units_served": 1, + "water_heater_recovery_efficiency": "0.76", + "water_heater_setpoint_temperature": "125", + "water_heater_standby_loss": 0, + "water_heater_tank_volume": "40", + "water_heater_type": "storage water heater", + "weather_station_epw_filepath": "USA_CO_Denver.Intl.AP.725650_TMY3.epw", + "whole_house_fan_flow_rate": 4500, + "whole_house_fan_power": 300, + "whole_house_fan_present": false, + "window_area_back": 0, + "window_area_front": 0, + "window_area_left": 0, + "window_area_right": 0, + "window_aspect_ratio": 1.333, + "window_back_wwr": 0.18, + "window_fraction_operable": 0.67, + "window_front_wwr": 0.18, + "window_interior_shading_summer": 0.7, + "window_interior_shading_winter": 0.85, + "window_left_wwr": 0.18, + "window_right_wwr": 0.18, + "window_shgc": 0.45, + "window_ufactor": 0.33 + }, + "measure_dir_name": "BuildResidentialHPXML" + } + ] +} \ No newline at end of file diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-single-family-attached-double-exterior.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-single-family-attached-double-exterior.osw new file mode 100644 index 00000000..a9faab63 --- /dev/null +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-single-family-attached-double-exterior.osw @@ -0,0 +1,339 @@ +{ + "measure_paths": [ + "../.." + ], + "steps": [ + { + "arguments": { + "air_leakage_house_pressure": 50, + "air_leakage_shielding_of_home": "auto", + "air_leakage_units": "ACH", + "air_leakage_value": 3, + "bathroom_fans_quantity": "0", + "ceiling_assembly_r": 39.3, + "ceiling_fan_cooling_setpoint_temp_offset": 0, + "ceiling_fan_efficiency": "auto", + "ceiling_fan_present": false, + "ceiling_fan_quantity": "auto", + "clothes_dryer_efficiency": "3.73", + "clothes_dryer_efficiency_type": "CombinedEnergyFactor", + "clothes_dryer_fuel_type": "electricity", + "clothes_dryer_location": "living space", + "clothes_dryer_usage_multiplier": 1.0, + "clothes_dryer_vented_flow_rate": "150.0", + "clothes_washer_capacity": "3.2", + "clothes_washer_efficiency": "1.21", + "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", + "clothes_washer_label_annual_gas_cost": "27.0", + "clothes_washer_label_electric_rate": "0.12", + "clothes_washer_label_gas_rate": "1.09", + "clothes_washer_label_usage": "6.0", + "clothes_washer_location": "living space", + "clothes_washer_rated_annual_kwh": "380.0", + "clothes_washer_usage_multiplier": 1.0, + "cooking_range_oven_fuel_type": "electricity", + "cooking_range_oven_is_convection": false, + "cooking_range_oven_is_induction": false, + "cooking_range_oven_location": "living space", + "cooking_range_oven_usage_multiplier": 1.0, + "cooling_system_cooling_capacity": "48000.0", + "cooling_system_cooling_compressor_type": "single stage", + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", + "cooling_system_cooling_sensible_heat_fraction": 0.73, + "cooling_system_fraction_cool_load_served": 1, + "cooling_system_is_ducted": false, + "cooling_system_type": "central air conditioner", + "dehumidifier_capacity": 40, + "dehumidifier_efficiency": 1.8, + "dehumidifier_efficiency_type": "EnergyFactor", + "dehumidifier_fraction_dehumidification_load_served": 1, + "dehumidifier_rh_setpoint": 0.5, + "dehumidifier_type": "none", + "dhw_distribution_pipe_r": "0.0", + "dhw_distribution_recirc_branch_piping_length": "50", + "dhw_distribution_recirc_control_type": "no control", + "dhw_distribution_recirc_piping_length": "50", + "dhw_distribution_recirc_pump_power": "50", + "dhw_distribution_standard_piping_length": "50", + "dhw_distribution_system_type": "Standard", + "dishwasher_efficiency": "307", + "dishwasher_efficiency_type": "RatedAnnualkWh", + "dishwasher_label_annual_gas_cost": "22.32", + "dishwasher_label_electric_rate": "0.12", + "dishwasher_label_gas_rate": "1.09", + "dishwasher_label_usage": "4.0", + "dishwasher_location": "living space", + "dishwasher_place_setting_capacity": "12", + "dishwasher_usage_multiplier": 1.0, + "door_area": 80.0, + "door_rvalue": 4.4, + "ducts_number_of_return_registers": "2", + "ducts_return_insulation_r": 0.0, + "ducts_return_leakage_units": "CFM25", + "ducts_return_leakage_value": 25.0, + "ducts_return_location": "attic - unvented", + "ducts_return_surface_area": "50.0", + "ducts_supply_insulation_r": 4.0, + "ducts_supply_leakage_units": "CFM25", + "ducts_supply_leakage_value": 75.0, + "ducts_supply_location": "attic - unvented", + "ducts_supply_surface_area": "150.0", + "dwhr_efficiency": 0.55, + "dwhr_equal_flow": true, + "dwhr_facilities_connected": "none", + "extra_refrigerator_location": "none", + "extra_refrigerator_rated_annual_kwh": "auto", + "extra_refrigerator_usage_multiplier": 1.0, + "floor_assembly_r": 0, + "foundation_wall_insulation_distance_to_bottom": "auto", + "foundation_wall_insulation_distance_to_top": 0.0, + "foundation_wall_insulation_r": 8.9, + "foundation_wall_thickness": "8.0", + "freezer_location": "none", + "freezer_rated_annual_kwh": "auto", + "freezer_usage_multiplier": 1.0, + "fuel_loads_fireplace_annual_therm": "auto", + "fuel_loads_fireplace_frac_latent": "auto", + "fuel_loads_fireplace_frac_sensible": "auto", + "fuel_loads_fireplace_fuel_type": "natural gas", + "fuel_loads_fireplace_present": false, + "fuel_loads_fireplace_usage_multiplier": 0.0, + "fuel_loads_grill_annual_therm": "auto", + "fuel_loads_grill_fuel_type": "natural gas", + "fuel_loads_grill_present": false, + "fuel_loads_grill_usage_multiplier": 0.0, + "fuel_loads_lighting_annual_therm": "auto", + "fuel_loads_lighting_fuel_type": "natural gas", + "fuel_loads_lighting_present": false, + "fuel_loads_lighting_usage_multiplier": 0.0, + "geometry_aspect_ratio": 1.5, + "geometry_attic_type": "UnventedAttic", + "geometry_balcony_depth": 0.0, + "geometry_building_num_units": 4, + "geometry_cfa": 1800.0, + "geometry_corridor_position": "Double Exterior", + "geometry_corridor_width": 10.0, + "geometry_eaves_depth": 0, + "geometry_foundation_height": 8.0, + "geometry_foundation_height_above_grade": 1.0, + "geometry_foundation_type": "ConditionedBasement", + "geometry_garage_depth": 20.0, + "geometry_garage_position": "Right", + "geometry_garage_protrusion": 0.0, + "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", + "geometry_horizontal_location": "Left", + "geometry_inset_depth": 0.0, + "geometry_inset_position": "Right", + "geometry_inset_width": 0.0, + "geometry_num_bathrooms": "2", + "geometry_num_bedrooms": 3, + "geometry_num_floors_above_grade": 1, + "geometry_num_occupants": "3", + "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, + "geometry_roof_pitch": "6:12", + "geometry_roof_type": "gable", + "geometry_unit_type": "single-family attached", + "geometry_wall_height": 8.0, + "heat_pump_backup_fuel": "none", + "heat_pump_backup_heating_capacity": "34121.0", + "heat_pump_backup_heating_efficiency": 1, + "heat_pump_cooling_capacity": "48000.0", + "heat_pump_cooling_compressor_type": "single stage", + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", + "heat_pump_cooling_sensible_heat_fraction": 0.73, + "heat_pump_fraction_cool_load_served": 1, + "heat_pump_fraction_heat_load_served": 1, + "heat_pump_heating_capacity": "64000.0", + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", + "heat_pump_type": "none", + "heating_system_fraction_heat_load_served": 1, + "heating_system_fraction_heat_load_served_2": 0.25, + "heating_system_fuel": "natural gas", + "heating_system_fuel_2": "electricity", + "heating_system_heating_capacity": "64000.0", + "heating_system_heating_capacity_2": "auto", + "heating_system_heating_efficiency": 0.92, + "heating_system_heating_efficiency_2": 1.0, + "heating_system_type": "Furnace", + "heating_system_type_2": "none", + "holiday_lighting_daily_kwh": "auto", + "holiday_lighting_period_begin_day_of_month": "auto", + "holiday_lighting_period_begin_month": "auto", + "holiday_lighting_period_end_day_of_month": "auto", + "holiday_lighting_period_end_month": "auto", + "holiday_lighting_present": false, + "hot_tub_heater_annual_kwh": "auto", + "hot_tub_heater_annual_therm": "auto", + "hot_tub_heater_type": "electric resistance", + "hot_tub_heater_usage_multiplier": 1.0, + "hot_tub_present": false, + "hot_tub_pump_annual_kwh": "auto", + "hot_tub_pump_usage_multiplier": 1.0, + "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/extra-bldgtype-single-family-attached-double-exterior.xml", + "kitchen_fans_quantity": "0", + "lighting_fraction_cfl_exterior": 0.4, + "lighting_fraction_cfl_garage": 0.4, + "lighting_fraction_cfl_interior": 0.4, + "lighting_fraction_led_exterior": 0.25, + "lighting_fraction_led_garage": 0.25, + "lighting_fraction_led_interior": 0.25, + "lighting_fraction_lfl_exterior": 0.1, + "lighting_fraction_lfl_garage": 0.1, + "lighting_fraction_lfl_interior": 0.1, + "lighting_usage_multiplier_exterior": 1.0, + "lighting_usage_multiplier_garage": 1.0, + "lighting_usage_multiplier_interior": 1.0, + "mech_vent_fan_power": 30, + "mech_vent_fan_power_2": 30, + "mech_vent_fan_type": "none", + "mech_vent_fan_type_2": "none", + "mech_vent_flow_rate": 110, + "mech_vent_flow_rate_2": 110, + "mech_vent_hours_in_operation": 24, + "mech_vent_hours_in_operation_2": 24, + "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", + "mech_vent_sensible_recovery_efficiency": 0.72, + "mech_vent_sensible_recovery_efficiency_2": 0.72, + "mech_vent_total_recovery_efficiency": 0.48, + "mech_vent_total_recovery_efficiency_2": 0.48, + "neighbor_back_distance": 0, + "neighbor_back_height": "auto", + "neighbor_front_distance": 0, + "neighbor_front_height": "auto", + "neighbor_left_distance": 0, + "neighbor_left_height": "auto", + "neighbor_right_distance": 0, + "neighbor_right_height": "auto", + "overhangs_back_depth": 0, + "overhangs_back_distance_to_top_of_window": 0, + "overhangs_front_depth": 0, + "overhangs_front_distance_to_top_of_window": 0, + "overhangs_left_depth": 0, + "overhangs_left_distance_to_top_of_window": 0, + "overhangs_right_depth": 0, + "overhangs_right_distance_to_top_of_window": 0, + "plug_loads_other_annual_kwh": "1638.0", + "plug_loads_other_frac_latent": "0.045", + "plug_loads_other_frac_sensible": "0.855", + "plug_loads_other_usage_multiplier": 1.0, + "plug_loads_television_annual_kwh": "620.0", + "plug_loads_television_usage_multiplier": 1.0, + "plug_loads_vehicle_annual_kwh": "auto", + "plug_loads_vehicle_present": false, + "plug_loads_vehicle_usage_multiplier": 0.0, + "plug_loads_well_pump_annual_kwh": "auto", + "plug_loads_well_pump_present": false, + "plug_loads_well_pump_usage_multiplier": 0.0, + "pool_heater_annual_kwh": "auto", + "pool_heater_annual_therm": "auto", + "pool_heater_type": "electric resistance", + "pool_heater_usage_multiplier": 1.0, + "pool_present": false, + "pool_pump_annual_kwh": "auto", + "pool_pump_usage_multiplier": 1.0, + "pv_system_array_azimuth_1": 180, + "pv_system_array_azimuth_2": 180, + "pv_system_array_tilt_1": "20", + "pv_system_array_tilt_2": "20", + "pv_system_inverter_efficiency_1": 0.96, + "pv_system_inverter_efficiency_2": 0.96, + "pv_system_location_1": "auto", + "pv_system_location_2": "auto", + "pv_system_max_power_output_1": 4000, + "pv_system_max_power_output_2": 4000, + "pv_system_module_type_1": "none", + "pv_system_module_type_2": "none", + "pv_system_num_units_served_1": 1, + "pv_system_num_units_served_2": 1, + "pv_system_system_losses_fraction_1": 0.14, + "pv_system_system_losses_fraction_2": 0.14, + "pv_system_tracking_1": "auto", + "pv_system_tracking_2": "auto", + "refrigerator_location": "living space", + "refrigerator_rated_annual_kwh": "650.0", + "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, + "roof_assembly_r": 2.3, + "roof_color": "medium", + "roof_material_type": "asphalt or fiberglass shingles", + "roof_radiant_barrier": false, + "roof_radiant_barrier_grade": "1", + "schedules_type": "default", + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", + "simulation_control_timestep": "60", + "site_type": "suburban", + "skylight_area_back": 0, + "skylight_area_front": 0, + "skylight_area_left": 0, + "skylight_area_right": 0, + "skylight_shgc": 0.45, + "skylight_ufactor": 0.33, + "slab_carpet_fraction": "0.0", + "slab_carpet_r": "0.0", + "slab_perimeter_depth": 0, + "slab_perimeter_insulation_r": 0, + "slab_thickness": "4.0", + "slab_under_insulation_r": 0, + "slab_under_width": 0, + "solar_thermal_collector_area": 40.0, + "solar_thermal_collector_azimuth": 180, + "solar_thermal_collector_loop_type": "liquid direct", + "solar_thermal_collector_rated_optical_efficiency": 0.5, + "solar_thermal_collector_rated_thermal_losses": 0.2799, + "solar_thermal_collector_tilt": "20", + "solar_thermal_collector_type": "evacuated tube", + "solar_thermal_solar_fraction": 0, + "solar_thermal_storage_volume": "auto", + "solar_thermal_system_type": "none", + "wall_assembly_r": 23, + "wall_color": "medium", + "wall_siding_type": "wood siding", + "wall_type": "WoodStud", + "water_fixtures_shower_low_flow": true, + "water_fixtures_sink_low_flow": false, + "water_fixtures_usage_multiplier": 1.0, + "water_heater_efficiency": 0.95, + "water_heater_efficiency_type": "EnergyFactor", + "water_heater_fuel_type": "electricity", + "water_heater_jacket_rvalue": 0, + "water_heater_location": "living space", + "water_heater_num_units_served": 1, + "water_heater_recovery_efficiency": "0.76", + "water_heater_setpoint_temperature": "125", + "water_heater_standby_loss": 0, + "water_heater_tank_volume": "40", + "water_heater_type": "storage water heater", + "weather_station_epw_filepath": "USA_CO_Denver.Intl.AP.725650_TMY3.epw", + "whole_house_fan_flow_rate": 4500, + "whole_house_fan_power": 300, + "whole_house_fan_present": false, + "window_area_back": 0, + "window_area_front": 0, + "window_area_left": 0, + "window_area_right": 0, + "window_aspect_ratio": 1.333, + "window_back_wwr": 0.18, + "window_fraction_operable": 0.67, + "window_front_wwr": 0.18, + "window_interior_shading_summer": 0.7, + "window_interior_shading_winter": 0.85, + "window_left_wwr": 0.18, + "window_right_wwr": 0.18, + "window_shgc": 0.45, + "window_ufactor": 0.33 + }, + "measure_dir_name": "BuildResidentialHPXML" + } + ] +} \ No newline at end of file diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-single-family-attached-double-loaded-interior.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-single-family-attached-double-loaded-interior.osw new file mode 100644 index 00000000..7e47910d --- /dev/null +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-single-family-attached-double-loaded-interior.osw @@ -0,0 +1,339 @@ +{ + "measure_paths": [ + "../.." + ], + "steps": [ + { + "arguments": { + "air_leakage_house_pressure": 50, + "air_leakage_shielding_of_home": "auto", + "air_leakage_units": "ACH", + "air_leakage_value": 3, + "bathroom_fans_quantity": "0", + "ceiling_assembly_r": 39.3, + "ceiling_fan_cooling_setpoint_temp_offset": 0, + "ceiling_fan_efficiency": "auto", + "ceiling_fan_present": false, + "ceiling_fan_quantity": "auto", + "clothes_dryer_efficiency": "3.73", + "clothes_dryer_efficiency_type": "CombinedEnergyFactor", + "clothes_dryer_fuel_type": "electricity", + "clothes_dryer_location": "living space", + "clothes_dryer_usage_multiplier": 1.0, + "clothes_dryer_vented_flow_rate": "150.0", + "clothes_washer_capacity": "3.2", + "clothes_washer_efficiency": "1.21", + "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", + "clothes_washer_label_annual_gas_cost": "27.0", + "clothes_washer_label_electric_rate": "0.12", + "clothes_washer_label_gas_rate": "1.09", + "clothes_washer_label_usage": "6.0", + "clothes_washer_location": "living space", + "clothes_washer_rated_annual_kwh": "380.0", + "clothes_washer_usage_multiplier": 1.0, + "cooking_range_oven_fuel_type": "electricity", + "cooking_range_oven_is_convection": false, + "cooking_range_oven_is_induction": false, + "cooking_range_oven_location": "living space", + "cooking_range_oven_usage_multiplier": 1.0, + "cooling_system_cooling_capacity": "48000.0", + "cooling_system_cooling_compressor_type": "single stage", + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", + "cooling_system_cooling_sensible_heat_fraction": 0.73, + "cooling_system_fraction_cool_load_served": 1, + "cooling_system_is_ducted": false, + "cooling_system_type": "central air conditioner", + "dehumidifier_capacity": 40, + "dehumidifier_efficiency": 1.8, + "dehumidifier_efficiency_type": "EnergyFactor", + "dehumidifier_fraction_dehumidification_load_served": 1, + "dehumidifier_rh_setpoint": 0.5, + "dehumidifier_type": "none", + "dhw_distribution_pipe_r": "0.0", + "dhw_distribution_recirc_branch_piping_length": "50", + "dhw_distribution_recirc_control_type": "no control", + "dhw_distribution_recirc_piping_length": "50", + "dhw_distribution_recirc_pump_power": "50", + "dhw_distribution_standard_piping_length": "50", + "dhw_distribution_system_type": "Standard", + "dishwasher_efficiency": "307", + "dishwasher_efficiency_type": "RatedAnnualkWh", + "dishwasher_label_annual_gas_cost": "22.32", + "dishwasher_label_electric_rate": "0.12", + "dishwasher_label_gas_rate": "1.09", + "dishwasher_label_usage": "4.0", + "dishwasher_location": "living space", + "dishwasher_place_setting_capacity": "12", + "dishwasher_usage_multiplier": 1.0, + "door_area": 80.0, + "door_rvalue": 4.4, + "ducts_number_of_return_registers": "2", + "ducts_return_insulation_r": 0.0, + "ducts_return_leakage_units": "CFM25", + "ducts_return_leakage_value": 25.0, + "ducts_return_location": "attic - unvented", + "ducts_return_surface_area": "50.0", + "ducts_supply_insulation_r": 4.0, + "ducts_supply_leakage_units": "CFM25", + "ducts_supply_leakage_value": 75.0, + "ducts_supply_location": "attic - unvented", + "ducts_supply_surface_area": "150.0", + "dwhr_efficiency": 0.55, + "dwhr_equal_flow": true, + "dwhr_facilities_connected": "none", + "extra_refrigerator_location": "none", + "extra_refrigerator_rated_annual_kwh": "auto", + "extra_refrigerator_usage_multiplier": 1.0, + "floor_assembly_r": 0, + "foundation_wall_insulation_distance_to_bottom": "auto", + "foundation_wall_insulation_distance_to_top": 0.0, + "foundation_wall_insulation_r": 8.9, + "foundation_wall_thickness": "8.0", + "freezer_location": "none", + "freezer_rated_annual_kwh": "auto", + "freezer_usage_multiplier": 1.0, + "fuel_loads_fireplace_annual_therm": "auto", + "fuel_loads_fireplace_frac_latent": "auto", + "fuel_loads_fireplace_frac_sensible": "auto", + "fuel_loads_fireplace_fuel_type": "natural gas", + "fuel_loads_fireplace_present": false, + "fuel_loads_fireplace_usage_multiplier": 0.0, + "fuel_loads_grill_annual_therm": "auto", + "fuel_loads_grill_fuel_type": "natural gas", + "fuel_loads_grill_present": false, + "fuel_loads_grill_usage_multiplier": 0.0, + "fuel_loads_lighting_annual_therm": "auto", + "fuel_loads_lighting_fuel_type": "natural gas", + "fuel_loads_lighting_present": false, + "fuel_loads_lighting_usage_multiplier": 0.0, + "geometry_aspect_ratio": 1.5, + "geometry_attic_type": "UnventedAttic", + "geometry_balcony_depth": 0.0, + "geometry_building_num_units": 4, + "geometry_cfa": 1800.0, + "geometry_corridor_position": "Double-Loaded Interior", + "geometry_corridor_width": 10.0, + "geometry_eaves_depth": 0, + "geometry_foundation_height": 8.0, + "geometry_foundation_height_above_grade": 1.0, + "geometry_foundation_type": "ConditionedBasement", + "geometry_garage_depth": 20.0, + "geometry_garage_position": "Right", + "geometry_garage_protrusion": 0.0, + "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", + "geometry_horizontal_location": "Left", + "geometry_inset_depth": 0.0, + "geometry_inset_position": "Right", + "geometry_inset_width": 0.0, + "geometry_num_bathrooms": "2", + "geometry_num_bedrooms": 3, + "geometry_num_floors_above_grade": 1, + "geometry_num_occupants": "3", + "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, + "geometry_roof_pitch": "6:12", + "geometry_roof_type": "gable", + "geometry_unit_type": "single-family attached", + "geometry_wall_height": 8.0, + "heat_pump_backup_fuel": "none", + "heat_pump_backup_heating_capacity": "34121.0", + "heat_pump_backup_heating_efficiency": 1, + "heat_pump_cooling_capacity": "48000.0", + "heat_pump_cooling_compressor_type": "single stage", + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", + "heat_pump_cooling_sensible_heat_fraction": 0.73, + "heat_pump_fraction_cool_load_served": 1, + "heat_pump_fraction_heat_load_served": 1, + "heat_pump_heating_capacity": "64000.0", + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", + "heat_pump_type": "none", + "heating_system_fraction_heat_load_served": 1, + "heating_system_fraction_heat_load_served_2": 0.25, + "heating_system_fuel": "natural gas", + "heating_system_fuel_2": "electricity", + "heating_system_heating_capacity": "64000.0", + "heating_system_heating_capacity_2": "auto", + "heating_system_heating_efficiency": 0.92, + "heating_system_heating_efficiency_2": 1.0, + "heating_system_type": "Furnace", + "heating_system_type_2": "none", + "holiday_lighting_daily_kwh": "auto", + "holiday_lighting_period_begin_day_of_month": "auto", + "holiday_lighting_period_begin_month": "auto", + "holiday_lighting_period_end_day_of_month": "auto", + "holiday_lighting_period_end_month": "auto", + "holiday_lighting_present": false, + "hot_tub_heater_annual_kwh": "auto", + "hot_tub_heater_annual_therm": "auto", + "hot_tub_heater_type": "electric resistance", + "hot_tub_heater_usage_multiplier": 1.0, + "hot_tub_present": false, + "hot_tub_pump_annual_kwh": "auto", + "hot_tub_pump_usage_multiplier": 1.0, + "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/extra-bldgtype-single-family-attached-double-loaded-interior.xml", + "kitchen_fans_quantity": "0", + "lighting_fraction_cfl_exterior": 0.4, + "lighting_fraction_cfl_garage": 0.4, + "lighting_fraction_cfl_interior": 0.4, + "lighting_fraction_led_exterior": 0.25, + "lighting_fraction_led_garage": 0.25, + "lighting_fraction_led_interior": 0.25, + "lighting_fraction_lfl_exterior": 0.1, + "lighting_fraction_lfl_garage": 0.1, + "lighting_fraction_lfl_interior": 0.1, + "lighting_usage_multiplier_exterior": 1.0, + "lighting_usage_multiplier_garage": 1.0, + "lighting_usage_multiplier_interior": 1.0, + "mech_vent_fan_power": 30, + "mech_vent_fan_power_2": 30, + "mech_vent_fan_type": "none", + "mech_vent_fan_type_2": "none", + "mech_vent_flow_rate": 110, + "mech_vent_flow_rate_2": 110, + "mech_vent_hours_in_operation": 24, + "mech_vent_hours_in_operation_2": 24, + "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", + "mech_vent_sensible_recovery_efficiency": 0.72, + "mech_vent_sensible_recovery_efficiency_2": 0.72, + "mech_vent_total_recovery_efficiency": 0.48, + "mech_vent_total_recovery_efficiency_2": 0.48, + "neighbor_back_distance": 0, + "neighbor_back_height": "auto", + "neighbor_front_distance": 0, + "neighbor_front_height": "auto", + "neighbor_left_distance": 0, + "neighbor_left_height": "auto", + "neighbor_right_distance": 0, + "neighbor_right_height": "auto", + "overhangs_back_depth": 0, + "overhangs_back_distance_to_top_of_window": 0, + "overhangs_front_depth": 0, + "overhangs_front_distance_to_top_of_window": 0, + "overhangs_left_depth": 0, + "overhangs_left_distance_to_top_of_window": 0, + "overhangs_right_depth": 0, + "overhangs_right_distance_to_top_of_window": 0, + "plug_loads_other_annual_kwh": "1638.0", + "plug_loads_other_frac_latent": "0.045", + "plug_loads_other_frac_sensible": "0.855", + "plug_loads_other_usage_multiplier": 1.0, + "plug_loads_television_annual_kwh": "620.0", + "plug_loads_television_usage_multiplier": 1.0, + "plug_loads_vehicle_annual_kwh": "auto", + "plug_loads_vehicle_present": false, + "plug_loads_vehicle_usage_multiplier": 0.0, + "plug_loads_well_pump_annual_kwh": "auto", + "plug_loads_well_pump_present": false, + "plug_loads_well_pump_usage_multiplier": 0.0, + "pool_heater_annual_kwh": "auto", + "pool_heater_annual_therm": "auto", + "pool_heater_type": "electric resistance", + "pool_heater_usage_multiplier": 1.0, + "pool_present": false, + "pool_pump_annual_kwh": "auto", + "pool_pump_usage_multiplier": 1.0, + "pv_system_array_azimuth_1": 180, + "pv_system_array_azimuth_2": 180, + "pv_system_array_tilt_1": "20", + "pv_system_array_tilt_2": "20", + "pv_system_inverter_efficiency_1": 0.96, + "pv_system_inverter_efficiency_2": 0.96, + "pv_system_location_1": "auto", + "pv_system_location_2": "auto", + "pv_system_max_power_output_1": 4000, + "pv_system_max_power_output_2": 4000, + "pv_system_module_type_1": "none", + "pv_system_module_type_2": "none", + "pv_system_num_units_served_1": 1, + "pv_system_num_units_served_2": 1, + "pv_system_system_losses_fraction_1": 0.14, + "pv_system_system_losses_fraction_2": 0.14, + "pv_system_tracking_1": "auto", + "pv_system_tracking_2": "auto", + "refrigerator_location": "living space", + "refrigerator_rated_annual_kwh": "650.0", + "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, + "roof_assembly_r": 2.3, + "roof_color": "medium", + "roof_material_type": "asphalt or fiberglass shingles", + "roof_radiant_barrier": false, + "roof_radiant_barrier_grade": "1", + "schedules_type": "default", + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", + "simulation_control_timestep": "60", + "site_type": "suburban", + "skylight_area_back": 0, + "skylight_area_front": 0, + "skylight_area_left": 0, + "skylight_area_right": 0, + "skylight_shgc": 0.45, + "skylight_ufactor": 0.33, + "slab_carpet_fraction": "0.0", + "slab_carpet_r": "0.0", + "slab_perimeter_depth": 0, + "slab_perimeter_insulation_r": 0, + "slab_thickness": "4.0", + "slab_under_insulation_r": 0, + "slab_under_width": 0, + "solar_thermal_collector_area": 40.0, + "solar_thermal_collector_azimuth": 180, + "solar_thermal_collector_loop_type": "liquid direct", + "solar_thermal_collector_rated_optical_efficiency": 0.5, + "solar_thermal_collector_rated_thermal_losses": 0.2799, + "solar_thermal_collector_tilt": "20", + "solar_thermal_collector_type": "evacuated tube", + "solar_thermal_solar_fraction": 0, + "solar_thermal_storage_volume": "auto", + "solar_thermal_system_type": "none", + "wall_assembly_r": 23, + "wall_color": "medium", + "wall_siding_type": "wood siding", + "wall_type": "WoodStud", + "water_fixtures_shower_low_flow": true, + "water_fixtures_sink_low_flow": false, + "water_fixtures_usage_multiplier": 1.0, + "water_heater_efficiency": 0.95, + "water_heater_efficiency_type": "EnergyFactor", + "water_heater_fuel_type": "electricity", + "water_heater_jacket_rvalue": 0, + "water_heater_location": "living space", + "water_heater_num_units_served": 1, + "water_heater_recovery_efficiency": "0.76", + "water_heater_setpoint_temperature": "125", + "water_heater_standby_loss": 0, + "water_heater_tank_volume": "40", + "water_heater_type": "storage water heater", + "weather_station_epw_filepath": "USA_CO_Denver.Intl.AP.725650_TMY3.epw", + "whole_house_fan_flow_rate": 4500, + "whole_house_fan_power": 300, + "whole_house_fan_present": false, + "window_area_back": 0, + "window_area_front": 0, + "window_area_left": 0, + "window_area_right": 0, + "window_aspect_ratio": 1.333, + "window_back_wwr": 0.18, + "window_fraction_operable": 0.67, + "window_front_wwr": 0.18, + "window_interior_shading_summer": 0.7, + "window_interior_shading_winter": 0.85, + "window_left_wwr": 0.18, + "window_right_wwr": 0.18, + "window_shgc": 0.45, + "window_ufactor": 0.33 + }, + "measure_dir_name": "BuildResidentialHPXML" + } + ] +} \ No newline at end of file diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-single-family-attached-single-exterior-front.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-single-family-attached-single-exterior-front.osw new file mode 100644 index 00000000..1158fc56 --- /dev/null +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-single-family-attached-single-exterior-front.osw @@ -0,0 +1,339 @@ +{ + "measure_paths": [ + "../.." + ], + "steps": [ + { + "arguments": { + "air_leakage_house_pressure": 50, + "air_leakage_shielding_of_home": "auto", + "air_leakage_units": "ACH", + "air_leakage_value": 3, + "bathroom_fans_quantity": "0", + "ceiling_assembly_r": 39.3, + "ceiling_fan_cooling_setpoint_temp_offset": 0, + "ceiling_fan_efficiency": "auto", + "ceiling_fan_present": false, + "ceiling_fan_quantity": "auto", + "clothes_dryer_efficiency": "3.73", + "clothes_dryer_efficiency_type": "CombinedEnergyFactor", + "clothes_dryer_fuel_type": "electricity", + "clothes_dryer_location": "living space", + "clothes_dryer_usage_multiplier": 1.0, + "clothes_dryer_vented_flow_rate": "150.0", + "clothes_washer_capacity": "3.2", + "clothes_washer_efficiency": "1.21", + "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", + "clothes_washer_label_annual_gas_cost": "27.0", + "clothes_washer_label_electric_rate": "0.12", + "clothes_washer_label_gas_rate": "1.09", + "clothes_washer_label_usage": "6.0", + "clothes_washer_location": "living space", + "clothes_washer_rated_annual_kwh": "380.0", + "clothes_washer_usage_multiplier": 1.0, + "cooking_range_oven_fuel_type": "electricity", + "cooking_range_oven_is_convection": false, + "cooking_range_oven_is_induction": false, + "cooking_range_oven_location": "living space", + "cooking_range_oven_usage_multiplier": 1.0, + "cooling_system_cooling_capacity": "48000.0", + "cooling_system_cooling_compressor_type": "single stage", + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", + "cooling_system_cooling_sensible_heat_fraction": 0.73, + "cooling_system_fraction_cool_load_served": 1, + "cooling_system_is_ducted": false, + "cooling_system_type": "central air conditioner", + "dehumidifier_capacity": 40, + "dehumidifier_efficiency": 1.8, + "dehumidifier_efficiency_type": "EnergyFactor", + "dehumidifier_fraction_dehumidification_load_served": 1, + "dehumidifier_rh_setpoint": 0.5, + "dehumidifier_type": "none", + "dhw_distribution_pipe_r": "0.0", + "dhw_distribution_recirc_branch_piping_length": "50", + "dhw_distribution_recirc_control_type": "no control", + "dhw_distribution_recirc_piping_length": "50", + "dhw_distribution_recirc_pump_power": "50", + "dhw_distribution_standard_piping_length": "50", + "dhw_distribution_system_type": "Standard", + "dishwasher_efficiency": "307", + "dishwasher_efficiency_type": "RatedAnnualkWh", + "dishwasher_label_annual_gas_cost": "22.32", + "dishwasher_label_electric_rate": "0.12", + "dishwasher_label_gas_rate": "1.09", + "dishwasher_label_usage": "4.0", + "dishwasher_location": "living space", + "dishwasher_place_setting_capacity": "12", + "dishwasher_usage_multiplier": 1.0, + "door_area": 80.0, + "door_rvalue": 4.4, + "ducts_number_of_return_registers": "2", + "ducts_return_insulation_r": 0.0, + "ducts_return_leakage_units": "CFM25", + "ducts_return_leakage_value": 25.0, + "ducts_return_location": "attic - unvented", + "ducts_return_surface_area": "50.0", + "ducts_supply_insulation_r": 4.0, + "ducts_supply_leakage_units": "CFM25", + "ducts_supply_leakage_value": 75.0, + "ducts_supply_location": "attic - unvented", + "ducts_supply_surface_area": "150.0", + "dwhr_efficiency": 0.55, + "dwhr_equal_flow": true, + "dwhr_facilities_connected": "none", + "extra_refrigerator_location": "none", + "extra_refrigerator_rated_annual_kwh": "auto", + "extra_refrigerator_usage_multiplier": 1.0, + "floor_assembly_r": 0, + "foundation_wall_insulation_distance_to_bottom": "auto", + "foundation_wall_insulation_distance_to_top": 0.0, + "foundation_wall_insulation_r": 8.9, + "foundation_wall_thickness": "8.0", + "freezer_location": "none", + "freezer_rated_annual_kwh": "auto", + "freezer_usage_multiplier": 1.0, + "fuel_loads_fireplace_annual_therm": "auto", + "fuel_loads_fireplace_frac_latent": "auto", + "fuel_loads_fireplace_frac_sensible": "auto", + "fuel_loads_fireplace_fuel_type": "natural gas", + "fuel_loads_fireplace_present": false, + "fuel_loads_fireplace_usage_multiplier": 0.0, + "fuel_loads_grill_annual_therm": "auto", + "fuel_loads_grill_fuel_type": "natural gas", + "fuel_loads_grill_present": false, + "fuel_loads_grill_usage_multiplier": 0.0, + "fuel_loads_lighting_annual_therm": "auto", + "fuel_loads_lighting_fuel_type": "natural gas", + "fuel_loads_lighting_present": false, + "fuel_loads_lighting_usage_multiplier": 0.0, + "geometry_aspect_ratio": 1.5, + "geometry_attic_type": "UnventedAttic", + "geometry_balcony_depth": 0.0, + "geometry_building_num_units": 3, + "geometry_cfa": 1800.0, + "geometry_corridor_position": "Single Exterior (Front)", + "geometry_corridor_width": 10.0, + "geometry_eaves_depth": 0, + "geometry_foundation_height": 8.0, + "geometry_foundation_height_above_grade": 1.0, + "geometry_foundation_type": "ConditionedBasement", + "geometry_garage_depth": 20.0, + "geometry_garage_position": "Right", + "geometry_garage_protrusion": 0.0, + "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", + "geometry_horizontal_location": "Left", + "geometry_inset_depth": 0.0, + "geometry_inset_position": "Right", + "geometry_inset_width": 0.0, + "geometry_num_bathrooms": "2", + "geometry_num_bedrooms": 3, + "geometry_num_floors_above_grade": 1, + "geometry_num_occupants": "3", + "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, + "geometry_roof_pitch": "6:12", + "geometry_roof_type": "gable", + "geometry_unit_type": "single-family attached", + "geometry_wall_height": 8.0, + "heat_pump_backup_fuel": "none", + "heat_pump_backup_heating_capacity": "34121.0", + "heat_pump_backup_heating_efficiency": 1, + "heat_pump_cooling_capacity": "48000.0", + "heat_pump_cooling_compressor_type": "single stage", + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", + "heat_pump_cooling_sensible_heat_fraction": 0.73, + "heat_pump_fraction_cool_load_served": 1, + "heat_pump_fraction_heat_load_served": 1, + "heat_pump_heating_capacity": "64000.0", + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", + "heat_pump_type": "none", + "heating_system_fraction_heat_load_served": 1, + "heating_system_fraction_heat_load_served_2": 0.25, + "heating_system_fuel": "natural gas", + "heating_system_fuel_2": "electricity", + "heating_system_heating_capacity": "64000.0", + "heating_system_heating_capacity_2": "auto", + "heating_system_heating_efficiency": 0.92, + "heating_system_heating_efficiency_2": 1.0, + "heating_system_type": "Furnace", + "heating_system_type_2": "none", + "holiday_lighting_daily_kwh": "auto", + "holiday_lighting_period_begin_day_of_month": "auto", + "holiday_lighting_period_begin_month": "auto", + "holiday_lighting_period_end_day_of_month": "auto", + "holiday_lighting_period_end_month": "auto", + "holiday_lighting_present": false, + "hot_tub_heater_annual_kwh": "auto", + "hot_tub_heater_annual_therm": "auto", + "hot_tub_heater_type": "electric resistance", + "hot_tub_heater_usage_multiplier": 1.0, + "hot_tub_present": false, + "hot_tub_pump_annual_kwh": "auto", + "hot_tub_pump_usage_multiplier": 1.0, + "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/extra-bldgtype-single-family-attached-single-exterior-front.xml", + "kitchen_fans_quantity": "0", + "lighting_fraction_cfl_exterior": 0.4, + "lighting_fraction_cfl_garage": 0.4, + "lighting_fraction_cfl_interior": 0.4, + "lighting_fraction_led_exterior": 0.25, + "lighting_fraction_led_garage": 0.25, + "lighting_fraction_led_interior": 0.25, + "lighting_fraction_lfl_exterior": 0.1, + "lighting_fraction_lfl_garage": 0.1, + "lighting_fraction_lfl_interior": 0.1, + "lighting_usage_multiplier_exterior": 1.0, + "lighting_usage_multiplier_garage": 1.0, + "lighting_usage_multiplier_interior": 1.0, + "mech_vent_fan_power": 30, + "mech_vent_fan_power_2": 30, + "mech_vent_fan_type": "none", + "mech_vent_fan_type_2": "none", + "mech_vent_flow_rate": 110, + "mech_vent_flow_rate_2": 110, + "mech_vent_hours_in_operation": 24, + "mech_vent_hours_in_operation_2": 24, + "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", + "mech_vent_sensible_recovery_efficiency": 0.72, + "mech_vent_sensible_recovery_efficiency_2": 0.72, + "mech_vent_total_recovery_efficiency": 0.48, + "mech_vent_total_recovery_efficiency_2": 0.48, + "neighbor_back_distance": 0, + "neighbor_back_height": "auto", + "neighbor_front_distance": 0, + "neighbor_front_height": "auto", + "neighbor_left_distance": 0, + "neighbor_left_height": "auto", + "neighbor_right_distance": 0, + "neighbor_right_height": "auto", + "overhangs_back_depth": 0, + "overhangs_back_distance_to_top_of_window": 0, + "overhangs_front_depth": 0, + "overhangs_front_distance_to_top_of_window": 0, + "overhangs_left_depth": 0, + "overhangs_left_distance_to_top_of_window": 0, + "overhangs_right_depth": 0, + "overhangs_right_distance_to_top_of_window": 0, + "plug_loads_other_annual_kwh": "1638.0", + "plug_loads_other_frac_latent": "0.045", + "plug_loads_other_frac_sensible": "0.855", + "plug_loads_other_usage_multiplier": 1.0, + "plug_loads_television_annual_kwh": "620.0", + "plug_loads_television_usage_multiplier": 1.0, + "plug_loads_vehicle_annual_kwh": "auto", + "plug_loads_vehicle_present": false, + "plug_loads_vehicle_usage_multiplier": 0.0, + "plug_loads_well_pump_annual_kwh": "auto", + "plug_loads_well_pump_present": false, + "plug_loads_well_pump_usage_multiplier": 0.0, + "pool_heater_annual_kwh": "auto", + "pool_heater_annual_therm": "auto", + "pool_heater_type": "electric resistance", + "pool_heater_usage_multiplier": 1.0, + "pool_present": false, + "pool_pump_annual_kwh": "auto", + "pool_pump_usage_multiplier": 1.0, + "pv_system_array_azimuth_1": 180, + "pv_system_array_azimuth_2": 180, + "pv_system_array_tilt_1": "20", + "pv_system_array_tilt_2": "20", + "pv_system_inverter_efficiency_1": 0.96, + "pv_system_inverter_efficiency_2": 0.96, + "pv_system_location_1": "auto", + "pv_system_location_2": "auto", + "pv_system_max_power_output_1": 4000, + "pv_system_max_power_output_2": 4000, + "pv_system_module_type_1": "none", + "pv_system_module_type_2": "none", + "pv_system_num_units_served_1": 1, + "pv_system_num_units_served_2": 1, + "pv_system_system_losses_fraction_1": 0.14, + "pv_system_system_losses_fraction_2": 0.14, + "pv_system_tracking_1": "auto", + "pv_system_tracking_2": "auto", + "refrigerator_location": "living space", + "refrigerator_rated_annual_kwh": "650.0", + "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, + "roof_assembly_r": 2.3, + "roof_color": "medium", + "roof_material_type": "asphalt or fiberglass shingles", + "roof_radiant_barrier": false, + "roof_radiant_barrier_grade": "1", + "schedules_type": "default", + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", + "simulation_control_timestep": "60", + "site_type": "suburban", + "skylight_area_back": 0, + "skylight_area_front": 0, + "skylight_area_left": 0, + "skylight_area_right": 0, + "skylight_shgc": 0.45, + "skylight_ufactor": 0.33, + "slab_carpet_fraction": "0.0", + "slab_carpet_r": "0.0", + "slab_perimeter_depth": 0, + "slab_perimeter_insulation_r": 0, + "slab_thickness": "4.0", + "slab_under_insulation_r": 0, + "slab_under_width": 0, + "solar_thermal_collector_area": 40.0, + "solar_thermal_collector_azimuth": 180, + "solar_thermal_collector_loop_type": "liquid direct", + "solar_thermal_collector_rated_optical_efficiency": 0.5, + "solar_thermal_collector_rated_thermal_losses": 0.2799, + "solar_thermal_collector_tilt": "20", + "solar_thermal_collector_type": "evacuated tube", + "solar_thermal_solar_fraction": 0, + "solar_thermal_storage_volume": "auto", + "solar_thermal_system_type": "none", + "wall_assembly_r": 23, + "wall_color": "medium", + "wall_siding_type": "wood siding", + "wall_type": "WoodStud", + "water_fixtures_shower_low_flow": true, + "water_fixtures_sink_low_flow": false, + "water_fixtures_usage_multiplier": 1.0, + "water_heater_efficiency": 0.95, + "water_heater_efficiency_type": "EnergyFactor", + "water_heater_fuel_type": "electricity", + "water_heater_jacket_rvalue": 0, + "water_heater_location": "living space", + "water_heater_num_units_served": 1, + "water_heater_recovery_efficiency": "0.76", + "water_heater_setpoint_temperature": "125", + "water_heater_standby_loss": 0, + "water_heater_tank_volume": "40", + "water_heater_type": "storage water heater", + "weather_station_epw_filepath": "USA_CO_Denver.Intl.AP.725650_TMY3.epw", + "whole_house_fan_flow_rate": 4500, + "whole_house_fan_power": 300, + "whole_house_fan_present": false, + "window_area_back": 0, + "window_area_front": 0, + "window_area_left": 0, + "window_area_right": 0, + "window_aspect_ratio": 1.333, + "window_back_wwr": 0.18, + "window_fraction_operable": 0.67, + "window_front_wwr": 0.18, + "window_interior_shading_summer": 0.7, + "window_interior_shading_winter": 0.85, + "window_left_wwr": 0.18, + "window_right_wwr": 0.18, + "window_shgc": 0.45, + "window_ufactor": 0.33 + }, + "measure_dir_name": "BuildResidentialHPXML" + } + ] +} \ No newline at end of file diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-single-family-attached-slab-middle.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-single-family-attached-slab-middle.osw new file mode 100644 index 00000000..6b43ad3a --- /dev/null +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-single-family-attached-slab-middle.osw @@ -0,0 +1,339 @@ +{ + "measure_paths": [ + "../.." + ], + "steps": [ + { + "arguments": { + "air_leakage_house_pressure": 50, + "air_leakage_shielding_of_home": "auto", + "air_leakage_units": "ACH", + "air_leakage_value": 3, + "bathroom_fans_quantity": "0", + "ceiling_assembly_r": 39.3, + "ceiling_fan_cooling_setpoint_temp_offset": 0, + "ceiling_fan_efficiency": "auto", + "ceiling_fan_present": false, + "ceiling_fan_quantity": "auto", + "clothes_dryer_efficiency": "3.73", + "clothes_dryer_efficiency_type": "CombinedEnergyFactor", + "clothes_dryer_fuel_type": "electricity", + "clothes_dryer_location": "living space", + "clothes_dryer_usage_multiplier": 1.0, + "clothes_dryer_vented_flow_rate": "150.0", + "clothes_washer_capacity": "3.2", + "clothes_washer_efficiency": "1.21", + "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", + "clothes_washer_label_annual_gas_cost": "27.0", + "clothes_washer_label_electric_rate": "0.12", + "clothes_washer_label_gas_rate": "1.09", + "clothes_washer_label_usage": "6.0", + "clothes_washer_location": "living space", + "clothes_washer_rated_annual_kwh": "380.0", + "clothes_washer_usage_multiplier": 1.0, + "cooking_range_oven_fuel_type": "electricity", + "cooking_range_oven_is_convection": false, + "cooking_range_oven_is_induction": false, + "cooking_range_oven_location": "living space", + "cooking_range_oven_usage_multiplier": 1.0, + "cooling_system_cooling_capacity": "48000.0", + "cooling_system_cooling_compressor_type": "single stage", + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", + "cooling_system_cooling_sensible_heat_fraction": 0.73, + "cooling_system_fraction_cool_load_served": 1, + "cooling_system_is_ducted": false, + "cooling_system_type": "central air conditioner", + "dehumidifier_capacity": 40, + "dehumidifier_efficiency": 1.8, + "dehumidifier_efficiency_type": "EnergyFactor", + "dehumidifier_fraction_dehumidification_load_served": 1, + "dehumidifier_rh_setpoint": 0.5, + "dehumidifier_type": "none", + "dhw_distribution_pipe_r": "0.0", + "dhw_distribution_recirc_branch_piping_length": "50", + "dhw_distribution_recirc_control_type": "no control", + "dhw_distribution_recirc_piping_length": "50", + "dhw_distribution_recirc_pump_power": "50", + "dhw_distribution_standard_piping_length": "50", + "dhw_distribution_system_type": "Standard", + "dishwasher_efficiency": "307", + "dishwasher_efficiency_type": "RatedAnnualkWh", + "dishwasher_label_annual_gas_cost": "22.32", + "dishwasher_label_electric_rate": "0.12", + "dishwasher_label_gas_rate": "1.09", + "dishwasher_label_usage": "4.0", + "dishwasher_location": "living space", + "dishwasher_place_setting_capacity": "12", + "dishwasher_usage_multiplier": 1.0, + "door_area": 80.0, + "door_rvalue": 4.4, + "ducts_number_of_return_registers": "2", + "ducts_return_insulation_r": 0.0, + "ducts_return_leakage_units": "CFM25", + "ducts_return_leakage_value": 25.0, + "ducts_return_location": "attic - unvented", + "ducts_return_surface_area": "50.0", + "ducts_supply_insulation_r": 4.0, + "ducts_supply_leakage_units": "CFM25", + "ducts_supply_leakage_value": 75.0, + "ducts_supply_location": "attic - unvented", + "ducts_supply_surface_area": "150.0", + "dwhr_efficiency": 0.55, + "dwhr_equal_flow": true, + "dwhr_facilities_connected": "none", + "extra_refrigerator_location": "none", + "extra_refrigerator_rated_annual_kwh": "auto", + "extra_refrigerator_usage_multiplier": 1.0, + "floor_assembly_r": 0, + "foundation_wall_insulation_distance_to_bottom": "auto", + "foundation_wall_insulation_distance_to_top": 0.0, + "foundation_wall_insulation_r": 8.9, + "foundation_wall_thickness": "8.0", + "freezer_location": "none", + "freezer_rated_annual_kwh": "auto", + "freezer_usage_multiplier": 1.0, + "fuel_loads_fireplace_annual_therm": "auto", + "fuel_loads_fireplace_frac_latent": "auto", + "fuel_loads_fireplace_frac_sensible": "auto", + "fuel_loads_fireplace_fuel_type": "natural gas", + "fuel_loads_fireplace_present": false, + "fuel_loads_fireplace_usage_multiplier": 0.0, + "fuel_loads_grill_annual_therm": "auto", + "fuel_loads_grill_fuel_type": "natural gas", + "fuel_loads_grill_present": false, + "fuel_loads_grill_usage_multiplier": 0.0, + "fuel_loads_lighting_annual_therm": "auto", + "fuel_loads_lighting_fuel_type": "natural gas", + "fuel_loads_lighting_present": false, + "fuel_loads_lighting_usage_multiplier": 0.0, + "geometry_aspect_ratio": 1.5, + "geometry_attic_type": "UnventedAttic", + "geometry_balcony_depth": 0.0, + "geometry_building_num_units": 3, + "geometry_cfa": 1800.0, + "geometry_corridor_position": "None", + "geometry_corridor_width": 10.0, + "geometry_eaves_depth": 0, + "geometry_foundation_height": 0.0, + "geometry_foundation_height_above_grade": 0.0, + "geometry_foundation_type": "SlabOnGrade", + "geometry_garage_depth": 20.0, + "geometry_garage_position": "Right", + "geometry_garage_protrusion": 0.0, + "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", + "geometry_horizontal_location": "Middle", + "geometry_inset_depth": 0.0, + "geometry_inset_position": "Right", + "geometry_inset_width": 0.0, + "geometry_num_bathrooms": "2", + "geometry_num_bedrooms": 3, + "geometry_num_floors_above_grade": 1, + "geometry_num_occupants": "3", + "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, + "geometry_roof_pitch": "6:12", + "geometry_roof_type": "gable", + "geometry_unit_type": "single-family attached", + "geometry_wall_height": 8.0, + "heat_pump_backup_fuel": "none", + "heat_pump_backup_heating_capacity": "34121.0", + "heat_pump_backup_heating_efficiency": 1, + "heat_pump_cooling_capacity": "48000.0", + "heat_pump_cooling_compressor_type": "single stage", + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", + "heat_pump_cooling_sensible_heat_fraction": 0.73, + "heat_pump_fraction_cool_load_served": 1, + "heat_pump_fraction_heat_load_served": 1, + "heat_pump_heating_capacity": "64000.0", + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", + "heat_pump_type": "none", + "heating_system_fraction_heat_load_served": 1, + "heating_system_fraction_heat_load_served_2": 0.25, + "heating_system_fuel": "natural gas", + "heating_system_fuel_2": "electricity", + "heating_system_heating_capacity": "64000.0", + "heating_system_heating_capacity_2": "auto", + "heating_system_heating_efficiency": 0.92, + "heating_system_heating_efficiency_2": 1.0, + "heating_system_type": "Furnace", + "heating_system_type_2": "none", + "holiday_lighting_daily_kwh": "auto", + "holiday_lighting_period_begin_day_of_month": "auto", + "holiday_lighting_period_begin_month": "auto", + "holiday_lighting_period_end_day_of_month": "auto", + "holiday_lighting_period_end_month": "auto", + "holiday_lighting_present": false, + "hot_tub_heater_annual_kwh": "auto", + "hot_tub_heater_annual_therm": "auto", + "hot_tub_heater_type": "electric resistance", + "hot_tub_heater_usage_multiplier": 1.0, + "hot_tub_present": false, + "hot_tub_pump_annual_kwh": "auto", + "hot_tub_pump_usage_multiplier": 1.0, + "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/extra-bldgtype-single-family-attached-slab-middle.xml", + "kitchen_fans_quantity": "0", + "lighting_fraction_cfl_exterior": 0.4, + "lighting_fraction_cfl_garage": 0.4, + "lighting_fraction_cfl_interior": 0.4, + "lighting_fraction_led_exterior": 0.25, + "lighting_fraction_led_garage": 0.25, + "lighting_fraction_led_interior": 0.25, + "lighting_fraction_lfl_exterior": 0.1, + "lighting_fraction_lfl_garage": 0.1, + "lighting_fraction_lfl_interior": 0.1, + "lighting_usage_multiplier_exterior": 1.0, + "lighting_usage_multiplier_garage": 1.0, + "lighting_usage_multiplier_interior": 1.0, + "mech_vent_fan_power": 30, + "mech_vent_fan_power_2": 30, + "mech_vent_fan_type": "none", + "mech_vent_fan_type_2": "none", + "mech_vent_flow_rate": 110, + "mech_vent_flow_rate_2": 110, + "mech_vent_hours_in_operation": 24, + "mech_vent_hours_in_operation_2": 24, + "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", + "mech_vent_sensible_recovery_efficiency": 0.72, + "mech_vent_sensible_recovery_efficiency_2": 0.72, + "mech_vent_total_recovery_efficiency": 0.48, + "mech_vent_total_recovery_efficiency_2": 0.48, + "neighbor_back_distance": 0, + "neighbor_back_height": "auto", + "neighbor_front_distance": 0, + "neighbor_front_height": "auto", + "neighbor_left_distance": 0, + "neighbor_left_height": "auto", + "neighbor_right_distance": 0, + "neighbor_right_height": "auto", + "overhangs_back_depth": 0, + "overhangs_back_distance_to_top_of_window": 0, + "overhangs_front_depth": 0, + "overhangs_front_distance_to_top_of_window": 0, + "overhangs_left_depth": 0, + "overhangs_left_distance_to_top_of_window": 0, + "overhangs_right_depth": 0, + "overhangs_right_distance_to_top_of_window": 0, + "plug_loads_other_annual_kwh": "1638.0", + "plug_loads_other_frac_latent": "0.045", + "plug_loads_other_frac_sensible": "0.855", + "plug_loads_other_usage_multiplier": 1.0, + "plug_loads_television_annual_kwh": "620.0", + "plug_loads_television_usage_multiplier": 1.0, + "plug_loads_vehicle_annual_kwh": "auto", + "plug_loads_vehicle_present": false, + "plug_loads_vehicle_usage_multiplier": 0.0, + "plug_loads_well_pump_annual_kwh": "auto", + "plug_loads_well_pump_present": false, + "plug_loads_well_pump_usage_multiplier": 0.0, + "pool_heater_annual_kwh": "auto", + "pool_heater_annual_therm": "auto", + "pool_heater_type": "electric resistance", + "pool_heater_usage_multiplier": 1.0, + "pool_present": false, + "pool_pump_annual_kwh": "auto", + "pool_pump_usage_multiplier": 1.0, + "pv_system_array_azimuth_1": 180, + "pv_system_array_azimuth_2": 180, + "pv_system_array_tilt_1": "20", + "pv_system_array_tilt_2": "20", + "pv_system_inverter_efficiency_1": 0.96, + "pv_system_inverter_efficiency_2": 0.96, + "pv_system_location_1": "auto", + "pv_system_location_2": "auto", + "pv_system_max_power_output_1": 4000, + "pv_system_max_power_output_2": 4000, + "pv_system_module_type_1": "none", + "pv_system_module_type_2": "none", + "pv_system_num_units_served_1": 1, + "pv_system_num_units_served_2": 1, + "pv_system_system_losses_fraction_1": 0.14, + "pv_system_system_losses_fraction_2": 0.14, + "pv_system_tracking_1": "auto", + "pv_system_tracking_2": "auto", + "refrigerator_location": "living space", + "refrigerator_rated_annual_kwh": "650.0", + "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, + "roof_assembly_r": 2.3, + "roof_color": "medium", + "roof_material_type": "asphalt or fiberglass shingles", + "roof_radiant_barrier": false, + "roof_radiant_barrier_grade": "1", + "schedules_type": "default", + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", + "simulation_control_timestep": "60", + "site_type": "suburban", + "skylight_area_back": 0, + "skylight_area_front": 0, + "skylight_area_left": 0, + "skylight_area_right": 0, + "skylight_shgc": 0.45, + "skylight_ufactor": 0.33, + "slab_carpet_fraction": "0.0", + "slab_carpet_r": "0.0", + "slab_perimeter_depth": 0, + "slab_perimeter_insulation_r": 0, + "slab_thickness": "4.0", + "slab_under_insulation_r": 0, + "slab_under_width": 0, + "solar_thermal_collector_area": 40.0, + "solar_thermal_collector_azimuth": 180, + "solar_thermal_collector_loop_type": "liquid direct", + "solar_thermal_collector_rated_optical_efficiency": 0.5, + "solar_thermal_collector_rated_thermal_losses": 0.2799, + "solar_thermal_collector_tilt": "20", + "solar_thermal_collector_type": "evacuated tube", + "solar_thermal_solar_fraction": 0, + "solar_thermal_storage_volume": "auto", + "solar_thermal_system_type": "none", + "wall_assembly_r": 23, + "wall_color": "medium", + "wall_siding_type": "wood siding", + "wall_type": "WoodStud", + "water_fixtures_shower_low_flow": true, + "water_fixtures_sink_low_flow": false, + "water_fixtures_usage_multiplier": 1.0, + "water_heater_efficiency": 0.95, + "water_heater_efficiency_type": "EnergyFactor", + "water_heater_fuel_type": "electricity", + "water_heater_jacket_rvalue": 0, + "water_heater_location": "living space", + "water_heater_num_units_served": 1, + "water_heater_recovery_efficiency": "0.76", + "water_heater_setpoint_temperature": "125", + "water_heater_standby_loss": 0, + "water_heater_tank_volume": "40", + "water_heater_type": "storage water heater", + "weather_station_epw_filepath": "USA_CO_Denver.Intl.AP.725650_TMY3.epw", + "whole_house_fan_flow_rate": 4500, + "whole_house_fan_power": 300, + "whole_house_fan_present": false, + "window_area_back": 0, + "window_area_front": 0, + "window_area_left": 0, + "window_area_right": 0, + "window_aspect_ratio": 1.333, + "window_back_wwr": 0.18, + "window_fraction_operable": 0.67, + "window_front_wwr": 0.18, + "window_interior_shading_summer": 0.7, + "window_interior_shading_winter": 0.85, + "window_left_wwr": 0.18, + "window_right_wwr": 0.18, + "window_shgc": 0.45, + "window_ufactor": 0.33 + }, + "measure_dir_name": "BuildResidentialHPXML" + } + ] +} \ No newline at end of file diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-single-family-attached-slab-right.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-single-family-attached-slab-right.osw new file mode 100644 index 00000000..17121b95 --- /dev/null +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-single-family-attached-slab-right.osw @@ -0,0 +1,339 @@ +{ + "measure_paths": [ + "../.." + ], + "steps": [ + { + "arguments": { + "air_leakage_house_pressure": 50, + "air_leakage_shielding_of_home": "auto", + "air_leakage_units": "ACH", + "air_leakage_value": 3, + "bathroom_fans_quantity": "0", + "ceiling_assembly_r": 39.3, + "ceiling_fan_cooling_setpoint_temp_offset": 0, + "ceiling_fan_efficiency": "auto", + "ceiling_fan_present": false, + "ceiling_fan_quantity": "auto", + "clothes_dryer_efficiency": "3.73", + "clothes_dryer_efficiency_type": "CombinedEnergyFactor", + "clothes_dryer_fuel_type": "electricity", + "clothes_dryer_location": "living space", + "clothes_dryer_usage_multiplier": 1.0, + "clothes_dryer_vented_flow_rate": "150.0", + "clothes_washer_capacity": "3.2", + "clothes_washer_efficiency": "1.21", + "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", + "clothes_washer_label_annual_gas_cost": "27.0", + "clothes_washer_label_electric_rate": "0.12", + "clothes_washer_label_gas_rate": "1.09", + "clothes_washer_label_usage": "6.0", + "clothes_washer_location": "living space", + "clothes_washer_rated_annual_kwh": "380.0", + "clothes_washer_usage_multiplier": 1.0, + "cooking_range_oven_fuel_type": "electricity", + "cooking_range_oven_is_convection": false, + "cooking_range_oven_is_induction": false, + "cooking_range_oven_location": "living space", + "cooking_range_oven_usage_multiplier": 1.0, + "cooling_system_cooling_capacity": "48000.0", + "cooling_system_cooling_compressor_type": "single stage", + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", + "cooling_system_cooling_sensible_heat_fraction": 0.73, + "cooling_system_fraction_cool_load_served": 1, + "cooling_system_is_ducted": false, + "cooling_system_type": "central air conditioner", + "dehumidifier_capacity": 40, + "dehumidifier_efficiency": 1.8, + "dehumidifier_efficiency_type": "EnergyFactor", + "dehumidifier_fraction_dehumidification_load_served": 1, + "dehumidifier_rh_setpoint": 0.5, + "dehumidifier_type": "none", + "dhw_distribution_pipe_r": "0.0", + "dhw_distribution_recirc_branch_piping_length": "50", + "dhw_distribution_recirc_control_type": "no control", + "dhw_distribution_recirc_piping_length": "50", + "dhw_distribution_recirc_pump_power": "50", + "dhw_distribution_standard_piping_length": "50", + "dhw_distribution_system_type": "Standard", + "dishwasher_efficiency": "307", + "dishwasher_efficiency_type": "RatedAnnualkWh", + "dishwasher_label_annual_gas_cost": "22.32", + "dishwasher_label_electric_rate": "0.12", + "dishwasher_label_gas_rate": "1.09", + "dishwasher_label_usage": "4.0", + "dishwasher_location": "living space", + "dishwasher_place_setting_capacity": "12", + "dishwasher_usage_multiplier": 1.0, + "door_area": 80.0, + "door_rvalue": 4.4, + "ducts_number_of_return_registers": "2", + "ducts_return_insulation_r": 0.0, + "ducts_return_leakage_units": "CFM25", + "ducts_return_leakage_value": 25.0, + "ducts_return_location": "attic - unvented", + "ducts_return_surface_area": "50.0", + "ducts_supply_insulation_r": 4.0, + "ducts_supply_leakage_units": "CFM25", + "ducts_supply_leakage_value": 75.0, + "ducts_supply_location": "attic - unvented", + "ducts_supply_surface_area": "150.0", + "dwhr_efficiency": 0.55, + "dwhr_equal_flow": true, + "dwhr_facilities_connected": "none", + "extra_refrigerator_location": "none", + "extra_refrigerator_rated_annual_kwh": "auto", + "extra_refrigerator_usage_multiplier": 1.0, + "floor_assembly_r": 0, + "foundation_wall_insulation_distance_to_bottom": "auto", + "foundation_wall_insulation_distance_to_top": 0.0, + "foundation_wall_insulation_r": 8.9, + "foundation_wall_thickness": "8.0", + "freezer_location": "none", + "freezer_rated_annual_kwh": "auto", + "freezer_usage_multiplier": 1.0, + "fuel_loads_fireplace_annual_therm": "auto", + "fuel_loads_fireplace_frac_latent": "auto", + "fuel_loads_fireplace_frac_sensible": "auto", + "fuel_loads_fireplace_fuel_type": "natural gas", + "fuel_loads_fireplace_present": false, + "fuel_loads_fireplace_usage_multiplier": 0.0, + "fuel_loads_grill_annual_therm": "auto", + "fuel_loads_grill_fuel_type": "natural gas", + "fuel_loads_grill_present": false, + "fuel_loads_grill_usage_multiplier": 0.0, + "fuel_loads_lighting_annual_therm": "auto", + "fuel_loads_lighting_fuel_type": "natural gas", + "fuel_loads_lighting_present": false, + "fuel_loads_lighting_usage_multiplier": 0.0, + "geometry_aspect_ratio": 1.5, + "geometry_attic_type": "UnventedAttic", + "geometry_balcony_depth": 0.0, + "geometry_building_num_units": 3, + "geometry_cfa": 1800.0, + "geometry_corridor_position": "None", + "geometry_corridor_width": 10.0, + "geometry_eaves_depth": 0, + "geometry_foundation_height": 0.0, + "geometry_foundation_height_above_grade": 0.0, + "geometry_foundation_type": "SlabOnGrade", + "geometry_garage_depth": 20.0, + "geometry_garage_position": "Right", + "geometry_garage_protrusion": 0.0, + "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", + "geometry_horizontal_location": "Right", + "geometry_inset_depth": 0.0, + "geometry_inset_position": "Right", + "geometry_inset_width": 0.0, + "geometry_num_bathrooms": "2", + "geometry_num_bedrooms": 3, + "geometry_num_floors_above_grade": 1, + "geometry_num_occupants": "3", + "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, + "geometry_roof_pitch": "6:12", + "geometry_roof_type": "gable", + "geometry_unit_type": "single-family attached", + "geometry_wall_height": 8.0, + "heat_pump_backup_fuel": "none", + "heat_pump_backup_heating_capacity": "34121.0", + "heat_pump_backup_heating_efficiency": 1, + "heat_pump_cooling_capacity": "48000.0", + "heat_pump_cooling_compressor_type": "single stage", + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", + "heat_pump_cooling_sensible_heat_fraction": 0.73, + "heat_pump_fraction_cool_load_served": 1, + "heat_pump_fraction_heat_load_served": 1, + "heat_pump_heating_capacity": "64000.0", + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", + "heat_pump_type": "none", + "heating_system_fraction_heat_load_served": 1, + "heating_system_fraction_heat_load_served_2": 0.25, + "heating_system_fuel": "natural gas", + "heating_system_fuel_2": "electricity", + "heating_system_heating_capacity": "64000.0", + "heating_system_heating_capacity_2": "auto", + "heating_system_heating_efficiency": 0.92, + "heating_system_heating_efficiency_2": 1.0, + "heating_system_type": "Furnace", + "heating_system_type_2": "none", + "holiday_lighting_daily_kwh": "auto", + "holiday_lighting_period_begin_day_of_month": "auto", + "holiday_lighting_period_begin_month": "auto", + "holiday_lighting_period_end_day_of_month": "auto", + "holiday_lighting_period_end_month": "auto", + "holiday_lighting_present": false, + "hot_tub_heater_annual_kwh": "auto", + "hot_tub_heater_annual_therm": "auto", + "hot_tub_heater_type": "electric resistance", + "hot_tub_heater_usage_multiplier": 1.0, + "hot_tub_present": false, + "hot_tub_pump_annual_kwh": "auto", + "hot_tub_pump_usage_multiplier": 1.0, + "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/extra-bldgtype-single-family-attached-slab-right.xml", + "kitchen_fans_quantity": "0", + "lighting_fraction_cfl_exterior": 0.4, + "lighting_fraction_cfl_garage": 0.4, + "lighting_fraction_cfl_interior": 0.4, + "lighting_fraction_led_exterior": 0.25, + "lighting_fraction_led_garage": 0.25, + "lighting_fraction_led_interior": 0.25, + "lighting_fraction_lfl_exterior": 0.1, + "lighting_fraction_lfl_garage": 0.1, + "lighting_fraction_lfl_interior": 0.1, + "lighting_usage_multiplier_exterior": 1.0, + "lighting_usage_multiplier_garage": 1.0, + "lighting_usage_multiplier_interior": 1.0, + "mech_vent_fan_power": 30, + "mech_vent_fan_power_2": 30, + "mech_vent_fan_type": "none", + "mech_vent_fan_type_2": "none", + "mech_vent_flow_rate": 110, + "mech_vent_flow_rate_2": 110, + "mech_vent_hours_in_operation": 24, + "mech_vent_hours_in_operation_2": 24, + "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", + "mech_vent_sensible_recovery_efficiency": 0.72, + "mech_vent_sensible_recovery_efficiency_2": 0.72, + "mech_vent_total_recovery_efficiency": 0.48, + "mech_vent_total_recovery_efficiency_2": 0.48, + "neighbor_back_distance": 0, + "neighbor_back_height": "auto", + "neighbor_front_distance": 0, + "neighbor_front_height": "auto", + "neighbor_left_distance": 0, + "neighbor_left_height": "auto", + "neighbor_right_distance": 0, + "neighbor_right_height": "auto", + "overhangs_back_depth": 0, + "overhangs_back_distance_to_top_of_window": 0, + "overhangs_front_depth": 0, + "overhangs_front_distance_to_top_of_window": 0, + "overhangs_left_depth": 0, + "overhangs_left_distance_to_top_of_window": 0, + "overhangs_right_depth": 0, + "overhangs_right_distance_to_top_of_window": 0, + "plug_loads_other_annual_kwh": "1638.0", + "plug_loads_other_frac_latent": "0.045", + "plug_loads_other_frac_sensible": "0.855", + "plug_loads_other_usage_multiplier": 1.0, + "plug_loads_television_annual_kwh": "620.0", + "plug_loads_television_usage_multiplier": 1.0, + "plug_loads_vehicle_annual_kwh": "auto", + "plug_loads_vehicle_present": false, + "plug_loads_vehicle_usage_multiplier": 0.0, + "plug_loads_well_pump_annual_kwh": "auto", + "plug_loads_well_pump_present": false, + "plug_loads_well_pump_usage_multiplier": 0.0, + "pool_heater_annual_kwh": "auto", + "pool_heater_annual_therm": "auto", + "pool_heater_type": "electric resistance", + "pool_heater_usage_multiplier": 1.0, + "pool_present": false, + "pool_pump_annual_kwh": "auto", + "pool_pump_usage_multiplier": 1.0, + "pv_system_array_azimuth_1": 180, + "pv_system_array_azimuth_2": 180, + "pv_system_array_tilt_1": "20", + "pv_system_array_tilt_2": "20", + "pv_system_inverter_efficiency_1": 0.96, + "pv_system_inverter_efficiency_2": 0.96, + "pv_system_location_1": "auto", + "pv_system_location_2": "auto", + "pv_system_max_power_output_1": 4000, + "pv_system_max_power_output_2": 4000, + "pv_system_module_type_1": "none", + "pv_system_module_type_2": "none", + "pv_system_num_units_served_1": 1, + "pv_system_num_units_served_2": 1, + "pv_system_system_losses_fraction_1": 0.14, + "pv_system_system_losses_fraction_2": 0.14, + "pv_system_tracking_1": "auto", + "pv_system_tracking_2": "auto", + "refrigerator_location": "living space", + "refrigerator_rated_annual_kwh": "650.0", + "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, + "roof_assembly_r": 2.3, + "roof_color": "medium", + "roof_material_type": "asphalt or fiberglass shingles", + "roof_radiant_barrier": false, + "roof_radiant_barrier_grade": "1", + "schedules_type": "default", + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", + "simulation_control_timestep": "60", + "site_type": "suburban", + "skylight_area_back": 0, + "skylight_area_front": 0, + "skylight_area_left": 0, + "skylight_area_right": 0, + "skylight_shgc": 0.45, + "skylight_ufactor": 0.33, + "slab_carpet_fraction": "0.0", + "slab_carpet_r": "0.0", + "slab_perimeter_depth": 0, + "slab_perimeter_insulation_r": 0, + "slab_thickness": "4.0", + "slab_under_insulation_r": 0, + "slab_under_width": 0, + "solar_thermal_collector_area": 40.0, + "solar_thermal_collector_azimuth": 180, + "solar_thermal_collector_loop_type": "liquid direct", + "solar_thermal_collector_rated_optical_efficiency": 0.5, + "solar_thermal_collector_rated_thermal_losses": 0.2799, + "solar_thermal_collector_tilt": "20", + "solar_thermal_collector_type": "evacuated tube", + "solar_thermal_solar_fraction": 0, + "solar_thermal_storage_volume": "auto", + "solar_thermal_system_type": "none", + "wall_assembly_r": 23, + "wall_color": "medium", + "wall_siding_type": "wood siding", + "wall_type": "WoodStud", + "water_fixtures_shower_low_flow": true, + "water_fixtures_sink_low_flow": false, + "water_fixtures_usage_multiplier": 1.0, + "water_heater_efficiency": 0.95, + "water_heater_efficiency_type": "EnergyFactor", + "water_heater_fuel_type": "electricity", + "water_heater_jacket_rvalue": 0, + "water_heater_location": "living space", + "water_heater_num_units_served": 1, + "water_heater_recovery_efficiency": "0.76", + "water_heater_setpoint_temperature": "125", + "water_heater_standby_loss": 0, + "water_heater_tank_volume": "40", + "water_heater_type": "storage water heater", + "weather_station_epw_filepath": "USA_CO_Denver.Intl.AP.725650_TMY3.epw", + "whole_house_fan_flow_rate": 4500, + "whole_house_fan_power": 300, + "whole_house_fan_present": false, + "window_area_back": 0, + "window_area_front": 0, + "window_area_left": 0, + "window_area_right": 0, + "window_aspect_ratio": 1.333, + "window_back_wwr": 0.18, + "window_fraction_operable": 0.67, + "window_front_wwr": 0.18, + "window_interior_shading_summer": 0.7, + "window_interior_shading_winter": 0.85, + "window_left_wwr": 0.18, + "window_right_wwr": 0.18, + "window_shgc": 0.45, + "window_ufactor": 0.33 + }, + "measure_dir_name": "BuildResidentialHPXML" + } + ] +} \ No newline at end of file diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-single-family-attached-slab.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-single-family-attached-slab.osw new file mode 100644 index 00000000..a3cbe545 --- /dev/null +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-single-family-attached-slab.osw @@ -0,0 +1,339 @@ +{ + "measure_paths": [ + "../.." + ], + "steps": [ + { + "arguments": { + "air_leakage_house_pressure": 50, + "air_leakage_shielding_of_home": "auto", + "air_leakage_units": "ACH", + "air_leakage_value": 3, + "bathroom_fans_quantity": "0", + "ceiling_assembly_r": 39.3, + "ceiling_fan_cooling_setpoint_temp_offset": 0, + "ceiling_fan_efficiency": "auto", + "ceiling_fan_present": false, + "ceiling_fan_quantity": "auto", + "clothes_dryer_efficiency": "3.73", + "clothes_dryer_efficiency_type": "CombinedEnergyFactor", + "clothes_dryer_fuel_type": "electricity", + "clothes_dryer_location": "living space", + "clothes_dryer_usage_multiplier": 1.0, + "clothes_dryer_vented_flow_rate": "150.0", + "clothes_washer_capacity": "3.2", + "clothes_washer_efficiency": "1.21", + "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", + "clothes_washer_label_annual_gas_cost": "27.0", + "clothes_washer_label_electric_rate": "0.12", + "clothes_washer_label_gas_rate": "1.09", + "clothes_washer_label_usage": "6.0", + "clothes_washer_location": "living space", + "clothes_washer_rated_annual_kwh": "380.0", + "clothes_washer_usage_multiplier": 1.0, + "cooking_range_oven_fuel_type": "electricity", + "cooking_range_oven_is_convection": false, + "cooking_range_oven_is_induction": false, + "cooking_range_oven_location": "living space", + "cooking_range_oven_usage_multiplier": 1.0, + "cooling_system_cooling_capacity": "48000.0", + "cooling_system_cooling_compressor_type": "single stage", + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", + "cooling_system_cooling_sensible_heat_fraction": 0.73, + "cooling_system_fraction_cool_load_served": 1, + "cooling_system_is_ducted": false, + "cooling_system_type": "central air conditioner", + "dehumidifier_capacity": 40, + "dehumidifier_efficiency": 1.8, + "dehumidifier_efficiency_type": "EnergyFactor", + "dehumidifier_fraction_dehumidification_load_served": 1, + "dehumidifier_rh_setpoint": 0.5, + "dehumidifier_type": "none", + "dhw_distribution_pipe_r": "0.0", + "dhw_distribution_recirc_branch_piping_length": "50", + "dhw_distribution_recirc_control_type": "no control", + "dhw_distribution_recirc_piping_length": "50", + "dhw_distribution_recirc_pump_power": "50", + "dhw_distribution_standard_piping_length": "50", + "dhw_distribution_system_type": "Standard", + "dishwasher_efficiency": "307", + "dishwasher_efficiency_type": "RatedAnnualkWh", + "dishwasher_label_annual_gas_cost": "22.32", + "dishwasher_label_electric_rate": "0.12", + "dishwasher_label_gas_rate": "1.09", + "dishwasher_label_usage": "4.0", + "dishwasher_location": "living space", + "dishwasher_place_setting_capacity": "12", + "dishwasher_usage_multiplier": 1.0, + "door_area": 80.0, + "door_rvalue": 4.4, + "ducts_number_of_return_registers": "2", + "ducts_return_insulation_r": 0.0, + "ducts_return_leakage_units": "CFM25", + "ducts_return_leakage_value": 25.0, + "ducts_return_location": "attic - unvented", + "ducts_return_surface_area": "50.0", + "ducts_supply_insulation_r": 4.0, + "ducts_supply_leakage_units": "CFM25", + "ducts_supply_leakage_value": 75.0, + "ducts_supply_location": "attic - unvented", + "ducts_supply_surface_area": "150.0", + "dwhr_efficiency": 0.55, + "dwhr_equal_flow": true, + "dwhr_facilities_connected": "none", + "extra_refrigerator_location": "none", + "extra_refrigerator_rated_annual_kwh": "auto", + "extra_refrigerator_usage_multiplier": 1.0, + "floor_assembly_r": 0, + "foundation_wall_insulation_distance_to_bottom": "auto", + "foundation_wall_insulation_distance_to_top": 0.0, + "foundation_wall_insulation_r": 8.9, + "foundation_wall_thickness": "8.0", + "freezer_location": "none", + "freezer_rated_annual_kwh": "auto", + "freezer_usage_multiplier": 1.0, + "fuel_loads_fireplace_annual_therm": "auto", + "fuel_loads_fireplace_frac_latent": "auto", + "fuel_loads_fireplace_frac_sensible": "auto", + "fuel_loads_fireplace_fuel_type": "natural gas", + "fuel_loads_fireplace_present": false, + "fuel_loads_fireplace_usage_multiplier": 0.0, + "fuel_loads_grill_annual_therm": "auto", + "fuel_loads_grill_fuel_type": "natural gas", + "fuel_loads_grill_present": false, + "fuel_loads_grill_usage_multiplier": 0.0, + "fuel_loads_lighting_annual_therm": "auto", + "fuel_loads_lighting_fuel_type": "natural gas", + "fuel_loads_lighting_present": false, + "fuel_loads_lighting_usage_multiplier": 0.0, + "geometry_aspect_ratio": 1.5, + "geometry_attic_type": "UnventedAttic", + "geometry_balcony_depth": 0.0, + "geometry_building_num_units": 3, + "geometry_cfa": 1800.0, + "geometry_corridor_position": "None", + "geometry_corridor_width": 10.0, + "geometry_eaves_depth": 0, + "geometry_foundation_height": 0.0, + "geometry_foundation_height_above_grade": 0.0, + "geometry_foundation_type": "SlabOnGrade", + "geometry_garage_depth": 20.0, + "geometry_garage_position": "Right", + "geometry_garage_protrusion": 0.0, + "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", + "geometry_horizontal_location": "Left", + "geometry_inset_depth": 0.0, + "geometry_inset_position": "Right", + "geometry_inset_width": 0.0, + "geometry_num_bathrooms": "2", + "geometry_num_bedrooms": 3, + "geometry_num_floors_above_grade": 1, + "geometry_num_occupants": "3", + "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, + "geometry_roof_pitch": "6:12", + "geometry_roof_type": "gable", + "geometry_unit_type": "single-family attached", + "geometry_wall_height": 8.0, + "heat_pump_backup_fuel": "none", + "heat_pump_backup_heating_capacity": "34121.0", + "heat_pump_backup_heating_efficiency": 1, + "heat_pump_cooling_capacity": "48000.0", + "heat_pump_cooling_compressor_type": "single stage", + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", + "heat_pump_cooling_sensible_heat_fraction": 0.73, + "heat_pump_fraction_cool_load_served": 1, + "heat_pump_fraction_heat_load_served": 1, + "heat_pump_heating_capacity": "64000.0", + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", + "heat_pump_type": "none", + "heating_system_fraction_heat_load_served": 1, + "heating_system_fraction_heat_load_served_2": 0.25, + "heating_system_fuel": "natural gas", + "heating_system_fuel_2": "electricity", + "heating_system_heating_capacity": "64000.0", + "heating_system_heating_capacity_2": "auto", + "heating_system_heating_efficiency": 0.92, + "heating_system_heating_efficiency_2": 1.0, + "heating_system_type": "Furnace", + "heating_system_type_2": "none", + "holiday_lighting_daily_kwh": "auto", + "holiday_lighting_period_begin_day_of_month": "auto", + "holiday_lighting_period_begin_month": "auto", + "holiday_lighting_period_end_day_of_month": "auto", + "holiday_lighting_period_end_month": "auto", + "holiday_lighting_present": false, + "hot_tub_heater_annual_kwh": "auto", + "hot_tub_heater_annual_therm": "auto", + "hot_tub_heater_type": "electric resistance", + "hot_tub_heater_usage_multiplier": 1.0, + "hot_tub_present": false, + "hot_tub_pump_annual_kwh": "auto", + "hot_tub_pump_usage_multiplier": 1.0, + "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/extra-bldgtype-single-family-attached-slab.xml", + "kitchen_fans_quantity": "0", + "lighting_fraction_cfl_exterior": 0.4, + "lighting_fraction_cfl_garage": 0.4, + "lighting_fraction_cfl_interior": 0.4, + "lighting_fraction_led_exterior": 0.25, + "lighting_fraction_led_garage": 0.25, + "lighting_fraction_led_interior": 0.25, + "lighting_fraction_lfl_exterior": 0.1, + "lighting_fraction_lfl_garage": 0.1, + "lighting_fraction_lfl_interior": 0.1, + "lighting_usage_multiplier_exterior": 1.0, + "lighting_usage_multiplier_garage": 1.0, + "lighting_usage_multiplier_interior": 1.0, + "mech_vent_fan_power": 30, + "mech_vent_fan_power_2": 30, + "mech_vent_fan_type": "none", + "mech_vent_fan_type_2": "none", + "mech_vent_flow_rate": 110, + "mech_vent_flow_rate_2": 110, + "mech_vent_hours_in_operation": 24, + "mech_vent_hours_in_operation_2": 24, + "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", + "mech_vent_sensible_recovery_efficiency": 0.72, + "mech_vent_sensible_recovery_efficiency_2": 0.72, + "mech_vent_total_recovery_efficiency": 0.48, + "mech_vent_total_recovery_efficiency_2": 0.48, + "neighbor_back_distance": 0, + "neighbor_back_height": "auto", + "neighbor_front_distance": 0, + "neighbor_front_height": "auto", + "neighbor_left_distance": 0, + "neighbor_left_height": "auto", + "neighbor_right_distance": 0, + "neighbor_right_height": "auto", + "overhangs_back_depth": 0, + "overhangs_back_distance_to_top_of_window": 0, + "overhangs_front_depth": 0, + "overhangs_front_distance_to_top_of_window": 0, + "overhangs_left_depth": 0, + "overhangs_left_distance_to_top_of_window": 0, + "overhangs_right_depth": 0, + "overhangs_right_distance_to_top_of_window": 0, + "plug_loads_other_annual_kwh": "1638.0", + "plug_loads_other_frac_latent": "0.045", + "plug_loads_other_frac_sensible": "0.855", + "plug_loads_other_usage_multiplier": 1.0, + "plug_loads_television_annual_kwh": "620.0", + "plug_loads_television_usage_multiplier": 1.0, + "plug_loads_vehicle_annual_kwh": "auto", + "plug_loads_vehicle_present": false, + "plug_loads_vehicle_usage_multiplier": 0.0, + "plug_loads_well_pump_annual_kwh": "auto", + "plug_loads_well_pump_present": false, + "plug_loads_well_pump_usage_multiplier": 0.0, + "pool_heater_annual_kwh": "auto", + "pool_heater_annual_therm": "auto", + "pool_heater_type": "electric resistance", + "pool_heater_usage_multiplier": 1.0, + "pool_present": false, + "pool_pump_annual_kwh": "auto", + "pool_pump_usage_multiplier": 1.0, + "pv_system_array_azimuth_1": 180, + "pv_system_array_azimuth_2": 180, + "pv_system_array_tilt_1": "20", + "pv_system_array_tilt_2": "20", + "pv_system_inverter_efficiency_1": 0.96, + "pv_system_inverter_efficiency_2": 0.96, + "pv_system_location_1": "auto", + "pv_system_location_2": "auto", + "pv_system_max_power_output_1": 4000, + "pv_system_max_power_output_2": 4000, + "pv_system_module_type_1": "none", + "pv_system_module_type_2": "none", + "pv_system_num_units_served_1": 1, + "pv_system_num_units_served_2": 1, + "pv_system_system_losses_fraction_1": 0.14, + "pv_system_system_losses_fraction_2": 0.14, + "pv_system_tracking_1": "auto", + "pv_system_tracking_2": "auto", + "refrigerator_location": "living space", + "refrigerator_rated_annual_kwh": "650.0", + "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, + "roof_assembly_r": 2.3, + "roof_color": "medium", + "roof_material_type": "asphalt or fiberglass shingles", + "roof_radiant_barrier": false, + "roof_radiant_barrier_grade": "1", + "schedules_type": "default", + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", + "simulation_control_timestep": "60", + "site_type": "suburban", + "skylight_area_back": 0, + "skylight_area_front": 0, + "skylight_area_left": 0, + "skylight_area_right": 0, + "skylight_shgc": 0.45, + "skylight_ufactor": 0.33, + "slab_carpet_fraction": "0.0", + "slab_carpet_r": "0.0", + "slab_perimeter_depth": 0, + "slab_perimeter_insulation_r": 0, + "slab_thickness": "4.0", + "slab_under_insulation_r": 0, + "slab_under_width": 0, + "solar_thermal_collector_area": 40.0, + "solar_thermal_collector_azimuth": 180, + "solar_thermal_collector_loop_type": "liquid direct", + "solar_thermal_collector_rated_optical_efficiency": 0.5, + "solar_thermal_collector_rated_thermal_losses": 0.2799, + "solar_thermal_collector_tilt": "20", + "solar_thermal_collector_type": "evacuated tube", + "solar_thermal_solar_fraction": 0, + "solar_thermal_storage_volume": "auto", + "solar_thermal_system_type": "none", + "wall_assembly_r": 23, + "wall_color": "medium", + "wall_siding_type": "wood siding", + "wall_type": "WoodStud", + "water_fixtures_shower_low_flow": true, + "water_fixtures_sink_low_flow": false, + "water_fixtures_usage_multiplier": 1.0, + "water_heater_efficiency": 0.95, + "water_heater_efficiency_type": "EnergyFactor", + "water_heater_fuel_type": "electricity", + "water_heater_jacket_rvalue": 0, + "water_heater_location": "living space", + "water_heater_num_units_served": 1, + "water_heater_recovery_efficiency": "0.76", + "water_heater_setpoint_temperature": "125", + "water_heater_standby_loss": 0, + "water_heater_tank_volume": "40", + "water_heater_type": "storage water heater", + "weather_station_epw_filepath": "USA_CO_Denver.Intl.AP.725650_TMY3.epw", + "whole_house_fan_flow_rate": 4500, + "whole_house_fan_power": 300, + "whole_house_fan_present": false, + "window_area_back": 0, + "window_area_front": 0, + "window_area_left": 0, + "window_area_right": 0, + "window_aspect_ratio": 1.333, + "window_back_wwr": 0.18, + "window_fraction_operable": 0.67, + "window_front_wwr": 0.18, + "window_interior_shading_summer": 0.7, + "window_interior_shading_winter": 0.85, + "window_left_wwr": 0.18, + "window_right_wwr": 0.18, + "window_shgc": 0.45, + "window_ufactor": 0.33 + }, + "measure_dir_name": "BuildResidentialHPXML" + } + ] +} \ No newline at end of file diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-single-family-attached-unconditioned-basement-middle.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-single-family-attached-unconditioned-basement-middle.osw new file mode 100644 index 00000000..395b6c0e --- /dev/null +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-single-family-attached-unconditioned-basement-middle.osw @@ -0,0 +1,339 @@ +{ + "measure_paths": [ + "../.." + ], + "steps": [ + { + "arguments": { + "air_leakage_house_pressure": 50, + "air_leakage_shielding_of_home": "auto", + "air_leakage_units": "ACH", + "air_leakage_value": 3, + "bathroom_fans_quantity": "0", + "ceiling_assembly_r": 39.3, + "ceiling_fan_cooling_setpoint_temp_offset": 0, + "ceiling_fan_efficiency": "auto", + "ceiling_fan_present": false, + "ceiling_fan_quantity": "auto", + "clothes_dryer_efficiency": "3.73", + "clothes_dryer_efficiency_type": "CombinedEnergyFactor", + "clothes_dryer_fuel_type": "electricity", + "clothes_dryer_location": "living space", + "clothes_dryer_usage_multiplier": 1.0, + "clothes_dryer_vented_flow_rate": "150.0", + "clothes_washer_capacity": "3.2", + "clothes_washer_efficiency": "1.21", + "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", + "clothes_washer_label_annual_gas_cost": "27.0", + "clothes_washer_label_electric_rate": "0.12", + "clothes_washer_label_gas_rate": "1.09", + "clothes_washer_label_usage": "6.0", + "clothes_washer_location": "living space", + "clothes_washer_rated_annual_kwh": "380.0", + "clothes_washer_usage_multiplier": 1.0, + "cooking_range_oven_fuel_type": "electricity", + "cooking_range_oven_is_convection": false, + "cooking_range_oven_is_induction": false, + "cooking_range_oven_location": "living space", + "cooking_range_oven_usage_multiplier": 1.0, + "cooling_system_cooling_capacity": "48000.0", + "cooling_system_cooling_compressor_type": "single stage", + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", + "cooling_system_cooling_sensible_heat_fraction": 0.73, + "cooling_system_fraction_cool_load_served": 1, + "cooling_system_is_ducted": false, + "cooling_system_type": "central air conditioner", + "dehumidifier_capacity": 40, + "dehumidifier_efficiency": 1.8, + "dehumidifier_efficiency_type": "EnergyFactor", + "dehumidifier_fraction_dehumidification_load_served": 1, + "dehumidifier_rh_setpoint": 0.5, + "dehumidifier_type": "none", + "dhw_distribution_pipe_r": "0.0", + "dhw_distribution_recirc_branch_piping_length": "50", + "dhw_distribution_recirc_control_type": "no control", + "dhw_distribution_recirc_piping_length": "50", + "dhw_distribution_recirc_pump_power": "50", + "dhw_distribution_standard_piping_length": "50", + "dhw_distribution_system_type": "Standard", + "dishwasher_efficiency": "307", + "dishwasher_efficiency_type": "RatedAnnualkWh", + "dishwasher_label_annual_gas_cost": "22.32", + "dishwasher_label_electric_rate": "0.12", + "dishwasher_label_gas_rate": "1.09", + "dishwasher_label_usage": "4.0", + "dishwasher_location": "living space", + "dishwasher_place_setting_capacity": "12", + "dishwasher_usage_multiplier": 1.0, + "door_area": 80.0, + "door_rvalue": 4.4, + "ducts_number_of_return_registers": "2", + "ducts_return_insulation_r": 0.0, + "ducts_return_leakage_units": "CFM25", + "ducts_return_leakage_value": 25.0, + "ducts_return_location": "attic - unvented", + "ducts_return_surface_area": "50.0", + "ducts_supply_insulation_r": 4.0, + "ducts_supply_leakage_units": "CFM25", + "ducts_supply_leakage_value": 75.0, + "ducts_supply_location": "attic - unvented", + "ducts_supply_surface_area": "150.0", + "dwhr_efficiency": 0.55, + "dwhr_equal_flow": true, + "dwhr_facilities_connected": "none", + "extra_refrigerator_location": "none", + "extra_refrigerator_rated_annual_kwh": "auto", + "extra_refrigerator_usage_multiplier": 1.0, + "floor_assembly_r": 18.7, + "foundation_wall_insulation_distance_to_bottom": 0, + "foundation_wall_insulation_distance_to_top": 0.0, + "foundation_wall_insulation_r": 0, + "foundation_wall_thickness": "8.0", + "freezer_location": "none", + "freezer_rated_annual_kwh": "auto", + "freezer_usage_multiplier": 1.0, + "fuel_loads_fireplace_annual_therm": "auto", + "fuel_loads_fireplace_frac_latent": "auto", + "fuel_loads_fireplace_frac_sensible": "auto", + "fuel_loads_fireplace_fuel_type": "natural gas", + "fuel_loads_fireplace_present": false, + "fuel_loads_fireplace_usage_multiplier": 0.0, + "fuel_loads_grill_annual_therm": "auto", + "fuel_loads_grill_fuel_type": "natural gas", + "fuel_loads_grill_present": false, + "fuel_loads_grill_usage_multiplier": 0.0, + "fuel_loads_lighting_annual_therm": "auto", + "fuel_loads_lighting_fuel_type": "natural gas", + "fuel_loads_lighting_present": false, + "fuel_loads_lighting_usage_multiplier": 0.0, + "geometry_aspect_ratio": 1.5, + "geometry_attic_type": "UnventedAttic", + "geometry_balcony_depth": 0.0, + "geometry_building_num_units": 3, + "geometry_cfa": 1800.0, + "geometry_corridor_position": "None", + "geometry_corridor_width": 10.0, + "geometry_eaves_depth": 0, + "geometry_foundation_height": 8.0, + "geometry_foundation_height_above_grade": 1.0, + "geometry_foundation_type": "UnconditionedBasement", + "geometry_garage_depth": 20.0, + "geometry_garage_position": "Right", + "geometry_garage_protrusion": 0.0, + "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", + "geometry_horizontal_location": "Middle", + "geometry_inset_depth": 0.0, + "geometry_inset_position": "Right", + "geometry_inset_width": 0.0, + "geometry_num_bathrooms": "2", + "geometry_num_bedrooms": 3, + "geometry_num_floors_above_grade": 1, + "geometry_num_occupants": "3", + "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, + "geometry_roof_pitch": "6:12", + "geometry_roof_type": "gable", + "geometry_unit_type": "single-family attached", + "geometry_wall_height": 8.0, + "heat_pump_backup_fuel": "none", + "heat_pump_backup_heating_capacity": "34121.0", + "heat_pump_backup_heating_efficiency": 1, + "heat_pump_cooling_capacity": "48000.0", + "heat_pump_cooling_compressor_type": "single stage", + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", + "heat_pump_cooling_sensible_heat_fraction": 0.73, + "heat_pump_fraction_cool_load_served": 1, + "heat_pump_fraction_heat_load_served": 1, + "heat_pump_heating_capacity": "64000.0", + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", + "heat_pump_type": "none", + "heating_system_fraction_heat_load_served": 1, + "heating_system_fraction_heat_load_served_2": 0.25, + "heating_system_fuel": "natural gas", + "heating_system_fuel_2": "electricity", + "heating_system_heating_capacity": "64000.0", + "heating_system_heating_capacity_2": "auto", + "heating_system_heating_efficiency": 0.92, + "heating_system_heating_efficiency_2": 1.0, + "heating_system_type": "Furnace", + "heating_system_type_2": "none", + "holiday_lighting_daily_kwh": "auto", + "holiday_lighting_period_begin_day_of_month": "auto", + "holiday_lighting_period_begin_month": "auto", + "holiday_lighting_period_end_day_of_month": "auto", + "holiday_lighting_period_end_month": "auto", + "holiday_lighting_present": false, + "hot_tub_heater_annual_kwh": "auto", + "hot_tub_heater_annual_therm": "auto", + "hot_tub_heater_type": "electric resistance", + "hot_tub_heater_usage_multiplier": 1.0, + "hot_tub_present": false, + "hot_tub_pump_annual_kwh": "auto", + "hot_tub_pump_usage_multiplier": 1.0, + "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/extra-bldgtype-single-family-attached-unconditioned-basement-middle.xml", + "kitchen_fans_quantity": "0", + "lighting_fraction_cfl_exterior": 0.4, + "lighting_fraction_cfl_garage": 0.4, + "lighting_fraction_cfl_interior": 0.4, + "lighting_fraction_led_exterior": 0.25, + "lighting_fraction_led_garage": 0.25, + "lighting_fraction_led_interior": 0.25, + "lighting_fraction_lfl_exterior": 0.1, + "lighting_fraction_lfl_garage": 0.1, + "lighting_fraction_lfl_interior": 0.1, + "lighting_usage_multiplier_exterior": 1.0, + "lighting_usage_multiplier_garage": 1.0, + "lighting_usage_multiplier_interior": 1.0, + "mech_vent_fan_power": 30, + "mech_vent_fan_power_2": 30, + "mech_vent_fan_type": "none", + "mech_vent_fan_type_2": "none", + "mech_vent_flow_rate": 110, + "mech_vent_flow_rate_2": 110, + "mech_vent_hours_in_operation": 24, + "mech_vent_hours_in_operation_2": 24, + "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", + "mech_vent_sensible_recovery_efficiency": 0.72, + "mech_vent_sensible_recovery_efficiency_2": 0.72, + "mech_vent_total_recovery_efficiency": 0.48, + "mech_vent_total_recovery_efficiency_2": 0.48, + "neighbor_back_distance": 0, + "neighbor_back_height": "auto", + "neighbor_front_distance": 0, + "neighbor_front_height": "auto", + "neighbor_left_distance": 0, + "neighbor_left_height": "auto", + "neighbor_right_distance": 0, + "neighbor_right_height": "auto", + "overhangs_back_depth": 0, + "overhangs_back_distance_to_top_of_window": 0, + "overhangs_front_depth": 0, + "overhangs_front_distance_to_top_of_window": 0, + "overhangs_left_depth": 0, + "overhangs_left_distance_to_top_of_window": 0, + "overhangs_right_depth": 0, + "overhangs_right_distance_to_top_of_window": 0, + "plug_loads_other_annual_kwh": "1638.0", + "plug_loads_other_frac_latent": "0.045", + "plug_loads_other_frac_sensible": "0.855", + "plug_loads_other_usage_multiplier": 1.0, + "plug_loads_television_annual_kwh": "620.0", + "plug_loads_television_usage_multiplier": 1.0, + "plug_loads_vehicle_annual_kwh": "auto", + "plug_loads_vehicle_present": false, + "plug_loads_vehicle_usage_multiplier": 0.0, + "plug_loads_well_pump_annual_kwh": "auto", + "plug_loads_well_pump_present": false, + "plug_loads_well_pump_usage_multiplier": 0.0, + "pool_heater_annual_kwh": "auto", + "pool_heater_annual_therm": "auto", + "pool_heater_type": "electric resistance", + "pool_heater_usage_multiplier": 1.0, + "pool_present": false, + "pool_pump_annual_kwh": "auto", + "pool_pump_usage_multiplier": 1.0, + "pv_system_array_azimuth_1": 180, + "pv_system_array_azimuth_2": 180, + "pv_system_array_tilt_1": "20", + "pv_system_array_tilt_2": "20", + "pv_system_inverter_efficiency_1": 0.96, + "pv_system_inverter_efficiency_2": 0.96, + "pv_system_location_1": "auto", + "pv_system_location_2": "auto", + "pv_system_max_power_output_1": 4000, + "pv_system_max_power_output_2": 4000, + "pv_system_module_type_1": "none", + "pv_system_module_type_2": "none", + "pv_system_num_units_served_1": 1, + "pv_system_num_units_served_2": 1, + "pv_system_system_losses_fraction_1": 0.14, + "pv_system_system_losses_fraction_2": 0.14, + "pv_system_tracking_1": "auto", + "pv_system_tracking_2": "auto", + "refrigerator_location": "living space", + "refrigerator_rated_annual_kwh": "650.0", + "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, + "roof_assembly_r": 2.3, + "roof_color": "medium", + "roof_material_type": "asphalt or fiberglass shingles", + "roof_radiant_barrier": false, + "roof_radiant_barrier_grade": "1", + "schedules_type": "default", + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", + "simulation_control_timestep": "60", + "site_type": "suburban", + "skylight_area_back": 0, + "skylight_area_front": 0, + "skylight_area_left": 0, + "skylight_area_right": 0, + "skylight_shgc": 0.45, + "skylight_ufactor": 0.33, + "slab_carpet_fraction": "0.0", + "slab_carpet_r": "0.0", + "slab_perimeter_depth": 0, + "slab_perimeter_insulation_r": 0, + "slab_thickness": "4.0", + "slab_under_insulation_r": 0, + "slab_under_width": 0, + "solar_thermal_collector_area": 40.0, + "solar_thermal_collector_azimuth": 180, + "solar_thermal_collector_loop_type": "liquid direct", + "solar_thermal_collector_rated_optical_efficiency": 0.5, + "solar_thermal_collector_rated_thermal_losses": 0.2799, + "solar_thermal_collector_tilt": "20", + "solar_thermal_collector_type": "evacuated tube", + "solar_thermal_solar_fraction": 0, + "solar_thermal_storage_volume": "auto", + "solar_thermal_system_type": "none", + "wall_assembly_r": 23, + "wall_color": "medium", + "wall_siding_type": "wood siding", + "wall_type": "WoodStud", + "water_fixtures_shower_low_flow": true, + "water_fixtures_sink_low_flow": false, + "water_fixtures_usage_multiplier": 1.0, + "water_heater_efficiency": 0.95, + "water_heater_efficiency_type": "EnergyFactor", + "water_heater_fuel_type": "electricity", + "water_heater_jacket_rvalue": 0, + "water_heater_location": "living space", + "water_heater_num_units_served": 1, + "water_heater_recovery_efficiency": "0.76", + "water_heater_setpoint_temperature": "125", + "water_heater_standby_loss": 0, + "water_heater_tank_volume": "40", + "water_heater_type": "storage water heater", + "weather_station_epw_filepath": "USA_CO_Denver.Intl.AP.725650_TMY3.epw", + "whole_house_fan_flow_rate": 4500, + "whole_house_fan_power": 300, + "whole_house_fan_present": false, + "window_area_back": 0, + "window_area_front": 0, + "window_area_left": 0, + "window_area_right": 0, + "window_aspect_ratio": 1.333, + "window_back_wwr": 0.18, + "window_fraction_operable": 0.67, + "window_front_wwr": 0.18, + "window_interior_shading_summer": 0.7, + "window_interior_shading_winter": 0.85, + "window_left_wwr": 0.18, + "window_right_wwr": 0.18, + "window_shgc": 0.45, + "window_ufactor": 0.33 + }, + "measure_dir_name": "BuildResidentialHPXML" + } + ] +} \ No newline at end of file diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-single-family-attached-unconditioned-basement-right.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-single-family-attached-unconditioned-basement-right.osw new file mode 100644 index 00000000..a1269740 --- /dev/null +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-single-family-attached-unconditioned-basement-right.osw @@ -0,0 +1,339 @@ +{ + "measure_paths": [ + "../.." + ], + "steps": [ + { + "arguments": { + "air_leakage_house_pressure": 50, + "air_leakage_shielding_of_home": "auto", + "air_leakage_units": "ACH", + "air_leakage_value": 3, + "bathroom_fans_quantity": "0", + "ceiling_assembly_r": 39.3, + "ceiling_fan_cooling_setpoint_temp_offset": 0, + "ceiling_fan_efficiency": "auto", + "ceiling_fan_present": false, + "ceiling_fan_quantity": "auto", + "clothes_dryer_efficiency": "3.73", + "clothes_dryer_efficiency_type": "CombinedEnergyFactor", + "clothes_dryer_fuel_type": "electricity", + "clothes_dryer_location": "living space", + "clothes_dryer_usage_multiplier": 1.0, + "clothes_dryer_vented_flow_rate": "150.0", + "clothes_washer_capacity": "3.2", + "clothes_washer_efficiency": "1.21", + "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", + "clothes_washer_label_annual_gas_cost": "27.0", + "clothes_washer_label_electric_rate": "0.12", + "clothes_washer_label_gas_rate": "1.09", + "clothes_washer_label_usage": "6.0", + "clothes_washer_location": "living space", + "clothes_washer_rated_annual_kwh": "380.0", + "clothes_washer_usage_multiplier": 1.0, + "cooking_range_oven_fuel_type": "electricity", + "cooking_range_oven_is_convection": false, + "cooking_range_oven_is_induction": false, + "cooking_range_oven_location": "living space", + "cooking_range_oven_usage_multiplier": 1.0, + "cooling_system_cooling_capacity": "48000.0", + "cooling_system_cooling_compressor_type": "single stage", + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", + "cooling_system_cooling_sensible_heat_fraction": 0.73, + "cooling_system_fraction_cool_load_served": 1, + "cooling_system_is_ducted": false, + "cooling_system_type": "central air conditioner", + "dehumidifier_capacity": 40, + "dehumidifier_efficiency": 1.8, + "dehumidifier_efficiency_type": "EnergyFactor", + "dehumidifier_fraction_dehumidification_load_served": 1, + "dehumidifier_rh_setpoint": 0.5, + "dehumidifier_type": "none", + "dhw_distribution_pipe_r": "0.0", + "dhw_distribution_recirc_branch_piping_length": "50", + "dhw_distribution_recirc_control_type": "no control", + "dhw_distribution_recirc_piping_length": "50", + "dhw_distribution_recirc_pump_power": "50", + "dhw_distribution_standard_piping_length": "50", + "dhw_distribution_system_type": "Standard", + "dishwasher_efficiency": "307", + "dishwasher_efficiency_type": "RatedAnnualkWh", + "dishwasher_label_annual_gas_cost": "22.32", + "dishwasher_label_electric_rate": "0.12", + "dishwasher_label_gas_rate": "1.09", + "dishwasher_label_usage": "4.0", + "dishwasher_location": "living space", + "dishwasher_place_setting_capacity": "12", + "dishwasher_usage_multiplier": 1.0, + "door_area": 80.0, + "door_rvalue": 4.4, + "ducts_number_of_return_registers": "2", + "ducts_return_insulation_r": 0.0, + "ducts_return_leakage_units": "CFM25", + "ducts_return_leakage_value": 25.0, + "ducts_return_location": "attic - unvented", + "ducts_return_surface_area": "50.0", + "ducts_supply_insulation_r": 4.0, + "ducts_supply_leakage_units": "CFM25", + "ducts_supply_leakage_value": 75.0, + "ducts_supply_location": "attic - unvented", + "ducts_supply_surface_area": "150.0", + "dwhr_efficiency": 0.55, + "dwhr_equal_flow": true, + "dwhr_facilities_connected": "none", + "extra_refrigerator_location": "none", + "extra_refrigerator_rated_annual_kwh": "auto", + "extra_refrigerator_usage_multiplier": 1.0, + "floor_assembly_r": 18.7, + "foundation_wall_insulation_distance_to_bottom": 0, + "foundation_wall_insulation_distance_to_top": 0.0, + "foundation_wall_insulation_r": 0, + "foundation_wall_thickness": "8.0", + "freezer_location": "none", + "freezer_rated_annual_kwh": "auto", + "freezer_usage_multiplier": 1.0, + "fuel_loads_fireplace_annual_therm": "auto", + "fuel_loads_fireplace_frac_latent": "auto", + "fuel_loads_fireplace_frac_sensible": "auto", + "fuel_loads_fireplace_fuel_type": "natural gas", + "fuel_loads_fireplace_present": false, + "fuel_loads_fireplace_usage_multiplier": 0.0, + "fuel_loads_grill_annual_therm": "auto", + "fuel_loads_grill_fuel_type": "natural gas", + "fuel_loads_grill_present": false, + "fuel_loads_grill_usage_multiplier": 0.0, + "fuel_loads_lighting_annual_therm": "auto", + "fuel_loads_lighting_fuel_type": "natural gas", + "fuel_loads_lighting_present": false, + "fuel_loads_lighting_usage_multiplier": 0.0, + "geometry_aspect_ratio": 1.5, + "geometry_attic_type": "UnventedAttic", + "geometry_balcony_depth": 0.0, + "geometry_building_num_units": 3, + "geometry_cfa": 1800.0, + "geometry_corridor_position": "None", + "geometry_corridor_width": 10.0, + "geometry_eaves_depth": 0, + "geometry_foundation_height": 8.0, + "geometry_foundation_height_above_grade": 1.0, + "geometry_foundation_type": "UnconditionedBasement", + "geometry_garage_depth": 20.0, + "geometry_garage_position": "Right", + "geometry_garage_protrusion": 0.0, + "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", + "geometry_horizontal_location": "Right", + "geometry_inset_depth": 0.0, + "geometry_inset_position": "Right", + "geometry_inset_width": 0.0, + "geometry_num_bathrooms": "2", + "geometry_num_bedrooms": 3, + "geometry_num_floors_above_grade": 1, + "geometry_num_occupants": "3", + "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, + "geometry_roof_pitch": "6:12", + "geometry_roof_type": "gable", + "geometry_unit_type": "single-family attached", + "geometry_wall_height": 8.0, + "heat_pump_backup_fuel": "none", + "heat_pump_backup_heating_capacity": "34121.0", + "heat_pump_backup_heating_efficiency": 1, + "heat_pump_cooling_capacity": "48000.0", + "heat_pump_cooling_compressor_type": "single stage", + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", + "heat_pump_cooling_sensible_heat_fraction": 0.73, + "heat_pump_fraction_cool_load_served": 1, + "heat_pump_fraction_heat_load_served": 1, + "heat_pump_heating_capacity": "64000.0", + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", + "heat_pump_type": "none", + "heating_system_fraction_heat_load_served": 1, + "heating_system_fraction_heat_load_served_2": 0.25, + "heating_system_fuel": "natural gas", + "heating_system_fuel_2": "electricity", + "heating_system_heating_capacity": "64000.0", + "heating_system_heating_capacity_2": "auto", + "heating_system_heating_efficiency": 0.92, + "heating_system_heating_efficiency_2": 1.0, + "heating_system_type": "Furnace", + "heating_system_type_2": "none", + "holiday_lighting_daily_kwh": "auto", + "holiday_lighting_period_begin_day_of_month": "auto", + "holiday_lighting_period_begin_month": "auto", + "holiday_lighting_period_end_day_of_month": "auto", + "holiday_lighting_period_end_month": "auto", + "holiday_lighting_present": false, + "hot_tub_heater_annual_kwh": "auto", + "hot_tub_heater_annual_therm": "auto", + "hot_tub_heater_type": "electric resistance", + "hot_tub_heater_usage_multiplier": 1.0, + "hot_tub_present": false, + "hot_tub_pump_annual_kwh": "auto", + "hot_tub_pump_usage_multiplier": 1.0, + "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/extra-bldgtype-single-family-attached-unconditioned-basement-right.xml", + "kitchen_fans_quantity": "0", + "lighting_fraction_cfl_exterior": 0.4, + "lighting_fraction_cfl_garage": 0.4, + "lighting_fraction_cfl_interior": 0.4, + "lighting_fraction_led_exterior": 0.25, + "lighting_fraction_led_garage": 0.25, + "lighting_fraction_led_interior": 0.25, + "lighting_fraction_lfl_exterior": 0.1, + "lighting_fraction_lfl_garage": 0.1, + "lighting_fraction_lfl_interior": 0.1, + "lighting_usage_multiplier_exterior": 1.0, + "lighting_usage_multiplier_garage": 1.0, + "lighting_usage_multiplier_interior": 1.0, + "mech_vent_fan_power": 30, + "mech_vent_fan_power_2": 30, + "mech_vent_fan_type": "none", + "mech_vent_fan_type_2": "none", + "mech_vent_flow_rate": 110, + "mech_vent_flow_rate_2": 110, + "mech_vent_hours_in_operation": 24, + "mech_vent_hours_in_operation_2": 24, + "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", + "mech_vent_sensible_recovery_efficiency": 0.72, + "mech_vent_sensible_recovery_efficiency_2": 0.72, + "mech_vent_total_recovery_efficiency": 0.48, + "mech_vent_total_recovery_efficiency_2": 0.48, + "neighbor_back_distance": 0, + "neighbor_back_height": "auto", + "neighbor_front_distance": 0, + "neighbor_front_height": "auto", + "neighbor_left_distance": 0, + "neighbor_left_height": "auto", + "neighbor_right_distance": 0, + "neighbor_right_height": "auto", + "overhangs_back_depth": 0, + "overhangs_back_distance_to_top_of_window": 0, + "overhangs_front_depth": 0, + "overhangs_front_distance_to_top_of_window": 0, + "overhangs_left_depth": 0, + "overhangs_left_distance_to_top_of_window": 0, + "overhangs_right_depth": 0, + "overhangs_right_distance_to_top_of_window": 0, + "plug_loads_other_annual_kwh": "1638.0", + "plug_loads_other_frac_latent": "0.045", + "plug_loads_other_frac_sensible": "0.855", + "plug_loads_other_usage_multiplier": 1.0, + "plug_loads_television_annual_kwh": "620.0", + "plug_loads_television_usage_multiplier": 1.0, + "plug_loads_vehicle_annual_kwh": "auto", + "plug_loads_vehicle_present": false, + "plug_loads_vehicle_usage_multiplier": 0.0, + "plug_loads_well_pump_annual_kwh": "auto", + "plug_loads_well_pump_present": false, + "plug_loads_well_pump_usage_multiplier": 0.0, + "pool_heater_annual_kwh": "auto", + "pool_heater_annual_therm": "auto", + "pool_heater_type": "electric resistance", + "pool_heater_usage_multiplier": 1.0, + "pool_present": false, + "pool_pump_annual_kwh": "auto", + "pool_pump_usage_multiplier": 1.0, + "pv_system_array_azimuth_1": 180, + "pv_system_array_azimuth_2": 180, + "pv_system_array_tilt_1": "20", + "pv_system_array_tilt_2": "20", + "pv_system_inverter_efficiency_1": 0.96, + "pv_system_inverter_efficiency_2": 0.96, + "pv_system_location_1": "auto", + "pv_system_location_2": "auto", + "pv_system_max_power_output_1": 4000, + "pv_system_max_power_output_2": 4000, + "pv_system_module_type_1": "none", + "pv_system_module_type_2": "none", + "pv_system_num_units_served_1": 1, + "pv_system_num_units_served_2": 1, + "pv_system_system_losses_fraction_1": 0.14, + "pv_system_system_losses_fraction_2": 0.14, + "pv_system_tracking_1": "auto", + "pv_system_tracking_2": "auto", + "refrigerator_location": "living space", + "refrigerator_rated_annual_kwh": "650.0", + "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, + "roof_assembly_r": 2.3, + "roof_color": "medium", + "roof_material_type": "asphalt or fiberglass shingles", + "roof_radiant_barrier": false, + "roof_radiant_barrier_grade": "1", + "schedules_type": "default", + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", + "simulation_control_timestep": "60", + "site_type": "suburban", + "skylight_area_back": 0, + "skylight_area_front": 0, + "skylight_area_left": 0, + "skylight_area_right": 0, + "skylight_shgc": 0.45, + "skylight_ufactor": 0.33, + "slab_carpet_fraction": "0.0", + "slab_carpet_r": "0.0", + "slab_perimeter_depth": 0, + "slab_perimeter_insulation_r": 0, + "slab_thickness": "4.0", + "slab_under_insulation_r": 0, + "slab_under_width": 0, + "solar_thermal_collector_area": 40.0, + "solar_thermal_collector_azimuth": 180, + "solar_thermal_collector_loop_type": "liquid direct", + "solar_thermal_collector_rated_optical_efficiency": 0.5, + "solar_thermal_collector_rated_thermal_losses": 0.2799, + "solar_thermal_collector_tilt": "20", + "solar_thermal_collector_type": "evacuated tube", + "solar_thermal_solar_fraction": 0, + "solar_thermal_storage_volume": "auto", + "solar_thermal_system_type": "none", + "wall_assembly_r": 23, + "wall_color": "medium", + "wall_siding_type": "wood siding", + "wall_type": "WoodStud", + "water_fixtures_shower_low_flow": true, + "water_fixtures_sink_low_flow": false, + "water_fixtures_usage_multiplier": 1.0, + "water_heater_efficiency": 0.95, + "water_heater_efficiency_type": "EnergyFactor", + "water_heater_fuel_type": "electricity", + "water_heater_jacket_rvalue": 0, + "water_heater_location": "living space", + "water_heater_num_units_served": 1, + "water_heater_recovery_efficiency": "0.76", + "water_heater_setpoint_temperature": "125", + "water_heater_standby_loss": 0, + "water_heater_tank_volume": "40", + "water_heater_type": "storage water heater", + "weather_station_epw_filepath": "USA_CO_Denver.Intl.AP.725650_TMY3.epw", + "whole_house_fan_flow_rate": 4500, + "whole_house_fan_power": 300, + "whole_house_fan_present": false, + "window_area_back": 0, + "window_area_front": 0, + "window_area_left": 0, + "window_area_right": 0, + "window_aspect_ratio": 1.333, + "window_back_wwr": 0.18, + "window_fraction_operable": 0.67, + "window_front_wwr": 0.18, + "window_interior_shading_summer": 0.7, + "window_interior_shading_winter": 0.85, + "window_left_wwr": 0.18, + "window_right_wwr": 0.18, + "window_shgc": 0.45, + "window_ufactor": 0.33 + }, + "measure_dir_name": "BuildResidentialHPXML" + } + ] +} \ No newline at end of file diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-single-family-attached-unconditioned-basement.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-single-family-attached-unconditioned-basement.osw new file mode 100644 index 00000000..25742524 --- /dev/null +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-single-family-attached-unconditioned-basement.osw @@ -0,0 +1,339 @@ +{ + "measure_paths": [ + "../.." + ], + "steps": [ + { + "arguments": { + "air_leakage_house_pressure": 50, + "air_leakage_shielding_of_home": "auto", + "air_leakage_units": "ACH", + "air_leakage_value": 3, + "bathroom_fans_quantity": "0", + "ceiling_assembly_r": 39.3, + "ceiling_fan_cooling_setpoint_temp_offset": 0, + "ceiling_fan_efficiency": "auto", + "ceiling_fan_present": false, + "ceiling_fan_quantity": "auto", + "clothes_dryer_efficiency": "3.73", + "clothes_dryer_efficiency_type": "CombinedEnergyFactor", + "clothes_dryer_fuel_type": "electricity", + "clothes_dryer_location": "living space", + "clothes_dryer_usage_multiplier": 1.0, + "clothes_dryer_vented_flow_rate": "150.0", + "clothes_washer_capacity": "3.2", + "clothes_washer_efficiency": "1.21", + "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", + "clothes_washer_label_annual_gas_cost": "27.0", + "clothes_washer_label_electric_rate": "0.12", + "clothes_washer_label_gas_rate": "1.09", + "clothes_washer_label_usage": "6.0", + "clothes_washer_location": "living space", + "clothes_washer_rated_annual_kwh": "380.0", + "clothes_washer_usage_multiplier": 1.0, + "cooking_range_oven_fuel_type": "electricity", + "cooking_range_oven_is_convection": false, + "cooking_range_oven_is_induction": false, + "cooking_range_oven_location": "living space", + "cooking_range_oven_usage_multiplier": 1.0, + "cooling_system_cooling_capacity": "48000.0", + "cooling_system_cooling_compressor_type": "single stage", + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", + "cooling_system_cooling_sensible_heat_fraction": 0.73, + "cooling_system_fraction_cool_load_served": 1, + "cooling_system_is_ducted": false, + "cooling_system_type": "central air conditioner", + "dehumidifier_capacity": 40, + "dehumidifier_efficiency": 1.8, + "dehumidifier_efficiency_type": "EnergyFactor", + "dehumidifier_fraction_dehumidification_load_served": 1, + "dehumidifier_rh_setpoint": 0.5, + "dehumidifier_type": "none", + "dhw_distribution_pipe_r": "0.0", + "dhw_distribution_recirc_branch_piping_length": "50", + "dhw_distribution_recirc_control_type": "no control", + "dhw_distribution_recirc_piping_length": "50", + "dhw_distribution_recirc_pump_power": "50", + "dhw_distribution_standard_piping_length": "50", + "dhw_distribution_system_type": "Standard", + "dishwasher_efficiency": "307", + "dishwasher_efficiency_type": "RatedAnnualkWh", + "dishwasher_label_annual_gas_cost": "22.32", + "dishwasher_label_electric_rate": "0.12", + "dishwasher_label_gas_rate": "1.09", + "dishwasher_label_usage": "4.0", + "dishwasher_location": "living space", + "dishwasher_place_setting_capacity": "12", + "dishwasher_usage_multiplier": 1.0, + "door_area": 80.0, + "door_rvalue": 4.4, + "ducts_number_of_return_registers": "2", + "ducts_return_insulation_r": 0.0, + "ducts_return_leakage_units": "CFM25", + "ducts_return_leakage_value": 25.0, + "ducts_return_location": "attic - unvented", + "ducts_return_surface_area": "50.0", + "ducts_supply_insulation_r": 4.0, + "ducts_supply_leakage_units": "CFM25", + "ducts_supply_leakage_value": 75.0, + "ducts_supply_location": "attic - unvented", + "ducts_supply_surface_area": "150.0", + "dwhr_efficiency": 0.55, + "dwhr_equal_flow": true, + "dwhr_facilities_connected": "none", + "extra_refrigerator_location": "none", + "extra_refrigerator_rated_annual_kwh": "auto", + "extra_refrigerator_usage_multiplier": 1.0, + "floor_assembly_r": 18.7, + "foundation_wall_insulation_distance_to_bottom": 0, + "foundation_wall_insulation_distance_to_top": 0.0, + "foundation_wall_insulation_r": 0, + "foundation_wall_thickness": "8.0", + "freezer_location": "none", + "freezer_rated_annual_kwh": "auto", + "freezer_usage_multiplier": 1.0, + "fuel_loads_fireplace_annual_therm": "auto", + "fuel_loads_fireplace_frac_latent": "auto", + "fuel_loads_fireplace_frac_sensible": "auto", + "fuel_loads_fireplace_fuel_type": "natural gas", + "fuel_loads_fireplace_present": false, + "fuel_loads_fireplace_usage_multiplier": 0.0, + "fuel_loads_grill_annual_therm": "auto", + "fuel_loads_grill_fuel_type": "natural gas", + "fuel_loads_grill_present": false, + "fuel_loads_grill_usage_multiplier": 0.0, + "fuel_loads_lighting_annual_therm": "auto", + "fuel_loads_lighting_fuel_type": "natural gas", + "fuel_loads_lighting_present": false, + "fuel_loads_lighting_usage_multiplier": 0.0, + "geometry_aspect_ratio": 1.5, + "geometry_attic_type": "UnventedAttic", + "geometry_balcony_depth": 0.0, + "geometry_building_num_units": 3, + "geometry_cfa": 1800.0, + "geometry_corridor_position": "None", + "geometry_corridor_width": 10.0, + "geometry_eaves_depth": 0, + "geometry_foundation_height": 8.0, + "geometry_foundation_height_above_grade": 1.0, + "geometry_foundation_type": "UnconditionedBasement", + "geometry_garage_depth": 20.0, + "geometry_garage_position": "Right", + "geometry_garage_protrusion": 0.0, + "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", + "geometry_horizontal_location": "Left", + "geometry_inset_depth": 0.0, + "geometry_inset_position": "Right", + "geometry_inset_width": 0.0, + "geometry_num_bathrooms": "2", + "geometry_num_bedrooms": 3, + "geometry_num_floors_above_grade": 1, + "geometry_num_occupants": "3", + "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, + "geometry_roof_pitch": "6:12", + "geometry_roof_type": "gable", + "geometry_unit_type": "single-family attached", + "geometry_wall_height": 8.0, + "heat_pump_backup_fuel": "none", + "heat_pump_backup_heating_capacity": "34121.0", + "heat_pump_backup_heating_efficiency": 1, + "heat_pump_cooling_capacity": "48000.0", + "heat_pump_cooling_compressor_type": "single stage", + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", + "heat_pump_cooling_sensible_heat_fraction": 0.73, + "heat_pump_fraction_cool_load_served": 1, + "heat_pump_fraction_heat_load_served": 1, + "heat_pump_heating_capacity": "64000.0", + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", + "heat_pump_type": "none", + "heating_system_fraction_heat_load_served": 1, + "heating_system_fraction_heat_load_served_2": 0.25, + "heating_system_fuel": "natural gas", + "heating_system_fuel_2": "electricity", + "heating_system_heating_capacity": "64000.0", + "heating_system_heating_capacity_2": "auto", + "heating_system_heating_efficiency": 0.92, + "heating_system_heating_efficiency_2": 1.0, + "heating_system_type": "Furnace", + "heating_system_type_2": "none", + "holiday_lighting_daily_kwh": "auto", + "holiday_lighting_period_begin_day_of_month": "auto", + "holiday_lighting_period_begin_month": "auto", + "holiday_lighting_period_end_day_of_month": "auto", + "holiday_lighting_period_end_month": "auto", + "holiday_lighting_present": false, + "hot_tub_heater_annual_kwh": "auto", + "hot_tub_heater_annual_therm": "auto", + "hot_tub_heater_type": "electric resistance", + "hot_tub_heater_usage_multiplier": 1.0, + "hot_tub_present": false, + "hot_tub_pump_annual_kwh": "auto", + "hot_tub_pump_usage_multiplier": 1.0, + "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/extra-bldgtype-single-family-attached-unconditioned-basement.xml", + "kitchen_fans_quantity": "0", + "lighting_fraction_cfl_exterior": 0.4, + "lighting_fraction_cfl_garage": 0.4, + "lighting_fraction_cfl_interior": 0.4, + "lighting_fraction_led_exterior": 0.25, + "lighting_fraction_led_garage": 0.25, + "lighting_fraction_led_interior": 0.25, + "lighting_fraction_lfl_exterior": 0.1, + "lighting_fraction_lfl_garage": 0.1, + "lighting_fraction_lfl_interior": 0.1, + "lighting_usage_multiplier_exterior": 1.0, + "lighting_usage_multiplier_garage": 1.0, + "lighting_usage_multiplier_interior": 1.0, + "mech_vent_fan_power": 30, + "mech_vent_fan_power_2": 30, + "mech_vent_fan_type": "none", + "mech_vent_fan_type_2": "none", + "mech_vent_flow_rate": 110, + "mech_vent_flow_rate_2": 110, + "mech_vent_hours_in_operation": 24, + "mech_vent_hours_in_operation_2": 24, + "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", + "mech_vent_sensible_recovery_efficiency": 0.72, + "mech_vent_sensible_recovery_efficiency_2": 0.72, + "mech_vent_total_recovery_efficiency": 0.48, + "mech_vent_total_recovery_efficiency_2": 0.48, + "neighbor_back_distance": 0, + "neighbor_back_height": "auto", + "neighbor_front_distance": 0, + "neighbor_front_height": "auto", + "neighbor_left_distance": 0, + "neighbor_left_height": "auto", + "neighbor_right_distance": 0, + "neighbor_right_height": "auto", + "overhangs_back_depth": 0, + "overhangs_back_distance_to_top_of_window": 0, + "overhangs_front_depth": 0, + "overhangs_front_distance_to_top_of_window": 0, + "overhangs_left_depth": 0, + "overhangs_left_distance_to_top_of_window": 0, + "overhangs_right_depth": 0, + "overhangs_right_distance_to_top_of_window": 0, + "plug_loads_other_annual_kwh": "1638.0", + "plug_loads_other_frac_latent": "0.045", + "plug_loads_other_frac_sensible": "0.855", + "plug_loads_other_usage_multiplier": 1.0, + "plug_loads_television_annual_kwh": "620.0", + "plug_loads_television_usage_multiplier": 1.0, + "plug_loads_vehicle_annual_kwh": "auto", + "plug_loads_vehicle_present": false, + "plug_loads_vehicle_usage_multiplier": 0.0, + "plug_loads_well_pump_annual_kwh": "auto", + "plug_loads_well_pump_present": false, + "plug_loads_well_pump_usage_multiplier": 0.0, + "pool_heater_annual_kwh": "auto", + "pool_heater_annual_therm": "auto", + "pool_heater_type": "electric resistance", + "pool_heater_usage_multiplier": 1.0, + "pool_present": false, + "pool_pump_annual_kwh": "auto", + "pool_pump_usage_multiplier": 1.0, + "pv_system_array_azimuth_1": 180, + "pv_system_array_azimuth_2": 180, + "pv_system_array_tilt_1": "20", + "pv_system_array_tilt_2": "20", + "pv_system_inverter_efficiency_1": 0.96, + "pv_system_inverter_efficiency_2": 0.96, + "pv_system_location_1": "auto", + "pv_system_location_2": "auto", + "pv_system_max_power_output_1": 4000, + "pv_system_max_power_output_2": 4000, + "pv_system_module_type_1": "none", + "pv_system_module_type_2": "none", + "pv_system_num_units_served_1": 1, + "pv_system_num_units_served_2": 1, + "pv_system_system_losses_fraction_1": 0.14, + "pv_system_system_losses_fraction_2": 0.14, + "pv_system_tracking_1": "auto", + "pv_system_tracking_2": "auto", + "refrigerator_location": "living space", + "refrigerator_rated_annual_kwh": "650.0", + "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, + "roof_assembly_r": 2.3, + "roof_color": "medium", + "roof_material_type": "asphalt or fiberglass shingles", + "roof_radiant_barrier": false, + "roof_radiant_barrier_grade": "1", + "schedules_type": "default", + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", + "simulation_control_timestep": "60", + "site_type": "suburban", + "skylight_area_back": 0, + "skylight_area_front": 0, + "skylight_area_left": 0, + "skylight_area_right": 0, + "skylight_shgc": 0.45, + "skylight_ufactor": 0.33, + "slab_carpet_fraction": "0.0", + "slab_carpet_r": "0.0", + "slab_perimeter_depth": 0, + "slab_perimeter_insulation_r": 0, + "slab_thickness": "4.0", + "slab_under_insulation_r": 0, + "slab_under_width": 0, + "solar_thermal_collector_area": 40.0, + "solar_thermal_collector_azimuth": 180, + "solar_thermal_collector_loop_type": "liquid direct", + "solar_thermal_collector_rated_optical_efficiency": 0.5, + "solar_thermal_collector_rated_thermal_losses": 0.2799, + "solar_thermal_collector_tilt": "20", + "solar_thermal_collector_type": "evacuated tube", + "solar_thermal_solar_fraction": 0, + "solar_thermal_storage_volume": "auto", + "solar_thermal_system_type": "none", + "wall_assembly_r": 23, + "wall_color": "medium", + "wall_siding_type": "wood siding", + "wall_type": "WoodStud", + "water_fixtures_shower_low_flow": true, + "water_fixtures_sink_low_flow": false, + "water_fixtures_usage_multiplier": 1.0, + "water_heater_efficiency": 0.95, + "water_heater_efficiency_type": "EnergyFactor", + "water_heater_fuel_type": "electricity", + "water_heater_jacket_rvalue": 0, + "water_heater_location": "living space", + "water_heater_num_units_served": 1, + "water_heater_recovery_efficiency": "0.76", + "water_heater_setpoint_temperature": "125", + "water_heater_standby_loss": 0, + "water_heater_tank_volume": "40", + "water_heater_type": "storage water heater", + "weather_station_epw_filepath": "USA_CO_Denver.Intl.AP.725650_TMY3.epw", + "whole_house_fan_flow_rate": 4500, + "whole_house_fan_power": 300, + "whole_house_fan_present": false, + "window_area_back": 0, + "window_area_front": 0, + "window_area_left": 0, + "window_area_right": 0, + "window_aspect_ratio": 1.333, + "window_back_wwr": 0.18, + "window_fraction_operable": 0.67, + "window_front_wwr": 0.18, + "window_interior_shading_summer": 0.7, + "window_interior_shading_winter": 0.85, + "window_left_wwr": 0.18, + "window_right_wwr": 0.18, + "window_shgc": 0.45, + "window_ufactor": 0.33 + }, + "measure_dir_name": "BuildResidentialHPXML" + } + ] +} \ No newline at end of file diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-single-family-attached-unvented-crawlspace-middle.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-single-family-attached-unvented-crawlspace-middle.osw new file mode 100644 index 00000000..38cc7a18 --- /dev/null +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-single-family-attached-unvented-crawlspace-middle.osw @@ -0,0 +1,339 @@ +{ + "measure_paths": [ + "../.." + ], + "steps": [ + { + "arguments": { + "air_leakage_house_pressure": 50, + "air_leakage_shielding_of_home": "auto", + "air_leakage_units": "ACH", + "air_leakage_value": 3, + "bathroom_fans_quantity": "0", + "ceiling_assembly_r": 39.3, + "ceiling_fan_cooling_setpoint_temp_offset": 0, + "ceiling_fan_efficiency": "auto", + "ceiling_fan_present": false, + "ceiling_fan_quantity": "auto", + "clothes_dryer_efficiency": "3.73", + "clothes_dryer_efficiency_type": "CombinedEnergyFactor", + "clothes_dryer_fuel_type": "electricity", + "clothes_dryer_location": "living space", + "clothes_dryer_usage_multiplier": 1.0, + "clothes_dryer_vented_flow_rate": "150.0", + "clothes_washer_capacity": "3.2", + "clothes_washer_efficiency": "1.21", + "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", + "clothes_washer_label_annual_gas_cost": "27.0", + "clothes_washer_label_electric_rate": "0.12", + "clothes_washer_label_gas_rate": "1.09", + "clothes_washer_label_usage": "6.0", + "clothes_washer_location": "living space", + "clothes_washer_rated_annual_kwh": "380.0", + "clothes_washer_usage_multiplier": 1.0, + "cooking_range_oven_fuel_type": "electricity", + "cooking_range_oven_is_convection": false, + "cooking_range_oven_is_induction": false, + "cooking_range_oven_location": "living space", + "cooking_range_oven_usage_multiplier": 1.0, + "cooling_system_cooling_capacity": "48000.0", + "cooling_system_cooling_compressor_type": "single stage", + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", + "cooling_system_cooling_sensible_heat_fraction": 0.73, + "cooling_system_fraction_cool_load_served": 1, + "cooling_system_is_ducted": false, + "cooling_system_type": "central air conditioner", + "dehumidifier_capacity": 40, + "dehumidifier_efficiency": 1.8, + "dehumidifier_efficiency_type": "EnergyFactor", + "dehumidifier_fraction_dehumidification_load_served": 1, + "dehumidifier_rh_setpoint": 0.5, + "dehumidifier_type": "none", + "dhw_distribution_pipe_r": "0.0", + "dhw_distribution_recirc_branch_piping_length": "50", + "dhw_distribution_recirc_control_type": "no control", + "dhw_distribution_recirc_piping_length": "50", + "dhw_distribution_recirc_pump_power": "50", + "dhw_distribution_standard_piping_length": "50", + "dhw_distribution_system_type": "Standard", + "dishwasher_efficiency": "307", + "dishwasher_efficiency_type": "RatedAnnualkWh", + "dishwasher_label_annual_gas_cost": "22.32", + "dishwasher_label_electric_rate": "0.12", + "dishwasher_label_gas_rate": "1.09", + "dishwasher_label_usage": "4.0", + "dishwasher_location": "living space", + "dishwasher_place_setting_capacity": "12", + "dishwasher_usage_multiplier": 1.0, + "door_area": 80.0, + "door_rvalue": 4.4, + "ducts_number_of_return_registers": "2", + "ducts_return_insulation_r": 0.0, + "ducts_return_leakage_units": "CFM25", + "ducts_return_leakage_value": 25.0, + "ducts_return_location": "attic - unvented", + "ducts_return_surface_area": "50.0", + "ducts_supply_insulation_r": 4.0, + "ducts_supply_leakage_units": "CFM25", + "ducts_supply_leakage_value": 75.0, + "ducts_supply_location": "attic - unvented", + "ducts_supply_surface_area": "150.0", + "dwhr_efficiency": 0.55, + "dwhr_equal_flow": true, + "dwhr_facilities_connected": "none", + "extra_refrigerator_location": "none", + "extra_refrigerator_rated_annual_kwh": "auto", + "extra_refrigerator_usage_multiplier": 1.0, + "floor_assembly_r": 18.7, + "foundation_wall_insulation_distance_to_bottom": 4.0, + "foundation_wall_insulation_distance_to_top": 0.0, + "foundation_wall_insulation_r": 8.9, + "foundation_wall_thickness": "8.0", + "freezer_location": "none", + "freezer_rated_annual_kwh": "auto", + "freezer_usage_multiplier": 1.0, + "fuel_loads_fireplace_annual_therm": "auto", + "fuel_loads_fireplace_frac_latent": "auto", + "fuel_loads_fireplace_frac_sensible": "auto", + "fuel_loads_fireplace_fuel_type": "natural gas", + "fuel_loads_fireplace_present": false, + "fuel_loads_fireplace_usage_multiplier": 0.0, + "fuel_loads_grill_annual_therm": "auto", + "fuel_loads_grill_fuel_type": "natural gas", + "fuel_loads_grill_present": false, + "fuel_loads_grill_usage_multiplier": 0.0, + "fuel_loads_lighting_annual_therm": "auto", + "fuel_loads_lighting_fuel_type": "natural gas", + "fuel_loads_lighting_present": false, + "fuel_loads_lighting_usage_multiplier": 0.0, + "geometry_aspect_ratio": 1.5, + "geometry_attic_type": "UnventedAttic", + "geometry_balcony_depth": 0.0, + "geometry_building_num_units": 3, + "geometry_cfa": 1800.0, + "geometry_corridor_position": "None", + "geometry_corridor_width": 10.0, + "geometry_eaves_depth": 0, + "geometry_foundation_height": 4.0, + "geometry_foundation_height_above_grade": 1.0, + "geometry_foundation_type": "UnventedCrawlspace", + "geometry_garage_depth": 20.0, + "geometry_garage_position": "Right", + "geometry_garage_protrusion": 0.0, + "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", + "geometry_horizontal_location": "Middle", + "geometry_inset_depth": 0.0, + "geometry_inset_position": "Right", + "geometry_inset_width": 0.0, + "geometry_num_bathrooms": "2", + "geometry_num_bedrooms": 3, + "geometry_num_floors_above_grade": 1, + "geometry_num_occupants": "3", + "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, + "geometry_roof_pitch": "6:12", + "geometry_roof_type": "gable", + "geometry_unit_type": "single-family attached", + "geometry_wall_height": 8.0, + "heat_pump_backup_fuel": "none", + "heat_pump_backup_heating_capacity": "34121.0", + "heat_pump_backup_heating_efficiency": 1, + "heat_pump_cooling_capacity": "48000.0", + "heat_pump_cooling_compressor_type": "single stage", + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", + "heat_pump_cooling_sensible_heat_fraction": 0.73, + "heat_pump_fraction_cool_load_served": 1, + "heat_pump_fraction_heat_load_served": 1, + "heat_pump_heating_capacity": "64000.0", + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", + "heat_pump_type": "none", + "heating_system_fraction_heat_load_served": 1, + "heating_system_fraction_heat_load_served_2": 0.25, + "heating_system_fuel": "natural gas", + "heating_system_fuel_2": "electricity", + "heating_system_heating_capacity": "64000.0", + "heating_system_heating_capacity_2": "auto", + "heating_system_heating_efficiency": 0.92, + "heating_system_heating_efficiency_2": 1.0, + "heating_system_type": "Furnace", + "heating_system_type_2": "none", + "holiday_lighting_daily_kwh": "auto", + "holiday_lighting_period_begin_day_of_month": "auto", + "holiday_lighting_period_begin_month": "auto", + "holiday_lighting_period_end_day_of_month": "auto", + "holiday_lighting_period_end_month": "auto", + "holiday_lighting_present": false, + "hot_tub_heater_annual_kwh": "auto", + "hot_tub_heater_annual_therm": "auto", + "hot_tub_heater_type": "electric resistance", + "hot_tub_heater_usage_multiplier": 1.0, + "hot_tub_present": false, + "hot_tub_pump_annual_kwh": "auto", + "hot_tub_pump_usage_multiplier": 1.0, + "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/extra-bldgtype-single-family-attached-unvented-crawlspace-middle.xml", + "kitchen_fans_quantity": "0", + "lighting_fraction_cfl_exterior": 0.4, + "lighting_fraction_cfl_garage": 0.4, + "lighting_fraction_cfl_interior": 0.4, + "lighting_fraction_led_exterior": 0.25, + "lighting_fraction_led_garage": 0.25, + "lighting_fraction_led_interior": 0.25, + "lighting_fraction_lfl_exterior": 0.1, + "lighting_fraction_lfl_garage": 0.1, + "lighting_fraction_lfl_interior": 0.1, + "lighting_usage_multiplier_exterior": 1.0, + "lighting_usage_multiplier_garage": 1.0, + "lighting_usage_multiplier_interior": 1.0, + "mech_vent_fan_power": 30, + "mech_vent_fan_power_2": 30, + "mech_vent_fan_type": "none", + "mech_vent_fan_type_2": "none", + "mech_vent_flow_rate": 110, + "mech_vent_flow_rate_2": 110, + "mech_vent_hours_in_operation": 24, + "mech_vent_hours_in_operation_2": 24, + "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", + "mech_vent_sensible_recovery_efficiency": 0.72, + "mech_vent_sensible_recovery_efficiency_2": 0.72, + "mech_vent_total_recovery_efficiency": 0.48, + "mech_vent_total_recovery_efficiency_2": 0.48, + "neighbor_back_distance": 0, + "neighbor_back_height": "auto", + "neighbor_front_distance": 0, + "neighbor_front_height": "auto", + "neighbor_left_distance": 0, + "neighbor_left_height": "auto", + "neighbor_right_distance": 0, + "neighbor_right_height": "auto", + "overhangs_back_depth": 0, + "overhangs_back_distance_to_top_of_window": 0, + "overhangs_front_depth": 0, + "overhangs_front_distance_to_top_of_window": 0, + "overhangs_left_depth": 0, + "overhangs_left_distance_to_top_of_window": 0, + "overhangs_right_depth": 0, + "overhangs_right_distance_to_top_of_window": 0, + "plug_loads_other_annual_kwh": "1638.0", + "plug_loads_other_frac_latent": "0.045", + "plug_loads_other_frac_sensible": "0.855", + "plug_loads_other_usage_multiplier": 1.0, + "plug_loads_television_annual_kwh": "620.0", + "plug_loads_television_usage_multiplier": 1.0, + "plug_loads_vehicle_annual_kwh": "auto", + "plug_loads_vehicle_present": false, + "plug_loads_vehicle_usage_multiplier": 0.0, + "plug_loads_well_pump_annual_kwh": "auto", + "plug_loads_well_pump_present": false, + "plug_loads_well_pump_usage_multiplier": 0.0, + "pool_heater_annual_kwh": "auto", + "pool_heater_annual_therm": "auto", + "pool_heater_type": "electric resistance", + "pool_heater_usage_multiplier": 1.0, + "pool_present": false, + "pool_pump_annual_kwh": "auto", + "pool_pump_usage_multiplier": 1.0, + "pv_system_array_azimuth_1": 180, + "pv_system_array_azimuth_2": 180, + "pv_system_array_tilt_1": "20", + "pv_system_array_tilt_2": "20", + "pv_system_inverter_efficiency_1": 0.96, + "pv_system_inverter_efficiency_2": 0.96, + "pv_system_location_1": "auto", + "pv_system_location_2": "auto", + "pv_system_max_power_output_1": 4000, + "pv_system_max_power_output_2": 4000, + "pv_system_module_type_1": "none", + "pv_system_module_type_2": "none", + "pv_system_num_units_served_1": 1, + "pv_system_num_units_served_2": 1, + "pv_system_system_losses_fraction_1": 0.14, + "pv_system_system_losses_fraction_2": 0.14, + "pv_system_tracking_1": "auto", + "pv_system_tracking_2": "auto", + "refrigerator_location": "living space", + "refrigerator_rated_annual_kwh": "650.0", + "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, + "roof_assembly_r": 2.3, + "roof_color": "medium", + "roof_material_type": "asphalt or fiberglass shingles", + "roof_radiant_barrier": false, + "roof_radiant_barrier_grade": "1", + "schedules_type": "default", + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", + "simulation_control_timestep": "60", + "site_type": "suburban", + "skylight_area_back": 0, + "skylight_area_front": 0, + "skylight_area_left": 0, + "skylight_area_right": 0, + "skylight_shgc": 0.45, + "skylight_ufactor": 0.33, + "slab_carpet_fraction": "0.0", + "slab_carpet_r": "0.0", + "slab_perimeter_depth": 0, + "slab_perimeter_insulation_r": 0, + "slab_thickness": "4.0", + "slab_under_insulation_r": 0, + "slab_under_width": 0, + "solar_thermal_collector_area": 40.0, + "solar_thermal_collector_azimuth": 180, + "solar_thermal_collector_loop_type": "liquid direct", + "solar_thermal_collector_rated_optical_efficiency": 0.5, + "solar_thermal_collector_rated_thermal_losses": 0.2799, + "solar_thermal_collector_tilt": "20", + "solar_thermal_collector_type": "evacuated tube", + "solar_thermal_solar_fraction": 0, + "solar_thermal_storage_volume": "auto", + "solar_thermal_system_type": "none", + "wall_assembly_r": 23, + "wall_color": "medium", + "wall_siding_type": "wood siding", + "wall_type": "WoodStud", + "water_fixtures_shower_low_flow": true, + "water_fixtures_sink_low_flow": false, + "water_fixtures_usage_multiplier": 1.0, + "water_heater_efficiency": 0.95, + "water_heater_efficiency_type": "EnergyFactor", + "water_heater_fuel_type": "electricity", + "water_heater_jacket_rvalue": 0, + "water_heater_location": "living space", + "water_heater_num_units_served": 1, + "water_heater_recovery_efficiency": "0.76", + "water_heater_setpoint_temperature": "125", + "water_heater_standby_loss": 0, + "water_heater_tank_volume": "40", + "water_heater_type": "storage water heater", + "weather_station_epw_filepath": "USA_CO_Denver.Intl.AP.725650_TMY3.epw", + "whole_house_fan_flow_rate": 4500, + "whole_house_fan_power": 300, + "whole_house_fan_present": false, + "window_area_back": 0, + "window_area_front": 0, + "window_area_left": 0, + "window_area_right": 0, + "window_aspect_ratio": 1.333, + "window_back_wwr": 0.18, + "window_fraction_operable": 0.67, + "window_front_wwr": 0.18, + "window_interior_shading_summer": 0.7, + "window_interior_shading_winter": 0.85, + "window_left_wwr": 0.18, + "window_right_wwr": 0.18, + "window_shgc": 0.45, + "window_ufactor": 0.33 + }, + "measure_dir_name": "BuildResidentialHPXML" + } + ] +} \ No newline at end of file diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-single-family-attached-unvented-crawlspace-right.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-single-family-attached-unvented-crawlspace-right.osw new file mode 100644 index 00000000..1490a024 --- /dev/null +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-single-family-attached-unvented-crawlspace-right.osw @@ -0,0 +1,339 @@ +{ + "measure_paths": [ + "../.." + ], + "steps": [ + { + "arguments": { + "air_leakage_house_pressure": 50, + "air_leakage_shielding_of_home": "auto", + "air_leakage_units": "ACH", + "air_leakage_value": 3, + "bathroom_fans_quantity": "0", + "ceiling_assembly_r": 39.3, + "ceiling_fan_cooling_setpoint_temp_offset": 0, + "ceiling_fan_efficiency": "auto", + "ceiling_fan_present": false, + "ceiling_fan_quantity": "auto", + "clothes_dryer_efficiency": "3.73", + "clothes_dryer_efficiency_type": "CombinedEnergyFactor", + "clothes_dryer_fuel_type": "electricity", + "clothes_dryer_location": "living space", + "clothes_dryer_usage_multiplier": 1.0, + "clothes_dryer_vented_flow_rate": "150.0", + "clothes_washer_capacity": "3.2", + "clothes_washer_efficiency": "1.21", + "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", + "clothes_washer_label_annual_gas_cost": "27.0", + "clothes_washer_label_electric_rate": "0.12", + "clothes_washer_label_gas_rate": "1.09", + "clothes_washer_label_usage": "6.0", + "clothes_washer_location": "living space", + "clothes_washer_rated_annual_kwh": "380.0", + "clothes_washer_usage_multiplier": 1.0, + "cooking_range_oven_fuel_type": "electricity", + "cooking_range_oven_is_convection": false, + "cooking_range_oven_is_induction": false, + "cooking_range_oven_location": "living space", + "cooking_range_oven_usage_multiplier": 1.0, + "cooling_system_cooling_capacity": "48000.0", + "cooling_system_cooling_compressor_type": "single stage", + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", + "cooling_system_cooling_sensible_heat_fraction": 0.73, + "cooling_system_fraction_cool_load_served": 1, + "cooling_system_is_ducted": false, + "cooling_system_type": "central air conditioner", + "dehumidifier_capacity": 40, + "dehumidifier_efficiency": 1.8, + "dehumidifier_efficiency_type": "EnergyFactor", + "dehumidifier_fraction_dehumidification_load_served": 1, + "dehumidifier_rh_setpoint": 0.5, + "dehumidifier_type": "none", + "dhw_distribution_pipe_r": "0.0", + "dhw_distribution_recirc_branch_piping_length": "50", + "dhw_distribution_recirc_control_type": "no control", + "dhw_distribution_recirc_piping_length": "50", + "dhw_distribution_recirc_pump_power": "50", + "dhw_distribution_standard_piping_length": "50", + "dhw_distribution_system_type": "Standard", + "dishwasher_efficiency": "307", + "dishwasher_efficiency_type": "RatedAnnualkWh", + "dishwasher_label_annual_gas_cost": "22.32", + "dishwasher_label_electric_rate": "0.12", + "dishwasher_label_gas_rate": "1.09", + "dishwasher_label_usage": "4.0", + "dishwasher_location": "living space", + "dishwasher_place_setting_capacity": "12", + "dishwasher_usage_multiplier": 1.0, + "door_area": 80.0, + "door_rvalue": 4.4, + "ducts_number_of_return_registers": "2", + "ducts_return_insulation_r": 0.0, + "ducts_return_leakage_units": "CFM25", + "ducts_return_leakage_value": 25.0, + "ducts_return_location": "attic - unvented", + "ducts_return_surface_area": "50.0", + "ducts_supply_insulation_r": 4.0, + "ducts_supply_leakage_units": "CFM25", + "ducts_supply_leakage_value": 75.0, + "ducts_supply_location": "attic - unvented", + "ducts_supply_surface_area": "150.0", + "dwhr_efficiency": 0.55, + "dwhr_equal_flow": true, + "dwhr_facilities_connected": "none", + "extra_refrigerator_location": "none", + "extra_refrigerator_rated_annual_kwh": "auto", + "extra_refrigerator_usage_multiplier": 1.0, + "floor_assembly_r": 18.7, + "foundation_wall_insulation_distance_to_bottom": 4.0, + "foundation_wall_insulation_distance_to_top": 0.0, + "foundation_wall_insulation_r": 8.9, + "foundation_wall_thickness": "8.0", + "freezer_location": "none", + "freezer_rated_annual_kwh": "auto", + "freezer_usage_multiplier": 1.0, + "fuel_loads_fireplace_annual_therm": "auto", + "fuel_loads_fireplace_frac_latent": "auto", + "fuel_loads_fireplace_frac_sensible": "auto", + "fuel_loads_fireplace_fuel_type": "natural gas", + "fuel_loads_fireplace_present": false, + "fuel_loads_fireplace_usage_multiplier": 0.0, + "fuel_loads_grill_annual_therm": "auto", + "fuel_loads_grill_fuel_type": "natural gas", + "fuel_loads_grill_present": false, + "fuel_loads_grill_usage_multiplier": 0.0, + "fuel_loads_lighting_annual_therm": "auto", + "fuel_loads_lighting_fuel_type": "natural gas", + "fuel_loads_lighting_present": false, + "fuel_loads_lighting_usage_multiplier": 0.0, + "geometry_aspect_ratio": 1.5, + "geometry_attic_type": "UnventedAttic", + "geometry_balcony_depth": 0.0, + "geometry_building_num_units": 3, + "geometry_cfa": 1800.0, + "geometry_corridor_position": "None", + "geometry_corridor_width": 10.0, + "geometry_eaves_depth": 0, + "geometry_foundation_height": 4.0, + "geometry_foundation_height_above_grade": 1.0, + "geometry_foundation_type": "UnventedCrawlspace", + "geometry_garage_depth": 20.0, + "geometry_garage_position": "Right", + "geometry_garage_protrusion": 0.0, + "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", + "geometry_horizontal_location": "Right", + "geometry_inset_depth": 0.0, + "geometry_inset_position": "Right", + "geometry_inset_width": 0.0, + "geometry_num_bathrooms": "2", + "geometry_num_bedrooms": 3, + "geometry_num_floors_above_grade": 1, + "geometry_num_occupants": "3", + "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, + "geometry_roof_pitch": "6:12", + "geometry_roof_type": "gable", + "geometry_unit_type": "single-family attached", + "geometry_wall_height": 8.0, + "heat_pump_backup_fuel": "none", + "heat_pump_backup_heating_capacity": "34121.0", + "heat_pump_backup_heating_efficiency": 1, + "heat_pump_cooling_capacity": "48000.0", + "heat_pump_cooling_compressor_type": "single stage", + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", + "heat_pump_cooling_sensible_heat_fraction": 0.73, + "heat_pump_fraction_cool_load_served": 1, + "heat_pump_fraction_heat_load_served": 1, + "heat_pump_heating_capacity": "64000.0", + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", + "heat_pump_type": "none", + "heating_system_fraction_heat_load_served": 1, + "heating_system_fraction_heat_load_served_2": 0.25, + "heating_system_fuel": "natural gas", + "heating_system_fuel_2": "electricity", + "heating_system_heating_capacity": "64000.0", + "heating_system_heating_capacity_2": "auto", + "heating_system_heating_efficiency": 0.92, + "heating_system_heating_efficiency_2": 1.0, + "heating_system_type": "Furnace", + "heating_system_type_2": "none", + "holiday_lighting_daily_kwh": "auto", + "holiday_lighting_period_begin_day_of_month": "auto", + "holiday_lighting_period_begin_month": "auto", + "holiday_lighting_period_end_day_of_month": "auto", + "holiday_lighting_period_end_month": "auto", + "holiday_lighting_present": false, + "hot_tub_heater_annual_kwh": "auto", + "hot_tub_heater_annual_therm": "auto", + "hot_tub_heater_type": "electric resistance", + "hot_tub_heater_usage_multiplier": 1.0, + "hot_tub_present": false, + "hot_tub_pump_annual_kwh": "auto", + "hot_tub_pump_usage_multiplier": 1.0, + "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/extra-bldgtype-single-family-attached-unvented-crawlspace-right.xml", + "kitchen_fans_quantity": "0", + "lighting_fraction_cfl_exterior": 0.4, + "lighting_fraction_cfl_garage": 0.4, + "lighting_fraction_cfl_interior": 0.4, + "lighting_fraction_led_exterior": 0.25, + "lighting_fraction_led_garage": 0.25, + "lighting_fraction_led_interior": 0.25, + "lighting_fraction_lfl_exterior": 0.1, + "lighting_fraction_lfl_garage": 0.1, + "lighting_fraction_lfl_interior": 0.1, + "lighting_usage_multiplier_exterior": 1.0, + "lighting_usage_multiplier_garage": 1.0, + "lighting_usage_multiplier_interior": 1.0, + "mech_vent_fan_power": 30, + "mech_vent_fan_power_2": 30, + "mech_vent_fan_type": "none", + "mech_vent_fan_type_2": "none", + "mech_vent_flow_rate": 110, + "mech_vent_flow_rate_2": 110, + "mech_vent_hours_in_operation": 24, + "mech_vent_hours_in_operation_2": 24, + "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", + "mech_vent_sensible_recovery_efficiency": 0.72, + "mech_vent_sensible_recovery_efficiency_2": 0.72, + "mech_vent_total_recovery_efficiency": 0.48, + "mech_vent_total_recovery_efficiency_2": 0.48, + "neighbor_back_distance": 0, + "neighbor_back_height": "auto", + "neighbor_front_distance": 0, + "neighbor_front_height": "auto", + "neighbor_left_distance": 0, + "neighbor_left_height": "auto", + "neighbor_right_distance": 0, + "neighbor_right_height": "auto", + "overhangs_back_depth": 0, + "overhangs_back_distance_to_top_of_window": 0, + "overhangs_front_depth": 0, + "overhangs_front_distance_to_top_of_window": 0, + "overhangs_left_depth": 0, + "overhangs_left_distance_to_top_of_window": 0, + "overhangs_right_depth": 0, + "overhangs_right_distance_to_top_of_window": 0, + "plug_loads_other_annual_kwh": "1638.0", + "plug_loads_other_frac_latent": "0.045", + "plug_loads_other_frac_sensible": "0.855", + "plug_loads_other_usage_multiplier": 1.0, + "plug_loads_television_annual_kwh": "620.0", + "plug_loads_television_usage_multiplier": 1.0, + "plug_loads_vehicle_annual_kwh": "auto", + "plug_loads_vehicle_present": false, + "plug_loads_vehicle_usage_multiplier": 0.0, + "plug_loads_well_pump_annual_kwh": "auto", + "plug_loads_well_pump_present": false, + "plug_loads_well_pump_usage_multiplier": 0.0, + "pool_heater_annual_kwh": "auto", + "pool_heater_annual_therm": "auto", + "pool_heater_type": "electric resistance", + "pool_heater_usage_multiplier": 1.0, + "pool_present": false, + "pool_pump_annual_kwh": "auto", + "pool_pump_usage_multiplier": 1.0, + "pv_system_array_azimuth_1": 180, + "pv_system_array_azimuth_2": 180, + "pv_system_array_tilt_1": "20", + "pv_system_array_tilt_2": "20", + "pv_system_inverter_efficiency_1": 0.96, + "pv_system_inverter_efficiency_2": 0.96, + "pv_system_location_1": "auto", + "pv_system_location_2": "auto", + "pv_system_max_power_output_1": 4000, + "pv_system_max_power_output_2": 4000, + "pv_system_module_type_1": "none", + "pv_system_module_type_2": "none", + "pv_system_num_units_served_1": 1, + "pv_system_num_units_served_2": 1, + "pv_system_system_losses_fraction_1": 0.14, + "pv_system_system_losses_fraction_2": 0.14, + "pv_system_tracking_1": "auto", + "pv_system_tracking_2": "auto", + "refrigerator_location": "living space", + "refrigerator_rated_annual_kwh": "650.0", + "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, + "roof_assembly_r": 2.3, + "roof_color": "medium", + "roof_material_type": "asphalt or fiberglass shingles", + "roof_radiant_barrier": false, + "roof_radiant_barrier_grade": "1", + "schedules_type": "default", + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", + "simulation_control_timestep": "60", + "site_type": "suburban", + "skylight_area_back": 0, + "skylight_area_front": 0, + "skylight_area_left": 0, + "skylight_area_right": 0, + "skylight_shgc": 0.45, + "skylight_ufactor": 0.33, + "slab_carpet_fraction": "0.0", + "slab_carpet_r": "0.0", + "slab_perimeter_depth": 0, + "slab_perimeter_insulation_r": 0, + "slab_thickness": "4.0", + "slab_under_insulation_r": 0, + "slab_under_width": 0, + "solar_thermal_collector_area": 40.0, + "solar_thermal_collector_azimuth": 180, + "solar_thermal_collector_loop_type": "liquid direct", + "solar_thermal_collector_rated_optical_efficiency": 0.5, + "solar_thermal_collector_rated_thermal_losses": 0.2799, + "solar_thermal_collector_tilt": "20", + "solar_thermal_collector_type": "evacuated tube", + "solar_thermal_solar_fraction": 0, + "solar_thermal_storage_volume": "auto", + "solar_thermal_system_type": "none", + "wall_assembly_r": 23, + "wall_color": "medium", + "wall_siding_type": "wood siding", + "wall_type": "WoodStud", + "water_fixtures_shower_low_flow": true, + "water_fixtures_sink_low_flow": false, + "water_fixtures_usage_multiplier": 1.0, + "water_heater_efficiency": 0.95, + "water_heater_efficiency_type": "EnergyFactor", + "water_heater_fuel_type": "electricity", + "water_heater_jacket_rvalue": 0, + "water_heater_location": "living space", + "water_heater_num_units_served": 1, + "water_heater_recovery_efficiency": "0.76", + "water_heater_setpoint_temperature": "125", + "water_heater_standby_loss": 0, + "water_heater_tank_volume": "40", + "water_heater_type": "storage water heater", + "weather_station_epw_filepath": "USA_CO_Denver.Intl.AP.725650_TMY3.epw", + "whole_house_fan_flow_rate": 4500, + "whole_house_fan_power": 300, + "whole_house_fan_present": false, + "window_area_back": 0, + "window_area_front": 0, + "window_area_left": 0, + "window_area_right": 0, + "window_aspect_ratio": 1.333, + "window_back_wwr": 0.18, + "window_fraction_operable": 0.67, + "window_front_wwr": 0.18, + "window_interior_shading_summer": 0.7, + "window_interior_shading_winter": 0.85, + "window_left_wwr": 0.18, + "window_right_wwr": 0.18, + "window_shgc": 0.45, + "window_ufactor": 0.33 + }, + "measure_dir_name": "BuildResidentialHPXML" + } + ] +} \ No newline at end of file diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-single-family-attached-unvented-crawlspace.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-single-family-attached-unvented-crawlspace.osw new file mode 100644 index 00000000..b9ec7549 --- /dev/null +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-single-family-attached-unvented-crawlspace.osw @@ -0,0 +1,339 @@ +{ + "measure_paths": [ + "../.." + ], + "steps": [ + { + "arguments": { + "air_leakage_house_pressure": 50, + "air_leakage_shielding_of_home": "auto", + "air_leakage_units": "ACH", + "air_leakage_value": 3, + "bathroom_fans_quantity": "0", + "ceiling_assembly_r": 39.3, + "ceiling_fan_cooling_setpoint_temp_offset": 0, + "ceiling_fan_efficiency": "auto", + "ceiling_fan_present": false, + "ceiling_fan_quantity": "auto", + "clothes_dryer_efficiency": "3.73", + "clothes_dryer_efficiency_type": "CombinedEnergyFactor", + "clothes_dryer_fuel_type": "electricity", + "clothes_dryer_location": "living space", + "clothes_dryer_usage_multiplier": 1.0, + "clothes_dryer_vented_flow_rate": "150.0", + "clothes_washer_capacity": "3.2", + "clothes_washer_efficiency": "1.21", + "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", + "clothes_washer_label_annual_gas_cost": "27.0", + "clothes_washer_label_electric_rate": "0.12", + "clothes_washer_label_gas_rate": "1.09", + "clothes_washer_label_usage": "6.0", + "clothes_washer_location": "living space", + "clothes_washer_rated_annual_kwh": "380.0", + "clothes_washer_usage_multiplier": 1.0, + "cooking_range_oven_fuel_type": "electricity", + "cooking_range_oven_is_convection": false, + "cooking_range_oven_is_induction": false, + "cooking_range_oven_location": "living space", + "cooking_range_oven_usage_multiplier": 1.0, + "cooling_system_cooling_capacity": "48000.0", + "cooling_system_cooling_compressor_type": "single stage", + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", + "cooling_system_cooling_sensible_heat_fraction": 0.73, + "cooling_system_fraction_cool_load_served": 1, + "cooling_system_is_ducted": false, + "cooling_system_type": "central air conditioner", + "dehumidifier_capacity": 40, + "dehumidifier_efficiency": 1.8, + "dehumidifier_efficiency_type": "EnergyFactor", + "dehumidifier_fraction_dehumidification_load_served": 1, + "dehumidifier_rh_setpoint": 0.5, + "dehumidifier_type": "none", + "dhw_distribution_pipe_r": "0.0", + "dhw_distribution_recirc_branch_piping_length": "50", + "dhw_distribution_recirc_control_type": "no control", + "dhw_distribution_recirc_piping_length": "50", + "dhw_distribution_recirc_pump_power": "50", + "dhw_distribution_standard_piping_length": "50", + "dhw_distribution_system_type": "Standard", + "dishwasher_efficiency": "307", + "dishwasher_efficiency_type": "RatedAnnualkWh", + "dishwasher_label_annual_gas_cost": "22.32", + "dishwasher_label_electric_rate": "0.12", + "dishwasher_label_gas_rate": "1.09", + "dishwasher_label_usage": "4.0", + "dishwasher_location": "living space", + "dishwasher_place_setting_capacity": "12", + "dishwasher_usage_multiplier": 1.0, + "door_area": 80.0, + "door_rvalue": 4.4, + "ducts_number_of_return_registers": "2", + "ducts_return_insulation_r": 0.0, + "ducts_return_leakage_units": "CFM25", + "ducts_return_leakage_value": 25.0, + "ducts_return_location": "attic - unvented", + "ducts_return_surface_area": "50.0", + "ducts_supply_insulation_r": 4.0, + "ducts_supply_leakage_units": "CFM25", + "ducts_supply_leakage_value": 75.0, + "ducts_supply_location": "attic - unvented", + "ducts_supply_surface_area": "150.0", + "dwhr_efficiency": 0.55, + "dwhr_equal_flow": true, + "dwhr_facilities_connected": "none", + "extra_refrigerator_location": "none", + "extra_refrigerator_rated_annual_kwh": "auto", + "extra_refrigerator_usage_multiplier": 1.0, + "floor_assembly_r": 18.7, + "foundation_wall_insulation_distance_to_bottom": 4.0, + "foundation_wall_insulation_distance_to_top": 0.0, + "foundation_wall_insulation_r": 8.9, + "foundation_wall_thickness": "8.0", + "freezer_location": "none", + "freezer_rated_annual_kwh": "auto", + "freezer_usage_multiplier": 1.0, + "fuel_loads_fireplace_annual_therm": "auto", + "fuel_loads_fireplace_frac_latent": "auto", + "fuel_loads_fireplace_frac_sensible": "auto", + "fuel_loads_fireplace_fuel_type": "natural gas", + "fuel_loads_fireplace_present": false, + "fuel_loads_fireplace_usage_multiplier": 0.0, + "fuel_loads_grill_annual_therm": "auto", + "fuel_loads_grill_fuel_type": "natural gas", + "fuel_loads_grill_present": false, + "fuel_loads_grill_usage_multiplier": 0.0, + "fuel_loads_lighting_annual_therm": "auto", + "fuel_loads_lighting_fuel_type": "natural gas", + "fuel_loads_lighting_present": false, + "fuel_loads_lighting_usage_multiplier": 0.0, + "geometry_aspect_ratio": 1.5, + "geometry_attic_type": "UnventedAttic", + "geometry_balcony_depth": 0.0, + "geometry_building_num_units": 3, + "geometry_cfa": 1800.0, + "geometry_corridor_position": "None", + "geometry_corridor_width": 10.0, + "geometry_eaves_depth": 0, + "geometry_foundation_height": 4.0, + "geometry_foundation_height_above_grade": 1.0, + "geometry_foundation_type": "UnventedCrawlspace", + "geometry_garage_depth": 20.0, + "geometry_garage_position": "Right", + "geometry_garage_protrusion": 0.0, + "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", + "geometry_horizontal_location": "Left", + "geometry_inset_depth": 0.0, + "geometry_inset_position": "Right", + "geometry_inset_width": 0.0, + "geometry_num_bathrooms": "2", + "geometry_num_bedrooms": 3, + "geometry_num_floors_above_grade": 1, + "geometry_num_occupants": "3", + "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, + "geometry_roof_pitch": "6:12", + "geometry_roof_type": "gable", + "geometry_unit_type": "single-family attached", + "geometry_wall_height": 8.0, + "heat_pump_backup_fuel": "none", + "heat_pump_backup_heating_capacity": "34121.0", + "heat_pump_backup_heating_efficiency": 1, + "heat_pump_cooling_capacity": "48000.0", + "heat_pump_cooling_compressor_type": "single stage", + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", + "heat_pump_cooling_sensible_heat_fraction": 0.73, + "heat_pump_fraction_cool_load_served": 1, + "heat_pump_fraction_heat_load_served": 1, + "heat_pump_heating_capacity": "64000.0", + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", + "heat_pump_type": "none", + "heating_system_fraction_heat_load_served": 1, + "heating_system_fraction_heat_load_served_2": 0.25, + "heating_system_fuel": "natural gas", + "heating_system_fuel_2": "electricity", + "heating_system_heating_capacity": "64000.0", + "heating_system_heating_capacity_2": "auto", + "heating_system_heating_efficiency": 0.92, + "heating_system_heating_efficiency_2": 1.0, + "heating_system_type": "Furnace", + "heating_system_type_2": "none", + "holiday_lighting_daily_kwh": "auto", + "holiday_lighting_period_begin_day_of_month": "auto", + "holiday_lighting_period_begin_month": "auto", + "holiday_lighting_period_end_day_of_month": "auto", + "holiday_lighting_period_end_month": "auto", + "holiday_lighting_present": false, + "hot_tub_heater_annual_kwh": "auto", + "hot_tub_heater_annual_therm": "auto", + "hot_tub_heater_type": "electric resistance", + "hot_tub_heater_usage_multiplier": 1.0, + "hot_tub_present": false, + "hot_tub_pump_annual_kwh": "auto", + "hot_tub_pump_usage_multiplier": 1.0, + "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/extra-bldgtype-single-family-attached-unvented-crawlspace.xml", + "kitchen_fans_quantity": "0", + "lighting_fraction_cfl_exterior": 0.4, + "lighting_fraction_cfl_garage": 0.4, + "lighting_fraction_cfl_interior": 0.4, + "lighting_fraction_led_exterior": 0.25, + "lighting_fraction_led_garage": 0.25, + "lighting_fraction_led_interior": 0.25, + "lighting_fraction_lfl_exterior": 0.1, + "lighting_fraction_lfl_garage": 0.1, + "lighting_fraction_lfl_interior": 0.1, + "lighting_usage_multiplier_exterior": 1.0, + "lighting_usage_multiplier_garage": 1.0, + "lighting_usage_multiplier_interior": 1.0, + "mech_vent_fan_power": 30, + "mech_vent_fan_power_2": 30, + "mech_vent_fan_type": "none", + "mech_vent_fan_type_2": "none", + "mech_vent_flow_rate": 110, + "mech_vent_flow_rate_2": 110, + "mech_vent_hours_in_operation": 24, + "mech_vent_hours_in_operation_2": 24, + "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", + "mech_vent_sensible_recovery_efficiency": 0.72, + "mech_vent_sensible_recovery_efficiency_2": 0.72, + "mech_vent_total_recovery_efficiency": 0.48, + "mech_vent_total_recovery_efficiency_2": 0.48, + "neighbor_back_distance": 0, + "neighbor_back_height": "auto", + "neighbor_front_distance": 0, + "neighbor_front_height": "auto", + "neighbor_left_distance": 0, + "neighbor_left_height": "auto", + "neighbor_right_distance": 0, + "neighbor_right_height": "auto", + "overhangs_back_depth": 0, + "overhangs_back_distance_to_top_of_window": 0, + "overhangs_front_depth": 0, + "overhangs_front_distance_to_top_of_window": 0, + "overhangs_left_depth": 0, + "overhangs_left_distance_to_top_of_window": 0, + "overhangs_right_depth": 0, + "overhangs_right_distance_to_top_of_window": 0, + "plug_loads_other_annual_kwh": "1638.0", + "plug_loads_other_frac_latent": "0.045", + "plug_loads_other_frac_sensible": "0.855", + "plug_loads_other_usage_multiplier": 1.0, + "plug_loads_television_annual_kwh": "620.0", + "plug_loads_television_usage_multiplier": 1.0, + "plug_loads_vehicle_annual_kwh": "auto", + "plug_loads_vehicle_present": false, + "plug_loads_vehicle_usage_multiplier": 0.0, + "plug_loads_well_pump_annual_kwh": "auto", + "plug_loads_well_pump_present": false, + "plug_loads_well_pump_usage_multiplier": 0.0, + "pool_heater_annual_kwh": "auto", + "pool_heater_annual_therm": "auto", + "pool_heater_type": "electric resistance", + "pool_heater_usage_multiplier": 1.0, + "pool_present": false, + "pool_pump_annual_kwh": "auto", + "pool_pump_usage_multiplier": 1.0, + "pv_system_array_azimuth_1": 180, + "pv_system_array_azimuth_2": 180, + "pv_system_array_tilt_1": "20", + "pv_system_array_tilt_2": "20", + "pv_system_inverter_efficiency_1": 0.96, + "pv_system_inverter_efficiency_2": 0.96, + "pv_system_location_1": "auto", + "pv_system_location_2": "auto", + "pv_system_max_power_output_1": 4000, + "pv_system_max_power_output_2": 4000, + "pv_system_module_type_1": "none", + "pv_system_module_type_2": "none", + "pv_system_num_units_served_1": 1, + "pv_system_num_units_served_2": 1, + "pv_system_system_losses_fraction_1": 0.14, + "pv_system_system_losses_fraction_2": 0.14, + "pv_system_tracking_1": "auto", + "pv_system_tracking_2": "auto", + "refrigerator_location": "living space", + "refrigerator_rated_annual_kwh": "650.0", + "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, + "roof_assembly_r": 2.3, + "roof_color": "medium", + "roof_material_type": "asphalt or fiberglass shingles", + "roof_radiant_barrier": false, + "roof_radiant_barrier_grade": "1", + "schedules_type": "default", + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", + "simulation_control_timestep": "60", + "site_type": "suburban", + "skylight_area_back": 0, + "skylight_area_front": 0, + "skylight_area_left": 0, + "skylight_area_right": 0, + "skylight_shgc": 0.45, + "skylight_ufactor": 0.33, + "slab_carpet_fraction": "0.0", + "slab_carpet_r": "0.0", + "slab_perimeter_depth": 0, + "slab_perimeter_insulation_r": 0, + "slab_thickness": "4.0", + "slab_under_insulation_r": 0, + "slab_under_width": 0, + "solar_thermal_collector_area": 40.0, + "solar_thermal_collector_azimuth": 180, + "solar_thermal_collector_loop_type": "liquid direct", + "solar_thermal_collector_rated_optical_efficiency": 0.5, + "solar_thermal_collector_rated_thermal_losses": 0.2799, + "solar_thermal_collector_tilt": "20", + "solar_thermal_collector_type": "evacuated tube", + "solar_thermal_solar_fraction": 0, + "solar_thermal_storage_volume": "auto", + "solar_thermal_system_type": "none", + "wall_assembly_r": 23, + "wall_color": "medium", + "wall_siding_type": "wood siding", + "wall_type": "WoodStud", + "water_fixtures_shower_low_flow": true, + "water_fixtures_sink_low_flow": false, + "water_fixtures_usage_multiplier": 1.0, + "water_heater_efficiency": 0.95, + "water_heater_efficiency_type": "EnergyFactor", + "water_heater_fuel_type": "electricity", + "water_heater_jacket_rvalue": 0, + "water_heater_location": "living space", + "water_heater_num_units_served": 1, + "water_heater_recovery_efficiency": "0.76", + "water_heater_setpoint_temperature": "125", + "water_heater_standby_loss": 0, + "water_heater_tank_volume": "40", + "water_heater_type": "storage water heater", + "weather_station_epw_filepath": "USA_CO_Denver.Intl.AP.725650_TMY3.epw", + "whole_house_fan_flow_rate": 4500, + "whole_house_fan_power": 300, + "whole_house_fan_present": false, + "window_area_back": 0, + "window_area_front": 0, + "window_area_left": 0, + "window_area_right": 0, + "window_aspect_ratio": 1.333, + "window_back_wwr": 0.18, + "window_fraction_operable": 0.67, + "window_front_wwr": 0.18, + "window_interior_shading_summer": 0.7, + "window_interior_shading_winter": 0.85, + "window_left_wwr": 0.18, + "window_right_wwr": 0.18, + "window_shgc": 0.45, + "window_ufactor": 0.33 + }, + "measure_dir_name": "BuildResidentialHPXML" + } + ] +} \ No newline at end of file diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-single-family-attached-vented-crawlspace-middle.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-single-family-attached-vented-crawlspace-middle.osw new file mode 100644 index 00000000..527c5f43 --- /dev/null +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-single-family-attached-vented-crawlspace-middle.osw @@ -0,0 +1,339 @@ +{ + "measure_paths": [ + "../.." + ], + "steps": [ + { + "arguments": { + "air_leakage_house_pressure": 50, + "air_leakage_shielding_of_home": "auto", + "air_leakage_units": "ACH", + "air_leakage_value": 3, + "bathroom_fans_quantity": "0", + "ceiling_assembly_r": 39.3, + "ceiling_fan_cooling_setpoint_temp_offset": 0, + "ceiling_fan_efficiency": "auto", + "ceiling_fan_present": false, + "ceiling_fan_quantity": "auto", + "clothes_dryer_efficiency": "3.73", + "clothes_dryer_efficiency_type": "CombinedEnergyFactor", + "clothes_dryer_fuel_type": "electricity", + "clothes_dryer_location": "living space", + "clothes_dryer_usage_multiplier": 1.0, + "clothes_dryer_vented_flow_rate": "150.0", + "clothes_washer_capacity": "3.2", + "clothes_washer_efficiency": "1.21", + "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", + "clothes_washer_label_annual_gas_cost": "27.0", + "clothes_washer_label_electric_rate": "0.12", + "clothes_washer_label_gas_rate": "1.09", + "clothes_washer_label_usage": "6.0", + "clothes_washer_location": "living space", + "clothes_washer_rated_annual_kwh": "380.0", + "clothes_washer_usage_multiplier": 1.0, + "cooking_range_oven_fuel_type": "electricity", + "cooking_range_oven_is_convection": false, + "cooking_range_oven_is_induction": false, + "cooking_range_oven_location": "living space", + "cooking_range_oven_usage_multiplier": 1.0, + "cooling_system_cooling_capacity": "48000.0", + "cooling_system_cooling_compressor_type": "single stage", + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", + "cooling_system_cooling_sensible_heat_fraction": 0.73, + "cooling_system_fraction_cool_load_served": 1, + "cooling_system_is_ducted": false, + "cooling_system_type": "central air conditioner", + "dehumidifier_capacity": 40, + "dehumidifier_efficiency": 1.8, + "dehumidifier_efficiency_type": "EnergyFactor", + "dehumidifier_fraction_dehumidification_load_served": 1, + "dehumidifier_rh_setpoint": 0.5, + "dehumidifier_type": "none", + "dhw_distribution_pipe_r": "0.0", + "dhw_distribution_recirc_branch_piping_length": "50", + "dhw_distribution_recirc_control_type": "no control", + "dhw_distribution_recirc_piping_length": "50", + "dhw_distribution_recirc_pump_power": "50", + "dhw_distribution_standard_piping_length": "50", + "dhw_distribution_system_type": "Standard", + "dishwasher_efficiency": "307", + "dishwasher_efficiency_type": "RatedAnnualkWh", + "dishwasher_label_annual_gas_cost": "22.32", + "dishwasher_label_electric_rate": "0.12", + "dishwasher_label_gas_rate": "1.09", + "dishwasher_label_usage": "4.0", + "dishwasher_location": "living space", + "dishwasher_place_setting_capacity": "12", + "dishwasher_usage_multiplier": 1.0, + "door_area": 80.0, + "door_rvalue": 4.4, + "ducts_number_of_return_registers": "2", + "ducts_return_insulation_r": 0.0, + "ducts_return_leakage_units": "CFM25", + "ducts_return_leakage_value": 25.0, + "ducts_return_location": "attic - unvented", + "ducts_return_surface_area": "50.0", + "ducts_supply_insulation_r": 4.0, + "ducts_supply_leakage_units": "CFM25", + "ducts_supply_leakage_value": 75.0, + "ducts_supply_location": "attic - unvented", + "ducts_supply_surface_area": "150.0", + "dwhr_efficiency": 0.55, + "dwhr_equal_flow": true, + "dwhr_facilities_connected": "none", + "extra_refrigerator_location": "none", + "extra_refrigerator_rated_annual_kwh": "auto", + "extra_refrigerator_usage_multiplier": 1.0, + "floor_assembly_r": 18.7, + "foundation_wall_insulation_distance_to_bottom": 4.0, + "foundation_wall_insulation_distance_to_top": 0.0, + "foundation_wall_insulation_r": 8.9, + "foundation_wall_thickness": "8.0", + "freezer_location": "none", + "freezer_rated_annual_kwh": "auto", + "freezer_usage_multiplier": 1.0, + "fuel_loads_fireplace_annual_therm": "auto", + "fuel_loads_fireplace_frac_latent": "auto", + "fuel_loads_fireplace_frac_sensible": "auto", + "fuel_loads_fireplace_fuel_type": "natural gas", + "fuel_loads_fireplace_present": false, + "fuel_loads_fireplace_usage_multiplier": 0.0, + "fuel_loads_grill_annual_therm": "auto", + "fuel_loads_grill_fuel_type": "natural gas", + "fuel_loads_grill_present": false, + "fuel_loads_grill_usage_multiplier": 0.0, + "fuel_loads_lighting_annual_therm": "auto", + "fuel_loads_lighting_fuel_type": "natural gas", + "fuel_loads_lighting_present": false, + "fuel_loads_lighting_usage_multiplier": 0.0, + "geometry_aspect_ratio": 1.5, + "geometry_attic_type": "UnventedAttic", + "geometry_balcony_depth": 0.0, + "geometry_building_num_units": 3, + "geometry_cfa": 1800.0, + "geometry_corridor_position": "None", + "geometry_corridor_width": 10.0, + "geometry_eaves_depth": 0, + "geometry_foundation_height": 4.0, + "geometry_foundation_height_above_grade": 1.0, + "geometry_foundation_type": "VentedCrawlspace", + "geometry_garage_depth": 20.0, + "geometry_garage_position": "Right", + "geometry_garage_protrusion": 0.0, + "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", + "geometry_horizontal_location": "Middle", + "geometry_inset_depth": 0.0, + "geometry_inset_position": "Right", + "geometry_inset_width": 0.0, + "geometry_num_bathrooms": "2", + "geometry_num_bedrooms": 3, + "geometry_num_floors_above_grade": 1, + "geometry_num_occupants": "3", + "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, + "geometry_roof_pitch": "6:12", + "geometry_roof_type": "gable", + "geometry_unit_type": "single-family attached", + "geometry_wall_height": 8.0, + "heat_pump_backup_fuel": "none", + "heat_pump_backup_heating_capacity": "34121.0", + "heat_pump_backup_heating_efficiency": 1, + "heat_pump_cooling_capacity": "48000.0", + "heat_pump_cooling_compressor_type": "single stage", + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", + "heat_pump_cooling_sensible_heat_fraction": 0.73, + "heat_pump_fraction_cool_load_served": 1, + "heat_pump_fraction_heat_load_served": 1, + "heat_pump_heating_capacity": "64000.0", + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", + "heat_pump_type": "none", + "heating_system_fraction_heat_load_served": 1, + "heating_system_fraction_heat_load_served_2": 0.25, + "heating_system_fuel": "natural gas", + "heating_system_fuel_2": "electricity", + "heating_system_heating_capacity": "64000.0", + "heating_system_heating_capacity_2": "auto", + "heating_system_heating_efficiency": 0.92, + "heating_system_heating_efficiency_2": 1.0, + "heating_system_type": "Furnace", + "heating_system_type_2": "none", + "holiday_lighting_daily_kwh": "auto", + "holiday_lighting_period_begin_day_of_month": "auto", + "holiday_lighting_period_begin_month": "auto", + "holiday_lighting_period_end_day_of_month": "auto", + "holiday_lighting_period_end_month": "auto", + "holiday_lighting_present": false, + "hot_tub_heater_annual_kwh": "auto", + "hot_tub_heater_annual_therm": "auto", + "hot_tub_heater_type": "electric resistance", + "hot_tub_heater_usage_multiplier": 1.0, + "hot_tub_present": false, + "hot_tub_pump_annual_kwh": "auto", + "hot_tub_pump_usage_multiplier": 1.0, + "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/extra-bldgtype-single-family-attached-vented-crawlspace-middle.xml", + "kitchen_fans_quantity": "0", + "lighting_fraction_cfl_exterior": 0.4, + "lighting_fraction_cfl_garage": 0.4, + "lighting_fraction_cfl_interior": 0.4, + "lighting_fraction_led_exterior": 0.25, + "lighting_fraction_led_garage": 0.25, + "lighting_fraction_led_interior": 0.25, + "lighting_fraction_lfl_exterior": 0.1, + "lighting_fraction_lfl_garage": 0.1, + "lighting_fraction_lfl_interior": 0.1, + "lighting_usage_multiplier_exterior": 1.0, + "lighting_usage_multiplier_garage": 1.0, + "lighting_usage_multiplier_interior": 1.0, + "mech_vent_fan_power": 30, + "mech_vent_fan_power_2": 30, + "mech_vent_fan_type": "none", + "mech_vent_fan_type_2": "none", + "mech_vent_flow_rate": 110, + "mech_vent_flow_rate_2": 110, + "mech_vent_hours_in_operation": 24, + "mech_vent_hours_in_operation_2": 24, + "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", + "mech_vent_sensible_recovery_efficiency": 0.72, + "mech_vent_sensible_recovery_efficiency_2": 0.72, + "mech_vent_total_recovery_efficiency": 0.48, + "mech_vent_total_recovery_efficiency_2": 0.48, + "neighbor_back_distance": 0, + "neighbor_back_height": "auto", + "neighbor_front_distance": 0, + "neighbor_front_height": "auto", + "neighbor_left_distance": 0, + "neighbor_left_height": "auto", + "neighbor_right_distance": 0, + "neighbor_right_height": "auto", + "overhangs_back_depth": 0, + "overhangs_back_distance_to_top_of_window": 0, + "overhangs_front_depth": 0, + "overhangs_front_distance_to_top_of_window": 0, + "overhangs_left_depth": 0, + "overhangs_left_distance_to_top_of_window": 0, + "overhangs_right_depth": 0, + "overhangs_right_distance_to_top_of_window": 0, + "plug_loads_other_annual_kwh": "1638.0", + "plug_loads_other_frac_latent": "0.045", + "plug_loads_other_frac_sensible": "0.855", + "plug_loads_other_usage_multiplier": 1.0, + "plug_loads_television_annual_kwh": "620.0", + "plug_loads_television_usage_multiplier": 1.0, + "plug_loads_vehicle_annual_kwh": "auto", + "plug_loads_vehicle_present": false, + "plug_loads_vehicle_usage_multiplier": 0.0, + "plug_loads_well_pump_annual_kwh": "auto", + "plug_loads_well_pump_present": false, + "plug_loads_well_pump_usage_multiplier": 0.0, + "pool_heater_annual_kwh": "auto", + "pool_heater_annual_therm": "auto", + "pool_heater_type": "electric resistance", + "pool_heater_usage_multiplier": 1.0, + "pool_present": false, + "pool_pump_annual_kwh": "auto", + "pool_pump_usage_multiplier": 1.0, + "pv_system_array_azimuth_1": 180, + "pv_system_array_azimuth_2": 180, + "pv_system_array_tilt_1": "20", + "pv_system_array_tilt_2": "20", + "pv_system_inverter_efficiency_1": 0.96, + "pv_system_inverter_efficiency_2": 0.96, + "pv_system_location_1": "auto", + "pv_system_location_2": "auto", + "pv_system_max_power_output_1": 4000, + "pv_system_max_power_output_2": 4000, + "pv_system_module_type_1": "none", + "pv_system_module_type_2": "none", + "pv_system_num_units_served_1": 1, + "pv_system_num_units_served_2": 1, + "pv_system_system_losses_fraction_1": 0.14, + "pv_system_system_losses_fraction_2": 0.14, + "pv_system_tracking_1": "auto", + "pv_system_tracking_2": "auto", + "refrigerator_location": "living space", + "refrigerator_rated_annual_kwh": "650.0", + "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, + "roof_assembly_r": 2.3, + "roof_color": "medium", + "roof_material_type": "asphalt or fiberglass shingles", + "roof_radiant_barrier": false, + "roof_radiant_barrier_grade": "1", + "schedules_type": "default", + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", + "simulation_control_timestep": "60", + "site_type": "suburban", + "skylight_area_back": 0, + "skylight_area_front": 0, + "skylight_area_left": 0, + "skylight_area_right": 0, + "skylight_shgc": 0.45, + "skylight_ufactor": 0.33, + "slab_carpet_fraction": "0.0", + "slab_carpet_r": "0.0", + "slab_perimeter_depth": 0, + "slab_perimeter_insulation_r": 0, + "slab_thickness": "4.0", + "slab_under_insulation_r": 0, + "slab_under_width": 0, + "solar_thermal_collector_area": 40.0, + "solar_thermal_collector_azimuth": 180, + "solar_thermal_collector_loop_type": "liquid direct", + "solar_thermal_collector_rated_optical_efficiency": 0.5, + "solar_thermal_collector_rated_thermal_losses": 0.2799, + "solar_thermal_collector_tilt": "20", + "solar_thermal_collector_type": "evacuated tube", + "solar_thermal_solar_fraction": 0, + "solar_thermal_storage_volume": "auto", + "solar_thermal_system_type": "none", + "wall_assembly_r": 23, + "wall_color": "medium", + "wall_siding_type": "wood siding", + "wall_type": "WoodStud", + "water_fixtures_shower_low_flow": true, + "water_fixtures_sink_low_flow": false, + "water_fixtures_usage_multiplier": 1.0, + "water_heater_efficiency": 0.95, + "water_heater_efficiency_type": "EnergyFactor", + "water_heater_fuel_type": "electricity", + "water_heater_jacket_rvalue": 0, + "water_heater_location": "living space", + "water_heater_num_units_served": 1, + "water_heater_recovery_efficiency": "0.76", + "water_heater_setpoint_temperature": "125", + "water_heater_standby_loss": 0, + "water_heater_tank_volume": "40", + "water_heater_type": "storage water heater", + "weather_station_epw_filepath": "USA_CO_Denver.Intl.AP.725650_TMY3.epw", + "whole_house_fan_flow_rate": 4500, + "whole_house_fan_power": 300, + "whole_house_fan_present": false, + "window_area_back": 0, + "window_area_front": 0, + "window_area_left": 0, + "window_area_right": 0, + "window_aspect_ratio": 1.333, + "window_back_wwr": 0.18, + "window_fraction_operable": 0.67, + "window_front_wwr": 0.18, + "window_interior_shading_summer": 0.7, + "window_interior_shading_winter": 0.85, + "window_left_wwr": 0.18, + "window_right_wwr": 0.18, + "window_shgc": 0.45, + "window_ufactor": 0.33 + }, + "measure_dir_name": "BuildResidentialHPXML" + } + ] +} \ No newline at end of file diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-single-family-attached-vented-crawlspace-right.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-single-family-attached-vented-crawlspace-right.osw new file mode 100644 index 00000000..511e040c --- /dev/null +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-single-family-attached-vented-crawlspace-right.osw @@ -0,0 +1,339 @@ +{ + "measure_paths": [ + "../.." + ], + "steps": [ + { + "arguments": { + "air_leakage_house_pressure": 50, + "air_leakage_shielding_of_home": "auto", + "air_leakage_units": "ACH", + "air_leakage_value": 3, + "bathroom_fans_quantity": "0", + "ceiling_assembly_r": 39.3, + "ceiling_fan_cooling_setpoint_temp_offset": 0, + "ceiling_fan_efficiency": "auto", + "ceiling_fan_present": false, + "ceiling_fan_quantity": "auto", + "clothes_dryer_efficiency": "3.73", + "clothes_dryer_efficiency_type": "CombinedEnergyFactor", + "clothes_dryer_fuel_type": "electricity", + "clothes_dryer_location": "living space", + "clothes_dryer_usage_multiplier": 1.0, + "clothes_dryer_vented_flow_rate": "150.0", + "clothes_washer_capacity": "3.2", + "clothes_washer_efficiency": "1.21", + "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", + "clothes_washer_label_annual_gas_cost": "27.0", + "clothes_washer_label_electric_rate": "0.12", + "clothes_washer_label_gas_rate": "1.09", + "clothes_washer_label_usage": "6.0", + "clothes_washer_location": "living space", + "clothes_washer_rated_annual_kwh": "380.0", + "clothes_washer_usage_multiplier": 1.0, + "cooking_range_oven_fuel_type": "electricity", + "cooking_range_oven_is_convection": false, + "cooking_range_oven_is_induction": false, + "cooking_range_oven_location": "living space", + "cooking_range_oven_usage_multiplier": 1.0, + "cooling_system_cooling_capacity": "48000.0", + "cooling_system_cooling_compressor_type": "single stage", + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", + "cooling_system_cooling_sensible_heat_fraction": 0.73, + "cooling_system_fraction_cool_load_served": 1, + "cooling_system_is_ducted": false, + "cooling_system_type": "central air conditioner", + "dehumidifier_capacity": 40, + "dehumidifier_efficiency": 1.8, + "dehumidifier_efficiency_type": "EnergyFactor", + "dehumidifier_fraction_dehumidification_load_served": 1, + "dehumidifier_rh_setpoint": 0.5, + "dehumidifier_type": "none", + "dhw_distribution_pipe_r": "0.0", + "dhw_distribution_recirc_branch_piping_length": "50", + "dhw_distribution_recirc_control_type": "no control", + "dhw_distribution_recirc_piping_length": "50", + "dhw_distribution_recirc_pump_power": "50", + "dhw_distribution_standard_piping_length": "50", + "dhw_distribution_system_type": "Standard", + "dishwasher_efficiency": "307", + "dishwasher_efficiency_type": "RatedAnnualkWh", + "dishwasher_label_annual_gas_cost": "22.32", + "dishwasher_label_electric_rate": "0.12", + "dishwasher_label_gas_rate": "1.09", + "dishwasher_label_usage": "4.0", + "dishwasher_location": "living space", + "dishwasher_place_setting_capacity": "12", + "dishwasher_usage_multiplier": 1.0, + "door_area": 80.0, + "door_rvalue": 4.4, + "ducts_number_of_return_registers": "2", + "ducts_return_insulation_r": 0.0, + "ducts_return_leakage_units": "CFM25", + "ducts_return_leakage_value": 25.0, + "ducts_return_location": "attic - unvented", + "ducts_return_surface_area": "50.0", + "ducts_supply_insulation_r": 4.0, + "ducts_supply_leakage_units": "CFM25", + "ducts_supply_leakage_value": 75.0, + "ducts_supply_location": "attic - unvented", + "ducts_supply_surface_area": "150.0", + "dwhr_efficiency": 0.55, + "dwhr_equal_flow": true, + "dwhr_facilities_connected": "none", + "extra_refrigerator_location": "none", + "extra_refrigerator_rated_annual_kwh": "auto", + "extra_refrigerator_usage_multiplier": 1.0, + "floor_assembly_r": 18.7, + "foundation_wall_insulation_distance_to_bottom": 4.0, + "foundation_wall_insulation_distance_to_top": 0.0, + "foundation_wall_insulation_r": 8.9, + "foundation_wall_thickness": "8.0", + "freezer_location": "none", + "freezer_rated_annual_kwh": "auto", + "freezer_usage_multiplier": 1.0, + "fuel_loads_fireplace_annual_therm": "auto", + "fuel_loads_fireplace_frac_latent": "auto", + "fuel_loads_fireplace_frac_sensible": "auto", + "fuel_loads_fireplace_fuel_type": "natural gas", + "fuel_loads_fireplace_present": false, + "fuel_loads_fireplace_usage_multiplier": 0.0, + "fuel_loads_grill_annual_therm": "auto", + "fuel_loads_grill_fuel_type": "natural gas", + "fuel_loads_grill_present": false, + "fuel_loads_grill_usage_multiplier": 0.0, + "fuel_loads_lighting_annual_therm": "auto", + "fuel_loads_lighting_fuel_type": "natural gas", + "fuel_loads_lighting_present": false, + "fuel_loads_lighting_usage_multiplier": 0.0, + "geometry_aspect_ratio": 1.5, + "geometry_attic_type": "UnventedAttic", + "geometry_balcony_depth": 0.0, + "geometry_building_num_units": 3, + "geometry_cfa": 1800.0, + "geometry_corridor_position": "None", + "geometry_corridor_width": 10.0, + "geometry_eaves_depth": 0, + "geometry_foundation_height": 4.0, + "geometry_foundation_height_above_grade": 1.0, + "geometry_foundation_type": "VentedCrawlspace", + "geometry_garage_depth": 20.0, + "geometry_garage_position": "Right", + "geometry_garage_protrusion": 0.0, + "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", + "geometry_horizontal_location": "Right", + "geometry_inset_depth": 0.0, + "geometry_inset_position": "Right", + "geometry_inset_width": 0.0, + "geometry_num_bathrooms": "2", + "geometry_num_bedrooms": 3, + "geometry_num_floors_above_grade": 1, + "geometry_num_occupants": "3", + "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, + "geometry_roof_pitch": "6:12", + "geometry_roof_type": "gable", + "geometry_unit_type": "single-family attached", + "geometry_wall_height": 8.0, + "heat_pump_backup_fuel": "none", + "heat_pump_backup_heating_capacity": "34121.0", + "heat_pump_backup_heating_efficiency": 1, + "heat_pump_cooling_capacity": "48000.0", + "heat_pump_cooling_compressor_type": "single stage", + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", + "heat_pump_cooling_sensible_heat_fraction": 0.73, + "heat_pump_fraction_cool_load_served": 1, + "heat_pump_fraction_heat_load_served": 1, + "heat_pump_heating_capacity": "64000.0", + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", + "heat_pump_type": "none", + "heating_system_fraction_heat_load_served": 1, + "heating_system_fraction_heat_load_served_2": 0.25, + "heating_system_fuel": "natural gas", + "heating_system_fuel_2": "electricity", + "heating_system_heating_capacity": "64000.0", + "heating_system_heating_capacity_2": "auto", + "heating_system_heating_efficiency": 0.92, + "heating_system_heating_efficiency_2": 1.0, + "heating_system_type": "Furnace", + "heating_system_type_2": "none", + "holiday_lighting_daily_kwh": "auto", + "holiday_lighting_period_begin_day_of_month": "auto", + "holiday_lighting_period_begin_month": "auto", + "holiday_lighting_period_end_day_of_month": "auto", + "holiday_lighting_period_end_month": "auto", + "holiday_lighting_present": false, + "hot_tub_heater_annual_kwh": "auto", + "hot_tub_heater_annual_therm": "auto", + "hot_tub_heater_type": "electric resistance", + "hot_tub_heater_usage_multiplier": 1.0, + "hot_tub_present": false, + "hot_tub_pump_annual_kwh": "auto", + "hot_tub_pump_usage_multiplier": 1.0, + "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/extra-bldgtype-single-family-attached-vented-crawlspace-right.xml", + "kitchen_fans_quantity": "0", + "lighting_fraction_cfl_exterior": 0.4, + "lighting_fraction_cfl_garage": 0.4, + "lighting_fraction_cfl_interior": 0.4, + "lighting_fraction_led_exterior": 0.25, + "lighting_fraction_led_garage": 0.25, + "lighting_fraction_led_interior": 0.25, + "lighting_fraction_lfl_exterior": 0.1, + "lighting_fraction_lfl_garage": 0.1, + "lighting_fraction_lfl_interior": 0.1, + "lighting_usage_multiplier_exterior": 1.0, + "lighting_usage_multiplier_garage": 1.0, + "lighting_usage_multiplier_interior": 1.0, + "mech_vent_fan_power": 30, + "mech_vent_fan_power_2": 30, + "mech_vent_fan_type": "none", + "mech_vent_fan_type_2": "none", + "mech_vent_flow_rate": 110, + "mech_vent_flow_rate_2": 110, + "mech_vent_hours_in_operation": 24, + "mech_vent_hours_in_operation_2": 24, + "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", + "mech_vent_sensible_recovery_efficiency": 0.72, + "mech_vent_sensible_recovery_efficiency_2": 0.72, + "mech_vent_total_recovery_efficiency": 0.48, + "mech_vent_total_recovery_efficiency_2": 0.48, + "neighbor_back_distance": 0, + "neighbor_back_height": "auto", + "neighbor_front_distance": 0, + "neighbor_front_height": "auto", + "neighbor_left_distance": 0, + "neighbor_left_height": "auto", + "neighbor_right_distance": 0, + "neighbor_right_height": "auto", + "overhangs_back_depth": 0, + "overhangs_back_distance_to_top_of_window": 0, + "overhangs_front_depth": 0, + "overhangs_front_distance_to_top_of_window": 0, + "overhangs_left_depth": 0, + "overhangs_left_distance_to_top_of_window": 0, + "overhangs_right_depth": 0, + "overhangs_right_distance_to_top_of_window": 0, + "plug_loads_other_annual_kwh": "1638.0", + "plug_loads_other_frac_latent": "0.045", + "plug_loads_other_frac_sensible": "0.855", + "plug_loads_other_usage_multiplier": 1.0, + "plug_loads_television_annual_kwh": "620.0", + "plug_loads_television_usage_multiplier": 1.0, + "plug_loads_vehicle_annual_kwh": "auto", + "plug_loads_vehicle_present": false, + "plug_loads_vehicle_usage_multiplier": 0.0, + "plug_loads_well_pump_annual_kwh": "auto", + "plug_loads_well_pump_present": false, + "plug_loads_well_pump_usage_multiplier": 0.0, + "pool_heater_annual_kwh": "auto", + "pool_heater_annual_therm": "auto", + "pool_heater_type": "electric resistance", + "pool_heater_usage_multiplier": 1.0, + "pool_present": false, + "pool_pump_annual_kwh": "auto", + "pool_pump_usage_multiplier": 1.0, + "pv_system_array_azimuth_1": 180, + "pv_system_array_azimuth_2": 180, + "pv_system_array_tilt_1": "20", + "pv_system_array_tilt_2": "20", + "pv_system_inverter_efficiency_1": 0.96, + "pv_system_inverter_efficiency_2": 0.96, + "pv_system_location_1": "auto", + "pv_system_location_2": "auto", + "pv_system_max_power_output_1": 4000, + "pv_system_max_power_output_2": 4000, + "pv_system_module_type_1": "none", + "pv_system_module_type_2": "none", + "pv_system_num_units_served_1": 1, + "pv_system_num_units_served_2": 1, + "pv_system_system_losses_fraction_1": 0.14, + "pv_system_system_losses_fraction_2": 0.14, + "pv_system_tracking_1": "auto", + "pv_system_tracking_2": "auto", + "refrigerator_location": "living space", + "refrigerator_rated_annual_kwh": "650.0", + "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, + "roof_assembly_r": 2.3, + "roof_color": "medium", + "roof_material_type": "asphalt or fiberglass shingles", + "roof_radiant_barrier": false, + "roof_radiant_barrier_grade": "1", + "schedules_type": "default", + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", + "simulation_control_timestep": "60", + "site_type": "suburban", + "skylight_area_back": 0, + "skylight_area_front": 0, + "skylight_area_left": 0, + "skylight_area_right": 0, + "skylight_shgc": 0.45, + "skylight_ufactor": 0.33, + "slab_carpet_fraction": "0.0", + "slab_carpet_r": "0.0", + "slab_perimeter_depth": 0, + "slab_perimeter_insulation_r": 0, + "slab_thickness": "4.0", + "slab_under_insulation_r": 0, + "slab_under_width": 0, + "solar_thermal_collector_area": 40.0, + "solar_thermal_collector_azimuth": 180, + "solar_thermal_collector_loop_type": "liquid direct", + "solar_thermal_collector_rated_optical_efficiency": 0.5, + "solar_thermal_collector_rated_thermal_losses": 0.2799, + "solar_thermal_collector_tilt": "20", + "solar_thermal_collector_type": "evacuated tube", + "solar_thermal_solar_fraction": 0, + "solar_thermal_storage_volume": "auto", + "solar_thermal_system_type": "none", + "wall_assembly_r": 23, + "wall_color": "medium", + "wall_siding_type": "wood siding", + "wall_type": "WoodStud", + "water_fixtures_shower_low_flow": true, + "water_fixtures_sink_low_flow": false, + "water_fixtures_usage_multiplier": 1.0, + "water_heater_efficiency": 0.95, + "water_heater_efficiency_type": "EnergyFactor", + "water_heater_fuel_type": "electricity", + "water_heater_jacket_rvalue": 0, + "water_heater_location": "living space", + "water_heater_num_units_served": 1, + "water_heater_recovery_efficiency": "0.76", + "water_heater_setpoint_temperature": "125", + "water_heater_standby_loss": 0, + "water_heater_tank_volume": "40", + "water_heater_type": "storage water heater", + "weather_station_epw_filepath": "USA_CO_Denver.Intl.AP.725650_TMY3.epw", + "whole_house_fan_flow_rate": 4500, + "whole_house_fan_power": 300, + "whole_house_fan_present": false, + "window_area_back": 0, + "window_area_front": 0, + "window_area_left": 0, + "window_area_right": 0, + "window_aspect_ratio": 1.333, + "window_back_wwr": 0.18, + "window_fraction_operable": 0.67, + "window_front_wwr": 0.18, + "window_interior_shading_summer": 0.7, + "window_interior_shading_winter": 0.85, + "window_left_wwr": 0.18, + "window_right_wwr": 0.18, + "window_shgc": 0.45, + "window_ufactor": 0.33 + }, + "measure_dir_name": "BuildResidentialHPXML" + } + ] +} \ No newline at end of file diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-single-family-attached-vented-crawlspace.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-single-family-attached-vented-crawlspace.osw new file mode 100644 index 00000000..067fa43d --- /dev/null +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-single-family-attached-vented-crawlspace.osw @@ -0,0 +1,339 @@ +{ + "measure_paths": [ + "../.." + ], + "steps": [ + { + "arguments": { + "air_leakage_house_pressure": 50, + "air_leakage_shielding_of_home": "auto", + "air_leakage_units": "ACH", + "air_leakage_value": 3, + "bathroom_fans_quantity": "0", + "ceiling_assembly_r": 39.3, + "ceiling_fan_cooling_setpoint_temp_offset": 0, + "ceiling_fan_efficiency": "auto", + "ceiling_fan_present": false, + "ceiling_fan_quantity": "auto", + "clothes_dryer_efficiency": "3.73", + "clothes_dryer_efficiency_type": "CombinedEnergyFactor", + "clothes_dryer_fuel_type": "electricity", + "clothes_dryer_location": "living space", + "clothes_dryer_usage_multiplier": 1.0, + "clothes_dryer_vented_flow_rate": "150.0", + "clothes_washer_capacity": "3.2", + "clothes_washer_efficiency": "1.21", + "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", + "clothes_washer_label_annual_gas_cost": "27.0", + "clothes_washer_label_electric_rate": "0.12", + "clothes_washer_label_gas_rate": "1.09", + "clothes_washer_label_usage": "6.0", + "clothes_washer_location": "living space", + "clothes_washer_rated_annual_kwh": "380.0", + "clothes_washer_usage_multiplier": 1.0, + "cooking_range_oven_fuel_type": "electricity", + "cooking_range_oven_is_convection": false, + "cooking_range_oven_is_induction": false, + "cooking_range_oven_location": "living space", + "cooking_range_oven_usage_multiplier": 1.0, + "cooling_system_cooling_capacity": "48000.0", + "cooling_system_cooling_compressor_type": "single stage", + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", + "cooling_system_cooling_sensible_heat_fraction": 0.73, + "cooling_system_fraction_cool_load_served": 1, + "cooling_system_is_ducted": false, + "cooling_system_type": "central air conditioner", + "dehumidifier_capacity": 40, + "dehumidifier_efficiency": 1.8, + "dehumidifier_efficiency_type": "EnergyFactor", + "dehumidifier_fraction_dehumidification_load_served": 1, + "dehumidifier_rh_setpoint": 0.5, + "dehumidifier_type": "none", + "dhw_distribution_pipe_r": "0.0", + "dhw_distribution_recirc_branch_piping_length": "50", + "dhw_distribution_recirc_control_type": "no control", + "dhw_distribution_recirc_piping_length": "50", + "dhw_distribution_recirc_pump_power": "50", + "dhw_distribution_standard_piping_length": "50", + "dhw_distribution_system_type": "Standard", + "dishwasher_efficiency": "307", + "dishwasher_efficiency_type": "RatedAnnualkWh", + "dishwasher_label_annual_gas_cost": "22.32", + "dishwasher_label_electric_rate": "0.12", + "dishwasher_label_gas_rate": "1.09", + "dishwasher_label_usage": "4.0", + "dishwasher_location": "living space", + "dishwasher_place_setting_capacity": "12", + "dishwasher_usage_multiplier": 1.0, + "door_area": 80.0, + "door_rvalue": 4.4, + "ducts_number_of_return_registers": "2", + "ducts_return_insulation_r": 0.0, + "ducts_return_leakage_units": "CFM25", + "ducts_return_leakage_value": 25.0, + "ducts_return_location": "attic - unvented", + "ducts_return_surface_area": "50.0", + "ducts_supply_insulation_r": 4.0, + "ducts_supply_leakage_units": "CFM25", + "ducts_supply_leakage_value": 75.0, + "ducts_supply_location": "attic - unvented", + "ducts_supply_surface_area": "150.0", + "dwhr_efficiency": 0.55, + "dwhr_equal_flow": true, + "dwhr_facilities_connected": "none", + "extra_refrigerator_location": "none", + "extra_refrigerator_rated_annual_kwh": "auto", + "extra_refrigerator_usage_multiplier": 1.0, + "floor_assembly_r": 18.7, + "foundation_wall_insulation_distance_to_bottom": 4.0, + "foundation_wall_insulation_distance_to_top": 0.0, + "foundation_wall_insulation_r": 8.9, + "foundation_wall_thickness": "8.0", + "freezer_location": "none", + "freezer_rated_annual_kwh": "auto", + "freezer_usage_multiplier": 1.0, + "fuel_loads_fireplace_annual_therm": "auto", + "fuel_loads_fireplace_frac_latent": "auto", + "fuel_loads_fireplace_frac_sensible": "auto", + "fuel_loads_fireplace_fuel_type": "natural gas", + "fuel_loads_fireplace_present": false, + "fuel_loads_fireplace_usage_multiplier": 0.0, + "fuel_loads_grill_annual_therm": "auto", + "fuel_loads_grill_fuel_type": "natural gas", + "fuel_loads_grill_present": false, + "fuel_loads_grill_usage_multiplier": 0.0, + "fuel_loads_lighting_annual_therm": "auto", + "fuel_loads_lighting_fuel_type": "natural gas", + "fuel_loads_lighting_present": false, + "fuel_loads_lighting_usage_multiplier": 0.0, + "geometry_aspect_ratio": 1.5, + "geometry_attic_type": "UnventedAttic", + "geometry_balcony_depth": 0.0, + "geometry_building_num_units": 3, + "geometry_cfa": 1800.0, + "geometry_corridor_position": "None", + "geometry_corridor_width": 10.0, + "geometry_eaves_depth": 0, + "geometry_foundation_height": 4.0, + "geometry_foundation_height_above_grade": 1.0, + "geometry_foundation_type": "VentedCrawlspace", + "geometry_garage_depth": 20.0, + "geometry_garage_position": "Right", + "geometry_garage_protrusion": 0.0, + "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", + "geometry_horizontal_location": "Left", + "geometry_inset_depth": 0.0, + "geometry_inset_position": "Right", + "geometry_inset_width": 0.0, + "geometry_num_bathrooms": "2", + "geometry_num_bedrooms": 3, + "geometry_num_floors_above_grade": 1, + "geometry_num_occupants": "3", + "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, + "geometry_roof_pitch": "6:12", + "geometry_roof_type": "gable", + "geometry_unit_type": "single-family attached", + "geometry_wall_height": 8.0, + "heat_pump_backup_fuel": "none", + "heat_pump_backup_heating_capacity": "34121.0", + "heat_pump_backup_heating_efficiency": 1, + "heat_pump_cooling_capacity": "48000.0", + "heat_pump_cooling_compressor_type": "single stage", + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", + "heat_pump_cooling_sensible_heat_fraction": 0.73, + "heat_pump_fraction_cool_load_served": 1, + "heat_pump_fraction_heat_load_served": 1, + "heat_pump_heating_capacity": "64000.0", + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", + "heat_pump_type": "none", + "heating_system_fraction_heat_load_served": 1, + "heating_system_fraction_heat_load_served_2": 0.25, + "heating_system_fuel": "natural gas", + "heating_system_fuel_2": "electricity", + "heating_system_heating_capacity": "64000.0", + "heating_system_heating_capacity_2": "auto", + "heating_system_heating_efficiency": 0.92, + "heating_system_heating_efficiency_2": 1.0, + "heating_system_type": "Furnace", + "heating_system_type_2": "none", + "holiday_lighting_daily_kwh": "auto", + "holiday_lighting_period_begin_day_of_month": "auto", + "holiday_lighting_period_begin_month": "auto", + "holiday_lighting_period_end_day_of_month": "auto", + "holiday_lighting_period_end_month": "auto", + "holiday_lighting_present": false, + "hot_tub_heater_annual_kwh": "auto", + "hot_tub_heater_annual_therm": "auto", + "hot_tub_heater_type": "electric resistance", + "hot_tub_heater_usage_multiplier": 1.0, + "hot_tub_present": false, + "hot_tub_pump_annual_kwh": "auto", + "hot_tub_pump_usage_multiplier": 1.0, + "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/extra-bldgtype-single-family-attached-vented-crawlspace.xml", + "kitchen_fans_quantity": "0", + "lighting_fraction_cfl_exterior": 0.4, + "lighting_fraction_cfl_garage": 0.4, + "lighting_fraction_cfl_interior": 0.4, + "lighting_fraction_led_exterior": 0.25, + "lighting_fraction_led_garage": 0.25, + "lighting_fraction_led_interior": 0.25, + "lighting_fraction_lfl_exterior": 0.1, + "lighting_fraction_lfl_garage": 0.1, + "lighting_fraction_lfl_interior": 0.1, + "lighting_usage_multiplier_exterior": 1.0, + "lighting_usage_multiplier_garage": 1.0, + "lighting_usage_multiplier_interior": 1.0, + "mech_vent_fan_power": 30, + "mech_vent_fan_power_2": 30, + "mech_vent_fan_type": "none", + "mech_vent_fan_type_2": "none", + "mech_vent_flow_rate": 110, + "mech_vent_flow_rate_2": 110, + "mech_vent_hours_in_operation": 24, + "mech_vent_hours_in_operation_2": 24, + "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", + "mech_vent_sensible_recovery_efficiency": 0.72, + "mech_vent_sensible_recovery_efficiency_2": 0.72, + "mech_vent_total_recovery_efficiency": 0.48, + "mech_vent_total_recovery_efficiency_2": 0.48, + "neighbor_back_distance": 0, + "neighbor_back_height": "auto", + "neighbor_front_distance": 0, + "neighbor_front_height": "auto", + "neighbor_left_distance": 0, + "neighbor_left_height": "auto", + "neighbor_right_distance": 0, + "neighbor_right_height": "auto", + "overhangs_back_depth": 0, + "overhangs_back_distance_to_top_of_window": 0, + "overhangs_front_depth": 0, + "overhangs_front_distance_to_top_of_window": 0, + "overhangs_left_depth": 0, + "overhangs_left_distance_to_top_of_window": 0, + "overhangs_right_depth": 0, + "overhangs_right_distance_to_top_of_window": 0, + "plug_loads_other_annual_kwh": "1638.0", + "plug_loads_other_frac_latent": "0.045", + "plug_loads_other_frac_sensible": "0.855", + "plug_loads_other_usage_multiplier": 1.0, + "plug_loads_television_annual_kwh": "620.0", + "plug_loads_television_usage_multiplier": 1.0, + "plug_loads_vehicle_annual_kwh": "auto", + "plug_loads_vehicle_present": false, + "plug_loads_vehicle_usage_multiplier": 0.0, + "plug_loads_well_pump_annual_kwh": "auto", + "plug_loads_well_pump_present": false, + "plug_loads_well_pump_usage_multiplier": 0.0, + "pool_heater_annual_kwh": "auto", + "pool_heater_annual_therm": "auto", + "pool_heater_type": "electric resistance", + "pool_heater_usage_multiplier": 1.0, + "pool_present": false, + "pool_pump_annual_kwh": "auto", + "pool_pump_usage_multiplier": 1.0, + "pv_system_array_azimuth_1": 180, + "pv_system_array_azimuth_2": 180, + "pv_system_array_tilt_1": "20", + "pv_system_array_tilt_2": "20", + "pv_system_inverter_efficiency_1": 0.96, + "pv_system_inverter_efficiency_2": 0.96, + "pv_system_location_1": "auto", + "pv_system_location_2": "auto", + "pv_system_max_power_output_1": 4000, + "pv_system_max_power_output_2": 4000, + "pv_system_module_type_1": "none", + "pv_system_module_type_2": "none", + "pv_system_num_units_served_1": 1, + "pv_system_num_units_served_2": 1, + "pv_system_system_losses_fraction_1": 0.14, + "pv_system_system_losses_fraction_2": 0.14, + "pv_system_tracking_1": "auto", + "pv_system_tracking_2": "auto", + "refrigerator_location": "living space", + "refrigerator_rated_annual_kwh": "650.0", + "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, + "roof_assembly_r": 2.3, + "roof_color": "medium", + "roof_material_type": "asphalt or fiberglass shingles", + "roof_radiant_barrier": false, + "roof_radiant_barrier_grade": "1", + "schedules_type": "default", + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", + "simulation_control_timestep": "60", + "site_type": "suburban", + "skylight_area_back": 0, + "skylight_area_front": 0, + "skylight_area_left": 0, + "skylight_area_right": 0, + "skylight_shgc": 0.45, + "skylight_ufactor": 0.33, + "slab_carpet_fraction": "0.0", + "slab_carpet_r": "0.0", + "slab_perimeter_depth": 0, + "slab_perimeter_insulation_r": 0, + "slab_thickness": "4.0", + "slab_under_insulation_r": 0, + "slab_under_width": 0, + "solar_thermal_collector_area": 40.0, + "solar_thermal_collector_azimuth": 180, + "solar_thermal_collector_loop_type": "liquid direct", + "solar_thermal_collector_rated_optical_efficiency": 0.5, + "solar_thermal_collector_rated_thermal_losses": 0.2799, + "solar_thermal_collector_tilt": "20", + "solar_thermal_collector_type": "evacuated tube", + "solar_thermal_solar_fraction": 0, + "solar_thermal_storage_volume": "auto", + "solar_thermal_system_type": "none", + "wall_assembly_r": 23, + "wall_color": "medium", + "wall_siding_type": "wood siding", + "wall_type": "WoodStud", + "water_fixtures_shower_low_flow": true, + "water_fixtures_sink_low_flow": false, + "water_fixtures_usage_multiplier": 1.0, + "water_heater_efficiency": 0.95, + "water_heater_efficiency_type": "EnergyFactor", + "water_heater_fuel_type": "electricity", + "water_heater_jacket_rvalue": 0, + "water_heater_location": "living space", + "water_heater_num_units_served": 1, + "water_heater_recovery_efficiency": "0.76", + "water_heater_setpoint_temperature": "125", + "water_heater_standby_loss": 0, + "water_heater_tank_volume": "40", + "water_heater_type": "storage water heater", + "weather_station_epw_filepath": "USA_CO_Denver.Intl.AP.725650_TMY3.epw", + "whole_house_fan_flow_rate": 4500, + "whole_house_fan_power": 300, + "whole_house_fan_present": false, + "window_area_back": 0, + "window_area_front": 0, + "window_area_left": 0, + "window_area_right": 0, + "window_aspect_ratio": 1.333, + "window_back_wwr": 0.18, + "window_fraction_operable": 0.67, + "window_front_wwr": 0.18, + "window_interior_shading_summer": 0.7, + "window_interior_shading_winter": 0.85, + "window_left_wwr": 0.18, + "window_right_wwr": 0.18, + "window_shgc": 0.45, + "window_ufactor": 0.33 + }, + "measure_dir_name": "BuildResidentialHPXML" + } + ] +} \ No newline at end of file diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-dhw-solar-latitude.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-dhw-solar-latitude.osw index 9aea047c..de491279 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-dhw-solar-latitude.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-dhw-solar-latitude.osw @@ -6,58 +6,50 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", "cooling_system_cooling_compressor_type": "single stage", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.73, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "central air conditioner", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -65,8 +57,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -74,11 +65,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "2", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 25.0, @@ -92,17 +82,15 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -133,6 +121,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, @@ -141,6 +130,7 @@ "geometry_num_floors_above_grade": 1, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family detached", @@ -150,22 +140,20 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "64000.0", - "heat_pump_heating_capacity_17F": "auto", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "none", "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "natural gas", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.92, @@ -186,7 +174,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/extra-dhw-solar-latitude.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -208,14 +196,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -236,18 +222,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -274,21 +256,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -315,10 +295,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "hot water", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -326,8 +304,6 @@ "water_heater_efficiency": 0.95, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "electricity", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "18767", "water_heater_jacket_rvalue": 0, "water_heater_location": "living space", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-enclosure-atticroof-conditioned-eaves-gable.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-enclosure-atticroof-conditioned-eaves-gable.osw new file mode 100644 index 00000000..14191ab9 --- /dev/null +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-enclosure-atticroof-conditioned-eaves-gable.osw @@ -0,0 +1,337 @@ +{ + "measure_paths": [ + "../.." + ], + "steps": [ + { + "arguments": { + "air_leakage_house_pressure": 50, + "air_leakage_shielding_of_home": "auto", + "air_leakage_units": "ACH", + "air_leakage_value": 3, + "bathroom_fans_quantity": "0", + "ceiling_assembly_r": 39.3, + "ceiling_fan_cooling_setpoint_temp_offset": 0, + "ceiling_fan_efficiency": "auto", + "ceiling_fan_present": false, + "ceiling_fan_quantity": "auto", + "clothes_dryer_efficiency": "3.73", + "clothes_dryer_efficiency_type": "CombinedEnergyFactor", + "clothes_dryer_fuel_type": "electricity", + "clothes_dryer_location": "living space", + "clothes_dryer_usage_multiplier": 1.0, + "clothes_dryer_vented_flow_rate": "150.0", + "clothes_washer_capacity": "3.2", + "clothes_washer_efficiency": "1.21", + "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", + "clothes_washer_label_annual_gas_cost": "27.0", + "clothes_washer_label_electric_rate": "0.12", + "clothes_washer_label_gas_rate": "1.09", + "clothes_washer_label_usage": "6.0", + "clothes_washer_location": "living space", + "clothes_washer_rated_annual_kwh": "380.0", + "clothes_washer_usage_multiplier": 1.0, + "cooking_range_oven_fuel_type": "electricity", + "cooking_range_oven_is_convection": false, + "cooking_range_oven_is_induction": false, + "cooking_range_oven_location": "living space", + "cooking_range_oven_usage_multiplier": 1.0, + "cooling_system_cooling_capacity": "48000.0", + "cooling_system_cooling_compressor_type": "single stage", + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", + "cooling_system_cooling_sensible_heat_fraction": 0.73, + "cooling_system_fraction_cool_load_served": 1, + "cooling_system_is_ducted": false, + "cooling_system_type": "central air conditioner", + "dehumidifier_capacity": 40, + "dehumidifier_efficiency": 1.8, + "dehumidifier_efficiency_type": "EnergyFactor", + "dehumidifier_fraction_dehumidification_load_served": 1, + "dehumidifier_rh_setpoint": 0.5, + "dehumidifier_type": "none", + "dhw_distribution_pipe_r": "0.0", + "dhw_distribution_recirc_branch_piping_length": "50", + "dhw_distribution_recirc_control_type": "no control", + "dhw_distribution_recirc_piping_length": "50", + "dhw_distribution_recirc_pump_power": "50", + "dhw_distribution_standard_piping_length": "50", + "dhw_distribution_system_type": "Standard", + "dishwasher_efficiency": "307", + "dishwasher_efficiency_type": "RatedAnnualkWh", + "dishwasher_label_annual_gas_cost": "22.32", + "dishwasher_label_electric_rate": "0.12", + "dishwasher_label_gas_rate": "1.09", + "dishwasher_label_usage": "4.0", + "dishwasher_location": "living space", + "dishwasher_place_setting_capacity": "12", + "dishwasher_usage_multiplier": 1.0, + "door_area": 80.0, + "door_rvalue": 4.4, + "ducts_number_of_return_registers": "1", + "ducts_return_insulation_r": 0.0, + "ducts_return_leakage_units": "CFM25", + "ducts_return_leakage_value": 25.0, + "ducts_return_location": "under slab", + "ducts_return_surface_area": "50.0", + "ducts_supply_insulation_r": 4.0, + "ducts_supply_leakage_units": "CFM25", + "ducts_supply_leakage_value": 75.0, + "ducts_supply_location": "under slab", + "ducts_supply_surface_area": "150.0", + "dwhr_efficiency": 0.55, + "dwhr_equal_flow": true, + "dwhr_facilities_connected": "none", + "extra_refrigerator_location": "none", + "extra_refrigerator_rated_annual_kwh": "auto", + "extra_refrigerator_usage_multiplier": 1.0, + "floor_assembly_r": 0, + "foundation_wall_insulation_distance_to_bottom": "auto", + "foundation_wall_insulation_distance_to_top": 0.0, + "foundation_wall_insulation_r": 8.9, + "foundation_wall_thickness": "8.0", + "freezer_location": "none", + "freezer_rated_annual_kwh": "auto", + "freezer_usage_multiplier": 1.0, + "fuel_loads_fireplace_annual_therm": "auto", + "fuel_loads_fireplace_frac_latent": "auto", + "fuel_loads_fireplace_frac_sensible": "auto", + "fuel_loads_fireplace_fuel_type": "natural gas", + "fuel_loads_fireplace_present": false, + "fuel_loads_fireplace_usage_multiplier": 0.0, + "fuel_loads_grill_annual_therm": "auto", + "fuel_loads_grill_fuel_type": "natural gas", + "fuel_loads_grill_present": false, + "fuel_loads_grill_usage_multiplier": 0.0, + "fuel_loads_lighting_annual_therm": "auto", + "fuel_loads_lighting_fuel_type": "natural gas", + "fuel_loads_lighting_present": false, + "fuel_loads_lighting_usage_multiplier": 0.0, + "geometry_aspect_ratio": 1.5, + "geometry_attic_type": "ConditionedAttic", + "geometry_balcony_depth": 0.0, + "geometry_cfa": 1350.0, + "geometry_corridor_position": "Double-Loaded Interior", + "geometry_corridor_width": 10.0, + "geometry_eaves_depth": 2, + "geometry_foundation_height": 0.0, + "geometry_foundation_height_above_grade": 0.0, + "geometry_foundation_type": "SlabOnGrade", + "geometry_garage_depth": 20.0, + "geometry_garage_position": "Right", + "geometry_garage_protrusion": 0.0, + "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", + "geometry_inset_depth": 0.0, + "geometry_inset_position": "Right", + "geometry_inset_width": 0.0, + "geometry_num_bathrooms": "2", + "geometry_num_bedrooms": 3, + "geometry_num_floors_above_grade": 2, + "geometry_num_occupants": "3", + "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, + "geometry_roof_pitch": "6:12", + "geometry_roof_type": "gable", + "geometry_unit_type": "single-family detached", + "geometry_wall_height": 8.0, + "heat_pump_backup_fuel": "none", + "heat_pump_backup_heating_capacity": "34121.0", + "heat_pump_backup_heating_efficiency": 1, + "heat_pump_cooling_capacity": "48000.0", + "heat_pump_cooling_compressor_type": "single stage", + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", + "heat_pump_cooling_sensible_heat_fraction": 0.73, + "heat_pump_fraction_cool_load_served": 1, + "heat_pump_fraction_heat_load_served": 1, + "heat_pump_heating_capacity": "64000.0", + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", + "heat_pump_type": "none", + "heating_system_fraction_heat_load_served": 1, + "heating_system_fraction_heat_load_served_2": 0.25, + "heating_system_fuel": "natural gas", + "heating_system_fuel_2": "electricity", + "heating_system_heating_capacity": "64000.0", + "heating_system_heating_capacity_2": "auto", + "heating_system_heating_efficiency": 0.92, + "heating_system_heating_efficiency_2": 1.0, + "heating_system_type": "Furnace", + "heating_system_type_2": "none", + "holiday_lighting_daily_kwh": "auto", + "holiday_lighting_period_begin_day_of_month": "auto", + "holiday_lighting_period_begin_month": "auto", + "holiday_lighting_period_end_day_of_month": "auto", + "holiday_lighting_period_end_month": "auto", + "holiday_lighting_present": false, + "hot_tub_heater_annual_kwh": "auto", + "hot_tub_heater_annual_therm": "auto", + "hot_tub_heater_type": "electric resistance", + "hot_tub_heater_usage_multiplier": 1.0, + "hot_tub_present": false, + "hot_tub_pump_annual_kwh": "auto", + "hot_tub_pump_usage_multiplier": 1.0, + "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/extra-enclosure-atticroof-conditioned-eaves-gable.xml", + "kitchen_fans_quantity": "0", + "lighting_fraction_cfl_exterior": 0.4, + "lighting_fraction_cfl_garage": 0.4, + "lighting_fraction_cfl_interior": 0.4, + "lighting_fraction_led_exterior": 0.25, + "lighting_fraction_led_garage": 0.25, + "lighting_fraction_led_interior": 0.25, + "lighting_fraction_lfl_exterior": 0.1, + "lighting_fraction_lfl_garage": 0.1, + "lighting_fraction_lfl_interior": 0.1, + "lighting_usage_multiplier_exterior": 1.0, + "lighting_usage_multiplier_garage": 1.0, + "lighting_usage_multiplier_interior": 1.0, + "mech_vent_fan_power": 30, + "mech_vent_fan_power_2": 30, + "mech_vent_fan_type": "none", + "mech_vent_fan_type_2": "none", + "mech_vent_flow_rate": 110, + "mech_vent_flow_rate_2": 110, + "mech_vent_hours_in_operation": 24, + "mech_vent_hours_in_operation_2": 24, + "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", + "mech_vent_sensible_recovery_efficiency": 0.72, + "mech_vent_sensible_recovery_efficiency_2": 0.72, + "mech_vent_total_recovery_efficiency": 0.48, + "mech_vent_total_recovery_efficiency_2": 0.48, + "neighbor_back_distance": 0, + "neighbor_back_height": "auto", + "neighbor_front_distance": 0, + "neighbor_front_height": "auto", + "neighbor_left_distance": 0, + "neighbor_left_height": "auto", + "neighbor_right_distance": 0, + "neighbor_right_height": "auto", + "overhangs_back_depth": 0, + "overhangs_back_distance_to_top_of_window": 0, + "overhangs_front_depth": 0, + "overhangs_front_distance_to_top_of_window": 0, + "overhangs_left_depth": 0, + "overhangs_left_distance_to_top_of_window": 0, + "overhangs_right_depth": 0, + "overhangs_right_distance_to_top_of_window": 0, + "plug_loads_other_annual_kwh": "1228.5", + "plug_loads_other_frac_latent": "0.045", + "plug_loads_other_frac_sensible": "0.855", + "plug_loads_other_usage_multiplier": 1.0, + "plug_loads_television_annual_kwh": "620.0", + "plug_loads_television_usage_multiplier": 1.0, + "plug_loads_vehicle_annual_kwh": "auto", + "plug_loads_vehicle_present": false, + "plug_loads_vehicle_usage_multiplier": 0.0, + "plug_loads_well_pump_annual_kwh": "auto", + "plug_loads_well_pump_present": false, + "plug_loads_well_pump_usage_multiplier": 0.0, + "pool_heater_annual_kwh": "auto", + "pool_heater_annual_therm": "auto", + "pool_heater_type": "electric resistance", + "pool_heater_usage_multiplier": 1.0, + "pool_present": false, + "pool_pump_annual_kwh": "auto", + "pool_pump_usage_multiplier": 1.0, + "pv_system_array_azimuth_1": 180, + "pv_system_array_azimuth_2": 180, + "pv_system_array_tilt_1": "20", + "pv_system_array_tilt_2": "20", + "pv_system_inverter_efficiency_1": 0.96, + "pv_system_inverter_efficiency_2": 0.96, + "pv_system_location_1": "auto", + "pv_system_location_2": "auto", + "pv_system_max_power_output_1": 4000, + "pv_system_max_power_output_2": 4000, + "pv_system_module_type_1": "none", + "pv_system_module_type_2": "none", + "pv_system_num_units_served_1": 1, + "pv_system_num_units_served_2": 1, + "pv_system_system_losses_fraction_1": 0.14, + "pv_system_system_losses_fraction_2": 0.14, + "pv_system_tracking_1": "auto", + "pv_system_tracking_2": "auto", + "refrigerator_location": "living space", + "refrigerator_rated_annual_kwh": "650.0", + "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, + "roof_assembly_r": 2.3, + "roof_color": "medium", + "roof_material_type": "asphalt or fiberglass shingles", + "roof_radiant_barrier": false, + "roof_radiant_barrier_grade": "1", + "schedules_type": "default", + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", + "simulation_control_timestep": "60", + "site_type": "suburban", + "skylight_area_back": 0, + "skylight_area_front": 0, + "skylight_area_left": 0, + "skylight_area_right": 0, + "skylight_shgc": 0.45, + "skylight_ufactor": 0.33, + "slab_carpet_fraction": "1.0", + "slab_carpet_r": "2.5", + "slab_perimeter_depth": 0, + "slab_perimeter_insulation_r": 0, + "slab_thickness": "4.0", + "slab_under_insulation_r": 5, + "slab_under_width": 999, + "solar_thermal_collector_area": 40.0, + "solar_thermal_collector_azimuth": 180, + "solar_thermal_collector_loop_type": "liquid direct", + "solar_thermal_collector_rated_optical_efficiency": 0.5, + "solar_thermal_collector_rated_thermal_losses": 0.2799, + "solar_thermal_collector_tilt": "20", + "solar_thermal_collector_type": "evacuated tube", + "solar_thermal_solar_fraction": 0, + "solar_thermal_storage_volume": "auto", + "solar_thermal_system_type": "none", + "wall_assembly_r": 23, + "wall_color": "medium", + "wall_siding_type": "wood siding", + "wall_type": "WoodStud", + "water_fixtures_shower_low_flow": true, + "water_fixtures_sink_low_flow": false, + "water_fixtures_usage_multiplier": 1.0, + "water_heater_efficiency": 0.95, + "water_heater_efficiency_type": "EnergyFactor", + "water_heater_fuel_type": "electricity", + "water_heater_jacket_rvalue": 0, + "water_heater_location": "living space", + "water_heater_num_units_served": 1, + "water_heater_recovery_efficiency": "0.76", + "water_heater_setpoint_temperature": "125", + "water_heater_standby_loss": 0, + "water_heater_tank_volume": "40", + "water_heater_type": "storage water heater", + "weather_station_epw_filepath": "USA_CO_Denver.Intl.AP.725650_TMY3.epw", + "whole_house_fan_flow_rate": 4500, + "whole_house_fan_power": 300, + "whole_house_fan_present": false, + "window_area_back": 108.0, + "window_area_front": 108.0, + "window_area_left": 72.0, + "window_area_right": 72.0, + "window_aspect_ratio": 1.333, + "window_back_wwr": 0, + "window_fraction_operable": 0.67, + "window_front_wwr": 0, + "window_interior_shading_summer": 0.7, + "window_interior_shading_winter": 0.85, + "window_left_wwr": 0, + "window_right_wwr": 0, + "window_shgc": 0.45, + "window_ufactor": 0.33 + }, + "measure_dir_name": "BuildResidentialHPXML" + } + ] +} \ No newline at end of file diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-enclosure-atticroof-conditioned-eaves-hip.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-enclosure-atticroof-conditioned-eaves-hip.osw new file mode 100644 index 00000000..fcdd34c9 --- /dev/null +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-enclosure-atticroof-conditioned-eaves-hip.osw @@ -0,0 +1,337 @@ +{ + "measure_paths": [ + "../.." + ], + "steps": [ + { + "arguments": { + "air_leakage_house_pressure": 50, + "air_leakage_shielding_of_home": "auto", + "air_leakage_units": "ACH", + "air_leakage_value": 3, + "bathroom_fans_quantity": "0", + "ceiling_assembly_r": 39.3, + "ceiling_fan_cooling_setpoint_temp_offset": 0, + "ceiling_fan_efficiency": "auto", + "ceiling_fan_present": false, + "ceiling_fan_quantity": "auto", + "clothes_dryer_efficiency": "3.73", + "clothes_dryer_efficiency_type": "CombinedEnergyFactor", + "clothes_dryer_fuel_type": "electricity", + "clothes_dryer_location": "living space", + "clothes_dryer_usage_multiplier": 1.0, + "clothes_dryer_vented_flow_rate": "150.0", + "clothes_washer_capacity": "3.2", + "clothes_washer_efficiency": "1.21", + "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", + "clothes_washer_label_annual_gas_cost": "27.0", + "clothes_washer_label_electric_rate": "0.12", + "clothes_washer_label_gas_rate": "1.09", + "clothes_washer_label_usage": "6.0", + "clothes_washer_location": "living space", + "clothes_washer_rated_annual_kwh": "380.0", + "clothes_washer_usage_multiplier": 1.0, + "cooking_range_oven_fuel_type": "electricity", + "cooking_range_oven_is_convection": false, + "cooking_range_oven_is_induction": false, + "cooking_range_oven_location": "living space", + "cooking_range_oven_usage_multiplier": 1.0, + "cooling_system_cooling_capacity": "48000.0", + "cooling_system_cooling_compressor_type": "single stage", + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", + "cooling_system_cooling_sensible_heat_fraction": 0.73, + "cooling_system_fraction_cool_load_served": 1, + "cooling_system_is_ducted": false, + "cooling_system_type": "central air conditioner", + "dehumidifier_capacity": 40, + "dehumidifier_efficiency": 1.8, + "dehumidifier_efficiency_type": "EnergyFactor", + "dehumidifier_fraction_dehumidification_load_served": 1, + "dehumidifier_rh_setpoint": 0.5, + "dehumidifier_type": "none", + "dhw_distribution_pipe_r": "0.0", + "dhw_distribution_recirc_branch_piping_length": "50", + "dhw_distribution_recirc_control_type": "no control", + "dhw_distribution_recirc_piping_length": "50", + "dhw_distribution_recirc_pump_power": "50", + "dhw_distribution_standard_piping_length": "50", + "dhw_distribution_system_type": "Standard", + "dishwasher_efficiency": "307", + "dishwasher_efficiency_type": "RatedAnnualkWh", + "dishwasher_label_annual_gas_cost": "22.32", + "dishwasher_label_electric_rate": "0.12", + "dishwasher_label_gas_rate": "1.09", + "dishwasher_label_usage": "4.0", + "dishwasher_location": "living space", + "dishwasher_place_setting_capacity": "12", + "dishwasher_usage_multiplier": 1.0, + "door_area": 80.0, + "door_rvalue": 4.4, + "ducts_number_of_return_registers": "1", + "ducts_return_insulation_r": 0.0, + "ducts_return_leakage_units": "CFM25", + "ducts_return_leakage_value": 25.0, + "ducts_return_location": "under slab", + "ducts_return_surface_area": "50.0", + "ducts_supply_insulation_r": 4.0, + "ducts_supply_leakage_units": "CFM25", + "ducts_supply_leakage_value": 75.0, + "ducts_supply_location": "under slab", + "ducts_supply_surface_area": "150.0", + "dwhr_efficiency": 0.55, + "dwhr_equal_flow": true, + "dwhr_facilities_connected": "none", + "extra_refrigerator_location": "none", + "extra_refrigerator_rated_annual_kwh": "auto", + "extra_refrigerator_usage_multiplier": 1.0, + "floor_assembly_r": 0, + "foundation_wall_insulation_distance_to_bottom": "auto", + "foundation_wall_insulation_distance_to_top": 0.0, + "foundation_wall_insulation_r": 8.9, + "foundation_wall_thickness": "8.0", + "freezer_location": "none", + "freezer_rated_annual_kwh": "auto", + "freezer_usage_multiplier": 1.0, + "fuel_loads_fireplace_annual_therm": "auto", + "fuel_loads_fireplace_frac_latent": "auto", + "fuel_loads_fireplace_frac_sensible": "auto", + "fuel_loads_fireplace_fuel_type": "natural gas", + "fuel_loads_fireplace_present": false, + "fuel_loads_fireplace_usage_multiplier": 0.0, + "fuel_loads_grill_annual_therm": "auto", + "fuel_loads_grill_fuel_type": "natural gas", + "fuel_loads_grill_present": false, + "fuel_loads_grill_usage_multiplier": 0.0, + "fuel_loads_lighting_annual_therm": "auto", + "fuel_loads_lighting_fuel_type": "natural gas", + "fuel_loads_lighting_present": false, + "fuel_loads_lighting_usage_multiplier": 0.0, + "geometry_aspect_ratio": 1.5, + "geometry_attic_type": "ConditionedAttic", + "geometry_balcony_depth": 0.0, + "geometry_cfa": 1350.0, + "geometry_corridor_position": "Double-Loaded Interior", + "geometry_corridor_width": 10.0, + "geometry_eaves_depth": 2, + "geometry_foundation_height": 0.0, + "geometry_foundation_height_above_grade": 0.0, + "geometry_foundation_type": "SlabOnGrade", + "geometry_garage_depth": 20.0, + "geometry_garage_position": "Right", + "geometry_garage_protrusion": 0.0, + "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", + "geometry_inset_depth": 0.0, + "geometry_inset_position": "Right", + "geometry_inset_width": 0.0, + "geometry_num_bathrooms": "2", + "geometry_num_bedrooms": 3, + "geometry_num_floors_above_grade": 2, + "geometry_num_occupants": "3", + "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, + "geometry_roof_pitch": "6:12", + "geometry_roof_type": "hip", + "geometry_unit_type": "single-family detached", + "geometry_wall_height": 8.0, + "heat_pump_backup_fuel": "none", + "heat_pump_backup_heating_capacity": "34121.0", + "heat_pump_backup_heating_efficiency": 1, + "heat_pump_cooling_capacity": "48000.0", + "heat_pump_cooling_compressor_type": "single stage", + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", + "heat_pump_cooling_sensible_heat_fraction": 0.73, + "heat_pump_fraction_cool_load_served": 1, + "heat_pump_fraction_heat_load_served": 1, + "heat_pump_heating_capacity": "64000.0", + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", + "heat_pump_type": "none", + "heating_system_fraction_heat_load_served": 1, + "heating_system_fraction_heat_load_served_2": 0.25, + "heating_system_fuel": "natural gas", + "heating_system_fuel_2": "electricity", + "heating_system_heating_capacity": "64000.0", + "heating_system_heating_capacity_2": "auto", + "heating_system_heating_efficiency": 0.92, + "heating_system_heating_efficiency_2": 1.0, + "heating_system_type": "Furnace", + "heating_system_type_2": "none", + "holiday_lighting_daily_kwh": "auto", + "holiday_lighting_period_begin_day_of_month": "auto", + "holiday_lighting_period_begin_month": "auto", + "holiday_lighting_period_end_day_of_month": "auto", + "holiday_lighting_period_end_month": "auto", + "holiday_lighting_present": false, + "hot_tub_heater_annual_kwh": "auto", + "hot_tub_heater_annual_therm": "auto", + "hot_tub_heater_type": "electric resistance", + "hot_tub_heater_usage_multiplier": 1.0, + "hot_tub_present": false, + "hot_tub_pump_annual_kwh": "auto", + "hot_tub_pump_usage_multiplier": 1.0, + "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/extra-enclosure-atticroof-conditioned-eaves-hip.xml", + "kitchen_fans_quantity": "0", + "lighting_fraction_cfl_exterior": 0.4, + "lighting_fraction_cfl_garage": 0.4, + "lighting_fraction_cfl_interior": 0.4, + "lighting_fraction_led_exterior": 0.25, + "lighting_fraction_led_garage": 0.25, + "lighting_fraction_led_interior": 0.25, + "lighting_fraction_lfl_exterior": 0.1, + "lighting_fraction_lfl_garage": 0.1, + "lighting_fraction_lfl_interior": 0.1, + "lighting_usage_multiplier_exterior": 1.0, + "lighting_usage_multiplier_garage": 1.0, + "lighting_usage_multiplier_interior": 1.0, + "mech_vent_fan_power": 30, + "mech_vent_fan_power_2": 30, + "mech_vent_fan_type": "none", + "mech_vent_fan_type_2": "none", + "mech_vent_flow_rate": 110, + "mech_vent_flow_rate_2": 110, + "mech_vent_hours_in_operation": 24, + "mech_vent_hours_in_operation_2": 24, + "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", + "mech_vent_sensible_recovery_efficiency": 0.72, + "mech_vent_sensible_recovery_efficiency_2": 0.72, + "mech_vent_total_recovery_efficiency": 0.48, + "mech_vent_total_recovery_efficiency_2": 0.48, + "neighbor_back_distance": 0, + "neighbor_back_height": "auto", + "neighbor_front_distance": 0, + "neighbor_front_height": "auto", + "neighbor_left_distance": 0, + "neighbor_left_height": "auto", + "neighbor_right_distance": 0, + "neighbor_right_height": "auto", + "overhangs_back_depth": 0, + "overhangs_back_distance_to_top_of_window": 0, + "overhangs_front_depth": 0, + "overhangs_front_distance_to_top_of_window": 0, + "overhangs_left_depth": 0, + "overhangs_left_distance_to_top_of_window": 0, + "overhangs_right_depth": 0, + "overhangs_right_distance_to_top_of_window": 0, + "plug_loads_other_annual_kwh": "1228.5", + "plug_loads_other_frac_latent": "0.045", + "plug_loads_other_frac_sensible": "0.855", + "plug_loads_other_usage_multiplier": 1.0, + "plug_loads_television_annual_kwh": "620.0", + "plug_loads_television_usage_multiplier": 1.0, + "plug_loads_vehicle_annual_kwh": "auto", + "plug_loads_vehicle_present": false, + "plug_loads_vehicle_usage_multiplier": 0.0, + "plug_loads_well_pump_annual_kwh": "auto", + "plug_loads_well_pump_present": false, + "plug_loads_well_pump_usage_multiplier": 0.0, + "pool_heater_annual_kwh": "auto", + "pool_heater_annual_therm": "auto", + "pool_heater_type": "electric resistance", + "pool_heater_usage_multiplier": 1.0, + "pool_present": false, + "pool_pump_annual_kwh": "auto", + "pool_pump_usage_multiplier": 1.0, + "pv_system_array_azimuth_1": 180, + "pv_system_array_azimuth_2": 180, + "pv_system_array_tilt_1": "20", + "pv_system_array_tilt_2": "20", + "pv_system_inverter_efficiency_1": 0.96, + "pv_system_inverter_efficiency_2": 0.96, + "pv_system_location_1": "auto", + "pv_system_location_2": "auto", + "pv_system_max_power_output_1": 4000, + "pv_system_max_power_output_2": 4000, + "pv_system_module_type_1": "none", + "pv_system_module_type_2": "none", + "pv_system_num_units_served_1": 1, + "pv_system_num_units_served_2": 1, + "pv_system_system_losses_fraction_1": 0.14, + "pv_system_system_losses_fraction_2": 0.14, + "pv_system_tracking_1": "auto", + "pv_system_tracking_2": "auto", + "refrigerator_location": "living space", + "refrigerator_rated_annual_kwh": "650.0", + "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, + "roof_assembly_r": 2.3, + "roof_color": "medium", + "roof_material_type": "asphalt or fiberglass shingles", + "roof_radiant_barrier": false, + "roof_radiant_barrier_grade": "1", + "schedules_type": "default", + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", + "simulation_control_timestep": "60", + "site_type": "suburban", + "skylight_area_back": 0, + "skylight_area_front": 0, + "skylight_area_left": 0, + "skylight_area_right": 0, + "skylight_shgc": 0.45, + "skylight_ufactor": 0.33, + "slab_carpet_fraction": "1.0", + "slab_carpet_r": "2.5", + "slab_perimeter_depth": 0, + "slab_perimeter_insulation_r": 0, + "slab_thickness": "4.0", + "slab_under_insulation_r": 5, + "slab_under_width": 999, + "solar_thermal_collector_area": 40.0, + "solar_thermal_collector_azimuth": 180, + "solar_thermal_collector_loop_type": "liquid direct", + "solar_thermal_collector_rated_optical_efficiency": 0.5, + "solar_thermal_collector_rated_thermal_losses": 0.2799, + "solar_thermal_collector_tilt": "20", + "solar_thermal_collector_type": "evacuated tube", + "solar_thermal_solar_fraction": 0, + "solar_thermal_storage_volume": "auto", + "solar_thermal_system_type": "none", + "wall_assembly_r": 23, + "wall_color": "medium", + "wall_siding_type": "wood siding", + "wall_type": "WoodStud", + "water_fixtures_shower_low_flow": true, + "water_fixtures_sink_low_flow": false, + "water_fixtures_usage_multiplier": 1.0, + "water_heater_efficiency": 0.95, + "water_heater_efficiency_type": "EnergyFactor", + "water_heater_fuel_type": "electricity", + "water_heater_jacket_rvalue": 0, + "water_heater_location": "living space", + "water_heater_num_units_served": 1, + "water_heater_recovery_efficiency": "0.76", + "water_heater_setpoint_temperature": "125", + "water_heater_standby_loss": 0, + "water_heater_tank_volume": "40", + "water_heater_type": "storage water heater", + "weather_station_epw_filepath": "USA_CO_Denver.Intl.AP.725650_TMY3.epw", + "whole_house_fan_flow_rate": 4500, + "whole_house_fan_power": 300, + "whole_house_fan_present": false, + "window_area_back": 108.0, + "window_area_front": 108.0, + "window_area_left": 72.0, + "window_area_right": 72.0, + "window_aspect_ratio": 1.333, + "window_back_wwr": 0, + "window_fraction_operable": 0.67, + "window_front_wwr": 0, + "window_interior_shading_summer": 0.7, + "window_interior_shading_winter": 0.85, + "window_left_wwr": 0, + "window_right_wwr": 0, + "window_shgc": 0.45, + "window_ufactor": 0.33 + }, + "measure_dir_name": "BuildResidentialHPXML" + } + ] +} \ No newline at end of file diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-enclosure-garage-atticroof-conditioned.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-enclosure-garage-atticroof-conditioned.osw new file mode 100644 index 00000000..8c4eb50e --- /dev/null +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-enclosure-garage-atticroof-conditioned.osw @@ -0,0 +1,337 @@ +{ + "measure_paths": [ + "../.." + ], + "steps": [ + { + "arguments": { + "air_leakage_house_pressure": 50, + "air_leakage_shielding_of_home": "auto", + "air_leakage_units": "ACH", + "air_leakage_value": 3, + "bathroom_fans_quantity": "0", + "ceiling_assembly_r": 39.3, + "ceiling_fan_cooling_setpoint_temp_offset": 0, + "ceiling_fan_efficiency": "auto", + "ceiling_fan_present": false, + "ceiling_fan_quantity": "auto", + "clothes_dryer_efficiency": "3.73", + "clothes_dryer_efficiency_type": "CombinedEnergyFactor", + "clothes_dryer_fuel_type": "electricity", + "clothes_dryer_location": "garage", + "clothes_dryer_usage_multiplier": 1.0, + "clothes_dryer_vented_flow_rate": "150.0", + "clothes_washer_capacity": "3.2", + "clothes_washer_efficiency": "1.21", + "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", + "clothes_washer_label_annual_gas_cost": "27.0", + "clothes_washer_label_electric_rate": "0.12", + "clothes_washer_label_gas_rate": "1.09", + "clothes_washer_label_usage": "6.0", + "clothes_washer_location": "garage", + "clothes_washer_rated_annual_kwh": "380.0", + "clothes_washer_usage_multiplier": 1.0, + "cooking_range_oven_fuel_type": "electricity", + "cooking_range_oven_is_convection": false, + "cooking_range_oven_is_induction": false, + "cooking_range_oven_location": "garage", + "cooking_range_oven_usage_multiplier": 1.0, + "cooling_system_cooling_capacity": "48000.0", + "cooling_system_cooling_compressor_type": "single stage", + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", + "cooling_system_cooling_sensible_heat_fraction": 0.73, + "cooling_system_fraction_cool_load_served": 1, + "cooling_system_is_ducted": false, + "cooling_system_type": "central air conditioner", + "dehumidifier_capacity": 40, + "dehumidifier_efficiency": 1.8, + "dehumidifier_efficiency_type": "EnergyFactor", + "dehumidifier_fraction_dehumidification_load_served": 1, + "dehumidifier_rh_setpoint": 0.5, + "dehumidifier_type": "none", + "dhw_distribution_pipe_r": "0.0", + "dhw_distribution_recirc_branch_piping_length": "50", + "dhw_distribution_recirc_control_type": "no control", + "dhw_distribution_recirc_piping_length": "50", + "dhw_distribution_recirc_pump_power": "50", + "dhw_distribution_standard_piping_length": "50", + "dhw_distribution_system_type": "Standard", + "dishwasher_efficiency": "307", + "dishwasher_efficiency_type": "RatedAnnualkWh", + "dishwasher_label_annual_gas_cost": "22.32", + "dishwasher_label_electric_rate": "0.12", + "dishwasher_label_gas_rate": "1.09", + "dishwasher_label_usage": "4.0", + "dishwasher_location": "garage", + "dishwasher_place_setting_capacity": "12", + "dishwasher_usage_multiplier": 1.0, + "door_area": 80.0, + "door_rvalue": 4.4, + "ducts_number_of_return_registers": "2", + "ducts_return_insulation_r": 0.0, + "ducts_return_leakage_units": "CFM25", + "ducts_return_leakage_value": 25.0, + "ducts_return_location": "garage", + "ducts_return_surface_area": "50.0", + "ducts_supply_insulation_r": 4.0, + "ducts_supply_leakage_units": "CFM25", + "ducts_supply_leakage_value": 75.0, + "ducts_supply_location": "garage", + "ducts_supply_surface_area": "150.0", + "dwhr_efficiency": 0.55, + "dwhr_equal_flow": true, + "dwhr_facilities_connected": "none", + "extra_refrigerator_location": "none", + "extra_refrigerator_rated_annual_kwh": "auto", + "extra_refrigerator_usage_multiplier": 1.0, + "floor_assembly_r": 0, + "foundation_wall_insulation_distance_to_bottom": "auto", + "foundation_wall_insulation_distance_to_top": 0.0, + "foundation_wall_insulation_r": 8.9, + "foundation_wall_thickness": "8.0", + "freezer_location": "none", + "freezer_rated_annual_kwh": "auto", + "freezer_usage_multiplier": 1.0, + "fuel_loads_fireplace_annual_therm": "auto", + "fuel_loads_fireplace_frac_latent": "auto", + "fuel_loads_fireplace_frac_sensible": "auto", + "fuel_loads_fireplace_fuel_type": "natural gas", + "fuel_loads_fireplace_present": false, + "fuel_loads_fireplace_usage_multiplier": 0.0, + "fuel_loads_grill_annual_therm": "auto", + "fuel_loads_grill_fuel_type": "natural gas", + "fuel_loads_grill_present": false, + "fuel_loads_grill_usage_multiplier": 0.0, + "fuel_loads_lighting_annual_therm": "auto", + "fuel_loads_lighting_fuel_type": "natural gas", + "fuel_loads_lighting_present": false, + "fuel_loads_lighting_usage_multiplier": 0.0, + "geometry_aspect_ratio": 1.5, + "geometry_attic_type": "ConditionedAttic", + "geometry_balcony_depth": 0.0, + "geometry_cfa": 4500.0, + "geometry_corridor_position": "Double-Loaded Interior", + "geometry_corridor_width": 10.0, + "geometry_eaves_depth": 0, + "geometry_foundation_height": 8.0, + "geometry_foundation_height_above_grade": 1.0, + "geometry_foundation_type": "ConditionedBasement", + "geometry_garage_depth": 20.0, + "geometry_garage_position": "Right", + "geometry_garage_protrusion": 1.0, + "geometry_garage_width": 30.0, + "geometry_has_flue_or_chimney": "auto", + "geometry_inset_depth": 0.0, + "geometry_inset_position": "Right", + "geometry_inset_width": 0.0, + "geometry_num_bathrooms": "2", + "geometry_num_bedrooms": 3, + "geometry_num_floors_above_grade": 2, + "geometry_num_occupants": "3", + "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, + "geometry_roof_pitch": "6:12", + "geometry_roof_type": "gable", + "geometry_unit_type": "single-family detached", + "geometry_wall_height": 8.0, + "heat_pump_backup_fuel": "none", + "heat_pump_backup_heating_capacity": "34121.0", + "heat_pump_backup_heating_efficiency": 1, + "heat_pump_cooling_capacity": "48000.0", + "heat_pump_cooling_compressor_type": "single stage", + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", + "heat_pump_cooling_sensible_heat_fraction": 0.73, + "heat_pump_fraction_cool_load_served": 1, + "heat_pump_fraction_heat_load_served": 1, + "heat_pump_heating_capacity": "64000.0", + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", + "heat_pump_type": "none", + "heating_system_fraction_heat_load_served": 1, + "heating_system_fraction_heat_load_served_2": 0.25, + "heating_system_fuel": "natural gas", + "heating_system_fuel_2": "electricity", + "heating_system_heating_capacity": "64000.0", + "heating_system_heating_capacity_2": "auto", + "heating_system_heating_efficiency": 0.92, + "heating_system_heating_efficiency_2": 1.0, + "heating_system_type": "Furnace", + "heating_system_type_2": "none", + "holiday_lighting_daily_kwh": "auto", + "holiday_lighting_period_begin_day_of_month": "auto", + "holiday_lighting_period_begin_month": "auto", + "holiday_lighting_period_end_day_of_month": "auto", + "holiday_lighting_period_end_month": "auto", + "holiday_lighting_present": false, + "hot_tub_heater_annual_kwh": "auto", + "hot_tub_heater_annual_therm": "auto", + "hot_tub_heater_type": "electric resistance", + "hot_tub_heater_usage_multiplier": 1.0, + "hot_tub_present": false, + "hot_tub_pump_annual_kwh": "auto", + "hot_tub_pump_usage_multiplier": 1.0, + "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/extra-enclosure-garage-atticroof-conditioned.xml", + "kitchen_fans_quantity": "0", + "lighting_fraction_cfl_exterior": 0.4, + "lighting_fraction_cfl_garage": 0.4, + "lighting_fraction_cfl_interior": 0.4, + "lighting_fraction_led_exterior": 0.25, + "lighting_fraction_led_garage": 0.25, + "lighting_fraction_led_interior": 0.25, + "lighting_fraction_lfl_exterior": 0.1, + "lighting_fraction_lfl_garage": 0.1, + "lighting_fraction_lfl_interior": 0.1, + "lighting_usage_multiplier_exterior": 1.0, + "lighting_usage_multiplier_garage": 1.0, + "lighting_usage_multiplier_interior": 1.0, + "mech_vent_fan_power": 30, + "mech_vent_fan_power_2": 30, + "mech_vent_fan_type": "none", + "mech_vent_fan_type_2": "none", + "mech_vent_flow_rate": 110, + "mech_vent_flow_rate_2": 110, + "mech_vent_hours_in_operation": 24, + "mech_vent_hours_in_operation_2": 24, + "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", + "mech_vent_sensible_recovery_efficiency": 0.72, + "mech_vent_sensible_recovery_efficiency_2": 0.72, + "mech_vent_total_recovery_efficiency": 0.48, + "mech_vent_total_recovery_efficiency_2": 0.48, + "neighbor_back_distance": 0, + "neighbor_back_height": "auto", + "neighbor_front_distance": 0, + "neighbor_front_height": "auto", + "neighbor_left_distance": 0, + "neighbor_left_height": "auto", + "neighbor_right_distance": 0, + "neighbor_right_height": "auto", + "overhangs_back_depth": 0, + "overhangs_back_distance_to_top_of_window": 0, + "overhangs_front_depth": 0, + "overhangs_front_distance_to_top_of_window": 0, + "overhangs_left_depth": 0, + "overhangs_left_distance_to_top_of_window": 0, + "overhangs_right_depth": 0, + "overhangs_right_distance_to_top_of_window": 0, + "plug_loads_other_annual_kwh": "2457.0", + "plug_loads_other_frac_latent": "0.045", + "plug_loads_other_frac_sensible": "0.855", + "plug_loads_other_usage_multiplier": 1.0, + "plug_loads_television_annual_kwh": "620.0", + "plug_loads_television_usage_multiplier": 1.0, + "plug_loads_vehicle_annual_kwh": "auto", + "plug_loads_vehicle_present": false, + "plug_loads_vehicle_usage_multiplier": 0.0, + "plug_loads_well_pump_annual_kwh": "auto", + "plug_loads_well_pump_present": false, + "plug_loads_well_pump_usage_multiplier": 0.0, + "pool_heater_annual_kwh": "auto", + "pool_heater_annual_therm": "auto", + "pool_heater_type": "electric resistance", + "pool_heater_usage_multiplier": 1.0, + "pool_present": false, + "pool_pump_annual_kwh": "auto", + "pool_pump_usage_multiplier": 1.0, + "pv_system_array_azimuth_1": 180, + "pv_system_array_azimuth_2": 180, + "pv_system_array_tilt_1": "20", + "pv_system_array_tilt_2": "20", + "pv_system_inverter_efficiency_1": 0.96, + "pv_system_inverter_efficiency_2": 0.96, + "pv_system_location_1": "auto", + "pv_system_location_2": "auto", + "pv_system_max_power_output_1": 4000, + "pv_system_max_power_output_2": 4000, + "pv_system_module_type_1": "none", + "pv_system_module_type_2": "none", + "pv_system_num_units_served_1": 1, + "pv_system_num_units_served_2": 1, + "pv_system_system_losses_fraction_1": 0.14, + "pv_system_system_losses_fraction_2": 0.14, + "pv_system_tracking_1": "auto", + "pv_system_tracking_2": "auto", + "refrigerator_location": "garage", + "refrigerator_rated_annual_kwh": "650.0", + "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, + "roof_assembly_r": 2.3, + "roof_color": "medium", + "roof_material_type": "asphalt or fiberglass shingles", + "roof_radiant_barrier": false, + "roof_radiant_barrier_grade": "1", + "schedules_type": "default", + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", + "simulation_control_timestep": "60", + "site_type": "suburban", + "skylight_area_back": 0, + "skylight_area_front": 0, + "skylight_area_left": 0, + "skylight_area_right": 0, + "skylight_shgc": 0.45, + "skylight_ufactor": 0.33, + "slab_carpet_fraction": "0.0", + "slab_carpet_r": "0.0", + "slab_perimeter_depth": 0, + "slab_perimeter_insulation_r": 0, + "slab_thickness": "4.0", + "slab_under_insulation_r": 0, + "slab_under_width": 0, + "solar_thermal_collector_area": 40.0, + "solar_thermal_collector_azimuth": 180, + "solar_thermal_collector_loop_type": "liquid direct", + "solar_thermal_collector_rated_optical_efficiency": 0.5, + "solar_thermal_collector_rated_thermal_losses": 0.2799, + "solar_thermal_collector_tilt": "20", + "solar_thermal_collector_type": "evacuated tube", + "solar_thermal_solar_fraction": 0, + "solar_thermal_storage_volume": "auto", + "solar_thermal_system_type": "none", + "wall_assembly_r": 23, + "wall_color": "medium", + "wall_siding_type": "wood siding", + "wall_type": "WoodStud", + "water_fixtures_shower_low_flow": true, + "water_fixtures_sink_low_flow": false, + "water_fixtures_usage_multiplier": 1.0, + "water_heater_efficiency": 0.95, + "water_heater_efficiency_type": "EnergyFactor", + "water_heater_fuel_type": "electricity", + "water_heater_jacket_rvalue": 0, + "water_heater_location": "garage", + "water_heater_num_units_served": 1, + "water_heater_recovery_efficiency": "0.76", + "water_heater_setpoint_temperature": "125", + "water_heater_standby_loss": 0, + "water_heater_tank_volume": "40", + "water_heater_type": "storage water heater", + "weather_station_epw_filepath": "USA_CO_Denver.Intl.AP.725650_TMY3.epw", + "whole_house_fan_flow_rate": 4500, + "whole_house_fan_power": 300, + "whole_house_fan_present": false, + "window_area_back": 108.0, + "window_area_front": 12.0, + "window_area_left": 72.0, + "window_area_right": 72.0, + "window_aspect_ratio": 1.333, + "window_back_wwr": 0, + "window_fraction_operable": 0.67, + "window_front_wwr": 0, + "window_interior_shading_summer": 0.7, + "window_interior_shading_winter": 0.85, + "window_left_wwr": 0, + "window_right_wwr": 0, + "window_shgc": 0.45, + "window_ufactor": 0.33 + }, + "measure_dir_name": "BuildResidentialHPXML" + } + ] +} \ No newline at end of file diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-enclosure-garage-partially-protruded.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-enclosure-garage-partially-protruded.osw index 736c4bd2..0622025d 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-enclosure-garage-partially-protruded.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-enclosure-garage-partially-protruded.osw @@ -6,58 +6,50 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", "cooling_system_cooling_compressor_type": "single stage", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.73, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "central air conditioner", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -65,8 +57,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -74,11 +65,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "2", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 25.0, @@ -92,17 +82,15 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -133,6 +121,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.5, "geometry_garage_width": 12, + "geometry_has_flue_or_chimney": "auto", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, @@ -141,6 +130,7 @@ "geometry_num_floors_above_grade": 1, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family detached", @@ -150,22 +140,20 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "64000.0", - "heat_pump_heating_capacity_17F": "auto", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "none", "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "natural gas", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.92, @@ -186,7 +174,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/extra-enclosure-garage-partially-protruded.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -208,14 +196,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -236,18 +222,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -274,21 +256,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -315,10 +295,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "none", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -326,8 +304,6 @@ "water_heater_efficiency": 0.95, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "electricity", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "18767", "water_heater_jacket_rvalue": 0, "water_heater_location": "living space", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-enclosure-windows-shading.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-enclosure-windows-shading.osw new file mode 100644 index 00000000..e5419c50 --- /dev/null +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-enclosure-windows-shading.osw @@ -0,0 +1,339 @@ +{ + "measure_paths": [ + "../.." + ], + "steps": [ + { + "arguments": { + "air_leakage_house_pressure": 50, + "air_leakage_shielding_of_home": "auto", + "air_leakage_units": "ACH", + "air_leakage_value": 3, + "bathroom_fans_quantity": "0", + "ceiling_assembly_r": 39.3, + "ceiling_fan_cooling_setpoint_temp_offset": 0, + "ceiling_fan_efficiency": "auto", + "ceiling_fan_present": false, + "ceiling_fan_quantity": "auto", + "clothes_dryer_efficiency": "3.73", + "clothes_dryer_efficiency_type": "CombinedEnergyFactor", + "clothes_dryer_fuel_type": "electricity", + "clothes_dryer_location": "living space", + "clothes_dryer_usage_multiplier": 1.0, + "clothes_dryer_vented_flow_rate": "150.0", + "clothes_washer_capacity": "3.2", + "clothes_washer_efficiency": "1.21", + "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", + "clothes_washer_label_annual_gas_cost": "27.0", + "clothes_washer_label_electric_rate": "0.12", + "clothes_washer_label_gas_rate": "1.09", + "clothes_washer_label_usage": "6.0", + "clothes_washer_location": "living space", + "clothes_washer_rated_annual_kwh": "380.0", + "clothes_washer_usage_multiplier": 1.0, + "cooking_range_oven_fuel_type": "electricity", + "cooking_range_oven_is_convection": false, + "cooking_range_oven_is_induction": false, + "cooking_range_oven_location": "living space", + "cooking_range_oven_usage_multiplier": 1.0, + "cooling_system_cooling_capacity": "48000.0", + "cooling_system_cooling_compressor_type": "single stage", + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", + "cooling_system_cooling_sensible_heat_fraction": 0.73, + "cooling_system_fraction_cool_load_served": 1, + "cooling_system_is_ducted": false, + "cooling_system_type": "central air conditioner", + "dehumidifier_capacity": 40, + "dehumidifier_efficiency": 1.8, + "dehumidifier_efficiency_type": "EnergyFactor", + "dehumidifier_fraction_dehumidification_load_served": 1, + "dehumidifier_rh_setpoint": 0.5, + "dehumidifier_type": "none", + "dhw_distribution_pipe_r": "0.0", + "dhw_distribution_recirc_branch_piping_length": "50", + "dhw_distribution_recirc_control_type": "no control", + "dhw_distribution_recirc_piping_length": "50", + "dhw_distribution_recirc_pump_power": "50", + "dhw_distribution_standard_piping_length": "50", + "dhw_distribution_system_type": "Standard", + "dishwasher_efficiency": "307", + "dishwasher_efficiency_type": "RatedAnnualkWh", + "dishwasher_label_annual_gas_cost": "22.32", + "dishwasher_label_electric_rate": "0.12", + "dishwasher_label_gas_rate": "1.09", + "dishwasher_label_usage": "4.0", + "dishwasher_location": "living space", + "dishwasher_place_setting_capacity": "12", + "dishwasher_usage_multiplier": 1.0, + "door_area": 80.0, + "door_rvalue": 4.4, + "ducts_number_of_return_registers": "2", + "ducts_return_insulation_r": 0.0, + "ducts_return_leakage_units": "CFM25", + "ducts_return_leakage_value": 25.0, + "ducts_return_location": "attic - unvented", + "ducts_return_surface_area": "50.0", + "ducts_supply_insulation_r": 4.0, + "ducts_supply_leakage_units": "CFM25", + "ducts_supply_leakage_value": 75.0, + "ducts_supply_location": "attic - unvented", + "ducts_supply_surface_area": "150.0", + "dwhr_efficiency": 0.55, + "dwhr_equal_flow": true, + "dwhr_facilities_connected": "none", + "extra_refrigerator_location": "none", + "extra_refrigerator_rated_annual_kwh": "auto", + "extra_refrigerator_usage_multiplier": 1.0, + "floor_assembly_r": 0, + "foundation_wall_insulation_distance_to_bottom": "auto", + "foundation_wall_insulation_distance_to_top": 0.0, + "foundation_wall_insulation_r": 8.9, + "foundation_wall_thickness": "8.0", + "freezer_location": "none", + "freezer_rated_annual_kwh": "auto", + "freezer_usage_multiplier": 1.0, + "fuel_loads_fireplace_annual_therm": "auto", + "fuel_loads_fireplace_frac_latent": "auto", + "fuel_loads_fireplace_frac_sensible": "auto", + "fuel_loads_fireplace_fuel_type": "natural gas", + "fuel_loads_fireplace_present": false, + "fuel_loads_fireplace_usage_multiplier": 0.0, + "fuel_loads_grill_annual_therm": "auto", + "fuel_loads_grill_fuel_type": "natural gas", + "fuel_loads_grill_present": false, + "fuel_loads_grill_usage_multiplier": 0.0, + "fuel_loads_lighting_annual_therm": "auto", + "fuel_loads_lighting_fuel_type": "natural gas", + "fuel_loads_lighting_present": false, + "fuel_loads_lighting_usage_multiplier": 0.0, + "geometry_aspect_ratio": 1.5, + "geometry_attic_type": "UnventedAttic", + "geometry_balcony_depth": 0.0, + "geometry_cfa": 2700.0, + "geometry_corridor_position": "Double-Loaded Interior", + "geometry_corridor_width": 10.0, + "geometry_eaves_depth": 0, + "geometry_foundation_height": 8.0, + "geometry_foundation_height_above_grade": 1.0, + "geometry_foundation_type": "ConditionedBasement", + "geometry_garage_depth": 20.0, + "geometry_garage_position": "Right", + "geometry_garage_protrusion": 0.0, + "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", + "geometry_inset_depth": 0.0, + "geometry_inset_position": "Right", + "geometry_inset_width": 0.0, + "geometry_num_bathrooms": "2", + "geometry_num_bedrooms": 3, + "geometry_num_floors_above_grade": 1, + "geometry_num_occupants": "3", + "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, + "geometry_roof_pitch": "6:12", + "geometry_roof_type": "gable", + "geometry_unit_type": "single-family detached", + "geometry_wall_height": 8.0, + "heat_pump_backup_fuel": "none", + "heat_pump_backup_heating_capacity": "34121.0", + "heat_pump_backup_heating_efficiency": 1, + "heat_pump_cooling_capacity": "48000.0", + "heat_pump_cooling_compressor_type": "single stage", + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", + "heat_pump_cooling_sensible_heat_fraction": 0.73, + "heat_pump_fraction_cool_load_served": 1, + "heat_pump_fraction_heat_load_served": 1, + "heat_pump_heating_capacity": "64000.0", + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", + "heat_pump_type": "none", + "heating_system_fraction_heat_load_served": 1, + "heating_system_fraction_heat_load_served_2": 0.25, + "heating_system_fuel": "natural gas", + "heating_system_fuel_2": "electricity", + "heating_system_heating_capacity": "64000.0", + "heating_system_heating_capacity_2": "auto", + "heating_system_heating_efficiency": 0.92, + "heating_system_heating_efficiency_2": 1.0, + "heating_system_type": "Furnace", + "heating_system_type_2": "none", + "holiday_lighting_daily_kwh": "auto", + "holiday_lighting_period_begin_day_of_month": "auto", + "holiday_lighting_period_begin_month": "auto", + "holiday_lighting_period_end_day_of_month": "auto", + "holiday_lighting_period_end_month": "auto", + "holiday_lighting_present": false, + "hot_tub_heater_annual_kwh": "auto", + "hot_tub_heater_annual_therm": "auto", + "hot_tub_heater_type": "electric resistance", + "hot_tub_heater_usage_multiplier": 1.0, + "hot_tub_present": false, + "hot_tub_pump_annual_kwh": "auto", + "hot_tub_pump_usage_multiplier": 1.0, + "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/extra-enclosure-windows-shading.xml", + "kitchen_fans_quantity": "0", + "lighting_fraction_cfl_exterior": 0.4, + "lighting_fraction_cfl_garage": 0.4, + "lighting_fraction_cfl_interior": 0.4, + "lighting_fraction_led_exterior": 0.25, + "lighting_fraction_led_garage": 0.25, + "lighting_fraction_led_interior": 0.25, + "lighting_fraction_lfl_exterior": 0.1, + "lighting_fraction_lfl_garage": 0.1, + "lighting_fraction_lfl_interior": 0.1, + "lighting_usage_multiplier_exterior": 1.0, + "lighting_usage_multiplier_garage": 1.0, + "lighting_usage_multiplier_interior": 1.0, + "mech_vent_fan_power": 30, + "mech_vent_fan_power_2": 30, + "mech_vent_fan_type": "none", + "mech_vent_fan_type_2": "none", + "mech_vent_flow_rate": 110, + "mech_vent_flow_rate_2": 110, + "mech_vent_hours_in_operation": 24, + "mech_vent_hours_in_operation_2": 24, + "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", + "mech_vent_sensible_recovery_efficiency": 0.72, + "mech_vent_sensible_recovery_efficiency_2": 0.72, + "mech_vent_total_recovery_efficiency": 0.48, + "mech_vent_total_recovery_efficiency_2": 0.48, + "neighbor_back_distance": 0, + "neighbor_back_height": "auto", + "neighbor_front_distance": 0, + "neighbor_front_height": "auto", + "neighbor_left_distance": 0, + "neighbor_left_height": "auto", + "neighbor_right_distance": 0, + "neighbor_right_height": "auto", + "overhangs_back_depth": 0, + "overhangs_back_distance_to_top_of_window": 0, + "overhangs_front_depth": 0, + "overhangs_front_distance_to_top_of_window": 0, + "overhangs_left_depth": 0, + "overhangs_left_distance_to_top_of_window": 0, + "overhangs_right_depth": 0, + "overhangs_right_distance_to_top_of_window": 0, + "plug_loads_other_annual_kwh": "2457.0", + "plug_loads_other_frac_latent": "0.045", + "plug_loads_other_frac_sensible": "0.855", + "plug_loads_other_usage_multiplier": 1.0, + "plug_loads_television_annual_kwh": "620.0", + "plug_loads_television_usage_multiplier": 1.0, + "plug_loads_vehicle_annual_kwh": "auto", + "plug_loads_vehicle_present": false, + "plug_loads_vehicle_usage_multiplier": 0.0, + "plug_loads_well_pump_annual_kwh": "auto", + "plug_loads_well_pump_present": false, + "plug_loads_well_pump_usage_multiplier": 0.0, + "pool_heater_annual_kwh": "auto", + "pool_heater_annual_therm": "auto", + "pool_heater_type": "electric resistance", + "pool_heater_usage_multiplier": 1.0, + "pool_present": false, + "pool_pump_annual_kwh": "auto", + "pool_pump_usage_multiplier": 1.0, + "pv_system_array_azimuth_1": 180, + "pv_system_array_azimuth_2": 180, + "pv_system_array_tilt_1": "20", + "pv_system_array_tilt_2": "20", + "pv_system_inverter_efficiency_1": 0.96, + "pv_system_inverter_efficiency_2": 0.96, + "pv_system_location_1": "auto", + "pv_system_location_2": "auto", + "pv_system_max_power_output_1": 4000, + "pv_system_max_power_output_2": 4000, + "pv_system_module_type_1": "none", + "pv_system_module_type_2": "none", + "pv_system_num_units_served_1": 1, + "pv_system_num_units_served_2": 1, + "pv_system_system_losses_fraction_1": 0.14, + "pv_system_system_losses_fraction_2": 0.14, + "pv_system_tracking_1": "auto", + "pv_system_tracking_2": "auto", + "refrigerator_location": "living space", + "refrigerator_rated_annual_kwh": "650.0", + "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, + "roof_assembly_r": 2.3, + "roof_color": "medium", + "roof_material_type": "asphalt or fiberglass shingles", + "roof_radiant_barrier": false, + "roof_radiant_barrier_grade": "1", + "schedules_type": "default", + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", + "simulation_control_timestep": "60", + "site_type": "suburban", + "skylight_area_back": 0, + "skylight_area_front": 0, + "skylight_area_left": 0, + "skylight_area_right": 0, + "skylight_shgc": 0.45, + "skylight_ufactor": 0.33, + "slab_carpet_fraction": "0.0", + "slab_carpet_r": "0.0", + "slab_perimeter_depth": 0, + "slab_perimeter_insulation_r": 0, + "slab_thickness": "4.0", + "slab_under_insulation_r": 0, + "slab_under_width": 0, + "solar_thermal_collector_area": 40.0, + "solar_thermal_collector_azimuth": 180, + "solar_thermal_collector_loop_type": "liquid direct", + "solar_thermal_collector_rated_optical_efficiency": 0.5, + "solar_thermal_collector_rated_thermal_losses": 0.2799, + "solar_thermal_collector_tilt": "20", + "solar_thermal_collector_type": "evacuated tube", + "solar_thermal_solar_fraction": 0, + "solar_thermal_storage_volume": "auto", + "solar_thermal_system_type": "none", + "wall_assembly_r": 23, + "wall_color": "medium", + "wall_siding_type": "wood siding", + "wall_type": "WoodStud", + "water_fixtures_shower_low_flow": true, + "water_fixtures_sink_low_flow": false, + "water_fixtures_usage_multiplier": 1.0, + "water_heater_efficiency": 0.95, + "water_heater_efficiency_type": "EnergyFactor", + "water_heater_fuel_type": "electricity", + "water_heater_jacket_rvalue": 0, + "water_heater_location": "living space", + "water_heater_num_units_served": 1, + "water_heater_recovery_efficiency": "0.76", + "water_heater_setpoint_temperature": "125", + "water_heater_standby_loss": 0, + "water_heater_tank_volume": "40", + "water_heater_type": "storage water heater", + "weather_station_epw_filepath": "USA_CO_Denver.Intl.AP.725650_TMY3.epw", + "whole_house_fan_flow_rate": 4500, + "whole_house_fan_power": 300, + "whole_house_fan_present": false, + "window_area_back": 108.0, + "window_area_front": 108.0, + "window_area_left": 72.0, + "window_area_right": 72.0, + "window_aspect_ratio": 1.333, + "window_back_wwr": 0, + "window_exterior_shading_summer": 0.1, + "window_exterior_shading_winter": 0.9, + "window_fraction_operable": 0.67, + "window_front_wwr": 0, + "window_interior_shading_summer": 0.01, + "window_interior_shading_winter": 0.99, + "window_left_wwr": 0, + "window_right_wwr": 0, + "window_shgc": 0.45, + "window_ufactor": 0.33 + }, + "measure_dir_name": "BuildResidentialHPXML" + } + ] +} \ No newline at end of file diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-hvac-programmable-thermostat.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-hvac-programmable-thermostat.osw deleted file mode 100644 index 6912a19d..00000000 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-hvac-programmable-thermostat.osw +++ /dev/null @@ -1,369 +0,0 @@ -{ - "measure_paths": [ - "../.." - ], - "steps": [ - { - "arguments": { - "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", - "air_leakage_units": "ACH", - "air_leakage_value": 3, - "bathroom_fans_present": false, - "ceiling_assembly_r": 39.3, - "ceiling_fan_cooling_setpoint_temp_offset": 0, - "ceiling_fan_efficiency": "auto", - "ceiling_fan_present": false, - "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, - "clothes_dryer_efficiency_type": "CombinedEnergyFactor", - "clothes_dryer_fuel_type": "electricity", - "clothes_dryer_location": "living space", - "clothes_dryer_present": true, - "clothes_dryer_usage_multiplier": 1.0, - "clothes_dryer_vented_flow_rate": "150.0", - "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", - "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", - "clothes_washer_label_annual_gas_cost": "27.0", - "clothes_washer_label_electric_rate": "0.12", - "clothes_washer_label_gas_rate": "1.09", - "clothes_washer_label_usage": "6.0", - "clothes_washer_location": "living space", - "clothes_washer_present": true, - "clothes_washer_rated_annual_kwh": "380.0", - "clothes_washer_usage_multiplier": 1.0, - "cooking_range_oven_fuel_type": "electricity", - "cooking_range_oven_is_convection": false, - "cooking_range_oven_is_induction": false, - "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, - "cooking_range_oven_usage_multiplier": 1.0, - "cooling_system_cooling_capacity": "48000.0", - "cooling_system_cooling_compressor_type": "single stage", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, - "cooling_system_cooling_sensible_heat_fraction": 0.73, - "cooling_system_fraction_cool_load_served": 1, - "cooling_system_is_ducted": false, - "cooling_system_type": "central air conditioner", - "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, - "dehumidifier_efficiency_type": "EnergyFactor", - "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, - "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", - "dhw_distribution_pipe_r": "0.0", - "dhw_distribution_recirc_branch_piping_length": "50", - "dhw_distribution_recirc_control_type": "no control", - "dhw_distribution_recirc_piping_length": "50", - "dhw_distribution_recirc_pump_power": "50", - "dhw_distribution_standard_piping_length": "50", - "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", - "dishwasher_efficiency_type": "RatedAnnualkWh", - "dishwasher_label_annual_gas_cost": "22.32", - "dishwasher_label_electric_rate": "0.12", - "dishwasher_label_gas_rate": "1.09", - "dishwasher_label_usage": "4.0", - "dishwasher_location": "living space", - "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, - "dishwasher_usage_multiplier": 1.0, - "door_area": 80.0, - "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", - "ducts_return_insulation_r": 0.0, - "ducts_return_leakage_units": "CFM25", - "ducts_return_leakage_value": 25.0, - "ducts_return_location": "attic - unvented", - "ducts_return_surface_area": "50.0", - "ducts_supply_insulation_r": 4.0, - "ducts_supply_leakage_units": "CFM25", - "ducts_supply_leakage_value": 75.0, - "ducts_supply_location": "attic - unvented", - "ducts_supply_surface_area": "150.0", - "dwhr_efficiency": 0.55, - "dwhr_equal_flow": true, - "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, - "extra_refrigerator_rated_annual_kwh": "auto", - "extra_refrigerator_usage_multiplier": 1.0, - "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, - "foundation_wall_insulation_distance_to_top": 0.0, - "foundation_wall_insulation_r": 8.9, - "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, - "freezer_rated_annual_kwh": "auto", - "freezer_usage_multiplier": 1.0, - "fuel_loads_fireplace_annual_therm": "auto", - "fuel_loads_fireplace_frac_latent": "auto", - "fuel_loads_fireplace_frac_sensible": "auto", - "fuel_loads_fireplace_fuel_type": "natural gas", - "fuel_loads_fireplace_present": false, - "fuel_loads_fireplace_usage_multiplier": 0.0, - "fuel_loads_grill_annual_therm": "auto", - "fuel_loads_grill_fuel_type": "natural gas", - "fuel_loads_grill_present": false, - "fuel_loads_grill_usage_multiplier": 0.0, - "fuel_loads_lighting_annual_therm": "auto", - "fuel_loads_lighting_fuel_type": "natural gas", - "fuel_loads_lighting_present": false, - "fuel_loads_lighting_usage_multiplier": 0.0, - "geometry_aspect_ratio": 1.5, - "geometry_attic_type": "UnventedAttic", - "geometry_balcony_depth": 0.0, - "geometry_cfa": 2700.0, - "geometry_corridor_position": "Double-Loaded Interior", - "geometry_corridor_width": 10.0, - "geometry_eaves_depth": 0, - "geometry_foundation_height": 8.0, - "geometry_foundation_height_above_grade": 1.0, - "geometry_foundation_type": "ConditionedBasement", - "geometry_garage_depth": 20.0, - "geometry_garage_position": "Right", - "geometry_garage_protrusion": 0.0, - "geometry_garage_width": 0.0, - "geometry_inset_depth": 0.0, - "geometry_inset_position": "Right", - "geometry_inset_width": 0.0, - "geometry_num_bathrooms": "2", - "geometry_num_bedrooms": 3, - "geometry_num_floors_above_grade": 1, - "geometry_num_occupants": "3", - "geometry_orientation": 180.0, - "geometry_roof_pitch": "6:12", - "geometry_roof_type": "gable", - "geometry_unit_type": "single-family detached", - "geometry_wall_height": 8.0, - "heat_pump_backup_fuel": "none", - "heat_pump_backup_heating_capacity": "34121.0", - "heat_pump_backup_heating_efficiency": 1, - "heat_pump_cooling_capacity": "48000.0", - "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, - "heat_pump_cooling_sensible_heat_fraction": 0.73, - "heat_pump_fraction_cool_load_served": 1, - "heat_pump_fraction_heat_load_served": 1, - "heat_pump_heating_capacity": "64000.0", - "heat_pump_heating_capacity_17F": "auto", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, - "heat_pump_type": "none", - "heating_system_fraction_heat_load_served": 1, - "heating_system_fraction_heat_load_served_2": 0.25, - "heating_system_fuel": "natural gas", - "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, - "heating_system_heating_capacity": "64000.0", - "heating_system_heating_capacity_2": "auto", - "heating_system_heating_efficiency": 0.92, - "heating_system_heating_efficiency_2": 1.0, - "heating_system_type": "Furnace", - "heating_system_type_2": "none", - "holiday_lighting_daily_kwh": "auto", - "holiday_lighting_period_begin_day_of_month": "auto", - "holiday_lighting_period_begin_month": "auto", - "holiday_lighting_period_end_day_of_month": "auto", - "holiday_lighting_period_end_month": "auto", - "holiday_lighting_present": false, - "hot_tub_heater_annual_kwh": "auto", - "hot_tub_heater_annual_therm": "auto", - "hot_tub_heater_type": "electric resistance", - "hot_tub_heater_usage_multiplier": 1.0, - "hot_tub_present": false, - "hot_tub_pump_annual_kwh": "auto", - "hot_tub_pump_usage_multiplier": 1.0, - "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/extra-hvac-programmable-thermostat.xml", - "kitchen_fans_present": false, - "lighting_fraction_cfl_exterior": 0.4, - "lighting_fraction_cfl_garage": 0.4, - "lighting_fraction_cfl_interior": 0.4, - "lighting_fraction_led_exterior": 0.25, - "lighting_fraction_led_garage": 0.25, - "lighting_fraction_led_interior": 0.25, - "lighting_fraction_lfl_exterior": 0.1, - "lighting_fraction_lfl_garage": 0.1, - "lighting_fraction_lfl_interior": 0.1, - "lighting_usage_multiplier_exterior": 1.0, - "lighting_usage_multiplier_garage": 1.0, - "lighting_usage_multiplier_interior": 1.0, - "mech_vent_fan_power": 30, - "mech_vent_fan_power_2": 30, - "mech_vent_fan_type": "none", - "mech_vent_fan_type_2": "none", - "mech_vent_flow_rate": 110, - "mech_vent_flow_rate_2": 110, - "mech_vent_hours_in_operation": 24, - "mech_vent_hours_in_operation_2": 24, - "mech_vent_num_units_served": 1, - "mech_vent_sensible_recovery_efficiency": 0.72, - "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", - "mech_vent_total_recovery_efficiency": 0.48, - "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", - "neighbor_back_distance": 0, - "neighbor_back_height": "auto", - "neighbor_front_distance": 0, - "neighbor_front_height": "auto", - "neighbor_left_distance": 0, - "neighbor_left_height": "auto", - "neighbor_right_distance": 0, - "neighbor_right_height": "auto", - "overhangs_back_depth": 0, - "overhangs_back_distance_to_top_of_window": 0, - "overhangs_front_depth": 0, - "overhangs_front_distance_to_top_of_window": 0, - "overhangs_left_depth": 0, - "overhangs_left_distance_to_top_of_window": 0, - "overhangs_right_depth": 0, - "overhangs_right_distance_to_top_of_window": 0, - "plug_loads_other_annual_kwh": "2457.0", - "plug_loads_other_frac_latent": "0.045", - "plug_loads_other_frac_sensible": "0.855", - "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, - "plug_loads_television_annual_kwh": "620.0", - "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, - "plug_loads_vehicle_annual_kwh": "auto", - "plug_loads_vehicle_present": false, - "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, - "plug_loads_well_pump_annual_kwh": "auto", - "plug_loads_well_pump_present": false, - "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, - "pool_heater_annual_kwh": "auto", - "pool_heater_annual_therm": "auto", - "pool_heater_type": "electric resistance", - "pool_heater_usage_multiplier": 1.0, - "pool_present": false, - "pool_pump_annual_kwh": "auto", - "pool_pump_usage_multiplier": 1.0, - "pv_system_array_azimuth_1": 180, - "pv_system_array_azimuth_2": 180, - "pv_system_array_tilt_1": "20", - "pv_system_array_tilt_2": "20", - "pv_system_inverter_efficiency_1": 0.96, - "pv_system_inverter_efficiency_2": 0.96, - "pv_system_location_1": "auto", - "pv_system_location_2": "auto", - "pv_system_max_power_output_1": 4000, - "pv_system_max_power_output_2": 4000, - "pv_system_module_type_1": "none", - "pv_system_module_type_2": "none", - "pv_system_num_units_served_1": 1, - "pv_system_num_units_served_2": 1, - "pv_system_system_losses_fraction_1": 0.14, - "pv_system_system_losses_fraction_2": 0.14, - "pv_system_tracking_1": "auto", - "pv_system_tracking_2": "auto", - "refrigerator_location": "living space", - "refrigerator_present": true, - "refrigerator_rated_annual_kwh": "650.0", - "refrigerator_usage_multiplier": 1.0, - "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", - "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", - "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", - "schedules_type": "default", - "setpoint_cooling_weekday_offset_magnitude": 4, - "setpoint_cooling_weekday_schedule": "0, 0, 0, 0, 1, 1, 0, 0, 0, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_offset_magnitude": 4, - "setpoint_cooling_weekend_schedule": "0, 0, 0, 0, 1, 1, 0, 0, 0, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0", - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_offset_magnitude": 4, - "setpoint_heating_weekday_schedule": "-1, -1, -1, -1, -1, -1, 0, 0, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1", - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_offset_magnitude": 4, - "setpoint_heating_weekend_schedule": "-1, -1, -1, -1, -1, -1, 0, 0, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1", - "setpoint_heating_weekend_temp": 68, - "simulation_control_timestep": "60", - "site_type": "suburban", - "skylight_area_back": 0, - "skylight_area_front": 0, - "skylight_area_left": 0, - "skylight_area_right": 0, - "skylight_shgc": 0.45, - "skylight_ufactor": 0.33, - "slab_carpet_fraction": "0.0", - "slab_carpet_r": "0.0", - "slab_perimeter_depth": 0, - "slab_perimeter_insulation_r": 0, - "slab_thickness": "4.0", - "slab_under_insulation_r": 0, - "slab_under_width": 0, - "solar_thermal_collector_area": 40.0, - "solar_thermal_collector_azimuth": 180, - "solar_thermal_collector_loop_type": "liquid direct", - "solar_thermal_collector_rated_optical_efficiency": 0.5, - "solar_thermal_collector_rated_thermal_losses": 0.2799, - "solar_thermal_collector_tilt": "20", - "solar_thermal_collector_type": "evacuated tube", - "solar_thermal_solar_fraction": 0, - "solar_thermal_storage_volume": "auto", - "solar_thermal_system_type": "none", - "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", - "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", - "wall_type": "WoodStud", - "water_fixtures_shower_low_flow": true, - "water_fixtures_sink_low_flow": false, - "water_fixtures_usage_multiplier": 1.0, - "water_heater_efficiency": 0.95, - "water_heater_efficiency_type": "EnergyFactor", - "water_heater_fuel_type": "electricity", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "18767", - "water_heater_jacket_rvalue": 0, - "water_heater_location": "living space", - "water_heater_num_units_served": 1, - "water_heater_recovery_efficiency": "0.76", - "water_heater_setpoint_temperature": "125", - "water_heater_standby_loss": 0, - "water_heater_tank_volume": "40", - "water_heater_type": "storage water heater", - "weather_station_epw_filepath": "USA_CO_Denver.Intl.AP.725650_TMY3.epw", - "whole_house_fan_flow_rate": 4500, - "whole_house_fan_power": 300, - "whole_house_fan_present": false, - "window_area_back": 108.0, - "window_area_front": 108.0, - "window_area_left": 72.0, - "window_area_right": 72.0, - "window_aspect_ratio": 1.333, - "window_back_wwr": 0, - "window_fraction_operable": 0.67, - "window_front_wwr": 0, - "window_interior_shading_summer": 0.7, - "window_interior_shading_winter": 0.85, - "window_left_wwr": 0, - "window_right_wwr": 0, - "window_shgc": 0.45, - "window_ufactor": 0.33 - }, - "measure_dir_name": "BuildResidentialHPXML" - } - ] -} \ No newline at end of file diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-pv-roofpitch.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-pv-roofpitch.osw index 43d41015..0b229499 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-pv-roofpitch.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-pv-roofpitch.osw @@ -6,58 +6,50 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", "cooling_system_cooling_compressor_type": "single stage", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.73, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "central air conditioner", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -65,8 +57,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -74,11 +65,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "2", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 25.0, @@ -92,17 +82,15 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -133,6 +121,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, @@ -141,6 +130,7 @@ "geometry_num_floors_above_grade": 1, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family detached", @@ -150,22 +140,20 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "64000.0", - "heat_pump_heating_capacity_17F": "auto", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "none", "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "natural gas", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.92, @@ -186,7 +174,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/extra-pv-roofpitch.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -208,14 +196,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -236,18 +222,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -274,21 +256,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -315,10 +295,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "none", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -326,8 +304,6 @@ "water_heater_efficiency": 0.95, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "electricity", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "18767", "water_heater_jacket_rvalue": 0, "water_heater_location": "living space", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-schedules-random-seed.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-schedules-random-seed.osw index 60b9e21d..e8397f60 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-schedules-random-seed.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-schedules-random-seed.osw @@ -6,58 +6,50 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", "cooling_system_cooling_compressor_type": "single stage", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.73, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "central air conditioner", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -65,8 +57,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -74,11 +65,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "2", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 25.0, @@ -92,17 +82,15 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -133,6 +121,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, @@ -141,6 +130,7 @@ "geometry_num_floors_above_grade": 1, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family detached", @@ -150,22 +140,20 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "64000.0", - "heat_pump_heating_capacity_17F": "auto", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "none", "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "natural gas", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.92, @@ -186,7 +174,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/extra-schedules-random-seed.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -208,14 +196,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -236,18 +222,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -274,22 +256,20 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_random_seed": 123, "schedules_type": "stochastic", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -316,10 +296,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "none", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -327,8 +305,6 @@ "water_heater_efficiency": 0.95, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "electricity", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "18767", "water_heater_jacket_rvalue": 0, "water_heater_location": "living space", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-second-heating-system-boiler-to-heat-pump.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-second-heating-system-boiler-to-heat-pump.osw new file mode 100644 index 00000000..d35725a9 --- /dev/null +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-second-heating-system-boiler-to-heat-pump.osw @@ -0,0 +1,336 @@ +{ + "measure_paths": [ + "../.." + ], + "steps": [ + { + "arguments": { + "air_leakage_house_pressure": 50, + "air_leakage_shielding_of_home": "auto", + "air_leakage_units": "ACH", + "air_leakage_value": 3, + "bathroom_fans_quantity": "0", + "ceiling_assembly_r": 39.3, + "ceiling_fan_cooling_setpoint_temp_offset": 0, + "ceiling_fan_efficiency": "auto", + "ceiling_fan_present": false, + "ceiling_fan_quantity": "auto", + "clothes_dryer_efficiency": "3.73", + "clothes_dryer_efficiency_type": "CombinedEnergyFactor", + "clothes_dryer_fuel_type": "electricity", + "clothes_dryer_location": "living space", + "clothes_dryer_usage_multiplier": 1.0, + "clothes_dryer_vented_flow_rate": "150.0", + "clothes_washer_capacity": "3.2", + "clothes_washer_efficiency": "1.21", + "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", + "clothes_washer_label_annual_gas_cost": "27.0", + "clothes_washer_label_electric_rate": "0.12", + "clothes_washer_label_gas_rate": "1.09", + "clothes_washer_label_usage": "6.0", + "clothes_washer_location": "living space", + "clothes_washer_rated_annual_kwh": "380.0", + "clothes_washer_usage_multiplier": 1.0, + "cooking_range_oven_fuel_type": "electricity", + "cooking_range_oven_is_convection": false, + "cooking_range_oven_is_induction": false, + "cooking_range_oven_location": "living space", + "cooking_range_oven_usage_multiplier": 1.0, + "cooling_system_cooling_capacity": "48000.0", + "cooling_system_cooling_compressor_type": "single stage", + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", + "cooling_system_cooling_sensible_heat_fraction": 0.73, + "cooling_system_fraction_cool_load_served": 1, + "cooling_system_is_ducted": false, + "cooling_system_type": "none", + "dehumidifier_capacity": 40, + "dehumidifier_efficiency": 1.8, + "dehumidifier_efficiency_type": "EnergyFactor", + "dehumidifier_fraction_dehumidification_load_served": 1, + "dehumidifier_rh_setpoint": 0.5, + "dehumidifier_type": "none", + "dhw_distribution_pipe_r": "0.0", + "dhw_distribution_recirc_branch_piping_length": "50", + "dhw_distribution_recirc_control_type": "no control", + "dhw_distribution_recirc_piping_length": "50", + "dhw_distribution_recirc_pump_power": "50", + "dhw_distribution_standard_piping_length": "50", + "dhw_distribution_system_type": "Standard", + "dishwasher_efficiency": "307", + "dishwasher_efficiency_type": "RatedAnnualkWh", + "dishwasher_label_annual_gas_cost": "22.32", + "dishwasher_label_electric_rate": "0.12", + "dishwasher_label_gas_rate": "1.09", + "dishwasher_label_usage": "4.0", + "dishwasher_location": "living space", + "dishwasher_place_setting_capacity": "12", + "dishwasher_usage_multiplier": 1.0, + "door_area": 80.0, + "door_rvalue": 4.4, + "ducts_number_of_return_registers": "2", + "ducts_return_insulation_r": 0.0, + "ducts_return_leakage_units": "CFM25", + "ducts_return_leakage_value": 25.0, + "ducts_return_location": "attic - unvented", + "ducts_return_surface_area": "50.0", + "ducts_supply_insulation_r": 4.0, + "ducts_supply_leakage_units": "CFM25", + "ducts_supply_leakage_value": 75.0, + "ducts_supply_location": "attic - unvented", + "ducts_supply_surface_area": "150.0", + "dwhr_efficiency": 0.55, + "dwhr_equal_flow": true, + "dwhr_facilities_connected": "none", + "extra_refrigerator_location": "none", + "extra_refrigerator_rated_annual_kwh": "auto", + "extra_refrigerator_usage_multiplier": 1.0, + "floor_assembly_r": 0, + "foundation_wall_insulation_distance_to_bottom": "auto", + "foundation_wall_insulation_distance_to_top": 0.0, + "foundation_wall_insulation_r": 8.9, + "foundation_wall_thickness": "8.0", + "freezer_location": "none", + "freezer_rated_annual_kwh": "auto", + "freezer_usage_multiplier": 1.0, + "fuel_loads_fireplace_annual_therm": "auto", + "fuel_loads_fireplace_frac_latent": "auto", + "fuel_loads_fireplace_frac_sensible": "auto", + "fuel_loads_fireplace_fuel_type": "natural gas", + "fuel_loads_fireplace_present": false, + "fuel_loads_fireplace_usage_multiplier": 0.0, + "fuel_loads_grill_annual_therm": "auto", + "fuel_loads_grill_fuel_type": "natural gas", + "fuel_loads_grill_present": false, + "fuel_loads_grill_usage_multiplier": 0.0, + "fuel_loads_lighting_annual_therm": "auto", + "fuel_loads_lighting_fuel_type": "natural gas", + "fuel_loads_lighting_present": false, + "fuel_loads_lighting_usage_multiplier": 0.0, + "geometry_aspect_ratio": 1.5, + "geometry_attic_type": "UnventedAttic", + "geometry_balcony_depth": 0.0, + "geometry_cfa": 2700.0, + "geometry_corridor_position": "Double-Loaded Interior", + "geometry_corridor_width": 10.0, + "geometry_eaves_depth": 0, + "geometry_foundation_height": 8.0, + "geometry_foundation_height_above_grade": 1.0, + "geometry_foundation_type": "ConditionedBasement", + "geometry_garage_depth": 20.0, + "geometry_garage_position": "Right", + "geometry_garage_protrusion": 0.0, + "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", + "geometry_inset_depth": 0.0, + "geometry_inset_position": "Right", + "geometry_inset_width": 0.0, + "geometry_num_bathrooms": "2", + "geometry_num_bedrooms": 3, + "geometry_num_floors_above_grade": 1, + "geometry_num_occupants": "3", + "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, + "geometry_roof_pitch": "6:12", + "geometry_roof_type": "gable", + "geometry_unit_type": "single-family detached", + "geometry_wall_height": 8.0, + "heat_pump_backup_fuel": "electricity", + "heat_pump_backup_heating_capacity": "34121.0", + "heat_pump_backup_heating_efficiency": 1, + "heat_pump_cooling_capacity": "48000.0", + "heat_pump_cooling_efficiency": 16.6, + "heat_pump_cooling_efficiency_type": "EER", + "heat_pump_cooling_sensible_heat_fraction": 0.73, + "heat_pump_fraction_cool_load_served": 1, + "heat_pump_fraction_heat_load_served": 0.75, + "heat_pump_heating_capacity": "42000.0", + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 3.6, + "heat_pump_heating_efficiency_type": "COP", + "heat_pump_type": "ground-to-air", + "heating_system_fraction_heat_load_served": 1, + "heating_system_fraction_heat_load_served_2": 0.25, + "heating_system_fuel": "natural gas", + "heating_system_fuel_2": "electricity", + "heating_system_heating_capacity": "64000.0", + "heating_system_heating_capacity_2": "auto", + "heating_system_heating_efficiency": 0.92, + "heating_system_heating_efficiency_2": 1.0, + "heating_system_type": "none", + "heating_system_type_2": "Boiler", + "holiday_lighting_daily_kwh": "auto", + "holiday_lighting_period_begin_day_of_month": "auto", + "holiday_lighting_period_begin_month": "auto", + "holiday_lighting_period_end_day_of_month": "auto", + "holiday_lighting_period_end_month": "auto", + "holiday_lighting_present": false, + "hot_tub_heater_annual_kwh": "auto", + "hot_tub_heater_annual_therm": "auto", + "hot_tub_heater_type": "electric resistance", + "hot_tub_heater_usage_multiplier": 1.0, + "hot_tub_present": false, + "hot_tub_pump_annual_kwh": "auto", + "hot_tub_pump_usage_multiplier": 1.0, + "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/extra-second-heating-system-boiler-to-heat-pump.xml", + "kitchen_fans_quantity": "0", + "lighting_fraction_cfl_exterior": 0.4, + "lighting_fraction_cfl_garage": 0.4, + "lighting_fraction_cfl_interior": 0.4, + "lighting_fraction_led_exterior": 0.25, + "lighting_fraction_led_garage": 0.25, + "lighting_fraction_led_interior": 0.25, + "lighting_fraction_lfl_exterior": 0.1, + "lighting_fraction_lfl_garage": 0.1, + "lighting_fraction_lfl_interior": 0.1, + "lighting_usage_multiplier_exterior": 1.0, + "lighting_usage_multiplier_garage": 1.0, + "lighting_usage_multiplier_interior": 1.0, + "mech_vent_fan_power": 30, + "mech_vent_fan_power_2": 30, + "mech_vent_fan_type": "none", + "mech_vent_fan_type_2": "none", + "mech_vent_flow_rate": 110, + "mech_vent_flow_rate_2": 110, + "mech_vent_hours_in_operation": 24, + "mech_vent_hours_in_operation_2": 24, + "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", + "mech_vent_sensible_recovery_efficiency": 0.72, + "mech_vent_sensible_recovery_efficiency_2": 0.72, + "mech_vent_total_recovery_efficiency": 0.48, + "mech_vent_total_recovery_efficiency_2": 0.48, + "neighbor_back_distance": 0, + "neighbor_back_height": "auto", + "neighbor_front_distance": 0, + "neighbor_front_height": "auto", + "neighbor_left_distance": 0, + "neighbor_left_height": "auto", + "neighbor_right_distance": 0, + "neighbor_right_height": "auto", + "overhangs_back_depth": 0, + "overhangs_back_distance_to_top_of_window": 0, + "overhangs_front_depth": 0, + "overhangs_front_distance_to_top_of_window": 0, + "overhangs_left_depth": 0, + "overhangs_left_distance_to_top_of_window": 0, + "overhangs_right_depth": 0, + "overhangs_right_distance_to_top_of_window": 0, + "plug_loads_other_annual_kwh": "2457.0", + "plug_loads_other_frac_latent": "0.045", + "plug_loads_other_frac_sensible": "0.855", + "plug_loads_other_usage_multiplier": 1.0, + "plug_loads_television_annual_kwh": "620.0", + "plug_loads_television_usage_multiplier": 1.0, + "plug_loads_vehicle_annual_kwh": "auto", + "plug_loads_vehicle_present": false, + "plug_loads_vehicle_usage_multiplier": 0.0, + "plug_loads_well_pump_annual_kwh": "auto", + "plug_loads_well_pump_present": false, + "plug_loads_well_pump_usage_multiplier": 0.0, + "pool_heater_annual_kwh": "auto", + "pool_heater_annual_therm": "auto", + "pool_heater_type": "electric resistance", + "pool_heater_usage_multiplier": 1.0, + "pool_present": false, + "pool_pump_annual_kwh": "auto", + "pool_pump_usage_multiplier": 1.0, + "pv_system_array_azimuth_1": 180, + "pv_system_array_azimuth_2": 180, + "pv_system_array_tilt_1": "20", + "pv_system_array_tilt_2": "20", + "pv_system_inverter_efficiency_1": 0.96, + "pv_system_inverter_efficiency_2": 0.96, + "pv_system_location_1": "auto", + "pv_system_location_2": "auto", + "pv_system_max_power_output_1": 4000, + "pv_system_max_power_output_2": 4000, + "pv_system_module_type_1": "none", + "pv_system_module_type_2": "none", + "pv_system_num_units_served_1": 1, + "pv_system_num_units_served_2": 1, + "pv_system_system_losses_fraction_1": 0.14, + "pv_system_system_losses_fraction_2": 0.14, + "pv_system_tracking_1": "auto", + "pv_system_tracking_2": "auto", + "refrigerator_location": "living space", + "refrigerator_rated_annual_kwh": "650.0", + "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, + "roof_assembly_r": 2.3, + "roof_color": "medium", + "roof_material_type": "asphalt or fiberglass shingles", + "roof_radiant_barrier": false, + "roof_radiant_barrier_grade": "1", + "schedules_type": "default", + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", + "simulation_control_timestep": "60", + "site_type": "suburban", + "skylight_area_back": 0, + "skylight_area_front": 0, + "skylight_area_left": 0, + "skylight_area_right": 0, + "skylight_shgc": 0.45, + "skylight_ufactor": 0.33, + "slab_carpet_fraction": "0.0", + "slab_carpet_r": "0.0", + "slab_perimeter_depth": 0, + "slab_perimeter_insulation_r": 0, + "slab_thickness": "4.0", + "slab_under_insulation_r": 0, + "slab_under_width": 0, + "solar_thermal_collector_area": 40.0, + "solar_thermal_collector_azimuth": 180, + "solar_thermal_collector_loop_type": "liquid direct", + "solar_thermal_collector_rated_optical_efficiency": 0.5, + "solar_thermal_collector_rated_thermal_losses": 0.2799, + "solar_thermal_collector_tilt": "20", + "solar_thermal_collector_type": "evacuated tube", + "solar_thermal_solar_fraction": 0, + "solar_thermal_storage_volume": "auto", + "solar_thermal_system_type": "none", + "wall_assembly_r": 23, + "wall_color": "medium", + "wall_siding_type": "wood siding", + "wall_type": "WoodStud", + "water_fixtures_shower_low_flow": true, + "water_fixtures_sink_low_flow": false, + "water_fixtures_usage_multiplier": 1.0, + "water_heater_efficiency": 0.95, + "water_heater_efficiency_type": "EnergyFactor", + "water_heater_fuel_type": "electricity", + "water_heater_jacket_rvalue": 0, + "water_heater_location": "living space", + "water_heater_num_units_served": 1, + "water_heater_recovery_efficiency": "0.76", + "water_heater_setpoint_temperature": "125", + "water_heater_standby_loss": 0, + "water_heater_tank_volume": "40", + "water_heater_type": "storage water heater", + "weather_station_epw_filepath": "USA_CO_Denver.Intl.AP.725650_TMY3.epw", + "whole_house_fan_flow_rate": 4500, + "whole_house_fan_power": 300, + "whole_house_fan_present": false, + "window_area_back": 108.0, + "window_area_front": 108.0, + "window_area_left": 72.0, + "window_area_right": 72.0, + "window_aspect_ratio": 1.333, + "window_back_wwr": 0, + "window_fraction_operable": 0.67, + "window_front_wwr": 0, + "window_interior_shading_summer": 0.7, + "window_interior_shading_winter": 0.85, + "window_left_wwr": 0, + "window_right_wwr": 0, + "window_shgc": 0.45, + "window_ufactor": 0.33 + }, + "measure_dir_name": "BuildResidentialHPXML" + } + ] +} \ No newline at end of file diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-second-heating-system-boiler-to-heating-system.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-second-heating-system-boiler-to-heating-system.osw new file mode 100644 index 00000000..463b74bf --- /dev/null +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-second-heating-system-boiler-to-heating-system.osw @@ -0,0 +1,337 @@ +{ + "measure_paths": [ + "../.." + ], + "steps": [ + { + "arguments": { + "air_leakage_house_pressure": 50, + "air_leakage_shielding_of_home": "auto", + "air_leakage_units": "ACH", + "air_leakage_value": 3, + "bathroom_fans_quantity": "0", + "ceiling_assembly_r": 39.3, + "ceiling_fan_cooling_setpoint_temp_offset": 0, + "ceiling_fan_efficiency": "auto", + "ceiling_fan_present": false, + "ceiling_fan_quantity": "auto", + "clothes_dryer_efficiency": "3.73", + "clothes_dryer_efficiency_type": "CombinedEnergyFactor", + "clothes_dryer_fuel_type": "electricity", + "clothes_dryer_location": "living space", + "clothes_dryer_usage_multiplier": 1.0, + "clothes_dryer_vented_flow_rate": "150.0", + "clothes_washer_capacity": "3.2", + "clothes_washer_efficiency": "1.21", + "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", + "clothes_washer_label_annual_gas_cost": "27.0", + "clothes_washer_label_electric_rate": "0.12", + "clothes_washer_label_gas_rate": "1.09", + "clothes_washer_label_usage": "6.0", + "clothes_washer_location": "living space", + "clothes_washer_rated_annual_kwh": "380.0", + "clothes_washer_usage_multiplier": 1.0, + "cooking_range_oven_fuel_type": "electricity", + "cooking_range_oven_is_convection": false, + "cooking_range_oven_is_induction": false, + "cooking_range_oven_location": "living space", + "cooking_range_oven_usage_multiplier": 1.0, + "cooling_system_cooling_capacity": "48000.0", + "cooling_system_cooling_compressor_type": "single stage", + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", + "cooling_system_cooling_sensible_heat_fraction": 0.73, + "cooling_system_fraction_cool_load_served": 1, + "cooling_system_is_ducted": false, + "cooling_system_type": "central air conditioner", + "dehumidifier_capacity": 40, + "dehumidifier_efficiency": 1.8, + "dehumidifier_efficiency_type": "EnergyFactor", + "dehumidifier_fraction_dehumidification_load_served": 1, + "dehumidifier_rh_setpoint": 0.5, + "dehumidifier_type": "none", + "dhw_distribution_pipe_r": "0.0", + "dhw_distribution_recirc_branch_piping_length": "50", + "dhw_distribution_recirc_control_type": "no control", + "dhw_distribution_recirc_piping_length": "50", + "dhw_distribution_recirc_pump_power": "50", + "dhw_distribution_standard_piping_length": "50", + "dhw_distribution_system_type": "Standard", + "dishwasher_efficiency": "307", + "dishwasher_efficiency_type": "RatedAnnualkWh", + "dishwasher_label_annual_gas_cost": "22.32", + "dishwasher_label_electric_rate": "0.12", + "dishwasher_label_gas_rate": "1.09", + "dishwasher_label_usage": "4.0", + "dishwasher_location": "living space", + "dishwasher_place_setting_capacity": "12", + "dishwasher_usage_multiplier": 1.0, + "door_area": 80.0, + "door_rvalue": 4.4, + "ducts_number_of_return_registers": "2", + "ducts_return_insulation_r": 0.0, + "ducts_return_leakage_units": "CFM25", + "ducts_return_leakage_value": 25.0, + "ducts_return_location": "attic - unvented", + "ducts_return_surface_area": "50.0", + "ducts_supply_insulation_r": 4.0, + "ducts_supply_leakage_units": "CFM25", + "ducts_supply_leakage_value": 75.0, + "ducts_supply_location": "attic - unvented", + "ducts_supply_surface_area": "150.0", + "dwhr_efficiency": 0.55, + "dwhr_equal_flow": true, + "dwhr_facilities_connected": "none", + "extra_refrigerator_location": "none", + "extra_refrigerator_rated_annual_kwh": "auto", + "extra_refrigerator_usage_multiplier": 1.0, + "floor_assembly_r": 0, + "foundation_wall_insulation_distance_to_bottom": "auto", + "foundation_wall_insulation_distance_to_top": 0.0, + "foundation_wall_insulation_r": 8.9, + "foundation_wall_thickness": "8.0", + "freezer_location": "none", + "freezer_rated_annual_kwh": "auto", + "freezer_usage_multiplier": 1.0, + "fuel_loads_fireplace_annual_therm": "auto", + "fuel_loads_fireplace_frac_latent": "auto", + "fuel_loads_fireplace_frac_sensible": "auto", + "fuel_loads_fireplace_fuel_type": "natural gas", + "fuel_loads_fireplace_present": false, + "fuel_loads_fireplace_usage_multiplier": 0.0, + "fuel_loads_grill_annual_therm": "auto", + "fuel_loads_grill_fuel_type": "natural gas", + "fuel_loads_grill_present": false, + "fuel_loads_grill_usage_multiplier": 0.0, + "fuel_loads_lighting_annual_therm": "auto", + "fuel_loads_lighting_fuel_type": "natural gas", + "fuel_loads_lighting_present": false, + "fuel_loads_lighting_usage_multiplier": 0.0, + "geometry_aspect_ratio": 1.5, + "geometry_attic_type": "UnventedAttic", + "geometry_balcony_depth": 0.0, + "geometry_cfa": 2700.0, + "geometry_corridor_position": "Double-Loaded Interior", + "geometry_corridor_width": 10.0, + "geometry_eaves_depth": 0, + "geometry_foundation_height": 8.0, + "geometry_foundation_height_above_grade": 1.0, + "geometry_foundation_type": "ConditionedBasement", + "geometry_garage_depth": 20.0, + "geometry_garage_position": "Right", + "geometry_garage_protrusion": 0.0, + "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", + "geometry_inset_depth": 0.0, + "geometry_inset_position": "Right", + "geometry_inset_width": 0.0, + "geometry_num_bathrooms": "2", + "geometry_num_bedrooms": 3, + "geometry_num_floors_above_grade": 1, + "geometry_num_occupants": "3", + "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, + "geometry_roof_pitch": "6:12", + "geometry_roof_type": "gable", + "geometry_unit_type": "single-family detached", + "geometry_wall_height": 8.0, + "heat_pump_backup_fuel": "none", + "heat_pump_backup_heating_capacity": "34121.0", + "heat_pump_backup_heating_efficiency": 1, + "heat_pump_cooling_capacity": "48000.0", + "heat_pump_cooling_compressor_type": "single stage", + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", + "heat_pump_cooling_sensible_heat_fraction": 0.73, + "heat_pump_fraction_cool_load_served": 1, + "heat_pump_fraction_heat_load_served": 1, + "heat_pump_heating_capacity": "64000.0", + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", + "heat_pump_type": "none", + "heating_system_fraction_heat_load_served": 0.75, + "heating_system_fraction_heat_load_served_2": 0.25, + "heating_system_fuel": "natural gas", + "heating_system_fuel_2": "electricity", + "heating_system_heating_capacity": "64000.0", + "heating_system_heating_capacity_2": "auto", + "heating_system_heating_efficiency": 0.92, + "heating_system_heating_efficiency_2": 1.0, + "heating_system_type": "Boiler", + "heating_system_type_2": "Boiler", + "holiday_lighting_daily_kwh": "auto", + "holiday_lighting_period_begin_day_of_month": "auto", + "holiday_lighting_period_begin_month": "auto", + "holiday_lighting_period_end_day_of_month": "auto", + "holiday_lighting_period_end_month": "auto", + "holiday_lighting_present": false, + "hot_tub_heater_annual_kwh": "auto", + "hot_tub_heater_annual_therm": "auto", + "hot_tub_heater_type": "electric resistance", + "hot_tub_heater_usage_multiplier": 1.0, + "hot_tub_present": false, + "hot_tub_pump_annual_kwh": "auto", + "hot_tub_pump_usage_multiplier": 1.0, + "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/extra-second-heating-system-boiler-to-heating-system.xml", + "kitchen_fans_quantity": "0", + "lighting_fraction_cfl_exterior": 0.4, + "lighting_fraction_cfl_garage": 0.4, + "lighting_fraction_cfl_interior": 0.4, + "lighting_fraction_led_exterior": 0.25, + "lighting_fraction_led_garage": 0.25, + "lighting_fraction_led_interior": 0.25, + "lighting_fraction_lfl_exterior": 0.1, + "lighting_fraction_lfl_garage": 0.1, + "lighting_fraction_lfl_interior": 0.1, + "lighting_usage_multiplier_exterior": 1.0, + "lighting_usage_multiplier_garage": 1.0, + "lighting_usage_multiplier_interior": 1.0, + "mech_vent_fan_power": 30, + "mech_vent_fan_power_2": 30, + "mech_vent_fan_type": "none", + "mech_vent_fan_type_2": "none", + "mech_vent_flow_rate": 110, + "mech_vent_flow_rate_2": 110, + "mech_vent_hours_in_operation": 24, + "mech_vent_hours_in_operation_2": 24, + "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", + "mech_vent_sensible_recovery_efficiency": 0.72, + "mech_vent_sensible_recovery_efficiency_2": 0.72, + "mech_vent_total_recovery_efficiency": 0.48, + "mech_vent_total_recovery_efficiency_2": 0.48, + "neighbor_back_distance": 0, + "neighbor_back_height": "auto", + "neighbor_front_distance": 0, + "neighbor_front_height": "auto", + "neighbor_left_distance": 0, + "neighbor_left_height": "auto", + "neighbor_right_distance": 0, + "neighbor_right_height": "auto", + "overhangs_back_depth": 0, + "overhangs_back_distance_to_top_of_window": 0, + "overhangs_front_depth": 0, + "overhangs_front_distance_to_top_of_window": 0, + "overhangs_left_depth": 0, + "overhangs_left_distance_to_top_of_window": 0, + "overhangs_right_depth": 0, + "overhangs_right_distance_to_top_of_window": 0, + "plug_loads_other_annual_kwh": "2457.0", + "plug_loads_other_frac_latent": "0.045", + "plug_loads_other_frac_sensible": "0.855", + "plug_loads_other_usage_multiplier": 1.0, + "plug_loads_television_annual_kwh": "620.0", + "plug_loads_television_usage_multiplier": 1.0, + "plug_loads_vehicle_annual_kwh": "auto", + "plug_loads_vehicle_present": false, + "plug_loads_vehicle_usage_multiplier": 0.0, + "plug_loads_well_pump_annual_kwh": "auto", + "plug_loads_well_pump_present": false, + "plug_loads_well_pump_usage_multiplier": 0.0, + "pool_heater_annual_kwh": "auto", + "pool_heater_annual_therm": "auto", + "pool_heater_type": "electric resistance", + "pool_heater_usage_multiplier": 1.0, + "pool_present": false, + "pool_pump_annual_kwh": "auto", + "pool_pump_usage_multiplier": 1.0, + "pv_system_array_azimuth_1": 180, + "pv_system_array_azimuth_2": 180, + "pv_system_array_tilt_1": "20", + "pv_system_array_tilt_2": "20", + "pv_system_inverter_efficiency_1": 0.96, + "pv_system_inverter_efficiency_2": 0.96, + "pv_system_location_1": "auto", + "pv_system_location_2": "auto", + "pv_system_max_power_output_1": 4000, + "pv_system_max_power_output_2": 4000, + "pv_system_module_type_1": "none", + "pv_system_module_type_2": "none", + "pv_system_num_units_served_1": 1, + "pv_system_num_units_served_2": 1, + "pv_system_system_losses_fraction_1": 0.14, + "pv_system_system_losses_fraction_2": 0.14, + "pv_system_tracking_1": "auto", + "pv_system_tracking_2": "auto", + "refrigerator_location": "living space", + "refrigerator_rated_annual_kwh": "650.0", + "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, + "roof_assembly_r": 2.3, + "roof_color": "medium", + "roof_material_type": "asphalt or fiberglass shingles", + "roof_radiant_barrier": false, + "roof_radiant_barrier_grade": "1", + "schedules_type": "default", + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", + "simulation_control_timestep": "60", + "site_type": "suburban", + "skylight_area_back": 0, + "skylight_area_front": 0, + "skylight_area_left": 0, + "skylight_area_right": 0, + "skylight_shgc": 0.45, + "skylight_ufactor": 0.33, + "slab_carpet_fraction": "0.0", + "slab_carpet_r": "0.0", + "slab_perimeter_depth": 0, + "slab_perimeter_insulation_r": 0, + "slab_thickness": "4.0", + "slab_under_insulation_r": 0, + "slab_under_width": 0, + "solar_thermal_collector_area": 40.0, + "solar_thermal_collector_azimuth": 180, + "solar_thermal_collector_loop_type": "liquid direct", + "solar_thermal_collector_rated_optical_efficiency": 0.5, + "solar_thermal_collector_rated_thermal_losses": 0.2799, + "solar_thermal_collector_tilt": "20", + "solar_thermal_collector_type": "evacuated tube", + "solar_thermal_solar_fraction": 0, + "solar_thermal_storage_volume": "auto", + "solar_thermal_system_type": "none", + "wall_assembly_r": 23, + "wall_color": "medium", + "wall_siding_type": "wood siding", + "wall_type": "WoodStud", + "water_fixtures_shower_low_flow": true, + "water_fixtures_sink_low_flow": false, + "water_fixtures_usage_multiplier": 1.0, + "water_heater_efficiency": 0.95, + "water_heater_efficiency_type": "EnergyFactor", + "water_heater_fuel_type": "electricity", + "water_heater_jacket_rvalue": 0, + "water_heater_location": "living space", + "water_heater_num_units_served": 1, + "water_heater_recovery_efficiency": "0.76", + "water_heater_setpoint_temperature": "125", + "water_heater_standby_loss": 0, + "water_heater_tank_volume": "40", + "water_heater_type": "storage water heater", + "weather_station_epw_filepath": "USA_CO_Denver.Intl.AP.725650_TMY3.epw", + "whole_house_fan_flow_rate": 4500, + "whole_house_fan_power": 300, + "whole_house_fan_present": false, + "window_area_back": 108.0, + "window_area_front": 108.0, + "window_area_left": 72.0, + "window_area_right": 72.0, + "window_aspect_ratio": 1.333, + "window_back_wwr": 0, + "window_fraction_operable": 0.67, + "window_front_wwr": 0, + "window_interior_shading_summer": 0.7, + "window_interior_shading_winter": 0.85, + "window_left_wwr": 0, + "window_right_wwr": 0, + "window_shgc": 0.45, + "window_ufactor": 0.33 + }, + "measure_dir_name": "BuildResidentialHPXML" + } + ] +} \ No newline at end of file diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-second-heating-system-fireplace-to-heat-pump.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-second-heating-system-fireplace-to-heat-pump.osw new file mode 100644 index 00000000..a7cd0285 --- /dev/null +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-second-heating-system-fireplace-to-heat-pump.osw @@ -0,0 +1,337 @@ +{ + "measure_paths": [ + "../.." + ], + "steps": [ + { + "arguments": { + "air_leakage_house_pressure": 50, + "air_leakage_shielding_of_home": "auto", + "air_leakage_units": "ACH", + "air_leakage_value": 3, + "bathroom_fans_quantity": "0", + "ceiling_assembly_r": 39.3, + "ceiling_fan_cooling_setpoint_temp_offset": 0, + "ceiling_fan_efficiency": "auto", + "ceiling_fan_present": false, + "ceiling_fan_quantity": "auto", + "clothes_dryer_efficiency": "3.73", + "clothes_dryer_efficiency_type": "CombinedEnergyFactor", + "clothes_dryer_fuel_type": "electricity", + "clothes_dryer_location": "living space", + "clothes_dryer_usage_multiplier": 1.0, + "clothes_dryer_vented_flow_rate": "150.0", + "clothes_washer_capacity": "3.2", + "clothes_washer_efficiency": "1.21", + "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", + "clothes_washer_label_annual_gas_cost": "27.0", + "clothes_washer_label_electric_rate": "0.12", + "clothes_washer_label_gas_rate": "1.09", + "clothes_washer_label_usage": "6.0", + "clothes_washer_location": "living space", + "clothes_washer_rated_annual_kwh": "380.0", + "clothes_washer_usage_multiplier": 1.0, + "cooking_range_oven_fuel_type": "electricity", + "cooking_range_oven_is_convection": false, + "cooking_range_oven_is_induction": false, + "cooking_range_oven_location": "living space", + "cooking_range_oven_usage_multiplier": 1.0, + "cooling_system_cooling_capacity": "48000.0", + "cooling_system_cooling_compressor_type": "single stage", + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", + "cooling_system_cooling_sensible_heat_fraction": 0.73, + "cooling_system_fraction_cool_load_served": 1, + "cooling_system_is_ducted": false, + "cooling_system_type": "none", + "dehumidifier_capacity": 40, + "dehumidifier_efficiency": 1.8, + "dehumidifier_efficiency_type": "EnergyFactor", + "dehumidifier_fraction_dehumidification_load_served": 1, + "dehumidifier_rh_setpoint": 0.5, + "dehumidifier_type": "none", + "dhw_distribution_pipe_r": "0.0", + "dhw_distribution_recirc_branch_piping_length": "50", + "dhw_distribution_recirc_control_type": "no control", + "dhw_distribution_recirc_piping_length": "50", + "dhw_distribution_recirc_pump_power": "50", + "dhw_distribution_standard_piping_length": "50", + "dhw_distribution_system_type": "Standard", + "dishwasher_efficiency": "307", + "dishwasher_efficiency_type": "RatedAnnualkWh", + "dishwasher_label_annual_gas_cost": "22.32", + "dishwasher_label_electric_rate": "0.12", + "dishwasher_label_gas_rate": "1.09", + "dishwasher_label_usage": "4.0", + "dishwasher_location": "living space", + "dishwasher_place_setting_capacity": "12", + "dishwasher_usage_multiplier": 1.0, + "door_area": 80.0, + "door_rvalue": 4.4, + "ducts_number_of_return_registers": "2", + "ducts_return_insulation_r": 0.0, + "ducts_return_leakage_units": "CFM25", + "ducts_return_leakage_value": 5.0, + "ducts_return_location": "attic - unvented", + "ducts_return_surface_area": "10.0", + "ducts_supply_insulation_r": 0.0, + "ducts_supply_leakage_units": "CFM25", + "ducts_supply_leakage_value": 15.0, + "ducts_supply_location": "attic - unvented", + "ducts_supply_surface_area": "30.0", + "dwhr_efficiency": 0.55, + "dwhr_equal_flow": true, + "dwhr_facilities_connected": "none", + "extra_refrigerator_location": "none", + "extra_refrigerator_rated_annual_kwh": "auto", + "extra_refrigerator_usage_multiplier": 1.0, + "floor_assembly_r": 0, + "foundation_wall_insulation_distance_to_bottom": "auto", + "foundation_wall_insulation_distance_to_top": 0.0, + "foundation_wall_insulation_r": 8.9, + "foundation_wall_thickness": "8.0", + "freezer_location": "none", + "freezer_rated_annual_kwh": "auto", + "freezer_usage_multiplier": 1.0, + "fuel_loads_fireplace_annual_therm": "auto", + "fuel_loads_fireplace_frac_latent": "auto", + "fuel_loads_fireplace_frac_sensible": "auto", + "fuel_loads_fireplace_fuel_type": "natural gas", + "fuel_loads_fireplace_present": false, + "fuel_loads_fireplace_usage_multiplier": 0.0, + "fuel_loads_grill_annual_therm": "auto", + "fuel_loads_grill_fuel_type": "natural gas", + "fuel_loads_grill_present": false, + "fuel_loads_grill_usage_multiplier": 0.0, + "fuel_loads_lighting_annual_therm": "auto", + "fuel_loads_lighting_fuel_type": "natural gas", + "fuel_loads_lighting_present": false, + "fuel_loads_lighting_usage_multiplier": 0.0, + "geometry_aspect_ratio": 1.5, + "geometry_attic_type": "UnventedAttic", + "geometry_balcony_depth": 0.0, + "geometry_cfa": 2700.0, + "geometry_corridor_position": "Double-Loaded Interior", + "geometry_corridor_width": 10.0, + "geometry_eaves_depth": 0, + "geometry_foundation_height": 8.0, + "geometry_foundation_height_above_grade": 1.0, + "geometry_foundation_type": "ConditionedBasement", + "geometry_garage_depth": 20.0, + "geometry_garage_position": "Right", + "geometry_garage_protrusion": 0.0, + "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", + "geometry_inset_depth": 0.0, + "geometry_inset_position": "Right", + "geometry_inset_width": 0.0, + "geometry_num_bathrooms": "2", + "geometry_num_bedrooms": 3, + "geometry_num_floors_above_grade": 1, + "geometry_num_occupants": "3", + "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, + "geometry_roof_pitch": "6:12", + "geometry_roof_type": "gable", + "geometry_unit_type": "single-family detached", + "geometry_wall_height": 8.0, + "heat_pump_backup_fuel": "electricity", + "heat_pump_backup_heating_capacity": "34121.0", + "heat_pump_backup_heating_efficiency": 1, + "heat_pump_cooling_capacity": "48000.0", + "heat_pump_cooling_efficiency": 19.0, + "heat_pump_cooling_efficiency_type": "SEER", + "heat_pump_cooling_sensible_heat_fraction": 0.73, + "heat_pump_fraction_cool_load_served": 1, + "heat_pump_fraction_heat_load_served": 0.75, + "heat_pump_heating_capacity": "48000.0", + "heat_pump_heating_capacity_17_f": "29500.0", + "heat_pump_heating_efficiency": 10.0, + "heat_pump_heating_efficiency_type": "HSPF", + "heat_pump_is_ducted": true, + "heat_pump_type": "mini-split", + "heating_system_fraction_heat_load_served": 1, + "heating_system_fraction_heat_load_served_2": 0.25, + "heating_system_fuel": "natural gas", + "heating_system_fuel_2": "electricity", + "heating_system_heating_capacity": "64000.0", + "heating_system_heating_capacity_2": "16000.0", + "heating_system_heating_efficiency": 0.92, + "heating_system_heating_efficiency_2": 1.0, + "heating_system_type": "none", + "heating_system_type_2": "Fireplace", + "holiday_lighting_daily_kwh": "auto", + "holiday_lighting_period_begin_day_of_month": "auto", + "holiday_lighting_period_begin_month": "auto", + "holiday_lighting_period_end_day_of_month": "auto", + "holiday_lighting_period_end_month": "auto", + "holiday_lighting_present": false, + "hot_tub_heater_annual_kwh": "auto", + "hot_tub_heater_annual_therm": "auto", + "hot_tub_heater_type": "electric resistance", + "hot_tub_heater_usage_multiplier": 1.0, + "hot_tub_present": false, + "hot_tub_pump_annual_kwh": "auto", + "hot_tub_pump_usage_multiplier": 1.0, + "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/extra-second-heating-system-fireplace-to-heat-pump.xml", + "kitchen_fans_quantity": "0", + "lighting_fraction_cfl_exterior": 0.4, + "lighting_fraction_cfl_garage": 0.4, + "lighting_fraction_cfl_interior": 0.4, + "lighting_fraction_led_exterior": 0.25, + "lighting_fraction_led_garage": 0.25, + "lighting_fraction_led_interior": 0.25, + "lighting_fraction_lfl_exterior": 0.1, + "lighting_fraction_lfl_garage": 0.1, + "lighting_fraction_lfl_interior": 0.1, + "lighting_usage_multiplier_exterior": 1.0, + "lighting_usage_multiplier_garage": 1.0, + "lighting_usage_multiplier_interior": 1.0, + "mech_vent_fan_power": 30, + "mech_vent_fan_power_2": 30, + "mech_vent_fan_type": "none", + "mech_vent_fan_type_2": "none", + "mech_vent_flow_rate": 110, + "mech_vent_flow_rate_2": 110, + "mech_vent_hours_in_operation": 24, + "mech_vent_hours_in_operation_2": 24, + "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", + "mech_vent_sensible_recovery_efficiency": 0.72, + "mech_vent_sensible_recovery_efficiency_2": 0.72, + "mech_vent_total_recovery_efficiency": 0.48, + "mech_vent_total_recovery_efficiency_2": 0.48, + "neighbor_back_distance": 0, + "neighbor_back_height": "auto", + "neighbor_front_distance": 0, + "neighbor_front_height": "auto", + "neighbor_left_distance": 0, + "neighbor_left_height": "auto", + "neighbor_right_distance": 0, + "neighbor_right_height": "auto", + "overhangs_back_depth": 0, + "overhangs_back_distance_to_top_of_window": 0, + "overhangs_front_depth": 0, + "overhangs_front_distance_to_top_of_window": 0, + "overhangs_left_depth": 0, + "overhangs_left_distance_to_top_of_window": 0, + "overhangs_right_depth": 0, + "overhangs_right_distance_to_top_of_window": 0, + "plug_loads_other_annual_kwh": "2457.0", + "plug_loads_other_frac_latent": "0.045", + "plug_loads_other_frac_sensible": "0.855", + "plug_loads_other_usage_multiplier": 1.0, + "plug_loads_television_annual_kwh": "620.0", + "plug_loads_television_usage_multiplier": 1.0, + "plug_loads_vehicle_annual_kwh": "auto", + "plug_loads_vehicle_present": false, + "plug_loads_vehicle_usage_multiplier": 0.0, + "plug_loads_well_pump_annual_kwh": "auto", + "plug_loads_well_pump_present": false, + "plug_loads_well_pump_usage_multiplier": 0.0, + "pool_heater_annual_kwh": "auto", + "pool_heater_annual_therm": "auto", + "pool_heater_type": "electric resistance", + "pool_heater_usage_multiplier": 1.0, + "pool_present": false, + "pool_pump_annual_kwh": "auto", + "pool_pump_usage_multiplier": 1.0, + "pv_system_array_azimuth_1": 180, + "pv_system_array_azimuth_2": 180, + "pv_system_array_tilt_1": "20", + "pv_system_array_tilt_2": "20", + "pv_system_inverter_efficiency_1": 0.96, + "pv_system_inverter_efficiency_2": 0.96, + "pv_system_location_1": "auto", + "pv_system_location_2": "auto", + "pv_system_max_power_output_1": 4000, + "pv_system_max_power_output_2": 4000, + "pv_system_module_type_1": "none", + "pv_system_module_type_2": "none", + "pv_system_num_units_served_1": 1, + "pv_system_num_units_served_2": 1, + "pv_system_system_losses_fraction_1": 0.14, + "pv_system_system_losses_fraction_2": 0.14, + "pv_system_tracking_1": "auto", + "pv_system_tracking_2": "auto", + "refrigerator_location": "living space", + "refrigerator_rated_annual_kwh": "650.0", + "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, + "roof_assembly_r": 2.3, + "roof_color": "medium", + "roof_material_type": "asphalt or fiberglass shingles", + "roof_radiant_barrier": false, + "roof_radiant_barrier_grade": "1", + "schedules_type": "default", + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", + "simulation_control_timestep": "60", + "site_type": "suburban", + "skylight_area_back": 0, + "skylight_area_front": 0, + "skylight_area_left": 0, + "skylight_area_right": 0, + "skylight_shgc": 0.45, + "skylight_ufactor": 0.33, + "slab_carpet_fraction": "0.0", + "slab_carpet_r": "0.0", + "slab_perimeter_depth": 0, + "slab_perimeter_insulation_r": 0, + "slab_thickness": "4.0", + "slab_under_insulation_r": 0, + "slab_under_width": 0, + "solar_thermal_collector_area": 40.0, + "solar_thermal_collector_azimuth": 180, + "solar_thermal_collector_loop_type": "liquid direct", + "solar_thermal_collector_rated_optical_efficiency": 0.5, + "solar_thermal_collector_rated_thermal_losses": 0.2799, + "solar_thermal_collector_tilt": "20", + "solar_thermal_collector_type": "evacuated tube", + "solar_thermal_solar_fraction": 0, + "solar_thermal_storage_volume": "auto", + "solar_thermal_system_type": "none", + "wall_assembly_r": 23, + "wall_color": "medium", + "wall_siding_type": "wood siding", + "wall_type": "WoodStud", + "water_fixtures_shower_low_flow": true, + "water_fixtures_sink_low_flow": false, + "water_fixtures_usage_multiplier": 1.0, + "water_heater_efficiency": 0.95, + "water_heater_efficiency_type": "EnergyFactor", + "water_heater_fuel_type": "electricity", + "water_heater_jacket_rvalue": 0, + "water_heater_location": "living space", + "water_heater_num_units_served": 1, + "water_heater_recovery_efficiency": "0.76", + "water_heater_setpoint_temperature": "125", + "water_heater_standby_loss": 0, + "water_heater_tank_volume": "40", + "water_heater_type": "storage water heater", + "weather_station_epw_filepath": "USA_CO_Denver.Intl.AP.725650_TMY3.epw", + "whole_house_fan_flow_rate": 4500, + "whole_house_fan_power": 300, + "whole_house_fan_present": false, + "window_area_back": 108.0, + "window_area_front": 108.0, + "window_area_left": 72.0, + "window_area_right": 72.0, + "window_aspect_ratio": 1.333, + "window_back_wwr": 0, + "window_fraction_operable": 0.67, + "window_front_wwr": 0, + "window_interior_shading_summer": 0.7, + "window_interior_shading_winter": 0.85, + "window_left_wwr": 0, + "window_right_wwr": 0, + "window_shgc": 0.45, + "window_ufactor": 0.33 + }, + "measure_dir_name": "BuildResidentialHPXML" + } + ] +} \ No newline at end of file diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-second-heating-system-fireplace.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-second-heating-system-fireplace-to-heating-system.osw similarity index 83% rename from example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-second-heating-system-fireplace.osw rename to example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-second-heating-system-fireplace-to-heating-system.osw index 094dacc4..3ce2a37e 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-second-heating-system-fireplace.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-second-heating-system-fireplace-to-heating-system.osw @@ -6,58 +6,50 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", "cooling_system_cooling_compressor_type": "single stage", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.73, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, - "cooling_system_type": "central air conditioner", + "cooling_system_type": "none", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -65,8 +57,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -74,11 +65,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "2", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 25.0, @@ -92,17 +82,15 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -133,6 +121,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, @@ -141,6 +130,7 @@ "geometry_num_floors_above_grade": 1, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family detached", @@ -150,25 +140,23 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "64000.0", - "heat_pump_heating_capacity_17F": "auto", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "none", "heating_system_fraction_heat_load_served": 0.75, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "electricity", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "48000.0", "heating_system_heating_capacity_2": "16000.0", - "heating_system_heating_efficiency": 0.92, + "heating_system_heating_efficiency": 1.0, "heating_system_heating_efficiency_2": 1.0, "heating_system_type": "ElectricResistance", "heating_system_type_2": "Fireplace", @@ -185,8 +173,8 @@ "hot_tub_present": false, "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, - "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/extra-second-heating-system-fireplace.xml", - "kitchen_fans_present": false, + "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/extra-second-heating-system-fireplace-to-heating-system.xml", + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -208,14 +196,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -236,18 +222,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -274,21 +256,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -315,10 +295,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "none", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -326,8 +304,6 @@ "water_heater_efficiency": 0.95, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "electricity", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "18767", "water_heater_jacket_rvalue": 0, "water_heater_location": "living space", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-second-heating-system-portable-heater-to-heat-pump.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-second-heating-system-portable-heater-to-heat-pump.osw new file mode 100644 index 00000000..798c254b --- /dev/null +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-second-heating-system-portable-heater-to-heat-pump.osw @@ -0,0 +1,337 @@ +{ + "measure_paths": [ + "../.." + ], + "steps": [ + { + "arguments": { + "air_leakage_house_pressure": 50, + "air_leakage_shielding_of_home": "auto", + "air_leakage_units": "ACH", + "air_leakage_value": 3, + "bathroom_fans_quantity": "0", + "ceiling_assembly_r": 39.3, + "ceiling_fan_cooling_setpoint_temp_offset": 0, + "ceiling_fan_efficiency": "auto", + "ceiling_fan_present": false, + "ceiling_fan_quantity": "auto", + "clothes_dryer_efficiency": "3.73", + "clothes_dryer_efficiency_type": "CombinedEnergyFactor", + "clothes_dryer_fuel_type": "electricity", + "clothes_dryer_location": "living space", + "clothes_dryer_usage_multiplier": 1.0, + "clothes_dryer_vented_flow_rate": "150.0", + "clothes_washer_capacity": "3.2", + "clothes_washer_efficiency": "1.21", + "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", + "clothes_washer_label_annual_gas_cost": "27.0", + "clothes_washer_label_electric_rate": "0.12", + "clothes_washer_label_gas_rate": "1.09", + "clothes_washer_label_usage": "6.0", + "clothes_washer_location": "living space", + "clothes_washer_rated_annual_kwh": "380.0", + "clothes_washer_usage_multiplier": 1.0, + "cooking_range_oven_fuel_type": "electricity", + "cooking_range_oven_is_convection": false, + "cooking_range_oven_is_induction": false, + "cooking_range_oven_location": "living space", + "cooking_range_oven_usage_multiplier": 1.0, + "cooling_system_cooling_capacity": "48000.0", + "cooling_system_cooling_compressor_type": "single stage", + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", + "cooling_system_cooling_sensible_heat_fraction": 0.73, + "cooling_system_fraction_cool_load_served": 1, + "cooling_system_is_ducted": false, + "cooling_system_type": "none", + "dehumidifier_capacity": 40, + "dehumidifier_efficiency": 1.8, + "dehumidifier_efficiency_type": "EnergyFactor", + "dehumidifier_fraction_dehumidification_load_served": 1, + "dehumidifier_rh_setpoint": 0.5, + "dehumidifier_type": "none", + "dhw_distribution_pipe_r": "0.0", + "dhw_distribution_recirc_branch_piping_length": "50", + "dhw_distribution_recirc_control_type": "no control", + "dhw_distribution_recirc_piping_length": "50", + "dhw_distribution_recirc_pump_power": "50", + "dhw_distribution_standard_piping_length": "50", + "dhw_distribution_system_type": "Standard", + "dishwasher_efficiency": "307", + "dishwasher_efficiency_type": "RatedAnnualkWh", + "dishwasher_label_annual_gas_cost": "22.32", + "dishwasher_label_electric_rate": "0.12", + "dishwasher_label_gas_rate": "1.09", + "dishwasher_label_usage": "4.0", + "dishwasher_location": "living space", + "dishwasher_place_setting_capacity": "12", + "dishwasher_usage_multiplier": 1.0, + "door_area": 80.0, + "door_rvalue": 4.4, + "ducts_number_of_return_registers": "2", + "ducts_return_insulation_r": 0.0, + "ducts_return_leakage_units": "CFM25", + "ducts_return_leakage_value": 0.0, + "ducts_return_location": "living space", + "ducts_return_surface_area": "50.0", + "ducts_supply_insulation_r": 4.0, + "ducts_supply_leakage_units": "CFM25", + "ducts_supply_leakage_value": 0.0, + "ducts_supply_location": "living space", + "ducts_supply_surface_area": "150.0", + "dwhr_efficiency": 0.55, + "dwhr_equal_flow": true, + "dwhr_facilities_connected": "none", + "extra_refrigerator_location": "none", + "extra_refrigerator_rated_annual_kwh": "auto", + "extra_refrigerator_usage_multiplier": 1.0, + "floor_assembly_r": 0, + "foundation_wall_insulation_distance_to_bottom": "auto", + "foundation_wall_insulation_distance_to_top": 0.0, + "foundation_wall_insulation_r": 8.9, + "foundation_wall_thickness": "8.0", + "freezer_location": "none", + "freezer_rated_annual_kwh": "auto", + "freezer_usage_multiplier": 1.0, + "fuel_loads_fireplace_annual_therm": "auto", + "fuel_loads_fireplace_frac_latent": "auto", + "fuel_loads_fireplace_frac_sensible": "auto", + "fuel_loads_fireplace_fuel_type": "natural gas", + "fuel_loads_fireplace_present": false, + "fuel_loads_fireplace_usage_multiplier": 0.0, + "fuel_loads_grill_annual_therm": "auto", + "fuel_loads_grill_fuel_type": "natural gas", + "fuel_loads_grill_present": false, + "fuel_loads_grill_usage_multiplier": 0.0, + "fuel_loads_lighting_annual_therm": "auto", + "fuel_loads_lighting_fuel_type": "natural gas", + "fuel_loads_lighting_present": false, + "fuel_loads_lighting_usage_multiplier": 0.0, + "geometry_aspect_ratio": 1.5, + "geometry_attic_type": "UnventedAttic", + "geometry_balcony_depth": 0.0, + "geometry_cfa": 2700.0, + "geometry_corridor_position": "Double-Loaded Interior", + "geometry_corridor_width": 10.0, + "geometry_eaves_depth": 0, + "geometry_foundation_height": 8.0, + "geometry_foundation_height_above_grade": 1.0, + "geometry_foundation_type": "ConditionedBasement", + "geometry_garage_depth": 20.0, + "geometry_garage_position": "Right", + "geometry_garage_protrusion": 0.0, + "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", + "geometry_inset_depth": 0.0, + "geometry_inset_position": "Right", + "geometry_inset_width": 0.0, + "geometry_num_bathrooms": "2", + "geometry_num_bedrooms": 3, + "geometry_num_floors_above_grade": 1, + "geometry_num_occupants": "3", + "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, + "geometry_roof_pitch": "6:12", + "geometry_roof_type": "gable", + "geometry_unit_type": "single-family detached", + "geometry_wall_height": 8.0, + "heat_pump_backup_fuel": "electricity", + "heat_pump_backup_heating_capacity": "34121.0", + "heat_pump_backup_heating_efficiency": 1, + "heat_pump_cooling_capacity": "48000.0", + "heat_pump_cooling_compressor_type": "single stage", + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", + "heat_pump_cooling_sensible_heat_fraction": 0.73, + "heat_pump_fraction_cool_load_served": 1, + "heat_pump_fraction_heat_load_served": 0.75, + "heat_pump_heating_capacity": "48000.0", + "heat_pump_heating_capacity_17_f": "26460.0", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", + "heat_pump_type": "air-to-air", + "heating_system_fraction_heat_load_served": 1, + "heating_system_fraction_heat_load_served_2": 0.25, + "heating_system_fuel": "natural gas", + "heating_system_fuel_2": "electricity", + "heating_system_heating_capacity": "64000.0", + "heating_system_heating_capacity_2": "16000.0", + "heating_system_heating_efficiency": 0.92, + "heating_system_heating_efficiency_2": 1.0, + "heating_system_type": "none", + "heating_system_type_2": "PortableHeater", + "holiday_lighting_daily_kwh": "auto", + "holiday_lighting_period_begin_day_of_month": "auto", + "holiday_lighting_period_begin_month": "auto", + "holiday_lighting_period_end_day_of_month": "auto", + "holiday_lighting_period_end_month": "auto", + "holiday_lighting_present": false, + "hot_tub_heater_annual_kwh": "auto", + "hot_tub_heater_annual_therm": "auto", + "hot_tub_heater_type": "electric resistance", + "hot_tub_heater_usage_multiplier": 1.0, + "hot_tub_present": false, + "hot_tub_pump_annual_kwh": "auto", + "hot_tub_pump_usage_multiplier": 1.0, + "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/extra-second-heating-system-portable-heater-to-heat-pump.xml", + "kitchen_fans_quantity": "0", + "lighting_fraction_cfl_exterior": 0.4, + "lighting_fraction_cfl_garage": 0.4, + "lighting_fraction_cfl_interior": 0.4, + "lighting_fraction_led_exterior": 0.25, + "lighting_fraction_led_garage": 0.25, + "lighting_fraction_led_interior": 0.25, + "lighting_fraction_lfl_exterior": 0.1, + "lighting_fraction_lfl_garage": 0.1, + "lighting_fraction_lfl_interior": 0.1, + "lighting_usage_multiplier_exterior": 1.0, + "lighting_usage_multiplier_garage": 1.0, + "lighting_usage_multiplier_interior": 1.0, + "mech_vent_fan_power": 30, + "mech_vent_fan_power_2": 30, + "mech_vent_fan_type": "none", + "mech_vent_fan_type_2": "none", + "mech_vent_flow_rate": 110, + "mech_vent_flow_rate_2": 110, + "mech_vent_hours_in_operation": 24, + "mech_vent_hours_in_operation_2": 24, + "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", + "mech_vent_sensible_recovery_efficiency": 0.72, + "mech_vent_sensible_recovery_efficiency_2": 0.72, + "mech_vent_total_recovery_efficiency": 0.48, + "mech_vent_total_recovery_efficiency_2": 0.48, + "neighbor_back_distance": 0, + "neighbor_back_height": "auto", + "neighbor_front_distance": 0, + "neighbor_front_height": "auto", + "neighbor_left_distance": 0, + "neighbor_left_height": "auto", + "neighbor_right_distance": 0, + "neighbor_right_height": "auto", + "overhangs_back_depth": 0, + "overhangs_back_distance_to_top_of_window": 0, + "overhangs_front_depth": 0, + "overhangs_front_distance_to_top_of_window": 0, + "overhangs_left_depth": 0, + "overhangs_left_distance_to_top_of_window": 0, + "overhangs_right_depth": 0, + "overhangs_right_distance_to_top_of_window": 0, + "plug_loads_other_annual_kwh": "2457.0", + "plug_loads_other_frac_latent": "0.045", + "plug_loads_other_frac_sensible": "0.855", + "plug_loads_other_usage_multiplier": 1.0, + "plug_loads_television_annual_kwh": "620.0", + "plug_loads_television_usage_multiplier": 1.0, + "plug_loads_vehicle_annual_kwh": "auto", + "plug_loads_vehicle_present": false, + "plug_loads_vehicle_usage_multiplier": 0.0, + "plug_loads_well_pump_annual_kwh": "auto", + "plug_loads_well_pump_present": false, + "plug_loads_well_pump_usage_multiplier": 0.0, + "pool_heater_annual_kwh": "auto", + "pool_heater_annual_therm": "auto", + "pool_heater_type": "electric resistance", + "pool_heater_usage_multiplier": 1.0, + "pool_present": false, + "pool_pump_annual_kwh": "auto", + "pool_pump_usage_multiplier": 1.0, + "pv_system_array_azimuth_1": 180, + "pv_system_array_azimuth_2": 180, + "pv_system_array_tilt_1": "20", + "pv_system_array_tilt_2": "20", + "pv_system_inverter_efficiency_1": 0.96, + "pv_system_inverter_efficiency_2": 0.96, + "pv_system_location_1": "auto", + "pv_system_location_2": "auto", + "pv_system_max_power_output_1": 4000, + "pv_system_max_power_output_2": 4000, + "pv_system_module_type_1": "none", + "pv_system_module_type_2": "none", + "pv_system_num_units_served_1": 1, + "pv_system_num_units_served_2": 1, + "pv_system_system_losses_fraction_1": 0.14, + "pv_system_system_losses_fraction_2": 0.14, + "pv_system_tracking_1": "auto", + "pv_system_tracking_2": "auto", + "refrigerator_location": "living space", + "refrigerator_rated_annual_kwh": "650.0", + "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, + "roof_assembly_r": 2.3, + "roof_color": "medium", + "roof_material_type": "asphalt or fiberglass shingles", + "roof_radiant_barrier": false, + "roof_radiant_barrier_grade": "1", + "schedules_type": "default", + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", + "simulation_control_timestep": "60", + "site_type": "suburban", + "skylight_area_back": 0, + "skylight_area_front": 0, + "skylight_area_left": 0, + "skylight_area_right": 0, + "skylight_shgc": 0.45, + "skylight_ufactor": 0.33, + "slab_carpet_fraction": "0.0", + "slab_carpet_r": "0.0", + "slab_perimeter_depth": 0, + "slab_perimeter_insulation_r": 0, + "slab_thickness": "4.0", + "slab_under_insulation_r": 0, + "slab_under_width": 0, + "solar_thermal_collector_area": 40.0, + "solar_thermal_collector_azimuth": 180, + "solar_thermal_collector_loop_type": "liquid direct", + "solar_thermal_collector_rated_optical_efficiency": 0.5, + "solar_thermal_collector_rated_thermal_losses": 0.2799, + "solar_thermal_collector_tilt": "20", + "solar_thermal_collector_type": "evacuated tube", + "solar_thermal_solar_fraction": 0, + "solar_thermal_storage_volume": "auto", + "solar_thermal_system_type": "none", + "wall_assembly_r": 23, + "wall_color": "medium", + "wall_siding_type": "wood siding", + "wall_type": "WoodStud", + "water_fixtures_shower_low_flow": true, + "water_fixtures_sink_low_flow": false, + "water_fixtures_usage_multiplier": 1.0, + "water_heater_efficiency": 0.95, + "water_heater_efficiency_type": "EnergyFactor", + "water_heater_fuel_type": "electricity", + "water_heater_jacket_rvalue": 0, + "water_heater_location": "living space", + "water_heater_num_units_served": 1, + "water_heater_recovery_efficiency": "0.76", + "water_heater_setpoint_temperature": "125", + "water_heater_standby_loss": 0, + "water_heater_tank_volume": "40", + "water_heater_type": "storage water heater", + "weather_station_epw_filepath": "USA_CO_Denver.Intl.AP.725650_TMY3.epw", + "whole_house_fan_flow_rate": 4500, + "whole_house_fan_power": 300, + "whole_house_fan_present": false, + "window_area_back": 108.0, + "window_area_front": 108.0, + "window_area_left": 72.0, + "window_area_right": 72.0, + "window_aspect_ratio": 1.333, + "window_back_wwr": 0, + "window_fraction_operable": 0.67, + "window_front_wwr": 0, + "window_interior_shading_summer": 0.7, + "window_interior_shading_winter": 0.85, + "window_left_wwr": 0, + "window_right_wwr": 0, + "window_shgc": 0.45, + "window_ufactor": 0.33 + }, + "measure_dir_name": "BuildResidentialHPXML" + } + ] +} \ No newline at end of file diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-second-heating-system-portable-heater.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-second-heating-system-portable-heater-to-heating-system.osw similarity index 83% rename from example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-second-heating-system-portable-heater.osw rename to example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-second-heating-system-portable-heater-to-heating-system.osw index 9fab47ff..f3e1deb8 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-second-heating-system-portable-heater.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-second-heating-system-portable-heater-to-heating-system.osw @@ -6,58 +6,50 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", "cooling_system_cooling_compressor_type": "single stage", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.73, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "central air conditioner", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -65,8 +57,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -74,11 +65,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "2", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 0.0, @@ -92,17 +82,15 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -133,6 +121,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, @@ -141,6 +130,7 @@ "geometry_num_floors_above_grade": 1, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family detached", @@ -150,22 +140,20 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "64000.0", - "heat_pump_heating_capacity_17F": "auto", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "none", "heating_system_fraction_heat_load_served": 0.75, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "electricity", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "48000.0", "heating_system_heating_capacity_2": "16000.0", "heating_system_heating_efficiency": 0.92, @@ -185,8 +173,8 @@ "hot_tub_present": false, "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, - "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/extra-second-heating-system-portable-heater.xml", - "kitchen_fans_present": false, + "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/extra-second-heating-system-portable-heater-to-heating-system.xml", + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -208,14 +196,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -236,18 +222,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -274,21 +256,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -315,10 +295,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "none", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -326,8 +304,6 @@ "water_heater_efficiency": 0.95, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "electricity", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "18767", "water_heater_jacket_rvalue": 0, "water_heater_location": "living space", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-second-refrigerator.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-second-refrigerator.osw index 8171924e..d19302ed 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-second-refrigerator.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-second-refrigerator.osw @@ -6,58 +6,50 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", "cooling_system_cooling_compressor_type": "single stage", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.73, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "central air conditioner", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -65,8 +57,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -74,11 +65,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "2", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 25.0, @@ -92,17 +82,15 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": true, + "extra_refrigerator_location": "living space", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -133,6 +121,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, @@ -141,6 +130,7 @@ "geometry_num_floors_above_grade": 1, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family detached", @@ -150,22 +140,20 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "64000.0", - "heat_pump_heating_capacity_17F": "auto", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "none", "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "natural gas", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.92, @@ -186,7 +174,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/extra-second-refrigerator.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -208,14 +196,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -236,18 +222,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -274,21 +256,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -315,10 +295,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "none", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -326,8 +304,6 @@ "water_heater_efficiency": 0.95, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "electricity", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "18767", "water_heater_jacket_rvalue": 0, "water_heater_location": "living space", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-zero-clothes-washer-kwh.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-zero-clothes-washer-kwh.osw new file mode 100644 index 00000000..16097681 --- /dev/null +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-zero-clothes-washer-kwh.osw @@ -0,0 +1,337 @@ +{ + "measure_paths": [ + "../.." + ], + "steps": [ + { + "arguments": { + "air_leakage_house_pressure": 50, + "air_leakage_shielding_of_home": "auto", + "air_leakage_units": "ACH", + "air_leakage_value": 3, + "bathroom_fans_quantity": "0", + "ceiling_assembly_r": 39.3, + "ceiling_fan_cooling_setpoint_temp_offset": 0, + "ceiling_fan_efficiency": "auto", + "ceiling_fan_present": false, + "ceiling_fan_quantity": "auto", + "clothes_dryer_efficiency": "3.73", + "clothes_dryer_efficiency_type": "CombinedEnergyFactor", + "clothes_dryer_fuel_type": "electricity", + "clothes_dryer_location": "none", + "clothes_dryer_usage_multiplier": 1.0, + "clothes_dryer_vented_flow_rate": "150.0", + "clothes_washer_capacity": "3.2", + "clothes_washer_efficiency": "1.21", + "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", + "clothes_washer_label_annual_gas_cost": "27.0", + "clothes_washer_label_electric_rate": "0.12", + "clothes_washer_label_gas_rate": "1.09", + "clothes_washer_label_usage": "6.0", + "clothes_washer_location": "living space", + "clothes_washer_rated_annual_kwh": "0", + "clothes_washer_usage_multiplier": 1.0, + "cooking_range_oven_fuel_type": "electricity", + "cooking_range_oven_is_convection": false, + "cooking_range_oven_is_induction": false, + "cooking_range_oven_location": "living space", + "cooking_range_oven_usage_multiplier": 1.0, + "cooling_system_cooling_capacity": "48000.0", + "cooling_system_cooling_compressor_type": "single stage", + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", + "cooling_system_cooling_sensible_heat_fraction": 0.73, + "cooling_system_fraction_cool_load_served": 1, + "cooling_system_is_ducted": false, + "cooling_system_type": "central air conditioner", + "dehumidifier_capacity": 40, + "dehumidifier_efficiency": 1.8, + "dehumidifier_efficiency_type": "EnergyFactor", + "dehumidifier_fraction_dehumidification_load_served": 1, + "dehumidifier_rh_setpoint": 0.5, + "dehumidifier_type": "none", + "dhw_distribution_pipe_r": "0.0", + "dhw_distribution_recirc_branch_piping_length": "50", + "dhw_distribution_recirc_control_type": "no control", + "dhw_distribution_recirc_piping_length": "50", + "dhw_distribution_recirc_pump_power": "50", + "dhw_distribution_standard_piping_length": "50", + "dhw_distribution_system_type": "Standard", + "dishwasher_efficiency": "307", + "dishwasher_efficiency_type": "RatedAnnualkWh", + "dishwasher_label_annual_gas_cost": "22.32", + "dishwasher_label_electric_rate": "0.12", + "dishwasher_label_gas_rate": "1.09", + "dishwasher_label_usage": "4.0", + "dishwasher_location": "living space", + "dishwasher_place_setting_capacity": "12", + "dishwasher_usage_multiplier": 1.0, + "door_area": 80.0, + "door_rvalue": 4.4, + "ducts_number_of_return_registers": "2", + "ducts_return_insulation_r": 0.0, + "ducts_return_leakage_units": "CFM25", + "ducts_return_leakage_value": 25.0, + "ducts_return_location": "attic - unvented", + "ducts_return_surface_area": "50.0", + "ducts_supply_insulation_r": 4.0, + "ducts_supply_leakage_units": "CFM25", + "ducts_supply_leakage_value": 75.0, + "ducts_supply_location": "attic - unvented", + "ducts_supply_surface_area": "150.0", + "dwhr_efficiency": 0.55, + "dwhr_equal_flow": true, + "dwhr_facilities_connected": "none", + "extra_refrigerator_location": "none", + "extra_refrigerator_rated_annual_kwh": "auto", + "extra_refrigerator_usage_multiplier": 1.0, + "floor_assembly_r": 0, + "foundation_wall_insulation_distance_to_bottom": "auto", + "foundation_wall_insulation_distance_to_top": 0.0, + "foundation_wall_insulation_r": 8.9, + "foundation_wall_thickness": "8.0", + "freezer_location": "none", + "freezer_rated_annual_kwh": "auto", + "freezer_usage_multiplier": 1.0, + "fuel_loads_fireplace_annual_therm": "auto", + "fuel_loads_fireplace_frac_latent": "auto", + "fuel_loads_fireplace_frac_sensible": "auto", + "fuel_loads_fireplace_fuel_type": "natural gas", + "fuel_loads_fireplace_present": false, + "fuel_loads_fireplace_usage_multiplier": 0.0, + "fuel_loads_grill_annual_therm": "auto", + "fuel_loads_grill_fuel_type": "natural gas", + "fuel_loads_grill_present": false, + "fuel_loads_grill_usage_multiplier": 0.0, + "fuel_loads_lighting_annual_therm": "auto", + "fuel_loads_lighting_fuel_type": "natural gas", + "fuel_loads_lighting_present": false, + "fuel_loads_lighting_usage_multiplier": 0.0, + "geometry_aspect_ratio": 1.5, + "geometry_attic_type": "UnventedAttic", + "geometry_balcony_depth": 0.0, + "geometry_cfa": 2700.0, + "geometry_corridor_position": "Double-Loaded Interior", + "geometry_corridor_width": 10.0, + "geometry_eaves_depth": 0, + "geometry_foundation_height": 8.0, + "geometry_foundation_height_above_grade": 1.0, + "geometry_foundation_type": "ConditionedBasement", + "geometry_garage_depth": 20.0, + "geometry_garage_position": "Right", + "geometry_garage_protrusion": 0.0, + "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", + "geometry_inset_depth": 0.0, + "geometry_inset_position": "Right", + "geometry_inset_width": 0.0, + "geometry_num_bathrooms": "2", + "geometry_num_bedrooms": 3, + "geometry_num_floors_above_grade": 1, + "geometry_num_occupants": "3", + "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, + "geometry_roof_pitch": "6:12", + "geometry_roof_type": "gable", + "geometry_unit_type": "single-family detached", + "geometry_wall_height": 8.0, + "heat_pump_backup_fuel": "none", + "heat_pump_backup_heating_capacity": "34121.0", + "heat_pump_backup_heating_efficiency": 1, + "heat_pump_cooling_capacity": "48000.0", + "heat_pump_cooling_compressor_type": "single stage", + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", + "heat_pump_cooling_sensible_heat_fraction": 0.73, + "heat_pump_fraction_cool_load_served": 1, + "heat_pump_fraction_heat_load_served": 1, + "heat_pump_heating_capacity": "64000.0", + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", + "heat_pump_type": "none", + "heating_system_fraction_heat_load_served": 1, + "heating_system_fraction_heat_load_served_2": 0.25, + "heating_system_fuel": "natural gas", + "heating_system_fuel_2": "electricity", + "heating_system_heating_capacity": "64000.0", + "heating_system_heating_capacity_2": "auto", + "heating_system_heating_efficiency": 0.92, + "heating_system_heating_efficiency_2": 1.0, + "heating_system_type": "Furnace", + "heating_system_type_2": "none", + "holiday_lighting_daily_kwh": "auto", + "holiday_lighting_period_begin_day_of_month": "auto", + "holiday_lighting_period_begin_month": "auto", + "holiday_lighting_period_end_day_of_month": "auto", + "holiday_lighting_period_end_month": "auto", + "holiday_lighting_present": false, + "hot_tub_heater_annual_kwh": "auto", + "hot_tub_heater_annual_therm": "auto", + "hot_tub_heater_type": "electric resistance", + "hot_tub_heater_usage_multiplier": 1.0, + "hot_tub_present": false, + "hot_tub_pump_annual_kwh": "auto", + "hot_tub_pump_usage_multiplier": 1.0, + "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/extra-zero-clothes-washer-kwh.xml", + "kitchen_fans_quantity": "0", + "lighting_fraction_cfl_exterior": 0.4, + "lighting_fraction_cfl_garage": 0.4, + "lighting_fraction_cfl_interior": 0.4, + "lighting_fraction_led_exterior": 0.25, + "lighting_fraction_led_garage": 0.25, + "lighting_fraction_led_interior": 0.25, + "lighting_fraction_lfl_exterior": 0.1, + "lighting_fraction_lfl_garage": 0.1, + "lighting_fraction_lfl_interior": 0.1, + "lighting_usage_multiplier_exterior": 1.0, + "lighting_usage_multiplier_garage": 1.0, + "lighting_usage_multiplier_interior": 1.0, + "mech_vent_fan_power": 30, + "mech_vent_fan_power_2": 30, + "mech_vent_fan_type": "none", + "mech_vent_fan_type_2": "none", + "mech_vent_flow_rate": 110, + "mech_vent_flow_rate_2": 110, + "mech_vent_hours_in_operation": 24, + "mech_vent_hours_in_operation_2": 24, + "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", + "mech_vent_sensible_recovery_efficiency": 0.72, + "mech_vent_sensible_recovery_efficiency_2": 0.72, + "mech_vent_total_recovery_efficiency": 0.48, + "mech_vent_total_recovery_efficiency_2": 0.48, + "neighbor_back_distance": 0, + "neighbor_back_height": "auto", + "neighbor_front_distance": 0, + "neighbor_front_height": "auto", + "neighbor_left_distance": 0, + "neighbor_left_height": "auto", + "neighbor_right_distance": 0, + "neighbor_right_height": "auto", + "overhangs_back_depth": 0, + "overhangs_back_distance_to_top_of_window": 0, + "overhangs_front_depth": 0, + "overhangs_front_distance_to_top_of_window": 0, + "overhangs_left_depth": 0, + "overhangs_left_distance_to_top_of_window": 0, + "overhangs_right_depth": 0, + "overhangs_right_distance_to_top_of_window": 0, + "plug_loads_other_annual_kwh": "2457.0", + "plug_loads_other_frac_latent": "0.045", + "plug_loads_other_frac_sensible": "0.855", + "plug_loads_other_usage_multiplier": 1.0, + "plug_loads_television_annual_kwh": "620.0", + "plug_loads_television_usage_multiplier": 1.0, + "plug_loads_vehicle_annual_kwh": "auto", + "plug_loads_vehicle_present": false, + "plug_loads_vehicle_usage_multiplier": 0.0, + "plug_loads_well_pump_annual_kwh": "auto", + "plug_loads_well_pump_present": false, + "plug_loads_well_pump_usage_multiplier": 0.0, + "pool_heater_annual_kwh": "auto", + "pool_heater_annual_therm": "auto", + "pool_heater_type": "electric resistance", + "pool_heater_usage_multiplier": 1.0, + "pool_present": false, + "pool_pump_annual_kwh": "auto", + "pool_pump_usage_multiplier": 1.0, + "pv_system_array_azimuth_1": 180, + "pv_system_array_azimuth_2": 180, + "pv_system_array_tilt_1": "20", + "pv_system_array_tilt_2": "20", + "pv_system_inverter_efficiency_1": 0.96, + "pv_system_inverter_efficiency_2": 0.96, + "pv_system_location_1": "auto", + "pv_system_location_2": "auto", + "pv_system_max_power_output_1": 4000, + "pv_system_max_power_output_2": 4000, + "pv_system_module_type_1": "none", + "pv_system_module_type_2": "none", + "pv_system_num_units_served_1": 1, + "pv_system_num_units_served_2": 1, + "pv_system_system_losses_fraction_1": 0.14, + "pv_system_system_losses_fraction_2": 0.14, + "pv_system_tracking_1": "auto", + "pv_system_tracking_2": "auto", + "refrigerator_location": "living space", + "refrigerator_rated_annual_kwh": "650.0", + "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, + "roof_assembly_r": 2.3, + "roof_color": "medium", + "roof_material_type": "asphalt or fiberglass shingles", + "roof_radiant_barrier": false, + "roof_radiant_barrier_grade": "1", + "schedules_type": "default", + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", + "simulation_control_timestep": "60", + "site_type": "suburban", + "skylight_area_back": 0, + "skylight_area_front": 0, + "skylight_area_left": 0, + "skylight_area_right": 0, + "skylight_shgc": 0.45, + "skylight_ufactor": 0.33, + "slab_carpet_fraction": "0.0", + "slab_carpet_r": "0.0", + "slab_perimeter_depth": 0, + "slab_perimeter_insulation_r": 0, + "slab_thickness": "4.0", + "slab_under_insulation_r": 0, + "slab_under_width": 0, + "solar_thermal_collector_area": 40.0, + "solar_thermal_collector_azimuth": 180, + "solar_thermal_collector_loop_type": "liquid direct", + "solar_thermal_collector_rated_optical_efficiency": 0.5, + "solar_thermal_collector_rated_thermal_losses": 0.2799, + "solar_thermal_collector_tilt": "20", + "solar_thermal_collector_type": "evacuated tube", + "solar_thermal_solar_fraction": 0, + "solar_thermal_storage_volume": "auto", + "solar_thermal_system_type": "none", + "wall_assembly_r": 23, + "wall_color": "medium", + "wall_siding_type": "wood siding", + "wall_type": "WoodStud", + "water_fixtures_shower_low_flow": true, + "water_fixtures_sink_low_flow": false, + "water_fixtures_usage_multiplier": 1.0, + "water_heater_efficiency": 0.95, + "water_heater_efficiency_type": "EnergyFactor", + "water_heater_fuel_type": "electricity", + "water_heater_jacket_rvalue": 0, + "water_heater_location": "living space", + "water_heater_num_units_served": 1, + "water_heater_recovery_efficiency": "0.76", + "water_heater_setpoint_temperature": "125", + "water_heater_standby_loss": 0, + "water_heater_tank_volume": "40", + "water_heater_type": "storage water heater", + "weather_station_epw_filepath": "USA_CO_Denver.Intl.AP.725650_TMY3.epw", + "whole_house_fan_flow_rate": 4500, + "whole_house_fan_power": 300, + "whole_house_fan_present": false, + "window_area_back": 108.0, + "window_area_front": 108.0, + "window_area_left": 72.0, + "window_area_right": 72.0, + "window_aspect_ratio": 1.333, + "window_back_wwr": 0, + "window_fraction_operable": 0.67, + "window_front_wwr": 0, + "window_interior_shading_summer": 0.7, + "window_interior_shading_winter": 0.85, + "window_left_wwr": 0, + "window_right_wwr": 0, + "window_shgc": 0.45, + "window_ufactor": 0.33 + }, + "measure_dir_name": "BuildResidentialHPXML" + } + ] +} \ No newline at end of file diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-zero-dishwasher-kwh.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-zero-dishwasher-kwh.osw new file mode 100644 index 00000000..e546bc7c --- /dev/null +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-zero-dishwasher-kwh.osw @@ -0,0 +1,337 @@ +{ + "measure_paths": [ + "../.." + ], + "steps": [ + { + "arguments": { + "air_leakage_house_pressure": 50, + "air_leakage_shielding_of_home": "auto", + "air_leakage_units": "ACH", + "air_leakage_value": 3, + "bathroom_fans_quantity": "0", + "ceiling_assembly_r": 39.3, + "ceiling_fan_cooling_setpoint_temp_offset": 0, + "ceiling_fan_efficiency": "auto", + "ceiling_fan_present": false, + "ceiling_fan_quantity": "auto", + "clothes_dryer_efficiency": "3.73", + "clothes_dryer_efficiency_type": "CombinedEnergyFactor", + "clothes_dryer_fuel_type": "electricity", + "clothes_dryer_location": "living space", + "clothes_dryer_usage_multiplier": 1.0, + "clothes_dryer_vented_flow_rate": "150.0", + "clothes_washer_capacity": "3.2", + "clothes_washer_efficiency": "1.21", + "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", + "clothes_washer_label_annual_gas_cost": "27.0", + "clothes_washer_label_electric_rate": "0.12", + "clothes_washer_label_gas_rate": "1.09", + "clothes_washer_label_usage": "6.0", + "clothes_washer_location": "living space", + "clothes_washer_rated_annual_kwh": "380.0", + "clothes_washer_usage_multiplier": 1.0, + "cooking_range_oven_fuel_type": "electricity", + "cooking_range_oven_is_convection": false, + "cooking_range_oven_is_induction": false, + "cooking_range_oven_location": "living space", + "cooking_range_oven_usage_multiplier": 1.0, + "cooling_system_cooling_capacity": "48000.0", + "cooling_system_cooling_compressor_type": "single stage", + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", + "cooling_system_cooling_sensible_heat_fraction": 0.73, + "cooling_system_fraction_cool_load_served": 1, + "cooling_system_is_ducted": false, + "cooling_system_type": "central air conditioner", + "dehumidifier_capacity": 40, + "dehumidifier_efficiency": 1.8, + "dehumidifier_efficiency_type": "EnergyFactor", + "dehumidifier_fraction_dehumidification_load_served": 1, + "dehumidifier_rh_setpoint": 0.5, + "dehumidifier_type": "none", + "dhw_distribution_pipe_r": "0.0", + "dhw_distribution_recirc_branch_piping_length": "50", + "dhw_distribution_recirc_control_type": "no control", + "dhw_distribution_recirc_piping_length": "50", + "dhw_distribution_recirc_pump_power": "50", + "dhw_distribution_standard_piping_length": "50", + "dhw_distribution_system_type": "Standard", + "dishwasher_efficiency": "0", + "dishwasher_efficiency_type": "RatedAnnualkWh", + "dishwasher_label_annual_gas_cost": "22.32", + "dishwasher_label_electric_rate": "0.12", + "dishwasher_label_gas_rate": "1.09", + "dishwasher_label_usage": "4.0", + "dishwasher_location": "living space", + "dishwasher_place_setting_capacity": "12", + "dishwasher_usage_multiplier": 1.0, + "door_area": 80.0, + "door_rvalue": 4.4, + "ducts_number_of_return_registers": "2", + "ducts_return_insulation_r": 0.0, + "ducts_return_leakage_units": "CFM25", + "ducts_return_leakage_value": 25.0, + "ducts_return_location": "attic - unvented", + "ducts_return_surface_area": "50.0", + "ducts_supply_insulation_r": 4.0, + "ducts_supply_leakage_units": "CFM25", + "ducts_supply_leakage_value": 75.0, + "ducts_supply_location": "attic - unvented", + "ducts_supply_surface_area": "150.0", + "dwhr_efficiency": 0.55, + "dwhr_equal_flow": true, + "dwhr_facilities_connected": "none", + "extra_refrigerator_location": "none", + "extra_refrigerator_rated_annual_kwh": "auto", + "extra_refrigerator_usage_multiplier": 1.0, + "floor_assembly_r": 0, + "foundation_wall_insulation_distance_to_bottom": "auto", + "foundation_wall_insulation_distance_to_top": 0.0, + "foundation_wall_insulation_r": 8.9, + "foundation_wall_thickness": "8.0", + "freezer_location": "none", + "freezer_rated_annual_kwh": "auto", + "freezer_usage_multiplier": 1.0, + "fuel_loads_fireplace_annual_therm": "auto", + "fuel_loads_fireplace_frac_latent": "auto", + "fuel_loads_fireplace_frac_sensible": "auto", + "fuel_loads_fireplace_fuel_type": "natural gas", + "fuel_loads_fireplace_present": false, + "fuel_loads_fireplace_usage_multiplier": 0.0, + "fuel_loads_grill_annual_therm": "auto", + "fuel_loads_grill_fuel_type": "natural gas", + "fuel_loads_grill_present": false, + "fuel_loads_grill_usage_multiplier": 0.0, + "fuel_loads_lighting_annual_therm": "auto", + "fuel_loads_lighting_fuel_type": "natural gas", + "fuel_loads_lighting_present": false, + "fuel_loads_lighting_usage_multiplier": 0.0, + "geometry_aspect_ratio": 1.5, + "geometry_attic_type": "UnventedAttic", + "geometry_balcony_depth": 0.0, + "geometry_cfa": 2700.0, + "geometry_corridor_position": "Double-Loaded Interior", + "geometry_corridor_width": 10.0, + "geometry_eaves_depth": 0, + "geometry_foundation_height": 8.0, + "geometry_foundation_height_above_grade": 1.0, + "geometry_foundation_type": "ConditionedBasement", + "geometry_garage_depth": 20.0, + "geometry_garage_position": "Right", + "geometry_garage_protrusion": 0.0, + "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", + "geometry_inset_depth": 0.0, + "geometry_inset_position": "Right", + "geometry_inset_width": 0.0, + "geometry_num_bathrooms": "2", + "geometry_num_bedrooms": 3, + "geometry_num_floors_above_grade": 1, + "geometry_num_occupants": "3", + "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, + "geometry_roof_pitch": "6:12", + "geometry_roof_type": "gable", + "geometry_unit_type": "single-family detached", + "geometry_wall_height": 8.0, + "heat_pump_backup_fuel": "none", + "heat_pump_backup_heating_capacity": "34121.0", + "heat_pump_backup_heating_efficiency": 1, + "heat_pump_cooling_capacity": "48000.0", + "heat_pump_cooling_compressor_type": "single stage", + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", + "heat_pump_cooling_sensible_heat_fraction": 0.73, + "heat_pump_fraction_cool_load_served": 1, + "heat_pump_fraction_heat_load_served": 1, + "heat_pump_heating_capacity": "64000.0", + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", + "heat_pump_type": "none", + "heating_system_fraction_heat_load_served": 1, + "heating_system_fraction_heat_load_served_2": 0.25, + "heating_system_fuel": "natural gas", + "heating_system_fuel_2": "electricity", + "heating_system_heating_capacity": "64000.0", + "heating_system_heating_capacity_2": "auto", + "heating_system_heating_efficiency": 0.92, + "heating_system_heating_efficiency_2": 1.0, + "heating_system_type": "Furnace", + "heating_system_type_2": "none", + "holiday_lighting_daily_kwh": "auto", + "holiday_lighting_period_begin_day_of_month": "auto", + "holiday_lighting_period_begin_month": "auto", + "holiday_lighting_period_end_day_of_month": "auto", + "holiday_lighting_period_end_month": "auto", + "holiday_lighting_present": false, + "hot_tub_heater_annual_kwh": "auto", + "hot_tub_heater_annual_therm": "auto", + "hot_tub_heater_type": "electric resistance", + "hot_tub_heater_usage_multiplier": 1.0, + "hot_tub_present": false, + "hot_tub_pump_annual_kwh": "auto", + "hot_tub_pump_usage_multiplier": 1.0, + "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/extra-zero-dishwasher-kwh.xml", + "kitchen_fans_quantity": "0", + "lighting_fraction_cfl_exterior": 0.4, + "lighting_fraction_cfl_garage": 0.4, + "lighting_fraction_cfl_interior": 0.4, + "lighting_fraction_led_exterior": 0.25, + "lighting_fraction_led_garage": 0.25, + "lighting_fraction_led_interior": 0.25, + "lighting_fraction_lfl_exterior": 0.1, + "lighting_fraction_lfl_garage": 0.1, + "lighting_fraction_lfl_interior": 0.1, + "lighting_usage_multiplier_exterior": 1.0, + "lighting_usage_multiplier_garage": 1.0, + "lighting_usage_multiplier_interior": 1.0, + "mech_vent_fan_power": 30, + "mech_vent_fan_power_2": 30, + "mech_vent_fan_type": "none", + "mech_vent_fan_type_2": "none", + "mech_vent_flow_rate": 110, + "mech_vent_flow_rate_2": 110, + "mech_vent_hours_in_operation": 24, + "mech_vent_hours_in_operation_2": 24, + "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", + "mech_vent_sensible_recovery_efficiency": 0.72, + "mech_vent_sensible_recovery_efficiency_2": 0.72, + "mech_vent_total_recovery_efficiency": 0.48, + "mech_vent_total_recovery_efficiency_2": 0.48, + "neighbor_back_distance": 0, + "neighbor_back_height": "auto", + "neighbor_front_distance": 0, + "neighbor_front_height": "auto", + "neighbor_left_distance": 0, + "neighbor_left_height": "auto", + "neighbor_right_distance": 0, + "neighbor_right_height": "auto", + "overhangs_back_depth": 0, + "overhangs_back_distance_to_top_of_window": 0, + "overhangs_front_depth": 0, + "overhangs_front_distance_to_top_of_window": 0, + "overhangs_left_depth": 0, + "overhangs_left_distance_to_top_of_window": 0, + "overhangs_right_depth": 0, + "overhangs_right_distance_to_top_of_window": 0, + "plug_loads_other_annual_kwh": "2457.0", + "plug_loads_other_frac_latent": "0.045", + "plug_loads_other_frac_sensible": "0.855", + "plug_loads_other_usage_multiplier": 1.0, + "plug_loads_television_annual_kwh": "620.0", + "plug_loads_television_usage_multiplier": 1.0, + "plug_loads_vehicle_annual_kwh": "auto", + "plug_loads_vehicle_present": false, + "plug_loads_vehicle_usage_multiplier": 0.0, + "plug_loads_well_pump_annual_kwh": "auto", + "plug_loads_well_pump_present": false, + "plug_loads_well_pump_usage_multiplier": 0.0, + "pool_heater_annual_kwh": "auto", + "pool_heater_annual_therm": "auto", + "pool_heater_type": "electric resistance", + "pool_heater_usage_multiplier": 1.0, + "pool_present": false, + "pool_pump_annual_kwh": "auto", + "pool_pump_usage_multiplier": 1.0, + "pv_system_array_azimuth_1": 180, + "pv_system_array_azimuth_2": 180, + "pv_system_array_tilt_1": "20", + "pv_system_array_tilt_2": "20", + "pv_system_inverter_efficiency_1": 0.96, + "pv_system_inverter_efficiency_2": 0.96, + "pv_system_location_1": "auto", + "pv_system_location_2": "auto", + "pv_system_max_power_output_1": 4000, + "pv_system_max_power_output_2": 4000, + "pv_system_module_type_1": "none", + "pv_system_module_type_2": "none", + "pv_system_num_units_served_1": 1, + "pv_system_num_units_served_2": 1, + "pv_system_system_losses_fraction_1": 0.14, + "pv_system_system_losses_fraction_2": 0.14, + "pv_system_tracking_1": "auto", + "pv_system_tracking_2": "auto", + "refrigerator_location": "living space", + "refrigerator_rated_annual_kwh": "650.0", + "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, + "roof_assembly_r": 2.3, + "roof_color": "medium", + "roof_material_type": "asphalt or fiberglass shingles", + "roof_radiant_barrier": false, + "roof_radiant_barrier_grade": "1", + "schedules_type": "default", + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", + "simulation_control_timestep": "60", + "site_type": "suburban", + "skylight_area_back": 0, + "skylight_area_front": 0, + "skylight_area_left": 0, + "skylight_area_right": 0, + "skylight_shgc": 0.45, + "skylight_ufactor": 0.33, + "slab_carpet_fraction": "0.0", + "slab_carpet_r": "0.0", + "slab_perimeter_depth": 0, + "slab_perimeter_insulation_r": 0, + "slab_thickness": "4.0", + "slab_under_insulation_r": 0, + "slab_under_width": 0, + "solar_thermal_collector_area": 40.0, + "solar_thermal_collector_azimuth": 180, + "solar_thermal_collector_loop_type": "liquid direct", + "solar_thermal_collector_rated_optical_efficiency": 0.5, + "solar_thermal_collector_rated_thermal_losses": 0.2799, + "solar_thermal_collector_tilt": "20", + "solar_thermal_collector_type": "evacuated tube", + "solar_thermal_solar_fraction": 0, + "solar_thermal_storage_volume": "auto", + "solar_thermal_system_type": "none", + "wall_assembly_r": 23, + "wall_color": "medium", + "wall_siding_type": "wood siding", + "wall_type": "WoodStud", + "water_fixtures_shower_low_flow": true, + "water_fixtures_sink_low_flow": false, + "water_fixtures_usage_multiplier": 1.0, + "water_heater_efficiency": 0.95, + "water_heater_efficiency_type": "EnergyFactor", + "water_heater_fuel_type": "electricity", + "water_heater_jacket_rvalue": 0, + "water_heater_location": "living space", + "water_heater_num_units_served": 1, + "water_heater_recovery_efficiency": "0.76", + "water_heater_setpoint_temperature": "125", + "water_heater_standby_loss": 0, + "water_heater_tank_volume": "40", + "water_heater_type": "storage water heater", + "weather_station_epw_filepath": "USA_CO_Denver.Intl.AP.725650_TMY3.epw", + "whole_house_fan_flow_rate": 4500, + "whole_house_fan_power": 300, + "whole_house_fan_present": false, + "window_area_back": 108.0, + "window_area_front": 108.0, + "window_area_left": 72.0, + "window_area_right": 72.0, + "window_aspect_ratio": 1.333, + "window_back_wwr": 0, + "window_fraction_operable": 0.67, + "window_front_wwr": 0, + "window_interior_shading_summer": 0.7, + "window_interior_shading_winter": 0.85, + "window_left_wwr": 0, + "window_right_wwr": 0, + "window_shgc": 0.45, + "window_ufactor": 0.33 + }, + "measure_dir_name": "BuildResidentialHPXML" + } + ] +} \ No newline at end of file diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-zero-extra-refrigerator-kwh.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-zero-extra-refrigerator-kwh.osw new file mode 100644 index 00000000..fda153f0 --- /dev/null +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-zero-extra-refrigerator-kwh.osw @@ -0,0 +1,337 @@ +{ + "measure_paths": [ + "../.." + ], + "steps": [ + { + "arguments": { + "air_leakage_house_pressure": 50, + "air_leakage_shielding_of_home": "auto", + "air_leakage_units": "ACH", + "air_leakage_value": 3, + "bathroom_fans_quantity": "0", + "ceiling_assembly_r": 39.3, + "ceiling_fan_cooling_setpoint_temp_offset": 0, + "ceiling_fan_efficiency": "auto", + "ceiling_fan_present": false, + "ceiling_fan_quantity": "auto", + "clothes_dryer_efficiency": "3.73", + "clothes_dryer_efficiency_type": "CombinedEnergyFactor", + "clothes_dryer_fuel_type": "electricity", + "clothes_dryer_location": "living space", + "clothes_dryer_usage_multiplier": 1.0, + "clothes_dryer_vented_flow_rate": "150.0", + "clothes_washer_capacity": "3.2", + "clothes_washer_efficiency": "1.21", + "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", + "clothes_washer_label_annual_gas_cost": "27.0", + "clothes_washer_label_electric_rate": "0.12", + "clothes_washer_label_gas_rate": "1.09", + "clothes_washer_label_usage": "6.0", + "clothes_washer_location": "living space", + "clothes_washer_rated_annual_kwh": "380.0", + "clothes_washer_usage_multiplier": 1.0, + "cooking_range_oven_fuel_type": "electricity", + "cooking_range_oven_is_convection": false, + "cooking_range_oven_is_induction": false, + "cooking_range_oven_location": "living space", + "cooking_range_oven_usage_multiplier": 1.0, + "cooling_system_cooling_capacity": "48000.0", + "cooling_system_cooling_compressor_type": "single stage", + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", + "cooling_system_cooling_sensible_heat_fraction": 0.73, + "cooling_system_fraction_cool_load_served": 1, + "cooling_system_is_ducted": false, + "cooling_system_type": "central air conditioner", + "dehumidifier_capacity": 40, + "dehumidifier_efficiency": 1.8, + "dehumidifier_efficiency_type": "EnergyFactor", + "dehumidifier_fraction_dehumidification_load_served": 1, + "dehumidifier_rh_setpoint": 0.5, + "dehumidifier_type": "none", + "dhw_distribution_pipe_r": "0.0", + "dhw_distribution_recirc_branch_piping_length": "50", + "dhw_distribution_recirc_control_type": "no control", + "dhw_distribution_recirc_piping_length": "50", + "dhw_distribution_recirc_pump_power": "50", + "dhw_distribution_standard_piping_length": "50", + "dhw_distribution_system_type": "Standard", + "dishwasher_efficiency": "307", + "dishwasher_efficiency_type": "RatedAnnualkWh", + "dishwasher_label_annual_gas_cost": "22.32", + "dishwasher_label_electric_rate": "0.12", + "dishwasher_label_gas_rate": "1.09", + "dishwasher_label_usage": "4.0", + "dishwasher_location": "living space", + "dishwasher_place_setting_capacity": "12", + "dishwasher_usage_multiplier": 1.0, + "door_area": 80.0, + "door_rvalue": 4.4, + "ducts_number_of_return_registers": "2", + "ducts_return_insulation_r": 0.0, + "ducts_return_leakage_units": "CFM25", + "ducts_return_leakage_value": 25.0, + "ducts_return_location": "attic - unvented", + "ducts_return_surface_area": "50.0", + "ducts_supply_insulation_r": 4.0, + "ducts_supply_leakage_units": "CFM25", + "ducts_supply_leakage_value": 75.0, + "ducts_supply_location": "attic - unvented", + "ducts_supply_surface_area": "150.0", + "dwhr_efficiency": 0.55, + "dwhr_equal_flow": true, + "dwhr_facilities_connected": "none", + "extra_refrigerator_location": "none", + "extra_refrigerator_rated_annual_kwh": "0", + "extra_refrigerator_usage_multiplier": 1.0, + "floor_assembly_r": 0, + "foundation_wall_insulation_distance_to_bottom": "auto", + "foundation_wall_insulation_distance_to_top": 0.0, + "foundation_wall_insulation_r": 8.9, + "foundation_wall_thickness": "8.0", + "freezer_location": "none", + "freezer_rated_annual_kwh": "auto", + "freezer_usage_multiplier": 1.0, + "fuel_loads_fireplace_annual_therm": "auto", + "fuel_loads_fireplace_frac_latent": "auto", + "fuel_loads_fireplace_frac_sensible": "auto", + "fuel_loads_fireplace_fuel_type": "natural gas", + "fuel_loads_fireplace_present": false, + "fuel_loads_fireplace_usage_multiplier": 0.0, + "fuel_loads_grill_annual_therm": "auto", + "fuel_loads_grill_fuel_type": "natural gas", + "fuel_loads_grill_present": false, + "fuel_loads_grill_usage_multiplier": 0.0, + "fuel_loads_lighting_annual_therm": "auto", + "fuel_loads_lighting_fuel_type": "natural gas", + "fuel_loads_lighting_present": false, + "fuel_loads_lighting_usage_multiplier": 0.0, + "geometry_aspect_ratio": 1.5, + "geometry_attic_type": "UnventedAttic", + "geometry_balcony_depth": 0.0, + "geometry_cfa": 2700.0, + "geometry_corridor_position": "Double-Loaded Interior", + "geometry_corridor_width": 10.0, + "geometry_eaves_depth": 0, + "geometry_foundation_height": 8.0, + "geometry_foundation_height_above_grade": 1.0, + "geometry_foundation_type": "ConditionedBasement", + "geometry_garage_depth": 20.0, + "geometry_garage_position": "Right", + "geometry_garage_protrusion": 0.0, + "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", + "geometry_inset_depth": 0.0, + "geometry_inset_position": "Right", + "geometry_inset_width": 0.0, + "geometry_num_bathrooms": "2", + "geometry_num_bedrooms": 3, + "geometry_num_floors_above_grade": 1, + "geometry_num_occupants": "3", + "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, + "geometry_roof_pitch": "6:12", + "geometry_roof_type": "gable", + "geometry_unit_type": "single-family detached", + "geometry_wall_height": 8.0, + "heat_pump_backup_fuel": "none", + "heat_pump_backup_heating_capacity": "34121.0", + "heat_pump_backup_heating_efficiency": 1, + "heat_pump_cooling_capacity": "48000.0", + "heat_pump_cooling_compressor_type": "single stage", + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", + "heat_pump_cooling_sensible_heat_fraction": 0.73, + "heat_pump_fraction_cool_load_served": 1, + "heat_pump_fraction_heat_load_served": 1, + "heat_pump_heating_capacity": "64000.0", + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", + "heat_pump_type": "none", + "heating_system_fraction_heat_load_served": 1, + "heating_system_fraction_heat_load_served_2": 0.25, + "heating_system_fuel": "natural gas", + "heating_system_fuel_2": "electricity", + "heating_system_heating_capacity": "64000.0", + "heating_system_heating_capacity_2": "auto", + "heating_system_heating_efficiency": 0.92, + "heating_system_heating_efficiency_2": 1.0, + "heating_system_type": "Furnace", + "heating_system_type_2": "none", + "holiday_lighting_daily_kwh": "auto", + "holiday_lighting_period_begin_day_of_month": "auto", + "holiday_lighting_period_begin_month": "auto", + "holiday_lighting_period_end_day_of_month": "auto", + "holiday_lighting_period_end_month": "auto", + "holiday_lighting_present": false, + "hot_tub_heater_annual_kwh": "auto", + "hot_tub_heater_annual_therm": "auto", + "hot_tub_heater_type": "electric resistance", + "hot_tub_heater_usage_multiplier": 1.0, + "hot_tub_present": false, + "hot_tub_pump_annual_kwh": "auto", + "hot_tub_pump_usage_multiplier": 1.0, + "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/extra-zero-extra-refrigerator-kwh.xml", + "kitchen_fans_quantity": "0", + "lighting_fraction_cfl_exterior": 0.4, + "lighting_fraction_cfl_garage": 0.4, + "lighting_fraction_cfl_interior": 0.4, + "lighting_fraction_led_exterior": 0.25, + "lighting_fraction_led_garage": 0.25, + "lighting_fraction_led_interior": 0.25, + "lighting_fraction_lfl_exterior": 0.1, + "lighting_fraction_lfl_garage": 0.1, + "lighting_fraction_lfl_interior": 0.1, + "lighting_usage_multiplier_exterior": 1.0, + "lighting_usage_multiplier_garage": 1.0, + "lighting_usage_multiplier_interior": 1.0, + "mech_vent_fan_power": 30, + "mech_vent_fan_power_2": 30, + "mech_vent_fan_type": "none", + "mech_vent_fan_type_2": "none", + "mech_vent_flow_rate": 110, + "mech_vent_flow_rate_2": 110, + "mech_vent_hours_in_operation": 24, + "mech_vent_hours_in_operation_2": 24, + "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", + "mech_vent_sensible_recovery_efficiency": 0.72, + "mech_vent_sensible_recovery_efficiency_2": 0.72, + "mech_vent_total_recovery_efficiency": 0.48, + "mech_vent_total_recovery_efficiency_2": 0.48, + "neighbor_back_distance": 0, + "neighbor_back_height": "auto", + "neighbor_front_distance": 0, + "neighbor_front_height": "auto", + "neighbor_left_distance": 0, + "neighbor_left_height": "auto", + "neighbor_right_distance": 0, + "neighbor_right_height": "auto", + "overhangs_back_depth": 0, + "overhangs_back_distance_to_top_of_window": 0, + "overhangs_front_depth": 0, + "overhangs_front_distance_to_top_of_window": 0, + "overhangs_left_depth": 0, + "overhangs_left_distance_to_top_of_window": 0, + "overhangs_right_depth": 0, + "overhangs_right_distance_to_top_of_window": 0, + "plug_loads_other_annual_kwh": "2457.0", + "plug_loads_other_frac_latent": "0.045", + "plug_loads_other_frac_sensible": "0.855", + "plug_loads_other_usage_multiplier": 1.0, + "plug_loads_television_annual_kwh": "620.0", + "plug_loads_television_usage_multiplier": 1.0, + "plug_loads_vehicle_annual_kwh": "auto", + "plug_loads_vehicle_present": false, + "plug_loads_vehicle_usage_multiplier": 0.0, + "plug_loads_well_pump_annual_kwh": "auto", + "plug_loads_well_pump_present": false, + "plug_loads_well_pump_usage_multiplier": 0.0, + "pool_heater_annual_kwh": "auto", + "pool_heater_annual_therm": "auto", + "pool_heater_type": "electric resistance", + "pool_heater_usage_multiplier": 1.0, + "pool_present": false, + "pool_pump_annual_kwh": "auto", + "pool_pump_usage_multiplier": 1.0, + "pv_system_array_azimuth_1": 180, + "pv_system_array_azimuth_2": 180, + "pv_system_array_tilt_1": "20", + "pv_system_array_tilt_2": "20", + "pv_system_inverter_efficiency_1": 0.96, + "pv_system_inverter_efficiency_2": 0.96, + "pv_system_location_1": "auto", + "pv_system_location_2": "auto", + "pv_system_max_power_output_1": 4000, + "pv_system_max_power_output_2": 4000, + "pv_system_module_type_1": "none", + "pv_system_module_type_2": "none", + "pv_system_num_units_served_1": 1, + "pv_system_num_units_served_2": 1, + "pv_system_system_losses_fraction_1": 0.14, + "pv_system_system_losses_fraction_2": 0.14, + "pv_system_tracking_1": "auto", + "pv_system_tracking_2": "auto", + "refrigerator_location": "living space", + "refrigerator_rated_annual_kwh": "650.0", + "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, + "roof_assembly_r": 2.3, + "roof_color": "medium", + "roof_material_type": "asphalt or fiberglass shingles", + "roof_radiant_barrier": false, + "roof_radiant_barrier_grade": "1", + "schedules_type": "default", + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", + "simulation_control_timestep": "60", + "site_type": "suburban", + "skylight_area_back": 0, + "skylight_area_front": 0, + "skylight_area_left": 0, + "skylight_area_right": 0, + "skylight_shgc": 0.45, + "skylight_ufactor": 0.33, + "slab_carpet_fraction": "0.0", + "slab_carpet_r": "0.0", + "slab_perimeter_depth": 0, + "slab_perimeter_insulation_r": 0, + "slab_thickness": "4.0", + "slab_under_insulation_r": 0, + "slab_under_width": 0, + "solar_thermal_collector_area": 40.0, + "solar_thermal_collector_azimuth": 180, + "solar_thermal_collector_loop_type": "liquid direct", + "solar_thermal_collector_rated_optical_efficiency": 0.5, + "solar_thermal_collector_rated_thermal_losses": 0.2799, + "solar_thermal_collector_tilt": "20", + "solar_thermal_collector_type": "evacuated tube", + "solar_thermal_solar_fraction": 0, + "solar_thermal_storage_volume": "auto", + "solar_thermal_system_type": "none", + "wall_assembly_r": 23, + "wall_color": "medium", + "wall_siding_type": "wood siding", + "wall_type": "WoodStud", + "water_fixtures_shower_low_flow": true, + "water_fixtures_sink_low_flow": false, + "water_fixtures_usage_multiplier": 1.0, + "water_heater_efficiency": 0.95, + "water_heater_efficiency_type": "EnergyFactor", + "water_heater_fuel_type": "electricity", + "water_heater_jacket_rvalue": 0, + "water_heater_location": "living space", + "water_heater_num_units_served": 1, + "water_heater_recovery_efficiency": "0.76", + "water_heater_setpoint_temperature": "125", + "water_heater_standby_loss": 0, + "water_heater_tank_volume": "40", + "water_heater_type": "storage water heater", + "weather_station_epw_filepath": "USA_CO_Denver.Intl.AP.725650_TMY3.epw", + "whole_house_fan_flow_rate": 4500, + "whole_house_fan_power": 300, + "whole_house_fan_present": false, + "window_area_back": 108.0, + "window_area_front": 108.0, + "window_area_left": 72.0, + "window_area_right": 72.0, + "window_aspect_ratio": 1.333, + "window_back_wwr": 0, + "window_fraction_operable": 0.67, + "window_front_wwr": 0, + "window_interior_shading_summer": 0.7, + "window_interior_shading_winter": 0.85, + "window_left_wwr": 0, + "window_right_wwr": 0, + "window_shgc": 0.45, + "window_ufactor": 0.33 + }, + "measure_dir_name": "BuildResidentialHPXML" + } + ] +} \ No newline at end of file diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-zero-freezer-kwh.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-zero-freezer-kwh.osw new file mode 100644 index 00000000..89b94c52 --- /dev/null +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-zero-freezer-kwh.osw @@ -0,0 +1,337 @@ +{ + "measure_paths": [ + "../.." + ], + "steps": [ + { + "arguments": { + "air_leakage_house_pressure": 50, + "air_leakage_shielding_of_home": "auto", + "air_leakage_units": "ACH", + "air_leakage_value": 3, + "bathroom_fans_quantity": "0", + "ceiling_assembly_r": 39.3, + "ceiling_fan_cooling_setpoint_temp_offset": 0, + "ceiling_fan_efficiency": "auto", + "ceiling_fan_present": false, + "ceiling_fan_quantity": "auto", + "clothes_dryer_efficiency": "3.73", + "clothes_dryer_efficiency_type": "CombinedEnergyFactor", + "clothes_dryer_fuel_type": "electricity", + "clothes_dryer_location": "living space", + "clothes_dryer_usage_multiplier": 1.0, + "clothes_dryer_vented_flow_rate": "150.0", + "clothes_washer_capacity": "3.2", + "clothes_washer_efficiency": "1.21", + "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", + "clothes_washer_label_annual_gas_cost": "27.0", + "clothes_washer_label_electric_rate": "0.12", + "clothes_washer_label_gas_rate": "1.09", + "clothes_washer_label_usage": "6.0", + "clothes_washer_location": "living space", + "clothes_washer_rated_annual_kwh": "380.0", + "clothes_washer_usage_multiplier": 1.0, + "cooking_range_oven_fuel_type": "electricity", + "cooking_range_oven_is_convection": false, + "cooking_range_oven_is_induction": false, + "cooking_range_oven_location": "living space", + "cooking_range_oven_usage_multiplier": 1.0, + "cooling_system_cooling_capacity": "48000.0", + "cooling_system_cooling_compressor_type": "single stage", + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", + "cooling_system_cooling_sensible_heat_fraction": 0.73, + "cooling_system_fraction_cool_load_served": 1, + "cooling_system_is_ducted": false, + "cooling_system_type": "central air conditioner", + "dehumidifier_capacity": 40, + "dehumidifier_efficiency": 1.8, + "dehumidifier_efficiency_type": "EnergyFactor", + "dehumidifier_fraction_dehumidification_load_served": 1, + "dehumidifier_rh_setpoint": 0.5, + "dehumidifier_type": "none", + "dhw_distribution_pipe_r": "0.0", + "dhw_distribution_recirc_branch_piping_length": "50", + "dhw_distribution_recirc_control_type": "no control", + "dhw_distribution_recirc_piping_length": "50", + "dhw_distribution_recirc_pump_power": "50", + "dhw_distribution_standard_piping_length": "50", + "dhw_distribution_system_type": "Standard", + "dishwasher_efficiency": "307", + "dishwasher_efficiency_type": "RatedAnnualkWh", + "dishwasher_label_annual_gas_cost": "22.32", + "dishwasher_label_electric_rate": "0.12", + "dishwasher_label_gas_rate": "1.09", + "dishwasher_label_usage": "4.0", + "dishwasher_location": "living space", + "dishwasher_place_setting_capacity": "12", + "dishwasher_usage_multiplier": 1.0, + "door_area": 80.0, + "door_rvalue": 4.4, + "ducts_number_of_return_registers": "2", + "ducts_return_insulation_r": 0.0, + "ducts_return_leakage_units": "CFM25", + "ducts_return_leakage_value": 25.0, + "ducts_return_location": "attic - unvented", + "ducts_return_surface_area": "50.0", + "ducts_supply_insulation_r": 4.0, + "ducts_supply_leakage_units": "CFM25", + "ducts_supply_leakage_value": 75.0, + "ducts_supply_location": "attic - unvented", + "ducts_supply_surface_area": "150.0", + "dwhr_efficiency": 0.55, + "dwhr_equal_flow": true, + "dwhr_facilities_connected": "none", + "extra_refrigerator_location": "none", + "extra_refrigerator_rated_annual_kwh": "auto", + "extra_refrigerator_usage_multiplier": 1.0, + "floor_assembly_r": 0, + "foundation_wall_insulation_distance_to_bottom": "auto", + "foundation_wall_insulation_distance_to_top": 0.0, + "foundation_wall_insulation_r": 8.9, + "foundation_wall_thickness": "8.0", + "freezer_location": "none", + "freezer_rated_annual_kwh": "0", + "freezer_usage_multiplier": 1.0, + "fuel_loads_fireplace_annual_therm": "auto", + "fuel_loads_fireplace_frac_latent": "auto", + "fuel_loads_fireplace_frac_sensible": "auto", + "fuel_loads_fireplace_fuel_type": "natural gas", + "fuel_loads_fireplace_present": false, + "fuel_loads_fireplace_usage_multiplier": 0.0, + "fuel_loads_grill_annual_therm": "auto", + "fuel_loads_grill_fuel_type": "natural gas", + "fuel_loads_grill_present": false, + "fuel_loads_grill_usage_multiplier": 0.0, + "fuel_loads_lighting_annual_therm": "auto", + "fuel_loads_lighting_fuel_type": "natural gas", + "fuel_loads_lighting_present": false, + "fuel_loads_lighting_usage_multiplier": 0.0, + "geometry_aspect_ratio": 1.5, + "geometry_attic_type": "UnventedAttic", + "geometry_balcony_depth": 0.0, + "geometry_cfa": 2700.0, + "geometry_corridor_position": "Double-Loaded Interior", + "geometry_corridor_width": 10.0, + "geometry_eaves_depth": 0, + "geometry_foundation_height": 8.0, + "geometry_foundation_height_above_grade": 1.0, + "geometry_foundation_type": "ConditionedBasement", + "geometry_garage_depth": 20.0, + "geometry_garage_position": "Right", + "geometry_garage_protrusion": 0.0, + "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", + "geometry_inset_depth": 0.0, + "geometry_inset_position": "Right", + "geometry_inset_width": 0.0, + "geometry_num_bathrooms": "2", + "geometry_num_bedrooms": 3, + "geometry_num_floors_above_grade": 1, + "geometry_num_occupants": "3", + "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, + "geometry_roof_pitch": "6:12", + "geometry_roof_type": "gable", + "geometry_unit_type": "single-family detached", + "geometry_wall_height": 8.0, + "heat_pump_backup_fuel": "none", + "heat_pump_backup_heating_capacity": "34121.0", + "heat_pump_backup_heating_efficiency": 1, + "heat_pump_cooling_capacity": "48000.0", + "heat_pump_cooling_compressor_type": "single stage", + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", + "heat_pump_cooling_sensible_heat_fraction": 0.73, + "heat_pump_fraction_cool_load_served": 1, + "heat_pump_fraction_heat_load_served": 1, + "heat_pump_heating_capacity": "64000.0", + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", + "heat_pump_type": "none", + "heating_system_fraction_heat_load_served": 1, + "heating_system_fraction_heat_load_served_2": 0.25, + "heating_system_fuel": "natural gas", + "heating_system_fuel_2": "electricity", + "heating_system_heating_capacity": "64000.0", + "heating_system_heating_capacity_2": "auto", + "heating_system_heating_efficiency": 0.92, + "heating_system_heating_efficiency_2": 1.0, + "heating_system_type": "Furnace", + "heating_system_type_2": "none", + "holiday_lighting_daily_kwh": "auto", + "holiday_lighting_period_begin_day_of_month": "auto", + "holiday_lighting_period_begin_month": "auto", + "holiday_lighting_period_end_day_of_month": "auto", + "holiday_lighting_period_end_month": "auto", + "holiday_lighting_present": false, + "hot_tub_heater_annual_kwh": "auto", + "hot_tub_heater_annual_therm": "auto", + "hot_tub_heater_type": "electric resistance", + "hot_tub_heater_usage_multiplier": 1.0, + "hot_tub_present": false, + "hot_tub_pump_annual_kwh": "auto", + "hot_tub_pump_usage_multiplier": 1.0, + "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/extra-zero-freezer-kwh.xml", + "kitchen_fans_quantity": "0", + "lighting_fraction_cfl_exterior": 0.4, + "lighting_fraction_cfl_garage": 0.4, + "lighting_fraction_cfl_interior": 0.4, + "lighting_fraction_led_exterior": 0.25, + "lighting_fraction_led_garage": 0.25, + "lighting_fraction_led_interior": 0.25, + "lighting_fraction_lfl_exterior": 0.1, + "lighting_fraction_lfl_garage": 0.1, + "lighting_fraction_lfl_interior": 0.1, + "lighting_usage_multiplier_exterior": 1.0, + "lighting_usage_multiplier_garage": 1.0, + "lighting_usage_multiplier_interior": 1.0, + "mech_vent_fan_power": 30, + "mech_vent_fan_power_2": 30, + "mech_vent_fan_type": "none", + "mech_vent_fan_type_2": "none", + "mech_vent_flow_rate": 110, + "mech_vent_flow_rate_2": 110, + "mech_vent_hours_in_operation": 24, + "mech_vent_hours_in_operation_2": 24, + "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", + "mech_vent_sensible_recovery_efficiency": 0.72, + "mech_vent_sensible_recovery_efficiency_2": 0.72, + "mech_vent_total_recovery_efficiency": 0.48, + "mech_vent_total_recovery_efficiency_2": 0.48, + "neighbor_back_distance": 0, + "neighbor_back_height": "auto", + "neighbor_front_distance": 0, + "neighbor_front_height": "auto", + "neighbor_left_distance": 0, + "neighbor_left_height": "auto", + "neighbor_right_distance": 0, + "neighbor_right_height": "auto", + "overhangs_back_depth": 0, + "overhangs_back_distance_to_top_of_window": 0, + "overhangs_front_depth": 0, + "overhangs_front_distance_to_top_of_window": 0, + "overhangs_left_depth": 0, + "overhangs_left_distance_to_top_of_window": 0, + "overhangs_right_depth": 0, + "overhangs_right_distance_to_top_of_window": 0, + "plug_loads_other_annual_kwh": "2457.0", + "plug_loads_other_frac_latent": "0.045", + "plug_loads_other_frac_sensible": "0.855", + "plug_loads_other_usage_multiplier": 1.0, + "plug_loads_television_annual_kwh": "620.0", + "plug_loads_television_usage_multiplier": 1.0, + "plug_loads_vehicle_annual_kwh": "auto", + "plug_loads_vehicle_present": false, + "plug_loads_vehicle_usage_multiplier": 0.0, + "plug_loads_well_pump_annual_kwh": "auto", + "plug_loads_well_pump_present": false, + "plug_loads_well_pump_usage_multiplier": 0.0, + "pool_heater_annual_kwh": "auto", + "pool_heater_annual_therm": "auto", + "pool_heater_type": "electric resistance", + "pool_heater_usage_multiplier": 1.0, + "pool_present": false, + "pool_pump_annual_kwh": "auto", + "pool_pump_usage_multiplier": 1.0, + "pv_system_array_azimuth_1": 180, + "pv_system_array_azimuth_2": 180, + "pv_system_array_tilt_1": "20", + "pv_system_array_tilt_2": "20", + "pv_system_inverter_efficiency_1": 0.96, + "pv_system_inverter_efficiency_2": 0.96, + "pv_system_location_1": "auto", + "pv_system_location_2": "auto", + "pv_system_max_power_output_1": 4000, + "pv_system_max_power_output_2": 4000, + "pv_system_module_type_1": "none", + "pv_system_module_type_2": "none", + "pv_system_num_units_served_1": 1, + "pv_system_num_units_served_2": 1, + "pv_system_system_losses_fraction_1": 0.14, + "pv_system_system_losses_fraction_2": 0.14, + "pv_system_tracking_1": "auto", + "pv_system_tracking_2": "auto", + "refrigerator_location": "living space", + "refrigerator_rated_annual_kwh": "650.0", + "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, + "roof_assembly_r": 2.3, + "roof_color": "medium", + "roof_material_type": "asphalt or fiberglass shingles", + "roof_radiant_barrier": false, + "roof_radiant_barrier_grade": "1", + "schedules_type": "default", + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", + "simulation_control_timestep": "60", + "site_type": "suburban", + "skylight_area_back": 0, + "skylight_area_front": 0, + "skylight_area_left": 0, + "skylight_area_right": 0, + "skylight_shgc": 0.45, + "skylight_ufactor": 0.33, + "slab_carpet_fraction": "0.0", + "slab_carpet_r": "0.0", + "slab_perimeter_depth": 0, + "slab_perimeter_insulation_r": 0, + "slab_thickness": "4.0", + "slab_under_insulation_r": 0, + "slab_under_width": 0, + "solar_thermal_collector_area": 40.0, + "solar_thermal_collector_azimuth": 180, + "solar_thermal_collector_loop_type": "liquid direct", + "solar_thermal_collector_rated_optical_efficiency": 0.5, + "solar_thermal_collector_rated_thermal_losses": 0.2799, + "solar_thermal_collector_tilt": "20", + "solar_thermal_collector_type": "evacuated tube", + "solar_thermal_solar_fraction": 0, + "solar_thermal_storage_volume": "auto", + "solar_thermal_system_type": "none", + "wall_assembly_r": 23, + "wall_color": "medium", + "wall_siding_type": "wood siding", + "wall_type": "WoodStud", + "water_fixtures_shower_low_flow": true, + "water_fixtures_sink_low_flow": false, + "water_fixtures_usage_multiplier": 1.0, + "water_heater_efficiency": 0.95, + "water_heater_efficiency_type": "EnergyFactor", + "water_heater_fuel_type": "electricity", + "water_heater_jacket_rvalue": 0, + "water_heater_location": "living space", + "water_heater_num_units_served": 1, + "water_heater_recovery_efficiency": "0.76", + "water_heater_setpoint_temperature": "125", + "water_heater_standby_loss": 0, + "water_heater_tank_volume": "40", + "water_heater_type": "storage water heater", + "weather_station_epw_filepath": "USA_CO_Denver.Intl.AP.725650_TMY3.epw", + "whole_house_fan_flow_rate": 4500, + "whole_house_fan_power": 300, + "whole_house_fan_present": false, + "window_area_back": 108.0, + "window_area_front": 108.0, + "window_area_left": 72.0, + "window_area_right": 72.0, + "window_aspect_ratio": 1.333, + "window_back_wwr": 0, + "window_fraction_operable": 0.67, + "window_front_wwr": 0, + "window_interior_shading_summer": 0.7, + "window_interior_shading_winter": 0.85, + "window_left_wwr": 0, + "window_right_wwr": 0, + "window_shgc": 0.45, + "window_ufactor": 0.33 + }, + "measure_dir_name": "BuildResidentialHPXML" + } + ] +} \ No newline at end of file diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-zero-refrigerator-kwh.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-zero-refrigerator-kwh.osw new file mode 100644 index 00000000..12c44e32 --- /dev/null +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-zero-refrigerator-kwh.osw @@ -0,0 +1,337 @@ +{ + "measure_paths": [ + "../.." + ], + "steps": [ + { + "arguments": { + "air_leakage_house_pressure": 50, + "air_leakage_shielding_of_home": "auto", + "air_leakage_units": "ACH", + "air_leakage_value": 3, + "bathroom_fans_quantity": "0", + "ceiling_assembly_r": 39.3, + "ceiling_fan_cooling_setpoint_temp_offset": 0, + "ceiling_fan_efficiency": "auto", + "ceiling_fan_present": false, + "ceiling_fan_quantity": "auto", + "clothes_dryer_efficiency": "3.73", + "clothes_dryer_efficiency_type": "CombinedEnergyFactor", + "clothes_dryer_fuel_type": "electricity", + "clothes_dryer_location": "living space", + "clothes_dryer_usage_multiplier": 1.0, + "clothes_dryer_vented_flow_rate": "150.0", + "clothes_washer_capacity": "3.2", + "clothes_washer_efficiency": "1.21", + "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", + "clothes_washer_label_annual_gas_cost": "27.0", + "clothes_washer_label_electric_rate": "0.12", + "clothes_washer_label_gas_rate": "1.09", + "clothes_washer_label_usage": "6.0", + "clothes_washer_location": "living space", + "clothes_washer_rated_annual_kwh": "380.0", + "clothes_washer_usage_multiplier": 1.0, + "cooking_range_oven_fuel_type": "electricity", + "cooking_range_oven_is_convection": false, + "cooking_range_oven_is_induction": false, + "cooking_range_oven_location": "living space", + "cooking_range_oven_usage_multiplier": 1.0, + "cooling_system_cooling_capacity": "48000.0", + "cooling_system_cooling_compressor_type": "single stage", + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", + "cooling_system_cooling_sensible_heat_fraction": 0.73, + "cooling_system_fraction_cool_load_served": 1, + "cooling_system_is_ducted": false, + "cooling_system_type": "central air conditioner", + "dehumidifier_capacity": 40, + "dehumidifier_efficiency": 1.8, + "dehumidifier_efficiency_type": "EnergyFactor", + "dehumidifier_fraction_dehumidification_load_served": 1, + "dehumidifier_rh_setpoint": 0.5, + "dehumidifier_type": "none", + "dhw_distribution_pipe_r": "0.0", + "dhw_distribution_recirc_branch_piping_length": "50", + "dhw_distribution_recirc_control_type": "no control", + "dhw_distribution_recirc_piping_length": "50", + "dhw_distribution_recirc_pump_power": "50", + "dhw_distribution_standard_piping_length": "50", + "dhw_distribution_system_type": "Standard", + "dishwasher_efficiency": "307", + "dishwasher_efficiency_type": "RatedAnnualkWh", + "dishwasher_label_annual_gas_cost": "22.32", + "dishwasher_label_electric_rate": "0.12", + "dishwasher_label_gas_rate": "1.09", + "dishwasher_label_usage": "4.0", + "dishwasher_location": "living space", + "dishwasher_place_setting_capacity": "12", + "dishwasher_usage_multiplier": 1.0, + "door_area": 80.0, + "door_rvalue": 4.4, + "ducts_number_of_return_registers": "2", + "ducts_return_insulation_r": 0.0, + "ducts_return_leakage_units": "CFM25", + "ducts_return_leakage_value": 25.0, + "ducts_return_location": "attic - unvented", + "ducts_return_surface_area": "50.0", + "ducts_supply_insulation_r": 4.0, + "ducts_supply_leakage_units": "CFM25", + "ducts_supply_leakage_value": 75.0, + "ducts_supply_location": "attic - unvented", + "ducts_supply_surface_area": "150.0", + "dwhr_efficiency": 0.55, + "dwhr_equal_flow": true, + "dwhr_facilities_connected": "none", + "extra_refrigerator_location": "none", + "extra_refrigerator_rated_annual_kwh": "auto", + "extra_refrigerator_usage_multiplier": 1.0, + "floor_assembly_r": 0, + "foundation_wall_insulation_distance_to_bottom": "auto", + "foundation_wall_insulation_distance_to_top": 0.0, + "foundation_wall_insulation_r": 8.9, + "foundation_wall_thickness": "8.0", + "freezer_location": "none", + "freezer_rated_annual_kwh": "auto", + "freezer_usage_multiplier": 1.0, + "fuel_loads_fireplace_annual_therm": "auto", + "fuel_loads_fireplace_frac_latent": "auto", + "fuel_loads_fireplace_frac_sensible": "auto", + "fuel_loads_fireplace_fuel_type": "natural gas", + "fuel_loads_fireplace_present": false, + "fuel_loads_fireplace_usage_multiplier": 0.0, + "fuel_loads_grill_annual_therm": "auto", + "fuel_loads_grill_fuel_type": "natural gas", + "fuel_loads_grill_present": false, + "fuel_loads_grill_usage_multiplier": 0.0, + "fuel_loads_lighting_annual_therm": "auto", + "fuel_loads_lighting_fuel_type": "natural gas", + "fuel_loads_lighting_present": false, + "fuel_loads_lighting_usage_multiplier": 0.0, + "geometry_aspect_ratio": 1.5, + "geometry_attic_type": "UnventedAttic", + "geometry_balcony_depth": 0.0, + "geometry_cfa": 2700.0, + "geometry_corridor_position": "Double-Loaded Interior", + "geometry_corridor_width": 10.0, + "geometry_eaves_depth": 0, + "geometry_foundation_height": 8.0, + "geometry_foundation_height_above_grade": 1.0, + "geometry_foundation_type": "ConditionedBasement", + "geometry_garage_depth": 20.0, + "geometry_garage_position": "Right", + "geometry_garage_protrusion": 0.0, + "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", + "geometry_inset_depth": 0.0, + "geometry_inset_position": "Right", + "geometry_inset_width": 0.0, + "geometry_num_bathrooms": "2", + "geometry_num_bedrooms": 3, + "geometry_num_floors_above_grade": 1, + "geometry_num_occupants": "3", + "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, + "geometry_roof_pitch": "6:12", + "geometry_roof_type": "gable", + "geometry_unit_type": "single-family detached", + "geometry_wall_height": 8.0, + "heat_pump_backup_fuel": "none", + "heat_pump_backup_heating_capacity": "34121.0", + "heat_pump_backup_heating_efficiency": 1, + "heat_pump_cooling_capacity": "48000.0", + "heat_pump_cooling_compressor_type": "single stage", + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", + "heat_pump_cooling_sensible_heat_fraction": 0.73, + "heat_pump_fraction_cool_load_served": 1, + "heat_pump_fraction_heat_load_served": 1, + "heat_pump_heating_capacity": "64000.0", + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", + "heat_pump_type": "none", + "heating_system_fraction_heat_load_served": 1, + "heating_system_fraction_heat_load_served_2": 0.25, + "heating_system_fuel": "natural gas", + "heating_system_fuel_2": "electricity", + "heating_system_heating_capacity": "64000.0", + "heating_system_heating_capacity_2": "auto", + "heating_system_heating_efficiency": 0.92, + "heating_system_heating_efficiency_2": 1.0, + "heating_system_type": "Furnace", + "heating_system_type_2": "none", + "holiday_lighting_daily_kwh": "auto", + "holiday_lighting_period_begin_day_of_month": "auto", + "holiday_lighting_period_begin_month": "auto", + "holiday_lighting_period_end_day_of_month": "auto", + "holiday_lighting_period_end_month": "auto", + "holiday_lighting_present": false, + "hot_tub_heater_annual_kwh": "auto", + "hot_tub_heater_annual_therm": "auto", + "hot_tub_heater_type": "electric resistance", + "hot_tub_heater_usage_multiplier": 1.0, + "hot_tub_present": false, + "hot_tub_pump_annual_kwh": "auto", + "hot_tub_pump_usage_multiplier": 1.0, + "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/extra-zero-refrigerator-kwh.xml", + "kitchen_fans_quantity": "0", + "lighting_fraction_cfl_exterior": 0.4, + "lighting_fraction_cfl_garage": 0.4, + "lighting_fraction_cfl_interior": 0.4, + "lighting_fraction_led_exterior": 0.25, + "lighting_fraction_led_garage": 0.25, + "lighting_fraction_led_interior": 0.25, + "lighting_fraction_lfl_exterior": 0.1, + "lighting_fraction_lfl_garage": 0.1, + "lighting_fraction_lfl_interior": 0.1, + "lighting_usage_multiplier_exterior": 1.0, + "lighting_usage_multiplier_garage": 1.0, + "lighting_usage_multiplier_interior": 1.0, + "mech_vent_fan_power": 30, + "mech_vent_fan_power_2": 30, + "mech_vent_fan_type": "none", + "mech_vent_fan_type_2": "none", + "mech_vent_flow_rate": 110, + "mech_vent_flow_rate_2": 110, + "mech_vent_hours_in_operation": 24, + "mech_vent_hours_in_operation_2": 24, + "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", + "mech_vent_sensible_recovery_efficiency": 0.72, + "mech_vent_sensible_recovery_efficiency_2": 0.72, + "mech_vent_total_recovery_efficiency": 0.48, + "mech_vent_total_recovery_efficiency_2": 0.48, + "neighbor_back_distance": 0, + "neighbor_back_height": "auto", + "neighbor_front_distance": 0, + "neighbor_front_height": "auto", + "neighbor_left_distance": 0, + "neighbor_left_height": "auto", + "neighbor_right_distance": 0, + "neighbor_right_height": "auto", + "overhangs_back_depth": 0, + "overhangs_back_distance_to_top_of_window": 0, + "overhangs_front_depth": 0, + "overhangs_front_distance_to_top_of_window": 0, + "overhangs_left_depth": 0, + "overhangs_left_distance_to_top_of_window": 0, + "overhangs_right_depth": 0, + "overhangs_right_distance_to_top_of_window": 0, + "plug_loads_other_annual_kwh": "2457.0", + "plug_loads_other_frac_latent": "0.045", + "plug_loads_other_frac_sensible": "0.855", + "plug_loads_other_usage_multiplier": 1.0, + "plug_loads_television_annual_kwh": "620.0", + "plug_loads_television_usage_multiplier": 1.0, + "plug_loads_vehicle_annual_kwh": "auto", + "plug_loads_vehicle_present": false, + "plug_loads_vehicle_usage_multiplier": 0.0, + "plug_loads_well_pump_annual_kwh": "auto", + "plug_loads_well_pump_present": false, + "plug_loads_well_pump_usage_multiplier": 0.0, + "pool_heater_annual_kwh": "auto", + "pool_heater_annual_therm": "auto", + "pool_heater_type": "electric resistance", + "pool_heater_usage_multiplier": 1.0, + "pool_present": false, + "pool_pump_annual_kwh": "auto", + "pool_pump_usage_multiplier": 1.0, + "pv_system_array_azimuth_1": 180, + "pv_system_array_azimuth_2": 180, + "pv_system_array_tilt_1": "20", + "pv_system_array_tilt_2": "20", + "pv_system_inverter_efficiency_1": 0.96, + "pv_system_inverter_efficiency_2": 0.96, + "pv_system_location_1": "auto", + "pv_system_location_2": "auto", + "pv_system_max_power_output_1": 4000, + "pv_system_max_power_output_2": 4000, + "pv_system_module_type_1": "none", + "pv_system_module_type_2": "none", + "pv_system_num_units_served_1": 1, + "pv_system_num_units_served_2": 1, + "pv_system_system_losses_fraction_1": 0.14, + "pv_system_system_losses_fraction_2": 0.14, + "pv_system_tracking_1": "auto", + "pv_system_tracking_2": "auto", + "refrigerator_location": "living space", + "refrigerator_rated_annual_kwh": "0", + "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, + "roof_assembly_r": 2.3, + "roof_color": "medium", + "roof_material_type": "asphalt or fiberglass shingles", + "roof_radiant_barrier": false, + "roof_radiant_barrier_grade": "1", + "schedules_type": "default", + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", + "simulation_control_timestep": "60", + "site_type": "suburban", + "skylight_area_back": 0, + "skylight_area_front": 0, + "skylight_area_left": 0, + "skylight_area_right": 0, + "skylight_shgc": 0.45, + "skylight_ufactor": 0.33, + "slab_carpet_fraction": "0.0", + "slab_carpet_r": "0.0", + "slab_perimeter_depth": 0, + "slab_perimeter_insulation_r": 0, + "slab_thickness": "4.0", + "slab_under_insulation_r": 0, + "slab_under_width": 0, + "solar_thermal_collector_area": 40.0, + "solar_thermal_collector_azimuth": 180, + "solar_thermal_collector_loop_type": "liquid direct", + "solar_thermal_collector_rated_optical_efficiency": 0.5, + "solar_thermal_collector_rated_thermal_losses": 0.2799, + "solar_thermal_collector_tilt": "20", + "solar_thermal_collector_type": "evacuated tube", + "solar_thermal_solar_fraction": 0, + "solar_thermal_storage_volume": "auto", + "solar_thermal_system_type": "none", + "wall_assembly_r": 23, + "wall_color": "medium", + "wall_siding_type": "wood siding", + "wall_type": "WoodStud", + "water_fixtures_shower_low_flow": true, + "water_fixtures_sink_low_flow": false, + "water_fixtures_usage_multiplier": 1.0, + "water_heater_efficiency": 0.95, + "water_heater_efficiency_type": "EnergyFactor", + "water_heater_fuel_type": "electricity", + "water_heater_jacket_rvalue": 0, + "water_heater_location": "living space", + "water_heater_num_units_served": 1, + "water_heater_recovery_efficiency": "0.76", + "water_heater_setpoint_temperature": "125", + "water_heater_standby_loss": 0, + "water_heater_tank_volume": "40", + "water_heater_type": "storage water heater", + "weather_station_epw_filepath": "USA_CO_Denver.Intl.AP.725650_TMY3.epw", + "whole_house_fan_flow_rate": 4500, + "whole_house_fan_power": 300, + "whole_house_fan_present": false, + "window_area_back": 108.0, + "window_area_front": 108.0, + "window_area_left": 72.0, + "window_area_right": 72.0, + "window_aspect_ratio": 1.333, + "window_back_wwr": 0, + "window_fraction_operable": 0.67, + "window_front_wwr": 0, + "window_interior_shading_summer": 0.7, + "window_interior_shading_winter": 0.85, + "window_left_wwr": 0, + "window_right_wwr": 0, + "window_shgc": 0.45, + "window_ufactor": 0.33 + }, + "measure_dir_name": "BuildResidentialHPXML" + } + ] +} \ No newline at end of file diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/conditioned-attic-with-floor-insulation.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/conditioned-attic-with-floor-insulation.osw index 8fc95e3f..93c0ffdb 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/conditioned-attic-with-floor-insulation.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/conditioned-attic-with-floor-insulation.osw @@ -6,58 +6,50 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", "cooling_system_cooling_compressor_type": "single stage", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.73, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "central air conditioner", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -65,8 +57,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -74,35 +65,32 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "2", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 25.0, - "ducts_return_location": "attic - unvented", + "ducts_return_location": "living space", "ducts_return_surface_area": "50.0", "ducts_supply_insulation_r": 4.0, "ducts_supply_leakage_units": "CFM25", "ducts_supply_leakage_value": 75.0, - "ducts_supply_location": "attic - unvented", + "ducts_supply_location": "living space", "ducts_supply_surface_area": "150.0", "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -133,14 +121,16 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, "geometry_num_bathrooms": "2", "geometry_num_bedrooms": 3, - "geometry_num_floors_above_grade": 1, + "geometry_num_floors_above_grade": 2, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family detached", @@ -150,22 +140,20 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "64000.0", - "heat_pump_heating_capacity_17F": "auto", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "none", "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "natural gas", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.92, @@ -186,7 +174,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/conditioned-attic-with-floor-insulation.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -208,14 +196,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -236,18 +222,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -274,21 +256,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -315,10 +295,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "none", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -326,8 +304,6 @@ "water_heater_efficiency": 0.95, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "electricity", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "18767", "water_heater_jacket_rvalue": 0, "water_heater_location": "living space", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/conditioned-attic-with-one-floor-above-grade.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/conditioned-attic-with-one-floor-above-grade.osw new file mode 100644 index 00000000..bb3a9deb --- /dev/null +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/conditioned-attic-with-one-floor-above-grade.osw @@ -0,0 +1,337 @@ +{ + "measure_paths": [ + "../.." + ], + "steps": [ + { + "arguments": { + "air_leakage_house_pressure": 50, + "air_leakage_shielding_of_home": "auto", + "air_leakage_units": "ACH", + "air_leakage_value": 3, + "bathroom_fans_quantity": "0", + "ceiling_assembly_r": 0.0, + "ceiling_fan_cooling_setpoint_temp_offset": 0, + "ceiling_fan_efficiency": "auto", + "ceiling_fan_present": false, + "ceiling_fan_quantity": "auto", + "clothes_dryer_efficiency": "3.73", + "clothes_dryer_efficiency_type": "CombinedEnergyFactor", + "clothes_dryer_fuel_type": "electricity", + "clothes_dryer_location": "living space", + "clothes_dryer_usage_multiplier": 1.0, + "clothes_dryer_vented_flow_rate": "150.0", + "clothes_washer_capacity": "3.2", + "clothes_washer_efficiency": "1.21", + "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", + "clothes_washer_label_annual_gas_cost": "27.0", + "clothes_washer_label_electric_rate": "0.12", + "clothes_washer_label_gas_rate": "1.09", + "clothes_washer_label_usage": "6.0", + "clothes_washer_location": "living space", + "clothes_washer_rated_annual_kwh": "380.0", + "clothes_washer_usage_multiplier": 1.0, + "cooking_range_oven_fuel_type": "electricity", + "cooking_range_oven_is_convection": false, + "cooking_range_oven_is_induction": false, + "cooking_range_oven_location": "living space", + "cooking_range_oven_usage_multiplier": 1.0, + "cooling_system_cooling_capacity": "48000.0", + "cooling_system_cooling_compressor_type": "single stage", + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", + "cooling_system_cooling_sensible_heat_fraction": 0.73, + "cooling_system_fraction_cool_load_served": 1, + "cooling_system_is_ducted": false, + "cooling_system_type": "central air conditioner", + "dehumidifier_capacity": 40, + "dehumidifier_efficiency": 1.8, + "dehumidifier_efficiency_type": "EnergyFactor", + "dehumidifier_fraction_dehumidification_load_served": 1, + "dehumidifier_rh_setpoint": 0.5, + "dehumidifier_type": "none", + "dhw_distribution_pipe_r": "0.0", + "dhw_distribution_recirc_branch_piping_length": "50", + "dhw_distribution_recirc_control_type": "no control", + "dhw_distribution_recirc_piping_length": "50", + "dhw_distribution_recirc_pump_power": "50", + "dhw_distribution_standard_piping_length": "50", + "dhw_distribution_system_type": "Standard", + "dishwasher_efficiency": "307", + "dishwasher_efficiency_type": "RatedAnnualkWh", + "dishwasher_label_annual_gas_cost": "22.32", + "dishwasher_label_electric_rate": "0.12", + "dishwasher_label_gas_rate": "1.09", + "dishwasher_label_usage": "4.0", + "dishwasher_location": "living space", + "dishwasher_place_setting_capacity": "12", + "dishwasher_usage_multiplier": 1.0, + "door_area": 80.0, + "door_rvalue": 4.4, + "ducts_number_of_return_registers": "2", + "ducts_return_insulation_r": 0.0, + "ducts_return_leakage_units": "CFM25", + "ducts_return_leakage_value": 25.0, + "ducts_return_location": "attic - unvented", + "ducts_return_surface_area": "50.0", + "ducts_supply_insulation_r": 4.0, + "ducts_supply_leakage_units": "CFM25", + "ducts_supply_leakage_value": 75.0, + "ducts_supply_location": "attic - unvented", + "ducts_supply_surface_area": "150.0", + "dwhr_efficiency": 0.55, + "dwhr_equal_flow": true, + "dwhr_facilities_connected": "none", + "extra_refrigerator_location": "none", + "extra_refrigerator_rated_annual_kwh": "auto", + "extra_refrigerator_usage_multiplier": 1.0, + "floor_assembly_r": 0, + "foundation_wall_insulation_distance_to_bottom": "auto", + "foundation_wall_insulation_distance_to_top": 0.0, + "foundation_wall_insulation_r": 8.9, + "foundation_wall_thickness": "8.0", + "freezer_location": "none", + "freezer_rated_annual_kwh": "auto", + "freezer_usage_multiplier": 1.0, + "fuel_loads_fireplace_annual_therm": "auto", + "fuel_loads_fireplace_frac_latent": "auto", + "fuel_loads_fireplace_frac_sensible": "auto", + "fuel_loads_fireplace_fuel_type": "natural gas", + "fuel_loads_fireplace_present": false, + "fuel_loads_fireplace_usage_multiplier": 0.0, + "fuel_loads_grill_annual_therm": "auto", + "fuel_loads_grill_fuel_type": "natural gas", + "fuel_loads_grill_present": false, + "fuel_loads_grill_usage_multiplier": 0.0, + "fuel_loads_lighting_annual_therm": "auto", + "fuel_loads_lighting_fuel_type": "natural gas", + "fuel_loads_lighting_present": false, + "fuel_loads_lighting_usage_multiplier": 0.0, + "geometry_aspect_ratio": 1.5, + "geometry_attic_type": "ConditionedAttic", + "geometry_balcony_depth": 0.0, + "geometry_cfa": 2700.0, + "geometry_corridor_position": "Double-Loaded Interior", + "geometry_corridor_width": 10.0, + "geometry_eaves_depth": 0, + "geometry_foundation_height": 8.0, + "geometry_foundation_height_above_grade": 1.0, + "geometry_foundation_type": "ConditionedBasement", + "geometry_garage_depth": 20.0, + "geometry_garage_position": "Right", + "geometry_garage_protrusion": 0.0, + "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", + "geometry_inset_depth": 0.0, + "geometry_inset_position": "Right", + "geometry_inset_width": 0.0, + "geometry_num_bathrooms": "2", + "geometry_num_bedrooms": 3, + "geometry_num_floors_above_grade": 1, + "geometry_num_occupants": "3", + "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, + "geometry_roof_pitch": "6:12", + "geometry_roof_type": "gable", + "geometry_unit_type": "single-family detached", + "geometry_wall_height": 8.0, + "heat_pump_backup_fuel": "none", + "heat_pump_backup_heating_capacity": "34121.0", + "heat_pump_backup_heating_efficiency": 1, + "heat_pump_cooling_capacity": "48000.0", + "heat_pump_cooling_compressor_type": "single stage", + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", + "heat_pump_cooling_sensible_heat_fraction": 0.73, + "heat_pump_fraction_cool_load_served": 1, + "heat_pump_fraction_heat_load_served": 1, + "heat_pump_heating_capacity": "64000.0", + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", + "heat_pump_type": "none", + "heating_system_fraction_heat_load_served": 1, + "heating_system_fraction_heat_load_served_2": 0.25, + "heating_system_fuel": "natural gas", + "heating_system_fuel_2": "electricity", + "heating_system_heating_capacity": "64000.0", + "heating_system_heating_capacity_2": "auto", + "heating_system_heating_efficiency": 0.92, + "heating_system_heating_efficiency_2": 1.0, + "heating_system_type": "Furnace", + "heating_system_type_2": "none", + "holiday_lighting_daily_kwh": "auto", + "holiday_lighting_period_begin_day_of_month": "auto", + "holiday_lighting_period_begin_month": "auto", + "holiday_lighting_period_end_day_of_month": "auto", + "holiday_lighting_period_end_month": "auto", + "holiday_lighting_present": false, + "hot_tub_heater_annual_kwh": "auto", + "hot_tub_heater_annual_therm": "auto", + "hot_tub_heater_type": "electric resistance", + "hot_tub_heater_usage_multiplier": 1.0, + "hot_tub_present": false, + "hot_tub_pump_annual_kwh": "auto", + "hot_tub_pump_usage_multiplier": 1.0, + "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/conditioned-attic-with-one-floor-above-grade.xml", + "kitchen_fans_quantity": "0", + "lighting_fraction_cfl_exterior": 0.4, + "lighting_fraction_cfl_garage": 0.4, + "lighting_fraction_cfl_interior": 0.4, + "lighting_fraction_led_exterior": 0.25, + "lighting_fraction_led_garage": 0.25, + "lighting_fraction_led_interior": 0.25, + "lighting_fraction_lfl_exterior": 0.1, + "lighting_fraction_lfl_garage": 0.1, + "lighting_fraction_lfl_interior": 0.1, + "lighting_usage_multiplier_exterior": 1.0, + "lighting_usage_multiplier_garage": 1.0, + "lighting_usage_multiplier_interior": 1.0, + "mech_vent_fan_power": 30, + "mech_vent_fan_power_2": 30, + "mech_vent_fan_type": "none", + "mech_vent_fan_type_2": "none", + "mech_vent_flow_rate": 110, + "mech_vent_flow_rate_2": 110, + "mech_vent_hours_in_operation": 24, + "mech_vent_hours_in_operation_2": 24, + "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", + "mech_vent_sensible_recovery_efficiency": 0.72, + "mech_vent_sensible_recovery_efficiency_2": 0.72, + "mech_vent_total_recovery_efficiency": 0.48, + "mech_vent_total_recovery_efficiency_2": 0.48, + "neighbor_back_distance": 0, + "neighbor_back_height": "auto", + "neighbor_front_distance": 0, + "neighbor_front_height": "auto", + "neighbor_left_distance": 0, + "neighbor_left_height": "auto", + "neighbor_right_distance": 0, + "neighbor_right_height": "auto", + "overhangs_back_depth": 0, + "overhangs_back_distance_to_top_of_window": 0, + "overhangs_front_depth": 0, + "overhangs_front_distance_to_top_of_window": 0, + "overhangs_left_depth": 0, + "overhangs_left_distance_to_top_of_window": 0, + "overhangs_right_depth": 0, + "overhangs_right_distance_to_top_of_window": 0, + "plug_loads_other_annual_kwh": "2457.0", + "plug_loads_other_frac_latent": "0.045", + "plug_loads_other_frac_sensible": "0.855", + "plug_loads_other_usage_multiplier": 1.0, + "plug_loads_television_annual_kwh": "620.0", + "plug_loads_television_usage_multiplier": 1.0, + "plug_loads_vehicle_annual_kwh": "auto", + "plug_loads_vehicle_present": false, + "plug_loads_vehicle_usage_multiplier": 0.0, + "plug_loads_well_pump_annual_kwh": "auto", + "plug_loads_well_pump_present": false, + "plug_loads_well_pump_usage_multiplier": 0.0, + "pool_heater_annual_kwh": "auto", + "pool_heater_annual_therm": "auto", + "pool_heater_type": "electric resistance", + "pool_heater_usage_multiplier": 1.0, + "pool_present": false, + "pool_pump_annual_kwh": "auto", + "pool_pump_usage_multiplier": 1.0, + "pv_system_array_azimuth_1": 180, + "pv_system_array_azimuth_2": 180, + "pv_system_array_tilt_1": "20", + "pv_system_array_tilt_2": "20", + "pv_system_inverter_efficiency_1": 0.96, + "pv_system_inverter_efficiency_2": 0.96, + "pv_system_location_1": "auto", + "pv_system_location_2": "auto", + "pv_system_max_power_output_1": 4000, + "pv_system_max_power_output_2": 4000, + "pv_system_module_type_1": "none", + "pv_system_module_type_2": "none", + "pv_system_num_units_served_1": 1, + "pv_system_num_units_served_2": 1, + "pv_system_system_losses_fraction_1": 0.14, + "pv_system_system_losses_fraction_2": 0.14, + "pv_system_tracking_1": "auto", + "pv_system_tracking_2": "auto", + "refrigerator_location": "living space", + "refrigerator_rated_annual_kwh": "650.0", + "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, + "roof_assembly_r": 2.3, + "roof_color": "medium", + "roof_material_type": "asphalt or fiberglass shingles", + "roof_radiant_barrier": false, + "roof_radiant_barrier_grade": "1", + "schedules_type": "default", + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", + "simulation_control_timestep": "60", + "site_type": "suburban", + "skylight_area_back": 0, + "skylight_area_front": 0, + "skylight_area_left": 0, + "skylight_area_right": 0, + "skylight_shgc": 0.45, + "skylight_ufactor": 0.33, + "slab_carpet_fraction": "0.0", + "slab_carpet_r": "0.0", + "slab_perimeter_depth": 0, + "slab_perimeter_insulation_r": 0, + "slab_thickness": "4.0", + "slab_under_insulation_r": 0, + "slab_under_width": 0, + "solar_thermal_collector_area": 40.0, + "solar_thermal_collector_azimuth": 180, + "solar_thermal_collector_loop_type": "liquid direct", + "solar_thermal_collector_rated_optical_efficiency": 0.5, + "solar_thermal_collector_rated_thermal_losses": 0.2799, + "solar_thermal_collector_tilt": "20", + "solar_thermal_collector_type": "evacuated tube", + "solar_thermal_solar_fraction": 0, + "solar_thermal_storage_volume": "auto", + "solar_thermal_system_type": "none", + "wall_assembly_r": 23, + "wall_color": "medium", + "wall_siding_type": "wood siding", + "wall_type": "WoodStud", + "water_fixtures_shower_low_flow": true, + "water_fixtures_sink_low_flow": false, + "water_fixtures_usage_multiplier": 1.0, + "water_heater_efficiency": 0.95, + "water_heater_efficiency_type": "EnergyFactor", + "water_heater_fuel_type": "electricity", + "water_heater_jacket_rvalue": 0, + "water_heater_location": "living space", + "water_heater_num_units_served": 1, + "water_heater_recovery_efficiency": "0.76", + "water_heater_setpoint_temperature": "125", + "water_heater_standby_loss": 0, + "water_heater_tank_volume": "40", + "water_heater_type": "storage water heater", + "weather_station_epw_filepath": "USA_CO_Denver.Intl.AP.725650_TMY3.epw", + "whole_house_fan_flow_rate": 4500, + "whole_house_fan_power": 300, + "whole_house_fan_present": false, + "window_area_back": 108.0, + "window_area_front": 108.0, + "window_area_left": 72.0, + "window_area_right": 72.0, + "window_aspect_ratio": 1.333, + "window_back_wwr": 0, + "window_fraction_operable": 0.67, + "window_front_wwr": 0, + "window_interior_shading_summer": 0.7, + "window_interior_shading_winter": 0.85, + "window_left_wwr": 0, + "window_right_wwr": 0, + "window_shgc": 0.45, + "window_ufactor": 0.33 + }, + "measure_dir_name": "BuildResidentialHPXML" + } + ] +} \ No newline at end of file diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/conditioned-basement-with-ceiling-insulation.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/conditioned-basement-with-ceiling-insulation.osw index 15609a97..d6818440 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/conditioned-basement-with-ceiling-insulation.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/conditioned-basement-with-ceiling-insulation.osw @@ -6,58 +6,50 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", "cooling_system_cooling_compressor_type": "single stage", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.73, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "central air conditioner", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -65,8 +57,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -74,11 +65,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "2", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 25.0, @@ -92,17 +82,15 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 10, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -133,6 +121,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, @@ -141,6 +130,7 @@ "geometry_num_floors_above_grade": 1, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family detached", @@ -150,22 +140,20 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "64000.0", - "heat_pump_heating_capacity_17F": "auto", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "none", "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "natural gas", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.92, @@ -186,7 +174,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/conditioned-basement-with-ceiling-insulation.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -208,14 +196,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -236,18 +222,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -274,21 +256,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -315,10 +295,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "none", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -326,8 +304,6 @@ "water_heater_efficiency": 0.95, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "electricity", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "18767", "water_heater_jacket_rvalue": 0, "water_heater_location": "living space", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/cooling-system-and-heat-pump.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/cooling-system-and-heat-pump.osw index 2a81660c..53c3092d 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/cooling-system-and-heat-pump.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/cooling-system-and-heat-pump.osw @@ -6,58 +6,50 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", "cooling_system_cooling_compressor_type": "single stage", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.73, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "central air conditioner", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -65,8 +57,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -74,11 +65,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "2", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 25.0, @@ -92,17 +82,15 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -133,6 +121,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, @@ -141,6 +130,7 @@ "geometry_num_floors_above_grade": 1, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family detached", @@ -150,22 +140,20 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "64000.0", - "heat_pump_heating_capacity_17F": "auto", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "air-to-air", "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "natural gas", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.92, @@ -186,7 +174,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/cooling-system-and-heat-pump.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -208,14 +196,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -236,18 +222,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -274,21 +256,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -315,10 +295,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "none", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -326,8 +304,6 @@ "water_heater_efficiency": 0.95, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "electricity", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "18767", "water_heater_jacket_rvalue": 0, "water_heater_location": "living space", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/dhw-indirect-without-boiler.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/dhw-indirect-without-boiler.osw index 8a17f98d..28f8fe3f 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/dhw-indirect-without-boiler.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/dhw-indirect-without-boiler.osw @@ -6,58 +6,50 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", "cooling_system_cooling_compressor_type": "single stage", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.73, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "central air conditioner", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -65,8 +57,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -74,11 +65,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "2", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 25.0, @@ -92,17 +82,15 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -133,6 +121,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, @@ -141,6 +130,7 @@ "geometry_num_floors_above_grade": 1, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family detached", @@ -150,22 +140,20 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "64000.0", - "heat_pump_heating_capacity_17F": "auto", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "none", "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "natural gas", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.92, @@ -186,7 +174,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/dhw-indirect-without-boiler.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -208,14 +196,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -236,18 +222,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -274,21 +256,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -315,10 +295,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "none", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -326,8 +304,6 @@ "water_heater_efficiency": 0.95, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "electricity", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "18767", "water_heater_jacket_rvalue": 0, "water_heater_location": "living space", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/ducts-location-and-areas-not-same-type.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/ducts-location-and-areas-not-same-type.osw index 5e5c2efa..6b44f160 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/ducts-location-and-areas-not-same-type.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/ducts-location-and-areas-not-same-type.osw @@ -6,58 +6,50 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", "cooling_system_cooling_compressor_type": "single stage", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.73, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "central air conditioner", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -65,8 +57,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -74,11 +65,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "2", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 25.0, @@ -92,17 +82,15 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -133,6 +121,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, @@ -141,6 +130,7 @@ "geometry_num_floors_above_grade": 1, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family detached", @@ -150,22 +140,20 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "64000.0", - "heat_pump_heating_capacity_17F": "auto", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "none", "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "natural gas", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.92, @@ -186,7 +174,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/ducts-location-and-areas-not-same-type.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -208,14 +196,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -236,18 +222,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -274,21 +256,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -315,10 +295,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "none", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -326,8 +304,6 @@ "water_heater_efficiency": 0.95, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "electricity", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "18767", "water_heater_jacket_rvalue": 0, "water_heater_location": "living space", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/foundation-wall-insulation-greater-than-height.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/foundation-wall-insulation-greater-than-height.osw new file mode 100644 index 00000000..c35e021f --- /dev/null +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/foundation-wall-insulation-greater-than-height.osw @@ -0,0 +1,337 @@ +{ + "measure_paths": [ + "../.." + ], + "steps": [ + { + "arguments": { + "air_leakage_house_pressure": 50, + "air_leakage_shielding_of_home": "auto", + "air_leakage_units": "ACH", + "air_leakage_value": 3, + "bathroom_fans_quantity": "0", + "ceiling_assembly_r": 39.3, + "ceiling_fan_cooling_setpoint_temp_offset": 0, + "ceiling_fan_efficiency": "auto", + "ceiling_fan_present": false, + "ceiling_fan_quantity": "auto", + "clothes_dryer_efficiency": "3.73", + "clothes_dryer_efficiency_type": "CombinedEnergyFactor", + "clothes_dryer_fuel_type": "electricity", + "clothes_dryer_location": "living space", + "clothes_dryer_usage_multiplier": 1.0, + "clothes_dryer_vented_flow_rate": "150.0", + "clothes_washer_capacity": "3.2", + "clothes_washer_efficiency": "1.21", + "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", + "clothes_washer_label_annual_gas_cost": "27.0", + "clothes_washer_label_electric_rate": "0.12", + "clothes_washer_label_gas_rate": "1.09", + "clothes_washer_label_usage": "6.0", + "clothes_washer_location": "living space", + "clothes_washer_rated_annual_kwh": "380.0", + "clothes_washer_usage_multiplier": 1.0, + "cooking_range_oven_fuel_type": "electricity", + "cooking_range_oven_is_convection": false, + "cooking_range_oven_is_induction": false, + "cooking_range_oven_location": "living space", + "cooking_range_oven_usage_multiplier": 1.0, + "cooling_system_cooling_capacity": "48000.0", + "cooling_system_cooling_compressor_type": "single stage", + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", + "cooling_system_cooling_sensible_heat_fraction": 0.73, + "cooling_system_fraction_cool_load_served": 1, + "cooling_system_is_ducted": false, + "cooling_system_type": "central air conditioner", + "dehumidifier_capacity": 40, + "dehumidifier_efficiency": 1.8, + "dehumidifier_efficiency_type": "EnergyFactor", + "dehumidifier_fraction_dehumidification_load_served": 1, + "dehumidifier_rh_setpoint": 0.5, + "dehumidifier_type": "none", + "dhw_distribution_pipe_r": "0.0", + "dhw_distribution_recirc_branch_piping_length": "50", + "dhw_distribution_recirc_control_type": "no control", + "dhw_distribution_recirc_piping_length": "50", + "dhw_distribution_recirc_pump_power": "50", + "dhw_distribution_standard_piping_length": "50", + "dhw_distribution_system_type": "Standard", + "dishwasher_efficiency": "307", + "dishwasher_efficiency_type": "RatedAnnualkWh", + "dishwasher_label_annual_gas_cost": "22.32", + "dishwasher_label_electric_rate": "0.12", + "dishwasher_label_gas_rate": "1.09", + "dishwasher_label_usage": "4.0", + "dishwasher_location": "living space", + "dishwasher_place_setting_capacity": "12", + "dishwasher_usage_multiplier": 1.0, + "door_area": 80.0, + "door_rvalue": 4.4, + "ducts_number_of_return_registers": "1", + "ducts_return_insulation_r": 0.0, + "ducts_return_leakage_units": "CFM25", + "ducts_return_leakage_value": 25.0, + "ducts_return_location": "crawlspace - vented", + "ducts_return_surface_area": "50.0", + "ducts_supply_insulation_r": 4.0, + "ducts_supply_leakage_units": "CFM25", + "ducts_supply_leakage_value": 75.0, + "ducts_supply_location": "crawlspace - vented", + "ducts_supply_surface_area": "150.0", + "dwhr_efficiency": 0.55, + "dwhr_equal_flow": true, + "dwhr_facilities_connected": "none", + "extra_refrigerator_location": "none", + "extra_refrigerator_rated_annual_kwh": "auto", + "extra_refrigerator_usage_multiplier": 1.0, + "floor_assembly_r": 0, + "foundation_wall_insulation_distance_to_bottom": 6.0, + "foundation_wall_insulation_distance_to_top": 0.0, + "foundation_wall_insulation_r": 8.9, + "foundation_wall_thickness": "8.0", + "freezer_location": "none", + "freezer_rated_annual_kwh": "auto", + "freezer_usage_multiplier": 1.0, + "fuel_loads_fireplace_annual_therm": "auto", + "fuel_loads_fireplace_frac_latent": "auto", + "fuel_loads_fireplace_frac_sensible": "auto", + "fuel_loads_fireplace_fuel_type": "natural gas", + "fuel_loads_fireplace_present": false, + "fuel_loads_fireplace_usage_multiplier": 0.0, + "fuel_loads_grill_annual_therm": "auto", + "fuel_loads_grill_fuel_type": "natural gas", + "fuel_loads_grill_present": false, + "fuel_loads_grill_usage_multiplier": 0.0, + "fuel_loads_lighting_annual_therm": "auto", + "fuel_loads_lighting_fuel_type": "natural gas", + "fuel_loads_lighting_present": false, + "fuel_loads_lighting_usage_multiplier": 0.0, + "geometry_aspect_ratio": 1.5, + "geometry_attic_type": "UnventedAttic", + "geometry_balcony_depth": 0.0, + "geometry_cfa": 1350.0, + "geometry_corridor_position": "Double-Loaded Interior", + "geometry_corridor_width": 10.0, + "geometry_eaves_depth": 0, + "geometry_foundation_height": 4.0, + "geometry_foundation_height_above_grade": 1.0, + "geometry_foundation_type": "VentedCrawlspace", + "geometry_garage_depth": 20.0, + "geometry_garage_position": "Right", + "geometry_garage_protrusion": 0.0, + "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", + "geometry_inset_depth": 0.0, + "geometry_inset_position": "Right", + "geometry_inset_width": 0.0, + "geometry_num_bathrooms": "2", + "geometry_num_bedrooms": 3, + "geometry_num_floors_above_grade": 1, + "geometry_num_occupants": "3", + "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, + "geometry_roof_pitch": "6:12", + "geometry_roof_type": "gable", + "geometry_unit_type": "single-family detached", + "geometry_wall_height": 8.0, + "heat_pump_backup_fuel": "none", + "heat_pump_backup_heating_capacity": "34121.0", + "heat_pump_backup_heating_efficiency": 1, + "heat_pump_cooling_capacity": "48000.0", + "heat_pump_cooling_compressor_type": "single stage", + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", + "heat_pump_cooling_sensible_heat_fraction": 0.73, + "heat_pump_fraction_cool_load_served": 1, + "heat_pump_fraction_heat_load_served": 1, + "heat_pump_heating_capacity": "64000.0", + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", + "heat_pump_type": "none", + "heating_system_fraction_heat_load_served": 1, + "heating_system_fraction_heat_load_served_2": 0.25, + "heating_system_fuel": "natural gas", + "heating_system_fuel_2": "electricity", + "heating_system_heating_capacity": "64000.0", + "heating_system_heating_capacity_2": "auto", + "heating_system_heating_efficiency": 0.92, + "heating_system_heating_efficiency_2": 1.0, + "heating_system_type": "Furnace", + "heating_system_type_2": "none", + "holiday_lighting_daily_kwh": "auto", + "holiday_lighting_period_begin_day_of_month": "auto", + "holiday_lighting_period_begin_month": "auto", + "holiday_lighting_period_end_day_of_month": "auto", + "holiday_lighting_period_end_month": "auto", + "holiday_lighting_present": false, + "hot_tub_heater_annual_kwh": "auto", + "hot_tub_heater_annual_therm": "auto", + "hot_tub_heater_type": "electric resistance", + "hot_tub_heater_usage_multiplier": 1.0, + "hot_tub_present": false, + "hot_tub_pump_annual_kwh": "auto", + "hot_tub_pump_usage_multiplier": 1.0, + "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/foundation-wall-insulation-greater-than-height.xml", + "kitchen_fans_quantity": "0", + "lighting_fraction_cfl_exterior": 0.4, + "lighting_fraction_cfl_garage": 0.4, + "lighting_fraction_cfl_interior": 0.4, + "lighting_fraction_led_exterior": 0.25, + "lighting_fraction_led_garage": 0.25, + "lighting_fraction_led_interior": 0.25, + "lighting_fraction_lfl_exterior": 0.1, + "lighting_fraction_lfl_garage": 0.1, + "lighting_fraction_lfl_interior": 0.1, + "lighting_usage_multiplier_exterior": 1.0, + "lighting_usage_multiplier_garage": 1.0, + "lighting_usage_multiplier_interior": 1.0, + "mech_vent_fan_power": 30, + "mech_vent_fan_power_2": 30, + "mech_vent_fan_type": "none", + "mech_vent_fan_type_2": "none", + "mech_vent_flow_rate": 110, + "mech_vent_flow_rate_2": 110, + "mech_vent_hours_in_operation": 24, + "mech_vent_hours_in_operation_2": 24, + "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", + "mech_vent_sensible_recovery_efficiency": 0.72, + "mech_vent_sensible_recovery_efficiency_2": 0.72, + "mech_vent_total_recovery_efficiency": 0.48, + "mech_vent_total_recovery_efficiency_2": 0.48, + "neighbor_back_distance": 0, + "neighbor_back_height": "auto", + "neighbor_front_distance": 0, + "neighbor_front_height": "auto", + "neighbor_left_distance": 0, + "neighbor_left_height": "auto", + "neighbor_right_distance": 0, + "neighbor_right_height": "auto", + "overhangs_back_depth": 0, + "overhangs_back_distance_to_top_of_window": 0, + "overhangs_front_depth": 0, + "overhangs_front_distance_to_top_of_window": 0, + "overhangs_left_depth": 0, + "overhangs_left_distance_to_top_of_window": 0, + "overhangs_right_depth": 0, + "overhangs_right_distance_to_top_of_window": 0, + "plug_loads_other_annual_kwh": "1228.5", + "plug_loads_other_frac_latent": "0.045", + "plug_loads_other_frac_sensible": "0.855", + "plug_loads_other_usage_multiplier": 1.0, + "plug_loads_television_annual_kwh": "620.0", + "plug_loads_television_usage_multiplier": 1.0, + "plug_loads_vehicle_annual_kwh": "auto", + "plug_loads_vehicle_present": false, + "plug_loads_vehicle_usage_multiplier": 0.0, + "plug_loads_well_pump_annual_kwh": "auto", + "plug_loads_well_pump_present": false, + "plug_loads_well_pump_usage_multiplier": 0.0, + "pool_heater_annual_kwh": "auto", + "pool_heater_annual_therm": "auto", + "pool_heater_type": "electric resistance", + "pool_heater_usage_multiplier": 1.0, + "pool_present": false, + "pool_pump_annual_kwh": "auto", + "pool_pump_usage_multiplier": 1.0, + "pv_system_array_azimuth_1": 180, + "pv_system_array_azimuth_2": 180, + "pv_system_array_tilt_1": "20", + "pv_system_array_tilt_2": "20", + "pv_system_inverter_efficiency_1": 0.96, + "pv_system_inverter_efficiency_2": 0.96, + "pv_system_location_1": "auto", + "pv_system_location_2": "auto", + "pv_system_max_power_output_1": 4000, + "pv_system_max_power_output_2": 4000, + "pv_system_module_type_1": "none", + "pv_system_module_type_2": "none", + "pv_system_num_units_served_1": 1, + "pv_system_num_units_served_2": 1, + "pv_system_system_losses_fraction_1": 0.14, + "pv_system_system_losses_fraction_2": 0.14, + "pv_system_tracking_1": "auto", + "pv_system_tracking_2": "auto", + "refrigerator_location": "living space", + "refrigerator_rated_annual_kwh": "650.0", + "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, + "roof_assembly_r": 2.3, + "roof_color": "medium", + "roof_material_type": "asphalt or fiberglass shingles", + "roof_radiant_barrier": false, + "roof_radiant_barrier_grade": "1", + "schedules_type": "default", + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", + "simulation_control_timestep": "60", + "site_type": "suburban", + "skylight_area_back": 0, + "skylight_area_front": 0, + "skylight_area_left": 0, + "skylight_area_right": 0, + "skylight_shgc": 0.45, + "skylight_ufactor": 0.33, + "slab_carpet_fraction": "0.0", + "slab_carpet_r": "2.5", + "slab_perimeter_depth": 0, + "slab_perimeter_insulation_r": 0, + "slab_thickness": "4.0", + "slab_under_insulation_r": 0, + "slab_under_width": 0, + "solar_thermal_collector_area": 40.0, + "solar_thermal_collector_azimuth": 180, + "solar_thermal_collector_loop_type": "liquid direct", + "solar_thermal_collector_rated_optical_efficiency": 0.5, + "solar_thermal_collector_rated_thermal_losses": 0.2799, + "solar_thermal_collector_tilt": "20", + "solar_thermal_collector_type": "evacuated tube", + "solar_thermal_solar_fraction": 0, + "solar_thermal_storage_volume": "auto", + "solar_thermal_system_type": "none", + "wall_assembly_r": 23, + "wall_color": "medium", + "wall_siding_type": "wood siding", + "wall_type": "WoodStud", + "water_fixtures_shower_low_flow": true, + "water_fixtures_sink_low_flow": false, + "water_fixtures_usage_multiplier": 1.0, + "water_heater_efficiency": 0.95, + "water_heater_efficiency_type": "EnergyFactor", + "water_heater_fuel_type": "electricity", + "water_heater_jacket_rvalue": 0, + "water_heater_location": "crawlspace - vented", + "water_heater_num_units_served": 1, + "water_heater_recovery_efficiency": "0.76", + "water_heater_setpoint_temperature": "125", + "water_heater_standby_loss": 0, + "water_heater_tank_volume": "40", + "water_heater_type": "storage water heater", + "weather_station_epw_filepath": "USA_CO_Denver.Intl.AP.725650_TMY3.epw", + "whole_house_fan_flow_rate": 4500, + "whole_house_fan_power": 300, + "whole_house_fan_present": false, + "window_area_back": 108.0, + "window_area_front": 108.0, + "window_area_left": 72.0, + "window_area_right": 72.0, + "window_aspect_ratio": 1.333, + "window_back_wwr": 0, + "window_fraction_operable": 0.67, + "window_front_wwr": 0, + "window_interior_shading_summer": 0.7, + "window_interior_shading_winter": 0.85, + "window_left_wwr": 0, + "window_right_wwr": 0, + "window_shgc": 0.45, + "window_ufactor": 0.33 + }, + "measure_dir_name": "BuildResidentialHPXML" + } + ] +} \ No newline at end of file diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/heating-system-and-heat-pump.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/heating-system-and-heat-pump.osw index cd2ca5b8..4ad122e9 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/heating-system-and-heat-pump.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/heating-system-and-heat-pump.osw @@ -6,58 +6,50 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", "cooling_system_cooling_compressor_type": "single stage", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.73, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "none", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -65,8 +57,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -74,11 +65,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "2", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 25.0, @@ -92,17 +82,15 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -133,6 +121,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, @@ -141,6 +130,7 @@ "geometry_num_floors_above_grade": 1, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family detached", @@ -150,22 +140,20 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "64000.0", - "heat_pump_heating_capacity_17F": "auto", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "air-to-air", "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "natural gas", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.92, @@ -186,7 +174,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/heating-system-and-heat-pump.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -208,14 +196,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -236,18 +222,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -274,21 +256,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -315,10 +295,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "none", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -326,8 +304,6 @@ "water_heater_efficiency": 0.95, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "electricity", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "18767", "water_heater_jacket_rvalue": 0, "water_heater_location": "living space", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/multifamily-bottom-crawlspace-zero-foundation-height.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/multifamily-bottom-crawlspace-zero-foundation-height.osw index 8ca1c459..11d09ad2 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/multifamily-bottom-crawlspace-zero-foundation-height.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/multifamily-bottom-crawlspace-zero-foundation-height.osw @@ -6,58 +6,50 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", "cooling_system_cooling_compressor_type": "single stage", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.73, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "central air conditioner", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -65,8 +57,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -74,11 +65,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 20.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "1", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 0.0, @@ -92,17 +82,15 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -135,6 +123,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_horizontal_location": "Left", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", @@ -145,6 +134,7 @@ "geometry_num_floors_above_grade": 5, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "apartment unit", @@ -154,22 +144,20 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "64000.0", - "heat_pump_heating_capacity_17F": "auto", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "none", "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "natural gas", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.92, @@ -190,7 +178,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/multifamily-bottom-crawlspace-zero-foundation-height.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -212,14 +200,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -240,18 +226,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -278,21 +260,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -319,10 +299,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "none", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -330,8 +308,6 @@ "water_heater_efficiency": 0.95, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "electricity", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "18767", "water_heater_jacket_rvalue": 0, "water_heater_location": "living space", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/multifamily-bottom-slab-non-zero-foundation-height.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/multifamily-bottom-slab-non-zero-foundation-height.osw index 438bdfd5..9b9e7a63 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/multifamily-bottom-slab-non-zero-foundation-height.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/multifamily-bottom-slab-non-zero-foundation-height.osw @@ -6,58 +6,50 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", "cooling_system_cooling_compressor_type": "single stage", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.73, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "central air conditioner", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -65,8 +57,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -74,11 +65,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 20.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "1", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 0.0, @@ -92,17 +82,15 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -135,6 +123,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_horizontal_location": "Left", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", @@ -145,6 +134,7 @@ "geometry_num_floors_above_grade": 5, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "apartment unit", @@ -154,22 +144,20 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "64000.0", - "heat_pump_heating_capacity_17F": "auto", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "none", "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "natural gas", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.92, @@ -190,7 +178,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/multifamily-bottom-slab-non-zero-foundation-height.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -212,14 +200,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -240,18 +226,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -278,21 +260,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -319,10 +299,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "none", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -330,8 +308,6 @@ "water_heater_efficiency": 0.95, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "electricity", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "18767", "water_heater_jacket_rvalue": 0, "water_heater_location": "living space", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/multifamily-no-building-orientation.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/multifamily-no-building-orientation.osw index d3694ae7..ed10e482 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/multifamily-no-building-orientation.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/multifamily-no-building-orientation.osw @@ -6,58 +6,50 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", "cooling_system_cooling_compressor_type": "single stage", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.73, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "central air conditioner", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -65,8 +57,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -74,11 +65,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 20.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "1", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 0.0, @@ -92,17 +82,15 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -134,6 +122,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, @@ -142,6 +131,7 @@ "geometry_num_floors_above_grade": 5, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "apartment unit", @@ -151,22 +141,20 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "64000.0", - "heat_pump_heating_capacity_17F": "auto", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "none", "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "natural gas", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.92, @@ -187,7 +175,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/multifamily-no-building-orientation.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -209,14 +197,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -237,18 +223,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -275,21 +257,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -316,10 +296,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "none", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -327,8 +305,6 @@ "water_heater_efficiency": 0.95, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "electricity", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "18767", "water_heater_jacket_rvalue": 0, "water_heater_location": "living space", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/multipliers-without-fuel-loads.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/multipliers-without-fuel-loads.osw index 265f9614..3062b854 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/multipliers-without-fuel-loads.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/multipliers-without-fuel-loads.osw @@ -6,58 +6,50 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", "cooling_system_cooling_compressor_type": "single stage", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.73, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "central air conditioner", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -65,8 +57,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -74,11 +65,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "2", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 25.0, @@ -92,17 +82,15 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -133,6 +121,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, @@ -141,6 +130,7 @@ "geometry_num_floors_above_grade": 1, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family detached", @@ -150,22 +140,20 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "64000.0", - "heat_pump_heating_capacity_17F": "auto", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "none", "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "natural gas", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.92, @@ -186,7 +174,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/multipliers-without-fuel-loads.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -208,14 +196,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -236,18 +222,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -274,21 +256,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -315,10 +295,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "none", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -326,8 +304,6 @@ "water_heater_efficiency": 0.95, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "electricity", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "18767", "water_heater_jacket_rvalue": 0, "water_heater_location": "living space", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/multipliers-without-other-plug-loads.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/multipliers-without-other-plug-loads.osw new file mode 100644 index 00000000..ef2430dd --- /dev/null +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/multipliers-without-other-plug-loads.osw @@ -0,0 +1,337 @@ +{ + "measure_paths": [ + "../.." + ], + "steps": [ + { + "arguments": { + "air_leakage_house_pressure": 50, + "air_leakage_shielding_of_home": "auto", + "air_leakage_units": "ACH", + "air_leakage_value": 3, + "bathroom_fans_quantity": "0", + "ceiling_assembly_r": 39.3, + "ceiling_fan_cooling_setpoint_temp_offset": 0, + "ceiling_fan_efficiency": "auto", + "ceiling_fan_present": false, + "ceiling_fan_quantity": "auto", + "clothes_dryer_efficiency": "3.73", + "clothes_dryer_efficiency_type": "CombinedEnergyFactor", + "clothes_dryer_fuel_type": "electricity", + "clothes_dryer_location": "living space", + "clothes_dryer_usage_multiplier": 1.0, + "clothes_dryer_vented_flow_rate": "150.0", + "clothes_washer_capacity": "3.2", + "clothes_washer_efficiency": "1.21", + "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", + "clothes_washer_label_annual_gas_cost": "27.0", + "clothes_washer_label_electric_rate": "0.12", + "clothes_washer_label_gas_rate": "1.09", + "clothes_washer_label_usage": "6.0", + "clothes_washer_location": "living space", + "clothes_washer_rated_annual_kwh": "380.0", + "clothes_washer_usage_multiplier": 1.0, + "cooking_range_oven_fuel_type": "electricity", + "cooking_range_oven_is_convection": false, + "cooking_range_oven_is_induction": false, + "cooking_range_oven_location": "living space", + "cooking_range_oven_usage_multiplier": 1.0, + "cooling_system_cooling_capacity": "48000.0", + "cooling_system_cooling_compressor_type": "single stage", + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", + "cooling_system_cooling_sensible_heat_fraction": 0.73, + "cooling_system_fraction_cool_load_served": 1, + "cooling_system_is_ducted": false, + "cooling_system_type": "central air conditioner", + "dehumidifier_capacity": 40, + "dehumidifier_efficiency": 1.8, + "dehumidifier_efficiency_type": "EnergyFactor", + "dehumidifier_fraction_dehumidification_load_served": 1, + "dehumidifier_rh_setpoint": 0.5, + "dehumidifier_type": "none", + "dhw_distribution_pipe_r": "0.0", + "dhw_distribution_recirc_branch_piping_length": "50", + "dhw_distribution_recirc_control_type": "no control", + "dhw_distribution_recirc_piping_length": "50", + "dhw_distribution_recirc_pump_power": "50", + "dhw_distribution_standard_piping_length": "50", + "dhw_distribution_system_type": "Standard", + "dishwasher_efficiency": "307", + "dishwasher_efficiency_type": "RatedAnnualkWh", + "dishwasher_label_annual_gas_cost": "22.32", + "dishwasher_label_electric_rate": "0.12", + "dishwasher_label_gas_rate": "1.09", + "dishwasher_label_usage": "4.0", + "dishwasher_location": "living space", + "dishwasher_place_setting_capacity": "12", + "dishwasher_usage_multiplier": 1.0, + "door_area": 80.0, + "door_rvalue": 4.4, + "ducts_number_of_return_registers": "2", + "ducts_return_insulation_r": 0.0, + "ducts_return_leakage_units": "CFM25", + "ducts_return_leakage_value": 25.0, + "ducts_return_location": "attic - unvented", + "ducts_return_surface_area": "50.0", + "ducts_supply_insulation_r": 4.0, + "ducts_supply_leakage_units": "CFM25", + "ducts_supply_leakage_value": 75.0, + "ducts_supply_location": "attic - unvented", + "ducts_supply_surface_area": "150.0", + "dwhr_efficiency": 0.55, + "dwhr_equal_flow": true, + "dwhr_facilities_connected": "none", + "extra_refrigerator_location": "none", + "extra_refrigerator_rated_annual_kwh": "auto", + "extra_refrigerator_usage_multiplier": 1.0, + "floor_assembly_r": 0, + "foundation_wall_insulation_distance_to_bottom": "auto", + "foundation_wall_insulation_distance_to_top": 0.0, + "foundation_wall_insulation_r": 8.9, + "foundation_wall_thickness": "8.0", + "freezer_location": "none", + "freezer_rated_annual_kwh": "auto", + "freezer_usage_multiplier": 1.0, + "fuel_loads_fireplace_annual_therm": "auto", + "fuel_loads_fireplace_frac_latent": "auto", + "fuel_loads_fireplace_frac_sensible": "auto", + "fuel_loads_fireplace_fuel_type": "natural gas", + "fuel_loads_fireplace_present": false, + "fuel_loads_fireplace_usage_multiplier": 0.0, + "fuel_loads_grill_annual_therm": "auto", + "fuel_loads_grill_fuel_type": "natural gas", + "fuel_loads_grill_present": false, + "fuel_loads_grill_usage_multiplier": 0.0, + "fuel_loads_lighting_annual_therm": "auto", + "fuel_loads_lighting_fuel_type": "natural gas", + "fuel_loads_lighting_present": false, + "fuel_loads_lighting_usage_multiplier": 0.0, + "geometry_aspect_ratio": 1.5, + "geometry_attic_type": "UnventedAttic", + "geometry_balcony_depth": 0.0, + "geometry_cfa": 2700.0, + "geometry_corridor_position": "Double-Loaded Interior", + "geometry_corridor_width": 10.0, + "geometry_eaves_depth": 0, + "geometry_foundation_height": 8.0, + "geometry_foundation_height_above_grade": 1.0, + "geometry_foundation_type": "ConditionedBasement", + "geometry_garage_depth": 20.0, + "geometry_garage_position": "Right", + "geometry_garage_protrusion": 0.0, + "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", + "geometry_inset_depth": 0.0, + "geometry_inset_position": "Right", + "geometry_inset_width": 0.0, + "geometry_num_bathrooms": "2", + "geometry_num_bedrooms": 3, + "geometry_num_floors_above_grade": 1, + "geometry_num_occupants": "3", + "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, + "geometry_roof_pitch": "6:12", + "geometry_roof_type": "gable", + "geometry_unit_type": "single-family detached", + "geometry_wall_height": 8.0, + "heat_pump_backup_fuel": "none", + "heat_pump_backup_heating_capacity": "34121.0", + "heat_pump_backup_heating_efficiency": 1, + "heat_pump_cooling_capacity": "48000.0", + "heat_pump_cooling_compressor_type": "single stage", + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", + "heat_pump_cooling_sensible_heat_fraction": 0.73, + "heat_pump_fraction_cool_load_served": 1, + "heat_pump_fraction_heat_load_served": 1, + "heat_pump_heating_capacity": "64000.0", + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", + "heat_pump_type": "none", + "heating_system_fraction_heat_load_served": 1, + "heating_system_fraction_heat_load_served_2": 0.25, + "heating_system_fuel": "natural gas", + "heating_system_fuel_2": "electricity", + "heating_system_heating_capacity": "64000.0", + "heating_system_heating_capacity_2": "auto", + "heating_system_heating_efficiency": 0.92, + "heating_system_heating_efficiency_2": 1.0, + "heating_system_type": "Furnace", + "heating_system_type_2": "none", + "holiday_lighting_daily_kwh": "auto", + "holiday_lighting_period_begin_day_of_month": "auto", + "holiday_lighting_period_begin_month": "auto", + "holiday_lighting_period_end_day_of_month": "auto", + "holiday_lighting_period_end_month": "auto", + "holiday_lighting_present": false, + "hot_tub_heater_annual_kwh": "auto", + "hot_tub_heater_annual_therm": "auto", + "hot_tub_heater_type": "electric resistance", + "hot_tub_heater_usage_multiplier": 1.0, + "hot_tub_present": false, + "hot_tub_pump_annual_kwh": "auto", + "hot_tub_pump_usage_multiplier": 1.0, + "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/multipliers-without-other-plug-loads.xml", + "kitchen_fans_quantity": "0", + "lighting_fraction_cfl_exterior": 0.4, + "lighting_fraction_cfl_garage": 0.4, + "lighting_fraction_cfl_interior": 0.4, + "lighting_fraction_led_exterior": 0.25, + "lighting_fraction_led_garage": 0.25, + "lighting_fraction_led_interior": 0.25, + "lighting_fraction_lfl_exterior": 0.1, + "lighting_fraction_lfl_garage": 0.1, + "lighting_fraction_lfl_interior": 0.1, + "lighting_usage_multiplier_exterior": 1.0, + "lighting_usage_multiplier_garage": 1.0, + "lighting_usage_multiplier_interior": 1.0, + "mech_vent_fan_power": 30, + "mech_vent_fan_power_2": 30, + "mech_vent_fan_type": "none", + "mech_vent_fan_type_2": "none", + "mech_vent_flow_rate": 110, + "mech_vent_flow_rate_2": 110, + "mech_vent_hours_in_operation": 24, + "mech_vent_hours_in_operation_2": 24, + "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", + "mech_vent_sensible_recovery_efficiency": 0.72, + "mech_vent_sensible_recovery_efficiency_2": 0.72, + "mech_vent_total_recovery_efficiency": 0.48, + "mech_vent_total_recovery_efficiency_2": 0.48, + "neighbor_back_distance": 0, + "neighbor_back_height": "auto", + "neighbor_front_distance": 0, + "neighbor_front_height": "auto", + "neighbor_left_distance": 0, + "neighbor_left_height": "auto", + "neighbor_right_distance": 0, + "neighbor_right_height": "auto", + "overhangs_back_depth": 0, + "overhangs_back_distance_to_top_of_window": 0, + "overhangs_front_depth": 0, + "overhangs_front_distance_to_top_of_window": 0, + "overhangs_left_depth": 0, + "overhangs_left_distance_to_top_of_window": 0, + "overhangs_right_depth": 0, + "overhangs_right_distance_to_top_of_window": 0, + "plug_loads_other_annual_kwh": "0.0", + "plug_loads_other_frac_latent": "0.045", + "plug_loads_other_frac_sensible": "0.855", + "plug_loads_other_usage_multiplier": 1.0, + "plug_loads_television_annual_kwh": "620.0", + "plug_loads_television_usage_multiplier": 1.0, + "plug_loads_vehicle_annual_kwh": "auto", + "plug_loads_vehicle_present": false, + "plug_loads_vehicle_usage_multiplier": 0.0, + "plug_loads_well_pump_annual_kwh": "auto", + "plug_loads_well_pump_present": false, + "plug_loads_well_pump_usage_multiplier": 0.0, + "pool_heater_annual_kwh": "auto", + "pool_heater_annual_therm": "auto", + "pool_heater_type": "electric resistance", + "pool_heater_usage_multiplier": 1.0, + "pool_present": false, + "pool_pump_annual_kwh": "auto", + "pool_pump_usage_multiplier": 1.0, + "pv_system_array_azimuth_1": 180, + "pv_system_array_azimuth_2": 180, + "pv_system_array_tilt_1": "20", + "pv_system_array_tilt_2": "20", + "pv_system_inverter_efficiency_1": 0.96, + "pv_system_inverter_efficiency_2": 0.96, + "pv_system_location_1": "auto", + "pv_system_location_2": "auto", + "pv_system_max_power_output_1": 4000, + "pv_system_max_power_output_2": 4000, + "pv_system_module_type_1": "none", + "pv_system_module_type_2": "none", + "pv_system_num_units_served_1": 1, + "pv_system_num_units_served_2": 1, + "pv_system_system_losses_fraction_1": 0.14, + "pv_system_system_losses_fraction_2": 0.14, + "pv_system_tracking_1": "auto", + "pv_system_tracking_2": "auto", + "refrigerator_location": "living space", + "refrigerator_rated_annual_kwh": "650.0", + "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, + "roof_assembly_r": 2.3, + "roof_color": "medium", + "roof_material_type": "asphalt or fiberglass shingles", + "roof_radiant_barrier": false, + "roof_radiant_barrier_grade": "1", + "schedules_type": "default", + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", + "simulation_control_timestep": "60", + "site_type": "suburban", + "skylight_area_back": 0, + "skylight_area_front": 0, + "skylight_area_left": 0, + "skylight_area_right": 0, + "skylight_shgc": 0.45, + "skylight_ufactor": 0.33, + "slab_carpet_fraction": "0.0", + "slab_carpet_r": "0.0", + "slab_perimeter_depth": 0, + "slab_perimeter_insulation_r": 0, + "slab_thickness": "4.0", + "slab_under_insulation_r": 0, + "slab_under_width": 0, + "solar_thermal_collector_area": 40.0, + "solar_thermal_collector_azimuth": 180, + "solar_thermal_collector_loop_type": "liquid direct", + "solar_thermal_collector_rated_optical_efficiency": 0.5, + "solar_thermal_collector_rated_thermal_losses": 0.2799, + "solar_thermal_collector_tilt": "20", + "solar_thermal_collector_type": "evacuated tube", + "solar_thermal_solar_fraction": 0, + "solar_thermal_storage_volume": "auto", + "solar_thermal_system_type": "none", + "wall_assembly_r": 23, + "wall_color": "medium", + "wall_siding_type": "wood siding", + "wall_type": "WoodStud", + "water_fixtures_shower_low_flow": true, + "water_fixtures_sink_low_flow": false, + "water_fixtures_usage_multiplier": 1.0, + "water_heater_efficiency": 0.95, + "water_heater_efficiency_type": "EnergyFactor", + "water_heater_fuel_type": "electricity", + "water_heater_jacket_rvalue": 0, + "water_heater_location": "living space", + "water_heater_num_units_served": 1, + "water_heater_recovery_efficiency": "0.76", + "water_heater_setpoint_temperature": "125", + "water_heater_standby_loss": 0, + "water_heater_tank_volume": "40", + "water_heater_type": "storage water heater", + "weather_station_epw_filepath": "USA_CO_Denver.Intl.AP.725650_TMY3.epw", + "whole_house_fan_flow_rate": 4500, + "whole_house_fan_power": 300, + "whole_house_fan_present": false, + "window_area_back": 108.0, + "window_area_front": 108.0, + "window_area_left": 72.0, + "window_area_right": 72.0, + "window_aspect_ratio": 1.333, + "window_back_wwr": 0, + "window_fraction_operable": 0.67, + "window_front_wwr": 0, + "window_interior_shading_summer": 0.7, + "window_interior_shading_winter": 0.85, + "window_left_wwr": 0, + "window_right_wwr": 0, + "window_shgc": 0.45, + "window_ufactor": 0.33 + }, + "measure_dir_name": "BuildResidentialHPXML" + } + ] +} \ No newline at end of file diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/multipliers-without-plug-loads.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/multipliers-without-tv-plug-loads.osw similarity index 82% rename from example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/multipliers-without-plug-loads.osw rename to example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/multipliers-without-tv-plug-loads.osw index c6bcf848..9ee91ccb 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/multipliers-without-plug-loads.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/multipliers-without-tv-plug-loads.osw @@ -6,58 +6,50 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", "cooling_system_cooling_compressor_type": "single stage", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.73, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "central air conditioner", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -65,8 +57,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -74,11 +65,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "2", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 25.0, @@ -92,17 +82,15 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -133,6 +121,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, @@ -141,6 +130,7 @@ "geometry_num_floors_above_grade": 1, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family detached", @@ -150,22 +140,20 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "64000.0", - "heat_pump_heating_capacity_17F": "auto", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "none", "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "natural gas", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.92, @@ -185,8 +173,8 @@ "hot_tub_present": false, "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, - "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/multipliers-without-plug-loads.xml", - "kitchen_fans_present": false, + "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/multipliers-without-tv-plug-loads.xml", + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -208,14 +196,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -232,22 +218,18 @@ "overhangs_left_distance_to_top_of_window": 0, "overhangs_right_depth": 0, "overhangs_right_distance_to_top_of_window": 0, - "plug_loads_other_annual_kwh": "0.0", + "plug_loads_other_annual_kwh": "2457.0", "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "0.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, - "plug_loads_vehicle_usage_multiplier": 1.0, - "plug_loads_vehicle_usage_multiplier_2": 1.0, + "plug_loads_vehicle_usage_multiplier": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, - "plug_loads_well_pump_usage_multiplier": 1.0, - "plug_loads_well_pump_usage_multiplier_2": 1.0, + "plug_loads_well_pump_usage_multiplier": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -274,21 +256,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -315,10 +295,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "none", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -326,8 +304,6 @@ "water_heater_efficiency": 0.95, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "electricity", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "18767", "water_heater_jacket_rvalue": 0, "water_heater_location": "living space", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/multipliers-without-vehicle-plug-loads.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/multipliers-without-vehicle-plug-loads.osw new file mode 100644 index 00000000..d9a06350 --- /dev/null +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/multipliers-without-vehicle-plug-loads.osw @@ -0,0 +1,337 @@ +{ + "measure_paths": [ + "../.." + ], + "steps": [ + { + "arguments": { + "air_leakage_house_pressure": 50, + "air_leakage_shielding_of_home": "auto", + "air_leakage_units": "ACH", + "air_leakage_value": 3, + "bathroom_fans_quantity": "0", + "ceiling_assembly_r": 39.3, + "ceiling_fan_cooling_setpoint_temp_offset": 0, + "ceiling_fan_efficiency": "auto", + "ceiling_fan_present": false, + "ceiling_fan_quantity": "auto", + "clothes_dryer_efficiency": "3.73", + "clothes_dryer_efficiency_type": "CombinedEnergyFactor", + "clothes_dryer_fuel_type": "electricity", + "clothes_dryer_location": "living space", + "clothes_dryer_usage_multiplier": 1.0, + "clothes_dryer_vented_flow_rate": "150.0", + "clothes_washer_capacity": "3.2", + "clothes_washer_efficiency": "1.21", + "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", + "clothes_washer_label_annual_gas_cost": "27.0", + "clothes_washer_label_electric_rate": "0.12", + "clothes_washer_label_gas_rate": "1.09", + "clothes_washer_label_usage": "6.0", + "clothes_washer_location": "living space", + "clothes_washer_rated_annual_kwh": "380.0", + "clothes_washer_usage_multiplier": 1.0, + "cooking_range_oven_fuel_type": "electricity", + "cooking_range_oven_is_convection": false, + "cooking_range_oven_is_induction": false, + "cooking_range_oven_location": "living space", + "cooking_range_oven_usage_multiplier": 1.0, + "cooling_system_cooling_capacity": "48000.0", + "cooling_system_cooling_compressor_type": "single stage", + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", + "cooling_system_cooling_sensible_heat_fraction": 0.73, + "cooling_system_fraction_cool_load_served": 1, + "cooling_system_is_ducted": false, + "cooling_system_type": "central air conditioner", + "dehumidifier_capacity": 40, + "dehumidifier_efficiency": 1.8, + "dehumidifier_efficiency_type": "EnergyFactor", + "dehumidifier_fraction_dehumidification_load_served": 1, + "dehumidifier_rh_setpoint": 0.5, + "dehumidifier_type": "none", + "dhw_distribution_pipe_r": "0.0", + "dhw_distribution_recirc_branch_piping_length": "50", + "dhw_distribution_recirc_control_type": "no control", + "dhw_distribution_recirc_piping_length": "50", + "dhw_distribution_recirc_pump_power": "50", + "dhw_distribution_standard_piping_length": "50", + "dhw_distribution_system_type": "Standard", + "dishwasher_efficiency": "307", + "dishwasher_efficiency_type": "RatedAnnualkWh", + "dishwasher_label_annual_gas_cost": "22.32", + "dishwasher_label_electric_rate": "0.12", + "dishwasher_label_gas_rate": "1.09", + "dishwasher_label_usage": "4.0", + "dishwasher_location": "living space", + "dishwasher_place_setting_capacity": "12", + "dishwasher_usage_multiplier": 1.0, + "door_area": 80.0, + "door_rvalue": 4.4, + "ducts_number_of_return_registers": "2", + "ducts_return_insulation_r": 0.0, + "ducts_return_leakage_units": "CFM25", + "ducts_return_leakage_value": 25.0, + "ducts_return_location": "attic - unvented", + "ducts_return_surface_area": "50.0", + "ducts_supply_insulation_r": 4.0, + "ducts_supply_leakage_units": "CFM25", + "ducts_supply_leakage_value": 75.0, + "ducts_supply_location": "attic - unvented", + "ducts_supply_surface_area": "150.0", + "dwhr_efficiency": 0.55, + "dwhr_equal_flow": true, + "dwhr_facilities_connected": "none", + "extra_refrigerator_location": "none", + "extra_refrigerator_rated_annual_kwh": "auto", + "extra_refrigerator_usage_multiplier": 1.0, + "floor_assembly_r": 0, + "foundation_wall_insulation_distance_to_bottom": "auto", + "foundation_wall_insulation_distance_to_top": 0.0, + "foundation_wall_insulation_r": 8.9, + "foundation_wall_thickness": "8.0", + "freezer_location": "none", + "freezer_rated_annual_kwh": "auto", + "freezer_usage_multiplier": 1.0, + "fuel_loads_fireplace_annual_therm": "auto", + "fuel_loads_fireplace_frac_latent": "auto", + "fuel_loads_fireplace_frac_sensible": "auto", + "fuel_loads_fireplace_fuel_type": "natural gas", + "fuel_loads_fireplace_present": false, + "fuel_loads_fireplace_usage_multiplier": 0.0, + "fuel_loads_grill_annual_therm": "auto", + "fuel_loads_grill_fuel_type": "natural gas", + "fuel_loads_grill_present": false, + "fuel_loads_grill_usage_multiplier": 0.0, + "fuel_loads_lighting_annual_therm": "auto", + "fuel_loads_lighting_fuel_type": "natural gas", + "fuel_loads_lighting_present": false, + "fuel_loads_lighting_usage_multiplier": 0.0, + "geometry_aspect_ratio": 1.5, + "geometry_attic_type": "UnventedAttic", + "geometry_balcony_depth": 0.0, + "geometry_cfa": 2700.0, + "geometry_corridor_position": "Double-Loaded Interior", + "geometry_corridor_width": 10.0, + "geometry_eaves_depth": 0, + "geometry_foundation_height": 8.0, + "geometry_foundation_height_above_grade": 1.0, + "geometry_foundation_type": "ConditionedBasement", + "geometry_garage_depth": 20.0, + "geometry_garage_position": "Right", + "geometry_garage_protrusion": 0.0, + "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", + "geometry_inset_depth": 0.0, + "geometry_inset_position": "Right", + "geometry_inset_width": 0.0, + "geometry_num_bathrooms": "2", + "geometry_num_bedrooms": 3, + "geometry_num_floors_above_grade": 1, + "geometry_num_occupants": "3", + "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, + "geometry_roof_pitch": "6:12", + "geometry_roof_type": "gable", + "geometry_unit_type": "single-family detached", + "geometry_wall_height": 8.0, + "heat_pump_backup_fuel": "none", + "heat_pump_backup_heating_capacity": "34121.0", + "heat_pump_backup_heating_efficiency": 1, + "heat_pump_cooling_capacity": "48000.0", + "heat_pump_cooling_compressor_type": "single stage", + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", + "heat_pump_cooling_sensible_heat_fraction": 0.73, + "heat_pump_fraction_cool_load_served": 1, + "heat_pump_fraction_heat_load_served": 1, + "heat_pump_heating_capacity": "64000.0", + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", + "heat_pump_type": "none", + "heating_system_fraction_heat_load_served": 1, + "heating_system_fraction_heat_load_served_2": 0.25, + "heating_system_fuel": "natural gas", + "heating_system_fuel_2": "electricity", + "heating_system_heating_capacity": "64000.0", + "heating_system_heating_capacity_2": "auto", + "heating_system_heating_efficiency": 0.92, + "heating_system_heating_efficiency_2": 1.0, + "heating_system_type": "Furnace", + "heating_system_type_2": "none", + "holiday_lighting_daily_kwh": "auto", + "holiday_lighting_period_begin_day_of_month": "auto", + "holiday_lighting_period_begin_month": "auto", + "holiday_lighting_period_end_day_of_month": "auto", + "holiday_lighting_period_end_month": "auto", + "holiday_lighting_present": false, + "hot_tub_heater_annual_kwh": "auto", + "hot_tub_heater_annual_therm": "auto", + "hot_tub_heater_type": "electric resistance", + "hot_tub_heater_usage_multiplier": 1.0, + "hot_tub_present": false, + "hot_tub_pump_annual_kwh": "auto", + "hot_tub_pump_usage_multiplier": 1.0, + "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/multipliers-without-vehicle-plug-loads.xml", + "kitchen_fans_quantity": "0", + "lighting_fraction_cfl_exterior": 0.4, + "lighting_fraction_cfl_garage": 0.4, + "lighting_fraction_cfl_interior": 0.4, + "lighting_fraction_led_exterior": 0.25, + "lighting_fraction_led_garage": 0.25, + "lighting_fraction_led_interior": 0.25, + "lighting_fraction_lfl_exterior": 0.1, + "lighting_fraction_lfl_garage": 0.1, + "lighting_fraction_lfl_interior": 0.1, + "lighting_usage_multiplier_exterior": 1.0, + "lighting_usage_multiplier_garage": 1.0, + "lighting_usage_multiplier_interior": 1.0, + "mech_vent_fan_power": 30, + "mech_vent_fan_power_2": 30, + "mech_vent_fan_type": "none", + "mech_vent_fan_type_2": "none", + "mech_vent_flow_rate": 110, + "mech_vent_flow_rate_2": 110, + "mech_vent_hours_in_operation": 24, + "mech_vent_hours_in_operation_2": 24, + "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", + "mech_vent_sensible_recovery_efficiency": 0.72, + "mech_vent_sensible_recovery_efficiency_2": 0.72, + "mech_vent_total_recovery_efficiency": 0.48, + "mech_vent_total_recovery_efficiency_2": 0.48, + "neighbor_back_distance": 0, + "neighbor_back_height": "auto", + "neighbor_front_distance": 0, + "neighbor_front_height": "auto", + "neighbor_left_distance": 0, + "neighbor_left_height": "auto", + "neighbor_right_distance": 0, + "neighbor_right_height": "auto", + "overhangs_back_depth": 0, + "overhangs_back_distance_to_top_of_window": 0, + "overhangs_front_depth": 0, + "overhangs_front_distance_to_top_of_window": 0, + "overhangs_left_depth": 0, + "overhangs_left_distance_to_top_of_window": 0, + "overhangs_right_depth": 0, + "overhangs_right_distance_to_top_of_window": 0, + "plug_loads_other_annual_kwh": "2457.0", + "plug_loads_other_frac_latent": "0.045", + "plug_loads_other_frac_sensible": "0.855", + "plug_loads_other_usage_multiplier": 1.0, + "plug_loads_television_annual_kwh": "620.0", + "plug_loads_television_usage_multiplier": 1.0, + "plug_loads_vehicle_annual_kwh": "0.0", + "plug_loads_vehicle_present": false, + "plug_loads_vehicle_usage_multiplier": 1.0, + "plug_loads_well_pump_annual_kwh": "auto", + "plug_loads_well_pump_present": false, + "plug_loads_well_pump_usage_multiplier": 0.0, + "pool_heater_annual_kwh": "auto", + "pool_heater_annual_therm": "auto", + "pool_heater_type": "electric resistance", + "pool_heater_usage_multiplier": 1.0, + "pool_present": false, + "pool_pump_annual_kwh": "auto", + "pool_pump_usage_multiplier": 1.0, + "pv_system_array_azimuth_1": 180, + "pv_system_array_azimuth_2": 180, + "pv_system_array_tilt_1": "20", + "pv_system_array_tilt_2": "20", + "pv_system_inverter_efficiency_1": 0.96, + "pv_system_inverter_efficiency_2": 0.96, + "pv_system_location_1": "auto", + "pv_system_location_2": "auto", + "pv_system_max_power_output_1": 4000, + "pv_system_max_power_output_2": 4000, + "pv_system_module_type_1": "none", + "pv_system_module_type_2": "none", + "pv_system_num_units_served_1": 1, + "pv_system_num_units_served_2": 1, + "pv_system_system_losses_fraction_1": 0.14, + "pv_system_system_losses_fraction_2": 0.14, + "pv_system_tracking_1": "auto", + "pv_system_tracking_2": "auto", + "refrigerator_location": "living space", + "refrigerator_rated_annual_kwh": "650.0", + "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, + "roof_assembly_r": 2.3, + "roof_color": "medium", + "roof_material_type": "asphalt or fiberglass shingles", + "roof_radiant_barrier": false, + "roof_radiant_barrier_grade": "1", + "schedules_type": "default", + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", + "simulation_control_timestep": "60", + "site_type": "suburban", + "skylight_area_back": 0, + "skylight_area_front": 0, + "skylight_area_left": 0, + "skylight_area_right": 0, + "skylight_shgc": 0.45, + "skylight_ufactor": 0.33, + "slab_carpet_fraction": "0.0", + "slab_carpet_r": "0.0", + "slab_perimeter_depth": 0, + "slab_perimeter_insulation_r": 0, + "slab_thickness": "4.0", + "slab_under_insulation_r": 0, + "slab_under_width": 0, + "solar_thermal_collector_area": 40.0, + "solar_thermal_collector_azimuth": 180, + "solar_thermal_collector_loop_type": "liquid direct", + "solar_thermal_collector_rated_optical_efficiency": 0.5, + "solar_thermal_collector_rated_thermal_losses": 0.2799, + "solar_thermal_collector_tilt": "20", + "solar_thermal_collector_type": "evacuated tube", + "solar_thermal_solar_fraction": 0, + "solar_thermal_storage_volume": "auto", + "solar_thermal_system_type": "none", + "wall_assembly_r": 23, + "wall_color": "medium", + "wall_siding_type": "wood siding", + "wall_type": "WoodStud", + "water_fixtures_shower_low_flow": true, + "water_fixtures_sink_low_flow": false, + "water_fixtures_usage_multiplier": 1.0, + "water_heater_efficiency": 0.95, + "water_heater_efficiency_type": "EnergyFactor", + "water_heater_fuel_type": "electricity", + "water_heater_jacket_rvalue": 0, + "water_heater_location": "living space", + "water_heater_num_units_served": 1, + "water_heater_recovery_efficiency": "0.76", + "water_heater_setpoint_temperature": "125", + "water_heater_standby_loss": 0, + "water_heater_tank_volume": "40", + "water_heater_type": "storage water heater", + "weather_station_epw_filepath": "USA_CO_Denver.Intl.AP.725650_TMY3.epw", + "whole_house_fan_flow_rate": 4500, + "whole_house_fan_power": 300, + "whole_house_fan_present": false, + "window_area_back": 108.0, + "window_area_front": 108.0, + "window_area_left": 72.0, + "window_area_right": 72.0, + "window_aspect_ratio": 1.333, + "window_back_wwr": 0, + "window_fraction_operable": 0.67, + "window_front_wwr": 0, + "window_interior_shading_summer": 0.7, + "window_interior_shading_winter": 0.85, + "window_left_wwr": 0, + "window_right_wwr": 0, + "window_shgc": 0.45, + "window_ufactor": 0.33 + }, + "measure_dir_name": "BuildResidentialHPXML" + } + ] +} \ No newline at end of file diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/multipliers-without-well-pump-plug-loads.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/multipliers-without-well-pump-plug-loads.osw new file mode 100644 index 00000000..be899690 --- /dev/null +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/multipliers-without-well-pump-plug-loads.osw @@ -0,0 +1,337 @@ +{ + "measure_paths": [ + "../.." + ], + "steps": [ + { + "arguments": { + "air_leakage_house_pressure": 50, + "air_leakage_shielding_of_home": "auto", + "air_leakage_units": "ACH", + "air_leakage_value": 3, + "bathroom_fans_quantity": "0", + "ceiling_assembly_r": 39.3, + "ceiling_fan_cooling_setpoint_temp_offset": 0, + "ceiling_fan_efficiency": "auto", + "ceiling_fan_present": false, + "ceiling_fan_quantity": "auto", + "clothes_dryer_efficiency": "3.73", + "clothes_dryer_efficiency_type": "CombinedEnergyFactor", + "clothes_dryer_fuel_type": "electricity", + "clothes_dryer_location": "living space", + "clothes_dryer_usage_multiplier": 1.0, + "clothes_dryer_vented_flow_rate": "150.0", + "clothes_washer_capacity": "3.2", + "clothes_washer_efficiency": "1.21", + "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", + "clothes_washer_label_annual_gas_cost": "27.0", + "clothes_washer_label_electric_rate": "0.12", + "clothes_washer_label_gas_rate": "1.09", + "clothes_washer_label_usage": "6.0", + "clothes_washer_location": "living space", + "clothes_washer_rated_annual_kwh": "380.0", + "clothes_washer_usage_multiplier": 1.0, + "cooking_range_oven_fuel_type": "electricity", + "cooking_range_oven_is_convection": false, + "cooking_range_oven_is_induction": false, + "cooking_range_oven_location": "living space", + "cooking_range_oven_usage_multiplier": 1.0, + "cooling_system_cooling_capacity": "48000.0", + "cooling_system_cooling_compressor_type": "single stage", + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", + "cooling_system_cooling_sensible_heat_fraction": 0.73, + "cooling_system_fraction_cool_load_served": 1, + "cooling_system_is_ducted": false, + "cooling_system_type": "central air conditioner", + "dehumidifier_capacity": 40, + "dehumidifier_efficiency": 1.8, + "dehumidifier_efficiency_type": "EnergyFactor", + "dehumidifier_fraction_dehumidification_load_served": 1, + "dehumidifier_rh_setpoint": 0.5, + "dehumidifier_type": "none", + "dhw_distribution_pipe_r": "0.0", + "dhw_distribution_recirc_branch_piping_length": "50", + "dhw_distribution_recirc_control_type": "no control", + "dhw_distribution_recirc_piping_length": "50", + "dhw_distribution_recirc_pump_power": "50", + "dhw_distribution_standard_piping_length": "50", + "dhw_distribution_system_type": "Standard", + "dishwasher_efficiency": "307", + "dishwasher_efficiency_type": "RatedAnnualkWh", + "dishwasher_label_annual_gas_cost": "22.32", + "dishwasher_label_electric_rate": "0.12", + "dishwasher_label_gas_rate": "1.09", + "dishwasher_label_usage": "4.0", + "dishwasher_location": "living space", + "dishwasher_place_setting_capacity": "12", + "dishwasher_usage_multiplier": 1.0, + "door_area": 80.0, + "door_rvalue": 4.4, + "ducts_number_of_return_registers": "2", + "ducts_return_insulation_r": 0.0, + "ducts_return_leakage_units": "CFM25", + "ducts_return_leakage_value": 25.0, + "ducts_return_location": "attic - unvented", + "ducts_return_surface_area": "50.0", + "ducts_supply_insulation_r": 4.0, + "ducts_supply_leakage_units": "CFM25", + "ducts_supply_leakage_value": 75.0, + "ducts_supply_location": "attic - unvented", + "ducts_supply_surface_area": "150.0", + "dwhr_efficiency": 0.55, + "dwhr_equal_flow": true, + "dwhr_facilities_connected": "none", + "extra_refrigerator_location": "none", + "extra_refrigerator_rated_annual_kwh": "auto", + "extra_refrigerator_usage_multiplier": 1.0, + "floor_assembly_r": 0, + "foundation_wall_insulation_distance_to_bottom": "auto", + "foundation_wall_insulation_distance_to_top": 0.0, + "foundation_wall_insulation_r": 8.9, + "foundation_wall_thickness": "8.0", + "freezer_location": "none", + "freezer_rated_annual_kwh": "auto", + "freezer_usage_multiplier": 1.0, + "fuel_loads_fireplace_annual_therm": "auto", + "fuel_loads_fireplace_frac_latent": "auto", + "fuel_loads_fireplace_frac_sensible": "auto", + "fuel_loads_fireplace_fuel_type": "natural gas", + "fuel_loads_fireplace_present": false, + "fuel_loads_fireplace_usage_multiplier": 0.0, + "fuel_loads_grill_annual_therm": "auto", + "fuel_loads_grill_fuel_type": "natural gas", + "fuel_loads_grill_present": false, + "fuel_loads_grill_usage_multiplier": 0.0, + "fuel_loads_lighting_annual_therm": "auto", + "fuel_loads_lighting_fuel_type": "natural gas", + "fuel_loads_lighting_present": false, + "fuel_loads_lighting_usage_multiplier": 0.0, + "geometry_aspect_ratio": 1.5, + "geometry_attic_type": "UnventedAttic", + "geometry_balcony_depth": 0.0, + "geometry_cfa": 2700.0, + "geometry_corridor_position": "Double-Loaded Interior", + "geometry_corridor_width": 10.0, + "geometry_eaves_depth": 0, + "geometry_foundation_height": 8.0, + "geometry_foundation_height_above_grade": 1.0, + "geometry_foundation_type": "ConditionedBasement", + "geometry_garage_depth": 20.0, + "geometry_garage_position": "Right", + "geometry_garage_protrusion": 0.0, + "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", + "geometry_inset_depth": 0.0, + "geometry_inset_position": "Right", + "geometry_inset_width": 0.0, + "geometry_num_bathrooms": "2", + "geometry_num_bedrooms": 3, + "geometry_num_floors_above_grade": 1, + "geometry_num_occupants": "3", + "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, + "geometry_roof_pitch": "6:12", + "geometry_roof_type": "gable", + "geometry_unit_type": "single-family detached", + "geometry_wall_height": 8.0, + "heat_pump_backup_fuel": "none", + "heat_pump_backup_heating_capacity": "34121.0", + "heat_pump_backup_heating_efficiency": 1, + "heat_pump_cooling_capacity": "48000.0", + "heat_pump_cooling_compressor_type": "single stage", + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", + "heat_pump_cooling_sensible_heat_fraction": 0.73, + "heat_pump_fraction_cool_load_served": 1, + "heat_pump_fraction_heat_load_served": 1, + "heat_pump_heating_capacity": "64000.0", + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", + "heat_pump_type": "none", + "heating_system_fraction_heat_load_served": 1, + "heating_system_fraction_heat_load_served_2": 0.25, + "heating_system_fuel": "natural gas", + "heating_system_fuel_2": "electricity", + "heating_system_heating_capacity": "64000.0", + "heating_system_heating_capacity_2": "auto", + "heating_system_heating_efficiency": 0.92, + "heating_system_heating_efficiency_2": 1.0, + "heating_system_type": "Furnace", + "heating_system_type_2": "none", + "holiday_lighting_daily_kwh": "auto", + "holiday_lighting_period_begin_day_of_month": "auto", + "holiday_lighting_period_begin_month": "auto", + "holiday_lighting_period_end_day_of_month": "auto", + "holiday_lighting_period_end_month": "auto", + "holiday_lighting_present": false, + "hot_tub_heater_annual_kwh": "auto", + "hot_tub_heater_annual_therm": "auto", + "hot_tub_heater_type": "electric resistance", + "hot_tub_heater_usage_multiplier": 1.0, + "hot_tub_present": false, + "hot_tub_pump_annual_kwh": "auto", + "hot_tub_pump_usage_multiplier": 1.0, + "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/multipliers-without-well-pump-plug-loads.xml", + "kitchen_fans_quantity": "0", + "lighting_fraction_cfl_exterior": 0.4, + "lighting_fraction_cfl_garage": 0.4, + "lighting_fraction_cfl_interior": 0.4, + "lighting_fraction_led_exterior": 0.25, + "lighting_fraction_led_garage": 0.25, + "lighting_fraction_led_interior": 0.25, + "lighting_fraction_lfl_exterior": 0.1, + "lighting_fraction_lfl_garage": 0.1, + "lighting_fraction_lfl_interior": 0.1, + "lighting_usage_multiplier_exterior": 1.0, + "lighting_usage_multiplier_garage": 1.0, + "lighting_usage_multiplier_interior": 1.0, + "mech_vent_fan_power": 30, + "mech_vent_fan_power_2": 30, + "mech_vent_fan_type": "none", + "mech_vent_fan_type_2": "none", + "mech_vent_flow_rate": 110, + "mech_vent_flow_rate_2": 110, + "mech_vent_hours_in_operation": 24, + "mech_vent_hours_in_operation_2": 24, + "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", + "mech_vent_sensible_recovery_efficiency": 0.72, + "mech_vent_sensible_recovery_efficiency_2": 0.72, + "mech_vent_total_recovery_efficiency": 0.48, + "mech_vent_total_recovery_efficiency_2": 0.48, + "neighbor_back_distance": 0, + "neighbor_back_height": "auto", + "neighbor_front_distance": 0, + "neighbor_front_height": "auto", + "neighbor_left_distance": 0, + "neighbor_left_height": "auto", + "neighbor_right_distance": 0, + "neighbor_right_height": "auto", + "overhangs_back_depth": 0, + "overhangs_back_distance_to_top_of_window": 0, + "overhangs_front_depth": 0, + "overhangs_front_distance_to_top_of_window": 0, + "overhangs_left_depth": 0, + "overhangs_left_distance_to_top_of_window": 0, + "overhangs_right_depth": 0, + "overhangs_right_distance_to_top_of_window": 0, + "plug_loads_other_annual_kwh": "2457.0", + "plug_loads_other_frac_latent": "0.045", + "plug_loads_other_frac_sensible": "0.855", + "plug_loads_other_usage_multiplier": 1.0, + "plug_loads_television_annual_kwh": "620.0", + "plug_loads_television_usage_multiplier": 1.0, + "plug_loads_vehicle_annual_kwh": "auto", + "plug_loads_vehicle_present": false, + "plug_loads_vehicle_usage_multiplier": 0.0, + "plug_loads_well_pump_annual_kwh": "0.0", + "plug_loads_well_pump_present": false, + "plug_loads_well_pump_usage_multiplier": 1.0, + "pool_heater_annual_kwh": "auto", + "pool_heater_annual_therm": "auto", + "pool_heater_type": "electric resistance", + "pool_heater_usage_multiplier": 1.0, + "pool_present": false, + "pool_pump_annual_kwh": "auto", + "pool_pump_usage_multiplier": 1.0, + "pv_system_array_azimuth_1": 180, + "pv_system_array_azimuth_2": 180, + "pv_system_array_tilt_1": "20", + "pv_system_array_tilt_2": "20", + "pv_system_inverter_efficiency_1": 0.96, + "pv_system_inverter_efficiency_2": 0.96, + "pv_system_location_1": "auto", + "pv_system_location_2": "auto", + "pv_system_max_power_output_1": 4000, + "pv_system_max_power_output_2": 4000, + "pv_system_module_type_1": "none", + "pv_system_module_type_2": "none", + "pv_system_num_units_served_1": 1, + "pv_system_num_units_served_2": 1, + "pv_system_system_losses_fraction_1": 0.14, + "pv_system_system_losses_fraction_2": 0.14, + "pv_system_tracking_1": "auto", + "pv_system_tracking_2": "auto", + "refrigerator_location": "living space", + "refrigerator_rated_annual_kwh": "650.0", + "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, + "roof_assembly_r": 2.3, + "roof_color": "medium", + "roof_material_type": "asphalt or fiberglass shingles", + "roof_radiant_barrier": false, + "roof_radiant_barrier_grade": "1", + "schedules_type": "default", + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", + "simulation_control_timestep": "60", + "site_type": "suburban", + "skylight_area_back": 0, + "skylight_area_front": 0, + "skylight_area_left": 0, + "skylight_area_right": 0, + "skylight_shgc": 0.45, + "skylight_ufactor": 0.33, + "slab_carpet_fraction": "0.0", + "slab_carpet_r": "0.0", + "slab_perimeter_depth": 0, + "slab_perimeter_insulation_r": 0, + "slab_thickness": "4.0", + "slab_under_insulation_r": 0, + "slab_under_width": 0, + "solar_thermal_collector_area": 40.0, + "solar_thermal_collector_azimuth": 180, + "solar_thermal_collector_loop_type": "liquid direct", + "solar_thermal_collector_rated_optical_efficiency": 0.5, + "solar_thermal_collector_rated_thermal_losses": 0.2799, + "solar_thermal_collector_tilt": "20", + "solar_thermal_collector_type": "evacuated tube", + "solar_thermal_solar_fraction": 0, + "solar_thermal_storage_volume": "auto", + "solar_thermal_system_type": "none", + "wall_assembly_r": 23, + "wall_color": "medium", + "wall_siding_type": "wood siding", + "wall_type": "WoodStud", + "water_fixtures_shower_low_flow": true, + "water_fixtures_sink_low_flow": false, + "water_fixtures_usage_multiplier": 1.0, + "water_heater_efficiency": 0.95, + "water_heater_efficiency_type": "EnergyFactor", + "water_heater_fuel_type": "electricity", + "water_heater_jacket_rvalue": 0, + "water_heater_location": "living space", + "water_heater_num_units_served": 1, + "water_heater_recovery_efficiency": "0.76", + "water_heater_setpoint_temperature": "125", + "water_heater_standby_loss": 0, + "water_heater_tank_volume": "40", + "water_heater_type": "storage water heater", + "weather_station_epw_filepath": "USA_CO_Denver.Intl.AP.725650_TMY3.epw", + "whole_house_fan_flow_rate": 4500, + "whole_house_fan_power": 300, + "whole_house_fan_present": false, + "window_area_back": 108.0, + "window_area_front": 108.0, + "window_area_left": 72.0, + "window_area_right": 72.0, + "window_aspect_ratio": 1.333, + "window_back_wwr": 0, + "window_fraction_operable": 0.67, + "window_front_wwr": 0, + "window_interior_shading_summer": 0.7, + "window_interior_shading_winter": 0.85, + "window_left_wwr": 0, + "window_right_wwr": 0, + "window_shgc": 0.45, + "window_ufactor": 0.33 + }, + "measure_dir_name": "BuildResidentialHPXML" + } + ] +} \ No newline at end of file diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/non-electric-heat-pump-water-heater.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/non-electric-heat-pump-water-heater.osw index 0c86acf2..614e5be9 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/non-electric-heat-pump-water-heater.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/non-electric-heat-pump-water-heater.osw @@ -6,58 +6,50 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", "cooling_system_cooling_compressor_type": "single stage", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.73, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "central air conditioner", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -65,8 +57,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -74,11 +65,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "2", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 25.0, @@ -92,17 +82,15 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -133,6 +121,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, @@ -141,6 +130,7 @@ "geometry_num_floors_above_grade": 1, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family detached", @@ -150,22 +140,20 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "64000.0", - "heat_pump_heating_capacity_17F": "auto", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "none", "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "natural gas", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.92, @@ -186,7 +174,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/non-electric-heat-pump-water-heater.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -208,14 +196,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -236,18 +222,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -274,21 +256,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -315,10 +295,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "none", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -326,8 +304,6 @@ "water_heater_efficiency": 2.3, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "natural gas", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "18767", "water_heater_jacket_rvalue": 0, "water_heater_location": "living space", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/non-integer-ceiling-fan-quantity.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/non-integer-ceiling-fan-quantity.osw index 7cb8c9d4..b63f0d40 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/non-integer-ceiling-fan-quantity.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/non-integer-ceiling-fan-quantity.osw @@ -6,58 +6,50 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "0.5", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", "cooling_system_cooling_compressor_type": "single stage", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.73, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "central air conditioner", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -65,8 +57,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -74,11 +65,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "2", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 25.0, @@ -92,17 +82,15 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -133,6 +121,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, @@ -141,6 +130,7 @@ "geometry_num_floors_above_grade": 1, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family detached", @@ -150,22 +140,20 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "64000.0", - "heat_pump_heating_capacity_17F": "auto", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "none", "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "natural gas", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.92, @@ -186,7 +174,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/non-integer-ceiling-fan-quantity.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -208,14 +196,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -236,18 +222,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -274,21 +256,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -315,10 +295,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "none", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -326,8 +304,6 @@ "water_heater_efficiency": 0.95, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "electricity", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "18767", "water_heater_jacket_rvalue": 0, "water_heater_location": "living space", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/non-integer-geometry-num-bathrooms.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/non-integer-geometry-num-bathrooms.osw index 95203f62..bdd7f8d4 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/non-integer-geometry-num-bathrooms.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/non-integer-geometry-num-bathrooms.osw @@ -6,58 +6,50 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", "cooling_system_cooling_compressor_type": "single stage", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.73, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "central air conditioner", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -65,8 +57,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -74,11 +65,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "2", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 25.0, @@ -92,17 +82,15 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -133,6 +121,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, @@ -141,6 +130,7 @@ "geometry_num_floors_above_grade": 1, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family detached", @@ -150,22 +140,20 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "64000.0", - "heat_pump_heating_capacity_17F": "auto", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "none", "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "natural gas", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.92, @@ -186,7 +174,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/non-integer-geometry-num-bathrooms.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -208,14 +196,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -236,18 +222,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -274,21 +256,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -315,10 +295,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "none", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -326,8 +304,6 @@ "water_heater_efficiency": 0.95, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "electricity", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "18767", "water_heater_jacket_rvalue": 0, "water_heater_location": "living space", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/second-heating-system-but-no-primary-heating.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/second-heating-system-but-no-primary-heating.osw new file mode 100644 index 00000000..98cfb6dc --- /dev/null +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/second-heating-system-but-no-primary-heating.osw @@ -0,0 +1,337 @@ +{ + "measure_paths": [ + "../.." + ], + "steps": [ + { + "arguments": { + "air_leakage_house_pressure": 50, + "air_leakage_shielding_of_home": "auto", + "air_leakage_units": "ACH", + "air_leakage_value": 3, + "bathroom_fans_quantity": "0", + "ceiling_assembly_r": 39.3, + "ceiling_fan_cooling_setpoint_temp_offset": 0, + "ceiling_fan_efficiency": "auto", + "ceiling_fan_present": false, + "ceiling_fan_quantity": "auto", + "clothes_dryer_efficiency": "3.73", + "clothes_dryer_efficiency_type": "CombinedEnergyFactor", + "clothes_dryer_fuel_type": "electricity", + "clothes_dryer_location": "living space", + "clothes_dryer_usage_multiplier": 1.0, + "clothes_dryer_vented_flow_rate": "150.0", + "clothes_washer_capacity": "3.2", + "clothes_washer_efficiency": "1.21", + "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", + "clothes_washer_label_annual_gas_cost": "27.0", + "clothes_washer_label_electric_rate": "0.12", + "clothes_washer_label_gas_rate": "1.09", + "clothes_washer_label_usage": "6.0", + "clothes_washer_location": "living space", + "clothes_washer_rated_annual_kwh": "380.0", + "clothes_washer_usage_multiplier": 1.0, + "cooking_range_oven_fuel_type": "electricity", + "cooking_range_oven_is_convection": false, + "cooking_range_oven_is_induction": false, + "cooking_range_oven_location": "living space", + "cooking_range_oven_usage_multiplier": 1.0, + "cooling_system_cooling_capacity": "48000.0", + "cooling_system_cooling_compressor_type": "single stage", + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", + "cooling_system_cooling_sensible_heat_fraction": 0.73, + "cooling_system_fraction_cool_load_served": 1, + "cooling_system_is_ducted": false, + "cooling_system_type": "central air conditioner", + "dehumidifier_capacity": 40, + "dehumidifier_efficiency": 1.8, + "dehumidifier_efficiency_type": "EnergyFactor", + "dehumidifier_fraction_dehumidification_load_served": 1, + "dehumidifier_rh_setpoint": 0.5, + "dehumidifier_type": "none", + "dhw_distribution_pipe_r": "0.0", + "dhw_distribution_recirc_branch_piping_length": "50", + "dhw_distribution_recirc_control_type": "no control", + "dhw_distribution_recirc_piping_length": "50", + "dhw_distribution_recirc_pump_power": "50", + "dhw_distribution_standard_piping_length": "50", + "dhw_distribution_system_type": "Standard", + "dishwasher_efficiency": "307", + "dishwasher_efficiency_type": "RatedAnnualkWh", + "dishwasher_label_annual_gas_cost": "22.32", + "dishwasher_label_electric_rate": "0.12", + "dishwasher_label_gas_rate": "1.09", + "dishwasher_label_usage": "4.0", + "dishwasher_location": "living space", + "dishwasher_place_setting_capacity": "12", + "dishwasher_usage_multiplier": 1.0, + "door_area": 80.0, + "door_rvalue": 4.4, + "ducts_number_of_return_registers": "2", + "ducts_return_insulation_r": 0.0, + "ducts_return_leakage_units": "CFM25", + "ducts_return_leakage_value": 25.0, + "ducts_return_location": "attic - unvented", + "ducts_return_surface_area": "50.0", + "ducts_supply_insulation_r": 4.0, + "ducts_supply_leakage_units": "CFM25", + "ducts_supply_leakage_value": 75.0, + "ducts_supply_location": "attic - unvented", + "ducts_supply_surface_area": "150.0", + "dwhr_efficiency": 0.55, + "dwhr_equal_flow": true, + "dwhr_facilities_connected": "none", + "extra_refrigerator_location": "none", + "extra_refrigerator_rated_annual_kwh": "auto", + "extra_refrigerator_usage_multiplier": 1.0, + "floor_assembly_r": 0, + "foundation_wall_insulation_distance_to_bottom": "auto", + "foundation_wall_insulation_distance_to_top": 0.0, + "foundation_wall_insulation_r": 8.9, + "foundation_wall_thickness": "8.0", + "freezer_location": "none", + "freezer_rated_annual_kwh": "auto", + "freezer_usage_multiplier": 1.0, + "fuel_loads_fireplace_annual_therm": "auto", + "fuel_loads_fireplace_frac_latent": "auto", + "fuel_loads_fireplace_frac_sensible": "auto", + "fuel_loads_fireplace_fuel_type": "natural gas", + "fuel_loads_fireplace_present": false, + "fuel_loads_fireplace_usage_multiplier": 0.0, + "fuel_loads_grill_annual_therm": "auto", + "fuel_loads_grill_fuel_type": "natural gas", + "fuel_loads_grill_present": false, + "fuel_loads_grill_usage_multiplier": 0.0, + "fuel_loads_lighting_annual_therm": "auto", + "fuel_loads_lighting_fuel_type": "natural gas", + "fuel_loads_lighting_present": false, + "fuel_loads_lighting_usage_multiplier": 0.0, + "geometry_aspect_ratio": 1.5, + "geometry_attic_type": "UnventedAttic", + "geometry_balcony_depth": 0.0, + "geometry_cfa": 2700.0, + "geometry_corridor_position": "Double-Loaded Interior", + "geometry_corridor_width": 10.0, + "geometry_eaves_depth": 0, + "geometry_foundation_height": 8.0, + "geometry_foundation_height_above_grade": 1.0, + "geometry_foundation_type": "ConditionedBasement", + "geometry_garage_depth": 20.0, + "geometry_garage_position": "Right", + "geometry_garage_protrusion": 0.0, + "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", + "geometry_inset_depth": 0.0, + "geometry_inset_position": "Right", + "geometry_inset_width": 0.0, + "geometry_num_bathrooms": "2", + "geometry_num_bedrooms": 3, + "geometry_num_floors_above_grade": 1, + "geometry_num_occupants": "3", + "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, + "geometry_roof_pitch": "6:12", + "geometry_roof_type": "gable", + "geometry_unit_type": "single-family detached", + "geometry_wall_height": 8.0, + "heat_pump_backup_fuel": "none", + "heat_pump_backup_heating_capacity": "34121.0", + "heat_pump_backup_heating_efficiency": 1, + "heat_pump_cooling_capacity": "48000.0", + "heat_pump_cooling_compressor_type": "single stage", + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", + "heat_pump_cooling_sensible_heat_fraction": 0.73, + "heat_pump_fraction_cool_load_served": 1, + "heat_pump_fraction_heat_load_served": 1, + "heat_pump_heating_capacity": "64000.0", + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", + "heat_pump_type": "none", + "heating_system_fraction_heat_load_served": 1, + "heating_system_fraction_heat_load_served_2": 0.25, + "heating_system_fuel": "natural gas", + "heating_system_fuel_2": "electricity", + "heating_system_heating_capacity": "64000.0", + "heating_system_heating_capacity_2": "auto", + "heating_system_heating_efficiency": 0.92, + "heating_system_heating_efficiency_2": 1.0, + "heating_system_type": "none", + "heating_system_type_2": "Fireplace", + "holiday_lighting_daily_kwh": "auto", + "holiday_lighting_period_begin_day_of_month": "auto", + "holiday_lighting_period_begin_month": "auto", + "holiday_lighting_period_end_day_of_month": "auto", + "holiday_lighting_period_end_month": "auto", + "holiday_lighting_present": false, + "hot_tub_heater_annual_kwh": "auto", + "hot_tub_heater_annual_therm": "auto", + "hot_tub_heater_type": "electric resistance", + "hot_tub_heater_usage_multiplier": 1.0, + "hot_tub_present": false, + "hot_tub_pump_annual_kwh": "auto", + "hot_tub_pump_usage_multiplier": 1.0, + "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/second-heating-system-but-no-primary-heating.xml", + "kitchen_fans_quantity": "0", + "lighting_fraction_cfl_exterior": 0.4, + "lighting_fraction_cfl_garage": 0.4, + "lighting_fraction_cfl_interior": 0.4, + "lighting_fraction_led_exterior": 0.25, + "lighting_fraction_led_garage": 0.25, + "lighting_fraction_led_interior": 0.25, + "lighting_fraction_lfl_exterior": 0.1, + "lighting_fraction_lfl_garage": 0.1, + "lighting_fraction_lfl_interior": 0.1, + "lighting_usage_multiplier_exterior": 1.0, + "lighting_usage_multiplier_garage": 1.0, + "lighting_usage_multiplier_interior": 1.0, + "mech_vent_fan_power": 30, + "mech_vent_fan_power_2": 30, + "mech_vent_fan_type": "none", + "mech_vent_fan_type_2": "none", + "mech_vent_flow_rate": 110, + "mech_vent_flow_rate_2": 110, + "mech_vent_hours_in_operation": 24, + "mech_vent_hours_in_operation_2": 24, + "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", + "mech_vent_sensible_recovery_efficiency": 0.72, + "mech_vent_sensible_recovery_efficiency_2": 0.72, + "mech_vent_total_recovery_efficiency": 0.48, + "mech_vent_total_recovery_efficiency_2": 0.48, + "neighbor_back_distance": 0, + "neighbor_back_height": "auto", + "neighbor_front_distance": 0, + "neighbor_front_height": "auto", + "neighbor_left_distance": 0, + "neighbor_left_height": "auto", + "neighbor_right_distance": 0, + "neighbor_right_height": "auto", + "overhangs_back_depth": 0, + "overhangs_back_distance_to_top_of_window": 0, + "overhangs_front_depth": 0, + "overhangs_front_distance_to_top_of_window": 0, + "overhangs_left_depth": 0, + "overhangs_left_distance_to_top_of_window": 0, + "overhangs_right_depth": 0, + "overhangs_right_distance_to_top_of_window": 0, + "plug_loads_other_annual_kwh": "2457.0", + "plug_loads_other_frac_latent": "0.045", + "plug_loads_other_frac_sensible": "0.855", + "plug_loads_other_usage_multiplier": 1.0, + "plug_loads_television_annual_kwh": "620.0", + "plug_loads_television_usage_multiplier": 1.0, + "plug_loads_vehicle_annual_kwh": "auto", + "plug_loads_vehicle_present": false, + "plug_loads_vehicle_usage_multiplier": 0.0, + "plug_loads_well_pump_annual_kwh": "auto", + "plug_loads_well_pump_present": false, + "plug_loads_well_pump_usage_multiplier": 0.0, + "pool_heater_annual_kwh": "auto", + "pool_heater_annual_therm": "auto", + "pool_heater_type": "electric resistance", + "pool_heater_usage_multiplier": 1.0, + "pool_present": false, + "pool_pump_annual_kwh": "auto", + "pool_pump_usage_multiplier": 1.0, + "pv_system_array_azimuth_1": 180, + "pv_system_array_azimuth_2": 180, + "pv_system_array_tilt_1": "20", + "pv_system_array_tilt_2": "20", + "pv_system_inverter_efficiency_1": 0.96, + "pv_system_inverter_efficiency_2": 0.96, + "pv_system_location_1": "auto", + "pv_system_location_2": "auto", + "pv_system_max_power_output_1": 4000, + "pv_system_max_power_output_2": 4000, + "pv_system_module_type_1": "none", + "pv_system_module_type_2": "none", + "pv_system_num_units_served_1": 1, + "pv_system_num_units_served_2": 1, + "pv_system_system_losses_fraction_1": 0.14, + "pv_system_system_losses_fraction_2": 0.14, + "pv_system_tracking_1": "auto", + "pv_system_tracking_2": "auto", + "refrigerator_location": "living space", + "refrigerator_rated_annual_kwh": "650.0", + "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, + "roof_assembly_r": 2.3, + "roof_color": "medium", + "roof_material_type": "asphalt or fiberglass shingles", + "roof_radiant_barrier": false, + "roof_radiant_barrier_grade": "1", + "schedules_type": "default", + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", + "simulation_control_timestep": "60", + "site_type": "suburban", + "skylight_area_back": 0, + "skylight_area_front": 0, + "skylight_area_left": 0, + "skylight_area_right": 0, + "skylight_shgc": 0.45, + "skylight_ufactor": 0.33, + "slab_carpet_fraction": "0.0", + "slab_carpet_r": "0.0", + "slab_perimeter_depth": 0, + "slab_perimeter_insulation_r": 0, + "slab_thickness": "4.0", + "slab_under_insulation_r": 0, + "slab_under_width": 0, + "solar_thermal_collector_area": 40.0, + "solar_thermal_collector_azimuth": 180, + "solar_thermal_collector_loop_type": "liquid direct", + "solar_thermal_collector_rated_optical_efficiency": 0.5, + "solar_thermal_collector_rated_thermal_losses": 0.2799, + "solar_thermal_collector_tilt": "20", + "solar_thermal_collector_type": "evacuated tube", + "solar_thermal_solar_fraction": 0, + "solar_thermal_storage_volume": "auto", + "solar_thermal_system_type": "none", + "wall_assembly_r": 23, + "wall_color": "medium", + "wall_siding_type": "wood siding", + "wall_type": "WoodStud", + "water_fixtures_shower_low_flow": true, + "water_fixtures_sink_low_flow": false, + "water_fixtures_usage_multiplier": 1.0, + "water_heater_efficiency": 0.95, + "water_heater_efficiency_type": "EnergyFactor", + "water_heater_fuel_type": "electricity", + "water_heater_jacket_rvalue": 0, + "water_heater_location": "living space", + "water_heater_num_units_served": 1, + "water_heater_recovery_efficiency": "0.76", + "water_heater_setpoint_temperature": "125", + "water_heater_standby_loss": 0, + "water_heater_tank_volume": "40", + "water_heater_type": "storage water heater", + "weather_station_epw_filepath": "USA_CO_Denver.Intl.AP.725650_TMY3.epw", + "whole_house_fan_flow_rate": 4500, + "whole_house_fan_power": 300, + "whole_house_fan_present": false, + "window_area_back": 108.0, + "window_area_front": 108.0, + "window_area_left": 72.0, + "window_area_right": 72.0, + "window_aspect_ratio": 1.333, + "window_back_wwr": 0, + "window_fraction_operable": 0.67, + "window_front_wwr": 0, + "window_interior_shading_summer": 0.7, + "window_interior_shading_winter": 0.85, + "window_left_wwr": 0, + "window_right_wwr": 0, + "window_shgc": 0.45, + "window_ufactor": 0.33 + }, + "measure_dir_name": "BuildResidentialHPXML" + } + ] +} \ No newline at end of file diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/second-heating-system-serves-majority-heat.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/second-heating-system-serves-majority-heat.osw index e1b44941..7d1b3e9b 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/second-heating-system-serves-majority-heat.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/second-heating-system-serves-majority-heat.osw @@ -6,58 +6,50 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", "cooling_system_cooling_compressor_type": "single stage", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.73, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "central air conditioner", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -65,8 +57,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -74,11 +65,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "2", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 25.0, @@ -92,17 +82,15 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -133,6 +121,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, @@ -141,6 +130,7 @@ "geometry_num_floors_above_grade": 1, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family detached", @@ -150,22 +140,20 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "64000.0", - "heat_pump_heating_capacity_17F": "auto", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "none", "heating_system_fraction_heat_load_served": 0.4, "heating_system_fraction_heat_load_served_2": 0.6, "heating_system_fuel": "natural gas", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.92, @@ -186,7 +174,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/second-heating-system-serves-majority-heat.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -208,14 +196,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -236,18 +222,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -274,21 +256,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -315,10 +295,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "none", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -326,8 +304,6 @@ "water_heater_efficiency": 0.95, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "electricity", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "18767", "water_heater_jacket_rvalue": 0, "water_heater_location": "living space", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/second-heating-system-serves-total-heat-load.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/second-heating-system-serves-total-heat-load.osw new file mode 100644 index 00000000..e4d3e10d --- /dev/null +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/second-heating-system-serves-total-heat-load.osw @@ -0,0 +1,337 @@ +{ + "measure_paths": [ + "../.." + ], + "steps": [ + { + "arguments": { + "air_leakage_house_pressure": 50, + "air_leakage_shielding_of_home": "auto", + "air_leakage_units": "ACH", + "air_leakage_value": 3, + "bathroom_fans_quantity": "0", + "ceiling_assembly_r": 39.3, + "ceiling_fan_cooling_setpoint_temp_offset": 0, + "ceiling_fan_efficiency": "auto", + "ceiling_fan_present": false, + "ceiling_fan_quantity": "auto", + "clothes_dryer_efficiency": "3.73", + "clothes_dryer_efficiency_type": "CombinedEnergyFactor", + "clothes_dryer_fuel_type": "electricity", + "clothes_dryer_location": "living space", + "clothes_dryer_usage_multiplier": 1.0, + "clothes_dryer_vented_flow_rate": "150.0", + "clothes_washer_capacity": "3.2", + "clothes_washer_efficiency": "1.21", + "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", + "clothes_washer_label_annual_gas_cost": "27.0", + "clothes_washer_label_electric_rate": "0.12", + "clothes_washer_label_gas_rate": "1.09", + "clothes_washer_label_usage": "6.0", + "clothes_washer_location": "living space", + "clothes_washer_rated_annual_kwh": "380.0", + "clothes_washer_usage_multiplier": 1.0, + "cooking_range_oven_fuel_type": "electricity", + "cooking_range_oven_is_convection": false, + "cooking_range_oven_is_induction": false, + "cooking_range_oven_location": "living space", + "cooking_range_oven_usage_multiplier": 1.0, + "cooling_system_cooling_capacity": "48000.0", + "cooling_system_cooling_compressor_type": "single stage", + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", + "cooling_system_cooling_sensible_heat_fraction": 0.73, + "cooling_system_fraction_cool_load_served": 1, + "cooling_system_is_ducted": false, + "cooling_system_type": "central air conditioner", + "dehumidifier_capacity": 40, + "dehumidifier_efficiency": 1.8, + "dehumidifier_efficiency_type": "EnergyFactor", + "dehumidifier_fraction_dehumidification_load_served": 1, + "dehumidifier_rh_setpoint": 0.5, + "dehumidifier_type": "none", + "dhw_distribution_pipe_r": "0.0", + "dhw_distribution_recirc_branch_piping_length": "50", + "dhw_distribution_recirc_control_type": "no control", + "dhw_distribution_recirc_piping_length": "50", + "dhw_distribution_recirc_pump_power": "50", + "dhw_distribution_standard_piping_length": "50", + "dhw_distribution_system_type": "Standard", + "dishwasher_efficiency": "307", + "dishwasher_efficiency_type": "RatedAnnualkWh", + "dishwasher_label_annual_gas_cost": "22.32", + "dishwasher_label_electric_rate": "0.12", + "dishwasher_label_gas_rate": "1.09", + "dishwasher_label_usage": "4.0", + "dishwasher_location": "living space", + "dishwasher_place_setting_capacity": "12", + "dishwasher_usage_multiplier": 1.0, + "door_area": 80.0, + "door_rvalue": 4.4, + "ducts_number_of_return_registers": "2", + "ducts_return_insulation_r": 0.0, + "ducts_return_leakage_units": "CFM25", + "ducts_return_leakage_value": 25.0, + "ducts_return_location": "attic - unvented", + "ducts_return_surface_area": "50.0", + "ducts_supply_insulation_r": 4.0, + "ducts_supply_leakage_units": "CFM25", + "ducts_supply_leakage_value": 75.0, + "ducts_supply_location": "attic - unvented", + "ducts_supply_surface_area": "150.0", + "dwhr_efficiency": 0.55, + "dwhr_equal_flow": true, + "dwhr_facilities_connected": "none", + "extra_refrigerator_location": "none", + "extra_refrigerator_rated_annual_kwh": "auto", + "extra_refrigerator_usage_multiplier": 1.0, + "floor_assembly_r": 0, + "foundation_wall_insulation_distance_to_bottom": "auto", + "foundation_wall_insulation_distance_to_top": 0.0, + "foundation_wall_insulation_r": 8.9, + "foundation_wall_thickness": "8.0", + "freezer_location": "none", + "freezer_rated_annual_kwh": "auto", + "freezer_usage_multiplier": 1.0, + "fuel_loads_fireplace_annual_therm": "auto", + "fuel_loads_fireplace_frac_latent": "auto", + "fuel_loads_fireplace_frac_sensible": "auto", + "fuel_loads_fireplace_fuel_type": "natural gas", + "fuel_loads_fireplace_present": false, + "fuel_loads_fireplace_usage_multiplier": 0.0, + "fuel_loads_grill_annual_therm": "auto", + "fuel_loads_grill_fuel_type": "natural gas", + "fuel_loads_grill_present": false, + "fuel_loads_grill_usage_multiplier": 0.0, + "fuel_loads_lighting_annual_therm": "auto", + "fuel_loads_lighting_fuel_type": "natural gas", + "fuel_loads_lighting_present": false, + "fuel_loads_lighting_usage_multiplier": 0.0, + "geometry_aspect_ratio": 1.5, + "geometry_attic_type": "UnventedAttic", + "geometry_balcony_depth": 0.0, + "geometry_cfa": 2700.0, + "geometry_corridor_position": "Double-Loaded Interior", + "geometry_corridor_width": 10.0, + "geometry_eaves_depth": 0, + "geometry_foundation_height": 8.0, + "geometry_foundation_height_above_grade": 1.0, + "geometry_foundation_type": "ConditionedBasement", + "geometry_garage_depth": 20.0, + "geometry_garage_position": "Right", + "geometry_garage_protrusion": 0.0, + "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", + "geometry_inset_depth": 0.0, + "geometry_inset_position": "Right", + "geometry_inset_width": 0.0, + "geometry_num_bathrooms": "2", + "geometry_num_bedrooms": 3, + "geometry_num_floors_above_grade": 1, + "geometry_num_occupants": "3", + "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, + "geometry_roof_pitch": "6:12", + "geometry_roof_type": "gable", + "geometry_unit_type": "single-family detached", + "geometry_wall_height": 8.0, + "heat_pump_backup_fuel": "none", + "heat_pump_backup_heating_capacity": "34121.0", + "heat_pump_backup_heating_efficiency": 1, + "heat_pump_cooling_capacity": "48000.0", + "heat_pump_cooling_compressor_type": "single stage", + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", + "heat_pump_cooling_sensible_heat_fraction": 0.73, + "heat_pump_fraction_cool_load_served": 1, + "heat_pump_fraction_heat_load_served": 1, + "heat_pump_heating_capacity": "64000.0", + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", + "heat_pump_type": "none", + "heating_system_fraction_heat_load_served": 1, + "heating_system_fraction_heat_load_served_2": 1.0, + "heating_system_fuel": "natural gas", + "heating_system_fuel_2": "electricity", + "heating_system_heating_capacity": "64000.0", + "heating_system_heating_capacity_2": "auto", + "heating_system_heating_efficiency": 0.92, + "heating_system_heating_efficiency_2": 1.0, + "heating_system_type": "Furnace", + "heating_system_type_2": "Fireplace", + "holiday_lighting_daily_kwh": "auto", + "holiday_lighting_period_begin_day_of_month": "auto", + "holiday_lighting_period_begin_month": "auto", + "holiday_lighting_period_end_day_of_month": "auto", + "holiday_lighting_period_end_month": "auto", + "holiday_lighting_present": false, + "hot_tub_heater_annual_kwh": "auto", + "hot_tub_heater_annual_therm": "auto", + "hot_tub_heater_type": "electric resistance", + "hot_tub_heater_usage_multiplier": 1.0, + "hot_tub_present": false, + "hot_tub_pump_annual_kwh": "auto", + "hot_tub_pump_usage_multiplier": 1.0, + "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/second-heating-system-serves-total-heat-load.xml", + "kitchen_fans_quantity": "0", + "lighting_fraction_cfl_exterior": 0.4, + "lighting_fraction_cfl_garage": 0.4, + "lighting_fraction_cfl_interior": 0.4, + "lighting_fraction_led_exterior": 0.25, + "lighting_fraction_led_garage": 0.25, + "lighting_fraction_led_interior": 0.25, + "lighting_fraction_lfl_exterior": 0.1, + "lighting_fraction_lfl_garage": 0.1, + "lighting_fraction_lfl_interior": 0.1, + "lighting_usage_multiplier_exterior": 1.0, + "lighting_usage_multiplier_garage": 1.0, + "lighting_usage_multiplier_interior": 1.0, + "mech_vent_fan_power": 30, + "mech_vent_fan_power_2": 30, + "mech_vent_fan_type": "none", + "mech_vent_fan_type_2": "none", + "mech_vent_flow_rate": 110, + "mech_vent_flow_rate_2": 110, + "mech_vent_hours_in_operation": 24, + "mech_vent_hours_in_operation_2": 24, + "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", + "mech_vent_sensible_recovery_efficiency": 0.72, + "mech_vent_sensible_recovery_efficiency_2": 0.72, + "mech_vent_total_recovery_efficiency": 0.48, + "mech_vent_total_recovery_efficiency_2": 0.48, + "neighbor_back_distance": 0, + "neighbor_back_height": "auto", + "neighbor_front_distance": 0, + "neighbor_front_height": "auto", + "neighbor_left_distance": 0, + "neighbor_left_height": "auto", + "neighbor_right_distance": 0, + "neighbor_right_height": "auto", + "overhangs_back_depth": 0, + "overhangs_back_distance_to_top_of_window": 0, + "overhangs_front_depth": 0, + "overhangs_front_distance_to_top_of_window": 0, + "overhangs_left_depth": 0, + "overhangs_left_distance_to_top_of_window": 0, + "overhangs_right_depth": 0, + "overhangs_right_distance_to_top_of_window": 0, + "plug_loads_other_annual_kwh": "2457.0", + "plug_loads_other_frac_latent": "0.045", + "plug_loads_other_frac_sensible": "0.855", + "plug_loads_other_usage_multiplier": 1.0, + "plug_loads_television_annual_kwh": "620.0", + "plug_loads_television_usage_multiplier": 1.0, + "plug_loads_vehicle_annual_kwh": "auto", + "plug_loads_vehicle_present": false, + "plug_loads_vehicle_usage_multiplier": 0.0, + "plug_loads_well_pump_annual_kwh": "auto", + "plug_loads_well_pump_present": false, + "plug_loads_well_pump_usage_multiplier": 0.0, + "pool_heater_annual_kwh": "auto", + "pool_heater_annual_therm": "auto", + "pool_heater_type": "electric resistance", + "pool_heater_usage_multiplier": 1.0, + "pool_present": false, + "pool_pump_annual_kwh": "auto", + "pool_pump_usage_multiplier": 1.0, + "pv_system_array_azimuth_1": 180, + "pv_system_array_azimuth_2": 180, + "pv_system_array_tilt_1": "20", + "pv_system_array_tilt_2": "20", + "pv_system_inverter_efficiency_1": 0.96, + "pv_system_inverter_efficiency_2": 0.96, + "pv_system_location_1": "auto", + "pv_system_location_2": "auto", + "pv_system_max_power_output_1": 4000, + "pv_system_max_power_output_2": 4000, + "pv_system_module_type_1": "none", + "pv_system_module_type_2": "none", + "pv_system_num_units_served_1": 1, + "pv_system_num_units_served_2": 1, + "pv_system_system_losses_fraction_1": 0.14, + "pv_system_system_losses_fraction_2": 0.14, + "pv_system_tracking_1": "auto", + "pv_system_tracking_2": "auto", + "refrigerator_location": "living space", + "refrigerator_rated_annual_kwh": "650.0", + "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, + "roof_assembly_r": 2.3, + "roof_color": "medium", + "roof_material_type": "asphalt or fiberglass shingles", + "roof_radiant_barrier": false, + "roof_radiant_barrier_grade": "1", + "schedules_type": "default", + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", + "simulation_control_timestep": "60", + "site_type": "suburban", + "skylight_area_back": 0, + "skylight_area_front": 0, + "skylight_area_left": 0, + "skylight_area_right": 0, + "skylight_shgc": 0.45, + "skylight_ufactor": 0.33, + "slab_carpet_fraction": "0.0", + "slab_carpet_r": "0.0", + "slab_perimeter_depth": 0, + "slab_perimeter_insulation_r": 0, + "slab_thickness": "4.0", + "slab_under_insulation_r": 0, + "slab_under_width": 0, + "solar_thermal_collector_area": 40.0, + "solar_thermal_collector_azimuth": 180, + "solar_thermal_collector_loop_type": "liquid direct", + "solar_thermal_collector_rated_optical_efficiency": 0.5, + "solar_thermal_collector_rated_thermal_losses": 0.2799, + "solar_thermal_collector_tilt": "20", + "solar_thermal_collector_type": "evacuated tube", + "solar_thermal_solar_fraction": 0, + "solar_thermal_storage_volume": "auto", + "solar_thermal_system_type": "none", + "wall_assembly_r": 23, + "wall_color": "medium", + "wall_siding_type": "wood siding", + "wall_type": "WoodStud", + "water_fixtures_shower_low_flow": true, + "water_fixtures_sink_low_flow": false, + "water_fixtures_usage_multiplier": 1.0, + "water_heater_efficiency": 0.95, + "water_heater_efficiency_type": "EnergyFactor", + "water_heater_fuel_type": "electricity", + "water_heater_jacket_rvalue": 0, + "water_heater_location": "living space", + "water_heater_num_units_served": 1, + "water_heater_recovery_efficiency": "0.76", + "water_heater_setpoint_temperature": "125", + "water_heater_standby_loss": 0, + "water_heater_tank_volume": "40", + "water_heater_type": "storage water heater", + "weather_station_epw_filepath": "USA_CO_Denver.Intl.AP.725650_TMY3.epw", + "whole_house_fan_flow_rate": 4500, + "whole_house_fan_power": 300, + "whole_house_fan_present": false, + "window_area_back": 108.0, + "window_area_front": 108.0, + "window_area_left": 72.0, + "window_area_right": 72.0, + "window_aspect_ratio": 1.333, + "window_back_wwr": 0, + "window_fraction_operable": 0.67, + "window_front_wwr": 0, + "window_interior_shading_summer": 0.7, + "window_interior_shading_winter": 0.85, + "window_left_wwr": 0, + "window_right_wwr": 0, + "window_shgc": 0.45, + "window_ufactor": 0.33 + }, + "measure_dir_name": "BuildResidentialHPXML" + } + ] +} \ No newline at end of file diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/single-family-attached-ambient.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/single-family-attached-ambient.osw index fbc02808..0b0e8bba 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/single-family-attached-ambient.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/single-family-attached-ambient.osw @@ -6,58 +6,50 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", "cooling_system_cooling_compressor_type": "single stage", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.73, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "central air conditioner", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -65,8 +57,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -74,11 +65,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "2", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 25.0, @@ -92,17 +82,15 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -134,6 +122,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_horizontal_location": "Left", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", @@ -143,6 +132,7 @@ "geometry_num_floors_above_grade": 1, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 0, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family attached", @@ -152,22 +142,20 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "64000.0", - "heat_pump_heating_capacity_17F": "auto", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "none", "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "natural gas", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.92, @@ -188,7 +176,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/single-family-attached-ambient.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -210,14 +198,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -238,18 +224,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -276,21 +258,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -317,10 +297,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "none", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -328,8 +306,6 @@ "water_heater_efficiency": 0.95, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "electricity", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "18767", "water_heater_jacket_rvalue": 0, "water_heater_location": "living space", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/single-family-attached-no-building-orientation.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/single-family-attached-no-building-orientation.osw index a9c9c4a5..d423d818 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/single-family-attached-no-building-orientation.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/single-family-attached-no-building-orientation.osw @@ -6,58 +6,50 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", "cooling_system_cooling_compressor_type": "single stage", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.73, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "central air conditioner", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -65,8 +57,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -74,11 +65,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "2", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 25.0, @@ -92,17 +82,15 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -133,6 +121,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, @@ -141,6 +130,7 @@ "geometry_num_floors_above_grade": 1, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family attached", @@ -150,22 +140,20 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "64000.0", - "heat_pump_heating_capacity_17F": "auto", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "none", "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "natural gas", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.92, @@ -186,7 +174,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/single-family-attached-no-building-orientation.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -208,14 +196,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -236,18 +222,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -274,21 +256,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -315,10 +295,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "none", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -326,8 +304,6 @@ "water_heater_efficiency": 0.95, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "electricity", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "18767", "water_heater_jacket_rvalue": 0, "water_heater_location": "living space", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/single-family-detached-finished-basement-zero-foundation-height.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/single-family-detached-finished-basement-zero-foundation-height.osw index 52478989..b09a9f08 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/single-family-detached-finished-basement-zero-foundation-height.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/single-family-detached-finished-basement-zero-foundation-height.osw @@ -6,58 +6,50 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", "cooling_system_cooling_compressor_type": "single stage", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.73, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "central air conditioner", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -65,8 +57,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -74,11 +65,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "2", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 25.0, @@ -92,17 +82,15 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -133,6 +121,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, @@ -141,6 +130,7 @@ "geometry_num_floors_above_grade": 1, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family detached", @@ -150,22 +140,20 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "64000.0", - "heat_pump_heating_capacity_17F": "auto", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "none", "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "natural gas", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.92, @@ -186,7 +174,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/single-family-detached-finished-basement-zero-foundation-height.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -208,14 +196,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -236,18 +222,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -274,21 +256,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -315,10 +295,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "none", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -326,8 +304,6 @@ "water_heater_efficiency": 0.95, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "electricity", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "18767", "water_heater_jacket_rvalue": 0, "water_heater_location": "living space", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/single-family-detached-slab-non-zero-foundation-height.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/single-family-detached-slab-non-zero-foundation-height.osw index 9488ab56..25f278c1 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/single-family-detached-slab-non-zero-foundation-height.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/single-family-detached-slab-non-zero-foundation-height.osw @@ -6,58 +6,50 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", "cooling_system_cooling_compressor_type": "single stage", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.73, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "central air conditioner", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -65,8 +57,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -74,11 +65,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "2", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 25.0, @@ -92,17 +82,15 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -133,6 +121,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, @@ -141,6 +130,7 @@ "geometry_num_floors_above_grade": 1, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family detached", @@ -150,22 +140,20 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "64000.0", - "heat_pump_heating_capacity_17F": "auto", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "none", "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "natural gas", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.92, @@ -186,7 +174,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/single-family-detached-slab-non-zero-foundation-height.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -208,14 +196,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -236,18 +222,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -274,21 +256,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -315,10 +295,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "none", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -326,8 +304,6 @@ "water_heater_efficiency": 0.95, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "electricity", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "18767", "water_heater_jacket_rvalue": 0, "water_heater_location": "living space", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/slab-non-zero-foundation-height-above-grade.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/slab-non-zero-foundation-height-above-grade.osw index 086e5137..2536000b 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/slab-non-zero-foundation-height-above-grade.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/slab-non-zero-foundation-height-above-grade.osw @@ -6,58 +6,50 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", "cooling_system_cooling_compressor_type": "single stage", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.73, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "central air conditioner", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -65,8 +57,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -74,11 +65,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "2", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 25.0, @@ -92,17 +82,15 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -133,6 +121,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, @@ -141,6 +130,7 @@ "geometry_num_floors_above_grade": 1, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family detached", @@ -150,22 +140,20 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "64000.0", - "heat_pump_heating_capacity_17F": "auto", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "none", "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "natural gas", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.92, @@ -186,7 +174,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/slab-non-zero-foundation-height-above-grade.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -208,14 +196,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -236,18 +222,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -274,21 +256,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -315,10 +295,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "none", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -326,8 +304,6 @@ "water_heater_efficiency": 0.95, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "electricity", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "18767", "water_heater_jacket_rvalue": 0, "water_heater_location": "living space", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/unconditioned-basement-with-wall-and-ceiling-insulation.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/unconditioned-basement-with-wall-and-ceiling-insulation.osw index 0125d409..77bf95da 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/unconditioned-basement-with-wall-and-ceiling-insulation.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/unconditioned-basement-with-wall-and-ceiling-insulation.osw @@ -6,58 +6,50 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", "cooling_system_cooling_compressor_type": "single stage", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.73, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "central air conditioner", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -65,8 +57,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -74,11 +65,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "2", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 25.0, @@ -92,17 +82,15 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 10, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -133,6 +121,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, @@ -141,6 +130,7 @@ "geometry_num_floors_above_grade": 1, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family detached", @@ -150,22 +140,20 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "64000.0", - "heat_pump_heating_capacity_17F": "auto", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "none", "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "natural gas", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.92, @@ -186,7 +174,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/unconditioned-basement-with-wall-and-ceiling-insulation.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -208,14 +196,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -236,18 +222,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -274,21 +256,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -315,10 +295,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "none", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -326,8 +304,6 @@ "water_heater_efficiency": 0.95, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "electricity", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "18767", "water_heater_jacket_rvalue": 0, "water_heater_location": "living space", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/unvented-attic-with-floor-and-roof-insulation.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/unvented-attic-with-floor-and-roof-insulation.osw index 8cb6b5f7..e8881619 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/unvented-attic-with-floor-and-roof-insulation.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/unvented-attic-with-floor-and-roof-insulation.osw @@ -6,58 +6,50 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", "cooling_system_cooling_compressor_type": "single stage", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.73, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "central air conditioner", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -65,8 +57,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -74,11 +65,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "2", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 25.0, @@ -92,17 +82,15 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -133,6 +121,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, @@ -141,6 +130,7 @@ "geometry_num_floors_above_grade": 1, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family detached", @@ -150,22 +140,20 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "64000.0", - "heat_pump_heating_capacity_17F": "auto", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "none", "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "natural gas", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.92, @@ -186,7 +174,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/unvented-attic-with-floor-and-roof-insulation.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -208,14 +196,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -236,18 +222,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -274,21 +256,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 10, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -315,10 +295,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "none", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -326,8 +304,6 @@ "water_heater_efficiency": 0.95, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "electricity", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "18767", "water_heater_jacket_rvalue": 0, "water_heater_location": "living space", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/unvented-crawlspace-with-wall-and-ceiling-insulation.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/unvented-crawlspace-with-wall-and-ceiling-insulation.osw index c47ebc75..dc036500 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/unvented-crawlspace-with-wall-and-ceiling-insulation.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/unvented-crawlspace-with-wall-and-ceiling-insulation.osw @@ -6,58 +6,50 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", "cooling_system_cooling_compressor_type": "single stage", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.73, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "central air conditioner", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -65,8 +57,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -74,11 +65,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "2", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 25.0, @@ -92,17 +82,15 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 10, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": 0.0, "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -133,6 +121,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, @@ -141,6 +130,7 @@ "geometry_num_floors_above_grade": 1, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family detached", @@ -150,22 +140,20 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "64000.0", - "heat_pump_heating_capacity_17F": "auto", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "none", "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "natural gas", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.92, @@ -186,7 +174,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/unvented-crawlspace-with-wall-and-ceiling-insulation.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -208,14 +196,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -236,18 +222,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -274,21 +256,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -315,10 +295,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "none", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -326,8 +304,6 @@ "water_heater_efficiency": 0.95, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "electricity", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "18767", "water_heater_jacket_rvalue": 0, "water_heater_location": "living space", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/vented-attic-with-floor-and-roof-insulation.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/vented-attic-with-floor-and-roof-insulation.osw index 43590dab..fcf431b3 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/vented-attic-with-floor-and-roof-insulation.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/vented-attic-with-floor-and-roof-insulation.osw @@ -6,58 +6,50 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", "cooling_system_cooling_compressor_type": "single stage", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.73, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "central air conditioner", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -65,8 +57,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -74,35 +65,32 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "2", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 25.0, - "ducts_return_location": "attic - unvented", + "ducts_return_location": "attic - vented", "ducts_return_surface_area": "50.0", "ducts_supply_insulation_r": 4.0, "ducts_supply_leakage_units": "CFM25", "ducts_supply_leakage_value": 75.0, - "ducts_supply_location": "attic - unvented", + "ducts_supply_location": "attic - vented", "ducts_supply_surface_area": "150.0", "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 0, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": "auto", "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -133,6 +121,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, @@ -141,6 +130,7 @@ "geometry_num_floors_above_grade": 1, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family detached", @@ -150,22 +140,20 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "64000.0", - "heat_pump_heating_capacity_17F": "auto", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "none", "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "natural gas", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.92, @@ -186,7 +174,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/vented-attic-with-floor-and-roof-insulation.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -208,14 +196,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -236,18 +222,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -274,21 +256,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 10, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -315,10 +295,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "none", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -326,8 +304,6 @@ "water_heater_efficiency": 0.95, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "electricity", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "18767", "water_heater_jacket_rvalue": 0, "water_heater_location": "living space", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/vented-crawlspace-with-wall-and-ceiling-insulation.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/vented-crawlspace-with-wall-and-ceiling-insulation.osw index 6d5a63ad..38b8cc01 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/vented-crawlspace-with-wall-and-ceiling-insulation.osw +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/vented-crawlspace-with-wall-and-ceiling-insulation.osw @@ -6,58 +6,50 @@ { "arguments": { "air_leakage_house_pressure": 50, - "air_leakage_shelter_coefficient": "auto", + "air_leakage_shielding_of_home": "auto", "air_leakage_units": "ACH", "air_leakage_value": 3, - "bathroom_fans_present": false, + "bathroom_fans_quantity": "0", "ceiling_assembly_r": 39.3, "ceiling_fan_cooling_setpoint_temp_offset": 0, "ceiling_fan_efficiency": "auto", "ceiling_fan_present": false, "ceiling_fan_quantity": "auto", - "clothes_dryer_control_type": "timer", - "clothes_dryer_efficiency_cef": "3.73", - "clothes_dryer_efficiency_ef": 3.4615, + "clothes_dryer_efficiency": "3.73", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_location": "living space", - "clothes_dryer_present": true, "clothes_dryer_usage_multiplier": 1.0, "clothes_dryer_vented_flow_rate": "150.0", "clothes_washer_capacity": "3.2", - "clothes_washer_efficiency_imef": "1.21", - "clothes_washer_efficiency_mef": "1.453", + "clothes_washer_efficiency": "1.21", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_label_annual_gas_cost": "27.0", "clothes_washer_label_electric_rate": "0.12", "clothes_washer_label_gas_rate": "1.09", "clothes_washer_label_usage": "6.0", "clothes_washer_location": "living space", - "clothes_washer_present": true, "clothes_washer_rated_annual_kwh": "380.0", "clothes_washer_usage_multiplier": 1.0, "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_convection": false, "cooking_range_oven_is_induction": false, "cooking_range_oven_location": "living space", - "cooking_range_oven_present": true, "cooking_range_oven_usage_multiplier": 1.0, "cooling_system_cooling_capacity": "48000.0", "cooling_system_cooling_compressor_type": "single stage", - "cooling_system_cooling_efficiency_eer": 8.5, - "cooling_system_cooling_efficiency_seer": 13.0, + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", "cooling_system_cooling_sensible_heat_fraction": 0.73, "cooling_system_fraction_cool_load_served": 1, "cooling_system_is_ducted": false, "cooling_system_type": "central air conditioner", "dehumidifier_capacity": 40, - "dehumidifier_efficiency_ef": 1.8, - "dehumidifier_efficiency_ief": 1.5, + "dehumidifier_efficiency": 1.8, "dehumidifier_efficiency_type": "EnergyFactor", "dehumidifier_fraction_dehumidification_load_served": 1, - "dehumidifier_present": false, "dehumidifier_rh_setpoint": 0.5, - "dehumidifier_type": "portable", + "dehumidifier_type": "none", "dhw_distribution_pipe_r": "0.0", "dhw_distribution_recirc_branch_piping_length": "50", "dhw_distribution_recirc_control_type": "no control", @@ -65,8 +57,7 @@ "dhw_distribution_recirc_pump_power": "50", "dhw_distribution_standard_piping_length": "50", "dhw_distribution_system_type": "Standard", - "dishwasher_efficiency_ef": 0.46, - "dishwasher_efficiency_kwh": "307", + "dishwasher_efficiency": "307", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_label_annual_gas_cost": "22.32", "dishwasher_label_electric_rate": "0.12", @@ -74,11 +65,10 @@ "dishwasher_label_usage": "4.0", "dishwasher_location": "living space", "dishwasher_place_setting_capacity": "12", - "dishwasher_present": true, "dishwasher_usage_multiplier": 1.0, "door_area": 80.0, "door_rvalue": 4.4, - "ducts_number_of_return_registers": "auto", + "ducts_number_of_return_registers": "2", "ducts_return_insulation_r": 0.0, "ducts_return_leakage_units": "CFM25", "ducts_return_leakage_value": 25.0, @@ -92,17 +82,15 @@ "dwhr_efficiency": 0.55, "dwhr_equal_flow": true, "dwhr_facilities_connected": "none", - "extra_refrigerator_location": "auto", - "extra_refrigerator_present": false, + "extra_refrigerator_location": "none", "extra_refrigerator_rated_annual_kwh": "auto", "extra_refrigerator_usage_multiplier": 1.0, "floor_assembly_r": 10, - "foundation_wall_insulation_distance_to_bottom": 8.0, + "foundation_wall_insulation_distance_to_bottom": 0.0, "foundation_wall_insulation_distance_to_top": 0.0, "foundation_wall_insulation_r": 8.9, "foundation_wall_thickness": "8.0", - "freezer_location": "auto", - "freezer_present": false, + "freezer_location": "none", "freezer_rated_annual_kwh": "auto", "freezer_usage_multiplier": 1.0, "fuel_loads_fireplace_annual_therm": "auto", @@ -133,6 +121,7 @@ "geometry_garage_position": "Right", "geometry_garage_protrusion": 0.0, "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", "geometry_inset_depth": 0.0, "geometry_inset_position": "Right", "geometry_inset_width": 0.0, @@ -141,6 +130,7 @@ "geometry_num_floors_above_grade": 1, "geometry_num_occupants": "3", "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, "geometry_roof_pitch": "6:12", "geometry_roof_type": "gable", "geometry_unit_type": "single-family detached", @@ -150,22 +140,20 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": "48000.0", "heat_pump_cooling_compressor_type": "single stage", - "heat_pump_cooling_efficiency_eer": 16.6, - "heat_pump_cooling_efficiency_seer": 13.0, + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_sensible_heat_fraction": 0.73, "heat_pump_fraction_cool_load_served": 1, "heat_pump_fraction_heat_load_served": 1, "heat_pump_heating_capacity": "64000.0", - "heat_pump_heating_capacity_17F": "auto", - "heat_pump_heating_efficiency_cop": 3.6, - "heat_pump_heating_efficiency_hspf": 7.7, + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", "heat_pump_type": "none", "heating_system_fraction_heat_load_served": 1, "heating_system_fraction_heat_load_served_2": 0.25, "heating_system_fuel": "natural gas", "heating_system_fuel_2": "electricity", - "heating_system_has_flue_or_chimney": false, - "heating_system_has_flue_or_chimney_2": false, "heating_system_heating_capacity": "64000.0", "heating_system_heating_capacity_2": "auto", "heating_system_heating_efficiency": 0.92, @@ -186,7 +174,7 @@ "hot_tub_pump_annual_kwh": "auto", "hot_tub_pump_usage_multiplier": 1.0, "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/vented-crawlspace-with-wall-and-ceiling-insulation.xml", - "kitchen_fans_present": false, + "kitchen_fans_quantity": "0", "lighting_fraction_cfl_exterior": 0.4, "lighting_fraction_cfl_garage": 0.4, "lighting_fraction_cfl_interior": 0.4, @@ -208,14 +196,12 @@ "mech_vent_hours_in_operation": 24, "mech_vent_hours_in_operation_2": 24, "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", "mech_vent_sensible_recovery_efficiency": 0.72, "mech_vent_sensible_recovery_efficiency_2": 0.72, - "mech_vent_sensible_recovery_efficiency_type": "Unadjusted", - "mech_vent_sensible_recovery_efficiency_type_2": "Unadjusted", "mech_vent_total_recovery_efficiency": 0.48, "mech_vent_total_recovery_efficiency_2": 0.48, - "mech_vent_total_recovery_efficiency_type": "Unadjusted", - "mech_vent_total_recovery_efficiency_type_2": "Unadjusted", "neighbor_back_distance": 0, "neighbor_back_height": "auto", "neighbor_front_distance": 0, @@ -236,18 +222,14 @@ "plug_loads_other_frac_latent": "0.045", "plug_loads_other_frac_sensible": "0.855", "plug_loads_other_usage_multiplier": 1.0, - "plug_loads_other_usage_multiplier_2": 1.0, "plug_loads_television_annual_kwh": "620.0", "plug_loads_television_usage_multiplier": 1.0, - "plug_loads_television_usage_multiplier_2": 1.0, "plug_loads_vehicle_annual_kwh": "auto", "plug_loads_vehicle_present": false, "plug_loads_vehicle_usage_multiplier": 0.0, - "plug_loads_vehicle_usage_multiplier_2": 0.0, "plug_loads_well_pump_annual_kwh": "auto", "plug_loads_well_pump_present": false, "plug_loads_well_pump_usage_multiplier": 0.0, - "plug_loads_well_pump_usage_multiplier_2": 0.0, "pool_heater_annual_kwh": "auto", "pool_heater_annual_therm": "auto", "pool_heater_type": "electric resistance", @@ -274,21 +256,19 @@ "pv_system_tracking_1": "auto", "pv_system_tracking_2": "auto", "refrigerator_location": "living space", - "refrigerator_present": true, "refrigerator_rated_annual_kwh": "650.0", "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "auto", - "roof_emittance": "0.92", + "roof_color": "medium", "roof_material_type": "asphalt or fiberglass shingles", - "roof_radiant_barrier": "false", + "roof_radiant_barrier": false, "roof_radiant_barrier_grade": "1", - "roof_solar_absorptance": "auto", "schedules_type": "default", - "setpoint_cooling_weekday_temp": 78, - "setpoint_cooling_weekend_temp": 78, - "setpoint_heating_weekday_temp": 68, - "setpoint_heating_weekend_temp": 68, + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", "simulation_control_timestep": "60", "site_type": "suburban", "skylight_area_back": 0, @@ -315,10 +295,8 @@ "solar_thermal_storage_volume": "auto", "solar_thermal_system_type": "none", "wall_assembly_r": 23, - "wall_color": "auto", - "wall_emittance": "0.92", + "wall_color": "medium", "wall_siding_type": "wood siding", - "wall_solar_absorptance": "auto", "wall_type": "WoodStud", "water_fixtures_shower_low_flow": true, "water_fixtures_sink_low_flow": false, @@ -326,8 +304,6 @@ "water_heater_efficiency": 0.95, "water_heater_efficiency_type": "EnergyFactor", "water_heater_fuel_type": "electricity", - "water_heater_has_flue_or_chimney": false, - "water_heater_heating_capacity": "18767", "water_heater_jacket_rvalue": 0, "water_heater_location": "living space", "water_heater_num_units_served": 1, diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/zero-number-of-bedrooms.osw b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/zero-number-of-bedrooms.osw new file mode 100644 index 00000000..e59e5051 --- /dev/null +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/zero-number-of-bedrooms.osw @@ -0,0 +1,337 @@ +{ + "measure_paths": [ + "../.." + ], + "steps": [ + { + "arguments": { + "air_leakage_house_pressure": 50, + "air_leakage_shielding_of_home": "auto", + "air_leakage_units": "ACH", + "air_leakage_value": 3, + "bathroom_fans_quantity": "0", + "ceiling_assembly_r": 39.3, + "ceiling_fan_cooling_setpoint_temp_offset": 0, + "ceiling_fan_efficiency": "auto", + "ceiling_fan_present": false, + "ceiling_fan_quantity": "auto", + "clothes_dryer_efficiency": "3.73", + "clothes_dryer_efficiency_type": "CombinedEnergyFactor", + "clothes_dryer_fuel_type": "electricity", + "clothes_dryer_location": "living space", + "clothes_dryer_usage_multiplier": 1.0, + "clothes_dryer_vented_flow_rate": "150.0", + "clothes_washer_capacity": "3.2", + "clothes_washer_efficiency": "1.21", + "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", + "clothes_washer_label_annual_gas_cost": "27.0", + "clothes_washer_label_electric_rate": "0.12", + "clothes_washer_label_gas_rate": "1.09", + "clothes_washer_label_usage": "6.0", + "clothes_washer_location": "living space", + "clothes_washer_rated_annual_kwh": "380.0", + "clothes_washer_usage_multiplier": 1.0, + "cooking_range_oven_fuel_type": "electricity", + "cooking_range_oven_is_convection": false, + "cooking_range_oven_is_induction": false, + "cooking_range_oven_location": "living space", + "cooking_range_oven_usage_multiplier": 1.0, + "cooling_system_cooling_capacity": "48000.0", + "cooling_system_cooling_compressor_type": "single stage", + "cooling_system_cooling_efficiency": 13.0, + "cooling_system_cooling_efficiency_type": "SEER", + "cooling_system_cooling_sensible_heat_fraction": 0.73, + "cooling_system_fraction_cool_load_served": 1, + "cooling_system_is_ducted": false, + "cooling_system_type": "central air conditioner", + "dehumidifier_capacity": 40, + "dehumidifier_efficiency": 1.8, + "dehumidifier_efficiency_type": "EnergyFactor", + "dehumidifier_fraction_dehumidification_load_served": 1, + "dehumidifier_rh_setpoint": 0.5, + "dehumidifier_type": "none", + "dhw_distribution_pipe_r": "0.0", + "dhw_distribution_recirc_branch_piping_length": "50", + "dhw_distribution_recirc_control_type": "no control", + "dhw_distribution_recirc_piping_length": "50", + "dhw_distribution_recirc_pump_power": "50", + "dhw_distribution_standard_piping_length": "50", + "dhw_distribution_system_type": "Standard", + "dishwasher_efficiency": "307", + "dishwasher_efficiency_type": "RatedAnnualkWh", + "dishwasher_label_annual_gas_cost": "22.32", + "dishwasher_label_electric_rate": "0.12", + "dishwasher_label_gas_rate": "1.09", + "dishwasher_label_usage": "4.0", + "dishwasher_location": "living space", + "dishwasher_place_setting_capacity": "12", + "dishwasher_usage_multiplier": 1.0, + "door_area": 80.0, + "door_rvalue": 4.4, + "ducts_number_of_return_registers": "2", + "ducts_return_insulation_r": 0.0, + "ducts_return_leakage_units": "CFM25", + "ducts_return_leakage_value": 25.0, + "ducts_return_location": "attic - unvented", + "ducts_return_surface_area": "50.0", + "ducts_supply_insulation_r": 4.0, + "ducts_supply_leakage_units": "CFM25", + "ducts_supply_leakage_value": 75.0, + "ducts_supply_location": "attic - unvented", + "ducts_supply_surface_area": "150.0", + "dwhr_efficiency": 0.55, + "dwhr_equal_flow": true, + "dwhr_facilities_connected": "none", + "extra_refrigerator_location": "none", + "extra_refrigerator_rated_annual_kwh": "auto", + "extra_refrigerator_usage_multiplier": 1.0, + "floor_assembly_r": 0, + "foundation_wall_insulation_distance_to_bottom": "auto", + "foundation_wall_insulation_distance_to_top": 0.0, + "foundation_wall_insulation_r": 8.9, + "foundation_wall_thickness": "8.0", + "freezer_location": "none", + "freezer_rated_annual_kwh": "auto", + "freezer_usage_multiplier": 1.0, + "fuel_loads_fireplace_annual_therm": "auto", + "fuel_loads_fireplace_frac_latent": "auto", + "fuel_loads_fireplace_frac_sensible": "auto", + "fuel_loads_fireplace_fuel_type": "natural gas", + "fuel_loads_fireplace_present": false, + "fuel_loads_fireplace_usage_multiplier": 0.0, + "fuel_loads_grill_annual_therm": "auto", + "fuel_loads_grill_fuel_type": "natural gas", + "fuel_loads_grill_present": false, + "fuel_loads_grill_usage_multiplier": 0.0, + "fuel_loads_lighting_annual_therm": "auto", + "fuel_loads_lighting_fuel_type": "natural gas", + "fuel_loads_lighting_present": false, + "fuel_loads_lighting_usage_multiplier": 0.0, + "geometry_aspect_ratio": 1.5, + "geometry_attic_type": "UnventedAttic", + "geometry_balcony_depth": 0.0, + "geometry_cfa": 2700.0, + "geometry_corridor_position": "Double-Loaded Interior", + "geometry_corridor_width": 10.0, + "geometry_eaves_depth": 0, + "geometry_foundation_height": 8.0, + "geometry_foundation_height_above_grade": 1.0, + "geometry_foundation_type": "ConditionedBasement", + "geometry_garage_depth": 20.0, + "geometry_garage_position": "Right", + "geometry_garage_protrusion": 0.0, + "geometry_garage_width": 0.0, + "geometry_has_flue_or_chimney": "auto", + "geometry_inset_depth": 0.0, + "geometry_inset_position": "Right", + "geometry_inset_width": 0.0, + "geometry_num_bathrooms": "2", + "geometry_num_bedrooms": 0, + "geometry_num_floors_above_grade": 1, + "geometry_num_occupants": "3", + "geometry_orientation": 180.0, + "geometry_rim_joist_height": 9.25, + "geometry_roof_pitch": "6:12", + "geometry_roof_type": "gable", + "geometry_unit_type": "single-family detached", + "geometry_wall_height": 8.0, + "heat_pump_backup_fuel": "none", + "heat_pump_backup_heating_capacity": "34121.0", + "heat_pump_backup_heating_efficiency": 1, + "heat_pump_cooling_capacity": "48000.0", + "heat_pump_cooling_compressor_type": "single stage", + "heat_pump_cooling_efficiency": 13.0, + "heat_pump_cooling_efficiency_type": "SEER", + "heat_pump_cooling_sensible_heat_fraction": 0.73, + "heat_pump_fraction_cool_load_served": 1, + "heat_pump_fraction_heat_load_served": 1, + "heat_pump_heating_capacity": "64000.0", + "heat_pump_heating_capacity_17_f": "auto", + "heat_pump_heating_efficiency": 7.7, + "heat_pump_heating_efficiency_type": "HSPF", + "heat_pump_type": "none", + "heating_system_fraction_heat_load_served": 1, + "heating_system_fraction_heat_load_served_2": 0.25, + "heating_system_fuel": "natural gas", + "heating_system_fuel_2": "electricity", + "heating_system_heating_capacity": "64000.0", + "heating_system_heating_capacity_2": "auto", + "heating_system_heating_efficiency": 0.92, + "heating_system_heating_efficiency_2": 1.0, + "heating_system_type": "Furnace", + "heating_system_type_2": "none", + "holiday_lighting_daily_kwh": "auto", + "holiday_lighting_period_begin_day_of_month": "auto", + "holiday_lighting_period_begin_month": "auto", + "holiday_lighting_period_end_day_of_month": "auto", + "holiday_lighting_period_end_month": "auto", + "holiday_lighting_present": false, + "hot_tub_heater_annual_kwh": "auto", + "hot_tub_heater_annual_therm": "auto", + "hot_tub_heater_type": "electric resistance", + "hot_tub_heater_usage_multiplier": 1.0, + "hot_tub_present": false, + "hot_tub_pump_annual_kwh": "auto", + "hot_tub_pump_usage_multiplier": 1.0, + "hpxml_path": "../BuildResidentialHPXML/tests/built_residential_hpxml/zero-number-of-bedrooms.xml", + "kitchen_fans_quantity": "0", + "lighting_fraction_cfl_exterior": 0.4, + "lighting_fraction_cfl_garage": 0.4, + "lighting_fraction_cfl_interior": 0.4, + "lighting_fraction_led_exterior": 0.25, + "lighting_fraction_led_garage": 0.25, + "lighting_fraction_led_interior": 0.25, + "lighting_fraction_lfl_exterior": 0.1, + "lighting_fraction_lfl_garage": 0.1, + "lighting_fraction_lfl_interior": 0.1, + "lighting_usage_multiplier_exterior": 1.0, + "lighting_usage_multiplier_garage": 1.0, + "lighting_usage_multiplier_interior": 1.0, + "mech_vent_fan_power": 30, + "mech_vent_fan_power_2": 30, + "mech_vent_fan_type": "none", + "mech_vent_fan_type_2": "none", + "mech_vent_flow_rate": 110, + "mech_vent_flow_rate_2": 110, + "mech_vent_hours_in_operation": 24, + "mech_vent_hours_in_operation_2": 24, + "mech_vent_num_units_served": 1, + "mech_vent_recovery_efficiency_type": "Unadjusted", + "mech_vent_recovery_efficiency_type_2": "Unadjusted", + "mech_vent_sensible_recovery_efficiency": 0.72, + "mech_vent_sensible_recovery_efficiency_2": 0.72, + "mech_vent_total_recovery_efficiency": 0.48, + "mech_vent_total_recovery_efficiency_2": 0.48, + "neighbor_back_distance": 0, + "neighbor_back_height": "auto", + "neighbor_front_distance": 0, + "neighbor_front_height": "auto", + "neighbor_left_distance": 0, + "neighbor_left_height": "auto", + "neighbor_right_distance": 0, + "neighbor_right_height": "auto", + "overhangs_back_depth": 0, + "overhangs_back_distance_to_top_of_window": 0, + "overhangs_front_depth": 0, + "overhangs_front_distance_to_top_of_window": 0, + "overhangs_left_depth": 0, + "overhangs_left_distance_to_top_of_window": 0, + "overhangs_right_depth": 0, + "overhangs_right_distance_to_top_of_window": 0, + "plug_loads_other_annual_kwh": "2457.0", + "plug_loads_other_frac_latent": "0.045", + "plug_loads_other_frac_sensible": "0.855", + "plug_loads_other_usage_multiplier": 1.0, + "plug_loads_television_annual_kwh": "620.0", + "plug_loads_television_usage_multiplier": 1.0, + "plug_loads_vehicle_annual_kwh": "auto", + "plug_loads_vehicle_present": false, + "plug_loads_vehicle_usage_multiplier": 0.0, + "plug_loads_well_pump_annual_kwh": "auto", + "plug_loads_well_pump_present": false, + "plug_loads_well_pump_usage_multiplier": 0.0, + "pool_heater_annual_kwh": "auto", + "pool_heater_annual_therm": "auto", + "pool_heater_type": "electric resistance", + "pool_heater_usage_multiplier": 1.0, + "pool_present": false, + "pool_pump_annual_kwh": "auto", + "pool_pump_usage_multiplier": 1.0, + "pv_system_array_azimuth_1": 180, + "pv_system_array_azimuth_2": 180, + "pv_system_array_tilt_1": "20", + "pv_system_array_tilt_2": "20", + "pv_system_inverter_efficiency_1": 0.96, + "pv_system_inverter_efficiency_2": 0.96, + "pv_system_location_1": "auto", + "pv_system_location_2": "auto", + "pv_system_max_power_output_1": 4000, + "pv_system_max_power_output_2": 4000, + "pv_system_module_type_1": "none", + "pv_system_module_type_2": "none", + "pv_system_num_units_served_1": 1, + "pv_system_num_units_served_2": 1, + "pv_system_system_losses_fraction_1": 0.14, + "pv_system_system_losses_fraction_2": 0.14, + "pv_system_tracking_1": "auto", + "pv_system_tracking_2": "auto", + "refrigerator_location": "living space", + "refrigerator_rated_annual_kwh": "650.0", + "refrigerator_usage_multiplier": 1.0, + "rim_joist_assembly_r": 23.0, + "roof_assembly_r": 2.3, + "roof_color": "medium", + "roof_material_type": "asphalt or fiberglass shingles", + "roof_radiant_barrier": false, + "roof_radiant_barrier_grade": "1", + "schedules_type": "default", + "setpoint_cooling_weekday": "78", + "setpoint_cooling_weekend": "78", + "setpoint_heating_weekday": "68", + "setpoint_heating_weekend": "68", + "simulation_control_timestep": "60", + "site_type": "suburban", + "skylight_area_back": 0, + "skylight_area_front": 0, + "skylight_area_left": 0, + "skylight_area_right": 0, + "skylight_shgc": 0.45, + "skylight_ufactor": 0.33, + "slab_carpet_fraction": "0.0", + "slab_carpet_r": "0.0", + "slab_perimeter_depth": 0, + "slab_perimeter_insulation_r": 0, + "slab_thickness": "4.0", + "slab_under_insulation_r": 0, + "slab_under_width": 0, + "solar_thermal_collector_area": 40.0, + "solar_thermal_collector_azimuth": 180, + "solar_thermal_collector_loop_type": "liquid direct", + "solar_thermal_collector_rated_optical_efficiency": 0.5, + "solar_thermal_collector_rated_thermal_losses": 0.2799, + "solar_thermal_collector_tilt": "20", + "solar_thermal_collector_type": "evacuated tube", + "solar_thermal_solar_fraction": 0, + "solar_thermal_storage_volume": "auto", + "solar_thermal_system_type": "none", + "wall_assembly_r": 23, + "wall_color": "medium", + "wall_siding_type": "wood siding", + "wall_type": "WoodStud", + "water_fixtures_shower_low_flow": true, + "water_fixtures_sink_low_flow": false, + "water_fixtures_usage_multiplier": 1.0, + "water_heater_efficiency": 0.95, + "water_heater_efficiency_type": "EnergyFactor", + "water_heater_fuel_type": "electricity", + "water_heater_jacket_rvalue": 0, + "water_heater_location": "living space", + "water_heater_num_units_served": 1, + "water_heater_recovery_efficiency": "0.76", + "water_heater_setpoint_temperature": "125", + "water_heater_standby_loss": 0, + "water_heater_tank_volume": "40", + "water_heater_type": "storage water heater", + "weather_station_epw_filepath": "USA_CO_Denver.Intl.AP.725650_TMY3.epw", + "whole_house_fan_flow_rate": 4500, + "whole_house_fan_power": 300, + "whole_house_fan_present": false, + "window_area_back": 108.0, + "window_area_front": 108.0, + "window_area_left": 72.0, + "window_area_right": 72.0, + "window_aspect_ratio": 1.333, + "window_back_wwr": 0, + "window_fraction_operable": 0.67, + "window_front_wwr": 0, + "window_interior_shading_summer": 0.7, + "window_interior_shading_winter": 0.85, + "window_left_wwr": 0, + "window_right_wwr": 0, + "window_shgc": 0.45, + "window_ufactor": 0.33 + }, + "measure_dir_name": "BuildResidentialHPXML" + } + ] +} \ No newline at end of file diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/schedules/vacant.csv b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/schedules/vacant.csv new file mode 100644 index 00000000..1f827296 --- /dev/null +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/schedules/vacant.csv @@ -0,0 +1,8761 @@ +occupants,lighting_interior,lighting_exterior,lighting_garage,lighting_exterior_holiday,cooking_range,refrigerator,extra_refrigerator,freezer,dishwasher,dishwasher_power,clothes_washer,clothes_washer_power,clothes_dryer,clothes_dryer_exhaust,baths,showers,sinks,fixtures,ceiling_fan,plug_loads_other,plug_loads_tv,plug_loads_vehicle,plug_loads_well_pump,fuel_loads_grill,fuel_loads_lighting,fuel_loads_fireplace,pool_pump,pool_heater,hot_tub_pump,hot_tub_heater,sleep,vacancy +1,0.0495,0.559,0.559,0,0,0.611,0.611,0.611,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0954,1,0.509,0.0248,0.509,0.509,0.0235,0.0235,0.151,0.145,1,1 +1,0.0495,0.517,0.517,0,0,0.596,0.596,0.596,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0464,1,0.266,0.00621,0.266,0.266,0.0235,0.0235,0.183,0.176,1,1 +1,0.0495,0.517,0.517,0,0,0.58,0.58,0.58,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0232,1,0.22,0.00621,0.22,0.22,0.0235,0.0235,0.151,0.145,1,1 +1,0.0495,0.503,0.503,0,0,0.565,0.565,0.565,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.018,1,0.173,0.0124,0.173,0.173,0.0313,0.0313,0.183,0.176,1,1 +1,0.0495,0.461,0.461,0,0,0.55,0.55,0.55,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0284,1,0.185,0.0435,0.185,0.185,0.0626,0.0626,0.296,0.285,1,1 +1,0.0833,0.503,0.503,0,0.0853,0.55,0.55,0.55,0,0,0,0,0,0,0,0.00246,0,0.00246,0.34,0.516,0.0464,1,0.208,0.0745,0.208,0.208,0.117,0.117,0.422,0.406,0.667,1 +1,0.253,0.601,0.601,0,0.146,0.58,0.58,0.58,0,0,0,0,0,0,0,0.0147,0,0.0147,0.487,0.617,0.0747,1,0.301,0.18,0.301,0.301,0.203,0.203,0.359,0.345,0.333,1 +0.667,0.316,0.657,0.657,0,0.0609,0.611,0.611,0.611,0,0,0,0,0,0,0,0,0,0,0.524,0.68,0.103,1,0.381,0.286,0.381,0.381,0.344,0.344,0.151,0.145,0,1 +0.333,0.192,0.475,0.475,0,0,0.626,0.626,0.626,0,0,0,0,0,0,0,0,0,0,0.33,0.579,0.126,1,0.381,0.273,0.381,0.381,0.657,0.657,0.151,0.145,0,1 +0.333,0.196,0.322,0.322,0,0,0.626,0.626,0.626,0,0,0,0,0,0,0,0,0,0,0.279,0.579,0.149,1,0.37,0.255,0.37,0.37,0.947,0.947,0.12,0.115,0,1 +0.333,0.192,0.336,0.336,0,0,0.611,0.611,0.611,0,0,0,0,0,0,0,0,0.00852,0.00852,0.284,0.579,0.168,1,0.381,0.273,0.381,0.381,0.994,0.994,0.0945,0.0909,0,1 +0.333,0.186,0.35,0.35,0,0,0.611,0.611,0.611,0,0,0,0,0,0,0,0,0.00568,0.00568,0.288,0.585,0.186,1,0.381,0.286,0.381,0.381,0.947,0.947,0.0882,0.0849,0,1 +0.333,0.181,0.336,0.336,0,0,0.641,0.641,0.641,0,0,0,0,0,0,0,0,0.00284,0.00284,0.284,0.591,0.196,1,0.37,0.261,0.37,0.37,0.939,0.939,0.0882,0.0849,0,1 +0,0.0495,0.392,0.392,0,0,0.641,0.641,0.641,0.0161,0.0239,0,0,0,0,0,0,0.017,0.017,0.258,0.465,0.222,1,0.37,0.236,0.37,0.37,0.704,0.704,0.0882,0.0849,0,1 +0,0.0495,0.433,0.433,0,0,0.641,0.641,0.641,0,0,0,0,0,0,0,0,0.00568,0.00568,0.258,0.465,0.235,1,0.37,0.304,0.37,0.37,0.587,0.587,0.151,0.145,0,1 +0.333,0.196,0.447,0.447,0,0,0.626,0.626,0.626,0,0,0,0,0,0,0,0,0.00284,0.00284,0.321,0.597,0.263,1,0.381,0.366,0.381,0.381,0.477,0.477,0.365,0.352,0,1 +0.667,0.418,0.545,0.545,0.0288,0.0366,0.672,0.672,0.672,0,0,0,0,0,0,0,0,0.00568,0.00568,0.449,0.755,0.327,1,0.52,0.683,0.52,0.52,0.29,0.29,0.794,0.764,0,1 +1,0.798,0.741,0.741,0.346,0,0.733,0.733,0.733,0,0,0,0,0,0,0,0,0,0,0.741,0.974,0.402,1,0.659,1,0.659,0.659,0.18,0.18,0.769,0.739,0,1 +1,0.979,0.881,0.881,0.593,0,0.764,0.764,0.764,0.00584,0.0175,0,0,0,0,0,0,0,0,0.881,0.993,0.541,1,0.763,0.714,0.763,0.763,0.102,0.102,0.428,0.412,0,1 +1,0.991,0.937,0.937,0.683,0,0.733,0.733,0.733,0.0193,0.0302,0,0,0,0,0,0,0,0,0.937,0.937,0.758,1,0.878,0.435,0.878,0.878,0.0626,0.0626,0.384,0.37,0,1 +1,0.823,0.993,0.993,1,0,0.718,0.718,0.718,0.0133,0.0478,0,0,0,0,0,0,0,0,0.993,0.88,0.936,1,0.936,0.273,0.936,0.936,0.0313,0.0313,0.321,0.309,0,1 +1,0.621,0.965,0.965,0.679,0,0.703,0.703,0.703,0.0223,0,0,0,0,0,0,0,0,0,0.965,0.843,0.887,1,0.994,0.118,0.994,0.994,0.0235,0.0235,0.271,0.261,0,1 +1,0.374,0.825,0.825,0.132,0,0.672,0.672,0.672,0.00343,0,0,0,0,0,0.0148,0.0549,0.00284,0.0726,0.636,0.655,0.536,1,0.867,0.0807,0.867,0.867,0.0235,0.0235,0.151,0.145,0.333,1 +1,0.116,0.699,0.699,0.0658,0,0.626,0.626,0.626,0,0,0,0,0,0,0,0.0279,0,0.0279,0.405,0.535,0.232,1,0.751,0.0435,0.751,0.751,0.0235,0.0235,0.151,0.145,0.667,1 +1,0.0495,0.559,0.559,0,0,0.611,0.611,0.611,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0954,1,0.509,0.0248,0.509,0.509,0.0235,0.0235,0.151,0.145,1,1 +1,0.0495,0.517,0.517,0,0,0.596,0.596,0.596,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.465,0.0464,1,0.266,0.00621,0.266,0.266,0.0235,0.0235,0.183,0.176,1,1 +1,0.0495,0.517,0.517,0,0,0.58,0.58,0.58,0,0,0,0,0,0,0,0,0,0,0.344,0.51,0.0232,1,0.22,0.00621,0.22,0.22,0.0235,0.0235,0.151,0.145,0.667,1 +1,0.0495,0.503,0.503,0,0,0.565,0.565,0.565,0,0,0,0,0,0,0,0,0,0,0.34,0.504,0.018,1,0.173,0.0124,0.173,0.173,0.0313,0.0313,0.183,0.176,0.667,1 +1,0.0495,0.461,0.461,0,0,0.55,0.55,0.55,0,0,0,0,0,0,0,0.0415,0,0.0415,0.258,0.465,0.0284,1,0.185,0.0435,0.185,0.185,0.0626,0.0626,0.296,0.285,1,1 +1,0.0833,0.503,0.503,0,0,0.55,0.55,0.55,0,0,0,0,0,0,0,0.0432,0.00568,0.0488,0.34,0.516,0.0464,1,0.208,0.0745,0.208,0.208,0.117,0.117,0.422,0.406,0.667,1 +1,0.253,0.601,0.601,0,0,0.58,0.58,0.58,0,0,0,0,0,0,0,0.0202,0.00284,0.0231,0.487,0.617,0.0747,1,0.301,0.18,0.301,0.301,0.203,0.203,0.359,0.345,0.333,1 +0.333,0.0495,0.657,0.657,0,0,0.611,0.611,0.611,0,0,0,0,0,0,0,0.00266,0,0.00266,0.258,0.465,0.103,1,0.381,0.286,0.381,0.381,0.344,0.344,0.151,0.145,0.333,1 +0.333,0.192,0.475,0.475,0,0,0.626,0.626,0.626,0,0,0,0,0,0,0,0.0186,0,0.0186,0.33,0.579,0.126,1,0.381,0.273,0.381,0.381,0.657,0.657,0.151,0.145,0,1 +0.333,0.196,0.322,0.322,0,0,0.626,0.626,0.626,0.0102,0.0478,0,0,0,0,0,0,0.00568,0.00568,0.279,0.579,0.149,1,0.37,0.255,0.37,0.37,0.947,0.947,0.12,0.115,0,1 +0,0.0495,0.336,0.336,0,0,0.611,0.611,0.611,0.0121,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.465,0.168,1,0.381,0.273,0.381,0.381,0.994,0.994,0.0945,0.0909,0,1 +0,0.0495,0.35,0.35,0,0,0.611,0.611,0.611,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.186,1,0.381,0.286,0.381,0.381,0.947,0.947,0.0882,0.0849,0,1 +0,0.0495,0.336,0.336,0,0,0.641,0.641,0.641,0,0,0,0,0,0,0,0,0.0114,0.0114,0.258,0.465,0.196,1,0.37,0.261,0.37,0.37,0.939,0.939,0.0882,0.0849,0,1 +0.333,0.18,0.392,0.392,0,0.122,0.641,0.641,0.641,0,0,0,0,0,0,0,0,0.00852,0.00852,0.302,0.591,0.222,1,0.37,0.236,0.37,0.37,0.704,0.704,0.0882,0.0849,0,1 +0.333,0.182,0.433,0.433,0,0.0244,0.641,0.641,0.641,0,0,0,0,0,0,0,0,0,0,0.316,0.585,0.235,1,0.37,0.304,0.37,0.37,0.587,0.587,0.151,0.145,0,1 +0.333,0.196,0.447,0.447,0,0,0.626,0.626,0.626,0,0,0,0,0,0,0,0,0,0,0.321,0.597,0.263,1,0.381,0.366,0.381,0.381,0.477,0.477,0.365,0.352,0,1 +0.333,0.234,0.545,0.545,0.0288,0,0.672,0.672,0.672,0,0,0,0,0,0,0,0.00259,0.00568,0.00827,0.354,0.61,0.327,1,0.52,0.683,0.52,0.52,0.29,0.29,0.794,0.764,0,1 +1,0.798,0.741,0.741,0.346,0,0.733,0.733,0.733,0,0,0,0,0,0,0.0731,0.0155,0.00568,0.0944,0.741,0.974,0.402,1,0.659,1,0.659,0.659,0.18,0.18,0.769,0.739,0,1 +1,0.979,0.881,0.881,0.593,0.0366,0.764,0.764,0.764,0,0,0,0,0,0,0,0,0.0142,0.0142,0.881,0.993,0.541,1,0.763,0.714,0.763,0.763,0.102,0.102,0.428,0.412,0,1 +1,0.991,0.937,0.937,0.683,0,0.733,0.733,0.733,0,0,0,0,0,0,0,0,0.0114,0.0114,0.937,0.937,0.758,1,0.878,0.435,0.878,0.878,0.0626,0.0626,0.384,0.37,0,1 +1,0.823,0.993,0.993,1,0,0.718,0.718,0.718,0,0,0,0,0,0,0,0,0.00284,0.00284,0.993,0.88,0.936,1,0.936,0.273,0.936,0.936,0.0313,0.0313,0.321,0.309,0,1 +1,0.24,0.965,0.965,0.679,0,0.703,0.703,0.703,0,0,0,0,0,0,0,0,0.00284,0.00284,0.493,0.591,0.887,1,0.994,0.118,0.994,0.994,0.0235,0.0235,0.271,0.261,0.667,1 +1,0.0495,0.825,0.825,0.132,0,0.672,0.672,0.672,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.465,0.536,1,0.867,0.0807,0.867,0.867,0.0235,0.0235,0.151,0.145,1,1 +1,0.0495,0.699,0.699,0.0658,0,0.626,0.626,0.626,0,0,0,0,0,0,0,0,0.00568,0.00568,0.258,0.465,0.232,1,0.751,0.0435,0.751,0.751,0.0235,0.0235,0.151,0.145,1,1 +1,0.0495,0.559,0.559,0,0,0.611,0.611,0.611,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0954,1,0.509,0.0248,0.509,0.509,0.0235,0.0235,0.151,0.145,1,1 +1,0.0495,0.517,0.517,0,0,0.596,0.596,0.596,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0464,1,0.266,0.00621,0.266,0.266,0.0235,0.0235,0.183,0.176,1,1 +1,0.0495,0.517,0.517,0,0,0.58,0.58,0.58,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0232,1,0.22,0.00621,0.22,0.22,0.0235,0.0235,0.151,0.145,1,1 +1,0.0495,0.503,0.503,0,0,0.565,0.565,0.565,0,0,0,0,0,0,0,0.00221,0,0.00221,0.258,0.465,0.018,1,0.173,0.0124,0.173,0.173,0.0313,0.0313,0.183,0.176,1,1 +1,0.0513,0.461,0.461,0,0,0.55,0.55,0.55,0,0,0,0,0,0,0,0.03,0,0.03,0.326,0.51,0.0284,1,0.185,0.0435,0.185,0.185,0.0626,0.0626,0.296,0.285,0.667,1 +1,0.0833,0.503,0.503,0,0,0.55,0.55,0.55,0,0,0,0,0,0,0,0.0145,0,0.0145,0.34,0.516,0.0464,1,0.208,0.0745,0.208,0.208,0.117,0.117,0.422,0.406,0.667,1 +1,0.253,0.601,0.601,0,0,0.58,0.58,0.58,0,0,0,0,0,0,0,0.0189,0,0.0189,0.487,0.617,0.0747,1,0.301,0.18,0.301,0.301,0.203,0.203,0.359,0.345,0.333,1 +1,0.449,0.657,0.657,0,0.0731,0.611,0.611,0.611,0,0,0,0,0,0,0,0.0487,0,0.0487,0.657,0.787,0.103,1,0.381,0.286,0.381,0.381,0.344,0.344,0.151,0.145,0,1 +1,0.477,0.475,0.475,0,0,0.626,0.626,0.626,0,0,0,0,0,0,0,0.0245,0,0.0245,0.475,0.806,0.126,1,0.381,0.273,0.381,0.381,0.657,0.657,0.151,0.145,0,1 +1,0.49,0.322,0.322,0,0,0.626,0.626,0.626,0,0,0,0,0,0,0,0.0228,0.0199,0.0427,0.322,0.806,0.149,1,0.37,0.255,0.37,0.37,0.947,0.947,0.12,0.115,0,1 +0.333,0.192,0.336,0.336,0,0,0.611,0.611,0.611,0,0,0,0,0,0,0,0.0281,0.00852,0.0366,0.284,0.579,0.168,1,0.381,0.273,0.381,0.381,0.994,0.994,0.0945,0.0909,0,1 +0.333,0.186,0.35,0.35,0,0,0.611,0.611,0.611,0,0,0,0,0,0,0,0.00795,0.0114,0.0193,0.288,0.585,0.186,1,0.381,0.286,0.381,0.381,0.947,0.947,0.0882,0.0849,0,1 +0.333,0.181,0.336,0.336,0,0,0.641,0.641,0.641,0,0,0,0,0,0,0,0.0308,0.0199,0.0507,0.284,0.591,0.196,1,0.37,0.261,0.37,0.37,0.939,0.939,0.0882,0.0849,0,1 +0.333,0.18,0.392,0.392,0,0,0.641,0.641,0.641,0,0,0,0,0,0,0,0.0132,0.00852,0.0217,0.302,0.591,0.222,1,0.37,0.236,0.37,0.37,0.704,0.704,0.0882,0.0849,0,1 +0.333,0.182,0.433,0.433,0,0,0.641,0.641,0.641,0,0,0,0,0,0,0,0,0,0,0.316,0.585,0.235,1,0.37,0.304,0.37,0.37,0.587,0.587,0.151,0.145,0,1 +0.333,0.196,0.447,0.447,0,0,0.626,0.626,0.626,0,0,0,0,0,0,0,0,0.0227,0.0227,0.321,0.597,0.263,1,0.381,0.366,0.381,0.381,0.477,0.477,0.365,0.352,0,1 +1,0.602,0.545,0.545,0.0288,0.11,0.672,0.672,0.672,0,0,0,0,0,0,0,0,0,0,0.545,0.899,0.327,1,0.52,0.683,0.52,0.52,0.29,0.29,0.794,0.764,0,1 +1,0.798,0.741,0.741,0.346,0,0.733,0.733,0.733,0,0,0,0,0,0,0,0,0.00284,0.00284,0.741,0.974,0.402,1,0.659,1,0.659,0.659,0.18,0.18,0.769,0.739,0,1 +0.667,0.669,0.881,0.881,0.593,0,0.764,0.764,0.764,0,0,0,0,0,0,0,0.00246,0.00568,0.00814,0.673,0.817,0.541,1,0.763,0.714,0.763,0.763,0.102,0.102,0.428,0.412,0,1 +1,0.991,0.937,0.937,0.683,0.0853,0.733,0.733,0.733,0,0,0,0,0,0,0,0.0172,0.0114,0.0286,0.937,0.937,0.758,1,0.878,0.435,0.878,0.878,0.0626,0.0626,0.384,0.37,0,1 +1,0.823,0.993,0.993,1,0.0609,0.718,0.718,0.718,0,0,0,0,0,0,0,0.0026,0.00284,0.00544,0.993,0.88,0.936,1,0.936,0.273,0.936,0.936,0.0313,0.0313,0.321,0.309,0,1 +1,0.621,0.965,0.965,0.679,0,0.703,0.703,0.703,0,0,0,0,0,0,0,0.0543,0.00284,0.0571,0.965,0.843,0.887,1,0.994,0.118,0.994,0.994,0.0235,0.0235,0.271,0.261,0,1 +1,0.374,0.825,0.825,0.132,0,0.672,0.672,0.672,0,0,0,0,0,0,0,0.0235,0.00284,0.0264,0.636,0.655,0.536,1,0.867,0.0807,0.867,0.867,0.0235,0.0235,0.151,0.145,0.333,1 +1,0.183,0.699,0.699,0.0658,0,0.626,0.626,0.626,0,0,0,0,0,0,0,0.0277,0,0.0277,0.552,0.605,0.232,1,0.751,0.0435,0.751,0.751,0.0235,0.0235,0.151,0.145,0.333,1 +1,0.0495,0.559,0.559,0,0,0.611,0.611,0.611,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0954,1,0.509,0.0248,0.509,0.509,0.0235,0.0235,0.151,0.145,1,1 +1,0.0495,0.517,0.517,0,0,0.596,0.596,0.596,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0464,1,0.266,0.00621,0.266,0.266,0.0235,0.0235,0.183,0.176,1,1 +1,0.0495,0.517,0.517,0,0,0.58,0.58,0.58,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0232,1,0.22,0.00621,0.22,0.22,0.0235,0.0235,0.151,0.145,1,1 +1,0.0495,0.503,0.503,0,0,0.565,0.565,0.565,0,0,0,0,0,0,0,0.00233,0,0.00233,0.258,0.465,0.018,1,0.173,0.0124,0.173,0.173,0.0313,0.0313,0.183,0.176,1,1 +1,0.0513,0.461,0.461,0,0.0366,0.55,0.55,0.55,0,0,0,0,0,0,0,0.00931,0,0.00931,0.326,0.51,0.0284,1,0.185,0.0435,0.185,0.185,0.0626,0.0626,0.296,0.285,0.667,1 +1,0.0495,0.503,0.503,0,0,0.55,0.55,0.55,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0464,1,0.208,0.0745,0.208,0.208,0.117,0.117,0.422,0.406,1,1 +1,0.0495,0.601,0.601,0,0,0.58,0.58,0.58,0,0,0,0,0,0,0,0.0165,0,0.0165,0.258,0.465,0.0747,1,0.301,0.18,0.301,0.301,0.203,0.203,0.359,0.345,1,1 +1,0.183,0.657,0.657,0,0,0.611,0.611,0.611,0,0,0,0,0,0,0,0.0456,0,0.0456,0.391,0.572,0.103,1,0.381,0.286,0.381,0.381,0.344,0.344,0.151,0.145,0.667,1 +0.667,0.192,0.475,0.475,0,0,0.626,0.626,0.626,0,0,0,0,0,0,0,0.0178,0,0.0178,0.33,0.579,0.126,1,0.381,0.273,0.381,0.381,0.657,0.657,0.151,0.145,0.333,1 +0.333,0.0495,0.322,0.322,0,0,0.626,0.626,0.626,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.149,1,0.37,0.255,0.37,0.37,0.947,0.947,0.12,0.115,0.333,1 +0.333,0.0495,0.336,0.336,0,0,0.611,0.611,0.611,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.465,0.168,1,0.381,0.273,0.381,0.381,0.994,0.994,0.0945,0.0909,0.333,1 +0.333,0.0495,0.35,0.35,0,0,0.611,0.611,0.611,0,0,0,0,0,0,0,0,0.0199,0.0199,0.258,0.465,0.186,1,0.381,0.286,0.381,0.381,0.947,0.947,0.0882,0.0849,0.333,1 +0.333,0.181,0.336,0.336,0,0,0.641,0.641,0.641,0,0,0,0,0,0,0,0,0.00284,0.00284,0.284,0.591,0.196,1,0.37,0.261,0.37,0.37,0.939,0.939,0.0882,0.0849,0,1 +0.333,0.18,0.392,0.392,0,0,0.641,0.641,0.641,0,0,0,0,0,0,0,0,0,0,0.302,0.591,0.222,1,0.37,0.236,0.37,0.37,0.704,0.704,0.0882,0.0849,0,1 +0.333,0.182,0.433,0.433,0,0,0.641,0.641,0.641,0,0,0,0,0,0,0,0,0,0,0.316,0.585,0.235,1,0.37,0.304,0.37,0.37,0.587,0.587,0.151,0.145,0,1 +0.333,0.196,0.447,0.447,0,0,0.626,0.626,0.626,0,0,0,0,0,0,0,0,0,0,0.321,0.597,0.263,1,0.381,0.366,0.381,0.381,0.477,0.477,0.365,0.352,0,1 +0.667,0.418,0.545,0.545,0.0288,0.0366,0.672,0.672,0.672,0,0,0,0,0,0,0,0,0.00568,0.00568,0.449,0.755,0.327,1,0.52,0.683,0.52,0.52,0.29,0.29,0.794,0.764,0,1 +1,0.798,0.741,0.741,0.346,0,0.733,0.733,0.733,0,0,0,0,0,0,0,0,0.00284,0.00284,0.741,0.974,0.402,1,0.659,1,0.659,0.659,0.18,0.18,0.769,0.739,0,1 +1,0.979,0.881,0.881,0.593,0,0.764,0.764,0.764,0,0,0,0,0,0,0,0,0.0199,0.0199,0.881,0.993,0.541,1,0.763,0.714,0.763,0.763,0.102,0.102,0.428,0.412,0,1 +0.667,0.677,0.937,0.937,0.683,0,0.733,0.733,0.733,0,0,0,0,0,0,0,0,0.00852,0.00852,0.711,0.78,0.758,1,0.878,0.435,0.878,0.878,0.0626,0.0626,0.384,0.37,0,1 +1,0.823,0.993,0.993,1,0,0.718,0.718,0.718,0,0,0,0,0,0,0,0.0252,0.00284,0.028,0.993,0.88,0.936,1,0.936,0.273,0.936,0.936,0.0313,0.0313,0.321,0.309,0,1 +1,0.621,0.965,0.965,0.679,0,0.703,0.703,0.703,0,0,0,0,0,0,0,0.00259,0.017,0.0196,0.965,0.843,0.887,1,0.994,0.118,0.994,0.994,0.0235,0.0235,0.271,0.261,0,1 +1,0.212,0.825,0.825,0.132,0,0.672,0.672,0.672,0,0,0,0,0,0,0,0.0285,0.00284,0.0313,0.447,0.56,0.536,1,0.867,0.0807,0.867,0.867,0.0235,0.0235,0.151,0.145,0.667,1 +1,0.0495,0.699,0.699,0.0658,0,0.626,0.626,0.626,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.232,1,0.751,0.0435,0.751,0.751,0.0235,0.0235,0.151,0.145,1,1 +1,0.0495,0.559,0.559,0,0,0.611,0.611,0.611,0,0,0,0,0,0,0,0,0.00852,0.00852,0.258,0.465,0.0954,1,0.509,0.0248,0.509,0.509,0.0235,0.0235,0.151,0.145,1,1 +1,0.0495,0.517,0.517,0,0,0.596,0.596,0.596,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0464,1,0.266,0.00621,0.266,0.266,0.0235,0.0235,0.183,0.176,1,1 +1,0.0495,0.517,0.517,0,0,0.58,0.58,0.58,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0232,1,0.22,0.00621,0.22,0.22,0.0235,0.0235,0.151,0.145,1,1 +1,0.0495,0.503,0.503,0,0,0.565,0.565,0.565,0,0,0,0,0,0,0,0.00262,0,0.00262,0.258,0.465,0.018,1,0.173,0.0124,0.173,0.173,0.0313,0.0313,0.183,0.176,1,1 +1,0.0513,0.461,0.461,0,0,0.55,0.55,0.55,0,0,0,0,0,0,0,0.0472,0,0.0472,0.326,0.51,0.0284,1,0.185,0.0435,0.185,0.185,0.0626,0.0626,0.296,0.285,0.667,1 +0.667,0.0833,0.503,0.503,0,0.0366,0.55,0.55,0.55,0,0,0,0,0,0,0,0.0501,0,0.0501,0.34,0.516,0.0464,1,0.208,0.0745,0.208,0.208,0.117,0.117,0.422,0.406,0.333,1 +1,0.253,0.601,0.601,0,0,0.58,0.58,0.58,0,0,0,0,0,0,0,0.0466,0,0.0466,0.487,0.617,0.0747,1,0.301,0.18,0.301,0.301,0.203,0.203,0.359,0.345,0.333,1 +1,0.316,0.657,0.657,0,0.0366,0.611,0.611,0.611,0,0,0,0,0,0,0.0366,0.0237,0,0.0603,0.524,0.68,0.103,1,0.381,0.286,0.381,0.381,0.344,0.344,0.151,0.145,0.333,1 +1,0.334,0.475,0.475,0,0,0.626,0.626,0.626,0,0,0,0,0,0,0.0366,0.02,0.00568,0.0622,0.403,0.692,0.126,1,0.381,0.273,0.381,0.381,0.657,0.657,0.151,0.145,0.333,1 +1,0.49,0.322,0.322,0,0,0.626,0.626,0.626,0.0186,0.0891,0,0,0,0,0,0.0266,0,0.0266,0.322,0.806,0.149,1,0.37,0.255,0.37,0.37,0.947,0.947,0.12,0.115,0,1 +1,0.477,0.336,0.336,0,0,0.611,0.611,0.611,0,0.00637,0,0,0,0,0,0.101,0.00284,0.104,0.336,0.806,0.168,1,0.381,0.273,0.381,0.381,0.994,0.994,0.0945,0.0909,0,1 +1,0.458,0.35,0.35,0,0,0.611,0.611,0.611,0,0,0,0,0,0,0,0.0546,0,0.0546,0.35,0.824,0.186,1,0.381,0.286,0.381,0.381,0.947,0.947,0.0882,0.0849,0,1 +1,0.445,0.336,0.336,0,0,0.641,0.641,0.641,0,0,0,0,0,0,0,0.0504,0.0114,0.0617,0.336,0.843,0.196,1,0.37,0.261,0.37,0.37,0.939,0.939,0.0882,0.0849,0,1 +0.333,0.18,0.392,0.392,0,0,0.641,0.641,0.641,0,0,0,0,0,0,0,0,0.00284,0.00284,0.302,0.591,0.222,1,0.37,0.236,0.37,0.37,0.704,0.704,0.0882,0.0849,0,1 +0.333,0.182,0.433,0.433,0,0,0.641,0.641,0.641,0,0,0,0,0,0,0,0,0,0,0.316,0.585,0.235,1,0.37,0.304,0.37,0.37,0.587,0.587,0.151,0.145,0,1 +0.333,0.196,0.447,0.447,0,0,0.626,0.626,0.626,0,0,0,0,0,0,0,0,0,0,0.321,0.597,0.263,1,0.381,0.366,0.381,0.381,0.477,0.477,0.365,0.352,0,1 +0.667,0.418,0.545,0.545,0.0288,0,0.672,0.672,0.672,0.0152,0.0653,0,0,0,0,0,0,0,0,0.449,0.755,0.327,1,0.52,0.683,0.52,0.52,0.29,0.29,0.794,0.764,0,1 +0.667,0.548,0.741,0.741,0.346,0.0366,0.733,0.733,0.733,0.0198,0.0541,0,0,0,0,0,0,0.0114,0.0114,0.58,0.805,0.402,1,0.659,1,0.659,0.659,0.18,0.18,0.769,0.739,0,1 +1,0.979,0.881,0.881,0.593,0,0.764,0.764,0.764,0.0111,0.0239,0,0,0,0,0,0.0135,0.00852,0.022,0.881,0.993,0.541,1,0.763,0.714,0.763,0.763,0.102,0.102,0.428,0.412,0,1 +0.667,0.363,0.937,0.937,0.683,0,0.733,0.733,0.733,0.00915,0,0,0,0,0,0,0,0,0,0.484,0.622,0.758,1,0.878,0.435,0.878,0.878,0.0626,0.0626,0.384,0.37,0.333,1 +1,0.565,0.993,0.993,1,0,0.718,0.718,0.718,0.00932,0.0478,0,0,0,0,0,0,0.0114,0.0114,0.748,0.742,0.936,1,0.936,0.273,0.936,0.936,0.0313,0.0313,0.321,0.309,0.333,1 +1,0.24,0.965,0.965,0.679,0,0.703,0.703,0.703,0.00309,0,0,0,0,0,0,0,0.0142,0.0142,0.493,0.591,0.887,1,0.994,0.118,0.994,0.994,0.0235,0.0235,0.271,0.261,0.667,1 +1,0.212,0.825,0.825,0.132,0,0.672,0.672,0.672,0,0,0,0,0,0,0,0,0.00284,0.00284,0.447,0.56,0.536,1,0.867,0.0807,0.867,0.867,0.0235,0.0235,0.151,0.145,0.667,1 +1,0.116,0.699,0.699,0.0658,0,0.626,0.626,0.626,0,0,0,0,0,0,0,0,0.00284,0.00284,0.405,0.535,0.232,1,0.751,0.0435,0.751,0.751,0.0235,0.0235,0.151,0.145,0.667,1 +1,0.0743,0.559,0.559,0,0,0.611,0.611,0.611,0,0,0,0,0,0,0,0,0,0,0.358,0.529,0.113,1,0.509,0.0248,0.509,0.509,0.0235,0.0235,0.151,0.145,0.667,1 +1,0.0578,0.517,0.517,0,0,0.596,0.596,0.596,0,0,0,0,0,0,0,0,0,0,0.344,0.516,0.0567,1,0.266,0.00621,0.266,0.266,0.0235,0.0235,0.183,0.176,0.667,1 +1,0.0495,0.517,0.517,0,0,0.58,0.58,0.58,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0309,1,0.22,0.00621,0.22,0.22,0.0235,0.0235,0.151,0.145,1,1 +1,0.0495,0.503,0.503,0,0,0.565,0.565,0.565,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0206,1,0.173,0.0124,0.173,0.173,0.0313,0.0313,0.183,0.176,1,1 +1,0.0495,0.461,0.461,0,0,0.55,0.55,0.55,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0284,1,0.185,0.0435,0.185,0.185,0.0626,0.0626,0.296,0.285,1,1 +1,0.0495,0.503,0.503,0,0,0.55,0.55,0.55,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0361,1,0.208,0.0745,0.208,0.208,0.117,0.117,0.422,0.406,1,1 +1,0.0495,0.601,0.601,0,0,0.58,0.58,0.58,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0619,1,0.301,0.18,0.301,0.301,0.203,0.203,0.359,0.345,1,1 +1,0.0495,0.657,0.657,0,0,0.611,0.611,0.611,0,0,0,0,0,0,0,0.00248,0,0.00248,0.258,0.465,0.111,1,0.381,0.286,0.381,0.381,0.344,0.344,0.151,0.145,1,1 +0.667,0.192,0.475,0.475,0,0,0.626,0.626,0.626,0,0,0,0,0,0,0,0.0344,0,0.0344,0.33,0.579,0.183,1,0.381,0.273,0.381,0.381,0.657,0.657,0.151,0.145,0.333,1 +0.667,0.196,0.322,0.322,0,0,0.626,0.626,0.626,0,0,0,0,0,0,0,0.0339,0,0.0339,0.279,0.579,0.242,1,0.37,0.255,0.37,0.37,0.947,0.947,0.12,0.115,0.333,1 +0.667,0.334,0.336,0.336,0,0,0.611,0.611,0.611,0,0,0,0,0,0,0,0.0275,0,0.0275,0.31,0.692,0.289,1,0.381,0.273,0.381,0.381,0.994,0.994,0.0945,0.0909,0,1 +0.667,0.322,0.35,0.35,0,0,0.611,0.611,0.611,0,0,0,0,0,0,0,0.0337,0,0.0337,0.319,0.705,0.317,1,0.381,0.286,0.381,0.381,0.947,0.947,0.0882,0.0849,0,1 +0.667,0.313,0.336,0.336,0,0,0.641,0.641,0.641,0,0,0,0,0,0,0,0,0,0,0.31,0.717,0.34,1,0.37,0.261,0.37,0.37,0.939,0.939,0.0882,0.0849,0,1 +0.333,0.18,0.392,0.392,0,0,0.641,0.641,0.641,0,0,0,0,0,0,0,0,0.00568,0.00568,0.302,0.591,0.402,1,0.37,0.236,0.37,0.37,0.704,0.704,0.0882,0.0849,0,1 +0.333,0.182,0.433,0.433,0,0,0.641,0.641,0.641,0,0,0,0,0,0,0,0,0.0142,0.0142,0.316,0.585,0.459,1,0.37,0.304,0.37,0.37,0.587,0.587,0.151,0.145,0,1 +0.333,0.196,0.447,0.447,0,0.0122,0.626,0.626,0.626,0,0,0,0,0,0,0,0,0,0,0.321,0.597,0.505,1,0.381,0.366,0.381,0.381,0.477,0.477,0.365,0.352,0,1 +0.667,0.418,0.545,0.545,0.0288,0.0975,0.672,0.672,0.672,0,0,0,0,0,0,0,0,0,0,0.449,0.755,0.531,1,0.52,0.683,0.52,0.52,0.29,0.29,0.794,0.764,0,1 +0.667,0.548,0.741,0.741,0.346,0,0.733,0.733,0.733,0,0,0,0,0,0,0,0,0,0,0.58,0.805,0.549,1,0.659,1,0.659,0.659,0.18,0.18,0.769,0.739,0,1 +1,0.979,0.881,0.881,0.593,0,0.764,0.764,0.764,0,0,0,0,0,0,0,0,0.017,0.017,0.881,0.993,0.647,1,0.763,0.714,0.763,0.763,0.102,0.102,0.428,0.412,0,1 +1,0.991,0.937,0.937,0.683,0,0.733,0.733,0.733,0,0,0,0,0,0,0,0,0.00568,0.00568,0.937,0.937,0.851,1,0.878,0.435,0.878,0.878,0.0626,0.0626,0.384,0.37,0,1 +1,0.823,0.993,0.993,1,0,0.718,0.718,0.718,0,0,0,0,0,0,0,0,0.0227,0.0227,0.993,0.88,1,1,0.936,0.273,0.936,0.936,0.0313,0.0313,0.321,0.309,0,1 +1,0.43,0.965,0.965,0.679,0,0.703,0.703,0.703,0,0,0,0,0,0,0,0,0.00284,0.00284,0.729,0.717,0.923,1,0.994,0.118,0.994,0.994,0.0235,0.0235,0.271,0.261,0.333,1 +1,0.374,0.825,0.825,0.132,0,0.672,0.672,0.672,0,0,0,0,0,0,0,0,0.00852,0.00852,0.636,0.655,0.582,1,0.867,0.0807,0.867,0.867,0.0235,0.0235,0.151,0.145,0.333,1 +1,0.116,0.699,0.699,0.0658,0,0.626,0.626,0.626,0,0,0,0,0,0,0,0.00241,0.00852,0.0109,0.405,0.535,0.265,1,0.751,0.0435,0.751,0.751,0.0235,0.0235,0.151,0.145,0.667,1 +1,0.0743,0.559,0.559,0,0,0.611,0.611,0.611,0,0,0,0,0,0,0,0.00964,0.0142,0.0238,0.358,0.529,0.113,1,0.509,0.0248,0.509,0.509,0.0235,0.0235,0.151,0.145,0.667,1 +1,0.0495,0.517,0.517,0,0,0.596,0.596,0.596,0,0,0,0,0,0,0,0,0.0142,0.0142,0.258,0.465,0.0567,1,0.266,0.00621,0.266,0.266,0.0235,0.0235,0.183,0.176,1,1 +1,0.0495,0.517,0.517,0,0,0.58,0.58,0.58,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0309,1,0.22,0.00621,0.22,0.22,0.0235,0.0235,0.151,0.145,1,1 +1,0.0495,0.503,0.503,0,0,0.565,0.565,0.565,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0206,1,0.173,0.0124,0.173,0.173,0.0313,0.0313,0.183,0.176,1,1 +1,0.0495,0.461,0.461,0,0,0.55,0.55,0.55,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0284,1,0.185,0.0435,0.185,0.185,0.0626,0.0626,0.296,0.285,1,1 +1,0.0495,0.503,0.503,0,0,0.55,0.55,0.55,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0361,1,0.208,0.0745,0.208,0.208,0.117,0.117,0.422,0.406,1,1 +1,0.151,0.601,0.601,0,0,0.58,0.58,0.58,0,0,0,0,0,0,0,0,0,0,0.372,0.541,0.0619,1,0.301,0.18,0.301,0.301,0.203,0.203,0.359,0.345,0.667,1 +0.667,0.183,0.657,0.657,0,0,0.611,0.611,0.611,0,0,0,0,0,0,0,0.0265,0,0.0265,0.391,0.572,0.111,1,0.381,0.286,0.381,0.381,0.344,0.344,0.151,0.145,0.333,1 +1,0.192,0.475,0.475,0,0,0.626,0.626,0.626,0,0,0,0,0,0,0,0.0201,0,0.0201,0.33,0.579,0.183,1,0.381,0.273,0.381,0.381,0.657,0.657,0.151,0.145,0.667,1 +0.667,0.343,0.322,0.322,0,0,0.626,0.626,0.626,0,0,0,0,0,0,0,0.0134,0.0114,0.0247,0.3,0.692,0.242,1,0.37,0.255,0.37,0.37,0.947,0.947,0.12,0.115,0,1 +0.333,0.192,0.336,0.336,0,0,0.611,0.611,0.611,0,0,0,0,0,0,0,0,0.00568,0.00568,0.284,0.579,0.289,1,0.381,0.273,0.381,0.381,0.994,0.994,0.0945,0.0909,0,1 +0.333,0.186,0.35,0.35,0,0,0.611,0.611,0.611,0,0,0,0,0,0,0,0,0,0,0.288,0.585,0.317,1,0.381,0.286,0.381,0.381,0.947,0.947,0.0882,0.0849,0,1 +0.333,0.181,0.336,0.336,0,0,0.641,0.641,0.641,0,0,0,0,0,0,0,0,0,0,0.284,0.591,0.34,1,0.37,0.261,0.37,0.37,0.939,0.939,0.0882,0.0849,0,1 +0.333,0.18,0.392,0.392,0,0.0487,0.641,0.641,0.641,0,0,0,0,0,0,0,0,0.0114,0.0114,0.302,0.591,0.402,1,0.37,0.236,0.37,0.37,0.704,0.704,0.0882,0.0849,0,1 +1,0.448,0.433,0.433,0,0.0975,0.641,0.641,0.641,0,0,0,0,0,0,0,0,0,0,0.433,0.824,0.459,1,0.37,0.304,0.37,0.37,0.587,0.587,0.151,0.145,0,1 +0.667,0.343,0.447,0.447,0,0,0.626,0.626,0.626,0,0,0,0,0,0,0,0,0,0,0.384,0.73,0.505,1,0.381,0.366,0.381,0.381,0.477,0.477,0.365,0.352,0,1 +0.667,0.418,0.545,0.545,0,0,0.672,0.672,0.672,0,0,0,0,0,0,0,0,0.0114,0.0114,0.449,0.755,0.531,1,0.52,0.683,0.52,0.52,0.29,0.29,0.794,0.764,0,1 +1,0.798,0.741,0.741,0,0,0.733,0.733,0.733,0,0,0,0,0,0,0,0,0.00284,0.00284,0.741,0.974,0.549,1,0.659,1,0.659,0.659,0.18,0.18,0.769,0.739,0,1 +0.667,0.669,0.881,0.881,0,0,0.764,0.764,0.764,0,0,0,0,0,0,0,0,0.00284,0.00284,0.673,0.817,0.647,1,0.763,0.714,0.763,0.763,0.102,0.102,0.428,0.412,0,1 +1,0.677,0.937,0.937,0,0,0.733,0.733,0.733,0,0,0,0,0,0,0,0,0.00284,0.00284,0.711,0.78,0.851,1,0.878,0.435,0.878,0.878,0.0626,0.0626,0.384,0.37,0.333,1 +1,0.823,0.993,0.993,0,0,0.718,0.718,0.718,0,0,0,0,0,0,0,0.00265,0,0.00265,0.993,0.88,1,1,0.936,0.273,0.936,0.936,0.0313,0.0313,0.321,0.309,0,1 +1,0.621,0.965,0.965,0,0,0.703,0.703,0.703,0,0,0,0,0,0,0,0.0323,0,0.0323,0.965,0.843,0.923,1,0.994,0.118,0.994,0.994,0.0235,0.0235,0.271,0.261,0,1 +1,0.536,0.825,0.825,0,0,0.672,0.672,0.672,0,0,0,0,0,0,0,0,0.0114,0.0114,0.825,0.749,0.582,1,0.867,0.0807,0.867,0.867,0.0235,0.0235,0.151,0.145,0,1 +1,0.183,0.699,0.699,0,0,0.626,0.626,0.626,0,0,0,0,0,0,0,0,0,0,0.552,0.605,0.265,1,0.751,0.0435,0.751,0.751,0.0235,0.0235,0.151,0.145,0.333,1 +1,0.0495,0.559,0.559,0,0,0.611,0.611,0.611,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.465,0.0954,1,0.509,0.0248,0.509,0.509,0.0235,0.0235,0.151,0.145,1,1 +1,0.0495,0.517,0.517,0,0,0.596,0.596,0.596,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0464,1,0.266,0.00621,0.266,0.266,0.0235,0.0235,0.183,0.176,1,1 +1,0.0495,0.517,0.517,0,0,0.58,0.58,0.58,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0232,1,0.22,0.00621,0.22,0.22,0.0235,0.0235,0.151,0.145,1,1 +1,0.0495,0.503,0.503,0,0,0.565,0.565,0.565,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.018,1,0.173,0.0124,0.173,0.173,0.0313,0.0313,0.183,0.176,1,1 +1,0.0495,0.461,0.461,0,0,0.55,0.55,0.55,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0284,1,0.185,0.0435,0.185,0.185,0.0626,0.0626,0.296,0.285,1,1 +1,0.0495,0.503,0.503,0,0,0.55,0.55,0.55,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0464,1,0.208,0.0745,0.208,0.208,0.117,0.117,0.422,0.406,1,1 +1,0.355,0.601,0.601,0,0.0366,0.58,0.58,0.58,0,0,0,0,0,0,0,0,0,0,0.601,0.693,0.0747,1,0.301,0.18,0.301,0.301,0.203,0.203,0.359,0.345,0,1 +0.667,0.316,0.657,0.657,0,0.0122,0.611,0.611,0.611,0,0,0,0,0,0,0,0,0,0,0.524,0.68,0.103,1,0.381,0.286,0.381,0.381,0.344,0.344,0.151,0.145,0,1 +0.333,0.192,0.475,0.475,0,0.146,0.626,0.626,0.626,0,0,0,0,0,0,0,0,0,0,0.33,0.579,0.126,1,0.381,0.273,0.381,0.381,0.657,0.657,0.151,0.145,0,1 +0.333,0.196,0.322,0.322,0,0.0244,0.626,0.626,0.626,0,0,0,0,0,0,0,0,0,0,0.279,0.579,0.149,1,0.37,0.255,0.37,0.37,0.947,0.947,0.12,0.115,0,1 +0.333,0.192,0.336,0.336,0,0,0.611,0.611,0.611,0,0,0,0,0,0,0,0,0.00284,0.00284,0.284,0.579,0.168,1,0.381,0.273,0.381,0.381,0.994,0.994,0.0945,0.0909,0,1 +0.333,0.186,0.35,0.35,0,0,0.611,0.611,0.611,0,0,0,0,0,0,0,0,0.00852,0.00852,0.288,0.585,0.186,1,0.381,0.286,0.381,0.381,0.947,0.947,0.0882,0.0849,0,1 +0.333,0.181,0.336,0.336,0,0,0.641,0.641,0.641,0,0,0,0,0,0,0,0,0.00852,0.00852,0.284,0.591,0.196,1,0.37,0.261,0.37,0.37,0.939,0.939,0.0882,0.0849,0,1 +0.333,0.18,0.392,0.392,0,0,0.641,0.641,0.641,0,0,0,0,0,0,0,0,0,0,0.302,0.591,0.222,1,0.37,0.236,0.37,0.37,0.704,0.704,0.0882,0.0849,0,1 +0.333,0.182,0.433,0.433,0,0,0.641,0.641,0.641,0,0,0,0,0,0,0,0.00276,0.00284,0.0056,0.316,0.585,0.235,1,0.37,0.304,0.37,0.37,0.587,0.587,0.151,0.145,0,1 +0.667,0.343,0.447,0.447,0,0.0122,0.626,0.626,0.626,0,0,0,0,0,0,0,0.0406,0.00852,0.0492,0.384,0.73,0.263,1,0.381,0.366,0.381,0.381,0.477,0.477,0.365,0.352,0,1 +0.667,0.418,0.545,0.545,0,0.0244,0.672,0.672,0.672,0,0,0,0,0,0,0,0,0.00284,0.00284,0.449,0.755,0.327,1,0.52,0.683,0.52,0.52,0.29,0.29,0.794,0.764,0,1 +0.667,0.548,0.741,0.741,0,0.0122,0.733,0.733,0.733,0,0,0,0,0,0,0,0.0141,0.00852,0.0226,0.58,0.805,0.402,1,0.659,1,0.659,0.659,0.18,0.18,0.769,0.739,0,1 +1,0.669,0.881,0.881,0,0.0244,0.764,0.764,0.764,0,0,0,0,0,0,0,0,0.017,0.017,0.673,0.817,0.541,1,0.763,0.714,0.763,0.763,0.102,0.102,0.428,0.412,0.333,1 +1,0.991,0.937,0.937,0,0,0.733,0.733,0.733,0,0,0,0,0,0,0,0,0.017,0.017,0.937,0.937,0.758,1,0.878,0.435,0.878,0.878,0.0626,0.0626,0.384,0.37,0,1 +1,0.823,0.993,0.993,0,0,0.718,0.718,0.718,0,0,0,0,0,0,0,0,0.0114,0.0114,0.993,0.88,0.936,1,0.936,0.273,0.936,0.936,0.0313,0.0313,0.321,0.309,0,1 +1,0.43,0.965,0.965,0,0,0.703,0.703,0.703,0,0,0,0,0,0,0,0,0.00568,0.00568,0.729,0.717,0.887,1,0.994,0.118,0.994,0.994,0.0235,0.0235,0.271,0.261,0.333,1 +1,0.212,0.825,0.825,0,0,0.672,0.672,0.672,0,0,0,0,0,0,0,0,0,0,0.447,0.56,0.536,1,0.867,0.0807,0.867,0.867,0.0235,0.0235,0.151,0.145,0.667,1 +1,0.116,0.699,0.699,0,0,0.626,0.626,0.626,0,0,0,0,0,0,0.0841,0.0308,0.00284,0.118,0.405,0.535,0.232,1,0.751,0.0435,0.751,0.751,0.0235,0.0235,0.151,0.145,0.667,1 +1,0.0743,0.559,0.559,0,0,0.611,0.611,0.611,0,0,0,0,0,0,0,0,0.00284,0.00284,0.358,0.529,0.0954,1,0.509,0.0248,0.509,0.509,0.0235,0.0235,0.151,0.145,0.667,1 +1,0.0495,0.517,0.517,0,0,0.596,0.596,0.596,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0464,1,0.266,0.00621,0.266,0.266,0.0235,0.0235,0.183,0.176,1,1 +1,0.0495,0.517,0.517,0,0,0.58,0.58,0.58,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0232,1,0.22,0.00621,0.22,0.22,0.0235,0.0235,0.151,0.145,1,1 +1,0.0495,0.503,0.503,0,0,0.565,0.565,0.565,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.018,1,0.173,0.0124,0.173,0.173,0.0313,0.0313,0.183,0.176,1,1 +1,0.0513,0.461,0.461,0,0,0.55,0.55,0.55,0,0,0,0,0,0,0,0.0192,0,0.0192,0.326,0.51,0.0284,1,0.185,0.0435,0.185,0.185,0.0626,0.0626,0.296,0.285,0.667,1 +1,0.0833,0.503,0.503,0,0,0.55,0.55,0.55,0,0,0,0,0,0,0,0.0509,0,0.0509,0.34,0.516,0.0464,1,0.208,0.0745,0.208,0.208,0.117,0.117,0.422,0.406,0.667,1 +1,0.253,0.601,0.601,0,0.0487,0.58,0.58,0.58,0,0,0,0,0,0,0,0.0388,0,0.0388,0.487,0.617,0.0747,1,0.301,0.18,0.301,0.301,0.203,0.203,0.359,0.345,0.333,1 +0.667,0.183,0.657,0.657,0,0.0244,0.611,0.611,0.611,0,0,0,0,0,0,0,0,0,0,0.391,0.572,0.103,1,0.381,0.286,0.381,0.381,0.344,0.344,0.151,0.145,0.333,1 +0.333,0.192,0.475,0.475,0,0.0366,0.626,0.626,0.626,0,0,0,0,0,0,0,0,0.00568,0.00568,0.33,0.579,0.126,1,0.381,0.273,0.381,0.381,0.657,0.657,0.151,0.145,0,1 +0.333,0.196,0.322,0.322,0,0,0.626,0.626,0.626,0,0,0.0116,0,0,0,0,0,0,0,0.279,0.579,0.149,1,0.37,0.255,0.37,0.37,0.947,0.947,0.12,0.115,0,1 +0.333,0.192,0.336,0.336,0,0,0.611,0.611,0.611,0,0,0.0305,0.0158,0,0,0,0,0.00284,0.00284,0.284,0.579,0.168,1,0.381,0.273,0.381,0.381,0.994,0.994,0.0945,0.0909,0,1 +0.333,0.186,0.35,0.35,0,0,0.611,0.611,0.611,0,0,0.0185,0,0.275,0.275,0,0,0,0,0.288,0.585,0.186,1,0.381,0.286,0.381,0.381,0.947,0.947,0.0882,0.0849,0,1 +0.333,0.181,0.336,0.336,0,0,0.641,0.641,0.641,0,0,0.0439,0,0,0,0,0,0.017,0.017,0.284,0.591,0.196,1,0.37,0.261,0.37,0.37,0.939,0.939,0.0882,0.0849,0,1 +0.333,0.18,0.392,0.392,0,0,0.641,0.641,0.641,0,0,0.0266,0,0,0,0,0,0.00568,0.00568,0.302,0.591,0.222,1,0.37,0.236,0.37,0.37,0.704,0.704,0.0882,0.0849,0,1 +0.333,0.182,0.433,0.433,0,0,0.641,0.641,0.641,0,0,0.02,0,0,0,0,0,0.00852,0.00852,0.316,0.585,0.235,1,0.37,0.304,0.37,0.37,0.587,0.587,0.151,0.145,0,1 +0.333,0.196,0.447,0.447,0,0,0.626,0.626,0.626,0,0,0.0508,0,0,0,0,0,0.0142,0.0142,0.321,0.597,0.263,1,0.381,0.366,0.381,0.381,0.477,0.477,0.365,0.352,0,1 +0.667,0.418,0.545,0.545,0,0,0.672,0.672,0.672,0,0,0.0357,0,0,0,0,0,0.00568,0.00568,0.449,0.755,0.327,1,0.52,0.683,0.52,0.52,0.29,0.29,0.794,0.764,0,1 +0.667,0.548,0.741,0.741,0,0,0.733,0.733,0.733,0,0,0.0517,0,0,0,0,0,0.00284,0.00284,0.58,0.805,0.402,1,0.659,1,0.659,0.659,0.18,0.18,0.769,0.739,0,1 +0.667,0.669,0.881,0.881,0,0,0.764,0.764,0.764,0,0,0.0233,0,0,0,0,0,0.00284,0.00284,0.673,0.817,0.541,1,0.763,0.714,0.763,0.763,0.102,0.102,0.428,0.412,0,1 +1,0.991,0.937,0.937,0,0,0.733,0.733,0.733,0,0,0.0211,0,0,0,0,0.00263,0,0.00263,0.937,0.937,0.758,1,0.878,0.435,0.878,0.878,0.0626,0.0626,0.384,0.37,0,1 +1,0.823,0.993,0.993,0,0,0.718,0.718,0.718,0,0,0.0312,0,0,0,0,0.0105,0.00284,0.0134,0.993,0.88,0.936,1,0.936,0.273,0.936,0.936,0.0313,0.0313,0.321,0.309,0,1 +1,0.621,0.965,0.965,0,0,0.703,0.703,0.703,0,0,0.0288,0,0,0,0,0,0,0,0.965,0.843,0.887,1,0.994,0.118,0.994,0.994,0.0235,0.0235,0.271,0.261,0,1 +1,0.212,0.825,0.825,0,0,0.672,0.672,0.672,0,0,0,0,0,0,0,0,0,0,0.447,0.56,0.536,1,0.867,0.0807,0.867,0.867,0.0235,0.0235,0.151,0.145,0.667,1 +1,0.116,0.699,0.699,0,0,0.626,0.626,0.626,0,0,0,0,0,0,0,0,0,0,0.405,0.535,0.232,1,0.751,0.0435,0.751,0.751,0.0235,0.0235,0.151,0.145,0.667,1 +1,0.0743,0.559,0.559,0,0,0.611,0.611,0.611,0,0,0,0,0,0,0,0,0,0,0.358,0.529,0.0954,1,0.509,0.0248,0.509,0.509,0.0235,0.0235,0.151,0.145,0.667,1 +1,0.0495,0.517,0.517,0,0,0.596,0.596,0.596,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0464,1,0.266,0.00621,0.266,0.266,0.0235,0.0235,0.183,0.176,1,1 +1,0.0495,0.517,0.517,0,0,0.58,0.58,0.58,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0232,1,0.22,0.00621,0.22,0.22,0.0235,0.0235,0.151,0.145,1,1 +1,0.0495,0.503,0.503,0,0,0.565,0.565,0.565,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.018,1,0.173,0.0124,0.173,0.173,0.0313,0.0313,0.183,0.176,1,1 +1,0.0495,0.461,0.461,0,0,0.55,0.55,0.55,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.465,0.0284,1,0.185,0.0435,0.185,0.185,0.0626,0.0626,0.296,0.285,1,1 +1,0.0833,0.503,0.503,0,0,0.55,0.55,0.55,0,0,0,0,0,0,0,0,0,0,0.34,0.516,0.0464,1,0.208,0.0745,0.208,0.208,0.117,0.117,0.422,0.406,0.667,1 +0.333,0.0495,0.601,0.601,0,0,0.58,0.58,0.58,0,0,0,0,0,0,0.0384,0.028,0,0.0664,0.258,0.465,0.0747,1,0.301,0.18,0.301,0.301,0.203,0.203,0.359,0.345,0.333,1 +0,0.0495,0.657,0.657,0,0,0.611,0.611,0.611,0,0,0,0,0,0,0,0.0208,0,0.0208,0.258,0.465,0.103,1,0.381,0.286,0.381,0.381,0.344,0.344,0.151,0.145,0,1 +0,0.0495,0.475,0.475,0,0,0.626,0.626,0.626,0,0,0,0,0,0,0,0,0.00568,0.00568,0.258,0.465,0.126,1,0.381,0.273,0.381,0.381,0.657,0.657,0.151,0.145,0,1 +0.333,0.196,0.322,0.322,0,0,0.626,0.626,0.626,0,0,0.000292,0,0,0,0,0,0.017,0.017,0.279,0.579,0.149,1,0.37,0.255,0.37,0.37,0.947,0.947,0.12,0.115,0,1 +0.333,0.192,0.336,0.336,0,0,0.611,0.611,0.611,0,0,0.0552,0.0112,0,0,0,0,0.017,0.017,0.284,0.579,0.168,1,0.381,0.273,0.381,0.381,0.994,0.994,0.0945,0.0909,0,1 +0.333,0.186,0.35,0.35,0,0,0.611,0.611,0.611,0,0,0.018,0.00982,0.147,0.147,0,0,0,0,0.288,0.585,0.186,1,0.381,0.286,0.381,0.381,0.947,0.947,0.0882,0.0849,0,1 +0.333,0.181,0.336,0.336,0,0,0.641,0.641,0.641,0,0,0.0189,0,0.128,0.128,0,0,0,0,0.284,0.591,0.196,1,0.37,0.261,0.37,0.37,0.939,0.939,0.0882,0.0849,0,1 +0.667,0.311,0.392,0.392,0,0.0853,0.641,0.641,0.641,0,0,0.0261,0,0,0,0,0,0.00852,0.00852,0.347,0.717,0.222,1,0.37,0.236,0.37,0.37,0.704,0.704,0.0882,0.0849,0,1 +0.667,0.315,0.433,0.433,0,0.0244,0.641,0.641,0.641,0,0,0.0237,0,0,0,0,0,0.00284,0.00284,0.375,0.705,0.235,1,0.37,0.304,0.37,0.37,0.587,0.587,0.151,0.145,0,1 +0.333,0.196,0.447,0.447,0,0,0.626,0.626,0.626,0,0,0,0,0,0,0,0,0.00284,0.00284,0.321,0.597,0.263,1,0.381,0.366,0.381,0.381,0.477,0.477,0.365,0.352,0,1 +0.333,0.234,0.545,0.545,0,0,0.672,0.672,0.672,0,0,0.0146,0,0,0,0,0,0.00852,0.00852,0.354,0.61,0.327,1,0.52,0.683,0.52,0.52,0.29,0.29,0.794,0.764,0,1 +0.667,0.548,0.741,0.741,0,0,0.733,0.733,0.733,0,0,0.0439,0.0112,0,0,0,0,0.00852,0.00852,0.58,0.805,0.402,1,0.659,1,0.659,0.659,0.18,0.18,0.769,0.739,0,1 +1,0.979,0.881,0.881,0,0,0.764,0.764,0.764,0,0,0.0432,0.00456,0.238,0.238,0,0,0.00284,0.00284,0.881,0.993,0.541,1,0.763,0.714,0.763,0.763,0.102,0.102,0.428,0.412,0,1 +0.667,0.677,0.937,0.937,0,0,0.733,0.733,0.733,0,0,0.0169,0,0.128,0.128,0,0,0.00284,0.00284,0.711,0.78,0.758,1,0.878,0.435,0.878,0.878,0.0626,0.0626,0.384,0.37,0,1 +0.667,0.565,0.993,0.993,0,0,0.718,0.718,0.718,0,0,0.0425,0,0,0,0,0,0.00568,0.00568,0.748,0.742,0.936,1,0.936,0.273,0.936,0.936,0.0313,0.0313,0.321,0.309,0,1 +1,0.621,0.965,0.965,0,0,0.703,0.703,0.703,0,0,0.0292,0,0,0,0,0,0,0,0.965,0.843,0.887,1,0.994,0.118,0.994,0.994,0.0235,0.0235,0.271,0.261,0,1 +1,0.374,0.825,0.825,0,0,0.672,0.672,0.672,0,0,0.0258,0,0,0,0,0,0,0,0.636,0.655,0.536,1,0.867,0.0807,0.867,0.867,0.0235,0.0235,0.151,0.145,0.333,1 +1,0.183,0.699,0.699,0,0,0.626,0.626,0.626,0,0,0.0267,0,0,0,0,0,0,0,0.552,0.605,0.232,1,0.751,0.0435,0.751,0.751,0.0235,0.0235,0.151,0.145,0.333,1 +1,0.0495,0.559,0.559,0,0,0.611,0.611,0.611,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0954,1,0.509,0.0248,0.509,0.509,0.0235,0.0235,0.151,0.145,1,1 +1,0.0495,0.517,0.517,0,0,0.596,0.596,0.596,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0464,1,0.266,0.00621,0.266,0.266,0.0235,0.0235,0.183,0.176,1,1 +1,0.0495,0.517,0.517,0,0,0.58,0.58,0.58,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0232,1,0.22,0.00621,0.22,0.22,0.0235,0.0235,0.151,0.145,1,1 +1,0.0495,0.503,0.503,0,0,0.565,0.565,0.565,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.018,1,0.173,0.0124,0.173,0.173,0.0313,0.0313,0.183,0.176,1,1 +1,0.0495,0.461,0.461,0,0,0.55,0.55,0.55,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0284,1,0.185,0.0435,0.185,0.185,0.0626,0.0626,0.296,0.285,1,1 +1,0.0495,0.503,0.503,0,0,0.55,0.55,0.55,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0464,1,0.208,0.0745,0.208,0.208,0.117,0.117,0.422,0.406,1,1 +0.667,0.0495,0.601,0.601,0,0,0.58,0.58,0.58,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0747,1,0.301,0.18,0.301,0.301,0.203,0.203,0.359,0.345,0.667,1 +0.667,0.0495,0.657,0.657,0,0,0.611,0.611,0.611,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.103,1,0.381,0.286,0.381,0.381,0.344,0.344,0.151,0.145,0.667,1 +0.667,0.192,0.475,0.475,0,0,0.626,0.626,0.626,0,0,0,0,0,0,0,0.0163,0,0.0163,0.33,0.579,0.126,1,0.381,0.273,0.381,0.381,0.657,0.657,0.151,0.145,0.333,1 +0.333,0.196,0.322,0.322,0,0,0.626,0.626,0.626,0,0,0,0,0,0,0,0.0138,0,0.0138,0.279,0.579,0.149,1,0.37,0.255,0.37,0.37,0.947,0.947,0.12,0.115,0,1 +0,0.0495,0.336,0.336,0,0,0.611,0.611,0.611,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.168,1,0.381,0.273,0.381,0.381,0.994,0.994,0.0945,0.0909,0,1 +0,0.0495,0.35,0.35,0,0,0.611,0.611,0.611,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.186,1,0.381,0.286,0.381,0.381,0.947,0.947,0.0882,0.0849,0,1 +0,0.0495,0.336,0.336,0,0,0.641,0.641,0.641,0,0,0,0,0,0,0,0,0.00852,0.00852,0.258,0.465,0.196,1,0.37,0.261,0.37,0.37,0.939,0.939,0.0882,0.0849,0,1 +0,0.0495,0.392,0.392,0,0,0.641,0.641,0.641,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.222,1,0.37,0.236,0.37,0.37,0.704,0.704,0.0882,0.0849,0,1 +0.333,0.182,0.433,0.433,0,0.0122,0.641,0.641,0.641,0,0,0,0,0,0,0,0,0,0,0.316,0.585,0.235,1,0.37,0.304,0.37,0.37,0.587,0.587,0.151,0.145,0,1 +0.667,0.343,0.447,0.447,0,0.146,0.626,0.626,0.626,0,0,0,0,0,0,0,0,0,0,0.384,0.73,0.263,1,0.381,0.366,0.381,0.381,0.477,0.477,0.365,0.352,0,1 +1,0.602,0.545,0.545,0,0.134,0.672,0.672,0.672,0,0,0,0,0,0,0,0,0,0,0.545,0.899,0.327,1,0.52,0.683,0.52,0.52,0.29,0.29,0.794,0.764,0,1 +1,0.798,0.741,0.741,0,0,0.733,0.733,0.733,0,0,0,0,0,0,0,0,0.00568,0.00568,0.741,0.974,0.402,1,0.659,1,0.659,0.659,0.18,0.18,0.769,0.739,0,1 +1,0.979,0.881,0.881,0,0.0122,0.764,0.764,0.764,0,0,0,0,0,0,0,0,0.0142,0.0142,0.881,0.993,0.541,1,0.763,0.714,0.763,0.763,0.102,0.102,0.428,0.412,0,1 +1,0.991,0.937,0.937,0,0.0244,0.733,0.733,0.733,0,0,0,0,0,0,0,0,0.0114,0.0114,0.937,0.937,0.758,1,0.878,0.435,0.878,0.878,0.0626,0.0626,0.384,0.37,0,1 +1,0.823,0.993,0.993,0,0,0.718,0.718,0.718,0,0,0,0,0,0,0,0,0.0142,0.0142,0.993,0.88,0.936,1,0.936,0.273,0.936,0.936,0.0313,0.0313,0.321,0.309,0,1 +1,0.43,0.965,0.965,0,0,0.703,0.703,0.703,0,0,0,0,0,0,0,0,0,0,0.729,0.717,0.887,1,0.994,0.118,0.994,0.994,0.0235,0.0235,0.271,0.261,0.333,1 +1,0.212,0.825,0.825,0,0,0.672,0.672,0.672,0,0,0,0,0,0,0,0,0,0,0.447,0.56,0.536,1,0.867,0.0807,0.867,0.867,0.0235,0.0235,0.151,0.145,0.667,1 +1,0.0495,0.699,0.699,0,0,0.626,0.626,0.626,0,0,0,0,0,0,0,0,0.0142,0.0142,0.258,0.465,0.232,1,0.751,0.0435,0.751,0.751,0.0235,0.0235,0.151,0.145,1,1 +1,0.0495,0.559,0.559,0,0,0.611,0.611,0.611,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0954,1,0.509,0.0248,0.509,0.509,0.0235,0.0235,0.151,0.145,1,1 +1,0.0495,0.517,0.517,0,0,0.596,0.596,0.596,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0464,1,0.266,0.00621,0.266,0.266,0.0235,0.0235,0.183,0.176,1,1 +1,0.0495,0.517,0.517,0,0,0.58,0.58,0.58,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0232,1,0.22,0.00621,0.22,0.22,0.0235,0.0235,0.151,0.145,1,1 +1,0.0495,0.503,0.503,0,0,0.565,0.565,0.565,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.018,1,0.173,0.0124,0.173,0.173,0.0313,0.0313,0.183,0.176,1,1 +1,0.0495,0.461,0.461,0,0,0.55,0.55,0.55,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0284,1,0.185,0.0435,0.185,0.185,0.0626,0.0626,0.296,0.285,1,1 +1,0.0495,0.503,0.503,0,0,0.55,0.55,0.55,0,0,0,0,0,0,0,0.00258,0,0.00258,0.258,0.465,0.0464,1,0.208,0.0745,0.208,0.208,0.117,0.117,0.422,0.406,1,1 +1,0.253,0.601,0.601,0,0.0366,0.58,0.58,0.58,0,0,0,0,0,0,0,0.0278,0,0.0278,0.487,0.617,0.0747,1,0.301,0.18,0.301,0.301,0.203,0.203,0.359,0.345,0.333,1 +0.667,0.183,0.657,0.657,0,0,0.611,0.611,0.611,0,0,0,0,0,0,0,0,0,0,0.391,0.572,0.103,1,0.381,0.286,0.381,0.381,0.344,0.344,0.151,0.145,0.333,1 +0.333,0.0495,0.475,0.475,0,0,0.626,0.626,0.626,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.126,1,0.381,0.273,0.381,0.381,0.657,0.657,0.151,0.145,0.333,1 +0.333,0.0495,0.322,0.322,0,0,0.626,0.626,0.626,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.149,1,0.37,0.255,0.37,0.37,0.947,0.947,0.12,0.115,0.333,1 +0.333,0.0495,0.336,0.336,0,0,0.611,0.611,0.611,0,0,0,0,0,0,0,0,0.0114,0.0114,0.258,0.465,0.168,1,0.381,0.273,0.381,0.381,0.994,0.994,0.0945,0.0909,0.333,1 +0.333,0.0495,0.35,0.35,0,0,0.611,0.611,0.611,0,0,0,0,0,0,0,0,0.00568,0.00568,0.258,0.465,0.186,1,0.381,0.286,0.381,0.381,0.947,0.947,0.0882,0.0849,0.333,1 +0.333,0.0495,0.336,0.336,0,0,0.641,0.641,0.641,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.196,1,0.37,0.261,0.37,0.37,0.939,0.939,0.0882,0.0849,0.333,1 +0.333,0.0495,0.392,0.392,0,0,0.641,0.641,0.641,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.222,1,0.37,0.236,0.37,0.37,0.704,0.704,0.0882,0.0849,0.333,1 +0.333,0.0495,0.433,0.433,0,0,0.641,0.641,0.641,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.235,1,0.37,0.304,0.37,0.37,0.587,0.587,0.151,0.145,0.333,1 +0.333,0.196,0.447,0.447,0,0,0.626,0.626,0.626,0,0,0.0191,0,0,0,0,0,0,0,0.321,0.597,0.263,1,0.381,0.366,0.381,0.381,0.477,0.477,0.365,0.352,0,1 +0.333,0.234,0.545,0.545,0,0,0.672,0.672,0.672,0,0,0.0331,0.0165,0,0,0,0,0,0,0.354,0.61,0.327,1,0.52,0.683,0.52,0.52,0.29,0.29,0.794,0.764,0,1 +0.333,0.299,0.741,0.741,0,0.0122,0.733,0.733,0.733,0,0,0.0143,0.00456,0.238,0.238,0,0,0,0,0.419,0.635,0.402,1,0.659,1,0.659,0.659,0.18,0.18,0.769,0.739,0,1 +0.667,0.669,0.881,0.881,0,0.146,0.764,0.764,0.764,0,0,0,0,0.22,0.22,0,0,0.00284,0.00284,0.673,0.817,0.541,1,0.763,0.714,0.763,0.763,0.102,0.102,0.428,0.412,0,1 +0.667,0.677,0.937,0.937,0,0.0975,0.733,0.733,0.733,0,0,0,0,0,0,0,0,0.00284,0.00284,0.711,0.78,0.758,1,0.878,0.435,0.878,0.878,0.0626,0.0626,0.384,0.37,0,1 +1,0.823,0.993,0.993,0,0,0.718,0.718,0.718,0,0,0,0,0,0,0,0,0,0,0.993,0.88,0.936,1,0.936,0.273,0.936,0.936,0.0313,0.0313,0.321,0.309,0,1 +1,0.621,0.965,0.965,0,0.0366,0.703,0.703,0.703,0,0,0,0,0,0,0,0.0135,0.00852,0.022,0.965,0.843,0.887,1,0.994,0.118,0.994,0.994,0.0235,0.0235,0.271,0.261,0,1 +0.667,0.212,0.825,0.825,0,0,0.672,0.672,0.672,0,0,0,0,0,0,0,0.0326,0,0.0326,0.447,0.56,0.536,1,0.867,0.0807,0.867,0.867,0.0235,0.0235,0.151,0.145,0.333,1 +1,0.183,0.699,0.699,0,0,0.626,0.626,0.626,0,0,0,0,0,0,0,0.0351,0.00568,0.0407,0.552,0.605,0.232,1,0.751,0.0435,0.751,0.751,0.0235,0.0235,0.151,0.145,0.333,1 +1,0.0743,0.559,0.559,0,0,0.611,0.611,0.611,0,0,0,0,0,0,0,0,0,0,0.358,0.529,0.113,1,0.509,0.0248,0.509,0.509,0.0235,0.0235,0.151,0.145,0.667,1 +1,0.0495,0.517,0.517,0,0,0.596,0.596,0.596,0,0,0,0,0,0,0,0,0.0114,0.0114,0.258,0.465,0.0567,1,0.266,0.00621,0.266,0.266,0.0235,0.0235,0.183,0.176,1,1 +1,0.0495,0.517,0.517,0,0,0.58,0.58,0.58,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0309,1,0.22,0.00621,0.22,0.22,0.0235,0.0235,0.151,0.145,1,1 +1,0.0495,0.503,0.503,0,0,0.565,0.565,0.565,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0206,1,0.173,0.0124,0.173,0.173,0.0313,0.0313,0.183,0.176,1,1 +1,0.0513,0.461,0.461,0,0,0.55,0.55,0.55,0,0,0,0,0,0,0,0,0,0,0.326,0.51,0.0284,1,0.185,0.0435,0.185,0.185,0.0626,0.0626,0.296,0.285,0.667,1 +1,0.0833,0.503,0.503,0,0,0.55,0.55,0.55,0,0,0,0,0,0,0,0.0287,0,0.0287,0.34,0.516,0.0361,1,0.208,0.0745,0.208,0.208,0.117,0.117,0.422,0.406,0.667,1 +1,0.253,0.601,0.601,0,0,0.58,0.58,0.58,0,0,0,0,0,0,0,0,0,0,0.487,0.617,0.0619,1,0.301,0.18,0.301,0.301,0.203,0.203,0.359,0.345,0.333,1 +1,0.316,0.657,0.657,0,0,0.611,0.611,0.611,0,0,0,0,0,0,0,0.044,0,0.044,0.524,0.68,0.111,1,0.381,0.286,0.381,0.381,0.344,0.344,0.151,0.145,0.333,1 +1,0.477,0.475,0.475,0,0,0.626,0.626,0.626,0.00522,0.0175,0,0,0,0,0,0.0055,0.00284,0.00834,0.475,0.806,0.183,1,0.381,0.273,0.381,0.381,0.657,0.657,0.151,0.145,0,1 +0.667,0.343,0.322,0.322,0,0.0853,0.626,0.626,0.626,0.0148,0.0302,0,0,0,0,0,0,0.00568,0.00568,0.3,0.692,0.242,1,0.37,0.255,0.37,0.37,0.947,0.947,0.12,0.115,0,1 +0.667,0.334,0.336,0.336,0,0.146,0.611,0.611,0.611,0,0,0,0,0,0,0,0,0.00284,0.00284,0.31,0.692,0.289,1,0.381,0.273,0.381,0.381,0.994,0.994,0.0945,0.0909,0,1 +0.667,0.322,0.35,0.35,0,0.146,0.611,0.611,0.611,0,0,0,0,0,0,0,0,0.00284,0.00284,0.319,0.705,0.317,1,0.381,0.286,0.381,0.381,0.947,0.947,0.0882,0.0849,0,1 +0.333,0.181,0.336,0.336,0,0.146,0.641,0.641,0.641,0,0,0,0,0,0,0,0,0.0142,0.0142,0.284,0.591,0.34,1,0.37,0.261,0.37,0.37,0.939,0.939,0.0882,0.0849,0,1 +0.333,0.18,0.392,0.392,0,0.0244,0.641,0.641,0.641,0,0,0,0,0,0,0,0,0.0142,0.0142,0.302,0.591,0.402,1,0.37,0.236,0.37,0.37,0.704,0.704,0.0882,0.0849,0,1 +0.333,0.182,0.433,0.433,0,0,0.641,0.641,0.641,0,0,0,0,0,0,0,0,0,0,0.316,0.585,0.459,1,0.37,0.304,0.37,0.37,0.587,0.587,0.151,0.145,0,1 +0.667,0.343,0.447,0.447,0,0,0.626,0.626,0.626,0,0,0.0112,0.000702,0,0,0,0,0.00284,0.00284,0.384,0.73,0.505,1,0.381,0.366,0.381,0.381,0.477,0.477,0.365,0.352,0,1 +1,0.602,0.545,0.545,0,0,0.672,0.672,0.672,0,0,0,0.00982,0.147,0.147,0,0,0.017,0.017,0.545,0.899,0.531,1,0.52,0.683,0.52,0.52,0.29,0.29,0.794,0.764,0,1 +1,0.798,0.741,0.741,0,0,0.733,0.733,0.733,0,0,0,0,0.312,0.312,0,0,0,0,0.741,0.974,0.549,1,0.659,1,0.659,0.659,0.18,0.18,0.769,0.739,0,1 +0.667,0.669,0.881,0.881,0,0,0.764,0.764,0.764,0,0,0,0,0,0,0,0,0.00284,0.00284,0.673,0.817,0.647,1,0.763,0.714,0.763,0.763,0.102,0.102,0.428,0.412,0,1 +0.667,0.677,0.937,0.937,0,0,0.733,0.733,0.733,0,0,0,0,0,0,0,0,0.00284,0.00284,0.711,0.78,0.851,1,0.878,0.435,0.878,0.878,0.0626,0.0626,0.384,0.37,0,1 +0.667,0.565,0.993,0.993,0,0,0.718,0.718,0.718,0,0,0,0,0,0,0,0.00244,0.00568,0.00811,0.748,0.742,1,1,0.936,0.273,0.936,0.936,0.0313,0.0313,0.321,0.309,0,1 +0.667,0.43,0.965,0.965,0,0,0.703,0.703,0.703,0,0,0,0,0,0,0,0.0146,0.00284,0.0175,0.729,0.717,0.923,1,0.994,0.118,0.994,0.994,0.0235,0.0235,0.271,0.261,0,1 +0.333,0.212,0.825,0.825,0,0,0.672,0.672,0.672,0,0,0,0,0,0,0,0,0.00284,0.00284,0.447,0.56,0.582,1,0.867,0.0807,0.867,0.867,0.0235,0.0235,0.151,0.145,0,1 +0.667,0.116,0.699,0.699,0,0,0.626,0.626,0.626,0,0,0,0,0,0,0,0,0.017,0.017,0.405,0.535,0.265,1,0.751,0.0435,0.751,0.751,0.0235,0.0235,0.151,0.145,0.333,1 +0.667,0.0743,0.559,0.559,0,0,0.611,0.611,0.611,0,0,0,0,0,0,0,0,0,0,0.358,0.529,0.113,1,0.509,0.0248,0.509,0.509,0.0235,0.0235,0.151,0.145,0.333,1 +0.667,0.0578,0.517,0.517,0,0,0.596,0.596,0.596,0,0,0,0,0,0,0,0,0,0,0.344,0.516,0.0567,1,0.266,0.00621,0.266,0.266,0.0235,0.0235,0.183,0.176,0.333,1 +0.667,0.0495,0.517,0.517,0,0,0.58,0.58,0.58,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.465,0.0309,1,0.22,0.00621,0.22,0.22,0.0235,0.0235,0.151,0.145,0.667,1 +0.667,0.0495,0.503,0.503,0,0,0.565,0.565,0.565,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0206,1,0.173,0.0124,0.173,0.173,0.0313,0.0313,0.183,0.176,0.667,1 +0.667,0.0495,0.461,0.461,0,0,0.55,0.55,0.55,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0284,1,0.185,0.0435,0.185,0.185,0.0626,0.0626,0.296,0.285,0.667,1 +0.667,0.0495,0.503,0.503,0,0,0.55,0.55,0.55,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0361,1,0.208,0.0745,0.208,0.208,0.117,0.117,0.422,0.406,0.667,1 +1,0.151,0.601,0.601,0,0,0.58,0.58,0.58,0,0,0,0,0,0,0,0.00254,0,0.00254,0.372,0.541,0.0619,1,0.301,0.18,0.301,0.301,0.203,0.203,0.359,0.345,0.667,1 +0.667,0.183,0.657,0.657,0,0,0.611,0.611,0.611,0,0,0,0,0,0,0,0.0177,0,0.0177,0.391,0.572,0.111,1,0.381,0.286,0.381,0.381,0.344,0.344,0.151,0.145,0.333,1 +1,0.334,0.475,0.475,0,0,0.626,0.626,0.626,0,0,0,0,0,0,0,0.0333,0,0.0333,0.403,0.692,0.183,1,0.381,0.273,0.381,0.381,0.657,0.657,0.151,0.145,0.333,1 +1,0.343,0.322,0.322,0,0,0.626,0.626,0.626,0,0,0,0,0,0,0,0.0323,0.00852,0.0408,0.3,0.692,0.242,1,0.37,0.255,0.37,0.37,0.947,0.947,0.12,0.115,0.333,1 +1,0.334,0.336,0.336,0,0,0.611,0.611,0.611,0,0,0,0,0,0,0,0.0412,0.00284,0.0441,0.31,0.692,0.289,1,0.381,0.273,0.381,0.381,0.994,0.994,0.0945,0.0909,0.333,1 +0.667,0.322,0.35,0.35,0,0,0.611,0.611,0.611,0,0,0,0,0,0,0,0.0315,0.0255,0.057,0.319,0.705,0.317,1,0.381,0.286,0.381,0.381,0.947,0.947,0.0882,0.0849,0,1 +0.667,0.313,0.336,0.336,0,0,0.641,0.641,0.641,0,0,0,0,0,0,0,0.0219,0.00284,0.0247,0.31,0.717,0.34,1,0.37,0.261,0.37,0.37,0.939,0.939,0.0882,0.0849,0,1 +0.667,0.311,0.392,0.392,0,0,0.641,0.641,0.641,0,0,0,0,0,0,0,0.0479,0.00284,0.0507,0.347,0.717,0.402,1,0.37,0.236,0.37,0.37,0.704,0.704,0.0882,0.0849,0,1 +0.667,0.315,0.433,0.433,0,0,0.641,0.641,0.641,0,0,0,0,0,0,0,0.025,0.00568,0.0306,0.375,0.705,0.459,1,0.37,0.304,0.37,0.37,0.587,0.587,0.151,0.145,0,1 +1,0.343,0.447,0.447,0,0.0122,0.626,0.626,0.626,0,0,0,0,0,0,0,0,0,0,0.384,0.73,0.505,1,0.381,0.366,0.381,0.381,0.477,0.477,0.365,0.352,0.333,1 +1,0.602,0.545,0.545,0,0.0975,0.672,0.672,0.672,0,0,0,0,0,0,0,0,0,0,0.545,0.899,0.531,1,0.52,0.683,0.52,0.52,0.29,0.29,0.794,0.764,0,1 +1,0.798,0.741,0.741,0,0,0.733,0.733,0.733,0,0,0,0,0,0,0,0,0,0,0.741,0.974,0.549,1,0.659,1,0.659,0.659,0.18,0.18,0.769,0.739,0,1 +0.667,0.669,0.881,0.881,0,0,0.764,0.764,0.764,0,0,0,0,0,0,0,0,0.00284,0.00284,0.673,0.817,0.647,1,0.763,0.714,0.763,0.763,0.102,0.102,0.428,0.412,0,1 +0.667,0.677,0.937,0.937,0,0,0.733,0.733,0.733,0,0,0,0,0,0,0,0,0.00284,0.00284,0.711,0.78,0.851,1,0.878,0.435,0.878,0.878,0.0626,0.0626,0.384,0.37,0,1 +1,0.823,0.993,0.993,0,0,0.718,0.718,0.718,0,0,0,0,0,0,0,0,0.00568,0.00568,0.993,0.88,1,1,0.936,0.273,0.936,0.936,0.0313,0.0313,0.321,0.309,0,1 +1,0.621,0.965,0.965,0,0,0.703,0.703,0.703,0,0,0,0,0,0,0,0,0.00284,0.00284,0.965,0.843,0.923,1,0.994,0.118,0.994,0.994,0.0235,0.0235,0.271,0.261,0,1 +1,0.374,0.825,0.825,0,0,0.672,0.672,0.672,0,0,0,0,0,0,0,0,0,0,0.636,0.655,0.582,1,0.867,0.0807,0.867,0.867,0.0235,0.0235,0.151,0.145,0.333,1 +1,0.116,0.699,0.699,0,0,0.626,0.626,0.626,0,0,0,0,0,0,0,0,0.00284,0.00284,0.405,0.535,0.265,1,0.751,0.0435,0.751,0.751,0.0235,0.0235,0.151,0.145,0.667,1 +0.667,0.0495,0.559,0.559,0,0,0.611,0.611,0.611,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0954,1,0.509,0.0248,0.509,0.509,0.0235,0.0235,0.151,0.145,0.667,1 +0.667,0.0495,0.517,0.517,0,0,0.596,0.596,0.596,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0464,1,0.266,0.00621,0.266,0.266,0.0235,0.0235,0.183,0.176,0.667,1 +1,0.0495,0.517,0.517,0,0,0.58,0.58,0.58,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0232,1,0.22,0.00621,0.22,0.22,0.0235,0.0235,0.151,0.145,1,1 +1,0.0495,0.503,0.503,0,0,0.565,0.565,0.565,0,0,0,0,0,0,0,0.00246,0,0.00246,0.258,0.465,0.018,1,0.173,0.0124,0.173,0.173,0.0313,0.0313,0.183,0.176,1,1 +1,0.0513,0.461,0.461,0,0,0.55,0.55,0.55,0,0,0,0,0,0,0,0.038,0,0.038,0.326,0.51,0.0284,1,0.185,0.0435,0.185,0.185,0.0626,0.0626,0.296,0.285,0.667,1 +0.667,0.0495,0.503,0.503,0,0,0.55,0.55,0.55,0,0,0,0,0,0,0,0.00247,0,0.00247,0.258,0.465,0.0464,1,0.208,0.0745,0.208,0.208,0.117,0.117,0.422,0.406,0.667,1 +0.667,0.151,0.601,0.601,0,0,0.58,0.58,0.58,0,0,0,0,0,0,0,0.015,0,0.015,0.372,0.541,0.0747,1,0.301,0.18,0.301,0.301,0.203,0.203,0.359,0.345,0.333,1 +0.667,0.183,0.657,0.657,0,0,0.611,0.611,0.611,0,0,0,0,0,0,0,0.0179,0,0.0179,0.391,0.572,0.103,1,0.381,0.286,0.381,0.381,0.344,0.344,0.151,0.145,0.333,1 +0.333,0.192,0.475,0.475,0,0,0.626,0.626,0.626,0,0,0,0,0,0,0,0,0,0,0.33,0.579,0.126,1,0.381,0.273,0.381,0.381,0.657,0.657,0.151,0.145,0,1 +0.333,0.196,0.322,0.322,0,0.0366,0.626,0.626,0.626,0,0,0,0,0,0,0,0,0,0,0.279,0.579,0.149,1,0.37,0.255,0.37,0.37,0.947,0.947,0.12,0.115,0,1 +0.333,0.192,0.336,0.336,0,0,0.611,0.611,0.611,0,0,0.0109,0,0,0,0,0,0,0,0.284,0.579,0.168,1,0.381,0.273,0.381,0.381,0.994,0.994,0.0945,0.0909,0,1 +0.333,0.186,0.35,0.35,0,0,0.611,0.611,0.611,0,0,0.0272,0.0158,0,0,0,0,0.00568,0.00568,0.288,0.585,0.186,1,0.381,0.286,0.381,0.381,0.947,0.947,0.0882,0.0849,0,1 +0.333,0.181,0.336,0.336,0,0,0.641,0.641,0.641,0,0,0.0404,0,0.275,0.275,0,0,0,0,0.284,0.591,0.196,1,0.37,0.261,0.37,0.37,0.939,0.939,0.0882,0.0849,0,1 +0.333,0.18,0.392,0.392,0,0,0.641,0.641,0.641,0,0,0.0252,0,0,0,0,0,0.0199,0.0199,0.302,0.591,0.222,1,0.37,0.236,0.37,0.37,0.704,0.704,0.0882,0.0849,0,1 +0.333,0.182,0.433,0.433,0,0.0366,0.641,0.641,0.641,0,0,0,0,0,0,0,0,0.00284,0.00284,0.316,0.585,0.235,1,0.37,0.304,0.37,0.37,0.587,0.587,0.151,0.145,0,1 +0.333,0.196,0.447,0.447,0,0,0.626,0.626,0.626,0,0,0,0,0,0,0,0,0.00568,0.00568,0.321,0.597,0.263,1,0.381,0.366,0.381,0.381,0.477,0.477,0.365,0.352,0,1 +0,0.0495,0.545,0.545,0,0,0.672,0.672,0.672,0,0,0,0,0,0,0,0,0.00568,0.00568,0.258,0.465,0.327,1,0.52,0.683,0.52,0.52,0.29,0.29,0.794,0.764,0,1 +0,0.0495,0.741,0.741,0,0,0.733,0.733,0.733,0,0,0,0,0,0,0,0,0.00852,0.00852,0.258,0.465,0.402,1,0.659,1,0.659,0.659,0.18,0.18,0.769,0.739,0,1 +0.667,0.669,0.881,0.881,0,0,0.764,0.764,0.764,0,0,0,0,0,0,0,0,0.00568,0.00568,0.673,0.817,0.541,1,0.763,0.714,0.763,0.763,0.102,0.102,0.428,0.412,0,1 +0.667,0.677,0.937,0.937,0,0,0.733,0.733,0.733,0.0206,0.0891,0,0,0,0,0,0,0,0,0.711,0.78,0.758,1,0.878,0.435,0.878,0.878,0.0626,0.0626,0.384,0.37,0,1 +0.667,0.565,0.993,0.993,0,0,0.718,0.718,0.718,0.0152,0.00637,0,0,0,0,0,0,0.00568,0.00568,0.748,0.742,0.936,1,0.936,0.273,0.936,0.936,0.0313,0.0313,0.321,0.309,0,1 +0.667,0.24,0.965,0.965,0,0,0.703,0.703,0.703,0.0231,0.0891,0,0,0,0,0,0,0.00852,0.00852,0.493,0.591,0.887,1,0.994,0.118,0.994,0.994,0.0235,0.0235,0.271,0.261,0.333,1 +1,0.212,0.825,0.825,0,0,0.672,0.672,0.672,0.0143,0.00637,0,0,0,0,0,0,0,0,0.447,0.56,0.536,1,0.867,0.0807,0.867,0.867,0.0235,0.0235,0.151,0.145,0.667,1 +1,0.116,0.699,0.699,0,0,0.626,0.626,0.626,0,0,0,0,0,0,0,0,0,0,0.405,0.535,0.232,1,0.751,0.0435,0.751,0.751,0.0235,0.0235,0.151,0.145,0.667,1 +1,0.099,0.559,0.559,0,0,0.611,0.611,0.611,0,0,0,0,0,0,0,0,0,0,0.459,0.592,0.0954,1,0.509,0.0248,0.509,0.509,0.0235,0.0235,0.151,0.145,0.333,1 +1,0.0495,0.517,0.517,0,0,0.596,0.596,0.596,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0464,1,0.266,0.00621,0.266,0.266,0.0235,0.0235,0.183,0.176,1,1 +1,0.0495,0.517,0.517,0,0,0.58,0.58,0.58,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0232,1,0.22,0.00621,0.22,0.22,0.0235,0.0235,0.151,0.145,1,1 +1,0.0495,0.503,0.503,0,0,0.565,0.565,0.565,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.018,1,0.173,0.0124,0.173,0.173,0.0313,0.0313,0.183,0.176,1,1 +1,0.0495,0.461,0.461,0,0,0.55,0.55,0.55,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0284,1,0.185,0.0435,0.185,0.185,0.0626,0.0626,0.296,0.285,1,1 +1,0.0495,0.503,0.503,0,0,0.55,0.55,0.55,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0464,1,0.208,0.0745,0.208,0.208,0.117,0.117,0.422,0.406,1,1 +1,0.0495,0.601,0.601,0,0,0.58,0.58,0.58,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0747,1,0.301,0.18,0.301,0.301,0.203,0.203,0.359,0.345,1,1 +1,0.316,0.657,0.657,0,0,0.611,0.611,0.611,0,0,0,0,0,0,0,0,0,0,0.524,0.68,0.103,1,0.381,0.286,0.381,0.381,0.344,0.344,0.151,0.145,0.333,1 +0.667,0.192,0.475,0.475,0,0,0.626,0.626,0.626,0,0,0,0,0,0,0,0,0,0,0.33,0.579,0.126,1,0.381,0.273,0.381,0.381,0.657,0.657,0.151,0.145,0.333,1 +0.667,0.196,0.322,0.322,0,0,0.626,0.626,0.626,0,0,0,0,0,0,0,0,0,0,0.279,0.579,0.149,1,0.37,0.255,0.37,0.37,0.947,0.947,0.12,0.115,0.333,1 +0.333,0.192,0.336,0.336,0,0,0.611,0.611,0.611,0,0,0,0,0,0,0,0,0.00284,0.00284,0.284,0.579,0.168,1,0.381,0.273,0.381,0.381,0.994,0.994,0.0945,0.0909,0,1 +0.333,0.186,0.35,0.35,0,0,0.611,0.611,0.611,0,0,0,0,0,0,0,0,0.00284,0.00284,0.288,0.585,0.186,1,0.381,0.286,0.381,0.381,0.947,0.947,0.0882,0.0849,0,1 +0.333,0.181,0.336,0.336,0,0,0.641,0.641,0.641,0,0,0,0,0,0,0,0,0,0,0.284,0.591,0.196,1,0.37,0.261,0.37,0.37,0.939,0.939,0.0882,0.0849,0,1 +0.333,0.18,0.392,0.392,0,0,0.641,0.641,0.641,0,0,0,0,0,0,0,0,0.00568,0.00568,0.302,0.591,0.222,1,0.37,0.236,0.37,0.37,0.704,0.704,0.0882,0.0849,0,1 +0.333,0.182,0.433,0.433,0,0,0.641,0.641,0.641,0,0,0,0,0,0,0,0,0.00284,0.00284,0.316,0.585,0.235,1,0.37,0.304,0.37,0.37,0.587,0.587,0.151,0.145,0,1 +0.333,0.196,0.447,0.447,0,0,0.626,0.626,0.626,0,0,0,0,0,0,0,0,0.00284,0.00284,0.321,0.597,0.263,1,0.381,0.366,0.381,0.381,0.477,0.477,0.365,0.352,0,1 +0.333,0.234,0.545,0.545,0,0,0.672,0.672,0.672,0,0,0,0,0,0,0,0,0.0114,0.0114,0.354,0.61,0.327,1,0.52,0.683,0.52,0.52,0.29,0.29,0.794,0.764,0,1 +0.333,0.299,0.741,0.741,0,0,0.733,0.733,0.733,0,0,0,0,0,0,0,0.00261,0.00568,0.00829,0.419,0.635,0.402,1,0.659,1,0.659,0.659,0.18,0.18,0.769,0.739,0,1 +1,0.979,0.881,0.881,0,0,0.764,0.764,0.764,0.013,0.0478,0,0,0,0,0,0.0471,0.00568,0.0528,0.881,0.993,0.541,1,0.763,0.714,0.763,0.763,0.102,0.102,0.428,0.412,0,1 +1,0.991,0.937,0.937,0,0,0.733,0.733,0.733,0.0104,0,0,0,0,0,0,0,0,0,0.937,0.937,0.758,1,0.878,0.435,0.878,0.878,0.0626,0.0626,0.384,0.37,0,1 +1,0.823,0.993,0.993,0,0,0.718,0.718,0.718,0,0,0,0,0,0,0,0,0.00284,0.00284,0.993,0.88,0.936,1,0.936,0.273,0.936,0.936,0.0313,0.0313,0.321,0.309,0,1 +0.667,0.24,0.965,0.965,0,0,0.703,0.703,0.703,0,0,0,0,0,0,0,0,0.0142,0.0142,0.493,0.591,0.887,1,0.994,0.118,0.994,0.994,0.0235,0.0235,0.271,0.261,0.333,1 +0.667,0.212,0.825,0.825,0,0,0.672,0.672,0.672,0,0,0,0,0,0,0,0,0,0,0.447,0.56,0.536,1,0.867,0.0807,0.867,0.867,0.0235,0.0235,0.151,0.145,0.333,1 +1,0.116,0.699,0.699,0,0,0.626,0.626,0.626,0,0,0,0,0,0,0,0,0,0,0.405,0.535,0.232,1,0.751,0.0435,0.751,0.751,0.0235,0.0235,0.151,0.145,0.667,1 +1,0.0495,0.559,0.559,0,0,0.611,0.611,0.611,0,0,0,0,0,0,0,0,0.00568,0.00568,0.258,0.465,0.0954,1,0.509,0.0248,0.509,0.509,0.0235,0.0235,0.151,0.145,1,1 +1,0.0495,0.517,0.517,0,0,0.596,0.596,0.596,0,0,0,0,0,0,0,0,0.0142,0.0142,0.258,0.465,0.0464,1,0.266,0.00621,0.266,0.266,0.0235,0.0235,0.183,0.176,1,1 +1,0.0495,0.517,0.517,0,0,0.58,0.58,0.58,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0232,1,0.22,0.00621,0.22,0.22,0.0235,0.0235,0.151,0.145,1,1 +1,0.0495,0.503,0.503,0,0,0.565,0.565,0.565,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.018,1,0.173,0.0124,0.173,0.173,0.0313,0.0313,0.183,0.176,1,1 +0.667,0.0495,0.461,0.461,0,0,0.55,0.55,0.55,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0284,1,0.185,0.0435,0.185,0.185,0.0626,0.0626,0.296,0.285,0.667,1 +0.667,0.0495,0.503,0.503,0,0,0.55,0.55,0.55,0,0,0,0,0,0,0,0.00273,0,0.00273,0.258,0.465,0.0464,1,0.208,0.0745,0.208,0.208,0.117,0.117,0.422,0.406,0.667,1 +0.667,0.151,0.601,0.601,0,0,0.58,0.58,0.58,0,0,0,0,0,0,0,0.0163,0,0.0163,0.372,0.541,0.0747,1,0.301,0.18,0.301,0.301,0.203,0.203,0.359,0.345,0.333,1 +0.667,0.316,0.657,0.657,0,0,0.611,0.611,0.611,0,0,0,0,0,0,0.143,0.0654,0.00284,0.211,0.524,0.68,0.103,1,0.381,0.286,0.381,0.381,0.344,0.344,0.151,0.145,0,1 +0.667,0.192,0.475,0.475,0,0.0853,0.626,0.626,0.626,0,0,0,0,0,0,0,0,0,0,0.33,0.579,0.126,1,0.381,0.273,0.381,0.381,0.657,0.657,0.151,0.145,0.333,1 +0.667,0.196,0.322,0.322,0,0.0609,0.626,0.626,0.626,0,0,0,0,0,0,0,0,0,0,0.279,0.579,0.149,1,0.37,0.255,0.37,0.37,0.947,0.947,0.12,0.115,0.333,1 +0.667,0.334,0.336,0.336,0,0,0.611,0.611,0.611,0,0,0,0,0,0,0,0,0.00852,0.00852,0.31,0.692,0.168,1,0.381,0.273,0.381,0.381,0.994,0.994,0.0945,0.0909,0,1 +0.667,0.322,0.35,0.35,0,0,0.611,0.611,0.611,0,0,0,0,0,0,0,0,0.00852,0.00852,0.319,0.705,0.186,1,0.381,0.286,0.381,0.381,0.947,0.947,0.0882,0.0849,0,1 +0.667,0.313,0.336,0.336,0,0,0.641,0.641,0.641,0,0,0,0,0,0,0,0.0258,0.0114,0.0372,0.31,0.717,0.196,1,0.37,0.261,0.37,0.37,0.939,0.939,0.0882,0.0849,0,1 +0.667,0.311,0.392,0.392,0,0,0.641,0.641,0.641,0,0,0,0,0,0,0,0.01,0,0.01,0.347,0.717,0.222,1,0.37,0.236,0.37,0.37,0.704,0.704,0.0882,0.0849,0,1 +0.333,0.182,0.433,0.433,0,0,0.641,0.641,0.641,0,0,0,0,0,0,0,0,0.00568,0.00568,0.316,0.585,0.235,1,0.37,0.304,0.37,0.37,0.587,0.587,0.151,0.145,0,1 +0.333,0.196,0.447,0.447,0,0,0.626,0.626,0.626,0,0,0,0,0,0,0,0.0195,0,0.0195,0.321,0.597,0.263,1,0.381,0.366,0.381,0.381,0.477,0.477,0.365,0.352,0,1 +0.667,0.418,0.545,0.545,0,0,0.672,0.672,0.672,0.0156,0.0478,0,0,0,0,0,0,0,0,0.449,0.755,0.327,1,0.52,0.683,0.52,0.52,0.29,0.29,0.794,0.764,0,1 +0.667,0.548,0.741,0.741,0,0,0.733,0.733,0.733,0.00421,0,0,0,0,0,0,0,0.00284,0.00284,0.58,0.805,0.402,1,0.659,1,0.659,0.659,0.18,0.18,0.769,0.739,0,1 +1,0.979,0.881,0.881,0,0.0853,0.764,0.764,0.764,0,0,0,0,0,0,0,0,0.0142,0.0142,0.881,0.993,0.541,1,0.763,0.714,0.763,0.763,0.102,0.102,0.428,0.412,0,1 +1,0.677,0.937,0.937,0,0.0244,0.733,0.733,0.733,0.0162,0.0653,0,0,0,0,0,0,0,0,0.711,0.78,0.758,1,0.878,0.435,0.878,0.878,0.0626,0.0626,0.384,0.37,0.333,1 +0.667,0.307,0.993,0.993,0,0,0.718,0.718,0.718,0.00388,0.00637,0,0,0,0,0,0,0.0142,0.0142,0.503,0.604,0.936,1,0.936,0.273,0.936,0.936,0.0313,0.0313,0.321,0.309,0.333,1 +0.667,0.0495,0.965,0.965,0,0,0.703,0.703,0.703,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.465,0.887,1,0.994,0.118,0.994,0.994,0.0235,0.0235,0.271,0.261,0.667,1 +0.667,0.0495,0.825,0.825,0,0,0.672,0.672,0.672,0,0,0,0,0,0,0,0,0.0114,0.0114,0.258,0.465,0.536,1,0.867,0.0807,0.867,0.867,0.0235,0.0235,0.151,0.145,0.667,1 +0.667,0.0495,0.699,0.699,0,0,0.626,0.626,0.626,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.465,0.232,1,0.751,0.0435,0.751,0.751,0.0235,0.0235,0.151,0.145,0.667,1 +0.667,0.0495,0.559,0.559,0,0,0.611,0.611,0.611,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0954,1,0.509,0.0248,0.509,0.509,0.0235,0.0235,0.151,0.145,0.667,1 +0.667,0.0495,0.517,0.517,0,0,0.596,0.596,0.596,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0464,1,0.266,0.00621,0.266,0.266,0.0235,0.0235,0.183,0.176,0.667,1 +0.667,0.0495,0.517,0.517,0,0,0.58,0.58,0.58,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0232,1,0.22,0.00621,0.22,0.22,0.0235,0.0235,0.151,0.145,0.667,1 +0.667,0.0495,0.503,0.503,0,0,0.565,0.565,0.565,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.018,1,0.173,0.0124,0.173,0.173,0.0313,0.0313,0.183,0.176,0.667,1 +1,0.0495,0.461,0.461,0,0,0.55,0.55,0.55,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0284,1,0.185,0.0435,0.185,0.185,0.0626,0.0626,0.296,0.285,1,1 +1,0.0495,0.503,0.503,0,0,0.55,0.55,0.55,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0464,1,0.208,0.0745,0.208,0.208,0.117,0.117,0.422,0.406,1,1 +1,0.151,0.601,0.601,0,0,0.58,0.58,0.58,0,0,0,0,0,0,0,0,0,0,0.372,0.541,0.0747,1,0.301,0.18,0.301,0.301,0.203,0.203,0.359,0.345,0.667,1 +1,0.183,0.657,0.657,0,0,0.611,0.611,0.611,0,0,0,0,0,0,0,0.0165,0,0.0165,0.391,0.572,0.103,1,0.381,0.286,0.381,0.381,0.344,0.344,0.151,0.145,0.667,1 +0.667,0.192,0.475,0.475,0,0,0.626,0.626,0.626,0,0,0,0,0,0,0,0.028,0,0.028,0.33,0.579,0.126,1,0.381,0.273,0.381,0.381,0.657,0.657,0.151,0.145,0.333,1 +0.667,0.343,0.322,0.322,0,0,0.626,0.626,0.626,0,0,0,0,0,0,0,0.0477,0,0.0477,0.3,0.692,0.149,1,0.37,0.255,0.37,0.37,0.947,0.947,0.12,0.115,0,1 +1,0.477,0.336,0.336,0,0,0.611,0.611,0.611,0,0,0,0,0,0,0,0.0126,0.0341,0.0467,0.336,0.806,0.168,1,0.381,0.273,0.381,0.381,0.994,0.994,0.0945,0.0909,0,1 +0.667,0.322,0.35,0.35,0,0,0.611,0.611,0.611,0,0,0,0,0,0,0,0.0437,0,0.0437,0.319,0.705,0.186,1,0.381,0.286,0.381,0.381,0.947,0.947,0.0882,0.0849,0,1 +0.667,0.313,0.336,0.336,0,0,0.641,0.641,0.641,0,0,0,0,0,0,0,0.0114,0.00284,0.0143,0.31,0.717,0.196,1,0.37,0.261,0.37,0.37,0.939,0.939,0.0882,0.0849,0,1 +0.667,0.18,0.392,0.392,0,0.0366,0.641,0.641,0.641,0,0,0,0,0,0,0,0.0198,0.00852,0.0283,0.302,0.591,0.222,1,0.37,0.236,0.37,0.37,0.704,0.704,0.0882,0.0849,0.333,1 +0,0.0495,0.433,0.433,0,0,0.641,0.641,0.641,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.235,1,0.37,0.304,0.37,0.37,0.587,0.587,0.151,0.145,0,1 +0,0.0495,0.447,0.447,0,0,0.626,0.626,0.626,0,0,0,0,0,0,0,0,0.00568,0.00568,0.258,0.465,0.263,1,0.381,0.366,0.381,0.381,0.477,0.477,0.365,0.352,0,1 +0.333,0.234,0.545,0.545,0,0.0731,0.672,0.672,0.672,0,0,0,0,0,0,0,0,0.00284,0.00284,0.354,0.61,0.327,1,0.52,0.683,0.52,0.52,0.29,0.29,0.794,0.764,0,1 +1,0.798,0.741,0.741,0,0,0.733,0.733,0.733,0,0,0,0,0,0,0,0,0.0114,0.0114,0.741,0.974,0.402,1,0.659,1,0.659,0.659,0.18,0.18,0.769,0.739,0,1 +1,0.979,0.881,0.881,0,0,0.764,0.764,0.764,0,0,0,0,0,0,0,0,0,0,0.881,0.993,0.541,1,0.763,0.714,0.763,0.763,0.102,0.102,0.428,0.412,0,1 +1,0.991,0.937,0.937,0,0,0.733,0.733,0.733,0,0,0,0,0,0,0,0,0,0,0.937,0.937,0.758,1,0.878,0.435,0.878,0.878,0.0626,0.0626,0.384,0.37,0,1 +1,0.823,0.993,0.993,0,0,0.718,0.718,0.718,0,0,0,0,0,0,0,0,0.0142,0.0142,0.993,0.88,0.936,1,0.936,0.273,0.936,0.936,0.0313,0.0313,0.321,0.309,0,1 +1,0.43,0.965,0.965,0,0,0.703,0.703,0.703,0,0,0,0,0,0,0,0.0406,0,0.0406,0.729,0.717,0.887,1,0.994,0.118,0.994,0.994,0.0235,0.0235,0.271,0.261,0.333,1 +1,0.212,0.825,0.825,0,0,0.672,0.672,0.672,0,0,0,0,0,0,0,0,0,0,0.447,0.56,0.536,1,0.867,0.0807,0.867,0.867,0.0235,0.0235,0.151,0.145,0.667,1 +1,0.0495,0.699,0.699,0,0,0.626,0.626,0.626,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.232,1,0.751,0.0435,0.751,0.751,0.0235,0.0235,0.151,0.145,1,1 +1,0.0495,0.559,0.559,0,0,0.611,0.611,0.611,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0954,1,0.509,0.0248,0.509,0.509,0.0235,0.0235,0.151,0.145,1,1 +1,0.0495,0.517,0.517,0,0,0.596,0.596,0.596,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0464,1,0.266,0.00621,0.266,0.266,0.0235,0.0235,0.183,0.176,1,1 +1,0.0495,0.517,0.517,0,0,0.58,0.58,0.58,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0232,1,0.22,0.00621,0.22,0.22,0.0235,0.0235,0.151,0.145,1,1 +1,0.0495,0.503,0.503,0,0,0.565,0.565,0.565,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.018,1,0.173,0.0124,0.173,0.173,0.0313,0.0313,0.183,0.176,1,1 +1,0.0495,0.461,0.461,0,0,0.55,0.55,0.55,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0284,1,0.185,0.0435,0.185,0.185,0.0626,0.0626,0.296,0.285,1,1 +1,0.0495,0.503,0.503,0,0,0.55,0.55,0.55,0,0,0,0,0,0,0,0.00253,0,0.00253,0.258,0.465,0.0464,1,0.208,0.0745,0.208,0.208,0.117,0.117,0.422,0.406,1,1 +1,0.253,0.601,0.601,0,0,0.58,0.58,0.58,0,0,0,0,0,0,0,0.0279,0,0.0279,0.487,0.617,0.0747,1,0.301,0.18,0.301,0.301,0.203,0.203,0.359,0.345,0.333,1 +0.333,0.0495,0.657,0.657,0,0,0.611,0.611,0.611,0,0,0,0,0,0,0.0535,0,0,0.0535,0.258,0.465,0.103,1,0.381,0.286,0.381,0.381,0.344,0.344,0.151,0.145,0.333,1 +0.333,0.192,0.475,0.475,0,0,0.626,0.626,0.626,0,0,0,0,0,0,0,0,0,0,0.33,0.579,0.126,1,0.381,0.273,0.381,0.381,0.657,0.657,0.151,0.145,0,1 +0.333,0.196,0.322,0.322,0,0,0.626,0.626,0.626,0,0,0,0,0,0,0,0,0,0,0.279,0.579,0.149,1,0.37,0.255,0.37,0.37,0.947,0.947,0.12,0.115,0,1 +0.333,0.192,0.336,0.336,0,0,0.611,0.611,0.611,0,0,0,0,0,0,0,0,0.0142,0.0142,0.284,0.579,0.168,1,0.381,0.273,0.381,0.381,0.994,0.994,0.0945,0.0909,0,1 +0.333,0.186,0.35,0.35,0,0,0.611,0.611,0.611,0,0,0.0231,0.00596,0,0,0,0,0,0,0.288,0.585,0.186,1,0.381,0.286,0.381,0.381,0.947,0.947,0.0882,0.0849,0,1 +0.333,0.181,0.336,0.336,0,0,0.641,0.641,0.641,0,0,0,0.00982,0.147,0.147,0,0,0.0114,0.0114,0.284,0.591,0.196,1,0.37,0.261,0.37,0.37,0.939,0.939,0.0882,0.0849,0,1 +0.333,0.18,0.392,0.392,0,0,0.641,0.641,0.641,0,0,0,0,0.22,0.22,0,0,0.00284,0.00284,0.302,0.591,0.222,1,0.37,0.236,0.37,0.37,0.704,0.704,0.0882,0.0849,0,1 +0.333,0.182,0.433,0.433,0,0,0.641,0.641,0.641,0,0,0,0,0,0,0,0,0.00284,0.00284,0.316,0.585,0.235,1,0.37,0.304,0.37,0.37,0.587,0.587,0.151,0.145,0,1 +0.333,0.196,0.447,0.447,0,0,0.626,0.626,0.626,0,0,0,0,0,0,0,0,0,0,0.321,0.597,0.263,1,0.381,0.366,0.381,0.381,0.477,0.477,0.365,0.352,0,1 +0.667,0.418,0.545,0.545,0,0,0.672,0.672,0.672,0,0,0,0,0,0,0,0,0.0142,0.0142,0.449,0.755,0.327,1,0.52,0.683,0.52,0.52,0.29,0.29,0.794,0.764,0,1 +0.667,0.548,0.741,0.741,0,0.0122,0.733,0.733,0.733,0,0,0,0,0,0,0,0.0261,0,0.0261,0.58,0.805,0.402,1,0.659,1,0.659,0.659,0.18,0.18,0.769,0.739,0,1 +1,0.979,0.881,0.881,0,0.0609,0.764,0.764,0.764,0,0,0,0,0,0,0,0.00274,0.00284,0.00558,0.881,0.993,0.541,1,0.763,0.714,0.763,0.763,0.102,0.102,0.428,0.412,0,1 +1,0.991,0.937,0.937,0,0,0.733,0.733,0.733,0,0,0,0,0,0,0,0.0192,0.00284,0.022,0.937,0.937,0.758,1,0.878,0.435,0.878,0.878,0.0626,0.0626,0.384,0.37,0,1 +1,0.823,0.993,0.993,0,0,0.718,0.718,0.718,0,0,0,0,0,0,0,0,0.00568,0.00568,0.993,0.88,0.936,1,0.936,0.273,0.936,0.936,0.0313,0.0313,0.321,0.309,0,1 +1,0.621,0.965,0.965,0,0,0.703,0.703,0.703,0,0,0,0,0,0,0,0.0291,0.00852,0.0376,0.965,0.843,0.887,1,0.994,0.118,0.994,0.994,0.0235,0.0235,0.271,0.261,0,1 +1,0.374,0.825,0.825,0,0,0.672,0.672,0.672,0,0,0,0,0,0,0,0,0.00284,0.00284,0.636,0.655,0.536,1,0.867,0.0807,0.867,0.867,0.0235,0.0235,0.151,0.145,0.333,1 +1,0.183,0.699,0.699,0,0,0.626,0.626,0.626,0,0,0,0,0,0,0,0.0247,0,0.0247,0.552,0.605,0.232,1,0.751,0.0435,0.751,0.751,0.0235,0.0235,0.151,0.145,0.333,1 +1,0.0495,0.559,0.559,0,0,0.611,0.611,0.611,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.113,1,0.509,0.0248,0.509,0.509,0.0235,0.0235,0.151,0.145,1,1 +1,0.0495,0.517,0.517,0,0,0.596,0.596,0.596,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0567,1,0.266,0.00621,0.266,0.266,0.0235,0.0235,0.183,0.176,1,1 +1,0.0495,0.517,0.517,0,0,0.58,0.58,0.58,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0309,1,0.22,0.00621,0.22,0.22,0.0235,0.0235,0.151,0.145,1,1 +1,0.0495,0.503,0.503,0,0,0.565,0.565,0.565,0,0,0,0,0,0,0,0,0.00852,0.00852,0.258,0.465,0.0206,1,0.173,0.0124,0.173,0.173,0.0313,0.0313,0.183,0.176,1,1 +1,0.0495,0.461,0.461,0,0,0.55,0.55,0.55,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0284,1,0.185,0.0435,0.185,0.185,0.0626,0.0626,0.296,0.285,1,1 +1,0.0495,0.503,0.503,0,0,0.55,0.55,0.55,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0361,1,0.208,0.0745,0.208,0.208,0.117,0.117,0.422,0.406,1,1 +1,0.0495,0.601,0.601,0,0,0.58,0.58,0.58,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0619,1,0.301,0.18,0.301,0.301,0.203,0.203,0.359,0.345,1,1 +1,0.183,0.657,0.657,0,0,0.611,0.611,0.611,0,0,0,0,0,0,0,0.025,0,0.025,0.391,0.572,0.111,1,0.381,0.286,0.381,0.381,0.344,0.344,0.151,0.145,0.667,1 +1,0.334,0.475,0.475,0,0.0122,0.626,0.626,0.626,0,0,0,0,0,0,0,0.0272,0,0.0272,0.403,0.692,0.183,1,0.381,0.273,0.381,0.381,0.657,0.657,0.151,0.145,0.333,1 +0.667,0.343,0.322,0.322,0,0.146,0.626,0.626,0.626,0,0,0,0,0,0,0,0,0,0,0.3,0.692,0.242,1,0.37,0.255,0.37,0.37,0.947,0.947,0.12,0.115,0,1 +0.667,0.334,0.336,0.336,0,0.0244,0.611,0.611,0.611,0,0,0,0,0,0,0,0,0.00568,0.00568,0.31,0.692,0.289,1,0.381,0.273,0.381,0.381,0.994,0.994,0.0945,0.0909,0,1 +0.667,0.322,0.35,0.35,0,0,0.611,0.611,0.611,0,0,0,0,0,0,0,0,0.00568,0.00568,0.319,0.705,0.317,1,0.381,0.286,0.381,0.381,0.947,0.947,0.0882,0.0849,0,1 +0.667,0.313,0.336,0.336,0,0,0.641,0.641,0.641,0,0,0,0,0,0,0,0,0.00852,0.00852,0.31,0.717,0.34,1,0.37,0.261,0.37,0.37,0.939,0.939,0.0882,0.0849,0,1 +0.667,0.311,0.392,0.392,0,0,0.641,0.641,0.641,0,0,0,0,0,0,0,0,0.00284,0.00284,0.347,0.717,0.402,1,0.37,0.236,0.37,0.37,0.704,0.704,0.0882,0.0849,0,1 +0.667,0.315,0.433,0.433,0,0,0.641,0.641,0.641,0,0,0,0,0,0,0,0,0.00284,0.00284,0.375,0.705,0.459,1,0.37,0.304,0.37,0.37,0.587,0.587,0.151,0.145,0,1 +0.667,0.343,0.447,0.447,0,0.0366,0.626,0.626,0.626,0,0,0,0,0,0,0,0,0,0,0.384,0.73,0.505,1,0.381,0.366,0.381,0.381,0.477,0.477,0.365,0.352,0,1 +0.667,0.418,0.545,0.545,0,0,0.672,0.672,0.672,0,0,0,0,0,0,0,0,0,0,0.449,0.755,0.531,1,0.52,0.683,0.52,0.52,0.29,0.29,0.794,0.764,0,1 +1,0.798,0.741,0.741,0,0,0.733,0.733,0.733,0,0,0,0,0,0,0.0265,0.0414,0,0.0679,0.741,0.974,0.549,1,0.659,1,0.659,0.659,0.18,0.18,0.769,0.739,0,1 +0.667,0.359,0.881,0.881,0,0,0.764,0.764,0.764,0,0,0,0,0,0,0,0.00269,0.00852,0.0112,0.465,0.641,0.647,1,0.763,0.714,0.763,0.763,0.102,0.102,0.428,0.412,0.333,1 +0.667,0.363,0.937,0.937,0,0,0.733,0.733,0.733,0,0,0,0,0,0,0,0,0.0199,0.0199,0.484,0.622,0.851,1,0.878,0.435,0.878,0.878,0.0626,0.0626,0.384,0.37,0.333,1 +0.333,0.0495,0.993,0.993,0,0,0.718,0.718,0.718,0,0,0,0,0,0,0,0.0172,0,0.0172,0.258,0.465,1,1,0.936,0.273,0.936,0.936,0.0313,0.0313,0.321,0.309,0.333,1 +0.667,0.24,0.965,0.965,0,0,0.703,0.703,0.703,0,0,0,0,0,0,0,0.0162,0.00568,0.0219,0.493,0.591,0.923,1,0.994,0.118,0.994,0.994,0.0235,0.0235,0.271,0.261,0.333,1 +1,0.374,0.825,0.825,0,0,0.672,0.672,0.672,0,0,0,0,0,0,0,0,0.00568,0.00568,0.636,0.655,0.582,1,0.867,0.0807,0.867,0.867,0.0235,0.0235,0.151,0.145,0.333,1 +0.667,0.0495,0.699,0.699,0,0,0.626,0.626,0.626,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.465,0.265,1,0.751,0.0435,0.751,0.751,0.0235,0.0235,0.151,0.145,0.667,1 +0.667,0.0495,0.559,0.559,0,0,0.611,0.611,0.611,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.113,1,0.509,0.0248,0.509,0.509,0.0235,0.0235,0.151,0.145,0.667,1 +0.667,0.0495,0.517,0.517,0,0,0.596,0.596,0.596,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0567,1,0.266,0.00621,0.266,0.266,0.0235,0.0235,0.183,0.176,0.667,1 +0.667,0.0495,0.517,0.517,0,0,0.58,0.58,0.58,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0309,1,0.22,0.00621,0.22,0.22,0.0235,0.0235,0.151,0.145,0.667,1 +0.667,0.0495,0.503,0.503,0,0,0.565,0.565,0.565,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0206,1,0.173,0.0124,0.173,0.173,0.0313,0.0313,0.183,0.176,0.667,1 +1,0.0495,0.461,0.461,0,0,0.55,0.55,0.55,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0284,1,0.185,0.0435,0.185,0.185,0.0626,0.0626,0.296,0.285,1,1 +1,0.0495,0.503,0.503,0,0,0.55,0.55,0.55,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0361,1,0.208,0.0745,0.208,0.208,0.117,0.117,0.422,0.406,1,1 +1,0.0495,0.601,0.601,0,0,0.58,0.58,0.58,0,0,0,0,0,0,0.0306,0.0225,0,0.0531,0.258,0.465,0.0619,1,0.301,0.18,0.301,0.301,0.203,0.203,0.359,0.345,1,1 +1,0.183,0.657,0.657,0,0,0.611,0.611,0.611,0,0,0,0,0,0,0,0.0271,0,0.0271,0.391,0.572,0.111,1,0.381,0.286,0.381,0.381,0.344,0.344,0.151,0.145,0.667,1 +1,0.334,0.475,0.475,0,0,0.626,0.626,0.626,0,0,0,0,0,0,0,0.0519,0,0.0519,0.403,0.692,0.183,1,0.381,0.273,0.381,0.381,0.657,0.657,0.151,0.145,0.333,1 +0.667,0.343,0.322,0.322,0,0,0.626,0.626,0.626,0,0,0,0,0,0,0,0.0756,0,0.0756,0.3,0.692,0.242,1,0.37,0.255,0.37,0.37,0.947,0.947,0.12,0.115,0,1 +0.667,0.334,0.336,0.336,0,0,0.611,0.611,0.611,0,0,0,0,0,0,0,0.0203,0.00568,0.026,0.31,0.692,0.289,1,0.381,0.273,0.381,0.381,0.994,0.994,0.0945,0.0909,0,1 +0.667,0.322,0.35,0.35,0,0,0.611,0.611,0.611,0,0,0,0,0,0,0,0.0355,0.00568,0.0411,0.319,0.705,0.317,1,0.381,0.286,0.381,0.381,0.947,0.947,0.0882,0.0849,0,1 +0.667,0.313,0.336,0.336,0,0,0.641,0.641,0.641,0,0,0,0,0,0,0.0494,0.0255,0.0142,0.089,0.31,0.717,0.34,1,0.37,0.261,0.37,0.37,0.939,0.939,0.0882,0.0849,0,1 +0.667,0.311,0.392,0.392,0,0,0.641,0.641,0.641,0,0,0,0,0,0,0,0.023,0,0.023,0.347,0.717,0.402,1,0.37,0.236,0.37,0.37,0.704,0.704,0.0882,0.0849,0,1 +1,0.448,0.433,0.433,0,0,0.641,0.641,0.641,0,0,0.0214,0.000702,0,0,0,0,0,0,0.433,0.824,0.459,1,0.37,0.304,0.37,0.37,0.587,0.587,0.151,0.145,0,1 +1,0.49,0.447,0.447,0,0,0.626,0.626,0.626,0,0,0.00673,0.0211,0,0,0,0,0,0,0.447,0.862,0.505,1,0.381,0.366,0.381,0.381,0.477,0.477,0.365,0.352,0,1 +1,0.602,0.545,0.545,0,0.0366,0.672,0.672,0.672,0,0,0,0.00982,0.147,0.147,0,0,0.00852,0.00852,0.545,0.899,0.531,1,0.52,0.683,0.52,0.52,0.29,0.29,0.794,0.764,0,1 +1,0.798,0.741,0.741,0,0,0.733,0.733,0.733,0,0,0.0169,0,0.22,0.22,0,0,0.00568,0.00568,0.741,0.974,0.549,1,0.659,1,0.659,0.659,0.18,0.18,0.769,0.739,0,1 +1,0.979,0.881,0.881,0,0,0.764,0.764,0.764,0,0,0.0495,0.0158,0,0,0,0,0,0,0.881,0.993,0.647,1,0.763,0.714,0.763,0.763,0.102,0.102,0.428,0.412,0,1 +1,0.991,0.937,0.937,0,0,0.733,0.733,0.733,0,0,0.0378,0,0.183,0.183,0,0,0.0312,0.0312,0.937,0.937,0.851,1,0.878,0.435,0.878,0.878,0.0626,0.0626,0.384,0.37,0,1 +1,0.823,0.993,0.993,0,0,0.718,0.718,0.718,0,0,0.0399,0,0,0,0,0,0.00852,0.00852,0.993,0.88,1,1,0.936,0.273,0.936,0.936,0.0313,0.0313,0.321,0.309,0,1 +1,0.621,0.965,0.965,0,0,0.703,0.703,0.703,0,0,0.037,0,0,0,0,0,0.00568,0.00568,0.965,0.843,0.923,1,0.994,0.118,0.994,0.994,0.0235,0.0235,0.271,0.261,0,1 +1,0.536,0.825,0.825,0,0,0.672,0.672,0.672,0,0,0.0478,0,0,0,0,0,0.017,0.017,0.825,0.749,0.582,1,0.867,0.0807,0.867,0.867,0.0235,0.0235,0.151,0.145,0,1 +1,0.249,0.699,0.699,0,0,0.626,0.626,0.626,0,0,0.0208,0,0,0,0,0,0,0,0.699,0.674,0.265,1,0.751,0.0435,0.751,0.751,0.0235,0.0235,0.151,0.145,0,1 +1,0.124,0.559,0.559,0,0,0.611,0.611,0.611,0,0,0.00361,0,0,0,0,0,0,0,0.559,0.656,0.0954,1,0.509,0.0248,0.509,0.509,0.0235,0.0235,0.151,0.145,0,1 +1,0.066,0.517,0.517,0,0,0.596,0.596,0.596,0,0,0,0,0,0,0,0,0,0,0.431,0.567,0.0464,1,0.266,0.00621,0.266,0.266,0.0235,0.0235,0.183,0.176,0.333,1 +1,0.0495,0.517,0.517,0,0,0.58,0.58,0.58,0,0,0,0,0,0,0,0,0,0,0.344,0.51,0.0232,1,0.22,0.00621,0.22,0.22,0.0235,0.0235,0.151,0.145,0.667,1 +1,0.0495,0.503,0.503,0,0,0.565,0.565,0.565,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.018,1,0.173,0.0124,0.173,0.173,0.0313,0.0313,0.183,0.176,1,1 +1,0.0495,0.461,0.461,0,0,0.55,0.55,0.55,0,0,0,0,0,0,0,0.0027,0,0.0027,0.258,0.465,0.0284,1,0.185,0.0435,0.185,0.185,0.0626,0.0626,0.296,0.285,1,1 +1,0.0833,0.503,0.503,0,0,0.55,0.55,0.55,0,0,0.01,0,0,0,0,0.0269,0,0.0269,0.34,0.516,0.0464,1,0.208,0.0745,0.208,0.208,0.117,0.117,0.422,0.406,0.667,1 +0.667,0.151,0.601,0.601,0,0,0.58,0.58,0.58,0,0,0.0227,0.0158,0,0,0,0,0,0,0.372,0.541,0.0747,1,0.301,0.18,0.301,0.301,0.203,0.203,0.359,0.345,0.333,1 +0.667,0.183,0.657,0.657,0,0,0.611,0.611,0.611,0,0,0.0345,0,0.183,0.183,0,0,0,0,0.391,0.572,0.103,1,0.381,0.286,0.381,0.381,0.344,0.344,0.151,0.145,0.333,1 +0.667,0.192,0.475,0.475,0,0,0.626,0.626,0.626,0,0,0.0185,0,0,0,0,0,0,0,0.33,0.579,0.126,1,0.381,0.273,0.381,0.381,0.657,0.657,0.151,0.145,0.333,1 +0.667,0.196,0.322,0.322,0,0,0.626,0.626,0.626,0,0,0,0,0,0,0,0,0.00284,0.00284,0.279,0.579,0.149,1,0.37,0.255,0.37,0.37,0.947,0.947,0.12,0.115,0.333,1 +0.333,0.192,0.336,0.336,0,0,0.611,0.611,0.611,0,0,0,0,0,0,0,0,0.00284,0.00284,0.284,0.579,0.168,1,0.381,0.273,0.381,0.381,0.994,0.994,0.0945,0.0909,0,1 +0.333,0.186,0.35,0.35,0,0,0.611,0.611,0.611,0,0,0,0,0,0,0,0,0.00568,0.00568,0.288,0.585,0.186,1,0.381,0.286,0.381,0.381,0.947,0.947,0.0882,0.0849,0,1 +0.333,0.181,0.336,0.336,0,0,0.641,0.641,0.641,0,0,0,0,0,0,0,0,0,0,0.284,0.591,0.196,1,0.37,0.261,0.37,0.37,0.939,0.939,0.0882,0.0849,0,1 +0.333,0.18,0.392,0.392,0,0,0.641,0.641,0.641,0,0,0,0,0,0,0,0,0,0,0.302,0.591,0.222,1,0.37,0.236,0.37,0.37,0.704,0.704,0.0882,0.0849,0,1 +0.333,0.182,0.433,0.433,0,0,0.641,0.641,0.641,0,0,0,0,0,0,0,0,0.00284,0.00284,0.316,0.585,0.235,1,0.37,0.304,0.37,0.37,0.587,0.587,0.151,0.145,0,1 +0.333,0.196,0.447,0.447,0,0,0.626,0.626,0.626,0,0,0,0,0,0,0,0,0.00852,0.00852,0.321,0.597,0.263,1,0.381,0.366,0.381,0.381,0.477,0.477,0.365,0.352,0,1 +0.333,0.234,0.545,0.545,0,0,0.672,0.672,0.672,0,0,0,0,0,0,0,0,0.0142,0.0142,0.354,0.61,0.327,1,0.52,0.683,0.52,0.52,0.29,0.29,0.794,0.764,0,1 +1,0.798,0.741,0.741,0,0,0.733,0.733,0.733,0,0,0,0,0,0,0,0,0.00568,0.00568,0.741,0.974,0.402,1,0.659,1,0.659,0.659,0.18,0.18,0.769,0.739,0,1 +1,0.979,0.881,0.881,0,0.0366,0.764,0.764,0.764,0,0,0,0,0,0,0,0,0.0142,0.0142,0.881,0.993,0.541,1,0.763,0.714,0.763,0.763,0.102,0.102,0.428,0.412,0,1 +1,0.991,0.937,0.937,0,0,0.733,0.733,0.733,0.011,0.0478,0,0,0,0,0,0,0.00284,0.00284,0.937,0.937,0.758,1,0.878,0.435,0.878,0.878,0.0626,0.0626,0.384,0.37,0,1 +1,0.823,0.993,0.993,0,0,0.718,0.718,0.718,0.0257,0,0,0,0,0,0,0.0132,0.00568,0.0189,0.993,0.88,0.936,1,0.936,0.273,0.936,0.936,0.0313,0.0313,0.321,0.309,0,1 +1,0.43,0.965,0.965,0,0,0.703,0.703,0.703,0.0247,0,0,0,0,0,0,0.0336,0.017,0.0506,0.729,0.717,0.887,1,0.994,0.118,0.994,0.994,0.0235,0.0235,0.271,0.261,0.333,1 +1,0.212,0.825,0.825,0,0,0.672,0.672,0.672,0,0,0,0,0,0,0,0,0,0,0.447,0.56,0.536,1,0.867,0.0807,0.867,0.867,0.0235,0.0235,0.151,0.145,0.667,1 +1,0.0495,0.699,0.699,0,0,0.626,0.626,0.626,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.232,1,0.751,0.0435,0.751,0.751,0.0235,0.0235,0.151,0.145,1,1 +1,0.0495,0.559,0.559,0,0,0.611,0.611,0.611,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.465,0.0954,1,0.509,0.0248,0.509,0.509,0.0235,0.0235,0.151,0.145,1,1 +1,0.0495,0.517,0.517,0,0,0.596,0.596,0.596,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0464,1,0.266,0.00621,0.266,0.266,0.0235,0.0235,0.183,0.176,1,1 +1,0.0495,0.517,0.517,0,0,0.58,0.58,0.58,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0232,1,0.22,0.00621,0.22,0.22,0.0235,0.0235,0.151,0.145,1,1 +1,0.0495,0.503,0.503,0,0,0.565,0.565,0.565,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.018,1,0.173,0.0124,0.173,0.173,0.0313,0.0313,0.183,0.176,1,1 +0.667,0.0495,0.461,0.461,0,0,0.55,0.55,0.55,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0284,1,0.185,0.0435,0.185,0.185,0.0626,0.0626,0.296,0.285,0.667,1 +0.667,0.0495,0.503,0.503,0,0,0.55,0.55,0.55,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0464,1,0.208,0.0745,0.208,0.208,0.117,0.117,0.422,0.406,0.667,1 +0.667,0.0495,0.601,0.601,0,0,0.58,0.58,0.58,0,0,0,0,0,0,0,0.00222,0,0.00222,0.258,0.465,0.0747,1,0.301,0.18,0.301,0.301,0.203,0.203,0.359,0.345,0.667,1 +0.667,0.183,0.657,0.657,0,0,0.611,0.611,0.611,0,0,0,0,0,0,0,0.0276,0,0.0276,0.391,0.572,0.103,1,0.381,0.286,0.381,0.381,0.344,0.344,0.151,0.145,0.333,1 +1,0.477,0.475,0.475,0,0,0.626,0.626,0.626,0,0,0,0,0,0,0,0.0255,0,0.0255,0.475,0.806,0.126,1,0.381,0.273,0.381,0.381,0.657,0.657,0.151,0.145,0,1 +1,0.49,0.322,0.322,0,0,0.626,0.626,0.626,0,0,0,0,0,0,0,0.00924,0,0.00924,0.322,0.806,0.149,1,0.37,0.255,0.37,0.37,0.947,0.947,0.12,0.115,0,1 +0.667,0.334,0.336,0.336,0,0,0.611,0.611,0.611,0,0,0,0,0,0,0,0,0,0,0.31,0.692,0.168,1,0.381,0.273,0.381,0.381,0.994,0.994,0.0945,0.0909,0,1 +0.333,0.186,0.35,0.35,0,0,0.611,0.611,0.611,0,0,0,0,0,0,0,0,0.00852,0.00852,0.288,0.585,0.186,1,0.381,0.286,0.381,0.381,0.947,0.947,0.0882,0.0849,0,1 +0.333,0.181,0.336,0.336,0,0,0.641,0.641,0.641,0,0,0,0,0,0,0,0,0,0,0.284,0.591,0.196,1,0.37,0.261,0.37,0.37,0.939,0.939,0.0882,0.0849,0,1 +0,0.0495,0.392,0.392,0,0,0.641,0.641,0.641,0,0,0,0,0,0,0,0,0.0142,0.0142,0.258,0.465,0.222,1,0.37,0.236,0.37,0.37,0.704,0.704,0.0882,0.0849,0,1 +0.333,0.182,0.433,0.433,0,0,0.641,0.641,0.641,0,0,0,0,0,0,0,0.0195,0,0.0195,0.316,0.585,0.235,1,0.37,0.304,0.37,0.37,0.587,0.587,0.151,0.145,0,1 +0.333,0.196,0.447,0.447,0,0,0.626,0.626,0.626,0,0,0,0,0,0,0,0,0.00852,0.00852,0.321,0.597,0.263,1,0.381,0.366,0.381,0.381,0.477,0.477,0.365,0.352,0,1 +0.333,0.234,0.545,0.545,0,0,0.672,0.672,0.672,0,0,0,0,0,0,0,0,0,0,0.354,0.61,0.327,1,0.52,0.683,0.52,0.52,0.29,0.29,0.794,0.764,0,1 +0.333,0.299,0.741,0.741,0,0,0.733,0.733,0.733,0,0,0.0127,0,0,0,0,0.0331,0,0.0331,0.419,0.635,0.402,1,0.659,1,0.659,0.659,0.18,0.18,0.769,0.739,0,1 +0.667,0.669,0.881,0.881,0,0,0.764,0.764,0.764,0,0,0.0337,0.0158,0,0,0,0.00258,0.0114,0.0139,0.673,0.817,0.541,1,0.763,0.714,0.763,0.763,0.102,0.102,0.428,0.412,0,1 +0.667,0.677,0.937,0.937,0,0.0487,0.733,0.733,0.733,0,0,0.0281,0,0.33,0.33,0,0.0434,0.00852,0.0519,0.711,0.78,0.758,1,0.878,0.435,0.878,0.878,0.0626,0.0626,0.384,0.37,0,1 +1,0.823,0.993,0.993,0,0.0244,0.718,0.718,0.718,0,0,0.00478,0,0.128,0.128,0,0,0.00284,0.00284,0.993,0.88,0.936,1,0.936,0.273,0.936,0.936,0.0313,0.0313,0.321,0.309,0,1 +1,0.24,0.965,0.965,0,0,0.703,0.703,0.703,0,0,0,0,0,0,0,0.00255,0.00568,0.00823,0.493,0.591,0.887,1,0.994,0.118,0.994,0.994,0.0235,0.0235,0.271,0.261,0.667,1 +1,0.212,0.825,0.825,0,0,0.672,0.672,0.672,0,0,0,0,0,0,0,0.0393,0.00568,0.045,0.447,0.56,0.536,1,0.867,0.0807,0.867,0.867,0.0235,0.0235,0.151,0.145,0.667,1 +1,0.0495,0.699,0.699,0,0,0.626,0.626,0.626,0,0,0,0,0,0,0,0,0.00852,0.00852,0.258,0.465,0.232,1,0.751,0.0435,0.751,0.751,0.0235,0.0235,0.151,0.145,1,1 +1,0.0495,0.559,0.559,0,0,0.611,0.611,0.611,0,0,0,0,0,0,0,0,0.00568,0.00568,0.258,0.465,0.0954,1,0.509,0.0248,0.509,0.509,0.0235,0.0235,0.151,0.145,1,1 +1,0.0495,0.517,0.517,0,0,0.596,0.596,0.596,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0464,1,0.266,0.00621,0.266,0.266,0.0235,0.0235,0.183,0.176,1,1 +1,0.0495,0.517,0.517,0,0,0.58,0.58,0.58,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0232,1,0.22,0.00621,0.22,0.22,0.0235,0.0235,0.151,0.145,1,1 +1,0.0495,0.503,0.503,0,0,0.565,0.565,0.565,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.018,1,0.173,0.0124,0.173,0.173,0.0313,0.0313,0.183,0.176,1,1 +1,0.0495,0.461,0.461,0,0,0.55,0.55,0.55,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0284,1,0.185,0.0435,0.185,0.185,0.0626,0.0626,0.296,0.285,1,1 +1,0.0495,0.503,0.503,0,0,0.55,0.55,0.55,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0464,1,0.208,0.0745,0.208,0.208,0.117,0.117,0.422,0.406,1,1 +1,0.151,0.601,0.601,0,0.0853,0.58,0.58,0.58,0,0,0,0,0,0,0,0.00255,0,0.00255,0.372,0.541,0.0747,1,0.301,0.18,0.301,0.301,0.203,0.203,0.359,0.345,0.667,1 +1,0.316,0.657,0.657,0,0.0244,0.611,0.611,0.611,0,0,0,0,0,0,0,0.0197,0,0.0197,0.524,0.68,0.103,1,0.381,0.286,0.381,0.381,0.344,0.344,0.151,0.145,0.333,1 +1,0.334,0.475,0.475,0,0,0.626,0.626,0.626,0,0,0,0,0,0,0,0.0194,0,0.0194,0.403,0.692,0.126,1,0.381,0.273,0.381,0.381,0.657,0.657,0.151,0.145,0.333,1 +0.667,0.343,0.322,0.322,0,0,0.626,0.626,0.626,0,0,0,0,0,0,0,0.0724,0,0.0724,0.3,0.692,0.149,1,0.37,0.255,0.37,0.37,0.947,0.947,0.12,0.115,0,1 +0.667,0.334,0.336,0.336,0,0,0.611,0.611,0.611,0,0,0,0,0,0,0,0.0343,0.00284,0.0372,0.31,0.692,0.168,1,0.381,0.273,0.381,0.381,0.994,0.994,0.0945,0.0909,0,1 +0.333,0.186,0.35,0.35,0,0,0.611,0.611,0.611,0,0,0,0,0,0,0,0.0385,0.00568,0.0442,0.288,0.585,0.186,1,0.381,0.286,0.381,0.381,0.947,0.947,0.0882,0.0849,0,1 +0.667,0.181,0.336,0.336,0,0,0.641,0.641,0.641,0,0,0,0,0,0,0,0.0179,0.00568,0.0236,0.284,0.591,0.196,1,0.37,0.261,0.37,0.37,0.939,0.939,0.0882,0.0849,0.333,1 +0.667,0.18,0.392,0.392,0,0,0.641,0.641,0.641,0,0,0,0,0,0,0,0.0384,0.017,0.0555,0.302,0.591,0.222,1,0.37,0.236,0.37,0.37,0.704,0.704,0.0882,0.0849,0.333,1 +0.667,0.315,0.433,0.433,0,0,0.641,0.641,0.641,0,0,0,0,0,0,0,0.0116,0,0.0116,0.375,0.705,0.235,1,0.37,0.304,0.37,0.37,0.587,0.587,0.151,0.145,0,1 +0.333,0.196,0.447,0.447,0,0,0.626,0.626,0.626,0,0,0,0,0,0,0,0.0192,0,0.0192,0.321,0.597,0.263,1,0.381,0.366,0.381,0.381,0.477,0.477,0.365,0.352,0,1 +0.333,0.234,0.545,0.545,0,0,0.672,0.672,0.672,0,0,0,0,0,0,0,0,0,0,0.354,0.61,0.327,1,0.52,0.683,0.52,0.52,0.29,0.29,0.794,0.764,0,1 +0.333,0.299,0.741,0.741,0,0.0731,0.733,0.733,0.733,0,0,0,0,0,0,0,0.025,0.00284,0.0279,0.419,0.635,0.402,1,0.659,1,0.659,0.659,0.18,0.18,0.769,0.739,0,1 +1,0.979,0.881,0.881,0,0,0.764,0.764,0.764,0,0,0,0,0,0,0,0.0183,0.00284,0.0211,0.881,0.993,0.541,1,0.763,0.714,0.763,0.763,0.102,0.102,0.428,0.412,0,1 +0.667,0.363,0.937,0.937,0,0,0.733,0.733,0.733,0,0,0,0,0,0,0,0.0027,0.0114,0.0141,0.484,0.622,0.758,1,0.878,0.435,0.878,0.878,0.0626,0.0626,0.384,0.37,0.333,1 +1,0.823,0.993,0.993,0,0,0.718,0.718,0.718,0.0114,0.0414,0,0,0,0,0,0.0425,0.00568,0.0482,0.993,0.88,0.936,1,0.936,0.273,0.936,0.936,0.0313,0.0313,0.321,0.309,0,1 +1,0.621,0.965,0.965,0,0,0.703,0.703,0.703,0.0177,0.00637,0,0,0,0,0,0,0.017,0.017,0.965,0.843,0.887,1,0.994,0.118,0.994,0.994,0.0235,0.0235,0.271,0.261,0,1 +1,0.212,0.825,0.825,0,0,0.672,0.672,0.672,0,0,0,0,0,0,0,0,0.00568,0.00568,0.447,0.56,0.536,1,0.867,0.0807,0.867,0.867,0.0235,0.0235,0.151,0.145,0.667,1 +1,0.116,0.699,0.699,0,0,0.626,0.626,0.626,0,0,0,0,0,0,0,0,0,0,0.405,0.535,0.232,1,0.751,0.0435,0.751,0.751,0.0235,0.0235,0.151,0.145,0.667,1 +1,0.0743,0.559,0.559,0,0,0.611,0.611,0.611,0,0,0,0,0,0,0,0,0,0,0.358,0.529,0.0954,1,0.509,0.0248,0.509,0.509,0.0235,0.0235,0.151,0.145,0.667,1 +1,0.0578,0.517,0.517,0,0,0.596,0.596,0.596,0,0,0,0,0,0,0,0,0,0,0.344,0.516,0.0464,1,0.266,0.00621,0.266,0.266,0.0235,0.0235,0.183,0.176,0.667,1 +1,0.0495,0.517,0.517,0,0,0.58,0.58,0.58,0,0,0,0,0,0,0,0,0.00852,0.00852,0.258,0.465,0.0232,1,0.22,0.00621,0.22,0.22,0.0235,0.0235,0.151,0.145,1,1 +1,0.0495,0.503,0.503,0,0,0.565,0.565,0.565,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.018,1,0.173,0.0124,0.173,0.173,0.0313,0.0313,0.183,0.176,1,1 +1,0.0495,0.461,0.461,0,0,0.55,0.55,0.55,0,0,0,0,0,0,0,0.0216,0,0.0216,0.258,0.465,0.0284,1,0.185,0.0435,0.185,0.185,0.0626,0.0626,0.296,0.285,1,1 +1,0.0833,0.503,0.503,0,0,0.55,0.55,0.55,0,0,0,0,0,0,0,0.0316,0,0.0316,0.34,0.516,0.0464,1,0.208,0.0745,0.208,0.208,0.117,0.117,0.422,0.406,0.667,1 +1,0.253,0.601,0.601,0,0,0.58,0.58,0.58,0,0,0,0,0,0,0,0.071,0,0.071,0.487,0.617,0.0747,1,0.301,0.18,0.301,0.301,0.203,0.203,0.359,0.345,0.333,1 +1,0.449,0.657,0.657,0,0,0.611,0.611,0.611,0,0,0,0,0,0,0.0518,0.0618,0,0.114,0.657,0.787,0.103,1,0.381,0.286,0.381,0.381,0.344,0.344,0.151,0.145,0,1 +1,0.477,0.475,0.475,0,0,0.626,0.626,0.626,0,0,0,0,0,0,0,0.0488,0,0.0488,0.475,0.806,0.126,1,0.381,0.273,0.381,0.381,0.657,0.657,0.151,0.145,0,1 +1,0.49,0.322,0.322,0,0,0.626,0.626,0.626,0,0,0.0218,0.000702,0,0,0,0.022,0.00284,0.0248,0.322,0.806,0.149,1,0.37,0.255,0.37,0.37,0.947,0.947,0.12,0.115,0,1 +1,0.477,0.336,0.336,0,0,0.611,0.611,0.611,0,0,0.0287,0.0151,0.055,0.055,0,0.0212,0.00284,0.024,0.336,0.806,0.168,1,0.381,0.273,0.381,0.381,0.994,0.994,0.0945,0.0909,0,1 +1,0.458,0.35,0.35,0,0,0.611,0.611,0.611,0,0,0.000877,0,0.312,0.312,0,0.0463,0.00284,0.0491,0.35,0.824,0.186,1,0.381,0.286,0.381,0.381,0.947,0.947,0.0882,0.0849,0,1 +1,0.445,0.336,0.336,0,0,0.641,0.641,0.641,0,0,0,0,0,0,0,0.0455,0.00852,0.054,0.336,0.843,0.196,1,0.37,0.261,0.37,0.37,0.939,0.939,0.0882,0.0849,0,1 +0.667,0.311,0.392,0.392,0,0,0.641,0.641,0.641,0,0,0,0,0,0,0,0,0,0,0.347,0.717,0.222,1,0.37,0.236,0.37,0.37,0.704,0.704,0.0882,0.0849,0,1 +0.333,0.182,0.433,0.433,0,0,0.641,0.641,0.641,0,0,0,0,0,0,0,0,0,0,0.316,0.585,0.235,1,0.37,0.304,0.37,0.37,0.587,0.587,0.151,0.145,0,1 +0.333,0.196,0.447,0.447,0,0,0.626,0.626,0.626,0,0,0,0,0,0,0,0,0,0,0.321,0.597,0.263,1,0.381,0.366,0.381,0.381,0.477,0.477,0.365,0.352,0,1 +0.333,0.234,0.545,0.545,0,0,0.672,0.672,0.672,0,0,0,0,0,0,0,0,0.00284,0.00284,0.354,0.61,0.327,1,0.52,0.683,0.52,0.52,0.29,0.29,0.794,0.764,0,1 +1,0.798,0.741,0.741,0,0.0366,0.733,0.733,0.733,0,0,0,0,0,0,0,0,0.0142,0.0142,0.741,0.974,0.402,1,0.659,1,0.659,0.659,0.18,0.18,0.769,0.739,0,1 +1,0.979,0.881,0.881,0,0,0.764,0.764,0.764,0,0,0,0,0,0,0,0,0.0114,0.0114,0.881,0.993,0.541,1,0.763,0.714,0.763,0.763,0.102,0.102,0.428,0.412,0,1 +1,0.991,0.937,0.937,0,0,0.733,0.733,0.733,0,0,0,0,0,0,0,0,0.0199,0.0199,0.937,0.937,0.758,1,0.878,0.435,0.878,0.878,0.0626,0.0626,0.384,0.37,0,1 +1,0.823,0.993,0.993,0,0,0.718,0.718,0.718,0,0,0,0,0,0,0,0,0.00852,0.00852,0.993,0.88,0.936,1,0.936,0.273,0.936,0.936,0.0313,0.0313,0.321,0.309,0,1 +1,0.43,0.965,0.965,0,0,0.703,0.703,0.703,0,0,0,0,0,0,0,0.0468,0.00568,0.0524,0.729,0.717,0.887,1,0.994,0.118,0.994,0.994,0.0235,0.0235,0.271,0.261,0.333,1 +1,0.0495,0.825,0.825,0,0,0.672,0.672,0.672,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.536,1,0.867,0.0807,0.867,0.867,0.0235,0.0235,0.151,0.145,1,1 +1,0.0495,0.699,0.699,0,0,0.626,0.626,0.626,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.232,1,0.751,0.0435,0.751,0.751,0.0235,0.0235,0.151,0.145,1,1 +1,0.0495,0.559,0.559,0,0,0.611,0.611,0.611,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0954,1,0.509,0.0248,0.509,0.509,0.0235,0.0235,0.151,0.145,1,1 +1,0.0495,0.517,0.517,0,0,0.596,0.596,0.596,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0464,1,0.266,0.00621,0.266,0.266,0.0235,0.0235,0.183,0.176,1,1 +1,0.0495,0.517,0.517,0,0,0.58,0.58,0.58,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0232,1,0.22,0.00621,0.22,0.22,0.0235,0.0235,0.151,0.145,1,1 +1,0.0495,0.503,0.503,0,0,0.565,0.565,0.565,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.018,1,0.173,0.0124,0.173,0.173,0.0313,0.0313,0.183,0.176,1,1 +1,0.0495,0.461,0.461,0,0,0.55,0.55,0.55,0,0,0,0,0,0,0,0.00254,0,0.00254,0.258,0.465,0.0284,1,0.185,0.0435,0.185,0.185,0.0626,0.0626,0.296,0.285,1,1 +1,0.0833,0.503,0.503,0,0,0.55,0.55,0.55,0,0,0,0,0,0,0,0.0347,0,0.0347,0.34,0.516,0.0464,1,0.208,0.0745,0.208,0.208,0.117,0.117,0.422,0.406,0.667,1 +1,0.253,0.601,0.601,0,0,0.58,0.58,0.58,0,0,0,0,0,0,0,0.0552,0,0.0552,0.487,0.617,0.0747,1,0.301,0.18,0.301,0.301,0.203,0.203,0.359,0.345,0.333,1 +1,0.316,0.657,0.657,0,0,0.611,0.611,0.611,0,0,0,0,0,0,0,0,0,0,0.524,0.68,0.103,1,0.381,0.286,0.381,0.381,0.344,0.344,0.151,0.145,0.333,1 +0.667,0.192,0.475,0.475,0,0,0.626,0.626,0.626,0,0,0,0,0,0,0,0,0,0,0.33,0.579,0.126,1,0.381,0.273,0.381,0.381,0.657,0.657,0.151,0.145,0.333,1 +0.667,0.343,0.322,0.322,0,0.0366,0.626,0.626,0.626,0,0,0,0,0,0,0,0,0.00568,0.00568,0.3,0.692,0.149,1,0.37,0.255,0.37,0.37,0.947,0.947,0.12,0.115,0,1 +0.333,0.192,0.336,0.336,0,0,0.611,0.611,0.611,0,0,0,0,0,0,0,0,0,0,0.284,0.579,0.168,1,0.381,0.273,0.381,0.381,0.994,0.994,0.0945,0.0909,0,1 +0.333,0.186,0.35,0.35,0,0,0.611,0.611,0.611,0,0,0,0,0,0,0,0,0,0,0.288,0.585,0.186,1,0.381,0.286,0.381,0.381,0.947,0.947,0.0882,0.0849,0,1 +0.333,0.181,0.336,0.336,0,0,0.641,0.641,0.641,0,0,0,0,0,0,0,0,0.0199,0.0199,0.284,0.591,0.196,1,0.37,0.261,0.37,0.37,0.939,0.939,0.0882,0.0849,0,1 +0.333,0.0495,0.392,0.392,0,0,0.641,0.641,0.641,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.465,0.222,1,0.37,0.236,0.37,0.37,0.704,0.704,0.0882,0.0849,0.333,1 +0.333,0.0495,0.433,0.433,0,0,0.641,0.641,0.641,0,0,0,0,0,0,0,0,0.0114,0.0114,0.258,0.465,0.235,1,0.37,0.304,0.37,0.37,0.587,0.587,0.151,0.145,0.333,1 +0.667,0.196,0.447,0.447,0,0,0.626,0.626,0.626,0,0,0,0,0,0,0,0,0,0,0.321,0.597,0.263,1,0.381,0.366,0.381,0.381,0.477,0.477,0.365,0.352,0.333,1 +0.667,0.234,0.545,0.545,0,0,0.672,0.672,0.672,0,0,0,0,0,0,0,0,0.00568,0.00568,0.354,0.61,0.327,1,0.52,0.683,0.52,0.52,0.29,0.29,0.794,0.764,0.333,1 +0.667,0.299,0.741,0.741,0,0.0122,0.733,0.733,0.733,0,0,0,0,0,0,0,0,0,0,0.419,0.635,0.402,1,0.659,1,0.659,0.659,0.18,0.18,0.769,0.739,0.333,1 +1,0.669,0.881,0.881,0,0.146,0.764,0.764,0.764,0,0,0,0,0,0,0,0,0,0,0.673,0.817,0.541,1,0.763,0.714,0.763,0.763,0.102,0.102,0.428,0.412,0.333,1 +1,0.677,0.937,0.937,0,0.0975,0.733,0.733,0.733,0,0,0,0,0,0,0,0.0144,0.00284,0.0173,0.711,0.78,0.758,1,0.878,0.435,0.878,0.878,0.0626,0.0626,0.384,0.37,0.333,1 +1,0.823,0.993,0.993,0,0,0.718,0.718,0.718,0,0,0,0,0,0,0,0.0352,0,0.0352,0.993,0.88,0.936,1,0.936,0.273,0.936,0.936,0.0313,0.0313,0.321,0.309,0,1 +1,0.621,0.965,0.965,0,0,0.703,0.703,0.703,0,0,0,0,0,0,0,0,0.00284,0.00284,0.965,0.843,0.887,1,0.994,0.118,0.994,0.994,0.0235,0.0235,0.271,0.261,0,1 +1,0.374,0.825,0.825,0,0,0.672,0.672,0.672,0,0,0,0,0,0,0,0,0.00852,0.00852,0.636,0.655,0.536,1,0.867,0.0807,0.867,0.867,0.0235,0.0235,0.151,0.145,0.333,1 +1,0.183,0.699,0.699,0,0,0.626,0.626,0.626,0,0,0,0,0,0,0,0,0.00852,0.00852,0.552,0.605,0.232,1,0.751,0.0435,0.751,0.751,0.0235,0.0235,0.151,0.145,0.333,1 +1,0.099,0.559,0.559,0,0,0.611,0.611,0.611,0,0,0,0,0,0,0,0,0,0,0.459,0.592,0.113,1,0.509,0.0248,0.509,0.509,0.0235,0.0235,0.151,0.145,0.333,1 +1,0.0495,0.517,0.517,0,0,0.596,0.596,0.596,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0567,1,0.266,0.00621,0.266,0.266,0.0235,0.0235,0.183,0.176,1,1 +1,0.0495,0.517,0.517,0,0,0.58,0.58,0.58,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0309,1,0.22,0.00621,0.22,0.22,0.0235,0.0235,0.151,0.145,1,1 +1,0.0495,0.503,0.503,0,0,0.565,0.565,0.565,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0206,1,0.173,0.0124,0.173,0.173,0.0313,0.0313,0.183,0.176,1,1 +1,0.0495,0.461,0.461,0,0,0.55,0.55,0.55,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0284,1,0.185,0.0435,0.185,0.185,0.0626,0.0626,0.296,0.285,1,1 +1,0.0495,0.503,0.503,0,0,0.55,0.55,0.55,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0361,1,0.208,0.0745,0.208,0.208,0.117,0.117,0.422,0.406,1,1 +1,0.0495,0.601,0.601,0,0,0.58,0.58,0.58,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0619,1,0.301,0.18,0.301,0.301,0.203,0.203,0.359,0.345,1,1 +1,0.183,0.657,0.657,0,0,0.611,0.611,0.611,0,0,0.0285,0.00596,0,0,0,0,0,0,0.391,0.572,0.111,1,0.381,0.286,0.381,0.381,0.344,0.344,0.151,0.145,0.667,1 +1,0.192,0.475,0.475,0,0,0.626,0.626,0.626,0,0,0.0107,0.0151,0.055,0.055,0,0.00252,0,0.00252,0.33,0.579,0.183,1,0.381,0.273,0.381,0.381,0.657,0.657,0.151,0.145,0.667,1 +1,0.343,0.322,0.322,0,0.0366,0.626,0.626,0.626,0,0,0,0,0.312,0.312,0,0.0151,0,0.0151,0.3,0.692,0.242,1,0.37,0.255,0.37,0.37,0.947,0.947,0.12,0.115,0.333,1 +1,0.334,0.336,0.336,0,0,0.611,0.611,0.611,0,0,0,0,0,0,0,0,0.00284,0.00284,0.31,0.692,0.289,1,0.381,0.273,0.381,0.381,0.994,0.994,0.0945,0.0909,0.333,1 +1,0.322,0.35,0.35,0,0,0.611,0.611,0.611,0.0176,0.0478,0,0,0,0,0,0,0.00568,0.00568,0.319,0.705,0.317,1,0.381,0.286,0.381,0.381,0.947,0.947,0.0882,0.0849,0.333,1 +0.667,0.181,0.336,0.336,0,0,0.641,0.641,0.641,0,0,0,0,0,0,0,0,0.00284,0.00284,0.284,0.591,0.34,1,0.37,0.261,0.37,0.37,0.939,0.939,0.0882,0.0849,0.333,1 +0.333,0.18,0.392,0.392,0,0,0.641,0.641,0.641,0,0,0,0,0,0,0,0,0.017,0.017,0.302,0.591,0.402,1,0.37,0.236,0.37,0.37,0.704,0.704,0.0882,0.0849,0,1 +0.667,0.182,0.433,0.433,0,0,0.641,0.641,0.641,0,0,0,0,0,0,0,0.00274,0.00568,0.00841,0.316,0.585,0.459,1,0.37,0.304,0.37,0.37,0.587,0.587,0.151,0.145,0.333,1 +1,0.49,0.447,0.447,0,0,0.626,0.626,0.626,0,0,0,0,0,0,0,0.0341,0.0142,0.0483,0.447,0.862,0.505,1,0.381,0.366,0.381,0.381,0.477,0.477,0.365,0.352,0,1 +1,0.602,0.545,0.545,0,0.0853,0.672,0.672,0.672,0,0,0,0,0,0,0,0,0,0,0.545,0.899,0.531,1,0.52,0.683,0.52,0.52,0.29,0.29,0.794,0.764,0,1 +1,0.798,0.741,0.741,0,0.146,0.733,0.733,0.733,0,0,0,0,0,0,0,0.00253,0,0.00253,0.741,0.974,0.549,1,0.659,1,0.659,0.659,0.18,0.18,0.769,0.739,0,1 +1,0.979,0.881,0.881,0,0.146,0.764,0.764,0.764,0,0,0,0,0,0,0,0.0517,0.00568,0.0574,0.881,0.993,0.647,1,0.763,0.714,0.763,0.763,0.102,0.102,0.428,0.412,0,1 +1,0.991,0.937,0.937,0,0.146,0.733,0.733,0.733,0,0,0,0,0,0,0,0.0323,0,0.0323,0.937,0.937,0.851,1,0.878,0.435,0.878,0.878,0.0626,0.0626,0.384,0.37,0,1 +1,0.823,0.993,0.993,0,0.146,0.718,0.718,0.718,0,0,0,0,0,0,0,0.042,0,0.042,0.993,0.88,1,1,0.936,0.273,0.936,0.936,0.0313,0.0313,0.321,0.309,0,1 +1,0.621,0.965,0.965,0,0.134,0.703,0.703,0.703,0,0,0,0,0,0,0,0.0118,0.0114,0.0232,0.965,0.843,0.923,1,0.994,0.118,0.994,0.994,0.0235,0.0235,0.271,0.261,0,1 +1,0.374,0.825,0.825,0,0,0.672,0.672,0.672,0,0,0,0,0,0,0,0,0.00284,0.00284,0.636,0.655,0.582,1,0.867,0.0807,0.867,0.867,0.0235,0.0235,0.151,0.145,0.333,1 +1,0.116,0.699,0.699,0,0,0.626,0.626,0.626,0,0,0,0,0,0,0,0,0,0,0.405,0.535,0.265,1,0.751,0.0435,0.751,0.751,0.0235,0.0235,0.151,0.145,0.667,1 +1,0.0743,0.559,0.559,0,0,0.611,0.611,0.611,0,0,0,0,0,0,0,0,0,0,0.358,0.529,0.113,1,0.509,0.0248,0.509,0.509,0.0235,0.0235,0.151,0.145,0.667,1 +1,0.0578,0.517,0.517,0,0,0.596,0.596,0.596,0,0,0,0,0,0,0,0,0,0,0.344,0.516,0.0567,1,0.266,0.00621,0.266,0.266,0.0235,0.0235,0.183,0.176,0.667,1 +1,0.0495,0.517,0.517,0,0,0.58,0.58,0.58,0,0,0,0,0,0,0,0,0.00568,0.00568,0.344,0.51,0.0309,1,0.22,0.00621,0.22,0.22,0.0235,0.0235,0.151,0.145,0.667,1 +1,0.0495,0.503,0.503,0,0,0.565,0.565,0.565,0,0,0,0,0,0,0,0,0.00568,0.00568,0.258,0.465,0.0206,1,0.173,0.0124,0.173,0.173,0.0313,0.0313,0.183,0.176,1,1 +0.667,0.0495,0.461,0.461,0,0,0.55,0.55,0.55,0,0,0,0,0,0,0,0,0.00568,0.00568,0.258,0.465,0.0284,1,0.185,0.0435,0.185,0.185,0.0626,0.0626,0.296,0.285,0.667,1 +0.667,0.0495,0.503,0.503,0,0,0.55,0.55,0.55,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0361,1,0.208,0.0745,0.208,0.208,0.117,0.117,0.422,0.406,0.667,1 +0.667,0.0495,0.601,0.601,0,0,0.58,0.58,0.58,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0619,1,0.301,0.18,0.301,0.301,0.203,0.203,0.359,0.345,0.667,1 +0.667,0.0495,0.657,0.657,0,0,0.611,0.611,0.611,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.111,1,0.381,0.286,0.381,0.381,0.344,0.344,0.151,0.145,0.667,1 +0.667,0.0495,0.475,0.475,0,0,0.626,0.626,0.626,0,0,0,0,0,0,0,0.00272,0,0.00272,0.258,0.465,0.183,1,0.381,0.273,0.381,0.381,0.657,0.657,0.151,0.145,0.667,1 +0.667,0.196,0.322,0.322,0,0,0.626,0.626,0.626,0,0,0,0,0,0,0,0.0403,0,0.0403,0.279,0.579,0.242,1,0.37,0.255,0.37,0.37,0.947,0.947,0.12,0.115,0.333,1 +0.667,0.192,0.336,0.336,0,0,0.611,0.611,0.611,0,0,0,0,0,0,0.0326,0.0338,0,0.0664,0.284,0.579,0.289,1,0.381,0.273,0.381,0.381,0.994,0.994,0.0945,0.0909,0.333,1 +0.667,0.186,0.35,0.35,0,0,0.611,0.611,0.611,0,0,0,0,0,0,0.00816,0.0164,0,0.0245,0.288,0.585,0.317,1,0.381,0.286,0.381,0.381,0.947,0.947,0.0882,0.0849,0.333,1 +0.667,0.313,0.336,0.336,0,0,0.641,0.641,0.641,0,0,0.0325,0.00596,0,0,0,0.0665,0,0.0665,0.31,0.717,0.34,1,0.37,0.261,0.37,0.37,0.939,0.939,0.0882,0.0849,0,1 +1,0.441,0.392,0.392,0,0,0.641,0.641,0.641,0,0,0.0306,0.00982,0.147,0.147,0,0.0194,0.00284,0.0223,0.392,0.843,0.402,1,0.37,0.236,0.37,0.37,0.704,0.704,0.0882,0.0849,0,1 +0.667,0.315,0.433,0.433,0,0,0.641,0.641,0.641,0,0,0.0335,0,0.22,0.22,0.0353,0.00979,0.00284,0.048,0.375,0.705,0.459,1,0.37,0.304,0.37,0.37,0.587,0.587,0.151,0.145,0,1 +0.667,0.343,0.447,0.447,0,0,0.626,0.626,0.626,0,0,0.0304,0,0,0,0.0442,0.0208,0.017,0.082,0.384,0.73,0.505,1,0.381,0.366,0.381,0.381,0.477,0.477,0.365,0.352,0,1 +0.667,0.418,0.545,0.545,0,0.0487,0.672,0.672,0.672,0,0,0,0,0,0,0,0,0,0,0.449,0.755,0.531,1,0.52,0.683,0.52,0.52,0.29,0.29,0.794,0.764,0,1 +0.333,0.299,0.741,0.741,0,0.0609,0.733,0.733,0.733,0,0,0,0,0,0,0,0,0.00852,0.00852,0.419,0.635,0.549,1,0.659,1,0.659,0.659,0.18,0.18,0.769,0.739,0,1 +0.333,0.359,0.881,0.881,0,0,0.764,0.764,0.764,0,0,0,0,0,0,0,0,0.0114,0.0114,0.465,0.641,0.647,1,0.763,0.714,0.763,0.763,0.102,0.102,0.428,0.412,0,1 +0.333,0.363,0.937,0.937,0,0,0.733,0.733,0.733,0,0,0,0,0,0,0,0,0.00284,0.00284,0.484,0.622,0.851,1,0.878,0.435,0.878,0.878,0.0626,0.0626,0.384,0.37,0,1 +0.333,0.0495,0.993,0.993,0,0,0.718,0.718,0.718,0,0,0,0,0,0,0,0,0,0,0.258,0.465,1,1,0.936,0.273,0.936,0.936,0.0313,0.0313,0.321,0.309,0.333,1 +0.667,0.24,0.965,0.965,0,0,0.703,0.703,0.703,0,0,0,0,0,0,0,0,0.0114,0.0114,0.493,0.591,0.923,1,0.994,0.118,0.994,0.994,0.0235,0.0235,0.271,0.261,0.333,1 +1,0.374,0.825,0.825,0,0,0.672,0.672,0.672,0,0,0,0,0,0,0,0,0.017,0.017,0.636,0.655,0.582,1,0.867,0.0807,0.867,0.867,0.0235,0.0235,0.151,0.145,0.333,1 +1,0.116,0.699,0.699,0,0,0.626,0.626,0.626,0,0,0,0,0,0,0,0.0255,0,0.0255,0.405,0.535,0.265,1,0.751,0.0435,0.751,0.751,0.0235,0.0235,0.151,0.145,0.667,1 +1,0.0743,0.559,0.559,0,0,0.611,0.611,0.611,0,0,0,0,0,0,0,0.0155,0,0.0155,0.358,0.529,0.0954,1,0.509,0.0248,0.509,0.509,0.0235,0.0235,0.151,0.145,0.667,1 +1,0.0495,0.517,0.517,0,0,0.596,0.596,0.596,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0464,1,0.266,0.00621,0.266,0.266,0.0235,0.0235,0.183,0.176,1,1 +1,0.0495,0.517,0.517,0,0,0.58,0.58,0.58,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0232,1,0.22,0.00621,0.22,0.22,0.0235,0.0235,0.151,0.145,1,1 +1,0.0495,0.503,0.503,0,0,0.565,0.565,0.565,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.465,0.018,1,0.173,0.0124,0.173,0.173,0.0313,0.0313,0.183,0.176,1,1 +1,0.0495,0.461,0.461,0,0,0.55,0.55,0.55,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.465,0.0284,1,0.185,0.0435,0.185,0.185,0.0626,0.0626,0.296,0.285,1,1 +1,0.0495,0.503,0.503,0,0,0.55,0.55,0.55,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0464,1,0.208,0.0745,0.208,0.208,0.117,0.117,0.422,0.406,1,1 +1,0.151,0.601,0.601,0,0,0.58,0.58,0.58,0,0,0,0,0,0,0,0,0,0,0.372,0.541,0.0747,1,0.301,0.18,0.301,0.301,0.203,0.203,0.359,0.345,0.667,1 +0.667,0.183,0.657,0.657,0,0,0.611,0.611,0.611,0,0,0,0,0,0,0,0.00264,0,0.00264,0.391,0.572,0.103,1,0.381,0.286,0.381,0.381,0.344,0.344,0.151,0.145,0.333,1 +0.667,0.192,0.475,0.475,0,0,0.626,0.626,0.626,0,0,0,0,0,0,0.0898,0.0346,0,0.124,0.33,0.579,0.126,1,0.381,0.273,0.381,0.381,0.657,0.657,0.151,0.145,0.333,1 +0.667,0.343,0.322,0.322,0,0,0.626,0.626,0.626,0,0,0,0,0,0,0.0358,0.0173,0,0.0531,0.3,0.692,0.149,1,0.37,0.255,0.37,0.37,0.947,0.947,0.12,0.115,0,1 +0.333,0.192,0.336,0.336,0,0,0.611,0.611,0.611,0,0,0,0,0,0,0.0179,0.0104,0.0142,0.0425,0.284,0.579,0.168,1,0.381,0.273,0.381,0.381,0.994,0.994,0.0945,0.0909,0,1 +0,0.0495,0.35,0.35,0,0,0.611,0.611,0.611,0,0,0,0,0,0,0,0,0.0284,0.0284,0.258,0.465,0.186,1,0.381,0.286,0.381,0.381,0.947,0.947,0.0882,0.0849,0,1 +0,0.0495,0.336,0.336,0,0,0.641,0.641,0.641,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.465,0.196,1,0.37,0.261,0.37,0.37,0.939,0.939,0.0882,0.0849,0,1 +0,0.0495,0.392,0.392,0,0,0.641,0.641,0.641,0,0,0,0,0,0,0,0,0.00852,0.00852,0.258,0.465,0.222,1,0.37,0.236,0.37,0.37,0.704,0.704,0.0882,0.0849,0,1 +0.333,0.182,0.433,0.433,0,0,0.641,0.641,0.641,0,0,0,0,0,0,0,0,0.00284,0.00284,0.316,0.585,0.235,1,0.37,0.304,0.37,0.37,0.587,0.587,0.151,0.145,0,1 +0.333,0.196,0.447,0.447,0,0,0.626,0.626,0.626,0,0,0,0,0,0,0,0,0,0,0.321,0.597,0.263,1,0.381,0.366,0.381,0.381,0.477,0.477,0.365,0.352,0,1 +0.667,0.234,0.545,0.545,0,0,0.672,0.672,0.672,0,0,0,0,0,0,0,0,0,0,0.354,0.61,0.327,1,0.52,0.683,0.52,0.52,0.29,0.29,0.794,0.764,0.333,1 +0.667,0.548,0.741,0.741,0,0,0.733,0.733,0.733,0,0,0,0,0,0,0,0,0,0,0.58,0.805,0.402,1,0.659,1,0.659,0.659,0.18,0.18,0.769,0.739,0,1 +0.667,0.669,0.881,0.881,0,0,0.764,0.764,0.764,0,0,0,0,0,0,0,0,0.00568,0.00568,0.673,0.817,0.541,1,0.763,0.714,0.763,0.763,0.102,0.102,0.428,0.412,0,1 +0.667,0.677,0.937,0.937,0,0,0.733,0.733,0.733,0,0,0,0,0,0,0,0,0.00284,0.00284,0.711,0.78,0.758,1,0.878,0.435,0.878,0.878,0.0626,0.0626,0.384,0.37,0,1 +1,0.823,0.993,0.993,0,0,0.718,0.718,0.718,0,0,0,0,0,0,0,0.00276,0,0.00276,0.993,0.88,0.936,1,0.936,0.273,0.936,0.936,0.0313,0.0313,0.321,0.309,0,1 +1,0.621,0.965,0.965,0,0,0.703,0.703,0.703,0,0,0,0,0,0,0,0.0525,0.00284,0.0553,0.965,0.843,0.887,1,0.994,0.118,0.994,0.994,0.0235,0.0235,0.271,0.261,0,1 +1,0.374,0.825,0.825,0,0,0.672,0.672,0.672,0,0,0,0,0,0,0,0,0.00568,0.00568,0.636,0.655,0.536,1,0.867,0.0807,0.867,0.867,0.0235,0.0235,0.151,0.145,0.333,1 +1,0.116,0.699,0.699,0,0,0.626,0.626,0.626,0,0,0,0,0,0,0,0.0167,0.00284,0.0196,0.405,0.535,0.232,1,0.751,0.0435,0.751,0.751,0.0235,0.0235,0.151,0.145,0.667,1 +1,0.0495,0.559,0.559,0,0,0.611,0.611,0.611,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0954,1,0.509,0.0248,0.509,0.509,0.0235,0.0235,0.151,0.145,1,1 +1,0.0495,0.517,0.517,0,0,0.596,0.596,0.596,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0464,1,0.266,0.00621,0.266,0.266,0.0235,0.0235,0.183,0.176,1,1 +1,0.0495,0.517,0.517,0,0,0.58,0.58,0.58,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.465,0.0232,1,0.22,0.00621,0.22,0.22,0.0235,0.0235,0.151,0.145,1,1 +1,0.0495,0.503,0.503,0,0,0.565,0.565,0.565,0,0,0,0,0,0,0,0.00273,0,0.00273,0.34,0.504,0.018,1,0.173,0.0124,0.173,0.173,0.0313,0.0313,0.183,0.176,0.667,1 +1,0.0513,0.461,0.461,0,0,0.55,0.55,0.55,0,0,0,0,0,0,0,0.0436,0,0.0436,0.326,0.51,0.0284,1,0.185,0.0435,0.185,0.185,0.0626,0.0626,0.296,0.285,0.667,1 +1,0.0833,0.503,0.503,0,0.0122,0.55,0.55,0.55,0,0,0,0,0,0,0,0.0159,0,0.0159,0.34,0.516,0.0464,1,0.208,0.0745,0.208,0.208,0.117,0.117,0.422,0.406,0.667,1 +0.667,0.0495,0.601,0.601,0,0.0244,0.58,0.58,0.58,0,0,0,0,0,0,0,0.00243,0,0.00243,0.258,0.465,0.0747,1,0.301,0.18,0.301,0.301,0.203,0.203,0.359,0.345,0.667,1 +0.667,0.183,0.657,0.657,0,0,0.611,0.611,0.611,0,0,0,0,0,0,0,0.0565,0.0114,0.0679,0.391,0.572,0.103,1,0.381,0.286,0.381,0.381,0.344,0.344,0.151,0.145,0.333,1 +0.667,0.334,0.475,0.475,0,0,0.626,0.626,0.626,0,0,0,0,0,0,0,0.0444,0,0.0444,0.403,0.692,0.126,1,0.381,0.273,0.381,0.381,0.657,0.657,0.151,0.145,0,1 +0.333,0.196,0.322,0.322,0,0,0.626,0.626,0.626,0,0,0,0,0,0,0,0.0367,0.0142,0.0509,0.279,0.579,0.149,1,0.37,0.255,0.37,0.37,0.947,0.947,0.12,0.115,0,1 +0.667,0.334,0.336,0.336,0,0,0.611,0.611,0.611,0,0,0,0,0,0,0,0.0239,0.00568,0.0296,0.31,0.692,0.168,1,0.381,0.273,0.381,0.381,0.994,0.994,0.0945,0.0909,0,1 +0.333,0.186,0.35,0.35,0,0.0122,0.611,0.611,0.611,0,0,0,0,0,0,0,0,0.00852,0.00852,0.288,0.585,0.186,1,0.381,0.286,0.381,0.381,0.947,0.947,0.0882,0.0849,0,1 +0.333,0.181,0.336,0.336,0,0.134,0.641,0.641,0.641,0,0,0,0,0,0,0,0,0,0,0.284,0.591,0.196,1,0.37,0.261,0.37,0.37,0.939,0.939,0.0882,0.0849,0,1 +0.333,0.18,0.392,0.392,0,0,0.641,0.641,0.641,0,0,0,0,0,0,0,0,0.00284,0.00284,0.302,0.591,0.222,1,0.37,0.236,0.37,0.37,0.704,0.704,0.0882,0.0849,0,1 +0.333,0.182,0.433,0.433,0,0,0.641,0.641,0.641,0,0,0,0,0,0,0,0,0.00852,0.00852,0.316,0.585,0.235,1,0.37,0.304,0.37,0.37,0.587,0.587,0.151,0.145,0,1 +0.333,0.196,0.447,0.447,0,0,0.626,0.626,0.626,0.00444,0.0175,0,0,0,0,0,0,0,0,0.321,0.597,0.263,1,0.381,0.366,0.381,0.381,0.477,0.477,0.365,0.352,0,1 +0.667,0.418,0.545,0.545,0,0,0.672,0.672,0.672,0.0138,0.0541,0,0,0,0,0,0,0,0,0.449,0.755,0.327,1,0.52,0.683,0.52,0.52,0.29,0.29,0.794,0.764,0,1 +1,0.798,0.741,0.741,0,0,0.733,0.733,0.733,0,0,0,0,0,0,0,0,0,0,0.741,0.974,0.402,1,0.659,1,0.659,0.659,0.18,0.18,0.769,0.739,0,1 +1,0.979,0.881,0.881,0,0,0.764,0.764,0.764,0,0,0,0,0,0,0,0.0239,0.00852,0.0324,0.881,0.993,0.541,1,0.763,0.714,0.763,0.763,0.102,0.102,0.428,0.412,0,1 +1,0.991,0.937,0.937,0,0,0.733,0.733,0.733,0,0,0,0,0,0,0,0.0316,0.00852,0.0401,0.937,0.937,0.758,1,0.878,0.435,0.878,0.878,0.0626,0.0626,0.384,0.37,0,1 +1,0.565,0.993,0.993,0,0,0.718,0.718,0.718,0,0,0,0,0,0,0,0,0.0255,0.0255,0.748,0.742,0.936,1,0.936,0.273,0.936,0.936,0.0313,0.0313,0.321,0.309,0.333,1 +1,0.43,0.965,0.965,0,0,0.703,0.703,0.703,0,0,0,0,0,0,0,0,0.0114,0.0114,0.729,0.717,0.887,1,0.994,0.118,0.994,0.994,0.0235,0.0235,0.271,0.261,0.333,1 +1,0.212,0.825,0.825,0,0,0.672,0.672,0.672,0,0,0,0,0,0,0,0,0,0,0.447,0.56,0.536,1,0.867,0.0807,0.867,0.867,0.0235,0.0235,0.151,0.145,0.667,1 +1,0.0495,0.699,0.699,0,0,0.626,0.626,0.626,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.232,1,0.751,0.0435,0.751,0.751,0.0235,0.0235,0.151,0.145,1,1 +1,0.0495,0.559,0.559,0,0,0.611,0.611,0.611,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0954,1,0.509,0.0248,0.509,0.509,0.0235,0.0235,0.151,0.145,1,1 +1,0.0495,0.517,0.517,0,0,0.596,0.596,0.596,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0464,1,0.266,0.00621,0.266,0.266,0.0235,0.0235,0.183,0.176,1,1 +1,0.0495,0.517,0.517,0,0,0.58,0.58,0.58,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0232,1,0.22,0.00621,0.22,0.22,0.0235,0.0235,0.151,0.145,1,1 +1,0.0495,0.503,0.503,0,0,0.565,0.565,0.565,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.018,1,0.173,0.0124,0.173,0.173,0.0313,0.0313,0.183,0.176,1,1 +1,0.0495,0.461,0.461,0,0,0.55,0.55,0.55,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0284,1,0.185,0.0435,0.185,0.185,0.0626,0.0626,0.296,0.285,1,1 +1,0.0833,0.503,0.503,0,0,0.55,0.55,0.55,0,0,0,0,0,0,0,0,0,0,0.34,0.516,0.0464,1,0.208,0.0745,0.208,0.208,0.117,0.117,0.422,0.406,0.667,1 +1,0.253,0.601,0.601,0,0,0.58,0.58,0.58,0,0,0.00897,0.000702,0,0,0,0.0186,0,0.0186,0.487,0.617,0.0747,1,0.301,0.18,0.301,0.301,0.203,0.203,0.359,0.345,0.333,1 +0.667,0.316,0.657,0.657,0,0.0122,0.611,0.611,0.611,0.0148,0.0653,0,0.0151,0.055,0.055,0,0,0.00568,0.00568,0.524,0.68,0.103,1,0.381,0.286,0.381,0.381,0.344,0.344,0.151,0.145,0,1 +0.667,0.334,0.475,0.475,0,0.0244,0.626,0.626,0.626,0.016,0.0302,0,0,0.22,0.22,0,0,0,0,0.403,0.692,0.126,1,0.381,0.273,0.381,0.381,0.657,0.657,0.151,0.145,0,1 +0.333,0.196,0.322,0.322,0,0,0.626,0.626,0.626,0.0206,0,0,0,0,0,0,0,0,0,0.279,0.579,0.149,1,0.37,0.255,0.37,0.37,0.947,0.947,0.12,0.115,0,1 +0.333,0.192,0.336,0.336,0,0,0.611,0.611,0.611,0.00842,0,0,0,0,0,0,0,0.0142,0.0142,0.284,0.579,0.168,1,0.381,0.273,0.381,0.381,0.994,0.994,0.0945,0.0909,0,1 +0.333,0.186,0.35,0.35,0,0,0.611,0.611,0.611,0,0,0,0,0,0,0,0,0.00852,0.00852,0.288,0.585,0.186,1,0.381,0.286,0.381,0.381,0.947,0.947,0.0882,0.0849,0,1 +0.333,0.181,0.336,0.336,0,0,0.641,0.641,0.641,0,0,0,0,0,0,0,0,0,0,0.284,0.591,0.196,1,0.37,0.261,0.37,0.37,0.939,0.939,0.0882,0.0849,0,1 +0.333,0.18,0.392,0.392,0,0,0.641,0.641,0.641,0.0124,0.0891,0,0,0,0,0,0,0,0,0.302,0.591,0.222,1,0.37,0.236,0.37,0.37,0.704,0.704,0.0882,0.0849,0,1 +0.333,0.182,0.433,0.433,0,0,0.641,0.641,0.641,0,0.00637,0,0,0,0,0,0,0.0114,0.0114,0.316,0.585,0.235,1,0.37,0.304,0.37,0.37,0.587,0.587,0.151,0.145,0,1 +0,0.0495,0.447,0.447,0,0,0.626,0.626,0.626,0,0,0,0,0,0,0,0,0.00568,0.00568,0.258,0.465,0.263,1,0.381,0.366,0.381,0.381,0.477,0.477,0.365,0.352,0,1 +0,0.0495,0.545,0.545,0,0,0.672,0.672,0.672,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.327,1,0.52,0.683,0.52,0.52,0.29,0.29,0.794,0.764,0,1 +0,0.0495,0.741,0.741,0,0.0487,0.733,0.733,0.733,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.465,0.402,1,0.659,1,0.659,0.659,0.18,0.18,0.769,0.739,0,1 +0.333,0.359,0.881,0.881,0,0.0244,0.764,0.764,0.764,0,0,0,0,0,0,0,0,0.017,0.017,0.465,0.641,0.541,1,0.763,0.714,0.763,0.763,0.102,0.102,0.428,0.412,0,1 +0.333,0.363,0.937,0.937,0,0,0.733,0.733,0.733,0,0,0,0,0,0,0,0,0,0,0.484,0.622,0.758,1,0.878,0.435,0.878,0.878,0.0626,0.0626,0.384,0.37,0,1 +1,0.565,0.993,0.993,0,0,0.718,0.718,0.718,0,0,0,0,0,0,0,0,0,0,0.748,0.742,0.936,1,0.936,0.273,0.936,0.936,0.0313,0.0313,0.321,0.309,0.333,1 +1,0.24,0.965,0.965,0,0,0.703,0.703,0.703,0,0,0,0,0,0,0,0.00252,0,0.00252,0.493,0.591,0.887,1,0.994,0.118,0.994,0.994,0.0235,0.0235,0.271,0.261,0.667,1 +1,0.212,0.825,0.825,0,0,0.672,0.672,0.672,0,0,0,0,0,0,0,0.0202,0,0.0202,0.447,0.56,0.536,1,0.867,0.0807,0.867,0.867,0.0235,0.0235,0.151,0.145,0.667,1 +1,0.0495,0.699,0.699,0,0,0.626,0.626,0.626,0,0,0,0,0,0,0,0,0.00568,0.00568,0.258,0.465,0.232,1,0.751,0.0435,0.751,0.751,0.0235,0.0235,0.151,0.145,1,1 +1,0.0495,0.563,0.563,0,0,0.609,0.609,0.609,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0947,1,0.512,0.0248,0.512,0.512,0.0236,0.0236,0.152,0.145,1,1 +1,0.0495,0.521,0.521,0,0,0.594,0.594,0.594,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0461,1,0.267,0.00621,0.267,0.267,0.0236,0.0236,0.184,0.175,1,1 +1,0.0495,0.521,0.521,0,0,0.579,0.579,0.579,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.023,1,0.221,0.00621,0.221,0.221,0.0236,0.0236,0.152,0.145,1,1 +1,0.0495,0.507,0.507,0,0,0.564,0.564,0.564,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0179,1,0.174,0.0124,0.174,0.174,0.0315,0.0315,0.184,0.175,1,1 +1,0.0495,0.465,0.465,0,0,0.549,0.549,0.549,0,0,0,0,0,0,0,0.00275,0,0.00275,0.258,0.465,0.0282,1,0.186,0.0435,0.186,0.186,0.063,0.063,0.298,0.284,1,1 +1,0.0829,0.507,0.507,0,0,0.549,0.549,0.549,0,0,0,0,0,0,0,0.044,0,0.044,0.341,0.518,0.0461,1,0.209,0.0745,0.209,0.209,0.118,0.118,0.425,0.405,0.667,1 +0.667,0.0495,0.606,0.606,0,0,0.579,0.579,0.579,0,0,0,0,0,0,0,0.0309,0,0.0309,0.258,0.465,0.0742,1,0.302,0.18,0.302,0.302,0.205,0.205,0.362,0.345,0.667,1 +0.667,0.181,0.662,0.662,0,0,0.609,0.609,0.609,0,0,0,0,0,0,0,0.0183,0,0.0183,0.392,0.574,0.102,1,0.384,0.286,0.384,0.384,0.346,0.346,0.152,0.145,0.333,1 +0.667,0.19,0.479,0.479,0,0,0.625,0.625,0.625,0,0,0,0,0,0,0,0.0216,0,0.0216,0.331,0.581,0.125,1,0.384,0.273,0.384,0.384,0.661,0.661,0.152,0.145,0.333,1 +0.667,0.193,0.324,0.324,0,0,0.625,0.625,0.625,0,0,0,0,0,0,0,0.0536,0.00852,0.0621,0.28,0.581,0.148,1,0.372,0.255,0.372,0.372,0.953,0.953,0.121,0.115,0.333,1 +0.667,0.189,0.338,0.338,0,0,0.609,0.609,0.609,0,0,0,0,0,0,0,0.00952,0,0.00952,0.284,0.581,0.166,1,0.384,0.273,0.384,0.384,1,1,0.0952,0.0907,0.333,1 +0.667,0.316,0.352,0.352,0,0,0.609,0.609,0.609,0,0,0,0,0,0,0,0.0211,0.0199,0.041,0.321,0.709,0.184,1,0.384,0.286,0.384,0.384,0.953,0.953,0.0889,0.0847,0,1 +0.667,0.307,0.338,0.338,0,0.0853,0.64,0.64,0.64,0,0,0,0,0,0,0,0.0128,0.00284,0.0157,0.311,0.721,0.194,1,0.372,0.261,0.372,0.372,0.945,0.945,0.0889,0.0847,0,1 +0.333,0.177,0.394,0.394,0,0.0244,0.64,0.64,0.64,0,0,0,0,0,0,0,0,0.00568,0.00568,0.303,0.593,0.22,1,0.372,0.236,0.372,0.372,0.709,0.709,0.0889,0.0847,0,1 +0.333,0.178,0.437,0.437,0,0,0.64,0.64,0.64,0,0,0,0,0,0,0,0,0,0,0.317,0.587,0.233,1,0.372,0.304,0.372,0.372,0.591,0.591,0.152,0.145,0,1 +0.333,0.186,0.451,0.451,0,0,0.625,0.625,0.625,0,0,0,0,0,0,0,0,0.00284,0.00284,0.322,0.6,0.261,1,0.384,0.366,0.384,0.384,0.48,0.48,0.368,0.351,0,1 +0.667,0.367,0.549,0.549,0,0,0.67,0.67,0.67,0,0,0,0,0,0,0,0,0,0,0.452,0.759,0.325,1,0.523,0.683,0.523,0.523,0.291,0.291,0.8,0.762,0,1 +0.333,0.258,0.746,0.746,0,0,0.731,0.731,0.731,0,0,0,0,0,0,0,0,0.0114,0.0114,0.421,0.637,0.399,1,0.663,1,0.663,0.663,0.181,0.181,0.775,0.738,0,1 +0.667,0.595,0.887,0.887,0,0.0122,0.762,0.762,0.762,0,0,0,0,0,0,0,0,0.00852,0.00852,0.677,0.822,0.537,1,0.767,0.714,0.767,0.767,0.102,0.102,0.432,0.411,0,1 +0.667,0.67,0.944,0.944,0,0.0975,0.731,0.731,0.731,0,0,0,0,0,0,0,0.0191,0,0.0191,0.715,0.784,0.752,1,0.884,0.435,0.884,0.884,0.063,0.063,0.387,0.369,0,1 +1,0.913,1,1,0,0,0.716,0.716,0.716,0.00432,0.0175,0,0,0,0,0,0.0296,0.00284,0.0324,1,0.887,0.929,1,0.942,0.273,0.942,0.942,0.0315,0.0315,0.324,0.308,0,1 +1,0.501,0.972,0.972,0,0,0.701,0.701,0.701,0.0142,0.0302,0,0,0,0,0,0.0367,0.00284,0.0395,0.734,0.721,0.88,1,1,0.118,1,1,0.0236,0.0236,0.273,0.26,0.333,1 +1,0.246,0.831,0.831,0,0,0.67,0.67,0.67,0,0,0,0,0,0,0,0,0.017,0.017,0.449,0.562,0.532,1,0.872,0.0807,0.872,0.872,0.0236,0.0236,0.152,0.145,0.667,1 +1,0.0495,0.704,0.704,0,0,0.625,0.625,0.625,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.23,1,0.756,0.0435,0.756,0.756,0.0236,0.0236,0.152,0.145,1,1 +1,0.0495,0.563,0.563,0,0,0.609,0.609,0.609,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0947,1,0.512,0.0248,0.512,0.512,0.0236,0.0236,0.152,0.145,1,1 +1,0.0495,0.521,0.521,0,0,0.594,0.594,0.594,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0461,1,0.267,0.00621,0.267,0.267,0.0236,0.0236,0.184,0.175,1,1 +1,0.0495,0.521,0.521,0,0,0.579,0.579,0.579,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.023,1,0.221,0.00621,0.221,0.221,0.0236,0.0236,0.152,0.145,1,1 +1,0.0495,0.507,0.507,0,0,0.564,0.564,0.564,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0179,1,0.174,0.0124,0.174,0.174,0.0315,0.0315,0.184,0.175,1,1 +1,0.0513,0.465,0.465,0,0,0.549,0.549,0.549,0,0,0,0,0,0,0,0.0104,0,0.0104,0.327,0.511,0.0282,1,0.186,0.0435,0.186,0.186,0.063,0.063,0.298,0.284,0.667,1 +0.667,0.0495,0.507,0.507,0,0,0.549,0.549,0.549,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0461,1,0.209,0.0745,0.209,0.209,0.118,0.118,0.425,0.405,0.667,1 +0.667,0.0495,0.606,0.606,0,0,0.579,0.579,0.579,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0742,1,0.302,0.18,0.302,0.302,0.205,0.205,0.362,0.345,0.667,1 +0.333,0.0495,0.662,0.662,0,0,0.609,0.609,0.609,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.102,1,0.384,0.286,0.384,0.384,0.346,0.346,0.152,0.145,0.333,1 +0.667,0.19,0.479,0.479,0,0.0487,0.625,0.625,0.625,0,0,0,0,0,0,0,0,0.0142,0.0142,0.331,0.581,0.125,1,0.384,0.273,0.384,0.384,0.661,0.661,0.152,0.145,0.333,1 +0.333,0.0495,0.324,0.324,0,0.0244,0.625,0.625,0.625,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.465,0.148,1,0.372,0.255,0.372,0.372,0.953,0.953,0.121,0.115,0.333,1 +0.333,0.0495,0.338,0.338,0,0,0.609,0.609,0.609,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.166,1,0.384,0.273,0.384,0.384,1,1,0.0952,0.0907,0.333,1 +0.333,0.183,0.352,0.352,0,0,0.609,0.609,0.609,0,0,0,0,0,0,0,0,0,0,0.289,0.587,0.184,1,0.384,0.286,0.384,0.384,0.953,0.953,0.0889,0.0847,0,1 +0.333,0.178,0.338,0.338,0,0,0.64,0.64,0.64,0,0,0,0,0,0,0,0,0.0227,0.0227,0.284,0.593,0.194,1,0.372,0.261,0.372,0.372,0.945,0.945,0.0889,0.0847,0,1 +0.333,0.177,0.394,0.394,0,0,0.64,0.64,0.64,0,0,0,0,0,0,0,0,0,0,0.303,0.593,0.22,1,0.372,0.236,0.372,0.372,0.709,0.709,0.0889,0.0847,0,1 +0.333,0.178,0.437,0.437,0,0,0.64,0.64,0.64,0,0,0,0,0,0,0,0,0,0,0.317,0.587,0.233,1,0.372,0.304,0.372,0.372,0.591,0.591,0.152,0.145,0,1 +0.667,0.322,0.451,0.451,0,0,0.625,0.625,0.625,0,0,0,0,0,0,0,0,0,0,0.386,0.734,0.261,1,0.384,0.366,0.384,0.384,0.48,0.48,0.368,0.351,0,1 +0.667,0.367,0.549,0.549,0,0,0.67,0.67,0.67,0,0,0,0,0,0,0,0,0.00568,0.00568,0.452,0.759,0.325,1,0.523,0.683,0.523,0.523,0.291,0.291,0.8,0.762,0,1 +1,0.674,0.746,0.746,0,0,0.731,0.731,0.731,0,0,0,0,0,0,0,0,0,0,0.746,0.981,0.399,1,0.663,1,0.663,0.663,0.181,0.181,0.775,0.738,0,1 +0.667,0.595,0.887,0.887,0,0,0.762,0.762,0.762,0.00584,0.0175,0,0,0,0,0,0,0.0114,0.0114,0.677,0.822,0.537,1,0.767,0.714,0.767,0.767,0.102,0.102,0.432,0.411,0,1 +0.667,0.67,0.944,0.944,0,0,0.731,0.731,0.731,0.0137,0.0302,0,0,0,0,0,0,0.017,0.017,0.715,0.784,0.752,1,0.884,0.435,0.884,0.884,0.063,0.063,0.387,0.369,0,1 +0.333,0.337,1,1,0,0,0.716,0.716,0.716,0,0,0,0,0,0,0,0.00252,0,0.00252,0.505,0.606,0.929,1,0.942,0.273,0.942,0.942,0.0315,0.0315,0.324,0.308,0,1 +0.667,0.501,0.972,0.972,0,0,0.701,0.701,0.701,0,0,0,0,0,0,0,0.0151,0,0.0151,0.734,0.721,0.88,1,1,0.118,1,1,0.0236,0.0236,0.273,0.26,0,1 +0.667,0.0495,0.831,0.831,0,0,0.67,0.67,0.67,0,0,0.0191,0.000702,0,0,0,0,0.00284,0.00284,0.258,0.465,0.532,1,0.872,0.0807,0.872,0.872,0.0236,0.0236,0.152,0.145,0.667,1 +1,0.116,0.704,0.704,0,0,0.625,0.625,0.625,0,0,0.0441,0.0151,0.055,0.055,0,0,0.0142,0.0142,0.407,0.537,0.23,1,0.756,0.0435,0.756,0.756,0.0236,0.0236,0.152,0.145,0.667,1 +1,0.0743,0.563,0.563,0,0,0.609,0.609,0.609,0,0,0,0,0.367,0.367,0,0.0155,0,0.0155,0.36,0.53,0.113,1,0.512,0.0248,0.512,0.512,0.0236,0.0236,0.152,0.145,0.667,1 +1,0.0495,0.521,0.521,0,0,0.594,0.594,0.594,0,0,0,0,0.0367,0.0367,0,0.014,0,0.014,0.258,0.465,0.0563,1,0.267,0.00621,0.267,0.267,0.0236,0.0236,0.184,0.175,1,1 +1,0.0495,0.521,0.521,0,0,0.579,0.579,0.579,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0307,1,0.221,0.00621,0.221,0.221,0.0236,0.0236,0.152,0.145,1,1 +1,0.0495,0.507,0.507,0,0,0.564,0.564,0.564,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0205,1,0.174,0.0124,0.174,0.174,0.0315,0.0315,0.184,0.175,1,1 +1,0.0513,0.465,0.465,0,0,0.549,0.549,0.549,0,0,0.0205,0,0,0,0,0,0,0,0.327,0.511,0.0282,1,0.186,0.0435,0.186,0.186,0.063,0.063,0.298,0.284,0.667,1 +1,0.116,0.507,0.507,0,0,0.549,0.549,0.549,0,0,0.0475,0.0158,0,0,0,0,0,0,0.424,0.57,0.0358,1,0.209,0.0745,0.209,0.209,0.118,0.118,0.425,0.405,0.333,1 +1,0.251,0.606,0.606,0,0,0.579,0.579,0.579,0,0,0,0,0.33,0.33,0,0.00265,0,0.00265,0.49,0.621,0.0614,1,0.302,0.18,0.302,0.302,0.205,0.205,0.362,0.345,0.333,1 +0.667,0.181,0.662,0.662,0,0,0.609,0.609,0.609,0,0,0,0,0.0367,0.0367,0,0.0442,0,0.0442,0.392,0.574,0.11,1,0.384,0.286,0.384,0.384,0.346,0.346,0.152,0.145,0.333,1 +0.667,0.19,0.479,0.479,0,0,0.625,0.625,0.625,0,0,0,0,0,0,0,0,0.00852,0.00852,0.331,0.581,0.182,1,0.384,0.273,0.384,0.384,0.661,0.661,0.152,0.145,0.333,1 +0.333,0.0495,0.324,0.324,0,0,0.625,0.625,0.625,0,0,0,0,0,0,0,0,0.00852,0.00852,0.258,0.465,0.241,1,0.372,0.255,0.372,0.372,0.953,0.953,0.121,0.115,0.333,1 +0.333,0.0495,0.338,0.338,0,0,0.609,0.609,0.609,0,0,0,0,0,0,0,0,0.00852,0.00852,0.258,0.465,0.287,1,0.384,0.273,0.384,0.384,1,1,0.0952,0.0907,0.333,1 +0.667,0.183,0.352,0.352,0,0,0.609,0.609,0.609,0,0,0,0,0,0,0,0,0,0,0.289,0.587,0.315,1,0.384,0.286,0.384,0.384,0.953,0.953,0.0889,0.0847,0.333,1 +0.667,0.178,0.338,0.338,0,0,0.64,0.64,0.64,0,0,0,0,0,0,0,0,0.00284,0.00284,0.284,0.593,0.338,1,0.372,0.261,0.372,0.372,0.945,0.945,0.0889,0.0847,0.333,1 +0.667,0.177,0.394,0.394,0,0,0.64,0.64,0.64,0,0,0,0,0,0,0,0.0118,0,0.0118,0.303,0.593,0.399,1,0.372,0.236,0.372,0.372,0.709,0.709,0.0889,0.0847,0.333,1 +0.333,0.178,0.437,0.437,0,0,0.64,0.64,0.64,0.0124,0.0653,0,0,0,0,0,0,0.00568,0.00568,0.317,0.587,0.456,1,0.372,0.304,0.372,0.372,0.591,0.591,0.152,0.145,0,1 +0.333,0.186,0.451,0.451,0,0.0366,0.625,0.625,0.625,0.00477,0.00637,0,0,0,0,0,0,0.00568,0.00568,0.322,0.6,0.502,1,0.384,0.366,0.384,0.384,0.48,0.48,0.368,0.351,0,1 +0.667,0.367,0.549,0.549,0,0,0.67,0.67,0.67,0,0,0,0,0,0,0,0,0,0,0.452,0.759,0.527,1,0.523,0.683,0.523,0.523,0.291,0.291,0.8,0.762,0,1 +0.667,0.466,0.746,0.746,0,0,0.731,0.731,0.731,0,0,0,0,0,0,0,0,0,0,0.584,0.809,0.545,1,0.663,1,0.663,0.663,0.181,0.181,0.775,0.738,0,1 +0.667,0.595,0.887,0.887,0,0,0.762,0.762,0.762,0,0,0,0,0,0,0,0,0,0,0.677,0.822,0.642,1,0.767,0.714,0.767,0.767,0.102,0.102,0.432,0.411,0,1 +0.667,0.67,0.944,0.944,0,0,0.731,0.731,0.731,0,0,0,0,0,0,0,0.00269,0.0142,0.0169,0.715,0.784,0.845,1,0.884,0.435,0.884,0.884,0.063,0.063,0.387,0.369,0,1 +1,0.913,1,1,0,0,0.716,0.716,0.716,0,0,0,0,0,0,0,0.0432,0,0.0432,1,0.887,0.993,1,0.942,0.273,0.942,0.942,0.0315,0.0315,0.324,0.308,0,1 +1,0.727,0.972,0.972,0,0,0.701,0.701,0.701,0,0,0,0,0,0,0,0,0.0114,0.0114,0.972,0.849,0.916,1,1,0.118,1,1,0.0236,0.0236,0.273,0.26,0,1 +1,0.638,0.831,0.831,0,0,0.67,0.67,0.67,0,0,0,0,0,0,0,0.0167,0,0.0167,0.831,0.755,0.578,1,0.872,0.0807,0.872,0.872,0.0236,0.0236,0.152,0.145,0,1 +1,0.249,0.704,0.704,0,0,0.625,0.625,0.625,0,0,0,0,0,0,0,0.017,0.00568,0.0226,0.704,0.679,0.264,1,0.756,0.0435,0.756,0.756,0.0236,0.0236,0.152,0.145,0,1 +1,0.124,0.563,0.563,0,0,0.609,0.609,0.609,0,0,0,0,0,0,0,0.00676,0.017,0.0238,0.563,0.66,0.113,1,0.512,0.0248,0.512,0.512,0.0236,0.0236,0.152,0.145,0,1 +1,0.0578,0.521,0.521,0,0,0.594,0.594,0.594,0,0,0,0,0,0,0,0,0.00568,0.00568,0.346,0.518,0.0563,1,0.267,0.00621,0.267,0.267,0.0236,0.0236,0.184,0.175,0.667,1 +1,0.0495,0.521,0.521,0,0,0.579,0.579,0.579,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0307,1,0.221,0.00621,0.221,0.221,0.0236,0.0236,0.152,0.145,1,1 +1,0.0495,0.507,0.507,0,0,0.564,0.564,0.564,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0205,1,0.174,0.0124,0.174,0.174,0.0315,0.0315,0.184,0.175,1,1 +0.667,0.0495,0.465,0.465,0,0,0.549,0.549,0.549,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0282,1,0.186,0.0435,0.186,0.186,0.063,0.063,0.298,0.284,0.667,1 +1,0.0829,0.507,0.507,0,0,0.549,0.549,0.549,0,0,0,0,0,0,0,0,0,0,0.341,0.518,0.0358,1,0.209,0.0745,0.209,0.209,0.118,0.118,0.425,0.405,0.667,1 +1,0.0495,0.606,0.606,0,0,0.579,0.579,0.579,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0614,1,0.302,0.18,0.302,0.302,0.205,0.205,0.362,0.345,1,1 +1,0.181,0.662,0.662,0,0,0.609,0.609,0.609,0,0,0,0,0,0,0,0,0,0,0.392,0.574,0.11,1,0.384,0.286,0.384,0.384,0.346,0.346,0.152,0.145,0.667,1 +1,0.19,0.479,0.479,0,0,0.625,0.625,0.625,0,0,0,0,0,0,0,0,0.0114,0.0114,0.331,0.581,0.182,1,0.384,0.273,0.384,0.384,0.661,0.661,0.152,0.145,0.667,1 +1,0.193,0.324,0.324,0,0,0.625,0.625,0.625,0,0,0,0,0,0,0,0.0129,0.017,0.03,0.28,0.581,0.241,1,0.372,0.255,0.372,0.372,0.953,0.953,0.121,0.115,0.667,1 +0.667,0.189,0.338,0.338,0,0,0.609,0.609,0.609,0,0,0,0,0,0,0,0.0439,0,0.0439,0.284,0.581,0.287,1,0.384,0.273,0.384,0.384,1,1,0.0952,0.0907,0.333,1 +0.667,0.316,0.352,0.352,0,0,0.609,0.609,0.609,0,0,0,0,0,0,0,0.0195,0.00852,0.028,0.321,0.709,0.315,1,0.384,0.286,0.384,0.384,0.953,0.953,0.0889,0.0847,0,1 +0.333,0.178,0.338,0.338,0,0,0.64,0.64,0.64,0,0,0,0,0,0,0,0,0.0142,0.0142,0.284,0.593,0.338,1,0.372,0.261,0.372,0.372,0.945,0.945,0.0889,0.0847,0,1 +0.333,0.177,0.394,0.394,0,0,0.64,0.64,0.64,0,0,0,0,0,0,0,0,0.00284,0.00284,0.303,0.593,0.399,1,0.372,0.236,0.372,0.372,0.709,0.709,0.0889,0.0847,0,1 +0.333,0.178,0.437,0.437,0,0,0.64,0.64,0.64,0,0,0,0,0,0,0,0,0.00568,0.00568,0.317,0.587,0.456,1,0.372,0.304,0.372,0.372,0.591,0.591,0.152,0.145,0,1 +0.333,0.186,0.451,0.451,0,0,0.625,0.625,0.625,0,0,0,0,0,0,0,0,0,0,0.322,0.6,0.502,1,0.384,0.366,0.384,0.384,0.48,0.48,0.368,0.351,0,1 +0.667,0.367,0.549,0.549,0,0.0122,0.67,0.67,0.67,0,0,0,0,0,0,0,0,0,0,0.452,0.759,0.527,1,0.523,0.683,0.523,0.523,0.291,0.291,0.8,0.762,0,1 +0.667,0.466,0.746,0.746,0,0.0244,0.731,0.731,0.731,0,0,0,0,0,0,0,0,0.00852,0.00852,0.584,0.809,0.545,1,0.663,1,0.663,0.663,0.181,0.181,0.775,0.738,0,1 +1,0.868,0.887,0.887,0,0,0.762,0.762,0.762,0,0,0,0,0,0,0,0,0.00852,0.00852,0.887,1,0.642,1,0.767,0.714,0.767,0.767,0.102,0.102,0.432,0.411,0,1 +1,0.98,0.944,0.944,0,0,0.731,0.731,0.731,0,0,0,0,0,0,0,0,0.00284,0.00284,0.944,0.943,0.845,1,0.884,0.435,0.884,0.884,0.063,0.063,0.387,0.369,0,1 +1,0.913,1,1,0,0,0.716,0.716,0.716,0,0,0,0,0,0,0,0,0.00284,0.00284,1,0.887,0.993,1,0.942,0.273,0.942,0.942,0.0315,0.0315,0.324,0.308,0,1 +1,0.727,0.972,0.972,0,0,0.701,0.701,0.701,0,0,0,0,0,0,0,0,0,0,0.972,0.849,0.916,1,1,0.118,1,1,0.0236,0.0236,0.273,0.26,0,1 +1,0.638,0.831,0.831,0,0,0.67,0.67,0.67,0,0,0,0,0,0,0,0.0108,0,0.0108,0.831,0.755,0.578,1,0.872,0.0807,0.872,0.872,0.0236,0.0236,0.152,0.145,0,1 +1,0.183,0.704,0.704,0,0,0.625,0.625,0.625,0,0,0,0,0,0,0,0,0,0,0.555,0.608,0.264,1,0.756,0.0435,0.756,0.756,0.0236,0.0236,0.152,0.145,0.333,1 +1,0.099,0.563,0.563,0,0,0.609,0.609,0.609,0,0,0,0,0,0,0,0,0,0,0.461,0.595,0.0947,1,0.512,0.0248,0.512,0.512,0.0236,0.0236,0.152,0.145,0.333,1 +1,0.066,0.521,0.521,0,0,0.594,0.594,0.594,0,0,0,0,0,0,0,0,0,0,0.433,0.57,0.0461,1,0.267,0.00621,0.267,0.267,0.0236,0.0236,0.184,0.175,0.333,1 +1,0.0495,0.521,0.521,0,0,0.579,0.579,0.579,0,0,0,0,0,0,0,0,0,0,0.346,0.511,0.023,1,0.221,0.00621,0.221,0.221,0.0236,0.0236,0.152,0.145,0.667,1 +1,0.0495,0.507,0.507,0,0,0.564,0.564,0.564,0,0,0,0,0,0,0,0.00254,0,0.00254,0.341,0.505,0.0179,1,0.174,0.0124,0.174,0.174,0.0315,0.0315,0.184,0.175,0.667,1 +1,0.0513,0.465,0.465,0,0,0.549,0.549,0.549,0,0,0,0,0,0,0,0.0427,0,0.0427,0.327,0.511,0.0282,1,0.186,0.0435,0.186,0.186,0.063,0.063,0.298,0.284,0.667,1 +1,0.0829,0.507,0.507,0,0,0.549,0.549,0.549,0,0,0,0,0,0,0,0.0209,0,0.0209,0.341,0.518,0.0461,1,0.209,0.0745,0.209,0.209,0.118,0.118,0.425,0.405,0.667,1 +0.667,0.15,0.606,0.606,0,0,0.579,0.579,0.579,0,0,0,0,0,0,0,0.0148,0.00284,0.0177,0.374,0.543,0.0742,1,0.302,0.18,0.302,0.302,0.205,0.205,0.362,0.345,0.333,1 +0.667,0.181,0.662,0.662,0,0,0.609,0.609,0.609,0,0,0,0,0,0,0,0.0412,0.00284,0.0441,0.392,0.574,0.102,1,0.384,0.286,0.384,0.384,0.346,0.346,0.152,0.145,0.333,1 +0.667,0.33,0.479,0.479,0,0,0.625,0.625,0.625,0,0,0.0231,0,0,0,0,0.0277,0.017,0.0447,0.405,0.696,0.125,1,0.384,0.273,0.384,0.384,0.661,0.661,0.152,0.145,0,1 +0.667,0.337,0.324,0.324,0,0,0.625,0.625,0.625,0,0,0.0446,0.0158,0,0,0,0.0268,0.00568,0.0324,0.302,0.696,0.148,1,0.372,0.255,0.372,0.372,0.953,0.953,0.121,0.115,0,1 +0.333,0.189,0.338,0.338,0,0,0.609,0.609,0.609,0,0,0.0253,0,0.33,0.33,0,0,0,0,0.284,0.581,0.166,1,0.384,0.273,0.384,0.384,1,1,0.0952,0.0907,0,1 +0.333,0.183,0.352,0.352,0,0,0.609,0.609,0.609,0,0,0.0394,0,0.128,0.128,0,0,0.00568,0.00568,0.289,0.587,0.184,1,0.384,0.286,0.384,0.384,0.953,0.953,0.0889,0.0847,0,1 +0.333,0.178,0.338,0.338,0,0,0.64,0.64,0.64,0,0,0.0378,0,0,0,0,0,0.00568,0.00568,0.284,0.593,0.194,1,0.372,0.261,0.372,0.372,0.945,0.945,0.0889,0.0847,0,1 +0.333,0.177,0.394,0.394,0,0,0.64,0.64,0.64,0,0,0.0279,0,0,0,0,0,0,0,0.303,0.593,0.22,1,0.372,0.236,0.372,0.372,0.709,0.709,0.0889,0.0847,0,1 +0.333,0.178,0.437,0.437,0,0,0.64,0.64,0.64,0,0,0.0303,0,0,0,0,0,0.00284,0.00284,0.317,0.587,0.233,1,0.372,0.304,0.372,0.372,0.591,0.591,0.152,0.145,0,1 +0.333,0.186,0.451,0.451,0,0,0.625,0.625,0.625,0,0,0.0457,0,0,0,0,0,0,0,0.322,0.6,0.261,1,0.384,0.366,0.384,0.384,0.48,0.48,0.368,0.351,0,1 +0.667,0.367,0.549,0.549,0,0,0.67,0.67,0.67,0,0,0.0577,0,0,0,0,0,0.00284,0.00284,0.452,0.759,0.325,1,0.523,0.683,0.523,0.523,0.291,0.291,0.8,0.762,0,1 +1,0.674,0.746,0.746,0,0,0.731,0.731,0.731,0,0,0.0239,0,0,0,0,0,0.00284,0.00284,0.746,0.981,0.399,1,0.663,1,0.663,0.663,0.181,0.181,0.775,0.738,0,1 +1,0.868,0.887,0.887,0,0,0.762,0.762,0.762,0,0,0.00868,0,0,0,0,0.0285,0,0.0285,0.887,1,0.537,1,0.767,0.714,0.767,0.767,0.102,0.102,0.432,0.411,0,1 +1,0.98,0.944,0.944,0,0.0122,0.731,0.731,0.731,0,0,0,0,0,0,0,0,0.00852,0.00852,0.944,0.943,0.752,1,0.884,0.435,0.884,0.884,0.063,0.063,0.387,0.369,0,1 +1,0.913,1,1,0,0.146,0.716,0.716,0.716,0,0,0,0,0,0,0,0,0.00284,0.00284,1,0.887,0.929,1,0.942,0.273,0.942,0.942,0.0315,0.0315,0.324,0.308,0,1 +1,0.501,0.972,0.972,0,0.146,0.701,0.701,0.701,0,0,0,0,0,0,0,0,0.00284,0.00284,0.734,0.721,0.88,1,1,0.118,1,1,0.0236,0.0236,0.273,0.26,0.333,1 +1,0.246,0.831,0.831,0,0.0244,0.67,0.67,0.67,0,0,0,0,0,0,0,0.00269,0.00568,0.00837,0.449,0.562,0.532,1,0.872,0.0807,0.872,0.872,0.0236,0.0236,0.152,0.145,0.667,1 +1,0.116,0.704,0.704,0,0,0.625,0.625,0.625,0,0,0,0,0,0,0,0.0371,0,0.0371,0.407,0.537,0.23,1,0.756,0.0435,0.756,0.756,0.0236,0.0236,0.152,0.145,0.667,1 +1,0.0495,0.563,0.563,0,0,0.609,0.609,0.609,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0947,1,0.512,0.0248,0.512,0.512,0.0236,0.0236,0.152,0.145,1,1 +1,0.0495,0.521,0.521,0,0,0.594,0.594,0.594,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0461,1,0.267,0.00621,0.267,0.267,0.0236,0.0236,0.184,0.175,1,1 +1,0.0495,0.521,0.521,0,0,0.579,0.579,0.579,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.465,0.023,1,0.221,0.00621,0.221,0.221,0.0236,0.0236,0.152,0.145,1,1 +1,0.0495,0.507,0.507,0,0,0.564,0.564,0.564,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0179,1,0.174,0.0124,0.174,0.174,0.0315,0.0315,0.184,0.175,1,1 +1,0.0495,0.465,0.465,0,0,0.549,0.549,0.549,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0282,1,0.186,0.0435,0.186,0.186,0.063,0.063,0.298,0.284,1,1 +1,0.0829,0.507,0.507,0,0,0.549,0.549,0.549,0,0,0,0,0,0,0,0.0138,0,0.0138,0.341,0.518,0.0461,1,0.209,0.0745,0.209,0.209,0.118,0.118,0.425,0.405,0.667,1 +1,0.351,0.606,0.606,0,0,0.579,0.579,0.579,0,0,0,0,0,0,0,0.0419,0,0.0419,0.606,0.698,0.0742,1,0.302,0.18,0.302,0.302,0.205,0.205,0.362,0.345,0,1 +0.667,0.313,0.662,0.662,0,0,0.609,0.609,0.609,0,0,0,0,0,0,0,0.0191,0,0.0191,0.527,0.683,0.102,1,0.384,0.286,0.384,0.384,0.346,0.346,0.152,0.145,0,1 +0.667,0.33,0.479,0.479,0,0,0.625,0.625,0.625,0,0,0,0,0,0,0,0.0506,0,0.0506,0.405,0.696,0.125,1,0.384,0.273,0.384,0.384,0.661,0.661,0.152,0.145,0,1 +0.667,0.337,0.324,0.324,0,0,0.625,0.625,0.625,0,0,0,0,0,0,0.0358,0.0169,0.0114,0.0641,0.302,0.696,0.148,1,0.372,0.255,0.372,0.372,0.953,0.953,0.121,0.115,0,1 +0.667,0.328,0.338,0.338,0,0,0.609,0.609,0.609,0,0,0,0,0,0,0.0358,0.015,0.00284,0.0536,0.311,0.696,0.166,1,0.384,0.273,0.384,0.384,1,1,0.0952,0.0907,0,1 +0.667,0.316,0.352,0.352,0,0,0.609,0.609,0.609,0,0,0,0,0,0,0,0.0612,0.00852,0.0697,0.321,0.709,0.184,1,0.384,0.286,0.384,0.384,0.953,0.953,0.0889,0.0847,0,1 +0.333,0.178,0.338,0.338,0,0,0.64,0.64,0.64,0,0,0,0,0,0,0,0.0125,0.00568,0.0182,0.284,0.593,0.194,1,0.372,0.261,0.372,0.372,0.945,0.945,0.0889,0.0847,0,1 +0.667,0.305,0.394,0.394,0,0,0.64,0.64,0.64,0,0,0,0,0,0,0,0,0.0142,0.0142,0.349,0.721,0.22,1,0.372,0.236,0.372,0.372,0.709,0.709,0.0889,0.0847,0,1 +0.333,0.178,0.437,0.437,0,0,0.64,0.64,0.64,0,0,0,0,0,0,0,0,0.0114,0.0114,0.317,0.587,0.233,1,0.372,0.304,0.372,0.372,0.591,0.591,0.152,0.145,0,1 +0.333,0.186,0.451,0.451,0,0.0366,0.625,0.625,0.625,0,0,0,0,0,0,0,0,0.0142,0.0142,0.322,0.6,0.261,1,0.384,0.366,0.384,0.384,0.48,0.48,0.368,0.351,0,1 +0.333,0.208,0.549,0.549,0,0,0.67,0.67,0.67,0,0,0,0,0,0,0,0,0,0,0.355,0.612,0.325,1,0.523,0.683,0.523,0.523,0.291,0.291,0.8,0.762,0,1 +0.667,0.466,0.746,0.746,0,0,0.731,0.731,0.731,0,0,0,0,0,0,0,0,0.00284,0.00284,0.584,0.809,0.399,1,0.663,1,0.663,0.663,0.181,0.181,0.775,0.738,0,1 +1,0.868,0.887,0.887,0,0,0.762,0.762,0.762,0,0,0,0,0,0,0,0,0.00284,0.00284,0.887,1,0.537,1,0.767,0.714,0.767,0.767,0.102,0.102,0.432,0.411,0,1 +1,0.98,0.944,0.944,0,0,0.731,0.731,0.731,0,0,0,0,0,0,0,0,0.00568,0.00568,0.944,0.943,0.752,1,0.884,0.435,0.884,0.884,0.063,0.063,0.387,0.369,0,1 +1,0.913,1,1,0,0,0.716,0.716,0.716,0,0,0,0,0,0,0,0,0.00284,0.00284,1,0.887,0.929,1,0.942,0.273,0.942,0.942,0.0315,0.0315,0.324,0.308,0,1 +1,0.501,0.972,0.972,0,0,0.701,0.701,0.701,0,0,0,0,0,0,0,0,0,0,0.734,0.721,0.88,1,1,0.118,1,1,0.0236,0.0236,0.273,0.26,0.333,1 +1,0.246,0.831,0.831,0,0,0.67,0.67,0.67,0,0,0,0,0,0,0,0.0422,0,0.0422,0.449,0.562,0.532,1,0.872,0.0807,0.872,0.872,0.0236,0.0236,0.152,0.145,0.667,1 +1,0.116,0.704,0.704,0,0,0.625,0.625,0.625,0,0,0,0,0,0,0,0.00708,0,0.00708,0.407,0.537,0.23,1,0.756,0.0435,0.756,0.756,0.0236,0.0236,0.152,0.145,0.667,1 +1,0.0495,0.563,0.563,0,0,0.609,0.609,0.609,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0947,1,0.512,0.0248,0.512,0.512,0.0236,0.0236,0.152,0.145,1,1 +1,0.0495,0.521,0.521,0,0,0.594,0.594,0.594,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0461,1,0.267,0.00621,0.267,0.267,0.0236,0.0236,0.184,0.175,1,1 +1,0.0495,0.521,0.521,0,0,0.579,0.579,0.579,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.023,1,0.221,0.00621,0.221,0.221,0.0236,0.0236,0.152,0.145,1,1 +1,0.0495,0.507,0.507,0,0,0.564,0.564,0.564,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0179,1,0.174,0.0124,0.174,0.174,0.0315,0.0315,0.184,0.175,1,1 +1,0.0513,0.465,0.465,0,0,0.549,0.549,0.549,0,0,0,0,0,0,0,0,0,0,0.327,0.511,0.0282,1,0.186,0.0435,0.186,0.186,0.063,0.063,0.298,0.284,0.667,1 +1,0.116,0.507,0.507,0,0,0.549,0.549,0.549,0,0,0,0,0,0,0.061,0.0375,0,0.0985,0.424,0.57,0.0461,1,0.209,0.0745,0.209,0.209,0.118,0.118,0.425,0.405,0.333,1 +1,0.351,0.606,0.606,0,0,0.579,0.579,0.579,0,0,0,0,0,0,0,0.0103,0,0.0103,0.606,0.698,0.0742,1,0.302,0.18,0.302,0.302,0.205,0.205,0.362,0.345,0,1 +0.667,0.313,0.662,0.662,0,0,0.609,0.609,0.609,0,0,0.0253,0.000702,0,0,0,0.0114,0,0.0114,0.527,0.683,0.102,1,0.384,0.286,0.384,0.384,0.346,0.346,0.152,0.145,0,1 +0.667,0.33,0.479,0.479,0,0,0.625,0.625,0.625,0,0,0.0434,0.0203,0,0,0.00498,0,0,0.00498,0.405,0.696,0.125,1,0.384,0.273,0.384,0.384,0.661,0.661,0.152,0.145,0,1 +0.333,0.193,0.324,0.324,0,0,0.625,0.625,0.625,0,0,0.0396,0,0.33,0.33,0,0,0.00284,0.00284,0.28,0.581,0.148,1,0.372,0.255,0.372,0.372,0.953,0.953,0.121,0.115,0,1 +0.667,0.328,0.338,0.338,0,0,0.609,0.609,0.609,0,0,0.0473,0,0.0367,0.0367,0,0,0.00568,0.00568,0.311,0.696,0.166,1,0.384,0.273,0.384,0.384,1,1,0.0952,0.0907,0,1 +0.333,0.183,0.352,0.352,0,0,0.609,0.609,0.609,0,0,0,0,0,0,0,0,0,0,0.289,0.587,0.184,1,0.384,0.286,0.384,0.384,0.953,0.953,0.0889,0.0847,0,1 +0.333,0.178,0.338,0.338,0,0,0.64,0.64,0.64,0,0,0,0,0,0,0,0,0.0114,0.0114,0.284,0.593,0.194,1,0.372,0.261,0.372,0.372,0.945,0.945,0.0889,0.0847,0,1 +0.333,0.177,0.394,0.394,0,0,0.64,0.64,0.64,0,0,0,0,0,0,0,0.00258,0.0114,0.0139,0.303,0.593,0.22,1,0.372,0.236,0.372,0.372,0.709,0.709,0.0889,0.0847,0,1 +0.333,0.178,0.437,0.437,0,0,0.64,0.64,0.64,0,0,0,0,0,0,0,0.0335,0,0.0335,0.317,0.587,0.233,1,0.372,0.304,0.372,0.372,0.591,0.591,0.152,0.145,0,1 +0.333,0.186,0.451,0.451,0,0,0.625,0.625,0.625,0,0,0,0,0,0,0,0,0,0,0.322,0.6,0.261,1,0.384,0.366,0.384,0.384,0.48,0.48,0.368,0.351,0,1 +0.333,0.208,0.549,0.549,0,0,0.67,0.67,0.67,0,0,0,0,0,0,0,0,0.017,0.017,0.355,0.612,0.325,1,0.523,0.683,0.523,0.523,0.291,0.291,0.8,0.762,0,1 +0.333,0.258,0.746,0.746,0,0,0.731,0.731,0.731,0.00949,0.0175,0,0,0,0,0,0.0433,0.0426,0.0859,0.421,0.637,0.399,1,0.663,1,0.663,0.663,0.181,0.181,0.775,0.738,0,1 +0.667,0.595,0.887,0.887,0,0,0.762,0.762,0.762,0.0171,0.00637,0,0,0,0,0,0.0111,0.00284,0.0139,0.677,0.822,0.537,1,0.767,0.714,0.767,0.767,0.102,0.102,0.432,0.411,0,1 +0.667,0.67,0.944,0.944,0,0,0.731,0.731,0.731,0.013,0,0,0,0,0,0,0,0,0,0.715,0.784,0.752,1,0.884,0.435,0.884,0.884,0.063,0.063,0.387,0.369,0,1 +0.667,0.625,1,1,0,0,0.716,0.716,0.716,0,0,0,0,0,0,0,0,0.017,0.017,0.753,0.746,0.929,1,0.942,0.273,0.942,0.942,0.0315,0.0315,0.324,0.308,0,1 +1,0.727,0.972,0.972,0,0,0.701,0.701,0.701,0,0,0,0,0,0,0,0,0,0,0.972,0.849,0.88,1,1,0.118,1,1,0.0236,0.0236,0.273,0.26,0,1 +0.667,0.0495,0.831,0.831,0,0,0.67,0.67,0.67,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.465,0.532,1,0.872,0.0807,0.872,0.872,0.0236,0.0236,0.152,0.145,0.667,1 +0.667,0.0495,0.704,0.704,0,0,0.625,0.625,0.625,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.23,1,0.756,0.0435,0.756,0.756,0.0236,0.0236,0.152,0.145,0.667,1 +0.667,0.0495,0.563,0.563,0,0,0.609,0.609,0.609,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0947,1,0.512,0.0248,0.512,0.512,0.0236,0.0236,0.152,0.145,0.667,1 +0.667,0.0495,0.521,0.521,0,0,0.594,0.594,0.594,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0461,1,0.267,0.00621,0.267,0.267,0.0236,0.0236,0.184,0.175,0.667,1 +0.667,0.0495,0.521,0.521,0,0,0.579,0.579,0.579,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.023,1,0.221,0.00621,0.221,0.221,0.0236,0.0236,0.152,0.145,0.667,1 +0.667,0.0495,0.507,0.507,0,0,0.564,0.564,0.564,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0179,1,0.174,0.0124,0.174,0.174,0.0315,0.0315,0.184,0.175,0.667,1 +1,0.0495,0.465,0.465,0,0,0.549,0.549,0.549,0,0,0,0,0,0,0,0.0279,0,0.0279,0.258,0.465,0.0282,1,0.186,0.0435,0.186,0.186,0.063,0.063,0.298,0.284,1,1 +1,0.0829,0.507,0.507,0,0,0.549,0.549,0.549,0,0,0,0,0,0,0,0.00487,0,0.00487,0.341,0.518,0.0461,1,0.209,0.0745,0.209,0.209,0.118,0.118,0.425,0.405,0.667,1 +1,0.351,0.606,0.606,0,0,0.579,0.579,0.579,0,0,0,0,0,0,0,0.0401,0,0.0401,0.606,0.698,0.0742,1,0.302,0.18,0.302,0.302,0.205,0.205,0.362,0.345,0,1 +1,0.444,0.662,0.662,0,0.0366,0.609,0.609,0.609,0,0,0,0,0,0,0,0,0,0,0.662,0.792,0.102,1,0.384,0.286,0.384,0.384,0.346,0.346,0.152,0.145,0,1 +0,0.0495,0.479,0.479,0,0,0.625,0.625,0.625,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.125,1,0.384,0.273,0.384,0.384,0.661,0.661,0.152,0.145,0,1 +0.333,0.193,0.324,0.324,0,0,0.625,0.625,0.625,0.0143,0.0239,0,0,0,0,0,0,0.00284,0.00284,0.28,0.581,0.148,1,0.372,0.255,0.372,0.372,0.953,0.953,0.121,0.115,0,1 +0.333,0.189,0.338,0.338,0,0,0.609,0.609,0.609,0.02,0,0,0,0,0,0,0,0.0114,0.0114,0.284,0.581,0.166,1,0.384,0.273,0.384,0.384,1,1,0.0952,0.0907,0,1 +0.333,0.183,0.352,0.352,0,0,0.609,0.609,0.609,0.0208,0,0,0,0,0,0,0.0289,0.0142,0.0431,0.289,0.587,0.184,1,0.384,0.286,0.384,0.384,0.953,0.953,0.0889,0.0847,0,1 +0.333,0.178,0.338,0.338,0,0,0.64,0.64,0.64,0.0235,0,0,0,0,0,0,0.0143,0,0.0143,0.284,0.593,0.194,1,0.372,0.261,0.372,0.372,0.945,0.945,0.0889,0.0847,0,1 +0.333,0.177,0.394,0.394,0,0,0.64,0.64,0.64,0,0,0,0,0,0,0.0621,0,0,0.0621,0.303,0.593,0.22,1,0.372,0.236,0.372,0.372,0.709,0.709,0.0889,0.0847,0,1 +0,0.0495,0.437,0.437,0,0,0.64,0.64,0.64,0,0,0.03,0.00596,0,0,0,0,0.00568,0.00568,0.258,0.465,0.233,1,0.372,0.304,0.372,0.372,0.591,0.591,0.152,0.145,0,1 +0.333,0.186,0.451,0.451,0,0,0.625,0.625,0.625,0,0,0.0377,0.00982,0.0917,0.0917,0,0,0.00284,0.00284,0.322,0.6,0.261,1,0.384,0.366,0.384,0.384,0.48,0.48,0.368,0.351,0,1 +0.667,0.367,0.549,0.549,0,0.0122,0.67,0.67,0.67,0,0,0.0492,0,0,0,0,0,0.00568,0.00568,0.452,0.759,0.325,1,0.523,0.683,0.523,0.523,0.291,0.291,0.8,0.762,0,1 +1,0.674,0.746,0.746,0,0.146,0.731,0.731,0.731,0,0,0.0165,0,0,0,0,0,0.00568,0.00568,0.746,0.981,0.399,1,0.663,1,0.663,0.663,0.181,0.181,0.775,0.738,0,1 +0.667,0.595,0.887,0.887,0,0.146,0.762,0.762,0.762,0,0,0,0,0,0,0,0,0.0199,0.0199,0.677,0.822,0.537,1,0.767,0.714,0.767,0.767,0.102,0.102,0.432,0.411,0,1 +1,0.98,0.944,0.944,0,0.0975,0.731,0.731,0.731,0,0,0,0,0,0,0,0.00239,0,0.00239,0.944,0.943,0.752,1,0.884,0.435,0.884,0.884,0.063,0.063,0.387,0.369,0,1 +1,0.625,1,1,0,0,0.716,0.716,0.716,0,0,0,0,0,0,0,0.0304,0,0.0304,0.753,0.746,0.929,1,0.942,0.273,0.942,0.942,0.0315,0.0315,0.324,0.308,0.333,1 +1,0.501,0.972,0.972,0,0,0.701,0.701,0.701,0,0,0,0,0,0,0,0.0236,0.00284,0.0265,0.734,0.721,0.88,1,1,0.118,1,1,0.0236,0.0236,0.273,0.26,0.333,1 +1,0.442,0.831,0.831,0,0,0.67,0.67,0.67,0,0,0,0,0,0,0,0.0249,0,0.0249,0.64,0.658,0.532,1,0.872,0.0807,0.872,0.872,0.0236,0.0236,0.152,0.145,0.333,1 +0.667,0.0495,0.704,0.704,0,0,0.625,0.625,0.625,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.23,1,0.756,0.0435,0.756,0.756,0.0236,0.0236,0.152,0.145,0.667,1 +0.667,0.0495,0.563,0.563,0,0,0.609,0.609,0.609,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0947,1,0.512,0.0248,0.512,0.512,0.0236,0.0236,0.152,0.145,0.667,1 +0.667,0.0495,0.521,0.521,0,0,0.594,0.594,0.594,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0461,1,0.267,0.00621,0.267,0.267,0.0236,0.0236,0.184,0.175,0.667,1 +0.667,0.0495,0.521,0.521,0,0,0.579,0.579,0.579,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.023,1,0.221,0.00621,0.221,0.221,0.0236,0.0236,0.152,0.145,0.667,1 +0.667,0.0495,0.507,0.507,0,0,0.564,0.564,0.564,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0179,1,0.174,0.0124,0.174,0.174,0.0315,0.0315,0.184,0.175,0.667,1 +1,0.0495,0.465,0.465,0,0,0.549,0.549,0.549,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0282,1,0.186,0.0435,0.186,0.186,0.063,0.063,0.298,0.284,1,1 +1,0.0495,0.507,0.507,0,0,0.549,0.549,0.549,0,0,0,0,0,0,0,0.00233,0,0.00233,0.258,0.465,0.0461,1,0.209,0.0745,0.209,0.209,0.118,0.118,0.425,0.405,1,1 +1,0.15,0.606,0.606,0,0,0.579,0.579,0.579,0,0,0,0,0,0,0,0.0231,0,0.0231,0.374,0.543,0.0742,1,0.302,0.18,0.302,0.302,0.205,0.205,0.362,0.345,0.667,1 +1,0.181,0.662,0.662,0,0,0.609,0.609,0.609,0,0,0,0,0,0,0,0.0437,0,0.0437,0.392,0.574,0.102,1,0.384,0.286,0.384,0.384,0.346,0.346,0.152,0.145,0.667,1 +0.667,0.0495,0.479,0.479,0,0,0.625,0.625,0.625,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.125,1,0.384,0.273,0.384,0.384,0.661,0.661,0.152,0.145,0.667,1 +0.667,0.193,0.324,0.324,0,0,0.625,0.625,0.625,0,0,0,0,0,0,0,0,0,0,0.28,0.581,0.148,1,0.372,0.255,0.372,0.372,0.953,0.953,0.121,0.115,0.333,1 +0.667,0.189,0.338,0.338,0,0,0.609,0.609,0.609,0,0,0,0,0,0,0,0,0.0199,0.0199,0.284,0.581,0.166,1,0.384,0.273,0.384,0.384,1,1,0.0952,0.0907,0.333,1 +1,0.183,0.352,0.352,0,0,0.609,0.609,0.609,0,0,0,0,0,0,0,0,0,0,0.289,0.587,0.184,1,0.384,0.286,0.384,0.384,0.953,0.953,0.0889,0.0847,0.667,1 +0.667,0.178,0.338,0.338,0,0,0.64,0.64,0.64,0,0,0,0,0,0,0,0,0,0,0.284,0.593,0.194,1,0.372,0.261,0.372,0.372,0.945,0.945,0.0889,0.0847,0.333,1 +0.667,0.177,0.394,0.394,0,0,0.64,0.64,0.64,0,0,0,0,0,0,0,0,0.00284,0.00284,0.303,0.593,0.22,1,0.372,0.236,0.372,0.372,0.709,0.709,0.0889,0.0847,0.333,1 +0.667,0.0495,0.437,0.437,0,0,0.64,0.64,0.64,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.233,1,0.372,0.304,0.372,0.372,0.591,0.591,0.152,0.145,0.667,1 +1,0.458,0.451,0.451,0,0,0.625,0.625,0.625,0,0,0,0,0,0,0,0,0.00284,0.00284,0.451,0.868,0.261,1,0.384,0.366,0.384,0.384,0.48,0.48,0.368,0.351,0,1 +0.333,0.208,0.549,0.549,0,0,0.67,0.67,0.67,0,0,0,0,0,0,0,0,0.00568,0.00568,0.355,0.612,0.325,1,0.523,0.683,0.523,0.523,0.291,0.291,0.8,0.762,0,1 +0.333,0.258,0.746,0.746,0,0,0.731,0.731,0.731,0,0,0,0,0,0,0,0.0125,0,0.0125,0.421,0.637,0.399,1,0.663,1,0.663,0.663,0.181,0.181,0.775,0.738,0,1 +0.667,0.595,0.887,0.887,0,0.0366,0.762,0.762,0.762,0,0,0,0,0,0,0,0.0226,0.0114,0.034,0.677,0.822,0.537,1,0.767,0.714,0.767,0.767,0.102,0.102,0.432,0.411,0,1 +1,0.98,0.944,0.944,0,0,0.731,0.731,0.731,0,0,0,0,0,0,0,0.0195,0.00568,0.0252,0.944,0.943,0.752,1,0.884,0.435,0.884,0.884,0.063,0.063,0.387,0.369,0,1 +1,0.913,1,1,0,0,0.716,0.716,0.716,0,0,0,0,0,0,0,0.0634,0.00568,0.0691,1,0.887,0.929,1,0.942,0.273,0.942,0.942,0.0315,0.0315,0.324,0.308,0,1 +1,0.727,0.972,0.972,0,0,0.701,0.701,0.701,0,0,0,0,0,0,0.0266,0,0.0114,0.038,0.972,0.849,0.88,1,1,0.118,1,1,0.0236,0.0236,0.273,0.26,0,1 +1,0.246,0.831,0.831,0,0,0.67,0.67,0.67,0,0,0,0,0,0,0,0,0.00852,0.00852,0.449,0.562,0.532,1,0.872,0.0807,0.872,0.872,0.0236,0.0236,0.152,0.145,0.667,1 +1,0.116,0.704,0.704,0,0,0.625,0.625,0.625,0,0,0,0,0,0,0,0.0218,0,0.0218,0.407,0.537,0.23,1,0.756,0.0435,0.756,0.756,0.0236,0.0236,0.152,0.145,0.667,1 +1,0.0495,0.563,0.563,0,0,0.609,0.609,0.609,0,0,0,0,0,0,0,0.011,0,0.011,0.258,0.465,0.113,1,0.512,0.0248,0.512,0.512,0.0236,0.0236,0.152,0.145,1,1 +1,0.0495,0.521,0.521,0,0,0.594,0.594,0.594,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0563,1,0.267,0.00621,0.267,0.267,0.0236,0.0236,0.184,0.175,1,1 +1,0.0495,0.521,0.521,0,0,0.579,0.579,0.579,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0307,1,0.221,0.00621,0.221,0.221,0.0236,0.0236,0.152,0.145,1,1 +1,0.0495,0.507,0.507,0,0,0.564,0.564,0.564,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0205,1,0.174,0.0124,0.174,0.174,0.0315,0.0315,0.184,0.175,1,1 +1,0.0495,0.465,0.465,0,0,0.549,0.549,0.549,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0282,1,0.186,0.0435,0.186,0.186,0.063,0.063,0.298,0.284,1,1 +1,0.0495,0.507,0.507,0,0,0.549,0.549,0.549,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0358,1,0.209,0.0745,0.209,0.209,0.118,0.118,0.425,0.405,1,1 +1,0.0495,0.606,0.606,0,0,0.579,0.579,0.579,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0614,1,0.302,0.18,0.302,0.302,0.205,0.205,0.362,0.345,1,1 +1,0.0495,0.662,0.662,0,0,0.609,0.609,0.609,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.11,1,0.384,0.286,0.384,0.384,0.346,0.346,0.152,0.145,1,1 +1,0.0495,0.479,0.479,0,0,0.625,0.625,0.625,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.182,1,0.384,0.273,0.384,0.384,0.661,0.661,0.152,0.145,1,1 +1,0.193,0.324,0.324,0,0,0.625,0.625,0.625,0.013,0.0653,0,0,0,0,0,0.00274,0,0.00274,0.28,0.581,0.241,1,0.372,0.255,0.372,0.372,0.953,0.953,0.121,0.115,0.667,1 +1,0.468,0.338,0.338,0,0.0487,0.609,0.609,0.609,0.00528,0.0302,0,0,0,0,0,0.0247,0,0.0247,0.338,0.811,0.287,1,0.384,0.273,0.384,0.384,1,1,0.0952,0.0907,0,1 +0.667,0.316,0.352,0.352,0,0.0244,0.609,0.609,0.609,0,0,0,0,0,0,0.0382,0.0524,0,0.0906,0.321,0.709,0.315,1,0.384,0.286,0.384,0.384,0.953,0.953,0.0889,0.0847,0,1 +1,0.436,0.338,0.338,0,0,0.64,0.64,0.64,0,0,0,0,0,0,0,0,0,0,0.338,0.849,0.338,1,0.372,0.261,0.372,0.372,0.945,0.945,0.0889,0.0847,0,1 +0.667,0.305,0.394,0.394,0,0,0.64,0.64,0.64,0,0,0,0,0,0,0,0,0.00284,0.00284,0.349,0.721,0.399,1,0.372,0.236,0.372,0.372,0.709,0.709,0.0889,0.0847,0,1 +0.333,0.178,0.437,0.437,0,0,0.64,0.64,0.64,0.0124,0.0653,0,0,0,0,0,0,0.00284,0.00284,0.317,0.587,0.456,1,0.372,0.304,0.372,0.372,0.591,0.591,0.152,0.145,0,1 +0.333,0.186,0.451,0.451,0,0,0.625,0.625,0.625,0.0209,0.0302,0.0106,0,0,0,0,0,0,0,0.322,0.6,0.502,1,0.384,0.366,0.384,0.384,0.48,0.48,0.368,0.351,0,1 +1,0.526,0.549,0.549,0,0.0731,0.67,0.67,0.67,0.0151,0,0.0505,0.0158,0,0,0,0,0,0,0.549,0.906,0.527,1,0.523,0.683,0.523,0.523,0.291,0.291,0.8,0.762,0,1 +1,0.674,0.746,0.746,0,0,0.731,0.731,0.731,0,0,0.0336,0,0.275,0.275,0,0,0.00852,0.00852,0.746,0.981,0.545,1,0.663,1,0.663,0.663,0.181,0.181,0.775,0.738,0,1 +1,0.868,0.887,0.887,0,0,0.762,0.762,0.762,0,0,0,0,0,0,0,0.0246,0.00852,0.0332,0.887,1,0.642,1,0.767,0.714,0.767,0.767,0.102,0.102,0.432,0.411,0,1 +0.667,0.67,0.944,0.944,0,0,0.731,0.731,0.731,0,0,0,0,0,0,0,0,0.017,0.017,0.715,0.784,0.845,1,0.884,0.435,0.884,0.884,0.063,0.063,0.387,0.369,0,1 +0.667,0.625,1,1,0,0,0.716,0.716,0.716,0,0,0,0,0,0,0,0.0156,0.0199,0.0355,0.753,0.746,0.993,1,0.942,0.273,0.942,0.942,0.0315,0.0315,0.324,0.308,0,1 +0.667,0.501,0.972,0.972,0,0,0.701,0.701,0.701,0,0,0,0,0,0,0,0,0.0142,0.0142,0.734,0.721,0.916,1,1,0.118,1,1,0.0236,0.0236,0.273,0.26,0,1 +1,0.638,0.831,0.831,0,0,0.67,0.67,0.67,0,0,0.0155,0.000702,0,0,0,0.00258,0.00852,0.0111,0.831,0.755,0.578,1,0.872,0.0807,0.872,0.872,0.0236,0.0236,0.152,0.145,0,1 +1,0.183,0.704,0.704,0,0,0.625,0.625,0.625,0,0,0.000292,0.0151,0.055,0.055,0,0.0604,0,0.0604,0.555,0.608,0.264,1,0.756,0.0435,0.756,0.756,0.0236,0.0236,0.152,0.145,0.333,1 +1,0.0743,0.563,0.563,0,0,0.609,0.609,0.609,0,0,0,0,0.22,0.22,0,0,0,0,0.36,0.53,0.113,1,0.512,0.0248,0.512,0.512,0.0236,0.0236,0.152,0.145,0.667,1 +1,0.0578,0.521,0.521,0,0,0.594,0.594,0.594,0,0,0,0,0,0,0,0,0,0,0.346,0.518,0.0563,1,0.267,0.00621,0.267,0.267,0.0236,0.0236,0.184,0.175,0.667,1 +1,0.0495,0.521,0.521,0,0,0.579,0.579,0.579,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0307,1,0.221,0.00621,0.221,0.221,0.0236,0.0236,0.152,0.145,1,1 +1,0.0495,0.507,0.507,0,0,0.564,0.564,0.564,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0205,1,0.174,0.0124,0.174,0.174,0.0315,0.0315,0.184,0.175,1,1 +1,0.0495,0.465,0.465,0,0,0.549,0.549,0.549,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0282,1,0.186,0.0435,0.186,0.186,0.063,0.063,0.298,0.284,1,1 +1,0.0495,0.507,0.507,0,0,0.549,0.549,0.549,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0358,1,0.209,0.0745,0.209,0.209,0.118,0.118,0.425,0.405,1,1 +1,0.0495,0.606,0.606,0,0,0.579,0.579,0.579,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0614,1,0.302,0.18,0.302,0.302,0.205,0.205,0.362,0.345,1,1 +1,0.181,0.662,0.662,0,0,0.609,0.609,0.609,0,0,0,0,0,0,0,0,0,0,0.392,0.574,0.11,1,0.384,0.286,0.384,0.384,0.346,0.346,0.152,0.145,0.667,1 +1,0.33,0.479,0.479,0,0,0.625,0.625,0.625,0,0,0,0,0,0,0,0.0308,0,0.0308,0.405,0.696,0.182,1,0.384,0.273,0.384,0.384,0.661,0.661,0.152,0.145,0.333,1 +1,0.337,0.324,0.324,0,0,0.625,0.625,0.625,0,0,0,0,0,0,0.0724,0,0,0.0724,0.302,0.696,0.241,1,0.372,0.255,0.372,0.372,0.953,0.953,0.121,0.115,0.333,1 +0.667,0.189,0.338,0.338,0,0,0.609,0.609,0.609,0,0,0.0185,0,0,0,0,0,0,0,0.284,0.581,0.287,1,0.384,0.273,0.384,0.384,1,1,0.0952,0.0907,0.333,1 +0.667,0.183,0.352,0.352,0,0,0.609,0.609,0.609,0,0,0.0364,0.0158,0,0,0,0,0.0142,0.0142,0.289,0.587,0.315,1,0.384,0.286,0.384,0.384,0.953,0.953,0.0889,0.0847,0.333,1 +0.667,0.307,0.338,0.338,0,0,0.64,0.64,0.64,0,0,0.024,0,0.33,0.33,0,0,0.017,0.017,0.311,0.721,0.338,1,0.372,0.261,0.372,0.372,0.945,0.945,0.0889,0.0847,0,1 +0.667,0.305,0.394,0.394,0,0,0.64,0.64,0.64,0,0,0.0303,0,0.0367,0.0367,0,0,0,0,0.349,0.721,0.399,1,0.372,0.236,0.372,0.372,0.709,0.709,0.0889,0.0847,0,1 +0.667,0.307,0.437,0.437,0,0,0.64,0.64,0.64,0,0,0.0221,0,0,0,0,0,0,0,0.377,0.709,0.456,1,0.372,0.304,0.372,0.372,0.591,0.591,0.152,0.145,0,1 +0.333,0.186,0.451,0.451,0,0,0.625,0.625,0.625,0,0,0.0346,0,0,0,0,0,0,0,0.322,0.6,0.502,1,0.384,0.366,0.384,0.384,0.48,0.48,0.368,0.351,0,1 +0.333,0.208,0.549,0.549,0,0,0.67,0.67,0.67,0,0,0.0308,0,0,0,0,0,0.00568,0.00568,0.355,0.612,0.527,1,0.523,0.683,0.523,0.523,0.291,0.291,0.8,0.762,0,1 +1,0.466,0.746,0.746,0,0,0.731,0.731,0.731,0,0,0.0275,0,0,0,0,0,0.0142,0.0142,0.584,0.809,0.545,1,0.663,1,0.663,0.663,0.181,0.181,0.775,0.738,0.333,1 +1,0.595,0.887,0.887,0,0,0.762,0.762,0.762,0,0,0.0345,0,0,0,0,0,0.00852,0.00852,0.677,0.822,0.642,1,0.767,0.714,0.767,0.767,0.102,0.102,0.432,0.411,0.333,1 +1,0.98,0.944,0.944,0,0,0.731,0.731,0.731,0,0,0.025,0,0,0,0,0,0.00568,0.00568,0.944,0.943,0.845,1,0.884,0.435,0.884,0.884,0.063,0.063,0.387,0.369,0,1 +1,0.625,1,1,0,0,0.716,0.716,0.716,0,0,0.00117,0,0,0,0,0,0.00568,0.00568,0.753,0.746,0.993,1,0.942,0.273,0.942,0.942,0.0315,0.0315,0.324,0.308,0.333,1 +1,0.501,0.972,0.972,0,0,0.701,0.701,0.701,0,0,0,0,0,0,0,0,0.00284,0.00284,0.734,0.721,0.916,1,1,0.118,1,1,0.0236,0.0236,0.273,0.26,0.333,1 +1,0.442,0.831,0.831,0,0,0.67,0.67,0.67,0,0,0,0,0,0,0,0,0,0,0.64,0.658,0.578,1,0.872,0.0807,0.872,0.872,0.0236,0.0236,0.152,0.145,0.333,1 +1,0.116,0.704,0.704,0,0,0.625,0.625,0.625,0,0,0,0,0,0,0,0,0,0,0.407,0.537,0.264,1,0.756,0.0435,0.756,0.756,0.0236,0.0236,0.152,0.145,0.667,1 +1,0.0743,0.563,0.563,0,0,0.609,0.609,0.609,0,0,0,0,0,0,0,0,0.00284,0.00284,0.36,0.53,0.0947,1,0.512,0.0248,0.512,0.512,0.0236,0.0236,0.152,0.145,0.667,1 +1,0.0578,0.521,0.521,0,0,0.594,0.594,0.594,0,0,0,0,0,0,0,0.0026,0,0.0026,0.346,0.518,0.0461,1,0.267,0.00621,0.267,0.267,0.0236,0.0236,0.184,0.175,0.667,1 +1,0.0495,0.521,0.521,0,0.0122,0.579,0.579,0.579,0,0,0,0,0,0,0,0.0312,0,0.0312,0.346,0.511,0.023,1,0.221,0.00621,0.221,0.221,0.0236,0.0236,0.152,0.145,0.667,1 +1,0.0495,0.507,0.507,0,0.0244,0.564,0.564,0.564,0,0,0,0,0,0,0,0,0,0,0.341,0.505,0.0179,1,0.174,0.0124,0.174,0.174,0.0315,0.0315,0.184,0.175,0.667,1 +1,0.0495,0.465,0.465,0,0,0.549,0.549,0.549,0,0,0,0,0,0,0,0.0027,0,0.0027,0.258,0.465,0.0282,1,0.186,0.0435,0.186,0.186,0.063,0.063,0.298,0.284,1,1 +1,0.0829,0.507,0.507,0,0,0.549,0.549,0.549,0,0,0,0,0,0,0,0.0398,0,0.0398,0.341,0.518,0.0461,1,0.209,0.0745,0.209,0.209,0.118,0.118,0.425,0.405,0.667,1 +1,0.15,0.606,0.606,0,0,0.579,0.579,0.579,0,0,0,0,0,0,0,0.0175,0.00568,0.0232,0.374,0.543,0.0742,1,0.302,0.18,0.302,0.302,0.205,0.205,0.362,0.345,0.667,1 +0.667,0.181,0.662,0.662,0,0,0.609,0.609,0.609,0,0,0,0,0,0,0,0,0,0,0.392,0.574,0.102,1,0.384,0.286,0.384,0.384,0.346,0.346,0.152,0.145,0.333,1 +0.333,0.0495,0.479,0.479,0,0,0.625,0.625,0.625,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.125,1,0.384,0.273,0.384,0.384,0.661,0.661,0.152,0.145,0.333,1 +0.667,0.337,0.324,0.324,0,0,0.625,0.625,0.625,0,0,0,0,0,0,0,0,0.0114,0.0114,0.302,0.696,0.148,1,0.372,0.255,0.372,0.372,0.953,0.953,0.121,0.115,0,1 +0.333,0.189,0.338,0.338,0,0,0.609,0.609,0.609,0,0,0,0,0,0,0,0,0.00284,0.00284,0.284,0.581,0.166,1,0.384,0.273,0.384,0.384,1,1,0.0952,0.0907,0,1 +0.333,0.183,0.352,0.352,0,0,0.609,0.609,0.609,0,0,0,0,0,0,0,0,0,0,0.289,0.587,0.184,1,0.384,0.286,0.384,0.384,0.953,0.953,0.0889,0.0847,0,1 +0.333,0.178,0.338,0.338,0,0,0.64,0.64,0.64,0,0,0,0,0,0,0,0,0,0,0.284,0.593,0.194,1,0.372,0.261,0.372,0.372,0.945,0.945,0.0889,0.0847,0,1 +0.333,0.177,0.394,0.394,0,0,0.64,0.64,0.64,0,0,0,0,0,0,0,0,0,0,0.303,0.593,0.22,1,0.372,0.236,0.372,0.372,0.709,0.709,0.0889,0.0847,0,1 +0.333,0.178,0.437,0.437,0,0,0.64,0.64,0.64,0,0,0,0,0,0,0,0,0.00852,0.00852,0.317,0.587,0.233,1,0.372,0.304,0.372,0.372,0.591,0.591,0.152,0.145,0,1 +0.667,0.322,0.451,0.451,0,0.0366,0.625,0.625,0.625,0,0,0,0,0,0,0,0,0,0,0.386,0.734,0.261,1,0.384,0.366,0.384,0.384,0.48,0.48,0.368,0.351,0,1 +0.667,0.367,0.549,0.549,0,0,0.67,0.67,0.67,0,0,0,0,0,0,0,0,0.0114,0.0114,0.452,0.759,0.325,1,0.523,0.683,0.523,0.523,0.291,0.291,0.8,0.762,0,1 +0.667,0.466,0.746,0.746,0,0,0.731,0.731,0.731,0,0,0,0,0,0,0,0,0.0142,0.0142,0.584,0.809,0.399,1,0.663,1,0.663,0.663,0.181,0.181,0.775,0.738,0,1 +0.667,0.595,0.887,0.887,0,0.0487,0.762,0.762,0.762,0,0,0.00838,0,0,0,0,0.00263,0.00852,0.0111,0.677,0.822,0.537,1,0.767,0.714,0.767,0.767,0.102,0.102,0.432,0.411,0,1 +0.667,0.67,0.944,0.944,0,0.0366,0.731,0.731,0.731,0,0,0,0.0112,0,0,0,0.0365,0.00568,0.0421,0.715,0.784,0.752,1,0.884,0.435,0.884,0.884,0.063,0.063,0.387,0.369,0,1 +1,0.913,1,1,0,0.0609,0.716,0.716,0.716,0,0,0,0.0203,0,0,0,0,0.00284,0.00284,1,0.887,0.929,1,0.942,0.273,0.942,0.942,0.0315,0.0315,0.324,0.308,0,1 +1,0.727,0.972,0.972,0,0,0.701,0.701,0.701,0,0,0,0,0.33,0.33,0,0,0.00568,0.00568,0.972,0.849,0.88,1,1,0.118,1,1,0.0236,0.0236,0.273,0.26,0,1 +1,0.442,0.831,0.831,0,0,0.67,0.67,0.67,0,0,0,0,0.0367,0.0367,0,0,0.017,0.017,0.64,0.658,0.532,1,0.872,0.0807,0.872,0.872,0.0236,0.0236,0.152,0.145,0.333,1 +1,0.0495,0.704,0.704,0,0,0.625,0.625,0.625,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.465,0.23,1,0.756,0.0435,0.756,0.756,0.0236,0.0236,0.152,0.145,1,1 +1,0.0495,0.563,0.563,0,0,0.609,0.609,0.609,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0947,1,0.512,0.0248,0.512,0.512,0.0236,0.0236,0.152,0.145,1,1 +1,0.0495,0.521,0.521,0,0,0.594,0.594,0.594,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0461,1,0.267,0.00621,0.267,0.267,0.0236,0.0236,0.184,0.175,1,1 +1,0.0495,0.521,0.521,0,0,0.579,0.579,0.579,0,0,0,0,0,0,0,0.0156,0,0.0156,0.258,0.465,0.023,1,0.221,0.00621,0.221,0.221,0.0236,0.0236,0.152,0.145,1,1 +0.667,0.0495,0.507,0.507,0,0,0.564,0.564,0.564,0,0,0,0,0,0,0,0.0025,0,0.0025,0.258,0.465,0.0179,1,0.174,0.0124,0.174,0.174,0.0315,0.0315,0.184,0.175,0.667,1 +1,0.0513,0.465,0.465,0,0,0.549,0.549,0.549,0,0,0,0,0,0,0,0.0277,0,0.0277,0.327,0.511,0.0282,1,0.186,0.0435,0.186,0.186,0.063,0.063,0.298,0.284,0.667,1 +1,0.116,0.507,0.507,0,0,0.549,0.549,0.549,0,0,0,0,0,0,0,0.02,0,0.02,0.424,0.57,0.0461,1,0.209,0.0745,0.209,0.209,0.118,0.118,0.425,0.405,0.333,1 +1,0.251,0.606,0.606,0,0,0.579,0.579,0.579,0,0,0,0,0,0,0,0.0385,0,0.0385,0.49,0.621,0.0742,1,0.302,0.18,0.302,0.302,0.205,0.205,0.362,0.345,0.333,1 +0.667,0.313,0.662,0.662,0,0,0.609,0.609,0.609,0,0,0,0,0,0,0,0.0157,0,0.0157,0.527,0.683,0.102,1,0.384,0.286,0.384,0.384,0.346,0.346,0.152,0.145,0,1 +0.333,0.19,0.479,0.479,0,0,0.625,0.625,0.625,0,0,0,0,0,0,0,0,0.00284,0.00284,0.331,0.581,0.125,1,0.384,0.273,0.384,0.384,0.661,0.661,0.152,0.145,0,1 +0.333,0.193,0.324,0.324,0,0,0.625,0.625,0.625,0,0,0,0,0,0,0,0.0399,0.00568,0.0456,0.28,0.581,0.148,1,0.372,0.255,0.372,0.372,0.953,0.953,0.121,0.115,0,1 +0.333,0.189,0.338,0.338,0,0,0.609,0.609,0.609,0,0,0,0,0,0,0,0,0.00568,0.00568,0.284,0.581,0.166,1,0.384,0.273,0.384,0.384,1,1,0.0952,0.0907,0,1 +0,0.0495,0.352,0.352,0,0,0.609,0.609,0.609,0,0,0,0,0,0,0,0,0.00568,0.00568,0.258,0.465,0.184,1,0.384,0.286,0.384,0.384,0.953,0.953,0.0889,0.0847,0,1 +0,0.0495,0.338,0.338,0,0,0.64,0.64,0.64,0,0,0,0,0,0,0,0,0.0142,0.0142,0.258,0.465,0.194,1,0.372,0.261,0.372,0.372,0.945,0.945,0.0889,0.0847,0,1 +0,0.0495,0.394,0.394,0,0,0.64,0.64,0.64,0,0,0,0,0,0,0,0,0.0227,0.0227,0.258,0.465,0.22,1,0.372,0.236,0.372,0.372,0.709,0.709,0.0889,0.0847,0,1 +0.333,0.178,0.437,0.437,0,0,0.64,0.64,0.64,0,0,0,0,0,0,0,0,0.0142,0.0142,0.317,0.587,0.233,1,0.372,0.304,0.372,0.372,0.591,0.591,0.152,0.145,0,1 +0.333,0.186,0.451,0.451,0,0,0.625,0.625,0.625,0,0,0,0,0,0,0,0.00256,0,0.00256,0.322,0.6,0.261,1,0.384,0.366,0.384,0.384,0.48,0.48,0.368,0.351,0,1 +0.333,0.208,0.549,0.549,0,0,0.67,0.67,0.67,0,0,0,0,0,0,0,0.0128,0,0.0128,0.355,0.612,0.325,1,0.523,0.683,0.523,0.523,0.291,0.291,0.8,0.762,0,1 +0.333,0.258,0.746,0.746,0,0,0.731,0.731,0.731,0,0,0,0,0,0,0,0,0,0,0.421,0.637,0.399,1,0.663,1,0.663,0.663,0.181,0.181,0.775,0.738,0,1 +0,0.0495,0.887,0.887,0,0,0.762,0.762,0.762,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.537,1,0.767,0.714,0.767,0.767,0.102,0.102,0.432,0.411,0,1 +0,0.0495,0.944,0.944,0,0,0.731,0.731,0.731,0,0,0,0,0,0,0,0,0.00852,0.00852,0.258,0.465,0.752,1,0.884,0.435,0.884,0.884,0.063,0.063,0.387,0.369,0,1 +1,0.913,1,1,0,0,0.716,0.716,0.716,0,0,0,0,0,0,0,0,0.0114,0.0114,1,0.887,0.929,1,0.942,0.273,0.942,0.942,0.0315,0.0315,0.324,0.308,0,1 +1,0.501,0.972,0.972,0,0,0.701,0.701,0.701,0,0,0,0,0,0,0,0,0.00568,0.00568,0.734,0.721,0.88,1,1,0.118,1,1,0.0236,0.0236,0.273,0.26,0.333,1 +1,0.0495,0.831,0.831,0,0,0.67,0.67,0.67,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.532,1,0.872,0.0807,0.872,0.872,0.0236,0.0236,0.152,0.145,1,1 +1,0.0495,0.704,0.704,0,0,0.625,0.625,0.625,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.23,1,0.756,0.0435,0.756,0.756,0.0236,0.0236,0.152,0.145,1,1 +1,0.0495,0.563,0.563,0,0,0.609,0.609,0.609,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0947,1,0.512,0.0248,0.512,0.512,0.0236,0.0236,0.152,0.145,1,1 +1,0.0495,0.521,0.521,0,0,0.594,0.594,0.594,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0461,1,0.267,0.00621,0.267,0.267,0.0236,0.0236,0.184,0.175,1,1 +1,0.0495,0.521,0.521,0,0,0.579,0.579,0.579,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.023,1,0.221,0.00621,0.221,0.221,0.0236,0.0236,0.152,0.145,1,1 +1,0.0495,0.507,0.507,0,0,0.564,0.564,0.564,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0179,1,0.174,0.0124,0.174,0.174,0.0315,0.0315,0.184,0.175,1,1 +1,0.0495,0.465,0.465,0,0,0.549,0.549,0.549,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0282,1,0.186,0.0435,0.186,0.186,0.063,0.063,0.298,0.284,1,1 +1,0.0495,0.507,0.507,0,0,0.549,0.549,0.549,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0461,1,0.209,0.0745,0.209,0.209,0.118,0.118,0.425,0.405,1,1 +1,0.15,0.606,0.606,0,0.0122,0.579,0.579,0.579,0,0,0.0223,0,0,0,0,0,0,0,0.374,0.543,0.0742,1,0.302,0.18,0.302,0.302,0.205,0.205,0.362,0.345,0.667,1 +0.667,0.181,0.662,0.662,0,0.0244,0.609,0.609,0.609,0,0,0.0221,0.0158,0,0,0,0,0,0,0.392,0.574,0.102,1,0.384,0.286,0.384,0.384,0.346,0.346,0.152,0.145,0.333,1 +0.667,0.33,0.479,0.479,0,0,0.625,0.625,0.625,0,0,0.0433,0,0.33,0.33,0,0.0308,0,0.0308,0.405,0.696,0.125,1,0.384,0.273,0.384,0.384,0.661,0.661,0.152,0.145,0,1 +0.667,0.337,0.324,0.324,0,0,0.625,0.625,0.625,0,0,0.0341,0,0.0367,0.0367,0,0.0306,0,0.0306,0.302,0.696,0.148,1,0.372,0.255,0.372,0.372,0.953,0.953,0.121,0.115,0,1 +0.333,0.189,0.338,0.338,0,0,0.609,0.609,0.609,0,0,0.0227,0,0,0,0,0,0.0114,0.0114,0.284,0.581,0.166,1,0.384,0.273,0.384,0.384,1,1,0.0952,0.0907,0,1 +0.333,0.183,0.352,0.352,0,0,0.609,0.609,0.609,0,0,0,0,0,0,0,0,0.00568,0.00568,0.289,0.587,0.184,1,0.384,0.286,0.384,0.384,0.953,0.953,0.0889,0.0847,0,1 +0,0.0495,0.338,0.338,0,0,0.64,0.64,0.64,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.194,1,0.372,0.261,0.372,0.372,0.945,0.945,0.0889,0.0847,0,1 +0,0.0495,0.394,0.394,0,0,0.64,0.64,0.64,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.22,1,0.372,0.236,0.372,0.372,0.709,0.709,0.0889,0.0847,0,1 +0.333,0.178,0.437,0.437,0,0,0.64,0.64,0.64,0,0,0,0,0,0,0,0,0.0142,0.0142,0.317,0.587,0.233,1,0.372,0.304,0.372,0.372,0.591,0.591,0.152,0.145,0,1 +0.333,0.186,0.451,0.451,0,0,0.625,0.625,0.625,0,0,0,0,0,0,0,0,0,0,0.322,0.6,0.261,1,0.384,0.366,0.384,0.384,0.48,0.48,0.368,0.351,0,1 +0.333,0.208,0.549,0.549,0,0,0.67,0.67,0.67,0,0,0,0,0,0,0,0,0,0,0.355,0.612,0.325,1,0.523,0.683,0.523,0.523,0.291,0.291,0.8,0.762,0,1 +0.667,0.466,0.746,0.746,0,0.0366,0.731,0.731,0.731,0,0,0,0,0,0,0,0.0432,0.00852,0.0517,0.584,0.809,0.399,1,0.663,1,0.663,0.663,0.181,0.181,0.775,0.738,0,1 +1,0.868,0.887,0.887,0,0,0.762,0.762,0.762,0,0,0,0,0,0,0,0.019,0.00568,0.0247,0.887,1,0.537,1,0.767,0.714,0.767,0.767,0.102,0.102,0.432,0.411,0,1 +1,0.98,0.944,0.944,0,0,0.731,0.731,0.731,0,0,0,0,0,0,0,0.0213,0.00568,0.027,0.944,0.943,0.752,1,0.884,0.435,0.884,0.884,0.063,0.063,0.387,0.369,0,1 +1,0.625,1,1,0,0,0.716,0.716,0.716,0,0,0,0,0,0,0,0,0.0142,0.0142,0.753,0.746,0.929,1,0.942,0.273,0.942,0.942,0.0315,0.0315,0.324,0.308,0.333,1 +1,0.275,0.972,0.972,0,0,0.701,0.701,0.701,0,0,0,0,0,0,0,0,0,0,0.496,0.593,0.88,1,1,0.118,1,1,0.0236,0.0236,0.273,0.26,0.667,1 +1,0.0495,0.831,0.831,0,0,0.67,0.67,0.67,0,0,0,0,0,0,0,0,0.017,0.017,0.258,0.465,0.532,1,0.872,0.0807,0.872,0.872,0.0236,0.0236,0.152,0.145,1,1 +1,0.0495,0.704,0.704,0,0,0.625,0.625,0.625,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.23,1,0.756,0.0435,0.756,0.756,0.0236,0.0236,0.152,0.145,1,1 +1,0.0495,0.563,0.563,0,0,0.609,0.609,0.609,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0947,1,0.512,0.0248,0.512,0.512,0.0236,0.0236,0.152,0.145,1,1 +1,0.0495,0.521,0.521,0,0,0.594,0.594,0.594,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.465,0.0461,1,0.267,0.00621,0.267,0.267,0.0236,0.0236,0.184,0.175,1,1 +1,0.0495,0.521,0.521,0,0,0.579,0.579,0.579,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.023,1,0.221,0.00621,0.221,0.221,0.0236,0.0236,0.152,0.145,1,1 +1,0.0495,0.507,0.507,0,0,0.564,0.564,0.564,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0179,1,0.174,0.0124,0.174,0.174,0.0315,0.0315,0.184,0.175,1,1 +1,0.0495,0.465,0.465,0,0,0.549,0.549,0.549,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0282,1,0.186,0.0435,0.186,0.186,0.063,0.063,0.298,0.284,1,1 +1,0.0495,0.507,0.507,0,0,0.549,0.549,0.549,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0461,1,0.209,0.0745,0.209,0.209,0.118,0.118,0.425,0.405,1,1 +0.667,0.0495,0.606,0.606,0,0,0.579,0.579,0.579,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0742,1,0.302,0.18,0.302,0.302,0.205,0.205,0.362,0.345,0.667,1 +0.667,0.181,0.662,0.662,0,0,0.609,0.609,0.609,0,0,0,0,0,0,0,0,0,0,0.392,0.574,0.102,1,0.384,0.286,0.384,0.384,0.346,0.346,0.152,0.145,0.333,1 +0.333,0.0495,0.479,0.479,0,0,0.625,0.625,0.625,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.125,1,0.384,0.273,0.384,0.384,0.661,0.661,0.152,0.145,0.333,1 +0.333,0.193,0.324,0.324,0,0,0.625,0.625,0.625,0.00399,0.0175,0,0,0,0,0,0,0.00568,0.00568,0.28,0.581,0.148,1,0.372,0.255,0.372,0.372,0.953,0.953,0.121,0.115,0,1 +0.333,0.189,0.338,0.338,0,0,0.609,0.609,0.609,0.0213,0.00637,0,0,0,0,0,0,0,0,0.284,0.581,0.166,1,0.384,0.273,0.384,0.384,1,1,0.0952,0.0907,0,1 +0.333,0.183,0.352,0.352,0,0,0.609,0.609,0.609,0,0,0,0,0,0,0,0,0.0142,0.0142,0.289,0.587,0.184,1,0.384,0.286,0.384,0.384,0.953,0.953,0.0889,0.0847,0,1 +0.333,0.178,0.338,0.338,0,0,0.64,0.64,0.64,0,0,0,0,0,0,0,0,0.00284,0.00284,0.284,0.593,0.194,1,0.372,0.261,0.372,0.372,0.945,0.945,0.0889,0.0847,0,1 +0,0.0495,0.394,0.394,0,0,0.64,0.64,0.64,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.465,0.22,1,0.372,0.236,0.372,0.372,0.709,0.709,0.0889,0.0847,0,1 +0,0.0495,0.437,0.437,0,0,0.64,0.64,0.64,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.465,0.233,1,0.372,0.304,0.372,0.372,0.591,0.591,0.152,0.145,0,1 +0.333,0.186,0.451,0.451,0,0.0366,0.625,0.625,0.625,0,0,0,0,0,0,0,0.00259,0,0.00259,0.322,0.6,0.261,1,0.384,0.366,0.384,0.384,0.48,0.48,0.368,0.351,0,1 +0.667,0.367,0.549,0.549,0,0,0.67,0.67,0.67,0,0,0,0,0,0,0,0.0181,0.00568,0.0238,0.452,0.759,0.325,1,0.523,0.683,0.523,0.523,0.291,0.291,0.8,0.762,0,1 +1,0.674,0.746,0.746,0,0,0.731,0.731,0.731,0,0,0,0,0,0,0,0,0,0,0.746,0.981,0.399,1,0.663,1,0.663,0.663,0.181,0.181,0.775,0.738,0,1 +1,0.868,0.887,0.887,0,0.0122,0.762,0.762,0.762,0,0,0,0,0,0,0,0,0.017,0.017,0.887,1,0.537,1,0.767,0.714,0.767,0.767,0.102,0.102,0.432,0.411,0,1 +0.667,0.67,0.944,0.944,0,0.0244,0.731,0.731,0.731,0,0,0,0,0,0,0,0,0.00284,0.00284,0.715,0.784,0.752,1,0.884,0.435,0.884,0.884,0.063,0.063,0.387,0.369,0,1 +1,0.625,1,1,0,0,0.716,0.716,0.716,0,0,0,0,0,0,0,0,0,0,0.753,0.746,0.929,1,0.942,0.273,0.942,0.942,0.0315,0.0315,0.324,0.308,0.333,1 +1,0.275,0.972,0.972,0,0,0.701,0.701,0.701,0,0,0,0,0,0,0,0.0106,0,0.0106,0.496,0.593,0.88,1,1,0.118,1,1,0.0236,0.0236,0.273,0.26,0.667,1 +1,0.0495,0.831,0.831,0,0,0.67,0.67,0.67,0,0,0,0,0,0,0,0,0.00568,0.00568,0.258,0.465,0.532,1,0.872,0.0807,0.872,0.872,0.0236,0.0236,0.152,0.145,1,1 +1,0.0495,0.704,0.704,0,0,0.625,0.625,0.625,0,0,0,0,0,0,0,0,0.00568,0.00568,0.258,0.465,0.23,1,0.756,0.0435,0.756,0.756,0.0236,0.0236,0.152,0.145,1,1 +1,0.0495,0.563,0.563,0,0,0.609,0.609,0.609,0,0,0,0,0,0,0,0,0.0142,0.0142,0.258,0.465,0.0947,1,0.512,0.0248,0.512,0.512,0.0236,0.0236,0.152,0.145,1,1 +1,0.0495,0.521,0.521,0,0,0.594,0.594,0.594,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0461,1,0.267,0.00621,0.267,0.267,0.0236,0.0236,0.184,0.175,1,1 +1,0.0495,0.521,0.521,0,0.0366,0.579,0.579,0.579,0,0,0.0304,0.00596,0,0,0,0,0,0,0.346,0.511,0.023,1,0.221,0.00621,0.221,0.221,0.0236,0.0236,0.152,0.145,0.667,1 +1,0.0495,0.507,0.507,0,0,0.564,0.564,0.564,0,0,0.0157,0.00982,0.147,0.147,0,0,0,0,0.341,0.505,0.0179,1,0.174,0.0124,0.174,0.174,0.0315,0.0315,0.184,0.175,0.667,1 +1,0.0495,0.465,0.465,0,0,0.549,0.549,0.549,0,0,0,0,0.312,0.312,0,0,0,0,0.258,0.465,0.0282,1,0.186,0.0435,0.186,0.186,0.063,0.063,0.298,0.284,1,1 +1,0.0495,0.507,0.507,0,0,0.549,0.549,0.549,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0461,1,0.209,0.0745,0.209,0.209,0.118,0.118,0.425,0.405,1,1 +1,0.0495,0.606,0.606,0,0.0122,0.579,0.579,0.579,0,0,0,0,0,0,0,0.0184,0.00568,0.0241,0.258,0.465,0.0742,1,0.302,0.18,0.302,0.302,0.205,0.205,0.362,0.345,1,1 +1,0.444,0.662,0.662,0,0.0244,0.609,0.609,0.609,0,0,0.0278,0.000702,0,0,0,0.0231,0,0.0231,0.662,0.792,0.102,1,0.384,0.286,0.384,0.384,0.346,0.346,0.152,0.145,0,1 +1,0.47,0.479,0.479,0,0,0.625,0.625,0.625,0,0,0.0542,0.0151,0.055,0.055,0,0.0479,0,0.0479,0.479,0.811,0.125,1,0.384,0.273,0.384,0.384,0.661,0.661,0.152,0.145,0,1 +0.667,0.337,0.324,0.324,0,0,0.625,0.625,0.625,0,0,0.0282,0,0.22,0.22,0,0.0273,0,0.0273,0.302,0.696,0.148,1,0.372,0.255,0.372,0.372,0.953,0.953,0.121,0.115,0,1 +0.667,0.328,0.338,0.338,0,0,0.609,0.609,0.609,0,0,0.0495,0,0,0,0,0.0224,0.00284,0.0252,0.311,0.696,0.166,1,0.384,0.273,0.384,0.384,1,1,0.0952,0.0907,0,1 +0.333,0.183,0.352,0.352,0,0,0.609,0.609,0.609,0,0,0.0228,0,0,0,0,0,0.0142,0.0142,0.289,0.587,0.184,1,0.384,0.286,0.384,0.384,0.953,0.953,0.0889,0.0847,0,1 +0.333,0.178,0.338,0.338,0,0,0.64,0.64,0.64,0,0,0.027,0,0,0,0,0,0.00568,0.00568,0.284,0.593,0.194,1,0.372,0.261,0.372,0.372,0.945,0.945,0.0889,0.0847,0,1 +0.333,0.177,0.394,0.394,0,0,0.64,0.64,0.64,0,0,0.00624,0,0,0,0,0,0,0,0.303,0.593,0.22,1,0.372,0.236,0.372,0.372,0.709,0.709,0.0889,0.0847,0,1 +0.333,0.0495,0.437,0.437,0,0.0366,0.64,0.64,0.64,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.233,1,0.372,0.304,0.372,0.372,0.591,0.591,0.152,0.145,0.333,1 +0.667,0.186,0.451,0.451,0,0,0.625,0.625,0.625,0.00365,0.0175,0,0,0,0,0,0,0.0199,0.0199,0.322,0.6,0.261,1,0.384,0.366,0.384,0.384,0.48,0.48,0.368,0.351,0.333,1 +0.667,0.367,0.549,0.549,0,0,0.67,0.67,0.67,0.0185,0.0302,0,0,0,0,0,0,0.00284,0.00284,0.452,0.759,0.325,1,0.523,0.683,0.523,0.523,0.291,0.291,0.8,0.762,0,1 +0.667,0.258,0.746,0.746,0,0,0.731,0.731,0.731,0,0,0,0,0,0,0,0,0.00568,0.00568,0.421,0.637,0.399,1,0.663,1,0.663,0.663,0.181,0.181,0.775,0.738,0.333,1 +1,0.595,0.887,0.887,0,0.0731,0.762,0.762,0.762,0,0,0,0,0,0,0,0,0.00284,0.00284,0.677,0.822,0.537,1,0.767,0.714,0.767,0.767,0.102,0.102,0.432,0.411,0.333,1 +1,0.67,0.944,0.944,0,0,0.731,0.731,0.731,0,0,0,0,0,0,0,0,0.0142,0.0142,0.715,0.784,0.752,1,0.884,0.435,0.884,0.884,0.063,0.063,0.387,0.369,0.333,1 +1,0.913,1,1,0,0,0.716,0.716,0.716,0,0,0,0,0,0,0,0.00269,0.0199,0.0226,1,0.887,0.929,1,0.942,0.273,0.942,0.942,0.0315,0.0315,0.324,0.308,0,1 +1,0.727,0.972,0.972,0,0.0366,0.701,0.701,0.701,0,0,0,0,0,0,0,0.051,0.00568,0.0567,0.972,0.849,0.88,1,1,0.118,1,1,0.0236,0.0236,0.273,0.26,0,1 +1,0.246,0.831,0.831,0,0,0.67,0.67,0.67,0,0,0,0,0,0,0,0,0.00568,0.00568,0.449,0.562,0.532,1,0.872,0.0807,0.872,0.872,0.0236,0.0236,0.152,0.145,0.667,1 +1,0.0495,0.704,0.704,0,0,0.625,0.625,0.625,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.23,1,0.756,0.0435,0.756,0.756,0.0236,0.0236,0.152,0.145,1,1 +1,0.0495,0.563,0.563,0,0,0.609,0.609,0.609,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.113,1,0.512,0.0248,0.512,0.512,0.0236,0.0236,0.152,0.145,1,1 +1,0.0495,0.521,0.521,0,0,0.594,0.594,0.594,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0563,1,0.267,0.00621,0.267,0.267,0.0236,0.0236,0.184,0.175,1,1 +1,0.0495,0.521,0.521,0,0,0.579,0.579,0.579,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0307,1,0.221,0.00621,0.221,0.221,0.0236,0.0236,0.152,0.145,1,1 +1,0.0495,0.507,0.507,0,0,0.564,0.564,0.564,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0205,1,0.174,0.0124,0.174,0.174,0.0315,0.0315,0.184,0.175,1,1 +1,0.0495,0.465,0.465,0,0,0.549,0.549,0.549,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0282,1,0.186,0.0435,0.186,0.186,0.063,0.063,0.298,0.284,1,1 +1,0.0495,0.507,0.507,0,0,0.549,0.549,0.549,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0358,1,0.209,0.0745,0.209,0.209,0.118,0.118,0.425,0.405,1,1 +1,0.0495,0.606,0.606,0,0,0.579,0.579,0.579,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0614,1,0.302,0.18,0.302,0.302,0.205,0.205,0.362,0.345,1,1 +1,0.0495,0.662,0.662,0,0,0.609,0.609,0.609,0,0,0,0,0,0,0,0.00263,0,0.00263,0.258,0.465,0.11,1,0.384,0.286,0.384,0.384,0.346,0.346,0.152,0.145,1,1 +1,0.33,0.479,0.479,0,0,0.625,0.625,0.625,0,0,0,0,0,0,0,0.0237,0,0.0237,0.405,0.696,0.182,1,0.384,0.273,0.384,0.384,0.661,0.661,0.152,0.145,0.333,1 +0.667,0.193,0.324,0.324,0,0,0.625,0.625,0.625,0,0,0,0,0,0,0,0,0,0,0.28,0.581,0.241,1,0.372,0.255,0.372,0.372,0.953,0.953,0.121,0.115,0.333,1 +1,0.328,0.338,0.338,0,0,0.609,0.609,0.609,0,0,0,0,0,0,0,0,0,0,0.311,0.696,0.287,1,0.384,0.273,0.384,0.384,1,1,0.0952,0.0907,0.333,1 +1,0.316,0.352,0.352,0,0,0.609,0.609,0.609,0.0119,0.0414,0.0428,0.00596,0,0,0,0,0,0,0.321,0.709,0.315,1,0.384,0.286,0.384,0.384,0.953,0.953,0.0889,0.0847,0.333,1 +0.667,0.178,0.338,0.338,0,0,0.64,0.64,0.64,0.00904,0.00637,0.0469,0.0151,0.055,0.055,0,0,0.0199,0.0199,0.284,0.593,0.338,1,0.372,0.261,0.372,0.372,0.945,0.945,0.0889,0.0847,0.333,1 +0.667,0.177,0.394,0.394,0,0.0122,0.64,0.64,0.64,0,0,0.0214,0,0.312,0.312,0,0,0.00568,0.00568,0.303,0.593,0.399,1,0.372,0.236,0.372,0.372,0.709,0.709,0.0889,0.0847,0.333,1 +0.667,0.307,0.437,0.437,0,0.0244,0.64,0.64,0.64,0,0,0.0273,0,0,0,0,0,0,0,0.377,0.709,0.456,1,0.372,0.304,0.372,0.372,0.591,0.591,0.152,0.145,0,1 +0.667,0.322,0.451,0.451,0,0,0.625,0.625,0.625,0,0,0.0179,0,0,0,0,0,0.00852,0.00852,0.386,0.734,0.502,1,0.384,0.366,0.384,0.384,0.48,0.48,0.368,0.351,0,1 +0.667,0.367,0.549,0.549,0,0,0.67,0.67,0.67,0,0,0.0266,0,0,0,0,0,0,0,0.452,0.759,0.527,1,0.523,0.683,0.523,0.523,0.291,0.291,0.8,0.762,0,1 +0.667,0.466,0.746,0.746,0,0,0.731,0.731,0.731,0,0,0.037,0,0,0,0,0,0.00284,0.00284,0.584,0.809,0.545,1,0.663,1,0.663,0.663,0.181,0.181,0.775,0.738,0,1 +1,0.868,0.887,0.887,0,0,0.762,0.762,0.762,0,0,0.0409,0,0,0,0,0,0.00284,0.00284,0.887,1,0.642,1,0.767,0.714,0.767,0.767,0.102,0.102,0.432,0.411,0,1 +1,0.98,0.944,0.944,0,0,0.731,0.731,0.731,0.0113,0.0414,0.0321,0,0,0,0,0,0.0227,0.0227,0.944,0.943,0.845,1,0.884,0.435,0.884,0.884,0.063,0.063,0.387,0.369,0,1 +1,0.913,1,1,0,0,0.716,0.716,0.716,0.0096,0.00637,0.0268,0,0,0,0,0,0.0114,0.0114,1,0.887,0.993,1,0.942,0.273,0.942,0.942,0.0315,0.0315,0.324,0.308,0,1 +1,0.727,0.972,0.972,0,0,0.701,0.701,0.701,0,0,0.0236,0,0,0,0,0,0,0,0.972,0.849,0.916,1,1,0.118,1,1,0.0236,0.0236,0.273,0.26,0,1 +1,0.638,0.831,0.831,0,0,0.67,0.67,0.67,0,0,0,0,0,0,0,0,0,0,0.831,0.755,0.578,1,0.872,0.0807,0.872,0.872,0.0236,0.0236,0.152,0.145,0,1 +1,0.249,0.704,0.704,0,0,0.625,0.625,0.625,0,0,0,0,0,0,0,0,0,0,0.704,0.679,0.264,1,0.756,0.0435,0.756,0.756,0.0236,0.0236,0.152,0.145,0,1 +1,0.0495,0.563,0.563,0,0,0.609,0.609,0.609,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.113,1,0.512,0.0248,0.512,0.512,0.0236,0.0236,0.152,0.145,1,1 +1,0.0495,0.521,0.521,0,0,0.594,0.594,0.594,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.465,0.0563,1,0.267,0.00621,0.267,0.267,0.0236,0.0236,0.184,0.175,1,1 +1,0.0495,0.521,0.521,0,0,0.579,0.579,0.579,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.465,0.0307,1,0.221,0.00621,0.221,0.221,0.0236,0.0236,0.152,0.145,1,1 +1,0.0495,0.507,0.507,0,0,0.564,0.564,0.564,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0205,1,0.174,0.0124,0.174,0.174,0.0315,0.0315,0.184,0.175,1,1 +1,0.0495,0.465,0.465,0,0,0.549,0.549,0.549,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0282,1,0.186,0.0435,0.186,0.186,0.063,0.063,0.298,0.284,1,1 +1,0.0495,0.507,0.507,0,0,0.549,0.549,0.549,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0358,1,0.209,0.0745,0.209,0.209,0.118,0.118,0.425,0.405,1,1 +1,0.0495,0.606,0.606,0,0,0.579,0.579,0.579,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0614,1,0.302,0.18,0.302,0.302,0.205,0.205,0.362,0.345,1,1 +1,0.0495,0.662,0.662,0,0,0.609,0.609,0.609,0,0,0,0,0,0,0,0.00262,0,0.00262,0.258,0.465,0.11,1,0.384,0.286,0.384,0.384,0.346,0.346,0.152,0.145,1,1 +1,0.33,0.479,0.479,0,0,0.625,0.625,0.625,0,0,0,0,0,0,0,0.0235,0,0.0235,0.405,0.696,0.182,1,0.384,0.273,0.384,0.384,0.661,0.661,0.152,0.145,0.333,1 +1,0.337,0.324,0.324,0,0,0.625,0.625,0.625,0,0,0,0,0,0,0.0855,0,0,0.0855,0.302,0.696,0.241,1,0.372,0.255,0.372,0.372,0.953,0.953,0.121,0.115,0.333,1 +1,0.468,0.338,0.338,0,0,0.609,0.609,0.609,0,0,0.0119,0.000702,0,0,0,0,0,0,0.338,0.811,0.287,1,0.384,0.273,0.384,0.384,1,1,0.0952,0.0907,0,1 +1,0.449,0.352,0.352,0,0,0.609,0.609,0.609,0,0,0.0182,0.0203,0,0,0,0,0,0,0.352,0.83,0.315,1,0.384,0.286,0.384,0.384,0.953,0.953,0.0889,0.0847,0,1 +1,0.307,0.338,0.338,0,0,0.64,0.64,0.64,0,0,0.0214,0,0.33,0.33,0,0,0.00568,0.00568,0.311,0.721,0.338,1,0.372,0.261,0.372,0.372,0.945,0.945,0.0889,0.0847,0.333,1 +1,0.305,0.394,0.394,0,0,0.64,0.64,0.64,0,0,0,0,0.0367,0.0367,0,0,0.00284,0.00284,0.349,0.721,0.399,1,0.372,0.236,0.372,0.372,0.709,0.709,0.0889,0.0847,0.333,1 +1,0.307,0.437,0.437,0,0.0366,0.64,0.64,0.64,0,0,0,0,0,0,0,0,0,0,0.377,0.709,0.456,1,0.372,0.304,0.372,0.372,0.591,0.591,0.152,0.145,0.333,1 +1,0.322,0.451,0.451,0,0,0.625,0.625,0.625,0,0,0,0,0,0,0,0,0.00284,0.00284,0.386,0.734,0.502,1,0.384,0.366,0.384,0.384,0.48,0.48,0.368,0.351,0.333,1 +1,0.367,0.549,0.549,0,0,0.67,0.67,0.67,0,0,0,0,0,0,0,0,0.00284,0.00284,0.452,0.759,0.527,1,0.523,0.683,0.523,0.523,0.291,0.291,0.8,0.762,0.333,1 +1,0.674,0.746,0.746,0,0,0.731,0.731,0.731,0,0,0,0,0,0,0,0.00249,0.00568,0.00817,0.746,0.981,0.545,1,0.663,1,0.663,0.663,0.181,0.181,0.775,0.738,0,1 +1,0.868,0.887,0.887,0,0,0.762,0.762,0.762,0,0,0,0,0,0,0,0.0429,0.0114,0.0543,0.887,1,0.642,1,0.767,0.714,0.767,0.767,0.102,0.102,0.432,0.411,0,1 +1,0.98,0.944,0.944,0,0,0.731,0.731,0.731,0.0231,0.0478,0,0,0,0,0,0.0177,0.0255,0.0433,0.944,0.943,0.845,1,0.884,0.435,0.884,0.884,0.063,0.063,0.387,0.369,0,1 +1,0.913,1,1,0,0,0.716,0.716,0.716,0.0215,0,0,0,0,0,0,0.0298,0.00284,0.0327,1,0.887,0.993,1,0.942,0.273,0.942,0.942,0.0315,0.0315,0.324,0.308,0,1 +1,0.727,0.972,0.972,0,0,0.701,0.701,0.701,0.0052,0,0,0,0,0,0,0,0.0114,0.0114,0.972,0.849,0.916,1,1,0.118,1,1,0.0236,0.0236,0.273,0.26,0,1 +1,0.638,0.831,0.831,0,0,0.67,0.67,0.67,0,0,0,0,0,0,0,0,0,0,0.831,0.755,0.578,1,0.872,0.0807,0.872,0.872,0.0236,0.0236,0.152,0.145,0,1 +1,0.183,0.704,0.704,0,0,0.625,0.625,0.625,0,0,0,0,0,0,0,0,0,0,0.555,0.608,0.264,1,0.756,0.0435,0.756,0.756,0.0236,0.0236,0.152,0.145,0.333,1 +1,0.0743,0.563,0.563,0,0,0.609,0.609,0.609,0,0,0,0,0,0,0,0,0,0,0.36,0.53,0.0947,1,0.512,0.0248,0.512,0.512,0.0236,0.0236,0.152,0.145,0.667,1 +1,0.0495,0.521,0.521,0,0,0.594,0.594,0.594,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0461,1,0.267,0.00621,0.267,0.267,0.0236,0.0236,0.184,0.175,1,1 +1,0.0495,0.521,0.521,0,0,0.579,0.579,0.579,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.023,1,0.221,0.00621,0.221,0.221,0.0236,0.0236,0.152,0.145,1,1 +1,0.0495,0.507,0.507,0,0,0.564,0.564,0.564,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0179,1,0.174,0.0124,0.174,0.174,0.0315,0.0315,0.184,0.175,1,1 +1,0.0495,0.465,0.465,0,0,0.549,0.549,0.549,0,0,0,0,0,0,0,0.00249,0,0.00249,0.258,0.465,0.0282,1,0.186,0.0435,0.186,0.186,0.063,0.063,0.298,0.284,1,1 +1,0.0829,0.507,0.507,0,0,0.549,0.549,0.549,0,0,0,0,0,0,0,0.0256,0,0.0256,0.341,0.518,0.0461,1,0.209,0.0745,0.209,0.209,0.118,0.118,0.425,0.405,0.667,1 +1,0.251,0.606,0.606,0,0,0.579,0.579,0.579,0,0,0,0,0,0,0,0.0793,0,0.0793,0.49,0.621,0.0742,1,0.302,0.18,0.302,0.302,0.205,0.205,0.362,0.345,0.333,1 +0.667,0.181,0.662,0.662,0,0,0.609,0.609,0.609,0,0,0,0,0,0,0,0.0373,0,0.0373,0.392,0.574,0.102,1,0.384,0.286,0.384,0.384,0.346,0.346,0.152,0.145,0.333,1 +0.667,0.19,0.479,0.479,0,0,0.625,0.625,0.625,0,0,0,0,0,0,0,0,0,0,0.331,0.581,0.125,1,0.384,0.273,0.384,0.384,0.661,0.661,0.152,0.145,0.333,1 +0.333,0.193,0.324,0.324,0,0,0.625,0.625,0.625,0,0,0,0,0,0,0,0,0.00852,0.00852,0.28,0.581,0.148,1,0.372,0.255,0.372,0.372,0.953,0.953,0.121,0.115,0,1 +0.333,0.189,0.338,0.338,0,0,0.609,0.609,0.609,0,0,0,0,0,0,0,0,0.0284,0.0284,0.284,0.581,0.166,1,0.384,0.273,0.384,0.384,1,1,0.0952,0.0907,0,1 +0.333,0.183,0.352,0.352,0,0,0.609,0.609,0.609,0,0,0,0,0,0,0,0,0.0199,0.0199,0.289,0.587,0.184,1,0.384,0.286,0.384,0.384,0.953,0.953,0.0889,0.0847,0,1 +0.333,0.178,0.338,0.338,0,0,0.64,0.64,0.64,0,0,0,0,0,0,0,0,0,0,0.284,0.593,0.194,1,0.372,0.261,0.372,0.372,0.945,0.945,0.0889,0.0847,0,1 +0.333,0.177,0.394,0.394,0,0,0.64,0.64,0.64,0,0,0,0,0,0,0,0,0.00284,0.00284,0.303,0.593,0.22,1,0.372,0.236,0.372,0.372,0.709,0.709,0.0889,0.0847,0,1 +0.333,0.178,0.437,0.437,0,0,0.64,0.64,0.64,0,0,0,0,0,0,0,0,0.00568,0.00568,0.317,0.587,0.233,1,0.372,0.304,0.372,0.372,0.591,0.591,0.152,0.145,0,1 +0.333,0.0495,0.451,0.451,0,0,0.625,0.625,0.625,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.465,0.261,1,0.384,0.366,0.384,0.384,0.48,0.48,0.368,0.351,0.333,1 +0.333,0.0495,0.549,0.549,0,0,0.67,0.67,0.67,0,0,0,0,0,0,0,0,0.00568,0.00568,0.258,0.465,0.325,1,0.523,0.683,0.523,0.523,0.291,0.291,0.8,0.762,0.333,1 +0.667,0.466,0.746,0.746,0,0,0.731,0.731,0.731,0,0,0,0,0,0,0,0,0,0,0.584,0.809,0.399,1,0.663,1,0.663,0.663,0.181,0.181,0.775,0.738,0,1 +0.667,0.595,0.887,0.887,0,0,0.762,0.762,0.762,0,0,0,0,0,0,0.0345,0.00252,0,0.0371,0.677,0.822,0.537,1,0.767,0.714,0.767,0.767,0.102,0.102,0.432,0.411,0,1 +1,0.98,0.944,0.944,0,0,0.731,0.731,0.731,0,0,0,0,0,0,0.0799,0.0202,0,0.1,0.944,0.943,0.752,1,0.884,0.435,0.884,0.884,0.063,0.063,0.387,0.369,0,1 +1,0.913,1,1,0,0,0.716,0.716,0.716,0,0,0,0,0,0,0.0535,0.0123,0,0.0658,1,0.887,0.929,1,0.942,0.273,0.942,0.942,0.0315,0.0315,0.324,0.308,0,1 +1,0.501,0.972,0.972,0,0,0.701,0.701,0.701,0,0,0,0,0,0,0,0.0177,0.00852,0.0262,0.734,0.721,0.88,1,1,0.118,1,1,0.0236,0.0236,0.273,0.26,0.333,1 +1,0.246,0.831,0.831,0,0,0.67,0.67,0.67,0,0,0,0,0,0,0,0,0.00568,0.00568,0.449,0.562,0.532,1,0.872,0.0807,0.872,0.872,0.0236,0.0236,0.152,0.145,0.667,1 +1,0.116,0.704,0.704,0,0,0.625,0.625,0.625,0,0,0,0,0,0,0,0,0,0,0.407,0.537,0.23,1,0.756,0.0435,0.756,0.756,0.0236,0.0236,0.152,0.145,0.667,1 +1,0.0743,0.563,0.563,0,0,0.609,0.609,0.609,0,0,0,0,0,0,0,0,0,0,0.36,0.53,0.0947,1,0.512,0.0248,0.512,0.512,0.0236,0.0236,0.152,0.145,0.667,1 +1,0.0495,0.521,0.521,0,0,0.594,0.594,0.594,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0461,1,0.267,0.00621,0.267,0.267,0.0236,0.0236,0.184,0.175,1,1 +1,0.0495,0.521,0.521,0,0,0.579,0.579,0.579,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.023,1,0.221,0.00621,0.221,0.221,0.0236,0.0236,0.152,0.145,1,1 +1,0.0495,0.507,0.507,0,0,0.564,0.564,0.564,0,0,0,0,0,0,0,0.00242,0.00852,0.0109,0.258,0.465,0.0179,1,0.174,0.0124,0.174,0.174,0.0315,0.0315,0.184,0.175,1,1 +1,0.0513,0.465,0.465,0,0,0.549,0.549,0.549,0,0,0,0,0,0,0,0.0288,0,0.0288,0.327,0.511,0.0282,1,0.186,0.0435,0.186,0.186,0.063,0.063,0.298,0.284,0.667,1 +1,0.116,0.507,0.507,0,0,0.549,0.549,0.549,0,0,0,0,0,0,0,0.0178,0,0.0178,0.424,0.57,0.0461,1,0.209,0.0745,0.209,0.209,0.118,0.118,0.425,0.405,0.333,1 +0.667,0.251,0.606,0.606,0,0,0.579,0.579,0.579,0,0,0,0,0,0,0,0.0313,0,0.0313,0.49,0.621,0.0742,1,0.302,0.18,0.302,0.302,0.205,0.205,0.362,0.345,0,1 +0.667,0.313,0.662,0.662,0,0.0366,0.609,0.609,0.609,0,0,0,0,0,0,0,0.0316,0,0.0316,0.527,0.683,0.102,1,0.384,0.286,0.384,0.384,0.346,0.346,0.152,0.145,0,1 +0.333,0.19,0.479,0.479,0,0,0.625,0.625,0.625,0,0,0,0,0,0,0,0.0126,0,0.0126,0.331,0.581,0.125,1,0.384,0.273,0.384,0.384,0.661,0.661,0.152,0.145,0,1 +0.333,0.193,0.324,0.324,0,0,0.625,0.625,0.625,0,0,0.012,0.000702,0,0,0,0.0129,0,0.0129,0.28,0.581,0.148,1,0.372,0.255,0.372,0.372,0.953,0.953,0.121,0.115,0,1 +0.333,0.189,0.338,0.338,0,0,0.609,0.609,0.609,0,0,0.0206,0.0151,0.055,0.055,0,0.032,0.00852,0.0405,0.284,0.581,0.166,1,0.384,0.273,0.384,0.384,1,1,0.0952,0.0907,0,1 +0.333,0.183,0.352,0.352,0,0,0.609,0.609,0.609,0,0,0.0329,0,0.0367,0.0367,0,0,0.00852,0.00852,0.289,0.587,0.184,1,0.384,0.286,0.384,0.384,0.953,0.953,0.0889,0.0847,0,1 +0.333,0.178,0.338,0.338,0,0,0.64,0.64,0.64,0,0,0.0472,0,0,0,0,0,0.00568,0.00568,0.284,0.593,0.194,1,0.372,0.261,0.372,0.372,0.945,0.945,0.0889,0.0847,0,1 +0.333,0.177,0.394,0.394,0,0,0.64,0.64,0.64,0,0,0.00536,0,0,0,0,0,0.00284,0.00284,0.303,0.593,0.22,1,0.372,0.236,0.372,0.372,0.709,0.709,0.0889,0.0847,0,1 +0.333,0.178,0.437,0.437,0,0,0.64,0.64,0.64,0,0,0,0,0,0,0,0,0.00284,0.00284,0.317,0.587,0.233,1,0.372,0.304,0.372,0.372,0.591,0.591,0.152,0.145,0,1 +0.333,0.186,0.451,0.451,0,0,0.625,0.625,0.625,0,0,0,0,0,0,0,0.00506,0.00284,0.0079,0.322,0.6,0.261,1,0.384,0.366,0.384,0.384,0.48,0.48,0.368,0.351,0,1 +1,0.526,0.549,0.549,0,0.0366,0.67,0.67,0.67,0,0,0,0,0,0,0,0.0329,0.00284,0.0358,0.549,0.906,0.325,1,0.523,0.683,0.523,0.523,0.291,0.291,0.8,0.762,0,1 +1,0.674,0.746,0.746,0,0,0.731,0.731,0.731,0,0,0,0,0,0,0,0,0.00852,0.00852,0.746,0.981,0.399,1,0.663,1,0.663,0.663,0.181,0.181,0.775,0.738,0,1 +1,0.868,0.887,0.887,0,0,0.762,0.762,0.762,0,0,0,0,0,0,0,0,0.0142,0.0142,0.887,1,0.537,1,0.767,0.714,0.767,0.767,0.102,0.102,0.432,0.411,0,1 +1,0.98,0.944,0.944,0,0,0.731,0.731,0.731,0,0,0,0,0,0,0,0.0349,0.0142,0.049,0.944,0.943,0.752,1,0.884,0.435,0.884,0.884,0.063,0.063,0.387,0.369,0,1 +1,0.913,1,1,0,0,0.716,0.716,0.716,0,0,0,0,0,0,0,0,0.00568,0.00568,1,0.887,0.929,1,0.942,0.273,0.942,0.942,0.0315,0.0315,0.324,0.308,0,1 +1,0.727,0.972,0.972,0,0,0.701,0.701,0.701,0,0,0,0,0,0,0,0,0.017,0.017,0.972,0.849,0.88,1,1,0.118,1,1,0.0236,0.0236,0.273,0.26,0,1 +1,0.442,0.831,0.831,0,0,0.67,0.67,0.67,0,0,0,0,0,0,0,0,0,0,0.64,0.658,0.532,1,0.872,0.0807,0.872,0.872,0.0236,0.0236,0.152,0.145,0.333,1 +1,0.116,0.704,0.704,0,0,0.625,0.625,0.625,0,0,0,0,0,0,0,0,0,0,0.407,0.537,0.23,1,0.756,0.0435,0.756,0.756,0.0236,0.0236,0.152,0.145,0.667,1 +1,0.0743,0.563,0.563,0,0,0.609,0.609,0.609,0,0,0,0,0,0,0,0,0,0,0.36,0.53,0.0947,1,0.512,0.0248,0.512,0.512,0.0236,0.0236,0.152,0.145,0.667,1 +1,0.0495,0.521,0.521,0,0,0.594,0.594,0.594,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0461,1,0.267,0.00621,0.267,0.267,0.0236,0.0236,0.184,0.175,1,1 +1,0.0495,0.521,0.521,0,0,0.579,0.579,0.579,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.023,1,0.221,0.00621,0.221,0.221,0.0236,0.0236,0.152,0.145,1,1 +1,0.0495,0.507,0.507,0,0,0.564,0.564,0.564,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0179,1,0.174,0.0124,0.174,0.174,0.0315,0.0315,0.184,0.175,1,1 +1,0.0495,0.465,0.465,0,0,0.549,0.549,0.549,0,0,0,0,0,0,0,0,0.00852,0.00852,0.258,0.465,0.0282,1,0.186,0.0435,0.186,0.186,0.063,0.063,0.298,0.284,1,1 +1,0.0495,0.507,0.507,0,0,0.549,0.549,0.549,0,0,0.0079,0,0,0,0,0.0026,0,0.0026,0.258,0.465,0.0461,1,0.209,0.0745,0.209,0.209,0.118,0.118,0.425,0.405,1,1 +1,0.351,0.606,0.606,0,0.0853,0.579,0.579,0.579,0,0,0,0.0112,0,0,0,0.0496,0,0.0496,0.606,0.698,0.0742,1,0.302,0.18,0.302,0.302,0.205,0.205,0.362,0.345,0,1 +0.667,0.313,0.662,0.662,0,0.134,0.609,0.609,0.609,0,0,0.0364,0.00982,0.147,0.147,0,0,0,0,0.527,0.683,0.102,1,0.384,0.286,0.384,0.384,0.346,0.346,0.152,0.145,0,1 +0.333,0.19,0.479,0.479,0,0,0.625,0.625,0.625,0,0,0.0323,0,0.22,0.22,0,0,0,0,0.331,0.581,0.125,1,0.384,0.273,0.384,0.384,0.661,0.661,0.152,0.145,0,1 +0.333,0.193,0.324,0.324,0,0,0.625,0.625,0.625,0,0,0.0357,0,0,0,0,0,0,0,0.28,0.581,0.148,1,0.372,0.255,0.372,0.372,0.953,0.953,0.121,0.115,0,1 +0.333,0.189,0.338,0.338,0,0,0.609,0.609,0.609,0,0,0.0457,0,0,0,0,0,0.00284,0.00284,0.284,0.581,0.166,1,0.384,0.273,0.384,0.384,1,1,0.0952,0.0907,0,1 +0.333,0.183,0.352,0.352,0,0,0.609,0.609,0.609,0,0,0.0288,0,0,0,0,0,0.00284,0.00284,0.289,0.587,0.184,1,0.384,0.286,0.384,0.384,0.953,0.953,0.0889,0.0847,0,1 +0.333,0.178,0.338,0.338,0,0,0.64,0.64,0.64,0,0,0.0414,0,0,0,0,0,0.00852,0.00852,0.284,0.593,0.194,1,0.372,0.261,0.372,0.372,0.945,0.945,0.0889,0.0847,0,1 +0.333,0.177,0.394,0.394,0,0,0.64,0.64,0.64,0,0,0.0536,0,0,0,0,0,0.00852,0.00852,0.303,0.593,0.22,1,0.372,0.236,0.372,0.372,0.709,0.709,0.0889,0.0847,0,1 +0.333,0.178,0.437,0.437,0,0,0.64,0.64,0.64,0,0,0.0433,0,0,0,0,0,0,0,0.317,0.587,0.233,1,0.372,0.304,0.372,0.372,0.591,0.591,0.152,0.145,0,1 +0.333,0.186,0.451,0.451,0,0,0.625,0.625,0.625,0,0,0.0455,0,0,0,0,0,0,0,0.322,0.6,0.261,1,0.384,0.366,0.384,0.384,0.48,0.48,0.368,0.351,0,1 +0.667,0.367,0.549,0.549,0,0,0.67,0.67,0.67,0,0,0.0174,0,0,0,0,0,0.00284,0.00284,0.452,0.759,0.325,1,0.523,0.683,0.523,0.523,0.291,0.291,0.8,0.762,0,1 +0.667,0.466,0.746,0.746,0,0.0366,0.731,0.731,0.731,0,0,0,0,0,0,0,0,0.00852,0.00852,0.584,0.809,0.399,1,0.663,1,0.663,0.663,0.181,0.181,0.775,0.738,0,1 +0.667,0.595,0.887,0.887,0,0,0.762,0.762,0.762,0,0,0,0,0,0,0,0,0.0142,0.0142,0.677,0.822,0.537,1,0.767,0.714,0.767,0.767,0.102,0.102,0.432,0.411,0,1 +1,0.98,0.944,0.944,0,0,0.731,0.731,0.731,0,0,0,0,0,0,0,0,0.00852,0.00852,0.944,0.943,0.752,1,0.884,0.435,0.884,0.884,0.063,0.063,0.387,0.369,0,1 +1,0.913,1,1,0,0,0.716,0.716,0.716,0,0,0,0,0,0,0,0,0.00852,0.00852,1,0.887,0.929,1,0.942,0.273,0.942,0.942,0.0315,0.0315,0.324,0.308,0,1 +1,0.727,0.972,0.972,0,0,0.701,0.701,0.701,0,0,0,0,0,0,0,0,0,0,0.972,0.849,0.88,1,1,0.118,1,1,0.0236,0.0236,0.273,0.26,0,1 +1,0.442,0.831,0.831,0,0,0.67,0.67,0.67,0,0,0,0,0,0,0,0.0194,0.00568,0.025,0.64,0.658,0.532,1,0.872,0.0807,0.872,0.872,0.0236,0.0236,0.152,0.145,0.333,1 +1,0.116,0.704,0.704,0,0,0.625,0.625,0.625,0,0,0,0,0,0,0,0.0288,0.00284,0.0316,0.407,0.537,0.23,1,0.756,0.0435,0.756,0.756,0.0236,0.0236,0.152,0.145,0.667,1 +1,0.0495,0.563,0.563,0,0,0.609,0.609,0.609,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0947,1,0.512,0.0248,0.512,0.512,0.0236,0.0236,0.152,0.145,1,1 +1,0.0495,0.521,0.521,0,0,0.594,0.594,0.594,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0461,1,0.267,0.00621,0.267,0.267,0.0236,0.0236,0.184,0.175,1,1 +1,0.0495,0.521,0.521,0,0,0.579,0.579,0.579,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.023,1,0.221,0.00621,0.221,0.221,0.0236,0.0236,0.152,0.145,1,1 +1,0.0495,0.507,0.507,0,0,0.564,0.564,0.564,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0179,1,0.174,0.0124,0.174,0.174,0.0315,0.0315,0.184,0.175,1,1 +1,0.0513,0.465,0.465,0,0,0.549,0.549,0.549,0,0,0,0,0,0,0,0,0,0,0.327,0.511,0.0282,1,0.186,0.0435,0.186,0.186,0.063,0.063,0.298,0.284,0.667,1 +1,0.0829,0.507,0.507,0,0,0.549,0.549,0.549,0,0,0,0,0,0,0,0.0129,0,0.0129,0.341,0.518,0.0461,1,0.209,0.0745,0.209,0.209,0.118,0.118,0.425,0.405,0.667,1 +0.667,0.251,0.606,0.606,0,0.0366,0.579,0.579,0.579,0,0,0,0,0,0,0,0,0,0,0.49,0.621,0.0742,1,0.302,0.18,0.302,0.302,0.205,0.205,0.362,0.345,0,1 +0.667,0.313,0.662,0.662,0,0,0.609,0.609,0.609,0,0,0,0,0,0,0,0,0,0,0.527,0.683,0.102,1,0.384,0.286,0.384,0.384,0.346,0.346,0.152,0.145,0,1 +0,0.0495,0.479,0.479,0,0,0.625,0.625,0.625,0,0,0,0,0,0,0,0,0.0114,0.0114,0.258,0.465,0.125,1,0.384,0.273,0.384,0.384,0.661,0.661,0.152,0.145,0,1 +0.333,0.0495,0.324,0.324,0,0,0.625,0.625,0.625,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.465,0.148,1,0.372,0.255,0.372,0.372,0.953,0.953,0.121,0.115,0.333,1 +0.333,0.0495,0.338,0.338,0,0,0.609,0.609,0.609,0,0,0,0,0,0,0,0,0.00568,0.00568,0.258,0.465,0.166,1,0.384,0.273,0.384,0.384,1,1,0.0952,0.0907,0.333,1 +0.333,0.0495,0.352,0.352,0,0,0.609,0.609,0.609,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.465,0.184,1,0.384,0.286,0.384,0.384,0.953,0.953,0.0889,0.0847,0.333,1 +0.333,0.0495,0.338,0.338,0,0,0.64,0.64,0.64,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.194,1,0.372,0.261,0.372,0.372,0.945,0.945,0.0889,0.0847,0.333,1 +0.667,0.177,0.394,0.394,0,0,0.64,0.64,0.64,0,0,0,0,0,0,0,0,0,0,0.303,0.593,0.22,1,0.372,0.236,0.372,0.372,0.709,0.709,0.0889,0.0847,0.333,1 +0.667,0.178,0.437,0.437,0,0,0.64,0.64,0.64,0,0,0,0,0,0,0,0,0,0,0.317,0.587,0.233,1,0.372,0.304,0.372,0.372,0.591,0.591,0.152,0.145,0.333,1 +0.667,0.186,0.451,0.451,0,0,0.625,0.625,0.625,0,0,0,0,0,0,0,0,0,0,0.322,0.6,0.261,1,0.384,0.366,0.384,0.384,0.48,0.48,0.368,0.351,0.333,1 +0.667,0.208,0.549,0.549,0,0,0.67,0.67,0.67,0,0,0,0,0,0,0,0.00275,0,0.00275,0.355,0.612,0.325,1,0.523,0.683,0.523,0.523,0.291,0.291,0.8,0.762,0.333,1 +1,0.674,0.746,0.746,0,0.0731,0.731,0.731,0.731,0,0,0,0,0,0,0.0985,0.032,0,0.131,0.746,0.981,0.399,1,0.663,1,0.663,0.663,0.181,0.181,0.775,0.738,0,1 +1,0.868,0.887,0.887,0,0,0.762,0.762,0.762,0,0,0,0,0,0,0,0,0.0142,0.0142,0.887,1,0.537,1,0.767,0.714,0.767,0.767,0.102,0.102,0.432,0.411,0,1 +1,0.98,0.944,0.944,0,0,0.731,0.731,0.731,0,0,0,0,0,0,0,0,0.0114,0.0114,0.944,0.943,0.752,1,0.884,0.435,0.884,0.884,0.063,0.063,0.387,0.369,0,1 +1,0.913,1,1,0,0,0.716,0.716,0.716,0,0,0,0,0,0,0,0,0.0227,0.0227,1,0.887,0.929,1,0.942,0.273,0.942,0.942,0.0315,0.0315,0.324,0.308,0,1 +1,0.727,0.972,0.972,0,0,0.701,0.701,0.701,0,0,0,0,0,0,0,0.0199,0.00284,0.0227,0.972,0.849,0.88,1,1,0.118,1,1,0.0236,0.0236,0.273,0.26,0,1 +1,0.638,0.831,0.831,0,0.0366,0.67,0.67,0.67,0,0,0,0,0,0,0,0.0253,0,0.0253,0.831,0.755,0.532,1,0.872,0.0807,0.872,0.872,0.0236,0.0236,0.152,0.145,0,1 +1,0.116,0.704,0.704,0,0,0.625,0.625,0.625,0,0,0,0,0,0,0,0,0.00852,0.00852,0.407,0.537,0.23,1,0.756,0.0435,0.756,0.756,0.0236,0.0236,0.152,0.145,0.667,1 +1,0.0495,0.563,0.563,0,0,0.609,0.609,0.609,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0947,1,0.512,0.0248,0.512,0.512,0.0236,0.0236,0.152,0.145,1,1 +1,0.0495,0.521,0.521,0,0,0.594,0.594,0.594,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0461,1,0.267,0.00621,0.267,0.267,0.0236,0.0236,0.184,0.175,1,1 +1,0.0495,0.521,0.521,0,0,0.579,0.579,0.579,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.023,1,0.221,0.00621,0.221,0.221,0.0236,0.0236,0.152,0.145,1,1 +1,0.0495,0.507,0.507,0,0,0.564,0.564,0.564,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0179,1,0.174,0.0124,0.174,0.174,0.0315,0.0315,0.184,0.175,1,1 +1,0.0513,0.465,0.465,0,0,0.549,0.549,0.549,0,0,0,0,0,0,0,0.0123,0,0.0123,0.327,0.511,0.0282,1,0.186,0.0435,0.186,0.186,0.063,0.063,0.298,0.284,0.667,1 +0.667,0.0495,0.507,0.507,0,0,0.549,0.549,0.549,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0461,1,0.209,0.0745,0.209,0.209,0.118,0.118,0.425,0.405,0.667,1 +0.667,0.0495,0.606,0.606,0,0,0.579,0.579,0.579,0,0,0,0,0,0,0,0.00258,0,0.00258,0.258,0.465,0.0742,1,0.302,0.18,0.302,0.302,0.205,0.205,0.362,0.345,0.667,1 +0.667,0.181,0.662,0.662,0,0,0.609,0.609,0.609,0,0,0,0,0,0,0,0.0233,0.00568,0.0289,0.392,0.574,0.102,1,0.384,0.286,0.384,0.384,0.346,0.346,0.152,0.145,0.333,1 +0.333,0.19,0.479,0.479,0,0,0.625,0.625,0.625,0,0,0,0,0,0,0,0,0.0199,0.0199,0.331,0.581,0.125,1,0.384,0.273,0.384,0.384,0.661,0.661,0.152,0.145,0,1 +0.333,0.193,0.324,0.324,0,0,0.625,0.625,0.625,0,0,0,0,0,0,0,0,0,0,0.28,0.581,0.148,1,0.372,0.255,0.372,0.372,0.953,0.953,0.121,0.115,0,1 +0.333,0.189,0.338,0.338,0,0,0.609,0.609,0.609,0,0,0,0,0,0,0,0,0,0,0.284,0.581,0.166,1,0.384,0.273,0.384,0.384,1,1,0.0952,0.0907,0,1 +0.333,0.183,0.352,0.352,0,0,0.609,0.609,0.609,0,0,0,0,0,0,0,0,0.017,0.017,0.289,0.587,0.184,1,0.384,0.286,0.384,0.384,0.953,0.953,0.0889,0.0847,0,1 +0.333,0.178,0.338,0.338,0,0,0.64,0.64,0.64,0,0,0,0,0,0,0,0,0.00284,0.00284,0.284,0.593,0.194,1,0.372,0.261,0.372,0.372,0.945,0.945,0.0889,0.0847,0,1 +0.333,0.177,0.394,0.394,0,0,0.64,0.64,0.64,0,0,0,0,0,0,0,0,0,0,0.303,0.593,0.22,1,0.372,0.236,0.372,0.372,0.709,0.709,0.0889,0.0847,0,1 +0.333,0.178,0.437,0.437,0,0,0.64,0.64,0.64,0,0,0,0,0,0,0,0,0.00568,0.00568,0.317,0.587,0.233,1,0.372,0.304,0.372,0.372,0.591,0.591,0.152,0.145,0,1 +0,0.0495,0.451,0.451,0,0,0.625,0.625,0.625,0,0,0,0,0,0,0,0,0.0114,0.0114,0.258,0.465,0.261,1,0.384,0.366,0.384,0.384,0.48,0.48,0.368,0.351,0,1 +0.333,0.0495,0.549,0.549,0,0,0.67,0.67,0.67,0,0,0,0,0,0,0,0,0.00568,0.00568,0.258,0.465,0.325,1,0.523,0.683,0.523,0.523,0.291,0.291,0.8,0.762,0.333,1 +0.333,0.0495,0.746,0.746,0,0,0.731,0.731,0.731,0,0,0,0,0,0,0,0,0.00852,0.00852,0.258,0.465,0.399,1,0.663,1,0.663,0.663,0.181,0.181,0.775,0.738,0.333,1 +0.667,0.322,0.887,0.887,0,0,0.762,0.762,0.762,0,0,0,0,0,0,0,0,0,0,0.468,0.644,0.537,1,0.767,0.714,0.767,0.767,0.102,0.102,0.432,0.411,0.333,1 +0.667,0.36,0.944,0.944,0,0,0.731,0.731,0.731,0,0,0,0,0,0,0,0,0,0,0.486,0.625,0.752,1,0.884,0.435,0.884,0.884,0.063,0.063,0.387,0.369,0.333,1 +0.667,0.337,1,1,0,0.0366,0.716,0.716,0.716,0,0,0,0,0,0,0,0,0,0,0.505,0.606,0.929,1,0.942,0.273,0.942,0.942,0.0315,0.0315,0.324,0.308,0.333,1 +0.667,0.275,0.972,0.972,0,0,0.701,0.701,0.701,0,0,0,0,0,0,0,0,0.00568,0.00568,0.496,0.593,0.88,1,1,0.118,1,1,0.0236,0.0236,0.273,0.26,0.333,1 +0.667,0.246,0.831,0.831,0,0,0.67,0.67,0.67,0,0,0,0,0,0,0,0,0.00852,0.00852,0.449,0.562,0.532,1,0.872,0.0807,0.872,0.872,0.0236,0.0236,0.152,0.145,0.333,1 +1,0.116,0.704,0.704,0,0,0.625,0.625,0.625,0,0,0,0,0,0,0,0,0.00284,0.00284,0.407,0.537,0.23,1,0.756,0.0435,0.756,0.756,0.0236,0.0236,0.152,0.145,0.667,1 +1,0.0495,0.563,0.563,0,0,0.609,0.609,0.609,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.113,1,0.512,0.0248,0.512,0.512,0.0236,0.0236,0.152,0.145,1,1 +1,0.0495,0.521,0.521,0,0,0.594,0.594,0.594,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0563,1,0.267,0.00621,0.267,0.267,0.0236,0.0236,0.184,0.175,1,1 +1,0.0495,0.521,0.521,0,0,0.579,0.579,0.579,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0307,1,0.221,0.00621,0.221,0.221,0.0236,0.0236,0.152,0.145,1,1 +1,0.0495,0.507,0.507,0,0,0.564,0.564,0.564,0,0,0,0,0,0,0,0,0,0,0.341,0.505,0.0205,1,0.174,0.0124,0.174,0.174,0.0315,0.0315,0.184,0.175,0.667,1 +1,0.0513,0.465,0.465,0,0,0.549,0.549,0.549,0,0,0,0,0,0,0,0,0,0,0.327,0.511,0.0282,1,0.186,0.0435,0.186,0.186,0.063,0.063,0.298,0.284,0.667,1 +1,0.0829,0.507,0.507,0,0,0.549,0.549,0.549,0,0,0,0,0,0,0,0,0,0,0.341,0.518,0.0358,1,0.209,0.0745,0.209,0.209,0.118,0.118,0.425,0.405,0.667,1 +1,0.251,0.606,0.606,0,0.0366,0.579,0.579,0.579,0,0,0,0,0,0,0,0,0,0,0.49,0.621,0.0614,1,0.302,0.18,0.302,0.302,0.205,0.205,0.362,0.345,0.333,1 +0.333,0.0495,0.662,0.662,0,0,0.609,0.609,0.609,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.11,1,0.384,0.286,0.384,0.384,0.346,0.346,0.152,0.145,0.333,1 +0.333,0.0495,0.479,0.479,0,0,0.625,0.625,0.625,0,0,0,0,0,0,0,0,0.00852,0.00852,0.258,0.465,0.182,1,0.384,0.273,0.384,0.384,0.661,0.661,0.152,0.145,0.333,1 +0.667,0.337,0.324,0.324,0,0,0.625,0.625,0.625,0,0,0,0,0,0,0,0.00274,0.00568,0.00842,0.302,0.696,0.241,1,0.372,0.255,0.372,0.372,0.953,0.953,0.121,0.115,0,1 +0.667,0.328,0.338,0.338,0,0,0.609,0.609,0.609,0,0,0,0,0,0,0,0.0425,0,0.0425,0.311,0.696,0.287,1,0.384,0.273,0.384,0.384,1,1,0.0952,0.0907,0,1 +0.667,0.316,0.352,0.352,0,0,0.609,0.609,0.609,0,0,0,0,0,0,0,0.0535,0,0.0535,0.321,0.709,0.315,1,0.384,0.286,0.384,0.384,0.953,0.953,0.0889,0.0847,0,1 +0.667,0.307,0.338,0.338,0,0,0.64,0.64,0.64,0,0,0,0,0,0,0,0.0308,0,0.0308,0.311,0.721,0.338,1,0.372,0.261,0.372,0.372,0.945,0.945,0.0889,0.0847,0,1 +0.667,0.305,0.394,0.394,0,0,0.64,0.64,0.64,0,0,0,0,0,0,0,0.0663,0,0.0663,0.349,0.721,0.399,1,0.372,0.236,0.372,0.372,0.709,0.709,0.0889,0.0847,0,1 +0.667,0.307,0.437,0.437,0,0,0.64,0.64,0.64,0,0,0,0,0,0,0,0.023,0.0199,0.0429,0.377,0.709,0.456,1,0.372,0.304,0.372,0.372,0.591,0.591,0.152,0.145,0,1 +1,0.458,0.451,0.451,0,0,0.625,0.625,0.625,0,0,0,0,0,0,0,0.0252,0.00284,0.0281,0.451,0.868,0.502,1,0.384,0.366,0.384,0.384,0.48,0.48,0.368,0.351,0,1 +0.667,0.367,0.549,0.549,0,0,0.67,0.67,0.67,0,0,0.00507,0,0,0,0,0,0,0,0.452,0.759,0.527,1,0.523,0.683,0.523,0.523,0.291,0.291,0.8,0.762,0,1 +0.667,0.466,0.746,0.746,0,0.0366,0.731,0.731,0.731,0,0,0.0403,0.0112,0,0,0,0,0.00568,0.00568,0.584,0.809,0.545,1,0.663,1,0.663,0.663,0.181,0.181,0.775,0.738,0,1 +1,0.868,0.887,0.887,0,0,0.762,0.762,0.762,0,0,0.00955,0.00982,0.147,0.147,0,0,0,0,0.887,1,0.642,1,0.767,0.714,0.767,0.767,0.102,0.102,0.432,0.411,0,1 +1,0.98,0.944,0.944,0,0,0.731,0.731,0.731,0,0,0.0378,0,0.312,0.312,0,0,0.0199,0.0199,0.944,0.943,0.845,1,0.884,0.435,0.884,0.884,0.063,0.063,0.387,0.369,0,1 +1,0.913,1,1,0,0,0.716,0.716,0.716,0,0,0.0236,0,0,0,0,0,0.0199,0.0199,1,0.887,0.993,1,0.942,0.273,0.942,0.942,0.0315,0.0315,0.324,0.308,0,1 +0.667,0.501,0.972,0.972,0,0,0.701,0.701,0.701,0,0,0.00283,0,0,0,0,0.00247,0,0.00247,0.734,0.721,0.916,1,1,0.118,1,1,0.0236,0.0236,0.273,0.26,0,1 +1,0.638,0.831,0.831,0,0,0.67,0.67,0.67,0,0,0,0,0,0,0,0.0173,0,0.0173,0.831,0.755,0.578,1,0.872,0.0807,0.872,0.872,0.0236,0.0236,0.152,0.145,0,1 +1,0.183,0.704,0.704,0,0,0.625,0.625,0.625,0,0,0,0,0,0,0,0.0339,0,0.0339,0.555,0.608,0.264,1,0.756,0.0435,0.756,0.756,0.0236,0.0236,0.152,0.145,0.333,1 +1,0.0495,0.563,0.563,0,0,0.609,0.609,0.609,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.113,1,0.512,0.0248,0.512,0.512,0.0236,0.0236,0.152,0.145,1,1 +1,0.0495,0.521,0.521,0,0,0.594,0.594,0.594,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0563,1,0.267,0.00621,0.267,0.267,0.0236,0.0236,0.184,0.175,1,1 +1,0.0495,0.521,0.521,0,0,0.579,0.579,0.579,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0307,1,0.221,0.00621,0.221,0.221,0.0236,0.0236,0.152,0.145,1,1 +1,0.0495,0.507,0.507,0,0,0.564,0.564,0.564,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0205,1,0.174,0.0124,0.174,0.174,0.0315,0.0315,0.184,0.175,1,1 +1,0.0513,0.465,0.465,0,0,0.549,0.549,0.549,0,0,0,0,0,0,0,0,0,0,0.327,0.511,0.0282,1,0.186,0.0435,0.186,0.186,0.063,0.063,0.298,0.284,0.667,1 +1,0.0829,0.507,0.507,0,0,0.549,0.549,0.549,0,0,0,0,0,0,0,0,0,0,0.341,0.518,0.0358,1,0.209,0.0745,0.209,0.209,0.118,0.118,0.425,0.405,0.667,1 +1,0.0495,0.606,0.606,0,0,0.579,0.579,0.579,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0614,1,0.302,0.18,0.302,0.302,0.205,0.205,0.362,0.345,1,1 +1,0.0495,0.662,0.662,0,0,0.609,0.609,0.609,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.11,1,0.384,0.286,0.384,0.384,0.346,0.346,0.152,0.145,1,1 +1,0.0495,0.479,0.479,0,0,0.625,0.625,0.625,0,0,0,0,0,0,0,0.0433,0.00852,0.0518,0.258,0.465,0.182,1,0.384,0.273,0.384,0.384,0.661,0.661,0.152,0.145,1,1 +0.667,0.193,0.324,0.324,0,0,0.625,0.625,0.625,0,0,0,0,0,0,0,0.0239,0.017,0.0409,0.28,0.581,0.241,1,0.372,0.255,0.372,0.372,0.953,0.953,0.121,0.115,0.333,1 +0.667,0.189,0.338,0.338,0,0,0.609,0.609,0.609,0,0,0,0,0,0,0,0.00263,0,0.00263,0.284,0.581,0.287,1,0.384,0.273,0.384,0.384,1,1,0.0952,0.0907,0.333,1 +0.667,0.183,0.352,0.352,0,0,0.609,0.609,0.609,0,0,0,0,0,0,0,0.0105,0,0.0105,0.289,0.587,0.315,1,0.384,0.286,0.384,0.384,0.953,0.953,0.0889,0.0847,0.333,1 +0.667,0.178,0.338,0.338,0,0,0.64,0.64,0.64,0,0,0,0,0,0,0,0,0,0,0.284,0.593,0.338,1,0.372,0.261,0.372,0.372,0.945,0.945,0.0889,0.0847,0.333,1 +1,0.432,0.394,0.394,0,0,0.64,0.64,0.64,0,0,0,0,0,0,0,0,0.017,0.017,0.394,0.849,0.399,1,0.372,0.236,0.372,0.372,0.709,0.709,0.0889,0.0847,0,1 +1,0.435,0.437,0.437,0,0,0.64,0.64,0.64,0,0,0,0,0,0,0,0,0,0,0.437,0.83,0.456,1,0.372,0.304,0.372,0.372,0.591,0.591,0.152,0.145,0,1 +1,0.458,0.451,0.451,0,0,0.625,0.625,0.625,0,0,0,0,0,0,0,0,0.0199,0.0199,0.451,0.868,0.502,1,0.384,0.366,0.384,0.384,0.48,0.48,0.368,0.351,0,1 +1,0.526,0.549,0.549,0,0,0.67,0.67,0.67,0,0,0,0,0,0,0,0,0.0227,0.0227,0.549,0.906,0.527,1,0.523,0.683,0.523,0.523,0.291,0.291,0.8,0.762,0,1 +1,0.674,0.746,0.746,0,0,0.731,0.731,0.731,0,0,0,0,0,0,0,0,0.00284,0.00284,0.746,0.981,0.545,1,0.663,1,0.663,0.663,0.181,0.181,0.775,0.738,0,1 +0.667,0.595,0.887,0.887,0,0,0.762,0.762,0.762,0,0,0,0,0,0,0,0,0.00852,0.00852,0.677,0.822,0.642,1,0.767,0.714,0.767,0.767,0.102,0.102,0.432,0.411,0,1 +0.667,0.67,0.944,0.944,0,0,0.731,0.731,0.731,0,0,0.0121,0.00596,0,0,0,0,0.00568,0.00568,0.715,0.784,0.845,1,0.884,0.435,0.884,0.884,0.063,0.063,0.387,0.369,0,1 +0.667,0.625,1,1,0,0,0.716,0.716,0.716,0,0,0,0.00982,0.147,0.147,0,0.0206,0,0.0206,0.753,0.746,0.993,1,0.942,0.273,0.942,0.942,0.0315,0.0315,0.324,0.308,0,1 +1,0.727,0.972,0.972,0,0,0.701,0.701,0.701,0,0,0,0,0.22,0.22,0,0,0,0,0.972,0.849,0.916,1,1,0.118,1,1,0.0236,0.0236,0.273,0.26,0,1 +1,0.442,0.831,0.831,0,0,0.67,0.67,0.67,0,0,0,0,0,0,0,0,0.00568,0.00568,0.64,0.658,0.578,1,0.872,0.0807,0.872,0.872,0.0236,0.0236,0.152,0.145,0.333,1 +1,0.183,0.704,0.704,0,0,0.625,0.625,0.625,0,0,0,0,0,0,0,0,0.00284,0.00284,0.555,0.608,0.264,1,0.756,0.0435,0.756,0.756,0.0236,0.0236,0.152,0.145,0.333,1 +1,0.0495,0.563,0.563,0,0,0.609,0.609,0.609,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0947,1,0.512,0.0248,0.512,0.512,0.0236,0.0236,0.152,0.145,1,1 +1,0.0495,0.521,0.521,0,0,0.594,0.594,0.594,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0461,1,0.267,0.00621,0.267,0.267,0.0236,0.0236,0.184,0.175,1,1 +1,0.0495,0.521,0.521,0,0,0.579,0.579,0.579,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.023,1,0.221,0.00621,0.221,0.221,0.0236,0.0236,0.152,0.145,1,1 +1,0.0495,0.507,0.507,0,0,0.564,0.564,0.564,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0179,1,0.174,0.0124,0.174,0.174,0.0315,0.0315,0.184,0.175,1,1 +1,0.0513,0.465,0.465,0,0,0.549,0.549,0.549,0,0,0,0,0,0,0,0.00269,0,0.00269,0.327,0.511,0.0282,1,0.186,0.0435,0.186,0.186,0.063,0.063,0.298,0.284,0.667,1 +1,0.15,0.507,0.507,0,0.0122,0.549,0.549,0.549,0,0,0,0,0,0,0,0.0539,0,0.0539,0.507,0.623,0.0461,1,0.209,0.0745,0.209,0.209,0.118,0.118,0.425,0.405,0,1 +1,0.351,0.606,0.606,0,0.0244,0.579,0.579,0.579,0,0,0,0,0,0,0,0.06,0,0.06,0.606,0.698,0.0742,1,0.302,0.18,0.302,0.302,0.205,0.205,0.362,0.345,0,1 +0.667,0.313,0.662,0.662,0,0,0.609,0.609,0.609,0,0,0,0,0,0,0,0.0525,0,0.0525,0.527,0.683,0.102,1,0.384,0.286,0.384,0.384,0.346,0.346,0.152,0.145,0,1 +0.667,0.33,0.479,0.479,0,0,0.625,0.625,0.625,0,0,0,0,0,0,0,0.0315,0.00568,0.0372,0.405,0.696,0.125,1,0.384,0.273,0.384,0.384,0.661,0.661,0.152,0.145,0,1 +0.667,0.337,0.324,0.324,0,0.0366,0.625,0.625,0.625,0,0,0,0,0,0,0,0.0222,0.00284,0.025,0.302,0.696,0.148,1,0.372,0.255,0.372,0.372,0.953,0.953,0.121,0.115,0,1 +0.667,0.328,0.338,0.338,0,0,0.609,0.609,0.609,0,0,0,0,0,0,0,0,0.00284,0.00284,0.311,0.696,0.166,1,0.384,0.273,0.384,0.384,1,1,0.0952,0.0907,0,1 +0.667,0.316,0.352,0.352,0,0,0.609,0.609,0.609,0,0,0,0,0,0,0,0.0217,0.0142,0.0359,0.321,0.709,0.184,1,0.384,0.286,0.384,0.384,0.953,0.953,0.0889,0.0847,0,1 +0.667,0.307,0.338,0.338,0,0,0.64,0.64,0.64,0,0,0,0,0,0,0,0,0.0142,0.0142,0.311,0.721,0.194,1,0.372,0.261,0.372,0.372,0.945,0.945,0.0889,0.0847,0,1 +0.333,0.177,0.394,0.394,0,0,0.64,0.64,0.64,0,0,0,0,0,0,0,0,0.0114,0.0114,0.303,0.593,0.22,1,0.372,0.236,0.372,0.372,0.709,0.709,0.0889,0.0847,0,1 +0.333,0.178,0.437,0.437,0,0,0.64,0.64,0.64,0,0,0,0,0,0,0,0,0.00284,0.00284,0.317,0.587,0.233,1,0.372,0.304,0.372,0.372,0.591,0.591,0.152,0.145,0,1 +0.333,0.186,0.451,0.451,0,0,0.625,0.625,0.625,0,0,0,0,0,0,0,0.0205,0,0.0205,0.322,0.6,0.261,1,0.384,0.366,0.384,0.384,0.48,0.48,0.368,0.351,0,1 +0.667,0.367,0.549,0.549,0,0,0.67,0.67,0.67,0,0,0,0,0,0,0,0.0347,0,0.0347,0.452,0.759,0.325,1,0.523,0.683,0.523,0.523,0.291,0.291,0.8,0.762,0,1 +1,0.674,0.746,0.746,0,0.0366,0.731,0.731,0.731,0,0,0,0,0,0,0,0,0.00852,0.00852,0.746,0.981,0.399,1,0.663,1,0.663,0.663,0.181,0.181,0.775,0.738,0,1 +0.667,0.595,0.887,0.887,0,0,0.762,0.762,0.762,0,0,0,0,0,0,0,0,0.00284,0.00284,0.677,0.822,0.537,1,0.767,0.714,0.767,0.767,0.102,0.102,0.432,0.411,0,1 +1,0.98,0.944,0.944,0,0,0.731,0.731,0.731,0,0,0,0,0,0,0,0,0.00284,0.00284,0.944,0.943,0.752,1,0.884,0.435,0.884,0.884,0.063,0.063,0.387,0.369,0,1 +1,0.913,1,1,0,0,0.716,0.716,0.716,0,0,0.0175,0.000702,0,0,0,0,0.00284,0.00284,1,0.887,0.929,1,0.942,0.273,0.942,0.942,0.0315,0.0315,0.324,0.308,0,1 +1,0.727,0.972,0.972,0,0,0.701,0.701,0.701,0,0,0,0.0151,0.055,0.055,0,0,0.017,0.017,0.972,0.849,0.88,1,1,0.118,1,1,0.0236,0.0236,0.273,0.26,0,1 +1,0.246,0.831,0.831,0,0,0.67,0.67,0.67,0,0,0,0,0.0367,0.0367,0,0,0,0,0.449,0.562,0.532,1,0.872,0.0807,0.872,0.872,0.0236,0.0236,0.152,0.145,0.667,1 +1,0.0495,0.704,0.704,0,0,0.625,0.625,0.625,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.23,1,0.756,0.0435,0.756,0.756,0.0236,0.0236,0.152,0.145,1,1 +1,0.0495,0.563,0.563,0,0,0.609,0.609,0.609,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0947,1,0.512,0.0248,0.512,0.512,0.0236,0.0236,0.152,0.145,1,1 +1,0.0495,0.521,0.521,0,0,0.594,0.594,0.594,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0461,1,0.267,0.00621,0.267,0.267,0.0236,0.0236,0.184,0.175,1,1 +1,0.0495,0.521,0.521,0,0,0.579,0.579,0.579,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.023,1,0.221,0.00621,0.221,0.221,0.0236,0.0236,0.152,0.145,1,1 +1,0.0495,0.507,0.507,0,0,0.564,0.564,0.564,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0179,1,0.174,0.0124,0.174,0.174,0.0315,0.0315,0.184,0.175,1,1 +1,0.0495,0.465,0.465,0,0,0.549,0.549,0.549,0,0,0,0,0,0,0,0.0262,0,0.0262,0.258,0.465,0.0282,1,0.186,0.0435,0.186,0.186,0.063,0.063,0.298,0.284,1,1 +0.667,0.0495,0.507,0.507,0,0,0.549,0.549,0.549,0,0,0,0,0,0,0,0.00266,0,0.00266,0.258,0.465,0.0461,1,0.209,0.0745,0.209,0.209,0.118,0.118,0.425,0.405,0.667,1 +0.667,0.251,0.606,0.606,0,0.0853,0.579,0.579,0.579,0,0,0,0,0,0,0,0.0133,0,0.0133,0.49,0.621,0.0742,1,0.302,0.18,0.302,0.302,0.205,0.205,0.362,0.345,0,1 +0.667,0.313,0.662,0.662,0,0.146,0.609,0.609,0.609,0,0,0,0,0,0,0,0,0,0,0.527,0.683,0.102,1,0.384,0.286,0.384,0.384,0.346,0.346,0.152,0.145,0,1 +0.333,0.19,0.479,0.479,0,0.146,0.625,0.625,0.625,0,0,0,0,0,0,0,0,0.017,0.017,0.331,0.581,0.125,1,0.384,0.273,0.384,0.384,0.661,0.661,0.152,0.145,0,1 +0.333,0.193,0.324,0.324,0,0.0244,0.625,0.625,0.625,0,0,0,0,0,0,0,0.0311,0,0.0311,0.28,0.581,0.148,1,0.372,0.255,0.372,0.372,0.953,0.953,0.121,0.115,0,1 +0.333,0.189,0.338,0.338,0,0,0.609,0.609,0.609,0,0,0,0,0,0,0,0.0363,0.00284,0.0392,0.284,0.581,0.166,1,0.384,0.273,0.384,0.384,1,1,0.0952,0.0907,0,1 +0.667,0.183,0.352,0.352,0,0,0.609,0.609,0.609,0,0,0,0,0,0,0,0.0336,0.00284,0.0365,0.289,0.587,0.184,1,0.384,0.286,0.384,0.384,0.953,0.953,0.0889,0.0847,0.333,1 +0.667,0.178,0.338,0.338,0,0,0.64,0.64,0.64,0,0,0,0,0,0,0,0,0,0,0.284,0.593,0.194,1,0.372,0.261,0.372,0.372,0.945,0.945,0.0889,0.0847,0.333,1 +0.333,0.177,0.394,0.394,0,0,0.64,0.64,0.64,0,0,0,0,0,0,0,0,0.00284,0.00284,0.303,0.593,0.22,1,0.372,0.236,0.372,0.372,0.709,0.709,0.0889,0.0847,0,1 +0.333,0.178,0.437,0.437,0,0.0366,0.64,0.64,0.64,0,0,0,0,0,0,0,0,0,0,0.317,0.587,0.233,1,0.372,0.304,0.372,0.372,0.591,0.591,0.152,0.145,0,1 +0.333,0.186,0.451,0.451,0,0,0.625,0.625,0.625,0,0,0,0,0,0,0,0,0,0,0.322,0.6,0.261,1,0.384,0.366,0.384,0.384,0.48,0.48,0.368,0.351,0,1 +0.333,0.208,0.549,0.549,0,0.0122,0.67,0.67,0.67,0,0,0,0,0,0,0,0,0,0,0.355,0.612,0.325,1,0.523,0.683,0.523,0.523,0.291,0.291,0.8,0.762,0,1 +1,0.674,0.746,0.746,0,0.0244,0.731,0.731,0.731,0,0,0,0,0,0,0,0,0.017,0.017,0.746,0.981,0.399,1,0.663,1,0.663,0.663,0.181,0.181,0.775,0.738,0,1 +1,0.868,0.887,0.887,0,0,0.762,0.762,0.762,0,0,0,0,0,0,0,0,0.017,0.017,0.887,1,0.537,1,0.767,0.714,0.767,0.767,0.102,0.102,0.432,0.411,0,1 +1,0.98,0.944,0.944,0,0,0.731,0.731,0.731,0.0141,0.0478,0,0,0,0,0,0,0,0,0.944,0.943,0.752,1,0.884,0.435,0.884,0.884,0.063,0.063,0.387,0.369,0,1 +1,0.913,1,1,0,0,0.716,0.716,0.716,0.0233,0,0,0,0,0,0,0,0.00852,0.00852,1,0.887,0.929,1,0.942,0.273,0.942,0.942,0.0315,0.0315,0.324,0.308,0,1 +1,0.727,0.972,0.972,0,0.0853,0.701,0.701,0.701,0.0105,0,0,0,0,0,0,0,0.00568,0.00568,0.972,0.849,0.88,1,1,0.118,1,1,0.0236,0.0236,0.273,0.26,0,1 +1,0.246,0.831,0.831,0,0.0244,0.67,0.67,0.67,0.0133,0.0478,0,0,0,0,0,0,0.017,0.017,0.449,0.562,0.532,1,0.872,0.0807,0.872,0.872,0.0236,0.0236,0.152,0.145,0.667,1 +1,0.116,0.704,0.704,0,0,0.625,0.625,0.625,0.025,0,0,0,0,0,0,0,0,0,0.407,0.537,0.23,1,0.756,0.0435,0.756,0.756,0.0236,0.0236,0.152,0.145,0.667,1 +1,0.0743,0.563,0.563,0,0,0.609,0.609,0.609,0.0175,0,0,0,0,0,0,0,0.00852,0.00852,0.36,0.53,0.0947,1,0.512,0.0248,0.512,0.512,0.0236,0.0236,0.152,0.145,0.667,1 +1,0.0578,0.521,0.521,0,0,0.594,0.594,0.594,0.0137,0,0,0,0,0,0,0,0,0,0.346,0.518,0.0461,1,0.267,0.00621,0.267,0.267,0.0236,0.0236,0.184,0.175,0.667,1 +1,0.0495,0.521,0.521,0,0,0.579,0.579,0.579,0,0,0,0,0,0,0,0,0,0,0.346,0.511,0.023,1,0.221,0.00621,0.221,0.221,0.0236,0.0236,0.152,0.145,0.667,1 +1,0.0495,0.507,0.507,0,0,0.564,0.564,0.564,0,0,0,0,0,0,0,0,0,0,0.341,0.505,0.0179,1,0.174,0.0124,0.174,0.174,0.0315,0.0315,0.184,0.175,0.667,1 +1,0.0495,0.465,0.465,0,0,0.549,0.549,0.549,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0282,1,0.186,0.0435,0.186,0.186,0.063,0.063,0.298,0.284,1,1 +0.667,0.0495,0.507,0.507,0,0,0.549,0.549,0.549,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0461,1,0.209,0.0745,0.209,0.209,0.118,0.118,0.425,0.405,0.667,1 +0.667,0.0495,0.606,0.606,0,0,0.579,0.579,0.579,0,0,0,0,0,0,0,0.0104,0.00284,0.0133,0.258,0.465,0.0742,1,0.302,0.18,0.302,0.302,0.205,0.205,0.362,0.345,0.667,1 +0.667,0.313,0.662,0.662,0,0.0731,0.609,0.609,0.609,0,0,0,0,0,0,0,0.0283,0,0.0283,0.527,0.683,0.102,1,0.384,0.286,0.384,0.384,0.346,0.346,0.152,0.145,0,1 +0.667,0.33,0.479,0.479,0,0,0.625,0.625,0.625,0,0,0,0,0,0,0,0,0,0,0.405,0.696,0.125,1,0.384,0.273,0.384,0.384,0.661,0.661,0.152,0.145,0,1 +0.667,0.337,0.324,0.324,0,0,0.625,0.625,0.625,0,0,0,0,0,0,0,0,0,0,0.302,0.696,0.148,1,0.372,0.255,0.372,0.372,0.953,0.953,0.121,0.115,0,1 +0.667,0.328,0.338,0.338,0,0,0.609,0.609,0.609,0,0,0,0,0,0,0,0,0,0,0.311,0.696,0.166,1,0.384,0.273,0.384,0.384,1,1,0.0952,0.0907,0,1 +0.667,0.316,0.352,0.352,0,0,0.609,0.609,0.609,0,0,0,0,0,0,0,0,0,0,0.321,0.709,0.184,1,0.384,0.286,0.384,0.384,0.953,0.953,0.0889,0.0847,0,1 +0.667,0.307,0.338,0.338,0,0,0.64,0.64,0.64,0,0,0,0,0,0,0,0,0.00284,0.00284,0.311,0.721,0.194,1,0.372,0.261,0.372,0.372,0.945,0.945,0.0889,0.0847,0,1 +0.667,0.305,0.394,0.394,0,0,0.64,0.64,0.64,0,0,0,0,0,0,0,0,0.0114,0.0114,0.349,0.721,0.22,1,0.372,0.236,0.372,0.372,0.709,0.709,0.0889,0.0847,0,1 +0.667,0.307,0.437,0.437,0,0,0.64,0.64,0.64,0,0,0,0,0,0,0,0,0.00284,0.00284,0.377,0.709,0.233,1,0.372,0.304,0.372,0.372,0.591,0.591,0.152,0.145,0,1 +0.333,0.186,0.451,0.451,0,0,0.625,0.625,0.625,0.00915,0.0414,0,0,0,0,0,0,0.00852,0.00852,0.322,0.6,0.261,1,0.384,0.366,0.384,0.384,0.48,0.48,0.368,0.351,0,1 +0.333,0.208,0.549,0.549,0,0,0.67,0.67,0.67,0.0221,0.00637,0,0,0,0,0,0,0.00852,0.00852,0.355,0.612,0.325,1,0.523,0.683,0.523,0.523,0.291,0.291,0.8,0.762,0,1 +0.333,0.258,0.746,0.746,0,0.0366,0.731,0.731,0.731,0,0,0,0,0,0,0,0,0.00284,0.00284,0.421,0.637,0.399,1,0.663,1,0.663,0.663,0.181,0.181,0.775,0.738,0,1 +0.667,0.595,0.887,0.887,0,0,0.762,0.762,0.762,0,0,0,0,0,0,0,0,0.00284,0.00284,0.677,0.822,0.537,1,0.767,0.714,0.767,0.767,0.102,0.102,0.432,0.411,0,1 +1,0.98,0.944,0.944,0,0,0.731,0.731,0.731,0,0,0,0,0,0,0,0,0.0284,0.0284,0.944,0.943,0.752,1,0.884,0.435,0.884,0.884,0.063,0.063,0.387,0.369,0,1 +1,0.913,1,1,0,0,0.716,0.716,0.716,0,0,0,0,0,0,0,0,0.0142,0.0142,1,0.887,0.929,1,0.942,0.273,0.942,0.942,0.0315,0.0315,0.324,0.308,0,1 +1,0.727,0.972,0.972,0,0,0.701,0.701,0.701,0,0,0,0,0,0,0,0,0,0,0.972,0.849,0.88,1,1,0.118,1,1,0.0236,0.0236,0.273,0.26,0,1 +1,0.246,0.831,0.831,0,0,0.67,0.67,0.67,0,0,0,0,0,0,0,0,0,0,0.449,0.562,0.532,1,0.872,0.0807,0.872,0.872,0.0236,0.0236,0.152,0.145,0.667,1 +1,0.116,0.704,0.704,0,0,0.625,0.625,0.625,0,0,0,0,0,0,0,0,0,0,0.407,0.537,0.23,1,0.756,0.0435,0.756,0.756,0.0236,0.0236,0.152,0.145,0.667,1 +1,0.0743,0.445,0.445,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0,0,0.32,0.484,0.0806,1,0.446,0.0224,0.446,0.446,0.0206,0.0206,0.151,0.188,0.667,1 +1,0.0578,0.412,0.412,0,0,0.771,0.771,0.771,0,0,0,0,0,0,0,0,0,0,0.309,0.474,0.0392,1,0.233,0.00561,0.233,0.233,0.0206,0.0206,0.183,0.228,0.667,1 +1,0.0495,0.412,0.412,0,0,0.752,0.752,0.752,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0196,1,0.193,0.00561,0.193,0.193,0.0206,0.0206,0.151,0.188,1,1 +1,0.0495,0.401,0.401,0,0,0.732,0.732,0.732,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0152,1,0.152,0.0112,0.152,0.152,0.0275,0.0275,0.183,0.228,1,1 +1,0.051,0.367,0.367,0,0,0.712,0.712,0.712,0,0,0,0,0,0,0,0.0298,0,0.0298,0.294,0.469,0.024,1,0.162,0.0393,0.162,0.162,0.055,0.055,0.296,0.369,0.667,1 +1,0.114,0.401,0.401,0,0.0122,0.712,0.712,0.712,0,0,0,0,0,0,0,0.0164,0,0.0164,0.353,0.483,0.0392,1,0.183,0.0673,0.183,0.183,0.103,0.103,0.422,0.526,0.333,1 +0.667,0.147,0.478,0.478,0,0.0975,0.752,0.752,0.752,0,0,0,0,0,0,0,0.0102,0,0.0102,0.331,0.494,0.0632,1,0.264,0.163,0.264,0.264,0.179,0.179,0.359,0.447,0.333,1 +0.667,0.177,0.523,0.523,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0.0772,0.0415,0,0.119,0.346,0.519,0.0871,1,0.335,0.258,0.335,0.335,0.302,0.302,0.151,0.188,0.333,1 +0.667,0.318,0.378,0.378,0,0,0.811,0.811,0.811,0,0,0.0502,0.00596,0,0,0,0,0.00568,0.00568,0.338,0.582,0.107,1,0.335,0.247,0.335,0.335,0.577,0.577,0.151,0.188,0,1 +0.333,0.185,0.256,0.256,0,0,0.811,0.811,0.811,0,0,0.0321,0.00982,0.147,0.147,0,0,0.0114,0.0114,0.257,0.524,0.126,1,0.325,0.23,0.325,0.325,0.831,0.831,0.12,0.149,0,1 +0.333,0.181,0.267,0.267,0,0,0.791,0.791,0.791,0,0,0,0,0.0367,0.0367,0,0,0.00284,0.00284,0.261,0.524,0.142,1,0.335,0.247,0.335,0.335,0.873,0.873,0.0945,0.118,0,1 +0.333,0.175,0.278,0.278,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0,0,0.265,0.529,0.157,1,0.335,0.258,0.335,0.335,0.831,0.831,0.0882,0.11,0,1 +0.333,0.171,0.267,0.267,0,0,0.831,0.831,0.831,0,0,0,0,0,0,0,0,0,0,0.261,0.534,0.166,1,0.325,0.236,0.325,0.325,0.824,0.824,0.0882,0.11,0,1 +0.333,0.169,0.312,0.312,0,0,0.831,0.831,0.831,0,0,0,0,0,0,0,0,0.00852,0.00852,0.276,0.534,0.187,1,0.325,0.213,0.325,0.325,0.618,0.618,0.0882,0.11,0,1 +0.333,0.17,0.345,0.345,0,0,0.831,0.831,0.831,0,0,0,0,0,0,0,0,0.00568,0.00568,0.287,0.529,0.198,1,0.325,0.275,0.325,0.325,0.515,0.515,0.151,0.188,0,1 +0.333,0.174,0.356,0.356,0,0.0122,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0,0,0.29,0.539,0.222,1,0.335,0.331,0.335,0.335,0.419,0.419,0.365,0.455,0,1 +0.667,0.326,0.434,0.434,0,0.0244,0.87,0.87,0.87,0,0,0,0,0,0,0,0,0,0,0.375,0.632,0.277,1,0.457,0.617,0.457,0.457,0.254,0.254,0.794,0.989,0,1 +0.667,0.395,0.59,0.59,0,0,0.949,0.949,0.949,0,0,0,0,0,0,0,0,0,0,0.479,0.672,0.34,1,0.578,0.903,0.578,0.578,0.158,0.158,0.769,0.958,0,1 +0.667,0.507,0.701,0.701,0,0,0.989,0.989,0.989,0.0219,0.0891,0,0,0,0,0,0,0.00568,0.00568,0.553,0.682,0.457,1,0.67,0.645,0.67,0.67,0.0893,0.0893,0.428,0.534,0,1 +0.667,0.613,0.745,0.745,0,0,0.949,0.949,0.949,0.0041,0.0302,0,0,0,0,0,0,0.00284,0.00284,0.583,0.652,0.64,1,0.771,0.393,0.771,0.771,0.055,0.055,0.384,0.479,0,1 +1,0.928,0.79,0.79,0,0,0.93,0.93,0.93,0,0,0,0,0,0,0,0,0.00284,0.00284,0.79,0.701,0.791,1,0.822,0.247,0.822,0.822,0.0275,0.0275,0.321,0.4,0,1 +1,0.807,0.768,0.768,0,0,0.91,0.91,0.91,0,0,0,0,0,0,0,0.0217,0.00284,0.0245,0.768,0.671,0.749,1,0.873,0.107,0.873,0.873,0.0206,0.0206,0.271,0.338,0,1 +1,0.35,0.656,0.656,0,0,0.87,0.87,0.87,0,0,0,0,0,0,0,0,0.0227,0.0227,0.524,0.553,0.453,1,0.761,0.0729,0.761,0.761,0.0206,0.0206,0.151,0.188,0.333,1 +1,0.116,0.556,0.556,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0,0,0.357,0.489,0.196,1,0.659,0.0393,0.659,0.659,0.0206,0.0206,0.151,0.188,0.667,1 +1,0.0495,0.445,0.445,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0806,1,0.446,0.0224,0.446,0.446,0.0206,0.0206,0.151,0.188,1,1 +1,0.0495,0.412,0.412,0,0,0.771,0.771,0.771,0,0,0,0,0,0,0,0,0.0199,0.0199,0.258,0.465,0.0392,1,0.233,0.00561,0.233,0.233,0.0206,0.0206,0.183,0.228,1,1 +1,0.0495,0.412,0.412,0,0,0.752,0.752,0.752,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0196,1,0.193,0.00561,0.193,0.193,0.0206,0.0206,0.151,0.188,1,1 +1,0.0495,0.401,0.401,0,0,0.732,0.732,0.732,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0152,1,0.152,0.0112,0.152,0.152,0.0275,0.0275,0.183,0.228,1,1 +1,0.051,0.367,0.367,0,0,0.712,0.712,0.712,0,0,0,0,0,0,0,0,0,0,0.294,0.469,0.024,1,0.162,0.0393,0.162,0.162,0.055,0.055,0.296,0.369,0.667,1 +1,0.0816,0.401,0.401,0,0,0.712,0.712,0.712,0,0,0,0,0,0,0,0.00243,0,0.00243,0.305,0.474,0.0392,1,0.183,0.0673,0.183,0.183,0.103,0.103,0.422,0.526,0.667,1 +1,0.245,0.478,0.478,0,0,0.752,0.752,0.752,0,0,0,0,0,0,0,0.0194,0,0.0194,0.405,0.523,0.0632,1,0.264,0.163,0.264,0.264,0.179,0.179,0.359,0.447,0.333,1 +1,0.305,0.523,0.523,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0.0225,0,0.0225,0.435,0.572,0.0871,1,0.335,0.258,0.335,0.335,0.302,0.302,0.151,0.188,0.333,1 +0.667,0.318,0.378,0.378,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0.0164,0,0.0164,0.338,0.582,0.107,1,0.335,0.247,0.335,0.335,0.577,0.577,0.151,0.188,0,1 +0.333,0.185,0.256,0.256,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0.0114,0.0114,0.257,0.524,0.126,1,0.325,0.23,0.325,0.325,0.831,0.831,0.12,0.149,0,1 +0.333,0.181,0.267,0.267,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0.0255,0.0255,0.261,0.524,0.142,1,0.335,0.247,0.335,0.335,0.873,0.873,0.0945,0.118,0,1 +0.333,0.175,0.278,0.278,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0.00568,0.00568,0.265,0.529,0.157,1,0.335,0.258,0.335,0.335,0.831,0.831,0.0882,0.11,0,1 +0.333,0.171,0.267,0.267,0,0.0366,0.831,0.831,0.831,0.00522,0.0175,0,0,0,0,0,0,0.0114,0.0114,0.261,0.534,0.166,1,0.325,0.236,0.325,0.325,0.824,0.824,0.0882,0.11,0,1 +0.333,0.169,0.312,0.312,0,0,0.831,0.831,0.831,0.0203,0.0302,0,0,0,0,0,0.00249,0.00568,0.00817,0.276,0.534,0.187,1,0.325,0.213,0.325,0.325,0.618,0.618,0.0882,0.11,0,1 +0.333,0.17,0.345,0.345,0,0,0.831,0.831,0.831,0,0,0,0,0,0,0,0.0256,0.00284,0.0284,0.287,0.529,0.198,1,0.325,0.275,0.325,0.325,0.515,0.515,0.151,0.188,0,1 +0,0.0495,0.356,0.356,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.465,0.222,1,0.335,0.331,0.335,0.335,0.419,0.419,0.365,0.455,0,1 +0.667,0.326,0.434,0.434,0,0,0.87,0.87,0.87,0,0,0,0,0,0,0,0.0026,0,0.0026,0.375,0.632,0.277,1,0.457,0.617,0.457,0.457,0.254,0.254,0.794,0.989,0,1 +0.667,0.395,0.59,0.59,0,0.0122,0.949,0.949,0.949,0,0,0,0,0,0,0,0.0105,0,0.0105,0.479,0.672,0.34,1,0.578,0.903,0.578,0.578,0.158,0.158,0.769,0.958,0,1 +1,0.736,0.701,0.701,0,0.146,0.989,0.989,0.989,0,0,0,0,0,0,0,0.0244,0.00284,0.0272,0.701,0.79,0.457,1,0.67,0.645,0.67,0.67,0.0893,0.0893,0.428,0.534,0,1 +1,0.895,0.745,0.745,0,0.0244,0.949,0.949,0.949,0,0,0,0,0,0,0,0.0135,0,0.0135,0.745,0.745,0.64,1,0.771,0.393,0.771,0.771,0.055,0.055,0.384,0.479,0,1 +1,0.928,0.79,0.79,0,0,0.93,0.93,0.93,0,0,0,0,0,0,0,0.0592,0.0199,0.0791,0.79,0.701,0.791,1,0.822,0.247,0.822,0.822,0.0275,0.0275,0.321,0.4,0,1 +0.667,0.555,0.768,0.768,0,0,0.91,0.91,0.91,0,0,0,0,0,0,0,0.0447,0.0114,0.0561,0.598,0.602,0.749,1,0.873,0.107,0.873,0.873,0.0206,0.0206,0.271,0.338,0,1 +0.667,0.2,0.656,0.656,0,0,0.87,0.87,0.87,0,0,0,0,0,0,0,0.0334,0,0.0334,0.391,0.509,0.453,1,0.761,0.0729,0.761,0.761,0.0206,0.0206,0.151,0.188,0.333,1 +1,0.116,0.556,0.556,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0.0375,0,0.0375,0.357,0.489,0.196,1,0.659,0.0393,0.659,0.659,0.0206,0.0206,0.151,0.188,0.667,1 +0.667,0.0495,0.445,0.445,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0.0106,0,0.0106,0.258,0.465,0.0958,1,0.446,0.0224,0.446,0.446,0.0206,0.0206,0.151,0.188,0.667,1 +1,0.0578,0.412,0.412,0,0,0.771,0.771,0.771,0,0,0,0,0,0,0,0.0414,0,0.0414,0.309,0.474,0.0479,1,0.233,0.00561,0.233,0.233,0.0206,0.0206,0.183,0.228,0.667,1 +1,0.0495,0.412,0.412,0,0,0.752,0.752,0.752,0,0,0,0,0,0,0,0.0391,0,0.0391,0.309,0.469,0.0261,1,0.193,0.00561,0.193,0.193,0.0206,0.0206,0.151,0.188,0.667,1 +1,0.0495,0.401,0.401,0,0,0.732,0.732,0.732,0,0,0,0,0,0,0,0.0168,0,0.0168,0.305,0.464,0.0174,1,0.152,0.0112,0.152,0.152,0.0275,0.0275,0.183,0.228,0.667,1 +1,0.0495,0.367,0.367,0,0,0.712,0.712,0.712,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.024,1,0.162,0.0393,0.162,0.162,0.055,0.055,0.296,0.369,1,1 +1,0.0495,0.401,0.401,0,0,0.712,0.712,0.712,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0305,1,0.183,0.0673,0.183,0.183,0.103,0.103,0.422,0.526,1,1 +1,0.0495,0.478,0.478,0,0,0.752,0.752,0.752,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0523,1,0.264,0.163,0.264,0.264,0.179,0.179,0.359,0.447,1,1 +1,0.177,0.523,0.523,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0.00268,0.00568,0.00836,0.346,0.519,0.0937,1,0.335,0.258,0.335,0.335,0.302,0.302,0.151,0.188,0.667,1 +1,0.318,0.378,0.378,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0.0354,0.00568,0.0411,0.338,0.582,0.155,1,0.335,0.247,0.335,0.335,0.577,0.577,0.151,0.188,0.333,1 +1,0.321,0.256,0.256,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0.0263,0,0.0263,0.257,0.582,0.205,1,0.325,0.23,0.325,0.325,0.831,0.831,0.12,0.149,0.333,1 +0.667,0.181,0.267,0.267,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0.018,0,0.018,0.261,0.524,0.244,1,0.335,0.247,0.335,0.335,0.873,0.873,0.0945,0.118,0.333,1 +0.333,0.175,0.278,0.278,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0,0,0.265,0.529,0.268,1,0.335,0.258,0.335,0.335,0.831,0.831,0.0882,0.11,0,1 +0.333,0.171,0.267,0.267,0,0,0.831,0.831,0.831,0,0,0,0,0,0,0,0.00273,0,0.00273,0.261,0.534,0.288,1,0.325,0.236,0.325,0.325,0.824,0.824,0.0882,0.11,0,1 +1,0.409,0.312,0.312,0,0,0.831,0.831,0.831,0.0139,0.0653,0.0176,0.00596,0,0,0,0.0164,0,0.0164,0.312,0.671,0.34,1,0.325,0.213,0.325,0.325,0.618,0.618,0.0882,0.11,0,1 +0.667,0.29,0.345,0.345,0,0.0853,0.831,0.831,0.831,0.0158,0.0302,0,0.00982,0.147,0.147,0,0,0.00284,0.00284,0.316,0.592,0.388,1,0.325,0.275,0.325,0.325,0.515,0.515,0.151,0.188,0,1 +0.667,0.298,0.356,0.356,0,0.0244,0.811,0.811,0.811,0,0,0,0,0.22,0.22,0,0,0.00852,0.00852,0.323,0.612,0.427,1,0.335,0.331,0.335,0.335,0.419,0.419,0.365,0.455,0,1 +0.667,0.326,0.434,0.434,0,0.0122,0.87,0.87,0.87,0,0,0,0,0,0,0,0,0,0,0.375,0.632,0.449,1,0.457,0.617,0.457,0.457,0.254,0.254,0.794,0.989,0,1 +0.667,0.395,0.59,0.59,0,0.0609,0.949,0.949,0.949,0.00904,0.0414,0,0,0,0,0,0,0.00852,0.00852,0.479,0.672,0.464,1,0.578,0.903,0.578,0.578,0.158,0.158,0.769,0.958,0,1 +0.667,0.507,0.701,0.701,0,0,0.989,0.989,0.989,0.00983,0.0541,0.0163,0.00596,0,0,0,0,0.017,0.017,0.553,0.682,0.547,1,0.67,0.645,0.67,0.67,0.0893,0.0893,0.428,0.534,0,1 +1,0.895,0.745,0.745,0,0,0.949,0.949,0.949,0.0183,0.0716,0,0.00982,0.147,0.147,0,0,0.0142,0.0142,0.745,0.745,0.719,1,0.771,0.393,0.771,0.771,0.055,0.055,0.384,0.479,0,1 +1,0.928,0.79,0.79,0,0,0.93,0.93,0.93,0.0236,0,0,0,0.22,0.22,0,0,0.00284,0.00284,0.79,0.701,0.845,1,0.822,0.247,0.822,0.822,0.0275,0.0275,0.321,0.4,0,1 +1,0.807,0.768,0.768,0,0,0.91,0.91,0.91,0,0,0,0,0,0,0,0,0,0,0.768,0.671,0.78,1,0.873,0.107,0.873,0.873,0.0206,0.0206,0.271,0.338,0,1 +1,0.5,0.656,0.656,0,0,0.87,0.87,0.87,0.0143,0.0653,0,0,0,0,0,0,0,0,0.656,0.596,0.492,1,0.761,0.0729,0.761,0.761,0.0206,0.0206,0.151,0.188,0,1 +1,0.183,0.556,0.556,0,0,0.811,0.811,0.811,0.0172,0.0541,0,0,0,0,0,0,0.0114,0.0114,0.457,0.513,0.224,1,0.659,0.0393,0.659,0.659,0.0206,0.0206,0.151,0.188,0.333,1 +1,0.0743,0.445,0.445,0,0,0.791,0.791,0.791,0.0184,0,0,0,0,0,0,0.00262,0,0.00262,0.32,0.484,0.0958,1,0.446,0.0224,0.446,0.446,0.0206,0.0206,0.151,0.188,0.667,1 +1,0.0578,0.412,0.412,0,0,0.771,0.771,0.771,0.00444,0,0,0,0,0,0,0.0183,0,0.0183,0.309,0.474,0.0479,1,0.233,0.00561,0.233,0.233,0.0206,0.0206,0.183,0.228,0.667,1 +1,0.0495,0.412,0.412,0,0,0.752,0.752,0.752,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0261,1,0.193,0.00561,0.193,0.193,0.0206,0.0206,0.151,0.188,1,1 +1,0.0495,0.401,0.401,0,0,0.732,0.732,0.732,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0174,1,0.152,0.0112,0.152,0.152,0.0275,0.0275,0.183,0.228,1,1 +0.667,0.0495,0.367,0.367,0,0,0.712,0.712,0.712,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.024,1,0.162,0.0393,0.162,0.162,0.055,0.055,0.296,0.369,0.667,1 +0.667,0.0495,0.401,0.401,0,0,0.712,0.712,0.712,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0305,1,0.183,0.0673,0.183,0.183,0.103,0.103,0.422,0.526,0.667,1 +0.667,0.0495,0.478,0.478,0,0,0.752,0.752,0.752,0,0,0,0,0,0,0,0.0277,0,0.0277,0.258,0.465,0.0523,1,0.264,0.163,0.264,0.264,0.179,0.179,0.359,0.447,0.667,1 +1,0.177,0.523,0.523,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0.0425,0,0.0425,0.346,0.519,0.0937,1,0.335,0.258,0.335,0.335,0.302,0.302,0.151,0.188,0.667,1 +1,0.184,0.378,0.378,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0.0287,0,0.0287,0.298,0.524,0.155,1,0.335,0.247,0.335,0.335,0.577,0.577,0.151,0.188,0.667,1 +1,0.185,0.256,0.256,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0.0165,0,0.0165,0.257,0.524,0.205,1,0.325,0.23,0.325,0.325,0.831,0.831,0.12,0.149,0.667,1 +1,0.181,0.267,0.267,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0.00284,0.00284,0.261,0.524,0.244,1,0.335,0.247,0.335,0.335,0.873,0.873,0.0945,0.118,0.667,1 +0.667,0.0495,0.278,0.278,0,0,0.791,0.791,0.791,0,0,0.00643,0,0,0,0,0,0.0114,0.0114,0.258,0.465,0.268,1,0.335,0.258,0.335,0.335,0.831,0.831,0.0882,0.11,0.667,1 +0.667,0.171,0.267,0.267,0,0.0366,0.831,0.831,0.831,0,0,0.029,0.0112,0,0,0,0,0,0,0.261,0.534,0.288,1,0.325,0.236,0.325,0.325,0.824,0.824,0.0882,0.11,0.333,1 +0.667,0.169,0.312,0.312,0,0,0.831,0.831,0.831,0,0,0.0348,0.00456,0.238,0.238,0,0,0.00284,0.00284,0.276,0.534,0.34,1,0.325,0.213,0.325,0.325,0.618,0.618,0.0882,0.11,0.333,1 +0.667,0.29,0.345,0.345,0,0,0.831,0.831,0.831,0,0,0.0211,0,0.0367,0.0367,0,0,0,0,0.316,0.592,0.388,1,0.325,0.275,0.325,0.325,0.515,0.515,0.151,0.188,0,1 +0.667,0.298,0.356,0.356,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0,0,0.323,0.612,0.427,1,0.335,0.331,0.335,0.335,0.419,0.419,0.365,0.455,0,1 +0.333,0.188,0.434,0.434,0,0,0.87,0.87,0.87,0,0,0,0,0,0,0,0,0,0,0.316,0.549,0.449,1,0.457,0.617,0.457,0.457,0.254,0.254,0.794,0.989,0,1 +0,0.0495,0.59,0.59,0,0,0.949,0.949,0.949,0,0,0,0,0,0,0,0,0.00568,0.00568,0.258,0.465,0.464,1,0.578,0.903,0.578,0.578,0.158,0.158,0.769,0.958,0,1 +0,0.0495,0.701,0.701,0,0,0.989,0.989,0.989,0,0,0,0,0,0,0,0,0.0227,0.0227,0.258,0.465,0.547,1,0.67,0.645,0.67,0.67,0.0893,0.0893,0.428,0.534,0,1 +0.333,0.331,0.745,0.745,0,0,0.949,0.949,0.949,0,0,0,0,0,0,0,0,0.0199,0.0199,0.42,0.559,0.719,1,0.771,0.393,0.771,0.771,0.055,0.055,0.384,0.479,0,1 +0.333,0.342,0.79,0.79,0,0,0.93,0.93,0.93,0,0,0,0,0,0,0,0,0.00852,0.00852,0.435,0.544,0.845,1,0.822,0.247,0.822,0.822,0.0275,0.0275,0.321,0.4,0,1 +0.667,0.555,0.768,0.768,0,0,0.91,0.91,0.91,0,0,0.00224,0,0,0,0,0,0,0,0.598,0.602,0.78,1,0.873,0.107,0.873,0.873,0.0206,0.0206,0.271,0.338,0,1 +0.667,0.35,0.656,0.656,0,0,0.87,0.87,0.87,0,0,0.029,0.0112,0,0,0,0,0,0,0.524,0.553,0.492,1,0.761,0.0729,0.761,0.761,0.0206,0.0206,0.151,0.188,0,1 +1,0.249,0.556,0.556,0,0,0.811,0.811,0.811,0,0,0.0204,0.00456,0.238,0.238,0,0,0.00852,0.00852,0.556,0.537,0.224,1,0.659,0.0393,0.659,0.659,0.0206,0.0206,0.151,0.188,0,1 +1,0.124,0.445,0.445,0,0,0.791,0.791,0.791,0,0,0.0316,0,0.128,0.128,0,0,0,0,0.445,0.522,0.0806,1,0.446,0.0224,0.446,0.446,0.0206,0.0206,0.151,0.188,0,1 +1,0.066,0.412,0.412,0,0,0.771,0.771,0.771,0,0,0.0175,0,0,0,0,0,0,0,0.36,0.483,0.0392,1,0.233,0.00561,0.233,0.233,0.0206,0.0206,0.183,0.228,0.333,1 +1,0.0495,0.412,0.412,0,0,0.752,0.752,0.752,0,0,0.0253,0,0,0,0,0,0,0,0.309,0.469,0.0196,1,0.193,0.00561,0.193,0.193,0.0206,0.0206,0.151,0.188,0.667,1 +1,0.0495,0.401,0.401,0,0,0.732,0.732,0.732,0,0,0.0124,0,0,0,0,0,0,0,0.305,0.464,0.0152,1,0.152,0.0112,0.152,0.152,0.0275,0.0275,0.183,0.228,0.667,1 +1,0.0495,0.367,0.367,0,0,0.712,0.712,0.712,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.024,1,0.162,0.0393,0.162,0.162,0.055,0.055,0.296,0.369,1,1 +1,0.0495,0.401,0.401,0,0,0.712,0.712,0.712,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0392,1,0.183,0.0673,0.183,0.183,0.103,0.103,0.422,0.526,1,1 +1,0.147,0.478,0.478,0,0.0122,0.752,0.752,0.752,0,0,0,0,0,0,0,0,0.00284,0.00284,0.331,0.494,0.0632,1,0.264,0.163,0.264,0.264,0.179,0.179,0.359,0.447,0.667,1 +0.667,0.177,0.523,0.523,0,0.134,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0.00852,0.00852,0.346,0.519,0.0871,1,0.335,0.258,0.335,0.335,0.302,0.302,0.151,0.188,0.333,1 +0.667,0.184,0.378,0.378,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0,0,0.298,0.524,0.107,1,0.335,0.247,0.335,0.335,0.577,0.577,0.151,0.188,0.333,1 +0.667,0.321,0.256,0.256,0,0,0.811,0.811,0.811,0.00556,0.0175,0,0,0,0,0,0.0401,0,0.0401,0.257,0.582,0.126,1,0.325,0.23,0.325,0.325,0.831,0.831,0.12,0.149,0,1 +0.667,0.312,0.267,0.267,0,0,0.791,0.791,0.791,0.0124,0.00637,0,0,0,0,0,0.0252,0.00284,0.0281,0.264,0.582,0.142,1,0.335,0.247,0.335,0.335,0.873,0.873,0.0945,0.118,0,1 +0.667,0.3,0.278,0.278,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0.0172,0.00284,0.02,0.271,0.592,0.157,1,0.335,0.258,0.335,0.335,0.831,0.831,0.0882,0.11,0,1 +0.333,0.171,0.267,0.267,0,0,0.831,0.831,0.831,0,0,0,0,0,0,0,0,0.00284,0.00284,0.261,0.534,0.166,1,0.325,0.236,0.325,0.325,0.824,0.824,0.0882,0.11,0,1 +0.333,0.169,0.312,0.312,0,0,0.831,0.831,0.831,0,0,0,0,0,0,0,0,0.00852,0.00852,0.276,0.534,0.187,1,0.325,0.213,0.325,0.325,0.618,0.618,0.0882,0.11,0,1 +0.333,0.17,0.345,0.345,0,0,0.831,0.831,0.831,0,0,0.0298,0.000702,0,0,0,0,0.00284,0.00284,0.287,0.529,0.198,1,0.325,0.275,0.325,0.325,0.515,0.515,0.151,0.188,0,1 +0.667,0.298,0.356,0.356,0,0,0.811,0.811,0.811,0,0,0.0393,0.0151,0.055,0.055,0,0,0,0,0.323,0.612,0.222,1,0.335,0.331,0.335,0.335,0.419,0.419,0.365,0.455,0,1 +0.667,0.326,0.434,0.434,0,0,0.87,0.87,0.87,0,0,0.0124,0,0.128,0.128,0,0,0.00284,0.00284,0.375,0.632,0.277,1,0.457,0.617,0.457,0.457,0.254,0.254,0.794,0.989,0,1 +0.667,0.395,0.59,0.59,0,0.0366,0.949,0.949,0.949,0,0,0,0,0,0,0,0,0.00568,0.00568,0.479,0.672,0.34,1,0.578,0.903,0.578,0.578,0.158,0.158,0.769,0.958,0,1 +0.667,0.507,0.701,0.701,0,0,0.989,0.989,0.989,0,0,0,0,0,0,0,0,0.0199,0.0199,0.553,0.682,0.457,1,0.67,0.645,0.67,0.67,0.0893,0.0893,0.428,0.534,0,1 +0.667,0.613,0.745,0.745,0,0,0.949,0.949,0.949,0,0,0,0,0,0,0,0,0,0,0.583,0.652,0.64,1,0.771,0.393,0.771,0.771,0.055,0.055,0.384,0.479,0,1 +0.667,0.635,0.79,0.79,0,0,0.93,0.93,0.93,0,0,0,0,0,0,0,0,0,0,0.613,0.622,0.791,1,0.822,0.247,0.822,0.822,0.0275,0.0275,0.321,0.4,0,1 +0.667,0.555,0.768,0.768,0,0,0.91,0.91,0.91,0.0194,0.0239,0,0,0,0,0,0,0,0,0.598,0.602,0.749,1,0.873,0.107,0.873,0.873,0.0206,0.0206,0.271,0.338,0,1 +1,0.35,0.656,0.656,0,0,0.87,0.87,0.87,0.00444,0,0,0,0,0,0,0,0.00284,0.00284,0.524,0.553,0.453,1,0.761,0.0729,0.761,0.761,0.0206,0.0206,0.151,0.188,0.333,1 +1,0.0495,0.556,0.556,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0.00568,0.00568,0.258,0.465,0.196,1,0.659,0.0393,0.659,0.659,0.0206,0.0206,0.151,0.188,1,1 +1,0.0495,0.445,0.445,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0806,1,0.446,0.0224,0.446,0.446,0.0206,0.0206,0.151,0.188,1,1 +1,0.0578,0.412,0.412,0,0,0.771,0.771,0.771,0,0,0,0,0,0,0,0,0,0,0.309,0.474,0.0392,1,0.233,0.00561,0.233,0.233,0.0206,0.0206,0.183,0.228,0.667,1 +1,0.0495,0.412,0.412,0,0,0.752,0.752,0.752,0,0,0,0,0,0,0,0,0,0,0.309,0.469,0.0196,1,0.193,0.00561,0.193,0.193,0.0206,0.0206,0.151,0.188,0.667,1 +1,0.0495,0.401,0.401,0,0,0.732,0.732,0.732,0,0,0,0,0,0,0,0,0,0,0.305,0.464,0.0152,1,0.152,0.0112,0.152,0.152,0.0275,0.0275,0.183,0.228,0.667,1 +1,0.0495,0.367,0.367,0,0,0.712,0.712,0.712,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.024,1,0.162,0.0393,0.162,0.162,0.055,0.055,0.296,0.369,1,1 +1,0.0495,0.401,0.401,0,0,0.712,0.712,0.712,0,0,0,0,0,0,0,0.00237,0.00284,0.00521,0.258,0.465,0.0392,1,0.183,0.0673,0.183,0.183,0.103,0.103,0.422,0.526,1,1 +0.667,0.147,0.478,0.478,0,0,0.752,0.752,0.752,0,0,0,0,0,0,0,0.0331,0,0.0331,0.331,0.494,0.0632,1,0.264,0.163,0.264,0.264,0.179,0.179,0.359,0.447,0.333,1 +0.667,0.177,0.523,0.523,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0.023,0.00284,0.0259,0.346,0.519,0.0871,1,0.335,0.258,0.335,0.335,0.302,0.302,0.151,0.188,0.333,1 +0.333,0.0495,0.378,0.378,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0.0225,0,0.0225,0.258,0.465,0.107,1,0.335,0.247,0.335,0.335,0.577,0.577,0.151,0.188,0.333,1 +0.333,0.185,0.256,0.256,0,0,0.811,0.811,0.811,0,0,0.0127,0,0,0,0,0.00894,0.00284,0.0118,0.257,0.524,0.126,1,0.325,0.23,0.325,0.325,0.831,0.831,0.12,0.149,0,1 +0,0.0495,0.267,0.267,0,0,0.791,0.791,0.791,0,0,0.0136,0.0112,0,0,0,0,0.00852,0.00852,0.258,0.465,0.142,1,0.335,0.247,0.335,0.335,0.873,0.873,0.0945,0.118,0,1 +0.333,0.175,0.278,0.278,0,0,0.791,0.791,0.791,0,0,0.0299,0.00456,0.238,0.238,0,0,0.00284,0.00284,0.265,0.529,0.157,1,0.335,0.258,0.335,0.335,0.831,0.831,0.0882,0.11,0,1 +0.333,0.171,0.267,0.267,0,0,0.831,0.831,0.831,0,0,0.0264,0,0.367,0.367,0,0,0,0,0.261,0.534,0.166,1,0.325,0.236,0.325,0.325,0.824,0.824,0.0882,0.11,0,1 +0.333,0.169,0.312,0.312,0,0,0.831,0.831,0.831,0,0,0.0288,0,0.128,0.128,0,0,0.00568,0.00568,0.276,0.534,0.187,1,0.325,0.213,0.325,0.325,0.618,0.618,0.0882,0.11,0,1 +0.333,0.17,0.345,0.345,0,0,0.831,0.831,0.831,0,0,0.0308,0,0,0,0,0,0,0,0.287,0.529,0.198,1,0.325,0.275,0.325,0.325,0.515,0.515,0.151,0.188,0,1 +0.333,0.174,0.356,0.356,0,0,0.811,0.811,0.811,0,0,0.021,0,0,0,0,0,0,0,0.29,0.539,0.222,1,0.335,0.331,0.335,0.335,0.419,0.419,0.365,0.455,0,1 +0.667,0.326,0.434,0.434,0,0,0.87,0.87,0.87,0,0,0.0352,0,0,0,0,0,0,0,0.375,0.632,0.277,1,0.457,0.617,0.457,0.457,0.254,0.254,0.794,0.989,0,1 +1,0.567,0.59,0.59,0,0,0.949,0.949,0.949,0,0,0.0342,0,0,0,0,0,0.0114,0.0114,0.59,0.775,0.34,1,0.578,0.903,0.578,0.578,0.158,0.158,0.769,0.958,0,1 +1,0.736,0.701,0.701,0,0,0.989,0.989,0.989,0.0143,0.0478,0.0283,0,0,0,0,0,0.00568,0.00568,0.701,0.79,0.457,1,0.67,0.645,0.67,0.67,0.0893,0.0893,0.428,0.534,0,1 +1,0.895,0.745,0.745,0,0,0.949,0.949,0.949,0.0218,0,0.0163,0,0,0,0,0,0.00284,0.00284,0.745,0.745,0.64,1,0.771,0.393,0.771,0.771,0.055,0.055,0.384,0.479,0,1 +1,0.928,0.79,0.79,0,0,0.93,0.93,0.93,0.0254,0,0,0,0,0,0,0,0,0,0.79,0.701,0.791,1,0.822,0.247,0.822,0.822,0.0275,0.0275,0.321,0.4,0,1 +1,0.555,0.768,0.768,0,0,0.91,0.91,0.91,0.0146,0,0,0,0,0,0,0,0.00852,0.00852,0.598,0.602,0.749,1,0.873,0.107,0.873,0.873,0.0206,0.0206,0.271,0.338,0.333,1 +1,0.2,0.656,0.656,0,0,0.87,0.87,0.87,0.0186,0,0,0,0,0,0,0,0.00568,0.00568,0.391,0.509,0.453,1,0.761,0.0729,0.761,0.761,0.0206,0.0206,0.151,0.188,0.667,1 +1,0.116,0.556,0.556,0,0,0.811,0.811,0.811,0.0164,0,0,0,0,0,0,0,0,0,0.357,0.489,0.196,1,0.659,0.0393,0.659,0.659,0.0206,0.0206,0.151,0.188,0.667,1 +1,0.0495,0.445,0.445,0,0,0.791,0.791,0.791,0.00702,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0806,1,0.446,0.0224,0.446,0.446,0.0206,0.0206,0.151,0.188,1,1 +1,0.0495,0.412,0.412,0,0,0.771,0.771,0.771,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0392,1,0.233,0.00561,0.233,0.233,0.0206,0.0206,0.183,0.228,1,1 +1,0.0495,0.412,0.412,0,0,0.752,0.752,0.752,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0196,1,0.193,0.00561,0.193,0.193,0.0206,0.0206,0.151,0.188,1,1 +1,0.0495,0.401,0.401,0,0,0.732,0.732,0.732,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.465,0.0152,1,0.152,0.0112,0.152,0.152,0.0275,0.0275,0.183,0.228,1,1 +1,0.051,0.367,0.367,0,0,0.712,0.712,0.712,0,0,0,0,0,0,0,0,0,0,0.294,0.469,0.024,1,0.162,0.0393,0.162,0.162,0.055,0.055,0.296,0.369,0.667,1 +1,0.0816,0.401,0.401,0,0.0366,0.712,0.712,0.712,0,0,0,0,0,0,0,0,0,0,0.305,0.474,0.0392,1,0.183,0.0673,0.183,0.183,0.103,0.103,0.422,0.526,0.667,1 +0.667,0.147,0.478,0.478,0,0,0.752,0.752,0.752,0,0,0,0,0,0,0,0.00261,0,0.00261,0.331,0.494,0.0632,1,0.264,0.163,0.264,0.264,0.179,0.179,0.359,0.447,0.333,1 +0.667,0.305,0.523,0.523,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0.0517,0,0.0517,0.435,0.572,0.0871,1,0.335,0.258,0.335,0.335,0.302,0.302,0.151,0.188,0,1 +0.667,0.318,0.378,0.378,0,0.0366,0.811,0.811,0.811,0,0,0,0,0,0,0,0.0195,0.00568,0.0251,0.338,0.582,0.107,1,0.335,0.247,0.335,0.335,0.577,0.577,0.151,0.188,0,1 +0.333,0.185,0.256,0.256,0,0,0.811,0.811,0.811,0.00258,0.0175,0,0,0,0,0,0,0,0,0.257,0.524,0.126,1,0.325,0.23,0.325,0.325,0.831,0.831,0.12,0.149,0,1 +0.333,0.181,0.267,0.267,0,0,0.791,0.791,0.791,0.0163,0.0302,0,0,0,0,0,0,0.00568,0.00568,0.261,0.524,0.142,1,0.335,0.247,0.335,0.335,0.873,0.873,0.0945,0.118,0,1 +0.333,0.175,0.278,0.278,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0.00568,0.00568,0.265,0.529,0.157,1,0.335,0.258,0.335,0.335,0.831,0.831,0.0882,0.11,0,1 +0.333,0.171,0.267,0.267,0,0.0366,0.831,0.831,0.831,0,0,0,0,0,0,0,0,0.00852,0.00852,0.261,0.534,0.166,1,0.325,0.236,0.325,0.325,0.824,0.824,0.0882,0.11,0,1 +0.333,0.169,0.312,0.312,0,0,0.831,0.831,0.831,0.00932,0.0414,0,0,0,0,0,0,0.00284,0.00284,0.276,0.534,0.187,1,0.325,0.213,0.325,0.325,0.618,0.618,0.0882,0.11,0,1 +0.333,0.17,0.345,0.345,0,0,0.831,0.831,0.831,0.0181,0.00637,0,0,0,0,0,0,0.00852,0.00852,0.287,0.529,0.198,1,0.325,0.275,0.325,0.325,0.515,0.515,0.151,0.188,0,1 +0.333,0.174,0.356,0.356,0,0,0.811,0.811,0.811,0.0207,0,0,0,0,0,0,0,0.00568,0.00568,0.29,0.539,0.222,1,0.335,0.331,0.335,0.335,0.419,0.419,0.365,0.455,0,1 +0.333,0.188,0.434,0.434,0,0.0487,0.87,0.87,0.87,0,0,0.00702,0,0,0,0,0,0.00284,0.00284,0.316,0.549,0.277,1,0.457,0.617,0.457,0.457,0.254,0.254,0.794,0.989,0,1 +0.667,0.395,0.59,0.59,0,0.146,0.949,0.949,0.949,0,0,0.0521,0.0112,0,0,0,0,0.00568,0.00568,0.479,0.672,0.34,1,0.578,0.903,0.578,0.578,0.158,0.158,0.769,0.958,0,1 +0.667,0.507,0.701,0.701,0,0.0609,0.989,0.989,0.989,0,0,0.033,0.00456,0.238,0.238,0,0,0.00284,0.00284,0.553,0.682,0.457,1,0.67,0.645,0.67,0.67,0.0893,0.0893,0.428,0.534,0,1 +1,0.895,0.745,0.745,0,0,0.949,0.949,0.949,0,0,0.0238,0,0.0367,0.0367,0,0,0,0,0.745,0.745,0.64,1,0.771,0.393,0.771,0.771,0.055,0.055,0.384,0.479,0,1 +1,0.928,0.79,0.79,0,0,0.93,0.93,0.93,0,0,0.0332,0,0,0,0,0,0.0114,0.0114,0.79,0.701,0.791,1,0.822,0.247,0.822,0.822,0.0275,0.0275,0.321,0.4,0,1 +1,0.807,0.768,0.768,0,0,0.91,0.91,0.91,0,0,0.00166,0,0,0,0,0.017,0.00852,0.0255,0.768,0.671,0.749,1,0.873,0.107,0.873,0.873,0.0206,0.0206,0.271,0.338,0,1 +1,0.2,0.656,0.656,0,0,0.87,0.87,0.87,0,0,0,0,0,0,0,0.00254,0,0.00254,0.391,0.509,0.453,1,0.761,0.0729,0.761,0.761,0.0206,0.0206,0.151,0.188,0.667,1 +1,0.116,0.556,0.556,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0.0127,0.00284,0.0156,0.357,0.489,0.196,1,0.659,0.0393,0.659,0.659,0.0206,0.0206,0.151,0.188,0.667,1 +1,0.0495,0.445,0.445,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0806,1,0.446,0.0224,0.446,0.446,0.0206,0.0206,0.151,0.188,1,1 +1,0.0495,0.412,0.412,0,0,0.771,0.771,0.771,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.465,0.0392,1,0.233,0.00561,0.233,0.233,0.0206,0.0206,0.183,0.228,1,1 +1,0.0495,0.412,0.412,0,0,0.752,0.752,0.752,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0196,1,0.193,0.00561,0.193,0.193,0.0206,0.0206,0.151,0.188,1,1 +1,0.0495,0.401,0.401,0,0,0.732,0.732,0.732,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0152,1,0.152,0.0112,0.152,0.152,0.0275,0.0275,0.183,0.228,1,1 +1,0.0495,0.367,0.367,0,0,0.712,0.712,0.712,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.024,1,0.162,0.0393,0.162,0.162,0.055,0.055,0.296,0.369,1,1 +1,0.0495,0.401,0.401,0,0,0.712,0.712,0.712,0,0,0,0,0,0,0,0.00242,0,0.00242,0.258,0.465,0.0392,1,0.183,0.0673,0.183,0.183,0.103,0.103,0.422,0.526,1,1 +1,0.147,0.478,0.478,0,0,0.752,0.752,0.752,0,0,0,0,0,0,0,0.0285,0,0.0285,0.331,0.494,0.0632,1,0.264,0.163,0.264,0.264,0.179,0.179,0.359,0.447,0.667,1 +1,0.177,0.523,0.523,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0.0333,0,0.0333,0.346,0.519,0.0871,1,0.335,0.258,0.335,0.335,0.302,0.302,0.151,0.188,0.667,1 +0.667,0.0495,0.378,0.378,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.107,1,0.335,0.247,0.335,0.335,0.577,0.577,0.151,0.188,0.667,1 +0.667,0.185,0.256,0.256,0,0.0731,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0,0,0.257,0.524,0.126,1,0.325,0.23,0.325,0.325,0.831,0.831,0.12,0.149,0.333,1 +0.667,0.181,0.267,0.267,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0.0114,0.0114,0.261,0.524,0.142,1,0.335,0.247,0.335,0.335,0.873,0.873,0.0945,0.118,0.333,1 +0.667,0.175,0.278,0.278,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0.00568,0.00568,0.265,0.529,0.157,1,0.335,0.258,0.335,0.335,0.831,0.831,0.0882,0.11,0.333,1 +0.667,0.171,0.267,0.267,0,0,0.831,0.831,0.831,0,0,0,0,0,0,0,0,0,0,0.261,0.534,0.166,1,0.325,0.236,0.325,0.325,0.824,0.824,0.0882,0.11,0.333,1 +0.667,0.169,0.312,0.312,0,0,0.831,0.831,0.831,0,0,0,0,0,0,0,0,0,0,0.276,0.534,0.187,1,0.325,0.213,0.325,0.325,0.618,0.618,0.0882,0.11,0.333,1 +0.667,0.17,0.345,0.345,0,0,0.831,0.831,0.831,0,0,0,0,0,0,0,0,0.00568,0.00568,0.287,0.529,0.198,1,0.325,0.275,0.325,0.325,0.515,0.515,0.151,0.188,0.333,1 +0.333,0.0495,0.356,0.356,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0.00568,0.00568,0.258,0.465,0.222,1,0.335,0.331,0.335,0.335,0.419,0.419,0.365,0.455,0.333,1 +0.667,0.188,0.434,0.434,0,0,0.87,0.87,0.87,0,0,0,0,0,0,0,0,0,0,0.316,0.549,0.277,1,0.457,0.617,0.457,0.457,0.254,0.254,0.794,0.989,0.333,1 +0.667,0.222,0.59,0.59,0,0,0.949,0.949,0.949,0,0,0,0,0,0,0,0.00241,0.0255,0.028,0.368,0.569,0.34,1,0.578,0.903,0.578,0.578,0.158,0.158,0.769,0.958,0.333,1 +1,0.736,0.701,0.701,0,0.0487,0.989,0.989,0.989,0,0,0,0,0,0,0,0.0474,0,0.0474,0.701,0.79,0.457,1,0.67,0.645,0.67,0.67,0.0893,0.0893,0.428,0.534,0,1 +1,0.895,0.745,0.745,0,0.0731,0.949,0.949,0.949,0,0,0,0,0,0,0,0.0214,0,0.0214,0.745,0.745,0.64,1,0.771,0.393,0.771,0.771,0.055,0.055,0.384,0.479,0,1 +1,0.928,0.79,0.79,0,0.134,0.93,0.93,0.93,0,0,0,0,0,0,0,0.0477,0.00568,0.0534,0.79,0.701,0.791,1,0.822,0.247,0.822,0.822,0.0275,0.0275,0.321,0.4,0,1 +1,0.807,0.768,0.768,0,0,0.91,0.91,0.91,0,0,0,0,0,0,0,0.0261,0.00852,0.0346,0.768,0.671,0.749,1,0.873,0.107,0.873,0.873,0.0206,0.0206,0.271,0.338,0,1 +1,0.5,0.656,0.656,0,0,0.87,0.87,0.87,0,0,0,0,0,0,0,0.0109,0,0.0109,0.656,0.596,0.453,1,0.761,0.0729,0.761,0.761,0.0206,0.0206,0.151,0.188,0,1 +0.667,0.116,0.556,0.556,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0.00568,0.00568,0.357,0.489,0.196,1,0.659,0.0393,0.659,0.659,0.0206,0.0206,0.151,0.188,0.333,1 +0.667,0.0495,0.445,0.445,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.465,0.0806,1,0.446,0.0224,0.446,0.446,0.0206,0.0206,0.151,0.188,0.667,1 +1,0.0578,0.412,0.412,0,0,0.771,0.771,0.771,0,0,0,0,0,0,0,0,0,0,0.309,0.474,0.0392,1,0.233,0.00561,0.233,0.233,0.0206,0.0206,0.183,0.228,0.667,1 +1,0.0495,0.412,0.412,0,0,0.752,0.752,0.752,0,0,0,0,0,0,0,0,0.00568,0.00568,0.309,0.469,0.0196,1,0.193,0.00561,0.193,0.193,0.0206,0.0206,0.151,0.188,0.667,1 +1,0.0495,0.401,0.401,0,0,0.732,0.732,0.732,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0152,1,0.152,0.0112,0.152,0.152,0.0275,0.0275,0.183,0.228,1,1 +1,0.0495,0.367,0.367,0,0,0.712,0.712,0.712,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.024,1,0.162,0.0393,0.162,0.162,0.055,0.055,0.296,0.369,1,1 +1,0.0495,0.401,0.401,0,0,0.712,0.712,0.712,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0392,1,0.183,0.0673,0.183,0.183,0.103,0.103,0.422,0.526,1,1 +1,0.245,0.478,0.478,0,0.11,0.752,0.752,0.752,0,0,0,0,0,0,0,0,0.00284,0.00284,0.405,0.523,0.0632,1,0.264,0.163,0.264,0.264,0.179,0.179,0.359,0.447,0.333,1 +1,0.305,0.523,0.523,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0,0,0.435,0.572,0.0871,1,0.335,0.258,0.335,0.335,0.302,0.302,0.151,0.188,0.333,1 +1,0.318,0.378,0.378,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0,0,0.338,0.582,0.107,1,0.335,0.247,0.335,0.335,0.577,0.577,0.151,0.188,0.333,1 +1,0.321,0.256,0.256,0,0,0.811,0.811,0.811,0.00747,0.0239,0,0,0,0,0,0.0222,0.00284,0.025,0.257,0.582,0.126,1,0.325,0.23,0.325,0.325,0.831,0.831,0.12,0.149,0.333,1 +1,0.443,0.267,0.267,0,0,0.791,0.791,0.791,0.0215,0,0,0,0,0,0,0.0254,0.00852,0.0339,0.267,0.641,0.142,1,0.335,0.247,0.335,0.335,0.873,0.873,0.0945,0.118,0,1 +0.333,0.175,0.278,0.278,0,0,0.791,0.791,0.791,0.0232,0,0,0,0,0,0,0,0.017,0.017,0.265,0.529,0.157,1,0.335,0.258,0.335,0.335,0.831,0.831,0.0882,0.11,0,1 +0.333,0.171,0.267,0.267,0,0,0.831,0.831,0.831,0.0121,0,0,0,0,0,0,0.0123,0,0.0123,0.261,0.534,0.166,1,0.325,0.236,0.325,0.325,0.824,0.824,0.0882,0.11,0,1 +0.333,0.169,0.312,0.312,0,0,0.831,0.831,0.831,0,0,0,0,0,0,0,0,0.0142,0.0142,0.276,0.534,0.187,1,0.325,0.213,0.325,0.325,0.618,0.618,0.0882,0.11,0,1 +0.333,0.17,0.345,0.345,0,0,0.831,0.831,0.831,0,0,0,0,0,0,0,0,0.00852,0.00852,0.287,0.529,0.198,1,0.325,0.275,0.325,0.325,0.515,0.515,0.151,0.188,0,1 +0.333,0.174,0.356,0.356,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0.00284,0.00284,0.29,0.539,0.222,1,0.335,0.331,0.335,0.335,0.419,0.419,0.365,0.455,0,1 +1,0.326,0.434,0.434,0,0,0.87,0.87,0.87,0.0132,0.0239,0,0,0,0,0,0,0.00852,0.00852,0.375,0.632,0.277,1,0.457,0.617,0.457,0.457,0.254,0.254,0.794,0.989,0.333,1 +1,0.567,0.59,0.59,0,0.0366,0.949,0.949,0.949,0,0,0,0,0,0,0,0,0.00568,0.00568,0.59,0.775,0.34,1,0.578,0.903,0.578,0.578,0.158,0.158,0.769,0.958,0,1 +1,0.736,0.701,0.701,0,0,0.989,0.989,0.989,0,0,0,0,0,0,0,0,0.00284,0.00284,0.701,0.79,0.457,1,0.67,0.645,0.67,0.67,0.0893,0.0893,0.428,0.534,0,1 +1,0.895,0.745,0.745,0,0,0.949,0.949,0.949,0,0,0,0,0,0,0,0,0,0,0.745,0.745,0.64,1,0.771,0.393,0.771,0.771,0.055,0.055,0.384,0.479,0,1 +1,0.928,0.79,0.79,0,0.0122,0.93,0.93,0.93,0,0,0,0,0,0,0,0.0233,0.00568,0.029,0.79,0.701,0.791,1,0.822,0.247,0.822,0.822,0.0275,0.0275,0.321,0.4,0,1 +1,0.555,0.768,0.768,0,0.0244,0.91,0.91,0.91,0,0,0,0,0,0,0,0,0,0,0.598,0.602,0.749,1,0.873,0.107,0.873,0.873,0.0206,0.0206,0.271,0.338,0.333,1 +1,0.35,0.656,0.656,0,0,0.87,0.87,0.87,0,0,0,0,0,0,0,0.0412,0.00568,0.0468,0.524,0.553,0.453,1,0.761,0.0729,0.761,0.761,0.0206,0.0206,0.151,0.188,0.333,1 +1,0.0495,0.556,0.556,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0.00568,0.00568,0.258,0.465,0.196,1,0.659,0.0393,0.659,0.659,0.0206,0.0206,0.151,0.188,1,1 +1,0.0495,0.445,0.445,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0958,1,0.446,0.0224,0.446,0.446,0.0206,0.0206,0.151,0.188,1,1 +1,0.0495,0.412,0.412,0,0,0.771,0.771,0.771,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0479,1,0.233,0.00561,0.233,0.233,0.0206,0.0206,0.183,0.228,1,1 +1,0.0495,0.412,0.412,0,0,0.752,0.752,0.752,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0261,1,0.193,0.00561,0.193,0.193,0.0206,0.0206,0.151,0.188,1,1 +1,0.0495,0.401,0.401,0,0,0.732,0.732,0.732,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0174,1,0.152,0.0112,0.152,0.152,0.0275,0.0275,0.183,0.228,1,1 +1,0.0495,0.367,0.367,0,0,0.712,0.712,0.712,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.024,1,0.162,0.0393,0.162,0.162,0.055,0.055,0.296,0.369,1,1 +1,0.0495,0.401,0.401,0,0,0.712,0.712,0.712,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0305,1,0.183,0.0673,0.183,0.183,0.103,0.103,0.422,0.526,1,1 +1,0.147,0.478,0.478,0,0.0853,0.752,0.752,0.752,0,0,0,0,0,0,0,0,0,0,0.331,0.494,0.0523,1,0.264,0.163,0.264,0.264,0.179,0.179,0.359,0.447,0.667,1 +0.667,0.177,0.523,0.523,0,0.0609,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0,0,0.346,0.519,0.0937,1,0.335,0.258,0.335,0.335,0.302,0.302,0.151,0.188,0.333,1 +0.667,0.184,0.378,0.378,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0.00252,0,0.00252,0.298,0.524,0.155,1,0.335,0.247,0.335,0.335,0.577,0.577,0.151,0.188,0.333,1 +0.667,0.185,0.256,0.256,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0.0325,0,0.0325,0.257,0.524,0.205,1,0.325,0.23,0.325,0.325,0.831,0.831,0.12,0.149,0.333,1 +0.333,0.181,0.267,0.267,0,0.0122,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0,0,0.261,0.524,0.244,1,0.335,0.247,0.335,0.335,0.873,0.873,0.0945,0.118,0,1 +0.667,0.3,0.278,0.278,0,0.146,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0.00284,0.00284,0.271,0.592,0.268,1,0.335,0.258,0.335,0.335,0.831,0.831,0.0882,0.11,0,1 +0.667,0.292,0.267,0.267,0,0.0975,0.831,0.831,0.831,0,0,0,0,0,0,0,0.0433,0.00284,0.0461,0.264,0.602,0.288,1,0.325,0.236,0.325,0.325,0.824,0.824,0.0882,0.11,0,1 +0.667,0.289,0.312,0.312,0,0,0.831,0.831,0.831,0,0,0,0,0,0,0,0.0435,0.0114,0.0549,0.294,0.602,0.34,1,0.325,0.213,0.325,0.325,0.618,0.618,0.0882,0.11,0,1 +0.667,0.29,0.345,0.345,0,0,0.831,0.831,0.831,0,0,0,0,0,0,0,0.0113,0.00568,0.0169,0.316,0.592,0.388,1,0.325,0.275,0.325,0.325,0.515,0.515,0.151,0.188,0,1 +0.667,0.298,0.356,0.356,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0,0,0.323,0.612,0.427,1,0.335,0.331,0.335,0.335,0.419,0.419,0.365,0.455,0,1 +0.667,0.326,0.434,0.434,0,0,0.87,0.87,0.87,0,0,0,0,0,0,0,0,0,0,0.375,0.632,0.449,1,0.457,0.617,0.457,0.457,0.254,0.254,0.794,0.989,0,1 +0.667,0.395,0.59,0.59,0,0.0122,0.949,0.949,0.949,0,0,0,0,0,0,0,0,0.0142,0.0142,0.479,0.672,0.464,1,0.578,0.903,0.578,0.578,0.158,0.158,0.769,0.958,0,1 +0.667,0.507,0.701,0.701,0,0.0244,0.989,0.989,0.989,0,0,0,0,0,0,0,0,0.00284,0.00284,0.553,0.682,0.547,1,0.67,0.645,0.67,0.67,0.0893,0.0893,0.428,0.534,0,1 +1,0.895,0.745,0.745,0,0,0.949,0.949,0.949,0,0,0,0,0,0,0,0,0,0,0.745,0.745,0.719,1,0.771,0.393,0.771,0.771,0.055,0.055,0.384,0.479,0,1 +1,0.928,0.79,0.79,0,0,0.93,0.93,0.93,0,0,0,0,0,0,0,0,0.0114,0.0114,0.79,0.701,0.845,1,0.822,0.247,0.822,0.822,0.0275,0.0275,0.321,0.4,0,1 +1,0.807,0.768,0.768,0,0,0.91,0.91,0.91,0,0,0,0,0,0,0,0.00273,0.00568,0.00841,0.768,0.671,0.78,1,0.873,0.107,0.873,0.873,0.0206,0.0206,0.271,0.338,0,1 +1,0.5,0.656,0.656,0,0,0.87,0.87,0.87,0,0,0,0,0,0,0,0.0503,0.00284,0.0532,0.656,0.596,0.492,1,0.761,0.0729,0.761,0.761,0.0206,0.0206,0.151,0.188,0,1 +1,0.183,0.556,0.556,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0.0406,0,0.0406,0.457,0.513,0.224,1,0.659,0.0393,0.659,0.659,0.0206,0.0206,0.151,0.188,0.333,1 +1,0.0495,0.445,0.445,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.465,0.0958,1,0.446,0.0224,0.446,0.446,0.0206,0.0206,0.151,0.188,1,1 +1,0.0495,0.412,0.412,0,0,0.771,0.771,0.771,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0479,1,0.233,0.00561,0.233,0.233,0.0206,0.0206,0.183,0.228,1,1 +1,0.0495,0.412,0.412,0,0,0.752,0.752,0.752,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0261,1,0.193,0.00561,0.193,0.193,0.0206,0.0206,0.151,0.188,1,1 +1,0.0495,0.401,0.401,0,0,0.732,0.732,0.732,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0174,1,0.152,0.0112,0.152,0.152,0.0275,0.0275,0.183,0.228,1,1 +1,0.0495,0.367,0.367,0,0,0.712,0.712,0.712,0,0,0,0,0,0,0,0.00266,0,0.00266,0.258,0.465,0.024,1,0.162,0.0393,0.162,0.162,0.055,0.055,0.296,0.369,1,1 +1,0.0816,0.401,0.401,0,0,0.712,0.712,0.712,0,0,0,0,0,0,0,0.0345,0,0.0345,0.305,0.474,0.0305,1,0.183,0.0673,0.183,0.183,0.103,0.103,0.422,0.526,0.667,1 +0.667,0.0495,0.478,0.478,0,0.0366,0.752,0.752,0.752,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0523,1,0.264,0.163,0.264,0.264,0.179,0.179,0.359,0.447,0.667,1 +1,0.177,0.523,0.523,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0,0,0.346,0.519,0.0937,1,0.335,0.258,0.335,0.335,0.302,0.302,0.151,0.188,0.667,1 +1,0.318,0.378,0.378,0,0.0366,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0,0,0.338,0.582,0.155,1,0.335,0.247,0.335,0.335,0.577,0.577,0.151,0.188,0.333,1 +0.667,0.185,0.256,0.256,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0,0,0.257,0.524,0.205,1,0.325,0.23,0.325,0.325,0.831,0.831,0.12,0.149,0.333,1 +0.667,0.181,0.267,0.267,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0.00568,0.00568,0.261,0.524,0.244,1,0.335,0.247,0.335,0.335,0.873,0.873,0.0945,0.118,0.333,1 +0.667,0.175,0.278,0.278,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0.00266,0,0.00266,0.265,0.529,0.268,1,0.335,0.258,0.335,0.335,0.831,0.831,0.0882,0.11,0.333,1 +0.667,0.292,0.267,0.267,0,0,0.831,0.831,0.831,0,0,0,0,0,0,0,0.0344,0.00568,0.0401,0.264,0.602,0.288,1,0.325,0.236,0.325,0.325,0.824,0.824,0.0882,0.11,0,1 +0.667,0.289,0.312,0.312,0,0.0366,0.831,0.831,0.831,0,0,0,0,0,0,0,0.0401,0,0.0401,0.294,0.602,0.34,1,0.325,0.213,0.325,0.325,0.618,0.618,0.0882,0.11,0,1 +0.667,0.29,0.345,0.345,0,0,0.831,0.831,0.831,0,0,0,0,0,0,0,0.0244,0.0227,0.0472,0.316,0.592,0.388,1,0.325,0.275,0.325,0.325,0.515,0.515,0.151,0.188,0,1 +0.667,0.298,0.356,0.356,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0.0221,0.017,0.0391,0.323,0.612,0.427,1,0.335,0.331,0.335,0.335,0.419,0.419,0.365,0.455,0,1 +0.667,0.326,0.434,0.434,0,0,0.87,0.87,0.87,0,0,0,0,0,0,0,0,0.0227,0.0227,0.375,0.632,0.449,1,0.457,0.617,0.457,0.457,0.254,0.254,0.794,0.989,0,1 +1,0.567,0.59,0.59,0,0,0.949,0.949,0.949,0,0,0,0,0,0,0,0,0.0114,0.0114,0.59,0.775,0.464,1,0.578,0.903,0.578,0.578,0.158,0.158,0.769,0.958,0,1 +1,0.736,0.701,0.701,0,0,0.989,0.989,0.989,0,0,0.028,0.00596,0,0,0,0,0,0,0.701,0.79,0.547,1,0.67,0.645,0.67,0.67,0.0893,0.0893,0.428,0.534,0,1 +1,0.895,0.745,0.745,0,0,0.949,0.949,0.949,0,0,0.0255,0.00982,0.147,0.147,0,0,0,0,0.745,0.745,0.719,1,0.771,0.393,0.771,0.771,0.055,0.055,0.384,0.479,0,1 +1,0.928,0.79,0.79,0,0,0.93,0.93,0.93,0,0,0.0439,0,0.22,0.22,0,0,0.00852,0.00852,0.79,0.701,0.845,1,0.822,0.247,0.822,0.822,0.0275,0.0275,0.321,0.4,0,1 +1,0.807,0.768,0.768,0,0,0.91,0.91,0.91,0,0,0.0167,0,0,0,0,0,0,0,0.768,0.671,0.78,1,0.873,0.107,0.873,0.873,0.0206,0.0206,0.271,0.338,0,1 +1,0.35,0.656,0.656,0,0,0.87,0.87,0.87,0,0,0,0,0,0,0,0,0,0,0.524,0.553,0.492,1,0.761,0.0729,0.761,0.761,0.0206,0.0206,0.151,0.188,0.333,1 +1,0.183,0.556,0.556,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0.0159,0.00284,0.0187,0.457,0.513,0.224,1,0.659,0.0393,0.659,0.659,0.0206,0.0206,0.151,0.188,0.333,1 +1,0.099,0.445,0.445,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0.0763,0,0,0.0763,0.383,0.503,0.0806,1,0.446,0.0224,0.446,0.446,0.0206,0.0206,0.151,0.188,0.333,1 +1,0.0578,0.412,0.412,0,0,0.771,0.771,0.771,0,0,0,0,0,0,0,0,0,0,0.309,0.474,0.0392,1,0.233,0.00561,0.233,0.233,0.0206,0.0206,0.183,0.228,0.667,1 +1,0.0495,0.412,0.412,0,0,0.752,0.752,0.752,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0196,1,0.193,0.00561,0.193,0.193,0.0206,0.0206,0.151,0.188,1,1 +1,0.0495,0.401,0.401,0,0,0.732,0.732,0.732,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0152,1,0.152,0.0112,0.152,0.152,0.0275,0.0275,0.183,0.228,1,1 +1,0.051,0.367,0.367,0,0,0.712,0.712,0.712,0,0,0,0,0,0,0,0,0,0,0.294,0.469,0.024,1,0.162,0.0393,0.162,0.162,0.055,0.055,0.296,0.369,0.667,1 +0.667,0.0495,0.401,0.401,0,0,0.712,0.712,0.712,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0392,1,0.183,0.0673,0.183,0.183,0.103,0.103,0.422,0.526,0.667,1 +0.667,0.147,0.478,0.478,0,0.0122,0.752,0.752,0.752,0,0,0,0,0,0,0,0,0,0,0.331,0.494,0.0632,1,0.264,0.163,0.264,0.264,0.179,0.179,0.359,0.447,0.333,1 +0.667,0.305,0.523,0.523,0,0.0975,0.791,0.791,0.791,0.0156,0.0478,0,0,0,0,0,0.027,0,0.027,0.435,0.572,0.0871,1,0.335,0.258,0.335,0.335,0.302,0.302,0.151,0.188,0,1 +0.333,0.184,0.378,0.378,0,0,0.811,0.811,0.811,0.00461,0,0,0,0,0,0,0.0123,0,0.0123,0.298,0.524,0.107,1,0.335,0.247,0.335,0.335,0.577,0.577,0.151,0.188,0,1 +0.333,0.185,0.256,0.256,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0,0,0.257,0.524,0.126,1,0.325,0.23,0.325,0.325,0.831,0.831,0.12,0.149,0,1 +0.333,0.181,0.267,0.267,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0.0114,0.0114,0.261,0.524,0.142,1,0.335,0.247,0.335,0.335,0.873,0.873,0.0945,0.118,0,1 +0.333,0.175,0.278,0.278,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0,0,0.265,0.529,0.157,1,0.335,0.258,0.335,0.335,0.831,0.831,0.0882,0.11,0,1 +0.333,0.171,0.267,0.267,0,0,0.831,0.831,0.831,0,0,0,0,0,0,0,0.0026,0,0.0026,0.261,0.534,0.166,1,0.325,0.236,0.325,0.325,0.824,0.824,0.0882,0.11,0,1 +0.333,0.169,0.312,0.312,0,0,0.831,0.831,0.831,0,0,0,0,0,0,0,0.0156,0.00568,0.0213,0.276,0.534,0.187,1,0.325,0.213,0.325,0.325,0.618,0.618,0.0882,0.11,0,1 +0.333,0.17,0.345,0.345,0,0,0.831,0.831,0.831,0,0,0,0,0,0,0,0,0.00284,0.00284,0.287,0.529,0.198,1,0.325,0.275,0.325,0.325,0.515,0.515,0.151,0.188,0,1 +0.333,0.174,0.356,0.356,0,0.0731,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0,0,0.29,0.539,0.222,1,0.335,0.331,0.335,0.335,0.419,0.419,0.365,0.455,0,1 +0.333,0.188,0.434,0.434,0,0,0.87,0.87,0.87,0,0,0,0,0,0,0,0,0.00852,0.00852,0.316,0.549,0.277,1,0.457,0.617,0.457,0.457,0.254,0.254,0.794,0.989,0,1 +0.667,0.395,0.59,0.59,0,0,0.949,0.949,0.949,0,0,0,0,0,0,0,0,0,0,0.479,0.672,0.34,1,0.578,0.903,0.578,0.578,0.158,0.158,0.769,0.958,0,1 +0.667,0.507,0.701,0.701,0,0,0.989,0.989,0.989,0,0,0,0,0,0,0,0,0.0255,0.0255,0.553,0.682,0.457,1,0.67,0.645,0.67,0.67,0.0893,0.0893,0.428,0.534,0,1 +1,0.895,0.745,0.745,0,0,0.949,0.949,0.949,0,0,0,0,0,0,0,0.0292,0,0.0292,0.745,0.745,0.64,1,0.771,0.393,0.771,0.771,0.055,0.055,0.384,0.479,0,1 +1,0.928,0.79,0.79,0,0,0.93,0.93,0.93,0.022,0.0478,0,0,0,0,0,0.0363,0.00852,0.0448,0.79,0.701,0.791,1,0.822,0.247,0.822,0.822,0.0275,0.0275,0.321,0.4,0,1 +1,0.807,0.768,0.768,0,0,0.91,0.91,0.91,0.0064,0,0,0,0,0,0,0,0.00284,0.00284,0.768,0.671,0.749,1,0.873,0.107,0.873,0.873,0.0206,0.0206,0.271,0.338,0,1 +1,0.2,0.656,0.656,0,0,0.87,0.87,0.87,0,0,0,0,0,0,0,0,0,0,0.391,0.509,0.453,1,0.761,0.0729,0.761,0.761,0.0206,0.0206,0.151,0.188,0.667,1 +1,0.116,0.556,0.556,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0.00284,0.00284,0.357,0.489,0.196,1,0.659,0.0393,0.659,0.659,0.0206,0.0206,0.151,0.188,0.667,1 +1,0.0495,0.445,0.445,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0806,1,0.446,0.0224,0.446,0.446,0.0206,0.0206,0.151,0.188,1,1 +1,0.0495,0.412,0.412,0,0,0.771,0.771,0.771,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0392,1,0.233,0.00561,0.233,0.233,0.0206,0.0206,0.183,0.228,1,1 +1,0.0495,0.412,0.412,0,0,0.752,0.752,0.752,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0196,1,0.193,0.00561,0.193,0.193,0.0206,0.0206,0.151,0.188,1,1 +1,0.0495,0.401,0.401,0,0,0.732,0.732,0.732,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0152,1,0.152,0.0112,0.152,0.152,0.0275,0.0275,0.183,0.228,1,1 +1,0.0495,0.367,0.367,0,0,0.712,0.712,0.712,0,0,0,0,0,0,0,0.0149,0,0.0149,0.258,0.465,0.024,1,0.162,0.0393,0.162,0.162,0.055,0.055,0.296,0.369,1,1 +1,0.0816,0.401,0.401,0,0,0.712,0.712,0.712,0,0,0,0,0,0,0,0.015,0,0.015,0.305,0.474,0.0392,1,0.183,0.0673,0.183,0.183,0.103,0.103,0.422,0.526,0.667,1 +1,0.342,0.478,0.478,0,0,0.752,0.752,0.752,0,0,0,0,0,0,0.0713,0.0576,0,0.129,0.478,0.551,0.0632,1,0.264,0.163,0.264,0.264,0.179,0.179,0.359,0.447,0,1 +0.667,0.305,0.523,0.523,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0.0601,0,0.0601,0.435,0.572,0.0871,1,0.335,0.258,0.335,0.335,0.302,0.302,0.151,0.188,0,1 +0.333,0.184,0.378,0.378,0,0,0.811,0.811,0.811,0.00466,0.0175,0,0,0,0,0,0,0,0,0.298,0.524,0.107,1,0.335,0.247,0.335,0.335,0.577,0.577,0.151,0.188,0,1 +0.333,0.185,0.256,0.256,0,0,0.811,0.811,0.811,0.023,0.078,0,0,0,0,0,0,0,0,0.257,0.524,0.126,1,0.325,0.23,0.325,0.325,0.831,0.831,0.12,0.149,0,1 +0.333,0.181,0.267,0.267,0,0,0.791,0.791,0.791,0.021,0,0,0,0,0,0,0,0.00284,0.00284,0.261,0.524,0.142,1,0.335,0.247,0.335,0.335,0.873,0.873,0.0945,0.118,0,1 +0.333,0.175,0.278,0.278,0,0,0.791,0.791,0.791,0.0234,0,0,0,0,0,0,0,0.00568,0.00568,0.265,0.529,0.157,1,0.335,0.258,0.335,0.335,0.831,0.831,0.0882,0.11,0,1 +0.333,0.171,0.267,0.267,0,0,0.831,0.831,0.831,0.0135,0,0,0,0,0,0,0,0.00284,0.00284,0.261,0.534,0.166,1,0.325,0.236,0.325,0.325,0.824,0.824,0.0882,0.11,0,1 +0.333,0.169,0.312,0.312,0,0,0.831,0.831,0.831,0,0,0,0,0,0,0,0,0.0199,0.0199,0.276,0.534,0.187,1,0.325,0.213,0.325,0.325,0.618,0.618,0.0882,0.11,0,1 +0.333,0.17,0.345,0.345,0,0.0366,0.831,0.831,0.831,0,0,0,0,0,0,0,0,0.00568,0.00568,0.287,0.529,0.198,1,0.325,0.275,0.325,0.325,0.515,0.515,0.151,0.188,0,1 +0.333,0.0495,0.356,0.356,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0.00568,0.00568,0.258,0.465,0.222,1,0.335,0.331,0.335,0.335,0.419,0.419,0.365,0.455,0.333,1 +0.333,0.188,0.434,0.434,0,0,0.87,0.87,0.87,0,0,0,0,0,0,0,0.00271,0,0.00271,0.316,0.549,0.277,1,0.457,0.617,0.457,0.457,0.254,0.254,0.794,0.989,0,1 +0.667,0.395,0.59,0.59,0,0,0.949,0.949,0.949,0,0,0,0,0,0,0,0.0472,0.00852,0.0557,0.479,0.672,0.34,1,0.578,0.903,0.578,0.578,0.158,0.158,0.769,0.958,0,1 +1,0.736,0.701,0.701,0,0,0.989,0.989,0.989,0,0,0,0,0,0,0,0.0091,0,0.0091,0.701,0.79,0.457,1,0.67,0.645,0.67,0.67,0.0893,0.0893,0.428,0.534,0,1 +1,0.895,0.745,0.745,0,0,0.949,0.949,0.949,0.0109,0.0414,0.0257,0.000702,0,0,0,0,0,0,0.745,0.745,0.64,1,0.771,0.393,0.771,0.771,0.055,0.055,0.384,0.479,0,1 +1,0.928,0.79,0.79,0,0,0.93,0.93,0.93,0.00359,0.00637,0.0439,0.0151,0.055,0.055,0,0,0.00568,0.00568,0.79,0.701,0.791,1,0.822,0.247,0.822,0.822,0.0275,0.0275,0.321,0.4,0,1 +1,0.302,0.768,0.768,0,0,0.91,0.91,0.91,0,0,0.0479,0,0.367,0.367,0,0,0,0,0.428,0.534,0.749,1,0.873,0.107,0.873,0.873,0.0206,0.0206,0.271,0.338,0.667,1 +1,0.2,0.656,0.656,0,0,0.87,0.87,0.87,0,0,0.00585,0,0.0367,0.0367,0,0,0.00284,0.00284,0.391,0.509,0.453,1,0.761,0.0729,0.761,0.761,0.0206,0.0206,0.151,0.188,0.667,1 +1,0.0495,0.556,0.556,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0.0142,0.0142,0.258,0.465,0.196,1,0.659,0.0393,0.659,0.659,0.0206,0.0206,0.151,0.188,1,1 +1,0.0495,0.445,0.445,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0.00568,0.00568,0.258,0.465,0.0806,1,0.446,0.0224,0.446,0.446,0.0206,0.0206,0.151,0.188,1,1 +1,0.0495,0.412,0.412,0,0,0.771,0.771,0.771,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0392,1,0.233,0.00561,0.233,0.233,0.0206,0.0206,0.183,0.228,1,1 +1,0.0495,0.412,0.412,0,0,0.752,0.752,0.752,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0196,1,0.193,0.00561,0.193,0.193,0.0206,0.0206,0.151,0.188,1,1 +1,0.0495,0.401,0.401,0,0,0.732,0.732,0.732,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0152,1,0.152,0.0112,0.152,0.152,0.0275,0.0275,0.183,0.228,1,1 +1,0.0495,0.367,0.367,0,0,0.712,0.712,0.712,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.024,1,0.162,0.0393,0.162,0.162,0.055,0.055,0.296,0.369,1,1 +1,0.0816,0.401,0.401,0,0,0.712,0.712,0.712,0,0,0,0,0,0,0,0.0342,0,0.0342,0.305,0.474,0.0392,1,0.183,0.0673,0.183,0.183,0.103,0.103,0.422,0.526,0.667,1 +1,0.342,0.478,0.478,0,0,0.752,0.752,0.752,0,0,0,0,0,0,0,0.0208,0,0.0208,0.478,0.551,0.0632,1,0.264,0.163,0.264,0.264,0.179,0.179,0.359,0.447,0,1 +0.333,0.177,0.523,0.523,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0.0692,0.0228,0,0.0921,0.346,0.519,0.0871,1,0.335,0.258,0.335,0.335,0.302,0.302,0.151,0.188,0,1 +0.333,0.184,0.378,0.378,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0,0,0.298,0.524,0.107,1,0.335,0.247,0.335,0.335,0.577,0.577,0.151,0.188,0,1 +0.333,0.185,0.256,0.256,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0.00284,0.00284,0.257,0.524,0.126,1,0.325,0.23,0.325,0.325,0.831,0.831,0.12,0.149,0,1 +0.333,0.181,0.267,0.267,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0.0255,0.0255,0.261,0.524,0.142,1,0.335,0.247,0.335,0.335,0.873,0.873,0.0945,0.118,0,1 +0.333,0.175,0.278,0.278,0,0.0853,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0,0,0.265,0.529,0.157,1,0.335,0.258,0.335,0.335,0.831,0.831,0.0882,0.11,0,1 +0.333,0.171,0.267,0.267,0,0.0609,0.831,0.831,0.831,0,0,0,0,0,0,0,0,0.00284,0.00284,0.261,0.534,0.166,1,0.325,0.236,0.325,0.325,0.824,0.824,0.0882,0.11,0,1 +0.333,0.169,0.312,0.312,0,0,0.831,0.831,0.831,0.0161,0.0653,0.0135,0,0,0,0,0,0,0,0.276,0.534,0.187,1,0.325,0.213,0.325,0.325,0.618,0.618,0.0882,0.11,0,1 +0.333,0.17,0.345,0.345,0,0,0.831,0.831,0.831,0.0156,0.00637,0.0216,0.0158,0,0,0,0,0.00284,0.00284,0.287,0.529,0.198,1,0.325,0.275,0.325,0.325,0.515,0.515,0.151,0.188,0,1 +0.333,0.174,0.356,0.356,0,0,0.811,0.811,0.811,0,0,0.026,0,0.275,0.275,0,0,0.00568,0.00568,0.29,0.539,0.222,1,0.335,0.331,0.335,0.335,0.419,0.419,0.365,0.455,0,1 +0.333,0.188,0.434,0.434,0,0,0.87,0.87,0.87,0,0,0.0112,0,0,0,0,0.0193,0.0114,0.0307,0.316,0.549,0.277,1,0.457,0.617,0.457,0.457,0.254,0.254,0.794,0.989,0,1 +1,0.395,0.59,0.59,0,0,0.949,0.949,0.949,0,0,0,0,0,0,0,0,0.0142,0.0142,0.479,0.672,0.34,1,0.578,0.903,0.578,0.578,0.158,0.158,0.769,0.958,0.333,1 +0.667,0.278,0.701,0.701,0,0,0.989,0.989,0.989,0,0,0,0,0,0,0,0.00236,0.0199,0.0222,0.405,0.574,0.457,1,0.67,0.645,0.67,0.67,0.0893,0.0893,0.428,0.534,0.333,1 +1,0.895,0.745,0.745,0,0,0.949,0.949,0.949,0.0162,0.0653,0,0,0,0,0,0.0287,0.00284,0.0316,0.745,0.745,0.64,1,0.771,0.393,0.771,0.771,0.055,0.055,0.384,0.479,0,1 +1,0.928,0.79,0.79,0,0,0.93,0.93,0.93,0.0227,0.00637,0.0135,0,0,0,0,0.0027,0,0.0027,0.79,0.701,0.791,1,0.822,0.247,0.822,0.822,0.0275,0.0275,0.321,0.4,0,1 +1,0.807,0.768,0.768,0,0,0.91,0.91,0.91,0.00865,0,0.00702,0.0165,0,0,0,0.0337,0.00284,0.0366,0.768,0.671,0.749,1,0.873,0.107,0.873,0.873,0.0206,0.0206,0.271,0.338,0,1 +1,0.35,0.656,0.656,0,0,0.87,0.87,0.87,0,0,0,0.00456,0.238,0.238,0,0.0292,0,0.0292,0.524,0.553,0.453,1,0.761,0.0729,0.761,0.761,0.0206,0.0206,0.151,0.188,0.333,1 +1,0.0495,0.556,0.556,0,0,0.811,0.811,0.811,0,0,0,0,0.0367,0.0367,0,0.00258,0,0.00258,0.258,0.465,0.196,1,0.659,0.0393,0.659,0.659,0.0206,0.0206,0.151,0.188,1,1 +1,0.0743,0.445,0.445,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0.0455,0,0.0455,0.32,0.484,0.0806,1,0.446,0.0224,0.446,0.446,0.0206,0.0206,0.151,0.188,0.667,1 +1,0.0578,0.412,0.412,0,0,0.771,0.771,0.771,0,0,0,0,0,0,0,0,0,0,0.309,0.474,0.0392,1,0.233,0.00561,0.233,0.233,0.0206,0.0206,0.183,0.228,0.667,1 +1,0.0495,0.412,0.412,0,0,0.752,0.752,0.752,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0196,1,0.193,0.00561,0.193,0.193,0.0206,0.0206,0.151,0.188,1,1 +1,0.0495,0.401,0.401,0,0,0.732,0.732,0.732,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0152,1,0.152,0.0112,0.152,0.152,0.0275,0.0275,0.183,0.228,1,1 +1,0.0495,0.367,0.367,0,0,0.712,0.712,0.712,0,0,0,0,0,0,0,0,0.0114,0.0114,0.258,0.465,0.024,1,0.162,0.0393,0.162,0.162,0.055,0.055,0.296,0.369,1,1 +1,0.0495,0.401,0.401,0,0,0.712,0.712,0.712,0,0,0,0,0,0,0,0.00247,0,0.00247,0.258,0.465,0.0392,1,0.183,0.0673,0.183,0.183,0.103,0.103,0.422,0.526,1,1 +1,0.147,0.478,0.478,0,0,0.752,0.752,0.752,0,0,0,0,0,0,0,0.0347,0,0.0347,0.331,0.494,0.0632,1,0.264,0.163,0.264,0.264,0.179,0.179,0.359,0.447,0.667,1 +0.333,0.177,0.523,0.523,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0,0,0.346,0.519,0.0871,1,0.335,0.258,0.335,0.335,0.302,0.302,0.151,0.188,0,1 +0.333,0.184,0.378,0.378,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0,0,0.298,0.524,0.107,1,0.335,0.247,0.335,0.335,0.577,0.577,0.151,0.188,0,1 +0.333,0.185,0.256,0.256,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0,0,0.257,0.524,0.126,1,0.325,0.23,0.325,0.325,0.831,0.831,0.12,0.149,0,1 +0.333,0.181,0.267,0.267,0,0,0.791,0.791,0.791,0,0,0.00536,0,0,0,0,0,0.0142,0.0142,0.261,0.524,0.142,1,0.335,0.247,0.335,0.335,0.873,0.873,0.0945,0.118,0,1 +0.333,0.175,0.278,0.278,0,0,0.791,0.791,0.791,0,0,0.0363,0.0112,0,0,0,0,0.00568,0.00568,0.265,0.529,0.157,1,0.335,0.258,0.335,0.335,0.831,0.831,0.0882,0.11,0,1 +0.667,0.292,0.267,0.267,0,0,0.831,0.831,0.831,0,0,0.0222,0.00456,0.238,0.238,0,0,0.00284,0.00284,0.264,0.602,0.166,1,0.325,0.236,0.325,0.325,0.824,0.824,0.0882,0.11,0,1 +0.667,0.289,0.312,0.312,0,0,0.831,0.831,0.831,0,0,0,0,0.22,0.22,0,0.00266,0,0.00266,0.294,0.602,0.187,1,0.325,0.213,0.325,0.325,0.618,0.618,0.0882,0.11,0,1 +0.667,0.17,0.345,0.345,0,0,0.831,0.831,0.831,0,0,0,0,0,0,0,0.0213,0.00852,0.0298,0.287,0.529,0.198,1,0.325,0.275,0.325,0.325,0.515,0.515,0.151,0.188,0.333,1 +0.667,0.0495,0.356,0.356,0,0.0122,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.465,0.222,1,0.335,0.331,0.335,0.335,0.419,0.419,0.365,0.455,0.667,1 +0.667,0.188,0.434,0.434,0,0.0609,0.87,0.87,0.87,0,0,0,0,0,0,0,0,0.0114,0.0114,0.316,0.549,0.277,1,0.457,0.617,0.457,0.457,0.254,0.254,0.794,0.989,0.333,1 +0.667,0.222,0.59,0.59,0,0,0.949,0.949,0.949,0,0,0,0,0,0,0,0,0,0,0.368,0.569,0.34,1,0.578,0.903,0.578,0.578,0.158,0.158,0.769,0.958,0.333,1 +0.333,0.278,0.701,0.701,0,0.0853,0.989,0.989,0.989,0,0,0,0,0,0,0,0.0301,0,0.0301,0.405,0.574,0.457,1,0.67,0.645,0.67,0.67,0.0893,0.0893,0.428,0.534,0,1 +1,0.895,0.745,0.745,0,0.134,0.949,0.949,0.949,0,0,0,0,0,0,0,0,0.00852,0.00852,0.745,0.745,0.64,1,0.771,0.393,0.771,0.771,0.055,0.055,0.384,0.479,0,1 +1,0.928,0.79,0.79,0,0,0.93,0.93,0.93,0,0,0,0,0,0,0,0,0.00284,0.00284,0.79,0.701,0.791,1,0.822,0.247,0.822,0.822,0.0275,0.0275,0.321,0.4,0,1 +1,0.555,0.768,0.768,0,0,0.91,0.91,0.91,0,0,0,0,0,0,0,0,0.00852,0.00852,0.598,0.602,0.749,1,0.873,0.107,0.873,0.873,0.0206,0.0206,0.271,0.338,0.333,1 +1,0.2,0.656,0.656,0,0,0.87,0.87,0.87,0,0,0,0,0,0,0,0,0.00852,0.00852,0.391,0.509,0.453,1,0.761,0.0729,0.761,0.761,0.0206,0.0206,0.151,0.188,0.667,1 +1,0.0495,0.556,0.556,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.196,1,0.659,0.0393,0.659,0.659,0.0206,0.0206,0.151,0.188,1,1 +1,0.0495,0.445,0.445,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0806,1,0.446,0.0224,0.446,0.446,0.0206,0.0206,0.151,0.188,1,1 +1,0.0495,0.412,0.412,0,0,0.771,0.771,0.771,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0392,1,0.233,0.00561,0.233,0.233,0.0206,0.0206,0.183,0.228,1,1 +1,0.0495,0.412,0.412,0,0,0.752,0.752,0.752,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0196,1,0.193,0.00561,0.193,0.193,0.0206,0.0206,0.151,0.188,1,1 +1,0.0495,0.401,0.401,0,0,0.732,0.732,0.732,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0152,1,0.152,0.0112,0.152,0.152,0.0275,0.0275,0.183,0.228,1,1 +1,0.0495,0.367,0.367,0,0,0.712,0.712,0.712,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.024,1,0.162,0.0393,0.162,0.162,0.055,0.055,0.296,0.369,1,1 +1,0.0495,0.401,0.401,0,0,0.712,0.712,0.712,0,0,0,0,0,0,0,0.00263,0,0.00263,0.258,0.465,0.0392,1,0.183,0.0673,0.183,0.183,0.103,0.103,0.422,0.526,1,1 +1,0.147,0.478,0.478,0,0,0.752,0.752,0.752,0,0,0,0,0,0,0,0.0174,0,0.0174,0.331,0.494,0.0632,1,0.264,0.163,0.264,0.264,0.179,0.179,0.359,0.447,0.667,1 +1,0.177,0.523,0.523,0,0.0122,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0,0,0.346,0.519,0.0871,1,0.335,0.258,0.335,0.335,0.302,0.302,0.151,0.188,0.667,1 +0.333,0.0495,0.378,0.378,0,0.0609,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.107,1,0.335,0.247,0.335,0.335,0.577,0.577,0.151,0.188,0.333,1 +0.333,0.0495,0.256,0.256,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.126,1,0.325,0.23,0.325,0.325,0.831,0.831,0.12,0.149,0.333,1 +0.333,0.0495,0.267,0.267,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0.00568,0.00568,0.258,0.465,0.142,1,0.335,0.247,0.335,0.335,0.873,0.873,0.0945,0.118,0.333,1 +0.333,0.175,0.278,0.278,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0.0199,0.0199,0.265,0.529,0.157,1,0.335,0.258,0.335,0.335,0.831,0.831,0.0882,0.11,0,1 +0.333,0.171,0.267,0.267,0,0,0.831,0.831,0.831,0,0,0,0,0,0,0,0,0,0,0.261,0.534,0.166,1,0.325,0.236,0.325,0.325,0.824,0.824,0.0882,0.11,0,1 +0.333,0.169,0.312,0.312,0,0,0.831,0.831,0.831,0,0,0,0,0,0,0,0,0,0,0.276,0.534,0.187,1,0.325,0.213,0.325,0.325,0.618,0.618,0.0882,0.11,0,1 +0.333,0.17,0.345,0.345,0,0,0.831,0.831,0.831,0,0,0,0,0,0,0,0,0,0,0.287,0.529,0.198,1,0.325,0.275,0.325,0.325,0.515,0.515,0.151,0.188,0,1 +0.667,0.298,0.356,0.356,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0.0227,0.0227,0.323,0.612,0.222,1,0.335,0.331,0.335,0.335,0.419,0.419,0.365,0.455,0,1 +0,0.0495,0.434,0.434,0,0,0.87,0.87,0.87,0.00713,0.0175,0,0,0,0,0,0,0.00284,0.00284,0.258,0.465,0.277,1,0.457,0.617,0.457,0.457,0.254,0.254,0.794,0.989,0,1 +0.333,0.222,0.59,0.59,0,0,0.949,0.949,0.949,0.022,0.078,0,0,0,0,0,0.00259,0.00284,0.00542,0.368,0.569,0.34,1,0.578,0.903,0.578,0.578,0.158,0.158,0.769,0.958,0,1 +0.667,0.507,0.701,0.701,0,0,0.989,0.989,0.989,0.0205,0,0,0,0,0,0,0.0427,0.0114,0.054,0.553,0.682,0.457,1,0.67,0.645,0.67,0.67,0.0893,0.0893,0.428,0.534,0,1 +1,0.895,0.745,0.745,0,0,0.949,0.949,0.949,0.00612,0,0,0,0,0,0,0,0.0114,0.0114,0.745,0.745,0.64,1,0.771,0.393,0.771,0.771,0.055,0.055,0.384,0.479,0,1 +1,0.928,0.79,0.79,0,0,0.93,0.93,0.93,0,0,0,0,0,0,0,0,0.00284,0.00284,0.79,0.701,0.791,1,0.822,0.247,0.822,0.822,0.0275,0.0275,0.321,0.4,0,1 +1,0.555,0.768,0.768,0,0,0.91,0.91,0.91,0.00674,0.0414,0,0,0,0,0,0,0.00284,0.00284,0.598,0.602,0.749,1,0.873,0.107,0.873,0.873,0.0206,0.0206,0.271,0.338,0.333,1 +0.667,0.0495,0.656,0.656,0,0,0.87,0.87,0.87,0.0202,0.00637,0,0,0,0,0,0,0,0,0.258,0.465,0.453,1,0.761,0.0729,0.761,0.761,0.0206,0.0206,0.151,0.188,0.667,1 +0.667,0.0495,0.556,0.556,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0.0114,0.0114,0.258,0.465,0.196,1,0.659,0.0393,0.659,0.659,0.0206,0.0206,0.151,0.188,0.667,1 +0.667,0.0495,0.445,0.445,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0.00568,0.00568,0.258,0.465,0.0958,1,0.446,0.0224,0.446,0.446,0.0206,0.0206,0.151,0.188,0.667,1 +0.667,0.0495,0.412,0.412,0,0,0.771,0.771,0.771,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0479,1,0.233,0.00561,0.233,0.233,0.0206,0.0206,0.183,0.228,0.667,1 +0.667,0.0495,0.412,0.412,0,0,0.752,0.752,0.752,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0261,1,0.193,0.00561,0.193,0.193,0.0206,0.0206,0.151,0.188,0.667,1 +0.667,0.0495,0.401,0.401,0,0,0.732,0.732,0.732,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0174,1,0.152,0.0112,0.152,0.152,0.0275,0.0275,0.183,0.228,0.667,1 +1,0.0495,0.367,0.367,0,0,0.712,0.712,0.712,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.024,1,0.162,0.0393,0.162,0.162,0.055,0.055,0.296,0.369,1,1 +1,0.0495,0.401,0.401,0,0,0.712,0.712,0.712,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0305,1,0.183,0.0673,0.183,0.183,0.103,0.103,0.422,0.526,1,1 +1,0.0495,0.478,0.478,0,0,0.752,0.752,0.752,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0523,1,0.264,0.163,0.264,0.264,0.179,0.179,0.359,0.447,1,1 +1,0.0495,0.523,0.523,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0937,1,0.335,0.258,0.335,0.335,0.302,0.302,0.151,0.188,1,1 +1,0.184,0.378,0.378,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0,0,0.298,0.524,0.155,1,0.335,0.247,0.335,0.335,0.577,0.577,0.151,0.188,0.667,1 +1,0.185,0.256,0.256,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0,0,0.257,0.524,0.205,1,0.325,0.23,0.325,0.325,0.831,0.831,0.12,0.149,0.667,1 +0.667,0.181,0.267,0.267,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0,0,0.261,0.524,0.244,1,0.335,0.247,0.335,0.335,0.873,0.873,0.0945,0.118,0.333,1 +0.667,0.175,0.278,0.278,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0,0,0.265,0.529,0.268,1,0.335,0.258,0.335,0.335,0.831,0.831,0.0882,0.11,0.333,1 +0.667,0.171,0.267,0.267,0,0,0.831,0.831,0.831,0,0,0,0,0,0,0,0,0.0199,0.0199,0.261,0.534,0.288,1,0.325,0.236,0.325,0.325,0.824,0.824,0.0882,0.11,0.333,1 +0.333,0.0495,0.312,0.312,0,0,0.831,0.831,0.831,0,0,0,0,0,0,0,0,0.00852,0.00852,0.258,0.465,0.34,1,0.325,0.213,0.325,0.325,0.618,0.618,0.0882,0.11,0.333,1 +0.667,0.17,0.345,0.345,0,0,0.831,0.831,0.831,0,0,0,0,0,0,0,0,0,0,0.287,0.529,0.388,1,0.325,0.275,0.325,0.325,0.515,0.515,0.151,0.188,0.333,1 +0.667,0.298,0.356,0.356,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0,0,0.323,0.612,0.427,1,0.335,0.331,0.335,0.335,0.419,0.419,0.365,0.455,0,1 +0.667,0.326,0.434,0.434,0,0,0.87,0.87,0.87,0,0,0,0,0,0,0,0,0.00568,0.00568,0.375,0.632,0.449,1,0.457,0.617,0.457,0.457,0.254,0.254,0.794,0.989,0,1 +1,0.395,0.59,0.59,0,0,0.949,0.949,0.949,0,0,0,0,0,0,0,0.0146,0,0.0146,0.479,0.672,0.464,1,0.578,0.903,0.578,0.578,0.158,0.158,0.769,0.958,0.333,1 +1,0.507,0.701,0.701,0,0,0.989,0.989,0.989,0,0,0,0,0,0,0,0.028,0.0114,0.0394,0.553,0.682,0.547,1,0.67,0.645,0.67,0.67,0.0893,0.0893,0.428,0.534,0.333,1 +1,0.895,0.745,0.745,0,0.0853,0.949,0.949,0.949,0,0,0,0,0,0,0,0,0.017,0.017,0.745,0.745,0.719,1,0.771,0.393,0.771,0.771,0.055,0.055,0.384,0.479,0,1 +1,0.928,0.79,0.79,0,0.146,0.93,0.93,0.93,0,0,0,0,0,0,0,0,0,0,0.79,0.701,0.845,1,0.822,0.247,0.822,0.822,0.0275,0.0275,0.321,0.4,0,1 +1,0.807,0.768,0.768,0,0.146,0.91,0.91,0.91,0,0,0,0,0,0,0,0,0,0,0.768,0.671,0.78,1,0.873,0.107,0.873,0.873,0.0206,0.0206,0.271,0.338,0,1 +1,0.35,0.656,0.656,0,0.146,0.87,0.87,0.87,0,0,0,0,0,0,0,0,0.00284,0.00284,0.524,0.553,0.492,1,0.761,0.0729,0.761,0.761,0.0206,0.0206,0.151,0.188,0.333,1 +1,0.183,0.556,0.556,0,0.0244,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0.00568,0.00568,0.457,0.513,0.224,1,0.659,0.0393,0.659,0.659,0.0206,0.0206,0.151,0.188,0.333,1 +1,0.0495,0.445,0.445,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.465,0.0958,1,0.446,0.0224,0.446,0.446,0.0206,0.0206,0.151,0.188,1,1 +1,0.0495,0.412,0.412,0,0,0.771,0.771,0.771,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0479,1,0.233,0.00561,0.233,0.233,0.0206,0.0206,0.183,0.228,1,1 +1,0.0495,0.412,0.412,0,0,0.752,0.752,0.752,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0261,1,0.193,0.00561,0.193,0.193,0.0206,0.0206,0.151,0.188,1,1 +1,0.0495,0.401,0.401,0,0,0.732,0.732,0.732,0,0,0,0,0,0,0,0,0.0114,0.0114,0.258,0.465,0.0174,1,0.152,0.0112,0.152,0.152,0.0275,0.0275,0.183,0.228,1,1 +1,0.0495,0.367,0.367,0,0,0.712,0.712,0.712,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.024,1,0.162,0.0393,0.162,0.162,0.055,0.055,0.296,0.369,1,1 +1,0.0495,0.401,0.401,0,0,0.712,0.712,0.712,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0305,1,0.183,0.0673,0.183,0.183,0.103,0.103,0.422,0.526,1,1 +0.667,0.0495,0.478,0.478,0,0,0.752,0.752,0.752,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0523,1,0.264,0.163,0.264,0.264,0.179,0.179,0.359,0.447,0.667,1 +0.667,0.0495,0.523,0.523,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0937,1,0.335,0.258,0.335,0.335,0.302,0.302,0.151,0.188,0.667,1 +0.667,0.0495,0.378,0.378,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.155,1,0.335,0.247,0.335,0.335,0.577,0.577,0.151,0.188,0.667,1 +0.333,0.185,0.256,0.256,0,0.0487,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0,0,0.257,0.524,0.205,1,0.325,0.23,0.325,0.325,0.831,0.831,0.12,0.149,0,1 +0.667,0.312,0.267,0.267,0,0.0244,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0,0,0.264,0.582,0.244,1,0.335,0.247,0.335,0.335,0.873,0.873,0.0945,0.118,0,1 +0.333,0.175,0.278,0.278,0,0,0.791,0.791,0.791,0.0209,0.0478,0,0,0,0,0,0,0,0,0.265,0.529,0.268,1,0.335,0.258,0.335,0.335,0.831,0.831,0.0882,0.11,0,1 +0.333,0.171,0.267,0.267,0,0,0.831,0.831,0.831,0.0236,0,0,0,0,0,0,0,0,0,0.261,0.534,0.288,1,0.325,0.236,0.325,0.325,0.824,0.824,0.0882,0.11,0,1 +0.667,0.289,0.312,0.312,0,0,0.831,0.831,0.831,0.017,0,0,0,0,0,0,0,0.00852,0.00852,0.294,0.602,0.34,1,0.325,0.213,0.325,0.325,0.618,0.618,0.0882,0.11,0,1 +0.333,0.17,0.345,0.345,0,0,0.831,0.831,0.831,0,0,0,0,0,0,0,0,0.0142,0.0142,0.287,0.529,0.388,1,0.325,0.275,0.325,0.325,0.515,0.515,0.151,0.188,0,1 +0.333,0.174,0.356,0.356,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0,0,0.29,0.539,0.427,1,0.335,0.331,0.335,0.335,0.419,0.419,0.365,0.455,0,1 +0.667,0.326,0.434,0.434,0,0,0.87,0.87,0.87,0,0,0,0,0,0,0,0,0.00852,0.00852,0.375,0.632,0.449,1,0.457,0.617,0.457,0.457,0.254,0.254,0.794,0.989,0,1 +1,0.567,0.59,0.59,0,0,0.949,0.949,0.949,0,0,0,0,0,0,0,0.0152,0.00568,0.0209,0.59,0.775,0.464,1,0.578,0.903,0.578,0.578,0.158,0.158,0.769,0.958,0,1 +1,0.736,0.701,0.701,0,0,0.989,0.989,0.989,0,0,0,0,0,0,0,0,0.00284,0.00284,0.701,0.79,0.547,1,0.67,0.645,0.67,0.67,0.0893,0.0893,0.428,0.534,0,1 +0.667,0.331,0.745,0.745,0,0.0366,0.949,0.949,0.949,0,0,0,0,0,0,0,0,0.00852,0.00852,0.42,0.559,0.719,1,0.771,0.393,0.771,0.771,0.055,0.055,0.384,0.479,0.333,1 +0.667,0.342,0.79,0.79,0,0,0.93,0.93,0.93,0,0,0,0,0,0,0,0,0.0199,0.0199,0.435,0.544,0.845,1,0.822,0.247,0.822,0.822,0.0275,0.0275,0.321,0.4,0.333,1 +1,0.555,0.768,0.768,0,0,0.91,0.91,0.91,0,0,0,0,0,0,0,0,0.00852,0.00852,0.598,0.602,0.78,1,0.873,0.107,0.873,0.873,0.0206,0.0206,0.271,0.338,0.333,1 +1,0.35,0.656,0.656,0,0,0.87,0.87,0.87,0,0,0,0,0,0,0,0,0,0,0.524,0.553,0.492,1,0.761,0.0729,0.761,0.761,0.0206,0.0206,0.151,0.188,0.333,1 +1,0.116,0.556,0.556,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0,0,0.357,0.489,0.224,1,0.659,0.0393,0.659,0.659,0.0206,0.0206,0.151,0.188,0.667,1 +1,0.0743,0.445,0.445,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0,0,0.32,0.484,0.0806,1,0.446,0.0224,0.446,0.446,0.0206,0.0206,0.151,0.188,0.667,1 +1,0.0578,0.412,0.412,0,0,0.771,0.771,0.771,0,0,0,0,0,0,0,0,0,0,0.309,0.474,0.0392,1,0.233,0.00561,0.233,0.233,0.0206,0.0206,0.183,0.228,0.667,1 +1,0.0495,0.412,0.412,0,0,0.752,0.752,0.752,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.465,0.0196,1,0.193,0.00561,0.193,0.193,0.0206,0.0206,0.151,0.188,1,1 +1,0.0495,0.401,0.401,0,0,0.732,0.732,0.732,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0152,1,0.152,0.0112,0.152,0.152,0.0275,0.0275,0.183,0.228,1,1 +1,0.0495,0.367,0.367,0,0,0.712,0.712,0.712,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.024,1,0.162,0.0393,0.162,0.162,0.055,0.055,0.296,0.369,1,1 +1,0.0495,0.401,0.401,0,0,0.712,0.712,0.712,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0392,1,0.183,0.0673,0.183,0.183,0.103,0.103,0.422,0.526,1,1 +1,0.0495,0.478,0.478,0,0,0.752,0.752,0.752,0,0,0,0,0,0,0,0.0247,0,0.0247,0.258,0.465,0.0632,1,0.264,0.163,0.264,0.264,0.179,0.179,0.359,0.447,1,1 +1,0.177,0.523,0.523,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0.095,0.0131,0,0.108,0.346,0.519,0.0871,1,0.335,0.258,0.335,0.335,0.302,0.302,0.151,0.188,0.667,1 +0.667,0.318,0.378,0.378,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0.016,0,0.016,0.338,0.582,0.107,1,0.335,0.247,0.335,0.335,0.577,0.577,0.151,0.188,0,1 +0.333,0.185,0.256,0.256,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0,0,0.257,0.524,0.126,1,0.325,0.23,0.325,0.325,0.831,0.831,0.12,0.149,0,1 +0.333,0.0495,0.267,0.267,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.142,1,0.335,0.247,0.335,0.335,0.873,0.873,0.0945,0.118,0.333,1 +0.667,0.175,0.278,0.278,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0.00247,0.00852,0.011,0.265,0.529,0.157,1,0.335,0.258,0.335,0.335,0.831,0.831,0.0882,0.11,0.333,1 +0.333,0.171,0.267,0.267,0,0.0366,0.831,0.831,0.831,0,0,0,0,0,0,0,0.0197,0.00568,0.0254,0.261,0.534,0.166,1,0.325,0.236,0.325,0.325,0.824,0.824,0.0882,0.11,0,1 +0.667,0.289,0.312,0.312,0,0,0.831,0.831,0.831,0,0,0,0,0,0,0,0,0,0,0.294,0.602,0.187,1,0.325,0.213,0.325,0.325,0.618,0.618,0.0882,0.11,0,1 +0.667,0.29,0.345,0.345,0,0,0.831,0.831,0.831,0,0,0,0,0,0,0,0,0,0,0.316,0.592,0.198,1,0.325,0.275,0.325,0.325,0.515,0.515,0.151,0.188,0,1 +0.667,0.298,0.356,0.356,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0,0,0.323,0.612,0.222,1,0.335,0.331,0.335,0.335,0.419,0.419,0.365,0.455,0,1 +0.667,0.326,0.434,0.434,0,0,0.87,0.87,0.87,0,0,0,0,0,0,0,0,0.0142,0.0142,0.375,0.632,0.277,1,0.457,0.617,0.457,0.457,0.254,0.254,0.794,0.989,0,1 +0.667,0.395,0.59,0.59,0,0,0.949,0.949,0.949,0,0,0.0355,0.00596,0,0,0,0,0.0114,0.0114,0.479,0.672,0.34,1,0.578,0.903,0.578,0.578,0.158,0.158,0.769,0.958,0,1 +1,0.736,0.701,0.701,0,0,0.989,0.989,0.989,0.005,0.0175,0.0137,0.00982,0.147,0.147,0,0,0.00852,0.00852,0.701,0.79,0.457,1,0.67,0.645,0.67,0.67,0.0893,0.0893,0.428,0.534,0,1 +1,0.895,0.745,0.745,0,0,0.949,0.949,0.949,0.0119,0.078,0,0,0.22,0.22,0,0.0341,0.00852,0.0426,0.745,0.745,0.64,1,0.771,0.393,0.771,0.771,0.055,0.055,0.384,0.479,0,1 +1,0.928,0.79,0.79,0,0,0.93,0.93,0.93,0,0,0,0,0,0,0,0.0226,0.017,0.0396,0.79,0.701,0.791,1,0.822,0.247,0.822,0.822,0.0275,0.0275,0.321,0.4,0,1 +1,0.555,0.768,0.768,0,0,0.91,0.91,0.91,0,0,0,0,0,0,0,0,0.00568,0.00568,0.598,0.602,0.749,1,0.873,0.107,0.873,0.873,0.0206,0.0206,0.271,0.338,0.333,1 +1,0.2,0.656,0.656,0,0,0.87,0.87,0.87,0,0,0,0,0,0,0,0,0.00568,0.00568,0.391,0.509,0.453,1,0.761,0.0729,0.761,0.761,0.0206,0.0206,0.151,0.188,0.667,1 +1,0.116,0.556,0.556,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0,0,0.357,0.489,0.196,1,0.659,0.0393,0.659,0.659,0.0206,0.0206,0.151,0.188,0.667,1 +1,0.0743,0.445,0.445,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0.017,0.017,0.32,0.484,0.0806,1,0.446,0.0224,0.446,0.446,0.0206,0.0206,0.151,0.188,0.667,1 +1,0.0578,0.412,0.412,0,0,0.771,0.771,0.771,0,0,0,0,0,0,0,0,0,0,0.309,0.474,0.0392,1,0.233,0.00561,0.233,0.233,0.0206,0.0206,0.183,0.228,0.667,1 +1,0.0495,0.412,0.412,0,0,0.752,0.752,0.752,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0196,1,0.193,0.00561,0.193,0.193,0.0206,0.0206,0.151,0.188,1,1 +1,0.0495,0.401,0.401,0,0,0.732,0.732,0.732,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0152,1,0.152,0.0112,0.152,0.152,0.0275,0.0275,0.183,0.228,1,1 +1,0.0495,0.367,0.367,0,0,0.712,0.712,0.712,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.024,1,0.162,0.0393,0.162,0.162,0.055,0.055,0.296,0.369,1,1 +1,0.0495,0.401,0.401,0,0,0.712,0.712,0.712,0,0,0,0,0,0,0,0.0376,0,0.0376,0.258,0.465,0.0392,1,0.183,0.0673,0.183,0.183,0.103,0.103,0.422,0.526,1,1 +1,0.147,0.478,0.478,0,0,0.752,0.752,0.752,0,0,0,0,0,0,0,0,0,0,0.331,0.494,0.0632,1,0.264,0.163,0.264,0.264,0.179,0.179,0.359,0.447,0.667,1 +0.667,0.177,0.523,0.523,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0.0421,0,0.0421,0.346,0.519,0.0871,1,0.335,0.258,0.335,0.335,0.302,0.302,0.151,0.188,0.333,1 +0.667,0.318,0.378,0.378,0,0.0366,0.811,0.811,0.811,0,0,0,0,0,0,0,0.068,0,0.068,0.338,0.582,0.107,1,0.335,0.247,0.335,0.335,0.577,0.577,0.151,0.188,0,1 +0.667,0.321,0.256,0.256,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0.0356,0,0.0356,0.257,0.582,0.126,1,0.325,0.23,0.325,0.325,0.831,0.831,0.12,0.149,0,1 +0.667,0.312,0.267,0.267,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0.0189,0,0.0189,0.264,0.582,0.142,1,0.335,0.247,0.335,0.335,0.873,0.873,0.0945,0.118,0,1 +0.333,0.175,0.278,0.278,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0.0199,0.0199,0.265,0.529,0.157,1,0.335,0.258,0.335,0.335,0.831,0.831,0.0882,0.11,0,1 +0.333,0.171,0.267,0.267,0,0,0.831,0.831,0.831,0,0,0,0,0,0,0,0,0.00852,0.00852,0.261,0.534,0.166,1,0.325,0.236,0.325,0.325,0.824,0.824,0.0882,0.11,0,1 +0.333,0.169,0.312,0.312,0,0,0.831,0.831,0.831,0,0,0,0,0,0,0,0,0,0,0.276,0.534,0.187,1,0.325,0.213,0.325,0.325,0.618,0.618,0.0882,0.11,0,1 +0.333,0.17,0.345,0.345,0,0,0.831,0.831,0.831,0,0,0,0,0,0,0,0,0,0,0.287,0.529,0.198,1,0.325,0.275,0.325,0.325,0.515,0.515,0.151,0.188,0,1 +0.333,0.174,0.356,0.356,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0.00284,0.00284,0.29,0.539,0.222,1,0.335,0.331,0.335,0.335,0.419,0.419,0.365,0.455,0,1 +0.667,0.326,0.434,0.434,0,0.0366,0.87,0.87,0.87,0,0,0,0,0,0,0,0,0.0142,0.0142,0.375,0.632,0.277,1,0.457,0.617,0.457,0.457,0.254,0.254,0.794,0.989,0,1 +1,0.567,0.59,0.59,0,0,0.949,0.949,0.949,0,0,0,0,0,0,0,0,0.00284,0.00284,0.59,0.775,0.34,1,0.578,0.903,0.578,0.578,0.158,0.158,0.769,0.958,0,1 +1,0.736,0.701,0.701,0,0,0.989,0.989,0.989,0,0,0,0,0,0,0,0,0.0227,0.0227,0.701,0.79,0.457,1,0.67,0.645,0.67,0.67,0.0893,0.0893,0.428,0.534,0,1 +0.667,0.613,0.745,0.745,0,0,0.949,0.949,0.949,0,0,0,0,0,0,0,0,0.00284,0.00284,0.583,0.652,0.64,1,0.771,0.393,0.771,0.771,0.055,0.055,0.384,0.479,0,1 +1,0.928,0.79,0.79,0,0,0.93,0.93,0.93,0.00848,0.0414,0,0,0,0,0,0,0.00284,0.00284,0.79,0.701,0.791,1,0.822,0.247,0.822,0.822,0.0275,0.0275,0.321,0.4,0,1 +1,0.555,0.768,0.768,0,0,0.91,0.91,0.91,0.00528,0.00637,0,0,0,0,0,0.0256,0,0.0256,0.598,0.602,0.749,1,0.873,0.107,0.873,0.873,0.0206,0.0206,0.271,0.338,0.333,1 +1,0.2,0.656,0.656,0,0,0.87,0.87,0.87,0,0,0,0,0,0,0,0.0115,0.00568,0.0172,0.391,0.509,0.453,1,0.761,0.0729,0.761,0.761,0.0206,0.0206,0.151,0.188,0.667,1 +1,0.0495,0.556,0.556,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.465,0.196,1,0.659,0.0393,0.659,0.659,0.0206,0.0206,0.151,0.188,1,1 +1,0.0495,0.445,0.445,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.465,0.0806,1,0.446,0.0224,0.446,0.446,0.0206,0.0206,0.151,0.188,1,1 +1,0.0495,0.412,0.412,0,0,0.771,0.771,0.771,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0392,1,0.233,0.00561,0.233,0.233,0.0206,0.0206,0.183,0.228,1,1 +1,0.0495,0.412,0.412,0,0,0.752,0.752,0.752,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0196,1,0.193,0.00561,0.193,0.193,0.0206,0.0206,0.151,0.188,1,1 +1,0.0495,0.401,0.401,0,0,0.732,0.732,0.732,0,0,0,0,0,0,0,0.024,0,0.024,0.258,0.465,0.0152,1,0.152,0.0112,0.152,0.152,0.0275,0.0275,0.183,0.228,1,1 +1,0.0495,0.367,0.367,0,0,0.712,0.712,0.712,0,0,0,0,0,0,0,0.0269,0,0.0269,0.258,0.465,0.024,1,0.162,0.0393,0.162,0.162,0.055,0.055,0.296,0.369,1,1 +1,0.0495,0.401,0.401,0,0,0.712,0.712,0.712,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0392,1,0.183,0.0673,0.183,0.183,0.103,0.103,0.422,0.526,1,1 +1,0.245,0.478,0.478,0,0,0.752,0.752,0.752,0,0,0,0,0,0,0,0.0153,0,0.0153,0.405,0.523,0.0632,1,0.264,0.163,0.264,0.264,0.179,0.179,0.359,0.447,0.333,1 +1,0.305,0.523,0.523,0,0.0122,0.791,0.791,0.791,0,0,0,0,0,0,0,0.032,0,0.032,0.435,0.572,0.0871,1,0.335,0.258,0.335,0.335,0.302,0.302,0.151,0.188,0.333,1 +0.667,0.318,0.378,0.378,0,0.0244,0.811,0.811,0.811,0,0,0,0,0,0,0,0.0148,0,0.0148,0.338,0.582,0.107,1,0.335,0.247,0.335,0.335,0.577,0.577,0.151,0.188,0,1 +0.667,0.321,0.256,0.256,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0,0,0.257,0.582,0.126,1,0.325,0.23,0.325,0.325,0.831,0.831,0.12,0.149,0,1 +0.667,0.312,0.267,0.267,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0.00568,0.00568,0.264,0.582,0.142,1,0.335,0.247,0.335,0.335,0.873,0.873,0.0945,0.118,0,1 +0.333,0.175,0.278,0.278,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0.00284,0.00284,0.265,0.529,0.157,1,0.335,0.258,0.335,0.335,0.831,0.831,0.0882,0.11,0,1 +0.333,0.171,0.267,0.267,0,0,0.831,0.831,0.831,0,0,0,0,0,0,0,0,0.00284,0.00284,0.261,0.534,0.166,1,0.325,0.236,0.325,0.325,0.824,0.824,0.0882,0.11,0,1 +0.667,0.289,0.312,0.312,0,0,0.831,0.831,0.831,0,0,0,0,0,0,0,0,0.0227,0.0227,0.294,0.602,0.187,1,0.325,0.213,0.325,0.325,0.618,0.618,0.0882,0.11,0,1 +0.333,0.17,0.345,0.345,0,0,0.831,0.831,0.831,0,0,0,0,0,0,0,0,0.00568,0.00568,0.287,0.529,0.198,1,0.325,0.275,0.325,0.325,0.515,0.515,0.151,0.188,0,1 +0.333,0.174,0.356,0.356,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0,0,0.29,0.539,0.222,1,0.335,0.331,0.335,0.335,0.419,0.419,0.365,0.455,0,1 +0.667,0.326,0.434,0.434,0,0,0.87,0.87,0.87,0,0,0,0,0,0,0,0.0149,0.00284,0.0177,0.375,0.632,0.277,1,0.457,0.617,0.457,0.457,0.254,0.254,0.794,0.989,0,1 +1,0.567,0.59,0.59,0,0,0.949,0.949,0.949,0,0,0,0,0,0,0,0.0401,0.00284,0.0429,0.59,0.775,0.34,1,0.578,0.903,0.578,0.578,0.158,0.158,0.769,0.958,0,1 +1,0.736,0.701,0.701,0,0,0.989,0.989,0.989,0,0,0,0,0,0,0,0.0247,0,0.0247,0.701,0.79,0.457,1,0.67,0.645,0.67,0.67,0.0893,0.0893,0.428,0.534,0,1 +1,0.895,0.745,0.745,0,0,0.949,0.949,0.949,0,0,0,0,0,0,0,0,0.0199,0.0199,0.745,0.745,0.64,1,0.771,0.393,0.771,0.771,0.055,0.055,0.384,0.479,0,1 +1,0.928,0.79,0.79,0,0,0.93,0.93,0.93,0,0,0,0,0,0,0,0,0,0,0.79,0.701,0.791,1,0.822,0.247,0.822,0.822,0.0275,0.0275,0.321,0.4,0,1 +1,0.807,0.768,0.768,0,0,0.91,0.91,0.91,0,0,0,0,0,0,0,0,0,0,0.768,0.671,0.749,1,0.873,0.107,0.873,0.873,0.0206,0.0206,0.271,0.338,0,1 +1,0.2,0.656,0.656,0,0,0.87,0.87,0.87,0,0,0,0,0,0,0,0,0.0114,0.0114,0.391,0.509,0.453,1,0.761,0.0729,0.761,0.761,0.0206,0.0206,0.151,0.188,0.667,1 +1,0.0495,0.556,0.556,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.465,0.196,1,0.659,0.0393,0.659,0.659,0.0206,0.0206,0.151,0.188,1,1 +1,0.0495,0.445,0.445,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0806,1,0.446,0.0224,0.446,0.446,0.0206,0.0206,0.151,0.188,1,1 +1,0.0495,0.412,0.412,0,0,0.771,0.771,0.771,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0392,1,0.233,0.00561,0.233,0.233,0.0206,0.0206,0.183,0.228,1,1 +1,0.0495,0.412,0.412,0,0,0.752,0.752,0.752,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0196,1,0.193,0.00561,0.193,0.193,0.0206,0.0206,0.151,0.188,1,1 +1,0.0495,0.401,0.401,0,0,0.732,0.732,0.732,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0152,1,0.152,0.0112,0.152,0.152,0.0275,0.0275,0.183,0.228,1,1 +1,0.051,0.367,0.367,0,0.0366,0.712,0.712,0.712,0,0,0,0,0,0,0,0,0,0,0.294,0.469,0.024,1,0.162,0.0393,0.162,0.162,0.055,0.055,0.296,0.369,0.667,1 +1,0.0816,0.401,0.401,0,0,0.712,0.712,0.712,0,0,0,0,0,0,0,0.0251,0,0.0251,0.305,0.474,0.0392,1,0.183,0.0673,0.183,0.183,0.103,0.103,0.422,0.526,0.667,1 +0.667,0.245,0.478,0.478,0,0,0.752,0.752,0.752,0,0,0,0,0,0,0,0.047,0,0.047,0.405,0.523,0.0632,1,0.264,0.163,0.264,0.264,0.179,0.179,0.359,0.447,0,1 +1,0.433,0.523,0.523,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0.0638,0,0.0638,0.523,0.626,0.0871,1,0.335,0.258,0.335,0.335,0.302,0.302,0.151,0.188,0,1 +0.667,0.318,0.378,0.378,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0.0478,0.017,0.0648,0.338,0.582,0.107,1,0.335,0.247,0.335,0.335,0.577,0.577,0.151,0.188,0,1 +0.667,0.321,0.256,0.256,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0.0114,0.0114,0.257,0.582,0.126,1,0.325,0.23,0.325,0.325,0.831,0.831,0.12,0.149,0,1 +0.333,0.181,0.267,0.267,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0,0,0.261,0.524,0.142,1,0.335,0.247,0.335,0.335,0.873,0.873,0.0945,0.118,0,1 +0.333,0.175,0.278,0.278,0,0,0.791,0.791,0.791,0,0,0.0513,0.00596,0,0,0,0,0.0114,0.0114,0.265,0.529,0.157,1,0.335,0.258,0.335,0.335,0.831,0.831,0.0882,0.11,0,1 +0.333,0.171,0.267,0.267,0,0,0.831,0.831,0.831,0,0,0.0294,0.0151,0.055,0.055,0,0,0.00568,0.00568,0.261,0.534,0.166,1,0.325,0.236,0.325,0.325,0.824,0.824,0.0882,0.11,0,1 +0.333,0.169,0.312,0.312,0,0,0.831,0.831,0.831,0,0,0.0461,0,0.312,0.312,0,0,0.00284,0.00284,0.276,0.534,0.187,1,0.325,0.213,0.325,0.325,0.618,0.618,0.0882,0.11,0,1 +0.333,0.17,0.345,0.345,0,0,0.831,0.831,0.831,0,0,0.0129,0,0,0,0,0,0.00284,0.00284,0.287,0.529,0.198,1,0.325,0.275,0.325,0.325,0.515,0.515,0.151,0.188,0,1 +0.333,0.174,0.356,0.356,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0.00284,0.00284,0.29,0.539,0.222,1,0.335,0.331,0.335,0.335,0.419,0.419,0.365,0.455,0,1 +0.333,0.188,0.434,0.434,0,0.0366,0.87,0.87,0.87,0,0,0,0,0,0,0,0,0,0,0.316,0.549,0.277,1,0.457,0.617,0.457,0.457,0.254,0.254,0.794,0.989,0,1 +0.333,0.222,0.59,0.59,0,0,0.949,0.949,0.949,0,0,0,0,0,0,0,0,0.00852,0.00852,0.368,0.569,0.34,1,0.578,0.903,0.578,0.578,0.158,0.158,0.769,0.958,0,1 +1,0.736,0.701,0.701,0,0.0731,0.989,0.989,0.989,0,0,0,0,0,0,0,0,0,0,0.701,0.79,0.457,1,0.67,0.645,0.67,0.67,0.0893,0.0893,0.428,0.534,0,1 +1,0.895,0.745,0.745,0,0,0.949,0.949,0.949,0,0,0,0,0,0,0,0,0,0,0.745,0.745,0.64,1,0.771,0.393,0.771,0.771,0.055,0.055,0.384,0.479,0,1 +1,0.928,0.79,0.79,0,0,0.93,0.93,0.93,0,0,0,0,0,0,0,0,0.0114,0.0114,0.79,0.701,0.791,1,0.822,0.247,0.822,0.822,0.0275,0.0275,0.321,0.4,0,1 +1,0.555,0.768,0.768,0,0,0.91,0.91,0.91,0,0,0,0,0,0,0,0,0,0,0.598,0.602,0.749,1,0.873,0.107,0.873,0.873,0.0206,0.0206,0.271,0.338,0.333,1 +1,0.0495,0.656,0.656,0,0,0.87,0.87,0.87,0,0,0,0,0,0,0,0,0.00568,0.00568,0.258,0.465,0.453,1,0.761,0.0729,0.761,0.761,0.0206,0.0206,0.151,0.188,1,1 +1,0.0495,0.556,0.556,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.196,1,0.659,0.0393,0.659,0.659,0.0206,0.0206,0.151,0.188,1,1 +1,0.0495,0.445,0.445,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0806,1,0.446,0.0224,0.446,0.446,0.0206,0.0206,0.151,0.188,1,1 +1,0.0495,0.412,0.412,0,0,0.771,0.771,0.771,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0392,1,0.233,0.00561,0.233,0.233,0.0206,0.0206,0.183,0.228,1,1 +1,0.0495,0.412,0.412,0,0,0.752,0.752,0.752,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0196,1,0.193,0.00561,0.193,0.193,0.0206,0.0206,0.151,0.188,1,1 +1,0.0495,0.401,0.401,0,0,0.732,0.732,0.732,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0152,1,0.152,0.0112,0.152,0.152,0.0275,0.0275,0.183,0.228,1,1 +1,0.0495,0.367,0.367,0,0,0.712,0.712,0.712,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.024,1,0.162,0.0393,0.162,0.162,0.055,0.055,0.296,0.369,1,1 +1,0.0495,0.401,0.401,0,0,0.712,0.712,0.712,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0392,1,0.183,0.0673,0.183,0.183,0.103,0.103,0.422,0.526,1,1 +1,0.0495,0.478,0.478,0,0,0.752,0.752,0.752,0,0,0,0,0,0,0,0.0206,0,0.0206,0.258,0.465,0.0632,1,0.264,0.163,0.264,0.264,0.179,0.179,0.359,0.447,1,1 +1,0.305,0.523,0.523,0,0.0122,0.791,0.791,0.791,0,0,0,0,0,0,0,0.0224,0,0.0224,0.435,0.572,0.0871,1,0.335,0.258,0.335,0.335,0.302,0.302,0.151,0.188,0.333,1 +0.667,0.184,0.378,0.378,0,0.0244,0.811,0.811,0.811,0,0,0.00643,0,0,0,0,0.0393,0,0.0393,0.298,0.524,0.107,1,0.335,0.247,0.335,0.335,0.577,0.577,0.151,0.188,0.333,1 +0.667,0.321,0.256,0.256,0,0,0.811,0.811,0.811,0,0,0.0366,0.0165,0,0,0,0.0282,0,0.0282,0.257,0.582,0.126,1,0.325,0.23,0.325,0.325,0.831,0.831,0.12,0.149,0,1 +0.667,0.312,0.267,0.267,0,0,0.791,0.791,0.791,0,0,0.00224,0.00456,0.238,0.238,0,0.0317,0,0.0317,0.264,0.582,0.142,1,0.335,0.247,0.335,0.335,0.873,0.873,0.0945,0.118,0,1 +0.333,0.175,0.278,0.278,0,0,0.791,0.791,0.791,0,0,0,0,0.128,0.128,0,0.0325,0.00852,0.041,0.265,0.529,0.157,1,0.335,0.258,0.335,0.335,0.831,0.831,0.0882,0.11,0,1 +0.333,0.171,0.267,0.267,0,0,0.831,0.831,0.831,0,0,0,0,0,0,0,0.0185,0.0114,0.0298,0.261,0.534,0.166,1,0.325,0.236,0.325,0.325,0.824,0.824,0.0882,0.11,0,1 +0.333,0.169,0.312,0.312,0,0,0.831,0.831,0.831,0,0,0,0,0,0,0.0369,0.0235,0,0.0604,0.276,0.534,0.187,1,0.325,0.213,0.325,0.325,0.618,0.618,0.0882,0.11,0,1 +0.667,0.29,0.345,0.345,0,0,0.831,0.831,0.831,0,0,0.0163,0,0,0,0,0.0435,0.00568,0.0492,0.316,0.592,0.198,1,0.325,0.275,0.325,0.325,0.515,0.515,0.151,0.188,0,1 +0.667,0.298,0.356,0.356,0,0.0731,0.811,0.811,0.811,0,0,0.0575,0.0112,0,0,0,0,0,0,0.323,0.612,0.222,1,0.335,0.331,0.335,0.335,0.419,0.419,0.365,0.455,0,1 +1,0.464,0.434,0.434,0,0,0.87,0.87,0.87,0,0,0.0327,0.00456,0.238,0.238,0,0,0.00284,0.00284,0.434,0.715,0.277,1,0.457,0.617,0.457,0.457,0.254,0.254,0.794,0.989,0,1 +1,0.567,0.59,0.59,0,0,0.949,0.949,0.949,0,0,0.0375,0,0.22,0.22,0,0,0.00284,0.00284,0.59,0.775,0.34,1,0.578,0.903,0.578,0.578,0.158,0.158,0.769,0.958,0,1 +1,0.736,0.701,0.701,0,0,0.989,0.989,0.989,0,0,0.0163,0,0,0,0,0.00259,0,0.00259,0.701,0.79,0.457,1,0.67,0.645,0.67,0.67,0.0893,0.0893,0.428,0.534,0,1 +1,0.895,0.745,0.745,0,0,0.949,0.949,0.949,0,0,0,0,0,0,0,0.0181,0.00852,0.0266,0.745,0.745,0.64,1,0.771,0.393,0.771,0.771,0.055,0.055,0.384,0.479,0,1 +1,0.928,0.79,0.79,0,0,0.93,0.93,0.93,0,0,0,0,0,0,0,0,0.00568,0.00568,0.79,0.701,0.791,1,0.822,0.247,0.822,0.822,0.0275,0.0275,0.321,0.4,0,1 +1,0.555,0.768,0.768,0,0,0.91,0.91,0.91,0,0,0,0,0,0,0,0,0.0114,0.0114,0.598,0.602,0.749,1,0.873,0.107,0.873,0.873,0.0206,0.0206,0.271,0.338,0.333,1 +1,0.35,0.656,0.656,0,0,0.87,0.87,0.87,0,0,0,0,0,0,0,0,0,0,0.524,0.553,0.453,1,0.761,0.0729,0.761,0.761,0.0206,0.0206,0.151,0.188,0.333,1 +1,0.116,0.556,0.556,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0,0,0.357,0.489,0.196,1,0.659,0.0393,0.659,0.659,0.0206,0.0206,0.151,0.188,0.667,1 +1,0.0495,0.445,0.445,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.465,0.0958,1,0.446,0.0224,0.446,0.446,0.0206,0.0206,0.151,0.188,1,1 +1,0.0495,0.412,0.412,0,0,0.771,0.771,0.771,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0479,1,0.233,0.00561,0.233,0.233,0.0206,0.0206,0.183,0.228,1,1 +1,0.0495,0.412,0.412,0,0,0.752,0.752,0.752,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0261,1,0.193,0.00561,0.193,0.193,0.0206,0.0206,0.151,0.188,1,1 +1,0.0495,0.401,0.401,0,0,0.732,0.732,0.732,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0174,1,0.152,0.0112,0.152,0.152,0.0275,0.0275,0.183,0.228,1,1 +1,0.0495,0.367,0.367,0,0,0.712,0.712,0.712,0,0,0,0,0,0,0,0.0025,0,0.0025,0.258,0.465,0.024,1,0.162,0.0393,0.162,0.162,0.055,0.055,0.296,0.369,1,1 +1,0.0816,0.401,0.401,0,0,0.712,0.712,0.712,0,0,0,0,0,0,0,0.0125,0,0.0125,0.305,0.474,0.0305,1,0.183,0.0673,0.183,0.183,0.103,0.103,0.422,0.526,0.667,1 +0.667,0.0495,0.478,0.478,0,0,0.752,0.752,0.752,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0523,1,0.264,0.163,0.264,0.264,0.179,0.179,0.359,0.447,0.667,1 +0.667,0.0495,0.523,0.523,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0937,1,0.335,0.258,0.335,0.335,0.302,0.302,0.151,0.188,0.667,1 +0.667,0.0495,0.378,0.378,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.155,1,0.335,0.247,0.335,0.335,0.577,0.577,0.151,0.188,0.667,1 +0.667,0.0495,0.256,0.256,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0.017,0.017,0.258,0.465,0.205,1,0.325,0.23,0.325,0.325,0.831,0.831,0.12,0.149,0.667,1 +0.667,0.0495,0.267,0.267,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.244,1,0.335,0.247,0.335,0.335,0.873,0.873,0.0945,0.118,0.667,1 +1,0.3,0.278,0.278,0,0.0853,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0,0,0.271,0.592,0.268,1,0.335,0.258,0.335,0.335,0.831,0.831,0.0882,0.11,0.333,1 +1,0.413,0.267,0.267,0,0.146,0.831,0.831,0.831,0,0,0,0,0,0,0,0.0349,0,0.0349,0.267,0.671,0.288,1,0.325,0.236,0.325,0.325,0.824,0.824,0.0882,0.11,0,1 +1,0.409,0.312,0.312,0,0.146,0.831,0.831,0.831,0,0,0,0,0,0,0,0.037,0,0.037,0.312,0.671,0.34,1,0.325,0.213,0.325,0.325,0.618,0.618,0.0882,0.11,0,1 +1,0.41,0.345,0.345,0,0.134,0.831,0.831,0.831,0,0,0,0,0,0,0,0.0177,0,0.0177,0.345,0.656,0.388,1,0.325,0.275,0.325,0.325,0.515,0.515,0.151,0.188,0,1 +1,0.422,0.356,0.356,0,0.0366,0.811,0.811,0.811,0,0,0,0,0,0,0,0.0343,0,0.0343,0.356,0.686,0.427,1,0.335,0.331,0.335,0.335,0.419,0.419,0.365,0.455,0,1 +1,0.464,0.434,0.434,0,0,0.87,0.87,0.87,0,0,0,0,0,0,0,0.0286,0.00568,0.0343,0.434,0.715,0.449,1,0.457,0.617,0.457,0.457,0.254,0.254,0.794,0.989,0,1 +1,0.567,0.59,0.59,0,0,0.949,0.949,0.949,0,0,0,0,0,0,0,0.0225,0.0114,0.0339,0.59,0.775,0.464,1,0.578,0.903,0.578,0.578,0.158,0.158,0.769,0.958,0,1 +1,0.736,0.701,0.701,0,0,0.989,0.989,0.989,0,0,0,0,0,0,0,0,0.00852,0.00852,0.701,0.79,0.547,1,0.67,0.645,0.67,0.67,0.0893,0.0893,0.428,0.534,0,1 +1,0.895,0.745,0.745,0,0,0.949,0.949,0.949,0,0,0,0,0,0,0,0,0.00852,0.00852,0.745,0.745,0.719,1,0.771,0.393,0.771,0.771,0.055,0.055,0.384,0.479,0,1 +1,0.928,0.79,0.79,0,0,0.93,0.93,0.93,0,0,0,0,0,0,0,0.0173,0.0114,0.0286,0.79,0.701,0.845,1,0.822,0.247,0.822,0.822,0.0275,0.0275,0.321,0.4,0,1 +1,0.807,0.768,0.768,0,0,0.91,0.91,0.91,0,0,0,0,0,0,0,0.0243,0,0.0243,0.768,0.671,0.78,1,0.873,0.107,0.873,0.873,0.0206,0.0206,0.271,0.338,0,1 +1,0.35,0.656,0.656,0,0,0.87,0.87,0.87,0,0,0,0,0,0,0,0,0,0,0.524,0.553,0.492,1,0.761,0.0729,0.761,0.761,0.0206,0.0206,0.151,0.188,0.333,1 +1,0.183,0.556,0.556,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0.0142,0.0142,0.457,0.513,0.224,1,0.659,0.0393,0.659,0.659,0.0206,0.0206,0.151,0.188,0.333,1 +1,0.099,0.445,0.445,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0.00284,0.00284,0.383,0.503,0.0958,1,0.446,0.0224,0.446,0.446,0.0206,0.0206,0.151,0.188,0.333,1 +1,0.066,0.412,0.412,0,0,0.771,0.771,0.771,0,0,0,0,0,0,0,0,0.00852,0.00852,0.36,0.483,0.0479,1,0.233,0.00561,0.233,0.233,0.0206,0.0206,0.183,0.228,0.333,1 +1,0.0495,0.412,0.412,0,0,0.752,0.752,0.752,0,0,0,0,0,0,0,0,0,0,0.36,0.473,0.0261,1,0.193,0.00561,0.193,0.193,0.0206,0.0206,0.151,0.188,0.333,1 +1,0.0495,0.401,0.401,0,0,0.732,0.732,0.732,0,0,0,0,0,0,0,0,0,0,0.353,0.463,0.0174,1,0.152,0.0112,0.152,0.152,0.0275,0.0275,0.183,0.228,0.333,1 +1,0.0495,0.367,0.367,0,0,0.712,0.712,0.712,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.465,0.024,1,0.162,0.0393,0.162,0.162,0.055,0.055,0.296,0.369,1,1 +1,0.0495,0.401,0.401,0,0,0.712,0.712,0.712,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0305,1,0.183,0.0673,0.183,0.183,0.103,0.103,0.422,0.526,1,1 +1,0.0495,0.478,0.478,0,0,0.752,0.752,0.752,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0523,1,0.264,0.163,0.264,0.264,0.179,0.179,0.359,0.447,1,1 +1,0.0495,0.523,0.523,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0.00568,0.00568,0.258,0.465,0.0937,1,0.335,0.258,0.335,0.335,0.302,0.302,0.151,0.188,1,1 +1,0.184,0.378,0.378,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0,0,0.298,0.524,0.155,1,0.335,0.247,0.335,0.335,0.577,0.577,0.151,0.188,0.667,1 +0.667,0.185,0.256,0.256,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0,0,0.257,0.524,0.205,1,0.325,0.23,0.325,0.325,0.831,0.831,0.12,0.149,0.333,1 +1,0.443,0.267,0.267,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0.0341,0,0.0341,0.267,0.641,0.244,1,0.335,0.247,0.335,0.335,0.873,0.873,0.0945,0.118,0,1 +1,0.426,0.278,0.278,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0.0281,0,0.0281,0.278,0.656,0.268,1,0.335,0.258,0.335,0.335,0.831,0.831,0.0882,0.11,0,1 +1,0.413,0.267,0.267,0,0.0366,0.831,0.831,0.831,0,0,0,0,0,0,0,0.0118,0,0.0118,0.267,0.671,0.288,1,0.325,0.236,0.325,0.325,0.824,0.824,0.0882,0.11,0,1 +0.667,0.289,0.312,0.312,0,0,0.831,0.831,0.831,0,0,0,0,0,0,0,0,0.00852,0.00852,0.294,0.602,0.34,1,0.325,0.213,0.325,0.325,0.618,0.618,0.0882,0.11,0,1 +0.667,0.29,0.345,0.345,0,0,0.831,0.831,0.831,0,0,0.00985,0,0,0,0,0.00276,0.0114,0.0141,0.316,0.592,0.388,1,0.325,0.275,0.325,0.325,0.515,0.515,0.151,0.188,0,1 +0.667,0.298,0.356,0.356,0,0,0.811,0.811,0.811,0,0,0.028,0.0112,0,0,0,0.0543,0.00284,0.0571,0.323,0.612,0.427,1,0.335,0.331,0.335,0.335,0.419,0.419,0.365,0.455,0,1 +0.667,0.326,0.434,0.434,0,0,0.87,0.87,0.87,0,0,0.0412,0.00456,0.238,0.238,0,0.0265,0.00568,0.0322,0.375,0.632,0.449,1,0.457,0.617,0.457,0.457,0.254,0.254,0.794,0.989,0,1 +0.667,0.395,0.59,0.59,0,0,0.949,0.949,0.949,0,0,0.0424,0,0.0367,0.0367,0,0.0195,0.00852,0.028,0.479,0.672,0.464,1,0.578,0.903,0.578,0.578,0.158,0.158,0.769,0.958,0,1 +0.333,0.278,0.701,0.701,0,0,0.989,0.989,0.989,0,0,0.0391,0,0,0,0,0,0.0142,0.0142,0.405,0.574,0.547,1,0.67,0.645,0.67,0.67,0.0893,0.0893,0.428,0.534,0,1 +0.667,0.613,0.745,0.745,0,0,0.949,0.949,0.949,0,0,0.0538,0,0,0,0.0347,0,0.00284,0.0375,0.583,0.652,0.719,1,0.771,0.393,0.771,0.771,0.055,0.055,0.384,0.479,0,1 +0.667,0.342,0.79,0.79,0,0,0.93,0.93,0.93,0,0,0.00536,0,0,0,0.0173,0,0,0.0173,0.435,0.544,0.845,1,0.822,0.247,0.822,0.822,0.0275,0.0275,0.321,0.4,0.333,1 +1,0.555,0.768,0.768,0,0,0.91,0.91,0.91,0,0,0,0,0,0,0,0,0.00284,0.00284,0.598,0.602,0.78,1,0.873,0.107,0.873,0.873,0.0206,0.0206,0.271,0.338,0.333,1 +1,0.5,0.656,0.656,0,0,0.87,0.87,0.87,0,0,0,0,0,0,0,0,0.00568,0.00568,0.656,0.596,0.492,1,0.761,0.0729,0.761,0.761,0.0206,0.0206,0.151,0.188,0,1 +1,0.183,0.556,0.556,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0.017,0.017,0.457,0.513,0.224,1,0.659,0.0393,0.659,0.659,0.0206,0.0206,0.151,0.188,0.333,1 +1,0.0495,0.445,0.445,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0.00852,0.00852,0.258,0.465,0.0806,1,0.446,0.0224,0.446,0.446,0.0206,0.0206,0.151,0.188,1,1 +1,0.0495,0.412,0.412,0,0,0.771,0.771,0.771,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0392,1,0.233,0.00561,0.233,0.233,0.0206,0.0206,0.183,0.228,1,1 +1,0.0495,0.412,0.412,0,0,0.752,0.752,0.752,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0196,1,0.193,0.00561,0.193,0.193,0.0206,0.0206,0.151,0.188,1,1 +1,0.0495,0.401,0.401,0,0,0.732,0.732,0.732,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0152,1,0.152,0.0112,0.152,0.152,0.0275,0.0275,0.183,0.228,1,1 +1,0.0495,0.367,0.367,0,0,0.712,0.712,0.712,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.024,1,0.162,0.0393,0.162,0.162,0.055,0.055,0.296,0.369,1,1 +1,0.0816,0.401,0.401,0,0,0.712,0.712,0.712,0,0,0,0,0,0,0.0432,0.0292,0,0.0724,0.305,0.474,0.0392,1,0.183,0.0673,0.183,0.183,0.103,0.103,0.422,0.526,0.667,1 +1,0.342,0.478,0.478,0,0.0853,0.752,0.752,0.752,0,0,0,0,0,0,0,0.0188,0,0.0188,0.478,0.551,0.0632,1,0.264,0.163,0.264,0.264,0.179,0.179,0.359,0.447,0,1 +0.667,0.305,0.523,0.523,0,0.146,0.791,0.791,0.791,0,0,0,0,0,0,0,0.0116,0,0.0116,0.435,0.572,0.0871,1,0.335,0.258,0.335,0.335,0.302,0.302,0.151,0.188,0,1 +0.333,0.184,0.378,0.378,0,0.146,0.811,0.811,0.811,0,0,0,0,0,0,0,0.0307,0,0.0307,0.298,0.524,0.107,1,0.335,0.247,0.335,0.335,0.577,0.577,0.151,0.188,0,1 +0.333,0.185,0.256,0.256,0,0.146,0.811,0.811,0.811,0,0,0,0,0,0,0,0.0264,0.00284,0.0292,0.257,0.524,0.126,1,0.325,0.23,0.325,0.325,0.831,0.831,0.12,0.149,0,1 +0.333,0.181,0.267,0.267,0,0.146,0.791,0.791,0.791,0,0,0,0,0,0,0,0.0475,0.00852,0.056,0.261,0.524,0.142,1,0.335,0.247,0.335,0.335,0.873,0.873,0.0945,0.118,0,1 +0.333,0.175,0.278,0.278,0,0.134,0.791,0.791,0.791,0,0,0,0,0,0,0,0.0336,0.00852,0.0422,0.265,0.529,0.157,1,0.335,0.258,0.335,0.335,0.831,0.831,0.0882,0.11,0,1 +0.333,0.171,0.267,0.267,0,0,0.831,0.831,0.831,0,0,0,0,0,0,0,0.0474,0,0.0474,0.261,0.534,0.166,1,0.325,0.236,0.325,0.325,0.824,0.824,0.0882,0.11,0,1 +0.667,0.289,0.312,0.312,0,0.0731,0.831,0.831,0.831,0,0,0,0,0,0,0,0,0.00284,0.00284,0.294,0.602,0.187,1,0.325,0.213,0.325,0.325,0.618,0.618,0.0882,0.11,0,1 +0.333,0.17,0.345,0.345,0,0,0.831,0.831,0.831,0,0,0,0,0,0,0,0,0.00284,0.00284,0.287,0.529,0.198,1,0.325,0.275,0.325,0.325,0.515,0.515,0.151,0.188,0,1 +0.333,0.174,0.356,0.356,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0.00284,0.00284,0.29,0.539,0.222,1,0.335,0.331,0.335,0.335,0.419,0.419,0.365,0.455,0,1 +0.667,0.326,0.434,0.434,0,0,0.87,0.87,0.87,0,0,0,0,0,0,0,0,0,0,0.375,0.632,0.277,1,0.457,0.617,0.457,0.457,0.254,0.254,0.794,0.989,0,1 +0.667,0.395,0.59,0.59,0,0,0.949,0.949,0.949,0,0,0,0,0,0,0,0,0.00568,0.00568,0.479,0.672,0.34,1,0.578,0.903,0.578,0.578,0.158,0.158,0.769,0.958,0,1 +1,0.736,0.701,0.701,0,0,0.989,0.989,0.989,0,0,0,0,0,0,0,0,0.00568,0.00568,0.701,0.79,0.457,1,0.67,0.645,0.67,0.67,0.0893,0.0893,0.428,0.534,0,1 +1,0.895,0.745,0.745,0,0,0.949,0.949,0.949,0,0,0,0,0,0,0,0,0,0,0.745,0.745,0.64,1,0.771,0.393,0.771,0.771,0.055,0.055,0.384,0.479,0,1 +1,0.928,0.79,0.79,0,0,0.93,0.93,0.93,0,0,0,0,0,0,0,0,0.0227,0.0227,0.79,0.701,0.791,1,0.822,0.247,0.822,0.822,0.0275,0.0275,0.321,0.4,0,1 +1,0.555,0.768,0.768,0,0,0.91,0.91,0.91,0.0179,0.0716,0,0,0,0,0,0,0,0,0.598,0.602,0.749,1,0.873,0.107,0.873,0.873,0.0206,0.0206,0.271,0.338,0.333,1 +1,0.2,0.656,0.656,0,0,0.87,0.87,0.87,0,0,0,0,0,0,0,0.0127,0.0227,0.0354,0.391,0.509,0.453,1,0.761,0.0729,0.761,0.761,0.0206,0.0206,0.151,0.188,0.667,1 +1,0.116,0.556,0.556,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0.0114,0.0114,0.357,0.489,0.196,1,0.659,0.0393,0.659,0.659,0.0206,0.0206,0.151,0.188,0.667,1 +1,0.0743,0.445,0.445,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0.0114,0.0114,0.32,0.484,0.0806,1,0.446,0.0224,0.446,0.446,0.0206,0.0206,0.151,0.188,0.667,1 +1,0.0495,0.412,0.412,0,0,0.771,0.771,0.771,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0392,1,0.233,0.00561,0.233,0.233,0.0206,0.0206,0.183,0.228,1,1 +1,0.0495,0.412,0.412,0,0,0.752,0.752,0.752,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0196,1,0.193,0.00561,0.193,0.193,0.0206,0.0206,0.151,0.188,1,1 +1,0.0495,0.401,0.401,0,0,0.732,0.732,0.732,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0152,1,0.152,0.0112,0.152,0.152,0.0275,0.0275,0.183,0.228,1,1 +1,0.0495,0.367,0.367,0,0,0.712,0.712,0.712,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.024,1,0.162,0.0393,0.162,0.162,0.055,0.055,0.296,0.369,1,1 +1,0.0495,0.401,0.401,0,0,0.712,0.712,0.712,0,0,0,0,0,0,0,0.00259,0,0.00259,0.258,0.465,0.0392,1,0.183,0.0673,0.183,0.183,0.103,0.103,0.422,0.526,1,1 +1,0.245,0.478,0.478,0,0,0.752,0.752,0.752,0,0,0,0,0,0,0,0.0454,0,0.0454,0.405,0.523,0.0632,1,0.264,0.163,0.264,0.264,0.179,0.179,0.359,0.447,0.333,1 +1,0.433,0.523,0.523,0,0,0.791,0.791,0.791,0,0,0.0334,0.00596,0,0,0,0.0181,0,0.0181,0.523,0.626,0.0871,1,0.335,0.258,0.335,0.335,0.302,0.302,0.151,0.188,0,1 +0.667,0.318,0.378,0.378,0,0,0.811,0.811,0.811,0,0,0.0491,0.00456,0.238,0.238,0,0,0,0,0.338,0.582,0.107,1,0.335,0.247,0.335,0.335,0.577,0.577,0.151,0.188,0,1 +0.667,0.321,0.256,0.256,0,0,0.811,0.811,0.811,0,0,0.0269,0,0.0367,0.0367,0,0,0,0,0.257,0.582,0.126,1,0.325,0.23,0.325,0.325,0.831,0.831,0.12,0.149,0,1 +0.667,0.312,0.267,0.267,0,0,0.791,0.791,0.791,0,0,0.0246,0,0,0,0,0.019,0.0142,0.0332,0.264,0.582,0.142,1,0.335,0.247,0.335,0.335,0.873,0.873,0.0945,0.118,0,1 +0.667,0.3,0.278,0.278,0,0,0.791,0.791,0.791,0,0,0.018,0,0,0,0,0.0238,0.00284,0.0267,0.271,0.592,0.157,1,0.335,0.258,0.335,0.335,0.831,0.831,0.0882,0.11,0,1 +0.333,0.171,0.267,0.267,0,0,0.831,0.831,0.831,0,0,0.0344,0,0,0,0,0,0,0,0.261,0.534,0.166,1,0.325,0.236,0.325,0.325,0.824,0.824,0.0882,0.11,0,1 +0.333,0.169,0.312,0.312,0,0,0.831,0.831,0.831,0,0,0.0118,0,0,0,0,0,0.00284,0.00284,0.276,0.534,0.187,1,0.325,0.213,0.325,0.325,0.618,0.618,0.0882,0.11,0,1 +0.333,0.17,0.345,0.345,0,0,0.831,0.831,0.831,0,0,0.0242,0,0,0,0,0,0,0,0.287,0.529,0.198,1,0.325,0.275,0.325,0.325,0.515,0.515,0.151,0.188,0,1 +0.667,0.298,0.356,0.356,0,0,0.811,0.811,0.811,0,0,0.0256,0,0,0,0,0,0.00568,0.00568,0.323,0.612,0.222,1,0.335,0.331,0.335,0.335,0.419,0.419,0.365,0.455,0,1 +0.667,0.326,0.434,0.434,0,0,0.87,0.87,0.87,0,0,0.0474,0,0,0,0,0,0.00852,0.00852,0.375,0.632,0.277,1,0.457,0.617,0.457,0.457,0.254,0.254,0.794,0.989,0,1 +0.667,0.395,0.59,0.59,0,0.0366,0.949,0.949,0.949,0,0,0.0238,0,0,0,0,0,0.0255,0.0255,0.479,0.672,0.34,1,0.578,0.903,0.578,0.578,0.158,0.158,0.769,0.958,0,1 +1,0.736,0.701,0.701,0,0,0.989,0.989,0.989,0,0,0.037,0,0,0,0,0,0.00852,0.00852,0.701,0.79,0.457,1,0.67,0.645,0.67,0.67,0.0893,0.0893,0.428,0.534,0,1 +1,0.895,0.745,0.745,0,0,0.949,0.949,0.949,0,0,0.0224,0,0,0,0,0,0.00284,0.00284,0.745,0.745,0.64,1,0.771,0.393,0.771,0.771,0.055,0.055,0.384,0.479,0,1 +1,0.928,0.79,0.79,0,0,0.93,0.93,0.93,0,0,0,0,0,0,0.032,0.0154,0.00852,0.0559,0.79,0.701,0.791,1,0.822,0.247,0.822,0.822,0.0275,0.0275,0.321,0.4,0,1 +1,0.807,0.768,0.768,0,0,0.91,0.91,0.91,0,0,0,0,0,0,0.0645,0.0192,0,0.0838,0.768,0.671,0.749,1,0.873,0.107,0.873,0.873,0.0206,0.0206,0.271,0.338,0,1 +1,0.2,0.656,0.656,0,0,0.87,0.87,0.87,0,0,0,0,0,0,0,0.0153,0.00284,0.0181,0.391,0.509,0.453,1,0.761,0.0729,0.761,0.761,0.0206,0.0206,0.151,0.188,0.667,1 +1,0.0495,0.556,0.556,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.196,1,0.659,0.0393,0.659,0.659,0.0206,0.0206,0.151,0.188,1,1 +1,0.0495,0.445,0.445,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0806,1,0.446,0.0224,0.446,0.446,0.0206,0.0206,0.151,0.188,1,1 +1,0.0495,0.412,0.412,0,0,0.771,0.771,0.771,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0392,1,0.233,0.00561,0.233,0.233,0.0206,0.0206,0.183,0.228,1,1 +1,0.0495,0.412,0.412,0,0,0.752,0.752,0.752,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0196,1,0.193,0.00561,0.193,0.193,0.0206,0.0206,0.151,0.188,1,1 +1,0.0495,0.401,0.401,0,0,0.732,0.732,0.732,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0152,1,0.152,0.0112,0.152,0.152,0.0275,0.0275,0.183,0.228,1,1 +0.667,0.0495,0.367,0.367,0,0,0.712,0.712,0.712,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.024,1,0.162,0.0393,0.162,0.162,0.055,0.055,0.296,0.369,0.667,1 +0.667,0.0495,0.401,0.401,0,0,0.712,0.712,0.712,0,0,0,0,0,0,0,0.00245,0,0.00245,0.258,0.465,0.0392,1,0.183,0.0673,0.183,0.183,0.103,0.103,0.422,0.526,0.667,1 +0.667,0.147,0.478,0.478,0,0,0.752,0.752,0.752,0,0,0,0,0,0,0,0.0323,0,0.0323,0.331,0.494,0.0632,1,0.264,0.163,0.264,0.264,0.179,0.179,0.359,0.447,0.333,1 +0.667,0.177,0.523,0.523,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0.00823,0,0.00823,0.346,0.519,0.0871,1,0.335,0.258,0.335,0.335,0.302,0.302,0.151,0.188,0.333,1 +0.333,0.184,0.378,0.378,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0.0391,0,0.0391,0.298,0.524,0.107,1,0.335,0.247,0.335,0.335,0.577,0.577,0.151,0.188,0,1 +0.333,0.185,0.256,0.256,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0,0,0.257,0.524,0.126,1,0.325,0.23,0.325,0.325,0.831,0.831,0.12,0.149,0,1 +0.333,0.181,0.267,0.267,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0.00284,0.00284,0.261,0.524,0.142,1,0.335,0.247,0.335,0.335,0.873,0.873,0.0945,0.118,0,1 +0.333,0.175,0.278,0.278,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0.00284,0.00284,0.265,0.529,0.157,1,0.335,0.258,0.335,0.335,0.831,0.831,0.0882,0.11,0,1 +0.333,0.0495,0.267,0.267,0,0,0.831,0.831,0.831,0,0,0,0,0,0,0,0,0.0114,0.0114,0.258,0.465,0.166,1,0.325,0.236,0.325,0.325,0.824,0.824,0.0882,0.11,0.333,1 +0.333,0.0495,0.312,0.312,0,0,0.831,0.831,0.831,0,0,0,0,0,0,0,0,0.00852,0.00852,0.258,0.465,0.187,1,0.325,0.213,0.325,0.325,0.618,0.618,0.0882,0.11,0.333,1 +0.333,0.0495,0.345,0.345,0,0.0122,0.831,0.831,0.831,0,0,0,0,0,0,0,0,0.00852,0.00852,0.258,0.465,0.198,1,0.325,0.275,0.325,0.325,0.515,0.515,0.151,0.188,0.333,1 +0.333,0.174,0.356,0.356,0,0.0244,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0.00284,0.00284,0.29,0.539,0.222,1,0.335,0.331,0.335,0.335,0.419,0.419,0.365,0.455,0,1 +0.667,0.326,0.434,0.434,0,0.0366,0.87,0.87,0.87,0,0,0,0,0,0,0,0,0,0,0.375,0.632,0.277,1,0.457,0.617,0.457,0.457,0.254,0.254,0.794,0.989,0,1 +0.667,0.395,0.59,0.59,0,0,0.949,0.949,0.949,0,0,0,0,0,0,0,0,0,0,0.479,0.672,0.34,1,0.578,0.903,0.578,0.578,0.158,0.158,0.769,0.958,0,1 +1,0.736,0.701,0.701,0,0,0.989,0.989,0.989,0,0,0,0,0,0,0,0,0.00852,0.00852,0.701,0.79,0.457,1,0.67,0.645,0.67,0.67,0.0893,0.0893,0.428,0.534,0,1 +1,0.895,0.745,0.745,0,0,0.949,0.949,0.949,0.00416,0.0175,0,0,0,0,0,0,0,0,0.745,0.745,0.64,1,0.771,0.393,0.771,0.771,0.055,0.055,0.384,0.479,0,1 +1,0.928,0.79,0.79,0,0,0.93,0.93,0.93,0.0191,0.0302,0,0,0,0,0,0,0.00568,0.00568,0.79,0.701,0.791,1,0.822,0.247,0.822,0.822,0.0275,0.0275,0.321,0.4,0,1 +1,0.555,0.768,0.768,0,0,0.91,0.91,0.91,0,0,0,0,0,0,0,0,0,0,0.598,0.602,0.749,1,0.873,0.107,0.873,0.873,0.0206,0.0206,0.271,0.338,0.333,1 +1,0.0495,0.656,0.656,0,0,0.87,0.87,0.87,0,0,0,0,0,0,0,0,0.017,0.017,0.258,0.465,0.453,1,0.761,0.0729,0.761,0.761,0.0206,0.0206,0.151,0.188,1,1 +1,0.0495,0.556,0.556,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0.0114,0.0114,0.258,0.465,0.196,1,0.659,0.0393,0.659,0.659,0.0206,0.0206,0.151,0.188,1,1 +1,0.0495,0.445,0.445,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.465,0.0806,1,0.446,0.0224,0.446,0.446,0.0206,0.0206,0.151,0.188,1,1 +1,0.0495,0.412,0.412,0,0,0.771,0.771,0.771,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0392,1,0.233,0.00561,0.233,0.233,0.0206,0.0206,0.183,0.228,1,1 +1,0.0495,0.412,0.412,0,0,0.752,0.752,0.752,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0196,1,0.193,0.00561,0.193,0.193,0.0206,0.0206,0.151,0.188,1,1 +1,0.0495,0.401,0.401,0,0,0.732,0.732,0.732,0,0,0,0,0,0,0,0.00262,0,0.00262,0.258,0.465,0.0152,1,0.152,0.0112,0.152,0.152,0.0275,0.0275,0.183,0.228,1,1 +1,0.0525,0.367,0.367,0,0,0.712,0.712,0.712,0,0,0,0,0,0,0,0.0643,0,0.0643,0.331,0.473,0.024,1,0.162,0.0393,0.162,0.162,0.055,0.055,0.296,0.369,0.333,1 +1,0.114,0.401,0.401,0,0,0.712,0.712,0.712,0,0,0,0,0,0,0,0.049,0,0.049,0.353,0.483,0.0392,1,0.183,0.0673,0.183,0.183,0.103,0.103,0.422,0.526,0.333,1 +1,0.245,0.478,0.478,0,0.0731,0.752,0.752,0.752,0,0,0,0,0,0,0,0.0324,0,0.0324,0.405,0.523,0.0632,1,0.264,0.163,0.264,0.264,0.179,0.179,0.359,0.447,0.333,1 +0.667,0.305,0.523,0.523,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0.0865,0.0263,0,0.113,0.435,0.572,0.0871,1,0.335,0.258,0.335,0.335,0.302,0.302,0.151,0.188,0,1 +0.333,0.184,0.378,0.378,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0.0123,0,0.0123,0.298,0.524,0.107,1,0.335,0.247,0.335,0.335,0.577,0.577,0.151,0.188,0,1 +0.333,0.185,0.256,0.256,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0,0,0.257,0.524,0.126,1,0.325,0.23,0.325,0.325,0.831,0.831,0.12,0.149,0,1 +0.333,0.181,0.267,0.267,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0,0,0.261,0.524,0.142,1,0.335,0.247,0.335,0.335,0.873,0.873,0.0945,0.118,0,1 +0.333,0.175,0.278,0.278,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0.00852,0.00852,0.265,0.529,0.157,1,0.335,0.258,0.335,0.335,0.831,0.831,0.0882,0.11,0,1 +0.333,0.171,0.267,0.267,0,0,0.831,0.831,0.831,0,0,0,0,0,0,0,0,0.0284,0.0284,0.261,0.534,0.166,1,0.325,0.236,0.325,0.325,0.824,0.824,0.0882,0.11,0,1 +0.333,0.169,0.312,0.312,0,0,0.831,0.831,0.831,0,0,0,0,0,0,0,0,0,0,0.276,0.534,0.187,1,0.325,0.213,0.325,0.325,0.618,0.618,0.0882,0.11,0,1 +0.333,0.17,0.345,0.345,0,0,0.831,0.831,0.831,0,0,0,0,0,0,0,0,0.00568,0.00568,0.287,0.529,0.198,1,0.325,0.275,0.325,0.325,0.515,0.515,0.151,0.188,0,1 +0.333,0.174,0.356,0.356,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0.00852,0.00852,0.29,0.539,0.222,1,0.335,0.331,0.335,0.335,0.419,0.419,0.365,0.455,0,1 +0.333,0.188,0.434,0.434,0,0,0.87,0.87,0.87,0,0,0,0,0,0,0,0,0.00852,0.00852,0.316,0.549,0.277,1,0.457,0.617,0.457,0.457,0.254,0.254,0.794,0.989,0,1 +0.667,0.395,0.59,0.59,0,0.0487,0.949,0.949,0.949,0,0,0,0,0,0,0,0,0.00284,0.00284,0.479,0.672,0.34,1,0.578,0.903,0.578,0.578,0.158,0.158,0.769,0.958,0,1 +0.667,0.507,0.701,0.701,0,0.0244,0.989,0.989,0.989,0.0167,0.0891,0,0,0,0,0,0.0193,0,0.0193,0.553,0.682,0.457,1,0.67,0.645,0.67,0.67,0.0893,0.0893,0.428,0.534,0,1 +1,0.895,0.745,0.745,0,0,0.949,0.949,0.949,0.019,0.00637,0,0,0,0,0,0,0.0199,0.0199,0.745,0.745,0.64,1,0.771,0.393,0.771,0.771,0.055,0.055,0.384,0.479,0,1 +1,0.635,0.79,0.79,0,0,0.93,0.93,0.93,0.0175,0,0,0,0,0,0,0,0,0,0.613,0.622,0.791,1,0.822,0.247,0.822,0.822,0.0275,0.0275,0.321,0.4,0.333,1 +1,0.555,0.768,0.768,0,0,0.91,0.91,0.91,0.0161,0,0,0,0,0,0,0.00253,0,0.00253,0.598,0.602,0.749,1,0.873,0.107,0.873,0.873,0.0206,0.0206,0.271,0.338,0.333,1 +1,0.2,0.656,0.656,0,0,0.87,0.87,0.87,0.0117,0,0,0,0,0,0,0.0313,0.00568,0.037,0.391,0.509,0.453,1,0.761,0.0729,0.761,0.761,0.0206,0.0206,0.151,0.188,0.667,1 +1,0.116,0.556,0.556,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0,0,0.357,0.489,0.196,1,0.659,0.0393,0.659,0.659,0.0206,0.0206,0.151,0.188,0.667,1 +1,0.0495,0.445,0.445,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.465,0.0806,1,0.446,0.0224,0.446,0.446,0.0206,0.0206,0.151,0.188,1,1 +1,0.0495,0.412,0.412,0,0,0.771,0.771,0.771,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0392,1,0.233,0.00561,0.233,0.233,0.0206,0.0206,0.183,0.228,1,1 +1,0.0495,0.412,0.412,0,0,0.752,0.752,0.752,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0196,1,0.193,0.00561,0.193,0.193,0.0206,0.0206,0.151,0.188,1,1 +1,0.0495,0.401,0.401,0,0,0.732,0.732,0.732,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0152,1,0.152,0.0112,0.152,0.152,0.0275,0.0275,0.183,0.228,1,1 +1,0.0495,0.367,0.367,0,0,0.712,0.712,0.712,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.024,1,0.162,0.0393,0.162,0.162,0.055,0.055,0.296,0.369,1,1 +1,0.0495,0.401,0.401,0,0,0.712,0.712,0.712,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0392,1,0.183,0.0673,0.183,0.183,0.103,0.103,0.422,0.526,1,1 +0.667,0.147,0.478,0.478,0,0,0.752,0.752,0.752,0,0,0,0,0,0,0,0,0,0,0.331,0.494,0.0632,1,0.264,0.163,0.264,0.264,0.179,0.179,0.359,0.447,0.333,1 +0.333,0.0495,0.523,0.523,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0871,1,0.335,0.258,0.335,0.335,0.302,0.302,0.151,0.188,0.333,1 +0.333,0.0495,0.378,0.378,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.107,1,0.335,0.247,0.335,0.335,0.577,0.577,0.151,0.188,0.333,1 +0.333,0.0495,0.256,0.256,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.126,1,0.325,0.23,0.325,0.325,0.831,0.831,0.12,0.149,0.333,1 +0.333,0.0495,0.267,0.267,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0.00568,0.00568,0.258,0.465,0.142,1,0.335,0.247,0.335,0.335,0.873,0.873,0.0945,0.118,0.333,1 +0.333,0.0495,0.278,0.278,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.157,1,0.335,0.258,0.335,0.335,0.831,0.831,0.0882,0.11,0.333,1 +0.333,0.171,0.267,0.267,0,0.0731,0.831,0.831,0.831,0,0,0,0,0,0,0,0,0,0,0.261,0.534,0.166,1,0.325,0.236,0.325,0.325,0.824,0.824,0.0882,0.11,0,1 +0.333,0.169,0.312,0.312,0,0,0.831,0.831,0.831,0,0,0,0,0,0,0,0,0,0,0.276,0.534,0.187,1,0.325,0.213,0.325,0.325,0.618,0.618,0.0882,0.11,0,1 +0.333,0.17,0.345,0.345,0,0,0.831,0.831,0.831,0,0,0,0,0,0,0,0,0,0,0.287,0.529,0.198,1,0.325,0.275,0.325,0.325,0.515,0.515,0.151,0.188,0,1 +0.333,0.174,0.356,0.356,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0,0,0.29,0.539,0.222,1,0.335,0.331,0.335,0.335,0.419,0.419,0.365,0.455,0,1 +0.333,0.188,0.434,0.434,0,0,0.87,0.87,0.87,0,0,0,0,0,0,0,0,0.0142,0.0142,0.316,0.549,0.277,1,0.457,0.617,0.457,0.457,0.254,0.254,0.794,0.989,0,1 +0.333,0.222,0.59,0.59,0,0.0122,0.949,0.949,0.949,0,0,0,0,0,0,0,0,0.00568,0.00568,0.368,0.569,0.34,1,0.578,0.903,0.578,0.578,0.158,0.158,0.769,0.958,0,1 +1,0.736,0.701,0.701,0,0.0244,0.989,0.989,0.989,0,0,0,0,0,0,0,0,0.0199,0.0199,0.701,0.79,0.457,1,0.67,0.645,0.67,0.67,0.0893,0.0893,0.428,0.534,0,1 +0.667,0.613,0.745,0.745,0,0,0.949,0.949,0.949,0,0,0,0,0,0,0,0,0.0199,0.0199,0.583,0.652,0.64,1,0.771,0.393,0.771,0.771,0.055,0.055,0.384,0.479,0,1 +0.667,0.635,0.79,0.79,0,0,0.93,0.93,0.93,0,0,0,0,0,0,0,0,0,0,0.613,0.622,0.791,1,0.822,0.247,0.822,0.822,0.0275,0.0275,0.321,0.4,0,1 +1,0.555,0.768,0.768,0,0.0366,0.91,0.91,0.91,0,0,0,0,0,0,0,0,0.00284,0.00284,0.598,0.602,0.749,1,0.873,0.107,0.873,0.873,0.0206,0.0206,0.271,0.338,0.333,1 +1,0.35,0.656,0.656,0,0,0.87,0.87,0.87,0,0,0,0,0,0,0,0,0.00568,0.00568,0.524,0.553,0.453,1,0.761,0.0729,0.761,0.761,0.0206,0.0206,0.151,0.188,0.333,1 +1,0.116,0.556,0.556,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0,0,0.357,0.489,0.196,1,0.659,0.0393,0.659,0.659,0.0206,0.0206,0.151,0.188,0.667,1 +1,0.0495,0.445,0.445,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0.00568,0.00568,0.258,0.465,0.0958,1,0.446,0.0224,0.446,0.446,0.0206,0.0206,0.151,0.188,1,1 +1,0.0495,0.412,0.412,0,0,0.771,0.771,0.771,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0479,1,0.233,0.00561,0.233,0.233,0.0206,0.0206,0.183,0.228,1,1 +1,0.0495,0.412,0.412,0,0,0.752,0.752,0.752,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0261,1,0.193,0.00561,0.193,0.193,0.0206,0.0206,0.151,0.188,1,1 +1,0.0495,0.401,0.401,0,0,0.732,0.732,0.732,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0174,1,0.152,0.0112,0.152,0.152,0.0275,0.0275,0.183,0.228,1,1 +1,0.0495,0.367,0.367,0,0,0.712,0.712,0.712,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.024,1,0.162,0.0393,0.162,0.162,0.055,0.055,0.296,0.369,1,1 +1,0.0495,0.401,0.401,0,0,0.712,0.712,0.712,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0305,1,0.183,0.0673,0.183,0.183,0.103,0.103,0.422,0.526,1,1 +1,0.0495,0.478,0.478,0,0,0.752,0.752,0.752,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0523,1,0.264,0.163,0.264,0.264,0.179,0.179,0.359,0.447,1,1 +1,0.0495,0.523,0.523,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0.102,0.0383,0,0.14,0.258,0.465,0.0937,1,0.335,0.258,0.335,0.335,0.302,0.302,0.151,0.188,1,1 +1,0.318,0.378,0.378,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0.0843,0.0245,0,0.109,0.338,0.582,0.155,1,0.335,0.247,0.335,0.335,0.577,0.577,0.151,0.188,0.333,1 +1,0.321,0.256,0.256,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0.0223,0,0.0223,0.257,0.582,0.205,1,0.325,0.23,0.325,0.325,0.831,0.831,0.12,0.149,0.333,1 +0.667,0.312,0.267,0.267,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0.0348,0,0.0348,0.264,0.582,0.244,1,0.335,0.247,0.335,0.335,0.873,0.873,0.0945,0.118,0,1 +0.667,0.3,0.278,0.278,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0.0267,0.00284,0.0296,0.271,0.592,0.268,1,0.335,0.258,0.335,0.335,0.831,0.831,0.0882,0.11,0,1 +1,0.413,0.267,0.267,0,0,0.831,0.831,0.831,0,0,0,0,0,0,0,0.0138,0,0.0138,0.267,0.671,0.288,1,0.325,0.236,0.325,0.325,0.824,0.824,0.0882,0.11,0,1 +1,0.289,0.312,0.312,0,0,0.831,0.831,0.831,0,0,0,0,0,0,0,0,0.00284,0.00284,0.294,0.602,0.34,1,0.325,0.213,0.325,0.325,0.618,0.618,0.0882,0.11,0.333,1 +1,0.29,0.345,0.345,0,0,0.831,0.831,0.831,0,0,0,0,0,0,0,0,0.00284,0.00284,0.316,0.592,0.388,1,0.325,0.275,0.325,0.325,0.515,0.515,0.151,0.188,0.333,1 +1,0.174,0.356,0.356,0,0.11,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0.0142,0.0142,0.29,0.539,0.427,1,0.335,0.331,0.335,0.335,0.419,0.419,0.365,0.455,0.667,1 +1,0.188,0.434,0.434,0,0,0.87,0.87,0.87,0,0,0,0,0,0,0,0,0.0199,0.0199,0.316,0.549,0.449,1,0.457,0.617,0.457,0.457,0.254,0.254,0.794,0.989,0.667,1 +1,0.395,0.59,0.59,0,0,0.949,0.949,0.949,0,0,0,0,0,0,0,0,0.00568,0.00568,0.479,0.672,0.464,1,0.578,0.903,0.578,0.578,0.158,0.158,0.769,0.958,0.333,1 +1,0.507,0.701,0.701,0,0,0.989,0.989,0.989,0,0,0,0,0,0,0,0,0.00568,0.00568,0.553,0.682,0.547,1,0.67,0.645,0.67,0.67,0.0893,0.0893,0.428,0.534,0.333,1 +1,0.613,0.745,0.745,0,0,0.949,0.949,0.949,0,0,0,0,0,0,0,0.0026,0.00852,0.0111,0.583,0.652,0.719,1,0.771,0.393,0.771,0.771,0.055,0.055,0.384,0.479,0.333,1 +1,0.928,0.79,0.79,0,0,0.93,0.93,0.93,0,0,0,0,0,0,0,0.0234,0,0.0234,0.79,0.701,0.845,1,0.822,0.247,0.822,0.822,0.0275,0.0275,0.321,0.4,0,1 +1,0.807,0.768,0.768,0,0,0.91,0.91,0.91,0,0,0,0,0,0,0,0,0.00852,0.00852,0.768,0.671,0.78,1,0.873,0.107,0.873,0.873,0.0206,0.0206,0.271,0.338,0,1 +1,0.5,0.656,0.656,0,0,0.87,0.87,0.87,0,0,0,0,0,0,0,0,0,0,0.656,0.596,0.492,1,0.761,0.0729,0.761,0.761,0.0206,0.0206,0.151,0.188,0,1 +1,0.249,0.556,0.556,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0.00275,0,0.00275,0.556,0.537,0.224,1,0.659,0.0393,0.659,0.659,0.0206,0.0206,0.151,0.188,0,1 +1,0.099,0.443,0.443,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0.0396,0,0.0396,0.381,0.501,0.0966,1,0.445,0.0224,0.445,0.445,0.0205,0.0205,0.15,0.188,0.333,1 +1,0.0578,0.41,0.41,0,0,0.771,0.771,0.771,0,0,0,0,0,0,0,0,0,0,0.308,0.474,0.0483,1,0.233,0.00559,0.233,0.233,0.0205,0.0205,0.182,0.228,0.667,1 +1,0.0495,0.41,0.41,0,0,0.752,0.752,0.752,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0264,1,0.192,0.00559,0.192,0.192,0.0205,0.0205,0.15,0.188,1,1 +1,0.0495,0.399,0.399,0,0,0.732,0.732,0.732,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0176,1,0.152,0.0112,0.152,0.152,0.0274,0.0274,0.182,0.228,1,1 +1,0.0495,0.366,0.366,0,0,0.712,0.712,0.712,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0242,1,0.162,0.0391,0.162,0.162,0.0548,0.0548,0.294,0.369,1,1 +1,0.0495,0.399,0.399,0,0,0.712,0.712,0.712,0,0,0,0,0,0,0,0,0.00852,0.00852,0.258,0.465,0.0308,1,0.182,0.0671,0.182,0.182,0.103,0.103,0.419,0.526,1,1 +1,0.0495,0.477,0.477,0,0,0.752,0.752,0.752,0,0,0,0,0,0,0,0.0262,0,0.0262,0.258,0.465,0.0527,1,0.263,0.162,0.263,0.263,0.178,0.178,0.357,0.447,1,1 +1,0.172,0.521,0.521,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0.0348,0.0254,0,0.0602,0.345,0.518,0.0944,1,0.334,0.257,0.334,0.334,0.301,0.301,0.15,0.188,0.667,1 +1,0.175,0.377,0.377,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0.0348,0.0209,0,0.0557,0.297,0.523,0.156,1,0.334,0.246,0.334,0.334,0.575,0.575,0.15,0.188,0.667,1 +1,0.299,0.255,0.255,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0.0112,0,0.0112,0.256,0.581,0.206,1,0.324,0.229,0.324,0.324,0.829,0.829,0.119,0.149,0.333,1 +1,0.411,0.266,0.266,0,0.0366,0.791,0.791,0.791,0,0,0,0,0,0,0,0.0274,0.00284,0.0302,0.266,0.638,0.246,1,0.334,0.246,0.334,0.334,0.87,0.87,0.0939,0.118,0,1 +0.667,0.279,0.277,0.277,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0.00272,0.00284,0.00556,0.271,0.591,0.27,1,0.334,0.257,0.334,0.334,0.829,0.829,0.0876,0.11,0,1 +0.333,0.16,0.266,0.266,0,0,0.831,0.831,0.831,0,0,0,0,0,0,0,0.0564,0.0142,0.0706,0.26,0.533,0.29,1,0.324,0.235,0.324,0.324,0.822,0.822,0.0876,0.11,0,1 +0.333,0.159,0.31,0.31,0,0,0.831,0.831,0.831,0,0,0,0,0,0,0,0.00802,0.0114,0.0194,0.275,0.533,0.343,1,0.324,0.212,0.324,0.324,0.616,0.616,0.0876,0.11,0,1 +0.333,0.159,0.344,0.344,0,0,0.831,0.831,0.831,0,0,0,0,0,0,0,0,0.0114,0.0114,0.286,0.528,0.391,1,0.324,0.274,0.324,0.324,0.514,0.514,0.15,0.188,0,1 +0.667,0.269,0.355,0.355,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0.00284,0.00284,0.322,0.61,0.431,1,0.334,0.33,0.334,0.334,0.418,0.418,0.363,0.455,0,1 +0.333,0.162,0.432,0.432,0,0,0.87,0.87,0.87,0,0,0,0,0,0,0,0.0251,0.0142,0.0393,0.316,0.548,0.452,1,0.455,0.615,0.455,0.455,0.253,0.253,0.789,0.989,0,1 +0.667,0.291,0.587,0.587,0,0,0.949,0.949,0.949,0,0,0,0,0,0,0,0.0111,0.00852,0.0196,0.477,0.67,0.468,1,0.577,0.9,0.577,0.577,0.158,0.158,0.764,0.958,0,1 +0.667,0.339,0.698,0.698,0,0,0.989,0.989,0.989,0,0,0,0,0,0,0,0,0,0,0.551,0.68,0.551,1,0.668,0.643,0.668,0.668,0.089,0.089,0.426,0.534,0,1 +0.333,0.239,0.742,0.742,0,0,0.949,0.949,0.949,0,0,0,0,0,0,0,0,0,0,0.419,0.558,0.725,1,0.769,0.391,0.769,0.769,0.0548,0.0548,0.382,0.479,0,1 +0.333,0.294,0.787,0.787,0,0,0.93,0.93,0.93,0,0,0,0,0,0,0,0,0.00568,0.00568,0.434,0.543,0.852,1,0.819,0.246,0.819,0.819,0.0274,0.0274,0.319,0.4,0,1 +0.333,0.326,0.765,0.765,0,0,0.91,0.91,0.91,0,0,0,0,0,0,0,0,0,0,0.427,0.533,0.786,1,0.87,0.106,0.87,0.87,0.0205,0.0205,0.269,0.338,0,1 +0.667,0.232,0.654,0.654,0,0,0.87,0.87,0.87,0,0,0,0,0,0,0,0.0126,0.00284,0.0155,0.39,0.508,0.496,1,0.759,0.0726,0.759,0.759,0.0205,0.0205,0.15,0.188,0.333,1 +1,0.183,0.554,0.554,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0.0144,0,0.0144,0.455,0.511,0.226,1,0.658,0.0391,0.658,0.658,0.0205,0.0205,0.15,0.188,0.333,1 +1,0.0495,0.443,0.443,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0813,1,0.445,0.0224,0.445,0.445,0.0205,0.0205,0.15,0.188,1,1 +1,0.0495,0.41,0.41,0,0,0.771,0.771,0.771,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0395,1,0.233,0.00559,0.233,0.233,0.0205,0.0205,0.182,0.228,1,1 +1,0.0495,0.41,0.41,0,0,0.752,0.752,0.752,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0198,1,0.192,0.00559,0.192,0.192,0.0205,0.0205,0.15,0.188,1,1 +1,0.0495,0.399,0.399,0,0,0.732,0.732,0.732,0,0,0,0,0,0,0,0,0.0199,0.0199,0.258,0.465,0.0154,1,0.152,0.0112,0.152,0.152,0.0274,0.0274,0.182,0.228,1,1 +1,0.0495,0.366,0.366,0,0,0.712,0.712,0.712,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0242,1,0.162,0.0391,0.162,0.162,0.0548,0.0548,0.294,0.369,1,1 +1,0.0495,0.399,0.399,0,0.0487,0.712,0.712,0.712,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0395,1,0.182,0.0671,0.182,0.182,0.103,0.103,0.419,0.526,1,1 +1,0.236,0.477,0.477,0,0.134,0.752,0.752,0.752,0,0,0,0,0,0,0,0.0117,0,0.0117,0.404,0.521,0.0637,1,0.263,0.162,0.263,0.263,0.178,0.178,0.357,0.447,0.333,1 +0.667,0.295,0.521,0.521,0,0.0366,0.791,0.791,0.791,0,0,0,0,0,0,0,0.0143,0,0.0143,0.433,0.571,0.0879,1,0.334,0.257,0.334,0.334,0.301,0.301,0.15,0.188,0,1 +0.333,0.175,0.377,0.377,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0,0,0.297,0.523,0.108,1,0.334,0.246,0.334,0.334,0.575,0.575,0.15,0.188,0,1 +0.333,0.174,0.255,0.255,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0.0027,0.00284,0.00554,0.257,0.523,0.127,1,0.324,0.229,0.324,0.324,0.829,0.829,0.119,0.149,0,1 +0.333,0.17,0.266,0.266,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0.0485,0.00852,0.057,0.26,0.523,0.143,1,0.334,0.246,0.334,0.334,0.87,0.87,0.0939,0.118,0,1 +0.333,0.164,0.277,0.277,0,0,0.791,0.791,0.791,0.0167,0.0478,0,0,0,0,0,0,0.0142,0.0142,0.264,0.528,0.158,1,0.334,0.257,0.334,0.334,0.829,0.829,0.0876,0.11,0,1 +0.333,0.16,0.266,0.266,0,0,0.831,0.831,0.831,0.0184,0,0,0,0,0,0,0,0.00284,0.00284,0.26,0.533,0.167,1,0.324,0.235,0.324,0.324,0.822,0.822,0.0876,0.11,0,1 +0.333,0.159,0.31,0.31,0,0,0.831,0.831,0.831,0.0267,0.0891,0,0,0,0,0,0,0.00284,0.00284,0.275,0.533,0.189,1,0.324,0.212,0.324,0.324,0.616,0.616,0.0876,0.11,0,1 +0.333,0.159,0.344,0.344,0,0,0.831,0.831,0.831,0.0214,0.00637,0,0,0,0,0,0,0,0,0.286,0.528,0.2,1,0.324,0.274,0.324,0.324,0.514,0.514,0.15,0.188,0,1 +0.667,0.269,0.355,0.355,0,0,0.811,0.811,0.811,0.0133,0,0,0,0,0,0,0,0.00852,0.00852,0.322,0.61,0.224,1,0.334,0.33,0.334,0.334,0.418,0.418,0.363,0.455,0,1 +1,0.274,0.432,0.432,0,0,0.87,0.87,0.87,0.0206,0,0,0,0,0,0,0,0,0,0.374,0.63,0.279,1,0.455,0.615,0.455,0.455,0.253,0.253,0.789,0.989,0.333,1 +1,0.291,0.587,0.587,0,0.0487,0.949,0.949,0.949,0.0144,0,0,0,0,0,0,0,0.00568,0.00568,0.477,0.67,0.343,1,0.577,0.9,0.577,0.577,0.158,0.158,0.764,0.958,0.333,1 +1,0.339,0.698,0.698,0,0.0975,0.989,0.989,0.989,0,0,0,0,0,0,0,0,0,0,0.551,0.68,0.461,1,0.668,0.643,0.668,0.668,0.089,0.089,0.426,0.534,0.333,1 +1,0.619,0.742,0.742,0,0,0.949,0.949,0.949,0,0,0,0,0,0,0,0,0.0142,0.0142,0.742,0.742,0.646,1,0.769,0.391,0.769,0.769,0.0548,0.0548,0.382,0.479,0,1 +1,0.783,0.787,0.787,0,0,0.93,0.93,0.93,0,0,0,0,0,0,0,0,0,0,0.787,0.698,0.797,1,0.819,0.246,0.819,0.819,0.0274,0.0274,0.319,0.4,0,1 +1,0.88,0.765,0.765,0,0,0.91,0.91,0.91,0,0,0,0,0,0,0,0,0.00284,0.00284,0.765,0.668,0.756,1,0.87,0.106,0.87,0.87,0.0205,0.0205,0.269,0.338,0,1 +1,0.415,0.654,0.654,0,0,0.87,0.87,0.87,0,0,0,0,0,0,0,0.014,0,0.014,0.522,0.551,0.457,1,0.759,0.0726,0.759,0.759,0.0205,0.0205,0.15,0.188,0.333,1 +1,0.116,0.554,0.554,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0,0,0.357,0.488,0.198,1,0.658,0.0391,0.658,0.658,0.0205,0.0205,0.15,0.188,0.667,1 +1,0.0743,0.443,0.443,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0,0,0.32,0.483,0.0813,1,0.445,0.0224,0.445,0.445,0.0205,0.0205,0.15,0.188,0.667,1 +1,0.0495,0.41,0.41,0,0,0.771,0.771,0.771,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0395,1,0.233,0.00559,0.233,0.233,0.0205,0.0205,0.182,0.228,1,1 +1,0.0495,0.41,0.41,0,0,0.752,0.752,0.752,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0198,1,0.192,0.00559,0.192,0.192,0.0205,0.0205,0.15,0.188,1,1 +1,0.0495,0.399,0.399,0,0,0.732,0.732,0.732,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.465,0.0154,1,0.152,0.0112,0.152,0.152,0.0274,0.0274,0.182,0.228,1,1 +1,0.0495,0.366,0.366,0,0,0.712,0.712,0.712,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0242,1,0.162,0.0391,0.162,0.162,0.0548,0.0548,0.294,0.369,1,1 +1,0.0495,0.399,0.399,0,0,0.712,0.712,0.712,0,0,0,0,0,0,0,0.0389,0,0.0389,0.258,0.465,0.0395,1,0.182,0.0671,0.182,0.182,0.103,0.103,0.419,0.526,1,1 +1,0.236,0.477,0.477,0,0,0.752,0.752,0.752,0,0,0,0,0,0,0,0.0532,0,0.0532,0.404,0.521,0.0637,1,0.263,0.162,0.263,0.263,0.178,0.178,0.357,0.447,0.333,1 +1,0.417,0.521,0.521,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0.0317,0,0.0317,0.521,0.623,0.0879,1,0.334,0.257,0.334,0.334,0.301,0.301,0.15,0.188,0,1 +0.333,0.175,0.377,0.377,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0.0159,0,0.0159,0.297,0.523,0.108,1,0.334,0.246,0.334,0.334,0.575,0.575,0.15,0.188,0,1 +0.333,0.174,0.255,0.255,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0.028,0.00568,0.0337,0.257,0.523,0.127,1,0.324,0.229,0.324,0.324,0.829,0.829,0.119,0.149,0,1 +0.333,0.17,0.266,0.266,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0.0215,0.00284,0.0244,0.26,0.523,0.143,1,0.334,0.246,0.334,0.334,0.87,0.87,0.0939,0.118,0,1 +0,0.0495,0.277,0.277,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0.0142,0.0142,0.258,0.465,0.158,1,0.334,0.257,0.334,0.334,0.829,0.829,0.0876,0.11,0,1 +0.333,0.16,0.266,0.266,0,0,0.831,0.831,0.831,0,0,0,0,0,0,0,0,0.00284,0.00284,0.26,0.533,0.167,1,0.324,0.235,0.324,0.324,0.822,0.822,0.0876,0.11,0,1 +0.333,0.159,0.31,0.31,0,0,0.831,0.831,0.831,0,0,0,0,0,0,0,0.00266,0,0.00266,0.275,0.533,0.189,1,0.324,0.212,0.324,0.324,0.616,0.616,0.0876,0.11,0,1 +0.333,0.159,0.344,0.344,0,0,0.831,0.831,0.831,0,0,0,0,0,0,0,0.0343,0,0.0343,0.286,0.528,0.2,1,0.324,0.274,0.324,0.324,0.514,0.514,0.15,0.188,0,1 +0.667,0.269,0.355,0.355,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0,0,0.322,0.61,0.224,1,0.334,0.33,0.334,0.334,0.418,0.418,0.363,0.455,0,1 +0.333,0.162,0.432,0.432,0,0.0366,0.87,0.87,0.87,0,0,0,0,0,0,0,0,0.0114,0.0114,0.316,0.548,0.279,1,0.455,0.615,0.455,0.455,0.253,0.253,0.789,0.989,0,1 +0.333,0.17,0.587,0.587,0,0,0.949,0.949,0.949,0,0,0,0,0,0,0,0,0,0,0.368,0.568,0.343,1,0.577,0.9,0.577,0.577,0.158,0.158,0.764,0.958,0,1 +0.333,0.194,0.698,0.698,0,0,0.989,0.989,0.989,0,0,0,0,0,0,0,0.00256,0.00568,0.00824,0.405,0.572,0.461,1,0.668,0.643,0.668,0.668,0.089,0.089,0.426,0.534,0,1 +1,0.619,0.742,0.742,0,0,0.949,0.949,0.949,0,0,0,0,0,0,0,0.00769,0.0142,0.0219,0.742,0.742,0.646,1,0.769,0.391,0.769,0.769,0.0548,0.0548,0.382,0.479,0,1 +1,0.783,0.787,0.787,0,0,0.93,0.93,0.93,0,0,0,0,0,0,0,0,0.00852,0.00852,0.787,0.698,0.797,1,0.819,0.246,0.819,0.819,0.0274,0.0274,0.319,0.4,0,1 +1,0.0495,0.765,0.765,0,0,0.91,0.91,0.91,0,0,0,0,0,0,0,0,0.00568,0.00568,0.258,0.465,0.756,1,0.87,0.106,0.87,0.87,0.0205,0.0205,0.269,0.338,1,1 +1,0.0495,0.654,0.654,0,0,0.87,0.87,0.87,0,0,0,0,0,0,0,0,0.00852,0.00852,0.258,0.465,0.457,1,0.759,0.0726,0.759,0.759,0.0205,0.0205,0.15,0.188,1,1 +1,0.0495,0.554,0.554,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.465,0.198,1,0.658,0.0391,0.658,0.658,0.0205,0.0205,0.15,0.188,1,1 +1,0.0495,0.443,0.443,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0813,1,0.445,0.0224,0.445,0.445,0.0205,0.0205,0.15,0.188,1,1 +1,0.0495,0.41,0.41,0,0,0.771,0.771,0.771,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0395,1,0.233,0.00559,0.233,0.233,0.0205,0.0205,0.182,0.228,1,1 +1,0.0495,0.41,0.41,0,0,0.752,0.752,0.752,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0198,1,0.192,0.00559,0.192,0.192,0.0205,0.0205,0.15,0.188,1,1 +1,0.0495,0.399,0.399,0,0,0.732,0.732,0.732,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0154,1,0.152,0.0112,0.152,0.152,0.0274,0.0274,0.182,0.228,1,1 +1,0.0495,0.366,0.366,0,0,0.712,0.712,0.712,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0242,1,0.162,0.0391,0.162,0.162,0.0548,0.0548,0.294,0.369,1,1 +1,0.0495,0.399,0.399,0,0,0.712,0.712,0.712,0,0,0,0,0,0,0,0.00256,0,0.00256,0.258,0.465,0.0395,1,0.182,0.0671,0.182,0.182,0.103,0.103,0.419,0.526,1,1 +1,0.236,0.477,0.477,0,0,0.752,0.752,0.752,0,0,0,0,0,0,0,0.0404,0,0.0404,0.404,0.521,0.0637,1,0.263,0.162,0.263,0.263,0.178,0.178,0.357,0.447,0.333,1 +1,0.417,0.521,0.521,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0,0,0.521,0.623,0.0879,1,0.334,0.257,0.334,0.334,0.301,0.301,0.15,0.188,0,1 +0.333,0.175,0.377,0.377,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0,0,0.297,0.523,0.108,1,0.334,0.246,0.334,0.334,0.575,0.575,0.15,0.188,0,1 +0.333,0.174,0.255,0.255,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0,0,0.257,0.523,0.127,1,0.324,0.229,0.324,0.324,0.829,0.829,0.119,0.149,0,1 +0.333,0.17,0.266,0.266,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0,0,0.26,0.523,0.143,1,0.334,0.246,0.334,0.334,0.87,0.87,0.0939,0.118,0,1 +0.333,0.164,0.277,0.277,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0,0,0.264,0.528,0.158,1,0.334,0.257,0.334,0.334,0.829,0.829,0.0876,0.11,0,1 +0.333,0.16,0.266,0.266,0,0,0.831,0.831,0.831,0,0,0,0,0,0,0,0,0.0142,0.0142,0.26,0.533,0.167,1,0.324,0.235,0.324,0.324,0.822,0.822,0.0876,0.11,0,1 +0.333,0.159,0.31,0.31,0,0,0.831,0.831,0.831,0,0,0,0,0,0,0,0,0.00568,0.00568,0.275,0.533,0.189,1,0.324,0.212,0.324,0.324,0.616,0.616,0.0876,0.11,0,1 +0.333,0.159,0.344,0.344,0,0,0.831,0.831,0.831,0,0,0,0,0,0,0,0,0.00284,0.00284,0.286,0.528,0.2,1,0.324,0.274,0.324,0.324,0.514,0.514,0.15,0.188,0,1 +0.333,0.159,0.355,0.355,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0.00269,0.0114,0.014,0.29,0.538,0.224,1,0.334,0.33,0.334,0.334,0.418,0.418,0.363,0.455,0,1 +0.667,0.274,0.432,0.432,0,0,0.87,0.87,0.87,0,0,0,0,0,0,0,0.0217,0.00852,0.0302,0.374,0.63,0.279,1,0.455,0.615,0.455,0.455,0.253,0.253,0.789,0.989,0,1 +0.667,0.291,0.587,0.587,0,0,0.949,0.949,0.949,0,0,0,0,0,0,0,0.0217,0.00568,0.0274,0.477,0.67,0.343,1,0.577,0.9,0.577,0.577,0.158,0.158,0.764,0.958,0,1 +1,0.484,0.698,0.698,0,0,0.989,0.989,0.989,0,0,0,0,0,0,0,0,0.0142,0.0142,0.698,0.787,0.461,1,0.668,0.643,0.668,0.668,0.089,0.089,0.426,0.534,0,1 +1,0.619,0.742,0.742,0,0,0.949,0.949,0.949,0,0,0,0,0,0,0,0,0.00852,0.00852,0.742,0.742,0.646,1,0.769,0.391,0.769,0.769,0.0548,0.0548,0.382,0.479,0,1 +1,0.783,0.787,0.787,0,0,0.93,0.93,0.93,0,0,0,0,0,0,0,0,0.00284,0.00284,0.787,0.698,0.797,1,0.819,0.246,0.819,0.819,0.0274,0.0274,0.319,0.4,0,1 +1,0.88,0.765,0.765,0,0,0.91,0.91,0.91,0,0,0,0,0,0,0,0,0,0,0.765,0.668,0.756,1,0.87,0.106,0.87,0.87,0.0205,0.0205,0.269,0.338,0,1 +1,0.415,0.654,0.654,0,0,0.87,0.87,0.87,0,0,0,0,0,0,0,0,0.00568,0.00568,0.522,0.551,0.457,1,0.759,0.0726,0.759,0.759,0.0205,0.0205,0.15,0.188,0.333,1 +1,0.0495,0.554,0.554,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.465,0.198,1,0.658,0.0391,0.658,0.658,0.0205,0.0205,0.15,0.188,1,1 +1,0.0495,0.443,0.443,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0813,1,0.445,0.0224,0.445,0.445,0.0205,0.0205,0.15,0.188,1,1 +1,0.0495,0.41,0.41,0,0,0.771,0.771,0.771,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0395,1,0.233,0.00559,0.233,0.233,0.0205,0.0205,0.182,0.228,1,1 +1,0.0495,0.41,0.41,0,0,0.752,0.752,0.752,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0198,1,0.192,0.00559,0.192,0.192,0.0205,0.0205,0.15,0.188,1,1 +1,0.0495,0.399,0.399,0,0,0.732,0.732,0.732,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0154,1,0.152,0.0112,0.152,0.152,0.0274,0.0274,0.182,0.228,1,1 +1,0.0495,0.366,0.366,0,0,0.712,0.712,0.712,0,0,0,0,0,0,0,0.00268,0,0.00268,0.258,0.465,0.0242,1,0.162,0.0391,0.162,0.162,0.0548,0.0548,0.294,0.369,1,1 +1,0.0798,0.399,0.399,0,0,0.712,0.712,0.712,0,0,0,0,0,0,0,0.0514,0,0.0514,0.305,0.474,0.0395,1,0.182,0.0671,0.182,0.182,0.103,0.103,0.419,0.526,0.667,1 +0.667,0.143,0.477,0.477,0,0,0.752,0.752,0.752,0,0,0,0,0,0,0,0.0202,0,0.0202,0.331,0.493,0.0637,1,0.263,0.162,0.263,0.263,0.178,0.178,0.357,0.447,0.333,1 +0.667,0.295,0.521,0.521,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0.036,0,0.036,0.433,0.571,0.0879,1,0.334,0.257,0.334,0.334,0.301,0.301,0.15,0.188,0,1 +0.667,0.301,0.377,0.377,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0.0663,0,0.0663,0.337,0.581,0.108,1,0.334,0.246,0.334,0.334,0.575,0.575,0.15,0.188,0,1 +0.667,0.299,0.255,0.255,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0.0411,0.00568,0.0468,0.256,0.581,0.127,1,0.324,0.229,0.324,0.324,0.829,0.829,0.119,0.149,0,1 +0.667,0.291,0.266,0.266,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0.0265,0.0142,0.0407,0.263,0.581,0.143,1,0.334,0.246,0.334,0.334,0.87,0.87,0.0939,0.118,0,1 +0.333,0.164,0.277,0.277,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0,0,0.264,0.528,0.158,1,0.334,0.257,0.334,0.334,0.829,0.829,0.0876,0.11,0,1 +0.333,0.16,0.266,0.266,0,0,0.831,0.831,0.831,0,0,0,0,0,0,0,0,0,0,0.26,0.533,0.167,1,0.324,0.235,0.324,0.324,0.822,0.822,0.0876,0.11,0,1 +0.333,0.159,0.31,0.31,0,0,0.831,0.831,0.831,0,0,0,0,0,0,0,0,0.00852,0.00852,0.275,0.533,0.189,1,0.324,0.212,0.324,0.324,0.616,0.616,0.0876,0.11,0,1 +0.333,0.159,0.344,0.344,0,0,0.831,0.831,0.831,0,0,0,0,0,0,0,0,0.00852,0.00852,0.286,0.528,0.2,1,0.324,0.274,0.324,0.324,0.514,0.514,0.15,0.188,0,1 +0,0.0495,0.355,0.355,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.224,1,0.334,0.33,0.334,0.334,0.418,0.418,0.363,0.455,0,1 +0.333,0.162,0.432,0.432,0,0,0.87,0.87,0.87,0,0,0,0,0,0,0,0,0,0,0.316,0.548,0.279,1,0.455,0.615,0.455,0.455,0.253,0.253,0.789,0.989,0,1 +0.333,0.17,0.587,0.587,0,0,0.949,0.949,0.949,0,0,0,0,0,0,0,0,0.0114,0.0114,0.368,0.568,0.343,1,0.577,0.9,0.577,0.577,0.158,0.158,0.764,0.958,0,1 +0.333,0.194,0.698,0.698,0,0,0.989,0.989,0.989,0,0,0,0,0,0,0,0.0138,0.00852,0.0223,0.405,0.572,0.461,1,0.668,0.643,0.668,0.668,0.089,0.089,0.426,0.534,0,1 +0.667,0.429,0.742,0.742,0,0.0487,0.949,0.949,0.949,0,0,0,0,0,0,0,0,0.0142,0.0142,0.581,0.65,0.646,1,0.769,0.391,0.769,0.769,0.0548,0.0548,0.382,0.479,0,1 +1,0.783,0.787,0.787,0,0.0975,0.93,0.93,0.93,0,0,0,0,0,0,0,0.00252,0,0.00252,0.787,0.698,0.797,1,0.819,0.246,0.819,0.819,0.0274,0.0274,0.319,0.4,0,1 +1,0.88,0.765,0.765,0,0,0.91,0.91,0.91,0,0,0,0,0,0,0,0.024,0,0.024,0.765,0.668,0.756,1,0.87,0.106,0.87,0.87,0.0205,0.0205,0.269,0.338,0,1 +1,0.415,0.654,0.654,0,0,0.87,0.87,0.87,0,0,0,0,0,0,0,0,0,0,0.522,0.551,0.457,1,0.759,0.0726,0.759,0.759,0.0205,0.0205,0.15,0.188,0.333,1 +1,0.116,0.554,0.554,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0.00265,0,0.00265,0.357,0.488,0.198,1,0.658,0.0391,0.658,0.658,0.0205,0.0205,0.15,0.188,0.667,1 +1,0.0743,0.443,0.443,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0.03,0.00568,0.0357,0.32,0.483,0.0813,1,0.445,0.0224,0.445,0.445,0.0205,0.0205,0.15,0.188,0.667,1 +1,0.0495,0.41,0.41,0,0,0.771,0.771,0.771,0,0,0,0,0,0,0,0,0.00852,0.00852,0.258,0.465,0.0395,1,0.233,0.00559,0.233,0.233,0.0205,0.0205,0.182,0.228,1,1 +1,0.0495,0.41,0.41,0,0,0.752,0.752,0.752,0,0,0,0,0,0,0,0,0.0142,0.0142,0.258,0.465,0.0198,1,0.192,0.00559,0.192,0.192,0.0205,0.0205,0.15,0.188,1,1 +1,0.0495,0.399,0.399,0,0,0.732,0.732,0.732,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0154,1,0.152,0.0112,0.152,0.152,0.0274,0.0274,0.182,0.228,1,1 +0.667,0.0506,0.366,0.366,0,0,0.712,0.712,0.712,0,0,0,0,0,0,0,0,0,0,0.294,0.469,0.0242,1,0.162,0.0391,0.162,0.162,0.0548,0.0548,0.294,0.369,0.333,1 +0.667,0.0495,0.399,0.399,0,0,0.712,0.712,0.712,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0395,1,0.182,0.0671,0.182,0.182,0.103,0.103,0.419,0.526,0.667,1 +0.667,0.0495,0.477,0.477,0,0,0.752,0.752,0.752,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0637,1,0.263,0.162,0.263,0.263,0.178,0.178,0.357,0.447,0.667,1 +0.333,0.0495,0.521,0.521,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.465,0.0879,1,0.334,0.257,0.334,0.334,0.301,0.301,0.15,0.188,0.333,1 +0.667,0.0495,0.377,0.377,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0.0256,0,0.0256,0.258,0.465,0.108,1,0.334,0.246,0.334,0.334,0.575,0.575,0.15,0.188,0.667,1 +0.667,0.299,0.255,0.255,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0.0549,0.0154,0,0.0702,0.256,0.581,0.127,1,0.324,0.229,0.324,0.324,0.829,0.829,0.119,0.149,0,1 +0.667,0.291,0.266,0.266,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0.0238,0,0.0238,0.263,0.581,0.143,1,0.334,0.246,0.334,0.334,0.87,0.87,0.0939,0.118,0,1 +0.333,0.164,0.277,0.277,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0,0,0.264,0.528,0.158,1,0.334,0.257,0.334,0.334,0.829,0.829,0.0876,0.11,0,1 +0.333,0.16,0.266,0.266,0,0,0.831,0.831,0.831,0,0,0,0,0,0,0,0,0.00568,0.00568,0.26,0.533,0.167,1,0.324,0.235,0.324,0.324,0.822,0.822,0.0876,0.11,0,1 +0.333,0.159,0.31,0.31,0,0,0.831,0.831,0.831,0,0,0,0,0,0,0,0,0,0,0.275,0.533,0.189,1,0.324,0.212,0.324,0.324,0.616,0.616,0.0876,0.11,0,1 +0.333,0.159,0.344,0.344,0,0,0.831,0.831,0.831,0,0,0,0,0,0,0,0,0.00284,0.00284,0.286,0.528,0.2,1,0.324,0.274,0.324,0.324,0.514,0.514,0.15,0.188,0,1 +0.333,0.159,0.355,0.355,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0.00284,0.00284,0.29,0.538,0.224,1,0.334,0.33,0.334,0.334,0.418,0.418,0.363,0.455,0,1 +0.667,0.274,0.432,0.432,0,0.0366,0.87,0.87,0.87,0,0,0,0,0,0,0,0,0.00568,0.00568,0.374,0.63,0.279,1,0.455,0.615,0.455,0.455,0.253,0.253,0.789,0.989,0,1 +1,0.412,0.587,0.587,0,0,0.949,0.949,0.949,0,0,0,0,0,0,0,0,0.00852,0.00852,0.587,0.772,0.343,1,0.577,0.9,0.577,0.577,0.158,0.158,0.764,0.958,0,1 +1,0.484,0.698,0.698,0,0,0.989,0.989,0.989,0,0,0,0,0,0,0,0,0.00568,0.00568,0.698,0.787,0.461,1,0.668,0.643,0.668,0.668,0.089,0.089,0.426,0.534,0,1 +1,0.619,0.742,0.742,0,0.0122,0.949,0.949,0.949,0.0225,0.0891,0,0,0,0,0,0.0238,0.00852,0.0323,0.742,0.742,0.646,1,0.769,0.391,0.769,0.769,0.0548,0.0548,0.382,0.479,0,1 +1,0.783,0.787,0.787,0,0.0244,0.93,0.93,0.93,0.00528,0.00637,0,0,0,0,0,0.057,0.00568,0.0626,0.787,0.698,0.797,1,0.819,0.246,0.819,0.819,0.0274,0.0274,0.319,0.4,0,1 +1,0.88,0.765,0.765,0,0,0.91,0.91,0.91,0,0,0,0,0,0,0,0,0.00284,0.00284,0.765,0.668,0.756,1,0.87,0.106,0.87,0.87,0.0205,0.0205,0.269,0.338,0,1 +1,0.415,0.654,0.654,0,0,0.87,0.87,0.87,0,0,0,0,0,0,0,0,0.00852,0.00852,0.522,0.551,0.457,1,0.759,0.0726,0.759,0.759,0.0205,0.0205,0.15,0.188,0.333,1 +1,0.0495,0.554,0.554,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.198,1,0.658,0.0391,0.658,0.658,0.0205,0.0205,0.15,0.188,1,1 +1,0.0495,0.443,0.443,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.465,0.0966,1,0.445,0.0224,0.445,0.445,0.0205,0.0205,0.15,0.188,1,1 +1,0.0495,0.41,0.41,0,0,0.771,0.771,0.771,0,0,0,0,0,0,0,0,0.0114,0.0114,0.258,0.465,0.0483,1,0.233,0.00559,0.233,0.233,0.0205,0.0205,0.182,0.228,1,1 +1,0.0495,0.41,0.41,0,0,0.752,0.752,0.752,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0264,1,0.192,0.00559,0.192,0.192,0.0205,0.0205,0.15,0.188,1,1 +1,0.0495,0.399,0.399,0,0,0.732,0.732,0.732,0,0,0,0,0,0,0,0,0,0,0.305,0.464,0.0176,1,0.152,0.0112,0.152,0.152,0.0274,0.0274,0.182,0.228,0.667,1 +1,0.0495,0.366,0.366,0,0,0.712,0.712,0.712,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0242,1,0.162,0.0391,0.162,0.162,0.0548,0.0548,0.294,0.369,1,1 +1,0.0495,0.399,0.399,0,0,0.712,0.712,0.712,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0308,1,0.182,0.0671,0.182,0.182,0.103,0.103,0.419,0.526,1,1 +1,0.0495,0.477,0.477,0,0,0.752,0.752,0.752,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0527,1,0.263,0.162,0.263,0.263,0.178,0.178,0.357,0.447,1,1 +1,0.0495,0.521,0.521,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0944,1,0.334,0.257,0.334,0.334,0.301,0.301,0.15,0.188,1,1 +1,0.301,0.377,0.377,0,0,0.811,0.811,0.811,0,0,0.00673,0,0,0,0,0,0,0,0.337,0.581,0.156,1,0.334,0.246,0.334,0.334,0.575,0.575,0.15,0.188,0.333,1 +1,0.299,0.255,0.255,0,0,0.811,0.811,0.811,0,0,0.0378,0.0112,0,0,0,0,0,0,0.256,0.581,0.206,1,0.324,0.229,0.324,0.324,0.829,0.829,0.119,0.149,0.333,1 +1,0.291,0.266,0.266,0,0,0.791,0.791,0.791,0,0,0.0151,0.00456,0.238,0.238,0,0,0,0,0.263,0.581,0.246,1,0.334,0.246,0.334,0.334,0.87,0.87,0.0939,0.118,0.333,1 +0.333,0.0495,0.277,0.277,0,0,0.791,0.791,0.791,0,0,0,0,0.22,0.22,0,0,0,0,0.258,0.465,0.27,1,0.334,0.257,0.334,0.334,0.829,0.829,0.0876,0.11,0.333,1 +0.333,0.16,0.266,0.266,0,0,0.831,0.831,0.831,0.00421,0.0175,0.0165,0,0,0,0,0,0.0142,0.0142,0.26,0.533,0.29,1,0.324,0.235,0.324,0.324,0.822,0.822,0.0876,0.11,0,1 +1,0.269,0.31,0.31,0,0,0.831,0.831,0.831,0.0142,0.0302,0.027,0.0165,0,0,0,0,0.00852,0.00852,0.293,0.6,0.343,1,0.324,0.212,0.324,0.324,0.616,0.616,0.0876,0.11,0.333,1 +1,0.268,0.344,0.344,0,0,0.831,0.831,0.831,0,0,0.0222,0.00456,0.238,0.238,0,0,0,0,0.315,0.591,0.391,1,0.324,0.274,0.324,0.324,0.514,0.514,0.15,0.188,0.333,1 +1,0.269,0.355,0.355,0,0,0.811,0.811,0.811,0,0,0,0,0.128,0.128,0,0,0,0,0.322,0.61,0.431,1,0.334,0.33,0.334,0.334,0.418,0.418,0.363,0.455,0.333,1 +0.667,0.274,0.432,0.432,0,0,0.87,0.87,0.87,0,0,0,0,0,0,0,0,0,0,0.374,0.63,0.452,1,0.455,0.615,0.455,0.455,0.253,0.253,0.789,0.989,0,1 +1,0.412,0.587,0.587,0,0,0.949,0.949,0.949,0,0,0,0,0,0,0,0,0.017,0.017,0.587,0.772,0.468,1,0.577,0.9,0.577,0.577,0.158,0.158,0.764,0.958,0,1 +1,0.484,0.698,0.698,0,0,0.989,0.989,0.989,0.0161,0.0478,0,0,0,0,0,0,0.00852,0.00852,0.698,0.787,0.551,1,0.668,0.643,0.668,0.668,0.089,0.089,0.426,0.534,0,1 +1,0.619,0.742,0.742,0,0,0.949,0.949,0.949,0.0186,0,0,0,0,0,0,0.0377,0.0114,0.0491,0.742,0.742,0.725,1,0.769,0.391,0.769,0.769,0.0548,0.0548,0.382,0.479,0,1 +1,0.783,0.787,0.787,0,0,0.93,0.93,0.93,0.0247,0,0,0,0,0,0,0.00773,0.0114,0.0191,0.787,0.698,0.852,1,0.819,0.246,0.819,0.819,0.0274,0.0274,0.319,0.4,0,1 +1,0.88,0.765,0.765,0,0,0.91,0.91,0.91,0,0,0,0,0,0,0,0,0.00284,0.00284,0.765,0.668,0.786,1,0.87,0.106,0.87,0.87,0.0205,0.0205,0.269,0.338,0,1 +1,0.415,0.654,0.654,0,0,0.87,0.87,0.87,0,0,0,0,0,0,0,0.0156,0,0.0156,0.522,0.551,0.496,1,0.759,0.0726,0.759,0.759,0.0205,0.0205,0.15,0.188,0.333,1 +1,0.116,0.554,0.554,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0.0182,0,0.0182,0.357,0.488,0.226,1,0.658,0.0391,0.658,0.658,0.0205,0.0205,0.15,0.188,0.667,1 +1,0.0743,0.443,0.443,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0,0,0.32,0.483,0.0966,1,0.445,0.0224,0.445,0.445,0.0205,0.0205,0.15,0.188,0.667,1 +1,0.0495,0.41,0.41,0,0,0.771,0.771,0.771,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0483,1,0.233,0.00559,0.233,0.233,0.0205,0.0205,0.182,0.228,1,1 +1,0.0495,0.41,0.41,0,0,0.752,0.752,0.752,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0264,1,0.192,0.00559,0.192,0.192,0.0205,0.0205,0.15,0.188,1,1 +1,0.0495,0.399,0.399,0,0,0.732,0.732,0.732,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0176,1,0.152,0.0112,0.152,0.152,0.0274,0.0274,0.182,0.228,1,1 +1,0.0495,0.366,0.366,0,0,0.712,0.712,0.712,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0242,1,0.162,0.0391,0.162,0.162,0.0548,0.0548,0.294,0.369,1,1 +1,0.0495,0.399,0.399,0,0,0.712,0.712,0.712,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0308,1,0.182,0.0671,0.182,0.182,0.103,0.103,0.419,0.526,1,1 +1,0.0495,0.477,0.477,0,0,0.752,0.752,0.752,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0527,1,0.263,0.162,0.263,0.263,0.178,0.178,0.357,0.447,1,1 +1,0.0495,0.521,0.521,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0944,1,0.334,0.257,0.334,0.334,0.301,0.301,0.15,0.188,1,1 +1,0.175,0.377,0.377,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0.0492,0.0113,0,0.0605,0.297,0.523,0.156,1,0.334,0.246,0.334,0.334,0.575,0.575,0.15,0.188,0.667,1 +1,0.299,0.255,0.255,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0.00263,0,0.00263,0.256,0.581,0.206,1,0.324,0.229,0.324,0.324,0.829,0.829,0.119,0.149,0.333,1 +1,0.291,0.266,0.266,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0.0401,0,0.0401,0.263,0.581,0.246,1,0.334,0.246,0.334,0.334,0.87,0.87,0.0939,0.118,0.333,1 +0.667,0.164,0.277,0.277,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0.0357,0,0,0.0357,0.264,0.528,0.27,1,0.334,0.257,0.334,0.334,0.829,0.829,0.0876,0.11,0.333,1 +0.667,0.16,0.266,0.266,0,0.0366,0.831,0.831,0.831,0,0,0,0,0,0,0.0268,0,0.00568,0.0325,0.26,0.533,0.29,1,0.324,0.235,0.324,0.324,0.822,0.822,0.0876,0.11,0.333,1 +1,0.269,0.31,0.31,0,0,0.831,0.831,0.831,0,0,0,0,0,0,0,0.0231,0,0.0231,0.293,0.6,0.343,1,0.324,0.212,0.324,0.324,0.616,0.616,0.0876,0.11,0.333,1 +0.667,0.159,0.344,0.344,0,0,0.831,0.831,0.831,0,0,0,0,0,0,0,0,0,0,0.286,0.528,0.391,1,0.324,0.274,0.324,0.324,0.514,0.514,0.15,0.188,0.333,1 +0.667,0.269,0.355,0.355,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0.00284,0.00284,0.322,0.61,0.431,1,0.334,0.33,0.334,0.334,0.418,0.418,0.363,0.455,0,1 +0.333,0.162,0.432,0.432,0,0,0.87,0.87,0.87,0,0,0,0,0,0,0,0.0432,0.00284,0.0461,0.316,0.548,0.452,1,0.455,0.615,0.455,0.455,0.253,0.253,0.789,0.989,0,1 +0.667,0.291,0.587,0.587,0,0.0366,0.949,0.949,0.949,0,0,0,0,0,0,0,0.0212,0.00568,0.0269,0.477,0.67,0.468,1,0.577,0.9,0.577,0.577,0.158,0.158,0.764,0.958,0,1 +1,0.484,0.698,0.698,0,0,0.989,0.989,0.989,0,0,0,0,0,0,0,0,0.017,0.017,0.698,0.787,0.551,1,0.668,0.643,0.668,0.668,0.089,0.089,0.426,0.534,0,1 +1,0.619,0.742,0.742,0,0,0.949,0.949,0.949,0,0,0,0,0,0,0,0,0.00284,0.00284,0.742,0.742,0.725,1,0.769,0.391,0.769,0.769,0.0548,0.0548,0.382,0.479,0,1 +1,0.783,0.787,0.787,0,0,0.93,0.93,0.93,0,0,0,0,0,0,0,0,0.00568,0.00568,0.787,0.698,0.852,1,0.819,0.246,0.819,0.819,0.0274,0.0274,0.319,0.4,0,1 +1,0.88,0.765,0.765,0,0,0.91,0.91,0.91,0,0,0,0,0,0,0,0,0.00568,0.00568,0.765,0.668,0.786,1,0.87,0.106,0.87,0.87,0.0205,0.0205,0.269,0.338,0,1 +1,0.597,0.654,0.654,0,0,0.87,0.87,0.87,0,0,0,0,0,0,0,0,0.00852,0.00852,0.654,0.594,0.496,1,0.759,0.0726,0.759,0.759,0.0205,0.0205,0.15,0.188,0,1 +1,0.183,0.554,0.554,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0,0,0.455,0.511,0.226,1,0.658,0.0391,0.658,0.658,0.0205,0.0205,0.15,0.188,0.333,1 +1,0.0743,0.443,0.443,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0.00568,0.00568,0.32,0.483,0.0813,1,0.445,0.0224,0.445,0.445,0.0205,0.0205,0.15,0.188,0.667,1 +1,0.0578,0.41,0.41,0,0,0.771,0.771,0.771,0,0,0,0,0,0,0,0.0233,0,0.0233,0.308,0.474,0.0395,1,0.233,0.00559,0.233,0.233,0.0205,0.0205,0.182,0.228,0.667,1 +1,0.0495,0.41,0.41,0,0,0.752,0.752,0.752,0,0,0,0,0,0,0,0.0166,0,0.0166,0.308,0.469,0.0198,1,0.192,0.00559,0.192,0.192,0.0205,0.0205,0.15,0.188,0.667,1 +1,0.0495,0.399,0.399,0,0,0.732,0.732,0.732,0,0,0,0,0,0,0,0.0131,0,0.0131,0.305,0.464,0.0154,1,0.152,0.0112,0.152,0.152,0.0274,0.0274,0.182,0.228,0.667,1 +1,0.0495,0.366,0.366,0,0,0.712,0.712,0.712,0,0,0,0,0,0,0,0.0132,0.00568,0.0189,0.258,0.465,0.0242,1,0.162,0.0391,0.162,0.162,0.0548,0.0548,0.294,0.369,1,1 +1,0.0495,0.399,0.399,0,0,0.712,0.712,0.712,0,0,0,0,0,0,0.0372,0.0208,0,0.058,0.258,0.465,0.0395,1,0.182,0.0671,0.182,0.182,0.103,0.103,0.419,0.526,1,1 +1,0.143,0.477,0.477,0,0,0.752,0.752,0.752,0,0,0,0,0,0,0.0837,0.0131,0,0.0967,0.331,0.493,0.0637,1,0.263,0.162,0.263,0.263,0.178,0.178,0.357,0.447,0.667,1 +0.667,0.172,0.521,0.521,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0,0,0.345,0.518,0.0879,1,0.334,0.257,0.334,0.334,0.301,0.301,0.15,0.188,0.333,1 +0.333,0.175,0.377,0.377,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0,0,0.297,0.523,0.108,1,0.334,0.246,0.334,0.334,0.575,0.575,0.15,0.188,0,1 +0.333,0.174,0.255,0.255,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0.0114,0.0114,0.257,0.523,0.127,1,0.324,0.229,0.324,0.324,0.829,0.829,0.119,0.149,0,1 +0.333,0.17,0.266,0.266,0,0.0853,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0.0114,0.0114,0.26,0.523,0.143,1,0.334,0.246,0.334,0.334,0.87,0.87,0.0939,0.118,0,1 +0.333,0.164,0.277,0.277,0,0.0244,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0.0142,0.0142,0.264,0.528,0.158,1,0.334,0.257,0.334,0.334,0.829,0.829,0.0876,0.11,0,1 +0.333,0.16,0.266,0.266,0,0,0.831,0.831,0.831,0,0,0,0,0,0,0,0,0.00284,0.00284,0.26,0.533,0.167,1,0.324,0.235,0.324,0.324,0.822,0.822,0.0876,0.11,0,1 +0.333,0.159,0.31,0.31,0,0,0.831,0.831,0.831,0,0,0,0,0,0,0,0,0,0,0.275,0.533,0.189,1,0.324,0.212,0.324,0.324,0.616,0.616,0.0876,0.11,0,1 +0.333,0.159,0.344,0.344,0,0,0.831,0.831,0.831,0,0,0,0,0,0,0,0,0.00284,0.00284,0.286,0.528,0.2,1,0.324,0.274,0.324,0.324,0.514,0.514,0.15,0.188,0,1 +0.333,0.159,0.355,0.355,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0.00568,0.00568,0.29,0.538,0.224,1,0.334,0.33,0.334,0.334,0.418,0.418,0.363,0.455,0,1 +0.667,0.274,0.432,0.432,0,0,0.87,0.87,0.87,0,0,0,0,0,0,0,0,0,0,0.374,0.63,0.279,1,0.455,0.615,0.455,0.455,0.253,0.253,0.789,0.989,0,1 +1,0.412,0.587,0.587,0,0.0122,0.949,0.949,0.949,0,0,0,0,0,0,0,0.0169,0,0.0169,0.587,0.772,0.343,1,0.577,0.9,0.577,0.577,0.158,0.158,0.764,0.958,0,1 +1,0.484,0.698,0.698,0,0.0609,0.989,0.989,0.989,0,0,0,0,0,0,0,0.0472,0,0.0472,0.698,0.787,0.461,1,0.668,0.643,0.668,0.668,0.089,0.089,0.426,0.534,0,1 +1,0.619,0.742,0.742,0,0,0.949,0.949,0.949,0,0,0,0,0,0,0,0.0288,0.0397,0.0686,0.742,0.742,0.646,1,0.769,0.391,0.769,0.769,0.0548,0.0548,0.382,0.479,0,1 +1,0.783,0.787,0.787,0,0,0.93,0.93,0.93,0.00668,0.0414,0.0251,0.000702,0,0,0,0.0606,0,0.0606,0.787,0.698,0.797,1,0.819,0.246,0.819,0.819,0.0274,0.0274,0.319,0.4,0,1 +1,0.88,0.765,0.765,0,0,0.91,0.91,0.91,0.0245,0.0541,0.0216,0.0203,0,0,0,0.00971,0,0.00971,0.765,0.668,0.756,1,0.87,0.106,0.87,0.87,0.0205,0.0205,0.269,0.338,0,1 +1,0.415,0.654,0.654,0,0,0.87,0.87,0.87,0.0213,0,0,0,0.33,0.33,0,0,0.00568,0.00568,0.522,0.551,0.457,1,0.759,0.0726,0.759,0.759,0.0205,0.0205,0.15,0.188,0.333,1 +1,0.116,0.554,0.554,0,0,0.811,0.811,0.811,0.0251,0,0,0,0.0367,0.0367,0,0,0.00284,0.00284,0.357,0.488,0.198,1,0.658,0.0391,0.658,0.658,0.0205,0.0205,0.15,0.188,0.667,1 +1,0.0495,0.443,0.443,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0.00852,0.00852,0.258,0.465,0.0813,1,0.445,0.0224,0.445,0.445,0.0205,0.0205,0.15,0.188,1,1 +1,0.0495,0.41,0.41,0,0,0.771,0.771,0.771,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0395,1,0.233,0.00559,0.233,0.233,0.0205,0.0205,0.182,0.228,1,1 +1,0.0495,0.41,0.41,0,0,0.752,0.752,0.752,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0198,1,0.192,0.00559,0.192,0.192,0.0205,0.0205,0.15,0.188,1,1 +1,0.0495,0.399,0.399,0,0,0.732,0.732,0.732,0,0,0,0,0,0,0,0.0025,0,0.0025,0.258,0.465,0.0154,1,0.152,0.0112,0.152,0.152,0.0274,0.0274,0.182,0.228,1,1 +1,0.0506,0.366,0.366,0,0,0.712,0.712,0.712,0,0,0,0,0,0,0,0.0353,0,0.0353,0.294,0.469,0.0242,1,0.162,0.0391,0.162,0.162,0.0548,0.0548,0.294,0.369,0.667,1 +1,0.0798,0.399,0.399,0,0,0.712,0.712,0.712,0,0,0,0,0,0,0,0.0166,0,0.0166,0.305,0.474,0.0395,1,0.182,0.0671,0.182,0.182,0.103,0.103,0.419,0.526,0.667,1 +1,0.236,0.477,0.477,0,0,0.752,0.752,0.752,0,0,0,0,0,0,0,0.0122,0,0.0122,0.404,0.521,0.0637,1,0.263,0.162,0.263,0.263,0.178,0.178,0.357,0.447,0.333,1 +0.667,0.172,0.521,0.521,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0.0173,0,0.0173,0.345,0.518,0.0879,1,0.334,0.257,0.334,0.334,0.301,0.301,0.15,0.188,0.333,1 +0.667,0.175,0.377,0.377,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0.00874,0.00284,0.0116,0.297,0.523,0.108,1,0.334,0.246,0.334,0.334,0.575,0.575,0.15,0.188,0.333,1 +0.333,0.0495,0.255,0.255,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.127,1,0.324,0.229,0.324,0.324,0.829,0.829,0.119,0.149,0.333,1 +0,0.0495,0.266,0.266,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0.00568,0.00568,0.258,0.465,0.143,1,0.334,0.246,0.334,0.334,0.87,0.87,0.0939,0.118,0,1 +0.333,0.164,0.277,0.277,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0,0,0.264,0.528,0.158,1,0.334,0.257,0.334,0.334,0.829,0.829,0.0876,0.11,0,1 +0.333,0.16,0.266,0.266,0,0,0.831,0.831,0.831,0,0,0,0,0,0,0,0,0,0,0.26,0.533,0.167,1,0.324,0.235,0.324,0.324,0.822,0.822,0.0876,0.11,0,1 +0.333,0.159,0.31,0.31,0,0,0.831,0.831,0.831,0,0,0,0,0,0,0,0,0,0,0.275,0.533,0.189,1,0.324,0.212,0.324,0.324,0.616,0.616,0.0876,0.11,0,1 +0.333,0.159,0.344,0.344,0,0,0.831,0.831,0.831,0,0,0,0,0,0,0,0,0,0,0.286,0.528,0.2,1,0.324,0.274,0.324,0.324,0.514,0.514,0.15,0.188,0,1 +0.667,0.159,0.355,0.355,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0.00246,0,0.00246,0.29,0.538,0.224,1,0.334,0.33,0.334,0.334,0.418,0.418,0.363,0.455,0.333,1 +0.667,0.162,0.432,0.432,0,0.0366,0.87,0.87,0.87,0,0,0,0,0,0,0,0.00982,0.0142,0.024,0.316,0.548,0.279,1,0.455,0.615,0.455,0.455,0.253,0.253,0.789,0.989,0.333,1 +1,0.291,0.587,0.587,0,0.0366,0.949,0.949,0.949,0,0,0,0,0,0,0,0,0.00568,0.00568,0.477,0.67,0.343,1,0.577,0.9,0.577,0.577,0.158,0.158,0.764,0.958,0.333,1 +0.667,0.339,0.698,0.698,0,0,0.989,0.989,0.989,0,0,0,0,0,0,0,0,0.0114,0.0114,0.551,0.68,0.461,1,0.668,0.643,0.668,0.668,0.089,0.089,0.426,0.534,0,1 +1,0.619,0.742,0.742,0,0,0.949,0.949,0.949,0,0,0,0,0,0,0,0,0,0,0.742,0.742,0.646,1,0.769,0.391,0.769,0.769,0.0548,0.0548,0.382,0.479,0,1 +1,0.783,0.787,0.787,0,0,0.93,0.93,0.93,0,0,0,0,0,0,0,0,0.017,0.017,0.787,0.698,0.797,1,0.819,0.246,0.819,0.819,0.0274,0.0274,0.319,0.4,0,1 +1,0.603,0.765,0.765,0,0,0.91,0.91,0.91,0,0,0,0,0,0,0,0,0.00568,0.00568,0.596,0.6,0.756,1,0.87,0.106,0.87,0.87,0.0205,0.0205,0.269,0.338,0.333,1 +1,0.232,0.654,0.654,0,0,0.87,0.87,0.87,0,0,0,0,0,0,0,0.0368,0.00284,0.0397,0.39,0.508,0.457,1,0.759,0.0726,0.759,0.759,0.0205,0.0205,0.15,0.188,0.667,1 +1,0.0495,0.554,0.554,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.465,0.198,1,0.658,0.0391,0.658,0.658,0.0205,0.0205,0.15,0.188,1,1 +1,0.0495,0.443,0.443,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0813,1,0.445,0.0224,0.445,0.445,0.0205,0.0205,0.15,0.188,1,1 +1,0.0495,0.41,0.41,0,0,0.771,0.771,0.771,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0395,1,0.233,0.00559,0.233,0.233,0.0205,0.0205,0.182,0.228,1,1 +1,0.0495,0.41,0.41,0,0,0.752,0.752,0.752,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0198,1,0.192,0.00559,0.192,0.192,0.0205,0.0205,0.15,0.188,1,1 +1,0.0495,0.399,0.399,0,0,0.732,0.732,0.732,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0154,1,0.152,0.0112,0.152,0.152,0.0274,0.0274,0.182,0.228,1,1 +1,0.0495,0.366,0.366,0,0,0.712,0.712,0.712,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0242,1,0.162,0.0391,0.162,0.162,0.0548,0.0548,0.294,0.369,1,1 +1,0.0495,0.399,0.399,0,0,0.712,0.712,0.712,0,0,0,0,0,0,0,0.00258,0,0.00258,0.258,0.465,0.0395,1,0.182,0.0671,0.182,0.182,0.103,0.103,0.419,0.526,1,1 +1,0.236,0.477,0.477,0,0,0.752,0.752,0.752,0,0,0,0,0,0,0,0.0258,0,0.0258,0.404,0.521,0.0637,1,0.263,0.162,0.263,0.263,0.178,0.178,0.357,0.447,0.333,1 +1,0.295,0.521,0.521,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0,0,0.433,0.571,0.0879,1,0.334,0.257,0.334,0.334,0.301,0.301,0.15,0.188,0.333,1 +0.667,0.175,0.377,0.377,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0,0,0.297,0.523,0.108,1,0.334,0.246,0.334,0.334,0.575,0.575,0.15,0.188,0.333,1 +0.667,0.174,0.255,0.255,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0.0332,0,0.0332,0.257,0.523,0.127,1,0.324,0.229,0.324,0.324,0.829,0.829,0.119,0.149,0.333,1 +0.667,0.17,0.266,0.266,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0.0307,0.0199,0.0505,0.26,0.523,0.143,1,0.334,0.246,0.334,0.334,0.87,0.87,0.0939,0.118,0.333,1 +0.667,0.164,0.277,0.277,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0.0312,0,0.0312,0.264,0.528,0.158,1,0.334,0.257,0.334,0.334,0.829,0.829,0.0876,0.11,0.333,1 +0.667,0.16,0.266,0.266,0,0,0.831,0.831,0.831,0,0,0,0,0,0,0,0.0271,0,0.0271,0.26,0.533,0.167,1,0.324,0.235,0.324,0.324,0.822,0.822,0.0876,0.11,0.333,1 +0.667,0.159,0.31,0.31,0,0,0.831,0.831,0.831,0,0,0,0,0,0,0,0.00261,0.0114,0.014,0.275,0.533,0.189,1,0.324,0.212,0.324,0.324,0.616,0.616,0.0876,0.11,0.333,1 +0.667,0.268,0.344,0.344,0,0,0.831,0.831,0.831,0,0,0,0,0,0,0,0.0104,0,0.0104,0.315,0.591,0.2,1,0.324,0.274,0.324,0.324,0.514,0.514,0.15,0.188,0,1 +0.333,0.159,0.355,0.355,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0.00284,0.00284,0.29,0.538,0.224,1,0.334,0.33,0.334,0.334,0.418,0.418,0.363,0.455,0,1 +0.333,0.162,0.432,0.432,0,0,0.87,0.87,0.87,0,0,0,0,0,0,0,0,0,0,0.316,0.548,0.279,1,0.455,0.615,0.455,0.455,0.253,0.253,0.789,0.989,0,1 +0.333,0.17,0.587,0.587,0,0,0.949,0.949,0.949,0,0,0,0,0,0,0,0.0258,0.00568,0.0314,0.368,0.568,0.343,1,0.577,0.9,0.577,0.577,0.158,0.158,0.764,0.958,0,1 +1,0.484,0.698,0.698,0,0,0.989,0.989,0.989,0,0,0,0,0,0,0,0.0103,0.0114,0.0217,0.698,0.787,0.461,1,0.668,0.643,0.668,0.668,0.089,0.089,0.426,0.534,0,1 +1,0.619,0.742,0.742,0,0,0.949,0.949,0.949,0,0,0,0,0,0,0,0,0.0199,0.0199,0.742,0.742,0.646,1,0.769,0.391,0.769,0.769,0.0548,0.0548,0.382,0.479,0,1 +1,0.783,0.787,0.787,0,0,0.93,0.93,0.93,0,0,0,0,0,0,0,0,0.00284,0.00284,0.787,0.698,0.797,1,0.819,0.246,0.819,0.819,0.0274,0.0274,0.319,0.4,0,1 +1,0.326,0.765,0.765,0,0,0.91,0.91,0.91,0,0,0,0,0,0,0,0,0.00568,0.00568,0.427,0.533,0.756,1,0.87,0.106,0.87,0.87,0.0205,0.0205,0.269,0.338,0.667,1 +1,0.232,0.654,0.654,0,0,0.87,0.87,0.87,0,0,0,0,0,0,0,0,0.00568,0.00568,0.39,0.508,0.457,1,0.759,0.0726,0.759,0.759,0.0205,0.0205,0.15,0.188,0.667,1 +1,0.116,0.554,0.554,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0,0,0.357,0.488,0.198,1,0.658,0.0391,0.658,0.658,0.0205,0.0205,0.15,0.188,0.667,1 +1,0.0495,0.443,0.443,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0813,1,0.445,0.0224,0.445,0.445,0.0205,0.0205,0.15,0.188,1,1 +1,0.0495,0.41,0.41,0,0,0.771,0.771,0.771,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0395,1,0.233,0.00559,0.233,0.233,0.0205,0.0205,0.182,0.228,1,1 +1,0.0495,0.41,0.41,0,0,0.752,0.752,0.752,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0198,1,0.192,0.00559,0.192,0.192,0.0205,0.0205,0.15,0.188,1,1 +1,0.0495,0.399,0.399,0,0,0.732,0.732,0.732,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0154,1,0.152,0.0112,0.152,0.152,0.0274,0.0274,0.182,0.228,1,1 +1,0.0506,0.366,0.366,0,0,0.712,0.712,0.712,0,0,0,0,0,0,0,0,0,0,0.294,0.469,0.0242,1,0.162,0.0391,0.162,0.162,0.0548,0.0548,0.294,0.369,0.667,1 +1,0.0495,0.399,0.399,0,0,0.712,0.712,0.712,0,0,0,0,0,0,0,0.00242,0,0.00242,0.258,0.465,0.0395,1,0.182,0.0671,0.182,0.182,0.103,0.103,0.419,0.526,1,1 +0.667,0.143,0.477,0.477,0,0,0.752,0.752,0.752,0,0,0,0,0,0,0,0.0173,0,0.0173,0.331,0.493,0.0637,1,0.263,0.162,0.263,0.263,0.178,0.178,0.357,0.447,0.333,1 +0.667,0.172,0.521,0.521,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0.0485,0.019,0,0.0675,0.345,0.518,0.0879,1,0.334,0.257,0.334,0.334,0.301,0.301,0.15,0.188,0.333,1 +0.333,0.175,0.377,0.377,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0,0,0.297,0.523,0.108,1,0.334,0.246,0.334,0.334,0.575,0.575,0.15,0.188,0,1 +0.333,0.174,0.255,0.255,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0.00284,0.00284,0.257,0.523,0.127,1,0.324,0.229,0.324,0.324,0.829,0.829,0.119,0.149,0,1 +0.333,0.17,0.266,0.266,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0.00568,0.00568,0.26,0.523,0.143,1,0.334,0.246,0.334,0.334,0.87,0.87,0.0939,0.118,0,1 +0.333,0.164,0.277,0.277,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0,0,0.264,0.528,0.158,1,0.334,0.257,0.334,0.334,0.829,0.829,0.0876,0.11,0,1 +0.333,0.16,0.266,0.266,0,0,0.831,0.831,0.831,0,0,0,0,0,0,0,0,0.00568,0.00568,0.26,0.533,0.167,1,0.324,0.235,0.324,0.324,0.822,0.822,0.0876,0.11,0,1 +0.333,0.159,0.31,0.31,0,0,0.831,0.831,0.831,0,0,0,0,0,0,0,0,0,0,0.275,0.533,0.189,1,0.324,0.212,0.324,0.324,0.616,0.616,0.0876,0.11,0,1 +0.333,0.159,0.344,0.344,0,0,0.831,0.831,0.831,0,0,0,0,0,0,0,0,0,0,0.286,0.528,0.2,1,0.324,0.274,0.324,0.324,0.514,0.514,0.15,0.188,0,1 +0.333,0.159,0.355,0.355,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0.00284,0.00284,0.29,0.538,0.224,1,0.334,0.33,0.334,0.334,0.418,0.418,0.363,0.455,0,1 +0.667,0.274,0.432,0.432,0,0,0.87,0.87,0.87,0.0174,0.0891,0,0,0,0,0,0,0.00284,0.00284,0.374,0.63,0.279,1,0.455,0.615,0.455,0.455,0.253,0.253,0.789,0.989,0,1 +0.333,0.17,0.587,0.587,0,0,0.949,0.949,0.949,0,0.00637,0,0,0,0,0,0,0.0227,0.0227,0.368,0.568,0.343,1,0.577,0.9,0.577,0.577,0.158,0.158,0.764,0.958,0,1 +0.667,0.339,0.698,0.698,0,0,0.989,0.989,0.989,0.0208,0.0891,0,0,0,0,0,0.035,0.0199,0.0549,0.551,0.68,0.461,1,0.668,0.643,0.668,0.668,0.089,0.089,0.426,0.534,0,1 +1,0.619,0.742,0.742,0,0.0366,0.949,0.949,0.949,0.0263,0.00637,0,0,0,0,0,0.0246,0,0.0246,0.742,0.742,0.646,1,0.769,0.391,0.769,0.769,0.0548,0.0548,0.382,0.479,0,1 +1,0.783,0.787,0.787,0,0,0.93,0.93,0.93,0,0,0,0,0,0,0.0315,0.0244,0.00568,0.0616,0.787,0.698,0.797,1,0.819,0.246,0.819,0.819,0.0274,0.0274,0.319,0.4,0,1 +1,0.603,0.765,0.765,0,0,0.91,0.91,0.91,0,0,0,0,0,0,0,0,0.00284,0.00284,0.596,0.6,0.756,1,0.87,0.106,0.87,0.87,0.0205,0.0205,0.269,0.338,0.333,1 +1,0.415,0.654,0.654,0,0,0.87,0.87,0.87,0,0,0,0,0,0,0,0,0.00568,0.00568,0.522,0.551,0.457,1,0.759,0.0726,0.759,0.759,0.0205,0.0205,0.15,0.188,0.333,1 +1,0.0495,0.554,0.554,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0.0142,0.0142,0.258,0.465,0.198,1,0.658,0.0391,0.658,0.658,0.0205,0.0205,0.15,0.188,1,1 +1,0.0495,0.443,0.443,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0813,1,0.445,0.0224,0.445,0.445,0.0205,0.0205,0.15,0.188,1,1 +1,0.0495,0.41,0.41,0,0,0.771,0.771,0.771,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0395,1,0.233,0.00559,0.233,0.233,0.0205,0.0205,0.182,0.228,1,1 +1,0.0495,0.41,0.41,0,0,0.752,0.752,0.752,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0198,1,0.192,0.00559,0.192,0.192,0.0205,0.0205,0.15,0.188,1,1 +1,0.0495,0.399,0.399,0,0,0.732,0.732,0.732,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0154,1,0.152,0.0112,0.152,0.152,0.0274,0.0274,0.182,0.228,1,1 +1,0.0518,0.366,0.366,0,0.0731,0.712,0.712,0.712,0,0,0,0,0,0,0,0,0,0,0.33,0.472,0.0242,1,0.162,0.0391,0.162,0.162,0.0548,0.0548,0.294,0.369,0.333,1 +1,0.11,0.399,0.399,0,0,0.712,0.712,0.712,0,0,0,0,0,0,0,0.00491,0,0.00491,0.352,0.482,0.0395,1,0.182,0.0671,0.182,0.182,0.103,0.103,0.419,0.526,0.333,1 +0.667,0.236,0.477,0.477,0,0,0.752,0.752,0.752,0,0,0,0,0,0,0,0.0457,0,0.0457,0.404,0.521,0.0637,1,0.263,0.162,0.263,0.263,0.178,0.178,0.357,0.447,0,1 +0.667,0.295,0.521,0.521,0,0.0122,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0,0,0.433,0.571,0.0879,1,0.334,0.257,0.334,0.334,0.301,0.301,0.15,0.188,0,1 +0.667,0.301,0.377,0.377,0,0.0244,0.811,0.811,0.811,0,0,0,0,0,0,0,0.0295,0.00568,0.0352,0.337,0.581,0.108,1,0.334,0.246,0.334,0.334,0.575,0.575,0.15,0.188,0,1 +0.333,0.174,0.255,0.255,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0.0134,0,0.0134,0.257,0.523,0.127,1,0.324,0.229,0.324,0.324,0.829,0.829,0.119,0.149,0,1 +0.333,0.17,0.266,0.266,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0.00852,0.00852,0.26,0.523,0.143,1,0.334,0.246,0.334,0.334,0.87,0.87,0.0939,0.118,0,1 +0.333,0.164,0.277,0.277,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0.00284,0.00284,0.264,0.528,0.158,1,0.334,0.257,0.334,0.334,0.829,0.829,0.0876,0.11,0,1 +0.333,0.16,0.266,0.266,0,0,0.831,0.831,0.831,0,0,0,0,0,0,0,0,0.00284,0.00284,0.26,0.533,0.167,1,0.324,0.235,0.324,0.324,0.822,0.822,0.0876,0.11,0,1 +0.333,0.159,0.31,0.31,0,0,0.831,0.831,0.831,0,0,0,0,0,0,0,0,0,0,0.275,0.533,0.189,1,0.324,0.212,0.324,0.324,0.616,0.616,0.0876,0.11,0,1 +0.333,0.159,0.344,0.344,0,0,0.831,0.831,0.831,0,0,0,0,0,0,0,0,0,0,0.286,0.528,0.2,1,0.324,0.274,0.324,0.324,0.514,0.514,0.15,0.188,0,1 +0.667,0.269,0.355,0.355,0,0.0122,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0.00568,0.00568,0.322,0.61,0.224,1,0.334,0.33,0.334,0.334,0.418,0.418,0.363,0.455,0,1 +0.667,0.274,0.432,0.432,0,0.0244,0.87,0.87,0.87,0,0,0,0,0,0,0,0,0.00284,0.00284,0.374,0.63,0.279,1,0.455,0.615,0.455,0.455,0.253,0.253,0.789,0.989,0,1 +1,0.412,0.587,0.587,0,0,0.949,0.949,0.949,0,0,0,0,0,0,0,0,0,0,0.587,0.772,0.343,1,0.577,0.9,0.577,0.577,0.158,0.158,0.764,0.958,0,1 +1,0.484,0.698,0.698,0,0.0731,0.989,0.989,0.989,0,0,0,0,0,0,0,0,0.00568,0.00568,0.698,0.787,0.461,1,0.668,0.643,0.668,0.668,0.089,0.089,0.426,0.534,0,1 +1,0.619,0.742,0.742,0,0,0.949,0.949,0.949,0,0,0,0,0,0,0,0,0.0142,0.0142,0.742,0.742,0.646,1,0.769,0.391,0.769,0.769,0.0548,0.0548,0.382,0.479,0,1 +1,0.783,0.787,0.787,0,0,0.93,0.93,0.93,0,0,0,0,0,0,0,0.028,0.0199,0.0478,0.787,0.698,0.797,1,0.819,0.246,0.819,0.819,0.0274,0.0274,0.319,0.4,0,1 +1,0.603,0.765,0.765,0,0,0.91,0.91,0.91,0,0,0,0,0,0,0,0.0206,0.00284,0.0234,0.596,0.6,0.756,1,0.87,0.106,0.87,0.87,0.0205,0.0205,0.269,0.338,0.333,1 +0.667,0.232,0.654,0.654,0,0,0.87,0.87,0.87,0,0,0,0,0,0,0,0,0.017,0.017,0.39,0.508,0.457,1,0.759,0.0726,0.759,0.759,0.0205,0.0205,0.15,0.188,0.333,1 +1,0.116,0.554,0.554,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0,0,0.357,0.488,0.198,1,0.658,0.0391,0.658,0.658,0.0205,0.0205,0.15,0.188,0.667,1 +1,0.0495,0.443,0.443,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0966,1,0.445,0.0224,0.445,0.445,0.0205,0.0205,0.15,0.188,1,1 +1,0.0495,0.41,0.41,0,0,0.771,0.771,0.771,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0483,1,0.233,0.00559,0.233,0.233,0.0205,0.0205,0.182,0.228,1,1 +1,0.0495,0.41,0.41,0,0,0.752,0.752,0.752,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0264,1,0.192,0.00559,0.192,0.192,0.0205,0.0205,0.15,0.188,1,1 +1,0.0495,0.399,0.399,0,0,0.732,0.732,0.732,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0176,1,0.152,0.0112,0.152,0.152,0.0274,0.0274,0.182,0.228,1,1 +1,0.0495,0.366,0.366,0,0,0.712,0.712,0.712,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0242,1,0.162,0.0391,0.162,0.162,0.0548,0.0548,0.294,0.369,1,1 +1,0.0495,0.399,0.399,0,0,0.712,0.712,0.712,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0308,1,0.182,0.0671,0.182,0.182,0.103,0.103,0.419,0.526,1,1 +1,0.0495,0.477,0.477,0,0,0.752,0.752,0.752,0,0,0,0,0,0,0,0.0153,0,0.0153,0.258,0.465,0.0527,1,0.263,0.162,0.263,0.263,0.178,0.178,0.357,0.447,1,1 +0.667,0.172,0.521,0.521,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0.0186,0,0.0186,0.345,0.518,0.0944,1,0.334,0.257,0.334,0.334,0.301,0.301,0.15,0.188,0.333,1 +0.667,0.175,0.377,0.377,0,0.0366,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0,0,0.297,0.523,0.156,1,0.334,0.246,0.334,0.334,0.575,0.575,0.15,0.188,0.333,1 +0.667,0.299,0.255,0.255,0,0,0.811,0.811,0.811,0.0146,0.0653,0,0,0,0,0,0,0,0,0.256,0.581,0.206,1,0.324,0.229,0.324,0.324,0.829,0.829,0.119,0.149,0,1 +0.667,0.291,0.266,0.266,0,0,0.791,0.791,0.791,0.0196,0.0302,0,0,0,0,0,0,0.00284,0.00284,0.263,0.581,0.246,1,0.334,0.246,0.334,0.334,0.87,0.87,0.0939,0.118,0,1 +0.333,0.164,0.277,0.277,0,0,0.791,0.791,0.791,0.0201,0,0,0,0,0,0,0,0.0142,0.0142,0.264,0.528,0.27,1,0.334,0.257,0.334,0.334,0.829,0.829,0.0876,0.11,0,1 +0.333,0.16,0.266,0.266,0,0,0.831,0.831,0.831,0.0208,0,0,0,0,0,0,0,0.00284,0.00284,0.26,0.533,0.29,1,0.324,0.235,0.324,0.324,0.822,0.822,0.0876,0.11,0,1 +0.667,0.269,0.31,0.31,0,0,0.831,0.831,0.831,0,0,0,0,0,0,0,0,0,0,0.293,0.6,0.343,1,0.324,0.212,0.324,0.324,0.616,0.616,0.0876,0.11,0,1 +0.333,0.159,0.344,0.344,0,0,0.831,0.831,0.831,0,0,0,0,0,0,0,0,0.0142,0.0142,0.286,0.528,0.391,1,0.324,0.274,0.324,0.324,0.514,0.514,0.15,0.188,0,1 +0.667,0.269,0.355,0.355,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0,0,0.322,0.61,0.431,1,0.334,0.33,0.334,0.334,0.418,0.418,0.363,0.455,0,1 +0.667,0.274,0.432,0.432,0,0,0.87,0.87,0.87,0,0,0,0,0,0,0,0,0.00568,0.00568,0.374,0.63,0.452,1,0.455,0.615,0.455,0.455,0.253,0.253,0.789,0.989,0,1 +0.667,0.291,0.587,0.587,0,0.0731,0.949,0.949,0.949,0,0,0,0,0,0,0,0,0.00568,0.00568,0.477,0.67,0.468,1,0.577,0.9,0.577,0.577,0.158,0.158,0.764,0.958,0,1 +1,0.484,0.698,0.698,0,0,0.989,0.989,0.989,0,0,0,0,0,0,0,0,0.00568,0.00568,0.698,0.787,0.551,1,0.668,0.643,0.668,0.668,0.089,0.089,0.426,0.534,0,1 +1,0.619,0.742,0.742,0,0,0.949,0.949,0.949,0,0,0,0,0,0,0,0,0.00568,0.00568,0.742,0.742,0.725,1,0.769,0.391,0.769,0.769,0.0548,0.0548,0.382,0.479,0,1 +1,0.783,0.787,0.787,0,0,0.93,0.93,0.93,0,0,0,0,0,0,0,0,0,0,0.787,0.698,0.852,1,0.819,0.246,0.819,0.819,0.0274,0.0274,0.319,0.4,0,1 +1,0.88,0.765,0.765,0,0,0.91,0.91,0.91,0,0,0,0,0,0,0,0,0.0114,0.0114,0.765,0.668,0.786,1,0.87,0.106,0.87,0.87,0.0205,0.0205,0.269,0.338,0,1 +1,0.597,0.654,0.654,0,0,0.87,0.87,0.87,0,0,0,0,0,0,0,0,0.00568,0.00568,0.654,0.594,0.496,1,0.759,0.0726,0.759,0.759,0.0205,0.0205,0.15,0.188,0,1 +1,0.249,0.554,0.554,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0,0,0.554,0.534,0.226,1,0.658,0.0391,0.658,0.658,0.0205,0.0205,0.15,0.188,0,1 +1,0.0495,0.443,0.443,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0966,1,0.445,0.0224,0.445,0.445,0.0205,0.0205,0.15,0.188,1,1 +1,0.0495,0.41,0.41,0,0,0.771,0.771,0.771,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0483,1,0.233,0.00559,0.233,0.233,0.0205,0.0205,0.182,0.228,1,1 +1,0.0495,0.41,0.41,0,0,0.752,0.752,0.752,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0264,1,0.192,0.00559,0.192,0.192,0.0205,0.0205,0.15,0.188,1,1 +1,0.0495,0.399,0.399,0,0,0.732,0.732,0.732,0,0,0,0,0,0,0,0,0.00568,0.00568,0.258,0.465,0.0176,1,0.152,0.0112,0.152,0.152,0.0274,0.0274,0.182,0.228,1,1 +0.667,0.0495,0.366,0.366,0,0,0.712,0.712,0.712,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0242,1,0.162,0.0391,0.162,0.162,0.0548,0.0548,0.294,0.369,0.667,1 +1,0.0495,0.399,0.399,0,0,0.712,0.712,0.712,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0308,1,0.182,0.0671,0.182,0.182,0.103,0.103,0.419,0.526,1,1 +1,0.0495,0.477,0.477,0,0,0.752,0.752,0.752,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0527,1,0.263,0.162,0.263,0.263,0.178,0.178,0.357,0.447,1,1 +1,0.172,0.521,0.521,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0.0211,0,0.0211,0.345,0.518,0.0944,1,0.334,0.257,0.334,0.334,0.301,0.301,0.15,0.188,0.667,1 +1,0.175,0.377,0.377,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0,0,0.297,0.523,0.156,1,0.334,0.246,0.334,0.334,0.575,0.575,0.15,0.188,0.667,1 +1,0.424,0.255,0.255,0,0.0487,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0,0,0.255,0.638,0.206,1,0.324,0.229,0.324,0.324,0.829,0.829,0.119,0.149,0,1 +1,0.411,0.266,0.266,0,0.0244,0.791,0.791,0.791,0.0107,0.0414,0,0,0,0,0,0,0,0,0.266,0.638,0.246,1,0.334,0.246,0.334,0.334,0.87,0.87,0.0939,0.118,0,1 +0.333,0.164,0.277,0.277,0,0,0.791,0.791,0.791,0.0165,0.00637,0,0,0,0,0,0,0,0,0.264,0.528,0.27,1,0.334,0.257,0.334,0.334,0.829,0.829,0.0876,0.11,0,1 +0.333,0.16,0.266,0.266,0,0,0.831,0.831,0.831,0,0,0,0,0,0,0,0,0,0,0.26,0.533,0.29,1,0.324,0.235,0.324,0.324,0.822,0.822,0.0876,0.11,0,1 +0.333,0.159,0.31,0.31,0,0,0.831,0.831,0.831,0,0,0,0,0,0,0,0,0,0,0.275,0.533,0.343,1,0.324,0.212,0.324,0.324,0.616,0.616,0.0876,0.11,0,1 +0.333,0.159,0.344,0.344,0,0,0.831,0.831,0.831,0.0152,0.0653,0,0,0,0,0,0,0,0,0.286,0.528,0.391,1,0.324,0.274,0.324,0.324,0.514,0.514,0.15,0.188,0,1 +0.667,0.269,0.355,0.355,0,0,0.811,0.811,0.811,0.0192,0.00637,0,0,0,0,0,0,0,0,0.322,0.61,0.431,1,0.334,0.33,0.334,0.334,0.418,0.418,0.363,0.455,0,1 +1,0.386,0.432,0.432,0,0,0.87,0.87,0.87,0.00562,0,0,0,0,0,0,0,0,0,0.432,0.713,0.452,1,0.455,0.615,0.455,0.455,0.253,0.253,0.789,0.989,0,1 +1,0.412,0.587,0.587,0,0,0.949,0.949,0.949,0,0,0,0,0,0,0,0,0.0114,0.0114,0.587,0.772,0.468,1,0.577,0.9,0.577,0.577,0.158,0.158,0.764,0.958,0,1 +1,0.484,0.698,0.698,0,0.0853,0.989,0.989,0.989,0,0,0,0,0,0,0,0,0,0,0.698,0.787,0.551,1,0.668,0.643,0.668,0.668,0.089,0.089,0.426,0.534,0,1 +1,0.619,0.742,0.742,0,0.146,0.949,0.949,0.949,0,0,0,0,0,0,0,0,0.00852,0.00852,0.742,0.742,0.725,1,0.769,0.391,0.769,0.769,0.0548,0.0548,0.382,0.479,0,1 +1,0.783,0.787,0.787,0,0.0731,0.93,0.93,0.93,0,0,0,0,0,0,0,0,0.00852,0.00852,0.787,0.698,0.852,1,0.819,0.246,0.819,0.819,0.0274,0.0274,0.319,0.4,0,1 +1,0.88,0.765,0.765,0,0.0244,0.91,0.91,0.91,0,0,0,0,0,0,0,0.00262,0.00284,0.00546,0.765,0.668,0.786,1,0.87,0.106,0.87,0.87,0.0205,0.0205,0.269,0.338,0,1 +1,0.415,0.654,0.654,0,0,0.87,0.87,0.87,0,0,0,0,0,0,0,0.00524,0.0199,0.0251,0.522,0.551,0.496,1,0.759,0.0726,0.759,0.759,0.0205,0.0205,0.15,0.188,0.333,1 +1,0.0495,0.554,0.554,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0.0142,0.0142,0.258,0.465,0.226,1,0.658,0.0391,0.658,0.658,0.0205,0.0205,0.15,0.188,1,1 +1,0.0495,0.443,0.443,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0813,1,0.445,0.0224,0.445,0.445,0.0205,0.0205,0.15,0.188,1,1 +1,0.0495,0.41,0.41,0,0,0.771,0.771,0.771,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.465,0.0395,1,0.233,0.00559,0.233,0.233,0.0205,0.0205,0.182,0.228,1,1 +1,0.0495,0.41,0.41,0,0,0.752,0.752,0.752,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0198,1,0.192,0.00559,0.192,0.192,0.0205,0.0205,0.15,0.188,1,1 +1,0.0495,0.399,0.399,0,0,0.732,0.732,0.732,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0154,1,0.152,0.0112,0.152,0.152,0.0274,0.0274,0.182,0.228,1,1 +1,0.0506,0.366,0.366,0,0,0.712,0.712,0.712,0,0,0,0,0,0,0,0,0,0,0.294,0.469,0.0242,1,0.162,0.0391,0.162,0.162,0.0548,0.0548,0.294,0.369,0.667,1 +1,0.0798,0.399,0.399,0,0,0.712,0.712,0.712,0,0,0,0,0,0,0,0,0,0,0.305,0.474,0.0395,1,0.182,0.0671,0.182,0.182,0.103,0.103,0.419,0.526,0.667,1 +0.667,0.143,0.477,0.477,0,0,0.752,0.752,0.752,0,0,0,0,0,0,0,0,0,0,0.331,0.493,0.0637,1,0.263,0.162,0.263,0.263,0.178,0.178,0.357,0.447,0.333,1 +0.333,0.0495,0.521,0.521,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0879,1,0.334,0.257,0.334,0.334,0.301,0.301,0.15,0.188,0.333,1 +0.333,0.0495,0.377,0.377,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.465,0.108,1,0.334,0.246,0.334,0.334,0.575,0.575,0.15,0.188,0.333,1 +0.333,0.0495,0.255,0.255,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.465,0.127,1,0.324,0.229,0.324,0.324,0.829,0.829,0.119,0.149,0.333,1 +0.333,0.0495,0.266,0.266,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.143,1,0.334,0.246,0.334,0.334,0.87,0.87,0.0939,0.118,0.333,1 +0.333,0.164,0.277,0.277,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0,0,0.264,0.528,0.158,1,0.334,0.257,0.334,0.334,0.829,0.829,0.0876,0.11,0,1 +0.333,0.16,0.266,0.266,0,0,0.831,0.831,0.831,0,0,0,0,0,0,0,0,0,0,0.26,0.533,0.167,1,0.324,0.235,0.324,0.324,0.822,0.822,0.0876,0.11,0,1 +0.333,0.159,0.31,0.31,0,0,0.831,0.831,0.831,0,0,0,0,0,0,0,0,0,0,0.275,0.533,0.189,1,0.324,0.212,0.324,0.324,0.616,0.616,0.0876,0.11,0,1 +0,0.0495,0.344,0.344,0,0,0.831,0.831,0.831,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.2,1,0.324,0.274,0.324,0.324,0.514,0.514,0.15,0.188,0,1 +0.333,0.159,0.355,0.355,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0.00284,0.00284,0.29,0.538,0.224,1,0.334,0.33,0.334,0.334,0.418,0.418,0.363,0.455,0,1 +0.667,0.274,0.432,0.432,0,0,0.87,0.87,0.87,0,0,0,0,0,0,0,0,0.00284,0.00284,0.374,0.63,0.279,1,0.455,0.615,0.455,0.455,0.253,0.253,0.789,0.989,0,1 +0.667,0.17,0.587,0.587,0,0,0.949,0.949,0.949,0,0,0.0349,0.00596,0,0,0,0,0.00284,0.00284,0.368,0.568,0.343,1,0.577,0.9,0.577,0.577,0.158,0.158,0.764,0.958,0.333,1 +1,0.339,0.698,0.698,0,0,0.989,0.989,0.989,0,0,0.0356,0.00982,0.147,0.147,0,0,0.00284,0.00284,0.551,0.68,0.461,1,0.668,0.643,0.668,0.668,0.089,0.089,0.426,0.534,0.333,1 +1,0.429,0.742,0.742,0,0,0.949,0.949,0.949,0,0,0.0497,0,0.22,0.22,0,0,0.0199,0.0199,0.581,0.65,0.646,1,0.769,0.391,0.769,0.769,0.0548,0.0548,0.382,0.479,0.333,1 +1,0.538,0.787,0.787,0,0,0.93,0.93,0.93,0,0,0.0168,0,0,0,0,0,0.0114,0.0114,0.61,0.62,0.797,1,0.819,0.246,0.819,0.819,0.0274,0.0274,0.319,0.4,0.333,1 +1,0.88,0.765,0.765,0,0.0366,0.91,0.91,0.91,0,0,0,0,0,0,0,0,0.00852,0.00852,0.765,0.668,0.756,1,0.87,0.106,0.87,0.87,0.0205,0.0205,0.269,0.338,0,1 +1,0.232,0.654,0.654,0,0,0.87,0.87,0.87,0,0,0,0,0,0,0,0,0,0,0.39,0.508,0.457,1,0.759,0.0726,0.759,0.759,0.0205,0.0205,0.15,0.188,0.667,1 +1,0.116,0.554,0.554,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0.00568,0.00568,0.357,0.488,0.198,1,0.658,0.0391,0.658,0.658,0.0205,0.0205,0.15,0.188,0.667,1 +1,0.0743,0.443,0.443,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0.00852,0.00852,0.32,0.483,0.0813,1,0.445,0.0224,0.445,0.445,0.0205,0.0205,0.15,0.188,0.667,1 +1,0.0578,0.41,0.41,0,0,0.771,0.771,0.771,0,0,0,0,0,0,0,0,0.00284,0.00284,0.308,0.474,0.0395,1,0.233,0.00559,0.233,0.233,0.0205,0.0205,0.182,0.228,0.667,1 +1,0.0495,0.41,0.41,0,0,0.752,0.752,0.752,0,0,0,0,0,0,0,0,0,0,0.308,0.469,0.0198,1,0.192,0.00559,0.192,0.192,0.0205,0.0205,0.15,0.188,0.667,1 +1,0.0495,0.399,0.399,0,0,0.732,0.732,0.732,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0154,1,0.152,0.0112,0.152,0.152,0.0274,0.0274,0.182,0.228,1,1 +1,0.0495,0.366,0.366,0,0,0.712,0.712,0.712,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0242,1,0.162,0.0391,0.162,0.162,0.0548,0.0548,0.294,0.369,1,1 +1,0.0798,0.399,0.399,0,0,0.712,0.712,0.712,0,0,0,0,0,0,0.0263,0.0138,0,0.0401,0.305,0.474,0.0395,1,0.182,0.0671,0.182,0.182,0.103,0.103,0.419,0.526,0.667,1 +0.333,0.0495,0.477,0.477,0,0,0.752,0.752,0.752,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0637,1,0.263,0.162,0.263,0.263,0.178,0.178,0.357,0.447,0.333,1 +0.667,0.0495,0.521,0.521,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0879,1,0.334,0.257,0.334,0.334,0.301,0.301,0.15,0.188,0.667,1 +0.667,0.0495,0.377,0.377,0,0.0122,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.108,1,0.334,0.246,0.334,0.334,0.575,0.575,0.15,0.188,0.667,1 +0.333,0.174,0.255,0.255,0,0.0244,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0.0114,0.0114,0.257,0.523,0.127,1,0.324,0.229,0.324,0.324,0.829,0.829,0.119,0.149,0,1 +0.333,0.17,0.266,0.266,0,0,0.791,0.791,0.791,0,0,0.000877,0,0,0,0,0,0,0,0.26,0.523,0.143,1,0.334,0.246,0.334,0.334,0.87,0.87,0.0939,0.118,0,1 +0.333,0.164,0.277,0.277,0,0,0.791,0.791,0.791,0,0,0.0255,0.0112,0,0,0,0,0,0,0.264,0.528,0.158,1,0.334,0.257,0.334,0.334,0.829,0.829,0.0876,0.11,0,1 +0.333,0.16,0.266,0.266,0,0.0122,0.831,0.831,0.831,0,0,0,0.00456,0.238,0.238,0,0,0,0,0.26,0.533,0.167,1,0.324,0.235,0.324,0.324,0.822,0.822,0.0876,0.11,0,1 +0.333,0.159,0.31,0.31,0,0.0244,0.831,0.831,0.831,0,0,0,0,0.128,0.128,0,0,0.00568,0.00568,0.275,0.533,0.189,1,0.324,0.212,0.324,0.324,0.616,0.616,0.0876,0.11,0,1 +0.333,0.159,0.344,0.344,0,0,0.831,0.831,0.831,0,0,0,0,0,0,0,0,0,0,0.286,0.528,0.2,1,0.324,0.274,0.324,0.324,0.514,0.514,0.15,0.188,0,1 +0.333,0.159,0.355,0.355,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0.0408,0.0213,0.0114,0.0735,0.29,0.538,0.224,1,0.334,0.33,0.334,0.334,0.418,0.418,0.363,0.455,0,1 +0.667,0.162,0.432,0.432,0,0,0.87,0.87,0.87,0,0,0,0,0,0,0,0.0178,0.0114,0.0292,0.316,0.548,0.279,1,0.455,0.615,0.455,0.455,0.253,0.253,0.789,0.989,0.333,1 +0.667,0.17,0.587,0.587,0,0,0.949,0.949,0.949,0,0,0,0,0,0,0,0.0312,0,0.0312,0.368,0.568,0.343,1,0.577,0.9,0.577,0.577,0.158,0.158,0.764,0.958,0.333,1 +1,0.339,0.698,0.698,0,0,0.989,0.989,0.989,0,0,0,0,0,0,0,0,0.017,0.017,0.551,0.68,0.461,1,0.668,0.643,0.668,0.668,0.089,0.089,0.426,0.534,0.333,1 +1,0.429,0.742,0.742,0,0,0.949,0.949,0.949,0,0,0,0,0,0,0,0,0.0114,0.0114,0.581,0.65,0.646,1,0.769,0.391,0.769,0.769,0.0548,0.0548,0.382,0.479,0.333,1 +1,0.538,0.787,0.787,0,0,0.93,0.93,0.93,0.00483,0.0175,0,0,0,0,0,0,0.00852,0.00852,0.61,0.62,0.797,1,0.819,0.246,0.819,0.819,0.0274,0.0274,0.319,0.4,0.333,1 +1,0.603,0.765,0.765,0,0,0.91,0.91,0.91,0.0235,0.0302,0,0,0,0,0,0,0.00852,0.00852,0.596,0.6,0.756,1,0.87,0.106,0.87,0.87,0.0205,0.0205,0.269,0.338,0.333,1 +1,0.232,0.654,0.654,0,0,0.87,0.87,0.87,0,0,0,0,0,0,0,0,0.00568,0.00568,0.39,0.508,0.457,1,0.759,0.0726,0.759,0.759,0.0205,0.0205,0.15,0.188,0.667,1 +1,0.0495,0.554,0.554,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0.00568,0.00568,0.258,0.465,0.198,1,0.658,0.0391,0.658,0.658,0.0205,0.0205,0.15,0.188,1,1 +1,0.0495,0.443,0.443,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0813,1,0.445,0.0224,0.445,0.445,0.0205,0.0205,0.15,0.188,1,1 +1,0.0495,0.41,0.41,0,0,0.771,0.771,0.771,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0395,1,0.233,0.00559,0.233,0.233,0.0205,0.0205,0.182,0.228,1,1 +1,0.0495,0.41,0.41,0,0,0.752,0.752,0.752,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0198,1,0.192,0.00559,0.192,0.192,0.0205,0.0205,0.15,0.188,1,1 +1,0.0495,0.399,0.399,0,0,0.732,0.732,0.732,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0154,1,0.152,0.0112,0.152,0.152,0.0274,0.0274,0.182,0.228,1,1 +1,0.0495,0.366,0.366,0,0,0.712,0.712,0.712,0,0,0,0,0,0,0,0.00273,0,0.00273,0.258,0.465,0.0242,1,0.162,0.0391,0.162,0.162,0.0548,0.0548,0.294,0.369,1,1 +1,0.0798,0.399,0.399,0,0.0122,0.712,0.712,0.712,0,0,0,0,0,0,0,0.0408,0,0.0408,0.305,0.474,0.0395,1,0.182,0.0671,0.182,0.182,0.103,0.103,0.419,0.526,0.667,1 +1,0.236,0.477,0.477,0,0.0244,0.752,0.752,0.752,0,0,0,0,0,0,0,0.0232,0,0.0232,0.404,0.521,0.0637,1,0.263,0.162,0.263,0.263,0.178,0.178,0.357,0.447,0.333,1 +0.667,0.295,0.521,0.521,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0.0184,0,0.0184,0.433,0.571,0.0879,1,0.334,0.257,0.334,0.334,0.301,0.301,0.15,0.188,0,1 +0.333,0.175,0.377,0.377,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0.0397,0.0687,0,0.108,0.297,0.523,0.108,1,0.334,0.246,0.334,0.334,0.575,0.575,0.15,0.188,0,1 +0.333,0.174,0.255,0.255,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0.017,0.017,0.257,0.523,0.127,1,0.324,0.229,0.324,0.324,0.829,0.829,0.119,0.149,0,1 +0.333,0.17,0.266,0.266,0,0,0.791,0.791,0.791,0.0152,0.0478,0,0,0,0,0,0,0.0142,0.0142,0.26,0.523,0.143,1,0.334,0.246,0.334,0.334,0.87,0.87,0.0939,0.118,0,1 +0.333,0.164,0.277,0.277,0,0,0.791,0.791,0.791,0.00713,0,0,0,0,0,0,0,0.00852,0.00852,0.264,0.528,0.158,1,0.334,0.257,0.334,0.334,0.829,0.829,0.0876,0.11,0,1 +0.667,0.271,0.266,0.266,0,0.0366,0.831,0.831,0.831,0,0,0,0,0,0,0,0,0,0,0.263,0.6,0.167,1,0.324,0.235,0.324,0.324,0.822,0.822,0.0876,0.11,0,1 +0.333,0.159,0.31,0.31,0,0,0.831,0.831,0.831,0,0,0,0,0,0,0,0,0.00568,0.00568,0.275,0.533,0.189,1,0.324,0.212,0.324,0.324,0.616,0.616,0.0876,0.11,0,1 +0.333,0.159,0.344,0.344,0,0,0.831,0.831,0.831,0,0,0,0,0,0,0,0,0.00284,0.00284,0.286,0.528,0.2,1,0.324,0.274,0.324,0.324,0.514,0.514,0.15,0.188,0,1 +0.333,0.159,0.355,0.355,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0,0,0.29,0.538,0.224,1,0.334,0.33,0.334,0.334,0.418,0.418,0.363,0.455,0,1 +0.333,0.162,0.432,0.432,0,0,0.87,0.87,0.87,0,0,0,0,0,0,0,0,0.00284,0.00284,0.316,0.548,0.279,1,0.455,0.615,0.455,0.455,0.253,0.253,0.789,0.989,0,1 +0.333,0.17,0.587,0.587,0,0,0.949,0.949,0.949,0,0,0.00848,0,0,0,0,0,0.00852,0.00852,0.368,0.568,0.343,1,0.577,0.9,0.577,0.577,0.158,0.158,0.764,0.958,0,1 +0,0.0495,0.698,0.698,0,0,0.989,0.989,0.989,0,0,0.0276,0.0112,0,0,0,0,0.00568,0.00568,0.258,0.465,0.461,1,0.668,0.643,0.668,0.668,0.089,0.089,0.426,0.534,0,1 +0.667,0.429,0.742,0.742,0,0,0.949,0.949,0.949,0,0,0.0216,0.00456,0.183,0.183,0,0,0.0142,0.0142,0.581,0.65,0.646,1,0.769,0.391,0.769,0.769,0.0548,0.0548,0.382,0.479,0,1 +1,0.783,0.787,0.787,0,0,0.93,0.93,0.93,0,0,0.0307,0,0,0,0,0,0.00568,0.00568,0.787,0.698,0.797,1,0.819,0.246,0.819,0.819,0.0274,0.0274,0.319,0.4,0,1 +1,0.88,0.765,0.765,0,0,0.91,0.91,0.91,0,0,0,0,0,0,0,0,0.017,0.017,0.765,0.668,0.756,1,0.87,0.106,0.87,0.87,0.0205,0.0205,0.269,0.338,0,1 +1,0.232,0.654,0.654,0,0,0.87,0.87,0.87,0,0,0,0,0,0,0,0,0,0,0.39,0.508,0.457,1,0.759,0.0726,0.759,0.759,0.0205,0.0205,0.15,0.188,0.667,1 +1,0.116,0.554,0.554,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0.00284,0.00284,0.357,0.488,0.198,1,0.658,0.0391,0.658,0.658,0.0205,0.0205,0.15,0.188,0.667,1 +1,0.0495,0.443,0.443,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0813,1,0.445,0.0224,0.445,0.445,0.0205,0.0205,0.15,0.188,1,1 +1,0.0495,0.41,0.41,0,0,0.771,0.771,0.771,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0395,1,0.233,0.00559,0.233,0.233,0.0205,0.0205,0.182,0.228,1,1 +1,0.0495,0.41,0.41,0,0,0.752,0.752,0.752,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0198,1,0.192,0.00559,0.192,0.192,0.0205,0.0205,0.15,0.188,1,1 +0.667,0.0495,0.399,0.399,0,0.0487,0.732,0.732,0.732,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0154,1,0.152,0.0112,0.152,0.152,0.0274,0.0274,0.182,0.228,0.667,1 +1,0.0495,0.366,0.366,0,0.0244,0.712,0.712,0.712,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0242,1,0.162,0.0391,0.162,0.162,0.0548,0.0548,0.294,0.369,1,1 +1,0.0495,0.399,0.399,0,0,0.712,0.712,0.712,0,0,0,0,0,0,0,0.0027,0,0.0027,0.258,0.465,0.0395,1,0.182,0.0671,0.182,0.182,0.103,0.103,0.419,0.526,1,1 +1,0.236,0.477,0.477,0,0.0366,0.752,0.752,0.752,0,0,0,0,0,0,0,0.0324,0,0.0324,0.404,0.521,0.0637,1,0.263,0.162,0.263,0.263,0.178,0.178,0.357,0.447,0.333,1 +0.667,0.295,0.521,0.521,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0.0302,0.00852,0.0388,0.433,0.571,0.0879,1,0.334,0.257,0.334,0.334,0.301,0.301,0.15,0.188,0,1 +0.667,0.301,0.377,0.377,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0,0,0.337,0.581,0.108,1,0.334,0.246,0.334,0.334,0.575,0.575,0.15,0.188,0,1 +0.333,0.174,0.255,0.255,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0,0,0.257,0.523,0.127,1,0.324,0.229,0.324,0.324,0.829,0.829,0.119,0.149,0,1 +0.333,0.17,0.266,0.266,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0,0,0.26,0.523,0.143,1,0.334,0.246,0.334,0.334,0.87,0.87,0.0939,0.118,0,1 +0,0.0495,0.277,0.277,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0.0199,0.0199,0.258,0.465,0.158,1,0.334,0.257,0.334,0.334,0.829,0.829,0.0876,0.11,0,1 +0,0.0495,0.266,0.266,0,0,0.831,0.831,0.831,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.167,1,0.324,0.235,0.324,0.324,0.822,0.822,0.0876,0.11,0,1 +0.333,0.159,0.31,0.31,0,0,0.831,0.831,0.831,0,0,0,0,0,0,0,0.00273,0,0.00273,0.275,0.533,0.189,1,0.324,0.212,0.324,0.324,0.616,0.616,0.0876,0.11,0,1 +0.333,0.159,0.344,0.344,0,0,0.831,0.831,0.831,0,0,0,0,0,0,0,0.0343,0.017,0.0513,0.286,0.528,0.2,1,0.324,0.274,0.324,0.324,0.514,0.514,0.15,0.188,0,1 +0,0.0495,0.355,0.355,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.224,1,0.334,0.33,0.334,0.334,0.418,0.418,0.363,0.455,0,1 +0.333,0.162,0.432,0.432,0,0,0.87,0.87,0.87,0,0,0,0,0,0,0,0,0,0,0.316,0.548,0.279,1,0.455,0.615,0.455,0.455,0.253,0.253,0.789,0.989,0,1 +0.333,0.17,0.587,0.587,0,0,0.949,0.949,0.949,0,0,0,0,0,0,0,0,0.00284,0.00284,0.368,0.568,0.343,1,0.577,0.9,0.577,0.577,0.158,0.158,0.764,0.958,0,1 +1,0.484,0.698,0.698,0,0,0.989,0.989,0.989,0.00472,0.0175,0,0,0,0,0,0,0,0,0.698,0.787,0.461,1,0.668,0.643,0.668,0.668,0.089,0.089,0.426,0.534,0,1 +1,0.619,0.742,0.742,0,0.0366,0.949,0.949,0.949,0.0204,0.078,0,0,0,0,0,0,0,0,0.742,0.742,0.646,1,0.769,0.391,0.769,0.769,0.0548,0.0548,0.382,0.479,0,1 +1,0.783,0.787,0.787,0,0,0.93,0.93,0.93,0,0,0,0,0,0,0,0,0.0199,0.0199,0.787,0.698,0.797,1,0.819,0.246,0.819,0.819,0.0274,0.0274,0.319,0.4,0,1 +1,0.88,0.765,0.765,0,0,0.91,0.91,0.91,0,0,0,0,0,0,0,0,0.00568,0.00568,0.765,0.668,0.756,1,0.87,0.106,0.87,0.87,0.0205,0.0205,0.269,0.338,0,1 +1,0.232,0.654,0.654,0,0,0.87,0.87,0.87,0,0,0,0,0,0,0,0.0176,0.00568,0.0233,0.39,0.508,0.457,1,0.759,0.0726,0.759,0.759,0.0205,0.0205,0.15,0.188,0.667,1 +1,0.116,0.554,0.554,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0.0347,0,0.0347,0.357,0.488,0.198,1,0.658,0.0391,0.658,0.658,0.0205,0.0205,0.15,0.188,0.667,1 +1,0.0495,0.443,0.443,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0813,1,0.445,0.0224,0.445,0.445,0.0205,0.0205,0.15,0.188,1,1 +1,0.0495,0.41,0.41,0,0,0.771,0.771,0.771,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0395,1,0.233,0.00559,0.233,0.233,0.0205,0.0205,0.182,0.228,1,1 +1,0.0495,0.41,0.41,0,0,0.752,0.752,0.752,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0198,1,0.192,0.00559,0.192,0.192,0.0205,0.0205,0.15,0.188,1,1 +1,0.0495,0.399,0.399,0,0,0.732,0.732,0.732,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0154,1,0.152,0.0112,0.152,0.152,0.0274,0.0274,0.182,0.228,1,1 +1,0.0495,0.366,0.366,0,0,0.712,0.712,0.712,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0242,1,0.162,0.0391,0.162,0.162,0.0548,0.0548,0.294,0.369,1,1 +1,0.0495,0.399,0.399,0,0,0.712,0.712,0.712,0,0,0,0,0,0,0,0.00266,0,0.00266,0.258,0.465,0.0395,1,0.182,0.0671,0.182,0.182,0.103,0.103,0.419,0.526,1,1 +1,0.236,0.477,0.477,0,0.0366,0.752,0.752,0.752,0,0,0,0,0,0,0,0.0553,0,0.0553,0.404,0.521,0.0637,1,0.263,0.162,0.263,0.263,0.178,0.178,0.357,0.447,0.333,1 +0.667,0.172,0.521,0.521,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0.0179,0,0.0179,0.345,0.518,0.0879,1,0.334,0.257,0.334,0.334,0.301,0.301,0.15,0.188,0.333,1 +0.333,0.0495,0.377,0.377,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.108,1,0.334,0.246,0.334,0.334,0.575,0.575,0.15,0.188,0.333,1 +0.333,0.0495,0.255,0.255,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.127,1,0.324,0.229,0.324,0.324,0.829,0.829,0.119,0.149,0.333,1 +0.333,0.17,0.266,0.266,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0.00284,0.00284,0.26,0.523,0.143,1,0.334,0.246,0.334,0.334,0.87,0.87,0.0939,0.118,0,1 +0.333,0.164,0.277,0.277,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0,0,0.264,0.528,0.158,1,0.334,0.257,0.334,0.334,0.829,0.829,0.0876,0.11,0,1 +0.333,0.16,0.266,0.266,0,0,0.831,0.831,0.831,0,0,0,0,0,0,0,0,0,0,0.26,0.533,0.167,1,0.324,0.235,0.324,0.324,0.822,0.822,0.0876,0.11,0,1 +0.333,0.0495,0.31,0.31,0,0,0.831,0.831,0.831,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.189,1,0.324,0.212,0.324,0.324,0.616,0.616,0.0876,0.11,0.333,1 +0.333,0.0495,0.344,0.344,0,0,0.831,0.831,0.831,0,0,0,0,0,0,0,0,0.00852,0.00852,0.258,0.465,0.2,1,0.324,0.274,0.324,0.324,0.514,0.514,0.15,0.188,0.333,1 +0.333,0.0495,0.355,0.355,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0.00568,0.00568,0.258,0.465,0.224,1,0.334,0.33,0.334,0.334,0.418,0.418,0.363,0.455,0.333,1 +0.333,0.0495,0.432,0.432,0,0,0.87,0.87,0.87,0,0,0,0,0,0,0,0,0.00852,0.00852,0.258,0.465,0.279,1,0.455,0.615,0.455,0.455,0.253,0.253,0.789,0.989,0.333,1 +0.667,0.291,0.587,0.587,0,0,0.949,0.949,0.949,0.00668,0.0175,0,0,0,0,0,0,0,0,0.477,0.67,0.343,1,0.577,0.9,0.577,0.577,0.158,0.158,0.764,0.958,0,1 +1,0.484,0.698,0.698,0,0,0.989,0.989,0.989,0.0257,0.0302,0,0,0,0,0,0,0,0,0.698,0.787,0.461,1,0.668,0.643,0.668,0.668,0.089,0.089,0.426,0.534,0,1 +1,0.619,0.742,0.742,0,0,0.949,0.949,0.949,0.0224,0,0,0,0,0,0,0,0,0,0.742,0.742,0.646,1,0.769,0.391,0.769,0.769,0.0548,0.0548,0.382,0.479,0,1 +1,0.783,0.787,0.787,0,0,0.93,0.93,0.93,0.0222,0,0,0,0,0,0,0.00265,0.00284,0.00549,0.787,0.698,0.797,1,0.819,0.246,0.819,0.819,0.0274,0.0274,0.319,0.4,0,1 +1,0.88,0.765,0.765,0,0,0.91,0.91,0.91,0.0177,0,0,0,0,0,0,0.0159,0.00284,0.0188,0.765,0.668,0.756,1,0.87,0.106,0.87,0.87,0.0205,0.0205,0.269,0.338,0,1 +1,0.415,0.654,0.654,0,0,0.87,0.87,0.87,0,0,0,0,0,0,0,0,0.00284,0.00284,0.522,0.551,0.457,1,0.759,0.0726,0.759,0.759,0.0205,0.0205,0.15,0.188,0.333,1 +1,0.116,0.554,0.554,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0.00852,0.00852,0.357,0.488,0.198,1,0.658,0.0391,0.658,0.658,0.0205,0.0205,0.15,0.188,0.667,1 +1,0.0495,0.443,0.443,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0.0142,0.0142,0.258,0.465,0.0966,1,0.445,0.0224,0.445,0.445,0.0205,0.0205,0.15,0.188,1,1 +1,0.0495,0.41,0.41,0,0,0.771,0.771,0.771,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0483,1,0.233,0.00559,0.233,0.233,0.0205,0.0205,0.182,0.228,1,1 +1,0.0495,0.41,0.41,0,0,0.752,0.752,0.752,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.465,0.0264,1,0.192,0.00559,0.192,0.192,0.0205,0.0205,0.15,0.188,1,1 +1,0.0495,0.399,0.399,0,0,0.732,0.732,0.732,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0176,1,0.152,0.0112,0.152,0.152,0.0274,0.0274,0.182,0.228,1,1 +1,0.0495,0.366,0.366,0,0,0.712,0.712,0.712,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0242,1,0.162,0.0391,0.162,0.162,0.0548,0.0548,0.294,0.369,1,1 +1,0.0495,0.399,0.399,0,0,0.712,0.712,0.712,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0308,1,0.182,0.0671,0.182,0.182,0.103,0.103,0.419,0.526,1,1 +1,0.0495,0.477,0.477,0,0,0.752,0.752,0.752,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0527,1,0.263,0.162,0.263,0.263,0.178,0.178,0.357,0.447,1,1 +1,0.0495,0.521,0.521,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0944,1,0.334,0.257,0.334,0.334,0.301,0.301,0.15,0.188,1,1 +1,0.175,0.377,0.377,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0,0,0.297,0.523,0.156,1,0.334,0.246,0.334,0.334,0.575,0.575,0.15,0.188,0.667,1 +1,0.174,0.255,0.255,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0,0,0.257,0.523,0.206,1,0.324,0.229,0.324,0.324,0.829,0.829,0.119,0.149,0.667,1 +1,0.411,0.266,0.266,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0.117,0,0,0.117,0.266,0.638,0.246,1,0.334,0.246,0.334,0.334,0.87,0.87,0.0939,0.118,0,1 +0.667,0.279,0.277,0.277,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0,0,0.271,0.591,0.27,1,0.334,0.257,0.334,0.334,0.829,0.829,0.0876,0.11,0,1 +1,0.271,0.266,0.266,0,0.0366,0.831,0.831,0.831,0,0,0,0,0,0,0,0,0,0,0.263,0.6,0.29,1,0.324,0.235,0.324,0.324,0.822,0.822,0.0876,0.11,0.333,1 +0.667,0.159,0.31,0.31,0,0,0.831,0.831,0.831,0,0,0,0,0,0,0,0,0.0114,0.0114,0.275,0.533,0.343,1,0.324,0.212,0.324,0.324,0.616,0.616,0.0876,0.11,0.333,1 +0.667,0.159,0.344,0.344,0,0,0.831,0.831,0.831,0,0,0,0,0,0,0,0,0.00568,0.00568,0.286,0.528,0.391,1,0.324,0.274,0.324,0.324,0.514,0.514,0.15,0.188,0.333,1 +0.667,0.159,0.355,0.355,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0.00284,0.00284,0.29,0.538,0.431,1,0.334,0.33,0.334,0.334,0.418,0.418,0.363,0.455,0.333,1 +0.667,0.274,0.432,0.432,0,0,0.87,0.87,0.87,0,0,0,0,0,0,0,0,0.00284,0.00284,0.374,0.63,0.452,1,0.455,0.615,0.455,0.455,0.253,0.253,0.789,0.989,0,1 +0.667,0.291,0.587,0.587,0,0.0366,0.949,0.949,0.949,0,0,0,0,0,0,0,0.0286,0.00568,0.0343,0.477,0.67,0.468,1,0.577,0.9,0.577,0.577,0.158,0.158,0.764,0.958,0,1 +1,0.484,0.698,0.698,0,0,0.989,0.989,0.989,0,0,0,0,0,0,0,0.0189,0.00284,0.0217,0.698,0.787,0.551,1,0.668,0.643,0.668,0.668,0.089,0.089,0.426,0.534,0,1 +1,0.619,0.742,0.742,0,0,0.949,0.949,0.949,0,0,0,0,0,0,0,0.0381,0.00568,0.0438,0.742,0.742,0.725,1,0.769,0.391,0.769,0.769,0.0548,0.0548,0.382,0.479,0,1 +1,0.783,0.787,0.787,0,0,0.93,0.93,0.93,0,0,0,0,0,0,0,0,0,0,0.787,0.698,0.852,1,0.819,0.246,0.819,0.819,0.0274,0.0274,0.319,0.4,0,1 +1,0.88,0.765,0.765,0,0,0.91,0.91,0.91,0,0,0,0,0,0,0,0.00226,0,0.00226,0.765,0.668,0.786,1,0.87,0.106,0.87,0.87,0.0205,0.0205,0.269,0.338,0,1 +1,0.415,0.654,0.654,0,0,0.87,0.87,0.87,0,0,0,0,0,0,0,0.00905,0,0.00905,0.522,0.551,0.496,1,0.759,0.0726,0.759,0.759,0.0205,0.0205,0.15,0.188,0.333,1 +1,0.116,0.554,0.554,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0.00568,0.00568,0.357,0.488,0.226,1,0.658,0.0391,0.658,0.658,0.0205,0.0205,0.15,0.188,0.667,1 +1,0.0743,0.443,0.443,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0,0,0.32,0.483,0.0966,1,0.445,0.0224,0.445,0.445,0.0205,0.0205,0.15,0.188,0.667,1 +1,0.0495,0.41,0.41,0,0,0.771,0.771,0.771,0,0,0,0,0,0,0,0,0.00852,0.00852,0.258,0.465,0.0483,1,0.233,0.00559,0.233,0.233,0.0205,0.0205,0.182,0.228,1,1 +1,0.0495,0.41,0.41,0,0,0.752,0.752,0.752,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.465,0.0264,1,0.192,0.00559,0.192,0.192,0.0205,0.0205,0.15,0.188,1,1 +1,0.0495,0.399,0.399,0,0,0.732,0.732,0.732,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0176,1,0.152,0.0112,0.152,0.152,0.0274,0.0274,0.182,0.228,1,1 +1,0.0495,0.366,0.366,0,0,0.712,0.712,0.712,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0242,1,0.162,0.0391,0.162,0.162,0.0548,0.0548,0.294,0.369,1,1 +1,0.0495,0.399,0.399,0,0,0.712,0.712,0.712,0,0,0,0,0,0,0,0.0438,0,0.0438,0.258,0.465,0.0308,1,0.182,0.0671,0.182,0.182,0.103,0.103,0.419,0.526,1,1 +0.667,0.0495,0.477,0.477,0,0,0.752,0.752,0.752,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0527,1,0.263,0.162,0.263,0.263,0.178,0.178,0.357,0.447,0.667,1 +0.667,0.0495,0.521,0.521,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0944,1,0.334,0.257,0.334,0.334,0.301,0.301,0.15,0.188,0.667,1 +0.667,0.0495,0.377,0.377,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.156,1,0.334,0.246,0.334,0.334,0.575,0.575,0.15,0.188,0.667,1 +0.667,0.0495,0.255,0.255,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.206,1,0.324,0.229,0.324,0.324,0.829,0.829,0.119,0.149,0.667,1 +1,0.291,0.266,0.266,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0,0,0.263,0.581,0.246,1,0.334,0.246,0.334,0.334,0.87,0.87,0.0939,0.118,0.333,1 +1,0.279,0.277,0.277,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0,0,0.271,0.591,0.27,1,0.334,0.257,0.334,0.334,0.829,0.829,0.0876,0.11,0.333,1 +0.667,0.16,0.266,0.266,0,0,0.831,0.831,0.831,0,0,0,0,0,0,0,0,0,0,0.26,0.533,0.29,1,0.324,0.235,0.324,0.324,0.822,0.822,0.0876,0.11,0.333,1 +0.667,0.159,0.31,0.31,0,0,0.831,0.831,0.831,0,0,0,0,0,0,0,0,0,0,0.275,0.533,0.343,1,0.324,0.212,0.324,0.324,0.616,0.616,0.0876,0.11,0.333,1 +0.667,0.159,0.344,0.344,0,0,0.831,0.831,0.831,0,0,0,0,0,0,0,0,0,0,0.286,0.528,0.391,1,0.324,0.274,0.324,0.324,0.514,0.514,0.15,0.188,0.333,1 +0.667,0.159,0.355,0.355,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0.00568,0.00568,0.29,0.538,0.431,1,0.334,0.33,0.334,0.334,0.418,0.418,0.363,0.455,0.333,1 +1,0.386,0.432,0.432,0,0,0.87,0.87,0.87,0,0,0,0,0,0,0,0,0.00852,0.00852,0.432,0.713,0.452,1,0.455,0.615,0.455,0.455,0.253,0.253,0.789,0.989,0,1 +0.667,0.291,0.587,0.587,0,0,0.949,0.949,0.949,0,0,0,0,0,0,0,0,0,0,0.477,0.67,0.468,1,0.577,0.9,0.577,0.577,0.158,0.158,0.764,0.958,0,1 +1,0.484,0.698,0.698,0,0.0366,0.989,0.989,0.989,0,0,0,0,0,0,0,0,0.00284,0.00284,0.698,0.787,0.551,1,0.668,0.643,0.668,0.668,0.089,0.089,0.426,0.534,0,1 +1,0.619,0.742,0.742,0,0,0.949,0.949,0.949,0.0157,0.0478,0,0,0,0,0,0,0.017,0.017,0.742,0.742,0.725,1,0.769,0.391,0.769,0.769,0.0548,0.0548,0.382,0.479,0,1 +1,0.783,0.787,0.787,0,0,0.93,0.93,0.93,0.0152,0,0,0,0,0,0,0,0.00852,0.00852,0.787,0.698,0.852,1,0.819,0.246,0.819,0.819,0.0274,0.0274,0.319,0.4,0,1 +1,0.88,0.765,0.765,0,0,0.91,0.91,0.91,0.0156,0,0,0,0,0,0,0,0.0199,0.0199,0.765,0.668,0.786,1,0.87,0.106,0.87,0.87,0.0205,0.0205,0.269,0.338,0,1 +1,0.415,0.654,0.654,0,0,0.87,0.87,0.87,0.022,0,0,0,0,0,0,0,0.0114,0.0114,0.522,0.551,0.496,1,0.759,0.0726,0.759,0.759,0.0205,0.0205,0.15,0.188,0.333,1 +1,0.183,0.554,0.554,0,0,0.811,0.811,0.811,0.0267,0,0,0,0,0,0,0.00228,0,0.00228,0.455,0.511,0.226,1,0.658,0.0391,0.658,0.658,0.0205,0.0205,0.15,0.188,0.333,1 +1,0.0743,0.443,0.443,0,0,0.791,0.791,0.791,0.0153,0,0,0,0,0,0,0.00683,0,0.00683,0.32,0.483,0.0813,1,0.445,0.0224,0.445,0.445,0.0205,0.0205,0.15,0.188,0.667,1 +1,0.0495,0.41,0.41,0,0,0.771,0.771,0.771,0,0,0,0,0,0,0,0,0.00568,0.00568,0.258,0.465,0.0395,1,0.233,0.00559,0.233,0.233,0.0205,0.0205,0.182,0.228,1,1 +1,0.0495,0.41,0.41,0,0,0.752,0.752,0.752,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.465,0.0198,1,0.192,0.00559,0.192,0.192,0.0205,0.0205,0.15,0.188,1,1 +1,0.0495,0.399,0.399,0,0,0.732,0.732,0.732,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0154,1,0.152,0.0112,0.152,0.152,0.0274,0.0274,0.182,0.228,1,1 +1,0.0495,0.366,0.366,0,0,0.712,0.712,0.712,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0242,1,0.162,0.0391,0.162,0.162,0.0548,0.0548,0.294,0.369,1,1 +1,0.0495,0.399,0.399,0,0,0.712,0.712,0.712,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0395,1,0.182,0.0671,0.182,0.182,0.103,0.103,0.419,0.526,1,1 +1,0.0495,0.477,0.477,0,0,0.752,0.752,0.752,0,0,0.0158,0.00596,0,0,0,0.0193,0,0.0193,0.258,0.465,0.0637,1,0.263,0.162,0.263,0.263,0.178,0.178,0.357,0.447,1,1 +1,0.417,0.521,0.521,0,0.0853,0.791,0.791,0.791,0,0,0.0298,0.0151,0.055,0.055,0.06,0,0,0.06,0.521,0.623,0.0879,1,0.334,0.257,0.334,0.334,0.301,0.301,0.15,0.188,0,1 +1,0.427,0.377,0.377,0,0.0975,0.811,0.811,0.811,0,0,0.0323,0,0.22,0.22,0,0,0,0,0.377,0.638,0.108,1,0.334,0.246,0.334,0.334,0.575,0.575,0.15,0.188,0,1 +1,0.424,0.255,0.255,0,0,0.811,0.811,0.811,0,0,0.0273,0,0,0,0,0,0,0,0.255,0.638,0.127,1,0.324,0.229,0.324,0.324,0.829,0.829,0.119,0.149,0,1 +1,0.411,0.266,0.266,0,0.0122,0.791,0.791,0.791,0,0,0.0189,0,0,0,0,0,0,0,0.266,0.638,0.143,1,0.334,0.246,0.334,0.334,0.87,0.87,0.0939,0.118,0,1 +0.667,0.279,0.277,0.277,0,0.0244,0.791,0.791,0.791,0,0,0.0331,0,0,0,0,0,0.00568,0.00568,0.271,0.591,0.158,1,0.334,0.257,0.334,0.334,0.829,0.829,0.0876,0.11,0,1 +0.667,0.271,0.266,0.266,0,0,0.831,0.831,0.831,0.0139,0.0653,0,0,0,0,0,0,0.00284,0.00284,0.263,0.6,0.167,1,0.324,0.235,0.324,0.324,0.822,0.822,0.0876,0.11,0,1 +0.667,0.269,0.31,0.31,0,0,0.831,0.831,0.831,0.00343,0.0541,0,0,0,0,0,0,0,0,0.293,0.6,0.189,1,0.324,0.212,0.324,0.324,0.616,0.616,0.0876,0.11,0,1 +0.333,0.159,0.344,0.344,0,0,0.831,0.831,0.831,0,0,0,0,0,0,0,0,0,0,0.286,0.528,0.2,1,0.324,0.274,0.324,0.324,0.514,0.514,0.15,0.188,0,1 +0.333,0.159,0.355,0.355,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0.0114,0.0114,0.29,0.538,0.224,1,0.334,0.33,0.334,0.334,0.418,0.418,0.363,0.455,0,1 +0.333,0.162,0.432,0.432,0,0,0.87,0.87,0.87,0,0,0.00136,0,0,0,0,0,0.0142,0.0142,0.316,0.548,0.279,1,0.455,0.615,0.455,0.455,0.253,0.253,0.789,0.989,0,1 +0.333,0.17,0.587,0.587,0,0.0853,0.949,0.949,0.949,0,0,0.00419,0.0112,0,0,0,0,0.0199,0.0199,0.368,0.568,0.343,1,0.577,0.9,0.577,0.577,0.158,0.158,0.764,0.958,0,1 +1,0.484,0.698,0.698,0,0.0244,0.989,0.989,0.989,0,0,0.0175,0.00456,0.238,0.238,0,0,0.00568,0.00568,0.698,0.787,0.461,1,0.668,0.643,0.668,0.668,0.089,0.089,0.426,0.534,0,1 +1,0.619,0.742,0.742,0,0,0.949,0.949,0.949,0.0161,0.0478,0.0538,0,0.22,0.22,0,0,0.00568,0.00568,0.742,0.742,0.646,1,0.769,0.391,0.769,0.769,0.0548,0.0548,0.382,0.479,0,1 +1,0.783,0.787,0.787,0,0,0.93,0.93,0.93,0.0245,0,0.0318,0,0,0,0,0,0.0114,0.0114,0.787,0.698,0.797,1,0.819,0.246,0.819,0.819,0.0274,0.0274,0.319,0.4,0,1 +1,0.603,0.765,0.765,0,0,0.91,0.91,0.91,0,0,0,0,0,0,0,0.0214,0.00852,0.0299,0.596,0.6,0.756,1,0.87,0.106,0.87,0.87,0.0205,0.0205,0.269,0.338,0.333,1 +1,0.415,0.654,0.654,0,0,0.87,0.87,0.87,0,0,0,0,0,0,0,0,0.00284,0.00284,0.522,0.551,0.457,1,0.759,0.0726,0.759,0.759,0.0205,0.0205,0.15,0.188,0.333,1 +1,0.0495,0.554,0.554,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.198,1,0.658,0.0391,0.658,0.658,0.0205,0.0205,0.15,0.188,1,1 +1,0.0495,0.443,0.443,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0.00568,0.00568,0.258,0.465,0.0813,1,0.445,0.0224,0.445,0.445,0.0205,0.0205,0.15,0.188,1,1 +1,0.0495,0.41,0.41,0,0,0.771,0.771,0.771,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.465,0.0395,1,0.233,0.00559,0.233,0.233,0.0205,0.0205,0.182,0.228,1,1 +1,0.0495,0.41,0.41,0,0,0.752,0.752,0.752,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0198,1,0.192,0.00559,0.192,0.192,0.0205,0.0205,0.15,0.188,1,1 +1,0.0495,0.399,0.399,0,0,0.732,0.732,0.732,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0154,1,0.152,0.0112,0.152,0.152,0.0274,0.0274,0.182,0.228,1,1 +1,0.0506,0.366,0.366,0,0,0.712,0.712,0.712,0,0,0,0,0,0,0,0,0,0,0.294,0.469,0.0242,1,0.162,0.0391,0.162,0.162,0.0548,0.0548,0.294,0.369,0.667,1 +1,0.0798,0.399,0.399,0,0,0.712,0.712,0.712,0,0,0,0,0,0,0,0,0,0,0.305,0.474,0.0395,1,0.182,0.0671,0.182,0.182,0.103,0.103,0.419,0.526,0.667,1 +1,0.143,0.477,0.477,0,0,0.752,0.752,0.752,0,0,0,0,0,0,0,0.0413,0,0.0413,0.331,0.493,0.0637,1,0.263,0.162,0.263,0.263,0.178,0.178,0.357,0.447,0.667,1 +1,0.417,0.521,0.521,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0.0563,0,0.0563,0.521,0.623,0.0879,1,0.334,0.257,0.334,0.334,0.301,0.301,0.15,0.188,0,1 +0.667,0.301,0.377,0.377,0,0,0.811,0.811,0.811,0,0,0.02,0,0,0,0,0.0229,0.0199,0.0428,0.337,0.581,0.108,1,0.334,0.246,0.334,0.334,0.575,0.575,0.15,0.188,0,1 +0.333,0.174,0.255,0.255,0,0,0.811,0.811,0.811,0,0,0.0258,0.0165,0,0,0,0,0.00568,0.00568,0.257,0.523,0.127,1,0.324,0.229,0.324,0.324,0.829,0.829,0.119,0.149,0,1 +0.333,0.17,0.266,0.266,0,0,0.791,0.791,0.791,0,0,0.0275,0.00456,0.238,0.238,0,0,0.0142,0.0142,0.26,0.523,0.143,1,0.334,0.246,0.334,0.334,0.87,0.87,0.0939,0.118,0,1 +0.333,0.164,0.277,0.277,0,0,0.791,0.791,0.791,0,0,0,0,0.0367,0.0367,0,0,0.00568,0.00568,0.264,0.528,0.158,1,0.334,0.257,0.334,0.334,0.829,0.829,0.0876,0.11,0,1 +0.333,0.16,0.266,0.266,0,0.0122,0.831,0.831,0.831,0,0,0,0,0,0,0,0,0.0114,0.0114,0.26,0.533,0.167,1,0.324,0.235,0.324,0.324,0.822,0.822,0.0876,0.11,0,1 +0.667,0.269,0.31,0.31,0,0.0244,0.831,0.831,0.831,0,0,0,0,0,0,0,0,0.00852,0.00852,0.293,0.6,0.189,1,0.324,0.212,0.324,0.324,0.616,0.616,0.0876,0.11,0,1 +0.667,0.268,0.344,0.344,0,0,0.831,0.831,0.831,0,0,0,0,0,0,0,0,0,0,0.315,0.591,0.2,1,0.324,0.274,0.324,0.324,0.514,0.514,0.15,0.188,0,1 +0.667,0.269,0.355,0.355,0,0,0.811,0.811,0.811,0,0,0.0253,0.000702,0,0,0,0,0.0255,0.0255,0.322,0.61,0.224,1,0.334,0.33,0.334,0.334,0.418,0.418,0.363,0.455,0,1 +0.667,0.274,0.432,0.432,0,0,0.87,0.87,0.87,0,0,0.0143,0.0151,0.055,0.055,0,0,0,0,0.374,0.63,0.279,1,0.455,0.615,0.455,0.455,0.253,0.253,0.789,0.989,0,1 +1,0.412,0.587,0.587,0,0,0.949,0.949,0.949,0,0,0,0,0.312,0.312,0,0.00271,0,0.00271,0.587,0.772,0.343,1,0.577,0.9,0.577,0.577,0.158,0.158,0.764,0.958,0,1 +1,0.484,0.698,0.698,0,0,0.989,0.989,0.989,0,0,0,0,0,0,0,0.0295,0.00568,0.0352,0.698,0.787,0.461,1,0.668,0.643,0.668,0.668,0.089,0.089,0.426,0.534,0,1 +1,0.619,0.742,0.742,0,0.0122,0.949,0.949,0.949,0,0,0,0,0,0,0,0.0201,0,0.0201,0.742,0.742,0.646,1,0.769,0.391,0.769,0.769,0.0548,0.0548,0.382,0.479,0,1 +1,0.783,0.787,0.787,0,0.0609,0.93,0.93,0.93,0.00371,0.0175,0,0,0,0,0,0.0426,0,0.0426,0.787,0.698,0.797,1,0.819,0.246,0.819,0.819,0.0274,0.0274,0.319,0.4,0,1 +1,0.603,0.765,0.765,0,0,0.91,0.91,0.91,0.028,0.0302,0,0,0,0,0,0.0134,0,0.0134,0.596,0.6,0.756,1,0.87,0.106,0.87,0.87,0.0205,0.0205,0.269,0.338,0.333,1 +1,0.415,0.654,0.654,0,0,0.87,0.87,0.87,0,0,0,0,0,0,0,0.0266,0.0114,0.038,0.522,0.551,0.457,1,0.759,0.0726,0.759,0.759,0.0205,0.0205,0.15,0.188,0.333,1 +1,0.116,0.554,0.554,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0.00284,0.00284,0.357,0.488,0.198,1,0.658,0.0391,0.658,0.658,0.0205,0.0205,0.15,0.188,0.667,1 +1,0.0743,0.443,0.443,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0,0,0.32,0.483,0.0813,1,0.445,0.0224,0.445,0.445,0.0205,0.0205,0.15,0.188,0.667,1 +1,0.0495,0.41,0.41,0,0,0.771,0.771,0.771,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0395,1,0.233,0.00559,0.233,0.233,0.0205,0.0205,0.182,0.228,1,1 +1,0.0495,0.41,0.41,0,0,0.752,0.752,0.752,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0198,1,0.192,0.00559,0.192,0.192,0.0205,0.0205,0.15,0.188,1,1 +1,0.0495,0.399,0.399,0,0,0.732,0.732,0.732,0,0,0,0,0,0,0,0,0,0,0.305,0.464,0.0154,1,0.152,0.0112,0.152,0.152,0.0274,0.0274,0.182,0.228,0.667,1 +1,0.0495,0.366,0.366,0,0.122,0.712,0.712,0.712,0,0,0,0,0,0,0,0.0025,0,0.0025,0.258,0.465,0.0242,1,0.162,0.0391,0.162,0.162,0.0548,0.0548,0.294,0.369,1,1 +1,0.0798,0.399,0.399,0,0.0244,0.712,0.712,0.712,0,0,0,0,0,0,0,0.036,0,0.036,0.305,0.474,0.0395,1,0.182,0.0671,0.182,0.182,0.103,0.103,0.419,0.526,0.667,1 +1,0.236,0.477,0.477,0,0,0.752,0.752,0.752,0,0,0,0,0,0,0,0.0164,0,0.0164,0.404,0.521,0.0637,1,0.263,0.162,0.263,0.263,0.178,0.178,0.357,0.447,0.333,1 +0.667,0.172,0.521,0.521,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0.0279,0,0.0279,0.345,0.518,0.0879,1,0.334,0.257,0.334,0.334,0.301,0.301,0.15,0.188,0.333,1 +0.667,0.175,0.377,0.377,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0.0188,0,0.0188,0.297,0.523,0.108,1,0.334,0.246,0.334,0.334,0.575,0.575,0.15,0.188,0.333,1 +0.333,0.0495,0.255,0.255,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.127,1,0.324,0.229,0.324,0.324,0.829,0.829,0.119,0.149,0.333,1 +0.333,0.17,0.266,0.266,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0.00568,0.00568,0.26,0.523,0.143,1,0.334,0.246,0.334,0.334,0.87,0.87,0.0939,0.118,0,1 +0.333,0.164,0.277,0.277,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0.00284,0.00284,0.264,0.528,0.158,1,0.334,0.257,0.334,0.334,0.829,0.829,0.0876,0.11,0,1 +0.333,0.16,0.266,0.266,0,0,0.831,0.831,0.831,0,0,0,0,0,0,0,0,0,0,0.26,0.533,0.167,1,0.324,0.235,0.324,0.324,0.822,0.822,0.0876,0.11,0,1 +0.333,0.159,0.31,0.31,0,0,0.831,0.831,0.831,0,0,0,0,0,0,0,0,0,0,0.275,0.533,0.189,1,0.324,0.212,0.324,0.324,0.616,0.616,0.0876,0.11,0,1 +0.333,0.159,0.344,0.344,0,0,0.831,0.831,0.831,0,0,0,0,0,0,0,0,0.00284,0.00284,0.286,0.528,0.2,1,0.324,0.274,0.324,0.324,0.514,0.514,0.15,0.188,0,1 +0,0.0495,0.355,0.355,0,0,0.811,0.811,0.811,0,0,0.00224,0.00596,0,0,0,0,0.00568,0.00568,0.258,0.465,0.224,1,0.334,0.33,0.334,0.334,0.418,0.418,0.363,0.455,0,1 +0.333,0.162,0.432,0.432,0,0,0.87,0.87,0.87,0,0,0,0.00982,0.147,0.147,0,0,0,0,0.316,0.548,0.279,1,0.455,0.615,0.455,0.455,0.253,0.253,0.789,0.989,0,1 +0.667,0.291,0.587,0.587,0,0.0366,0.949,0.949,0.949,0,0,0,0,0.128,0.128,0,0,0.0142,0.0142,0.477,0.67,0.343,1,0.577,0.9,0.577,0.577,0.158,0.158,0.764,0.958,0,1 +0.667,0.339,0.698,0.698,0,0,0.989,0.989,0.989,0,0,0,0,0,0,0,0,0.00852,0.00852,0.551,0.68,0.461,1,0.668,0.643,0.668,0.668,0.089,0.089,0.426,0.534,0,1 +0.667,0.429,0.742,0.742,0,0,0.949,0.949,0.949,0,0,0,0,0,0,0,0,0.017,0.017,0.581,0.65,0.646,1,0.769,0.391,0.769,0.769,0.0548,0.0548,0.382,0.479,0,1 +1,0.294,0.787,0.787,0,0,0.93,0.93,0.93,0,0,0,0,0,0,0,0.0359,0.00284,0.0387,0.434,0.543,0.797,1,0.819,0.246,0.819,0.819,0.0274,0.0274,0.319,0.4,0.667,1 +1,0.326,0.765,0.765,0,0,0.91,0.91,0.91,0,0,0,0,0,0,0,0.00832,0.00852,0.0168,0.427,0.533,0.756,1,0.87,0.106,0.87,0.87,0.0205,0.0205,0.269,0.338,0.667,1 +1,0.0495,0.654,0.654,0,0,0.87,0.87,0.87,0,0,0,0,0,0,0,0,0.00568,0.00568,0.258,0.465,0.457,1,0.759,0.0726,0.759,0.759,0.0205,0.0205,0.15,0.188,1,1 +1,0.0495,0.554,0.554,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0.00852,0.00852,0.258,0.465,0.198,1,0.658,0.0391,0.658,0.658,0.0205,0.0205,0.15,0.188,1,1 +1,0.0495,0.443,0.443,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0813,1,0.445,0.0224,0.445,0.445,0.0205,0.0205,0.15,0.188,1,1 +1,0.0495,0.41,0.41,0,0,0.771,0.771,0.771,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.465,0.0395,1,0.233,0.00559,0.233,0.233,0.0205,0.0205,0.182,0.228,1,1 +1,0.0495,0.41,0.41,0,0,0.752,0.752,0.752,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0198,1,0.192,0.00559,0.192,0.192,0.0205,0.0205,0.15,0.188,1,1 +1,0.0495,0.399,0.399,0,0,0.732,0.732,0.732,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0154,1,0.152,0.0112,0.152,0.152,0.0274,0.0274,0.182,0.228,1,1 +1,0.0495,0.366,0.366,0,0,0.712,0.712,0.712,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0242,1,0.162,0.0391,0.162,0.162,0.0548,0.0548,0.294,0.369,1,1 +1,0.0495,0.399,0.399,0,0,0.712,0.712,0.712,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0395,1,0.182,0.0671,0.182,0.182,0.103,0.103,0.419,0.526,1,1 +0.667,0.0495,0.477,0.477,0,0,0.752,0.752,0.752,0,0,0,0,0,0,0,0.0171,0,0.0171,0.258,0.465,0.0637,1,0.263,0.162,0.263,0.263,0.178,0.178,0.357,0.447,0.667,1 +0.667,0.172,0.521,0.521,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0.0423,0,0.0423,0.345,0.518,0.0879,1,0.334,0.257,0.334,0.334,0.301,0.301,0.15,0.188,0.333,1 +0.667,0.175,0.377,0.377,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0.0494,0,0.0494,0.297,0.523,0.108,1,0.334,0.246,0.334,0.334,0.575,0.575,0.15,0.188,0.333,1 +0.667,0.174,0.255,0.255,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0.0128,0,0.0128,0.257,0.523,0.127,1,0.324,0.229,0.324,0.324,0.829,0.829,0.119,0.149,0.333,1 +0.333,0.17,0.266,0.266,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0.0332,0,0.0332,0.26,0.523,0.143,1,0.334,0.246,0.334,0.334,0.87,0.87,0.0939,0.118,0,1 +0.333,0.164,0.277,0.277,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0,0,0.264,0.528,0.158,1,0.334,0.257,0.334,0.334,0.829,0.829,0.0876,0.11,0,1 +0,0.0495,0.266,0.266,0,0,0.831,0.831,0.831,0,0,0,0,0,0,0,0,0.00852,0.00852,0.258,0.465,0.167,1,0.324,0.235,0.324,0.324,0.822,0.822,0.0876,0.11,0,1 +0.333,0.159,0.31,0.31,0,0,0.831,0.831,0.831,0,0,0,0,0,0,0,0,0.00852,0.00852,0.275,0.533,0.189,1,0.324,0.212,0.324,0.324,0.616,0.616,0.0876,0.11,0,1 +0.333,0.159,0.344,0.344,0,0,0.831,0.831,0.831,0,0,0,0,0,0,0,0,0.00284,0.00284,0.286,0.528,0.2,1,0.324,0.274,0.324,0.324,0.514,0.514,0.15,0.188,0,1 +0.333,0.159,0.355,0.355,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0.00284,0.00284,0.29,0.538,0.224,1,0.334,0.33,0.334,0.334,0.418,0.418,0.363,0.455,0,1 +0.667,0.274,0.432,0.432,0,0.0122,0.87,0.87,0.87,0,0,0,0,0,0,0,0,0.00852,0.00852,0.374,0.63,0.279,1,0.455,0.615,0.455,0.455,0.253,0.253,0.789,0.989,0,1 +0.667,0.291,0.587,0.587,0,0.0244,0.949,0.949,0.949,0,0,0,0,0,0,0,0,0,0,0.477,0.67,0.343,1,0.577,0.9,0.577,0.577,0.158,0.158,0.764,0.958,0,1 +0.667,0.339,0.698,0.698,0,0,0.989,0.989,0.989,0.0113,0.0653,0,0,0,0,0,0,0,0,0.551,0.68,0.461,1,0.668,0.643,0.668,0.668,0.089,0.089,0.426,0.534,0,1 +1,0.619,0.742,0.742,0,0.0366,0.949,0.949,0.949,0.02,0.078,0,0,0,0,0,0,0.00852,0.00852,0.742,0.742,0.646,1,0.769,0.391,0.769,0.769,0.0548,0.0548,0.382,0.479,0,1 +0.667,0.538,0.787,0.787,0,0,0.93,0.93,0.93,0.0165,0,0,0,0,0,0,0,0.00568,0.00568,0.61,0.62,0.797,1,0.819,0.246,0.819,0.819,0.0274,0.0274,0.319,0.4,0,1 +0.667,0.603,0.765,0.765,0,0,0.91,0.91,0.91,0,0,0.0208,0.000702,0,0,0,0,0.00284,0.00284,0.596,0.6,0.756,1,0.87,0.106,0.87,0.87,0.0205,0.0205,0.269,0.338,0,1 +0.667,0.415,0.654,0.654,0,0,0.87,0.87,0.87,0,0,0.0275,0.0151,0.055,0.055,0,0,0.00284,0.00284,0.522,0.551,0.457,1,0.759,0.0726,0.759,0.759,0.0205,0.0205,0.15,0.188,0,1 +1,0.116,0.554,0.554,0,0,0.811,0.811,0.811,0,0,0,0,0.312,0.312,0,0,0.00284,0.00284,0.357,0.488,0.198,1,0.658,0.0391,0.658,0.658,0.0205,0.0205,0.15,0.188,0.667,1 +1,0.0495,0.443,0.443,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.465,0.0813,1,0.445,0.0224,0.445,0.445,0.0205,0.0205,0.15,0.188,1,1 +1,0.0495,0.41,0.41,0,0,0.771,0.771,0.771,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0395,1,0.233,0.00559,0.233,0.233,0.0205,0.0205,0.182,0.228,1,1 +1,0.0495,0.41,0.41,0,0,0.752,0.752,0.752,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0198,1,0.192,0.00559,0.192,0.192,0.0205,0.0205,0.15,0.188,1,1 +1,0.0495,0.399,0.399,0,0,0.732,0.732,0.732,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0154,1,0.152,0.0112,0.152,0.152,0.0274,0.0274,0.182,0.228,1,1 +1,0.0495,0.366,0.366,0,0,0.712,0.712,0.712,0,0,0,0,0,0,0,0.017,0,0.017,0.258,0.465,0.0242,1,0.162,0.0391,0.162,0.162,0.0548,0.0548,0.294,0.369,1,1 +1,0.0798,0.399,0.399,0,0,0.712,0.712,0.712,0,0,0,0,0,0,0,0.0195,0,0.0195,0.305,0.474,0.0395,1,0.182,0.0671,0.182,0.182,0.103,0.103,0.419,0.526,0.667,1 +1,0.143,0.477,0.477,0,0,0.752,0.752,0.752,0,0,0,0,0,0,0,0.0555,0,0.0555,0.331,0.493,0.0637,1,0.263,0.162,0.263,0.263,0.178,0.178,0.357,0.447,0.667,1 +1,0.295,0.521,0.521,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0.0165,0,0.0165,0.433,0.571,0.0879,1,0.334,0.257,0.334,0.334,0.301,0.301,0.15,0.188,0.333,1 +0.333,0.0495,0.377,0.377,0,0.0122,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.108,1,0.334,0.246,0.334,0.334,0.575,0.575,0.15,0.188,0.333,1 +0.333,0.174,0.255,0.255,0,0.0244,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0,0,0.257,0.523,0.127,1,0.324,0.229,0.324,0.324,0.829,0.829,0.119,0.149,0,1 +0.333,0.17,0.266,0.266,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0,0,0.26,0.523,0.143,1,0.334,0.246,0.334,0.334,0.87,0.87,0.0939,0.118,0,1 +0.333,0.164,0.277,0.277,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0.00254,0,0.00254,0.264,0.528,0.158,1,0.334,0.257,0.334,0.334,0.829,0.829,0.0876,0.11,0,1 +0.667,0.271,0.266,0.266,0,0,0.831,0.831,0.831,0,0,0,0,0,0,0,0.0326,0,0.0326,0.263,0.6,0.167,1,0.324,0.235,0.324,0.324,0.822,0.822,0.0876,0.11,0,1 +0.667,0.159,0.31,0.31,0,0,0.831,0.831,0.831,0,0,0,0,0,0,0,0,0.0114,0.0114,0.275,0.533,0.189,1,0.324,0.212,0.324,0.324,0.616,0.616,0.0876,0.11,0.333,1 +0.667,0.0495,0.344,0.344,0,0,0.831,0.831,0.831,0,0,0,0,0,0,0,0,0.00852,0.00852,0.258,0.465,0.2,1,0.324,0.274,0.324,0.324,0.514,0.514,0.15,0.188,0.667,1 +0.667,0.159,0.355,0.355,0,0.0122,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0.0114,0.0114,0.29,0.538,0.224,1,0.334,0.33,0.334,0.334,0.418,0.418,0.363,0.455,0.333,1 +0.667,0.274,0.432,0.432,0,0.0244,0.87,0.87,0.87,0,0,0,0,0,0,0,0,0.00284,0.00284,0.374,0.63,0.279,1,0.455,0.615,0.455,0.455,0.253,0.253,0.789,0.989,0,1 +1,0.412,0.587,0.587,0,0,0.949,0.949,0.949,0,0,0,0,0,0,0,0,0,0,0.587,0.772,0.343,1,0.577,0.9,0.577,0.577,0.158,0.158,0.764,0.958,0,1 +1,0.484,0.698,0.698,0,0,0.989,0.989,0.989,0.0102,0.0478,0.0559,0.00596,0,0,0,0,0,0,0.698,0.787,0.461,1,0.668,0.643,0.668,0.668,0.089,0.089,0.426,0.534,0,1 +1,0.619,0.742,0.742,0,0,0.949,0.949,0.949,0.00264,0,0.0261,0.0151,0.055,0.055,0,0,0.00568,0.00568,0.742,0.742,0.646,1,0.769,0.391,0.769,0.769,0.0548,0.0548,0.382,0.479,0,1 +1,0.783,0.787,0.787,0,0,0.93,0.93,0.93,0,0,0,0,0.312,0.312,0,0,0.00852,0.00852,0.787,0.698,0.797,1,0.819,0.246,0.819,0.819,0.0274,0.0274,0.319,0.4,0,1 +1,0.603,0.765,0.765,0,0,0.91,0.91,0.91,0,0,0,0,0,0,0,0,0.00284,0.00284,0.596,0.6,0.756,1,0.87,0.106,0.87,0.87,0.0205,0.0205,0.269,0.338,0.333,1 +1,0.415,0.654,0.654,0,0,0.87,0.87,0.87,0,0,0,0,0,0,0,0,0.017,0.017,0.522,0.551,0.457,1,0.759,0.0726,0.759,0.759,0.0205,0.0205,0.15,0.188,0.333,1 +1,0.183,0.554,0.554,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0.00265,0.0114,0.014,0.455,0.511,0.198,1,0.658,0.0391,0.658,0.658,0.0205,0.0205,0.15,0.188,0.333,1 +1,0.0743,0.443,0.443,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0.0531,0,0.0531,0.32,0.483,0.0966,1,0.445,0.0224,0.445,0.445,0.0205,0.0205,0.15,0.188,0.667,1 +1,0.0495,0.41,0.41,0,0,0.771,0.771,0.771,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0483,1,0.233,0.00559,0.233,0.233,0.0205,0.0205,0.182,0.228,1,1 +1,0.0495,0.41,0.41,0,0,0.752,0.752,0.752,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0264,1,0.192,0.00559,0.192,0.192,0.0205,0.0205,0.15,0.188,1,1 +1,0.0495,0.399,0.399,0,0,0.732,0.732,0.732,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0176,1,0.152,0.0112,0.152,0.152,0.0274,0.0274,0.182,0.228,1,1 +0.667,0.0495,0.366,0.366,0,0,0.712,0.712,0.712,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0242,1,0.162,0.0391,0.162,0.162,0.0548,0.0548,0.294,0.369,0.667,1 +0.667,0.0798,0.399,0.399,0,0.0731,0.712,0.712,0.712,0,0,0,0,0,0,0,0,0,0,0.305,0.474,0.0308,1,0.182,0.0671,0.182,0.182,0.103,0.103,0.419,0.526,0.333,1 +0.667,0.143,0.477,0.477,0,0,0.752,0.752,0.752,0,0,0,0,0,0,0,0,0,0,0.331,0.493,0.0527,1,0.263,0.162,0.263,0.263,0.178,0.178,0.357,0.447,0.333,1 +0.333,0.0495,0.521,0.521,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0944,1,0.334,0.257,0.334,0.334,0.301,0.301,0.15,0.188,0.333,1 +0.667,0.175,0.377,0.377,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0,0,0.297,0.523,0.156,1,0.334,0.246,0.334,0.334,0.575,0.575,0.15,0.188,0.333,1 +0.667,0.174,0.255,0.255,0,0,0.811,0.811,0.811,0.00303,0.0175,0,0,0,0,0,0,0.00284,0.00284,0.257,0.523,0.206,1,0.324,0.229,0.324,0.324,0.829,0.829,0.119,0.149,0.333,1 +0.667,0.17,0.266,0.266,0,0,0.791,0.791,0.791,0.0212,0.0955,0,0,0,0,0,0,0.00284,0.00284,0.26,0.523,0.246,1,0.334,0.246,0.334,0.334,0.87,0.87,0.0939,0.118,0.333,1 +0.667,0.164,0.277,0.277,0,0,0.791,0.791,0.791,0.00303,0.0716,0,0,0,0,0,0,0,0,0.264,0.528,0.27,1,0.334,0.257,0.334,0.334,0.829,0.829,0.0876,0.11,0.333,1 +0.667,0.16,0.266,0.266,0,0,0.831,0.831,0.831,0.0244,0.078,0,0,0,0,0,0,0.00852,0.00852,0.26,0.533,0.29,1,0.324,0.235,0.324,0.324,0.822,0.822,0.0876,0.11,0.333,1 +0.667,0.269,0.31,0.31,0,0,0.831,0.831,0.831,0.0202,0,0,0,0,0,0,0,0,0,0.293,0.6,0.343,1,0.324,0.212,0.324,0.324,0.616,0.616,0.0876,0.11,0,1 +0.667,0.268,0.344,0.344,0,0.0366,0.831,0.831,0.831,0.00595,0,0,0,0,0,0,0,0,0,0.315,0.591,0.391,1,0.324,0.274,0.324,0.324,0.514,0.514,0.15,0.188,0,1 +0.667,0.269,0.355,0.355,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0,0,0.322,0.61,0.431,1,0.334,0.33,0.334,0.334,0.418,0.418,0.363,0.455,0,1 +0.667,0.274,0.432,0.432,0,0,0.87,0.87,0.87,0,0,0,0,0,0,0,0.0125,0,0.0125,0.374,0.63,0.452,1,0.455,0.615,0.455,0.455,0.253,0.253,0.789,0.989,0,1 +0,0.0495,0.587,0.587,0,0.0122,0.949,0.949,0.949,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.468,1,0.577,0.9,0.577,0.577,0.158,0.158,0.764,0.958,0,1 +0.333,0.194,0.698,0.698,0,0.0244,0.989,0.989,0.989,0,0,0,0,0,0,0,0,0.0142,0.0142,0.405,0.572,0.551,1,0.668,0.643,0.668,0.668,0.089,0.089,0.426,0.534,0,1 +1,0.619,0.742,0.742,0,0,0.949,0.949,0.949,0,0,0,0,0,0,0,0,0.0142,0.0142,0.742,0.742,0.725,1,0.769,0.391,0.769,0.769,0.0548,0.0548,0.382,0.479,0,1 +1,0.783,0.787,0.787,0,0,0.93,0.93,0.93,0,0,0,0,0,0,0,0.00238,0.00852,0.0109,0.787,0.698,0.852,1,0.819,0.246,0.819,0.819,0.0274,0.0274,0.319,0.4,0,1 +1,0.88,0.765,0.765,0,0,0.91,0.91,0.91,0,0,0,0,0,0,0,0.0395,0.00852,0.048,0.765,0.668,0.786,1,0.87,0.106,0.87,0.87,0.0205,0.0205,0.269,0.338,0,1 +1,0.415,0.654,0.654,0,0,0.87,0.87,0.87,0,0,0,0,0,0,0,0,0.0114,0.0114,0.522,0.551,0.496,1,0.759,0.0726,0.759,0.759,0.0205,0.0205,0.15,0.188,0.333,1 +1,0.0495,0.554,0.554,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.226,1,0.658,0.0391,0.658,0.658,0.0205,0.0205,0.15,0.188,1,1 +1,0.0495,0.443,0.443,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0966,1,0.445,0.0224,0.445,0.445,0.0205,0.0205,0.15,0.188,1,1 +1,0.0495,0.41,0.41,0,0,0.771,0.771,0.771,0,0,0,0,0,0,0,0,0.00568,0.00568,0.258,0.465,0.0483,1,0.233,0.00559,0.233,0.233,0.0205,0.0205,0.182,0.228,1,1 +1,0.0495,0.41,0.41,0,0,0.752,0.752,0.752,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0264,1,0.192,0.00559,0.192,0.192,0.0205,0.0205,0.15,0.188,1,1 +1,0.0495,0.399,0.399,0,0,0.732,0.732,0.732,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0176,1,0.152,0.0112,0.152,0.152,0.0274,0.0274,0.182,0.228,1,1 +1,0.0495,0.366,0.366,0,0,0.712,0.712,0.712,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0242,1,0.162,0.0391,0.162,0.162,0.0548,0.0548,0.294,0.369,1,1 +1,0.0495,0.399,0.399,0,0,0.712,0.712,0.712,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0308,1,0.182,0.0671,0.182,0.182,0.103,0.103,0.419,0.526,1,1 +1,0.0495,0.477,0.477,0,0,0.752,0.752,0.752,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0527,1,0.263,0.162,0.263,0.263,0.178,0.178,0.357,0.447,1,1 +1,0.0495,0.521,0.521,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0944,1,0.334,0.257,0.334,0.334,0.301,0.301,0.15,0.188,1,1 +1,0.0495,0.377,0.377,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0.00228,0,0.00228,0.258,0.465,0.156,1,0.334,0.246,0.334,0.334,0.575,0.575,0.15,0.188,1,1 +1,0.299,0.255,0.255,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0.0117,0,0.0117,0.256,0.581,0.206,1,0.324,0.229,0.324,0.324,0.829,0.829,0.119,0.149,0.333,1 +1,0.411,0.266,0.266,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0.0568,0,0.0568,0.266,0.638,0.246,1,0.334,0.246,0.334,0.334,0.87,0.87,0.0939,0.118,0,1 +0.667,0.279,0.277,0.277,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0,0,0.271,0.591,0.27,1,0.334,0.257,0.334,0.334,0.829,0.829,0.0876,0.11,0,1 +0.667,0.271,0.266,0.266,0,0,0.831,0.831,0.831,0,0,0,0,0,0,0,0,0,0,0.263,0.6,0.29,1,0.324,0.235,0.324,0.324,0.822,0.822,0.0876,0.11,0,1 +0.667,0.269,0.31,0.31,0,0.0122,0.831,0.831,0.831,0,0,0,0,0,0,0,0,0.00284,0.00284,0.293,0.6,0.343,1,0.324,0.212,0.324,0.324,0.616,0.616,0.0876,0.11,0,1 +1,0.378,0.344,0.344,0,0.0244,0.831,0.831,0.831,0,0,0,0,0,0,0,0,0.00568,0.00568,0.344,0.653,0.391,1,0.324,0.274,0.324,0.324,0.514,0.514,0.15,0.188,0,1 +0.667,0.159,0.355,0.355,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0.017,0.017,0.29,0.538,0.431,1,0.334,0.33,0.334,0.334,0.418,0.418,0.363,0.455,0.333,1 +0.667,0.162,0.432,0.432,0,0,0.87,0.87,0.87,0,0,0,0,0,0,0,0,0,0,0.316,0.548,0.452,1,0.455,0.615,0.455,0.455,0.253,0.253,0.789,0.989,0.333,1 +0.667,0.17,0.587,0.587,0,0,0.949,0.949,0.949,0,0,0,0,0,0,0,0,0.00852,0.00852,0.368,0.568,0.468,1,0.577,0.9,0.577,0.577,0.158,0.158,0.764,0.958,0.333,1 +0.667,0.194,0.698,0.698,0,0,0.989,0.989,0.989,0,0,0,0,0,0,0,0,0.017,0.017,0.405,0.572,0.551,1,0.668,0.643,0.668,0.668,0.089,0.089,0.426,0.534,0.333,1 +0.667,0.239,0.742,0.742,0,0,0.949,0.949,0.949,0,0,0,0,0,0,0,0,0.0114,0.0114,0.419,0.558,0.725,1,0.769,0.391,0.769,0.769,0.0548,0.0548,0.382,0.479,0.333,1 +1,0.538,0.787,0.787,0,0,0.93,0.93,0.93,0,0,0.0331,0.000702,0,0,0,0,0,0,0.61,0.62,0.852,1,0.819,0.246,0.819,0.819,0.0274,0.0274,0.319,0.4,0.333,1 +1,0.603,0.765,0.765,0,0,0.91,0.91,0.91,0,0,0.014,0.0151,0.055,0.055,0,0.00237,0.00568,0.00805,0.596,0.6,0.786,1,0.87,0.106,0.87,0.87,0.0205,0.0205,0.269,0.338,0.333,1 +1,0.597,0.654,0.654,0,0,0.87,0.87,0.87,0,0,0,0,0.22,0.22,0,0.0259,0,0.0259,0.654,0.594,0.496,1,0.759,0.0726,0.759,0.759,0.0205,0.0205,0.15,0.188,0,1 +1,0.183,0.554,0.554,0,0.0853,0.811,0.811,0.811,0,0,0,0,0,0,0,0.0333,0.00568,0.039,0.455,0.511,0.226,1,0.658,0.0391,0.658,0.658,0.0205,0.0205,0.15,0.188,0.333,1 +1,0.099,0.443,0.443,0,0.146,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0,0,0.381,0.501,0.0813,1,0.445,0.0224,0.445,0.445,0.0205,0.0205,0.15,0.188,0.333,1 +1,0.0578,0.41,0.41,0,0.146,0.771,0.771,0.771,0,0,0,0,0,0,0,0,0,0,0.308,0.474,0.0395,1,0.233,0.00559,0.233,0.233,0.0205,0.0205,0.182,0.228,0.667,1 +1,0.0495,0.41,0.41,0,0.146,0.752,0.752,0.752,0,0,0,0,0,0,0,0,0,0,0.308,0.469,0.0198,1,0.192,0.00559,0.192,0.192,0.0205,0.0205,0.15,0.188,0.667,1 +1,0.0495,0.399,0.399,0,0.0244,0.732,0.732,0.732,0,0,0,0,0,0,0,0,0,0,0.305,0.464,0.0154,1,0.152,0.0112,0.152,0.152,0.0274,0.0274,0.182,0.228,0.667,1 +1,0.0495,0.366,0.366,0,0,0.712,0.712,0.712,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0242,1,0.162,0.0391,0.162,0.162,0.0548,0.0548,0.294,0.369,1,1 +1,0.0495,0.399,0.399,0,0,0.712,0.712,0.712,0,0,0,0,0,0,0,0.00261,0,0.00261,0.258,0.465,0.0395,1,0.182,0.0671,0.182,0.182,0.103,0.103,0.419,0.526,1,1 +1,0.236,0.477,0.477,0,0,0.752,0.752,0.752,0,0,0,0,0,0,0,0.0587,0,0.0587,0.404,0.521,0.0637,1,0.263,0.162,0.263,0.263,0.178,0.178,0.357,0.447,0.333,1 +0.667,0.172,0.521,0.521,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0.00568,0.00568,0.345,0.518,0.0879,1,0.334,0.257,0.334,0.334,0.301,0.301,0.15,0.188,0.333,1 +0.667,0.175,0.377,0.377,0,0.0853,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0,0,0.297,0.523,0.108,1,0.334,0.246,0.334,0.334,0.575,0.575,0.15,0.188,0.333,1 +0.333,0.174,0.255,0.255,0,0.146,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0,0,0.257,0.523,0.127,1,0.324,0.229,0.324,0.324,0.829,0.829,0.119,0.149,0,1 +0.333,0.17,0.266,0.266,0,0.146,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0,0,0.26,0.523,0.143,1,0.334,0.246,0.334,0.334,0.87,0.87,0.0939,0.118,0,1 +0.333,0.164,0.277,0.277,0,0.134,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0.0199,0.0199,0.264,0.528,0.158,1,0.334,0.257,0.334,0.334,0.829,0.829,0.0876,0.11,0,1 +0.333,0.16,0.266,0.266,0,0,0.831,0.831,0.831,0,0,0,0,0,0,0,0,0.0114,0.0114,0.26,0.533,0.167,1,0.324,0.235,0.324,0.324,0.822,0.822,0.0876,0.11,0,1 +0.333,0.159,0.31,0.31,0,0,0.831,0.831,0.831,0,0,0,0,0,0,0,0,0,0,0.275,0.533,0.189,1,0.324,0.212,0.324,0.324,0.616,0.616,0.0876,0.11,0,1 +0.333,0.159,0.344,0.344,0,0,0.831,0.831,0.831,0,0,0,0,0,0,0,0,0.0142,0.0142,0.286,0.528,0.2,1,0.324,0.274,0.324,0.324,0.514,0.514,0.15,0.188,0,1 +0.333,0.159,0.355,0.355,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0.00284,0.00284,0.29,0.538,0.224,1,0.334,0.33,0.334,0.334,0.418,0.418,0.363,0.455,0,1 +0.333,0.0495,0.432,0.432,0,0,0.87,0.87,0.87,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.465,0.279,1,0.455,0.615,0.455,0.455,0.253,0.253,0.789,0.989,0.333,1 +0.333,0.0495,0.587,0.587,0,0,0.949,0.949,0.949,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.343,1,0.577,0.9,0.577,0.577,0.158,0.158,0.764,0.958,0.333,1 +0.667,0.339,0.698,0.698,0,0.0853,0.989,0.989,0.989,0,0,0,0,0,0,0,0,0,0,0.551,0.68,0.461,1,0.668,0.643,0.668,0.668,0.089,0.089,0.426,0.534,0,1 +0.667,0.429,0.742,0.742,0,0.0609,0.949,0.949,0.949,0,0,0,0,0,0,0,0,0.00568,0.00568,0.581,0.65,0.646,1,0.769,0.391,0.769,0.769,0.0548,0.0548,0.382,0.479,0,1 +0.667,0.538,0.787,0.787,0,0,0.93,0.93,0.93,0,0,0,0,0,0,0,0,0,0,0.61,0.62,0.797,1,0.819,0.246,0.819,0.819,0.0274,0.0274,0.319,0.4,0,1 +1,0.603,0.765,0.765,0,0,0.91,0.91,0.91,0.0113,0.0478,0,0,0,0,0,0,0,0,0.596,0.6,0.756,1,0.87,0.106,0.87,0.87,0.0205,0.0205,0.269,0.338,0.333,1 +1,0.415,0.654,0.654,0,0,0.87,0.87,0.87,0.00814,0,0,0,0,0,0,0,0.0227,0.0227,0.522,0.551,0.457,1,0.759,0.0726,0.759,0.759,0.0205,0.0205,0.15,0.188,0.333,1 +1,0.0495,0.554,0.554,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.198,1,0.658,0.0391,0.658,0.658,0.0205,0.0205,0.15,0.188,1,1 +1,0.0495,0.445,0.445,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0806,1,0.446,0.0224,0.446,0.446,0.0206,0.0206,0.151,0.188,1,1 +1,0.0495,0.412,0.412,0,0,0.771,0.771,0.771,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0392,1,0.233,0.00561,0.233,0.233,0.0206,0.0206,0.183,0.228,1,1 +1,0.0495,0.412,0.412,0,0,0.752,0.752,0.752,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0196,1,0.193,0.00561,0.193,0.193,0.0206,0.0206,0.151,0.188,1,1 +1,0.0495,0.401,0.401,0,0,0.732,0.732,0.732,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0152,1,0.152,0.0112,0.152,0.152,0.0275,0.0275,0.183,0.228,1,1 +1,0.0503,0.367,0.367,0,0,0.712,0.712,0.712,0,0,0,0,0,0,0,0.0216,0,0.0216,0.294,0.469,0.024,1,0.162,0.0393,0.162,0.162,0.055,0.055,0.296,0.369,0.667,1 +0.667,0.0781,0.401,0.401,0,0,0.712,0.712,0.712,0,0,0,0,0,0,0,0,0,0,0.305,0.474,0.0392,1,0.183,0.0673,0.183,0.183,0.103,0.103,0.422,0.526,0.333,1 +0.667,0.139,0.478,0.478,0,0,0.752,0.752,0.752,0,0,0,0,0,0,0,0.0802,0,0.0802,0.331,0.494,0.0632,1,0.264,0.163,0.264,0.264,0.179,0.179,0.359,0.447,0.333,1 +1,0.402,0.523,0.523,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0.00268,0,0.00268,0.523,0.626,0.0871,1,0.335,0.258,0.335,0.335,0.302,0.302,0.151,0.188,0,1 +0.667,0.286,0.378,0.378,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0.0393,0.00852,0.0479,0.338,0.582,0.107,1,0.335,0.247,0.335,0.335,0.577,0.577,0.151,0.188,0,1 +0.667,0.278,0.256,0.256,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0,0,0.257,0.582,0.126,1,0.325,0.23,0.325,0.325,0.831,0.831,0.12,0.149,0,1 +0.667,0.27,0.267,0.267,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0.0138,0.0142,0.028,0.264,0.582,0.142,1,0.335,0.247,0.335,0.335,0.873,0.873,0.0945,0.118,0,1 +0.333,0.154,0.278,0.278,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0,0,0.265,0.529,0.157,1,0.335,0.258,0.335,0.335,0.831,0.831,0.0882,0.11,0,1 +0.333,0.15,0.267,0.267,0,0.0366,0.831,0.831,0.831,0,0,0,0,0,0,0,0,0.00284,0.00284,0.261,0.534,0.166,1,0.325,0.236,0.325,0.325,0.824,0.824,0.0882,0.11,0,1 +0.333,0.149,0.312,0.312,0,0,0.831,0.831,0.831,0,0,0.02,0,0,0,0,0,0.00568,0.00568,0.276,0.534,0.187,1,0.325,0.213,0.325,0.325,0.618,0.618,0.0882,0.11,0,1 +0.333,0.149,0.345,0.345,0,0,0.831,0.831,0.831,0,0,0.0297,0.0165,0,0,0,0,0,0,0.287,0.529,0.198,1,0.325,0.275,0.325,0.325,0.515,0.515,0.151,0.188,0,1 +0.333,0.149,0.356,0.356,0,0.0853,0.811,0.811,0.811,0,0,0,0.00456,0.238,0.238,0,0.0025,0,0.0025,0.29,0.539,0.222,1,0.335,0.331,0.335,0.335,0.419,0.419,0.365,0.455,0,1 +1,0.353,0.434,0.434,0,0.0731,0.87,0.87,0.87,0,0,0,0,0.128,0.128,0,0.02,0.00852,0.0285,0.434,0.715,0.277,1,0.457,0.617,0.457,0.457,0.254,0.254,0.794,0.989,0,1 +1,0.371,0.59,0.59,0,0.0244,0.949,0.949,0.949,0,0,0,0,0,0,0,0,0.00284,0.00284,0.59,0.775,0.34,1,0.578,0.903,0.578,0.578,0.158,0.158,0.769,0.958,0,1 +1,0.42,0.701,0.701,0,0,0.989,0.989,0.989,0,0,0,0,0,0,0,0,0.00284,0.00284,0.701,0.79,0.457,1,0.67,0.645,0.67,0.67,0.0893,0.0893,0.428,0.534,0,1 +0.667,0.365,0.745,0.745,0,0,0.949,0.949,0.949,0,0,0.0129,0,0,0,0.0404,0,0.0142,0.0546,0.583,0.652,0.64,1,0.771,0.393,0.771,0.771,0.055,0.055,0.384,0.479,0,1 +1,0.464,0.79,0.79,0,0,0.93,0.93,0.93,0,0,0,0.0158,0,0,0,0.0174,0,0.0174,0.613,0.622,0.791,1,0.822,0.247,0.822,0.822,0.0275,0.0275,0.321,0.4,0.333,1 +1,0.549,0.768,0.768,0,0,0.91,0.91,0.91,0,0,0,0,0.33,0.33,0,0.00217,0.0114,0.0135,0.598,0.602,0.749,1,0.873,0.107,0.873,0.873,0.0206,0.0206,0.271,0.338,0.333,1 +1,0.227,0.656,0.656,0,0,0.87,0.87,0.87,0,0,0,0,0.0367,0.0367,0,0.0223,0.00284,0.0251,0.391,0.509,0.453,1,0.761,0.0729,0.761,0.761,0.0206,0.0206,0.151,0.188,0.667,1 +1,0.0495,0.556,0.556,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.196,1,0.659,0.0393,0.659,0.659,0.0206,0.0206,0.151,0.188,1,1 +1,0.0495,0.445,0.445,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0.0142,0.0142,0.258,0.465,0.0806,1,0.446,0.0224,0.446,0.446,0.0206,0.0206,0.151,0.188,1,1 +1,0.0495,0.412,0.412,0,0,0.771,0.771,0.771,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0392,1,0.233,0.00561,0.233,0.233,0.0206,0.0206,0.183,0.228,1,1 +1,0.0495,0.412,0.412,0,0,0.752,0.752,0.752,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0196,1,0.193,0.00561,0.193,0.193,0.0206,0.0206,0.151,0.188,1,1 +1,0.0495,0.401,0.401,0,0,0.732,0.732,0.732,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0152,1,0.152,0.0112,0.152,0.152,0.0275,0.0275,0.183,0.228,1,1 +1,0.0495,0.367,0.367,0,0,0.712,0.712,0.712,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.024,1,0.162,0.0393,0.162,0.162,0.055,0.055,0.296,0.369,1,1 +1,0.0495,0.401,0.401,0,0,0.712,0.712,0.712,0,0,0,0,0,0,0,0.0053,0,0.0053,0.258,0.465,0.0392,1,0.183,0.0673,0.183,0.183,0.103,0.103,0.422,0.526,1,1 +1,0.228,0.478,0.478,0,0,0.752,0.752,0.752,0,0,0,0,0,0,0,0.102,0,0.102,0.405,0.523,0.0632,1,0.264,0.163,0.264,0.264,0.179,0.179,0.359,0.447,0.333,1 +1,0.284,0.523,0.523,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0.0247,0,0.0247,0.435,0.572,0.0871,1,0.335,0.258,0.335,0.335,0.302,0.302,0.151,0.188,0.333,1 +0.667,0.168,0.378,0.378,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0.0219,0,0.0219,0.298,0.524,0.107,1,0.335,0.247,0.335,0.335,0.577,0.577,0.151,0.188,0.333,1 +0.667,0.278,0.256,0.256,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0.0388,0,0.0388,0.257,0.582,0.126,1,0.325,0.23,0.325,0.325,0.831,0.831,0.12,0.149,0,1 +0.667,0.27,0.267,0.267,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0.0134,0.0114,0.0247,0.264,0.582,0.142,1,0.335,0.247,0.335,0.335,0.873,0.873,0.0945,0.118,0,1 +0.667,0.259,0.278,0.278,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0.0183,0.00284,0.0211,0.271,0.592,0.157,1,0.335,0.258,0.335,0.335,0.831,0.831,0.0882,0.11,0,1 +0.333,0.15,0.267,0.267,0,0,0.831,0.831,0.831,0,0,0,0,0,0,0,0,0.00852,0.00852,0.261,0.534,0.166,1,0.325,0.236,0.325,0.325,0.824,0.824,0.0882,0.11,0,1 +0.333,0.0495,0.312,0.312,0,0,0.831,0.831,0.831,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.465,0.187,1,0.325,0.213,0.325,0.325,0.618,0.618,0.0882,0.11,0.333,1 +0.333,0.0495,0.345,0.345,0,0,0.831,0.831,0.831,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.198,1,0.325,0.275,0.325,0.325,0.515,0.515,0.151,0.188,0.333,1 +0.333,0.149,0.356,0.356,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0.00284,0.00284,0.29,0.539,0.222,1,0.335,0.331,0.335,0.335,0.419,0.419,0.365,0.455,0,1 +0.667,0.252,0.434,0.434,0,0,0.87,0.87,0.87,0,0,0,0,0,0,0,0,0.00568,0.00568,0.375,0.632,0.277,1,0.457,0.617,0.457,0.457,0.254,0.254,0.794,0.989,0,1 +1,0.371,0.59,0.59,0,0.0853,0.949,0.949,0.949,0,0,0,0,0,0,0,0,0,0,0.59,0.775,0.34,1,0.578,0.903,0.578,0.578,0.158,0.158,0.769,0.958,0,1 +1,0.42,0.701,0.701,0,0.0609,0.989,0.989,0.989,0,0,0,0,0,0,0,0,0,0,0.701,0.79,0.457,1,0.67,0.645,0.67,0.67,0.0893,0.0893,0.428,0.534,0,1 +1,0.523,0.745,0.745,0,0,0.949,0.949,0.949,0,0,0,0,0,0,0,0,0.0312,0.0312,0.745,0.745,0.64,1,0.771,0.393,0.771,0.771,0.055,0.055,0.384,0.479,0,1 +1,0.671,0.79,0.79,0,0,0.93,0.93,0.93,0,0,0,0,0,0,0,0,0.0114,0.0114,0.79,0.701,0.791,1,0.822,0.247,0.822,0.822,0.0275,0.0275,0.321,0.4,0,1 +1,0.549,0.768,0.768,0,0,0.91,0.91,0.91,0,0,0,0,0,0,0,0.00274,0.00852,0.0113,0.598,0.602,0.749,1,0.873,0.107,0.873,0.873,0.0206,0.0206,0.271,0.338,0.333,1 +1,0.405,0.656,0.656,0,0,0.87,0.87,0.87,0,0,0,0,0,0,0,0.0192,0,0.0192,0.524,0.553,0.453,1,0.761,0.0729,0.761,0.761,0.0206,0.0206,0.151,0.188,0.333,1 +1,0.0495,0.556,0.556,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0.017,0.017,0.258,0.465,0.196,1,0.659,0.0393,0.659,0.659,0.0206,0.0206,0.151,0.188,1,1 +1,0.0495,0.445,0.445,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0806,1,0.446,0.0224,0.446,0.446,0.0206,0.0206,0.151,0.188,1,1 +1,0.0495,0.412,0.412,0,0,0.771,0.771,0.771,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0392,1,0.233,0.00561,0.233,0.233,0.0206,0.0206,0.183,0.228,1,1 +1,0.0495,0.412,0.412,0,0,0.752,0.752,0.752,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0196,1,0.193,0.00561,0.193,0.193,0.0206,0.0206,0.151,0.188,1,1 +1,0.0495,0.401,0.401,0,0,0.732,0.732,0.732,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0152,1,0.152,0.0112,0.152,0.152,0.0275,0.0275,0.183,0.228,1,1 +1,0.0495,0.367,0.367,0,0,0.712,0.712,0.712,0,0,0,0,0,0,0,0.00254,0,0.00254,0.258,0.465,0.024,1,0.162,0.0393,0.162,0.162,0.055,0.055,0.296,0.369,1,1 +1,0.0781,0.401,0.401,0,0,0.712,0.712,0.712,0,0,0,0,0,0,0,0.0268,0,0.0268,0.305,0.474,0.0392,1,0.183,0.0673,0.183,0.183,0.103,0.103,0.422,0.526,0.667,1 +1,0.228,0.478,0.478,0,0,0.752,0.752,0.752,0,0,0,0,0,0,0,0.0515,0,0.0515,0.405,0.523,0.0632,1,0.264,0.163,0.264,0.264,0.179,0.179,0.359,0.447,0.333,1 +1,0.402,0.523,0.523,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0.062,0,0.062,0.523,0.626,0.0871,1,0.335,0.258,0.335,0.335,0.302,0.302,0.151,0.188,0,1 +0.333,0.168,0.378,0.378,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0,0,0.298,0.524,0.107,1,0.335,0.247,0.335,0.335,0.577,0.577,0.151,0.188,0,1 +0.333,0.164,0.256,0.256,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0.00568,0.00568,0.257,0.524,0.126,1,0.325,0.23,0.325,0.325,0.831,0.831,0.12,0.149,0,1 +0.333,0.16,0.267,0.267,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0.00284,0.00284,0.261,0.524,0.142,1,0.335,0.247,0.335,0.335,0.873,0.873,0.0945,0.118,0,1 +0.333,0.154,0.278,0.278,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0.0114,0.0114,0.265,0.529,0.157,1,0.335,0.258,0.335,0.335,0.831,0.831,0.0882,0.11,0,1 +0.667,0.15,0.267,0.267,0,0,0.831,0.831,0.831,0,0,0,0,0,0,0,0,0.0114,0.0114,0.261,0.534,0.166,1,0.325,0.236,0.325,0.325,0.824,0.824,0.0882,0.11,0.333,1 +0.333,0.0495,0.312,0.312,0,0,0.831,0.831,0.831,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.465,0.187,1,0.325,0.213,0.325,0.325,0.618,0.618,0.0882,0.11,0.333,1 +0.333,0.0495,0.345,0.345,0,0,0.831,0.831,0.831,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.198,1,0.325,0.275,0.325,0.325,0.515,0.515,0.151,0.188,0.333,1 +0.333,0.0495,0.356,0.356,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.465,0.222,1,0.335,0.331,0.335,0.335,0.419,0.419,0.365,0.455,0.333,1 +0.667,0.252,0.434,0.434,0,0,0.87,0.87,0.87,0,0,0,0,0,0,0,0,0.00568,0.00568,0.375,0.632,0.277,1,0.457,0.617,0.457,0.457,0.254,0.254,0.794,0.989,0,1 +0.667,0.264,0.59,0.59,0,0.0122,0.949,0.949,0.949,0,0,0,0,0,0,0,0,0,0,0.479,0.672,0.34,1,0.578,0.903,0.578,0.578,0.158,0.158,0.769,0.958,0,1 +1,0.296,0.701,0.701,0,0.0244,0.989,0.989,0.989,0,0,0,0,0,0,0,0,0,0,0.553,0.682,0.457,1,0.67,0.645,0.67,0.67,0.0893,0.0893,0.428,0.534,0.333,1 +1,0.365,0.745,0.745,0,0,0.949,0.949,0.949,0,0,0,0,0,0,0,0.0217,0,0.0217,0.583,0.652,0.64,1,0.771,0.393,0.771,0.771,0.055,0.055,0.384,0.479,0.333,1 +1,0.464,0.79,0.79,0,0,0.93,0.93,0.93,0.0213,0.0478,0,0,0,0,0,0.0371,0.00568,0.0428,0.613,0.622,0.791,1,0.822,0.247,0.822,0.822,0.0275,0.0275,0.321,0.4,0.333,1 +1,0.299,0.768,0.768,0,0,0.91,0.91,0.91,0.00534,0,0,0,0,0,0,0,0,0,0.428,0.534,0.749,1,0.873,0.107,0.873,0.873,0.0206,0.0206,0.271,0.338,0.667,1 +1,0.227,0.656,0.656,0,0,0.87,0.87,0.87,0,0,0,0,0,0,0,0,0.00284,0.00284,0.391,0.509,0.453,1,0.761,0.0729,0.761,0.761,0.0206,0.0206,0.151,0.188,0.667,1 +1,0.0495,0.556,0.556,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0.00568,0.00568,0.258,0.465,0.196,1,0.659,0.0393,0.659,0.659,0.0206,0.0206,0.151,0.188,1,1 +1,0.0495,0.445,0.445,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.465,0.0806,1,0.446,0.0224,0.446,0.446,0.0206,0.0206,0.151,0.188,1,1 +1,0.0495,0.412,0.412,0,0,0.771,0.771,0.771,0,0,0,0,0,0,0,0,0.00852,0.00852,0.258,0.465,0.0392,1,0.233,0.00561,0.233,0.233,0.0206,0.0206,0.183,0.228,1,1 +1,0.0495,0.412,0.412,0,0,0.752,0.752,0.752,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0196,1,0.193,0.00561,0.193,0.193,0.0206,0.0206,0.151,0.188,1,1 +1,0.0495,0.401,0.401,0,0,0.732,0.732,0.732,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0152,1,0.152,0.0112,0.152,0.152,0.0275,0.0275,0.183,0.228,1,1 +1,0.0495,0.367,0.367,0,0,0.712,0.712,0.712,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.024,1,0.162,0.0393,0.162,0.162,0.055,0.055,0.296,0.369,1,1 +1,0.0495,0.401,0.401,0,0,0.712,0.712,0.712,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0392,1,0.183,0.0673,0.183,0.183,0.103,0.103,0.422,0.526,1,1 +1,0.0495,0.478,0.478,0,0,0.752,0.752,0.752,0,0,0,0,0,0,0,0.00236,0,0.00236,0.258,0.465,0.0632,1,0.264,0.163,0.264,0.264,0.179,0.179,0.359,0.447,1,1 +1,0.167,0.523,0.523,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0.0532,0.0382,0,0.0913,0.346,0.519,0.0871,1,0.335,0.258,0.335,0.335,0.302,0.302,0.151,0.188,0.667,1 +0.667,0.168,0.378,0.378,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0.0221,0,0.0221,0.298,0.524,0.107,1,0.335,0.247,0.335,0.335,0.577,0.577,0.151,0.188,0.333,1 +0.333,0.164,0.256,0.256,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0.00273,0,0.00273,0.257,0.524,0.126,1,0.325,0.23,0.325,0.325,0.831,0.831,0.12,0.149,0,1 +0.333,0.16,0.267,0.267,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0.0629,0,0.0629,0.261,0.524,0.142,1,0.335,0.247,0.335,0.335,0.873,0.873,0.0945,0.118,0,1 +0.333,0.154,0.278,0.278,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0.00852,0.00852,0.265,0.529,0.157,1,0.335,0.258,0.335,0.335,0.831,0.831,0.0882,0.11,0,1 +0.333,0.15,0.267,0.267,0,0,0.831,0.831,0.831,0,0,0,0,0,0,0,0,0.0114,0.0114,0.261,0.534,0.166,1,0.325,0.236,0.325,0.325,0.824,0.824,0.0882,0.11,0,1 +0.333,0.149,0.312,0.312,0,0,0.831,0.831,0.831,0,0,0,0,0,0,0,0,0.00284,0.00284,0.276,0.534,0.187,1,0.325,0.213,0.325,0.325,0.618,0.618,0.0882,0.11,0,1 +0.333,0.149,0.345,0.345,0,0,0.831,0.831,0.831,0.016,0.0239,0,0,0,0,0,0,0.00284,0.00284,0.287,0.529,0.198,1,0.325,0.275,0.325,0.325,0.515,0.515,0.151,0.188,0,1 +0.333,0.149,0.356,0.356,0,0,0.811,0.811,0.811,0.00764,0,0,0,0,0,0,0,0.0142,0.0142,0.29,0.539,0.222,1,0.335,0.331,0.335,0.335,0.419,0.419,0.365,0.455,0,1 +0.667,0.252,0.434,0.434,0,0.0122,0.87,0.87,0.87,0,0,0,0,0,0,0,0,0,0,0.375,0.632,0.277,1,0.457,0.617,0.457,0.457,0.254,0.254,0.794,0.989,0,1 +1,0.371,0.59,0.59,0,0.0244,0.949,0.949,0.949,0,0,0,0,0,0,0,0,0.0114,0.0114,0.59,0.775,0.34,1,0.578,0.903,0.578,0.578,0.158,0.158,0.769,0.958,0,1 +1,0.42,0.701,0.701,0,0,0.989,0.989,0.989,0.0107,0.0653,0,0,0,0,0,0,0.0142,0.0142,0.701,0.79,0.457,1,0.67,0.645,0.67,0.67,0.0893,0.0893,0.428,0.534,0,1 +1,0.523,0.745,0.745,0,0,0.949,0.949,0.949,0.0195,0.0302,0,0,0,0,0,0,0.0227,0.0227,0.745,0.745,0.64,1,0.771,0.393,0.771,0.771,0.055,0.055,0.384,0.479,0,1 +1,0.671,0.79,0.79,0,0,0.93,0.93,0.93,0.018,0,0,0,0,0,0,0.0214,0.00568,0.0271,0.79,0.701,0.791,1,0.822,0.247,0.822,0.822,0.0275,0.0275,0.321,0.4,0,1 +1,0.799,0.768,0.768,0,0,0.91,0.91,0.91,0.0203,0,0,0,0,0,0,0,0.0199,0.0199,0.768,0.671,0.749,1,0.873,0.107,0.873,0.873,0.0206,0.0206,0.271,0.338,0,1 +1,0.227,0.656,0.656,0,0,0.87,0.87,0.87,0,0,0,0,0,0,0,0,0.00284,0.00284,0.391,0.509,0.453,1,0.761,0.0729,0.761,0.761,0.0206,0.0206,0.151,0.188,0.667,1 +1,0.116,0.556,0.556,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0,0,0.357,0.489,0.196,1,0.659,0.0393,0.659,0.659,0.0206,0.0206,0.151,0.188,0.667,1 +1,0.0743,0.445,0.445,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0,0,0.32,0.484,0.0958,1,0.446,0.0224,0.446,0.446,0.0206,0.0206,0.151,0.188,0.667,1 +1,0.0578,0.412,0.412,0,0,0.771,0.771,0.771,0,0,0,0,0,0,0.071,0.035,0,0.106,0.309,0.474,0.0479,1,0.233,0.00561,0.233,0.233,0.0206,0.0206,0.183,0.228,0.667,1 +1,0.0495,0.412,0.412,0,0,0.752,0.752,0.752,0,0,0,0,0,0,0,0.0274,0,0.0274,0.309,0.469,0.0261,1,0.193,0.00561,0.193,0.193,0.0206,0.0206,0.151,0.188,0.667,1 +1,0.0495,0.401,0.401,0,0,0.732,0.732,0.732,0,0,0,0,0,0,0,0.022,0,0.022,0.305,0.464,0.0174,1,0.152,0.0112,0.152,0.152,0.0275,0.0275,0.183,0.228,0.667,1 +1,0.0495,0.367,0.367,0,0,0.712,0.712,0.712,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.024,1,0.162,0.0393,0.162,0.162,0.055,0.055,0.296,0.369,1,1 +1,0.0495,0.401,0.401,0,0,0.712,0.712,0.712,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0305,1,0.183,0.0673,0.183,0.183,0.103,0.103,0.422,0.526,1,1 +1,0.0495,0.478,0.478,0,0,0.752,0.752,0.752,0,0,0,0,0,0,0,0,0.0114,0.0114,0.258,0.465,0.0523,1,0.264,0.163,0.264,0.264,0.179,0.179,0.359,0.447,1,1 +1,0.0495,0.523,0.523,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0937,1,0.335,0.258,0.335,0.335,0.302,0.302,0.151,0.188,1,1 +1,0.0495,0.378,0.378,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0.00271,0,0.00271,0.258,0.465,0.155,1,0.335,0.247,0.335,0.335,0.577,0.577,0.151,0.188,1,1 +0.667,0.278,0.256,0.256,0,0,0.811,0.811,0.811,0.00595,0.0175,0,0,0,0,0,0.0414,0,0.0414,0.257,0.582,0.205,1,0.325,0.23,0.325,0.325,0.831,0.831,0.12,0.149,0,1 +1,0.381,0.267,0.267,0,0,0.791,0.791,0.791,0.0168,0.078,0,0,0,0,0,0.0241,0,0.0241,0.267,0.641,0.244,1,0.335,0.247,0.335,0.335,0.873,0.873,0.0945,0.118,0,1 +1,0.364,0.278,0.278,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0.0251,0,0.0251,0.278,0.656,0.268,1,0.335,0.258,0.335,0.335,0.831,0.831,0.0882,0.11,0,1 +0.667,0.251,0.267,0.267,0,0,0.831,0.831,0.831,0,0,0,0,0,0,0,0.0185,0,0.0185,0.264,0.602,0.288,1,0.325,0.236,0.325,0.325,0.824,0.824,0.0882,0.11,0,1 +0.667,0.249,0.312,0.312,0,0,0.831,0.831,0.831,0,0,0,0,0,0,0,0,0.00568,0.00568,0.294,0.602,0.34,1,0.325,0.213,0.325,0.325,0.618,0.618,0.0882,0.11,0,1 +0.667,0.249,0.345,0.345,0,0,0.831,0.831,0.831,0,0,0,0,0,0,0,0,0.00852,0.00852,0.316,0.592,0.388,1,0.325,0.275,0.325,0.325,0.515,0.515,0.151,0.188,0,1 +0.667,0.249,0.356,0.356,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0,0,0.323,0.612,0.427,1,0.335,0.331,0.335,0.335,0.419,0.419,0.365,0.455,0,1 +0.667,0.252,0.434,0.434,0,0.0487,0.87,0.87,0.87,0,0,0,0,0,0,0,0,0.00284,0.00284,0.375,0.632,0.449,1,0.457,0.617,0.457,0.457,0.254,0.254,0.794,0.989,0,1 +1,0.371,0.59,0.59,0,0.0244,0.949,0.949,0.949,0,0,0,0,0,0,0,0,0.00284,0.00284,0.59,0.775,0.464,1,0.578,0.903,0.578,0.578,0.158,0.158,0.769,0.958,0,1 +1,0.42,0.701,0.701,0,0,0.989,0.989,0.989,0,0,0,0,0,0,0,0,0.0199,0.0199,0.701,0.79,0.547,1,0.67,0.645,0.67,0.67,0.0893,0.0893,0.428,0.534,0,1 +1,0.523,0.745,0.745,0,0,0.949,0.949,0.949,0,0,0,0,0,0,0,0.0244,0.00284,0.0272,0.745,0.745,0.719,1,0.771,0.393,0.771,0.771,0.055,0.055,0.384,0.479,0,1 +1,0.464,0.79,0.79,0,0,0.93,0.93,0.93,0,0,0,0,0,0,0,0,0.00284,0.00284,0.613,0.622,0.845,1,0.822,0.247,0.822,0.822,0.0275,0.0275,0.321,0.4,0.333,1 +1,0.549,0.768,0.768,0,0,0.91,0.91,0.91,0,0,0,0,0,0,0,0,0.00284,0.00284,0.598,0.602,0.78,1,0.873,0.107,0.873,0.873,0.0206,0.0206,0.271,0.338,0.333,1 +1,0.405,0.656,0.656,0,0,0.87,0.87,0.87,0,0,0,0,0,0,0,0.0508,0,0.0508,0.524,0.553,0.492,1,0.761,0.0729,0.761,0.761,0.0206,0.0206,0.151,0.188,0.333,1 +1,0.183,0.556,0.556,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0.00852,0.00852,0.457,0.513,0.224,1,0.659,0.0393,0.659,0.659,0.0206,0.0206,0.151,0.188,0.333,1 +1,0.0495,0.445,0.445,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0958,1,0.446,0.0224,0.446,0.446,0.0206,0.0206,0.151,0.188,1,1 +1,0.0495,0.412,0.412,0,0,0.771,0.771,0.771,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0479,1,0.233,0.00561,0.233,0.233,0.0206,0.0206,0.183,0.228,1,1 +1,0.0495,0.412,0.412,0,0,0.752,0.752,0.752,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0261,1,0.193,0.00561,0.193,0.193,0.0206,0.0206,0.151,0.188,1,1 +1,0.0495,0.401,0.401,0,0,0.732,0.732,0.732,0,0,0,0,0,0,0,0,0.0142,0.0142,0.258,0.465,0.0174,1,0.152,0.0112,0.152,0.152,0.0275,0.0275,0.183,0.228,1,1 +1,0.0495,0.367,0.367,0,0,0.712,0.712,0.712,0,0,0,0,0,0,0,0.00269,0,0.00269,0.258,0.465,0.024,1,0.162,0.0393,0.162,0.162,0.055,0.055,0.296,0.369,1,1 +1,0.0781,0.401,0.401,0,0,0.712,0.712,0.712,0,0,0,0,0,0,0,0.0134,0,0.0134,0.305,0.474,0.0305,1,0.183,0.0673,0.183,0.183,0.103,0.103,0.422,0.526,0.667,1 +0.667,0.0495,0.478,0.478,0,0,0.752,0.752,0.752,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0523,1,0.264,0.163,0.264,0.264,0.179,0.179,0.359,0.447,0.667,1 +0.667,0.0495,0.523,0.523,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0937,1,0.335,0.258,0.335,0.335,0.302,0.302,0.151,0.188,0.667,1 +0.667,0.0495,0.378,0.378,0,0.0122,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.155,1,0.335,0.247,0.335,0.335,0.577,0.577,0.151,0.188,0.667,1 +0.667,0.164,0.256,0.256,0,0.0244,0.811,0.811,0.811,0,0,0,0,0,0,0,0.0301,0,0.0301,0.257,0.524,0.205,1,0.325,0.23,0.325,0.325,0.831,0.831,0.12,0.149,0.333,1 +0.333,0.16,0.267,0.267,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0.0418,0,0.0418,0.261,0.524,0.244,1,0.335,0.247,0.335,0.335,0.873,0.873,0.0945,0.118,0,1 +0.667,0.259,0.278,0.278,0,0,0.791,0.791,0.791,0,0,0.0197,0.00596,0,0,0,0.0319,0,0.0319,0.271,0.592,0.268,1,0.335,0.258,0.335,0.335,0.831,0.831,0.0882,0.11,0,1 +0.333,0.15,0.267,0.267,0,0,0.831,0.831,0.831,0,0,0.029,0.00982,0.147,0.147,0,0,0.00284,0.00284,0.261,0.534,0.288,1,0.325,0.236,0.325,0.325,0.824,0.824,0.0882,0.11,0,1 +0.667,0.149,0.312,0.312,0,0,0.831,0.831,0.831,0,0,0.0488,0,0.22,0.22,0,0,0.00284,0.00284,0.276,0.534,0.34,1,0.325,0.213,0.325,0.325,0.618,0.618,0.0882,0.11,0.333,1 +0.667,0.149,0.345,0.345,0,0,0.831,0.831,0.831,0,0,0.00424,0,0,0,0,0,0.00568,0.00568,0.287,0.529,0.388,1,0.325,0.275,0.325,0.325,0.515,0.515,0.151,0.188,0.333,1 +0.667,0.149,0.356,0.356,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0.0229,0.00568,0.0285,0.29,0.539,0.427,1,0.335,0.331,0.335,0.335,0.419,0.419,0.365,0.455,0.333,1 +0.667,0.252,0.434,0.434,0,0,0.87,0.87,0.87,0.0157,0.0478,0,0,0,0,0,0.0133,0.00568,0.019,0.375,0.632,0.449,1,0.457,0.617,0.457,0.457,0.254,0.254,0.794,0.989,0,1 +0.667,0.264,0.59,0.59,0,0.0122,0.949,0.949,0.949,0,0,0.00419,0.000702,0,0,0.0742,0.0248,0.0312,0.13,0.479,0.672,0.464,1,0.578,0.903,0.578,0.578,0.158,0.158,0.769,0.958,0,1 +0.667,0.296,0.701,0.701,0,0.0244,0.989,0.989,0.989,0,0,0,0.00982,0.147,0.147,0,0.0351,0.00284,0.038,0.553,0.682,0.547,1,0.67,0.645,0.67,0.67,0.0893,0.0893,0.428,0.534,0,1 +0.667,0.365,0.745,0.745,0,0,0.949,0.949,0.949,0,0,0,0,0.22,0.22,0,0,0.00284,0.00284,0.583,0.652,0.719,1,0.771,0.393,0.771,0.771,0.055,0.055,0.384,0.479,0,1 +0.667,0.464,0.79,0.79,0,0,0.93,0.93,0.93,0,0,0,0,0,0,0,0,0.0142,0.0142,0.613,0.622,0.845,1,0.822,0.247,0.822,0.822,0.0275,0.0275,0.321,0.4,0,1 +0.333,0.299,0.768,0.768,0,0,0.91,0.91,0.91,0,0,0,0,0,0,0,0,0,0,0.428,0.534,0.78,1,0.873,0.107,0.873,0.873,0.0206,0.0206,0.271,0.338,0,1 +0.333,0.0495,0.656,0.656,0,0,0.87,0.87,0.87,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.492,1,0.761,0.0729,0.761,0.761,0.0206,0.0206,0.151,0.188,0.333,1 +0.667,0.116,0.556,0.556,0,0.0366,0.811,0.811,0.811,0,0,0,0,0,0,0,0.043,0,0.043,0.357,0.489,0.224,1,0.659,0.0393,0.659,0.659,0.0206,0.0206,0.151,0.188,0.333,1 +0.667,0.0495,0.445,0.445,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0.00988,0,0.00988,0.258,0.465,0.0806,1,0.446,0.0224,0.446,0.446,0.0206,0.0206,0.151,0.188,0.667,1 +0.667,0.0495,0.412,0.412,0,0,0.771,0.771,0.771,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0392,1,0.233,0.00561,0.233,0.233,0.0206,0.0206,0.183,0.228,0.667,1 +0.667,0.0495,0.412,0.412,0,0,0.752,0.752,0.752,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0196,1,0.193,0.00561,0.193,0.193,0.0206,0.0206,0.151,0.188,0.667,1 +0.667,0.0495,0.401,0.401,0,0,0.732,0.732,0.732,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0152,1,0.152,0.0112,0.152,0.152,0.0275,0.0275,0.183,0.228,0.667,1 +1,0.0495,0.367,0.367,0,0,0.712,0.712,0.712,0,0,0,0,0,0,0,0.00274,0,0.00274,0.258,0.465,0.024,1,0.162,0.0393,0.162,0.162,0.055,0.055,0.296,0.369,1,1 +1,0.0781,0.401,0.401,0,0,0.712,0.712,0.712,0,0,0,0,0,0,0,0.0464,0,0.0464,0.305,0.474,0.0392,1,0.183,0.0673,0.183,0.183,0.103,0.103,0.422,0.526,0.667,1 +0.667,0.228,0.478,0.478,0,0.0487,0.752,0.752,0.752,0,0,0,0,0,0,0,0.0458,0,0.0458,0.405,0.523,0.0632,1,0.264,0.163,0.264,0.264,0.179,0.179,0.359,0.447,0,1 +0.667,0.284,0.523,0.523,0,0.0244,0.791,0.791,0.791,0,0,0,0,0,0,0,0.00869,0,0.00869,0.435,0.572,0.0871,1,0.335,0.258,0.335,0.335,0.302,0.302,0.151,0.188,0,1 +0.667,0.286,0.378,0.378,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0,0,0.338,0.582,0.107,1,0.335,0.247,0.335,0.335,0.577,0.577,0.151,0.188,0,1 +0.667,0.278,0.256,0.256,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0.00284,0.00284,0.257,0.582,0.126,1,0.325,0.23,0.325,0.325,0.831,0.831,0.12,0.149,0,1 +0.333,0.16,0.267,0.267,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0.00284,0.00284,0.261,0.524,0.142,1,0.335,0.247,0.335,0.335,0.873,0.873,0.0945,0.118,0,1 +0.333,0.154,0.278,0.278,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0.00284,0.00284,0.265,0.529,0.157,1,0.335,0.258,0.335,0.335,0.831,0.831,0.0882,0.11,0,1 +0.333,0.15,0.267,0.267,0,0,0.831,0.831,0.831,0,0,0,0,0,0,0,0,0,0,0.261,0.534,0.166,1,0.325,0.236,0.325,0.325,0.824,0.824,0.0882,0.11,0,1 +0.333,0.149,0.312,0.312,0,0,0.831,0.831,0.831,0,0,0,0,0,0,0,0,0.00568,0.00568,0.276,0.534,0.187,1,0.325,0.213,0.325,0.325,0.618,0.618,0.0882,0.11,0,1 +0,0.0495,0.345,0.345,0,0,0.831,0.831,0.831,0,0,0.0149,0,0,0,0,0.0175,0.017,0.0346,0.258,0.465,0.198,1,0.325,0.275,0.325,0.325,0.515,0.515,0.151,0.188,0,1 +0.333,0.149,0.356,0.356,0,0,0.811,0.811,0.811,0,0,0.0145,0.0158,0,0,0,0,0.00284,0.00284,0.29,0.539,0.222,1,0.335,0.331,0.335,0.335,0.419,0.419,0.365,0.455,0,1 +0.667,0.252,0.434,0.434,0,0,0.87,0.87,0.87,0,0,0,0,0.275,0.275,0,0,0,0,0.375,0.632,0.277,1,0.457,0.617,0.457,0.457,0.254,0.254,0.794,0.989,0,1 +0.333,0.157,0.59,0.59,0,0.0487,0.949,0.949,0.949,0,0,0,0,0,0,0,0,0.0142,0.0142,0.368,0.569,0.34,1,0.578,0.903,0.578,0.578,0.158,0.158,0.769,0.958,0,1 +0.667,0.296,0.701,0.701,0,0.0975,0.989,0.989,0.989,0,0,0,0,0,0,0,0,0.00284,0.00284,0.553,0.682,0.457,1,0.67,0.645,0.67,0.67,0.0893,0.0893,0.428,0.534,0,1 +1,0.523,0.745,0.745,0,0,0.949,0.949,0.949,0,0,0,0,0,0,0,0.0203,0.00568,0.026,0.745,0.745,0.64,1,0.771,0.393,0.771,0.771,0.055,0.055,0.384,0.479,0,1 +1,0.671,0.79,0.79,0,0,0.93,0.93,0.93,0,0,0,0,0,0,0,0.0558,0.00568,0.0615,0.79,0.701,0.791,1,0.822,0.247,0.822,0.822,0.0275,0.0275,0.321,0.4,0,1 +1,0.549,0.768,0.768,0,0,0.91,0.91,0.91,0,0,0,0,0,0,0,0.00984,0.00284,0.0127,0.598,0.602,0.749,1,0.873,0.107,0.873,0.873,0.0206,0.0206,0.271,0.338,0.333,1 +1,0.227,0.656,0.656,0,0,0.87,0.87,0.87,0,0,0,0,0,0,0,0,0,0,0.391,0.509,0.453,1,0.761,0.0729,0.761,0.761,0.0206,0.0206,0.151,0.188,0.667,1 +1,0.116,0.556,0.556,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0.00284,0.00284,0.357,0.489,0.196,1,0.659,0.0393,0.659,0.659,0.0206,0.0206,0.151,0.188,0.667,1 +1,0.0743,0.445,0.445,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0,0,0.32,0.484,0.0806,1,0.446,0.0224,0.446,0.446,0.0206,0.0206,0.151,0.188,0.667,1 +1,0.0495,0.412,0.412,0,0,0.771,0.771,0.771,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0392,1,0.233,0.00561,0.233,0.233,0.0206,0.0206,0.183,0.228,1,1 +1,0.0495,0.412,0.412,0,0,0.752,0.752,0.752,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.465,0.0196,1,0.193,0.00561,0.193,0.193,0.0206,0.0206,0.151,0.188,1,1 +1,0.0495,0.401,0.401,0,0,0.732,0.732,0.732,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0152,1,0.152,0.0112,0.152,0.152,0.0275,0.0275,0.183,0.228,1,1 +1,0.0495,0.367,0.367,0,0,0.712,0.712,0.712,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.024,1,0.162,0.0393,0.162,0.162,0.055,0.055,0.296,0.369,1,1 +1,0.0495,0.401,0.401,0,0,0.712,0.712,0.712,0,0,0,0,0,0,0,0.0189,0,0.0189,0.258,0.465,0.0392,1,0.183,0.0673,0.183,0.183,0.103,0.103,0.422,0.526,1,1 +1,0.228,0.478,0.478,0,0,0.752,0.752,0.752,0,0,0,0,0,0,0,0.0517,0,0.0517,0.405,0.523,0.0632,1,0.264,0.163,0.264,0.264,0.179,0.179,0.359,0.447,0.333,1 +0.667,0.167,0.523,0.523,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0,0,0.346,0.519,0.0871,1,0.335,0.258,0.335,0.335,0.302,0.302,0.151,0.188,0.333,1 +0.333,0.0495,0.378,0.378,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.107,1,0.335,0.247,0.335,0.335,0.577,0.577,0.151,0.188,0.333,1 +0.333,0.0495,0.256,0.256,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.465,0.126,1,0.325,0.23,0.325,0.325,0.831,0.831,0.12,0.149,0.333,1 +0.333,0.0495,0.267,0.267,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0.00852,0.00852,0.258,0.465,0.142,1,0.335,0.247,0.335,0.335,0.873,0.873,0.0945,0.118,0.333,1 +0.333,0.0495,0.278,0.278,0,0.0122,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.157,1,0.335,0.258,0.335,0.335,0.831,0.831,0.0882,0.11,0.333,1 +0.333,0.15,0.267,0.267,0,0.0244,0.831,0.831,0.831,0,0,0,0,0,0,0,0,0,0,0.261,0.534,0.166,1,0.325,0.236,0.325,0.325,0.824,0.824,0.0882,0.11,0,1 +0.333,0.149,0.312,0.312,0,0.0366,0.831,0.831,0.831,0,0,0,0,0,0,0,0,0,0,0.276,0.534,0.187,1,0.325,0.213,0.325,0.325,0.618,0.618,0.0882,0.11,0,1 +0.333,0.149,0.345,0.345,0,0,0.831,0.831,0.831,0,0,0,0,0,0,0,0,0,0,0.287,0.529,0.198,1,0.325,0.275,0.325,0.325,0.515,0.515,0.151,0.188,0,1 +0.333,0.149,0.356,0.356,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0.00284,0.00284,0.29,0.539,0.222,1,0.335,0.331,0.335,0.335,0.419,0.419,0.365,0.455,0,1 +0.667,0.151,0.434,0.434,0,0,0.87,0.87,0.87,0,0,0,0,0,0,0,0,0.00284,0.00284,0.316,0.549,0.277,1,0.457,0.617,0.457,0.457,0.254,0.254,0.794,0.989,0.333,1 +1,0.371,0.59,0.59,0,0,0.949,0.949,0.949,0,0,0,0,0,0,0,0.0238,0.00852,0.0323,0.59,0.775,0.34,1,0.578,0.903,0.578,0.578,0.158,0.158,0.769,0.958,0,1 +1,0.42,0.701,0.701,0,0,0.989,0.989,0.989,0,0,0,0,0,0,0,0,0.0227,0.0227,0.701,0.79,0.457,1,0.67,0.645,0.67,0.67,0.0893,0.0893,0.428,0.534,0,1 +1,0.523,0.745,0.745,0,0,0.949,0.949,0.949,0,0,0,0,0,0,0,0,0.017,0.017,0.745,0.745,0.64,1,0.771,0.393,0.771,0.771,0.055,0.055,0.384,0.479,0,1 +1,0.671,0.79,0.79,0,0,0.93,0.93,0.93,0.00432,0.0175,0,0,0,0,0,0,0.00284,0.00284,0.79,0.701,0.791,1,0.822,0.247,0.822,0.822,0.0275,0.0275,0.321,0.4,0,1 +1,0.799,0.768,0.768,0,0,0.91,0.91,0.91,0.0204,0.0302,0,0,0,0,0,0.0155,0.00568,0.0212,0.768,0.671,0.749,1,0.873,0.107,0.873,0.873,0.0206,0.0206,0.271,0.338,0,1 +1,0.405,0.656,0.656,0,0,0.87,0.87,0.87,0.0217,0.0414,0,0,0,0,0,0.0132,0.00284,0.016,0.524,0.553,0.453,1,0.761,0.0729,0.761,0.761,0.0206,0.0206,0.151,0.188,0.333,1 +1,0.183,0.556,0.556,0,0.0366,0.811,0.811,0.811,0.0131,0.00637,0,0,0,0,0,0,0.00568,0.00568,0.457,0.513,0.196,1,0.659,0.0393,0.659,0.659,0.0206,0.0206,0.151,0.188,0.333,1 +1,0.0743,0.445,0.445,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0.0162,0.00568,0.0219,0.32,0.484,0.0806,1,0.446,0.0224,0.446,0.446,0.0206,0.0206,0.151,0.188,0.667,1 +1,0.0578,0.412,0.412,0,0,0.771,0.771,0.771,0,0,0,0,0,0,0.0713,0.0363,0,0.108,0.309,0.474,0.0392,1,0.233,0.00561,0.233,0.233,0.0206,0.0206,0.183,0.228,0.667,1 +1,0.0495,0.412,0.412,0,0,0.752,0.752,0.752,0,0,0,0,0,0,0,0.0186,0.00568,0.0243,0.309,0.469,0.0196,1,0.193,0.00561,0.193,0.193,0.0206,0.0206,0.151,0.188,0.667,1 +0.667,0.0495,0.401,0.401,0,0,0.732,0.732,0.732,0,0,0,0,0,0,0,0,0.00852,0.00852,0.258,0.465,0.0152,1,0.152,0.0112,0.152,0.152,0.0275,0.0275,0.183,0.228,0.667,1 +1,0.0495,0.367,0.367,0,0,0.712,0.712,0.712,0,0,0,0,0,0,0,0.0054,0,0.0054,0.258,0.465,0.024,1,0.162,0.0393,0.162,0.162,0.055,0.055,0.296,0.369,1,1 +1,0.107,0.401,0.401,0,0,0.712,0.712,0.712,0,0,0,0,0,0,0,0.0406,0,0.0406,0.353,0.483,0.0392,1,0.183,0.0673,0.183,0.183,0.103,0.103,0.422,0.526,0.333,1 +0.333,0.139,0.478,0.478,0,0,0.752,0.752,0.752,0,0,0,0,0,0,0,0,0,0,0.331,0.494,0.0632,1,0.264,0.163,0.264,0.264,0.179,0.179,0.359,0.447,0,1 +0.333,0.167,0.523,0.523,0,0,0.791,0.791,0.791,0.0143,0.0414,0,0,0,0,0,0,0,0,0.346,0.519,0.0871,1,0.335,0.258,0.335,0.335,0.302,0.302,0.151,0.188,0,1 +0.333,0.168,0.378,0.378,0,0,0.811,0.811,0.811,0.0188,0.0541,0,0,0,0,0,0,0,0,0.298,0.524,0.107,1,0.335,0.247,0.335,0.335,0.577,0.577,0.151,0.188,0,1 +0.333,0.164,0.256,0.256,0,0,0.811,0.811,0.811,0.0186,0,0,0,0,0,0,0.0189,0.00284,0.0217,0.257,0.524,0.126,1,0.325,0.23,0.325,0.325,0.831,0.831,0.12,0.149,0,1 +0.333,0.16,0.267,0.267,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0.0213,0.00852,0.0299,0.261,0.524,0.142,1,0.335,0.247,0.335,0.335,0.873,0.873,0.0945,0.118,0,1 +0.333,0.154,0.278,0.278,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0,0,0.265,0.529,0.157,1,0.335,0.258,0.335,0.335,0.831,0.831,0.0882,0.11,0,1 +0.333,0.15,0.267,0.267,0,0,0.831,0.831,0.831,0,0,0,0,0,0,0,0,0.00568,0.00568,0.261,0.534,0.166,1,0.325,0.236,0.325,0.325,0.824,0.824,0.0882,0.11,0,1 +0.333,0.149,0.312,0.312,0,0,0.831,0.831,0.831,0,0,0,0,0,0,0,0,0,0,0.276,0.534,0.187,1,0.325,0.213,0.325,0.325,0.618,0.618,0.0882,0.11,0,1 +0.333,0.149,0.345,0.345,0,0,0.831,0.831,0.831,0,0,0,0,0,0,0,0.0148,0,0.0148,0.287,0.529,0.198,1,0.325,0.275,0.325,0.325,0.515,0.515,0.151,0.188,0,1 +0.667,0.249,0.356,0.356,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0.0188,0,0.0188,0.323,0.612,0.222,1,0.335,0.331,0.335,0.335,0.419,0.419,0.365,0.455,0,1 +0.333,0.151,0.434,0.434,0,0.0487,0.87,0.87,0.87,0,0,0,0,0,0,0,0,0,0,0.316,0.549,0.277,1,0.457,0.617,0.457,0.457,0.254,0.254,0.794,0.989,0,1 +0.333,0.157,0.59,0.59,0,0.0244,0.949,0.949,0.949,0,0,0,0,0,0,0,0,0.0199,0.0199,0.368,0.569,0.34,1,0.578,0.903,0.578,0.578,0.158,0.158,0.769,0.958,0,1 +1,0.42,0.701,0.701,0,0,0.989,0.989,0.989,0,0,0,0,0,0,0,0,0.00284,0.00284,0.701,0.79,0.457,1,0.67,0.645,0.67,0.67,0.0893,0.0893,0.428,0.534,0,1 +1,0.523,0.745,0.745,0,0,0.949,0.949,0.949,0,0,0.00985,0,0,0,0,0,0.00852,0.00852,0.745,0.745,0.64,1,0.771,0.393,0.771,0.771,0.055,0.055,0.384,0.479,0,1 +1,0.671,0.79,0.79,0,0,0.93,0.93,0.93,0,0,0.0398,0.0158,0,0,0,0,0.00568,0.00568,0.79,0.701,0.791,1,0.822,0.247,0.822,0.822,0.0275,0.0275,0.321,0.4,0,1 +1,0.799,0.768,0.768,0,0,0.91,0.91,0.91,0,0,0.0236,0,0.183,0.183,0,0,0.00284,0.00284,0.768,0.671,0.749,1,0.873,0.107,0.873,0.873,0.0206,0.0206,0.271,0.338,0,1 +1,0.405,0.656,0.656,0,0,0.87,0.87,0.87,0,0,0,0,0,0,0,0,0.0312,0.0312,0.524,0.553,0.453,1,0.761,0.0729,0.761,0.761,0.0206,0.0206,0.151,0.188,0.333,1 +1,0.116,0.556,0.556,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0,0,0.357,0.489,0.196,1,0.659,0.0393,0.659,0.659,0.0206,0.0206,0.151,0.188,0.667,1 +1,0.0495,0.445,0.445,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0806,1,0.446,0.0224,0.446,0.446,0.0206,0.0206,0.151,0.188,1,1 +1,0.0495,0.412,0.412,0,0,0.771,0.771,0.771,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0392,1,0.233,0.00561,0.233,0.233,0.0206,0.0206,0.183,0.228,1,1 +1,0.0495,0.412,0.412,0,0,0.752,0.752,0.752,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0196,1,0.193,0.00561,0.193,0.193,0.0206,0.0206,0.151,0.188,1,1 +1,0.0495,0.401,0.401,0,0,0.732,0.732,0.732,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0152,1,0.152,0.0112,0.152,0.152,0.0275,0.0275,0.183,0.228,1,1 +1,0.0495,0.367,0.367,0,0,0.712,0.712,0.712,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.024,1,0.162,0.0393,0.162,0.162,0.055,0.055,0.296,0.369,1,1 +1,0.0495,0.401,0.401,0,0,0.712,0.712,0.712,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0392,1,0.183,0.0673,0.183,0.183,0.103,0.103,0.422,0.526,1,1 +0.667,0.139,0.478,0.478,0,0,0.752,0.752,0.752,0,0,0,0,0,0,0,0.0246,0,0.0246,0.331,0.494,0.0632,1,0.264,0.163,0.264,0.264,0.179,0.179,0.359,0.447,0.333,1 +0.667,0.284,0.523,0.523,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0.103,0.00246,0,0.105,0.435,0.572,0.0871,1,0.335,0.258,0.335,0.335,0.302,0.302,0.151,0.188,0,1 +0.333,0.168,0.378,0.378,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0.051,0.0236,0,0.0746,0.298,0.524,0.107,1,0.335,0.247,0.335,0.335,0.577,0.577,0.151,0.188,0,1 +0.333,0.164,0.256,0.256,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0,0,0.257,0.524,0.126,1,0.325,0.23,0.325,0.325,0.831,0.831,0.12,0.149,0,1 +0.333,0.16,0.267,0.267,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0.00852,0.00852,0.261,0.524,0.142,1,0.335,0.247,0.335,0.335,0.873,0.873,0.0945,0.118,0,1 +0.333,0.154,0.278,0.278,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0.00568,0.00568,0.265,0.529,0.157,1,0.335,0.258,0.335,0.335,0.831,0.831,0.0882,0.11,0,1 +0.667,0.251,0.267,0.267,0,0.0853,0.831,0.831,0.831,0,0,0,0,0,0,0,0,0,0,0.264,0.602,0.166,1,0.325,0.236,0.325,0.325,0.824,0.824,0.0882,0.11,0,1 +0.333,0.149,0.312,0.312,0,0.0609,0.831,0.831,0.831,0,0,0,0,0,0,0,0,0.00852,0.00852,0.276,0.534,0.187,1,0.325,0.213,0.325,0.325,0.618,0.618,0.0882,0.11,0,1 +0.333,0.149,0.345,0.345,0,0,0.831,0.831,0.831,0,0,0,0,0,0,0,0,0,0,0.287,0.529,0.198,1,0.325,0.275,0.325,0.325,0.515,0.515,0.151,0.188,0,1 +0.333,0.149,0.356,0.356,0,0.0487,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0.00568,0.00568,0.29,0.539,0.222,1,0.335,0.331,0.335,0.335,0.419,0.419,0.365,0.455,0,1 +0.333,0.151,0.434,0.434,0,0.134,0.87,0.87,0.87,0,0,0,0,0,0,0,0.00272,0,0.00272,0.316,0.549,0.277,1,0.457,0.617,0.457,0.457,0.254,0.254,0.794,0.989,0,1 +0.667,0.264,0.59,0.59,0,0,0.949,0.949,0.949,0,0,0,0,0,0,0,0.019,0,0.019,0.479,0.672,0.34,1,0.578,0.903,0.578,0.578,0.158,0.158,0.769,0.958,0,1 +1,0.42,0.701,0.701,0,0,0.989,0.989,0.989,0,0,0,0,0,0,0,0,0.0142,0.0142,0.701,0.79,0.457,1,0.67,0.645,0.67,0.67,0.0893,0.0893,0.428,0.534,0,1 +1,0.523,0.745,0.745,0,0.0366,0.949,0.949,0.949,0,0,0,0,0,0,0.0345,0.0178,0.00852,0.0608,0.745,0.745,0.64,1,0.771,0.393,0.771,0.771,0.055,0.055,0.384,0.479,0,1 +1,0.464,0.79,0.79,0,0,0.93,0.93,0.93,0,0,0,0,0,0,0.0258,0.0222,0,0.0481,0.613,0.622,0.791,1,0.822,0.247,0.822,0.822,0.0275,0.0275,0.321,0.4,0.333,1 +1,0.299,0.768,0.768,0,0,0.91,0.91,0.91,0,0,0,0,0,0,0,0.0167,0.00284,0.0196,0.428,0.534,0.749,1,0.873,0.107,0.873,0.873,0.0206,0.0206,0.271,0.338,0.667,1 +1,0.0495,0.656,0.656,0,0,0.87,0.87,0.87,0,0,0,0,0,0,0,0,0.00568,0.00568,0.258,0.465,0.453,1,0.761,0.0729,0.761,0.761,0.0206,0.0206,0.151,0.188,1,1 +1,0.0495,0.556,0.556,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.196,1,0.659,0.0393,0.659,0.659,0.0206,0.0206,0.151,0.188,1,1 +1,0.0495,0.445,0.445,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0806,1,0.446,0.0224,0.446,0.446,0.0206,0.0206,0.151,0.188,1,1 +1,0.0495,0.412,0.412,0,0,0.771,0.771,0.771,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0392,1,0.233,0.00561,0.233,0.233,0.0206,0.0206,0.183,0.228,1,1 +1,0.0495,0.412,0.412,0,0,0.752,0.752,0.752,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0196,1,0.193,0.00561,0.193,0.193,0.0206,0.0206,0.151,0.188,1,1 +1,0.0495,0.401,0.401,0,0,0.732,0.732,0.732,0,0,0,0,0,0,0,0.0352,0,0.0352,0.258,0.465,0.0152,1,0.152,0.0112,0.152,0.152,0.0275,0.0275,0.183,0.228,1,1 +1,0.0503,0.367,0.367,0,0.0366,0.712,0.712,0.712,0,0,0,0,0,0,0,0,0,0,0.294,0.469,0.024,1,0.162,0.0393,0.162,0.162,0.055,0.055,0.296,0.369,0.667,1 +1,0.0781,0.401,0.401,0,0,0.712,0.712,0.712,0,0,0,0,0,0,0,0.0136,0,0.0136,0.305,0.474,0.0392,1,0.183,0.0673,0.183,0.183,0.103,0.103,0.422,0.526,0.667,1 +1,0.317,0.478,0.478,0,0,0.752,0.752,0.752,0,0,0,0,0,0,0.0465,0.0141,0,0.0607,0.478,0.551,0.0632,1,0.264,0.163,0.264,0.264,0.179,0.179,0.359,0.447,0,1 +1,0.402,0.523,0.523,0,0.0853,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0.00284,0.00284,0.523,0.626,0.0871,1,0.335,0.258,0.335,0.335,0.302,0.302,0.151,0.188,0,1 +0.667,0.286,0.378,0.378,0,0.0975,0.811,0.811,0.811,0,0,0,0,0,0,0,0.00262,0.00284,0.00545,0.338,0.582,0.107,1,0.335,0.247,0.335,0.335,0.577,0.577,0.151,0.188,0,1 +0.667,0.278,0.256,0.256,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0.0235,0,0.0235,0.257,0.582,0.126,1,0.325,0.23,0.325,0.325,0.831,0.831,0.12,0.149,0,1 +0.667,0.27,0.267,0.267,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0.00852,0.00852,0.264,0.582,0.142,1,0.335,0.247,0.335,0.335,0.873,0.873,0.0945,0.118,0,1 +0.333,0.154,0.278,0.278,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0.00284,0.00284,0.265,0.529,0.157,1,0.335,0.258,0.335,0.335,0.831,0.831,0.0882,0.11,0,1 +0.333,0.0495,0.267,0.267,0,0,0.831,0.831,0.831,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.166,1,0.325,0.236,0.325,0.325,0.824,0.824,0.0882,0.11,0.333,1 +0.333,0.149,0.312,0.312,0,0,0.831,0.831,0.831,0,0,0,0,0,0,0,0,0,0,0.276,0.534,0.187,1,0.325,0.213,0.325,0.325,0.618,0.618,0.0882,0.11,0,1 +0.333,0.149,0.345,0.345,0,0,0.831,0.831,0.831,0,0,0,0,0,0,0,0,0.0199,0.0199,0.287,0.529,0.198,1,0.325,0.275,0.325,0.325,0.515,0.515,0.151,0.188,0,1 +0.333,0.149,0.356,0.356,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0.0199,0.0199,0.29,0.539,0.222,1,0.335,0.331,0.335,0.335,0.419,0.419,0.365,0.455,0,1 +0.333,0.151,0.434,0.434,0,0,0.87,0.87,0.87,0,0,0,0,0,0,0,0,0.00852,0.00852,0.316,0.549,0.277,1,0.457,0.617,0.457,0.457,0.254,0.254,0.794,0.989,0,1 +0.333,0.157,0.59,0.59,0,0,0.949,0.949,0.949,0,0,0,0,0,0,0,0,0.0142,0.0142,0.368,0.569,0.34,1,0.578,0.903,0.578,0.578,0.158,0.158,0.769,0.958,0,1 +0.667,0.296,0.701,0.701,0,0,0.989,0.989,0.989,0,0,0,0,0,0,0,0,0,0,0.553,0.682,0.457,1,0.67,0.645,0.67,0.67,0.0893,0.0893,0.428,0.534,0,1 +0.667,0.365,0.745,0.745,0,0,0.949,0.949,0.949,0,0,0,0,0,0,0,0,0.00284,0.00284,0.583,0.652,0.64,1,0.771,0.393,0.771,0.771,0.055,0.055,0.384,0.479,0,1 +0.667,0.464,0.79,0.79,0,0,0.93,0.93,0.93,0,0,0,0,0,0,0,0.0454,0.00852,0.0539,0.613,0.622,0.791,1,0.822,0.247,0.822,0.822,0.0275,0.0275,0.321,0.4,0,1 +1,0.299,0.768,0.768,0,0,0.91,0.91,0.91,0,0,0,0,0,0,0,0,0.0114,0.0114,0.428,0.534,0.749,1,0.873,0.107,0.873,0.873,0.0206,0.0206,0.271,0.338,0.667,1 +1,0.0495,0.656,0.656,0,0,0.87,0.87,0.87,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.453,1,0.761,0.0729,0.761,0.761,0.0206,0.0206,0.151,0.188,1,1 +1,0.0495,0.556,0.556,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.196,1,0.659,0.0393,0.659,0.659,0.0206,0.0206,0.151,0.188,1,1 +1,0.0495,0.445,0.445,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0958,1,0.446,0.0224,0.446,0.446,0.0206,0.0206,0.151,0.188,1,1 +1,0.0495,0.412,0.412,0,0,0.771,0.771,0.771,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0479,1,0.233,0.00561,0.233,0.233,0.0206,0.0206,0.183,0.228,1,1 +1,0.0495,0.412,0.412,0,0,0.752,0.752,0.752,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0261,1,0.193,0.00561,0.193,0.193,0.0206,0.0206,0.151,0.188,1,1 +1,0.0495,0.401,0.401,0,0,0.732,0.732,0.732,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0174,1,0.152,0.0112,0.152,0.152,0.0275,0.0275,0.183,0.228,1,1 +1,0.0495,0.367,0.367,0,0,0.712,0.712,0.712,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.024,1,0.162,0.0393,0.162,0.162,0.055,0.055,0.296,0.369,1,1 +1,0.0495,0.401,0.401,0,0,0.712,0.712,0.712,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0305,1,0.183,0.0673,0.183,0.183,0.103,0.103,0.422,0.526,1,1 +1,0.0495,0.478,0.478,0,0,0.752,0.752,0.752,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0523,1,0.264,0.163,0.264,0.264,0.179,0.179,0.359,0.447,1,1 +1,0.0495,0.523,0.523,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0.00273,0,0.00273,0.258,0.465,0.0937,1,0.335,0.258,0.335,0.335,0.302,0.302,0.151,0.188,1,1 +1,0.168,0.378,0.378,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0.0191,0,0.0191,0.298,0.524,0.155,1,0.335,0.247,0.335,0.335,0.577,0.577,0.151,0.188,0.667,1 +0.667,0.164,0.256,0.256,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0,0,0.257,0.524,0.205,1,0.325,0.23,0.325,0.325,0.831,0.831,0.12,0.149,0.333,1 +1,0.27,0.267,0.267,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0,0,0.264,0.582,0.244,1,0.335,0.247,0.335,0.335,0.873,0.873,0.0945,0.118,0.333,1 +0.333,0.154,0.278,0.278,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0,0,0.265,0.529,0.268,1,0.335,0.258,0.335,0.335,0.831,0.831,0.0882,0.11,0,1 +0.333,0.15,0.267,0.267,0,0.0122,0.831,0.831,0.831,0,0,0,0,0,0,0,0,0,0,0.261,0.534,0.288,1,0.325,0.236,0.325,0.325,0.824,0.824,0.0882,0.11,0,1 +0.667,0.149,0.312,0.312,0,0.134,0.831,0.831,0.831,0,0,0,0,0,0,0,0,0,0,0.276,0.534,0.34,1,0.325,0.213,0.325,0.325,0.618,0.618,0.0882,0.11,0.333,1 +0.667,0.249,0.345,0.345,0,0,0.831,0.831,0.831,0,0,0,0,0,0,0,0,0.0114,0.0114,0.316,0.592,0.388,1,0.325,0.275,0.325,0.325,0.515,0.515,0.151,0.188,0,1 +0.667,0.249,0.356,0.356,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0.00284,0.00284,0.323,0.612,0.427,1,0.335,0.331,0.335,0.335,0.419,0.419,0.365,0.455,0,1 +0.667,0.252,0.434,0.434,0,0,0.87,0.87,0.87,0,0,0,0,0,0,0,0,0.00852,0.00852,0.375,0.632,0.449,1,0.457,0.617,0.457,0.457,0.254,0.254,0.794,0.989,0,1 +1,0.371,0.59,0.59,0,0,0.949,0.949,0.949,0,0,0,0,0,0,0,0,0,0,0.59,0.775,0.464,1,0.578,0.903,0.578,0.578,0.158,0.158,0.769,0.958,0,1 +0.667,0.296,0.701,0.701,0,0,0.989,0.989,0.989,0,0,0,0,0,0,0,0,0.00852,0.00852,0.553,0.682,0.547,1,0.67,0.645,0.67,0.67,0.0893,0.0893,0.428,0.534,0,1 +1,0.523,0.745,0.745,0,0,0.949,0.949,0.949,0,0,0,0,0,0,0,0,0.017,0.017,0.745,0.745,0.719,1,0.771,0.393,0.771,0.771,0.055,0.055,0.384,0.479,0,1 +1,0.671,0.79,0.79,0,0,0.93,0.93,0.93,0,0,0,0,0,0,0,0,0.00852,0.00852,0.79,0.701,0.845,1,0.822,0.247,0.822,0.822,0.0275,0.0275,0.321,0.4,0,1 +1,0.799,0.768,0.768,0,0,0.91,0.91,0.91,0,0,0,0,0,0,0,0,0.0369,0.0369,0.768,0.671,0.78,1,0.873,0.107,0.873,0.873,0.0206,0.0206,0.271,0.338,0,1 +1,0.405,0.656,0.656,0,0,0.87,0.87,0.87,0,0,0,0,0,0,0,0,0.0114,0.0114,0.524,0.553,0.492,1,0.761,0.0729,0.761,0.761,0.0206,0.0206,0.151,0.188,0.333,1 +1,0.0495,0.556,0.556,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0.0114,0.0114,0.258,0.465,0.224,1,0.659,0.0393,0.659,0.659,0.0206,0.0206,0.151,0.188,1,1 +1,0.0495,0.445,0.445,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0958,1,0.446,0.0224,0.446,0.446,0.0206,0.0206,0.151,0.188,1,1 +1,0.0495,0.412,0.412,0,0,0.771,0.771,0.771,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0479,1,0.233,0.00561,0.233,0.233,0.0206,0.0206,0.183,0.228,1,1 +1,0.0495,0.412,0.412,0,0,0.752,0.752,0.752,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0261,1,0.193,0.00561,0.193,0.193,0.0206,0.0206,0.151,0.188,1,1 +1,0.0495,0.401,0.401,0,0,0.732,0.732,0.732,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0174,1,0.152,0.0112,0.152,0.152,0.0275,0.0275,0.183,0.228,1,1 +1,0.0495,0.367,0.367,0,0,0.712,0.712,0.712,0,0,0,0,0,0,0,0.017,0,0.017,0.258,0.465,0.024,1,0.162,0.0393,0.162,0.162,0.055,0.055,0.296,0.369,1,1 +1,0.0781,0.401,0.401,0,0.0122,0.712,0.712,0.712,0,0,0,0,0,0,0.035,0.00533,0,0.0403,0.305,0.474,0.0305,1,0.183,0.0673,0.183,0.183,0.103,0.103,0.422,0.526,0.667,1 +1,0.228,0.478,0.478,0,0.0244,0.752,0.752,0.752,0,0,0,0,0,0,0.0638,0.0558,0,0.12,0.405,0.523,0.0523,1,0.264,0.163,0.264,0.264,0.179,0.179,0.359,0.447,0.333,1 +1,0.284,0.523,0.523,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0.0409,0,0.0409,0.435,0.572,0.0937,1,0.335,0.258,0.335,0.335,0.302,0.302,0.151,0.188,0.333,1 +1,0.286,0.378,0.378,0,0.0122,0.811,0.811,0.811,0,0,0,0,0,0,0,0.0145,0,0.0145,0.338,0.582,0.155,1,0.335,0.247,0.335,0.335,0.577,0.577,0.151,0.188,0.333,1 +0.667,0.164,0.256,0.256,0,0.0244,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0.00568,0.00568,0.257,0.524,0.205,1,0.325,0.23,0.325,0.325,0.831,0.831,0.12,0.149,0.333,1 +0.333,0.16,0.267,0.267,0,0,0.791,0.791,0.791,0.00303,0.0175,0,0,0,0,0,0,0,0,0.261,0.524,0.244,1,0.335,0.247,0.335,0.335,0.873,0.873,0.0945,0.118,0,1 +0.333,0.154,0.278,0.278,0,0,0.791,0.791,0.791,0.0185,0.0302,0.00565,0,0,0,0,0,0.00284,0.00284,0.265,0.529,0.268,1,0.335,0.258,0.335,0.335,0.831,0.831,0.0882,0.11,0,1 +0.667,0.251,0.267,0.267,0,0,0.831,0.831,0.831,0,0,0.0378,0.0112,0,0,0,0,0,0,0.264,0.602,0.288,1,0.325,0.236,0.325,0.325,0.824,0.824,0.0882,0.11,0,1 +0.333,0.149,0.312,0.312,0,0,0.831,0.831,0.831,0,0,0.0333,0.00456,0.238,0.238,0,0.0171,0,0.0171,0.276,0.534,0.34,1,0.325,0.213,0.325,0.325,0.618,0.618,0.0882,0.11,0,1 +0.667,0.249,0.345,0.345,0,0,0.831,0.831,0.831,0,0,0.0342,0,0.128,0.128,0,0,0.0199,0.0199,0.316,0.592,0.388,1,0.325,0.275,0.325,0.325,0.515,0.515,0.151,0.188,0,1 +0.667,0.249,0.356,0.356,0,0,0.811,0.811,0.811,0,0,0.0601,0,0,0,0,0,0.00852,0.00852,0.323,0.612,0.427,1,0.335,0.331,0.335,0.335,0.419,0.419,0.365,0.455,0,1 +0.667,0.252,0.434,0.434,0,0.0366,0.87,0.87,0.87,0,0,0.0306,0,0,0,0,0,0,0,0.375,0.632,0.449,1,0.457,0.617,0.457,0.457,0.254,0.254,0.794,0.989,0,1 +0.667,0.264,0.59,0.59,0,0,0.949,0.949,0.949,0,0,0.0144,0,0,0,0,0,0.0114,0.0114,0.479,0.672,0.464,1,0.578,0.903,0.578,0.578,0.158,0.158,0.769,0.958,0,1 +0.333,0.173,0.701,0.701,0,0,0.989,0.989,0.989,0,0,0.045,0,0,0,0,0,0.0114,0.0114,0.405,0.574,0.547,1,0.67,0.645,0.67,0.67,0.0893,0.0893,0.428,0.534,0,1 +0.667,0.365,0.745,0.745,0,0,0.949,0.949,0.949,0.00399,0.0175,0.00702,0,0,0,0,0,0,0,0.583,0.652,0.719,1,0.771,0.393,0.771,0.771,0.055,0.055,0.384,0.479,0,1 +1,0.671,0.79,0.79,0,0,0.93,0.93,0.93,0.0237,0.0541,0,0,0,0,0,0,0.00852,0.00852,0.79,0.701,0.845,1,0.822,0.247,0.822,0.822,0.0275,0.0275,0.321,0.4,0,1 +1,0.799,0.768,0.768,0,0,0.91,0.91,0.91,0,0,0,0,0,0,0,0,0.00852,0.00852,0.768,0.671,0.78,1,0.873,0.107,0.873,0.873,0.0206,0.0206,0.271,0.338,0,1 +1,0.405,0.656,0.656,0,0,0.87,0.87,0.87,0,0,0,0,0,0,0,0,0.00852,0.00852,0.524,0.553,0.492,1,0.761,0.0729,0.761,0.761,0.0206,0.0206,0.151,0.188,0.333,1 +1,0.116,0.556,0.556,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0,0,0.357,0.489,0.224,1,0.659,0.0393,0.659,0.659,0.0206,0.0206,0.151,0.188,0.667,1 +1,0.0495,0.445,0.445,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0806,1,0.446,0.0224,0.446,0.446,0.0206,0.0206,0.151,0.188,1,1 +1,0.0495,0.412,0.412,0,0,0.771,0.771,0.771,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0392,1,0.233,0.00561,0.233,0.233,0.0206,0.0206,0.183,0.228,1,1 +1,0.0495,0.412,0.412,0,0,0.752,0.752,0.752,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0196,1,0.193,0.00561,0.193,0.193,0.0206,0.0206,0.151,0.188,1,1 +1,0.0495,0.401,0.401,0,0,0.732,0.732,0.732,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0152,1,0.152,0.0112,0.152,0.152,0.0275,0.0275,0.183,0.228,1,1 +0.667,0.0495,0.367,0.367,0,0,0.712,0.712,0.712,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.024,1,0.162,0.0393,0.162,0.162,0.055,0.055,0.296,0.369,0.667,1 +0.667,0.0495,0.401,0.401,0,0,0.712,0.712,0.712,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0392,1,0.183,0.0673,0.183,0.183,0.103,0.103,0.422,0.526,0.667,1 +0.667,0.0495,0.478,0.478,0,0,0.752,0.752,0.752,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0632,1,0.264,0.163,0.264,0.264,0.179,0.179,0.359,0.447,0.667,1 +0.667,0.284,0.523,0.523,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0,0,0.435,0.572,0.0871,1,0.335,0.258,0.335,0.335,0.302,0.302,0.151,0.188,0,1 +0.333,0.168,0.378,0.378,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0,0,0.298,0.524,0.107,1,0.335,0.247,0.335,0.335,0.577,0.577,0.151,0.188,0,1 +0.333,0.164,0.256,0.256,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0,0,0.257,0.524,0.126,1,0.325,0.23,0.325,0.325,0.831,0.831,0.12,0.149,0,1 +0.333,0.16,0.267,0.267,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0,0,0.261,0.524,0.142,1,0.335,0.247,0.335,0.335,0.873,0.873,0.0945,0.118,0,1 +0.667,0.259,0.278,0.278,0,0.0366,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0.00568,0.00568,0.271,0.592,0.157,1,0.335,0.258,0.335,0.335,0.831,0.831,0.0882,0.11,0,1 +0.667,0.251,0.267,0.267,0,0,0.831,0.831,0.831,0,0,0.016,0,0,0,0,0,0,0,0.264,0.602,0.166,1,0.325,0.236,0.325,0.325,0.824,0.824,0.0882,0.11,0,1 +0.667,0.249,0.312,0.312,0,0,0.831,0.831,0.831,0,0,0.0351,0.0112,0,0,0,0,0.00568,0.00568,0.294,0.602,0.187,1,0.325,0.213,0.325,0.325,0.618,0.618,0.0882,0.11,0,1 +0.667,0.249,0.345,0.345,0,0,0.831,0.831,0.831,0,0,0,0.00456,0.238,0.238,0,0,0.00852,0.00852,0.316,0.592,0.198,1,0.325,0.275,0.325,0.325,0.515,0.515,0.151,0.188,0,1 +0.667,0.249,0.356,0.356,0,0,0.811,0.811,0.811,0,0,0,0,0.128,0.128,0,0,0.00568,0.00568,0.323,0.612,0.222,1,0.335,0.331,0.335,0.335,0.419,0.419,0.365,0.455,0,1 +0.333,0.151,0.434,0.434,0,0,0.87,0.87,0.87,0,0,0,0,0,0,0,0,0.00284,0.00284,0.316,0.549,0.277,1,0.457,0.617,0.457,0.457,0.254,0.254,0.794,0.989,0,1 +0.667,0.264,0.59,0.59,0,0.0122,0.949,0.949,0.949,0,0,0,0,0,0,0,0.00254,0.00852,0.0111,0.479,0.672,0.34,1,0.578,0.903,0.578,0.578,0.158,0.158,0.769,0.958,0,1 +1,0.42,0.701,0.701,0,0.146,0.989,0.989,0.989,0,0,0,0,0,0,0,0.0246,0.0114,0.036,0.701,0.79,0.457,1,0.67,0.645,0.67,0.67,0.0893,0.0893,0.428,0.534,0,1 +1,0.523,0.745,0.745,0,0.0244,0.949,0.949,0.949,0,0,0,0,0,0,0,0.0649,0.00284,0.0677,0.745,0.745,0.64,1,0.771,0.393,0.771,0.771,0.055,0.055,0.384,0.479,0,1 +1,0.671,0.79,0.79,0,0,0.93,0.93,0.93,0,0,0,0,0,0,0,0.0173,0.017,0.0343,0.79,0.701,0.791,1,0.822,0.247,0.822,0.822,0.0275,0.0275,0.321,0.4,0,1 +1,0.299,0.768,0.768,0,0,0.91,0.91,0.91,0,0,0,0,0,0,0,0,0.0142,0.0142,0.428,0.534,0.749,1,0.873,0.107,0.873,0.873,0.0206,0.0206,0.271,0.338,0.667,1 +1,0.0495,0.656,0.656,0,0,0.87,0.87,0.87,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.453,1,0.761,0.0729,0.761,0.761,0.0206,0.0206,0.151,0.188,1,1 +1,0.0495,0.556,0.556,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.196,1,0.659,0.0393,0.659,0.659,0.0206,0.0206,0.151,0.188,1,1 +1,0.0495,0.445,0.445,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.465,0.0806,1,0.446,0.0224,0.446,0.446,0.0206,0.0206,0.151,0.188,1,1 +1,0.0495,0.412,0.412,0,0,0.771,0.771,0.771,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0392,1,0.233,0.00561,0.233,0.233,0.0206,0.0206,0.183,0.228,1,1 +1,0.0495,0.412,0.412,0,0,0.752,0.752,0.752,0,0,0.0438,0.00596,0,0,0,0,0,0,0.309,0.469,0.0196,1,0.193,0.00561,0.193,0.193,0.0206,0.0206,0.151,0.188,0.667,1 +1,0.0495,0.401,0.401,0,0,0.732,0.732,0.732,0,0,0.0248,0.00982,0.147,0.147,0,0,0,0,0.305,0.464,0.0152,1,0.152,0.0112,0.152,0.152,0.0275,0.0275,0.183,0.228,0.667,1 +1,0.0495,0.367,0.367,0,0,0.712,0.712,0.712,0,0,0,0,0.22,0.22,0,0.0185,0,0.0185,0.258,0.465,0.024,1,0.162,0.0393,0.162,0.162,0.055,0.055,0.296,0.369,1,1 +0.667,0.0495,0.401,0.401,0,0,0.712,0.712,0.712,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0392,1,0.183,0.0673,0.183,0.183,0.103,0.103,0.422,0.526,0.667,1 +0.667,0.0495,0.478,0.478,0,0,0.752,0.752,0.752,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.465,0.0632,1,0.264,0.163,0.264,0.264,0.179,0.179,0.359,0.447,0.667,1 +0.667,0.0495,0.523,0.523,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0871,1,0.335,0.258,0.335,0.335,0.302,0.302,0.151,0.188,0.667,1 +0.667,0.0495,0.378,0.378,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0.00568,0.00568,0.258,0.465,0.107,1,0.335,0.247,0.335,0.335,0.577,0.577,0.151,0.188,0.667,1 +1,0.278,0.256,0.256,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0.0584,0.0243,0,0.0827,0.257,0.582,0.126,1,0.325,0.23,0.325,0.325,0.831,0.831,0.12,0.149,0.333,1 +0.667,0.27,0.267,0.267,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0.0806,0,0.0806,0.264,0.582,0.142,1,0.335,0.247,0.335,0.335,0.873,0.873,0.0945,0.118,0,1 +0.333,0.154,0.278,0.278,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0.0147,0,0.0147,0.265,0.529,0.157,1,0.335,0.258,0.335,0.335,0.831,0.831,0.0882,0.11,0,1 +0.333,0.15,0.267,0.267,0,0,0.831,0.831,0.831,0,0,0,0,0,0,0,0.0157,0,0.0157,0.261,0.534,0.166,1,0.325,0.236,0.325,0.325,0.824,0.824,0.0882,0.11,0,1 +0.333,0.149,0.312,0.312,0,0,0.831,0.831,0.831,0,0,0,0,0,0,0,0,0.00284,0.00284,0.276,0.534,0.187,1,0.325,0.213,0.325,0.325,0.618,0.618,0.0882,0.11,0,1 +0.333,0.149,0.345,0.345,0,0,0.831,0.831,0.831,0,0,0,0,0,0,0,0,0.00284,0.00284,0.287,0.529,0.198,1,0.325,0.275,0.325,0.325,0.515,0.515,0.151,0.188,0,1 +0.333,0.149,0.356,0.356,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0,0,0.29,0.539,0.222,1,0.335,0.331,0.335,0.335,0.419,0.419,0.365,0.455,0,1 +0.333,0.151,0.434,0.434,0,0,0.87,0.87,0.87,0,0,0,0,0,0,0,0,0.00284,0.00284,0.316,0.549,0.277,1,0.457,0.617,0.457,0.457,0.254,0.254,0.794,0.989,0,1 +0.333,0.157,0.59,0.59,0,0.0487,0.949,0.949,0.949,0,0,0,0,0,0,0,0,0.00284,0.00284,0.368,0.569,0.34,1,0.578,0.903,0.578,0.578,0.158,0.158,0.769,0.958,0,1 +1,0.42,0.701,0.701,0,0.0244,0.989,0.989,0.989,0.00388,0.0175,0,0,0,0,0,0,0.017,0.017,0.701,0.79,0.457,1,0.67,0.645,0.67,0.67,0.0893,0.0893,0.428,0.534,0,1 +1,0.523,0.745,0.745,0,0,0.949,0.949,0.949,0.0197,0.00637,0,0,0,0,0,0.00263,0.00568,0.00831,0.745,0.745,0.64,1,0.771,0.393,0.771,0.771,0.055,0.055,0.384,0.479,0,1 +1,0.671,0.79,0.79,0,0,0.93,0.93,0.93,0.0274,0,0,0,0,0,0,0.0356,0.00284,0.0384,0.79,0.701,0.791,1,0.822,0.247,0.822,0.822,0.0275,0.0275,0.321,0.4,0,1 +1,0.549,0.768,0.768,0,0.0366,0.91,0.91,0.91,0.0223,0,0,0,0,0,0,0,0.00284,0.00284,0.598,0.602,0.749,1,0.873,0.107,0.873,0.873,0.0206,0.0206,0.271,0.338,0.333,1 +1,0.405,0.656,0.656,0,0,0.87,0.87,0.87,0.00343,0,0,0,0,0,0,0,0.00852,0.00852,0.524,0.553,0.453,1,0.761,0.0729,0.761,0.761,0.0206,0.0206,0.151,0.188,0.333,1 +1,0.183,0.556,0.556,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0.00568,0.00568,0.457,0.513,0.196,1,0.659,0.0393,0.659,0.659,0.0206,0.0206,0.151,0.188,0.333,1 +1,0.0743,0.445,0.445,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0.0263,0,0.0263,0.32,0.484,0.0806,1,0.446,0.0224,0.446,0.446,0.0206,0.0206,0.151,0.188,0.667,1 +1,0.0495,0.412,0.412,0,0,0.771,0.771,0.771,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0392,1,0.233,0.00561,0.233,0.233,0.0206,0.0206,0.183,0.228,1,1 +1,0.0495,0.412,0.412,0,0,0.752,0.752,0.752,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0196,1,0.193,0.00561,0.193,0.193,0.0206,0.0206,0.151,0.188,1,1 +1,0.0495,0.401,0.401,0,0,0.732,0.732,0.732,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0152,1,0.152,0.0112,0.152,0.152,0.0275,0.0275,0.183,0.228,1,1 +1,0.0495,0.367,0.367,0,0,0.712,0.712,0.712,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.024,1,0.162,0.0393,0.162,0.162,0.055,0.055,0.296,0.369,1,1 +1,0.0495,0.401,0.401,0,0,0.712,0.712,0.712,0,0,0,0,0,0,0,0.017,0,0.017,0.258,0.465,0.0392,1,0.183,0.0673,0.183,0.183,0.103,0.103,0.422,0.526,1,1 +1,0.228,0.478,0.478,0,0.0853,0.752,0.752,0.752,0,0,0,0,0,0,0,0,0,0,0.405,0.523,0.0632,1,0.264,0.163,0.264,0.264,0.179,0.179,0.359,0.447,0.333,1 +1,0.402,0.523,0.523,0,0.0609,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0,0,0.523,0.626,0.0871,1,0.335,0.258,0.335,0.335,0.302,0.302,0.151,0.188,0,1 +0.333,0.168,0.378,0.378,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0,0,0.298,0.524,0.107,1,0.335,0.247,0.335,0.335,0.577,0.577,0.151,0.188,0,1 +0.333,0.164,0.256,0.256,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0.00284,0.00284,0.257,0.524,0.126,1,0.325,0.23,0.325,0.325,0.831,0.831,0.12,0.149,0,1 +0.333,0.16,0.267,0.267,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0.026,0.00568,0.0317,0.261,0.524,0.142,1,0.335,0.247,0.335,0.335,0.873,0.873,0.0945,0.118,0,1 +0.333,0.154,0.278,0.278,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0.0114,0.0114,0.265,0.529,0.157,1,0.335,0.258,0.335,0.335,0.831,0.831,0.0882,0.11,0,1 +0.333,0.15,0.267,0.267,0,0,0.831,0.831,0.831,0,0,0,0,0,0,0,0,0.00568,0.00568,0.261,0.534,0.166,1,0.325,0.236,0.325,0.325,0.824,0.824,0.0882,0.11,0,1 +0.333,0.149,0.312,0.312,0,0,0.831,0.831,0.831,0,0,0,0,0,0,0,0.0027,0.00568,0.00838,0.276,0.534,0.187,1,0.325,0.213,0.325,0.325,0.618,0.618,0.0882,0.11,0,1 +0.333,0.149,0.345,0.345,0,0,0.831,0.831,0.831,0,0,0,0,0,0,0,0.0351,0,0.0351,0.287,0.529,0.198,1,0.325,0.275,0.325,0.325,0.515,0.515,0.151,0.188,0,1 +0,0.0495,0.356,0.356,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.222,1,0.335,0.331,0.335,0.335,0.419,0.419,0.365,0.455,0,1 +0.667,0.252,0.434,0.434,0,0.0122,0.87,0.87,0.87,0,0,0,0,0,0,0,0,0,0,0.375,0.632,0.277,1,0.457,0.617,0.457,0.457,0.254,0.254,0.794,0.989,0,1 +0.667,0.264,0.59,0.59,0,0.0609,0.949,0.949,0.949,0,0,0,0,0,0,0,0,0.00568,0.00568,0.479,0.672,0.34,1,0.578,0.903,0.578,0.578,0.158,0.158,0.769,0.958,0,1 +1,0.42,0.701,0.701,0,0.0731,0.989,0.989,0.989,0,0,0,0,0,0,0,0,0.0114,0.0114,0.701,0.79,0.457,1,0.67,0.645,0.67,0.67,0.0893,0.0893,0.428,0.534,0,1 +1,0.523,0.745,0.745,0,0,0.949,0.949,0.949,0,0,0,0,0,0,0,0,0,0,0.745,0.745,0.64,1,0.771,0.393,0.771,0.771,0.055,0.055,0.384,0.479,0,1 +1,0.464,0.79,0.79,0,0,0.93,0.93,0.93,0.00494,0.0175,0,0,0,0,0,0,0,0,0.613,0.622,0.791,1,0.822,0.247,0.822,0.822,0.0275,0.0275,0.321,0.4,0.333,1 +1,0.549,0.768,0.768,0,0,0.91,0.91,0.91,0.0202,0.0541,0,0,0,0,0,0.00276,0,0.00276,0.598,0.602,0.749,1,0.873,0.107,0.873,0.873,0.0206,0.0206,0.271,0.338,0.333,1 +1,0.227,0.656,0.656,0,0,0.87,0.87,0.87,0.018,0,0,0,0,0,0,0.0317,0.00852,0.0402,0.391,0.509,0.453,1,0.761,0.0729,0.761,0.761,0.0206,0.0206,0.151,0.188,0.667,1 +1,0.0495,0.556,0.556,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.196,1,0.659,0.0393,0.659,0.659,0.0206,0.0206,0.151,0.188,1,1 +1,0.0495,0.445,0.445,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0806,1,0.446,0.0224,0.446,0.446,0.0206,0.0206,0.151,0.188,1,1 +1,0.0495,0.412,0.412,0,0,0.771,0.771,0.771,0,0,0,0,0,0,0,0,0.00568,0.00568,0.258,0.465,0.0392,1,0.233,0.00561,0.233,0.233,0.0206,0.0206,0.183,0.228,1,1 +1,0.0495,0.412,0.412,0,0,0.752,0.752,0.752,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0196,1,0.193,0.00561,0.193,0.193,0.0206,0.0206,0.151,0.188,1,1 +1,0.0495,0.401,0.401,0,0,0.732,0.732,0.732,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0152,1,0.152,0.0112,0.152,0.152,0.0275,0.0275,0.183,0.228,1,1 +1,0.0495,0.367,0.367,0,0,0.712,0.712,0.712,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.024,1,0.162,0.0393,0.162,0.162,0.055,0.055,0.296,0.369,1,1 +1,0.0495,0.401,0.401,0,0,0.712,0.712,0.712,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0392,1,0.183,0.0673,0.183,0.183,0.103,0.103,0.422,0.526,1,1 +1,0.139,0.478,0.478,0,0.0853,0.752,0.752,0.752,0,0,0,0,0,0,0,0,0,0,0.331,0.494,0.0632,1,0.264,0.163,0.264,0.264,0.179,0.179,0.359,0.447,0.667,1 +0.667,0.284,0.523,0.523,0,0.0366,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0,0,0.435,0.572,0.0871,1,0.335,0.258,0.335,0.335,0.302,0.302,0.151,0.188,0,1 +0.333,0.168,0.378,0.378,0,0.0244,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0,0,0.298,0.524,0.107,1,0.335,0.247,0.335,0.335,0.577,0.577,0.151,0.188,0,1 +0.333,0.164,0.256,0.256,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0,0,0.257,0.524,0.126,1,0.325,0.23,0.325,0.325,0.831,0.831,0.12,0.149,0,1 +0.333,0.16,0.267,0.267,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0.00284,0.00284,0.261,0.524,0.142,1,0.335,0.247,0.335,0.335,0.873,0.873,0.0945,0.118,0,1 +0.333,0.154,0.278,0.278,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0.00284,0.00284,0.265,0.529,0.157,1,0.335,0.258,0.335,0.335,0.831,0.831,0.0882,0.11,0,1 +0.333,0.15,0.267,0.267,0,0,0.831,0.831,0.831,0,0,0,0,0,0,0,0,0.00852,0.00852,0.261,0.534,0.166,1,0.325,0.236,0.325,0.325,0.824,0.824,0.0882,0.11,0,1 +0.333,0.149,0.312,0.312,0,0,0.831,0.831,0.831,0,0,0,0,0,0,0,0,0,0,0.276,0.534,0.187,1,0.325,0.213,0.325,0.325,0.618,0.618,0.0882,0.11,0,1 +0,0.0495,0.345,0.345,0,0,0.831,0.831,0.831,0,0,0,0,0,0,0,0,0.00568,0.00568,0.258,0.465,0.198,1,0.325,0.275,0.325,0.325,0.515,0.515,0.151,0.188,0,1 +0,0.0495,0.356,0.356,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0.00568,0.00568,0.258,0.465,0.222,1,0.335,0.331,0.335,0.335,0.419,0.419,0.365,0.455,0,1 +0.333,0.151,0.434,0.434,0,0,0.87,0.87,0.87,0,0,0,0,0,0,0,0,0.00568,0.00568,0.316,0.549,0.277,1,0.457,0.617,0.457,0.457,0.254,0.254,0.794,0.989,0,1 +0.333,0.157,0.59,0.59,0,0,0.949,0.949,0.949,0,0,0,0,0,0,0,0,0.00284,0.00284,0.368,0.569,0.34,1,0.578,0.903,0.578,0.578,0.158,0.158,0.769,0.958,0,1 +0.667,0.296,0.701,0.701,0,0,0.989,0.989,0.989,0,0,0,0,0,0,0,0,0,0,0.553,0.682,0.457,1,0.67,0.645,0.67,0.67,0.0893,0.0893,0.428,0.534,0,1 +0.667,0.365,0.745,0.745,0,0.0122,0.949,0.949,0.949,0,0,0,0,0,0,0,0,0,0,0.583,0.652,0.64,1,0.771,0.393,0.771,0.771,0.055,0.055,0.384,0.479,0,1 +1,0.671,0.79,0.79,0,0.0244,0.93,0.93,0.93,0.0126,0.0414,0,0,0,0,0,0,0.0227,0.0227,0.79,0.701,0.791,1,0.822,0.247,0.822,0.822,0.0275,0.0275,0.321,0.4,0,1 +1,0.799,0.768,0.768,0,0,0.91,0.91,0.91,0.0202,0.00637,0,0,0,0,0,0.00269,0.00568,0.00837,0.768,0.671,0.749,1,0.873,0.107,0.873,0.873,0.0206,0.0206,0.271,0.338,0,1 +1,0.405,0.656,0.656,0,0,0.87,0.87,0.87,0.016,0,0,0,0,0,0,0.0214,0.00284,0.0242,0.524,0.553,0.453,1,0.761,0.0729,0.761,0.761,0.0206,0.0206,0.151,0.188,0.333,1 +1,0.0495,0.556,0.556,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0.00887,0,0.00887,0.258,0.465,0.196,1,0.659,0.0393,0.659,0.659,0.0206,0.0206,0.151,0.188,1,1 +1,0.0495,0.445,0.445,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0806,1,0.446,0.0224,0.446,0.446,0.0206,0.0206,0.151,0.188,1,1 +1,0.0495,0.412,0.412,0,0,0.771,0.771,0.771,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0392,1,0.233,0.00561,0.233,0.233,0.0206,0.0206,0.183,0.228,1,1 +1,0.0495,0.412,0.412,0,0,0.752,0.752,0.752,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0196,1,0.193,0.00561,0.193,0.193,0.0206,0.0206,0.151,0.188,1,1 +1,0.0495,0.401,0.401,0,0,0.732,0.732,0.732,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0152,1,0.152,0.0112,0.152,0.152,0.0275,0.0275,0.183,0.228,1,1 +1,0.0503,0.367,0.367,0,0,0.712,0.712,0.712,0,0,0,0,0,0,0,0,0,0,0.294,0.469,0.024,1,0.162,0.0393,0.162,0.162,0.055,0.055,0.296,0.369,0.667,1 +0.667,0.0495,0.401,0.401,0,0,0.712,0.712,0.712,0,0,0,0,0,0,0,0.00269,0,0.00269,0.258,0.465,0.0392,1,0.183,0.0673,0.183,0.183,0.103,0.103,0.422,0.526,0.667,1 +0.667,0.139,0.478,0.478,0,0,0.752,0.752,0.752,0,0,0,0,0,0,0,0.0387,0,0.0387,0.331,0.494,0.0632,1,0.264,0.163,0.264,0.264,0.179,0.179,0.359,0.447,0.333,1 +0.667,0.284,0.523,0.523,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0.0269,0,0.0269,0.435,0.572,0.0871,1,0.335,0.258,0.335,0.335,0.302,0.302,0.151,0.188,0,1 +0.333,0.168,0.378,0.378,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0.0124,0.0199,0.0323,0.298,0.524,0.107,1,0.335,0.247,0.335,0.335,0.577,0.577,0.151,0.188,0,1 +0.333,0.164,0.256,0.256,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0.00284,0.00284,0.257,0.524,0.126,1,0.325,0.23,0.325,0.325,0.831,0.831,0.12,0.149,0,1 +0,0.0495,0.267,0.267,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0.017,0.017,0.258,0.465,0.142,1,0.335,0.247,0.335,0.335,0.873,0.873,0.0945,0.118,0,1 +0,0.0495,0.278,0.278,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.157,1,0.335,0.258,0.335,0.335,0.831,0.831,0.0882,0.11,0,1 +0,0.0495,0.267,0.267,0,0,0.831,0.831,0.831,0,0,0,0,0,0,0,0,0.017,0.017,0.258,0.465,0.166,1,0.325,0.236,0.325,0.325,0.824,0.824,0.0882,0.11,0,1 +0.333,0.0495,0.312,0.312,0,0,0.831,0.831,0.831,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.187,1,0.325,0.213,0.325,0.325,0.618,0.618,0.0882,0.11,0.333,1 +0.333,0.0495,0.345,0.345,0,0,0.831,0.831,0.831,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.198,1,0.325,0.275,0.325,0.325,0.515,0.515,0.151,0.188,0.333,1 +0.333,0.149,0.356,0.356,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0,0,0.29,0.539,0.222,1,0.335,0.331,0.335,0.335,0.419,0.419,0.365,0.455,0,1 +0.333,0.151,0.434,0.434,0,0,0.87,0.87,0.87,0,0,0,0,0,0,0,0,0,0,0.316,0.549,0.277,1,0.457,0.617,0.457,0.457,0.254,0.254,0.794,0.989,0,1 +0.333,0.157,0.59,0.59,0,0.0122,0.949,0.949,0.949,0,0,0,0,0,0,0,0,0,0,0.368,0.569,0.34,1,0.578,0.903,0.578,0.578,0.158,0.158,0.769,0.958,0,1 +0.667,0.296,0.701,0.701,0,0.0244,0.989,0.989,0.989,0,0,0,0,0,0,0,0,0.00284,0.00284,0.553,0.682,0.457,1,0.67,0.645,0.67,0.67,0.0893,0.0893,0.428,0.534,0,1 +1,0.523,0.745,0.745,0,0,0.949,0.949,0.949,0.0213,0.0478,0,0,0,0,0,0,0.00568,0.00568,0.745,0.745,0.64,1,0.771,0.393,0.771,0.771,0.055,0.055,0.384,0.479,0,1 +1,0.671,0.79,0.79,0,0,0.93,0.93,0.93,0.00194,0,0,0,0,0,0,0,0.00852,0.00852,0.79,0.701,0.791,1,0.822,0.247,0.822,0.822,0.0275,0.0275,0.321,0.4,0,1 +1,0.549,0.768,0.768,0,0,0.91,0.91,0.91,0,0,0,0,0,0,0.0374,0,0.0142,0.0516,0.598,0.602,0.749,1,0.873,0.107,0.873,0.873,0.0206,0.0206,0.271,0.338,0.333,1 +1,0.227,0.656,0.656,0,0,0.87,0.87,0.87,0,0,0,0,0,0,0.0187,0,0.00284,0.0216,0.391,0.509,0.453,1,0.761,0.0729,0.761,0.761,0.0206,0.0206,0.151,0.188,0.667,1 +1,0.0495,0.556,0.556,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0.00568,0.00568,0.258,0.465,0.196,1,0.659,0.0393,0.659,0.659,0.0206,0.0206,0.151,0.188,1,1 +1,0.0495,0.445,0.445,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0958,1,0.446,0.0224,0.446,0.446,0.0206,0.0206,0.151,0.188,1,1 +1,0.0495,0.412,0.412,0,0,0.771,0.771,0.771,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0479,1,0.233,0.00561,0.233,0.233,0.0206,0.0206,0.183,0.228,1,1 +1,0.0495,0.412,0.412,0,0,0.752,0.752,0.752,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0261,1,0.193,0.00561,0.193,0.193,0.0206,0.0206,0.151,0.188,1,1 +1,0.0495,0.401,0.401,0,0,0.732,0.732,0.732,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0174,1,0.152,0.0112,0.152,0.152,0.0275,0.0275,0.183,0.228,1,1 +1,0.0495,0.367,0.367,0,0,0.712,0.712,0.712,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.024,1,0.162,0.0393,0.162,0.162,0.055,0.055,0.296,0.369,1,1 +1,0.0495,0.401,0.401,0,0,0.712,0.712,0.712,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0305,1,0.183,0.0673,0.183,0.183,0.103,0.103,0.422,0.526,1,1 +0.667,0.0495,0.478,0.478,0,0,0.752,0.752,0.752,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0523,1,0.264,0.163,0.264,0.264,0.179,0.179,0.359,0.447,0.667,1 +0.667,0.0495,0.523,0.523,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0.0223,0,0.0223,0.258,0.465,0.0937,1,0.335,0.258,0.335,0.335,0.302,0.302,0.151,0.188,0.667,1 +1,0.168,0.378,0.378,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0.0328,0,0.0328,0.298,0.524,0.155,1,0.335,0.247,0.335,0.335,0.577,0.577,0.151,0.188,0.667,1 +1,0.278,0.256,0.256,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0.0257,0,0.0257,0.257,0.582,0.205,1,0.325,0.23,0.325,0.325,0.831,0.831,0.12,0.149,0.333,1 +1,0.27,0.267,0.267,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0.0217,0,0.0217,0.264,0.582,0.244,1,0.335,0.247,0.335,0.335,0.873,0.873,0.0945,0.118,0.333,1 +1,0.364,0.278,0.278,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0.00284,0.00284,0.278,0.656,0.268,1,0.335,0.258,0.335,0.335,0.831,0.831,0.0882,0.11,0,1 +0.667,0.251,0.267,0.267,0,0,0.831,0.831,0.831,0,0,0,0,0,0,0,0,0,0,0.264,0.602,0.288,1,0.325,0.236,0.325,0.325,0.824,0.824,0.0882,0.11,0,1 +1,0.349,0.312,0.312,0,0,0.831,0.831,0.831,0,0,0,0,0,0,0,0.0219,0.00568,0.0276,0.312,0.671,0.34,1,0.325,0.213,0.325,0.325,0.618,0.618,0.0882,0.11,0,1 +1,0.348,0.345,0.345,0,0,0.831,0.831,0.831,0,0,0,0,0,0,0.0601,0.0602,0.00852,0.129,0.345,0.656,0.388,1,0.325,0.275,0.325,0.325,0.515,0.515,0.151,0.188,0,1 +1,0.349,0.356,0.356,0,0,0.811,0.811,0.811,0,0,0.00868,0,0,0,0,0.03,0.0142,0.0442,0.356,0.686,0.427,1,0.335,0.331,0.335,0.335,0.419,0.419,0.365,0.455,0,1 +1,0.353,0.434,0.434,0,0.0366,0.87,0.87,0.87,0,0,0.0279,0.0112,0,0,0,0,0.00284,0.00284,0.434,0.715,0.449,1,0.457,0.617,0.457,0.457,0.254,0.254,0.794,0.989,0,1 +1,0.371,0.59,0.59,0,0,0.949,0.949,0.949,0,0,0.0318,0.00456,0.183,0.183,0,0,0.00284,0.00284,0.59,0.775,0.464,1,0.578,0.903,0.578,0.578,0.158,0.158,0.769,0.958,0,1 +1,0.42,0.701,0.701,0,0,0.989,0.989,0.989,0,0,0.0312,0,0,0,0,0,0,0,0.701,0.79,0.547,1,0.67,0.645,0.67,0.67,0.0893,0.0893,0.428,0.534,0,1 +1,0.523,0.745,0.745,0,0,0.949,0.949,0.949,0,0,0.0349,0,0,0,0,0,0.00284,0.00284,0.745,0.745,0.719,1,0.771,0.393,0.771,0.771,0.055,0.055,0.384,0.479,0,1 +1,0.671,0.79,0.79,0,0,0.93,0.93,0.93,0,0,0.0301,0,0,0,0,0,0.00852,0.00852,0.79,0.701,0.845,1,0.822,0.247,0.822,0.822,0.0275,0.0275,0.321,0.4,0,1 +1,0.799,0.768,0.768,0,0,0.91,0.91,0.91,0,0,0,0,0,0,0,0,0.00284,0.00284,0.768,0.671,0.78,1,0.873,0.107,0.873,0.873,0.0206,0.0206,0.271,0.338,0,1 +1,0.405,0.656,0.656,0,0.11,0.87,0.87,0.87,0,0,0,0,0,0,0,0.00272,0.00852,0.0112,0.524,0.553,0.492,1,0.761,0.0729,0.761,0.761,0.0206,0.0206,0.151,0.188,0.333,1 +1,0.183,0.556,0.556,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0.0299,0,0.0299,0.457,0.513,0.224,1,0.659,0.0393,0.659,0.659,0.0206,0.0206,0.151,0.188,0.333,1 +1,0.0743,0.445,0.445,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0.00284,0.00284,0.32,0.484,0.0958,1,0.446,0.0224,0.446,0.446,0.0206,0.0206,0.151,0.188,0.667,1 +1,0.0495,0.412,0.412,0,0,0.771,0.771,0.771,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0479,1,0.233,0.00561,0.233,0.233,0.0206,0.0206,0.183,0.228,1,1 +1,0.0495,0.412,0.412,0,0,0.752,0.752,0.752,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0261,1,0.193,0.00561,0.193,0.193,0.0206,0.0206,0.151,0.188,1,1 +1,0.0495,0.401,0.401,0,0,0.732,0.732,0.732,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0174,1,0.152,0.0112,0.152,0.152,0.0275,0.0275,0.183,0.228,1,1 +1,0.0495,0.367,0.367,0,0,0.712,0.712,0.712,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.024,1,0.162,0.0393,0.162,0.162,0.055,0.055,0.296,0.369,1,1 +1,0.0495,0.401,0.401,0,0,0.712,0.712,0.712,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0305,1,0.183,0.0673,0.183,0.183,0.103,0.103,0.422,0.526,1,1 +1,0.0495,0.478,0.478,0,0,0.752,0.752,0.752,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0523,1,0.264,0.163,0.264,0.264,0.179,0.179,0.359,0.447,1,1 +1,0.0495,0.523,0.523,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0.00271,0,0.00271,0.258,0.465,0.0937,1,0.335,0.258,0.335,0.335,0.302,0.302,0.151,0.188,1,1 +1,0.168,0.378,0.378,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0.0542,0,0.0542,0.298,0.524,0.155,1,0.335,0.247,0.335,0.335,0.577,0.577,0.151,0.188,0.667,1 +1,0.164,0.256,0.256,0,0.0731,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0,0,0.257,0.524,0.205,1,0.325,0.23,0.325,0.325,0.831,0.831,0.12,0.149,0.667,1 +1,0.27,0.267,0.267,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0,0,0.264,0.582,0.244,1,0.335,0.247,0.335,0.335,0.873,0.873,0.0945,0.118,0.333,1 +0.667,0.154,0.278,0.278,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0,0,0.265,0.529,0.268,1,0.335,0.258,0.335,0.335,0.831,0.831,0.0882,0.11,0.333,1 +0.667,0.251,0.267,0.267,0,0,0.831,0.831,0.831,0,0,0,0,0,0,0,0,0,0,0.264,0.602,0.288,1,0.325,0.236,0.325,0.325,0.824,0.824,0.0882,0.11,0,1 +0.667,0.249,0.312,0.312,0,0,0.831,0.831,0.831,0,0,0,0,0,0,0,0,0,0,0.294,0.602,0.34,1,0.325,0.213,0.325,0.325,0.618,0.618,0.0882,0.11,0,1 +0.333,0.149,0.345,0.345,0,0,0.831,0.831,0.831,0,0,0,0,0,0,0,0,0,0,0.287,0.529,0.388,1,0.325,0.275,0.325,0.325,0.515,0.515,0.151,0.188,0,1 +0.333,0.149,0.356,0.356,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0,0,0.29,0.539,0.427,1,0.335,0.331,0.335,0.335,0.419,0.419,0.365,0.455,0,1 +0.667,0.252,0.434,0.434,0,0.0366,0.87,0.87,0.87,0,0,0.0137,0,0,0,0,0,0.0114,0.0114,0.375,0.632,0.449,1,0.457,0.617,0.457,0.457,0.254,0.254,0.794,0.989,0,1 +1,0.371,0.59,0.59,0,0,0.949,0.949,0.949,0,0,0,0.0158,0,0,0,0,0.00852,0.00852,0.59,0.775,0.464,1,0.578,0.903,0.578,0.578,0.158,0.158,0.769,0.958,0,1 +1,0.42,0.701,0.701,0,0,0.989,0.989,0.989,0.024,0.0478,0,0,0.33,0.33,0,0,0.00568,0.00568,0.701,0.79,0.547,1,0.67,0.645,0.67,0.67,0.0893,0.0893,0.428,0.534,0,1 +0.667,0.365,0.745,0.745,0,0,0.949,0.949,0.949,0.011,0,0,0,0.0367,0.0367,0,0,0.00852,0.00852,0.583,0.652,0.719,1,0.771,0.393,0.771,0.771,0.055,0.055,0.384,0.479,0,1 +0.667,0.464,0.79,0.79,0,0,0.93,0.93,0.93,0,0,0,0,0,0,0,0,0.00284,0.00284,0.613,0.622,0.845,1,0.822,0.247,0.822,0.822,0.0275,0.0275,0.321,0.4,0,1 +1,0.799,0.768,0.768,0,0.0122,0.91,0.91,0.91,0,0,0,0,0,0,0,0.0232,0,0.0232,0.768,0.671,0.78,1,0.873,0.107,0.873,0.873,0.0206,0.0206,0.271,0.338,0,1 +1,0.582,0.656,0.656,0,0.0609,0.87,0.87,0.87,0,0,0,0,0,0,0,0,0.017,0.017,0.656,0.596,0.492,1,0.761,0.0729,0.761,0.761,0.0206,0.0206,0.151,0.188,0,1 +1,0.249,0.556,0.556,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0.00852,0.00852,0.556,0.537,0.224,1,0.659,0.0393,0.659,0.659,0.0206,0.0206,0.151,0.188,0,1 +1,0.099,0.445,0.445,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0,0,0.383,0.503,0.0806,1,0.446,0.0224,0.446,0.446,0.0206,0.0206,0.151,0.188,0.333,1 +1,0.066,0.412,0.412,0,0,0.771,0.771,0.771,0,0,0,0,0,0,0,0,0.00568,0.00568,0.36,0.483,0.0392,1,0.233,0.00561,0.233,0.233,0.0206,0.0206,0.183,0.228,0.333,1 +1,0.0495,0.412,0.412,0,0,0.752,0.752,0.752,0,0,0,0,0,0,0,0,0.00852,0.00852,0.258,0.465,0.0196,1,0.193,0.00561,0.193,0.193,0.0206,0.0206,0.151,0.188,1,1 +1,0.0495,0.401,0.401,0,0,0.732,0.732,0.732,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0152,1,0.152,0.0112,0.152,0.152,0.0275,0.0275,0.183,0.228,1,1 +1,0.0495,0.367,0.367,0,0,0.712,0.712,0.712,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.024,1,0.162,0.0393,0.162,0.162,0.055,0.055,0.296,0.369,1,1 +1,0.0781,0.401,0.401,0,0.0366,0.712,0.712,0.712,0,0,0,0,0,0,0,0,0,0,0.305,0.474,0.0392,1,0.183,0.0673,0.183,0.183,0.103,0.103,0.422,0.526,0.667,1 +1,0.139,0.478,0.478,0,0,0.752,0.752,0.752,0,0,0,0,0,0,0,0,0,0,0.331,0.494,0.0632,1,0.264,0.163,0.264,0.264,0.179,0.179,0.359,0.447,0.667,1 +0.667,0.167,0.523,0.523,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0.0356,0.014,0,0.0496,0.346,0.519,0.0871,1,0.335,0.258,0.335,0.335,0.302,0.302,0.151,0.188,0.333,1 +0.333,0.168,0.378,0.378,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0.0356,0.0241,0,0.0597,0.298,0.524,0.107,1,0.335,0.247,0.335,0.335,0.577,0.577,0.151,0.188,0,1 +0.333,0.164,0.256,0.256,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0.0232,0.0142,0.0374,0.257,0.524,0.126,1,0.325,0.23,0.325,0.325,0.831,0.831,0.12,0.149,0,1 +0.333,0.16,0.267,0.267,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0.0557,0.00284,0.0586,0.261,0.524,0.142,1,0.335,0.247,0.335,0.335,0.873,0.873,0.0945,0.118,0,1 +0.333,0.154,0.278,0.278,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0.00568,0.00568,0.265,0.529,0.157,1,0.335,0.258,0.335,0.335,0.831,0.831,0.0882,0.11,0,1 +0.333,0.15,0.267,0.267,0,0,0.831,0.831,0.831,0,0,0,0,0,0,0,0,0,0,0.261,0.534,0.166,1,0.325,0.236,0.325,0.325,0.824,0.824,0.0882,0.11,0,1 +0.333,0.149,0.312,0.312,0,0,0.831,0.831,0.831,0,0,0,0,0,0,0,0.0357,0.00284,0.0386,0.276,0.534,0.187,1,0.325,0.213,0.325,0.325,0.618,0.618,0.0882,0.11,0,1 +0.667,0.249,0.345,0.345,0,0.0731,0.831,0.831,0.831,0,0,0,0,0,0,0,0.0375,0.0142,0.0517,0.316,0.592,0.198,1,0.325,0.275,0.325,0.325,0.515,0.515,0.151,0.188,0,1 +0.333,0.149,0.356,0.356,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0,0,0.29,0.539,0.222,1,0.335,0.331,0.335,0.335,0.419,0.419,0.365,0.455,0,1 +0.333,0.151,0.434,0.434,0,0,0.87,0.87,0.87,0,0,0,0,0,0,0,0,0.0114,0.0114,0.316,0.549,0.277,1,0.457,0.617,0.457,0.457,0.254,0.254,0.794,0.989,0,1 +0.667,0.264,0.59,0.59,0,0,0.949,0.949,0.949,0,0,0,0,0,0,0,0,0.017,0.017,0.479,0.672,0.34,1,0.578,0.903,0.578,0.578,0.158,0.158,0.769,0.958,0,1 +1,0.42,0.701,0.701,0,0,0.989,0.989,0.989,0,0,0,0,0,0,0,0,0.00284,0.00284,0.701,0.79,0.457,1,0.67,0.645,0.67,0.67,0.0893,0.0893,0.428,0.534,0,1 +1,0.523,0.745,0.745,0,0,0.949,0.949,0.949,0,0,0,0,0,0,0,0,0,0,0.745,0.745,0.64,1,0.771,0.393,0.771,0.771,0.055,0.055,0.384,0.479,0,1 +1,0.671,0.79,0.79,0,0,0.93,0.93,0.93,0,0,0,0,0,0,0,0,0.00284,0.00284,0.79,0.701,0.791,1,0.822,0.247,0.822,0.822,0.0275,0.0275,0.321,0.4,0,1 +1,0.799,0.768,0.768,0,0,0.91,0.91,0.91,0,0,0,0,0,0,0,0,0.00568,0.00568,0.768,0.671,0.749,1,0.873,0.107,0.873,0.873,0.0206,0.0206,0.271,0.338,0,1 +1,0.405,0.656,0.656,0,0,0.87,0.87,0.87,0,0,0,0,0,0,0,0,0.0114,0.0114,0.524,0.553,0.453,1,0.761,0.0729,0.761,0.761,0.0206,0.0206,0.151,0.188,0.333,1 +0.667,0.0495,0.556,0.556,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.196,1,0.659,0.0393,0.659,0.659,0.0206,0.0206,0.151,0.188,0.667,1 +0.667,0.0495,0.445,0.445,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.465,0.0806,1,0.446,0.0224,0.446,0.446,0.0206,0.0206,0.151,0.188,0.667,1 +0.667,0.0495,0.412,0.412,0,0,0.771,0.771,0.771,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0392,1,0.233,0.00561,0.233,0.233,0.0206,0.0206,0.183,0.228,0.667,1 +0.667,0.0495,0.412,0.412,0,0,0.752,0.752,0.752,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0196,1,0.193,0.00561,0.193,0.193,0.0206,0.0206,0.151,0.188,0.667,1 +0.667,0.0495,0.401,0.401,0,0,0.732,0.732,0.732,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0152,1,0.152,0.0112,0.152,0.152,0.0275,0.0275,0.183,0.228,0.667,1 +1,0.0495,0.367,0.367,0,0,0.712,0.712,0.712,0,0,0,0,0,0,0,0.00251,0,0.00251,0.258,0.465,0.024,1,0.162,0.0393,0.162,0.162,0.055,0.055,0.296,0.369,1,1 +1,0.0781,0.401,0.401,0,0,0.712,0.712,0.712,0,0,0,0,0,0,0,0.0449,0,0.0449,0.305,0.474,0.0392,1,0.183,0.0673,0.183,0.183,0.103,0.103,0.422,0.526,0.667,1 +0.667,0.228,0.478,0.478,0,0,0.752,0.752,0.752,0,0,0,0,0,0,0.035,0.0585,0,0.0935,0.405,0.523,0.0632,1,0.264,0.163,0.264,0.264,0.179,0.179,0.359,0.447,0,1 +0.667,0.284,0.523,0.523,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0.0438,0.0268,0,0.0706,0.435,0.572,0.0871,1,0.335,0.258,0.335,0.335,0.302,0.302,0.151,0.188,0,1 +0.333,0.168,0.378,0.378,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0,0,0.298,0.524,0.107,1,0.335,0.247,0.335,0.335,0.577,0.577,0.151,0.188,0,1 +0.333,0.164,0.256,0.256,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0.017,0.017,0.257,0.524,0.126,1,0.325,0.23,0.325,0.325,0.831,0.831,0.12,0.149,0,1 +0.333,0.16,0.267,0.267,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0.00852,0.00852,0.261,0.524,0.142,1,0.335,0.247,0.335,0.335,0.873,0.873,0.0945,0.118,0,1 +0.333,0.154,0.278,0.278,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0.017,0.017,0.265,0.529,0.157,1,0.335,0.258,0.335,0.335,0.831,0.831,0.0882,0.11,0,1 +0.333,0.15,0.267,0.267,0,0,0.831,0.831,0.831,0,0,0,0,0,0,0,0,0,0,0.261,0.534,0.166,1,0.325,0.236,0.325,0.325,0.824,0.824,0.0882,0.11,0,1 +0.333,0.149,0.312,0.312,0,0,0.831,0.831,0.831,0,0,0,0,0,0,0,0,0,0,0.276,0.534,0.187,1,0.325,0.213,0.325,0.325,0.618,0.618,0.0882,0.11,0,1 +0.333,0.149,0.345,0.345,0,0,0.831,0.831,0.831,0,0,0,0,0,0,0,0,0.00284,0.00284,0.287,0.529,0.198,1,0.325,0.275,0.325,0.325,0.515,0.515,0.151,0.188,0,1 +0.333,0.149,0.356,0.356,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0.00284,0.00284,0.29,0.539,0.222,1,0.335,0.331,0.335,0.335,0.419,0.419,0.365,0.455,0,1 +0,0.0495,0.434,0.434,0,0,0.87,0.87,0.87,0,0,0,0,0,0,0,0,0.00568,0.00568,0.258,0.465,0.277,1,0.457,0.617,0.457,0.457,0.254,0.254,0.794,0.989,0,1 +0.333,0.157,0.59,0.59,0,0,0.949,0.949,0.949,0,0,0,0,0,0,0,0.00259,0.0227,0.0253,0.368,0.569,0.34,1,0.578,0.903,0.578,0.578,0.158,0.158,0.769,0.958,0,1 +0.667,0.296,0.701,0.701,0,0.0122,0.989,0.989,0.989,0,0,0,0,0,0,0,0.041,0,0.041,0.553,0.682,0.457,1,0.67,0.645,0.67,0.67,0.0893,0.0893,0.428,0.534,0,1 +1,0.523,0.745,0.745,0,0.0244,0.949,0.949,0.949,0,0,0,0,0,0,0,0,0.00568,0.00568,0.745,0.745,0.64,1,0.771,0.393,0.771,0.771,0.055,0.055,0.384,0.479,0,1 +1,0.671,0.79,0.79,0,0,0.93,0.93,0.93,0,0,0,0,0,0,0,0,0,0,0.79,0.701,0.791,1,0.822,0.247,0.822,0.822,0.0275,0.0275,0.321,0.4,0,1 +1,0.299,0.768,0.768,0,0,0.91,0.91,0.91,0,0,0,0,0,0,0,0,0.00568,0.00568,0.428,0.534,0.749,1,0.873,0.107,0.873,0.873,0.0206,0.0206,0.271,0.338,0.667,1 +1,0.0495,0.656,0.656,0,0,0.87,0.87,0.87,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.465,0.453,1,0.761,0.0729,0.761,0.761,0.0206,0.0206,0.151,0.188,1,1 +1,0.0495,0.556,0.556,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.196,1,0.659,0.0393,0.659,0.659,0.0206,0.0206,0.151,0.188,1,1 +1,0.0495,0.445,0.445,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0806,1,0.446,0.0224,0.446,0.446,0.0206,0.0206,0.151,0.188,1,1 +1,0.0495,0.412,0.412,0,0,0.771,0.771,0.771,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0392,1,0.233,0.00561,0.233,0.233,0.0206,0.0206,0.183,0.228,1,1 +1,0.0495,0.412,0.412,0,0,0.752,0.752,0.752,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0196,1,0.193,0.00561,0.193,0.193,0.0206,0.0206,0.151,0.188,1,1 +1,0.0495,0.401,0.401,0,0,0.732,0.732,0.732,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0152,1,0.152,0.0112,0.152,0.152,0.0275,0.0275,0.183,0.228,1,1 +1,0.0495,0.367,0.367,0,0,0.712,0.712,0.712,0,0,0,0,0,0,0,0.00242,0,0.00242,0.258,0.465,0.024,1,0.162,0.0393,0.162,0.162,0.055,0.055,0.296,0.369,1,1 +1,0.107,0.401,0.401,0,0,0.712,0.712,0.712,0,0,0,0,0,0,0,0.025,0,0.025,0.353,0.483,0.0392,1,0.183,0.0673,0.183,0.183,0.103,0.103,0.422,0.526,0.333,1 +1,0.317,0.478,0.478,0,0.0122,0.752,0.752,0.752,0,0,0,0,0,0,0,0.0143,0,0.0143,0.478,0.551,0.0632,1,0.264,0.163,0.264,0.264,0.179,0.179,0.359,0.447,0,1 +0.667,0.284,0.523,0.523,0,0.0244,0.791,0.791,0.791,0,0,0,0,0,0,0,0.0191,0,0.0191,0.435,0.572,0.0871,1,0.335,0.258,0.335,0.335,0.302,0.302,0.151,0.188,0,1 +0.667,0.286,0.378,0.378,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0.0184,0,0.0184,0.338,0.582,0.107,1,0.335,0.247,0.335,0.335,0.577,0.577,0.151,0.188,0,1 +0.667,0.278,0.256,0.256,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0.0119,0.00284,0.0148,0.257,0.582,0.126,1,0.325,0.23,0.325,0.325,0.831,0.831,0.12,0.149,0,1 +0.667,0.27,0.267,0.267,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0.054,0.00568,0.0597,0.264,0.582,0.142,1,0.335,0.247,0.335,0.335,0.873,0.873,0.0945,0.118,0,1 +0.667,0.259,0.278,0.278,0,0.0487,0.791,0.791,0.791,0,0,0,0,0,0,0,0.019,0.0114,0.0303,0.271,0.592,0.157,1,0.335,0.258,0.335,0.335,0.831,0.831,0.0882,0.11,0,1 +0.667,0.251,0.267,0.267,0,0.0244,0.831,0.831,0.831,0,0,0,0,0,0,0,0,0.00568,0.00568,0.264,0.602,0.166,1,0.325,0.236,0.325,0.325,0.824,0.824,0.0882,0.11,0,1 +0.333,0.149,0.312,0.312,0,0,0.831,0.831,0.831,0,0,0,0,0,0,0,0,0.00568,0.00568,0.276,0.534,0.187,1,0.325,0.213,0.325,0.325,0.618,0.618,0.0882,0.11,0,1 +0.333,0.149,0.345,0.345,0,0,0.831,0.831,0.831,0,0,0,0,0,0,0,0,0,0,0.287,0.529,0.198,1,0.325,0.275,0.325,0.325,0.515,0.515,0.151,0.188,0,1 +0.333,0.149,0.356,0.356,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0,0,0.29,0.539,0.222,1,0.335,0.331,0.335,0.335,0.419,0.419,0.365,0.455,0,1 +0,0.0495,0.434,0.434,0,0,0.87,0.87,0.87,0,0,0,0,0,0,0,0,0.00568,0.00568,0.258,0.465,0.277,1,0.457,0.617,0.457,0.457,0.254,0.254,0.794,0.989,0,1 +0.333,0.157,0.59,0.59,0,0.0366,0.949,0.949,0.949,0,0,0,0,0,0,0,0,0.00284,0.00284,0.368,0.569,0.34,1,0.578,0.903,0.578,0.578,0.158,0.158,0.769,0.958,0,1 +1,0.42,0.701,0.701,0,0,0.989,0.989,0.989,0,0,0,0,0,0,0,0,0,0,0.701,0.79,0.457,1,0.67,0.645,0.67,0.67,0.0893,0.0893,0.428,0.534,0,1 +1,0.523,0.745,0.745,0,0,0.949,0.949,0.949,0,0,0,0,0,0,0,0,0.00568,0.00568,0.745,0.745,0.64,1,0.771,0.393,0.771,0.771,0.055,0.055,0.384,0.479,0,1 +1,0.671,0.79,0.79,0,0,0.93,0.93,0.93,0,0,0,0,0,0,0,0.024,0,0.024,0.79,0.701,0.791,1,0.822,0.247,0.822,0.822,0.0275,0.0275,0.321,0.4,0,1 +1,0.799,0.768,0.768,0,0,0.91,0.91,0.91,0,0,0,0,0,0,0,0.00248,0.0255,0.028,0.768,0.671,0.749,1,0.873,0.107,0.873,0.873,0.0206,0.0206,0.271,0.338,0,1 +1,0.405,0.656,0.656,0,0,0.87,0.87,0.87,0,0,0,0,0,0,0,0.0198,0,0.0198,0.524,0.553,0.453,1,0.761,0.0729,0.761,0.761,0.0206,0.0206,0.151,0.188,0.333,1 +1,0.116,0.556,0.556,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0,0,0.357,0.489,0.196,1,0.659,0.0393,0.659,0.659,0.0206,0.0206,0.151,0.188,0.667,1 +1,0.0743,0.445,0.445,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0.00852,0.00852,0.32,0.484,0.0806,1,0.446,0.0224,0.446,0.446,0.0206,0.0206,0.151,0.188,0.667,1 +1,0.0495,0.412,0.412,0,0,0.771,0.771,0.771,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.465,0.0392,1,0.233,0.00561,0.233,0.233,0.0206,0.0206,0.183,0.228,1,1 +1,0.0495,0.412,0.412,0,0,0.752,0.752,0.752,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0196,1,0.193,0.00561,0.193,0.193,0.0206,0.0206,0.151,0.188,1,1 +1,0.0495,0.401,0.401,0,0,0.732,0.732,0.732,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0152,1,0.152,0.0112,0.152,0.152,0.0275,0.0275,0.183,0.228,1,1 +1,0.0495,0.367,0.367,0,0,0.712,0.712,0.712,0,0,0,0,0,0,0,0.00261,0,0.00261,0.258,0.465,0.024,1,0.162,0.0393,0.162,0.162,0.055,0.055,0.296,0.369,1,1 +1,0.0781,0.401,0.401,0,0,0.712,0.712,0.712,0,0,0,0,0,0,0,0.0233,0,0.0233,0.305,0.474,0.0392,1,0.183,0.0673,0.183,0.183,0.103,0.103,0.422,0.526,0.667,1 +0.667,0.139,0.478,0.478,0,0.0122,0.752,0.752,0.752,0,0,0.024,0,0,0,0,0.017,0,0.017,0.331,0.494,0.0632,1,0.264,0.163,0.264,0.264,0.179,0.179,0.359,0.447,0.333,1 +0.667,0.167,0.523,0.523,0,0.0244,0.791,0.791,0.791,0,0,0,0.0158,0,0,0,0.00269,0,0.00269,0.346,0.519,0.0871,1,0.335,0.258,0.335,0.335,0.302,0.302,0.151,0.188,0.333,1 +0.333,0.168,0.378,0.378,0,0,0.811,0.811,0.811,0,0,0,0,0.33,0.33,0,0.0108,0,0.0108,0.298,0.524,0.107,1,0.335,0.247,0.335,0.335,0.577,0.577,0.151,0.188,0,1 +0.333,0.164,0.256,0.256,0,0,0.811,0.811,0.811,0,0,0,0,0.0367,0.0367,0,0,0,0,0.257,0.524,0.126,1,0.325,0.23,0.325,0.325,0.831,0.831,0.12,0.149,0,1 +0.667,0.27,0.267,0.267,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0.0026,0.0255,0.0282,0.264,0.582,0.142,1,0.335,0.247,0.335,0.335,0.873,0.873,0.0945,0.118,0,1 +0.667,0.259,0.278,0.278,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0.0182,0,0.0182,0.271,0.592,0.157,1,0.335,0.258,0.335,0.335,0.831,0.831,0.0882,0.11,0,1 +0.333,0.15,0.267,0.267,0,0,0.831,0.831,0.831,0,0,0,0,0,0,0,0,0,0,0.261,0.534,0.166,1,0.325,0.236,0.325,0.325,0.824,0.824,0.0882,0.11,0,1 +0.333,0.149,0.312,0.312,0,0,0.831,0.831,0.831,0,0,0,0,0,0,0,0,0,0,0.276,0.534,0.187,1,0.325,0.213,0.325,0.325,0.618,0.618,0.0882,0.11,0,1 +0.333,0.149,0.345,0.345,0,0,0.831,0.831,0.831,0,0,0,0,0,0,0,0,0.0199,0.0199,0.287,0.529,0.198,1,0.325,0.275,0.325,0.325,0.515,0.515,0.151,0.188,0,1 +0.333,0.149,0.356,0.356,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0,0,0.29,0.539,0.222,1,0.335,0.331,0.335,0.335,0.419,0.419,0.365,0.455,0,1 +0.667,0.252,0.434,0.434,0,0,0.87,0.87,0.87,0,0,0,0,0,0,0,0.0249,0.017,0.0419,0.375,0.632,0.277,1,0.457,0.617,0.457,0.457,0.254,0.254,0.794,0.989,0,1 +1,0.371,0.59,0.59,0,0.0366,0.949,0.949,0.949,0,0,0,0,0,0,0,0,0.00568,0.00568,0.59,0.775,0.34,1,0.578,0.903,0.578,0.578,0.158,0.158,0.769,0.958,0,1 +1,0.42,0.701,0.701,0,0,0.989,0.989,0.989,0,0,0,0,0,0,0,0,0.0199,0.0199,0.701,0.79,0.457,1,0.67,0.645,0.67,0.67,0.0893,0.0893,0.428,0.534,0,1 +1,0.523,0.745,0.745,0,0,0.949,0.949,0.949,0,0,0,0,0,0,0,0,0.00284,0.00284,0.745,0.745,0.64,1,0.771,0.393,0.771,0.771,0.055,0.055,0.384,0.479,0,1 +1,0.671,0.79,0.79,0,0,0.93,0.93,0.93,0,0,0,0,0,0,0,0.00616,0.00284,0.009,0.79,0.701,0.791,1,0.822,0.247,0.822,0.822,0.0275,0.0275,0.321,0.4,0,1 +1,0.549,0.768,0.768,0,0,0.91,0.91,0.91,0,0,0,0,0,0,0,0,0.0114,0.0114,0.598,0.602,0.749,1,0.873,0.107,0.873,0.873,0.0206,0.0206,0.271,0.338,0.333,1 +1,0.405,0.656,0.656,0,0,0.87,0.87,0.87,0,0,0,0,0,0,0,0,0.017,0.017,0.524,0.553,0.453,1,0.761,0.0729,0.761,0.761,0.0206,0.0206,0.151,0.188,0.333,1 +1,0.116,0.556,0.556,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0.00568,0.00568,0.357,0.489,0.196,1,0.659,0.0393,0.659,0.659,0.0206,0.0206,0.151,0.188,0.667,1 +1,0.0743,0.445,0.445,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0,0,0.32,0.484,0.0806,1,0.446,0.0224,0.446,0.446,0.0206,0.0206,0.151,0.188,0.667,1 +1,0.0578,0.412,0.412,0,0,0.771,0.771,0.771,0,0,0,0,0,0,0,0,0,0,0.309,0.474,0.0392,1,0.233,0.00561,0.233,0.233,0.0206,0.0206,0.183,0.228,0.667,1 +1,0.0495,0.412,0.412,0,0,0.752,0.752,0.752,0,0,0,0,0,0,0,0,0,0,0.309,0.469,0.0196,1,0.193,0.00561,0.193,0.193,0.0206,0.0206,0.151,0.188,0.667,1 +1,0.0495,0.401,0.401,0,0,0.732,0.732,0.732,0,0,0,0,0,0,0,0.0027,0,0.0027,0.305,0.464,0.0152,1,0.152,0.0112,0.152,0.152,0.0275,0.0275,0.183,0.228,0.667,1 +1,0.0511,0.367,0.367,0,0,0.712,0.712,0.712,0,0,0,0,0,0,0,0.031,0,0.031,0.331,0.473,0.024,1,0.162,0.0393,0.162,0.162,0.055,0.055,0.296,0.369,0.333,1 +0.667,0.0781,0.401,0.401,0,0,0.712,0.712,0.712,0,0,0,0,0,0,0,0.0252,0,0.0252,0.305,0.474,0.0392,1,0.183,0.0673,0.183,0.183,0.103,0.103,0.422,0.526,0.333,1 +0.667,0.139,0.478,0.478,0,0,0.752,0.752,0.752,0,0,0,0,0,0,0,0.0576,0.00568,0.0633,0.331,0.494,0.0632,1,0.264,0.163,0.264,0.264,0.179,0.179,0.359,0.447,0.333,1 +0.667,0.284,0.523,0.523,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0.00852,0.00852,0.435,0.572,0.0871,1,0.335,0.258,0.335,0.335,0.302,0.302,0.151,0.188,0,1 +0.333,0.168,0.378,0.378,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0.00568,0.00568,0.298,0.524,0.107,1,0.335,0.247,0.335,0.335,0.577,0.577,0.151,0.188,0,1 +0.333,0.164,0.256,0.256,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0.00852,0.00852,0.257,0.524,0.126,1,0.325,0.23,0.325,0.325,0.831,0.831,0.12,0.149,0,1 +0.333,0.0495,0.267,0.267,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0.0142,0.0142,0.258,0.465,0.142,1,0.335,0.247,0.335,0.335,0.873,0.873,0.0945,0.118,0.333,1 +0.333,0.0495,0.278,0.278,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0.00568,0.00568,0.258,0.465,0.157,1,0.335,0.258,0.335,0.335,0.831,0.831,0.0882,0.11,0.333,1 +0.333,0.0495,0.267,0.267,0,0,0.831,0.831,0.831,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.166,1,0.325,0.236,0.325,0.325,0.824,0.824,0.0882,0.11,0.333,1 +0.333,0.0495,0.312,0.312,0,0,0.831,0.831,0.831,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.465,0.187,1,0.325,0.213,0.325,0.325,0.618,0.618,0.0882,0.11,0.333,1 +0.333,0.0495,0.345,0.345,0,0,0.831,0.831,0.831,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.198,1,0.325,0.275,0.325,0.325,0.515,0.515,0.151,0.188,0.333,1 +0.333,0.149,0.356,0.356,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0,0,0.29,0.539,0.222,1,0.335,0.331,0.335,0.335,0.419,0.419,0.365,0.455,0,1 +0.667,0.252,0.434,0.434,0,0,0.87,0.87,0.87,0,0,0,0,0,0,0,0,0,0,0.375,0.632,0.277,1,0.457,0.617,0.457,0.457,0.254,0.254,0.794,0.989,0,1 +0.667,0.264,0.59,0.59,0,0,0.949,0.949,0.949,0,0,0,0,0,0,0,0,0,0,0.479,0.672,0.34,1,0.578,0.903,0.578,0.578,0.158,0.158,0.769,0.958,0,1 +1,0.42,0.701,0.701,0,0,0.989,0.989,0.989,0,0,0,0,0,0,0,0,0,0,0.701,0.79,0.457,1,0.67,0.645,0.67,0.67,0.0893,0.0893,0.428,0.534,0,1 +1,0.523,0.745,0.745,0,0,0.949,0.949,0.949,0,0,0,0,0,0,0,0,0.0114,0.0114,0.745,0.745,0.64,1,0.771,0.393,0.771,0.771,0.055,0.055,0.384,0.479,0,1 +1,0.671,0.79,0.79,0,0,0.93,0.93,0.93,0,0,0,0,0,0,0,0,0.00568,0.00568,0.79,0.701,0.791,1,0.822,0.247,0.822,0.822,0.0275,0.0275,0.321,0.4,0,1 +1,0.549,0.768,0.768,0,0,0.91,0.91,0.91,0,0,0,0,0,0,0,0,0.00568,0.00568,0.598,0.602,0.749,1,0.873,0.107,0.873,0.873,0.0206,0.0206,0.271,0.338,0.333,1 +1,0.405,0.656,0.656,0,0.0366,0.87,0.87,0.87,0,0,0,0,0,0,0,0.0106,0,0.0106,0.524,0.553,0.453,1,0.761,0.0729,0.761,0.761,0.0206,0.0206,0.151,0.188,0.333,1 +1,0.183,0.556,0.556,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0.00284,0.00284,0.457,0.513,0.196,1,0.659,0.0393,0.659,0.659,0.0206,0.0206,0.151,0.188,0.333,1 +1,0.0495,0.445,0.445,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0.00852,0.00852,0.258,0.465,0.0958,1,0.446,0.0224,0.446,0.446,0.0206,0.0206,0.151,0.188,1,1 +1,0.0495,0.412,0.412,0,0,0.771,0.771,0.771,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0479,1,0.233,0.00561,0.233,0.233,0.0206,0.0206,0.183,0.228,1,1 +1,0.0495,0.412,0.412,0,0,0.752,0.752,0.752,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0261,1,0.193,0.00561,0.193,0.193,0.0206,0.0206,0.151,0.188,1,1 +1,0.0495,0.401,0.401,0,0,0.732,0.732,0.732,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0174,1,0.152,0.0112,0.152,0.152,0.0275,0.0275,0.183,0.228,1,1 +1,0.0495,0.367,0.367,0,0,0.712,0.712,0.712,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.024,1,0.162,0.0393,0.162,0.162,0.055,0.055,0.296,0.369,1,1 +1,0.0495,0.401,0.401,0,0,0.712,0.712,0.712,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0305,1,0.183,0.0673,0.183,0.183,0.103,0.103,0.422,0.526,1,1 +1,0.0495,0.478,0.478,0,0,0.752,0.752,0.752,0,0,0,0,0,0,0,0.0172,0,0.0172,0.258,0.465,0.0523,1,0.264,0.163,0.264,0.264,0.179,0.179,0.359,0.447,1,1 +1,0.167,0.523,0.523,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0.0383,0,0.0383,0.346,0.519,0.0937,1,0.335,0.258,0.335,0.335,0.302,0.302,0.151,0.188,0.667,1 +0.667,0.0495,0.378,0.378,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.155,1,0.335,0.247,0.335,0.335,0.577,0.577,0.151,0.188,0.667,1 +0.667,0.0495,0.256,0.256,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.205,1,0.325,0.23,0.325,0.325,0.831,0.831,0.12,0.149,0.667,1 +0.667,0.16,0.267,0.267,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0.0114,0.0114,0.261,0.524,0.244,1,0.335,0.247,0.335,0.335,0.873,0.873,0.0945,0.118,0.333,1 +0.667,0.154,0.278,0.278,0,0.0487,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0,0,0.265,0.529,0.268,1,0.335,0.258,0.335,0.335,0.831,0.831,0.0882,0.11,0.333,1 +0.667,0.15,0.267,0.267,0,0.0244,0.831,0.831,0.831,0,0,0,0,0,0,0,0,0,0,0.261,0.534,0.288,1,0.325,0.236,0.325,0.325,0.824,0.824,0.0882,0.11,0.333,1 +0.333,0.149,0.312,0.312,0,0,0.831,0.831,0.831,0,0,0,0,0,0,0,0,0,0,0.276,0.534,0.34,1,0.325,0.213,0.325,0.325,0.618,0.618,0.0882,0.11,0,1 +0.667,0.249,0.345,0.345,0,0,0.831,0.831,0.831,0,0,0,0,0,0,0,0,0.0114,0.0114,0.316,0.592,0.388,1,0.325,0.275,0.325,0.325,0.515,0.515,0.151,0.188,0,1 +0.333,0.149,0.356,0.356,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0.00568,0.00568,0.29,0.539,0.427,1,0.335,0.331,0.335,0.335,0.419,0.419,0.365,0.455,0,1 +0.667,0.151,0.434,0.434,0,0,0.87,0.87,0.87,0,0,0,0,0,0,0,0.00238,0.00852,0.0109,0.316,0.549,0.449,1,0.457,0.617,0.457,0.457,0.254,0.254,0.794,0.989,0.333,1 +0.667,0.264,0.59,0.59,0,0,0.949,0.949,0.949,0,0,0,0,0,0,0,0.0388,0.00568,0.0445,0.479,0.672,0.464,1,0.578,0.903,0.578,0.578,0.158,0.158,0.769,0.958,0,1 +0.667,0.296,0.701,0.701,0,0,0.989,0.989,0.989,0,0,0,0,0,0,0,0.0453,0.00568,0.051,0.553,0.682,0.547,1,0.67,0.645,0.67,0.67,0.0893,0.0893,0.428,0.534,0,1 +0.667,0.365,0.745,0.745,0,0.0366,0.949,0.949,0.949,0,0,0,0,0,0,0,0.0165,0,0.0165,0.583,0.652,0.719,1,0.771,0.393,0.771,0.771,0.055,0.055,0.384,0.479,0,1 +0.667,0.464,0.79,0.79,0,0,0.93,0.93,0.93,0,0,0,0,0,0,0,0.0482,0.0114,0.0596,0.613,0.622,0.845,1,0.822,0.247,0.822,0.822,0.0275,0.0275,0.321,0.4,0,1 +1,0.799,0.768,0.768,0,0,0.91,0.91,0.91,0,0,0,0,0,0,0,0.0415,0,0.0415,0.768,0.671,0.78,1,0.873,0.107,0.873,0.873,0.0206,0.0206,0.271,0.338,0,1 +1,0.582,0.656,0.656,0,0,0.87,0.87,0.87,0,0,0,0,0,0,0,0,0.00568,0.00568,0.656,0.596,0.492,1,0.761,0.0729,0.761,0.761,0.0206,0.0206,0.151,0.188,0,1 +1,0.249,0.556,0.556,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0,0,0.556,0.537,0.224,1,0.659,0.0393,0.659,0.659,0.0206,0.0206,0.151,0.188,0,1 +1,0.0495,0.445,0.445,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0958,1,0.446,0.0224,0.446,0.446,0.0206,0.0206,0.151,0.188,1,1 +1,0.0495,0.412,0.412,0,0,0.771,0.771,0.771,0,0,0,0,0,0,0,0,0.0199,0.0199,0.258,0.465,0.0479,1,0.233,0.00561,0.233,0.233,0.0206,0.0206,0.183,0.228,1,1 +1,0.0495,0.412,0.412,0,0,0.752,0.752,0.752,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0261,1,0.193,0.00561,0.193,0.193,0.0206,0.0206,0.151,0.188,1,1 +1,0.0495,0.401,0.401,0,0,0.732,0.732,0.732,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0174,1,0.152,0.0112,0.152,0.152,0.0275,0.0275,0.183,0.228,1,1 +1,0.0495,0.367,0.367,0,0,0.712,0.712,0.712,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.024,1,0.162,0.0393,0.162,0.162,0.055,0.055,0.296,0.369,1,1 +1,0.0495,0.401,0.401,0,0,0.712,0.712,0.712,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0305,1,0.183,0.0673,0.183,0.183,0.103,0.103,0.422,0.526,1,1 +1,0.0495,0.478,0.478,0,0,0.752,0.752,0.752,0.00511,0.0175,0,0,0,0,0,0,0,0,0.258,0.465,0.0523,1,0.264,0.163,0.264,0.264,0.179,0.179,0.359,0.447,1,1 +1,0.167,0.523,0.523,0,0,0.791,0.791,0.791,0.0112,0.078,0,0,0,0,0,0,0,0,0.346,0.519,0.0937,1,0.335,0.258,0.335,0.335,0.302,0.302,0.151,0.188,0.667,1 +1,0.168,0.378,0.378,0,0.0122,0.811,0.811,0.811,0,0,0.0224,0,0,0,0,0,0,0,0.298,0.524,0.155,1,0.335,0.247,0.335,0.335,0.577,0.577,0.151,0.188,0.667,1 +0.667,0.278,0.256,0.256,0,0.0244,0.811,0.811,0.811,0,0,0.0427,0.0158,0,0,0,0,0,0,0.257,0.582,0.205,1,0.325,0.23,0.325,0.325,0.831,0.831,0.12,0.149,0,1 +0.667,0.27,0.267,0.267,0,0,0.791,0.791,0.791,0,0,0.05,0,0.33,0.33,0,0,0.00284,0.00284,0.264,0.582,0.244,1,0.335,0.247,0.335,0.335,0.873,0.873,0.0945,0.118,0,1 +0.667,0.259,0.278,0.278,0,0,0.791,0.791,0.791,0,0,0.0273,0,0.0367,0.0367,0,0,0,0,0.271,0.592,0.268,1,0.335,0.258,0.335,0.335,0.831,0.831,0.0882,0.11,0,1 +0.667,0.251,0.267,0.267,0,0,0.831,0.831,0.831,0,0,0.000292,0,0,0,0,0,0.00568,0.00568,0.264,0.602,0.288,1,0.325,0.236,0.325,0.325,0.824,0.824,0.0882,0.11,0,1 +0.667,0.249,0.312,0.312,0,0,0.831,0.831,0.831,0,0,0,0,0,0,0,0,0.0312,0.0312,0.294,0.602,0.34,1,0.325,0.213,0.325,0.325,0.618,0.618,0.0882,0.11,0,1 +0.667,0.249,0.345,0.345,0,0,0.831,0.831,0.831,0,0,0,0,0,0,0,0,0,0,0.316,0.592,0.388,1,0.325,0.275,0.325,0.325,0.515,0.515,0.151,0.188,0,1 +0.667,0.149,0.356,0.356,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0.00284,0.00284,0.29,0.539,0.427,1,0.335,0.331,0.335,0.335,0.419,0.419,0.365,0.455,0.333,1 +0.667,0.151,0.434,0.434,0,0.0122,0.87,0.87,0.87,0,0,0,0,0,0,0,0,0,0,0.316,0.549,0.449,1,0.457,0.617,0.457,0.457,0.254,0.254,0.794,0.989,0.333,1 +1,0.371,0.59,0.59,0,0.0975,0.949,0.949,0.949,0,0,0,0,0,0,0,0,0,0,0.59,0.775,0.464,1,0.578,0.903,0.578,0.578,0.158,0.158,0.769,0.958,0,1 +1,0.42,0.701,0.701,0,0,0.989,0.989,0.989,0,0,0,0,0,0,0,0,0.0284,0.0284,0.701,0.79,0.547,1,0.67,0.645,0.67,0.67,0.0893,0.0893,0.428,0.534,0,1 +1,0.523,0.745,0.745,0,0,0.949,0.949,0.949,0.00719,0.0414,0,0,0,0,0,0,0.0142,0.0142,0.745,0.745,0.719,1,0.771,0.393,0.771,0.771,0.055,0.055,0.384,0.479,0,1 +1,0.671,0.79,0.79,0,0,0.93,0.93,0.93,0.00938,0.0541,0,0,0,0,0,0,0.00284,0.00284,0.79,0.701,0.845,1,0.822,0.247,0.822,0.822,0.0275,0.0275,0.321,0.4,0,1 +1,0.799,0.768,0.768,0,0,0.91,0.91,0.91,0,0,0,0,0,0,0,0,0,0,0.768,0.671,0.78,1,0.873,0.107,0.873,0.873,0.0206,0.0206,0.271,0.338,0,1 +1,0.405,0.656,0.656,0,0,0.87,0.87,0.87,0,0,0,0,0,0,0,0.0189,0,0.0189,0.524,0.553,0.492,1,0.761,0.0729,0.761,0.761,0.0206,0.0206,0.151,0.188,0.333,1 +1,0.183,0.556,0.556,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0.0532,0,0.0532,0.457,0.513,0.224,1,0.659,0.0393,0.659,0.659,0.0206,0.0206,0.151,0.188,0.333,1 +1,0.0743,0.445,0.445,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0,0,0.32,0.484,0.0806,1,0.446,0.0224,0.446,0.446,0.0206,0.0206,0.151,0.188,0.667,1 +1,0.0578,0.412,0.412,0,0,0.771,0.771,0.771,0,0,0,0,0,0,0,0,0,0,0.309,0.474,0.0392,1,0.233,0.00561,0.233,0.233,0.0206,0.0206,0.183,0.228,0.667,1 +1,0.0495,0.412,0.412,0,0,0.752,0.752,0.752,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0196,1,0.193,0.00561,0.193,0.193,0.0206,0.0206,0.151,0.188,1,1 +1,0.0495,0.401,0.401,0,0,0.732,0.732,0.732,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0152,1,0.152,0.0112,0.152,0.152,0.0275,0.0275,0.183,0.228,1,1 +1,0.0495,0.367,0.367,0,0,0.712,0.712,0.712,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.024,1,0.162,0.0393,0.162,0.162,0.055,0.055,0.296,0.369,1,1 +1,0.0495,0.401,0.401,0,0,0.712,0.712,0.712,0,0,0,0,0,0,0,0.0219,0,0.0219,0.258,0.465,0.0392,1,0.183,0.0673,0.183,0.183,0.103,0.103,0.422,0.526,1,1 +1,0.139,0.478,0.478,0,0,0.752,0.752,0.752,0,0,0,0,0,0,0,0.00857,0,0.00857,0.331,0.494,0.0632,1,0.264,0.163,0.264,0.264,0.179,0.179,0.359,0.447,0.667,1 +0.667,0.167,0.523,0.523,0,0,0.791,0.791,0.791,0.00331,0.0175,0.00643,0,0,0,0,0.048,0,0.048,0.346,0.519,0.0871,1,0.335,0.258,0.335,0.335,0.302,0.302,0.151,0.188,0.333,1 +0.667,0.286,0.378,0.378,0,0,0.811,0.811,0.811,0.0133,0.078,0.0266,0.0112,0,0,0,0,0,0,0.338,0.582,0.107,1,0.335,0.247,0.335,0.335,0.577,0.577,0.151,0.188,0,1 +0.333,0.164,0.256,0.256,0,0,0.811,0.811,0.811,0,0,0.0238,0.00982,0.147,0.147,0,0,0.00284,0.00284,0.257,0.524,0.126,1,0.325,0.23,0.325,0.325,0.831,0.831,0.12,0.149,0,1 +0.333,0.16,0.267,0.267,0,0,0.791,0.791,0.791,0,0,0.0277,0,0.367,0.367,0,0,0.017,0.017,0.261,0.524,0.142,1,0.335,0.247,0.335,0.335,0.873,0.873,0.0945,0.118,0,1 +0.333,0.154,0.278,0.278,0,0,0.791,0.791,0.791,0,0,0.0234,0,0.22,0.22,0,0,0.00284,0.00284,0.265,0.529,0.157,1,0.335,0.258,0.335,0.335,0.831,0.831,0.0882,0.11,0,1 +0.333,0.15,0.267,0.267,0,0,0.831,0.831,0.831,0,0,0.0261,0,0,0,0,0,0,0,0.261,0.534,0.166,1,0.325,0.236,0.325,0.325,0.824,0.824,0.0882,0.11,0,1 +0.333,0.149,0.312,0.312,0,0,0.831,0.831,0.831,0,0,0.0182,0,0,0,0,0,0,0,0.276,0.534,0.187,1,0.325,0.213,0.325,0.325,0.618,0.618,0.0882,0.11,0,1 +0.333,0.149,0.345,0.345,0,0,0.831,0.831,0.831,0,0,0.04,0,0,0,0,0,0,0,0.287,0.529,0.198,1,0.325,0.275,0.325,0.325,0.515,0.515,0.151,0.188,0,1 +0.333,0.149,0.356,0.356,0,0,0.811,0.811,0.811,0,0,0.00419,0,0,0,0,0,0.00284,0.00284,0.29,0.539,0.222,1,0.335,0.331,0.335,0.335,0.419,0.419,0.365,0.455,0,1 +0,0.0495,0.434,0.434,0,0,0.87,0.87,0.87,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.465,0.277,1,0.457,0.617,0.457,0.457,0.254,0.254,0.794,0.989,0,1 +0.667,0.264,0.59,0.59,0,0.0366,0.949,0.949,0.949,0,0,0,0,0,0,0,0,0.00852,0.00852,0.479,0.672,0.34,1,0.578,0.903,0.578,0.578,0.158,0.158,0.769,0.958,0,1 +1,0.42,0.701,0.701,0,0,0.989,0.989,0.989,0,0,0,0,0,0,0,0,0.0114,0.0114,0.701,0.79,0.457,1,0.67,0.645,0.67,0.67,0.0893,0.0893,0.428,0.534,0,1 +1,0.523,0.745,0.745,0,0,0.949,0.949,0.949,0,0,0,0,0,0,0,0,0.00568,0.00568,0.745,0.745,0.64,1,0.771,0.393,0.771,0.771,0.055,0.055,0.384,0.479,0,1 +1,0.671,0.79,0.79,0,0,0.93,0.93,0.93,0,0,0,0,0,0,0,0,0.00284,0.00284,0.79,0.701,0.791,1,0.822,0.247,0.822,0.822,0.0275,0.0275,0.321,0.4,0,1 +1,0.799,0.768,0.768,0,0,0.91,0.91,0.91,0,0,0,0,0,0,0,0.013,0.00284,0.0158,0.768,0.671,0.749,1,0.873,0.107,0.873,0.873,0.0206,0.0206,0.271,0.338,0,1 +1,0.0495,0.656,0.656,0,0,0.87,0.87,0.87,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.465,0.453,1,0.761,0.0729,0.761,0.761,0.0206,0.0206,0.151,0.188,1,1 +1,0.0495,0.556,0.556,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.196,1,0.659,0.0393,0.659,0.659,0.0206,0.0206,0.151,0.188,1,1 +1,0.0495,0.445,0.445,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0806,1,0.446,0.0224,0.446,0.446,0.0206,0.0206,0.151,0.188,1,1 +1,0.0495,0.412,0.412,0,0,0.771,0.771,0.771,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0392,1,0.233,0.00561,0.233,0.233,0.0206,0.0206,0.183,0.228,1,1 +1,0.0495,0.412,0.412,0,0,0.752,0.752,0.752,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0196,1,0.193,0.00561,0.193,0.193,0.0206,0.0206,0.151,0.188,1,1 +1,0.0495,0.401,0.401,0,0,0.732,0.732,0.732,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0152,1,0.152,0.0112,0.152,0.152,0.0275,0.0275,0.183,0.228,1,1 +1,0.0495,0.367,0.367,0,0,0.712,0.712,0.712,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.024,1,0.162,0.0393,0.162,0.162,0.055,0.055,0.296,0.369,1,1 +1,0.0495,0.401,0.401,0,0,0.712,0.712,0.712,0,0,0,0,0,0,0,0.0052,0,0.0052,0.258,0.465,0.0392,1,0.183,0.0673,0.183,0.183,0.103,0.103,0.422,0.526,1,1 +1,0.228,0.478,0.478,0,0,0.752,0.752,0.752,0,0,0,0,0,0,0,0.0543,0,0.0543,0.405,0.523,0.0632,1,0.264,0.163,0.264,0.264,0.179,0.179,0.359,0.447,0.333,1 +0.667,0.167,0.523,0.523,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0,0,0.346,0.519,0.0871,1,0.335,0.258,0.335,0.335,0.302,0.302,0.151,0.188,0.333,1 +0.333,0.0495,0.378,0.378,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.107,1,0.335,0.247,0.335,0.335,0.577,0.577,0.151,0.188,0.333,1 +0.333,0.164,0.256,0.256,0,0,0.811,0.811,0.811,0,0,0.0199,0,0,0,0,0,0,0,0.257,0.524,0.126,1,0.325,0.23,0.325,0.325,0.831,0.831,0.12,0.149,0,1 +0.333,0.16,0.267,0.267,0,0,0.791,0.791,0.791,0,0,0.0354,0.0158,0,0,0,0,0,0,0.261,0.524,0.142,1,0.335,0.247,0.335,0.335,0.873,0.873,0.0945,0.118,0,1 +0.667,0.259,0.278,0.278,0,0,0.791,0.791,0.791,0,0,0.0489,0,0.33,0.33,0,0,0.00568,0.00568,0.271,0.592,0.157,1,0.335,0.258,0.335,0.335,0.831,0.831,0.0882,0.11,0,1 +0.667,0.251,0.267,0.267,0,0,0.831,0.831,0.831,0,0,0.0404,0,0.0367,0.0367,0,0,0.00568,0.00568,0.264,0.602,0.166,1,0.325,0.236,0.325,0.325,0.824,0.824,0.0882,0.11,0,1 +0.333,0.149,0.312,0.312,0,0,0.831,0.831,0.831,0,0,0.0294,0,0,0,0,0,0.0114,0.0114,0.276,0.534,0.187,1,0.325,0.213,0.325,0.325,0.618,0.618,0.0882,0.11,0,1 +0.333,0.149,0.345,0.345,0,0,0.831,0.831,0.831,0,0,0,0,0,0,0,0,0.0142,0.0142,0.287,0.529,0.198,1,0.325,0.275,0.325,0.325,0.515,0.515,0.151,0.188,0,1 +0.333,0.149,0.356,0.356,0,0,0.811,0.811,0.811,0,0,0.000585,0,0,0,0,0,0.00852,0.00852,0.29,0.539,0.222,1,0.335,0.331,0.335,0.335,0.419,0.419,0.365,0.455,0,1 +0.667,0.252,0.434,0.434,0,0,0.87,0.87,0.87,0,0,0,0.0158,0,0,0,0,0.00284,0.00284,0.375,0.632,0.277,1,0.457,0.617,0.457,0.457,0.254,0.254,0.794,0.989,0,1 +0.667,0.264,0.59,0.59,0,0.0366,0.949,0.949,0.949,0,0,0,0,0.33,0.33,0,0.0287,0.00284,0.0315,0.479,0.672,0.34,1,0.578,0.903,0.578,0.578,0.158,0.158,0.769,0.958,0,1 +1,0.42,0.701,0.701,0,0,0.989,0.989,0.989,0,0,0.0303,0.000702,0.0367,0.0367,0,0.0127,0.00284,0.0155,0.701,0.79,0.457,1,0.67,0.645,0.67,0.67,0.0893,0.0893,0.428,0.534,0,1 +1,0.523,0.745,0.745,0,0,0.949,0.949,0.949,0,0,0.0181,0.0151,0.055,0.055,0,0,0.00284,0.00284,0.745,0.745,0.64,1,0.771,0.393,0.771,0.771,0.055,0.055,0.384,0.479,0,1 +1,0.671,0.79,0.79,0,0,0.93,0.93,0.93,0,0,0,0,0.367,0.367,0,0,0,0,0.79,0.701,0.791,1,0.822,0.247,0.822,0.822,0.0275,0.0275,0.321,0.4,0,1 +1,0.549,0.768,0.768,0,0,0.91,0.91,0.91,0,0,0,0,0.0367,0.0367,0,0,0.0114,0.0114,0.598,0.602,0.749,1,0.873,0.107,0.873,0.873,0.0206,0.0206,0.271,0.338,0.333,1 +1,0.405,0.656,0.656,0,0,0.87,0.87,0.87,0,0,0,0,0,0,0,0,0,0,0.524,0.553,0.453,1,0.761,0.0729,0.761,0.761,0.0206,0.0206,0.151,0.188,0.333,1 +1,0.116,0.556,0.556,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0,0,0.357,0.489,0.196,1,0.659,0.0393,0.659,0.659,0.0206,0.0206,0.151,0.188,0.667,1 +1,0.0495,0.445,0.445,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0806,1,0.446,0.0224,0.446,0.446,0.0206,0.0206,0.151,0.188,1,1 +1,0.0495,0.412,0.412,0,0,0.771,0.771,0.771,0,0,0,0,0,0,0,0,0.00568,0.00568,0.258,0.465,0.0392,1,0.233,0.00561,0.233,0.233,0.0206,0.0206,0.183,0.228,1,1 +1,0.0495,0.412,0.412,0,0,0.752,0.752,0.752,0,0,0,0,0,0,0,0,0.00852,0.00852,0.258,0.465,0.0196,1,0.193,0.00561,0.193,0.193,0.0206,0.0206,0.151,0.188,1,1 +1,0.0495,0.401,0.401,0,0,0.732,0.732,0.732,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0152,1,0.152,0.0112,0.152,0.152,0.0275,0.0275,0.183,0.228,1,1 +1,0.0495,0.367,0.367,0,0,0.712,0.712,0.712,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.024,1,0.162,0.0393,0.162,0.162,0.055,0.055,0.296,0.369,1,1 +1,0.0495,0.401,0.401,0,0,0.712,0.712,0.712,0,0,0,0,0,0,0,0.0244,0,0.0244,0.258,0.465,0.0392,1,0.183,0.0673,0.183,0.183,0.103,0.103,0.422,0.526,1,1 +1,0.228,0.478,0.478,0,0,0.752,0.752,0.752,0,0,0,0,0,0,0,0.0242,0,0.0242,0.405,0.523,0.0632,1,0.264,0.163,0.264,0.264,0.179,0.179,0.359,0.447,0.333,1 +0.667,0.284,0.523,0.523,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0.0568,0,0.0568,0.435,0.572,0.0871,1,0.335,0.258,0.335,0.335,0.302,0.302,0.151,0.188,0,1 +0.667,0.286,0.378,0.378,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0.0556,0.0183,0,0.074,0.338,0.582,0.107,1,0.335,0.247,0.335,0.335,0.577,0.577,0.151,0.188,0,1 +0.333,0.164,0.256,0.256,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0.00568,0.00568,0.257,0.524,0.126,1,0.325,0.23,0.325,0.325,0.831,0.831,0.12,0.149,0,1 +0.333,0.16,0.267,0.267,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0,0,0.261,0.524,0.142,1,0.335,0.247,0.335,0.335,0.873,0.873,0.0945,0.118,0,1 +0,0.0495,0.278,0.278,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.465,0.157,1,0.335,0.258,0.335,0.335,0.831,0.831,0.0882,0.11,0,1 +0,0.0495,0.267,0.267,0,0,0.831,0.831,0.831,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.465,0.166,1,0.325,0.236,0.325,0.325,0.824,0.824,0.0882,0.11,0,1 +0.333,0.149,0.312,0.312,0,0,0.831,0.831,0.831,0,0,0,0,0,0,0,0,0.00284,0.00284,0.276,0.534,0.187,1,0.325,0.213,0.325,0.325,0.618,0.618,0.0882,0.11,0,1 +0.333,0.149,0.345,0.345,0,0,0.831,0.831,0.831,0,0,0,0,0,0,0,0,0,0,0.287,0.529,0.198,1,0.325,0.275,0.325,0.325,0.515,0.515,0.151,0.188,0,1 +0.333,0.149,0.356,0.356,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0,0,0.29,0.539,0.222,1,0.335,0.331,0.335,0.335,0.419,0.419,0.365,0.455,0,1 +0.333,0.151,0.434,0.434,0,0,0.87,0.87,0.87,0,0,0,0,0,0,0,0,0,0,0.316,0.549,0.277,1,0.457,0.617,0.457,0.457,0.254,0.254,0.794,0.989,0,1 +0.333,0.157,0.59,0.59,0,0.0366,0.949,0.949,0.949,0,0,0,0,0,0,0,0,0,0,0.368,0.569,0.34,1,0.578,0.903,0.578,0.578,0.158,0.158,0.769,0.958,0,1 +1,0.42,0.701,0.701,0,0,0.989,0.989,0.989,0,0,0,0,0,0,0,0,0.0255,0.0255,0.701,0.79,0.457,1,0.67,0.645,0.67,0.67,0.0893,0.0893,0.428,0.534,0,1 +1,0.523,0.745,0.745,0,0,0.949,0.949,0.949,0,0,0,0,0,0,0,0.00258,0,0.00258,0.745,0.745,0.64,1,0.771,0.393,0.771,0.771,0.055,0.055,0.384,0.479,0,1 +1,0.671,0.79,0.79,0,0,0.93,0.93,0.93,0,0,0,0,0,0,0,0.0129,0.00852,0.0214,0.79,0.701,0.791,1,0.822,0.247,0.822,0.822,0.0275,0.0275,0.321,0.4,0,1 +1,0.799,0.768,0.768,0,0.0366,0.91,0.91,0.91,0,0,0,0,0,0,0,0.0356,0.00852,0.0441,0.768,0.671,0.749,1,0.873,0.107,0.873,0.873,0.0206,0.0206,0.271,0.338,0,1 +1,0.582,0.656,0.656,0,0,0.87,0.87,0.87,0.011,0.0478,0,0,0,0,0,0.0243,0.0114,0.0357,0.656,0.596,0.453,1,0.761,0.0729,0.761,0.761,0.0206,0.0206,0.151,0.188,0,1 +0.667,0.116,0.556,0.556,0,0,0.811,0.811,0.811,0.00713,0,0,0,0,0,0,0.0217,0.00284,0.0245,0.357,0.489,0.196,1,0.659,0.0393,0.659,0.659,0.0206,0.0206,0.151,0.188,0.333,1 +0.667,0.0495,0.445,0.445,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0806,1,0.446,0.0224,0.446,0.446,0.0206,0.0206,0.151,0.188,0.667,1 +1,0.0495,0.412,0.412,0,0,0.771,0.771,0.771,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0392,1,0.233,0.00561,0.233,0.233,0.0206,0.0206,0.183,0.228,1,1 +1,0.0495,0.412,0.412,0,0,0.752,0.752,0.752,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0196,1,0.193,0.00561,0.193,0.193,0.0206,0.0206,0.151,0.188,1,1 +1,0.0495,0.401,0.401,0,0,0.732,0.732,0.732,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0152,1,0.152,0.0112,0.152,0.152,0.0275,0.0275,0.183,0.228,1,1 +1,0.0495,0.367,0.367,0,0,0.712,0.712,0.712,0,0,0,0,0,0,0,0.0369,0,0.0369,0.258,0.465,0.024,1,0.162,0.0393,0.162,0.162,0.055,0.055,0.296,0.369,1,1 +0.667,0.0781,0.401,0.401,0,0,0.712,0.712,0.712,0,0,0,0,0,0,0,0.0217,0,0.0217,0.305,0.474,0.0392,1,0.183,0.0673,0.183,0.183,0.103,0.103,0.422,0.526,0.333,1 +0.667,0.139,0.478,0.478,0,0,0.752,0.752,0.752,0,0,0,0,0,0,0,0.0155,0,0.0155,0.331,0.494,0.0632,1,0.264,0.163,0.264,0.264,0.179,0.179,0.359,0.447,0.333,1 +0.333,0.0495,0.523,0.523,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0.00276,0,0.00276,0.258,0.465,0.0871,1,0.335,0.258,0.335,0.335,0.302,0.302,0.151,0.188,0.333,1 +0.667,0.168,0.378,0.378,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0.0478,0,0.0478,0.298,0.524,0.107,1,0.335,0.247,0.335,0.335,0.577,0.577,0.151,0.188,0.333,1 +0.667,0.278,0.256,0.256,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0.0254,0.00284,0.0282,0.257,0.582,0.126,1,0.325,0.23,0.325,0.325,0.831,0.831,0.12,0.149,0,1 +0.333,0.16,0.267,0.267,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0.00568,0.00568,0.261,0.524,0.142,1,0.335,0.247,0.335,0.335,0.873,0.873,0.0945,0.118,0,1 +0.333,0.154,0.278,0.278,0,0,0.791,0.791,0.791,0,0,0,0,0,0,0,0,0,0,0.265,0.529,0.157,1,0.335,0.258,0.335,0.335,0.831,0.831,0.0882,0.11,0,1 +0,0.0495,0.267,0.267,0,0,0.831,0.831,0.831,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.465,0.166,1,0.325,0.236,0.325,0.325,0.824,0.824,0.0882,0.11,0,1 +0,0.0495,0.312,0.312,0,0,0.831,0.831,0.831,0,0,0,0,0,0,0,0,0.00568,0.00568,0.258,0.465,0.187,1,0.325,0.213,0.325,0.325,0.618,0.618,0.0882,0.11,0,1 +0.333,0.149,0.345,0.345,0,0,0.831,0.831,0.831,0,0,0,0,0,0,0,0,0.0114,0.0114,0.287,0.529,0.198,1,0.325,0.275,0.325,0.325,0.515,0.515,0.151,0.188,0,1 +0.333,0.149,0.356,0.356,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0.00265,0.00852,0.0112,0.29,0.539,0.222,1,0.335,0.331,0.335,0.335,0.419,0.419,0.365,0.455,0,1 +0.667,0.252,0.434,0.434,0,0,0.87,0.87,0.87,0,0,0,0,0,0,0,0.0352,0,0.0352,0.375,0.632,0.277,1,0.457,0.617,0.457,0.457,0.254,0.254,0.794,0.989,0,1 +0.667,0.264,0.59,0.59,0,0.0122,0.949,0.949,0.949,0,0,0,0,0,0,0,0.0212,0,0.0212,0.479,0.672,0.34,1,0.578,0.903,0.578,0.578,0.158,0.158,0.769,0.958,0,1 +1,0.42,0.701,0.701,0,0.0244,0.989,0.989,0.989,0,0,0,0,0,0,0,0.0356,0.00568,0.0413,0.701,0.79,0.457,1,0.67,0.645,0.67,0.67,0.0893,0.0893,0.428,0.534,0,1 +1,0.523,0.745,0.745,0,0,0.949,0.949,0.949,0,0,0,0,0,0,0,0.0416,0.00284,0.0444,0.745,0.745,0.64,1,0.771,0.393,0.771,0.771,0.055,0.055,0.384,0.479,0,1 +1,0.671,0.79,0.79,0,0,0.93,0.93,0.93,0,0,0,0,0,0,0,0.0163,0.00568,0.022,0.79,0.701,0.791,1,0.822,0.247,0.822,0.822,0.0275,0.0275,0.321,0.4,0,1 +1,0.799,0.768,0.768,0,0,0.91,0.91,0.91,0,0,0,0,0,0,0,0.0194,0.0114,0.0307,0.768,0.671,0.749,1,0.873,0.107,0.873,0.873,0.0206,0.0206,0.271,0.338,0,1 +1,0.405,0.656,0.656,0,0,0.87,0.87,0.87,0,0,0,0,0,0,0,0,0.0199,0.0199,0.524,0.553,0.453,1,0.761,0.0729,0.761,0.761,0.0206,0.0206,0.151,0.188,0.333,1 +1,0.116,0.556,0.556,0,0,0.811,0.811,0.811,0,0,0,0,0,0,0,0,0,0,0.357,0.489,0.196,1,0.659,0.0393,0.659,0.659,0.0206,0.0206,0.151,0.188,0.667,1 +1,0.0743,0.371,0.371,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0,0,0.295,0.455,0.0833,1,0.391,0.0202,0.391,0.391,0.0181,0.0181,0.19,0.19,0.667,1 +1,0.0495,0.343,0.343,0,0,0.78,0.78,0.78,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0405,1,0.205,0.00504,0.205,0.205,0.0181,0.0181,0.23,0.23,1,1 +1,0.0495,0.343,0.343,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0203,1,0.169,0.00504,0.169,0.169,0.0181,0.0181,0.19,0.19,1,1 +1,0.0495,0.334,0.334,0,0,0.74,0.74,0.74,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0158,1,0.133,0.0101,0.133,0.133,0.0241,0.0241,0.23,0.23,1,1 +0.667,0.0495,0.306,0.306,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0248,1,0.142,0.0353,0.142,0.142,0.0482,0.0482,0.373,0.373,0.667,1 +0.667,0.0495,0.334,0.334,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0.00243,0,0.00243,0.258,0.465,0.0405,1,0.16,0.0605,0.16,0.16,0.0903,0.0903,0.532,0.532,0.667,1 +0.667,0.136,0.398,0.398,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0.0515,0,0.0515,0.305,0.463,0.0653,1,0.231,0.146,0.231,0.231,0.157,0.157,0.452,0.452,0.333,1 +1,0.277,0.436,0.436,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0.0926,0.0428,0,0.135,0.376,0.503,0.09,1,0.293,0.232,0.293,0.293,0.265,0.265,0.19,0.19,0.333,1 +0.667,0.274,0.315,0.315,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0.0462,0,0.0462,0.296,0.511,0.11,1,0.293,0.222,0.293,0.293,0.506,0.506,0.19,0.19,0,1 +0.333,0.156,0.213,0.213,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0.0414,0,0.0414,0.243,0.488,0.131,1,0.285,0.207,0.285,0.285,0.729,0.729,0.151,0.151,0,1 +0,0.0495,0.222,0.222,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.146,1,0.293,0.222,0.293,0.293,0.765,0.765,0.119,0.119,0,1 +0,0.0495,0.232,0.232,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0.00568,0.00568,0.258,0.465,0.162,1,0.293,0.232,0.293,0.293,0.729,0.729,0.111,0.111,0,1 +0,0.0495,0.222,0.222,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.465,0.171,1,0.285,0.212,0.285,0.285,0.723,0.723,0.111,0.111,0,1 +0,0.0495,0.259,0.259,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0.0227,0.0227,0.258,0.465,0.194,1,0.285,0.191,0.285,0.285,0.542,0.542,0.111,0.111,0,1 +0.333,0.142,0.287,0.287,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0,0,0.268,0.492,0.205,1,0.285,0.247,0.285,0.285,0.452,0.452,0.19,0.19,0,1 +0.333,0.142,0.297,0.297,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0,0,0.271,0.501,0.23,1,0.293,0.297,0.293,0.293,0.367,0.367,0.46,0.46,0,1 +0.333,0.144,0.361,0.361,0,0,0.88,0.88,0.88,0,0,0,0,0,0,0,0,0,0,0.292,0.509,0.286,1,0.4,0.554,0.4,0.4,0.223,0.223,1,1,0,1 +0.333,0.148,0.491,0.491,0,0,0.96,0.96,0.96,0,0,0,0,0,0,0,0,0.00284,0.00284,0.336,0.525,0.351,1,0.507,0.811,0.507,0.507,0.139,0.139,0.968,0.968,0,1 +1,0.384,0.584,0.584,0,0,1,1,1,0,0,0,0,0,0,0,0,0.0114,0.0114,0.584,0.658,0.473,1,0.587,0.58,0.587,0.587,0.0783,0.0783,0.54,0.54,0,1 +1,0.467,0.621,0.621,0,0,0.96,0.96,0.96,0,0,0,0,0,0,0,0,0.00568,0.00568,0.621,0.621,0.662,1,0.676,0.353,0.676,0.676,0.0482,0.0482,0.484,0.484,0,1 +1,0.413,0.658,0.658,0,0,0.94,0.94,0.94,0,0,0,0,0,0,0,0,0.00852,0.00852,0.525,0.544,0.817,1,0.72,0.222,0.72,0.72,0.0241,0.0241,0.405,0.405,0.333,1 +1,0.275,0.639,0.639,0,0,0.92,0.92,0.92,0,0,0,0,0,0,0,0,0,0,0.385,0.496,0.774,1,0.765,0.0957,0.765,0.765,0.0181,0.0181,0.341,0.341,0.667,1 +1,0.0495,0.547,0.547,0,0,0.88,0.88,0.88,0,0,0,0,0,0,0,0,0.0142,0.0142,0.258,0.465,0.468,1,0.667,0.0655,0.667,0.667,0.0181,0.0181,0.19,0.19,1,1 +1,0.0495,0.463,0.463,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.203,1,0.578,0.0353,0.578,0.578,0.0181,0.0181,0.19,0.19,1,1 +1,0.0495,0.371,0.371,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.465,0.099,1,0.391,0.0202,0.391,0.391,0.0181,0.0181,0.19,0.19,1,1 +1,0.0495,0.343,0.343,0,0,0.78,0.78,0.78,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.465,0.0495,1,0.205,0.00504,0.205,0.205,0.0181,0.0181,0.23,0.23,1,1 +1,0.0495,0.343,0.343,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.027,1,0.169,0.00504,0.169,0.169,0.0181,0.0181,0.19,0.19,1,1 +1,0.0495,0.334,0.334,0,0,0.74,0.74,0.74,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.018,1,0.133,0.0101,0.133,0.133,0.0241,0.0241,0.23,0.23,1,1 +1,0.0495,0.306,0.306,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0248,1,0.142,0.0353,0.142,0.142,0.0482,0.0482,0.373,0.373,1,1 +1,0.0495,0.334,0.334,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0315,1,0.16,0.0605,0.16,0.16,0.0903,0.0903,0.532,0.532,1,1 +1,0.136,0.398,0.398,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0,0,0,0.305,0.463,0.054,1,0.231,0.146,0.231,0.231,0.157,0.157,0.452,0.452,0.667,1 +1,0.277,0.436,0.436,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0,0,0.376,0.503,0.0968,1,0.293,0.232,0.293,0.293,0.265,0.265,0.19,0.19,0.333,1 +0.667,0.274,0.315,0.315,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0,0,0.296,0.511,0.16,1,0.293,0.222,0.293,0.293,0.506,0.506,0.19,0.19,0,1 +0.667,0.263,0.213,0.213,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0.00568,0.00568,0.228,0.511,0.212,1,0.285,0.207,0.285,0.285,0.729,0.729,0.151,0.151,0,1 +0.667,0.256,0.222,0.222,0,0.0731,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0.00852,0.00852,0.234,0.511,0.252,1,0.293,0.222,0.293,0.293,0.765,0.765,0.119,0.119,0,1 +0.667,0.245,0.232,0.232,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0,0,0.24,0.519,0.277,1,0.293,0.232,0.293,0.293,0.729,0.729,0.111,0.111,0,1 +0.667,0.237,0.222,0.222,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0.0114,0.0114,0.234,0.528,0.297,1,0.285,0.212,0.285,0.285,0.723,0.723,0.111,0.111,0,1 +0.667,0.235,0.259,0.259,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0.00852,0.00852,0.259,0.528,0.351,1,0.285,0.191,0.285,0.285,0.542,0.542,0.111,0.111,0,1 +0.667,0.235,0.287,0.287,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0,0,0.277,0.519,0.401,1,0.285,0.247,0.285,0.285,0.452,0.452,0.19,0.19,0,1 +0.667,0.235,0.297,0.297,0,0.0366,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0.00568,0.00568,0.284,0.536,0.441,1,0.293,0.297,0.293,0.293,0.367,0.367,0.46,0.46,0,1 +0.667,0.238,0.361,0.361,0,0,0.88,0.88,0.88,0,0,0,0,0,0,0,0,0,0,0.327,0.552,0.464,1,0.4,0.554,0.4,0.4,0.223,0.223,1,1,0,1 +1,0.247,0.491,0.491,0,0,0.96,0.96,0.96,0,0,0.0239,0.00596,0,0,0,0,0.0255,0.0255,0.413,0.585,0.479,1,0.507,0.811,0.507,0.507,0.139,0.139,0.968,0.968,0.333,1 +1,0.384,0.584,0.584,0,0,1,1,1,0,0,0,0.00982,0.147,0.147,0,0.00255,0.00568,0.00823,0.584,0.658,0.565,1,0.587,0.58,0.587,0.587,0.0783,0.0783,0.54,0.54,0,1 +1,0.467,0.621,0.621,0,0,0.96,0.96,0.96,0,0,0,0,0.0367,0.0367,0,0.00766,0.00852,0.0162,0.621,0.621,0.743,1,0.676,0.353,0.676,0.676,0.0482,0.0482,0.484,0.484,0,1 +0.667,0.413,0.658,0.658,0,0,0.94,0.94,0.94,0,0,0,0,0,0,0,0,0.0199,0.0199,0.525,0.544,0.873,1,0.72,0.222,0.72,0.72,0.0241,0.0241,0.405,0.405,0,1 +1,0.726,0.639,0.639,0,0,0.92,0.92,0.92,0,0,0,0,0,0,0,0.0185,0.0114,0.0298,0.639,0.559,0.806,1,0.765,0.0957,0.765,0.765,0.0181,0.0181,0.341,0.341,0,1 +0.667,0.388,0.547,0.547,0,0,0.88,0.88,0.88,0,0,0,0,0,0,0,0,0.00568,0.00568,0.45,0.486,0.509,1,0.667,0.0655,0.667,0.667,0.0181,0.0181,0.19,0.19,0,1 +0.667,0.116,0.463,0.463,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0.00284,0.00284,0.326,0.459,0.232,1,0.578,0.0353,0.578,0.578,0.0181,0.0181,0.19,0.19,0.333,1 +0.667,0.0743,0.371,0.371,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0,0,0.295,0.455,0.099,1,0.391,0.0202,0.391,0.391,0.0181,0.0181,0.19,0.19,0.333,1 +0.667,0.0578,0.343,0.343,0,0,0.78,0.78,0.78,0,0,0,0,0,0,0,0,0,0,0.286,0.447,0.0495,1,0.205,0.00504,0.205,0.205,0.0181,0.0181,0.23,0.23,0.333,1 +0.667,0.0495,0.343,0.343,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0,0,0,0.286,0.443,0.027,1,0.169,0.00504,0.169,0.169,0.0181,0.0181,0.19,0.19,0.333,1 +0.667,0.0495,0.334,0.334,0,0,0.74,0.74,0.74,0,0,0,0,0,0,0,0,0,0,0.283,0.438,0.018,1,0.133,0.0101,0.133,0.133,0.0241,0.0241,0.23,0.23,0.333,1 +1,0.0495,0.306,0.306,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0248,1,0.142,0.0353,0.142,0.142,0.0482,0.0482,0.373,0.373,1,1 +1,0.0495,0.334,0.334,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0315,1,0.16,0.0605,0.16,0.16,0.0903,0.0903,0.532,0.532,1,1 +1,0.136,0.398,0.398,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0,0.00284,0.00284,0.305,0.463,0.054,1,0.231,0.146,0.231,0.231,0.157,0.157,0.452,0.452,0.667,1 +1,0.163,0.436,0.436,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0.0114,0.0114,0.317,0.484,0.0968,1,0.293,0.232,0.293,0.293,0.265,0.265,0.19,0.19,0.667,1 +1,0.162,0.315,0.315,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0,0,0.277,0.488,0.16,1,0.293,0.222,0.293,0.293,0.506,0.506,0.19,0.19,0.667,1 +1,0.263,0.213,0.213,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0,0,0.228,0.511,0.212,1,0.285,0.207,0.285,0.285,0.729,0.729,0.151,0.151,0.333,1 +1,0.256,0.222,0.222,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0.00852,0.00852,0.234,0.511,0.252,1,0.293,0.222,0.293,0.293,0.765,0.765,0.119,0.119,0.333,1 +1,0.245,0.232,0.232,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0.00568,0.00568,0.24,0.519,0.277,1,0.293,0.232,0.293,0.293,0.729,0.729,0.111,0.111,0.333,1 +1,0.237,0.222,0.222,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0.00284,0.00284,0.234,0.528,0.297,1,0.285,0.212,0.285,0.285,0.723,0.723,0.111,0.111,0.333,1 +1,0.235,0.259,0.259,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0.00239,0,0.00239,0.259,0.528,0.351,1,0.285,0.191,0.285,0.285,0.542,0.542,0.111,0.111,0.333,1 +1,0.327,0.287,0.287,0,0.0853,0.84,0.84,0.84,0,0,0,0,0,0,0,0.0447,0.00284,0.0476,0.287,0.546,0.401,1,0.285,0.247,0.285,0.285,0.452,0.452,0.19,0.19,0,1 +1,0.328,0.297,0.297,0,0.0244,0.82,0.82,0.82,0,0,0,0,0,0,0.0717,0.0403,0.00852,0.121,0.297,0.571,0.441,1,0.293,0.297,0.293,0.293,0.367,0.367,0.46,0.46,0,1 +1,0.332,0.361,0.361,0,0,0.88,0.88,0.88,0,0,0,0,0,0,0.0537,0,0.017,0.0708,0.361,0.596,0.464,1,0.4,0.554,0.4,0.4,0.223,0.223,1,1,0,1 +1,0.345,0.491,0.491,0,0,0.96,0.96,0.96,0,0,0,0,0,0,0,0,0.00284,0.00284,0.491,0.646,0.479,1,0.507,0.811,0.507,0.507,0.139,0.139,0.968,0.968,0,1 +1,0.384,0.584,0.584,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0.584,0.658,0.565,1,0.587,0.58,0.587,0.587,0.0783,0.0783,0.54,0.54,0,1 +1,0.467,0.621,0.621,0,0,0.96,0.96,0.96,0,0,0,0,0,0,0,0.0114,0,0.0114,0.621,0.621,0.743,1,0.676,0.353,0.676,0.676,0.0482,0.0482,0.484,0.484,0,1 +1,0.413,0.658,0.658,0,0.0122,0.94,0.94,0.94,0,0,0,0,0,0,0,0,0,0,0.525,0.544,0.873,1,0.72,0.222,0.72,0.72,0.0241,0.0241,0.405,0.405,0.333,1 +1,0.501,0.639,0.639,0,0.0609,0.92,0.92,0.92,0,0,0,0,0,0,0,0,0.00284,0.00284,0.512,0.528,0.806,1,0.765,0.0957,0.765,0.765,0.0181,0.0181,0.341,0.341,0.333,1 +0.667,0.219,0.547,0.547,0,0,0.88,0.88,0.88,0,0,0,0,0,0,0,0,0,0,0.354,0.476,0.509,1,0.667,0.0655,0.667,0.667,0.0181,0.0181,0.19,0.19,0.333,1 +1,0.183,0.463,0.463,0,0,0.82,0.82,0.82,0.014,0.0653,0,0,0,0,0,0,0.00284,0.00284,0.395,0.453,0.232,1,0.578,0.0353,0.578,0.578,0.0181,0.0181,0.19,0.19,0.333,1 +1,0.0495,0.371,0.371,0,0,0.8,0.8,0.8,0.0134,0.0541,0,0,0,0,0,0,0,0,0.258,0.465,0.0833,1,0.391,0.0202,0.391,0.391,0.0181,0.0181,0.19,0.19,1,1 +1,0.0495,0.343,0.343,0,0,0.78,0.78,0.78,0,0,0,0,0,0,0,0,0.0142,0.0142,0.258,0.465,0.0405,1,0.205,0.00504,0.205,0.205,0.0181,0.0181,0.23,0.23,1,1 +1,0.0495,0.343,0.343,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0203,1,0.169,0.00504,0.169,0.169,0.0181,0.0181,0.19,0.19,1,1 +1,0.0495,0.334,0.334,0,0,0.74,0.74,0.74,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0158,1,0.133,0.0101,0.133,0.133,0.0241,0.0241,0.23,0.23,1,1 +1,0.05,0.306,0.306,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0,0,0,0.274,0.443,0.0248,1,0.142,0.0353,0.142,0.142,0.0482,0.0482,0.373,0.373,0.667,1 +1,0.0768,0.334,0.334,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0.00248,0,0.00248,0.283,0.447,0.0405,1,0.16,0.0605,0.16,0.16,0.0903,0.0903,0.532,0.532,0.667,1 +1,0.222,0.398,0.398,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0.0198,0,0.0198,0.352,0.461,0.0653,1,0.231,0.146,0.231,0.231,0.157,0.157,0.452,0.452,0.333,1 +0.667,0.163,0.436,0.436,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0.0481,0,0,0.0481,0.317,0.484,0.09,1,0.293,0.232,0.293,0.293,0.265,0.265,0.19,0.19,0.333,1 +0.667,0.162,0.315,0.315,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0.0114,0.0114,0.277,0.488,0.11,1,0.293,0.222,0.293,0.293,0.506,0.506,0.19,0.19,0.333,1 +0.333,0.156,0.213,0.213,0,0.0366,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0.0227,0.0227,0.243,0.488,0.131,1,0.285,0.207,0.285,0.285,0.729,0.729,0.151,0.151,0,1 +0.333,0.153,0.222,0.222,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0,0,0.246,0.488,0.146,1,0.293,0.222,0.293,0.293,0.765,0.765,0.119,0.119,0,1 +0.333,0.147,0.232,0.232,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0,0,0.249,0.492,0.162,1,0.293,0.232,0.293,0.293,0.729,0.729,0.111,0.111,0,1 +0,0.0495,0.222,0.222,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.171,1,0.285,0.212,0.285,0.285,0.723,0.723,0.111,0.111,0,1 +0,0.0495,0.259,0.259,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.465,0.194,1,0.285,0.191,0.285,0.285,0.542,0.542,0.111,0.111,0,1 +0.333,0.142,0.287,0.287,0,0.11,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0.0114,0.0114,0.268,0.492,0.205,1,0.285,0.247,0.285,0.285,0.452,0.452,0.19,0.19,0,1 +0.333,0.142,0.297,0.297,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0.00852,0.00852,0.271,0.501,0.23,1,0.293,0.297,0.293,0.293,0.367,0.367,0.46,0.46,0,1 +0.333,0.144,0.361,0.361,0,0,0.88,0.88,0.88,0,0,0,0,0,0,0,0,0,0,0.292,0.509,0.286,1,0.4,0.554,0.4,0.4,0.223,0.223,1,1,0,1 +0.667,0.247,0.491,0.491,0,0,0.96,0.96,0.96,0.00455,0.0175,0,0,0,0,0,0,0,0,0.413,0.585,0.351,1,0.507,0.811,0.507,0.507,0.139,0.139,0.968,0.968,0,1 +0.667,0.273,0.584,0.584,0,0,1,1,1,0.0222,0.0716,0,0,0,0,0,0,0.0199,0.0199,0.475,0.594,0.473,1,0.587,0.58,0.587,0.587,0.0783,0.0783,0.54,0.54,0,1 +1,0.467,0.621,0.621,0,0,0.96,0.96,0.96,0.0193,0.0541,0,0,0,0,0,0,0,0,0.621,0.621,0.662,1,0.676,0.353,0.676,0.676,0.0482,0.0482,0.484,0.484,0,1 +1,0.595,0.658,0.658,0,0,0.94,0.94,0.94,0.0194,0,0,0,0,0,0,0,0.00852,0.00852,0.658,0.583,0.817,1,0.72,0.222,0.72,0.72,0.0241,0.0241,0.405,0.405,0,1 +1,0.501,0.639,0.639,0,0,0.92,0.92,0.92,0,0,0,0,0,0,0,0.0174,0.0114,0.0287,0.512,0.528,0.774,1,0.765,0.0957,0.765,0.765,0.0181,0.0181,0.341,0.341,0.333,1 +1,0.388,0.547,0.547,0,0,0.88,0.88,0.88,0,0,0,0,0,0,0,0.0378,0.00568,0.0434,0.45,0.486,0.468,1,0.667,0.0655,0.667,0.667,0.0181,0.0181,0.19,0.19,0.333,1 +1,0.116,0.463,0.463,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0.00852,0.00852,0.326,0.459,0.203,1,0.578,0.0353,0.578,0.578,0.0181,0.0181,0.19,0.19,0.667,1 +1,0.0495,0.371,0.371,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0.00568,0.00568,0.258,0.465,0.0833,1,0.391,0.0202,0.391,0.391,0.0181,0.0181,0.19,0.19,1,1 +1,0.0495,0.343,0.343,0,0,0.78,0.78,0.78,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0405,1,0.205,0.00504,0.205,0.205,0.0181,0.0181,0.23,0.23,1,1 +1,0.0495,0.343,0.343,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0203,1,0.169,0.00504,0.169,0.169,0.0181,0.0181,0.19,0.19,1,1 +1,0.0495,0.334,0.334,0,0,0.74,0.74,0.74,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0158,1,0.133,0.0101,0.133,0.133,0.0241,0.0241,0.23,0.23,1,1 +1,0.0495,0.306,0.306,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0.00267,0,0.00267,0.258,0.465,0.0248,1,0.142,0.0353,0.142,0.142,0.0482,0.0482,0.373,0.373,1,1 +1,0.0768,0.334,0.334,0,0.0122,0.72,0.72,0.72,0,0,0,0,0,0,0,0.0328,0,0.0328,0.283,0.447,0.0405,1,0.16,0.0605,0.16,0.16,0.0903,0.0903,0.532,0.532,0.667,1 +1,0.222,0.398,0.398,0,0.0244,0.76,0.76,0.76,0,0,0.0513,0.00596,0,0,0,0,0,0,0.352,0.461,0.0653,1,0.231,0.146,0.231,0.231,0.157,0.157,0.452,0.452,0.333,1 +0.667,0.277,0.436,0.436,0,0.0366,0.8,0.8,0.8,0,0,0.0449,0.00982,0.147,0.147,0,0,0,0,0.376,0.503,0.09,1,0.293,0.232,0.293,0.293,0.265,0.265,0.19,0.19,0,1 +0.667,0.274,0.315,0.315,0,0,0.82,0.82,0.82,0,0,0,0,0.128,0.128,0,0,0,0,0.296,0.511,0.11,1,0.293,0.222,0.293,0.293,0.506,0.506,0.19,0.19,0,1 +0.333,0.156,0.213,0.213,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0.0227,0.0227,0.243,0.488,0.131,1,0.285,0.207,0.285,0.285,0.729,0.729,0.151,0.151,0,1 +0.333,0.153,0.222,0.222,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0.00568,0.00568,0.246,0.488,0.146,1,0.293,0.222,0.293,0.293,0.765,0.765,0.119,0.119,0,1 +0,0.0495,0.232,0.232,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0.00568,0.00568,0.258,0.465,0.162,1,0.293,0.232,0.293,0.293,0.729,0.729,0.111,0.111,0,1 +0,0.0495,0.222,0.222,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.465,0.171,1,0.285,0.212,0.285,0.285,0.723,0.723,0.111,0.111,0,1 +0,0.0495,0.259,0.259,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.194,1,0.285,0.191,0.285,0.285,0.542,0.542,0.111,0.111,0,1 +0.333,0.142,0.287,0.287,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0.00284,0.00284,0.268,0.492,0.205,1,0.285,0.247,0.285,0.285,0.452,0.452,0.19,0.19,0,1 +0.333,0.142,0.297,0.297,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0,0,0.271,0.501,0.23,1,0.293,0.297,0.293,0.293,0.367,0.367,0.46,0.46,0,1 +0.667,0.238,0.361,0.361,0,0,0.88,0.88,0.88,0,0,0,0,0,0,0,0,0,0,0.327,0.552,0.286,1,0.4,0.554,0.4,0.4,0.223,0.223,1,1,0,1 +1,0.345,0.491,0.491,0,0.0366,0.96,0.96,0.96,0,0,0,0,0,0,0,0,0.00852,0.00852,0.491,0.646,0.351,1,0.507,0.811,0.507,0.507,0.139,0.139,0.968,0.968,0,1 +1,0.384,0.584,0.584,0,0,1,1,1,0,0,0,0,0,0,0,0,0.00284,0.00284,0.584,0.658,0.473,1,0.587,0.58,0.587,0.587,0.0783,0.0783,0.54,0.54,0,1 +1,0.328,0.621,0.621,0,0,0.96,0.96,0.96,0,0,0,0,0,0,0,0,0.00568,0.00568,0.5,0.569,0.662,1,0.676,0.353,0.676,0.676,0.0482,0.0482,0.484,0.484,0.333,1 +1,0.595,0.658,0.658,0,0.0366,0.94,0.94,0.94,0,0,0,0,0,0,0,0,0,0,0.658,0.583,0.817,1,0.72,0.222,0.72,0.72,0.0241,0.0241,0.405,0.405,0,1 +1,0.726,0.639,0.639,0,0,0.92,0.92,0.92,0,0,0,0,0,0,0,0.028,0.0114,0.0394,0.639,0.559,0.774,1,0.765,0.0957,0.765,0.765,0.0181,0.0181,0.341,0.341,0,1 +1,0.219,0.547,0.547,0,0,0.88,0.88,0.88,0,0,0,0,0,0,0,0.0125,0.00568,0.0181,0.354,0.476,0.468,1,0.667,0.0655,0.667,0.667,0.0181,0.0181,0.19,0.19,0.667,1 +1,0.0495,0.463,0.463,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.203,1,0.578,0.0353,0.578,0.578,0.0181,0.0181,0.19,0.19,1,1 +1,0.0495,0.371,0.371,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0833,1,0.391,0.0202,0.391,0.391,0.0181,0.0181,0.19,0.19,1,1 +1,0.0495,0.343,0.343,0,0,0.78,0.78,0.78,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.465,0.0405,1,0.205,0.00504,0.205,0.205,0.0181,0.0181,0.23,0.23,1,1 +1,0.0495,0.343,0.343,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0203,1,0.169,0.00504,0.169,0.169,0.0181,0.0181,0.19,0.19,1,1 +1,0.0495,0.334,0.334,0,0,0.74,0.74,0.74,0,0,0,0,0,0,0,0.00247,0,0.00247,0.258,0.465,0.0158,1,0.133,0.0101,0.133,0.133,0.0241,0.0241,0.23,0.23,1,1 +1,0.05,0.306,0.306,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0.0198,0,0.0198,0.274,0.443,0.0248,1,0.142,0.0353,0.142,0.142,0.0482,0.0482,0.373,0.373,0.667,1 +0.667,0.0768,0.334,0.334,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0.0801,0.0338,0,0.114,0.283,0.447,0.0405,1,0.16,0.0605,0.16,0.16,0.0903,0.0903,0.532,0.532,0.333,1 +1,0.222,0.398,0.398,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0,0,0,0.352,0.461,0.0653,1,0.231,0.146,0.231,0.231,0.157,0.157,0.452,0.452,0.333,1 +0.667,0.163,0.436,0.436,0,0.0122,0.8,0.8,0.8,0,0,0,0,0,0,0,0.00266,0,0.00266,0.317,0.484,0.09,1,0.293,0.232,0.293,0.293,0.265,0.265,0.19,0.19,0.333,1 +0.667,0.274,0.315,0.315,0,0.0244,0.82,0.82,0.82,0.00264,0.0175,0,0,0,0,0,0.0106,0.00284,0.0135,0.296,0.511,0.11,1,0.293,0.222,0.293,0.293,0.506,0.506,0.19,0.19,0,1 +0.333,0.156,0.213,0.213,0,0,0.82,0.82,0.82,0.0231,0.0541,0,0,0,0,0,0,0.0142,0.0142,0.243,0.488,0.131,1,0.285,0.207,0.285,0.285,0.729,0.729,0.151,0.151,0,1 +0.333,0.153,0.222,0.222,0,0,0.8,0.8,0.8,0.0221,0,0,0,0,0,0,0,0,0,0.246,0.488,0.146,1,0.293,0.222,0.293,0.293,0.765,0.765,0.119,0.119,0,1 +0.333,0.147,0.232,0.232,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0,0,0.249,0.492,0.162,1,0.293,0.232,0.293,0.293,0.729,0.729,0.111,0.111,0,1 +0.333,0.143,0.222,0.222,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0,0,0.246,0.496,0.171,1,0.285,0.212,0.285,0.285,0.723,0.723,0.111,0.111,0,1 +0.333,0.142,0.259,0.259,0,0,0.84,0.84,0.84,0,0,0.0155,0,0,0,0,0,0,0,0.258,0.496,0.194,1,0.285,0.191,0.285,0.285,0.542,0.542,0.111,0.111,0,1 +0.667,0.142,0.287,0.287,0,0,0.84,0.84,0.84,0,0,0.00643,0.0105,0.055,0.055,0,0,0.00284,0.00284,0.268,0.492,0.205,1,0.285,0.247,0.285,0.285,0.452,0.452,0.19,0.19,0.333,1 +0.667,0.142,0.297,0.297,0,0,0.82,0.82,0.82,0,0,0,0,0.0367,0.0367,0,0,0.0114,0.0114,0.271,0.501,0.23,1,0.293,0.297,0.293,0.293,0.367,0.367,0.46,0.46,0.333,1 +0.667,0.144,0.361,0.361,0,0,0.88,0.88,0.88,0,0,0,0,0,0,0,0,0.00852,0.00852,0.292,0.509,0.286,1,0.4,0.554,0.4,0.4,0.223,0.223,1,1,0.333,1 +1,0.345,0.491,0.491,0,0.0366,0.96,0.96,0.96,0,0,0,0,0,0,0,0,0.00852,0.00852,0.491,0.646,0.351,1,0.507,0.811,0.507,0.507,0.139,0.139,0.968,0.968,0,1 +0.667,0.161,0.584,0.584,0,0,1,1,1,0,0,0,0,0,0,0,0,0.017,0.017,0.366,0.53,0.473,1,0.587,0.58,0.587,0.587,0.0783,0.0783,0.54,0.54,0.333,1 +1,0.328,0.621,0.621,0,0,0.96,0.96,0.96,0,0,0,0,0,0,0,0,0.00284,0.00284,0.5,0.569,0.662,1,0.676,0.353,0.676,0.676,0.0482,0.0482,0.484,0.484,0.333,1 +0.667,0.231,0.658,0.658,0,0,0.94,0.94,0.94,0,0,0,0,0,0,0,0,0.00568,0.00568,0.391,0.505,0.817,1,0.72,0.222,0.72,0.72,0.0241,0.0241,0.405,0.405,0.333,1 +0.667,0.275,0.639,0.639,0,0,0.92,0.92,0.92,0,0,0,0,0,0,0,0,0,0,0.385,0.496,0.774,1,0.765,0.0957,0.765,0.765,0.0181,0.0181,0.341,0.341,0.333,1 +1,0.219,0.547,0.547,0,0,0.88,0.88,0.88,0,0,0,0,0,0,0,0,0,0,0.354,0.476,0.468,1,0.667,0.0655,0.667,0.667,0.0181,0.0181,0.19,0.19,0.667,1 +1,0.116,0.463,0.463,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0.00284,0.00284,0.326,0.459,0.203,1,0.578,0.0353,0.578,0.578,0.0181,0.0181,0.19,0.19,0.667,1 +1,0.0495,0.371,0.371,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0.0142,0.0142,0.258,0.465,0.0833,1,0.391,0.0202,0.391,0.391,0.0181,0.0181,0.19,0.19,1,1 +1,0.0495,0.343,0.343,0,0,0.78,0.78,0.78,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0405,1,0.205,0.00504,0.205,0.205,0.0181,0.0181,0.23,0.23,1,1 +1,0.0495,0.343,0.343,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0203,1,0.169,0.00504,0.169,0.169,0.0181,0.0181,0.19,0.19,1,1 +1,0.0495,0.334,0.334,0,0,0.74,0.74,0.74,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0158,1,0.133,0.0101,0.133,0.133,0.0241,0.0241,0.23,0.23,1,1 +1,0.0495,0.306,0.306,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0248,1,0.142,0.0353,0.142,0.142,0.0482,0.0482,0.373,0.373,1,1 +1,0.0495,0.334,0.334,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0405,1,0.16,0.0605,0.16,0.16,0.0903,0.0903,0.532,0.532,1,1 +0.667,0.0495,0.398,0.398,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0653,1,0.231,0.146,0.231,0.231,0.157,0.157,0.452,0.452,0.667,1 +0.667,0.0495,0.436,0.436,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0.0241,0,0.0241,0.258,0.465,0.09,1,0.293,0.232,0.293,0.293,0.265,0.265,0.19,0.19,0.667,1 +0.667,0.162,0.315,0.315,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0.0151,0,0.0151,0.277,0.488,0.11,1,0.293,0.222,0.293,0.293,0.506,0.506,0.19,0.19,0.333,1 +0.333,0.156,0.213,0.213,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0,0,0.243,0.488,0.131,1,0.285,0.207,0.285,0.285,0.729,0.729,0.151,0.151,0,1 +0.333,0.153,0.222,0.222,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0.00261,0,0.00261,0.246,0.488,0.146,1,0.293,0.222,0.293,0.293,0.765,0.765,0.119,0.119,0,1 +0.333,0.147,0.232,0.232,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0.0345,0.00568,0.0402,0.249,0.492,0.162,1,0.293,0.232,0.293,0.293,0.729,0.729,0.111,0.111,0,1 +0.333,0.143,0.222,0.222,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0.0169,0.00568,0.0226,0.246,0.496,0.171,1,0.285,0.212,0.285,0.285,0.723,0.723,0.111,0.111,0,1 +0.667,0.235,0.259,0.259,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0.00852,0.00852,0.259,0.528,0.194,1,0.285,0.191,0.285,0.285,0.542,0.542,0.111,0.111,0,1 +0.667,0.235,0.287,0.287,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0.00284,0.00284,0.277,0.519,0.205,1,0.285,0.247,0.285,0.285,0.452,0.452,0.19,0.19,0,1 +0.667,0.235,0.297,0.297,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0.00568,0.00568,0.284,0.536,0.23,1,0.293,0.297,0.293,0.293,0.367,0.367,0.46,0.46,0,1 +1,0.332,0.361,0.361,0,0.0853,0.88,0.88,0.88,0,0,0,0,0,0,0,0,0.00284,0.00284,0.361,0.596,0.286,1,0.4,0.554,0.4,0.4,0.223,0.223,1,1,0,1 +0.667,0.247,0.491,0.491,0,0.0609,0.96,0.96,0.96,0,0,0,0,0,0,0,0,0.00568,0.00568,0.413,0.585,0.351,1,0.507,0.811,0.507,0.507,0.139,0.139,0.968,0.968,0,1 +1,0.384,0.584,0.584,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0.584,0.658,0.473,1,0.587,0.58,0.587,0.587,0.0783,0.0783,0.54,0.54,0,1 +1,0.467,0.621,0.621,0,0,0.96,0.96,0.96,0,0,0,0,0,0,0,0.0148,0.00284,0.0176,0.621,0.621,0.662,1,0.676,0.353,0.676,0.676,0.0482,0.0482,0.484,0.484,0,1 +1,0.595,0.658,0.658,0,0,0.94,0.94,0.94,0,0,0,0,0,0,0,0.0387,0.0114,0.0501,0.658,0.583,0.817,1,0.72,0.222,0.72,0.72,0.0241,0.0241,0.405,0.405,0,1 +1,0.726,0.639,0.639,0,0,0.92,0.92,0.92,0,0,0,0,0,0,0,0,0.00284,0.00284,0.639,0.559,0.774,1,0.765,0.0957,0.765,0.765,0.0181,0.0181,0.341,0.341,0,1 +1,0.219,0.547,0.547,0,0,0.88,0.88,0.88,0,0,0,0,0,0,0,0,0.00284,0.00284,0.354,0.476,0.468,1,0.667,0.0655,0.667,0.667,0.0181,0.0181,0.19,0.19,0.667,1 +1,0.0495,0.463,0.463,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0.00568,0.00568,0.258,0.465,0.203,1,0.578,0.0353,0.578,0.578,0.0181,0.0181,0.19,0.19,1,1 +1,0.0495,0.371,0.371,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0833,1,0.391,0.0202,0.391,0.391,0.0181,0.0181,0.19,0.19,1,1 +1,0.0495,0.343,0.343,0,0,0.78,0.78,0.78,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0405,1,0.205,0.00504,0.205,0.205,0.0181,0.0181,0.23,0.23,1,1 +1,0.0495,0.343,0.343,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0203,1,0.169,0.00504,0.169,0.169,0.0181,0.0181,0.19,0.19,1,1 +1,0.0495,0.334,0.334,0,0,0.74,0.74,0.74,0,0,0,0,0,0,0,0.00208,0,0.00208,0.258,0.465,0.0158,1,0.133,0.0101,0.133,0.133,0.0241,0.0241,0.23,0.23,1,1 +1,0.05,0.306,0.306,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0.0493,0,0.0493,0.274,0.443,0.0248,1,0.142,0.0353,0.142,0.142,0.0482,0.0482,0.373,0.373,0.667,1 +1,0.0768,0.334,0.334,0,0,0.72,0.72,0.72,0,0,0.00731,0,0,0,0,0.0182,0,0.0182,0.283,0.447,0.0405,1,0.16,0.0605,0.16,0.16,0.0903,0.0903,0.532,0.532,0.667,1 +0.667,0.136,0.398,0.398,0,0,0.76,0.76,0.76,0.00292,0.0175,0,0.0112,0,0,0,0.0241,0,0.0241,0.305,0.463,0.0653,1,0.231,0.146,0.231,0.231,0.157,0.157,0.452,0.452,0.333,1 +0.667,0.163,0.436,0.436,0,0,0.8,0.8,0.8,0.0129,0.0302,0,0.00456,0.238,0.238,0,0,0,0,0.317,0.484,0.09,1,0.293,0.232,0.293,0.293,0.265,0.265,0.19,0.19,0.333,1 +0.333,0.162,0.315,0.315,0,0.0853,0.82,0.82,0.82,0,0,0,0,0.128,0.128,0,0,0.00284,0.00284,0.277,0.488,0.11,1,0.293,0.222,0.293,0.293,0.506,0.506,0.19,0.19,0,1 +0.333,0.156,0.213,0.213,0,0.0244,0.82,0.82,0.82,0,0,0,0,0,0,0,0.00262,0,0.00262,0.243,0.488,0.131,1,0.285,0.207,0.285,0.285,0.729,0.729,0.151,0.151,0,1 +0.667,0.256,0.222,0.222,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0.0236,0,0.0236,0.234,0.511,0.146,1,0.293,0.222,0.293,0.293,0.765,0.765,0.119,0.119,0,1 +0.667,0.245,0.232,0.232,0,0.0366,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0.0142,0.0142,0.24,0.519,0.162,1,0.293,0.232,0.293,0.293,0.729,0.729,0.111,0.111,0,1 +0.333,0.143,0.222,0.222,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0.00284,0.00284,0.246,0.496,0.171,1,0.285,0.212,0.285,0.285,0.723,0.723,0.111,0.111,0,1 +0.667,0.235,0.259,0.259,0,0,0.84,0.84,0.84,0.0184,0.0478,0,0,0,0,0,0,0.00568,0.00568,0.259,0.528,0.194,1,0.285,0.191,0.285,0.285,0.542,0.542,0.111,0.111,0,1 +0.667,0.235,0.287,0.287,0,0,0.84,0.84,0.84,0.0107,0,0,0,0,0,0,0,0,0,0.277,0.519,0.205,1,0.285,0.247,0.285,0.285,0.452,0.452,0.19,0.19,0,1 +0.667,0.235,0.297,0.297,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0,0,0.284,0.536,0.23,1,0.293,0.297,0.293,0.293,0.367,0.367,0.46,0.46,0,1 +0.667,0.238,0.361,0.361,0,0.0122,0.88,0.88,0.88,0,0,0,0,0,0,0,0,0.00852,0.00852,0.327,0.552,0.286,1,0.4,0.554,0.4,0.4,0.223,0.223,1,1,0,1 +1,0.345,0.491,0.491,0,0.0244,0.96,0.96,0.96,0,0,0,0,0,0,0,0,0.0142,0.0142,0.491,0.646,0.351,1,0.507,0.811,0.507,0.507,0.139,0.139,0.968,0.968,0,1 +1,0.384,0.584,0.584,0,0,1,1,1,0,0,0.00565,0,0,0,0,0,0.00852,0.00852,0.584,0.658,0.473,1,0.587,0.58,0.587,0.587,0.0783,0.0783,0.54,0.54,0,1 +1,0.467,0.621,0.621,0,0,0.96,0.96,0.96,0,0,0.0203,0.0112,0,0,0,0,0,0,0.621,0.621,0.662,1,0.676,0.353,0.676,0.676,0.0482,0.0482,0.484,0.484,0,1 +1,0.595,0.658,0.658,0,0,0.94,0.94,0.94,0,0,0.0225,0.00982,0.147,0.147,0,0,0.00284,0.00284,0.658,0.583,0.817,1,0.72,0.222,0.72,0.72,0.0241,0.0241,0.405,0.405,0,1 +1,0.726,0.639,0.639,0,0,0.92,0.92,0.92,0,0,0.0269,0,0.128,0.128,0,0,0,0,0.639,0.559,0.774,1,0.765,0.0957,0.765,0.765,0.0181,0.0181,0.341,0.341,0,1 +1,0.388,0.547,0.547,0,0,0.88,0.88,0.88,0,0,0.00312,0,0,0,0,0,0.00852,0.00852,0.45,0.486,0.468,1,0.667,0.0655,0.667,0.667,0.0181,0.0181,0.19,0.19,0.333,1 +1,0.116,0.463,0.463,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0.0207,0.00284,0.0236,0.326,0.459,0.203,1,0.578,0.0353,0.578,0.578,0.0181,0.0181,0.19,0.19,0.667,1 +1,0.0495,0.371,0.371,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.099,1,0.391,0.0202,0.391,0.391,0.0181,0.0181,0.19,0.19,1,1 +1,0.0495,0.343,0.343,0,0,0.78,0.78,0.78,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0495,1,0.205,0.00504,0.205,0.205,0.0181,0.0181,0.23,0.23,1,1 +1,0.0495,0.343,0.343,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.027,1,0.169,0.00504,0.169,0.169,0.0181,0.0181,0.19,0.19,1,1 +1,0.0495,0.334,0.334,0,0,0.74,0.74,0.74,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.018,1,0.133,0.0101,0.133,0.133,0.0241,0.0241,0.23,0.23,1,1 +1,0.0495,0.306,0.306,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0248,1,0.142,0.0353,0.142,0.142,0.0482,0.0482,0.373,0.373,1,1 +1,0.0495,0.334,0.334,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0315,1,0.16,0.0605,0.16,0.16,0.0903,0.0903,0.532,0.532,1,1 +1,0.136,0.398,0.398,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0.0735,0.0233,0,0.0968,0.305,0.463,0.054,1,0.231,0.146,0.231,0.231,0.157,0.157,0.452,0.452,0.667,1 +1,0.277,0.436,0.436,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0.0572,0,0.0572,0.376,0.503,0.0968,1,0.293,0.232,0.293,0.293,0.265,0.265,0.19,0.19,0.333,1 +1,0.274,0.315,0.315,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0.0389,0,0.0389,0.296,0.511,0.16,1,0.293,0.222,0.293,0.293,0.506,0.506,0.19,0.19,0.333,1 +1,0.37,0.213,0.213,0,0.0853,0.82,0.82,0.82,0,0,0,0,0,0,0,0.0875,0,0.0875,0.213,0.534,0.212,1,0.285,0.207,0.285,0.285,0.729,0.729,0.151,0.151,0,1 +1,0.359,0.222,0.222,0,0.134,0.8,0.8,0.8,0,0,0,0,0,0,0.0347,0.0151,0,0.0498,0.222,0.534,0.252,1,0.293,0.222,0.293,0.293,0.765,0.765,0.119,0.119,0,1 +1,0.343,0.232,0.232,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0.0801,0.0415,0.017,0.139,0.232,0.546,0.277,1,0.293,0.232,0.293,0.293,0.729,0.729,0.111,0.111,0,1 +1,0.331,0.222,0.222,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0.0438,0.00284,0.0467,0.222,0.559,0.297,1,0.285,0.212,0.285,0.285,0.723,0.723,0.111,0.111,0,1 +0.667,0.235,0.259,0.259,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0.0208,0.00284,0.0237,0.259,0.528,0.351,1,0.285,0.191,0.285,0.285,0.542,0.542,0.111,0.111,0,1 +0.667,0.235,0.287,0.287,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0.0187,0.00284,0.0215,0.277,0.519,0.401,1,0.285,0.247,0.285,0.285,0.452,0.452,0.19,0.19,0,1 +0.333,0.142,0.297,0.297,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0,0,0.271,0.501,0.441,1,0.293,0.297,0.293,0.293,0.367,0.367,0.46,0.46,0,1 +0.333,0.144,0.361,0.361,0,0,0.88,0.88,0.88,0,0,0,0,0,0,0,0,0,0,0.292,0.509,0.464,1,0.4,0.554,0.4,0.4,0.223,0.223,1,1,0,1 +0.333,0.0495,0.491,0.491,0,0,0.96,0.96,0.96,0,0,0,0,0,0,0,0,0.0369,0.0369,0.258,0.465,0.479,1,0.507,0.811,0.507,0.507,0.139,0.139,0.968,0.968,0.333,1 +0.667,0.161,0.584,0.584,0,0,1,1,1,0,0,0,0,0,0,0,0,0.00852,0.00852,0.366,0.53,0.565,1,0.587,0.58,0.587,0.587,0.0783,0.0783,0.54,0.54,0.333,1 +0.667,0.328,0.621,0.621,0,0,0.96,0.96,0.96,0,0,0.0039,0,0,0,0,0,0.00284,0.00284,0.5,0.569,0.743,1,0.676,0.353,0.676,0.676,0.0482,0.0482,0.484,0.484,0,1 +1,0.595,0.658,0.658,0,0.0366,0.94,0.94,0.94,0,0,0,0.0112,0,0,0,0,0.00852,0.00852,0.658,0.583,0.873,1,0.72,0.222,0.72,0.72,0.0241,0.0241,0.405,0.405,0,1 +1,0.501,0.639,0.639,0,0,0.92,0.92,0.92,0,0,0,0.00456,0.238,0.238,0,0,0,0,0.512,0.528,0.806,1,0.765,0.0957,0.765,0.765,0.0181,0.0181,0.341,0.341,0.333,1 +1,0.388,0.547,0.547,0,0,0.88,0.88,0.88,0,0,0,0,0.128,0.128,0,0,0,0,0.45,0.486,0.509,1,0.667,0.0655,0.667,0.667,0.0181,0.0181,0.19,0.19,0.333,1 +1,0.183,0.463,0.463,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0.00284,0.00284,0.395,0.453,0.232,1,0.578,0.0353,0.578,0.578,0.0181,0.0181,0.19,0.19,0.333,1 +1,0.0743,0.371,0.371,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0,0,0.295,0.455,0.099,1,0.391,0.0202,0.391,0.391,0.0181,0.0181,0.19,0.19,0.667,1 +1,0.0495,0.343,0.343,0,0,0.78,0.78,0.78,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.465,0.0495,1,0.205,0.00504,0.205,0.205,0.0181,0.0181,0.23,0.23,1,1 +1,0.0495,0.343,0.343,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.027,1,0.169,0.00504,0.169,0.169,0.0181,0.0181,0.19,0.19,1,1 +1,0.0495,0.334,0.334,0,0,0.74,0.74,0.74,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.018,1,0.133,0.0101,0.133,0.133,0.0241,0.0241,0.23,0.23,1,1 +1,0.0495,0.306,0.306,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0248,1,0.142,0.0353,0.142,0.142,0.0482,0.0482,0.373,0.373,1,1 +1,0.0495,0.334,0.334,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0315,1,0.16,0.0605,0.16,0.16,0.0903,0.0903,0.532,0.532,1,1 +1,0.0495,0.398,0.398,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.054,1,0.231,0.146,0.231,0.231,0.157,0.157,0.452,0.452,1,1 +1,0.0495,0.436,0.436,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0968,1,0.293,0.232,0.293,0.293,0.265,0.265,0.19,0.19,1,1 +1,0.0495,0.315,0.315,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.16,1,0.293,0.222,0.293,0.293,0.506,0.506,0.19,0.19,1,1 +1,0.263,0.213,0.213,0,0.0122,0.82,0.82,0.82,0,0,0.0278,0.000702,0,0,0,0,0,0,0.228,0.511,0.212,1,0.285,0.207,0.285,0.285,0.729,0.729,0.151,0.151,0.333,1 +1,0.359,0.222,0.222,0,0.0609,0.8,0.8,0.8,0,0,0.0423,0.0151,0.055,0.055,0,0,0,0,0.222,0.534,0.252,1,0.293,0.222,0.293,0.293,0.765,0.765,0.119,0.119,0,1 +1,0.343,0.232,0.232,0,0,0.8,0.8,0.8,0,0,0.037,0,0.128,0.128,0,0,0,0,0.232,0.546,0.277,1,0.293,0.232,0.293,0.293,0.729,0.729,0.111,0.111,0,1 +1,0.331,0.222,0.222,0,0,0.84,0.84,0.84,0,0,0.0383,0,0,0,0,0,0,0,0.222,0.559,0.297,1,0.285,0.212,0.285,0.285,0.723,0.723,0.111,0.111,0,1 +1,0.328,0.259,0.259,0,0,0.84,0.84,0.84,0,0,0.0185,0,0,0,0,0,0.00284,0.00284,0.259,0.559,0.351,1,0.285,0.191,0.285,0.285,0.542,0.542,0.111,0.111,0,1 +1,0.327,0.287,0.287,0,0,0.84,0.84,0.84,0,0,0.0492,0,0,0,0,0,0,0,0.287,0.546,0.401,1,0.285,0.247,0.285,0.285,0.452,0.452,0.19,0.19,0,1 +1,0.328,0.297,0.297,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0.00284,0.00284,0.297,0.571,0.441,1,0.293,0.297,0.293,0.293,0.367,0.367,0.46,0.46,0,1 +0.667,0.238,0.361,0.361,0,0,0.88,0.88,0.88,0,0,0,0,0,0,0,0,0.00284,0.00284,0.327,0.552,0.464,1,0.4,0.554,0.4,0.4,0.223,0.223,1,1,0,1 +1,0.345,0.491,0.491,0,0,0.96,0.96,0.96,0,0,0,0,0,0,0,0,0.00852,0.00852,0.491,0.646,0.479,1,0.507,0.811,0.507,0.507,0.139,0.139,0.968,0.968,0,1 +1,0.384,0.584,0.584,0,0,1,1,1,0,0,0,0,0,0,0,0,0.0114,0.0114,0.584,0.658,0.565,1,0.587,0.58,0.587,0.587,0.0783,0.0783,0.54,0.54,0,1 +1,0.467,0.621,0.621,0,0,0.96,0.96,0.96,0,0,0,0,0,0,0,0,0.017,0.017,0.621,0.621,0.743,1,0.676,0.353,0.676,0.676,0.0482,0.0482,0.484,0.484,0,1 +0.667,0.413,0.658,0.658,0,0.0731,0.94,0.94,0.94,0,0,0,0,0,0,0,0,0.00852,0.00852,0.525,0.544,0.873,1,0.72,0.222,0.72,0.72,0.0241,0.0241,0.405,0.405,0,1 +0.667,0.501,0.639,0.639,0,0,0.92,0.92,0.92,0,0,0,0,0,0,0,0,0.00568,0.00568,0.512,0.528,0.806,1,0.765,0.0957,0.765,0.765,0.0181,0.0181,0.341,0.341,0,1 +0.667,0.388,0.547,0.547,0,0,0.88,0.88,0.88,0,0,0,0,0,0,0,0,0.00568,0.00568,0.45,0.486,0.509,1,0.667,0.0655,0.667,0.667,0.0181,0.0181,0.19,0.19,0,1 +0.667,0.116,0.463,0.463,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0,0,0.326,0.459,0.232,1,0.578,0.0353,0.578,0.578,0.0181,0.0181,0.19,0.19,0.333,1 +1,0.099,0.371,0.371,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0,0,0.333,0.445,0.0833,1,0.391,0.0202,0.391,0.391,0.0181,0.0181,0.19,0.19,0.333,1 +1,0.0495,0.343,0.343,0,0,0.78,0.78,0.78,0,0,0,0,0,0,0,0,0.0114,0.0114,0.258,0.465,0.0405,1,0.205,0.00504,0.205,0.205,0.0181,0.0181,0.23,0.23,1,1 +1,0.0495,0.343,0.343,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0203,1,0.169,0.00504,0.169,0.169,0.0181,0.0181,0.19,0.19,1,1 +1,0.0495,0.334,0.334,0,0,0.74,0.74,0.74,0,0,0,0,0,0,0,0,0.0142,0.0142,0.258,0.465,0.0158,1,0.133,0.0101,0.133,0.133,0.0241,0.0241,0.23,0.23,1,1 +1,0.05,0.306,0.306,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0,0,0,0.274,0.443,0.0248,1,0.142,0.0353,0.142,0.142,0.0482,0.0482,0.373,0.373,0.667,1 +1,0.0768,0.334,0.334,0,0,0.72,0.72,0.72,0,0,0.0231,0.000702,0,0,0,0,0,0,0.283,0.447,0.0405,1,0.16,0.0605,0.16,0.16,0.0903,0.0903,0.532,0.532,0.667,1 +1,0.136,0.398,0.398,0,0,0.76,0.76,0.76,0,0,0.0252,0.0151,0.055,0.055,0,0,0,0,0.305,0.463,0.0653,1,0.231,0.146,0.231,0.231,0.157,0.157,0.452,0.452,0.667,1 +1,0.277,0.436,0.436,0,0,0.8,0.8,0.8,0,0,0.024,0,0.128,0.128,0,0.0306,0,0.0306,0.376,0.503,0.09,1,0.293,0.232,0.293,0.293,0.265,0.265,0.19,0.19,0.333,1 +0.667,0.274,0.315,0.315,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0.0348,0.00568,0.0405,0.296,0.511,0.11,1,0.293,0.222,0.293,0.293,0.506,0.506,0.19,0.19,0,1 +0.667,0.263,0.213,0.213,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0.0149,0.0114,0.0263,0.228,0.511,0.131,1,0.285,0.207,0.285,0.285,0.729,0.729,0.151,0.151,0,1 +0.667,0.256,0.222,0.222,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0.0204,0,0.0204,0.234,0.511,0.146,1,0.293,0.222,0.293,0.293,0.765,0.765,0.119,0.119,0,1 +0.667,0.245,0.232,0.232,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0.0495,0.00568,0.0551,0.24,0.519,0.162,1,0.293,0.232,0.293,0.293,0.729,0.729,0.111,0.111,0,1 +0.333,0.143,0.222,0.222,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0.0382,0,0.0114,0.0496,0.246,0.496,0.171,1,0.285,0.212,0.285,0.285,0.723,0.723,0.111,0.111,0,1 +0.333,0.142,0.259,0.259,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0.0191,0,0.0284,0.0475,0.258,0.496,0.194,1,0.285,0.191,0.285,0.285,0.542,0.542,0.111,0.111,0,1 +0.333,0.142,0.287,0.287,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0.0189,0.0142,0.033,0.268,0.492,0.205,1,0.285,0.247,0.285,0.285,0.452,0.452,0.19,0.19,0,1 +0.667,0.142,0.297,0.297,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0.00284,0.00284,0.271,0.501,0.23,1,0.293,0.297,0.293,0.293,0.367,0.367,0.46,0.46,0.333,1 +0.667,0.144,0.361,0.361,0,0,0.88,0.88,0.88,0,0,0,0,0,0,0,0,0,0,0.292,0.509,0.286,1,0.4,0.554,0.4,0.4,0.223,0.223,1,1,0.333,1 +1,0.247,0.491,0.491,0,0,0.96,0.96,0.96,0,0,0,0,0,0,0,0,0.00284,0.00284,0.413,0.585,0.351,1,0.507,0.811,0.507,0.507,0.139,0.139,0.968,0.968,0.333,1 +1,0.273,0.584,0.584,0,0,1,1,1,0,0,0,0,0,0,0,0,0.017,0.017,0.475,0.594,0.473,1,0.587,0.58,0.587,0.587,0.0783,0.0783,0.54,0.54,0.333,1 +1,0.328,0.621,0.621,0,0,0.96,0.96,0.96,0,0,0,0,0,0,0,0,0,0,0.5,0.569,0.662,1,0.676,0.353,0.676,0.676,0.0482,0.0482,0.484,0.484,0.333,1 +1,0.413,0.658,0.658,0,0,0.94,0.94,0.94,0,0,0,0,0,0,0,0,0.00568,0.00568,0.525,0.544,0.817,1,0.72,0.222,0.72,0.72,0.0241,0.0241,0.405,0.405,0.333,1 +1,0.275,0.639,0.639,0,0,0.92,0.92,0.92,0,0,0,0,0,0,0,0,0,0,0.385,0.496,0.774,1,0.765,0.0957,0.765,0.765,0.0181,0.0181,0.341,0.341,0.667,1 +1,0.219,0.547,0.547,0,0,0.88,0.88,0.88,0,0,0,0,0,0,0,0,0,0,0.354,0.476,0.468,1,0.667,0.0655,0.667,0.667,0.0181,0.0181,0.19,0.19,0.667,1 +1,0.0495,0.463,0.463,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.203,1,0.578,0.0353,0.578,0.578,0.0181,0.0181,0.19,0.19,1,1 +1,0.0495,0.371,0.371,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0833,1,0.391,0.0202,0.391,0.391,0.0181,0.0181,0.19,0.19,1,1 +1,0.0495,0.343,0.343,0,0,0.78,0.78,0.78,0,0,0,0,0,0,0,0,0.0227,0.0227,0.258,0.465,0.0405,1,0.205,0.00504,0.205,0.205,0.0181,0.0181,0.23,0.23,1,1 +1,0.0495,0.343,0.343,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0203,1,0.169,0.00504,0.169,0.169,0.0181,0.0181,0.19,0.19,1,1 +1,0.0495,0.334,0.334,0,0,0.74,0.74,0.74,0,0,0,0,0,0,0,0.00257,0,0.00257,0.258,0.465,0.0158,1,0.133,0.0101,0.133,0.133,0.0241,0.0241,0.23,0.23,1,1 +1,0.05,0.306,0.306,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0.0487,0,0.0487,0.274,0.443,0.0248,1,0.142,0.0353,0.142,0.142,0.0482,0.0482,0.373,0.373,0.667,1 +1,0.0768,0.334,0.334,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0.0196,0,0.0196,0.283,0.447,0.0405,1,0.16,0.0605,0.16,0.16,0.0903,0.0903,0.532,0.532,0.667,1 +1,0.136,0.398,0.398,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0,0,0,0.305,0.463,0.0653,1,0.231,0.146,0.231,0.231,0.157,0.157,0.452,0.452,0.667,1 +0.667,0.0495,0.436,0.436,0,0,0.8,0.8,0.8,0,0,0.0324,0.00596,0,0,0,0.0164,0,0.0164,0.258,0.465,0.09,1,0.293,0.232,0.293,0.293,0.265,0.265,0.19,0.19,0.667,1 +0.667,0.274,0.315,0.315,0,0,0.82,0.82,0.82,0,0,0.0463,0.00982,0.147,0.147,0.0898,0,0.0227,0.112,0.296,0.511,0.11,1,0.293,0.222,0.293,0.293,0.506,0.506,0.19,0.19,0,1 +0.667,0.263,0.213,0.213,0,0,0.82,0.82,0.82,0,0,0.029,0,0.22,0.22,0,0,0,0,0.228,0.511,0.131,1,0.285,0.207,0.285,0.285,0.729,0.729,0.151,0.151,0,1 +0.333,0.153,0.222,0.222,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0.017,0.017,0.246,0.488,0.146,1,0.293,0.222,0.293,0.293,0.765,0.765,0.119,0.119,0,1 +0.333,0.147,0.232,0.232,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0,0,0.249,0.492,0.162,1,0.293,0.232,0.293,0.293,0.729,0.729,0.111,0.111,0,1 +0.333,0.143,0.222,0.222,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0.00284,0.00284,0.246,0.496,0.171,1,0.285,0.212,0.285,0.285,0.723,0.723,0.111,0.111,0,1 +0.333,0.142,0.259,0.259,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0,0,0.258,0.496,0.194,1,0.285,0.191,0.285,0.285,0.542,0.542,0.111,0.111,0,1 +0.333,0.142,0.287,0.287,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0.00568,0.00568,0.268,0.492,0.205,1,0.285,0.247,0.285,0.285,0.452,0.452,0.19,0.19,0,1 +0.667,0.235,0.297,0.297,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0,0,0.284,0.536,0.23,1,0.293,0.297,0.293,0.293,0.367,0.367,0.46,0.46,0,1 +0.667,0.238,0.361,0.361,0,0,0.88,0.88,0.88,0,0,0,0,0,0,0,0.00239,0,0.00239,0.327,0.552,0.286,1,0.4,0.554,0.4,0.4,0.223,0.223,1,1,0,1 +1,0.345,0.491,0.491,0,0.0366,0.96,0.96,0.96,0,0,0,0,0,0,0,0.026,0.00852,0.0345,0.491,0.646,0.351,1,0.507,0.811,0.507,0.507,0.139,0.139,0.968,0.968,0,1 +1,0.384,0.584,0.584,0,0,1,1,1,0.00893,0.0414,0,0,0,0,0,0.0155,0.00852,0.024,0.584,0.658,0.473,1,0.587,0.58,0.587,0.587,0.0783,0.0783,0.54,0.54,0,1 +1,0.467,0.621,0.621,0,0.0366,0.96,0.96,0.96,0.00927,0.0541,0,0,0,0,0,0.00956,0.0142,0.0238,0.621,0.621,0.662,1,0.676,0.353,0.676,0.676,0.0482,0.0482,0.484,0.484,0,1 +1,0.595,0.658,0.658,0,0,0.94,0.94,0.94,0,0,0,0,0,0,0,0.0227,0,0.0227,0.658,0.583,0.817,1,0.72,0.222,0.72,0.72,0.0241,0.0241,0.405,0.405,0,1 +0.667,0.275,0.639,0.639,0,0,0.92,0.92,0.92,0,0,0,0,0,0,0,0,0.00852,0.00852,0.385,0.496,0.774,1,0.765,0.0957,0.765,0.765,0.0181,0.0181,0.341,0.341,0.333,1 +0.667,0.219,0.547,0.547,0,0,0.88,0.88,0.88,0,0,0,0,0,0,0,0,0.017,0.017,0.354,0.476,0.468,1,0.667,0.0655,0.667,0.667,0.0181,0.0181,0.19,0.19,0.333,1 +1,0.0495,0.463,0.463,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.465,0.203,1,0.578,0.0353,0.578,0.578,0.0181,0.0181,0.19,0.19,1,1 +1,0.0495,0.371,0.371,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0833,1,0.391,0.0202,0.391,0.391,0.0181,0.0181,0.19,0.19,1,1 +1,0.0495,0.343,0.343,0,0,0.78,0.78,0.78,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0405,1,0.205,0.00504,0.205,0.205,0.0181,0.0181,0.23,0.23,1,1 +1,0.0495,0.343,0.343,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0203,1,0.169,0.00504,0.169,0.169,0.0181,0.0181,0.19,0.19,1,1 +1,0.0495,0.334,0.334,0,0,0.74,0.74,0.74,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0158,1,0.133,0.0101,0.133,0.133,0.0241,0.0241,0.23,0.23,1,1 +1,0.0495,0.306,0.306,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0248,1,0.142,0.0353,0.142,0.142,0.0482,0.0482,0.373,0.373,1,1 +1,0.0495,0.334,0.334,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0.0196,0,0.0196,0.258,0.465,0.0405,1,0.16,0.0605,0.16,0.16,0.0903,0.0903,0.532,0.532,1,1 +1,0.136,0.398,0.398,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0.03,0,0.03,0.305,0.463,0.0653,1,0.231,0.146,0.231,0.231,0.157,0.157,0.452,0.452,0.667,1 +0.667,0.163,0.436,0.436,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0.0185,0,0.0185,0.317,0.484,0.09,1,0.293,0.232,0.293,0.293,0.265,0.265,0.19,0.19,0.333,1 +0.333,0.0495,0.315,0.315,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.11,1,0.293,0.222,0.293,0.293,0.506,0.506,0.19,0.19,0.333,1 +0.333,0.156,0.213,0.213,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0,0,0.243,0.488,0.131,1,0.285,0.207,0.285,0.285,0.729,0.729,0.151,0.151,0,1 +0.333,0.153,0.222,0.222,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0.00568,0.00568,0.246,0.488,0.146,1,0.293,0.222,0.293,0.293,0.765,0.765,0.119,0.119,0,1 +0.333,0.147,0.232,0.232,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0.0142,0.0142,0.249,0.492,0.162,1,0.293,0.232,0.293,0.293,0.729,0.729,0.111,0.111,0,1 +0,0.0495,0.222,0.222,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0.00852,0.00852,0.258,0.465,0.171,1,0.285,0.212,0.285,0.285,0.723,0.723,0.111,0.111,0,1 +0,0.0495,0.259,0.259,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0.0114,0.0114,0.258,0.465,0.194,1,0.285,0.191,0.285,0.285,0.542,0.542,0.111,0.111,0,1 +0.333,0.142,0.287,0.287,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0.00284,0.00284,0.268,0.492,0.205,1,0.285,0.247,0.285,0.285,0.452,0.452,0.19,0.19,0,1 +0.333,0.142,0.297,0.297,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0.00284,0.00284,0.271,0.501,0.23,1,0.293,0.297,0.293,0.293,0.367,0.367,0.46,0.46,0,1 +0.333,0.144,0.361,0.361,0,0.0122,0.88,0.88,0.88,0,0,0,0,0,0,0,0,0,0,0.292,0.509,0.286,1,0.4,0.554,0.4,0.4,0.223,0.223,1,1,0,1 +0.667,0.247,0.491,0.491,0,0.0244,0.96,0.96,0.96,0,0,0,0,0,0,0,0,0.00852,0.00852,0.413,0.585,0.351,1,0.507,0.811,0.507,0.507,0.139,0.139,0.968,0.968,0,1 +0.667,0.273,0.584,0.584,0,0.0122,1,1,1,0.0174,0.0891,0,0,0,0,0,0,0.00284,0.00284,0.475,0.594,0.473,1,0.587,0.58,0.587,0.587,0.0783,0.0783,0.54,0.54,0,1 +1,0.467,0.621,0.621,0,0.134,0.96,0.96,0.96,0,0.00637,0,0,0,0,0,0,0,0,0.621,0.621,0.662,1,0.676,0.353,0.676,0.676,0.0482,0.0482,0.484,0.484,0,1 +1,0.595,0.658,0.658,0,0,0.94,0.94,0.94,0,0,0,0,0,0,0,0,0,0,0.658,0.583,0.817,1,0.72,0.222,0.72,0.72,0.0241,0.0241,0.405,0.405,0,1 +1,0.726,0.639,0.639,0,0,0.92,0.92,0.92,0,0,0,0,0,0,0,0.015,0.00568,0.0207,0.639,0.559,0.774,1,0.765,0.0957,0.765,0.765,0.0181,0.0181,0.341,0.341,0,1 +1,0.557,0.547,0.547,0,0,0.88,0.88,0.88,0,0,0,0,0,0,0,0.0687,0.00568,0.0744,0.547,0.497,0.468,1,0.667,0.0655,0.667,0.667,0.0181,0.0181,0.19,0.19,0,1 +1,0.116,0.463,0.463,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0.0137,0.00568,0.0193,0.326,0.459,0.203,1,0.578,0.0353,0.578,0.578,0.0181,0.0181,0.19,0.19,0.667,1 +1,0.0743,0.371,0.371,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0,0,0.295,0.455,0.0833,1,0.391,0.0202,0.391,0.391,0.0181,0.0181,0.19,0.19,0.667,1 +1,0.0495,0.343,0.343,0,0,0.78,0.78,0.78,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0405,1,0.205,0.00504,0.205,0.205,0.0181,0.0181,0.23,0.23,1,1 +1,0.0495,0.343,0.343,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0203,1,0.169,0.00504,0.169,0.169,0.0181,0.0181,0.19,0.19,1,1 +1,0.0495,0.334,0.334,0,0,0.74,0.74,0.74,0,0,0,0,0,0,0,0,0.00568,0.00568,0.258,0.465,0.0158,1,0.133,0.0101,0.133,0.133,0.0241,0.0241,0.23,0.23,1,1 +1,0.0495,0.306,0.306,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0248,1,0.142,0.0353,0.142,0.142,0.0482,0.0482,0.373,0.373,1,1 +1,0.0495,0.334,0.334,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0405,1,0.16,0.0605,0.16,0.16,0.0903,0.0903,0.532,0.532,1,1 +1,0.222,0.398,0.398,0,0.0366,0.76,0.76,0.76,0,0,0,0,0,0,0,0.04,0,0.04,0.352,0.461,0.0653,1,0.231,0.146,0.231,0.231,0.157,0.157,0.452,0.452,0.333,1 +0.333,0.163,0.436,0.436,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0.0167,0,0.0167,0.317,0.484,0.09,1,0.293,0.232,0.293,0.293,0.265,0.265,0.19,0.19,0,1 +0.333,0.162,0.315,0.315,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0.0229,0,0.0229,0.277,0.488,0.11,1,0.293,0.222,0.293,0.293,0.506,0.506,0.19,0.19,0,1 +0.333,0.156,0.213,0.213,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0.0361,0.00568,0.0418,0.243,0.488,0.131,1,0.285,0.207,0.285,0.285,0.729,0.729,0.151,0.151,0,1 +0.333,0.153,0.222,0.222,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0.00852,0.00852,0.246,0.488,0.146,1,0.293,0.222,0.293,0.293,0.765,0.765,0.119,0.119,0,1 +0.333,0.147,0.232,0.232,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0,0,0.249,0.492,0.162,1,0.293,0.232,0.293,0.293,0.729,0.729,0.111,0.111,0,1 +0.667,0.237,0.222,0.222,0,0,0.84,0.84,0.84,0,0,0.000877,0,0,0,0,0,0.00568,0.00568,0.234,0.528,0.171,1,0.285,0.212,0.285,0.285,0.723,0.723,0.111,0.111,0,1 +0.667,0.235,0.259,0.259,0,0,0.84,0.84,0.84,0,0,0.0412,0.0112,0,0,0,0,0.00284,0.00284,0.259,0.528,0.194,1,0.285,0.191,0.285,0.285,0.542,0.542,0.111,0.111,0,1 +0.667,0.235,0.287,0.287,0,0,0.84,0.84,0.84,0,0,0.0371,0.00456,0.0917,0.0917,0,0.0279,0.00568,0.0336,0.277,0.519,0.205,1,0.285,0.247,0.285,0.285,0.452,0.452,0.19,0.19,0,1 +1,0.328,0.297,0.297,0,0.0366,0.82,0.82,0.82,0,0,0.0214,0,0,0,0,0,0.00284,0.00284,0.297,0.571,0.23,1,0.293,0.297,0.293,0.293,0.367,0.367,0.46,0.46,0,1 +1,0.332,0.361,0.361,0,0,0.88,0.88,0.88,0,0,0,0,0,0,0,0,0.00568,0.00568,0.361,0.596,0.286,1,0.4,0.554,0.4,0.4,0.223,0.223,1,1,0,1 +0.667,0.148,0.491,0.491,0,0.0122,0.96,0.96,0.96,0,0,0,0,0,0,0,0,0.00284,0.00284,0.336,0.525,0.351,1,0.507,0.811,0.507,0.507,0.139,0.139,0.968,0.968,0.333,1 +1,0.273,0.584,0.584,0,0.0244,1,1,1,0,0,0,0,0,0,0,0,0.0114,0.0114,0.475,0.594,0.473,1,0.587,0.58,0.587,0.587,0.0783,0.0783,0.54,0.54,0.333,1 +1,0.328,0.621,0.621,0,0,0.96,0.96,0.96,0.00944,0.0414,0,0,0,0,0,0,0.00284,0.00284,0.5,0.569,0.662,1,0.676,0.353,0.676,0.676,0.0482,0.0482,0.484,0.484,0.333,1 +1,0.413,0.658,0.658,0,0,0.94,0.94,0.94,0.0135,0.0541,0,0,0,0,0,0,0.00568,0.00568,0.525,0.544,0.817,1,0.72,0.222,0.72,0.72,0.0241,0.0241,0.405,0.405,0.333,1 +1,0.501,0.639,0.639,0,0.0366,0.92,0.92,0.92,0,0,0,0,0,0,0.0865,0.0164,0.00284,0.106,0.512,0.528,0.774,1,0.765,0.0957,0.765,0.765,0.0181,0.0181,0.341,0.341,0.333,1 +1,0.0495,0.547,0.547,0,0,0.88,0.88,0.88,0,0,0,0,0,0,0.0288,0,0.00568,0.0345,0.258,0.465,0.468,1,0.667,0.0655,0.667,0.667,0.0181,0.0181,0.19,0.19,1,1 +1,0.0495,0.463,0.463,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.203,1,0.578,0.0353,0.578,0.578,0.0181,0.0181,0.19,0.19,1,1 +1,0.0495,0.371,0.371,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0833,1,0.391,0.0202,0.391,0.391,0.0181,0.0181,0.19,0.19,1,1 +1,0.0495,0.343,0.343,0,0,0.78,0.78,0.78,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0405,1,0.205,0.00504,0.205,0.205,0.0181,0.0181,0.23,0.23,1,1 +1,0.0495,0.343,0.343,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0203,1,0.169,0.00504,0.169,0.169,0.0181,0.0181,0.19,0.19,1,1 +1,0.0495,0.334,0.334,0,0,0.74,0.74,0.74,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0158,1,0.133,0.0101,0.133,0.133,0.0241,0.0241,0.23,0.23,1,1 +1,0.0495,0.306,0.306,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0248,1,0.142,0.0353,0.142,0.142,0.0482,0.0482,0.373,0.373,1,1 +1,0.0495,0.334,0.334,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0405,1,0.16,0.0605,0.16,0.16,0.0903,0.0903,0.532,0.532,1,1 +1,0.136,0.398,0.398,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0,0,0,0.305,0.463,0.0653,1,0.231,0.146,0.231,0.231,0.157,0.157,0.452,0.452,0.667,1 +0.667,0.0495,0.436,0.436,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0.00274,0,0.00274,0.258,0.465,0.09,1,0.293,0.232,0.293,0.293,0.265,0.265,0.19,0.19,0.667,1 +0.667,0.274,0.315,0.315,0,0,0.82,0.82,0.82,0,0,0.016,0.00596,0,0,0,0.0586,0,0.0586,0.296,0.511,0.11,1,0.293,0.222,0.293,0.293,0.506,0.506,0.19,0.19,0,1 +0.333,0.156,0.213,0.213,0,0,0.82,0.82,0.82,0,0,0.0423,0.00982,0.147,0.147,0,0.0381,0,0.0381,0.243,0.488,0.131,1,0.285,0.207,0.285,0.285,0.729,0.729,0.151,0.151,0,1 +0.333,0.153,0.222,0.222,0,0,0.8,0.8,0.8,0,0,0.0472,0,0.22,0.22,0,0,0,0,0.246,0.488,0.146,1,0.293,0.222,0.293,0.293,0.765,0.765,0.119,0.119,0,1 +0.333,0.147,0.232,0.232,0,0,0.8,0.8,0.8,0,0,0.0259,0,0,0,0,0,0,0,0.249,0.492,0.162,1,0.293,0.232,0.293,0.293,0.729,0.729,0.111,0.111,0,1 +0.333,0.143,0.222,0.222,0,0,0.84,0.84,0.84,0,0,0.0442,0,0,0,0,0,0,0,0.246,0.496,0.171,1,0.285,0.212,0.285,0.285,0.723,0.723,0.111,0.111,0,1 +0.333,0.142,0.259,0.259,0,0,0.84,0.84,0.84,0,0,0.0359,0,0,0,0,0,0,0,0.258,0.496,0.194,1,0.285,0.191,0.285,0.285,0.542,0.542,0.111,0.111,0,1 +0.333,0.142,0.287,0.287,0,0,0.84,0.84,0.84,0,0,0.00848,0,0,0,0,0.00268,0,0.00268,0.268,0.492,0.205,1,0.285,0.247,0.285,0.285,0.452,0.452,0.19,0.19,0,1 +0.333,0.142,0.297,0.297,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0.0188,0.00852,0.0273,0.271,0.501,0.23,1,0.293,0.297,0.293,0.293,0.367,0.367,0.46,0.46,0,1 +0.667,0.238,0.361,0.361,0,0,0.88,0.88,0.88,0,0,0,0,0,0,0,0,0.0142,0.0142,0.327,0.552,0.286,1,0.4,0.554,0.4,0.4,0.223,0.223,1,1,0,1 +1,0.345,0.491,0.491,0,0,0.96,0.96,0.96,0,0,0,0,0,0,0,0,0.0114,0.0114,0.491,0.646,0.351,1,0.507,0.811,0.507,0.507,0.139,0.139,0.968,0.968,0,1 +1,0.384,0.584,0.584,0,0,1,1,1,0,0,0,0,0,0,0,0.00257,0.0142,0.0168,0.584,0.658,0.473,1,0.587,0.58,0.587,0.587,0.0783,0.0783,0.54,0.54,0,1 +1,0.467,0.621,0.621,0,0,0.96,0.96,0.96,0,0,0,0,0,0,0,0.033,0.0284,0.0614,0.621,0.621,0.662,1,0.676,0.353,0.676,0.676,0.0482,0.0482,0.484,0.484,0,1 +1,0.595,0.658,0.658,0,0,0.94,0.94,0.94,0,0,0,0,0,0,0,0,0,0,0.658,0.583,0.817,1,0.72,0.222,0.72,0.72,0.0241,0.0241,0.405,0.405,0,1 +1,0.726,0.639,0.639,0,0,0.92,0.92,0.92,0,0,0,0,0,0,0,0.00273,0.00284,0.00557,0.639,0.559,0.774,1,0.765,0.0957,0.765,0.765,0.0181,0.0181,0.341,0.341,0,1 +1,0.219,0.547,0.547,0,0,0.88,0.88,0.88,0,0,0,0,0,0,0,0.0191,0.0114,0.0305,0.354,0.476,0.468,1,0.667,0.0655,0.667,0.667,0.0181,0.0181,0.19,0.19,0.667,1 +1,0.0495,0.463,0.463,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.203,1,0.578,0.0353,0.578,0.578,0.0181,0.0181,0.19,0.19,1,1 +1,0.0495,0.371,0.371,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.099,1,0.391,0.0202,0.391,0.391,0.0181,0.0181,0.19,0.19,1,1 +1,0.0495,0.343,0.343,0,0,0.78,0.78,0.78,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0495,1,0.205,0.00504,0.205,0.205,0.0181,0.0181,0.23,0.23,1,1 +1,0.0495,0.343,0.343,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.027,1,0.169,0.00504,0.169,0.169,0.0181,0.0181,0.19,0.19,1,1 +1,0.0495,0.334,0.334,0,0,0.74,0.74,0.74,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.018,1,0.133,0.0101,0.133,0.133,0.0241,0.0241,0.23,0.23,1,1 +1,0.0495,0.306,0.306,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0248,1,0.142,0.0353,0.142,0.142,0.0482,0.0482,0.373,0.373,1,1 +1,0.0768,0.334,0.334,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0,0,0,0.283,0.447,0.0315,1,0.16,0.0605,0.16,0.16,0.0903,0.0903,0.532,0.532,0.667,1 +1,0.136,0.398,0.398,0,0.0853,0.76,0.76,0.76,0,0,0,0,0,0,0,0,0,0,0.305,0.463,0.054,1,0.231,0.146,0.231,0.231,0.157,0.157,0.452,0.452,0.667,1 +1,0.163,0.436,0.436,0,0.0609,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0.00284,0.00284,0.317,0.484,0.0968,1,0.293,0.232,0.293,0.293,0.265,0.265,0.19,0.19,0.667,1 +1,0.162,0.315,0.315,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0,0,0.277,0.488,0.16,1,0.293,0.222,0.293,0.293,0.506,0.506,0.19,0.19,0.667,1 +1,0.156,0.213,0.213,0,0.0122,0.82,0.82,0.82,0,0,0.0079,0.00596,0,0,0.0368,0.021,0,0.0578,0.243,0.488,0.212,1,0.285,0.207,0.285,0.285,0.729,0.729,0.151,0.151,0.667,1 +1,0.359,0.222,0.222,0,0.0975,0.8,0.8,0.8,0,0,0,0.0151,0.055,0.055,0.0276,0.0339,0.00568,0.0672,0.222,0.534,0.252,1,0.293,0.222,0.293,0.293,0.765,0.765,0.119,0.119,0,1 +1,0.343,0.232,0.232,0,0,0.8,0.8,0.8,0,0,0,0,0.128,0.128,0,0.0267,0.00852,0.0352,0.232,0.546,0.277,1,0.293,0.232,0.293,0.293,0.729,0.729,0.111,0.111,0,1 +0.667,0.237,0.222,0.222,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0.0406,0.017,0.0577,0.234,0.528,0.297,1,0.285,0.212,0.285,0.285,0.723,0.723,0.111,0.111,0,1 +0.667,0.235,0.259,0.259,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0.00568,0.00568,0.259,0.528,0.351,1,0.285,0.191,0.285,0.285,0.542,0.542,0.111,0.111,0,1 +0.667,0.235,0.287,0.287,0,0,0.84,0.84,0.84,0.00652,0.0175,0,0,0,0,0,0,0.0114,0.0114,0.277,0.519,0.401,1,0.285,0.247,0.285,0.285,0.452,0.452,0.19,0.19,0,1 +0.667,0.235,0.297,0.297,0,0,0.82,0.82,0.82,0.0203,0.00637,0,0,0,0,0,0,0,0,0.284,0.536,0.441,1,0.293,0.297,0.293,0.293,0.367,0.367,0.46,0.46,0,1 +0.667,0.238,0.361,0.361,0,0.0487,0.88,0.88,0.88,0.0207,0,0,0,0,0,0,0,0.017,0.017,0.327,0.552,0.464,1,0.4,0.554,0.4,0.4,0.223,0.223,1,1,0,1 +1,0.247,0.491,0.491,0,0.134,0.96,0.96,0.96,0,0,0,0,0,0,0,0,0,0,0.413,0.585,0.479,1,0.507,0.811,0.507,0.507,0.139,0.139,0.968,0.968,0.333,1 +1,0.273,0.584,0.584,0,0,1,1,1,0,0,0,0,0,0,0,0,0.0142,0.0142,0.475,0.594,0.565,1,0.587,0.58,0.587,0.587,0.0783,0.0783,0.54,0.54,0.333,1 +0.667,0.189,0.621,0.621,0,0,0.96,0.96,0.96,0,0,0,0,0,0,0,0,0.0114,0.0114,0.379,0.517,0.743,1,0.676,0.353,0.676,0.676,0.0482,0.0482,0.484,0.484,0.333,1 +0.667,0.413,0.658,0.658,0,0,0.94,0.94,0.94,0,0,0,0,0,0,0,0,0,0,0.525,0.544,0.873,1,0.72,0.222,0.72,0.72,0.0241,0.0241,0.405,0.405,0,1 +1,0.726,0.639,0.639,0,0,0.92,0.92,0.92,0,0,0,0,0,0,0,0,0.0142,0.0142,0.639,0.559,0.806,1,0.765,0.0957,0.765,0.765,0.0181,0.0181,0.341,0.341,0,1 +1,0.557,0.547,0.547,0,0,0.88,0.88,0.88,0.00915,0.0414,0,0,0,0,0,0,0,0,0.547,0.497,0.509,1,0.667,0.0655,0.667,0.667,0.0181,0.0181,0.19,0.19,0,1 +1,0.249,0.463,0.463,0,0,0.82,0.82,0.82,0.00988,0.0541,0,0,0,0,0,0,0,0,0.463,0.447,0.232,1,0.578,0.0353,0.578,0.578,0.0181,0.0181,0.19,0.19,0,1 +1,0.099,0.371,0.371,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0.0223,0,0.0223,0.333,0.445,0.099,1,0.391,0.0202,0.391,0.391,0.0181,0.0181,0.19,0.19,0.333,1 +1,0.0495,0.343,0.343,0,0,0.78,0.78,0.78,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0495,1,0.205,0.00504,0.205,0.205,0.0181,0.0181,0.23,0.23,1,1 +1,0.0495,0.343,0.343,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.027,1,0.169,0.00504,0.169,0.169,0.0181,0.0181,0.19,0.19,1,1 +1,0.0495,0.334,0.334,0,0,0.74,0.74,0.74,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.018,1,0.133,0.0101,0.133,0.133,0.0241,0.0241,0.23,0.23,1,1 +1,0.0495,0.306,0.306,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0248,1,0.142,0.0353,0.142,0.142,0.0482,0.0482,0.373,0.373,1,1 +1,0.0495,0.334,0.334,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0315,1,0.16,0.0605,0.16,0.16,0.0903,0.0903,0.532,0.532,1,1 +1,0.0495,0.398,0.398,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.054,1,0.231,0.146,0.231,0.231,0.157,0.157,0.452,0.452,1,1 +1,0.163,0.436,0.436,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0,0,0.317,0.484,0.0968,1,0.293,0.232,0.293,0.293,0.265,0.265,0.19,0.19,0.667,1 +1,0.162,0.315,0.315,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0,0,0.277,0.488,0.16,1,0.293,0.222,0.293,0.293,0.506,0.506,0.19,0.19,0.667,1 +1,0.263,0.213,0.213,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0,0,0.228,0.511,0.212,1,0.285,0.207,0.285,0.285,0.729,0.729,0.151,0.151,0.333,1 +0.667,0.153,0.222,0.222,0,0.0122,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0.00568,0.00568,0.246,0.488,0.252,1,0.293,0.222,0.293,0.293,0.765,0.765,0.119,0.119,0.333,1 +1,0.245,0.232,0.232,0,0.0609,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0,0,0.24,0.519,0.277,1,0.293,0.232,0.293,0.293,0.729,0.729,0.111,0.111,0.333,1 +0.667,0.143,0.222,0.222,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0.0114,0.0114,0.246,0.496,0.297,1,0.285,0.212,0.285,0.285,0.723,0.723,0.111,0.111,0.333,1 +0.667,0.142,0.259,0.259,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.496,0.351,1,0.285,0.191,0.285,0.285,0.542,0.542,0.111,0.111,0.333,1 +0.667,0.142,0.287,0.287,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0,0,0.268,0.492,0.401,1,0.285,0.247,0.285,0.285,0.452,0.452,0.19,0.19,0.333,1 +0.333,0.142,0.297,0.297,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0,0,0.271,0.501,0.441,1,0.293,0.297,0.293,0.293,0.367,0.367,0.46,0.46,0,1 +0.667,0.238,0.361,0.361,0,0.0366,0.88,0.88,0.88,0,0,0,0,0,0,0,0,0.0284,0.0284,0.327,0.552,0.464,1,0.4,0.554,0.4,0.4,0.223,0.223,1,1,0,1 +0.333,0.148,0.491,0.491,0,0,0.96,0.96,0.96,0,0,0,0,0,0,0,0,0.00284,0.00284,0.336,0.525,0.479,1,0.507,0.811,0.507,0.507,0.139,0.139,0.968,0.968,0,1 +0.667,0.273,0.584,0.584,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0.475,0.594,0.565,1,0.587,0.58,0.587,0.587,0.0783,0.0783,0.54,0.54,0,1 +0.667,0.328,0.621,0.621,0,0,0.96,0.96,0.96,0,0,0,0,0,0,0,0,0.00852,0.00852,0.5,0.569,0.743,1,0.676,0.353,0.676,0.676,0.0482,0.0482,0.484,0.484,0,1 +1,0.595,0.658,0.658,0,0,0.94,0.94,0.94,0,0,0,0,0,0,0,0,0.00568,0.00568,0.658,0.583,0.873,1,0.72,0.222,0.72,0.72,0.0241,0.0241,0.405,0.405,0,1 +1,0.501,0.639,0.639,0,0,0.92,0.92,0.92,0,0,0,0,0,0,0,0.012,0.00284,0.0148,0.512,0.528,0.806,1,0.765,0.0957,0.765,0.765,0.0181,0.0181,0.341,0.341,0.333,1 +1,0.388,0.547,0.547,0,0,0.88,0.88,0.88,0,0,0,0,0,0,0,0.0197,0,0.0197,0.45,0.486,0.509,1,0.667,0.0655,0.667,0.667,0.0181,0.0181,0.19,0.19,0.333,1 +1,0.116,0.463,0.463,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0,0,0.326,0.459,0.232,1,0.578,0.0353,0.578,0.578,0.0181,0.0181,0.19,0.19,0.667,1 +1,0.0495,0.371,0.371,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0.0142,0.0142,0.258,0.465,0.0833,1,0.391,0.0202,0.391,0.391,0.0181,0.0181,0.19,0.19,1,1 +1,0.0495,0.343,0.343,0,0,0.78,0.78,0.78,0,0,0,0,0,0,0,0,0.0114,0.0114,0.258,0.465,0.0405,1,0.205,0.00504,0.205,0.205,0.0181,0.0181,0.23,0.23,1,1 +1,0.0495,0.343,0.343,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.465,0.0203,1,0.169,0.00504,0.169,0.169,0.0181,0.0181,0.19,0.19,1,1 +1,0.0495,0.334,0.334,0,0,0.74,0.74,0.74,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0158,1,0.133,0.0101,0.133,0.133,0.0241,0.0241,0.23,0.23,1,1 +1,0.0495,0.306,0.306,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0248,1,0.142,0.0353,0.142,0.142,0.0482,0.0482,0.373,0.373,1,1 +1,0.0495,0.334,0.334,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0.0391,0.0196,0,0.0587,0.258,0.465,0.0405,1,0.16,0.0605,0.16,0.16,0.0903,0.0903,0.532,0.532,1,1 +1,0.136,0.398,0.398,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0.00978,0,0,0.00978,0.305,0.463,0.0653,1,0.231,0.146,0.231,0.231,0.157,0.157,0.452,0.452,0.667,1 +0.667,0.163,0.436,0.436,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0,0,0.317,0.484,0.09,1,0.293,0.232,0.293,0.293,0.265,0.265,0.19,0.19,0.333,1 +0.333,0.162,0.315,0.315,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0,0,0.277,0.488,0.11,1,0.293,0.222,0.293,0.293,0.506,0.506,0.19,0.19,0,1 +0.333,0.156,0.213,0.213,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0.00263,0.00568,0.00831,0.243,0.488,0.131,1,0.285,0.207,0.285,0.285,0.729,0.729,0.151,0.151,0,1 +0.333,0.153,0.222,0.222,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0.0364,0.00284,0.0392,0.246,0.488,0.146,1,0.293,0.222,0.293,0.293,0.765,0.765,0.119,0.119,0,1 +0,0.0495,0.232,0.232,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0.0199,0.00284,0.0227,0.258,0.465,0.162,1,0.293,0.232,0.293,0.293,0.729,0.729,0.111,0.111,0,1 +0.333,0.143,0.222,0.222,0,0.0366,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0,0,0.246,0.496,0.171,1,0.285,0.212,0.285,0.285,0.723,0.723,0.111,0.111,0,1 +0.333,0.142,0.259,0.259,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0,0,0.258,0.496,0.194,1,0.285,0.191,0.285,0.285,0.542,0.542,0.111,0.111,0,1 +0,0.0495,0.287,0.287,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.205,1,0.285,0.247,0.285,0.285,0.452,0.452,0.19,0.19,0,1 +0.333,0.142,0.297,0.297,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0.00284,0.00284,0.271,0.501,0.23,1,0.293,0.297,0.293,0.293,0.367,0.367,0.46,0.46,0,1 +0.333,0.144,0.361,0.361,0,0,0.88,0.88,0.88,0,0,0,0,0,0,0,0,0.00852,0.00852,0.292,0.509,0.286,1,0.4,0.554,0.4,0.4,0.223,0.223,1,1,0,1 +0.667,0.247,0.491,0.491,0,0.0366,0.96,0.96,0.96,0,0,0,0,0,0,0,0,0.00284,0.00284,0.413,0.585,0.351,1,0.507,0.811,0.507,0.507,0.139,0.139,0.968,0.968,0,1 +0.667,0.273,0.584,0.584,0,0,1,1,1,0,0,0,0,0,0,0,0,0.00568,0.00568,0.475,0.594,0.473,1,0.587,0.58,0.587,0.587,0.0783,0.0783,0.54,0.54,0,1 +1,0.467,0.621,0.621,0,0,0.96,0.96,0.96,0.00691,0.0175,0,0,0,0,0,0,0.00284,0.00284,0.621,0.621,0.662,1,0.676,0.353,0.676,0.676,0.0482,0.0482,0.484,0.484,0,1 +0.667,0.413,0.658,0.658,0,0,0.94,0.94,0.94,0.0172,0.00637,0,0,0,0,0,0.0142,0.00284,0.017,0.525,0.544,0.817,1,0.72,0.222,0.72,0.72,0.0241,0.0241,0.405,0.405,0,1 +1,0.726,0.639,0.639,0,0,0.92,0.92,0.92,0,0,0,0,0,0,0,0.0556,0.00284,0.0584,0.639,0.559,0.774,1,0.765,0.0957,0.765,0.765,0.0181,0.0181,0.341,0.341,0,1 +1,0.388,0.547,0.547,0,0,0.88,0.88,0.88,0,0,0,0,0,0,0,0,0.00568,0.00568,0.45,0.486,0.468,1,0.667,0.0655,0.667,0.667,0.0181,0.0181,0.19,0.19,0.333,1 +1,0.116,0.463,0.463,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0,0,0.326,0.459,0.203,1,0.578,0.0353,0.578,0.578,0.0181,0.0181,0.19,0.19,0.667,1 +1,0.0743,0.371,0.371,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0,0,0.295,0.455,0.0833,1,0.391,0.0202,0.391,0.391,0.0181,0.0181,0.19,0.19,0.667,1 +1,0.0578,0.343,0.343,0,0,0.78,0.78,0.78,0,0,0,0,0,0,0,0,0,0,0.286,0.447,0.0405,1,0.205,0.00504,0.205,0.205,0.0181,0.0181,0.23,0.23,0.667,1 +1,0.0495,0.343,0.343,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0,0.00852,0.00852,0.258,0.465,0.0203,1,0.169,0.00504,0.169,0.169,0.0181,0.0181,0.19,0.19,1,1 +1,0.0495,0.334,0.334,0,0,0.74,0.74,0.74,0,0,0,0,0,0,0,0.0166,0,0.0166,0.258,0.465,0.0158,1,0.133,0.0101,0.133,0.133,0.0241,0.0241,0.23,0.23,1,1 +1,0.0495,0.306,0.306,0,0.122,0.72,0.72,0.72,0,0,0,0,0,0,0.0338,0,0,0.0338,0.258,0.465,0.0248,1,0.142,0.0353,0.142,0.142,0.0482,0.0482,0.373,0.373,1,1 +1,0.0768,0.334,0.334,0,0.0244,0.72,0.72,0.72,0,0,0,0,0,0,0.0169,0.0148,0.00852,0.0402,0.283,0.447,0.0405,1,0.16,0.0605,0.16,0.16,0.0903,0.0903,0.532,0.532,0.667,1 +1,0.222,0.398,0.398,0,0.0731,0.76,0.76,0.76,0,0,0,0,0,0,0,0.0241,0,0.0241,0.352,0.461,0.0653,1,0.231,0.146,0.231,0.231,0.157,0.157,0.452,0.452,0.333,1 +0.333,0.0495,0.436,0.436,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.09,1,0.293,0.232,0.293,0.293,0.265,0.265,0.19,0.19,0.333,1 +0.333,0.0495,0.315,0.315,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0.00568,0.00568,0.258,0.465,0.11,1,0.293,0.222,0.293,0.293,0.506,0.506,0.19,0.19,0.333,1 +0.333,0.156,0.213,0.213,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0.00284,0.00284,0.243,0.488,0.131,1,0.285,0.207,0.285,0.285,0.729,0.729,0.151,0.151,0,1 +0.333,0.153,0.222,0.222,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0,0,0.246,0.488,0.146,1,0.293,0.222,0.293,0.293,0.765,0.765,0.119,0.119,0,1 +0.333,0.147,0.232,0.232,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0,0,0.249,0.492,0.162,1,0.293,0.232,0.293,0.293,0.729,0.729,0.111,0.111,0,1 +0,0.0495,0.222,0.222,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0.00568,0.00568,0.258,0.465,0.171,1,0.285,0.212,0.285,0.285,0.723,0.723,0.111,0.111,0,1 +0.333,0.142,0.259,0.259,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0.00852,0.00852,0.258,0.496,0.194,1,0.285,0.191,0.285,0.285,0.542,0.542,0.111,0.111,0,1 +0.333,0.142,0.287,0.287,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0.00284,0.00284,0.268,0.492,0.205,1,0.285,0.247,0.285,0.285,0.452,0.452,0.19,0.19,0,1 +0.333,0.142,0.297,0.297,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0,0,0.271,0.501,0.23,1,0.293,0.297,0.293,0.293,0.367,0.367,0.46,0.46,0,1 +1,0.332,0.361,0.361,0,0,0.88,0.88,0.88,0,0,0,0,0,0,0,0.00256,0.00284,0.0054,0.361,0.596,0.286,1,0.4,0.554,0.4,0.4,0.223,0.223,1,1,0,1 +0.667,0.247,0.491,0.491,0,0,0.96,0.96,0.96,0,0,0,0,0,0,0,0.0128,0.0199,0.0327,0.413,0.585,0.351,1,0.507,0.811,0.507,0.507,0.139,0.139,0.968,0.968,0,1 +1,0.384,0.584,0.584,0,0.0853,1,1,1,0,0,0,0,0,0,0.052,0,0.0114,0.0633,0.584,0.658,0.473,1,0.587,0.58,0.587,0.587,0.0783,0.0783,0.54,0.54,0,1 +1,0.467,0.621,0.621,0,0.0975,0.96,0.96,0.96,0,0,0,0,0,0,0,0.00269,0.00284,0.00553,0.621,0.621,0.662,1,0.676,0.353,0.676,0.676,0.0482,0.0482,0.484,0.484,0,1 +1,0.595,0.658,0.658,0,0,0.94,0.94,0.94,0,0,0,0,0,0,0,0.0377,0.00568,0.0434,0.658,0.583,0.817,1,0.72,0.222,0.72,0.72,0.0241,0.0241,0.405,0.405,0,1 +1,0.501,0.639,0.639,0,0,0.92,0.92,0.92,0,0,0,0,0,0,0.0387,0.0166,0.0142,0.0695,0.512,0.528,0.774,1,0.765,0.0957,0.765,0.765,0.0181,0.0181,0.341,0.341,0.333,1 +1,0.219,0.547,0.547,0,0,0.88,0.88,0.88,0,0,0,0,0,0,0.00968,0.00265,0,0.0123,0.354,0.476,0.468,1,0.667,0.0655,0.667,0.667,0.0181,0.0181,0.19,0.19,0.667,1 +1,0.116,0.463,0.463,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0.0212,0,0.0212,0.326,0.459,0.203,1,0.578,0.0353,0.578,0.578,0.0181,0.0181,0.19,0.19,0.667,1 +1,0.0495,0.371,0.371,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0833,1,0.391,0.0202,0.391,0.391,0.0181,0.0181,0.19,0.19,1,1 +1,0.0578,0.343,0.343,0,0,0.78,0.78,0.78,0,0,0,0,0,0,0,0,0,0,0.286,0.447,0.0405,1,0.205,0.00504,0.205,0.205,0.0181,0.0181,0.23,0.23,0.667,1 +1,0.0495,0.343,0.343,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0203,1,0.169,0.00504,0.169,0.169,0.0181,0.0181,0.19,0.19,1,1 +1,0.0495,0.334,0.334,0,0,0.74,0.74,0.74,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0158,1,0.133,0.0101,0.133,0.133,0.0241,0.0241,0.23,0.23,1,1 +0.667,0.0495,0.306,0.306,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0248,1,0.142,0.0353,0.142,0.142,0.0482,0.0482,0.373,0.373,0.667,1 +0.667,0.0495,0.334,0.334,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0405,1,0.16,0.0605,0.16,0.16,0.0903,0.0903,0.532,0.532,0.667,1 +0.667,0.0495,0.398,0.398,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0.0494,0,0.0494,0.258,0.465,0.0653,1,0.231,0.146,0.231,0.231,0.157,0.157,0.452,0.452,0.667,1 +1,0.277,0.436,0.436,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0.0932,0.0125,0,0.106,0.376,0.503,0.09,1,0.293,0.232,0.293,0.293,0.265,0.265,0.19,0.19,0.333,1 +0.333,0.0495,0.315,0.315,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.11,1,0.293,0.222,0.293,0.293,0.506,0.506,0.19,0.19,0.333,1 +0.333,0.0495,0.213,0.213,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0.00245,0,0.00245,0.258,0.465,0.131,1,0.285,0.207,0.285,0.285,0.729,0.729,0.151,0.151,0.333,1 +0.333,0.153,0.222,0.222,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0.0461,0.00284,0.0489,0.246,0.488,0.146,1,0.293,0.222,0.293,0.293,0.765,0.765,0.119,0.119,0,1 +0.333,0.147,0.232,0.232,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0,0,0.249,0.492,0.162,1,0.293,0.232,0.293,0.293,0.729,0.729,0.111,0.111,0,1 +0.333,0.143,0.222,0.222,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0,0,0.246,0.496,0.171,1,0.285,0.212,0.285,0.285,0.723,0.723,0.111,0.111,0,1 +0.333,0.142,0.259,0.259,0,0,0.84,0.84,0.84,0,0,0.0106,0,0,0,0,0,0,0,0.258,0.496,0.194,1,0.285,0.191,0.285,0.285,0.542,0.542,0.111,0.111,0,1 +0.333,0.142,0.287,0.287,0,0,0.84,0.84,0.84,0,0,0.0393,0.0158,0,0,0,0,0.00852,0.00852,0.268,0.492,0.205,1,0.285,0.247,0.285,0.285,0.452,0.452,0.19,0.19,0,1 +0.333,0.142,0.297,0.297,0,0,0.82,0.82,0.82,0,0,0.0137,0,0.275,0.275,0,0,0.00852,0.00852,0.271,0.501,0.23,1,0.293,0.297,0.293,0.293,0.367,0.367,0.46,0.46,0,1 +0.333,0.144,0.361,0.361,0,0.0366,0.88,0.88,0.88,0,0,0,0,0,0,0,0,0.00568,0.00568,0.292,0.509,0.286,1,0.4,0.554,0.4,0.4,0.223,0.223,1,1,0,1 +1,0.345,0.491,0.491,0,0,0.96,0.96,0.96,0,0,0,0,0,0,0,0,0.00284,0.00284,0.491,0.646,0.351,1,0.507,0.811,0.507,0.507,0.139,0.139,0.968,0.968,0,1 +1,0.384,0.584,0.584,0,0,1,1,1,0.0161,0.0478,0.00702,0,0,0,0,0,0.0114,0.0114,0.584,0.658,0.473,1,0.587,0.58,0.587,0.587,0.0783,0.0783,0.54,0.54,0,1 +1,0.467,0.621,0.621,0,0,0.96,0.96,0.96,0.011,0,0,0.0112,0,0,0,0,0,0,0.621,0.621,0.662,1,0.676,0.353,0.676,0.676,0.0482,0.0482,0.484,0.484,0,1 +1,0.413,0.658,0.658,0,0,0.94,0.94,0.94,0,0,0,0.00982,0.147,0.147,0,0.0207,0.00284,0.0235,0.525,0.544,0.817,1,0.72,0.222,0.72,0.72,0.0241,0.0241,0.405,0.405,0.333,1 +1,0.275,0.639,0.639,0,0,0.92,0.92,0.92,0,0,0,0,0.22,0.22,0,0,0.00284,0.00284,0.385,0.496,0.774,1,0.765,0.0957,0.765,0.765,0.0181,0.0181,0.341,0.341,0.667,1 +1,0.219,0.547,0.547,0,0,0.88,0.88,0.88,0,0,0,0,0,0,0,0,0,0,0.354,0.476,0.468,1,0.667,0.0655,0.667,0.667,0.0181,0.0181,0.19,0.19,0.667,1 +1,0.116,0.463,0.463,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0.00852,0.00852,0.326,0.459,0.203,1,0.578,0.0353,0.578,0.578,0.0181,0.0181,0.19,0.19,0.667,1 +1,0.0743,0.371,0.371,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0.00568,0.00568,0.295,0.455,0.0833,1,0.391,0.0202,0.391,0.391,0.0181,0.0181,0.19,0.19,0.667,1 +1,0.0495,0.343,0.343,0,0,0.78,0.78,0.78,0,0,0,0,0,0,0,0,0.00568,0.00568,0.258,0.465,0.0405,1,0.205,0.00504,0.205,0.205,0.0181,0.0181,0.23,0.23,1,1 +1,0.0495,0.343,0.343,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0,0,0,0.286,0.443,0.0203,1,0.169,0.00504,0.169,0.169,0.0181,0.0181,0.19,0.19,0.667,1 +1,0.0495,0.334,0.334,0,0,0.74,0.74,0.74,0,0,0,0,0,0,0,0,0,0,0.283,0.438,0.0158,1,0.133,0.0101,0.133,0.133,0.0241,0.0241,0.23,0.23,0.667,1 +1,0.05,0.306,0.306,0,0.0366,0.72,0.72,0.72,0,0,0,0,0,0,0,0.02,0,0.02,0.274,0.443,0.0248,1,0.142,0.0353,0.142,0.142,0.0482,0.0482,0.373,0.373,0.667,1 +1,0.0768,0.334,0.334,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0.026,0,0.026,0.283,0.447,0.0405,1,0.16,0.0605,0.16,0.16,0.0903,0.0903,0.532,0.532,0.667,1 +1,0.222,0.398,0.398,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0.046,0,0.046,0.352,0.461,0.0653,1,0.231,0.146,0.231,0.231,0.157,0.157,0.452,0.452,0.333,1 +0.667,0.163,0.436,0.436,0,0.0487,0.8,0.8,0.8,0,0,0,0,0,0,0,0.0198,0,0.0198,0.317,0.484,0.09,1,0.293,0.232,0.293,0.293,0.265,0.265,0.19,0.19,0.333,1 +0.667,0.162,0.315,0.315,0,0.0244,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0.017,0.017,0.277,0.488,0.11,1,0.293,0.222,0.293,0.293,0.506,0.506,0.19,0.19,0.333,1 +0.333,0.0495,0.213,0.213,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.465,0.131,1,0.285,0.207,0.285,0.285,0.729,0.729,0.151,0.151,0.333,1 +0.333,0.0495,0.222,0.222,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.146,1,0.293,0.222,0.293,0.293,0.765,0.765,0.119,0.119,0.333,1 +0.333,0.147,0.232,0.232,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0.00852,0.00852,0.249,0.492,0.162,1,0.293,0.232,0.293,0.293,0.729,0.729,0.111,0.111,0,1 +0.333,0.143,0.222,0.222,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0.0766,0.0373,0,0.114,0.246,0.496,0.171,1,0.285,0.212,0.285,0.285,0.723,0.723,0.111,0.111,0,1 +0.333,0.142,0.259,0.259,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0.0347,0,0.0347,0.258,0.496,0.194,1,0.285,0.191,0.285,0.285,0.542,0.542,0.111,0.111,0,1 +0,0.0495,0.287,0.287,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.205,1,0.285,0.247,0.285,0.285,0.452,0.452,0.19,0.19,0,1 +0,0.0495,0.297,0.297,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.23,1,0.293,0.297,0.293,0.293,0.367,0.367,0.46,0.46,0,1 +0.333,0.144,0.361,0.361,0,0,0.88,0.88,0.88,0,0,0,0,0,0,0,0,0.00568,0.00568,0.292,0.509,0.286,1,0.4,0.554,0.4,0.4,0.223,0.223,1,1,0,1 +0.667,0.247,0.491,0.491,0,0,0.96,0.96,0.96,0,0,0,0,0,0,0,0,0.017,0.017,0.413,0.585,0.351,1,0.507,0.811,0.507,0.507,0.139,0.139,0.968,0.968,0,1 +1,0.384,0.584,0.584,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0.584,0.658,0.473,1,0.587,0.58,0.587,0.587,0.0783,0.0783,0.54,0.54,0,1 +1,0.467,0.621,0.621,0,0,0.96,0.96,0.96,0,0,0,0,0,0,0,0,0.00852,0.00852,0.621,0.621,0.662,1,0.676,0.353,0.676,0.676,0.0482,0.0482,0.484,0.484,0,1 +1,0.595,0.658,0.658,0,0,0.94,0.94,0.94,0,0,0,0,0,0,0,0,0.00852,0.00852,0.658,0.583,0.817,1,0.72,0.222,0.72,0.72,0.0241,0.0241,0.405,0.405,0,1 +1,0.501,0.639,0.639,0,0,0.92,0.92,0.92,0,0,0,0,0,0,0,0,0.00568,0.00568,0.512,0.528,0.774,1,0.765,0.0957,0.765,0.765,0.0181,0.0181,0.341,0.341,0.333,1 +1,0.219,0.547,0.547,0,0,0.88,0.88,0.88,0,0,0,0,0,0,0,0,0.0142,0.0142,0.354,0.476,0.468,1,0.667,0.0655,0.667,0.667,0.0181,0.0181,0.19,0.19,0.667,1 +1,0.0495,0.463,0.463,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0.0227,0.0227,0.258,0.465,0.203,1,0.578,0.0353,0.578,0.578,0.0181,0.0181,0.19,0.19,1,1 +1,0.0495,0.371,0.371,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.465,0.0833,1,0.391,0.0202,0.391,0.391,0.0181,0.0181,0.19,0.19,1,1 +1,0.0495,0.343,0.343,0,0,0.78,0.78,0.78,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0405,1,0.205,0.00504,0.205,0.205,0.0181,0.0181,0.23,0.23,1,1 +1,0.0495,0.343,0.343,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0203,1,0.169,0.00504,0.169,0.169,0.0181,0.0181,0.19,0.19,1,1 +1,0.0495,0.334,0.334,0,0,0.74,0.74,0.74,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0158,1,0.133,0.0101,0.133,0.133,0.0241,0.0241,0.23,0.23,1,1 +1,0.0495,0.306,0.306,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0248,1,0.142,0.0353,0.142,0.142,0.0482,0.0482,0.373,0.373,1,1 +1,0.0495,0.334,0.334,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0.00522,0,0.00522,0.258,0.465,0.0405,1,0.16,0.0605,0.16,0.16,0.0903,0.0903,0.532,0.532,1,1 +1,0.222,0.398,0.398,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0.0815,0,0.0815,0.352,0.461,0.0653,1,0.231,0.146,0.231,0.231,0.157,0.157,0.452,0.452,0.333,1 +0.667,0.277,0.436,0.436,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0.0298,0,0.0298,0.376,0.503,0.09,1,0.293,0.232,0.293,0.293,0.265,0.265,0.19,0.19,0,1 +0.667,0.274,0.315,0.315,0,0,0.82,0.82,0.82,0,0,0.0439,0.00596,0,0,0,0.0399,0,0.0399,0.296,0.511,0.11,1,0.293,0.222,0.293,0.293,0.506,0.506,0.19,0.19,0,1 +0.667,0.263,0.213,0.213,0,0,0.82,0.82,0.82,0,0,0.0334,0.00982,0.147,0.147,0,0.0203,0,0.0203,0.228,0.511,0.131,1,0.285,0.207,0.285,0.285,0.729,0.729,0.151,0.151,0,1 +0.667,0.256,0.222,0.222,0,0,0.8,0.8,0.8,0,0,0.0296,0,0.312,0.312,0,0,0.0114,0.0114,0.234,0.511,0.146,1,0.293,0.222,0.293,0.293,0.765,0.765,0.119,0.119,0,1 +0.333,0.147,0.232,0.232,0,0,0.8,0.8,0.8,0,0,0.0494,0,0,0,0,0,0.017,0.017,0.249,0.492,0.162,1,0.293,0.232,0.293,0.293,0.729,0.729,0.111,0.111,0,1 +0.333,0.143,0.222,0.222,0,0,0.84,0.84,0.84,0,0,0.0467,0,0,0,0,0,0.00852,0.00852,0.246,0.496,0.171,1,0.285,0.212,0.285,0.285,0.723,0.723,0.111,0.111,0,1 +0.333,0.142,0.259,0.259,0,0,0.84,0.84,0.84,0,0,0.0272,0,0,0,0,0,0.00284,0.00284,0.258,0.496,0.194,1,0.285,0.191,0.285,0.285,0.542,0.542,0.111,0.111,0,1 +0.333,0.142,0.287,0.287,0,0,0.84,0.84,0.84,0,0,0.00448,0,0,0,0,0,0,0,0.268,0.492,0.205,1,0.285,0.247,0.285,0.285,0.452,0.452,0.19,0.19,0,1 +0.333,0.142,0.297,0.297,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0,0,0.271,0.501,0.23,1,0.293,0.297,0.293,0.293,0.367,0.367,0.46,0.46,0,1 +0,0.0495,0.361,0.361,0,0.0487,0.88,0.88,0.88,0,0,0,0,0,0,0,0,0.00568,0.00568,0.258,0.465,0.286,1,0.4,0.554,0.4,0.4,0.223,0.223,1,1,0,1 +1,0.345,0.491,0.491,0,0.0244,0.96,0.96,0.96,0,0,0,0,0,0,0,0,0,0,0.491,0.646,0.351,1,0.507,0.811,0.507,0.507,0.139,0.139,0.968,0.968,0,1 +1,0.384,0.584,0.584,0,0,1,1,1,0.00949,0.0414,0,0,0,0,0,0.00273,0.0142,0.0169,0.584,0.658,0.473,1,0.587,0.58,0.587,0.587,0.0783,0.0783,0.54,0.54,0,1 +1,0.467,0.621,0.621,0,0,0.96,0.96,0.96,0.0105,0.0302,0,0,0,0,0,0.0109,0.00568,0.0166,0.621,0.621,0.662,1,0.676,0.353,0.676,0.676,0.0482,0.0482,0.484,0.484,0,1 +1,0.595,0.658,0.658,0,0.0366,0.94,0.94,0.94,0,0,0,0,0,0,0,0,0.00284,0.00284,0.658,0.583,0.817,1,0.72,0.222,0.72,0.72,0.0241,0.0241,0.405,0.405,0,1 +1,0.275,0.639,0.639,0,0,0.92,0.92,0.92,0.024,0.0478,0,0,0,0,0,0,0,0,0.385,0.496,0.774,1,0.765,0.0957,0.765,0.765,0.0181,0.0181,0.341,0.341,0.667,1 +1,0.0495,0.547,0.547,0,0,0.88,0.88,0.88,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.465,0.468,1,0.667,0.0655,0.667,0.667,0.0181,0.0181,0.19,0.19,1,1 +1,0.0495,0.463,0.463,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.465,0.203,1,0.578,0.0353,0.578,0.578,0.0181,0.0181,0.19,0.19,1,1 +1,0.0495,0.371,0.371,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.099,1,0.391,0.0202,0.391,0.391,0.0181,0.0181,0.19,0.19,1,1 +1,0.0495,0.343,0.343,0,0,0.78,0.78,0.78,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.465,0.0495,1,0.205,0.00504,0.205,0.205,0.0181,0.0181,0.23,0.23,1,1 +1,0.0495,0.343,0.343,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.027,1,0.169,0.00504,0.169,0.169,0.0181,0.0181,0.19,0.19,1,1 +1,0.0495,0.334,0.334,0,0,0.74,0.74,0.74,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.018,1,0.133,0.0101,0.133,0.133,0.0241,0.0241,0.23,0.23,1,1 +1,0.0495,0.306,0.306,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0248,1,0.142,0.0353,0.142,0.142,0.0482,0.0482,0.373,0.373,1,1 +1,0.0495,0.334,0.334,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0315,1,0.16,0.0605,0.16,0.16,0.0903,0.0903,0.532,0.532,1,1 +1,0.0495,0.398,0.398,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.054,1,0.231,0.146,0.231,0.231,0.157,0.157,0.452,0.452,1,1 +0.667,0.0495,0.436,0.436,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0968,1,0.293,0.232,0.293,0.293,0.265,0.265,0.19,0.19,0.667,1 +0.667,0.0495,0.315,0.315,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.16,1,0.293,0.222,0.293,0.293,0.506,0.506,0.19,0.19,0.667,1 +0.667,0.156,0.213,0.213,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0.0255,0,0.0255,0.243,0.488,0.212,1,0.285,0.207,0.285,0.285,0.729,0.729,0.151,0.151,0.333,1 +1,0.256,0.222,0.222,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0.0203,0,0.0203,0.234,0.511,0.252,1,0.293,0.222,0.293,0.293,0.765,0.765,0.119,0.119,0.333,1 +1,0.343,0.232,0.232,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0,0,0.232,0.546,0.277,1,0.293,0.232,0.293,0.293,0.729,0.729,0.111,0.111,0,1 +0.667,0.237,0.222,0.222,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0,0,0.234,0.528,0.297,1,0.285,0.212,0.285,0.285,0.723,0.723,0.111,0.111,0,1 +1,0.328,0.259,0.259,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0.00568,0.00568,0.259,0.559,0.351,1,0.285,0.191,0.285,0.285,0.542,0.542,0.111,0.111,0,1 +0.667,0.235,0.287,0.287,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0,0,0.277,0.519,0.401,1,0.285,0.247,0.285,0.285,0.452,0.452,0.19,0.19,0,1 +0.667,0.142,0.297,0.297,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0.00568,0.00568,0.271,0.501,0.441,1,0.293,0.297,0.293,0.293,0.367,0.367,0.46,0.46,0.333,1 +0.667,0.144,0.361,0.361,0,0.0731,0.88,0.88,0.88,0,0,0,0,0,0,0,0,0.00284,0.00284,0.292,0.509,0.464,1,0.4,0.554,0.4,0.4,0.223,0.223,1,1,0.333,1 +0.667,0.148,0.491,0.491,0,0,0.96,0.96,0.96,0,0,0,0,0,0,0,0,0.00568,0.00568,0.336,0.525,0.479,1,0.507,0.811,0.507,0.507,0.139,0.139,0.968,0.968,0.333,1 +0.667,0.273,0.584,0.584,0,0,1,1,1,0,0,0,0,0,0,0,0,0.0142,0.0142,0.475,0.594,0.565,1,0.587,0.58,0.587,0.587,0.0783,0.0783,0.54,0.54,0,1 +1,0.467,0.621,0.621,0,0,0.96,0.96,0.96,0,0,0,0,0,0,0,0,0.00568,0.00568,0.621,0.621,0.743,1,0.676,0.353,0.676,0.676,0.0482,0.0482,0.484,0.484,0,1 +1,0.595,0.658,0.658,0,0,0.94,0.94,0.94,0,0,0,0,0,0,0,0.0246,0.0227,0.0473,0.658,0.583,0.873,1,0.72,0.222,0.72,0.72,0.0241,0.0241,0.405,0.405,0,1 +1,0.726,0.639,0.639,0,0,0.92,0.92,0.92,0,0,0,0,0,0,0,0.0235,0.00284,0.0264,0.639,0.559,0.806,1,0.765,0.0957,0.765,0.765,0.0181,0.0181,0.341,0.341,0,1 +1,0.388,0.547,0.547,0,0,0.88,0.88,0.88,0,0,0,0,0,0,0,0,0,0,0.45,0.486,0.509,1,0.667,0.0655,0.667,0.667,0.0181,0.0181,0.19,0.19,0.333,1 +1,0.116,0.463,0.463,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0.00284,0.00284,0.326,0.459,0.232,1,0.578,0.0353,0.578,0.578,0.0181,0.0181,0.19,0.19,0.667,1 +1,0.0495,0.371,0.371,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.099,1,0.391,0.0202,0.391,0.391,0.0181,0.0181,0.19,0.19,1,1 +1,0.0495,0.343,0.343,0,0,0.78,0.78,0.78,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0495,1,0.205,0.00504,0.205,0.205,0.0181,0.0181,0.23,0.23,1,1 +1,0.0495,0.343,0.343,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.465,0.027,1,0.169,0.00504,0.169,0.169,0.0181,0.0181,0.19,0.19,1,1 +1,0.0495,0.334,0.334,0,0,0.74,0.74,0.74,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.018,1,0.133,0.0101,0.133,0.133,0.0241,0.0241,0.23,0.23,1,1 +1,0.0495,0.306,0.306,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0248,1,0.142,0.0353,0.142,0.142,0.0482,0.0482,0.373,0.373,1,1 +1,0.0495,0.334,0.334,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0315,1,0.16,0.0605,0.16,0.16,0.0903,0.0903,0.532,0.532,1,1 +1,0.0495,0.398,0.398,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.054,1,0.231,0.146,0.231,0.231,0.157,0.157,0.452,0.452,1,1 +1,0.163,0.436,0.436,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0,0,0.317,0.484,0.0968,1,0.293,0.232,0.293,0.293,0.265,0.265,0.19,0.19,0.667,1 +0.667,0.0495,0.315,0.315,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.16,1,0.293,0.222,0.293,0.293,0.506,0.506,0.19,0.19,0.667,1 +0.667,0.0495,0.213,0.213,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0.0194,0,0.0194,0.258,0.465,0.212,1,0.285,0.207,0.285,0.285,0.729,0.729,0.151,0.151,0.667,1 +1,0.359,0.222,0.222,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0.0744,0,0.0744,0.222,0.534,0.252,1,0.293,0.222,0.293,0.293,0.765,0.765,0.119,0.119,0,1 +1,0.343,0.232,0.232,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0.0486,0,0.0486,0.232,0.546,0.277,1,0.293,0.232,0.293,0.293,0.729,0.729,0.111,0.111,0,1 +1,0.331,0.222,0.222,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0.0173,0,0.0173,0.222,0.559,0.297,1,0.285,0.212,0.285,0.285,0.723,0.723,0.111,0.111,0,1 +1,0.328,0.259,0.259,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0.0394,0.0313,0.00568,0.0764,0.259,0.559,0.351,1,0.285,0.191,0.285,0.285,0.542,0.542,0.111,0.111,0,1 +1,0.327,0.287,0.287,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0.063,0.00568,0.0686,0.287,0.546,0.401,1,0.285,0.247,0.285,0.285,0.452,0.452,0.19,0.19,0,1 +0.667,0.235,0.297,0.297,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0.00852,0.00852,0.284,0.536,0.441,1,0.293,0.297,0.293,0.293,0.367,0.367,0.46,0.46,0,1 +0.667,0.238,0.361,0.361,0,0,0.88,0.88,0.88,0,0,0,0,0,0,0,0.00271,0.0114,0.0141,0.327,0.552,0.464,1,0.4,0.554,0.4,0.4,0.223,0.223,1,1,0,1 +0.667,0.247,0.491,0.491,0,0,0.96,0.96,0.96,0,0,0,0,0,0,0,0.0135,0,0.0135,0.413,0.585,0.479,1,0.507,0.811,0.507,0.507,0.139,0.139,0.968,0.968,0,1 +0.667,0.273,0.584,0.584,0,0,1,1,1,0,0,0,0,0,0,0,0,0.00284,0.00284,0.475,0.594,0.565,1,0.587,0.58,0.587,0.587,0.0783,0.0783,0.54,0.54,0,1 +0.667,0.328,0.621,0.621,0,0,0.96,0.96,0.96,0,0,0,0,0,0,0,0,0.00284,0.00284,0.5,0.569,0.743,1,0.676,0.353,0.676,0.676,0.0482,0.0482,0.484,0.484,0,1 +0.667,0.413,0.658,0.658,0,0,0.94,0.94,0.94,0,0,0,0,0,0,0,0,0.00284,0.00284,0.525,0.544,0.873,1,0.72,0.222,0.72,0.72,0.0241,0.0241,0.405,0.405,0,1 +0.667,0.501,0.639,0.639,0,0,0.92,0.92,0.92,0,0,0,0,0,0,0,0,0.00852,0.00852,0.512,0.528,0.806,1,0.765,0.0957,0.765,0.765,0.0181,0.0181,0.341,0.341,0,1 +1,0.557,0.547,0.547,0,0,0.88,0.88,0.88,0.0156,0.0239,0,0,0,0,0,0,0.0142,0.0142,0.547,0.497,0.509,1,0.667,0.0655,0.667,0.667,0.0181,0.0181,0.19,0.19,0,1 +1,0.183,0.463,0.463,0,0,0.82,0.82,0.82,0.00461,0,0,0,0,0,0,0,0.0142,0.0142,0.395,0.453,0.232,1,0.578,0.0353,0.578,0.578,0.0181,0.0181,0.19,0.19,0.333,1 +1,0.0495,0.371,0.371,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0.0114,0.0114,0.258,0.465,0.0833,1,0.391,0.0202,0.391,0.391,0.0181,0.0181,0.19,0.19,1,1 +1,0.0495,0.343,0.343,0,0,0.78,0.78,0.78,0,0,0,0,0,0,0,0,0.00852,0.00852,0.258,0.465,0.0405,1,0.205,0.00504,0.205,0.205,0.0181,0.0181,0.23,0.23,1,1 +1,0.0495,0.343,0.343,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0203,1,0.169,0.00504,0.169,0.169,0.0181,0.0181,0.19,0.19,1,1 +1,0.0495,0.334,0.334,0,0,0.74,0.74,0.74,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0158,1,0.133,0.0101,0.133,0.133,0.0241,0.0241,0.23,0.23,1,1 +1,0.0495,0.306,0.306,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0248,1,0.142,0.0353,0.142,0.142,0.0482,0.0482,0.373,0.373,1,1 +1,0.0495,0.334,0.334,0,0,0.72,0.72,0.72,0,0,0.0224,0.00596,0,0,0,0.00263,0,0.00263,0.258,0.465,0.0405,1,0.16,0.0605,0.16,0.16,0.0903,0.0903,0.532,0.532,1,1 +1,0.222,0.398,0.398,0,0.0122,0.76,0.76,0.76,0,0,0.0425,0.00982,0.147,0.147,0,0.0433,0,0.0433,0.352,0.461,0.0653,1,0.231,0.146,0.231,0.231,0.157,0.157,0.452,0.452,0.333,1 +1,0.39,0.436,0.436,0,0.0244,0.8,0.8,0.8,0,0,0.0355,0,0.128,0.128,0.0332,0.0223,0,0.0556,0.436,0.521,0.09,1,0.293,0.232,0.293,0.293,0.265,0.265,0.19,0.19,0,1 +1,0.387,0.315,0.315,0,0,0.82,0.82,0.82,0,0,0.0317,0,0,0,0.0083,0.0265,0,0.0348,0.315,0.534,0.11,1,0.293,0.222,0.293,0.293,0.506,0.506,0.19,0.19,0,1 +0.667,0.263,0.213,0.213,0,0,0.82,0.82,0.82,0,0,0.0309,0,0,0,0,0,0.017,0.017,0.228,0.511,0.131,1,0.285,0.207,0.285,0.285,0.729,0.729,0.151,0.151,0,1 +0.667,0.256,0.222,0.222,0,0,0.8,0.8,0.8,0,0,0.0216,0,0,0,0,0,0.00852,0.00852,0.234,0.511,0.146,1,0.293,0.222,0.293,0.293,0.765,0.765,0.119,0.119,0,1 +0.667,0.245,0.232,0.232,0,0,0.8,0.8,0.8,0,0,0.0391,0,0,0,0,0,0,0,0.24,0.519,0.162,1,0.293,0.232,0.293,0.293,0.729,0.729,0.111,0.111,0,1 +0.667,0.237,0.222,0.222,0,0,0.84,0.84,0.84,0,0,0.0475,0,0,0,0,0,0.00568,0.00568,0.234,0.528,0.171,1,0.285,0.212,0.285,0.285,0.723,0.723,0.111,0.111,0,1 +0.667,0.235,0.259,0.259,0,0.0366,0.84,0.84,0.84,0,0,0.0315,0,0,0,0,0,0.00284,0.00284,0.259,0.528,0.194,1,0.285,0.191,0.285,0.285,0.542,0.542,0.111,0.111,0,1 +0.667,0.235,0.287,0.287,0,0,0.84,0.84,0.84,0,0,0.0227,0,0,0,0,0.00254,0.00284,0.00538,0.277,0.519,0.205,1,0.285,0.247,0.285,0.285,0.452,0.452,0.19,0.19,0,1 +1,0.328,0.297,0.297,0,0,0.82,0.82,0.82,0,0,0.0493,0,0,0,0,0.0419,0,0.0419,0.297,0.571,0.23,1,0.293,0.297,0.293,0.293,0.367,0.367,0.46,0.46,0,1 +0.667,0.238,0.361,0.361,0,0,0.88,0.88,0.88,0,0,0.029,0,0,0,0,0.0132,0,0.0132,0.327,0.552,0.286,1,0.4,0.554,0.4,0.4,0.223,0.223,1,1,0,1 +1,0.247,0.491,0.491,0,0,0.96,0.96,0.96,0,0,0,0,0,0,0,0,0,0,0.413,0.585,0.351,1,0.507,0.811,0.507,0.507,0.139,0.139,0.968,0.968,0.333,1 +1,0.273,0.584,0.584,0,0,1,1,1,0,0,0,0,0,0,0,0,0.00284,0.00284,0.475,0.594,0.473,1,0.587,0.58,0.587,0.587,0.0783,0.0783,0.54,0.54,0.333,1 +1,0.328,0.621,0.621,0,0,0.96,0.96,0.96,0,0,0,0,0,0,0,0,0.017,0.017,0.5,0.569,0.662,1,0.676,0.353,0.676,0.676,0.0482,0.0482,0.484,0.484,0.333,1 +1,0.413,0.658,0.658,0,0,0.94,0.94,0.94,0,0,0,0,0,0,0,0,0,0,0.525,0.544,0.817,1,0.72,0.222,0.72,0.72,0.0241,0.0241,0.405,0.405,0.333,1 +1,0.275,0.639,0.639,0,0,0.92,0.92,0.92,0,0,0,0,0,0,0,0,0.0114,0.0114,0.385,0.496,0.774,1,0.765,0.0957,0.765,0.765,0.0181,0.0181,0.341,0.341,0.667,1 +1,0.0495,0.547,0.547,0,0,0.88,0.88,0.88,0,0,0,0,0,0,0,0,0.00568,0.00568,0.258,0.465,0.468,1,0.667,0.0655,0.667,0.667,0.0181,0.0181,0.19,0.19,1,1 +1,0.0495,0.463,0.463,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.203,1,0.578,0.0353,0.578,0.578,0.0181,0.0181,0.19,0.19,1,1 +1,0.0495,0.371,0.371,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0.00568,0.00568,0.258,0.465,0.0833,1,0.391,0.0202,0.391,0.391,0.0181,0.0181,0.19,0.19,1,1 +1,0.0495,0.343,0.343,0,0,0.78,0.78,0.78,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0405,1,0.205,0.00504,0.205,0.205,0.0181,0.0181,0.23,0.23,1,1 +1,0.0495,0.343,0.343,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0203,1,0.169,0.00504,0.169,0.169,0.0181,0.0181,0.19,0.19,1,1 +1,0.0495,0.334,0.334,0,0,0.74,0.74,0.74,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0158,1,0.133,0.0101,0.133,0.133,0.0241,0.0241,0.23,0.23,1,1 +1,0.0495,0.306,0.306,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0248,1,0.142,0.0353,0.142,0.142,0.0482,0.0482,0.373,0.373,1,1 +1,0.0495,0.334,0.334,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0.0309,0,0.0309,0.258,0.465,0.0405,1,0.16,0.0605,0.16,0.16,0.0903,0.0903,0.532,0.532,1,1 +1,0.222,0.398,0.398,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0.0781,0,0.0781,0.352,0.461,0.0653,1,0.231,0.146,0.231,0.231,0.157,0.157,0.452,0.452,0.333,1 +0.667,0.163,0.436,0.436,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0,0,0.317,0.484,0.09,1,0.293,0.232,0.293,0.293,0.265,0.265,0.19,0.19,0.333,1 +0.333,0.0495,0.315,0.315,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0.00267,0,0.00267,0.258,0.465,0.11,1,0.293,0.222,0.293,0.293,0.506,0.506,0.19,0.19,0.333,1 +0.333,0.156,0.213,0.213,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0.0397,0.00284,0.0425,0.243,0.488,0.131,1,0.285,0.207,0.285,0.285,0.729,0.729,0.151,0.151,0,1 +0.333,0.153,0.222,0.222,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0.0318,0.00284,0.0346,0.246,0.488,0.146,1,0.293,0.222,0.293,0.293,0.765,0.765,0.119,0.119,0,1 +0.333,0.147,0.232,0.232,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0.00658,0.00284,0.00941,0.249,0.492,0.162,1,0.293,0.232,0.293,0.293,0.729,0.729,0.111,0.111,0,1 +0,0.0495,0.222,0.222,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0.00255,0,0.00255,0.258,0.465,0.171,1,0.285,0.212,0.285,0.285,0.723,0.723,0.111,0.111,0,1 +0.333,0.142,0.259,0.259,0,0,0.84,0.84,0.84,0,0,0.0214,0.000702,0,0,0,0.0434,0,0.0434,0.258,0.496,0.194,1,0.285,0.191,0.285,0.285,0.542,0.542,0.111,0.111,0,1 +0.333,0.142,0.287,0.287,0,0,0.84,0.84,0.84,0,0,0.0278,0.0203,0,0,0,0.044,0.0142,0.0582,0.268,0.492,0.205,1,0.285,0.247,0.285,0.285,0.452,0.452,0.19,0.19,0,1 +0.333,0.142,0.297,0.297,0,0,0.82,0.82,0.82,0,0,0.036,0,0.275,0.275,0,0,0.0142,0.0142,0.271,0.501,0.23,1,0.293,0.297,0.293,0.293,0.367,0.367,0.46,0.46,0,1 +0.333,0.144,0.361,0.361,0,0,0.88,0.88,0.88,0,0,0.0396,0,0,0,0,0,0,0,0.292,0.509,0.286,1,0.4,0.554,0.4,0.4,0.223,0.223,1,1,0,1 +0.667,0.247,0.491,0.491,0,0.0366,0.96,0.96,0.96,0,0,0.0179,0,0,0,0,0,0,0,0.413,0.585,0.351,1,0.507,0.811,0.507,0.507,0.139,0.139,0.968,0.968,0,1 +0.667,0.273,0.584,0.584,0,0,1,1,1,0,0,0,0,0,0,0,0,0.0199,0.0199,0.475,0.594,0.473,1,0.587,0.58,0.587,0.587,0.0783,0.0783,0.54,0.54,0,1 +0.667,0.328,0.621,0.621,0,0,0.96,0.96,0.96,0,0,0,0,0,0,0,0,0,0,0.5,0.569,0.662,1,0.676,0.353,0.676,0.676,0.0482,0.0482,0.484,0.484,0,1 +0.667,0.413,0.658,0.658,0,0,0.94,0.94,0.94,0,0,0,0,0,0,0,0,0.0142,0.0142,0.525,0.544,0.817,1,0.72,0.222,0.72,0.72,0.0241,0.0241,0.405,0.405,0,1 +0.667,0.275,0.639,0.639,0,0.0366,0.92,0.92,0.92,0,0,0,0,0,0,0,0.00975,0,0.00975,0.385,0.496,0.774,1,0.765,0.0957,0.765,0.765,0.0181,0.0181,0.341,0.341,0.333,1 +1,0.388,0.547,0.547,0,0,0.88,0.88,0.88,0,0,0,0,0,0,0,0.0387,0,0.0387,0.45,0.486,0.468,1,0.667,0.0655,0.667,0.667,0.0181,0.0181,0.19,0.19,0.333,1 +1,0.116,0.463,0.463,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0.0469,0,0.0469,0.326,0.459,0.203,1,0.578,0.0353,0.578,0.578,0.0181,0.0181,0.19,0.19,0.667,1 +1,0.0495,0.371,0.371,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0833,1,0.391,0.0202,0.391,0.391,0.0181,0.0181,0.19,0.19,1,1 +1,0.0495,0.343,0.343,0,0,0.78,0.78,0.78,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0405,1,0.205,0.00504,0.205,0.205,0.0181,0.0181,0.23,0.23,1,1 +1,0.0495,0.343,0.343,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0203,1,0.169,0.00504,0.169,0.169,0.0181,0.0181,0.19,0.19,1,1 +1,0.0495,0.334,0.334,0,0,0.74,0.74,0.74,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0158,1,0.133,0.0101,0.133,0.133,0.0241,0.0241,0.23,0.23,1,1 +1,0.0495,0.306,0.306,0,0.0122,0.72,0.72,0.72,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0248,1,0.142,0.0353,0.142,0.142,0.0482,0.0482,0.373,0.373,1,1 +1,0.0768,0.334,0.334,0,0.0244,0.72,0.72,0.72,0.012,0.0478,0,0,0,0,0,0.0363,0,0.0363,0.283,0.447,0.0405,1,0.16,0.0605,0.16,0.16,0.0903,0.0903,0.532,0.532,0.667,1 +1,0.222,0.398,0.398,0,0,0.76,0.76,0.76,0.0103,0,0,0,0,0,0,0.0478,0,0.0478,0.352,0.461,0.0653,1,0.231,0.146,0.231,0.231,0.157,0.157,0.452,0.452,0.333,1 +0.667,0.163,0.436,0.436,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0,0,0.317,0.484,0.09,1,0.293,0.232,0.293,0.293,0.265,0.265,0.19,0.19,0.333,1 +0.333,0.162,0.315,0.315,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0.00284,0.00284,0.277,0.488,0.11,1,0.293,0.222,0.293,0.293,0.506,0.506,0.19,0.19,0,1 +0.333,0.156,0.213,0.213,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0.00284,0.00284,0.243,0.488,0.131,1,0.285,0.207,0.285,0.285,0.729,0.729,0.151,0.151,0,1 +0.333,0.153,0.222,0.222,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0.00284,0.00284,0.246,0.488,0.146,1,0.293,0.222,0.293,0.293,0.765,0.765,0.119,0.119,0,1 +0.333,0.147,0.232,0.232,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0,0,0.249,0.492,0.162,1,0.293,0.232,0.293,0.293,0.729,0.729,0.111,0.111,0,1 +0.333,0.143,0.222,0.222,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0.00568,0.00568,0.246,0.496,0.171,1,0.285,0.212,0.285,0.285,0.723,0.723,0.111,0.111,0,1 +0.333,0.142,0.259,0.259,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0.00568,0.00568,0.258,0.496,0.194,1,0.285,0.191,0.285,0.285,0.542,0.542,0.111,0.111,0,1 +0.333,0.142,0.287,0.287,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0.0114,0.0114,0.268,0.492,0.205,1,0.285,0.247,0.285,0.285,0.452,0.452,0.19,0.19,0,1 +0.667,0.235,0.297,0.297,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0.024,0,0.024,0.284,0.536,0.23,1,0.293,0.297,0.293,0.293,0.367,0.367,0.46,0.46,0,1 +1,0.332,0.361,0.361,0,0,0.88,0.88,0.88,0,0,0,0,0,0,0,0.0369,0,0.0369,0.361,0.596,0.286,1,0.4,0.554,0.4,0.4,0.223,0.223,1,1,0,1 +1,0.345,0.491,0.491,0,0,0.96,0.96,0.96,0,0,0,0,0,0,0,0,0,0,0.491,0.646,0.351,1,0.507,0.811,0.507,0.507,0.139,0.139,0.968,0.968,0,1 +1,0.384,0.584,0.584,0,0.0122,1,1,1,0.0149,0.0239,0,0,0,0,0,0,0.00852,0.00852,0.584,0.658,0.473,1,0.587,0.58,0.587,0.587,0.0783,0.0783,0.54,0.54,0,1 +1,0.467,0.621,0.621,0,0.0244,0.96,0.96,0.96,0.0227,0,0.0324,0.00596,0,0,0,0,0.00852,0.00852,0.621,0.621,0.662,1,0.676,0.353,0.676,0.676,0.0482,0.0482,0.484,0.484,0,1 +1,0.595,0.658,0.658,0,0,0.94,0.94,0.94,0.0152,0,0.0543,0.00456,0.238,0.238,0,0,0.00852,0.00852,0.658,0.583,0.817,1,0.72,0.222,0.72,0.72,0.0241,0.0241,0.405,0.405,0,1 +1,0.726,0.639,0.639,0,0,0.92,0.92,0.92,0,0,0.0289,0,0.0367,0.0367,0,0,0.00284,0.00284,0.639,0.559,0.774,1,0.765,0.0957,0.765,0.765,0.0181,0.0181,0.341,0.341,0,1 +1,0.388,0.547,0.547,0,0,0.88,0.88,0.88,0,0,0,0,0,0,0,0,0,0,0.45,0.486,0.468,1,0.667,0.0655,0.667,0.667,0.0181,0.0181,0.19,0.19,0.333,1 +1,0.116,0.463,0.463,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0.00268,0,0.00268,0.326,0.459,0.203,1,0.578,0.0353,0.578,0.578,0.0181,0.0181,0.19,0.19,0.667,1 +1,0.0743,0.371,0.371,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0.0421,0,0.0421,0.295,0.455,0.0833,1,0.391,0.0202,0.391,0.391,0.0181,0.0181,0.19,0.19,0.667,1 +1,0.0578,0.343,0.343,0,0,0.78,0.78,0.78,0,0,0,0,0,0,0,0,0,0,0.286,0.447,0.0405,1,0.205,0.00504,0.205,0.205,0.0181,0.0181,0.23,0.23,0.667,1 +1,0.0495,0.343,0.343,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0203,1,0.169,0.00504,0.169,0.169,0.0181,0.0181,0.19,0.19,1,1 +1,0.0495,0.334,0.334,0,0,0.74,0.74,0.74,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.465,0.0158,1,0.133,0.0101,0.133,0.133,0.0241,0.0241,0.23,0.23,1,1 +1,0.0495,0.306,0.306,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0.00258,0,0.00258,0.258,0.465,0.0248,1,0.142,0.0353,0.142,0.142,0.0482,0.0482,0.373,0.373,1,1 +1,0.0768,0.334,0.334,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0.0335,0,0.0335,0.283,0.447,0.0405,1,0.16,0.0605,0.16,0.16,0.0903,0.0903,0.532,0.532,0.667,1 +1,0.136,0.398,0.398,0,0.0366,0.76,0.76,0.76,0,0,0,0,0,0,0,0.0327,0,0.0327,0.305,0.463,0.0653,1,0.231,0.146,0.231,0.231,0.157,0.157,0.452,0.452,0.667,1 +1,0.277,0.436,0.436,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0.042,0,0.042,0.376,0.503,0.09,1,0.293,0.232,0.293,0.293,0.265,0.265,0.19,0.19,0.333,1 +0.667,0.274,0.315,0.315,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0.0599,0,0.0599,0.296,0.511,0.11,1,0.293,0.222,0.293,0.293,0.506,0.506,0.19,0.19,0,1 +0.333,0.156,0.213,0.213,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0.00568,0.00568,0.243,0.488,0.131,1,0.285,0.207,0.285,0.285,0.729,0.729,0.151,0.151,0,1 +0,0.0495,0.222,0.222,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.465,0.146,1,0.293,0.222,0.293,0.293,0.765,0.765,0.119,0.119,0,1 +0.667,0.245,0.232,0.232,0,0.0122,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0.00284,0.00284,0.24,0.519,0.162,1,0.293,0.232,0.293,0.293,0.729,0.729,0.111,0.111,0,1 +0.333,0.143,0.222,0.222,0,0.146,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0,0,0.246,0.496,0.171,1,0.285,0.212,0.285,0.285,0.723,0.723,0.111,0.111,0,1 +0.333,0.142,0.259,0.259,0,0.146,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0,0,0.258,0.496,0.194,1,0.285,0.191,0.285,0.285,0.542,0.542,0.111,0.111,0,1 +0.333,0.142,0.287,0.287,0,0.134,0.84,0.84,0.84,0,0,0,0,0,0,0.0349,0,0,0.0349,0.268,0.492,0.205,1,0.285,0.247,0.285,0.285,0.452,0.452,0.19,0.19,0,1 +0.667,0.235,0.297,0.297,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0.0175,0,0,0.0175,0.284,0.536,0.23,1,0.293,0.297,0.293,0.293,0.367,0.367,0.46,0.46,0,1 +0.667,0.238,0.361,0.361,0,0.0487,0.88,0.88,0.88,0,0,0,0,0,0,0,0,0,0,0.327,0.552,0.286,1,0.4,0.554,0.4,0.4,0.223,0.223,1,1,0,1 +1,0.345,0.491,0.491,0,0.0609,0.96,0.96,0.96,0,0,0,0,0,0,0,0,0,0,0.491,0.646,0.351,1,0.507,0.811,0.507,0.507,0.139,0.139,0.968,0.968,0,1 +1,0.384,0.584,0.584,0,0,1,1,1,0,0,0,0,0,0,0,0,0.00568,0.00568,0.584,0.658,0.473,1,0.587,0.58,0.587,0.587,0.0783,0.0783,0.54,0.54,0,1 +1,0.328,0.621,0.621,0,0,0.96,0.96,0.96,0,0,0,0,0,0,0,0,0.0284,0.0284,0.5,0.569,0.662,1,0.676,0.353,0.676,0.676,0.0482,0.0482,0.484,0.484,0.333,1 +1,0.413,0.658,0.658,0,0,0.94,0.94,0.94,0,0,0,0,0,0,0,0,0.00284,0.00284,0.525,0.544,0.817,1,0.72,0.222,0.72,0.72,0.0241,0.0241,0.405,0.405,0.333,1 +1,0.501,0.639,0.639,0,0,0.92,0.92,0.92,0,0,0,0,0,0,0,0,0.00568,0.00568,0.512,0.528,0.774,1,0.765,0.0957,0.765,0.765,0.0181,0.0181,0.341,0.341,0.333,1 +1,0.219,0.547,0.547,0,0,0.88,0.88,0.88,0,0,0,0,0,0,0,0,0.00852,0.00852,0.354,0.476,0.468,1,0.667,0.0655,0.667,0.667,0.0181,0.0181,0.19,0.19,0.667,1 +1,0.0495,0.463,0.463,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.203,1,0.578,0.0353,0.578,0.578,0.0181,0.0181,0.19,0.19,1,1 +1,0.0495,0.371,0.371,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0.00852,0.00852,0.258,0.465,0.0833,1,0.391,0.0202,0.391,0.391,0.0181,0.0181,0.19,0.19,1,1 +1,0.0495,0.343,0.343,0,0,0.78,0.78,0.78,0,0,0,0,0,0,0,0,0.00852,0.00852,0.258,0.465,0.0405,1,0.205,0.00504,0.205,0.205,0.0181,0.0181,0.23,0.23,1,1 +1,0.0495,0.343,0.343,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.465,0.0203,1,0.169,0.00504,0.169,0.169,0.0181,0.0181,0.19,0.19,1,1 +1,0.0495,0.334,0.334,0,0,0.74,0.74,0.74,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0158,1,0.133,0.0101,0.133,0.133,0.0241,0.0241,0.23,0.23,1,1 +1,0.0495,0.306,0.306,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0.0196,0,0.0196,0.258,0.465,0.0248,1,0.142,0.0353,0.142,0.142,0.0482,0.0482,0.373,0.373,1,1 +1,0.0768,0.334,0.334,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0.0334,0,0.0334,0.283,0.447,0.0405,1,0.16,0.0605,0.16,0.16,0.0903,0.0903,0.532,0.532,0.667,1 +1,0.222,0.398,0.398,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0.0224,0,0.0224,0.352,0.461,0.0653,1,0.231,0.146,0.231,0.231,0.157,0.157,0.452,0.452,0.333,1 +1,0.277,0.436,0.436,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0.0149,0,0.0149,0.376,0.503,0.09,1,0.293,0.232,0.293,0.293,0.265,0.265,0.19,0.19,0.333,1 +0.333,0.162,0.315,0.315,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0.017,0.017,0.277,0.488,0.11,1,0.293,0.222,0.293,0.293,0.506,0.506,0.19,0.19,0,1 +0.333,0.156,0.213,0.213,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0.0138,0.00284,0.0166,0.243,0.488,0.131,1,0.285,0.207,0.285,0.285,0.729,0.729,0.151,0.151,0,1 +0.333,0.153,0.222,0.222,0,0.0853,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0.00568,0.00568,0.246,0.488,0.146,1,0.293,0.222,0.293,0.293,0.765,0.765,0.119,0.119,0,1 +0.333,0.147,0.232,0.232,0,0.146,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0.0114,0.0114,0.249,0.492,0.162,1,0.293,0.232,0.293,0.293,0.729,0.729,0.111,0.111,0,1 +0.333,0.143,0.222,0.222,0,0.0609,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0.00284,0.00284,0.246,0.496,0.171,1,0.285,0.212,0.285,0.285,0.723,0.723,0.111,0.111,0,1 +0,0.0495,0.259,0.259,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.194,1,0.285,0.191,0.285,0.285,0.542,0.542,0.111,0.111,0,1 +0,0.0495,0.287,0.287,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0.00852,0.00852,0.258,0.465,0.205,1,0.285,0.247,0.285,0.285,0.452,0.452,0.19,0.19,0,1 +0,0.0495,0.297,0.297,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.465,0.23,1,0.293,0.297,0.293,0.293,0.367,0.367,0.46,0.46,0,1 +0.333,0.144,0.361,0.361,0,0.0366,0.88,0.88,0.88,0,0,0.0361,0.000702,0,0,0,0,0.00284,0.00284,0.292,0.509,0.286,1,0.4,0.554,0.4,0.4,0.223,0.223,1,1,0,1 +0.667,0.247,0.491,0.491,0,0,0.96,0.96,0.96,0,0,0.0282,0.0151,0.055,0.055,0,0,0,0,0.413,0.585,0.351,1,0.507,0.811,0.507,0.507,0.139,0.139,0.968,0.968,0,1 +1,0.384,0.584,0.584,0,0,1,1,1,0,0,0.0293,0,0.312,0.312,0,0,0,0,0.584,0.658,0.473,1,0.587,0.58,0.587,0.587,0.0783,0.0783,0.54,0.54,0,1 +1,0.467,0.621,0.621,0,0,0.96,0.96,0.96,0,0,0.00166,0,0,0,0,0,0,0,0.621,0.621,0.662,1,0.676,0.353,0.676,0.676,0.0482,0.0482,0.484,0.484,0,1 +1,0.413,0.658,0.658,0,0,0.94,0.94,0.94,0,0,0,0,0,0,0,0,0.00284,0.00284,0.525,0.544,0.817,1,0.72,0.222,0.72,0.72,0.0241,0.0241,0.405,0.405,0.333,1 +1,0.501,0.639,0.639,0,0,0.92,0.92,0.92,0,0,0,0,0,0,0,0.0166,0.0199,0.0364,0.512,0.528,0.774,1,0.765,0.0957,0.765,0.765,0.0181,0.0181,0.341,0.341,0.333,1 +1,0.388,0.547,0.547,0,0,0.88,0.88,0.88,0,0,0,0,0,0,0,0.0145,0,0.0145,0.45,0.486,0.468,1,0.667,0.0655,0.667,0.667,0.0181,0.0181,0.19,0.19,0.333,1 +1,0.116,0.463,0.463,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0,0,0.326,0.459,0.203,1,0.578,0.0353,0.578,0.578,0.0181,0.0181,0.19,0.19,0.667,1 +1,0.0495,0.371,0.371,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0.00568,0.00568,0.258,0.465,0.099,1,0.391,0.0202,0.391,0.391,0.0181,0.0181,0.19,0.19,1,1 +1,0.0495,0.343,0.343,0,0,0.78,0.78,0.78,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0495,1,0.205,0.00504,0.205,0.205,0.0181,0.0181,0.23,0.23,1,1 +1,0.0495,0.343,0.343,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.027,1,0.169,0.00504,0.169,0.169,0.0181,0.0181,0.19,0.19,1,1 +1,0.0495,0.334,0.334,0,0,0.74,0.74,0.74,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.018,1,0.133,0.0101,0.133,0.133,0.0241,0.0241,0.23,0.23,1,1 +1,0.0495,0.306,0.306,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0248,1,0.142,0.0353,0.142,0.142,0.0482,0.0482,0.373,0.373,1,1 +1,0.0495,0.334,0.334,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0315,1,0.16,0.0605,0.16,0.16,0.0903,0.0903,0.532,0.532,1,1 +1,0.0495,0.398,0.398,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.054,1,0.231,0.146,0.231,0.231,0.157,0.157,0.452,0.452,1,1 +1,0.163,0.436,0.436,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0,0,0.317,0.484,0.0968,1,0.293,0.232,0.293,0.293,0.265,0.265,0.19,0.19,0.667,1 +0.667,0.0495,0.315,0.315,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.16,1,0.293,0.222,0.293,0.293,0.506,0.506,0.19,0.19,0.667,1 +0.667,0.156,0.213,0.213,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0,0,0.243,0.488,0.212,1,0.285,0.207,0.285,0.285,0.729,0.729,0.151,0.151,0.333,1 +1,0.256,0.222,0.222,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0.0195,0,0.0195,0.234,0.511,0.252,1,0.293,0.222,0.293,0.293,0.765,0.765,0.119,0.119,0.333,1 +1,0.343,0.232,0.232,0,0,0.8,0.8,0.8,0,0,0.0317,0.00596,0,0,0,0.0425,0,0.0425,0.232,0.546,0.277,1,0.293,0.232,0.293,0.293,0.729,0.729,0.111,0.111,0,1 +0.333,0.143,0.222,0.222,0,0,0.84,0.84,0.84,0,0,0,0.00982,0.147,0.147,0,0,0,0,0.246,0.496,0.297,1,0.285,0.212,0.285,0.285,0.723,0.723,0.111,0.111,0,1 +0.667,0.235,0.259,0.259,0,0,0.84,0.84,0.84,0,0,0,0,0.367,0.367,0,0,0.0114,0.0114,0.259,0.528,0.351,1,0.285,0.191,0.285,0.285,0.542,0.542,0.111,0.111,0,1 +0.667,0.142,0.287,0.287,0,0,0.84,0.84,0.84,0,0,0,0,0.0367,0.0367,0,0,0,0,0.268,0.492,0.401,1,0.285,0.247,0.285,0.285,0.452,0.452,0.19,0.19,0.333,1 +1,0.328,0.297,0.297,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0.0114,0.0114,0.297,0.571,0.441,1,0.293,0.297,0.293,0.293,0.367,0.367,0.46,0.46,0,1 +1,0.332,0.361,0.361,0,0,0.88,0.88,0.88,0,0,0,0,0,0,0,0,0.0142,0.0142,0.361,0.596,0.464,1,0.4,0.554,0.4,0.4,0.223,0.223,1,1,0,1 +1,0.345,0.491,0.491,0,0,0.96,0.96,0.96,0,0,0,0,0,0,0,0,0,0,0.491,0.646,0.479,1,0.507,0.811,0.507,0.507,0.139,0.139,0.968,0.968,0,1 +1,0.384,0.584,0.584,0,0,1,1,1,0,0,0,0,0,0,0,0,0.0199,0.0199,0.584,0.658,0.565,1,0.587,0.58,0.587,0.587,0.0783,0.0783,0.54,0.54,0,1 +0.667,0.189,0.621,0.621,0,0,0.96,0.96,0.96,0,0,0,0,0,0,0,0,0.00284,0.00284,0.379,0.517,0.743,1,0.676,0.353,0.676,0.676,0.0482,0.0482,0.484,0.484,0.333,1 +0.667,0.231,0.658,0.658,0,0,0.94,0.94,0.94,0,0,0,0,0,0,0,0,0,0,0.391,0.505,0.873,1,0.72,0.222,0.72,0.72,0.0241,0.0241,0.405,0.405,0.333,1 +0.667,0.275,0.639,0.639,0,0,0.92,0.92,0.92,0,0,0,0,0,0,0,0,0.0199,0.0199,0.385,0.496,0.806,1,0.765,0.0957,0.765,0.765,0.0181,0.0181,0.341,0.341,0.333,1 +1,0.557,0.547,0.547,0,0,0.88,0.88,0.88,0,0,0,0,0,0,0,0,0.00568,0.00568,0.547,0.497,0.509,1,0.667,0.0655,0.667,0.667,0.0181,0.0181,0.19,0.19,0,1 +1,0.183,0.463,0.463,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0.00284,0.00284,0.395,0.453,0.232,1,0.578,0.0353,0.578,0.578,0.0181,0.0181,0.19,0.19,0.333,1 +1,0.0495,0.368,0.368,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0993,1,0.389,0.0203,0.389,0.389,0.018,0.018,0.19,0.19,1,1 +1,0.0495,0.34,0.34,0,0,0.78,0.78,0.78,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0497,1,0.203,0.00507,0.203,0.203,0.018,0.018,0.23,0.23,1,1 +1,0.0495,0.34,0.34,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0271,1,0.168,0.00507,0.168,0.168,0.018,0.018,0.19,0.19,1,1 +1,0.0495,0.331,0.331,0,0,0.74,0.74,0.74,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0181,1,0.133,0.0101,0.133,0.133,0.024,0.024,0.23,0.23,1,1 +1,0.0495,0.304,0.304,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0.00271,0,0.00271,0.258,0.465,0.0248,1,0.141,0.0355,0.141,0.141,0.0479,0.0479,0.372,0.373,1,1 +1,0.0763,0.331,0.331,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0.0583,0,0.0583,0.282,0.446,0.0316,1,0.159,0.0609,0.159,0.159,0.0898,0.0898,0.531,0.532,0.667,1 +0.667,0.0495,0.396,0.396,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0542,1,0.23,0.147,0.23,0.23,0.156,0.156,0.452,0.452,0.667,1 +0.667,0.162,0.432,0.432,0,0.0366,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0,0,0.316,0.483,0.0971,1,0.292,0.233,0.292,0.292,0.263,0.263,0.19,0.19,0.333,1 +0.667,0.16,0.313,0.313,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0,0,0.276,0.487,0.16,1,0.292,0.223,0.292,0.292,0.503,0.503,0.19,0.19,0.333,1 +0.667,0.154,0.212,0.212,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0.00852,0.00852,0.242,0.487,0.212,1,0.283,0.208,0.283,0.283,0.725,0.725,0.151,0.151,0.333,1 +0.333,0.0495,0.221,0.221,0,0.0366,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.253,1,0.292,0.223,0.292,0.292,0.761,0.761,0.119,0.119,0.333,1 +0.667,0.145,0.23,0.23,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0.0284,0.0284,0.248,0.491,0.278,1,0.292,0.233,0.292,0.292,0.725,0.725,0.111,0.111,0.333,1 +0.667,0.141,0.221,0.221,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0,0,0.245,0.495,0.298,1,0.283,0.213,0.283,0.283,0.719,0.719,0.111,0.111,0.333,1 +0.667,0.14,0.258,0.258,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0.0199,0.0199,0.258,0.495,0.352,1,0.283,0.193,0.283,0.283,0.539,0.539,0.111,0.111,0.333,1 +0.667,0.14,0.285,0.285,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0,0,0.267,0.491,0.402,1,0.283,0.249,0.283,0.283,0.449,0.449,0.19,0.19,0.333,1 +0.667,0.14,0.294,0.294,0,0,0.82,0.82,0.82,0.00365,0.0175,0,0,0,0,0,0,0.00284,0.00284,0.27,0.499,0.443,1,0.292,0.299,0.292,0.292,0.365,0.365,0.46,0.46,0.333,1 +0.667,0.233,0.359,0.359,0,0,0.88,0.88,0.88,0.0315,0.078,0,0,0,0,0,0,0.00284,0.00284,0.325,0.549,0.465,1,0.398,0.558,0.398,0.398,0.222,0.222,0.998,1,0,1 +1,0.338,0.488,0.488,0,0.0366,0.96,0.96,0.96,0.0171,0,0,0,0,0,0,0,0,0,0.488,0.641,0.481,1,0.504,0.817,0.504,0.504,0.138,0.138,0.967,0.968,0,1 +0.667,0.268,0.58,0.58,0,0,1,1,1,0.0233,0,0,0,0,0,0,0,0.00284,0.00284,0.472,0.591,0.567,1,0.584,0.583,0.584,0.584,0.0779,0.0779,0.539,0.54,0,1 +0.667,0.324,0.616,0.616,0,0,0.96,0.96,0.96,0.00359,0,0,0,0,0,0,0,0.00284,0.00284,0.497,0.566,0.745,1,0.672,0.355,0.672,0.672,0.0479,0.0479,0.483,0.484,0,1 +0.667,0.41,0.653,0.653,0,0,0.94,0.94,0.94,0,0,0,0,0,0,0,0,0,0,0.521,0.541,0.876,1,0.716,0.223,0.716,0.716,0.024,0.024,0.404,0.405,0,1 +1,0.72,0.635,0.635,0,0,0.92,0.92,0.92,0,0,0,0,0,0,0,0,0.00284,0.00284,0.635,0.555,0.808,1,0.761,0.0964,0.761,0.761,0.018,0.018,0.341,0.341,0,1 +1,0.554,0.543,0.543,0,0,0.88,0.88,0.88,0,0,0,0,0,0,0,0.00248,0.00852,0.011,0.543,0.493,0.51,1,0.663,0.066,0.663,0.663,0.018,0.018,0.19,0.19,0,1 +1,0.183,0.46,0.46,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0.0387,0.00284,0.0415,0.393,0.451,0.233,1,0.575,0.0355,0.575,0.575,0.018,0.018,0.19,0.19,0.333,1 +1,0.099,0.368,0.368,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0,0,0.331,0.443,0.0835,1,0.389,0.0203,0.389,0.389,0.018,0.018,0.19,0.19,0.333,1 +1,0.0578,0.34,0.34,0,0,0.78,0.78,0.78,0,0,0,0,0,0,0,0,0,0,0.285,0.446,0.0406,1,0.203,0.00507,0.203,0.203,0.018,0.018,0.23,0.23,0.667,1 +1,0.0495,0.34,0.34,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0,0,0,0.285,0.442,0.0203,1,0.168,0.00507,0.168,0.168,0.018,0.018,0.19,0.19,0.667,1 +1,0.0495,0.331,0.331,0,0,0.74,0.74,0.74,0,0,0,0,0,0,0,0,0,0,0.282,0.438,0.0158,1,0.133,0.0101,0.133,0.133,0.024,0.024,0.23,0.23,0.667,1 +1,0.0495,0.304,0.304,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0248,1,0.141,0.0355,0.141,0.141,0.0479,0.0479,0.372,0.373,1,1 +1,0.0495,0.331,0.331,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0.0197,0.00284,0.0225,0.258,0.465,0.0406,1,0.159,0.0609,0.159,0.159,0.0898,0.0898,0.531,0.532,1,1 +0.667,0.0495,0.396,0.396,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0.00263,0.0114,0.014,0.258,0.465,0.0655,1,0.23,0.147,0.23,0.23,0.156,0.156,0.452,0.452,0.667,1 +0.667,0.162,0.432,0.432,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0.0251,0,0.0251,0.316,0.483,0.0903,1,0.292,0.233,0.292,0.292,0.263,0.263,0.19,0.19,0.333,1 +0.667,0.27,0.313,0.313,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0,0,0.294,0.508,0.111,1,0.292,0.223,0.292,0.292,0.503,0.503,0.19,0.19,0,1 +0.667,0.258,0.212,0.212,0,0,0.82,0.82,0.82,0,0,0.000877,0,0,0,0,0,0,0,0.227,0.508,0.131,1,0.283,0.208,0.283,0.283,0.725,0.725,0.151,0.151,0,1 +0.333,0.15,0.221,0.221,0,0,0.8,0.8,0.8,0,0,0.0337,0.0112,0,0,0,0,0,0,0.245,0.487,0.147,1,0.292,0.223,0.292,0.292,0.761,0.761,0.119,0.119,0,1 +0.333,0.145,0.23,0.23,0,0,0.8,0.8,0.8,0,0,0.00868,0.00456,0.238,0.238,0,0,0.0142,0.0142,0.248,0.491,0.163,1,0.292,0.233,0.292,0.292,0.725,0.725,0.111,0.111,0,1 +0,0.0495,0.221,0.221,0,0,0.84,0.84,0.84,0,0,0,0,0.0367,0.0367,0,0,0.00284,0.00284,0.258,0.465,0.172,1,0.283,0.213,0.283,0.283,0.719,0.719,0.111,0.111,0,1 +0.333,0.14,0.258,0.258,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0,0,0.258,0.495,0.194,1,0.283,0.193,0.283,0.283,0.539,0.539,0.111,0.111,0,1 +0.667,0.23,0.285,0.285,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0,0,0.276,0.517,0.205,1,0.283,0.249,0.283,0.283,0.449,0.449,0.19,0.19,0,1 +0.667,0.23,0.294,0.294,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0,0,0.282,0.533,0.23,1,0.292,0.299,0.292,0.292,0.365,0.365,0.46,0.46,0,1 +0.667,0.233,0.359,0.359,0,0,0.88,0.88,0.88,0,0,0,0,0,0,0,0.0512,0,0.0512,0.325,0.549,0.287,1,0.398,0.558,0.398,0.398,0.222,0.222,0.998,1,0,1 +1,0.338,0.488,0.488,0,0,0.96,0.96,0.96,0,0,0.0103,0,0,0,0,0.0212,0.00852,0.0297,0.488,0.641,0.352,1,0.504,0.817,0.504,0.504,0.138,0.138,0.967,0.968,0,1 +1,0.377,0.58,0.58,0,0.11,1,1,1,0,0,0.0404,0.0112,0,0,0,0.00251,0.00284,0.00535,0.58,0.653,0.474,1,0.584,0.583,0.584,0.584,0.0779,0.0779,0.539,0.54,0,1 +1,0.461,0.616,0.616,0,0,0.96,0.96,0.96,0,0,0.026,0.00456,0.238,0.238,0,0.0253,0.00568,0.031,0.616,0.616,0.664,1,0.672,0.355,0.672,0.672,0.0479,0.0479,0.483,0.484,0,1 +1,0.59,0.653,0.653,0,0,0.94,0.94,0.94,0,0,0,0,0.22,0.22,0.067,0.105,0,0.172,0.653,0.579,0.82,1,0.716,0.223,0.716,0.716,0.024,0.024,0.404,0.405,0,1 +1,0.496,0.635,0.635,0,0,0.92,0.92,0.92,0,0,0,0,0,0,0,0.0194,0.00852,0.0279,0.509,0.525,0.777,1,0.761,0.0964,0.761,0.761,0.018,0.018,0.341,0.341,0.333,1 +1,0.386,0.543,0.543,0,0,0.88,0.88,0.88,0,0,0,0,0,0,0,0.0343,0,0.0343,0.448,0.484,0.47,1,0.663,0.066,0.663,0.663,0.018,0.018,0.19,0.19,0.333,1 +1,0.116,0.46,0.46,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0.00284,0.00284,0.325,0.458,0.203,1,0.575,0.0355,0.575,0.575,0.018,0.018,0.19,0.19,0.667,1 +1,0.0743,0.368,0.368,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0.0321,0.0144,0,0.0465,0.294,0.454,0.0835,1,0.389,0.0203,0.389,0.389,0.018,0.018,0.19,0.19,0.667,1 +1,0.0578,0.34,0.34,0,0,0.78,0.78,0.78,0,0,0,0,0,0,0.0597,0.0353,0,0.095,0.285,0.446,0.0406,1,0.203,0.00507,0.203,0.203,0.018,0.018,0.23,0.23,0.667,1 +0.667,0.0495,0.34,0.34,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0203,1,0.168,0.00507,0.168,0.168,0.018,0.018,0.19,0.19,0.667,1 +0.667,0.0495,0.331,0.331,0,0,0.74,0.74,0.74,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0158,1,0.133,0.0101,0.133,0.133,0.024,0.024,0.23,0.23,0.667,1 +1,0.0495,0.304,0.304,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.465,0.0248,1,0.141,0.0355,0.141,0.141,0.0479,0.0479,0.372,0.373,1,1 +1,0.0495,0.331,0.331,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0406,1,0.159,0.0609,0.159,0.159,0.0898,0.0898,0.531,0.532,1,1 +1,0.0495,0.396,0.396,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0.0502,0.0517,0,0.102,0.258,0.465,0.0655,1,0.23,0.147,0.23,0.23,0.156,0.156,0.452,0.452,1,1 +0.667,0.162,0.432,0.432,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0,0,0.316,0.483,0.0903,1,0.292,0.233,0.292,0.292,0.263,0.263,0.19,0.19,0.333,1 +0.333,0.0495,0.313,0.313,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.111,1,0.292,0.223,0.292,0.292,0.503,0.503,0.19,0.19,0.333,1 +0.333,0.0495,0.212,0.212,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.131,1,0.283,0.208,0.283,0.283,0.725,0.725,0.151,0.151,0.333,1 +0.333,0.0495,0.221,0.221,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.147,1,0.292,0.223,0.292,0.292,0.761,0.761,0.119,0.119,0.333,1 +0.333,0.145,0.23,0.23,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0.00852,0.00852,0.248,0.491,0.163,1,0.292,0.233,0.292,0.292,0.725,0.725,0.111,0.111,0,1 +0.333,0.141,0.221,0.221,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0,0,0.245,0.495,0.172,1,0.283,0.213,0.283,0.283,0.719,0.719,0.111,0.111,0,1 +0.333,0.14,0.258,0.258,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0,0,0.258,0.495,0.194,1,0.283,0.193,0.283,0.283,0.539,0.539,0.111,0.111,0,1 +0,0.0495,0.285,0.285,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.205,1,0.283,0.249,0.283,0.283,0.449,0.449,0.19,0.19,0,1 +0,0.0495,0.294,0.294,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0.00248,0.00568,0.00815,0.258,0.465,0.23,1,0.292,0.299,0.292,0.292,0.365,0.365,0.46,0.46,0,1 +0.333,0.141,0.359,0.359,0,0,0.88,0.88,0.88,0,0,0,0,0,0,0,0.0174,0.00852,0.0259,0.291,0.507,0.287,1,0.398,0.558,0.398,0.398,0.222,0.222,0.998,1,0,1 +1,0.338,0.488,0.488,0,0,0.96,0.96,0.96,0.0166,0.0478,0,0,0,0,0.0496,0.0335,0.0284,0.112,0.488,0.641,0.352,1,0.504,0.817,0.504,0.504,0.138,0.138,0.967,0.968,0,1 +1,0.377,0.58,0.58,0,0.0366,1,1,1,0,0,0,0,0,0,0,0.00265,0,0.00265,0.58,0.653,0.474,1,0.584,0.583,0.584,0.584,0.0779,0.0779,0.539,0.54,0,1 +1,0.461,0.616,0.616,0,0,0.96,0.96,0.96,0,0,0.0442,0.00596,0,0,0,0.0307,0,0.0307,0.616,0.616,0.664,1,0.672,0.355,0.672,0.672,0.0479,0.0479,0.483,0.484,0,1 +1,0.59,0.653,0.653,0,0,0.94,0.94,0.94,0,0,0.0336,0.0151,0.055,0.055,0,0.00261,0.00852,0.0111,0.653,0.579,0.82,1,0.716,0.223,0.716,0.716,0.024,0.024,0.404,0.405,0,1 +1,0.496,0.635,0.635,0,0,0.92,0.92,0.92,0,0,0.0351,0,0.312,0.312,0,0.0499,0.00852,0.0585,0.509,0.525,0.777,1,0.761,0.0964,0.761,0.761,0.018,0.018,0.341,0.341,0.333,1 +1,0.386,0.543,0.543,0,0,0.88,0.88,0.88,0,0,0.0214,0,0,0,0,0,0,0,0.448,0.484,0.47,1,0.663,0.066,0.663,0.663,0.018,0.018,0.19,0.19,0.333,1 +1,0.116,0.46,0.46,0,0,0.82,0.82,0.82,0,0,0.0133,0,0,0,0,0,0.00284,0.00284,0.325,0.458,0.203,1,0.575,0.0355,0.575,0.575,0.018,0.018,0.19,0.19,0.667,1 +1,0.0743,0.368,0.368,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0.00568,0.00568,0.294,0.454,0.0835,1,0.389,0.0203,0.389,0.389,0.018,0.018,0.19,0.19,0.667,1 +1,0.0495,0.34,0.34,0,0,0.78,0.78,0.78,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0406,1,0.203,0.00507,0.203,0.203,0.018,0.018,0.23,0.23,1,1 +1,0.0495,0.34,0.34,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0203,1,0.168,0.00507,0.168,0.168,0.018,0.018,0.19,0.19,1,1 +1,0.0495,0.331,0.331,0,0,0.74,0.74,0.74,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0158,1,0.133,0.0101,0.133,0.133,0.024,0.024,0.23,0.23,1,1 +1,0.0495,0.304,0.304,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0248,1,0.141,0.0355,0.141,0.141,0.0479,0.0479,0.372,0.373,1,1 +1,0.0495,0.331,0.331,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0.0219,0,0.0219,0.258,0.465,0.0406,1,0.159,0.0609,0.159,0.159,0.0898,0.0898,0.531,0.532,1,1 +1,0.22,0.396,0.396,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0.0395,0,0.0395,0.35,0.459,0.0655,1,0.23,0.147,0.23,0.23,0.156,0.156,0.452,0.452,0.333,1 +0.667,0.162,0.432,0.432,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0,0,0.316,0.483,0.0903,1,0.292,0.233,0.292,0.292,0.263,0.263,0.19,0.19,0.333,1 +0.667,0.27,0.313,0.313,0,0.122,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0,0,0.294,0.508,0.111,1,0.292,0.223,0.292,0.292,0.503,0.503,0.19,0.19,0,1 +0.333,0.154,0.212,0.212,0,0.0244,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0,0,0.242,0.487,0.131,1,0.283,0.208,0.283,0.283,0.725,0.725,0.151,0.151,0,1 +0.333,0.15,0.221,0.221,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0.0114,0.0114,0.245,0.487,0.147,1,0.292,0.223,0.292,0.292,0.761,0.761,0.119,0.119,0,1 +0.333,0.145,0.23,0.23,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0,0,0.248,0.491,0.163,1,0.292,0.233,0.292,0.292,0.725,0.725,0.111,0.111,0,1 +0.333,0.141,0.221,0.221,0,0,0.84,0.84,0.84,0,0,0.00731,0,0,0,0,0,0,0,0.245,0.495,0.172,1,0.283,0.213,0.283,0.283,0.719,0.719,0.111,0.111,0,1 +0.667,0.23,0.258,0.258,0,0,0.84,0.84,0.84,0,0,0.0416,0.0158,0,0,0,0,0.00284,0.00284,0.258,0.525,0.194,1,0.283,0.193,0.283,0.283,0.539,0.539,0.111,0.111,0,1 +0.667,0.23,0.285,0.285,0,0,0.84,0.84,0.84,0,0,0.0305,0,0.33,0.33,0,0,0.00568,0.00568,0.276,0.517,0.205,1,0.283,0.249,0.283,0.283,0.449,0.449,0.19,0.19,0,1 +0.333,0.14,0.294,0.294,0,0,0.82,0.82,0.82,0,0,0.00166,0,0.0367,0.0367,0,0,0.00852,0.00852,0.27,0.499,0.23,1,0.292,0.299,0.292,0.292,0.365,0.365,0.46,0.46,0,1 +0.667,0.233,0.359,0.359,0,0.0366,0.88,0.88,0.88,0,0,0,0,0,0,0,0.0172,0.00568,0.0229,0.325,0.549,0.287,1,0.398,0.558,0.398,0.398,0.222,0.222,0.998,1,0,1 +1,0.338,0.488,0.488,0,0,0.96,0.96,0.96,0,0,0,0,0,0,0,0,0.00284,0.00284,0.488,0.641,0.352,1,0.504,0.817,0.504,0.504,0.138,0.138,0.967,0.968,0,1 +0.667,0.268,0.58,0.58,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0.472,0.591,0.474,1,0.584,0.583,0.584,0.584,0.0779,0.0779,0.539,0.54,0,1 +1,0.461,0.616,0.616,0,0,0.96,0.96,0.96,0,0,0,0,0,0,0,0,0.00284,0.00284,0.616,0.616,0.664,1,0.672,0.355,0.672,0.672,0.0479,0.0479,0.483,0.484,0,1 +1,0.59,0.653,0.653,0,0,0.94,0.94,0.94,0,0,0,0,0,0,0,0,0,0,0.653,0.579,0.82,1,0.716,0.223,0.716,0.716,0.024,0.024,0.404,0.405,0,1 +1,0.273,0.635,0.635,0,0,0.92,0.92,0.92,0,0,0,0,0,0,0,0,0.00852,0.00852,0.383,0.495,0.777,1,0.761,0.0964,0.761,0.761,0.018,0.018,0.341,0.341,0.667,1 +1,0.218,0.543,0.543,0,0,0.88,0.88,0.88,0,0,0,0,0,0,0,0,0.00852,0.00852,0.353,0.475,0.47,1,0.663,0.066,0.663,0.663,0.018,0.018,0.19,0.19,0.667,1 +1,0.0495,0.46,0.46,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.203,1,0.575,0.0355,0.575,0.575,0.018,0.018,0.19,0.19,1,1 +1,0.0495,0.368,0.368,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0835,1,0.389,0.0203,0.389,0.389,0.018,0.018,0.19,0.19,1,1 +1,0.0495,0.34,0.34,0,0,0.78,0.78,0.78,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0406,1,0.203,0.00507,0.203,0.203,0.018,0.018,0.23,0.23,1,1 +1,0.0495,0.34,0.34,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0,0.00852,0.00852,0.258,0.465,0.0203,1,0.168,0.00507,0.168,0.168,0.018,0.018,0.19,0.19,1,1 +1,0.0495,0.331,0.331,0,0,0.74,0.74,0.74,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0158,1,0.133,0.0101,0.133,0.133,0.024,0.024,0.23,0.23,1,1 +1,0.0495,0.304,0.304,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0248,1,0.141,0.0355,0.141,0.141,0.0479,0.0479,0.372,0.373,1,1 +1,0.0495,0.331,0.331,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0406,1,0.159,0.0609,0.159,0.159,0.0898,0.0898,0.531,0.532,1,1 +1,0.0495,0.396,0.396,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0.024,0,0.024,0.258,0.465,0.0655,1,0.23,0.147,0.23,0.23,0.156,0.156,0.452,0.452,1,1 +0.667,0.162,0.432,0.432,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0,0,0.316,0.483,0.0903,1,0.292,0.233,0.292,0.292,0.263,0.263,0.19,0.19,0.333,1 +0.667,0.16,0.313,0.313,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0,0,0.276,0.487,0.111,1,0.292,0.223,0.292,0.292,0.503,0.503,0.19,0.19,0.333,1 +0.667,0.154,0.212,0.212,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0,0,0.242,0.487,0.131,1,0.283,0.208,0.283,0.283,0.725,0.725,0.151,0.151,0.333,1 +0.333,0.15,0.221,0.221,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0.00568,0.00568,0.245,0.487,0.147,1,0.292,0.223,0.292,0.292,0.761,0.761,0.119,0.119,0,1 +0.333,0.145,0.23,0.23,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0.0114,0.0114,0.248,0.491,0.163,1,0.292,0.233,0.292,0.292,0.725,0.725,0.111,0.111,0,1 +0.333,0.141,0.221,0.221,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0.00568,0.00568,0.245,0.495,0.172,1,0.283,0.213,0.283,0.283,0.719,0.719,0.111,0.111,0,1 +0.333,0.14,0.258,0.258,0,0,0.84,0.84,0.84,0,0,0.0472,0.00596,0,0,0,0,0,0,0.258,0.495,0.194,1,0.283,0.193,0.283,0.283,0.539,0.539,0.111,0.111,0,1 +0.333,0.14,0.285,0.285,0,0,0.84,0.84,0.84,0,0,0.0261,0.00982,0.147,0.147,0,0,0.00852,0.00852,0.267,0.491,0.205,1,0.283,0.249,0.283,0.283,0.449,0.449,0.19,0.19,0,1 +0.333,0.14,0.294,0.294,0,0,0.82,0.82,0.82,0,0,0,0,0.22,0.22,0,0,0,0,0.27,0.499,0.23,1,0.292,0.299,0.292,0.292,0.365,0.365,0.46,0.46,0,1 +0.667,0.233,0.359,0.359,0,0.0853,0.88,0.88,0.88,0,0,0,0,0,0,0,0,0.00284,0.00284,0.325,0.549,0.287,1,0.398,0.558,0.398,0.398,0.222,0.222,0.998,1,0,1 +1,0.338,0.488,0.488,0,0.146,0.96,0.96,0.96,0,0,0,0,0,0,0,0,0.017,0.017,0.488,0.641,0.352,1,0.504,0.817,0.504,0.504,0.138,0.138,0.967,0.968,0,1 +1,0.377,0.58,0.58,0,0.0244,1,1,1,0,0,0,0,0,0,0,0,0.0114,0.0114,0.58,0.653,0.474,1,0.584,0.583,0.584,0.584,0.0779,0.0779,0.539,0.54,0,1 +1,0.461,0.616,0.616,0,0,0.96,0.96,0.96,0.0177,0.0478,0,0,0,0,0,0,0.00284,0.00284,0.616,0.616,0.664,1,0.672,0.355,0.672,0.672,0.0479,0.0479,0.483,0.484,0,1 +1,0.59,0.653,0.653,0,0,0.94,0.94,0.94,0.0139,0,0,0,0,0,0,0,0,0,0.653,0.579,0.82,1,0.716,0.223,0.716,0.716,0.024,0.024,0.404,0.405,0,1 +1,0.273,0.635,0.635,0,0,0.92,0.92,0.92,0.011,0.0414,0,0,0,0,0,0,0,0,0.383,0.495,0.777,1,0.761,0.0964,0.761,0.761,0.018,0.018,0.341,0.341,0.667,1 +1,0.218,0.543,0.543,0,0,0.88,0.88,0.88,0,0.0541,0,0,0,0,0,0.0186,0.00568,0.0243,0.353,0.475,0.47,1,0.663,0.066,0.663,0.663,0.018,0.018,0.19,0.19,0.667,1 +1,0.116,0.46,0.46,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0.0217,0.0114,0.033,0.325,0.458,0.203,1,0.575,0.0355,0.575,0.575,0.018,0.018,0.19,0.19,0.667,1 +1,0.0743,0.368,0.368,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0,0,0.294,0.454,0.0835,1,0.389,0.0203,0.389,0.389,0.018,0.018,0.19,0.19,0.667,1 +1,0.0495,0.34,0.34,0,0,0.78,0.78,0.78,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0406,1,0.203,0.00507,0.203,0.203,0.018,0.018,0.23,0.23,1,1 +1,0.0495,0.34,0.34,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0203,1,0.168,0.00507,0.168,0.168,0.018,0.018,0.19,0.19,1,1 +1,0.0495,0.331,0.331,0,0,0.74,0.74,0.74,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0158,1,0.133,0.0101,0.133,0.133,0.024,0.024,0.23,0.23,1,1 +1,0.0495,0.304,0.304,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0.00276,0,0.00276,0.258,0.465,0.0248,1,0.141,0.0355,0.141,0.141,0.0479,0.0479,0.372,0.373,1,1 +1,0.0763,0.331,0.331,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0.02,0,0.02,0.282,0.446,0.0406,1,0.159,0.0609,0.159,0.159,0.0898,0.0898,0.531,0.532,0.667,1 +0.667,0.135,0.396,0.396,0,0.0731,0.76,0.76,0.76,0,0,0,0,0,0,0,0,0,0,0.304,0.462,0.0655,1,0.23,0.147,0.23,0.23,0.156,0.156,0.452,0.452,0.333,1 +0.667,0.274,0.432,0.432,0,0.0366,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0,0,0.374,0.5,0.0903,1,0.292,0.233,0.292,0.292,0.263,0.263,0.19,0.19,0,1 +0.333,0.16,0.313,0.313,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0,0,0.276,0.487,0.111,1,0.292,0.223,0.292,0.292,0.503,0.503,0.19,0.19,0,1 +0.333,0.154,0.212,0.212,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0.00284,0.00284,0.242,0.487,0.131,1,0.283,0.208,0.283,0.283,0.725,0.725,0.151,0.151,0,1 +0.333,0.15,0.221,0.221,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0,0,0.245,0.487,0.147,1,0.292,0.223,0.292,0.292,0.761,0.761,0.119,0.119,0,1 +0.333,0.145,0.23,0.23,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0.0206,0,0.0206,0.248,0.491,0.163,1,0.292,0.233,0.292,0.292,0.725,0.725,0.111,0.111,0,1 +0.667,0.232,0.221,0.221,0,0.0366,0.84,0.84,0.84,0.00528,0.0175,0,0,0,0,0,0,0,0,0.233,0.525,0.172,1,0.283,0.213,0.283,0.283,0.719,0.719,0.111,0.111,0,1 +0.667,0.23,0.258,0.258,0,0,0.84,0.84,0.84,0.0203,0.0302,0,0,0,0,0,0,0,0,0.258,0.525,0.194,1,0.283,0.193,0.283,0.283,0.539,0.539,0.111,0.111,0,1 +0.333,0.14,0.285,0.285,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0.00284,0.00284,0.267,0.491,0.205,1,0.283,0.249,0.283,0.283,0.449,0.449,0.19,0.19,0,1 +0.333,0.14,0.294,0.294,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0.00272,0,0.00272,0.27,0.499,0.23,1,0.292,0.299,0.292,0.292,0.365,0.365,0.46,0.46,0,1 +0.667,0.233,0.359,0.359,0,0,0.88,0.88,0.88,0,0,0,0,0,0,0,0.0136,0,0.0136,0.325,0.549,0.287,1,0.398,0.558,0.398,0.398,0.222,0.222,0.998,1,0,1 +1,0.338,0.488,0.488,0,0,0.96,0.96,0.96,0,0,0,0,0,0,0,0,0.00284,0.00284,0.488,0.641,0.352,1,0.504,0.817,0.504,0.504,0.138,0.138,0.967,0.968,0,1 +1,0.377,0.58,0.58,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0.58,0.653,0.474,1,0.584,0.583,0.584,0.584,0.0779,0.0779,0.539,0.54,0,1 +1,0.461,0.616,0.616,0,0,0.96,0.96,0.96,0.0118,0.0478,0,0,0,0,0,0,0.0142,0.0142,0.616,0.616,0.664,1,0.672,0.355,0.672,0.672,0.0479,0.0479,0.483,0.484,0,1 +1,0.59,0.653,0.653,0,0,0.94,0.94,0.94,0.0207,0,0,0,0,0,0,0,0,0,0.653,0.579,0.82,1,0.716,0.223,0.716,0.716,0.024,0.024,0.404,0.405,0,1 +1,0.72,0.635,0.635,0,0,0.92,0.92,0.92,0.0193,0,0,0,0,0,0.0464,0,0.0369,0.0833,0.635,0.555,0.777,1,0.761,0.0964,0.761,0.761,0.018,0.018,0.341,0.341,0,1 +1,0.386,0.543,0.543,0,0,0.88,0.88,0.88,0.0166,0,0,0,0,0,0,0,0.00284,0.00284,0.448,0.484,0.47,1,0.663,0.066,0.663,0.663,0.018,0.018,0.19,0.19,0.333,1 +1,0.116,0.46,0.46,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0,0,0.325,0.458,0.203,1,0.575,0.0355,0.575,0.575,0.018,0.018,0.19,0.19,0.667,1 +1,0.0495,0.368,0.368,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.465,0.0993,1,0.389,0.0203,0.389,0.389,0.018,0.018,0.19,0.19,1,1 +1,0.0495,0.34,0.34,0,0,0.78,0.78,0.78,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0497,1,0.203,0.00507,0.203,0.203,0.018,0.018,0.23,0.23,1,1 +1,0.0495,0.34,0.34,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0271,1,0.168,0.00507,0.168,0.168,0.018,0.018,0.19,0.19,1,1 +1,0.0495,0.331,0.331,0,0,0.74,0.74,0.74,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0181,1,0.133,0.0101,0.133,0.133,0.024,0.024,0.23,0.23,1,1 +1,0.0495,0.304,0.304,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0248,1,0.141,0.0355,0.141,0.141,0.0479,0.0479,0.372,0.373,1,1 +1,0.0495,0.331,0.331,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0316,1,0.159,0.0609,0.159,0.159,0.0898,0.0898,0.531,0.532,1,1 +1,0.0495,0.396,0.396,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0542,1,0.23,0.147,0.23,0.23,0.156,0.156,0.452,0.452,1,1 +1,0.162,0.432,0.432,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0.0149,0,0.0149,0.316,0.483,0.0971,1,0.292,0.233,0.292,0.292,0.263,0.263,0.19,0.19,0.667,1 +1,0.16,0.313,0.313,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0,0,0.276,0.487,0.16,1,0.292,0.223,0.292,0.292,0.503,0.503,0.19,0.19,0.667,1 +0.667,0.258,0.212,0.212,0,0.0731,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0,0,0.227,0.508,0.212,1,0.283,0.208,0.283,0.283,0.725,0.725,0.151,0.151,0,1 +0.667,0.25,0.221,0.221,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0,0,0.233,0.508,0.253,1,0.292,0.223,0.292,0.292,0.761,0.761,0.119,0.119,0,1 +0.667,0.24,0.23,0.23,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0.00568,0.00568,0.239,0.517,0.278,1,0.292,0.233,0.292,0.292,0.725,0.725,0.111,0.111,0,1 +0.667,0.232,0.221,0.221,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0.0114,0.0114,0.233,0.525,0.298,1,0.283,0.213,0.283,0.283,0.719,0.719,0.111,0.111,0,1 +0.333,0.14,0.258,0.258,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0,0,0.258,0.495,0.352,1,0.283,0.193,0.283,0.283,0.539,0.539,0.111,0.111,0,1 +0.333,0.14,0.285,0.285,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0,0,0.267,0.491,0.402,1,0.283,0.249,0.283,0.283,0.449,0.449,0.19,0.19,0,1 +0.667,0.23,0.294,0.294,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0.00568,0.00568,0.282,0.533,0.443,1,0.292,0.299,0.292,0.292,0.365,0.365,0.46,0.46,0,1 +0,0.0495,0.359,0.359,0,0,0.88,0.88,0.88,0,0,0,0,0,0,0,0,0.0114,0.0114,0.258,0.465,0.465,1,0.398,0.558,0.398,0.398,0.222,0.222,0.998,1,0,1 +0.667,0.242,0.488,0.488,0,0.0366,0.96,0.96,0.96,0,0,0,0,0,0,0,0,0.00284,0.00284,0.411,0.582,0.481,1,0.504,0.817,0.504,0.504,0.138,0.138,0.967,0.968,0,1 +0.667,0.268,0.58,0.58,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0.472,0.591,0.567,1,0.584,0.583,0.584,0.584,0.0779,0.0779,0.539,0.54,0,1 +0.667,0.324,0.616,0.616,0,0,0.96,0.96,0.96,0,0,0,0,0,0,0,0,0.00852,0.00852,0.497,0.566,0.745,1,0.672,0.355,0.672,0.672,0.0479,0.0479,0.483,0.484,0,1 +0.667,0.41,0.653,0.653,0,0,0.94,0.94,0.94,0,0,0,0,0,0,0,0,0,0,0.521,0.541,0.876,1,0.716,0.223,0.716,0.716,0.024,0.024,0.404,0.405,0,1 +1,0.72,0.635,0.635,0,0,0.92,0.92,0.92,0,0,0,0,0,0,0,0.00256,0.0114,0.0139,0.635,0.555,0.808,1,0.761,0.0964,0.761,0.761,0.018,0.018,0.341,0.341,0,1 +1,0.554,0.543,0.543,0,0,0.88,0.88,0.88,0,0,0,0,0,0,0,0.0426,0.00568,0.0483,0.543,0.493,0.51,1,0.663,0.066,0.663,0.663,0.018,0.018,0.19,0.19,0,1 +1,0.183,0.46,0.46,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0.0135,0.00284,0.0163,0.393,0.451,0.233,1,0.575,0.0355,0.575,0.575,0.018,0.018,0.19,0.19,0.333,1 +1,0.099,0.368,0.368,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0.00568,0.00568,0.331,0.443,0.0993,1,0.389,0.0203,0.389,0.389,0.018,0.018,0.19,0.19,0.333,1 +1,0.0578,0.34,0.34,0,0,0.78,0.78,0.78,0,0,0,0,0,0,0,0,0,0,0.285,0.446,0.0497,1,0.203,0.00507,0.203,0.203,0.018,0.018,0.23,0.23,0.667,1 +0.667,0.0495,0.34,0.34,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0271,1,0.168,0.00507,0.168,0.168,0.018,0.018,0.19,0.19,0.667,1 +0.667,0.0495,0.331,0.331,0,0,0.74,0.74,0.74,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0181,1,0.133,0.0101,0.133,0.133,0.024,0.024,0.23,0.23,0.667,1 +1,0.0495,0.304,0.304,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0248,1,0.141,0.0355,0.141,0.141,0.0479,0.0479,0.372,0.373,1,1 +1,0.0495,0.331,0.331,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0316,1,0.159,0.0609,0.159,0.159,0.0898,0.0898,0.531,0.532,1,1 +1,0.0495,0.396,0.396,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0542,1,0.23,0.147,0.23,0.23,0.156,0.156,0.452,0.452,1,1 +0.667,0.0495,0.432,0.432,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0971,1,0.292,0.233,0.292,0.292,0.263,0.263,0.19,0.19,0.667,1 +0.667,0.16,0.313,0.313,0,0.0853,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0,0,0.276,0.487,0.16,1,0.292,0.223,0.292,0.292,0.503,0.503,0.19,0.19,0.333,1 +0.667,0.258,0.212,0.212,0,0.0609,0.82,0.82,0.82,0,0,0,0,0,0,0,0.00244,0,0.00244,0.227,0.508,0.212,1,0.283,0.208,0.283,0.283,0.725,0.725,0.151,0.151,0,1 +0.667,0.25,0.221,0.221,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0.0365,0,0.0365,0.233,0.508,0.253,1,0.292,0.223,0.292,0.292,0.761,0.761,0.119,0.119,0,1 +0.333,0.145,0.23,0.23,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0.00814,0,0.00814,0.248,0.491,0.278,1,0.292,0.233,0.292,0.292,0.725,0.725,0.111,0.111,0,1 +0.333,0.141,0.221,0.221,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0,0,0.245,0.495,0.298,1,0.283,0.213,0.283,0.283,0.719,0.719,0.111,0.111,0,1 +0.667,0.23,0.258,0.258,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0.00568,0.00568,0.258,0.525,0.352,1,0.283,0.193,0.283,0.283,0.539,0.539,0.111,0.111,0,1 +0.667,0.23,0.285,0.285,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0.00284,0.00284,0.276,0.517,0.402,1,0.283,0.249,0.283,0.283,0.449,0.449,0.19,0.19,0,1 +0.333,0.14,0.294,0.294,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0,0,0.27,0.499,0.443,1,0.292,0.299,0.292,0.292,0.365,0.365,0.46,0.46,0,1 +0.667,0.141,0.359,0.359,0,0,0.88,0.88,0.88,0,0,0,0,0,0,0,0,0.00568,0.00568,0.291,0.507,0.465,1,0.398,0.558,0.398,0.398,0.222,0.222,0.998,1,0.333,1 +1,0.146,0.488,0.488,0,0,0.96,0.96,0.96,0,0,0,0,0,0,0,0,0.0114,0.0114,0.334,0.524,0.481,1,0.504,0.817,0.504,0.504,0.138,0.138,0.967,0.968,0.667,1 +1,0.159,0.58,0.58,0,0,1,1,1,0,0,0,0,0,0,0,0,0.00568,0.00568,0.365,0.528,0.567,1,0.584,0.583,0.584,0.584,0.0779,0.0779,0.539,0.54,0.667,1 +1,0.187,0.616,0.616,0,0,0.96,0.96,0.96,0,0,0,0,0,0,0,0,0.00568,0.00568,0.377,0.516,0.745,1,0.672,0.355,0.672,0.672,0.0479,0.0479,0.483,0.484,0.667,1 +1,0.23,0.653,0.653,0,0,0.94,0.94,0.94,0,0,0,0,0,0,0,0,0.0114,0.0114,0.39,0.503,0.876,1,0.716,0.223,0.716,0.716,0.024,0.024,0.404,0.405,0.667,1 +1,0.496,0.635,0.635,0,0,0.92,0.92,0.92,0,0,0,0,0,0,0,0,0.00284,0.00284,0.509,0.525,0.808,1,0.761,0.0964,0.761,0.761,0.018,0.018,0.341,0.341,0.333,1 +1,0.386,0.543,0.543,0,0,0.88,0.88,0.88,0,0,0,0,0,0,0,0.0281,0.00284,0.031,0.448,0.484,0.51,1,0.663,0.066,0.663,0.663,0.018,0.018,0.19,0.19,0.333,1 +1,0.116,0.46,0.46,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0.0611,0,0.0611,0.325,0.458,0.233,1,0.575,0.0355,0.575,0.575,0.018,0.018,0.19,0.19,0.667,1 +1,0.0495,0.368,0.368,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0835,1,0.389,0.0203,0.389,0.389,0.018,0.018,0.19,0.19,1,1 +1,0.0495,0.34,0.34,0,0,0.78,0.78,0.78,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0406,1,0.203,0.00507,0.203,0.203,0.018,0.018,0.23,0.23,1,1 +1,0.0495,0.34,0.34,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0203,1,0.168,0.00507,0.168,0.168,0.018,0.018,0.19,0.19,1,1 +1,0.0495,0.331,0.331,0,0,0.74,0.74,0.74,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0158,1,0.133,0.0101,0.133,0.133,0.024,0.024,0.23,0.23,1,1 +1,0.0495,0.304,0.304,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0248,1,0.141,0.0355,0.141,0.141,0.0479,0.0479,0.372,0.373,1,1 +1,0.0495,0.331,0.331,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0.00522,0,0.00522,0.258,0.465,0.0406,1,0.159,0.0609,0.159,0.159,0.0898,0.0898,0.531,0.532,1,1 +1,0.22,0.396,0.396,0,0.0122,0.76,0.76,0.76,0,0,0,0,0,0,0,0.0512,0,0.0512,0.35,0.459,0.0655,1,0.23,0.147,0.23,0.23,0.156,0.156,0.452,0.452,0.333,1 +1,0.274,0.432,0.432,0,0.0244,0.8,0.8,0.8,0,0,0,0,0,0,0.0774,0.0141,0,0.0916,0.374,0.5,0.0903,1,0.292,0.233,0.292,0.292,0.263,0.263,0.19,0.19,0.333,1 +0.667,0.27,0.313,0.313,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0.0268,0,0.0268,0.294,0.508,0.111,1,0.292,0.223,0.292,0.292,0.503,0.503,0.19,0.19,0,1 +0.667,0.258,0.212,0.212,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0.0336,0,0.0336,0.227,0.508,0.131,1,0.283,0.208,0.283,0.283,0.725,0.725,0.151,0.151,0,1 +0.667,0.25,0.221,0.221,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0.00852,0.00852,0.233,0.508,0.147,1,0.292,0.223,0.292,0.292,0.761,0.761,0.119,0.119,0,1 +0.333,0.145,0.23,0.23,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0,0,0.248,0.491,0.163,1,0.292,0.233,0.292,0.292,0.725,0.725,0.111,0.111,0,1 +0.333,0.141,0.221,0.221,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0,0,0.245,0.495,0.172,1,0.283,0.213,0.283,0.283,0.719,0.719,0.111,0.111,0,1 +0.333,0.14,0.258,0.258,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0,0,0.258,0.495,0.194,1,0.283,0.193,0.283,0.283,0.539,0.539,0.111,0.111,0,1 +0.333,0.14,0.285,0.285,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0,0,0.267,0.491,0.205,1,0.283,0.249,0.283,0.283,0.449,0.449,0.19,0.19,0,1 +0.333,0.14,0.294,0.294,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0.00852,0.00852,0.27,0.499,0.23,1,0.292,0.299,0.292,0.292,0.365,0.365,0.46,0.46,0,1 +0.333,0.141,0.359,0.359,0,0,0.88,0.88,0.88,0,0,0,0,0,0,0,0,0.00284,0.00284,0.291,0.507,0.287,1,0.398,0.558,0.398,0.398,0.222,0.222,0.998,1,0,1 +0.667,0.242,0.488,0.488,0,0,0.96,0.96,0.96,0,0,0,0,0,0,0.0667,0.0327,0,0.0994,0.411,0.582,0.352,1,0.504,0.817,0.504,0.504,0.138,0.138,0.967,0.968,0,1 +1,0.377,0.58,0.58,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0.58,0.653,0.474,1,0.584,0.583,0.584,0.584,0.0779,0.0779,0.539,0.54,0,1 +1,0.461,0.616,0.616,0,0,0.96,0.96,0.96,0,0,0,0,0,0,0,0,0,0,0.616,0.616,0.664,1,0.672,0.355,0.672,0.672,0.0479,0.0479,0.483,0.484,0,1 +1,0.59,0.653,0.653,0,0,0.94,0.94,0.94,0,0,0,0,0,0,0,0,0.0114,0.0114,0.653,0.579,0.82,1,0.716,0.223,0.716,0.716,0.024,0.024,0.404,0.405,0,1 +1,0.72,0.635,0.635,0,0,0.92,0.92,0.92,0,0,0,0,0,0,0,0,0.00852,0.00852,0.635,0.555,0.777,1,0.761,0.0964,0.761,0.761,0.018,0.018,0.341,0.341,0,1 +1,0.386,0.543,0.543,0,0,0.88,0.88,0.88,0,0,0,0,0,0,0,0,0.00568,0.00568,0.448,0.484,0.47,1,0.663,0.066,0.663,0.663,0.018,0.018,0.19,0.19,0.333,1 +1,0.116,0.46,0.46,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0.0114,0.0114,0.325,0.458,0.203,1,0.575,0.0355,0.575,0.575,0.018,0.018,0.19,0.19,0.667,1 +1,0.0743,0.368,0.368,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0.0199,0.0199,0.294,0.454,0.0835,1,0.389,0.0203,0.389,0.389,0.018,0.018,0.19,0.19,0.667,1 +1,0.0495,0.34,0.34,0,0,0.78,0.78,0.78,0,0,0,0,0,0,0,0,0.0199,0.0199,0.258,0.465,0.0406,1,0.203,0.00507,0.203,0.203,0.018,0.018,0.23,0.23,1,1 +1,0.0495,0.34,0.34,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.465,0.0203,1,0.168,0.00507,0.168,0.168,0.018,0.018,0.19,0.19,1,1 +1,0.0495,0.331,0.331,0,0,0.74,0.74,0.74,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0158,1,0.133,0.0101,0.133,0.133,0.024,0.024,0.23,0.23,1,1 +1,0.0495,0.304,0.304,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0.00265,0,0.00265,0.258,0.465,0.0248,1,0.141,0.0355,0.141,0.141,0.0479,0.0479,0.372,0.373,1,1 +1,0.0763,0.331,0.331,0,0,0.72,0.72,0.72,0,0,0.0327,0.00596,0,0,0,0.0817,0,0.0817,0.282,0.446,0.0406,1,0.159,0.0609,0.159,0.159,0.0898,0.0898,0.531,0.532,0.667,1 +1,0.22,0.396,0.396,0,0,0.76,0.76,0.76,0,0,0.042,0.00982,0.147,0.147,0,0.0168,0,0.0168,0.35,0.459,0.0655,1,0.23,0.147,0.23,0.23,0.156,0.156,0.452,0.452,0.333,1 +1,0.274,0.432,0.432,0,0,0.8,0.8,0.8,0,0,0,0,0.22,0.22,0,0,0,0,0.374,0.5,0.0903,1,0.292,0.233,0.292,0.292,0.263,0.263,0.19,0.19,0.333,1 +0.333,0.0495,0.313,0.313,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.111,1,0.292,0.223,0.292,0.292,0.503,0.503,0.19,0.19,0.333,1 +0.333,0.0495,0.212,0.212,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0.017,0.017,0.258,0.465,0.131,1,0.283,0.208,0.283,0.283,0.725,0.725,0.151,0.151,0.333,1 +0.333,0.0495,0.221,0.221,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0.00568,0.00568,0.258,0.465,0.147,1,0.292,0.223,0.292,0.292,0.761,0.761,0.119,0.119,0.333,1 +0.333,0.0495,0.23,0.23,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.163,1,0.292,0.233,0.292,0.292,0.725,0.725,0.111,0.111,0.333,1 +0.333,0.0495,0.221,0.221,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.172,1,0.283,0.213,0.283,0.283,0.719,0.719,0.111,0.111,0.333,1 +0.333,0.0495,0.258,0.258,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.194,1,0.283,0.193,0.283,0.283,0.539,0.539,0.111,0.111,0.333,1 +0.333,0.0495,0.285,0.285,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.205,1,0.283,0.249,0.283,0.283,0.449,0.449,0.19,0.19,0.333,1 +0.333,0.0495,0.294,0.294,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.23,1,0.292,0.299,0.292,0.292,0.365,0.365,0.46,0.46,0.333,1 +0.333,0.141,0.359,0.359,0,0,0.88,0.88,0.88,0,0,0,0,0,0,0,0,0,0,0.291,0.507,0.287,1,0.398,0.558,0.398,0.398,0.222,0.222,0.998,1,0,1 +0.333,0.146,0.488,0.488,0,0,0.96,0.96,0.96,0.00949,0.0239,0,0,0,0,0,0,0,0,0.334,0.524,0.352,1,0.504,0.817,0.504,0.504,0.138,0.138,0.967,0.968,0,1 +1,0.377,0.58,0.58,0,0,1,1,1,0.0217,0,0,0,0,0,0,0,0,0,0.58,0.653,0.474,1,0.584,0.583,0.584,0.584,0.0779,0.0779,0.539,0.54,0,1 +1,0.461,0.616,0.616,0,0,0.96,0.96,0.96,0.0231,0,0,0,0,0,0,0,0,0,0.616,0.616,0.664,1,0.672,0.355,0.672,0.672,0.0479,0.0479,0.483,0.484,0,1 +1,0.59,0.653,0.653,0,0,0.94,0.94,0.94,0.0172,0,0,0,0,0,0,0,0.00568,0.00568,0.653,0.579,0.82,1,0.716,0.223,0.716,0.716,0.024,0.024,0.404,0.405,0,1 +1,0.496,0.635,0.635,0,0,0.92,0.92,0.92,0,0,0,0,0,0,0,0,0.0142,0.0142,0.509,0.525,0.777,1,0.761,0.0964,0.761,0.761,0.018,0.018,0.341,0.341,0.333,1 +1,0.386,0.543,0.543,0,0,0.88,0.88,0.88,0,0,0,0,0,0,0,0,0.0142,0.0142,0.448,0.484,0.47,1,0.663,0.066,0.663,0.663,0.018,0.018,0.19,0.19,0.333,1 +1,0.0495,0.46,0.46,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0.00852,0.00852,0.258,0.465,0.203,1,0.575,0.0355,0.575,0.575,0.018,0.018,0.19,0.19,1,1 +1,0.0495,0.368,0.368,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0.00852,0.00852,0.258,0.465,0.0835,1,0.389,0.0203,0.389,0.389,0.018,0.018,0.19,0.19,1,1 +1,0.0495,0.34,0.34,0,0,0.78,0.78,0.78,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0406,1,0.203,0.00507,0.203,0.203,0.018,0.018,0.23,0.23,1,1 +1,0.0495,0.34,0.34,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0203,1,0.168,0.00507,0.168,0.168,0.018,0.018,0.19,0.19,1,1 +1,0.0495,0.331,0.331,0,0,0.74,0.74,0.74,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0158,1,0.133,0.0101,0.133,0.133,0.024,0.024,0.23,0.23,1,1 +1,0.0499,0.304,0.304,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0.0341,0,0.0341,0.273,0.442,0.0248,1,0.141,0.0355,0.141,0.141,0.0479,0.0479,0.372,0.373,0.667,1 +1,0.0763,0.331,0.331,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0.0102,0,0.0102,0.282,0.446,0.0406,1,0.159,0.0609,0.159,0.159,0.0898,0.0898,0.531,0.532,0.667,1 +1,0.135,0.396,0.396,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0.0216,0,0.0216,0.304,0.462,0.0655,1,0.23,0.147,0.23,0.23,0.156,0.156,0.452,0.452,0.667,1 +0.667,0.162,0.432,0.432,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0.0158,0,0.0158,0.316,0.483,0.0903,1,0.292,0.233,0.292,0.292,0.263,0.263,0.19,0.19,0.333,1 +0,0.0495,0.313,0.313,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.111,1,0.292,0.223,0.292,0.292,0.503,0.503,0.19,0.19,0,1 +0,0.0495,0.212,0.212,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0.0205,0.00568,0.0261,0.258,0.465,0.131,1,0.283,0.208,0.283,0.283,0.725,0.725,0.151,0.151,0,1 +0.333,0.15,0.221,0.221,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0.0114,0.0114,0.245,0.487,0.147,1,0.292,0.223,0.292,0.292,0.761,0.761,0.119,0.119,0,1 +0.333,0.145,0.23,0.23,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0.00568,0.00568,0.248,0.491,0.163,1,0.292,0.233,0.292,0.292,0.725,0.725,0.111,0.111,0,1 +0.333,0.0495,0.221,0.221,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.172,1,0.283,0.213,0.283,0.283,0.719,0.719,0.111,0.111,0.333,1 +0.333,0.0495,0.258,0.258,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.194,1,0.283,0.193,0.283,0.283,0.539,0.539,0.111,0.111,0.333,1 +0.333,0.0495,0.285,0.285,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.205,1,0.283,0.249,0.283,0.283,0.449,0.449,0.19,0.19,0.333,1 +0.333,0.14,0.294,0.294,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0.00568,0.00568,0.27,0.499,0.23,1,0.292,0.299,0.292,0.292,0.365,0.365,0.46,0.46,0,1 +0.667,0.233,0.359,0.359,0,0.0853,0.88,0.88,0.88,0,0,0,0,0,0,0,0,0.00284,0.00284,0.325,0.549,0.287,1,0.398,0.558,0.398,0.398,0.222,0.222,0.998,1,0,1 +1,0.338,0.488,0.488,0,0.0244,0.96,0.96,0.96,0.00505,0.0175,0,0,0,0,0,0,0,0,0.488,0.641,0.352,1,0.504,0.817,0.504,0.504,0.138,0.138,0.967,0.968,0,1 +1,0.377,0.58,0.58,0,0,1,1,1,0.0187,0.0302,0,0,0,0,0,0.0203,0,0.0203,0.58,0.653,0.474,1,0.584,0.583,0.584,0.584,0.0779,0.0779,0.539,0.54,0,1 +1,0.461,0.616,0.616,0,0,0.96,0.96,0.96,0.01,0,0,0,0,0,0,0.031,0.00852,0.0396,0.616,0.616,0.664,1,0.672,0.355,0.672,0.672,0.0479,0.0479,0.483,0.484,0,1 +1,0.59,0.653,0.653,0,0,0.94,0.94,0.94,0,0,0,0,0,0,0,0.033,0.00284,0.0359,0.653,0.579,0.82,1,0.716,0.223,0.716,0.716,0.024,0.024,0.404,0.405,0,1 +1,0.496,0.635,0.635,0,0,0.92,0.92,0.92,0,0,0,0,0,0,0,0.0133,0.0227,0.036,0.509,0.525,0.777,1,0.761,0.0964,0.761,0.761,0.018,0.018,0.341,0.341,0.333,1 +1,0.0495,0.543,0.543,0,0,0.88,0.88,0.88,0,0,0,0,0,0,0,0,0.00568,0.00568,0.258,0.465,0.47,1,0.663,0.066,0.663,0.663,0.018,0.018,0.19,0.19,1,1 +1,0.0495,0.46,0.46,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.465,0.203,1,0.575,0.0355,0.575,0.575,0.018,0.018,0.19,0.19,1,1 +1,0.0495,0.368,0.368,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0835,1,0.389,0.0203,0.389,0.389,0.018,0.018,0.19,0.19,1,1 +1,0.0495,0.34,0.34,0,0,0.78,0.78,0.78,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0406,1,0.203,0.00507,0.203,0.203,0.018,0.018,0.23,0.23,1,1 +1,0.0495,0.34,0.34,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0203,1,0.168,0.00507,0.168,0.168,0.018,0.018,0.19,0.19,1,1 +1,0.0495,0.331,0.331,0,0,0.74,0.74,0.74,0,0,0,0,0,0,0,0.00274,0,0.00274,0.258,0.465,0.0158,1,0.133,0.0101,0.133,0.133,0.024,0.024,0.23,0.23,1,1 +1,0.0499,0.304,0.304,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0.0354,0,0.0354,0.273,0.442,0.0248,1,0.141,0.0355,0.141,0.141,0.0479,0.0479,0.372,0.373,0.667,1 +0.667,0.0763,0.331,0.331,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0.0255,0,0.0255,0.282,0.446,0.0406,1,0.159,0.0609,0.159,0.159,0.0898,0.0898,0.531,0.532,0.333,1 +0.333,0.0495,0.396,0.396,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0.0182,0,0.0182,0.258,0.465,0.0655,1,0.23,0.147,0.23,0.23,0.156,0.156,0.452,0.452,0.333,1 +0.333,0.162,0.432,0.432,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0,0,0.316,0.483,0.0903,1,0.292,0.233,0.292,0.292,0.263,0.263,0.19,0.19,0,1 +0,0.0495,0.313,0.313,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0.00568,0.00568,0.258,0.465,0.111,1,0.292,0.223,0.292,0.292,0.503,0.503,0.19,0.19,0,1 +0,0.0495,0.212,0.212,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.465,0.131,1,0.283,0.208,0.283,0.283,0.725,0.725,0.151,0.151,0,1 +0,0.0495,0.221,0.221,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.465,0.147,1,0.292,0.223,0.292,0.292,0.761,0.761,0.119,0.119,0,1 +0,0.0495,0.23,0.23,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0.0227,0.0227,0.258,0.465,0.163,1,0.292,0.233,0.292,0.292,0.725,0.725,0.111,0.111,0,1 +0.333,0.141,0.221,0.221,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0,0,0.245,0.495,0.172,1,0.283,0.213,0.283,0.283,0.719,0.719,0.111,0.111,0,1 +0.667,0.23,0.258,0.258,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0,0,0.258,0.525,0.194,1,0.283,0.193,0.283,0.283,0.539,0.539,0.111,0.111,0,1 +0.667,0.14,0.285,0.285,0,0,0.84,0.84,0.84,0,0,0.0135,0,0,0,0,0,0,0,0.267,0.491,0.205,1,0.283,0.249,0.283,0.283,0.449,0.449,0.19,0.19,0.333,1 +0.333,0.14,0.294,0.294,0,0,0.82,0.82,0.82,0,0,0.0526,0.0105,0.055,0.055,0,0,0,0,0.27,0.499,0.23,1,0.292,0.299,0.292,0.292,0.365,0.365,0.46,0.46,0,1 +0.667,0.233,0.359,0.359,0,0,0.88,0.88,0.88,0,0,0.0346,0,0.312,0.312,0,0,0.0227,0.0227,0.325,0.549,0.287,1,0.398,0.558,0.398,0.398,0.222,0.222,0.998,1,0,1 +0.667,0.242,0.488,0.488,0,0,0.96,0.96,0.96,0,0,0.0458,0,0,0,0,0.0421,0.0142,0.0563,0.411,0.582,0.352,1,0.504,0.817,0.504,0.504,0.138,0.138,0.967,0.968,0,1 +1,0.377,0.58,0.58,0,0,1,1,1,0,0,0.0329,0,0,0,0,0.0313,0.00852,0.0398,0.58,0.653,0.474,1,0.584,0.583,0.584,0.584,0.0779,0.0779,0.539,0.54,0,1 +1,0.461,0.616,0.616,0,0,0.96,0.96,0.96,0,0,0.0419,0,0,0,0,0,0,0,0.616,0.616,0.664,1,0.672,0.355,0.672,0.672,0.0479,0.0479,0.483,0.484,0,1 +1,0.59,0.653,0.653,0,0,0.94,0.94,0.94,0,0,0.0281,0,0,0,0,0,0.0142,0.0142,0.653,0.579,0.82,1,0.716,0.223,0.716,0.716,0.024,0.024,0.404,0.405,0,1 +1,0.496,0.635,0.635,0,0,0.92,0.92,0.92,0,0,0.0367,0,0,0,0,0,0.00284,0.00284,0.509,0.525,0.777,1,0.761,0.0964,0.761,0.761,0.018,0.018,0.341,0.341,0.333,1 +1,0.386,0.543,0.543,0,0,0.88,0.88,0.88,0,0,0,0,0,0,0,0,0.00284,0.00284,0.448,0.484,0.47,1,0.663,0.066,0.663,0.663,0.018,0.018,0.19,0.19,0.333,1 +1,0.116,0.46,0.46,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0,0,0.325,0.458,0.203,1,0.575,0.0355,0.575,0.575,0.018,0.018,0.19,0.19,0.667,1 +1,0.0495,0.368,0.368,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0835,1,0.389,0.0203,0.389,0.389,0.018,0.018,0.19,0.19,1,1 +1,0.0495,0.34,0.34,0,0,0.78,0.78,0.78,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0406,1,0.203,0.00507,0.203,0.203,0.018,0.018,0.23,0.23,1,1 +1,0.0495,0.34,0.34,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0203,1,0.168,0.00507,0.168,0.168,0.018,0.018,0.19,0.19,1,1 +1,0.0495,0.331,0.331,0,0,0.74,0.74,0.74,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0158,1,0.133,0.0101,0.133,0.133,0.024,0.024,0.23,0.23,1,1 +1,0.0495,0.304,0.304,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0248,1,0.141,0.0355,0.141,0.141,0.0479,0.0479,0.372,0.373,1,1 +1,0.0495,0.331,0.331,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0.00486,0,0.00486,0.258,0.465,0.0406,1,0.159,0.0609,0.159,0.159,0.0898,0.0898,0.531,0.532,1,1 +1,0.22,0.396,0.396,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0.064,0,0.064,0.35,0.459,0.0655,1,0.23,0.147,0.23,0.23,0.156,0.156,0.452,0.452,0.333,1 +0.667,0.162,0.432,0.432,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0.0311,0,0.0311,0.316,0.483,0.0903,1,0.292,0.233,0.292,0.292,0.263,0.263,0.19,0.19,0.333,1 +0.667,0.16,0.313,0.313,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0.0232,0,0.0232,0.276,0.487,0.111,1,0.292,0.223,0.292,0.292,0.503,0.503,0.19,0.19,0.333,1 +0.333,0.0495,0.212,0.212,0,0,0.82,0.82,0.82,0,0,0.00643,0,0,0,0,0,0,0,0.258,0.465,0.131,1,0.283,0.208,0.283,0.283,0.725,0.725,0.151,0.151,0.333,1 +0.333,0.15,0.221,0.221,0,0,0.8,0.8,0.8,0,0,0.0354,0.0112,0,0,0,0,0.017,0.017,0.245,0.487,0.147,1,0.292,0.223,0.292,0.292,0.761,0.761,0.119,0.119,0,1 +0.333,0.145,0.23,0.23,0,0.0122,0.8,0.8,0.8,0,0,0,0.00982,0.147,0.147,0,0,0.0199,0.0199,0.248,0.491,0.163,1,0.292,0.233,0.292,0.292,0.725,0.725,0.111,0.111,0,1 +0.333,0.141,0.221,0.221,0,0.0609,0.84,0.84,0.84,0,0,0,0,0.312,0.312,0,0,0,0,0.245,0.495,0.172,1,0.283,0.213,0.283,0.283,0.719,0.719,0.111,0.111,0,1 +0.333,0.14,0.258,0.258,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0.00852,0.00852,0.258,0.495,0.194,1,0.283,0.193,0.283,0.283,0.539,0.539,0.111,0.111,0,1 +0.333,0.14,0.285,0.285,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0,0,0.267,0.491,0.205,1,0.283,0.249,0.283,0.283,0.449,0.449,0.19,0.19,0,1 +0.333,0.14,0.294,0.294,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0.00852,0.00852,0.27,0.499,0.23,1,0.292,0.299,0.292,0.292,0.365,0.365,0.46,0.46,0,1 +0.333,0.141,0.359,0.359,0,0,0.88,0.88,0.88,0,0,0,0,0,0,0,0,0.0114,0.0114,0.291,0.507,0.287,1,0.398,0.558,0.398,0.398,0.222,0.222,0.998,1,0,1 +1,0.338,0.488,0.488,0,0,0.96,0.96,0.96,0,0,0,0,0,0,0,0,0,0,0.488,0.641,0.352,1,0.504,0.817,0.504,0.504,0.138,0.138,0.967,0.968,0,1 +1,0.377,0.58,0.58,0,0,1,1,1,0,0,0,0,0,0,0,0,0.00284,0.00284,0.58,0.653,0.474,1,0.584,0.583,0.584,0.584,0.0779,0.0779,0.539,0.54,0,1 +0.667,0.324,0.616,0.616,0,0,0.96,0.96,0.96,0,0,0,0,0,0,0,0,0.0114,0.0114,0.497,0.566,0.664,1,0.672,0.355,0.672,0.672,0.0479,0.0479,0.483,0.484,0,1 +0.667,0.41,0.653,0.653,0,0,0.94,0.94,0.94,0,0,0,0,0,0,0,0.00246,0,0.00246,0.521,0.541,0.82,1,0.716,0.223,0.716,0.716,0.024,0.024,0.404,0.405,0,1 +1,0.72,0.635,0.635,0,0,0.92,0.92,0.92,0,0,0,0,0,0,0,0.0395,0.00284,0.0423,0.635,0.555,0.777,1,0.761,0.0964,0.761,0.761,0.018,0.018,0.341,0.341,0,1 +1,0.218,0.543,0.543,0,0,0.88,0.88,0.88,0,0,0,0,0,0,0,0.0186,0,0.0186,0.353,0.475,0.47,1,0.663,0.066,0.663,0.663,0.018,0.018,0.19,0.19,0.667,1 +1,0.116,0.46,0.46,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0.0158,0.00284,0.0186,0.325,0.458,0.203,1,0.575,0.0355,0.575,0.575,0.018,0.018,0.19,0.19,0.667,1 +1,0.0743,0.368,0.368,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0,0,0.294,0.454,0.0993,1,0.389,0.0203,0.389,0.389,0.018,0.018,0.19,0.19,0.667,1 +1,0.0578,0.34,0.34,0,0,0.78,0.78,0.78,0,0,0,0,0,0,0,0,0,0,0.285,0.446,0.0497,1,0.203,0.00507,0.203,0.203,0.018,0.018,0.23,0.23,0.667,1 +1,0.0495,0.34,0.34,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0,0,0,0.285,0.442,0.0271,1,0.168,0.00507,0.168,0.168,0.018,0.018,0.19,0.19,0.667,1 +1,0.0495,0.331,0.331,0,0,0.74,0.74,0.74,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0181,1,0.133,0.0101,0.133,0.133,0.024,0.024,0.23,0.23,1,1 +1,0.0495,0.304,0.304,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.465,0.0248,1,0.141,0.0355,0.141,0.141,0.0479,0.0479,0.372,0.373,1,1 +1,0.0763,0.331,0.331,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0.0192,0.0149,0.00284,0.037,0.282,0.446,0.0316,1,0.159,0.0609,0.159,0.159,0.0898,0.0898,0.531,0.532,0.667,1 +1,0.135,0.396,0.396,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0.0593,0,0.0593,0.304,0.462,0.0542,1,0.23,0.147,0.23,0.23,0.156,0.156,0.452,0.452,0.667,1 +1,0.162,0.432,0.432,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0.0107,0,0.0107,0.316,0.483,0.0971,1,0.292,0.233,0.292,0.292,0.263,0.263,0.19,0.19,0.667,1 +1,0.27,0.313,0.313,0,0.0366,0.82,0.82,0.82,0,0,0,0,0,0,0,0.0111,0,0.0111,0.294,0.508,0.16,1,0.292,0.223,0.292,0.292,0.503,0.503,0.19,0.19,0.333,1 +1,0.258,0.212,0.212,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0.0254,0.00284,0.0283,0.227,0.508,0.212,1,0.283,0.208,0.283,0.283,0.725,0.725,0.151,0.151,0.333,1 +1,0.351,0.221,0.221,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0.0595,0.0185,0,0.078,0.221,0.53,0.253,1,0.292,0.223,0.292,0.292,0.761,0.761,0.119,0.119,0,1 +0.667,0.24,0.23,0.23,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0.0204,0.00284,0.0233,0.239,0.517,0.278,1,0.292,0.233,0.292,0.292,0.725,0.725,0.111,0.111,0,1 +0.667,0.232,0.221,0.221,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0.00284,0.00284,0.233,0.525,0.298,1,0.283,0.213,0.283,0.283,0.719,0.719,0.111,0.111,0,1 +0.667,0.23,0.258,0.258,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.525,0.352,1,0.283,0.193,0.283,0.283,0.539,0.539,0.111,0.111,0,1 +0.333,0.14,0.285,0.285,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0,0,0.267,0.491,0.402,1,0.283,0.249,0.283,0.283,0.449,0.449,0.19,0.19,0,1 +0.667,0.23,0.294,0.294,0,0.0366,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0.00284,0.00284,0.282,0.533,0.443,1,0.292,0.299,0.292,0.292,0.365,0.365,0.46,0.46,0,1 +1,0.324,0.359,0.359,0,0,0.88,0.88,0.88,0,0,0,0,0,0,0,0,0.0114,0.0114,0.359,0.592,0.465,1,0.398,0.558,0.398,0.398,0.222,0.222,0.998,1,0,1 +1,0.338,0.488,0.488,0,0,0.96,0.96,0.96,0,0,0,0,0,0,0,0,0.00284,0.00284,0.488,0.641,0.481,1,0.504,0.817,0.504,0.504,0.138,0.138,0.967,0.968,0,1 +1,0.377,0.58,0.58,0,0,1,1,1,0,0,0,0,0,0,0,0,0.0142,0.0142,0.58,0.653,0.567,1,0.584,0.583,0.584,0.584,0.0779,0.0779,0.539,0.54,0,1 +1,0.461,0.616,0.616,0,0,0.96,0.96,0.96,0,0,0,0,0,0,0,0,0,0,0.616,0.616,0.745,1,0.672,0.355,0.672,0.672,0.0479,0.0479,0.483,0.484,0,1 +1,0.59,0.653,0.653,0,0,0.94,0.94,0.94,0,0,0,0,0,0,0,0,0.00568,0.00568,0.653,0.579,0.876,1,0.716,0.223,0.716,0.716,0.024,0.024,0.404,0.405,0,1 +1,0.72,0.635,0.635,0,0,0.92,0.92,0.92,0,0,0,0,0,0,0,0.00222,0.00284,0.00505,0.635,0.555,0.808,1,0.761,0.0964,0.761,0.761,0.018,0.018,0.341,0.341,0,1 +1,0.386,0.543,0.543,0,0,0.88,0.88,0.88,0,0,0,0,0,0,0,0.00887,0.00284,0.0117,0.448,0.484,0.51,1,0.663,0.066,0.663,0.663,0.018,0.018,0.19,0.19,0.333,1 +1,0.183,0.46,0.46,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0,0,0.393,0.451,0.233,1,0.575,0.0355,0.575,0.575,0.018,0.018,0.19,0.19,0.333,1 +1,0.0495,0.368,0.368,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.465,0.0993,1,0.389,0.0203,0.389,0.389,0.018,0.018,0.19,0.19,1,1 +1,0.0495,0.34,0.34,0,0,0.78,0.78,0.78,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0497,1,0.203,0.00507,0.203,0.203,0.018,0.018,0.23,0.23,1,1 +1,0.0495,0.34,0.34,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0271,1,0.168,0.00507,0.168,0.168,0.018,0.018,0.19,0.19,1,1 +1,0.0495,0.331,0.331,0,0,0.74,0.74,0.74,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0181,1,0.133,0.0101,0.133,0.133,0.024,0.024,0.23,0.23,1,1 +1,0.0495,0.304,0.304,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0248,1,0.141,0.0355,0.141,0.141,0.0479,0.0479,0.372,0.373,1,1 +1,0.0495,0.331,0.331,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0316,1,0.159,0.0609,0.159,0.159,0.0898,0.0898,0.531,0.532,1,1 +1,0.0495,0.396,0.396,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0.00268,0,0.00268,0.258,0.465,0.0542,1,0.23,0.147,0.23,0.23,0.156,0.156,0.452,0.452,1,1 +1,0.162,0.432,0.432,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0.0321,0,0.0321,0.316,0.483,0.0971,1,0.292,0.233,0.292,0.292,0.263,0.263,0.19,0.19,0.667,1 +1,0.27,0.313,0.313,0,0,0.82,0.82,0.82,0.0152,0.0891,0,0,0,0,0.174,0.042,0,0.216,0.294,0.508,0.16,1,0.292,0.223,0.292,0.292,0.503,0.503,0.19,0.19,0.333,1 +0.667,0.258,0.212,0.212,0,0,0.82,0.82,0.82,0,0.00637,0,0,0,0,0,0.0137,0,0.0137,0.227,0.508,0.212,1,0.283,0.208,0.283,0.283,0.725,0.725,0.151,0.151,0,1 +0.333,0.15,0.221,0.221,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0,0,0.245,0.487,0.253,1,0.292,0.223,0.292,0.292,0.761,0.761,0.119,0.119,0,1 +0.333,0.145,0.23,0.23,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0.0114,0.0114,0.248,0.491,0.278,1,0.292,0.233,0.292,0.292,0.725,0.725,0.111,0.111,0,1 +0.667,0.232,0.221,0.221,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0.00568,0.00568,0.233,0.525,0.298,1,0.283,0.213,0.283,0.283,0.719,0.719,0.111,0.111,0,1 +0.667,0.23,0.258,0.258,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0.00568,0.00568,0.258,0.525,0.352,1,0.283,0.193,0.283,0.283,0.539,0.539,0.111,0.111,0,1 +0.667,0.23,0.285,0.285,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0.0142,0.0142,0.276,0.517,0.402,1,0.283,0.249,0.283,0.283,0.449,0.449,0.19,0.19,0,1 +0.667,0.14,0.294,0.294,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0.00284,0.00284,0.27,0.499,0.443,1,0.292,0.299,0.292,0.292,0.365,0.365,0.46,0.46,0.333,1 +1,0.324,0.359,0.359,0,0.0366,0.88,0.88,0.88,0,0,0,0,0,0,0,0,0.00284,0.00284,0.359,0.592,0.465,1,0.398,0.558,0.398,0.398,0.222,0.222,0.998,1,0,1 +1,0.338,0.488,0.488,0,0,0.96,0.96,0.96,0,0,0,0,0,0,0,0,0.00568,0.00568,0.488,0.641,0.481,1,0.504,0.817,0.504,0.504,0.138,0.138,0.967,0.968,0,1 +1,0.377,0.58,0.58,0,0,1,1,1,0,0,0,0,0,0,0,0,0.017,0.017,0.58,0.653,0.567,1,0.584,0.583,0.584,0.584,0.0779,0.0779,0.539,0.54,0,1 +1,0.461,0.616,0.616,0,0,0.96,0.96,0.96,0,0,0,0,0,0,0,0.014,0.0199,0.0339,0.616,0.616,0.745,1,0.672,0.355,0.672,0.672,0.0479,0.0479,0.483,0.484,0,1 +1,0.41,0.653,0.653,0,0,0.94,0.94,0.94,0,0,0,0,0,0,0,0.0495,0.00284,0.0524,0.521,0.541,0.876,1,0.716,0.223,0.716,0.716,0.024,0.024,0.404,0.405,0.333,1 +1,0.496,0.635,0.635,0,0,0.92,0.92,0.92,0,0,0,0,0,0,0.1,0.0299,0.00852,0.139,0.509,0.525,0.808,1,0.761,0.0964,0.761,0.761,0.018,0.018,0.341,0.341,0.333,1 +1,0.386,0.543,0.543,0,0,0.88,0.88,0.88,0,0,0,0,0,0,0,0.0318,0,0.0318,0.448,0.484,0.51,1,0.663,0.066,0.663,0.663,0.018,0.018,0.19,0.19,0.333,1 +1,0.0495,0.46,0.46,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.233,1,0.575,0.0355,0.575,0.575,0.018,0.018,0.19,0.19,1,1 +1,0.0495,0.368,0.368,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0835,1,0.389,0.0203,0.389,0.389,0.018,0.018,0.19,0.19,1,1 +1,0.0495,0.34,0.34,0,0,0.78,0.78,0.78,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0406,1,0.203,0.00507,0.203,0.203,0.018,0.018,0.23,0.23,1,1 +1,0.0495,0.34,0.34,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0203,1,0.168,0.00507,0.168,0.168,0.018,0.018,0.19,0.19,1,1 +1,0.0495,0.331,0.331,0,0,0.74,0.74,0.74,0,0,0,0,0,0,0,0,0,0,0.282,0.438,0.0158,1,0.133,0.0101,0.133,0.133,0.024,0.024,0.23,0.23,0.667,1 +1,0.0495,0.304,0.304,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0248,1,0.141,0.0355,0.141,0.141,0.0479,0.0479,0.372,0.373,1,1 +1,0.0495,0.331,0.331,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0.0252,0,0.0252,0.258,0.465,0.0406,1,0.159,0.0609,0.159,0.159,0.0898,0.0898,0.531,0.532,1,1 +0.667,0.135,0.396,0.396,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0.0146,0,0.0146,0.304,0.462,0.0655,1,0.23,0.147,0.23,0.23,0.156,0.156,0.452,0.452,0.333,1 +0.333,0.0495,0.432,0.432,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0.00568,0.00568,0.258,0.465,0.0903,1,0.292,0.233,0.292,0.292,0.263,0.263,0.19,0.19,0.333,1 +0.333,0.0495,0.313,0.313,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.111,1,0.292,0.223,0.292,0.292,0.503,0.503,0.19,0.19,0.333,1 +0.333,0.154,0.212,0.212,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0,0,0.242,0.487,0.131,1,0.283,0.208,0.283,0.283,0.725,0.725,0.151,0.151,0,1 +0.667,0.25,0.221,0.221,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0,0,0.233,0.508,0.147,1,0.292,0.223,0.292,0.292,0.761,0.761,0.119,0.119,0,1 +0.333,0.145,0.23,0.23,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0,0,0.248,0.491,0.163,1,0.292,0.233,0.292,0.292,0.725,0.725,0.111,0.111,0,1 +0.333,0.141,0.221,0.221,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0,0,0.245,0.495,0.172,1,0.283,0.213,0.283,0.283,0.719,0.719,0.111,0.111,0,1 +0.333,0.14,0.258,0.258,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0.00852,0.00852,0.258,0.495,0.194,1,0.283,0.193,0.283,0.283,0.539,0.539,0.111,0.111,0,1 +0.333,0.14,0.285,0.285,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0,0,0.267,0.491,0.205,1,0.283,0.249,0.283,0.283,0.449,0.449,0.19,0.19,0,1 +0.667,0.23,0.294,0.294,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0.0199,0.0199,0.282,0.533,0.23,1,0.292,0.299,0.292,0.292,0.365,0.365,0.46,0.46,0,1 +1,0.324,0.359,0.359,0,0,0.88,0.88,0.88,0,0,0,0,0,0,0,0,0.00284,0.00284,0.359,0.592,0.287,1,0.398,0.558,0.398,0.398,0.222,0.222,0.998,1,0,1 +0.667,0.242,0.488,0.488,0,0.0731,0.96,0.96,0.96,0,0,0,0,0,0,0,0.00267,0.00568,0.00834,0.411,0.582,0.352,1,0.504,0.817,0.504,0.504,0.138,0.138,0.967,0.968,0,1 +1,0.377,0.58,0.58,0,0,1,1,1,0,0,0,0,0,0,0,0.016,0.00568,0.0217,0.58,0.653,0.474,1,0.584,0.583,0.584,0.584,0.0779,0.0779,0.539,0.54,0,1 +1,0.461,0.616,0.616,0,0,0.96,0.96,0.96,0,0,0,0,0,0,0,0,0.00568,0.00568,0.616,0.616,0.664,1,0.672,0.355,0.672,0.672,0.0479,0.0479,0.483,0.484,0,1 +0.667,0.41,0.653,0.653,0,0,0.94,0.94,0.94,0,0,0,0,0,0,0,0,0,0,0.521,0.541,0.82,1,0.716,0.223,0.716,0.716,0.024,0.024,0.404,0.405,0,1 +0.667,0.496,0.635,0.635,0,0,0.92,0.92,0.92,0,0,0,0,0,0,0,0.0125,0.0142,0.0267,0.509,0.525,0.777,1,0.761,0.0964,0.761,0.761,0.018,0.018,0.341,0.341,0,1 +1,0.218,0.543,0.543,0,0,0.88,0.88,0.88,0,0,0,0,0,0,0,0,0,0,0.353,0.475,0.47,1,0.663,0.066,0.663,0.663,0.018,0.018,0.19,0.19,0.667,1 +1,0.0495,0.46,0.46,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0.0142,0.0142,0.258,0.465,0.203,1,0.575,0.0355,0.575,0.575,0.018,0.018,0.19,0.19,1,1 +1,0.0495,0.368,0.368,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.465,0.0835,1,0.389,0.0203,0.389,0.389,0.018,0.018,0.19,0.19,1,1 +1,0.0495,0.34,0.34,0,0,0.78,0.78,0.78,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0406,1,0.203,0.00507,0.203,0.203,0.018,0.018,0.23,0.23,1,1 +1,0.0495,0.34,0.34,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0203,1,0.168,0.00507,0.168,0.168,0.018,0.018,0.19,0.19,1,1 +1,0.0495,0.331,0.331,0,0,0.74,0.74,0.74,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0158,1,0.133,0.0101,0.133,0.133,0.024,0.024,0.23,0.23,1,1 +1,0.0499,0.304,0.304,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0.0665,0.0308,0,0.0973,0.273,0.442,0.0248,1,0.141,0.0355,0.141,0.141,0.0479,0.0479,0.372,0.373,0.667,1 +1,0.103,0.331,0.331,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0.0179,0,0.0179,0.307,0.426,0.0406,1,0.159,0.0609,0.159,0.159,0.0898,0.0898,0.531,0.532,0.333,1 +1,0.22,0.396,0.396,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0.0116,0,0.0116,0.35,0.459,0.0655,1,0.23,0.147,0.23,0.23,0.156,0.156,0.452,0.452,0.333,1 +0.333,0.0495,0.432,0.432,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0903,1,0.292,0.233,0.292,0.292,0.263,0.263,0.19,0.19,0.333,1 +0.333,0.0495,0.313,0.313,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.465,0.111,1,0.292,0.223,0.292,0.292,0.503,0.503,0.19,0.19,0.333,1 +0.333,0.0495,0.212,0.212,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0.00852,0.00852,0.258,0.465,0.131,1,0.283,0.208,0.283,0.283,0.725,0.725,0.151,0.151,0.333,1 +0.333,0.0495,0.221,0.221,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0.00568,0.00568,0.258,0.465,0.147,1,0.292,0.223,0.292,0.292,0.761,0.761,0.119,0.119,0.333,1 +0.333,0.145,0.23,0.23,0,0.0853,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0,0,0.248,0.491,0.163,1,0.292,0.233,0.292,0.292,0.725,0.725,0.111,0.111,0,1 +0.333,0.141,0.221,0.221,0,0.0609,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0,0,0.245,0.495,0.172,1,0.283,0.213,0.283,0.283,0.719,0.719,0.111,0.111,0,1 +0.333,0.14,0.258,0.258,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0,0,0.258,0.495,0.194,1,0.283,0.193,0.283,0.283,0.539,0.539,0.111,0.111,0,1 +0.333,0.14,0.285,0.285,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0,0,0.267,0.491,0.205,1,0.283,0.249,0.283,0.283,0.449,0.449,0.19,0.19,0,1 +0.333,0.14,0.294,0.294,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0,0,0.27,0.499,0.23,1,0.292,0.299,0.292,0.292,0.365,0.365,0.46,0.46,0,1 +0.333,0.141,0.359,0.359,0,0,0.88,0.88,0.88,0,0,0,0,0,0,0,0,0,0,0.291,0.507,0.287,1,0.398,0.558,0.398,0.398,0.222,0.222,0.998,1,0,1 +0.667,0.242,0.488,0.488,0,0.0487,0.96,0.96,0.96,0,0,0,0,0,0,0,0,0.00284,0.00284,0.411,0.582,0.352,1,0.504,0.817,0.504,0.504,0.138,0.138,0.967,0.968,0,1 +1,0.377,0.58,0.58,0,0.0244,1,1,1,0,0,0,0,0,0,0,0,0.0114,0.0114,0.58,0.653,0.474,1,0.584,0.583,0.584,0.584,0.0779,0.0779,0.539,0.54,0,1 +1,0.461,0.616,0.616,0,0,0.96,0.96,0.96,0.0226,0.0478,0,0,0,0,0,0,0.00568,0.00568,0.616,0.616,0.664,1,0.672,0.355,0.672,0.672,0.0479,0.0479,0.483,0.484,0,1 +1,0.23,0.653,0.653,0,0,0.94,0.94,0.94,0.0096,0,0,0,0,0,0,0,0.00568,0.00568,0.39,0.503,0.82,1,0.716,0.223,0.716,0.716,0.024,0.024,0.404,0.405,0.667,1 +1,0.0495,0.635,0.635,0,0,0.92,0.92,0.92,0,0,0,0,0,0,0,0,0.00568,0.00568,0.258,0.465,0.777,1,0.761,0.0964,0.761,0.761,0.018,0.018,0.341,0.341,1,1 +1,0.0495,0.543,0.543,0,0,0.88,0.88,0.88,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.47,1,0.663,0.066,0.663,0.663,0.018,0.018,0.19,0.19,1,1 +0.667,0.0495,0.46,0.46,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.465,0.203,1,0.575,0.0355,0.575,0.575,0.018,0.018,0.19,0.19,0.667,1 +0.667,0.0495,0.368,0.368,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0835,1,0.389,0.0203,0.389,0.389,0.018,0.018,0.19,0.19,0.667,1 +1,0.0495,0.34,0.34,0,0,0.78,0.78,0.78,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0406,1,0.203,0.00507,0.203,0.203,0.018,0.018,0.23,0.23,1,1 +1,0.0495,0.34,0.34,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0203,1,0.168,0.00507,0.168,0.168,0.018,0.018,0.19,0.19,1,1 +1,0.0495,0.331,0.331,0,0,0.74,0.74,0.74,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0158,1,0.133,0.0101,0.133,0.133,0.024,0.024,0.23,0.23,1,1 +1,0.0495,0.304,0.304,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0248,1,0.141,0.0355,0.141,0.141,0.0479,0.0479,0.372,0.373,1,1 +1,0.0495,0.331,0.331,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0.00268,0,0.00268,0.258,0.465,0.0406,1,0.159,0.0609,0.159,0.159,0.0898,0.0898,0.531,0.532,1,1 +1,0.135,0.396,0.396,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0.0132,0,0.0132,0.304,0.462,0.0655,1,0.23,0.147,0.23,0.23,0.156,0.156,0.452,0.452,0.667,1 +1,0.162,0.432,0.432,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0.0247,0,0.0247,0.316,0.483,0.0903,1,0.292,0.233,0.292,0.292,0.263,0.263,0.19,0.19,0.667,1 +0.667,0.16,0.313,0.313,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0.0138,0,0.0138,0.276,0.487,0.111,1,0.292,0.223,0.292,0.292,0.503,0.503,0.19,0.19,0.333,1 +0.333,0.154,0.212,0.212,0,0.0366,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0,0,0.242,0.487,0.131,1,0.283,0.208,0.283,0.283,0.725,0.725,0.151,0.151,0,1 +0.333,0.15,0.221,0.221,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0,0,0.245,0.487,0.147,1,0.292,0.223,0.292,0.292,0.761,0.761,0.119,0.119,0,1 +0.333,0.145,0.23,0.23,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0.0114,0.0114,0.248,0.491,0.163,1,0.292,0.233,0.292,0.292,0.725,0.725,0.111,0.111,0,1 +0.333,0.141,0.221,0.221,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0.017,0.017,0.245,0.495,0.172,1,0.283,0.213,0.283,0.283,0.719,0.719,0.111,0.111,0,1 +0.333,0.14,0.258,0.258,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0,0,0.258,0.495,0.194,1,0.283,0.193,0.283,0.283,0.539,0.539,0.111,0.111,0,1 +0.333,0.14,0.285,0.285,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0.00284,0.00284,0.267,0.491,0.205,1,0.283,0.249,0.283,0.283,0.449,0.449,0.19,0.19,0,1 +0.333,0.14,0.294,0.294,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0.00568,0.00568,0.27,0.499,0.23,1,0.292,0.299,0.292,0.292,0.365,0.365,0.46,0.46,0,1 +0.333,0.141,0.359,0.359,0,0,0.88,0.88,0.88,0,0,0,0,0,0,0,0,0,0,0.291,0.507,0.287,1,0.398,0.558,0.398,0.398,0.222,0.222,0.998,1,0,1 +0.333,0.146,0.488,0.488,0,0,0.96,0.96,0.96,0,0,0,0,0,0,0,0,0.00284,0.00284,0.334,0.524,0.352,1,0.504,0.817,0.504,0.504,0.138,0.138,0.967,0.968,0,1 +0.667,0.268,0.58,0.58,0,0.0853,1,1,1,0,0,0,0,0,0,0,0.0358,0.0114,0.0471,0.472,0.591,0.474,1,0.584,0.583,0.584,0.584,0.0779,0.0779,0.539,0.54,0,1 +1,0.461,0.616,0.616,0,0.0244,0.96,0.96,0.96,0,0,0,0,0,0,0,0.015,0.0114,0.0264,0.616,0.616,0.664,1,0.672,0.355,0.672,0.672,0.0479,0.0479,0.483,0.484,0,1 +1,0.59,0.653,0.653,0,0,0.94,0.94,0.94,0,0,0,0,0,0,0,0.0108,0.00852,0.0193,0.653,0.579,0.82,1,0.716,0.223,0.716,0.716,0.024,0.024,0.404,0.405,0,1 +1,0.72,0.635,0.635,0,0,0.92,0.92,0.92,0,0,0,0,0,0,0,0.00275,0,0.00275,0.635,0.555,0.777,1,0.761,0.0964,0.761,0.761,0.018,0.018,0.341,0.341,0,1 +1,0.386,0.543,0.543,0,0,0.88,0.88,0.88,0,0,0,0,0,0,0,0.0138,0,0.0138,0.448,0.484,0.47,1,0.663,0.066,0.663,0.663,0.018,0.018,0.19,0.19,0.333,1 +1,0.0495,0.46,0.46,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.465,0.203,1,0.575,0.0355,0.575,0.575,0.018,0.018,0.19,0.19,1,1 +1,0.0495,0.368,0.368,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0835,1,0.389,0.0203,0.389,0.389,0.018,0.018,0.19,0.19,1,1 +1,0.0495,0.34,0.34,0,0,0.78,0.78,0.78,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0406,1,0.203,0.00507,0.203,0.203,0.018,0.018,0.23,0.23,1,1 +1,0.0495,0.34,0.34,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0203,1,0.168,0.00507,0.168,0.168,0.018,0.018,0.19,0.19,1,1 +1,0.0495,0.331,0.331,0,0,0.74,0.74,0.74,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0158,1,0.133,0.0101,0.133,0.133,0.024,0.024,0.23,0.23,1,1 +0.667,0.0495,0.304,0.304,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0248,1,0.141,0.0355,0.141,0.141,0.0479,0.0479,0.372,0.373,0.667,1 +0.667,0.0495,0.331,0.331,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0.0334,0,0.0334,0.258,0.465,0.0406,1,0.159,0.0609,0.159,0.159,0.0898,0.0898,0.531,0.532,0.667,1 +0.667,0.135,0.396,0.396,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0.0292,0,0.0292,0.304,0.462,0.0655,1,0.23,0.147,0.23,0.23,0.156,0.156,0.452,0.452,0.333,1 +0.333,0.0495,0.432,0.432,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0903,1,0.292,0.233,0.292,0.292,0.263,0.263,0.19,0.19,0.333,1 +0.333,0.0495,0.313,0.313,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.111,1,0.292,0.223,0.292,0.292,0.503,0.503,0.19,0.19,0.333,1 +0.333,0.0495,0.212,0.212,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0.0104,0.00568,0.0161,0.258,0.465,0.131,1,0.283,0.208,0.283,0.283,0.725,0.725,0.151,0.151,0.333,1 +0,0.0495,0.221,0.221,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.147,1,0.292,0.223,0.292,0.292,0.761,0.761,0.119,0.119,0,1 +0,0.0495,0.23,0.23,0,0.0122,0.8,0.8,0.8,0,0,0,0,0,0,0,0.0389,0,0.0389,0.258,0.465,0.163,1,0.292,0.233,0.292,0.292,0.725,0.725,0.111,0.111,0,1 +0.667,0.232,0.221,0.221,0,0.0244,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0,0,0.233,0.525,0.172,1,0.283,0.213,0.283,0.283,0.719,0.719,0.111,0.111,0,1 +0.333,0.14,0.258,0.258,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0,0,0.258,0.495,0.194,1,0.283,0.193,0.283,0.283,0.539,0.539,0.111,0.111,0,1 +0.333,0.14,0.285,0.285,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0,0,0.267,0.491,0.205,1,0.283,0.249,0.283,0.283,0.449,0.449,0.19,0.19,0,1 +0.667,0.23,0.294,0.294,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0,0,0.282,0.533,0.23,1,0.292,0.299,0.292,0.292,0.365,0.365,0.46,0.46,0,1 +0.333,0.141,0.359,0.359,0,0,0.88,0.88,0.88,0,0,0,0,0,0,0,0,0,0,0.291,0.507,0.287,1,0.398,0.558,0.398,0.398,0.222,0.222,0.998,1,0,1 +0.333,0.146,0.488,0.488,0,0.0122,0.96,0.96,0.96,0,0,0,0,0,0,0,0,0.0199,0.0199,0.334,0.524,0.352,1,0.504,0.817,0.504,0.504,0.138,0.138,0.967,0.968,0,1 +1,0.377,0.58,0.58,0,0.0244,1,1,1,0,0,0,0,0,0,0,0,0.00568,0.00568,0.58,0.653,0.474,1,0.584,0.583,0.584,0.584,0.0779,0.0779,0.539,0.54,0,1 +1,0.461,0.616,0.616,0,0,0.96,0.96,0.96,0,0,0,0,0,0,0.0574,0.0293,0.0199,0.107,0.616,0.616,0.664,1,0.672,0.355,0.672,0.672,0.0479,0.0479,0.483,0.484,0,1 +0.667,0.41,0.653,0.653,0,0,0.94,0.94,0.94,0.00848,0.0414,0,0,0,0,0,0.0162,0,0.0162,0.521,0.541,0.82,1,0.716,0.223,0.716,0.716,0.024,0.024,0.404,0.405,0,1 +0.667,0.496,0.635,0.635,0,0,0.92,0.92,0.92,0.0073,0.00637,0,0,0,0,0,0.00984,0.0142,0.024,0.509,0.525,0.777,1,0.761,0.0964,0.761,0.761,0.018,0.018,0.341,0.341,0,1 +1,0.386,0.543,0.543,0,0,0.88,0.88,0.88,0,0,0,0,0,0,0,0,0.00284,0.00284,0.448,0.484,0.47,1,0.663,0.066,0.663,0.663,0.018,0.018,0.19,0.19,0.333,1 +1,0.0495,0.46,0.46,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0.00568,0.00568,0.258,0.465,0.203,1,0.575,0.0355,0.575,0.575,0.018,0.018,0.19,0.19,1,1 +1,0.0495,0.368,0.368,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0835,1,0.389,0.0203,0.389,0.389,0.018,0.018,0.19,0.19,1,1 +1,0.0495,0.34,0.34,0,0,0.78,0.78,0.78,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0406,1,0.203,0.00507,0.203,0.203,0.018,0.018,0.23,0.23,1,1 +1,0.0495,0.34,0.34,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0203,1,0.168,0.00507,0.168,0.168,0.018,0.018,0.19,0.19,1,1 +1,0.0495,0.331,0.331,0,0,0.74,0.74,0.74,0,0,0.00702,0,0,0,0,0,0,0,0.258,0.465,0.0158,1,0.133,0.0101,0.133,0.133,0.024,0.024,0.23,0.23,1,1 +1,0.0495,0.304,0.304,0,0,0.72,0.72,0.72,0,0,0.0429,0.0112,0,0,0,0,0,0,0.258,0.465,0.0248,1,0.141,0.0355,0.141,0.141,0.0479,0.0479,0.372,0.373,1,1 +1,0.0763,0.331,0.331,0,0,0.72,0.72,0.72,0,0,0.0264,0.00456,0.0917,0.0917,0,0,0,0,0.282,0.446,0.0406,1,0.159,0.0609,0.159,0.159,0.0898,0.0898,0.531,0.532,0.667,1 +1,0.135,0.396,0.396,0,0,0.76,0.76,0.76,0,0,0.0304,0,0,0,0,0.0232,0,0.0232,0.304,0.462,0.0655,1,0.23,0.147,0.23,0.23,0.156,0.156,0.452,0.452,0.667,1 +1,0.274,0.432,0.432,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0.0208,0,0.0208,0.374,0.5,0.0903,1,0.292,0.233,0.292,0.292,0.263,0.263,0.19,0.19,0.333,1 +0.667,0.16,0.313,0.313,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0.0354,0.0142,0.0496,0.276,0.487,0.111,1,0.292,0.223,0.292,0.292,0.503,0.503,0.19,0.19,0.333,1 +0.667,0.258,0.212,0.212,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0.0231,0,0.0231,0.227,0.508,0.131,1,0.283,0.208,0.283,0.283,0.725,0.725,0.151,0.151,0,1 +0.667,0.25,0.221,0.221,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0.00284,0.00284,0.233,0.508,0.147,1,0.292,0.223,0.292,0.292,0.761,0.761,0.119,0.119,0,1 +0.333,0.145,0.23,0.23,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0.00284,0.00284,0.248,0.491,0.163,1,0.292,0.233,0.292,0.292,0.725,0.725,0.111,0.111,0,1 +0.333,0.141,0.221,0.221,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0,0,0.245,0.495,0.172,1,0.283,0.213,0.283,0.283,0.719,0.719,0.111,0.111,0,1 +0.333,0.14,0.258,0.258,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0.0227,0.0227,0.258,0.495,0.194,1,0.283,0.193,0.283,0.283,0.539,0.539,0.111,0.111,0,1 +0.333,0.14,0.285,0.285,0,0,0.84,0.84,0.84,0,0,0.0446,0.00596,0,0,0,0,0,0,0.267,0.491,0.205,1,0.283,0.249,0.283,0.283,0.449,0.449,0.19,0.19,0,1 +0.667,0.23,0.294,0.294,0,0,0.82,0.82,0.82,0,0,0,0.00982,0.147,0.147,0,0,0.00852,0.00852,0.282,0.533,0.23,1,0.292,0.299,0.292,0.292,0.365,0.365,0.46,0.46,0,1 +1,0.324,0.359,0.359,0,0,0.88,0.88,0.88,0,0,0,0,0.22,0.22,0,0,0,0,0.359,0.592,0.287,1,0.398,0.558,0.398,0.398,0.222,0.222,0.998,1,0,1 +1,0.338,0.488,0.488,0,0.0731,0.96,0.96,0.96,0,0,0,0,0,0,0,0,0.00284,0.00284,0.488,0.641,0.352,1,0.504,0.817,0.504,0.504,0.138,0.138,0.967,0.968,0,1 +1,0.377,0.58,0.58,0,0,1,1,1,0,0,0,0,0,0,0,0.0166,0,0.0166,0.58,0.653,0.474,1,0.584,0.583,0.584,0.584,0.0779,0.0779,0.539,0.54,0,1 +1,0.461,0.616,0.616,0,0,0.96,0.96,0.96,0,0,0,0,0,0,0,0.00947,0.0227,0.0322,0.616,0.616,0.664,1,0.672,0.355,0.672,0.672,0.0479,0.0479,0.483,0.484,0,1 +1,0.59,0.653,0.653,0,0,0.94,0.94,0.94,0,0,0,0,0,0,0,0.0297,0,0.0297,0.653,0.579,0.82,1,0.716,0.223,0.716,0.716,0.024,0.024,0.404,0.405,0,1 +1,0.496,0.635,0.635,0,0,0.92,0.92,0.92,0,0,0,0,0,0,0,0.00268,0,0.00268,0.509,0.525,0.777,1,0.761,0.0964,0.761,0.761,0.018,0.018,0.341,0.341,0.333,1 +1,0.218,0.543,0.543,0,0,0.88,0.88,0.88,0,0,0,0,0,0,0,0.0541,0.00284,0.0569,0.353,0.475,0.47,1,0.663,0.066,0.663,0.663,0.018,0.018,0.19,0.19,0.667,1 +1,0.0495,0.46,0.46,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.465,0.203,1,0.575,0.0355,0.575,0.575,0.018,0.018,0.19,0.19,1,1 +1,0.0495,0.368,0.368,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0993,1,0.389,0.0203,0.389,0.389,0.018,0.018,0.19,0.19,1,1 +1,0.0495,0.34,0.34,0,0,0.78,0.78,0.78,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0497,1,0.203,0.00507,0.203,0.203,0.018,0.018,0.23,0.23,1,1 +1,0.0495,0.34,0.34,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.465,0.0271,1,0.168,0.00507,0.168,0.168,0.018,0.018,0.19,0.19,1,1 +1,0.0495,0.331,0.331,0,0,0.74,0.74,0.74,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0181,1,0.133,0.0101,0.133,0.133,0.024,0.024,0.23,0.23,1,1 +1,0.0495,0.304,0.304,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0248,1,0.141,0.0355,0.141,0.141,0.0479,0.0479,0.372,0.373,1,1 +1,0.0495,0.331,0.331,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0316,1,0.159,0.0609,0.159,0.159,0.0898,0.0898,0.531,0.532,1,1 +1,0.0495,0.396,0.396,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0542,1,0.23,0.147,0.23,0.23,0.156,0.156,0.452,0.452,1,1 +1,0.0495,0.432,0.432,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0971,1,0.292,0.233,0.292,0.292,0.263,0.263,0.19,0.19,1,1 +1,0.27,0.313,0.313,0,0.0853,0.82,0.82,0.82,0,0,0.00136,0,0,0,0,0,0,0,0.294,0.508,0.16,1,0.292,0.223,0.292,0.292,0.503,0.503,0.19,0.19,0.333,1 +1,0.258,0.212,0.212,0,0.0244,0.82,0.82,0.82,0,0,0.0382,0.0112,0,0,0,0,0,0,0.227,0.508,0.212,1,0.283,0.208,0.283,0.283,0.725,0.725,0.151,0.151,0.333,1 +0.667,0.25,0.221,0.221,0,0,0.8,0.8,0.8,0,0,0.0264,0.00456,0.238,0.238,0,0,0,0,0.233,0.508,0.253,1,0.292,0.223,0.292,0.292,0.761,0.761,0.119,0.119,0,1 +0.667,0.24,0.23,0.23,0,0,0.8,0.8,0.8,0,0,0.0214,0,0.128,0.128,0,0,0,0,0.239,0.517,0.278,1,0.292,0.233,0.292,0.292,0.725,0.725,0.111,0.111,0,1 +0.667,0.232,0.221,0.221,0,0,0.84,0.84,0.84,0.00264,0.0175,0,0,0,0,0,0,0,0,0.233,0.525,0.298,1,0.283,0.213,0.283,0.283,0.719,0.719,0.111,0.111,0,1 +0.333,0.14,0.258,0.258,0,0,0.84,0.84,0.84,0.0233,0.0302,0,0,0,0,0,0,0,0,0.258,0.495,0.352,1,0.283,0.193,0.283,0.283,0.539,0.539,0.111,0.111,0,1 +0.667,0.23,0.285,0.285,0,0,0.84,0.84,0.84,0.0211,0,0.0214,0,0,0,0,0,0,0,0.276,0.517,0.402,1,0.283,0.249,0.283,0.283,0.449,0.449,0.19,0.19,0,1 +0.667,0.23,0.294,0.294,0,0,0.82,0.82,0.82,0.00548,0,0.031,0.0158,0,0,0,0,0.00284,0.00284,0.282,0.533,0.443,1,0.292,0.299,0.292,0.292,0.365,0.365,0.46,0.46,0,1 +1,0.324,0.359,0.359,0,0,0.88,0.88,0.88,0,0,0.0175,0,0.33,0.33,0,0,0.0142,0.0142,0.359,0.592,0.465,1,0.398,0.558,0.398,0.398,0.222,0.222,0.998,1,0,1 +1,0.338,0.488,0.488,0,0,0.96,0.96,0.96,0,0,0,0,0.128,0.128,0,0,0.00852,0.00852,0.488,0.641,0.481,1,0.504,0.817,0.504,0.504,0.138,0.138,0.967,0.968,0,1 +1,0.377,0.58,0.58,0,0,1,1,1,0,0,0,0,0,0,0,0.0145,0.00568,0.0202,0.58,0.653,0.567,1,0.584,0.583,0.584,0.584,0.0779,0.0779,0.539,0.54,0,1 +1,0.461,0.616,0.616,0,0,0.96,0.96,0.96,0,0,0,0,0,0,0,0.0109,0.0114,0.0223,0.616,0.616,0.745,1,0.672,0.355,0.672,0.672,0.0479,0.0479,0.483,0.484,0,1 +0.667,0.41,0.653,0.653,0,0,0.94,0.94,0.94,0,0,0,0,0,0,0,0.0545,0.00284,0.0573,0.521,0.541,0.876,1,0.716,0.223,0.716,0.716,0.024,0.024,0.404,0.405,0,1 +1,0.72,0.635,0.635,0,0,0.92,0.92,0.92,0,0,0,0,0,0,0,0.0253,0.00852,0.0339,0.635,0.555,0.808,1,0.761,0.0964,0.761,0.761,0.018,0.018,0.341,0.341,0,1 +1,0.386,0.543,0.543,0,0,0.88,0.88,0.88,0,0,0,0,0,0,0,0,0.00284,0.00284,0.448,0.484,0.51,1,0.663,0.066,0.663,0.663,0.018,0.018,0.19,0.19,0.333,1 +1,0.183,0.46,0.46,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0.00284,0.00284,0.393,0.451,0.233,1,0.575,0.0355,0.575,0.575,0.018,0.018,0.19,0.19,0.333,1 +1,0.0743,0.368,0.368,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0.00284,0.00284,0.294,0.454,0.0993,1,0.389,0.0203,0.389,0.389,0.018,0.018,0.19,0.19,0.667,1 +1,0.0578,0.34,0.34,0,0,0.78,0.78,0.78,0,0,0,0,0,0,0,0,0,0,0.285,0.446,0.0497,1,0.203,0.00507,0.203,0.203,0.018,0.018,0.23,0.23,0.667,1 +1,0.0495,0.34,0.34,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0,0,0,0.285,0.442,0.0271,1,0.168,0.00507,0.168,0.168,0.018,0.018,0.19,0.19,0.667,1 +1,0.0495,0.331,0.331,0,0,0.74,0.74,0.74,0,0,0,0,0,0,0,0,0,0,0.282,0.438,0.0181,1,0.133,0.0101,0.133,0.133,0.024,0.024,0.23,0.23,0.667,1 +1,0.0495,0.304,0.304,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0248,1,0.141,0.0355,0.141,0.141,0.0479,0.0479,0.372,0.373,1,1 +1,0.0495,0.331,0.331,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0316,1,0.159,0.0609,0.159,0.159,0.0898,0.0898,0.531,0.532,1,1 +1,0.0495,0.396,0.396,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0542,1,0.23,0.147,0.23,0.23,0.156,0.156,0.452,0.452,1,1 +1,0.0495,0.432,0.432,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0971,1,0.292,0.233,0.292,0.292,0.263,0.263,0.19,0.19,1,1 +1,0.0495,0.313,0.313,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0.0326,0,0.0326,0.258,0.465,0.16,1,0.292,0.223,0.292,0.292,0.503,0.503,0.19,0.19,1,1 +1,0.258,0.212,0.212,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0.0328,0,0.0328,0.227,0.508,0.212,1,0.283,0.208,0.283,0.283,0.725,0.725,0.151,0.151,0.333,1 +1,0.351,0.221,0.221,0,0.0731,0.8,0.8,0.8,0,0,0,0,0,0,0,0.0214,0,0.0214,0.221,0.53,0.253,1,0.292,0.223,0.292,0.292,0.761,0.761,0.119,0.119,0,1 +0.667,0.24,0.23,0.23,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0,0,0.239,0.517,0.278,1,0.292,0.233,0.292,0.292,0.725,0.725,0.111,0.111,0,1 +0.333,0.141,0.221,0.221,0,0.0366,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0,0,0.245,0.495,0.298,1,0.283,0.213,0.283,0.283,0.719,0.719,0.111,0.111,0,1 +1,0.32,0.258,0.258,0,0,0.84,0.84,0.84,0,0,0.0432,0.00596,0,0,0,0,0.0114,0.0114,0.258,0.555,0.352,1,0.283,0.193,0.283,0.283,0.539,0.539,0.111,0.111,0,1 +1,0.32,0.285,0.285,0,0,0.84,0.84,0.84,0,0,0.0278,0.00982,0.147,0.147,0,0,0,0,0.285,0.542,0.402,1,0.283,0.249,0.283,0.283,0.449,0.449,0.19,0.19,0,1 +1,0.321,0.294,0.294,0,0,0.82,0.82,0.82,0,0,0.0151,0,0.367,0.367,0,0,0.0114,0.0114,0.294,0.567,0.443,1,0.292,0.299,0.292,0.292,0.365,0.365,0.46,0.46,0,1 +1,0.324,0.359,0.359,0,0,0.88,0.88,0.88,0,0,0,0,0.22,0.22,0,0,0,0,0.359,0.592,0.465,1,0.398,0.558,0.398,0.398,0.222,0.222,0.998,1,0,1 +1,0.338,0.488,0.488,0,0.0731,0.96,0.96,0.96,0,0,0,0,0,0,0,0,0.0199,0.0199,0.488,0.641,0.481,1,0.504,0.817,0.504,0.504,0.138,0.138,0.967,0.968,0,1 +1,0.377,0.58,0.58,0,0,1,1,1,0,0,0,0,0,0,0,0,0.0142,0.0142,0.58,0.653,0.567,1,0.584,0.583,0.584,0.584,0.0779,0.0779,0.539,0.54,0,1 +0.667,0.324,0.616,0.616,0,0,0.96,0.96,0.96,0,0,0,0,0,0,0,0,0.0199,0.0199,0.497,0.566,0.745,1,0.672,0.355,0.672,0.672,0.0479,0.0479,0.483,0.484,0,1 +0.667,0.41,0.653,0.653,0,0,0.94,0.94,0.94,0,0,0,0,0,0,0,0,0,0,0.521,0.541,0.876,1,0.716,0.223,0.716,0.716,0.024,0.024,0.404,0.405,0,1 +0.667,0.273,0.635,0.635,0,0,0.92,0.92,0.92,0,0,0,0,0,0,0,0,0.0114,0.0114,0.383,0.495,0.808,1,0.761,0.0964,0.761,0.761,0.018,0.018,0.341,0.341,0.333,1 +0.667,0.218,0.543,0.543,0,0,0.88,0.88,0.88,0,0,0,0,0,0,0,0,0.0142,0.0142,0.353,0.475,0.51,1,0.663,0.066,0.663,0.663,0.018,0.018,0.19,0.19,0.333,1 +1,0.116,0.46,0.46,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0.017,0.017,0.325,0.458,0.233,1,0.575,0.0355,0.575,0.575,0.018,0.018,0.19,0.19,0.667,1 +1,0.0743,0.368,0.368,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0,0,0.294,0.454,0.0835,1,0.389,0.0203,0.389,0.389,0.018,0.018,0.19,0.19,0.667,1 +1,0.0578,0.34,0.34,0,0,0.78,0.78,0.78,0,0,0,0,0,0,0,0,0,0,0.285,0.446,0.0406,1,0.203,0.00507,0.203,0.203,0.018,0.018,0.23,0.23,0.667,1 +1,0.0495,0.34,0.34,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0,0,0,0.285,0.442,0.0203,1,0.168,0.00507,0.168,0.168,0.018,0.018,0.19,0.19,0.667,1 +1,0.0495,0.331,0.331,0,0,0.74,0.74,0.74,0,0,0,0,0,0,0,0,0,0,0.282,0.438,0.0158,1,0.133,0.0101,0.133,0.133,0.024,0.024,0.23,0.23,0.667,1 +1,0.0499,0.304,0.304,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0,0,0,0.273,0.442,0.0248,1,0.141,0.0355,0.141,0.141,0.0479,0.0479,0.372,0.373,0.667,1 +0.667,0.0495,0.331,0.331,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0.00268,0,0.00268,0.258,0.465,0.0406,1,0.159,0.0609,0.159,0.159,0.0898,0.0898,0.531,0.532,0.667,1 +0.667,0.135,0.396,0.396,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0.0801,0.0142,0.0943,0.304,0.462,0.0655,1,0.23,0.147,0.23,0.23,0.156,0.156,0.452,0.452,0.333,1 +0.667,0.274,0.432,0.432,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0.0201,0.0114,0.0314,0.374,0.5,0.0903,1,0.292,0.233,0.292,0.292,0.263,0.263,0.19,0.19,0,1 +0.333,0.16,0.313,0.313,0,0.0366,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0,0,0.276,0.487,0.111,1,0.292,0.223,0.292,0.292,0.503,0.503,0.19,0.19,0,1 +0.333,0.154,0.212,0.212,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0,0,0.242,0.487,0.131,1,0.283,0.208,0.283,0.283,0.725,0.725,0.151,0.151,0,1 +0.333,0.15,0.221,0.221,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0.0114,0.0114,0.245,0.487,0.147,1,0.292,0.223,0.292,0.292,0.761,0.761,0.119,0.119,0,1 +0.333,0.145,0.23,0.23,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0.0142,0.0142,0.248,0.491,0.163,1,0.292,0.233,0.292,0.292,0.725,0.725,0.111,0.111,0,1 +0.333,0.141,0.221,0.221,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0.00284,0.00284,0.245,0.495,0.172,1,0.283,0.213,0.283,0.283,0.719,0.719,0.111,0.111,0,1 +0.333,0.14,0.258,0.258,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0.0142,0.0142,0.258,0.495,0.194,1,0.283,0.193,0.283,0.283,0.539,0.539,0.111,0.111,0,1 +0.333,0.14,0.285,0.285,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0.00568,0.00568,0.267,0.491,0.205,1,0.283,0.249,0.283,0.283,0.449,0.449,0.19,0.19,0,1 +0.333,0.14,0.294,0.294,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0.00284,0.00284,0.27,0.499,0.23,1,0.292,0.299,0.292,0.292,0.365,0.365,0.46,0.46,0,1 +0,0.0495,0.359,0.359,0,0,0.88,0.88,0.88,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.287,1,0.398,0.558,0.398,0.398,0.222,0.222,0.998,1,0,1 +0,0.0495,0.488,0.488,0,0,0.96,0.96,0.96,0,0,0,0,0,0,0,0,0.00568,0.00568,0.258,0.465,0.352,1,0.504,0.817,0.504,0.504,0.138,0.138,0.967,0.968,0,1 +0,0.0495,0.58,0.58,0,0,1,1,1,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.465,0.474,1,0.584,0.583,0.584,0.584,0.0779,0.0779,0.539,0.54,0,1 +0.667,0.324,0.616,0.616,0,0,0.96,0.96,0.96,0,0,0,0,0,0,0,0,0.00568,0.00568,0.497,0.566,0.664,1,0.672,0.355,0.672,0.672,0.0479,0.0479,0.483,0.484,0,1 +1,0.59,0.653,0.653,0,0,0.94,0.94,0.94,0,0,0,0,0,0,0,0,0,0,0.653,0.579,0.82,1,0.716,0.223,0.716,0.716,0.024,0.024,0.404,0.405,0,1 +1,0.273,0.635,0.635,0,0,0.92,0.92,0.92,0,0,0,0,0,0,0,0,0,0,0.383,0.495,0.777,1,0.761,0.0964,0.761,0.761,0.018,0.018,0.341,0.341,0.667,1 +1,0.218,0.543,0.543,0,0,0.88,0.88,0.88,0,0,0,0,0,0,0,0,0,0,0.353,0.475,0.47,1,0.663,0.066,0.663,0.663,0.018,0.018,0.19,0.19,0.667,1 +1,0.116,0.46,0.46,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0,0,0.325,0.458,0.203,1,0.575,0.0355,0.575,0.575,0.018,0.018,0.19,0.19,0.667,1 +1,0.0495,0.368,0.368,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0835,1,0.389,0.0203,0.389,0.389,0.018,0.018,0.19,0.19,1,1 +1,0.0495,0.34,0.34,0,0,0.78,0.78,0.78,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0406,1,0.203,0.00507,0.203,0.203,0.018,0.018,0.23,0.23,1,1 +1,0.0495,0.34,0.34,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0203,1,0.168,0.00507,0.168,0.168,0.018,0.018,0.19,0.19,1,1 +1,0.0495,0.331,0.331,0,0,0.74,0.74,0.74,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0158,1,0.133,0.0101,0.133,0.133,0.024,0.024,0.23,0.23,1,1 +1,0.0495,0.304,0.304,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0248,1,0.141,0.0355,0.141,0.141,0.0479,0.0479,0.372,0.373,1,1 +1,0.0495,0.331,0.331,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0406,1,0.159,0.0609,0.159,0.159,0.0898,0.0898,0.531,0.532,1,1 +1,0.135,0.396,0.396,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0.0457,0,0.0457,0.304,0.462,0.0655,1,0.23,0.147,0.23,0.23,0.156,0.156,0.452,0.452,0.667,1 +0.667,0.274,0.432,0.432,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0.0337,0,0.0337,0.374,0.5,0.0903,1,0.292,0.233,0.292,0.292,0.263,0.263,0.19,0.19,0,1 +0,0.0495,0.313,0.313,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.111,1,0.292,0.223,0.292,0.292,0.503,0.503,0.19,0.19,0,1 +0,0.0495,0.212,0.212,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.131,1,0.283,0.208,0.283,0.283,0.725,0.725,0.151,0.151,0,1 +0,0.0495,0.221,0.221,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.147,1,0.292,0.223,0.292,0.292,0.761,0.761,0.119,0.119,0,1 +0.333,0.145,0.23,0.23,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0.00852,0.00852,0.248,0.491,0.163,1,0.292,0.233,0.292,0.292,0.725,0.725,0.111,0.111,0,1 +0.333,0.141,0.221,0.221,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0,0,0.245,0.495,0.172,1,0.283,0.213,0.283,0.283,0.719,0.719,0.111,0.111,0,1 +0.333,0.14,0.258,0.258,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0,0,0.258,0.495,0.194,1,0.283,0.193,0.283,0.283,0.539,0.539,0.111,0.111,0,1 +0.333,0.14,0.285,0.285,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0.0114,0.0114,0.267,0.491,0.205,1,0.283,0.249,0.283,0.283,0.449,0.449,0.19,0.19,0,1 +0.333,0.14,0.294,0.294,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0.0227,0.0227,0.27,0.499,0.23,1,0.292,0.299,0.292,0.292,0.365,0.365,0.46,0.46,0,1 +0,0.0495,0.359,0.359,0,0,0.88,0.88,0.88,0,0,0,0,0,0,0,0,0.017,0.017,0.258,0.465,0.287,1,0.398,0.558,0.398,0.398,0.222,0.222,0.998,1,0,1 +0.333,0.0495,0.488,0.488,0,0,0.96,0.96,0.96,0,0,0,0,0,0,0,0,0.00568,0.00568,0.258,0.465,0.352,1,0.504,0.817,0.504,0.504,0.138,0.138,0.967,0.968,0.333,1 +0.667,0.268,0.58,0.58,0,0,1,1,1,0,0,0,0,0,0,0,0,0.00284,0.00284,0.472,0.591,0.474,1,0.584,0.583,0.584,0.584,0.0779,0.0779,0.539,0.54,0,1 +0.667,0.324,0.616,0.616,0,0,0.96,0.96,0.96,0.012,0.0653,0,0,0,0,0.0339,0.0283,0,0.0622,0.497,0.566,0.664,1,0.672,0.355,0.672,0.672,0.0479,0.0479,0.483,0.484,0,1 +1,0.59,0.653,0.653,0,0,0.94,0.94,0.94,0.00444,0.0302,0,0,0,0,0.0169,0.0127,0,0.0297,0.653,0.579,0.82,1,0.716,0.223,0.716,0.716,0.024,0.024,0.404,0.405,0,1 +1,0.496,0.635,0.635,0,0,0.92,0.92,0.92,0,0,0,0,0,0,0,0.0097,0,0.0097,0.509,0.525,0.777,1,0.761,0.0964,0.761,0.761,0.018,0.018,0.341,0.341,0.333,1 +1,0.0495,0.543,0.543,0,0,0.88,0.88,0.88,0,0,0,0,0,0,0,0,0.00852,0.00852,0.258,0.465,0.47,1,0.663,0.066,0.663,0.663,0.018,0.018,0.19,0.19,1,1 +1,0.0495,0.46,0.46,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0.00568,0.00568,0.258,0.465,0.203,1,0.575,0.0355,0.575,0.575,0.018,0.018,0.19,0.19,1,1 +1,0.0495,0.368,0.368,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.465,0.0835,1,0.389,0.0203,0.389,0.389,0.018,0.018,0.19,0.19,1,1 +1,0.0495,0.34,0.34,0,0,0.78,0.78,0.78,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0406,1,0.203,0.00507,0.203,0.203,0.018,0.018,0.23,0.23,1,1 +1,0.0495,0.34,0.34,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0203,1,0.168,0.00507,0.168,0.168,0.018,0.018,0.19,0.19,1,1 +1,0.0495,0.331,0.331,0,0,0.74,0.74,0.74,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0158,1,0.133,0.0101,0.133,0.133,0.024,0.024,0.23,0.23,1,1 +1,0.0495,0.304,0.304,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0248,1,0.141,0.0355,0.141,0.141,0.0479,0.0479,0.372,0.373,1,1 +1,0.0495,0.331,0.331,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0.00254,0,0.00254,0.258,0.465,0.0406,1,0.159,0.0609,0.159,0.159,0.0898,0.0898,0.531,0.532,1,1 +1,0.135,0.396,0.396,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0.0522,0,0.0522,0.304,0.462,0.0655,1,0.23,0.147,0.23,0.23,0.156,0.156,0.452,0.452,0.667,1 +1,0.274,0.432,0.432,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0.0418,0,0.0418,0.374,0.5,0.0903,1,0.292,0.233,0.292,0.292,0.263,0.263,0.19,0.19,0.333,1 +1,0.381,0.313,0.313,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0.0359,0,0.0359,0.313,0.53,0.111,1,0.292,0.223,0.292,0.292,0.503,0.503,0.19,0.19,0,1 +0.667,0.258,0.212,0.212,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0.0183,0,0.0183,0.227,0.508,0.131,1,0.283,0.208,0.283,0.283,0.725,0.725,0.151,0.151,0,1 +0.333,0.15,0.221,0.221,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0,0,0.245,0.487,0.147,1,0.292,0.223,0.292,0.292,0.761,0.761,0.119,0.119,0,1 +0.333,0.145,0.23,0.23,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0.00568,0.00568,0.248,0.491,0.163,1,0.292,0.233,0.292,0.292,0.725,0.725,0.111,0.111,0,1 +0,0.0495,0.221,0.221,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0.017,0.017,0.258,0.465,0.172,1,0.283,0.213,0.283,0.283,0.719,0.719,0.111,0.111,0,1 +0,0.0495,0.258,0.258,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.194,1,0.283,0.193,0.283,0.283,0.539,0.539,0.111,0.111,0,1 +0.333,0.14,0.285,0.285,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0.00284,0.00284,0.267,0.491,0.205,1,0.283,0.249,0.283,0.283,0.449,0.449,0.19,0.19,0,1 +0.333,0.14,0.294,0.294,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0.00284,0.00284,0.27,0.499,0.23,1,0.292,0.299,0.292,0.292,0.365,0.365,0.46,0.46,0,1 +0.667,0.233,0.359,0.359,0,0.0366,0.88,0.88,0.88,0,0,0,0,0,0,0,0,0,0,0.325,0.549,0.287,1,0.398,0.558,0.398,0.398,0.222,0.222,0.998,1,0,1 +1,0.338,0.488,0.488,0,0,0.96,0.96,0.96,0,0,0,0,0,0,0,0,0.00284,0.00284,0.488,0.641,0.352,1,0.504,0.817,0.504,0.504,0.138,0.138,0.967,0.968,0,1 +1,0.268,0.58,0.58,0,0,1,1,1,0.00944,0.0414,0,0,0,0,0,0,0.0284,0.0284,0.472,0.591,0.474,1,0.584,0.583,0.584,0.584,0.0779,0.0779,0.539,0.54,0.333,1 +1,0.461,0.616,0.616,0,0,0.96,0.96,0.96,0.0178,0.00637,0,0,0,0,0,0,0.00568,0.00568,0.616,0.616,0.664,1,0.672,0.355,0.672,0.672,0.0479,0.0479,0.483,0.484,0,1 +1,0.59,0.653,0.653,0,0,0.94,0.94,0.94,0.0179,0,0,0,0,0,0,0,0.00568,0.00568,0.653,0.579,0.82,1,0.716,0.223,0.716,0.716,0.024,0.024,0.404,0.405,0,1 +1,0.72,0.635,0.635,0,0,0.92,0.92,0.92,0.0225,0,0,0,0,0,0.039,0,0.00284,0.0418,0.635,0.555,0.777,1,0.761,0.0964,0.761,0.761,0.018,0.018,0.341,0.341,0,1 +1,0.218,0.543,0.543,0,0,0.88,0.88,0.88,0.0201,0,0,0,0,0,0.0526,0,0,0.0526,0.353,0.475,0.47,1,0.663,0.066,0.663,0.663,0.018,0.018,0.19,0.19,0.667,1 +1,0.116,0.46,0.46,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0.00568,0.00568,0.325,0.458,0.203,1,0.575,0.0355,0.575,0.575,0.018,0.018,0.19,0.19,0.667,1 +1,0.0495,0.368,0.368,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0835,1,0.389,0.0203,0.389,0.389,0.018,0.018,0.19,0.19,1,1 +1,0.0495,0.34,0.34,0,0,0.78,0.78,0.78,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0406,1,0.203,0.00507,0.203,0.203,0.018,0.018,0.23,0.23,1,1 +1,0.0495,0.34,0.34,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.465,0.0203,1,0.168,0.00507,0.168,0.168,0.018,0.018,0.19,0.19,1,1 +1,0.0495,0.331,0.331,0,0,0.74,0.74,0.74,0,0,0,0,0,0,0,0.00267,0,0.00267,0.258,0.465,0.0158,1,0.133,0.0101,0.133,0.133,0.024,0.024,0.23,0.23,1,1 +1,0.0499,0.304,0.304,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0.0372,0,0.0372,0.273,0.442,0.0248,1,0.141,0.0355,0.141,0.141,0.0479,0.0479,0.372,0.373,0.667,1 +1,0.103,0.331,0.331,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0.0284,0,0.0284,0.307,0.426,0.0406,1,0.159,0.0609,0.159,0.159,0.0898,0.0898,0.531,0.532,0.333,1 +1,0.22,0.396,0.396,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0.0151,0,0.0151,0.35,0.459,0.0655,1,0.23,0.147,0.23,0.23,0.156,0.156,0.452,0.452,0.333,1 +0.667,0.274,0.432,0.432,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0.0189,0,0.0189,0.374,0.5,0.0903,1,0.292,0.233,0.292,0.292,0.263,0.263,0.19,0.19,0,1 +0.333,0.16,0.313,0.313,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0.00989,0,0.00989,0.276,0.487,0.111,1,0.292,0.223,0.292,0.292,0.503,0.503,0.19,0.19,0,1 +0.333,0.154,0.212,0.212,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0,0,0.242,0.487,0.131,1,0.283,0.208,0.283,0.283,0.725,0.725,0.151,0.151,0,1 +0.333,0.15,0.221,0.221,0,0,0.8,0.8,0.8,0.0131,0.0478,0.0306,0.00596,0,0,0,0,0.00568,0.00568,0.245,0.487,0.147,1,0.292,0.223,0.292,0.292,0.761,0.761,0.119,0.119,0,1 +0.667,0.24,0.23,0.23,0,0,0.8,0.8,0.8,0.00303,0,0.0247,0.00982,0.147,0.147,0,0,0.00284,0.00284,0.239,0.517,0.163,1,0.292,0.233,0.292,0.292,0.725,0.725,0.111,0.111,0,1 +0.667,0.232,0.221,0.221,0,0.0122,0.84,0.84,0.84,0,0,0.0296,0,0.128,0.128,0,0,0.00284,0.00284,0.233,0.525,0.172,1,0.283,0.213,0.283,0.283,0.719,0.719,0.111,0.111,0,1 +0.667,0.23,0.258,0.258,0,0.0975,0.84,0.84,0.84,0,0,0.0189,0,0,0,0,0,0.00568,0.00568,0.258,0.525,0.194,1,0.283,0.193,0.283,0.283,0.539,0.539,0.111,0.111,0,1 +0.667,0.23,0.285,0.285,0,0,0.84,0.84,0.84,0,0,0.00536,0,0,0,0,0,0.0199,0.0199,0.276,0.517,0.205,1,0.283,0.249,0.283,0.283,0.449,0.449,0.19,0.19,0,1 +0.667,0.23,0.294,0.294,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0.00284,0.00284,0.282,0.533,0.23,1,0.292,0.299,0.292,0.292,0.365,0.365,0.46,0.46,0,1 +0.667,0.233,0.359,0.359,0,0,0.88,0.88,0.88,0,0,0,0,0,0,0,0,0,0,0.325,0.549,0.287,1,0.398,0.558,0.398,0.398,0.222,0.222,0.998,1,0,1 +0.667,0.242,0.488,0.488,0,0,0.96,0.96,0.96,0,0,0,0,0,0,0,0.0113,0.00852,0.0198,0.411,0.582,0.352,1,0.504,0.817,0.504,0.504,0.138,0.138,0.967,0.968,0,1 +1,0.377,0.58,0.58,0,0,1,1,1,0.0177,0.0478,0,0,0,0,0,0.0195,0,0.0195,0.58,0.653,0.474,1,0.584,0.583,0.584,0.584,0.0779,0.0779,0.539,0.54,0,1 +1,0.461,0.616,0.616,0,0.0122,0.96,0.96,0.96,0.0188,0,0,0,0,0,0,0,0,0,0.616,0.616,0.664,1,0.672,0.355,0.672,0.672,0.0479,0.0479,0.483,0.484,0,1 +1,0.59,0.653,0.653,0,0.0244,0.94,0.94,0.94,0.0182,0,0,0,0,0,0,0.0209,0.00284,0.0238,0.653,0.579,0.82,1,0.716,0.223,0.716,0.716,0.024,0.024,0.404,0.405,0,1 +1,0.496,0.635,0.635,0,0,0.92,0.92,0.92,0,0,0,0,0,0,0,0.021,0.017,0.038,0.509,0.525,0.777,1,0.761,0.0964,0.761,0.761,0.018,0.018,0.341,0.341,0.333,1 +1,0.386,0.543,0.543,0,0,0.88,0.88,0.88,0,0,0,0,0,0,0,0,0,0,0.448,0.484,0.47,1,0.663,0.066,0.663,0.663,0.018,0.018,0.19,0.19,0.333,1 +1,0.0495,0.46,0.46,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0.0142,0.0142,0.258,0.465,0.203,1,0.575,0.0355,0.575,0.575,0.018,0.018,0.19,0.19,1,1 +1,0.0495,0.368,0.368,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0835,1,0.389,0.0203,0.389,0.389,0.018,0.018,0.19,0.19,1,1 +1,0.0495,0.34,0.34,0,0,0.78,0.78,0.78,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0406,1,0.203,0.00507,0.203,0.203,0.018,0.018,0.23,0.23,1,1 +1,0.0495,0.34,0.34,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0203,1,0.168,0.00507,0.168,0.168,0.018,0.018,0.19,0.19,1,1 +1,0.0495,0.331,0.331,0,0,0.74,0.74,0.74,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0158,1,0.133,0.0101,0.133,0.133,0.024,0.024,0.23,0.23,1,1 +1,0.0504,0.304,0.304,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0.00247,0,0.00247,0.288,0.418,0.0248,1,0.141,0.0355,0.141,0.141,0.0479,0.0479,0.372,0.373,0.333,1 +0.667,0.0763,0.331,0.331,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0.0412,0,0.0412,0.282,0.446,0.0406,1,0.159,0.0609,0.159,0.159,0.0898,0.0898,0.531,0.532,0.333,1 +0.667,0.135,0.396,0.396,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0,0,0,0.304,0.462,0.0655,1,0.23,0.147,0.23,0.23,0.156,0.156,0.452,0.452,0.333,1 +0.333,0.0495,0.432,0.432,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0903,1,0.292,0.233,0.292,0.292,0.263,0.263,0.19,0.19,0.333,1 +0.333,0.0495,0.313,0.313,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.465,0.111,1,0.292,0.223,0.292,0.292,0.503,0.503,0.19,0.19,0.333,1 +0.667,0.154,0.212,0.212,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0.0284,0.0284,0.242,0.487,0.131,1,0.283,0.208,0.283,0.283,0.725,0.725,0.151,0.151,0.333,1 +0.333,0.0495,0.221,0.221,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0.0138,0.00284,0.0167,0.258,0.465,0.147,1,0.292,0.223,0.292,0.292,0.761,0.761,0.119,0.119,0.333,1 +0.333,0.145,0.23,0.23,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0,0,0.248,0.491,0.163,1,0.292,0.233,0.292,0.292,0.725,0.725,0.111,0.111,0,1 +0.333,0.141,0.221,0.221,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0,0,0.245,0.495,0.172,1,0.283,0.213,0.283,0.283,0.719,0.719,0.111,0.111,0,1 +0.333,0.14,0.258,0.258,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0,0,0.258,0.495,0.194,1,0.283,0.193,0.283,0.283,0.539,0.539,0.111,0.111,0,1 +0.333,0.14,0.285,0.285,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0,0,0.267,0.491,0.205,1,0.283,0.249,0.283,0.283,0.449,0.449,0.19,0.19,0,1 +1,0.321,0.294,0.294,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0,0,0.294,0.567,0.23,1,0.292,0.299,0.292,0.292,0.365,0.365,0.46,0.46,0,1 +0.667,0.233,0.359,0.359,0,0,0.88,0.88,0.88,0,0,0,0,0,0,0,0,0.00284,0.00284,0.325,0.549,0.287,1,0.398,0.558,0.398,0.398,0.222,0.222,0.998,1,0,1 +0.667,0.242,0.488,0.488,0,0.0731,0.96,0.96,0.96,0,0,0,0,0,0,0,0,0.00284,0.00284,0.411,0.582,0.352,1,0.504,0.817,0.504,0.504,0.138,0.138,0.967,0.968,0,1 +0.667,0.268,0.58,0.58,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0.472,0.591,0.474,1,0.584,0.583,0.584,0.584,0.0779,0.0779,0.539,0.54,0,1 +0.667,0.324,0.616,0.616,0,0.0487,0.96,0.96,0.96,0,0,0,0,0,0,0,0,0.00284,0.00284,0.497,0.566,0.664,1,0.672,0.355,0.672,0.672,0.0479,0.0479,0.483,0.484,0,1 +1,0.59,0.653,0.653,0,0.0244,0.94,0.94,0.94,0,0,0,0,0,0,0,0,0.00852,0.00852,0.653,0.579,0.82,1,0.716,0.223,0.716,0.716,0.024,0.024,0.404,0.405,0,1 +1,0.72,0.635,0.635,0,0,0.92,0.92,0.92,0,0,0,0,0,0,0,0,0,0,0.635,0.555,0.777,1,0.761,0.0964,0.761,0.761,0.018,0.018,0.341,0.341,0,1 +1,0.218,0.543,0.543,0,0,0.88,0.88,0.88,0,0,0,0,0,0,0,0,0.0114,0.0114,0.353,0.475,0.47,1,0.663,0.066,0.663,0.663,0.018,0.018,0.19,0.19,0.667,1 +1,0.0495,0.46,0.46,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0.00568,0.00568,0.258,0.465,0.203,1,0.575,0.0355,0.575,0.575,0.018,0.018,0.19,0.19,1,1 +1,0.0495,0.368,0.368,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0.00568,0.00568,0.258,0.465,0.0993,1,0.389,0.0203,0.389,0.389,0.018,0.018,0.19,0.19,1,1 +1,0.0495,0.34,0.34,0,0,0.78,0.78,0.78,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0497,1,0.203,0.00507,0.203,0.203,0.018,0.018,0.23,0.23,1,1 +1,0.0495,0.34,0.34,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.465,0.0271,1,0.168,0.00507,0.168,0.168,0.018,0.018,0.19,0.19,1,1 +1,0.0495,0.331,0.331,0,0,0.74,0.74,0.74,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0181,1,0.133,0.0101,0.133,0.133,0.024,0.024,0.23,0.23,1,1 +1,0.0499,0.304,0.304,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0,0,0,0.273,0.442,0.0248,1,0.141,0.0355,0.141,0.141,0.0479,0.0479,0.372,0.373,0.667,1 +1,0.103,0.331,0.331,0,0.0366,0.72,0.72,0.72,0,0,0,0,0,0,0,0,0,0,0.307,0.426,0.0316,1,0.159,0.0609,0.159,0.159,0.0898,0.0898,0.531,0.532,0.333,1 +1,0.22,0.396,0.396,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0,0,0,0.35,0.459,0.0542,1,0.23,0.147,0.23,0.23,0.156,0.156,0.452,0.452,0.333,1 +0.667,0.162,0.432,0.432,0,0.0122,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0,0,0.316,0.483,0.0971,1,0.292,0.233,0.292,0.292,0.263,0.263,0.19,0.19,0.333,1 +1,0.16,0.313,0.313,0,0.146,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0.00284,0.00284,0.276,0.487,0.16,1,0.292,0.223,0.292,0.292,0.503,0.503,0.19,0.19,0.667,1 +0.667,0.154,0.212,0.212,0,0.146,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0.0142,0.0142,0.242,0.487,0.212,1,0.283,0.208,0.283,0.283,0.725,0.725,0.151,0.151,0.333,1 +0.667,0.25,0.221,0.221,0,0.134,0.8,0.8,0.8,0,0,0,0,0,0,0,0.00276,0,0.00276,0.233,0.508,0.253,1,0.292,0.223,0.292,0.292,0.761,0.761,0.119,0.119,0,1 +0.333,0.145,0.23,0.23,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0.0419,0,0.0419,0.248,0.491,0.278,1,0.292,0.233,0.292,0.292,0.725,0.725,0.111,0.111,0,1 +0.333,0.141,0.221,0.221,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0.0122,0.00568,0.0179,0.245,0.495,0.298,1,0.283,0.213,0.283,0.283,0.719,0.719,0.111,0.111,0,1 +0.333,0.14,0.258,0.258,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0.0399,0.00568,0.0456,0.258,0.495,0.352,1,0.283,0.193,0.283,0.283,0.539,0.539,0.111,0.111,0,1 +0.333,0.14,0.285,0.285,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0.0199,0,0.0199,0.267,0.491,0.402,1,0.283,0.249,0.283,0.283,0.449,0.449,0.19,0.19,0,1 +0.333,0.14,0.294,0.294,0,0,0.82,0.82,0.82,0.0144,0.0239,0,0,0,0,0,0,0.00284,0.00284,0.27,0.499,0.443,1,0.292,0.299,0.292,0.292,0.365,0.365,0.46,0.46,0,1 +0.333,0.141,0.359,0.359,0,0,0.88,0.88,0.88,0.0179,0,0,0,0,0,0,0,0.00284,0.00284,0.291,0.507,0.465,1,0.398,0.558,0.398,0.398,0.222,0.222,0.998,1,0,1 +0.667,0.242,0.488,0.488,0,0.0853,0.96,0.96,0.96,0.0173,0,0,0,0,0,0,0,0,0,0.411,0.582,0.481,1,0.504,0.817,0.504,0.504,0.138,0.138,0.967,0.968,0,1 +1,0.377,0.58,0.58,0,0.0244,1,1,1,0.0195,0.0716,0,0,0,0,0,0,0.0199,0.0199,0.58,0.653,0.567,1,0.584,0.583,0.584,0.584,0.0779,0.0779,0.539,0.54,0,1 +0.667,0.324,0.616,0.616,0,0,0.96,0.96,0.96,0.00494,0,0,0,0,0,0,0,0.0114,0.0114,0.497,0.566,0.745,1,0.672,0.355,0.672,0.672,0.0479,0.0479,0.483,0.484,0,1 +0.667,0.41,0.653,0.653,0,0,0.94,0.94,0.94,0.0252,0.0891,0,0,0,0,0,0,0.0142,0.0142,0.521,0.541,0.876,1,0.716,0.223,0.716,0.716,0.024,0.024,0.404,0.405,0,1 +1,0.72,0.635,0.635,0,0,0.92,0.92,0.92,0.00887,0.00637,0,0,0,0,0,0,0.00284,0.00284,0.635,0.555,0.808,1,0.761,0.0964,0.761,0.761,0.018,0.018,0.341,0.341,0,1 +1,0.554,0.543,0.543,0,0,0.88,0.88,0.88,0,0,0,0,0,0,0,0,0,0,0.543,0.493,0.51,1,0.663,0.066,0.663,0.663,0.018,0.018,0.19,0.19,0,1 +1,0.249,0.46,0.46,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0,0,0.46,0.444,0.233,1,0.575,0.0355,0.575,0.575,0.018,0.018,0.19,0.19,0,1 +1,0.0743,0.368,0.368,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0,0,0.294,0.454,0.0993,1,0.389,0.0203,0.389,0.389,0.018,0.018,0.19,0.19,0.667,1 +1,0.0495,0.34,0.34,0,0,0.78,0.78,0.78,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0497,1,0.203,0.00507,0.203,0.203,0.018,0.018,0.23,0.23,1,1 +1,0.0495,0.34,0.34,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0271,1,0.168,0.00507,0.168,0.168,0.018,0.018,0.19,0.19,1,1 +1,0.0495,0.331,0.331,0,0,0.74,0.74,0.74,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0181,1,0.133,0.0101,0.133,0.133,0.024,0.024,0.23,0.23,1,1 +1,0.0495,0.304,0.304,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0248,1,0.141,0.0355,0.141,0.141,0.0479,0.0479,0.372,0.373,1,1 +1,0.0495,0.331,0.331,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0.0286,0,0.0286,0.258,0.465,0.0316,1,0.159,0.0609,0.159,0.159,0.0898,0.0898,0.531,0.532,1,1 +1,0.22,0.396,0.396,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0.0234,0,0.0234,0.35,0.459,0.0542,1,0.23,0.147,0.23,0.23,0.156,0.156,0.452,0.452,0.333,1 +1,0.274,0.432,0.432,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0.0132,0,0.0132,0.374,0.5,0.0971,1,0.292,0.233,0.292,0.292,0.263,0.263,0.19,0.19,0.333,1 +1,0.27,0.313,0.313,0,0.0122,0.82,0.82,0.82,0,0,0.0373,0.000702,0,0,0,0,0,0,0.294,0.508,0.16,1,0.292,0.223,0.292,0.292,0.503,0.503,0.19,0.19,0.333,1 +1,0.362,0.212,0.212,0,0.146,0.82,0.82,0.82,0,0,0.0339,0.0151,0.055,0.055,0,0,0,0,0.212,0.53,0.212,1,0.283,0.208,0.283,0.283,0.725,0.725,0.151,0.151,0,1 +1,0.351,0.221,0.221,0,0.0244,0.8,0.8,0.8,0,0,0.0295,0,0.312,0.312,0,0,0.017,0.017,0.221,0.53,0.253,1,0.292,0.223,0.292,0.292,0.761,0.761,0.119,0.119,0,1 +1,0.335,0.23,0.23,0,0,0.8,0.8,0.8,0,0,0.0228,0,0,0,0,0,0.00852,0.00852,0.23,0.542,0.278,1,0.292,0.233,0.292,0.292,0.725,0.725,0.111,0.111,0,1 +1,0.324,0.221,0.221,0,0,0.84,0.84,0.84,0,0,0.0247,0,0,0,0,0,0.00852,0.00852,0.221,0.555,0.298,1,0.283,0.213,0.283,0.283,0.719,0.719,0.111,0.111,0,1 +1,0.32,0.258,0.258,0,0,0.84,0.84,0.84,0,0,0.0208,0,0,0,0,0,0.00284,0.00284,0.258,0.555,0.352,1,0.283,0.193,0.283,0.283,0.539,0.539,0.111,0.111,0,1 +1,0.32,0.285,0.285,0,0,0.84,0.84,0.84,0,0,0.0076,0,0,0,0,0,0.0114,0.0114,0.285,0.542,0.402,1,0.283,0.249,0.283,0.283,0.449,0.449,0.19,0.19,0,1 +0.667,0.23,0.294,0.294,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0.0344,0.00284,0.0373,0.282,0.533,0.443,1,0.292,0.299,0.292,0.292,0.365,0.365,0.46,0.46,0,1 +0.667,0.233,0.359,0.359,0,0,0.88,0.88,0.88,0,0,0,0,0,0,0,0,0,0,0.325,0.549,0.465,1,0.398,0.558,0.398,0.398,0.222,0.222,0.998,1,0,1 +1,0.338,0.488,0.488,0,0.0122,0.96,0.96,0.96,0,0,0,0,0,0,0,0,0.0199,0.0199,0.488,0.641,0.481,1,0.504,0.817,0.504,0.504,0.138,0.138,0.967,0.968,0,1 +1,0.377,0.58,0.58,0,0.146,1,1,1,0,0,0,0,0,0,0,0,0.00568,0.00568,0.58,0.653,0.567,1,0.584,0.583,0.584,0.584,0.0779,0.0779,0.539,0.54,0,1 +1,0.461,0.616,0.616,0,0.0244,0.96,0.96,0.96,0,0,0,0,0,0,0,0,0.00284,0.00284,0.616,0.616,0.745,1,0.672,0.355,0.672,0.672,0.0479,0.0479,0.483,0.484,0,1 +1,0.59,0.653,0.653,0,0,0.94,0.94,0.94,0,0,0,0,0,0,0,0,0,0,0.653,0.579,0.876,1,0.716,0.223,0.716,0.716,0.024,0.024,0.404,0.405,0,1 +1,0.72,0.635,0.635,0,0,0.92,0.92,0.92,0,0,0,0,0,0,0,0,0,0,0.635,0.555,0.808,1,0.761,0.0964,0.761,0.761,0.018,0.018,0.341,0.341,0,1 +0.667,0.386,0.543,0.543,0,0,0.88,0.88,0.88,0,0,0,0,0,0,0,0,0.00284,0.00284,0.448,0.484,0.51,1,0.663,0.066,0.663,0.663,0.018,0.018,0.19,0.19,0,1 +1,0.183,0.46,0.46,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0,0,0.393,0.451,0.233,1,0.575,0.0355,0.575,0.575,0.018,0.018,0.19,0.19,0.333,1 +1,0.0743,0.368,0.368,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0,0,0.294,0.454,0.0835,1,0.389,0.0203,0.389,0.389,0.018,0.018,0.19,0.19,0.667,1 +1,0.0495,0.34,0.34,0,0,0.78,0.78,0.78,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0406,1,0.203,0.00507,0.203,0.203,0.018,0.018,0.23,0.23,1,1 +1,0.0495,0.34,0.34,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0203,1,0.168,0.00507,0.168,0.168,0.018,0.018,0.19,0.19,1,1 +1,0.0495,0.331,0.331,0,0,0.74,0.74,0.74,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0158,1,0.133,0.0101,0.133,0.133,0.024,0.024,0.23,0.23,1,1 +1,0.0495,0.304,0.304,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0248,1,0.141,0.0355,0.141,0.141,0.0479,0.0479,0.372,0.373,1,1 +1,0.0763,0.331,0.331,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0.00268,0,0.00268,0.282,0.446,0.0406,1,0.159,0.0609,0.159,0.159,0.0898,0.0898,0.531,0.532,0.667,1 +1,0.22,0.396,0.396,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0.0283,0,0.0283,0.35,0.459,0.0655,1,0.23,0.147,0.23,0.23,0.156,0.156,0.452,0.452,0.333,1 +1,0.274,0.432,0.432,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0.0156,0,0.0156,0.374,0.5,0.0903,1,0.292,0.233,0.292,0.292,0.263,0.263,0.19,0.19,0.333,1 +0.667,0.27,0.313,0.313,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0.0233,0,0.0233,0.294,0.508,0.111,1,0.292,0.223,0.292,0.292,0.503,0.503,0.19,0.19,0,1 +0.333,0.154,0.212,0.212,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0.0368,0.00852,0.0453,0.242,0.487,0.131,1,0.283,0.208,0.283,0.283,0.725,0.725,0.151,0.151,0,1 +0,0.0495,0.221,0.221,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.147,1,0.292,0.223,0.292,0.292,0.761,0.761,0.119,0.119,0,1 +0.333,0.145,0.23,0.23,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0,0,0.248,0.491,0.163,1,0.292,0.233,0.292,0.292,0.725,0.725,0.111,0.111,0,1 +0.333,0.141,0.221,0.221,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0.00568,0.00568,0.245,0.495,0.172,1,0.283,0.213,0.283,0.283,0.719,0.719,0.111,0.111,0,1 +0.333,0.14,0.258,0.258,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0.0114,0.0114,0.258,0.495,0.194,1,0.283,0.193,0.283,0.283,0.539,0.539,0.111,0.111,0,1 +0.333,0.14,0.285,0.285,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0.00274,0.00284,0.00558,0.267,0.491,0.205,1,0.283,0.249,0.283,0.283,0.449,0.449,0.19,0.19,0,1 +0.333,0.14,0.294,0.294,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0.0299,0.00852,0.0385,0.27,0.499,0.23,1,0.292,0.299,0.292,0.292,0.365,0.365,0.46,0.46,0,1 +0.333,0.141,0.359,0.359,0,0,0.88,0.88,0.88,0.0214,0.0891,0,0,0,0,0,0,0.0284,0.0284,0.291,0.507,0.287,1,0.398,0.558,0.398,0.398,0.222,0.222,0.998,1,0,1 +1,0.338,0.488,0.488,0,0,0.96,0.96,0.96,0.0195,0.00637,0,0,0,0,0,0.0154,0.00852,0.0239,0.488,0.641,0.352,1,0.504,0.817,0.504,0.504,0.138,0.138,0.967,0.968,0,1 +1,0.377,0.58,0.58,0,0.0366,1,1,1,0.0129,0,0,0,0,0,0,0,0.00852,0.00852,0.58,0.653,0.474,1,0.584,0.583,0.584,0.584,0.0779,0.0779,0.539,0.54,0,1 +1,0.461,0.616,0.616,0,0,0.96,0.96,0.96,0,0,0.00975,0,0,0,0,0,0.00284,0.00284,0.616,0.616,0.664,1,0.672,0.355,0.672,0.672,0.0479,0.0479,0.483,0.484,0,1 +1,0.59,0.653,0.653,0,0,0.94,0.94,0.94,0,0,0.0247,0.0158,0,0,0,0,0.00284,0.00284,0.653,0.579,0.82,1,0.716,0.223,0.716,0.716,0.024,0.024,0.404,0.405,0,1 +1,0.496,0.635,0.635,0,0,0.92,0.92,0.92,0,0,0,0,0.33,0.33,0,0,0,0,0.509,0.525,0.777,1,0.761,0.0964,0.761,0.761,0.018,0.018,0.341,0.341,0.333,1 +1,0.218,0.543,0.543,0,0,0.88,0.88,0.88,0,0,0,0,0.367,0.367,0,0,0,0,0.353,0.475,0.47,1,0.663,0.066,0.663,0.663,0.018,0.018,0.19,0.19,0.667,1 +1,0.116,0.46,0.46,0,0,0.82,0.82,0.82,0,0,0,0,0.0367,0.0367,0,0,0.00284,0.00284,0.325,0.458,0.203,1,0.575,0.0355,0.575,0.575,0.018,0.018,0.19,0.19,0.667,1 +1,0.0495,0.368,0.368,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.465,0.0835,1,0.389,0.0203,0.389,0.389,0.018,0.018,0.19,0.19,1,1 +1,0.0495,0.34,0.34,0,0,0.78,0.78,0.78,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0406,1,0.203,0.00507,0.203,0.203,0.018,0.018,0.23,0.23,1,1 +1,0.0495,0.34,0.34,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0203,1,0.168,0.00507,0.168,0.168,0.018,0.018,0.19,0.19,1,1 +1,0.0495,0.331,0.331,0,0,0.74,0.74,0.74,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0158,1,0.133,0.0101,0.133,0.133,0.024,0.024,0.23,0.23,1,1 +1,0.0495,0.304,0.304,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0.00267,0,0.00267,0.258,0.465,0.0248,1,0.141,0.0355,0.141,0.141,0.0479,0.0479,0.372,0.373,1,1 +1,0.0763,0.331,0.331,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0.0365,0,0.0365,0.282,0.446,0.0406,1,0.159,0.0609,0.159,0.159,0.0898,0.0898,0.531,0.532,0.667,1 +1,0.22,0.396,0.396,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0.0172,0,0.0172,0.35,0.459,0.0655,1,0.23,0.147,0.23,0.23,0.156,0.156,0.452,0.452,0.333,1 +0.667,0.274,0.432,0.432,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0.0276,0,0.0276,0.374,0.5,0.0903,1,0.292,0.233,0.292,0.292,0.263,0.263,0.19,0.19,0,1 +0.667,0.27,0.313,0.313,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0,0,0.294,0.508,0.111,1,0.292,0.223,0.292,0.292,0.503,0.503,0.19,0.19,0,1 +0.333,0.154,0.212,0.212,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0.00568,0.00568,0.242,0.487,0.131,1,0.283,0.208,0.283,0.283,0.725,0.725,0.151,0.151,0,1 +0.333,0.15,0.221,0.221,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0.0114,0.0114,0.245,0.487,0.147,1,0.292,0.223,0.292,0.292,0.761,0.761,0.119,0.119,0,1 +0.333,0.145,0.23,0.23,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0.00852,0.00852,0.248,0.491,0.163,1,0.292,0.233,0.292,0.292,0.725,0.725,0.111,0.111,0,1 +0,0.0495,0.221,0.221,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.465,0.172,1,0.283,0.213,0.283,0.283,0.719,0.719,0.111,0.111,0,1 +0.333,0.14,0.258,0.258,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0.017,0.017,0.258,0.495,0.194,1,0.283,0.193,0.283,0.283,0.539,0.539,0.111,0.111,0,1 +0.667,0.23,0.285,0.285,0,0.0366,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0.00568,0.00568,0.276,0.517,0.205,1,0.283,0.249,0.283,0.283,0.449,0.449,0.19,0.19,0,1 +0.667,0.23,0.294,0.294,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0,0,0.282,0.533,0.23,1,0.292,0.299,0.292,0.292,0.365,0.365,0.46,0.46,0,1 +0.667,0.233,0.359,0.359,0,0,0.88,0.88,0.88,0,0,0,0,0,0,0,0,0.0114,0.0114,0.325,0.549,0.287,1,0.398,0.558,0.398,0.398,0.222,0.222,0.998,1,0,1 +0.667,0.242,0.488,0.488,0,0,0.96,0.96,0.96,0,0,0,0,0,0,0,0.00254,0.00284,0.00538,0.411,0.582,0.352,1,0.504,0.817,0.504,0.504,0.138,0.138,0.967,0.968,0,1 +1,0.377,0.58,0.58,0,0.0487,1,1,1,0.00612,0.0175,0,0,0,0,0,0.0127,0.00284,0.0155,0.58,0.653,0.474,1,0.584,0.583,0.584,0.584,0.0779,0.0779,0.539,0.54,0,1 +1,0.461,0.616,0.616,0,0.0244,0.96,0.96,0.96,0.0173,0.0955,0,0,0,0,0,0,0.00568,0.00568,0.616,0.616,0.664,1,0.672,0.355,0.672,0.672,0.0479,0.0479,0.483,0.484,0,1 +1,0.59,0.653,0.653,0,0,0.94,0.94,0.94,0,0.00637,0,0,0,0,0,0,0.00852,0.00852,0.653,0.579,0.82,1,0.716,0.223,0.716,0.716,0.024,0.024,0.404,0.405,0,1 +1,0.72,0.635,0.635,0,0,0.92,0.92,0.92,0,0,0.0298,0.000702,0,0,0.0478,0.036,0,0.0838,0.635,0.555,0.777,1,0.761,0.0964,0.761,0.761,0.018,0.018,0.341,0.341,0,1 +1,0.386,0.543,0.543,0,0,0.88,0.88,0.88,0,0,0.0488,0.0151,0.055,0.055,0,0,0,0,0.448,0.484,0.47,1,0.663,0.066,0.663,0.663,0.018,0.018,0.19,0.19,0.333,1 +1,0.183,0.46,0.46,0,0,0.82,0.82,0.82,0,0,0.0218,0,0.22,0.22,0,0,0.00568,0.00568,0.393,0.451,0.203,1,0.575,0.0355,0.575,0.575,0.018,0.018,0.19,0.19,0.333,1 +1,0.099,0.368,0.368,0,0,0.8,0.8,0.8,0,0,0.0342,0,0,0,0,0,0,0,0.331,0.443,0.0805,1,0.389,0.0203,0.389,0.389,0.018,0.018,0.19,0.19,0.333,1 +1,0.0578,0.34,0.34,0,0,0.78,0.78,0.78,0,0,0.025,0,0,0,0,0,0,0,0.285,0.446,0.0392,1,0.203,0.00507,0.203,0.203,0.018,0.018,0.23,0.23,0.667,1 +1,0.0495,0.34,0.34,0,0,0.76,0.76,0.76,0,0,0.0348,0,0,0,0,0,0,0,0.285,0.442,0.0196,1,0.168,0.00507,0.168,0.168,0.018,0.018,0.19,0.19,0.667,1 +1,0.0495,0.331,0.331,0,0,0.74,0.74,0.74,0,0,0.0333,0,0,0,0,0,0,0,0.282,0.438,0.0152,1,0.133,0.0101,0.133,0.133,0.024,0.024,0.23,0.23,0.667,1 +1,0.0495,0.304,0.304,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0239,1,0.141,0.0355,0.141,0.141,0.0479,0.0479,0.372,0.373,1,1 +1,0.0495,0.331,0.331,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0392,1,0.159,0.0609,0.159,0.159,0.0898,0.0898,0.531,0.532,1,1 +0.667,0.0495,0.396,0.396,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0.00256,0,0.00256,0.258,0.465,0.0631,1,0.23,0.147,0.23,0.23,0.156,0.156,0.452,0.452,0.667,1 +0.667,0.277,0.432,0.432,0,0.0853,0.8,0.8,0.8,0,0,0,0,0,0,0,0.0154,0.00568,0.021,0.374,0.5,0.087,1,0.292,0.233,0.292,0.292,0.263,0.263,0.19,0.19,0,1 +0.333,0.162,0.313,0.313,0,0.0244,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0,0,0.276,0.487,0.107,1,0.292,0.223,0.292,0.292,0.503,0.503,0.19,0.19,0,1 +0.333,0.156,0.212,0.212,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0,0,0.242,0.487,0.126,1,0.283,0.208,0.283,0.283,0.725,0.725,0.151,0.151,0,1 +0.333,0.153,0.221,0.221,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0,0,0.245,0.487,0.141,1,0.292,0.223,0.292,0.292,0.761,0.761,0.119,0.119,0,1 +0.333,0.147,0.23,0.23,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0.00284,0.00284,0.248,0.491,0.157,1,0.292,0.233,0.292,0.292,0.725,0.725,0.111,0.111,0,1 +0.333,0.143,0.221,0.221,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0,0,0.245,0.495,0.165,1,0.283,0.213,0.283,0.283,0.719,0.719,0.111,0.111,0,1 +0.333,0.142,0.258,0.258,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0,0,0.258,0.495,0.187,1,0.283,0.193,0.283,0.283,0.539,0.539,0.111,0.111,0,1 +0.333,0.142,0.285,0.285,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0,0,0.267,0.491,0.198,1,0.283,0.249,0.283,0.283,0.449,0.449,0.19,0.19,0,1 +0.333,0.143,0.294,0.294,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0.00284,0.00284,0.27,0.499,0.222,1,0.292,0.299,0.292,0.292,0.365,0.365,0.46,0.46,0,1 +0.333,0.144,0.359,0.359,0,0.0853,0.88,0.88,0.88,0,0,0,0,0,0,0,0,0.00284,0.00284,0.291,0.507,0.276,1,0.398,0.558,0.398,0.398,0.222,0.222,0.998,1,0,1 +0.667,0.252,0.488,0.488,0,0.0244,0.96,0.96,0.96,0,0,0,0,0,0,0,0,0,0,0.411,0.582,0.339,1,0.504,0.817,0.504,0.504,0.138,0.138,0.967,0.968,0,1 +0.333,0.169,0.58,0.58,0,0,1,1,1,0,0,0,0,0,0,0,0,0.0114,0.0114,0.365,0.528,0.457,1,0.584,0.583,0.584,0.584,0.0779,0.0779,0.539,0.54,0,1 +0.333,0.206,0.616,0.616,0,0,0.96,0.96,0.96,0,0,0,0,0,0,0,0,0.00852,0.00852,0.377,0.516,0.64,1,0.672,0.355,0.672,0.672,0.0479,0.0479,0.483,0.484,0,1 +0.667,0.462,0.653,0.653,0,0,0.94,0.94,0.94,0,0,0,0,0,0,0,0.0146,0.00284,0.0174,0.521,0.541,0.79,1,0.716,0.223,0.716,0.716,0.024,0.024,0.404,0.405,0,1 +1,0.788,0.635,0.635,0,0,0.92,0.92,0.92,0,0,0,0,0,0,0,0.0323,0,0.0323,0.635,0.555,0.749,1,0.761,0.0964,0.761,0.761,0.018,0.018,0.341,0.341,0,1 +1,0.397,0.543,0.543,0,0,0.88,0.88,0.88,0,0,0,0,0,0,0.0794,0,0.00568,0.0851,0.448,0.484,0.453,1,0.663,0.066,0.663,0.663,0.018,0.018,0.19,0.19,0.333,1 +1,0.0495,0.46,0.46,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0.0114,0.0114,0.258,0.465,0.196,1,0.575,0.0355,0.575,0.575,0.018,0.018,0.19,0.19,1,1 +1,0.0495,0.368,0.368,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0805,1,0.389,0.0203,0.389,0.389,0.018,0.018,0.19,0.19,1,1 +1,0.0495,0.34,0.34,0,0,0.78,0.78,0.78,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0392,1,0.203,0.00507,0.203,0.203,0.018,0.018,0.23,0.23,1,1 +1,0.0495,0.34,0.34,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0,0.0142,0.0142,0.258,0.465,0.0196,1,0.168,0.00507,0.168,0.168,0.018,0.018,0.19,0.19,1,1 +1,0.0495,0.331,0.331,0,0,0.74,0.74,0.74,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0152,1,0.133,0.0101,0.133,0.133,0.024,0.024,0.23,0.23,1,1 +1,0.0495,0.304,0.304,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0239,1,0.141,0.0355,0.141,0.141,0.0479,0.0479,0.372,0.373,1,1 +1,0.0495,0.331,0.331,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0392,1,0.159,0.0609,0.159,0.159,0.0898,0.0898,0.531,0.532,1,1 +1,0.136,0.396,0.396,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0.0023,0,0.0023,0.304,0.462,0.0631,1,0.23,0.147,0.23,0.23,0.156,0.156,0.452,0.452,0.667,1 +0.667,0.277,0.432,0.432,0,0.0731,0.8,0.8,0.8,0,0,0,0,0,0,0.0732,0.0283,0,0.102,0.374,0.5,0.087,1,0.292,0.233,0.292,0.292,0.263,0.263,0.19,0.19,0,1 +0.667,0.274,0.313,0.313,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0.0647,0,0.0647,0.294,0.508,0.107,1,0.292,0.223,0.292,0.292,0.503,0.503,0.19,0.19,0,1 +0.667,0.263,0.212,0.212,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0.059,0.00284,0.0618,0.227,0.508,0.126,1,0.283,0.208,0.283,0.283,0.725,0.725,0.151,0.151,0,1 +0.667,0.256,0.221,0.221,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0.0462,0.0255,0.0717,0.233,0.508,0.141,1,0.292,0.223,0.292,0.292,0.761,0.761,0.119,0.119,0,1 +0.333,0.147,0.23,0.23,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0.0181,0.00852,0.0267,0.248,0.491,0.157,1,0.292,0.233,0.292,0.292,0.725,0.725,0.111,0.111,0,1 +0.333,0.143,0.221,0.221,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0.0518,0.0219,0.00284,0.0766,0.245,0.495,0.165,1,0.283,0.213,0.283,0.283,0.719,0.719,0.111,0.111,0,1 +0.667,0.235,0.258,0.258,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0.0123,0,0.0123,0.258,0.525,0.187,1,0.283,0.193,0.283,0.283,0.539,0.539,0.111,0.111,0,1 +0.667,0.235,0.285,0.285,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0.0609,0.00284,0.0637,0.276,0.517,0.198,1,0.283,0.249,0.283,0.283,0.449,0.449,0.19,0.19,0,1 +0.667,0.236,0.294,0.294,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0.0146,0,0.0146,0.282,0.533,0.222,1,0.292,0.299,0.292,0.292,0.365,0.365,0.46,0.46,0,1 +0.333,0.144,0.359,0.359,0,0,0.88,0.88,0.88,0,0,0,0,0,0,0,0,0.0142,0.0142,0.291,0.507,0.276,1,0.398,0.558,0.398,0.398,0.222,0.222,0.998,1,0,1 +0.667,0.252,0.488,0.488,0,0,0.96,0.96,0.96,0,0,0,0,0,0,0,0,0,0,0.411,0.582,0.339,1,0.504,0.817,0.504,0.504,0.138,0.138,0.967,0.968,0,1 +0.667,0.289,0.58,0.58,0,0.0366,1,1,1,0,0,0,0,0,0,0,0,0.00568,0.00568,0.472,0.591,0.457,1,0.584,0.583,0.584,0.584,0.0779,0.0779,0.539,0.54,0,1 +0.667,0.362,0.616,0.616,0,0,0.96,0.96,0.96,0.022,0.0478,0,0,0,0,0,0.00233,0.00284,0.00517,0.497,0.566,0.64,1,0.672,0.355,0.672,0.672,0.0479,0.0479,0.483,0.484,0,1 +0.667,0.462,0.653,0.653,0,0,0.94,0.94,0.94,0,0,0,0,0,0,0,0.0223,0,0.0223,0.521,0.541,0.79,1,0.716,0.223,0.716,0.716,0.024,0.024,0.404,0.405,0,1 +1,0.542,0.635,0.635,0,0,0.92,0.92,0.92,0,0,0,0,0,0,0,0.0123,0.0284,0.0407,0.509,0.525,0.749,1,0.761,0.0964,0.761,0.761,0.018,0.018,0.341,0.341,0.333,1 +1,0.397,0.543,0.543,0,0.0122,0.88,0.88,0.88,0,0,0,0,0,0,0,0.01,0,0.01,0.448,0.484,0.453,1,0.663,0.066,0.663,0.663,0.018,0.018,0.19,0.19,0.333,1 +1,0.0495,0.46,0.46,0,0.0975,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0.00568,0.00568,0.258,0.465,0.196,1,0.575,0.0355,0.575,0.575,0.018,0.018,0.19,0.19,1,1 +1,0.0495,0.368,0.368,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0805,1,0.389,0.0203,0.389,0.389,0.018,0.018,0.19,0.19,1,1 +1,0.0495,0.34,0.34,0,0,0.78,0.78,0.78,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0392,1,0.203,0.00507,0.203,0.203,0.018,0.018,0.23,0.23,1,1 +1,0.0495,0.34,0.34,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0196,1,0.168,0.00507,0.168,0.168,0.018,0.018,0.19,0.19,1,1 +1,0.0495,0.331,0.331,0,0,0.74,0.74,0.74,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0152,1,0.133,0.0101,0.133,0.133,0.024,0.024,0.23,0.23,1,1 +0.667,0.0495,0.304,0.304,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0239,1,0.141,0.0355,0.141,0.141,0.0479,0.0479,0.372,0.373,0.667,1 +1,0.0768,0.331,0.331,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0,0,0,0.282,0.446,0.0392,1,0.159,0.0609,0.159,0.159,0.0898,0.0898,0.531,0.532,0.667,1 +0.667,0.0495,0.396,0.396,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0631,1,0.23,0.147,0.23,0.23,0.156,0.156,0.452,0.452,0.667,1 +0.667,0.163,0.432,0.432,0,0.0853,0.8,0.8,0.8,0,0,0,0,0,0,0,0.024,0,0.024,0.316,0.483,0.087,1,0.292,0.233,0.292,0.292,0.263,0.263,0.19,0.19,0.333,1 +0.333,0.162,0.313,0.313,0,0.0244,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0.017,0.017,0.276,0.487,0.107,1,0.292,0.223,0.292,0.292,0.503,0.503,0.19,0.19,0,1 +0,0.0495,0.212,0.212,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0.017,0.017,0.258,0.465,0.126,1,0.283,0.208,0.283,0.283,0.725,0.725,0.151,0.151,0,1 +0,0.0495,0.221,0.221,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.141,1,0.292,0.223,0.292,0.292,0.761,0.761,0.119,0.119,0,1 +0.333,0.147,0.23,0.23,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0.00852,0.00852,0.248,0.491,0.157,1,0.292,0.233,0.292,0.292,0.725,0.725,0.111,0.111,0,1 +0,0.0495,0.221,0.221,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0.017,0.017,0.258,0.465,0.165,1,0.283,0.213,0.283,0.283,0.719,0.719,0.111,0.111,0,1 +0,0.0495,0.258,0.258,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.187,1,0.283,0.193,0.283,0.283,0.539,0.539,0.111,0.111,0,1 +0.333,0.142,0.285,0.285,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0,0,0.267,0.491,0.198,1,0.283,0.249,0.283,0.283,0.449,0.449,0.19,0.19,0,1 +0,0.0495,0.294,0.294,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.222,1,0.292,0.299,0.292,0.292,0.365,0.365,0.46,0.46,0,1 +0.333,0.144,0.359,0.359,0,0,0.88,0.88,0.88,0,0,0,0,0,0,0,0,0,0,0.291,0.507,0.276,1,0.398,0.558,0.398,0.398,0.222,0.222,0.998,1,0,1 +0.667,0.252,0.488,0.488,0,0,0.96,0.96,0.96,0,0,0,0,0,0,0,0.0144,0.00852,0.0229,0.411,0.582,0.339,1,0.504,0.817,0.504,0.504,0.138,0.138,0.967,0.968,0,1 +0.667,0.289,0.58,0.58,0,0,1,1,1,0,0,0,0,0,0,0,0.0245,0.00284,0.0274,0.472,0.591,0.457,1,0.584,0.583,0.584,0.584,0.0779,0.0779,0.539,0.54,0,1 +0.667,0.362,0.616,0.616,0,0,0.96,0.96,0.96,0,0,0,0,0,0,0,0.0466,0,0.0466,0.497,0.566,0.64,1,0.672,0.355,0.672,0.672,0.0479,0.0479,0.483,0.484,0,1 +1,0.668,0.653,0.653,0,0,0.94,0.94,0.94,0,0,0,0,0,0,0,0.0261,0,0.0261,0.653,0.579,0.79,1,0.716,0.223,0.716,0.716,0.024,0.024,0.404,0.405,0,1 +1,0.788,0.635,0.635,0,0,0.92,0.92,0.92,0.0168,0.0653,0,0,0,0,0,0.0159,0.00568,0.0216,0.635,0.555,0.749,1,0.761,0.0964,0.761,0.761,0.018,0.018,0.341,0.341,0,1 +1,0.397,0.543,0.543,0,0,0.88,0.88,0.88,0.0127,0.00637,0,0,0,0,0,0,0.00568,0.00568,0.448,0.484,0.453,1,0.663,0.066,0.663,0.663,0.018,0.018,0.19,0.19,0.333,1 +1,0.116,0.46,0.46,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0,0,0.325,0.458,0.196,1,0.575,0.0355,0.575,0.575,0.018,0.018,0.19,0.19,0.667,1 +1,0.0495,0.368,0.368,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0957,1,0.389,0.0203,0.389,0.389,0.018,0.018,0.19,0.19,1,1 +1,0.0495,0.34,0.34,0,0,0.78,0.78,0.78,0,0,0,0,0,0,0,0,0.00852,0.00852,0.258,0.465,0.0479,1,0.203,0.00507,0.203,0.203,0.018,0.018,0.23,0.23,1,1 +1,0.0495,0.34,0.34,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0261,1,0.168,0.00507,0.168,0.168,0.018,0.018,0.19,0.19,1,1 +1,0.0495,0.331,0.331,0,0,0.74,0.74,0.74,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0174,1,0.133,0.0101,0.133,0.133,0.024,0.024,0.23,0.23,1,1 +1,0.0495,0.304,0.304,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0239,1,0.141,0.0355,0.141,0.141,0.0479,0.0479,0.372,0.373,1,1 +1,0.0495,0.331,0.331,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0305,1,0.159,0.0609,0.159,0.159,0.0898,0.0898,0.531,0.532,1,1 +1,0.0495,0.396,0.396,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0522,1,0.23,0.147,0.23,0.23,0.156,0.156,0.452,0.452,1,1 +1,0.0495,0.432,0.432,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0936,1,0.292,0.233,0.292,0.292,0.263,0.263,0.19,0.19,1,1 +1,0.0495,0.313,0.313,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.155,1,0.292,0.223,0.292,0.292,0.503,0.503,0.19,0.19,1,1 +1,0.263,0.212,0.212,0,0,0.82,0.82,0.82,0,0,0.016,0,0,0,0,0,0,0,0.227,0.508,0.205,1,0.283,0.208,0.283,0.283,0.725,0.725,0.151,0.151,0.333,1 +1,0.256,0.221,0.221,0,0,0.8,0.8,0.8,0,0,0.0349,0.0158,0,0,0,0,0,0,0.233,0.508,0.244,1,0.292,0.223,0.292,0.292,0.761,0.761,0.119,0.119,0.333,1 +0.667,0.147,0.23,0.23,0,0,0.8,0.8,0.8,0,0,0.0221,0,0.33,0.33,0,0,0,0,0.248,0.491,0.268,1,0.292,0.233,0.292,0.292,0.725,0.725,0.111,0.111,0.333,1 +0.667,0.143,0.221,0.221,0,0,0.84,0.84,0.84,0,0,0.0363,0,0.0367,0.0367,0,0,0,0,0.245,0.495,0.287,1,0.283,0.213,0.283,0.283,0.719,0.719,0.111,0.111,0.333,1 +0.667,0.142,0.258,0.258,0,0,0.84,0.84,0.84,0,0,0.0228,0,0,0,0,0,0.00284,0.00284,0.258,0.495,0.339,1,0.283,0.193,0.283,0.283,0.539,0.539,0.111,0.111,0.333,1 +0.667,0.142,0.285,0.285,0,0,0.84,0.84,0.84,0,0,0.0231,0,0,0,0,0,0,0,0.267,0.491,0.387,1,0.283,0.249,0.283,0.283,0.449,0.449,0.19,0.19,0.333,1 +0.333,0.143,0.294,0.294,0,0,0.82,0.82,0.82,0,0,0.0324,0,0,0,0,0,0.0114,0.0114,0.27,0.499,0.427,1,0.292,0.299,0.292,0.292,0.365,0.365,0.46,0.46,0,1 +0.333,0.144,0.359,0.359,0,0,0.88,0.88,0.88,0,0,0.00926,0,0,0,0,0,0.00852,0.00852,0.291,0.507,0.448,1,0.398,0.558,0.398,0.398,0.222,0.222,0.998,1,0,1 +0.333,0.151,0.488,0.488,0,0,0.96,0.96,0.96,0,0,0,0,0,0,0,0.0336,0.0199,0.0534,0.334,0.524,0.464,1,0.504,0.817,0.504,0.504,0.138,0.138,0.967,0.968,0,1 +0.667,0.289,0.58,0.58,0,0.0366,1,1,1,0,0,0,0,0,0,0,0,0.0227,0.0227,0.472,0.591,0.546,1,0.584,0.583,0.584,0.584,0.0779,0.0779,0.539,0.54,0,1 +1,0.518,0.616,0.616,0,0,0.96,0.96,0.96,0.0124,0.0653,0,0,0,0,0,0,0,0,0.616,0.616,0.718,1,0.672,0.355,0.672,0.672,0.0479,0.0479,0.483,0.484,0,1 +1,0.462,0.653,0.653,0,0,0.94,0.94,0.94,0.0268,0.0302,0,0,0,0,0,0,0.00568,0.00568,0.521,0.541,0.844,1,0.716,0.223,0.716,0.716,0.024,0.024,0.404,0.405,0.333,1 +1,0.542,0.635,0.635,0,0,0.92,0.92,0.92,0.00904,0,0,0,0,0,0,0,0.00852,0.00852,0.509,0.525,0.779,1,0.761,0.0964,0.761,0.761,0.018,0.018,0.341,0.341,0.333,1 +1,0.397,0.543,0.543,0,0,0.88,0.88,0.88,0,0,0,0,0,0,0,0,0.0142,0.0142,0.448,0.484,0.492,1,0.663,0.066,0.663,0.663,0.018,0.018,0.19,0.19,0.333,1 +1,0.116,0.46,0.46,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0.00284,0.00284,0.325,0.458,0.224,1,0.575,0.0355,0.575,0.575,0.018,0.018,0.19,0.19,0.667,1 +1,0.0495,0.368,0.368,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0957,1,0.389,0.0203,0.389,0.389,0.018,0.018,0.19,0.19,1,1 +1,0.0495,0.34,0.34,0,0,0.78,0.78,0.78,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0479,1,0.203,0.00507,0.203,0.203,0.018,0.018,0.23,0.23,1,1 +1,0.0495,0.34,0.34,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0261,1,0.168,0.00507,0.168,0.168,0.018,0.018,0.19,0.19,1,1 +1,0.0495,0.331,0.331,0,0,0.74,0.74,0.74,0,0,0,0,0,0,0,0.00266,0,0.00266,0.258,0.465,0.0174,1,0.133,0.0101,0.133,0.133,0.024,0.024,0.23,0.23,1,1 +1,0.05,0.304,0.304,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0.016,0,0.016,0.273,0.442,0.0239,1,0.141,0.0355,0.141,0.141,0.0479,0.0479,0.372,0.373,0.667,1 +0.667,0.0495,0.331,0.331,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0305,1,0.159,0.0609,0.159,0.159,0.0898,0.0898,0.531,0.532,0.667,1 +0.667,0.0495,0.396,0.396,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0522,1,0.23,0.147,0.23,0.23,0.156,0.156,0.452,0.452,0.667,1 +0.667,0.0495,0.432,0.432,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0936,1,0.292,0.233,0.292,0.292,0.263,0.263,0.19,0.19,0.667,1 +0.667,0.0495,0.313,0.313,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.465,0.155,1,0.292,0.223,0.292,0.292,0.503,0.503,0.19,0.19,0.667,1 +0.667,0.156,0.212,0.212,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0,0,0.242,0.487,0.205,1,0.283,0.208,0.283,0.283,0.725,0.725,0.151,0.151,0.333,1 +0.667,0.256,0.221,0.221,0,0.0366,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0,0,0.233,0.508,0.244,1,0.292,0.223,0.292,0.292,0.761,0.761,0.119,0.119,0,1 +0.667,0.245,0.23,0.23,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0,0,0.239,0.517,0.268,1,0.292,0.233,0.292,0.292,0.725,0.725,0.111,0.111,0,1 +0.667,0.237,0.221,0.221,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0,0,0.233,0.525,0.287,1,0.283,0.213,0.283,0.283,0.719,0.719,0.111,0.111,0,1 +0.667,0.235,0.258,0.258,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0,0,0.258,0.525,0.339,1,0.283,0.193,0.283,0.283,0.539,0.539,0.111,0.111,0,1 +0.667,0.235,0.285,0.285,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0,0,0.276,0.517,0.387,1,0.283,0.249,0.283,0.283,0.449,0.449,0.19,0.19,0,1 +0.667,0.236,0.294,0.294,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0,0,0.282,0.533,0.427,1,0.292,0.299,0.292,0.292,0.365,0.365,0.46,0.46,0,1 +1,0.334,0.359,0.359,0,0,0.88,0.88,0.88,0,0,0,0,0,0,0,0,0,0,0.359,0.592,0.448,1,0.398,0.558,0.398,0.398,0.222,0.222,0.998,1,0,1 +1,0.353,0.488,0.488,0,0,0.96,0.96,0.96,0,0,0,0,0,0,0,0,0.0227,0.0227,0.488,0.641,0.464,1,0.504,0.817,0.504,0.504,0.138,0.138,0.967,0.968,0,1 +1,0.408,0.58,0.58,0,0,1,1,1,0,0,0,0,0,0,0,0.0175,0.0199,0.0373,0.58,0.653,0.546,1,0.584,0.583,0.584,0.584,0.0779,0.0779,0.539,0.54,0,1 +1,0.518,0.616,0.616,0,0,0.96,0.96,0.96,0,0,0,0,0,0,0,0.0221,0.0114,0.0335,0.616,0.616,0.718,1,0.672,0.355,0.672,0.672,0.0479,0.0479,0.483,0.484,0,1 +1,0.668,0.653,0.653,0,0,0.94,0.94,0.94,0,0,0,0,0,0,0,0,0.00852,0.00852,0.653,0.579,0.844,1,0.716,0.223,0.716,0.716,0.024,0.024,0.404,0.405,0,1 +1,0.788,0.635,0.635,0,0.0853,0.92,0.92,0.92,0,0,0,0,0,0,0,0,0,0,0.635,0.555,0.779,1,0.761,0.0964,0.761,0.761,0.018,0.018,0.341,0.341,0,1 +1,0.571,0.543,0.543,0,0.134,0.88,0.88,0.88,0,0,0.00926,0,0,0,0,0.0127,0.00284,0.0156,0.543,0.493,0.492,1,0.663,0.066,0.663,0.663,0.018,0.018,0.19,0.19,0,1 +1,0.183,0.46,0.46,0,0,0.82,0.82,0.82,0,0,0.0311,0.0158,0,0,0,0.00274,0,0.00274,0.393,0.451,0.224,1,0.575,0.0355,0.575,0.575,0.018,0.018,0.19,0.19,0.333,1 +1,0.099,0.368,0.368,0,0,0.8,0.8,0.8,0,0,0.0438,0,0.0917,0.0917,0,0.0192,0,0.0192,0.331,0.443,0.0805,1,0.389,0.0203,0.389,0.389,0.018,0.018,0.19,0.19,0.333,1 +1,0.0578,0.34,0.34,0,0,0.78,0.78,0.78,0,0,0,0,0,0,0,0,0,0,0.285,0.446,0.0392,1,0.203,0.00507,0.203,0.203,0.018,0.018,0.23,0.23,0.667,1 +1,0.0495,0.34,0.34,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0,0.00284,0.00284,0.285,0.442,0.0196,1,0.168,0.00507,0.168,0.168,0.018,0.018,0.19,0.19,0.667,1 +1,0.0495,0.331,0.331,0,0,0.74,0.74,0.74,0,0,0,0,0,0,0,0.0493,0,0.0493,0.282,0.438,0.0152,1,0.133,0.0101,0.133,0.133,0.024,0.024,0.23,0.23,0.667,1 +1,0.0495,0.304,0.304,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0.0102,0.00568,0.0159,0.258,0.465,0.0239,1,0.141,0.0355,0.141,0.141,0.0479,0.0479,0.372,0.373,1,1 +1,0.0495,0.331,0.331,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0.0162,0,0.0162,0.258,0.465,0.0392,1,0.159,0.0609,0.159,0.159,0.0898,0.0898,0.531,0.532,1,1 +1,0.222,0.396,0.396,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0.0358,0.0172,0,0.053,0.35,0.459,0.0631,1,0.23,0.147,0.23,0.23,0.156,0.156,0.452,0.452,0.333,1 +1,0.39,0.432,0.432,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0.0177,0,0.0177,0.432,0.518,0.087,1,0.292,0.233,0.292,0.292,0.263,0.263,0.19,0.19,0,1 +0.333,0.162,0.313,0.313,0,0,0.82,0.82,0.82,0.0121,0.0653,0,0,0,0,0,0,0,0,0.276,0.487,0.107,1,0.292,0.223,0.292,0.292,0.503,0.503,0.19,0.19,0,1 +0.333,0.156,0.212,0.212,0,0,0.82,0.82,0.82,0.00955,0.00637,0,0,0,0,0,0.028,0.00284,0.0308,0.242,0.487,0.126,1,0.283,0.208,0.283,0.283,0.725,0.725,0.151,0.151,0,1 +0.333,0.153,0.221,0.221,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0.0467,0,0.0467,0.245,0.487,0.141,1,0.292,0.223,0.292,0.292,0.761,0.761,0.119,0.119,0,1 +0,0.0495,0.23,0.23,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0.00568,0.00568,0.258,0.465,0.157,1,0.292,0.233,0.292,0.292,0.725,0.725,0.111,0.111,0,1 +0.333,0.143,0.221,0.221,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0.017,0.017,0.245,0.495,0.165,1,0.283,0.213,0.283,0.283,0.719,0.719,0.111,0.111,0,1 +0.333,0.142,0.258,0.258,0,0.0366,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0.0114,0.0114,0.258,0.495,0.187,1,0.283,0.193,0.283,0.283,0.539,0.539,0.111,0.111,0,1 +0.333,0.142,0.285,0.285,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0.00568,0.00568,0.267,0.491,0.198,1,0.283,0.249,0.283,0.283,0.449,0.449,0.19,0.19,0,1 +0.667,0.236,0.294,0.294,0,0.0731,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0,0,0.282,0.533,0.222,1,0.292,0.299,0.292,0.292,0.365,0.365,0.46,0.46,0,1 +0.333,0.144,0.359,0.359,0,0,0.88,0.88,0.88,0,0,0,0,0,0,0,0,0,0,0.291,0.507,0.276,1,0.398,0.558,0.398,0.398,0.222,0.222,0.998,1,0,1 +0.667,0.252,0.488,0.488,0,0.0366,0.96,0.96,0.96,0.00483,0.0175,0,0,0,0,0,0,0.0227,0.0227,0.411,0.582,0.339,1,0.504,0.817,0.504,0.504,0.138,0.138,0.967,0.968,0,1 +1,0.408,0.58,0.58,0,0.0366,1,1,1,0.0225,0.0302,0,0,0,0,0,0,0.017,0.017,0.58,0.653,0.457,1,0.584,0.583,0.584,0.584,0.0779,0.0779,0.539,0.54,0,1 +1,0.518,0.616,0.616,0,0,0.96,0.96,0.96,0,0,0,0,0,0,0,0,0,0,0.616,0.616,0.64,1,0.672,0.355,0.672,0.672,0.0479,0.0479,0.483,0.484,0,1 +1,0.668,0.653,0.653,0,0,0.94,0.94,0.94,0,0,0,0,0,0,0,0.00236,0,0.00236,0.653,0.579,0.79,1,0.716,0.223,0.716,0.716,0.024,0.024,0.404,0.405,0,1 +1,0.788,0.635,0.635,0,0,0.92,0.92,0.92,0,0,0,0,0,0,0,0.0145,0.00284,0.0173,0.635,0.555,0.749,1,0.761,0.0964,0.761,0.761,0.018,0.018,0.341,0.341,0,1 +1,0.571,0.543,0.543,0,0,0.88,0.88,0.88,0,0,0,0,0,0,0,0.016,0.0114,0.0273,0.543,0.493,0.453,1,0.663,0.066,0.663,0.663,0.018,0.018,0.19,0.19,0,1 +1,0.116,0.46,0.46,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0.00284,0.00284,0.325,0.458,0.196,1,0.575,0.0355,0.575,0.575,0.018,0.018,0.19,0.19,0.667,1 +1,0.0495,0.368,0.368,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.465,0.0805,1,0.389,0.0203,0.389,0.389,0.018,0.018,0.19,0.19,1,1 +1,0.0495,0.34,0.34,0,0,0.78,0.78,0.78,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0392,1,0.203,0.00507,0.203,0.203,0.018,0.018,0.23,0.23,1,1 +1,0.0495,0.34,0.34,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0196,1,0.168,0.00507,0.168,0.168,0.018,0.018,0.19,0.19,1,1 +1,0.0495,0.331,0.331,0,0,0.74,0.74,0.74,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0152,1,0.133,0.0101,0.133,0.133,0.024,0.024,0.23,0.23,1,1 +1,0.0495,0.304,0.304,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0239,1,0.141,0.0355,0.141,0.141,0.0479,0.0479,0.372,0.373,1,1 +0.667,0.0495,0.331,0.331,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0392,1,0.159,0.0609,0.159,0.159,0.0898,0.0898,0.531,0.532,0.667,1 +0.667,0.0495,0.396,0.396,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0.0221,0,0.0221,0.258,0.465,0.0631,1,0.23,0.147,0.23,0.23,0.156,0.156,0.452,0.452,0.667,1 +0.333,0.0495,0.432,0.432,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.087,1,0.292,0.233,0.292,0.292,0.263,0.263,0.19,0.19,0.333,1 +0.333,0.0495,0.313,0.313,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.107,1,0.292,0.223,0.292,0.292,0.503,0.503,0.19,0.19,0.333,1 +0.333,0.0495,0.212,0.212,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.126,1,0.283,0.208,0.283,0.283,0.725,0.725,0.151,0.151,0.333,1 +0,0.0495,0.221,0.221,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.141,1,0.292,0.223,0.292,0.292,0.761,0.761,0.119,0.119,0,1 +0.333,0.147,0.23,0.23,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0,0,0.248,0.491,0.157,1,0.292,0.233,0.292,0.292,0.725,0.725,0.111,0.111,0,1 +0.333,0.143,0.221,0.221,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0,0,0.245,0.495,0.165,1,0.283,0.213,0.283,0.283,0.719,0.719,0.111,0.111,0,1 +0.333,0.142,0.258,0.258,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0,0,0.258,0.495,0.187,1,0.283,0.193,0.283,0.283,0.539,0.539,0.111,0.111,0,1 +0.333,0.142,0.285,0.285,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0,0,0.267,0.491,0.198,1,0.283,0.249,0.283,0.283,0.449,0.449,0.19,0.19,0,1 +0.333,0.143,0.294,0.294,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0.00284,0.00284,0.27,0.499,0.222,1,0.292,0.299,0.292,0.292,0.365,0.365,0.46,0.46,0,1 +0.333,0.144,0.359,0.359,0,0,0.88,0.88,0.88,0,0,0,0,0,0,0,0.0187,0.00568,0.0243,0.291,0.507,0.276,1,0.398,0.558,0.398,0.398,0.222,0.222,0.998,1,0,1 +1,0.353,0.488,0.488,0,0,0.96,0.96,0.96,0,0,0,0,0,0,0,0,0.00852,0.00852,0.488,0.641,0.339,1,0.504,0.817,0.504,0.504,0.138,0.138,0.967,0.968,0,1 +1,0.408,0.58,0.58,0,0.0366,1,1,1,0.0127,0.0653,0,0,0,0,0,0,0.00568,0.00568,0.58,0.653,0.457,1,0.584,0.583,0.584,0.584,0.0779,0.0779,0.539,0.54,0,1 +1,0.518,0.616,0.616,0,0,0.96,0.96,0.96,0.00871,0.00637,0,0,0,0,0,0,0.00568,0.00568,0.616,0.616,0.64,1,0.672,0.355,0.672,0.672,0.0479,0.0479,0.483,0.484,0,1 +1,0.668,0.653,0.653,0,0,0.94,0.94,0.94,0,0,0,0,0,0,0,0.0172,0,0.0172,0.653,0.579,0.79,1,0.716,0.223,0.716,0.716,0.024,0.024,0.404,0.405,0,1 +1,0.788,0.635,0.635,0,0,0.92,0.92,0.92,0,0,0,0,0,0,0,0.0255,0.00568,0.0312,0.635,0.555,0.749,1,0.761,0.0964,0.761,0.761,0.018,0.018,0.341,0.341,0,1 +1,0.571,0.543,0.543,0,0,0.88,0.88,0.88,0,0,0,0,0,0,0,0.011,0.00284,0.0138,0.543,0.493,0.453,1,0.663,0.066,0.663,0.663,0.018,0.018,0.19,0.19,0,1 +1,0.183,0.46,0.46,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0.00568,0.00568,0.393,0.451,0.196,1,0.575,0.0355,0.575,0.575,0.018,0.018,0.19,0.19,0.333,1 +1,0.0743,0.368,0.368,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0,0,0.294,0.454,0.0805,1,0.389,0.0203,0.389,0.389,0.018,0.018,0.19,0.19,0.667,1 +1,0.0578,0.34,0.34,0,0,0.78,0.78,0.78,0,0,0,0,0,0,0,0,0,0,0.285,0.446,0.0392,1,0.203,0.00507,0.203,0.203,0.018,0.018,0.23,0.23,0.667,1 +1,0.0495,0.34,0.34,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0196,1,0.168,0.00507,0.168,0.168,0.018,0.018,0.19,0.19,1,1 +1,0.0495,0.331,0.331,0,0,0.74,0.74,0.74,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0152,1,0.133,0.0101,0.133,0.133,0.024,0.024,0.23,0.23,1,1 +1,0.0495,0.304,0.304,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0239,1,0.141,0.0355,0.141,0.141,0.0479,0.0479,0.372,0.373,1,1 +1,0.0495,0.331,0.331,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0392,1,0.159,0.0609,0.159,0.159,0.0898,0.0898,0.531,0.532,1,1 +1,0.136,0.396,0.396,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0.00253,0,0.00253,0.304,0.462,0.0631,1,0.23,0.147,0.23,0.23,0.156,0.156,0.452,0.452,0.667,1 +1,0.163,0.432,0.432,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0.0397,0,0.0397,0.316,0.483,0.087,1,0.292,0.233,0.292,0.292,0.263,0.263,0.19,0.19,0.667,1 +1,0.387,0.313,0.313,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0.016,0,0.016,0.313,0.53,0.107,1,0.292,0.223,0.292,0.292,0.503,0.503,0.19,0.19,0,1 +0.333,0.156,0.212,0.212,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0.0102,0,0.0102,0.242,0.487,0.126,1,0.283,0.208,0.283,0.283,0.725,0.725,0.151,0.151,0,1 +0.333,0.153,0.221,0.221,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0.0142,0.0142,0.245,0.487,0.141,1,0.292,0.223,0.292,0.292,0.761,0.761,0.119,0.119,0,1 +0.333,0.147,0.23,0.23,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0,0,0.248,0.491,0.157,1,0.292,0.233,0.292,0.292,0.725,0.725,0.111,0.111,0,1 +0.333,0.143,0.221,0.221,0,0.0366,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0.0199,0.0199,0.245,0.495,0.165,1,0.283,0.213,0.283,0.283,0.719,0.719,0.111,0.111,0,1 +0.333,0.142,0.258,0.258,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0.00852,0.00852,0.258,0.495,0.187,1,0.283,0.193,0.283,0.283,0.539,0.539,0.111,0.111,0,1 +0.333,0.142,0.285,0.285,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0.00284,0.00284,0.267,0.491,0.198,1,0.283,0.249,0.283,0.283,0.449,0.449,0.19,0.19,0,1 +0.333,0.143,0.294,0.294,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0.00284,0.00284,0.27,0.499,0.222,1,0.292,0.299,0.292,0.292,0.365,0.365,0.46,0.46,0,1 +0.333,0.144,0.359,0.359,0,0,0.88,0.88,0.88,0,0,0,0,0,0,0,0,0,0,0.291,0.507,0.276,1,0.398,0.558,0.398,0.398,0.222,0.222,0.998,1,0,1 +0.333,0.151,0.488,0.488,0,0,0.96,0.96,0.96,0,0,0,0,0,0,0,0,0.00852,0.00852,0.334,0.524,0.339,1,0.504,0.817,0.504,0.504,0.138,0.138,0.967,0.968,0,1 +0.667,0.289,0.58,0.58,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0.472,0.591,0.457,1,0.584,0.583,0.584,0.584,0.0779,0.0779,0.539,0.54,0,1 +0.667,0.362,0.616,0.616,0,0,0.96,0.96,0.96,0,0,0,0,0,0,0,0,0.00852,0.00852,0.497,0.566,0.64,1,0.672,0.355,0.672,0.672,0.0479,0.0479,0.483,0.484,0,1 +1,0.668,0.653,0.653,0,0,0.94,0.94,0.94,0,0,0,0,0,0,0,0.0141,0.00284,0.017,0.653,0.579,0.79,1,0.716,0.223,0.716,0.716,0.024,0.024,0.404,0.405,0,1 +1,0.788,0.635,0.635,0,0,0.92,0.92,0.92,0,0,0,0,0,0,0,0,0.00852,0.00852,0.635,0.555,0.749,1,0.761,0.0964,0.761,0.761,0.018,0.018,0.341,0.341,0,1 +1,0.571,0.543,0.543,0,0,0.88,0.88,0.88,0,0,0,0,0,0,0,0,0,0,0.543,0.493,0.453,1,0.663,0.066,0.663,0.663,0.018,0.018,0.19,0.19,0,1 +1,0.0495,0.46,0.46,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.465,0.196,1,0.575,0.0355,0.575,0.575,0.018,0.018,0.19,0.19,1,1 +1,0.0495,0.368,0.368,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0805,1,0.389,0.0203,0.389,0.389,0.018,0.018,0.19,0.19,1,1 +1,0.0495,0.34,0.34,0,0,0.78,0.78,0.78,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0392,1,0.203,0.00507,0.203,0.203,0.018,0.018,0.23,0.23,1,1 +1,0.0495,0.34,0.34,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0196,1,0.168,0.00507,0.168,0.168,0.018,0.018,0.19,0.19,1,1 +1,0.0495,0.331,0.331,0,0,0.74,0.74,0.74,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0152,1,0.133,0.0101,0.133,0.133,0.024,0.024,0.23,0.23,1,1 +1,0.0495,0.304,0.304,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0239,1,0.141,0.0355,0.141,0.141,0.0479,0.0479,0.372,0.373,1,1 +1,0.0495,0.331,0.331,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0.00255,0,0.00255,0.258,0.465,0.0392,1,0.159,0.0609,0.159,0.159,0.0898,0.0898,0.531,0.532,1,1 +1,0.222,0.396,0.396,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0.0554,0.0411,0,0.0965,0.35,0.459,0.0631,1,0.23,0.147,0.23,0.23,0.156,0.156,0.452,0.452,0.333,1 +1,0.39,0.432,0.432,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0.0324,0,0.0324,0.432,0.518,0.087,1,0.292,0.233,0.292,0.292,0.263,0.263,0.19,0.19,0,1 +0.667,0.274,0.313,0.313,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0.016,0,0.016,0.294,0.508,0.107,1,0.292,0.223,0.292,0.292,0.503,0.503,0.19,0.19,0,1 +0.667,0.263,0.212,0.212,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0.0298,0,0.0298,0.227,0.508,0.126,1,0.283,0.208,0.283,0.283,0.725,0.725,0.151,0.151,0,1 +0.667,0.256,0.221,0.221,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0.00568,0.00568,0.233,0.508,0.141,1,0.292,0.223,0.292,0.292,0.761,0.761,0.119,0.119,0,1 +0.333,0.147,0.23,0.23,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0,0,0.248,0.491,0.157,1,0.292,0.233,0.292,0.292,0.725,0.725,0.111,0.111,0,1 +0.333,0.143,0.221,0.221,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0.00284,0.00284,0.245,0.495,0.165,1,0.283,0.213,0.283,0.283,0.719,0.719,0.111,0.111,0,1 +0.333,0.142,0.258,0.258,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0.00852,0.00852,0.258,0.495,0.187,1,0.283,0.193,0.283,0.283,0.539,0.539,0.111,0.111,0,1 +0.333,0.142,0.285,0.285,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0.00568,0.00568,0.267,0.491,0.198,1,0.283,0.249,0.283,0.283,0.449,0.449,0.19,0.19,0,1 +0.333,0.143,0.294,0.294,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0,0,0.27,0.499,0.222,1,0.292,0.299,0.292,0.292,0.365,0.365,0.46,0.46,0,1 +0.333,0.144,0.359,0.359,0,0,0.88,0.88,0.88,0,0,0,0,0,0,0,0,0,0,0.291,0.507,0.276,1,0.398,0.558,0.398,0.398,0.222,0.222,0.998,1,0,1 +0.333,0.151,0.488,0.488,0,0,0.96,0.96,0.96,0,0,0,0,0,0,0,0,0.00568,0.00568,0.334,0.524,0.339,1,0.504,0.817,0.504,0.504,0.138,0.138,0.967,0.968,0,1 +0.333,0.169,0.58,0.58,0,0,1,1,1,0,0,0,0,0,0,0,0,0.017,0.017,0.365,0.528,0.457,1,0.584,0.583,0.584,0.584,0.0779,0.0779,0.539,0.54,0,1 +0.333,0.206,0.616,0.616,0,0,0.96,0.96,0.96,0,0,0,0,0,0,0,0.00258,0.00568,0.00826,0.377,0.516,0.64,1,0.672,0.355,0.672,0.672,0.0479,0.0479,0.483,0.484,0,1 +0.333,0.256,0.653,0.653,0,0,0.94,0.94,0.94,0,0,0,0,0,0,0,0.0103,0.00284,0.0132,0.39,0.503,0.79,1,0.716,0.223,0.716,0.716,0.024,0.024,0.404,0.405,0,1 +0.667,0.542,0.635,0.635,0,0,0.92,0.92,0.92,0,0,0,0,0,0,0,0.00264,0,0.00264,0.509,0.525,0.749,1,0.761,0.0964,0.761,0.761,0.018,0.018,0.341,0.341,0,1 +1,0.571,0.543,0.543,0,0,0.88,0.88,0.88,0,0,0,0,0,0,0,0.0272,0.0114,0.0386,0.543,0.493,0.453,1,0.663,0.066,0.663,0.663,0.018,0.018,0.19,0.19,0,1 +1,0.116,0.46,0.46,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0.0241,0,0.0241,0.325,0.458,0.196,1,0.575,0.0355,0.575,0.575,0.018,0.018,0.19,0.19,0.667,1 +1,0.0495,0.368,0.368,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.465,0.0805,1,0.389,0.0203,0.389,0.389,0.018,0.018,0.19,0.19,1,1 +1,0.0495,0.34,0.34,0,0,0.78,0.78,0.78,0,0,0,0,0,0,0,0,0.00568,0.00568,0.258,0.465,0.0392,1,0.203,0.00507,0.203,0.203,0.018,0.018,0.23,0.23,1,1 +1,0.0495,0.34,0.34,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0196,1,0.168,0.00507,0.168,0.168,0.018,0.018,0.19,0.19,1,1 +1,0.0495,0.331,0.331,0,0,0.74,0.74,0.74,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0152,1,0.133,0.0101,0.133,0.133,0.024,0.024,0.23,0.23,1,1 +1,0.05,0.304,0.304,0,0.0366,0.72,0.72,0.72,0,0,0,0,0,0,0,0.0119,0,0.0119,0.273,0.442,0.0239,1,0.141,0.0355,0.141,0.141,0.0479,0.0479,0.372,0.373,0.667,1 +1,0.104,0.331,0.331,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0.032,0,0.032,0.307,0.426,0.0392,1,0.159,0.0609,0.159,0.159,0.0898,0.0898,0.531,0.532,0.333,1 +1,0.308,0.396,0.396,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0.0395,0,0.0395,0.396,0.456,0.0631,1,0.23,0.147,0.23,0.23,0.156,0.156,0.452,0.452,0,1 +1,0.39,0.432,0.432,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0.0291,0,0.0291,0.432,0.518,0.087,1,0.292,0.233,0.292,0.292,0.263,0.263,0.19,0.19,0,1 +0.667,0.274,0.313,0.313,0,0.0122,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0.0114,0.0114,0.294,0.508,0.107,1,0.292,0.223,0.292,0.292,0.503,0.503,0.19,0.19,0,1 +0.667,0.263,0.212,0.212,0,0.0244,0.82,0.82,0.82,0.0161,0.0891,0,0,0,0,0,0,0.0114,0.0114,0.227,0.508,0.126,1,0.283,0.208,0.283,0.283,0.725,0.725,0.151,0.151,0,1 +0,0.0495,0.221,0.221,0,0,0.8,0.8,0.8,0,0.00637,0,0,0,0,0,0,0,0,0.258,0.465,0.141,1,0.292,0.223,0.292,0.292,0.761,0.761,0.119,0.119,0,1 +0.333,0.147,0.23,0.23,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0,0,0.248,0.491,0.157,1,0.292,0.233,0.292,0.292,0.725,0.725,0.111,0.111,0,1 +0.333,0.143,0.221,0.221,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0.00284,0.00284,0.245,0.495,0.165,1,0.283,0.213,0.283,0.283,0.719,0.719,0.111,0.111,0,1 +0.333,0.142,0.258,0.258,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.495,0.187,1,0.283,0.193,0.283,0.283,0.539,0.539,0.111,0.111,0,1 +0.333,0.142,0.285,0.285,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0,0,0.267,0.491,0.198,1,0.283,0.249,0.283,0.283,0.449,0.449,0.19,0.19,0,1 +0.333,0.143,0.294,0.294,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0,0,0.27,0.499,0.222,1,0.292,0.299,0.292,0.292,0.365,0.365,0.46,0.46,0,1 +0,0.0495,0.359,0.359,0,0,0.88,0.88,0.88,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.276,1,0.398,0.558,0.398,0.398,0.222,0.222,0.998,1,0,1 +0.667,0.252,0.488,0.488,0,0.0366,0.96,0.96,0.96,0,0,0,0,0,0,0,0,0.0114,0.0114,0.411,0.582,0.339,1,0.504,0.817,0.504,0.504,0.138,0.138,0.967,0.968,0,1 +1,0.408,0.58,0.58,0,0,1,1,1,0,0,0,0,0,0,0,0,0.00852,0.00852,0.58,0.653,0.457,1,0.584,0.583,0.584,0.584,0.0779,0.0779,0.539,0.54,0,1 +1,0.518,0.616,0.616,0,0,0.96,0.96,0.96,0.00432,0.0175,0,0,0,0,0,0,0.0199,0.0199,0.616,0.616,0.64,1,0.672,0.355,0.672,0.672,0.0479,0.0479,0.483,0.484,0,1 +1,0.668,0.653,0.653,0,0,0.94,0.94,0.94,0.0239,0.078,0,0,0,0,0,0,0,0,0.653,0.579,0.79,1,0.716,0.223,0.716,0.716,0.024,0.024,0.404,0.405,0,1 +1,0.788,0.635,0.635,0,0,0.92,0.92,0.92,0.00781,0,0,0,0,0,0,0,0.00284,0.00284,0.635,0.555,0.749,1,0.761,0.0964,0.761,0.761,0.018,0.018,0.341,0.341,0,1 +1,0.397,0.543,0.543,0,0,0.88,0.88,0.88,0,0,0,0,0,0,0,0,0.0255,0.0255,0.448,0.484,0.453,1,0.663,0.066,0.663,0.663,0.018,0.018,0.19,0.19,0.333,1 +1,0.0495,0.46,0.46,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0.0142,0.0142,0.258,0.465,0.196,1,0.575,0.0355,0.575,0.575,0.018,0.018,0.19,0.19,1,1 +1,0.0495,0.368,0.368,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0.0227,0.0227,0.258,0.465,0.0957,1,0.389,0.0203,0.389,0.389,0.018,0.018,0.19,0.19,1,1 +1,0.0495,0.34,0.34,0,0,0.78,0.78,0.78,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0479,1,0.203,0.00507,0.203,0.203,0.018,0.018,0.23,0.23,1,1 +1,0.0495,0.34,0.34,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0261,1,0.168,0.00507,0.168,0.168,0.018,0.018,0.19,0.19,1,1 +1,0.0495,0.331,0.331,0,0,0.74,0.74,0.74,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0174,1,0.133,0.0101,0.133,0.133,0.024,0.024,0.23,0.23,1,1 +1,0.0495,0.304,0.304,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0239,1,0.141,0.0355,0.141,0.141,0.0479,0.0479,0.372,0.373,1,1 +1,0.0495,0.331,0.331,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0305,1,0.159,0.0609,0.159,0.159,0.0898,0.0898,0.531,0.532,1,1 +1,0.0495,0.396,0.396,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0522,1,0.23,0.147,0.23,0.23,0.156,0.156,0.452,0.452,1,1 +1,0.163,0.432,0.432,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0,0,0.316,0.483,0.0936,1,0.292,0.233,0.292,0.292,0.263,0.263,0.19,0.19,0.667,1 +1,0.162,0.313,0.313,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0.0362,0,0.0362,0.276,0.487,0.155,1,0.292,0.223,0.292,0.292,0.503,0.503,0.19,0.19,0.667,1 +0.667,0.0495,0.212,0.212,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.205,1,0.283,0.208,0.283,0.283,0.725,0.725,0.151,0.151,0.667,1 +0.333,0.0495,0.221,0.221,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0.00265,0,0.00265,0.258,0.465,0.244,1,0.292,0.223,0.292,0.292,0.761,0.761,0.119,0.119,0.333,1 +0.667,0.245,0.23,0.23,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0.0608,0.0114,0.0722,0.239,0.517,0.268,1,0.292,0.233,0.292,0.292,0.725,0.725,0.111,0.111,0,1 +0.333,0.143,0.221,0.221,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0.0114,0.0114,0.245,0.495,0.287,1,0.283,0.213,0.283,0.283,0.719,0.719,0.111,0.111,0,1 +0.333,0.142,0.258,0.258,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0,0,0.258,0.495,0.339,1,0.283,0.193,0.283,0.283,0.539,0.539,0.111,0.111,0,1 +0.333,0.142,0.285,0.285,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0,0,0.267,0.491,0.387,1,0.283,0.249,0.283,0.283,0.449,0.449,0.19,0.19,0,1 +0.667,0.236,0.294,0.294,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0,0,0.282,0.533,0.427,1,0.292,0.299,0.292,0.292,0.365,0.365,0.46,0.46,0,1 +0.667,0.239,0.359,0.359,0,0,0.88,0.88,0.88,0,0,0,0,0,0,0,0,0.00284,0.00284,0.325,0.549,0.448,1,0.398,0.558,0.398,0.398,0.222,0.222,0.998,1,0,1 +0.333,0.151,0.488,0.488,0,0,0.96,0.96,0.96,0,0,0.00731,0,0,0,0,0,0.00852,0.00852,0.334,0.524,0.464,1,0.504,0.817,0.504,0.504,0.138,0.138,0.967,0.968,0,1 +1,0.408,0.58,0.58,0,0,1,1,1,0,0,0.0389,0.0112,0,0,0,0,0.0199,0.0199,0.58,0.653,0.546,1,0.584,0.583,0.584,0.584,0.0779,0.0779,0.539,0.54,0,1 +1,0.518,0.616,0.616,0,0.0122,0.96,0.96,0.96,0,0,0.0361,0.00456,0.238,0.238,0,0,0.00852,0.00852,0.616,0.616,0.718,1,0.672,0.355,0.672,0.672,0.0479,0.0479,0.483,0.484,0,1 +1,0.668,0.653,0.653,0,0.0244,0.94,0.94,0.94,0,0,0.0313,0,0.128,0.128,0,0,0.00284,0.00284,0.653,0.579,0.844,1,0.716,0.223,0.716,0.716,0.024,0.024,0.404,0.405,0,1 +1,0.788,0.635,0.635,0,0,0.92,0.92,0.92,0,0,0.0142,0,0,0,0,0.0142,0.00852,0.0227,0.635,0.555,0.779,1,0.761,0.0964,0.761,0.761,0.018,0.018,0.341,0.341,0,1 +1,0.571,0.543,0.543,0,0,0.88,0.88,0.88,0,0,0,0,0,0,0,0.0303,0.017,0.0474,0.543,0.493,0.492,1,0.663,0.066,0.663,0.663,0.018,0.018,0.19,0.19,0,1 +1,0.183,0.46,0.46,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0.0219,0,0.0219,0.393,0.451,0.224,1,0.575,0.0355,0.575,0.575,0.018,0.018,0.19,0.19,0.333,1 +1,0.0743,0.368,0.368,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0.0226,0.00568,0.0283,0.294,0.454,0.0957,1,0.389,0.0203,0.389,0.389,0.018,0.018,0.19,0.19,0.667,1 +1,0.0495,0.34,0.34,0,0,0.78,0.78,0.78,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0479,1,0.203,0.00507,0.203,0.203,0.018,0.018,0.23,0.23,1,1 +1,0.0495,0.34,0.34,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.465,0.0261,1,0.168,0.00507,0.168,0.168,0.018,0.018,0.19,0.19,1,1 +1,0.0495,0.331,0.331,0,0,0.74,0.74,0.74,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0174,1,0.133,0.0101,0.133,0.133,0.024,0.024,0.23,0.23,1,1 +1,0.0495,0.304,0.304,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0239,1,0.141,0.0355,0.141,0.141,0.0479,0.0479,0.372,0.373,1,1 +1,0.0495,0.331,0.331,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0305,1,0.159,0.0609,0.159,0.159,0.0898,0.0898,0.531,0.532,1,1 +1,0.0495,0.396,0.396,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0522,1,0.23,0.147,0.23,0.23,0.156,0.156,0.452,0.452,1,1 +1,0.0495,0.432,0.432,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0936,1,0.292,0.233,0.292,0.292,0.263,0.263,0.19,0.19,1,1 +1,0.0495,0.313,0.313,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.155,1,0.292,0.223,0.292,0.292,0.503,0.503,0.19,0.19,1,1 +1,0.156,0.212,0.212,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0.0127,0,0.0127,0.242,0.487,0.205,1,0.283,0.208,0.283,0.283,0.725,0.725,0.151,0.151,0.667,1 +1,0.256,0.221,0.221,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0.0371,0,0.0371,0.233,0.508,0.244,1,0.292,0.223,0.292,0.292,0.761,0.761,0.119,0.119,0.333,1 +1,0.245,0.23,0.23,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0.0424,0,0.0424,0.239,0.517,0.268,1,0.292,0.233,0.292,0.292,0.725,0.725,0.111,0.111,0.333,1 +0.667,0.237,0.221,0.221,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0,0,0.233,0.525,0.287,1,0.283,0.213,0.283,0.283,0.719,0.719,0.111,0.111,0,1 +0.667,0.235,0.258,0.258,0,0.0366,0.84,0.84,0.84,0.0224,0.0716,0,0,0,0,0,0,0.017,0.017,0.258,0.525,0.339,1,0.283,0.193,0.283,0.283,0.539,0.539,0.111,0.111,0,1 +0.667,0.235,0.285,0.285,0,0,0.84,0.84,0.84,0.0125,0,0,0,0,0,0,0,0,0,0.276,0.517,0.387,1,0.283,0.249,0.283,0.283,0.449,0.449,0.19,0.19,0,1 +0.667,0.236,0.294,0.294,0,0,0.82,0.82,0.82,0.0177,0,0,0,0,0,0,0,0.00284,0.00284,0.282,0.533,0.427,1,0.292,0.299,0.292,0.292,0.365,0.365,0.46,0.46,0,1 +0.667,0.239,0.359,0.359,0,0,0.88,0.88,0.88,0.0285,0,0,0,0,0,0,0,0.0312,0.0312,0.325,0.549,0.448,1,0.398,0.558,0.398,0.398,0.222,0.222,0.998,1,0,1 +1,0.353,0.488,0.488,0,0,0.96,0.96,0.96,0.0177,0,0,0,0,0,0,0,0,0,0.488,0.641,0.464,1,0.504,0.817,0.504,0.504,0.138,0.138,0.967,0.968,0,1 +0.667,0.289,0.58,0.58,0,0,1,1,1,0.0192,0,0,0,0,0,0,0,0.0199,0.0199,0.472,0.591,0.546,1,0.584,0.583,0.584,0.584,0.0779,0.0779,0.539,0.54,0,1 +0.667,0.362,0.616,0.616,0,0,0.96,0.96,0.96,0.0185,0,0,0,0,0,0,0,0.0114,0.0114,0.497,0.566,0.718,1,0.672,0.355,0.672,0.672,0.0479,0.0479,0.483,0.484,0,1 +0.667,0.462,0.653,0.653,0,0,0.94,0.94,0.94,0.013,0,0,0,0,0,0,0,0.00568,0.00568,0.521,0.541,0.844,1,0.716,0.223,0.716,0.716,0.024,0.024,0.404,0.405,0,1 +1,0.788,0.635,0.635,0,0,0.92,0.92,0.92,0.0215,0,0,0,0,0,0,0,0,0,0.635,0.555,0.779,1,0.761,0.0964,0.761,0.761,0.018,0.018,0.341,0.341,0,1 +1,0.397,0.543,0.543,0,0,0.88,0.88,0.88,0,0,0,0,0,0,0,0.0207,0.00852,0.0292,0.448,0.484,0.492,1,0.663,0.066,0.663,0.663,0.018,0.018,0.19,0.19,0.333,1 +1,0.183,0.46,0.46,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0.0433,0.00568,0.049,0.393,0.451,0.224,1,0.575,0.0355,0.575,0.575,0.018,0.018,0.19,0.19,0.333,1 +1,0.099,0.368,0.368,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0.0364,0,0.0364,0.331,0.443,0.0805,1,0.389,0.0203,0.389,0.389,0.018,0.018,0.19,0.19,0.333,1 +1,0.0578,0.34,0.34,0,0,0.78,0.78,0.78,0,0,0,0,0,0,0,0,0,0,0.285,0.446,0.0392,1,0.203,0.00507,0.203,0.203,0.018,0.018,0.23,0.23,0.667,1 +1,0.0495,0.34,0.34,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0196,1,0.168,0.00507,0.168,0.168,0.018,0.018,0.19,0.19,1,1 +1,0.0495,0.331,0.331,0,0,0.74,0.74,0.74,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0152,1,0.133,0.0101,0.133,0.133,0.024,0.024,0.23,0.23,1,1 +1,0.0495,0.304,0.304,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0239,1,0.141,0.0355,0.141,0.141,0.0479,0.0479,0.372,0.373,1,1 +1,0.0495,0.331,0.331,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0.0372,0.00284,0.04,0.258,0.465,0.0392,1,0.159,0.0609,0.159,0.159,0.0898,0.0898,0.531,0.532,1,1 +1,0.136,0.396,0.396,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0.0178,0,0.0178,0.304,0.462,0.0631,1,0.23,0.147,0.23,0.23,0.156,0.156,0.452,0.452,0.667,1 +0.667,0.277,0.432,0.432,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0,0,0.374,0.5,0.087,1,0.292,0.233,0.292,0.292,0.263,0.263,0.19,0.19,0,1 +0.333,0.162,0.313,0.313,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0,0,0.276,0.487,0.107,1,0.292,0.223,0.292,0.292,0.503,0.503,0.19,0.19,0,1 +0.333,0.156,0.212,0.212,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0.0142,0.0142,0.242,0.487,0.126,1,0.283,0.208,0.283,0.283,0.725,0.725,0.151,0.151,0,1 +0.333,0.153,0.221,0.221,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0,0,0.245,0.487,0.141,1,0.292,0.223,0.292,0.292,0.761,0.761,0.119,0.119,0,1 +0.333,0.147,0.23,0.23,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0,0,0.248,0.491,0.157,1,0.292,0.233,0.292,0.292,0.725,0.725,0.111,0.111,0,1 +0.333,0.143,0.221,0.221,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0,0,0.245,0.495,0.165,1,0.283,0.213,0.283,0.283,0.719,0.719,0.111,0.111,0,1 +0.333,0.142,0.258,0.258,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0,0,0.258,0.495,0.187,1,0.283,0.193,0.283,0.283,0.539,0.539,0.111,0.111,0,1 +0.333,0.142,0.285,0.285,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0.00852,0.00852,0.267,0.491,0.198,1,0.283,0.249,0.283,0.283,0.449,0.449,0.19,0.19,0,1 +0.667,0.236,0.294,0.294,0,0.0731,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0.00568,0.00568,0.282,0.533,0.222,1,0.292,0.299,0.292,0.292,0.365,0.365,0.46,0.46,0,1 +1,0.334,0.359,0.359,0,0,0.88,0.88,0.88,0,0,0,0,0,0,0,0,0,0,0.359,0.592,0.276,1,0.398,0.558,0.398,0.398,0.222,0.222,0.998,1,0,1 +1,0.353,0.488,0.488,0,0,0.96,0.96,0.96,0,0,0,0,0,0,0,0,0,0,0.488,0.641,0.339,1,0.504,0.817,0.504,0.504,0.138,0.138,0.967,0.968,0,1 +1,0.408,0.58,0.58,0,0,1,1,1,0,0,0,0,0,0,0,0,0.00852,0.00852,0.58,0.653,0.457,1,0.584,0.583,0.584,0.584,0.0779,0.0779,0.539,0.54,0,1 +1,0.518,0.616,0.616,0,0,0.96,0.96,0.96,0.0139,0.0478,0,0,0,0,0,0,0.017,0.017,0.616,0.616,0.64,1,0.672,0.355,0.672,0.672,0.0479,0.0479,0.483,0.484,0,1 +1,0.668,0.653,0.653,0,0,0.94,0.94,0.94,0.0249,0,0,0,0,0,0,0,0,0,0.653,0.579,0.79,1,0.716,0.223,0.716,0.716,0.024,0.024,0.404,0.405,0,1 +1,0.788,0.635,0.635,0,0,0.92,0.92,0.92,0.0222,0,0,0,0,0,0,0,0,0,0.635,0.555,0.749,1,0.761,0.0964,0.761,0.761,0.018,0.018,0.341,0.341,0,1 +1,0.571,0.543,0.543,0,0,0.88,0.88,0.88,0.0213,0,0,0,0,0,0,0,0.00852,0.00852,0.543,0.493,0.453,1,0.663,0.066,0.663,0.663,0.018,0.018,0.19,0.19,0,1 +1,0.116,0.46,0.46,0,0,0.82,0.82,0.82,0.0194,0,0,0,0,0,0,0,0.00568,0.00568,0.325,0.458,0.196,1,0.575,0.0355,0.575,0.575,0.018,0.018,0.19,0.19,0.667,1 +1,0.0495,0.368,0.368,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0805,1,0.389,0.0203,0.389,0.389,0.018,0.018,0.19,0.19,1,1 +1,0.0495,0.34,0.34,0,0,0.78,0.78,0.78,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0392,1,0.203,0.00507,0.203,0.203,0.018,0.018,0.23,0.23,1,1 +1,0.0495,0.34,0.34,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0,0.00568,0.00568,0.258,0.465,0.0196,1,0.168,0.00507,0.168,0.168,0.018,0.018,0.19,0.19,1,1 +1,0.0495,0.331,0.331,0,0,0.74,0.74,0.74,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0152,1,0.133,0.0101,0.133,0.133,0.024,0.024,0.23,0.23,1,1 +0.667,0.05,0.304,0.304,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0.0305,0,0.0305,0.273,0.442,0.0239,1,0.141,0.0355,0.141,0.141,0.0479,0.0479,0.372,0.373,0.333,1 +0.667,0.104,0.331,0.331,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0.0513,0,0.0513,0.307,0.426,0.0392,1,0.159,0.0609,0.159,0.159,0.0898,0.0898,0.531,0.532,0,1 +0.667,0.222,0.396,0.396,0,0,0.76,0.76,0.76,0,0,0.0126,0.00596,0,0,0,0.0477,0,0.0477,0.35,0.459,0.0631,1,0.23,0.147,0.23,0.23,0.156,0.156,0.452,0.452,0,1 +0,0.0495,0.432,0.432,0,0,0.8,0.8,0.8,0,0,0,0.00982,0.147,0.147,0,0,0,0,0.258,0.465,0.087,1,0.292,0.233,0.292,0.292,0.263,0.263,0.19,0.19,0,1 +0,0.0495,0.313,0.313,0,0,0.82,0.82,0.82,0,0,0,0,0.22,0.22,0,0,0,0,0.258,0.465,0.107,1,0.292,0.223,0.292,0.292,0.503,0.503,0.19,0.19,0,1 +0,0.0495,0.212,0.212,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0.00568,0.00568,0.258,0.465,0.126,1,0.283,0.208,0.283,0.283,0.725,0.725,0.151,0.151,0,1 +0,0.0495,0.221,0.221,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0.0114,0.0114,0.258,0.465,0.141,1,0.292,0.223,0.292,0.292,0.761,0.761,0.119,0.119,0,1 +0.333,0.147,0.23,0.23,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0,0,0.248,0.491,0.157,1,0.292,0.233,0.292,0.292,0.725,0.725,0.111,0.111,0,1 +0.333,0.143,0.221,0.221,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0,0,0.245,0.495,0.165,1,0.283,0.213,0.283,0.283,0.719,0.719,0.111,0.111,0,1 +0.333,0.142,0.258,0.258,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0,0,0.258,0.495,0.187,1,0.283,0.193,0.283,0.283,0.539,0.539,0.111,0.111,0,1 +0.333,0.142,0.285,0.285,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0,0,0.267,0.491,0.198,1,0.283,0.249,0.283,0.283,0.449,0.449,0.19,0.19,0,1 +0.333,0.143,0.294,0.294,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0,0,0.27,0.499,0.222,1,0.292,0.299,0.292,0.292,0.365,0.365,0.46,0.46,0,1 +0.333,0.144,0.359,0.359,0,0,0.88,0.88,0.88,0,0,0,0,0,0,0,0,0.00284,0.00284,0.291,0.507,0.276,1,0.398,0.558,0.398,0.398,0.222,0.222,0.998,1,0,1 +0.667,0.252,0.488,0.488,0,0,0.96,0.96,0.96,0,0,0,0,0,0,0,0,0,0,0.411,0.582,0.339,1,0.504,0.817,0.504,0.504,0.138,0.138,0.967,0.968,0,1 +1,0.289,0.58,0.58,0,0.0366,1,1,1,0.00775,0.0414,0,0,0,0,0,0,0.00568,0.00568,0.472,0.591,0.457,1,0.584,0.583,0.584,0.584,0.0779,0.0779,0.539,0.54,0.333,1 +1,0.518,0.616,0.616,0,0,0.96,0.96,0.96,0.0244,0.0955,0,0,0,0,0,0,0.00284,0.00284,0.616,0.616,0.64,1,0.672,0.355,0.672,0.672,0.0479,0.0479,0.483,0.484,0,1 +1,0.668,0.653,0.653,0,0,0.94,0.94,0.94,0.0185,0.00637,0,0,0,0,0,0,0.00568,0.00568,0.653,0.579,0.79,1,0.716,0.223,0.716,0.716,0.024,0.024,0.404,0.405,0,1 +1,0.542,0.635,0.635,0,0,0.92,0.92,0.92,0,0,0,0,0,0,0,0.00245,0.0199,0.0223,0.509,0.525,0.749,1,0.761,0.0964,0.761,0.761,0.018,0.018,0.341,0.341,0.333,1 +1,0.397,0.543,0.543,0,0,0.88,0.88,0.88,0,0,0,0,0,0,0,0.0261,0.0142,0.0403,0.448,0.484,0.453,1,0.663,0.066,0.663,0.663,0.018,0.018,0.19,0.19,0.333,1 +1,0.116,0.46,0.46,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0.0129,0,0.0129,0.325,0.458,0.196,1,0.575,0.0355,0.575,0.575,0.018,0.018,0.19,0.19,0.667,1 +1,0.0743,0.368,0.368,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0.00284,0.00284,0.294,0.454,0.0805,1,0.389,0.0203,0.389,0.389,0.018,0.018,0.19,0.19,0.667,1 +1,0.0495,0.34,0.34,0,0,0.78,0.78,0.78,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0392,1,0.203,0.00507,0.203,0.203,0.018,0.018,0.23,0.23,1,1 +1,0.0495,0.34,0.34,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0,0.00568,0.00568,0.258,0.465,0.0196,1,0.168,0.00507,0.168,0.168,0.018,0.018,0.19,0.19,1,1 +1,0.0495,0.331,0.331,0,0,0.74,0.74,0.74,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0152,1,0.133,0.0101,0.133,0.133,0.024,0.024,0.23,0.23,1,1 +1,0.0495,0.304,0.304,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0239,1,0.141,0.0355,0.141,0.141,0.0479,0.0479,0.372,0.373,1,1 +1,0.0495,0.331,0.331,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0392,1,0.159,0.0609,0.159,0.159,0.0898,0.0898,0.531,0.532,1,1 +0.667,0.0495,0.396,0.396,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0631,1,0.23,0.147,0.23,0.23,0.156,0.156,0.452,0.452,0.667,1 +0.333,0.163,0.432,0.432,0,0.0122,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0,0,0.316,0.483,0.087,1,0.292,0.233,0.292,0.292,0.263,0.263,0.19,0.19,0,1 +0.667,0.274,0.313,0.313,0,0.0609,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0,0,0.294,0.508,0.107,1,0.292,0.223,0.292,0.292,0.503,0.503,0.19,0.19,0,1 +0.667,0.263,0.212,0.212,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0,0,0.227,0.508,0.126,1,0.283,0.208,0.283,0.283,0.725,0.725,0.151,0.151,0,1 +0.333,0.153,0.221,0.221,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0.017,0.017,0.245,0.487,0.141,1,0.292,0.223,0.292,0.292,0.761,0.761,0.119,0.119,0,1 +0,0.0495,0.23,0.23,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.157,1,0.292,0.233,0.292,0.292,0.725,0.725,0.111,0.111,0,1 +0,0.0495,0.221,0.221,0,0.0366,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.165,1,0.283,0.213,0.283,0.283,0.719,0.719,0.111,0.111,0,1 +0.333,0.142,0.258,0.258,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0.00568,0.00568,0.258,0.495,0.187,1,0.283,0.193,0.283,0.283,0.539,0.539,0.111,0.111,0,1 +0.333,0.142,0.285,0.285,0,0,0.84,0.84,0.84,0.00635,0.0175,0,0,0,0,0,0,0.0114,0.0114,0.267,0.491,0.198,1,0.283,0.249,0.283,0.283,0.449,0.449,0.19,0.19,0,1 +0.333,0.143,0.294,0.294,0,0,0.82,0.82,0.82,0.0201,0.00637,0,0,0,0,0,0,0,0,0.27,0.499,0.222,1,0.292,0.299,0.292,0.292,0.365,0.365,0.46,0.46,0,1 +0.333,0.144,0.359,0.359,0,0,0.88,0.88,0.88,0.0178,0,0,0,0,0,0,0,0.00284,0.00284,0.291,0.507,0.276,1,0.398,0.558,0.398,0.398,0.222,0.222,0.998,1,0,1 +0.667,0.252,0.488,0.488,0,0,0.96,0.96,0.96,0,0,0,0,0,0,0,0,0.017,0.017,0.411,0.582,0.339,1,0.504,0.817,0.504,0.504,0.138,0.138,0.967,0.968,0,1 +1,0.408,0.58,0.58,0,0,1,1,1,0.00904,0.0414,0,0,0,0,0,0,0.00852,0.00852,0.58,0.653,0.457,1,0.584,0.583,0.584,0.584,0.0779,0.0779,0.539,0.54,0,1 +1,0.518,0.616,0.616,0,0,0.96,0.96,0.96,0.0258,0.00637,0,0,0,0,0,0.032,0.00568,0.0377,0.616,0.616,0.64,1,0.672,0.355,0.672,0.672,0.0479,0.0479,0.483,0.484,0,1 +1,0.668,0.653,0.653,0,0,0.94,0.94,0.94,0.0222,0,0,0,0,0,0,0,0.00568,0.00568,0.653,0.579,0.79,1,0.716,0.223,0.716,0.716,0.024,0.024,0.404,0.405,0,1 +1,0.542,0.635,0.635,0,0,0.92,0.92,0.92,0.0185,0,0,0,0,0,0,0.0246,0,0.0246,0.509,0.525,0.749,1,0.761,0.0964,0.761,0.761,0.018,0.018,0.341,0.341,0.333,1 +1,0.223,0.543,0.543,0,0,0.88,0.88,0.88,0.0177,0,0,0,0,0,0,0.0137,0.00284,0.0165,0.353,0.475,0.453,1,0.663,0.066,0.663,0.663,0.018,0.018,0.19,0.19,0.667,1 +1,0.116,0.46,0.46,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0.0261,0.00284,0.0289,0.325,0.458,0.196,1,0.575,0.0355,0.575,0.575,0.018,0.018,0.19,0.19,0.667,1 +1,0.0743,0.368,0.368,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0.0411,0.0114,0.0524,0.294,0.454,0.0805,1,0.389,0.0203,0.389,0.389,0.018,0.018,0.19,0.19,0.667,1 +1,0.0495,0.34,0.34,0,0,0.78,0.78,0.78,0,0,0,0,0,0,0,0.0137,0,0.0137,0.258,0.465,0.0392,1,0.203,0.00507,0.203,0.203,0.018,0.018,0.23,0.23,1,1 +1,0.0495,0.34,0.34,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.465,0.0196,1,0.168,0.00507,0.168,0.168,0.018,0.018,0.19,0.19,1,1 +1,0.0495,0.331,0.331,0,0,0.74,0.74,0.74,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0152,1,0.133,0.0101,0.133,0.133,0.024,0.024,0.23,0.23,1,1 +1,0.0495,0.304,0.304,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0239,1,0.141,0.0355,0.141,0.141,0.0479,0.0479,0.372,0.373,1,1 +1,0.0495,0.331,0.331,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0.00271,0,0.00271,0.258,0.465,0.0392,1,0.159,0.0609,0.159,0.159,0.0898,0.0898,0.531,0.532,1,1 +1,0.136,0.396,0.396,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0.0397,0,0.0397,0.304,0.462,0.0631,1,0.23,0.147,0.23,0.23,0.156,0.156,0.452,0.452,0.667,1 +1,0.277,0.432,0.432,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0.0298,0,0.0298,0.374,0.5,0.087,1,0.292,0.233,0.292,0.292,0.263,0.263,0.19,0.19,0.333,1 +1,0.274,0.313,0.313,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0.0137,0,0.0137,0.294,0.508,0.107,1,0.292,0.223,0.292,0.292,0.503,0.503,0.19,0.19,0.333,1 +0.667,0.156,0.212,0.212,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0,0,0.242,0.487,0.126,1,0.283,0.208,0.283,0.283,0.725,0.725,0.151,0.151,0.333,1 +0.667,0.153,0.221,0.221,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0.0412,0.00852,0.0497,0.245,0.487,0.141,1,0.292,0.223,0.292,0.292,0.761,0.761,0.119,0.119,0.333,1 +0.667,0.147,0.23,0.23,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0.00533,0.00852,0.0138,0.248,0.491,0.157,1,0.292,0.233,0.292,0.292,0.725,0.725,0.111,0.111,0.333,1 +0.333,0.0495,0.221,0.221,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.465,0.165,1,0.283,0.213,0.283,0.283,0.719,0.719,0.111,0.111,0.333,1 +0.333,0.142,0.258,0.258,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0.00568,0.00568,0.258,0.495,0.187,1,0.283,0.193,0.283,0.283,0.539,0.539,0.111,0.111,0,1 +0.667,0.235,0.285,0.285,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0.0114,0.0114,0.276,0.517,0.198,1,0.283,0.249,0.283,0.283,0.449,0.449,0.19,0.19,0,1 +1,0.329,0.294,0.294,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0.0543,0.00284,0.0571,0.294,0.567,0.222,1,0.292,0.299,0.292,0.292,0.365,0.365,0.46,0.46,0,1 +1,0.334,0.359,0.359,0,0,0.88,0.88,0.88,0,0,0,0,0,0,0,0.0344,0,0.0344,0.359,0.592,0.276,1,0.398,0.558,0.398,0.398,0.222,0.222,0.998,1,0,1 +0.667,0.252,0.488,0.488,0,0,0.96,0.96,0.96,0,0,0,0,0,0,0,0,0.017,0.017,0.411,0.582,0.339,1,0.504,0.817,0.504,0.504,0.138,0.138,0.967,0.968,0,1 +0.667,0.289,0.58,0.58,0,0.0731,1,1,1,0,0,0,0,0,0,0,0,0.0114,0.0114,0.472,0.591,0.457,1,0.584,0.583,0.584,0.584,0.0779,0.0779,0.539,0.54,0,1 +0.667,0.362,0.616,0.616,0,0,0.96,0.96,0.96,0,0,0,0,0,0,0,0,0.0199,0.0199,0.497,0.566,0.64,1,0.672,0.355,0.672,0.672,0.0479,0.0479,0.483,0.484,0,1 +0.667,0.462,0.653,0.653,0,0,0.94,0.94,0.94,0,0,0,0,0,0,0,0,0,0,0.521,0.541,0.79,1,0.716,0.223,0.716,0.716,0.024,0.024,0.404,0.405,0,1 +0.333,0.296,0.635,0.635,0,0,0.92,0.92,0.92,0,0,0,0,0,0,0,0,0.00852,0.00852,0.383,0.495,0.749,1,0.761,0.0964,0.761,0.761,0.018,0.018,0.341,0.341,0,1 +1,0.571,0.543,0.543,0,0,0.88,0.88,0.88,0,0,0,0,0,0,0,0.00262,0,0.00262,0.543,0.493,0.453,1,0.663,0.066,0.663,0.663,0.018,0.018,0.19,0.19,0,1 +1,0.116,0.46,0.46,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0.0262,0,0.0262,0.325,0.458,0.196,1,0.575,0.0355,0.575,0.575,0.018,0.018,0.19,0.19,0.667,1 +1,0.0495,0.368,0.368,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0.00568,0.00568,0.258,0.465,0.0805,1,0.389,0.0203,0.389,0.389,0.018,0.018,0.19,0.19,1,1 +1,0.0495,0.34,0.34,0,0,0.78,0.78,0.78,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0392,1,0.203,0.00507,0.203,0.203,0.018,0.018,0.23,0.23,1,1 +1,0.0495,0.34,0.34,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0196,1,0.168,0.00507,0.168,0.168,0.018,0.018,0.19,0.19,1,1 +1,0.0495,0.331,0.331,0,0,0.74,0.74,0.74,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0152,1,0.133,0.0101,0.133,0.133,0.024,0.024,0.23,0.23,1,1 +1,0.0495,0.304,0.304,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0.00269,0,0.00269,0.258,0.465,0.0239,1,0.141,0.0355,0.141,0.141,0.0479,0.0479,0.372,0.373,1,1 +1,0.0768,0.331,0.331,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0.0416,0,0.0416,0.282,0.446,0.0392,1,0.159,0.0609,0.159,0.159,0.0898,0.0898,0.531,0.532,0.667,1 +1,0.222,0.396,0.396,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0.0226,0,0.0226,0.35,0.459,0.0631,1,0.23,0.147,0.23,0.23,0.156,0.156,0.452,0.452,0.333,1 +1,0.277,0.432,0.432,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0.061,0.0277,0,0.0888,0.374,0.5,0.087,1,0.292,0.233,0.292,0.292,0.263,0.263,0.19,0.19,0.333,1 +1,0.274,0.313,0.313,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0,0,0.294,0.508,0.107,1,0.292,0.223,0.292,0.292,0.503,0.503,0.19,0.19,0.333,1 +0.333,0.156,0.212,0.212,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0.0151,0,0.0151,0.242,0.487,0.126,1,0.283,0.208,0.283,0.283,0.725,0.725,0.151,0.151,0,1 +0.667,0.256,0.221,0.221,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0.00568,0.00568,0.233,0.508,0.141,1,0.292,0.223,0.292,0.292,0.761,0.761,0.119,0.119,0,1 +0.333,0.147,0.23,0.23,0,0.0366,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0,0,0.248,0.491,0.157,1,0.292,0.233,0.292,0.292,0.725,0.725,0.111,0.111,0,1 +0.333,0.143,0.221,0.221,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0.0206,0,0.0206,0.245,0.495,0.165,1,0.283,0.213,0.283,0.283,0.719,0.719,0.111,0.111,0,1 +0.667,0.235,0.258,0.258,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0.0109,0.00568,0.0166,0.258,0.525,0.187,1,0.283,0.193,0.283,0.283,0.539,0.539,0.111,0.111,0,1 +0.667,0.235,0.285,0.285,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0.0234,0.00284,0.0263,0.276,0.517,0.198,1,0.283,0.249,0.283,0.283,0.449,0.449,0.19,0.19,0,1 +0.667,0.236,0.294,0.294,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0.00284,0.00284,0.282,0.533,0.222,1,0.292,0.299,0.292,0.292,0.365,0.365,0.46,0.46,0,1 +0.667,0.239,0.359,0.359,0,0,0.88,0.88,0.88,0,0,0.0172,0,0,0,0,0,0.0114,0.0114,0.325,0.549,0.276,1,0.398,0.558,0.398,0.398,0.222,0.222,0.998,1,0,1 +1,0.353,0.488,0.488,0,0,0.96,0.96,0.96,0,0,0.0356,0.0112,0,0,0,0,0.00284,0.00284,0.488,0.641,0.339,1,0.504,0.817,0.504,0.504,0.138,0.138,0.967,0.968,0,1 +1,0.408,0.58,0.58,0,0.0366,1,1,1,0.0175,0.0716,0.0118,0.00456,0.183,0.183,0,0,0,0,0.58,0.653,0.457,1,0.584,0.583,0.584,0.584,0.0779,0.0779,0.539,0.54,0,1 +1,0.518,0.616,0.616,0,0,0.96,0.96,0.96,0.0233,0.0716,0,0,0,0,0,0,0.00284,0.00284,0.616,0.616,0.64,1,0.672,0.355,0.672,0.672,0.0479,0.0479,0.483,0.484,0,1 +1,0.668,0.653,0.653,0,0,0.94,0.94,0.94,0.00239,0,0,0,0,0,0,0,0.00284,0.00284,0.653,0.579,0.79,1,0.716,0.223,0.716,0.716,0.024,0.024,0.404,0.405,0,1 +1,0.788,0.635,0.635,0,0,0.92,0.92,0.92,0.0271,0.0716,0,0,0,0,0,0,0.0114,0.0114,0.635,0.555,0.749,1,0.761,0.0964,0.761,0.761,0.018,0.018,0.341,0.341,0,1 +1,0.223,0.543,0.543,0,0,0.88,0.88,0.88,0.00376,0,0,0,0,0,0,0,0.0114,0.0114,0.353,0.475,0.453,1,0.663,0.066,0.663,0.663,0.018,0.018,0.19,0.19,0.667,1 +1,0.0495,0.46,0.46,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0.00568,0.00568,0.258,0.465,0.196,1,0.575,0.0355,0.575,0.575,0.018,0.018,0.19,0.19,1,1 +1,0.0495,0.368,0.368,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0957,1,0.389,0.0203,0.389,0.389,0.018,0.018,0.19,0.19,1,1 +1,0.0495,0.34,0.34,0,0,0.78,0.78,0.78,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0479,1,0.203,0.00507,0.203,0.203,0.018,0.018,0.23,0.23,1,1 +1,0.0495,0.34,0.34,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0261,1,0.168,0.00507,0.168,0.168,0.018,0.018,0.19,0.19,1,1 +1,0.0495,0.331,0.331,0,0,0.74,0.74,0.74,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0174,1,0.133,0.0101,0.133,0.133,0.024,0.024,0.23,0.23,1,1 +1,0.0495,0.304,0.304,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0239,1,0.141,0.0355,0.141,0.141,0.0479,0.0479,0.372,0.373,1,1 +1,0.0495,0.331,0.331,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0305,1,0.159,0.0609,0.159,0.159,0.0898,0.0898,0.531,0.532,1,1 +1,0.0495,0.396,0.396,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0522,1,0.23,0.147,0.23,0.23,0.156,0.156,0.452,0.452,1,1 +1,0.0495,0.432,0.432,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0936,1,0.292,0.233,0.292,0.292,0.263,0.263,0.19,0.19,1,1 +0.667,0.0495,0.313,0.313,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.155,1,0.292,0.223,0.292,0.292,0.503,0.503,0.19,0.19,0.667,1 +0.667,0.0495,0.212,0.212,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.205,1,0.283,0.208,0.283,0.283,0.725,0.725,0.151,0.151,0.667,1 +0.667,0.0495,0.221,0.221,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.244,1,0.292,0.223,0.292,0.292,0.761,0.761,0.119,0.119,0.667,1 +0.667,0.0495,0.23,0.23,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.268,1,0.292,0.233,0.292,0.292,0.725,0.725,0.111,0.111,0.667,1 +0.667,0.237,0.221,0.221,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0,0,0.233,0.525,0.287,1,0.283,0.213,0.283,0.283,0.719,0.719,0.111,0.111,0,1 +0.667,0.235,0.258,0.258,0,0,0.84,0.84,0.84,0.0032,0.0175,0,0,0,0,0,0,0,0,0.258,0.525,0.339,1,0.283,0.193,0.283,0.283,0.539,0.539,0.111,0.111,0,1 +0.667,0.235,0.285,0.285,0,0,0.84,0.84,0.84,0.0212,0.0302,0,0,0,0,0,0,0,0,0.276,0.517,0.387,1,0.283,0.249,0.283,0.283,0.449,0.449,0.19,0.19,0,1 +0.667,0.236,0.294,0.294,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0,0,0.282,0.533,0.427,1,0.292,0.299,0.292,0.292,0.365,0.365,0.46,0.46,0,1 +0.667,0.239,0.359,0.359,0,0,0.88,0.88,0.88,0,0,0,0,0,0,0,0,0.017,0.017,0.325,0.549,0.448,1,0.398,0.558,0.398,0.398,0.222,0.222,0.998,1,0,1 +0.667,0.252,0.488,0.488,0,0,0.96,0.96,0.96,0,0,0,0,0,0,0,0,0.0114,0.0114,0.411,0.582,0.464,1,0.504,0.817,0.504,0.504,0.138,0.138,0.967,0.968,0,1 +1,0.408,0.58,0.58,0,0,1,1,1,0,0,0,0,0,0,0,0,0.0142,0.0142,0.58,0.653,0.546,1,0.584,0.583,0.584,0.584,0.0779,0.0779,0.539,0.54,0,1 +1,0.518,0.616,0.616,0,0.0366,0.96,0.96,0.96,0,0,0,0,0,0,0,0.00242,0.0114,0.0138,0.616,0.616,0.718,1,0.672,0.355,0.672,0.672,0.0479,0.0479,0.483,0.484,0,1 +1,0.668,0.653,0.653,0,0,0.94,0.94,0.94,0,0,0,0,0,0,0,0.00967,0.00568,0.0154,0.653,0.579,0.844,1,0.716,0.223,0.716,0.716,0.024,0.024,0.404,0.405,0,1 +1,0.788,0.635,0.635,0,0,0.92,0.92,0.92,0,0,0,0,0,0,0,0,0,0,0.635,0.555,0.779,1,0.761,0.0964,0.761,0.761,0.018,0.018,0.341,0.341,0,1 +1,0.571,0.543,0.543,0,0,0.88,0.88,0.88,0,0,0,0,0,0,0,0,0,0,0.543,0.493,0.492,1,0.663,0.066,0.663,0.663,0.018,0.018,0.19,0.19,0,1 +1,0.249,0.46,0.46,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0.0429,0.0142,0.057,0.46,0.444,0.224,1,0.575,0.0355,0.575,0.575,0.018,0.018,0.19,0.19,0,1 +1,0.099,0.368,0.368,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0.021,0,0.021,0.331,0.443,0.0957,1,0.389,0.0203,0.389,0.389,0.018,0.018,0.19,0.19,0.333,1 +1,0.0578,0.34,0.34,0,0,0.78,0.78,0.78,0,0,0,0,0,0,0,0,0,0,0.285,0.446,0.0479,1,0.203,0.00507,0.203,0.203,0.018,0.018,0.23,0.23,0.667,1 +1,0.0495,0.34,0.34,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0,0.00568,0.00568,0.258,0.465,0.0261,1,0.168,0.00507,0.168,0.168,0.018,0.018,0.19,0.19,1,1 +1,0.0495,0.331,0.331,0,0,0.74,0.74,0.74,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0174,1,0.133,0.0101,0.133,0.133,0.024,0.024,0.23,0.23,1,1 +1,0.0495,0.304,0.304,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0239,1,0.141,0.0355,0.141,0.141,0.0479,0.0479,0.372,0.373,1,1 +1,0.0495,0.331,0.331,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0,0.00568,0.00568,0.258,0.465,0.0305,1,0.159,0.0609,0.159,0.159,0.0898,0.0898,0.531,0.532,1,1 +1,0.0495,0.396,0.396,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0522,1,0.23,0.147,0.23,0.23,0.156,0.156,0.452,0.452,1,1 +1,0.0495,0.432,0.432,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0936,1,0.292,0.233,0.292,0.292,0.263,0.263,0.19,0.19,1,1 +1,0.0495,0.313,0.313,0,0.0122,0.82,0.82,0.82,0,0,0,0,0,0,0,0.00256,0,0.00256,0.258,0.465,0.155,1,0.292,0.223,0.292,0.292,0.503,0.503,0.19,0.19,1,1 +1,0.263,0.212,0.212,0,0.0244,0.82,0.82,0.82,0,0,0,0,0,0,0,0.0277,0,0.0277,0.227,0.508,0.205,1,0.283,0.208,0.283,0.283,0.725,0.725,0.151,0.151,0.333,1 +1,0.256,0.221,0.221,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0.0257,0,0.0257,0.233,0.508,0.244,1,0.292,0.223,0.292,0.292,0.761,0.761,0.119,0.119,0.333,1 +0.667,0.245,0.23,0.23,0,0.0366,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0,0,0.239,0.517,0.268,1,0.292,0.233,0.292,0.292,0.725,0.725,0.111,0.111,0,1 +0.667,0.237,0.221,0.221,0,0,0.84,0.84,0.84,0.0162,0.0478,0,0,0,0,0,0,0,0,0.233,0.525,0.287,1,0.283,0.213,0.283,0.283,0.719,0.719,0.111,0.111,0,1 +1,0.328,0.258,0.258,0,0,0.84,0.84,0.84,0.0179,0,0,0,0,0,0,0.0349,0.00284,0.0377,0.258,0.555,0.339,1,0.283,0.193,0.283,0.283,0.539,0.539,0.111,0.111,0,1 +0.667,0.235,0.285,0.285,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0,0,0.276,0.517,0.387,1,0.283,0.249,0.283,0.283,0.449,0.449,0.19,0.19,0,1 +0.667,0.236,0.294,0.294,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0.00568,0.00568,0.282,0.533,0.427,1,0.292,0.299,0.292,0.292,0.365,0.365,0.46,0.46,0,1 +1,0.334,0.359,0.359,0,0,0.88,0.88,0.88,0.0153,0.0478,0,0,0,0,0,0.0257,0.00284,0.0285,0.359,0.592,0.448,1,0.398,0.558,0.398,0.398,0.222,0.222,0.998,1,0,1 +0.333,0.151,0.488,0.488,0,0,0.96,0.96,0.96,0.0164,0,0.0219,0.00596,0,0,0,0.0168,0.017,0.0338,0.334,0.524,0.464,1,0.504,0.817,0.504,0.504,0.138,0.138,0.967,0.968,0,1 +0.667,0.289,0.58,0.58,0,0,1,1,1,0.0111,0,0.0328,0.0151,0.055,0.055,0,0.0124,0.017,0.0294,0.472,0.591,0.546,1,0.584,0.583,0.584,0.584,0.0779,0.0779,0.539,0.54,0,1 +1,0.518,0.616,0.616,0,0,0.96,0.96,0.96,0,0,0.0307,0,0.22,0.22,0,0,0,0,0.616,0.616,0.718,1,0.672,0.355,0.672,0.672,0.0479,0.0479,0.483,0.484,0,1 +1,0.668,0.653,0.653,0,0,0.94,0.94,0.94,0,0,0,0,0,0,0,0,0.00284,0.00284,0.653,0.579,0.844,1,0.716,0.223,0.716,0.716,0.024,0.024,0.404,0.405,0,1 +1,0.788,0.635,0.635,0,0,0.92,0.92,0.92,0,0,0,0,0,0,0.0372,0.0182,0.00284,0.0582,0.635,0.555,0.779,1,0.761,0.0964,0.761,0.761,0.018,0.018,0.341,0.341,0,1 +1,0.571,0.543,0.543,0,0,0.88,0.88,0.88,0,0,0,0,0,0,0,0,0.00568,0.00568,0.543,0.493,0.492,1,0.663,0.066,0.663,0.663,0.018,0.018,0.19,0.19,0,1 +1,0.116,0.46,0.46,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0,0,0.325,0.458,0.224,1,0.575,0.0355,0.575,0.575,0.018,0.018,0.19,0.19,0.667,1 +1,0.0495,0.368,0.368,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.465,0.0805,1,0.389,0.0203,0.389,0.389,0.018,0.018,0.19,0.19,1,1 +1,0.0495,0.34,0.34,0,0,0.78,0.78,0.78,0,0,0,0,0,0,0,0.0307,0,0.0307,0.258,0.465,0.0392,1,0.203,0.00507,0.203,0.203,0.018,0.018,0.23,0.23,1,1 +1,0.0495,0.34,0.34,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0.0496,0,0.0496,0.258,0.465,0.0196,1,0.168,0.00507,0.168,0.168,0.018,0.018,0.19,0.19,1,1 +1,0.0495,0.331,0.331,0,0,0.74,0.74,0.74,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0152,1,0.133,0.0101,0.133,0.133,0.024,0.024,0.23,0.23,1,1 +0.667,0.0495,0.304,0.304,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0239,1,0.141,0.0355,0.141,0.141,0.0479,0.0479,0.372,0.373,0.667,1 +0.667,0.0495,0.331,0.331,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0392,1,0.159,0.0609,0.159,0.159,0.0898,0.0898,0.531,0.532,0.667,1 +0.667,0.0495,0.396,0.396,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0.0027,0,0.0027,0.258,0.465,0.0631,1,0.23,0.147,0.23,0.23,0.156,0.156,0.452,0.452,0.667,1 +0.667,0.163,0.432,0.432,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0.0748,0,0.0748,0.316,0.483,0.087,1,0.292,0.233,0.292,0.292,0.263,0.263,0.19,0.19,0.333,1 +0.333,0.162,0.313,0.313,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0,0,0.276,0.487,0.107,1,0.292,0.223,0.292,0.292,0.503,0.503,0.19,0.19,0,1 +0.333,0.156,0.212,0.212,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0,0,0.242,0.487,0.126,1,0.283,0.208,0.283,0.283,0.725,0.725,0.151,0.151,0,1 +0.333,0.153,0.221,0.221,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0,0,0.245,0.487,0.141,1,0.292,0.223,0.292,0.292,0.761,0.761,0.119,0.119,0,1 +0.333,0.147,0.23,0.23,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0.0199,0.0199,0.248,0.491,0.157,1,0.292,0.233,0.292,0.292,0.725,0.725,0.111,0.111,0,1 +0.333,0.143,0.221,0.221,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0.00852,0.00852,0.245,0.495,0.165,1,0.283,0.213,0.283,0.283,0.719,0.719,0.111,0.111,0,1 +0.333,0.142,0.258,0.258,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0.00568,0.00568,0.258,0.495,0.187,1,0.283,0.193,0.283,0.283,0.539,0.539,0.111,0.111,0,1 +0.333,0.142,0.285,0.285,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0.00852,0.00852,0.267,0.491,0.198,1,0.283,0.249,0.283,0.283,0.449,0.449,0.19,0.19,0,1 +0.333,0.143,0.294,0.294,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0,0,0.27,0.499,0.222,1,0.292,0.299,0.292,0.292,0.365,0.365,0.46,0.46,0,1 +0.333,0.144,0.359,0.359,0,0,0.88,0.88,0.88,0,0,0,0,0,0,0,0.00241,0.00284,0.00525,0.291,0.507,0.276,1,0.398,0.558,0.398,0.398,0.222,0.222,0.998,1,0,1 +0.333,0.151,0.488,0.488,0,0,0.96,0.96,0.96,0,0,0,0,0,0,0,0.0159,0.00568,0.0216,0.334,0.524,0.339,1,0.504,0.817,0.504,0.504,0.138,0.138,0.967,0.968,0,1 +1,0.408,0.58,0.58,0,0.0853,1,1,1,0,0,0,0,0,0,0.038,0.0234,0,0.0613,0.58,0.653,0.457,1,0.584,0.583,0.584,0.584,0.0779,0.0779,0.539,0.54,0,1 +1,0.518,0.616,0.616,0,0.0244,0.96,0.96,0.96,0,0,0,0,0,0,0,0.0509,0.0142,0.0651,0.616,0.616,0.64,1,0.672,0.355,0.672,0.672,0.0479,0.0479,0.483,0.484,0,1 +1,0.668,0.653,0.653,0,0,0.94,0.94,0.94,0,0,0,0,0,0,0,0.0195,0,0.0195,0.653,0.579,0.79,1,0.716,0.223,0.716,0.716,0.024,0.024,0.404,0.405,0,1 +0.667,0.542,0.635,0.635,0,0,0.92,0.92,0.92,0,0,0,0,0,0,0,0,0.00284,0.00284,0.509,0.525,0.749,1,0.761,0.0964,0.761,0.761,0.018,0.018,0.341,0.341,0,1 +0.667,0.0495,0.543,0.543,0,0,0.88,0.88,0.88,0,0,0,0,0,0,0,0.0134,0,0.0134,0.258,0.465,0.453,1,0.663,0.066,0.663,0.663,0.018,0.018,0.19,0.19,0.667,1 +1,0.0495,0.46,0.46,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0.0406,0,0.0406,0.258,0.465,0.196,1,0.575,0.0355,0.575,0.575,0.018,0.018,0.19,0.19,1,1 +1,0.0495,0.368,0.368,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0.0114,0.0114,0.258,0.465,0.0805,1,0.389,0.0203,0.389,0.389,0.018,0.018,0.19,0.19,1,1 +1,0.0495,0.34,0.34,0,0,0.78,0.78,0.78,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0392,1,0.203,0.00507,0.203,0.203,0.018,0.018,0.23,0.23,1,1 +1,0.0495,0.34,0.34,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0196,1,0.168,0.00507,0.168,0.168,0.018,0.018,0.19,0.19,1,1 +1,0.0495,0.331,0.331,0,0,0.74,0.74,0.74,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0152,1,0.133,0.0101,0.133,0.133,0.024,0.024,0.23,0.23,1,1 +1,0.0495,0.304,0.304,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0239,1,0.141,0.0355,0.141,0.141,0.0479,0.0479,0.372,0.373,1,1 +1,0.0495,0.331,0.331,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0.00275,0,0.00275,0.258,0.465,0.0392,1,0.159,0.0609,0.159,0.159,0.0898,0.0898,0.531,0.532,1,1 +0.667,0.222,0.396,0.396,0,0,0.76,0.76,0.76,0,0,0.00643,0,0,0,0.0527,0.027,0,0.0796,0.35,0.459,0.0631,1,0.23,0.147,0.23,0.23,0.156,0.156,0.452,0.452,0,1 +0.667,0.277,0.432,0.432,0,0,0.8,0.8,0.8,0,0,0.0345,0.0112,0,0,0,0,0,0,0.374,0.5,0.087,1,0.292,0.233,0.292,0.292,0.263,0.263,0.19,0.19,0,1 +0.667,0.274,0.313,0.313,0,0,0.82,0.82,0.82,0.0208,0.0478,0.0329,0.00456,0.238,0.238,0,0,0,0,0.294,0.508,0.107,1,0.292,0.223,0.292,0.292,0.503,0.503,0.19,0.19,0,1 +0.667,0.263,0.212,0.212,0,0,0.82,0.82,0.82,0.0152,0,0.0472,0,0.128,0.128,0,0,0,0,0.227,0.508,0.126,1,0.283,0.208,0.283,0.283,0.725,0.725,0.151,0.151,0,1 +0.667,0.256,0.221,0.221,0,0,0.8,0.8,0.8,0,0,0.0224,0,0,0,0,0,0.00568,0.00568,0.233,0.508,0.141,1,0.292,0.223,0.292,0.292,0.761,0.761,0.119,0.119,0,1 +0.667,0.245,0.23,0.23,0,0,0.8,0.8,0.8,0,0,0.0385,0,0,0,0,0,0.00568,0.00568,0.239,0.517,0.157,1,0.292,0.233,0.292,0.292,0.725,0.725,0.111,0.111,0,1 +0.667,0.237,0.221,0.221,0,0,0.84,0.84,0.84,0,0,0.0362,0,0,0,0,0,0,0,0.233,0.525,0.165,1,0.283,0.213,0.283,0.283,0.719,0.719,0.111,0.111,0,1 +0.333,0.142,0.258,0.258,0,0,0.84,0.84,0.84,0,0,0.00361,0,0,0,0,0,0,0,0.258,0.495,0.187,1,0.283,0.193,0.283,0.283,0.539,0.539,0.111,0.111,0,1 +0.333,0.142,0.285,0.285,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0,0,0.267,0.491,0.198,1,0.283,0.249,0.283,0.283,0.449,0.449,0.19,0.19,0,1 +0,0.0495,0.294,0.294,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.465,0.222,1,0.292,0.299,0.292,0.292,0.365,0.365,0.46,0.46,0,1 +0.333,0.144,0.359,0.359,0,0,0.88,0.88,0.88,0,0,0,0,0,0,0,0,0.00284,0.00284,0.291,0.507,0.276,1,0.398,0.558,0.398,0.398,0.222,0.222,0.998,1,0,1 +0.333,0.151,0.488,0.488,0,0,0.96,0.96,0.96,0,0,0,0,0,0,0,0,0.0284,0.0284,0.334,0.524,0.339,1,0.504,0.817,0.504,0.504,0.138,0.138,0.967,0.968,0,1 +1,0.408,0.58,0.58,0,0.0366,1,1,1,0,0,0,0,0,0,0,0,0,0,0.58,0.653,0.457,1,0.584,0.583,0.584,0.584,0.0779,0.0779,0.539,0.54,0,1 +1,0.518,0.616,0.616,0,0,0.96,0.96,0.96,0,0,0,0,0,0,0,0,0.00568,0.00568,0.616,0.616,0.64,1,0.672,0.355,0.672,0.672,0.0479,0.0479,0.483,0.484,0,1 +1,0.668,0.653,0.653,0,0,0.94,0.94,0.94,0,0,0,0,0,0,0,0,0,0,0.653,0.579,0.79,1,0.716,0.223,0.716,0.716,0.024,0.024,0.404,0.405,0,1 +1,0.788,0.635,0.635,0,0,0.92,0.92,0.92,0,0,0,0,0,0,0,0,0.00284,0.00284,0.635,0.555,0.749,1,0.761,0.0964,0.761,0.761,0.018,0.018,0.341,0.341,0,1 +1,0.397,0.543,0.543,0,0,0.88,0.88,0.88,0,0,0,0,0,0,0,0,0.00284,0.00284,0.448,0.484,0.453,1,0.663,0.066,0.663,0.663,0.018,0.018,0.19,0.19,0.333,1 +1,0.0495,0.46,0.46,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.196,1,0.575,0.0355,0.575,0.575,0.018,0.018,0.19,0.19,1,1 +1,0.0495,0.368,0.368,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0.0142,0.0142,0.258,0.465,0.0805,1,0.389,0.0203,0.389,0.389,0.018,0.018,0.19,0.19,1,1 +1,0.0495,0.34,0.34,0,0,0.78,0.78,0.78,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.465,0.0392,1,0.203,0.00507,0.203,0.203,0.018,0.018,0.23,0.23,1,1 +1,0.0495,0.34,0.34,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.465,0.0196,1,0.168,0.00507,0.168,0.168,0.018,0.018,0.19,0.19,1,1 +1,0.0495,0.331,0.331,0,0,0.74,0.74,0.74,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0152,1,0.133,0.0101,0.133,0.133,0.024,0.024,0.23,0.23,1,1 +1,0.05,0.304,0.304,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0,0,0,0.273,0.442,0.0239,1,0.141,0.0355,0.141,0.141,0.0479,0.0479,0.372,0.373,0.667,1 +1,0.0768,0.331,0.331,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0.00722,0,0.00722,0.282,0.446,0.0392,1,0.159,0.0609,0.159,0.159,0.0898,0.0898,0.531,0.532,0.667,1 +1,0.308,0.396,0.396,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0.0331,0,0.0331,0.396,0.456,0.0631,1,0.23,0.147,0.23,0.23,0.156,0.156,0.452,0.452,0,1 +0.667,0.277,0.432,0.432,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0.0177,0,0.0177,0.374,0.5,0.087,1,0.292,0.233,0.292,0.292,0.263,0.263,0.19,0.19,0,1 +0.333,0.162,0.313,0.313,0,0.0731,0.82,0.82,0.82,0,0,0,0,0,0,0,0.00274,0.00284,0.00558,0.276,0.487,0.107,1,0.292,0.223,0.292,0.292,0.503,0.503,0.19,0.19,0,1 +0.667,0.263,0.212,0.212,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0.0377,0,0.0377,0.227,0.508,0.126,1,0.283,0.208,0.283,0.283,0.725,0.725,0.151,0.151,0,1 +0.333,0.153,0.221,0.221,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0.0158,0.0114,0.0272,0.245,0.487,0.141,1,0.292,0.223,0.292,0.292,0.761,0.761,0.119,0.119,0,1 +0.333,0.147,0.23,0.23,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0.00284,0.00284,0.248,0.491,0.157,1,0.292,0.233,0.292,0.292,0.725,0.725,0.111,0.111,0,1 +0.333,0.0495,0.221,0.221,0,0,0.84,0.84,0.84,0,0,0.0255,0.00596,0,0,0,0,0.00852,0.00852,0.258,0.465,0.165,1,0.283,0.213,0.283,0.283,0.719,0.719,0.111,0.111,0.333,1 +0.667,0.142,0.258,0.258,0,0,0.84,0.84,0.84,0,0,0.0318,0.00982,0.147,0.147,0,0,0.00568,0.00568,0.258,0.495,0.187,1,0.283,0.193,0.283,0.283,0.539,0.539,0.111,0.111,0.333,1 +0.667,0.142,0.285,0.285,0,0,0.84,0.84,0.84,0,0,0.0307,0,0.22,0.22,0,0,0.0114,0.0114,0.267,0.491,0.198,1,0.283,0.249,0.283,0.283,0.449,0.449,0.19,0.19,0.333,1 +0.667,0.143,0.294,0.294,0,0,0.82,0.82,0.82,0,0,0.0345,0,0,0,0,0,0,0,0.27,0.499,0.222,1,0.292,0.299,0.292,0.292,0.365,0.365,0.46,0.46,0.333,1 +0.667,0.239,0.359,0.359,0,0,0.88,0.88,0.88,0,0,0.0263,0,0,0,0,0,0,0,0.325,0.549,0.276,1,0.398,0.558,0.398,0.398,0.222,0.222,0.998,1,0,1 +0.667,0.252,0.488,0.488,0,0,0.96,0.96,0.96,0,0,0.0301,0,0,0,0,0.0475,0,0.0475,0.411,0.582,0.339,1,0.504,0.817,0.504,0.504,0.138,0.138,0.967,0.968,0,1 +0.667,0.289,0.58,0.58,0,0,1,1,1,0,0,0.00868,0,0,0,0,0.027,0.0341,0.0611,0.472,0.591,0.457,1,0.584,0.583,0.584,0.584,0.0779,0.0779,0.539,0.54,0,1 +0.667,0.362,0.616,0.616,0,0,0.96,0.96,0.96,0,0,0,0,0,0,0,0,0.00284,0.00284,0.497,0.566,0.64,1,0.672,0.355,0.672,0.672,0.0479,0.0479,0.483,0.484,0,1 +1,0.668,0.653,0.653,0,0,0.94,0.94,0.94,0,0,0,0,0,0,0,0,0,0,0.653,0.579,0.79,1,0.716,0.223,0.716,0.716,0.024,0.024,0.404,0.405,0,1 +1,0.296,0.635,0.635,0,0,0.92,0.92,0.92,0,0,0,0,0,0,0,0,0,0,0.383,0.495,0.749,1,0.761,0.0964,0.761,0.761,0.018,0.018,0.341,0.341,0.667,1 +1,0.0495,0.543,0.543,0,0,0.88,0.88,0.88,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.465,0.453,1,0.663,0.066,0.663,0.663,0.018,0.018,0.19,0.19,1,1 +1,0.0495,0.46,0.46,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.465,0.196,1,0.575,0.0355,0.575,0.575,0.018,0.018,0.19,0.19,1,1 +1,0.0495,0.368,0.368,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0805,1,0.389,0.0203,0.389,0.389,0.018,0.018,0.19,0.19,1,1 +1,0.0495,0.34,0.34,0,0,0.78,0.78,0.78,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0392,1,0.203,0.00507,0.203,0.203,0.018,0.018,0.23,0.23,1,1 +1,0.0495,0.34,0.34,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0196,1,0.168,0.00507,0.168,0.168,0.018,0.018,0.19,0.19,1,1 +1,0.0495,0.331,0.331,0,0,0.74,0.74,0.74,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0152,1,0.133,0.0101,0.133,0.133,0.024,0.024,0.23,0.23,1,1 +0.667,0.0495,0.304,0.304,0,0.0122,0.72,0.72,0.72,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0239,1,0.141,0.0355,0.141,0.141,0.0479,0.0479,0.372,0.373,0.667,1 +0.667,0.0768,0.331,0.331,0,0.0609,0.72,0.72,0.72,0,0,0,0,0,0,0,0.00276,0,0.00276,0.282,0.446,0.0392,1,0.159,0.0609,0.159,0.159,0.0898,0.0898,0.531,0.532,0.333,1 +0.667,0.136,0.396,0.396,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0.0413,0,0.0413,0.304,0.462,0.0631,1,0.23,0.147,0.23,0.23,0.156,0.156,0.452,0.452,0.333,1 +0.333,0.0495,0.432,0.432,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.087,1,0.292,0.233,0.292,0.292,0.263,0.263,0.19,0.19,0.333,1 +0.333,0.162,0.313,0.313,0,0.0853,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0,0,0.276,0.487,0.107,1,0.292,0.223,0.292,0.292,0.503,0.503,0.19,0.19,0,1 +0.333,0.156,0.212,0.212,0,0.0609,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0,0,0.242,0.487,0.126,1,0.283,0.208,0.283,0.283,0.725,0.725,0.151,0.151,0,1 +0.333,0.153,0.221,0.221,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0.017,0.017,0.245,0.487,0.141,1,0.292,0.223,0.292,0.292,0.761,0.761,0.119,0.119,0,1 +0.667,0.245,0.23,0.23,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0.0266,0.0414,0,0.068,0.239,0.517,0.157,1,0.292,0.233,0.292,0.292,0.725,0.725,0.111,0.111,0,1 +0.667,0.237,0.221,0.221,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0.018,0.00284,0.0209,0.233,0.525,0.165,1,0.283,0.213,0.283,0.283,0.719,0.719,0.111,0.111,0,1 +0.333,0.142,0.258,0.258,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0,0,0.258,0.495,0.187,1,0.283,0.193,0.283,0.283,0.539,0.539,0.111,0.111,0,1 +0.667,0.235,0.285,0.285,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0.00568,0.00568,0.276,0.517,0.198,1,0.283,0.249,0.283,0.283,0.449,0.449,0.19,0.19,0,1 +0.667,0.236,0.294,0.294,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0,0,0.282,0.533,0.222,1,0.292,0.299,0.292,0.292,0.365,0.365,0.46,0.46,0,1 +0.667,0.239,0.359,0.359,0,0,0.88,0.88,0.88,0,0,0,0,0,0,0,0,0,0,0.325,0.549,0.276,1,0.398,0.558,0.398,0.398,0.222,0.222,0.998,1,0,1 +0.667,0.252,0.488,0.488,0,0,0.96,0.96,0.96,0,0,0,0,0,0,0,0,0.00284,0.00284,0.411,0.582,0.339,1,0.504,0.817,0.504,0.504,0.138,0.138,0.967,0.968,0,1 +0.333,0.169,0.58,0.58,0,0,1,1,1,0.00994,0.0414,0,0,0,0,0,0,0.0284,0.0284,0.365,0.528,0.457,1,0.584,0.583,0.584,0.584,0.0779,0.0779,0.539,0.54,0,1 +0.667,0.362,0.616,0.616,0,0,0.96,0.96,0.96,0.0203,0.0239,0,0,0,0,0,0,0.0199,0.0199,0.497,0.566,0.64,1,0.672,0.355,0.672,0.672,0.0479,0.0479,0.483,0.484,0,1 +0.667,0.462,0.653,0.653,0,0,0.94,0.94,0.94,0.0146,0.0302,0,0,0,0,0,0,0,0,0.521,0.541,0.79,1,0.716,0.223,0.716,0.716,0.024,0.024,0.404,0.405,0,1 +0.667,0.296,0.635,0.635,0,0,0.92,0.92,0.92,0,0,0,0,0,0,0,0,0.00568,0.00568,0.383,0.495,0.749,1,0.761,0.0964,0.761,0.761,0.018,0.018,0.341,0.341,0.333,1 +1,0.397,0.543,0.543,0,0.0731,0.88,0.88,0.88,0,0,0,0,0,0,0,0,0.00568,0.00568,0.448,0.484,0.453,1,0.663,0.066,0.663,0.663,0.018,0.018,0.19,0.19,0.333,1 +1,0.116,0.46,0.46,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0,0,0.325,0.458,0.196,1,0.575,0.0355,0.575,0.575,0.018,0.018,0.19,0.19,0.667,1 +1,0.0495,0.368,0.368,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0.00568,0.00568,0.258,0.465,0.0805,1,0.389,0.0203,0.389,0.389,0.018,0.018,0.19,0.19,1,1 +1,0.0495,0.34,0.34,0,0,0.78,0.78,0.78,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0392,1,0.203,0.00507,0.203,0.203,0.018,0.018,0.23,0.23,1,1 +1,0.0495,0.34,0.34,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0196,1,0.168,0.00507,0.168,0.168,0.018,0.018,0.19,0.19,1,1 +1,0.0495,0.331,0.331,0,0,0.74,0.74,0.74,0,0,0,0,0,0,0,0.00246,0,0.00246,0.258,0.465,0.0152,1,0.133,0.0101,0.133,0.133,0.024,0.024,0.23,0.23,1,1 +1,0.05,0.304,0.304,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0.0174,0,0.0174,0.273,0.442,0.0239,1,0.141,0.0355,0.141,0.141,0.0479,0.0479,0.372,0.373,0.667,1 +1,0.104,0.331,0.331,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0.0156,0.0613,0,0.0769,0.307,0.426,0.0392,1,0.159,0.0609,0.159,0.159,0.0898,0.0898,0.531,0.532,0.333,1 +1,0.222,0.396,0.396,0,0.0853,0.76,0.76,0.76,0,0,0,0,0,0,0,0.0288,0,0.0288,0.35,0.459,0.0631,1,0.23,0.147,0.23,0.23,0.156,0.156,0.452,0.452,0.333,1 +0.667,0.163,0.432,0.432,0,0.146,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0,0,0.316,0.483,0.087,1,0.292,0.233,0.292,0.292,0.263,0.263,0.19,0.19,0.333,1 +0.667,0.162,0.313,0.313,0,0.0244,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0.0142,0.0142,0.276,0.487,0.107,1,0.292,0.223,0.292,0.292,0.503,0.503,0.19,0.19,0.333,1 +0.333,0.156,0.212,0.212,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0.0114,0.0114,0.242,0.487,0.126,1,0.283,0.208,0.283,0.283,0.725,0.725,0.151,0.151,0,1 +0.333,0.153,0.221,0.221,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0.017,0.017,0.245,0.487,0.141,1,0.292,0.223,0.292,0.292,0.761,0.761,0.119,0.119,0,1 +0.333,0.147,0.23,0.23,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0,0,0.248,0.491,0.157,1,0.292,0.233,0.292,0.292,0.725,0.725,0.111,0.111,0,1 +0.333,0.143,0.221,0.221,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0.0142,0.0142,0.245,0.495,0.165,1,0.283,0.213,0.283,0.283,0.719,0.719,0.111,0.111,0,1 +0.667,0.235,0.258,0.258,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.525,0.187,1,0.283,0.193,0.283,0.283,0.539,0.539,0.111,0.111,0,1 +0.333,0.142,0.285,0.285,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0.00284,0.00284,0.267,0.491,0.198,1,0.283,0.249,0.283,0.283,0.449,0.449,0.19,0.19,0,1 +0.333,0.143,0.294,0.294,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0.00568,0.00568,0.27,0.499,0.222,1,0.292,0.299,0.292,0.292,0.365,0.365,0.46,0.46,0,1 +0.333,0.144,0.359,0.359,0,0,0.88,0.88,0.88,0,0,0,0,0,0,0,0,0,0,0.291,0.507,0.276,1,0.398,0.558,0.398,0.398,0.222,0.222,0.998,1,0,1 +0.333,0.151,0.488,0.488,0,0,0.96,0.96,0.96,0,0,0,0,0,0,0,0,0,0,0.334,0.524,0.339,1,0.504,0.817,0.504,0.504,0.138,0.138,0.967,0.968,0,1 +1,0.408,0.58,0.58,0,0,1,1,1,0,0,0,0,0,0,0,0,0.00852,0.00852,0.58,0.653,0.457,1,0.584,0.583,0.584,0.584,0.0779,0.0779,0.539,0.54,0,1 +1,0.518,0.616,0.616,0,0,0.96,0.96,0.96,0,0,0,0,0,0,0,0.0193,0.00568,0.025,0.616,0.616,0.64,1,0.672,0.355,0.672,0.672,0.0479,0.0479,0.483,0.484,0,1 +1,0.668,0.653,0.653,0,0.0366,0.94,0.94,0.94,0.00623,0.0414,0,0,0,0,0,0,0.00568,0.00568,0.653,0.579,0.79,1,0.716,0.223,0.716,0.716,0.024,0.024,0.404,0.405,0,1 +1,0.542,0.635,0.635,0,0,0.92,0.92,0.92,0.0201,0.0302,0,0,0,0,0,0,0,0,0.509,0.525,0.749,1,0.761,0.0964,0.761,0.761,0.018,0.018,0.341,0.341,0.333,1 +1,0.397,0.543,0.543,0,0,0.88,0.88,0.88,0.0184,0,0,0,0,0,0,0,0,0,0.448,0.484,0.453,1,0.663,0.066,0.663,0.663,0.018,0.018,0.19,0.19,0.333,1 +1,0.116,0.46,0.46,0,0,0.82,0.82,0.82,0.0134,0,0,0,0,0,0,0,0,0,0.325,0.458,0.196,1,0.575,0.0355,0.575,0.575,0.018,0.018,0.19,0.19,0.667,1 +1,0.0743,0.368,0.368,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0,0,0.294,0.454,0.0957,1,0.389,0.0203,0.389,0.389,0.018,0.018,0.19,0.19,0.667,1 +1,0.0495,0.34,0.34,0,0,0.78,0.78,0.78,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0479,1,0.203,0.00507,0.203,0.203,0.018,0.018,0.23,0.23,1,1 +1,0.0495,0.34,0.34,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.465,0.0261,1,0.168,0.00507,0.168,0.168,0.018,0.018,0.19,0.19,1,1 +1,0.0495,0.331,0.331,0,0,0.74,0.74,0.74,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0174,1,0.133,0.0101,0.133,0.133,0.024,0.024,0.23,0.23,1,1 +1,0.05,0.304,0.304,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0,0,0,0.273,0.442,0.0239,1,0.141,0.0355,0.141,0.141,0.0479,0.0479,0.372,0.373,0.667,1 +1,0.0495,0.331,0.331,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0305,1,0.159,0.0609,0.159,0.159,0.0898,0.0898,0.531,0.532,1,1 +1,0.0495,0.396,0.396,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0522,1,0.23,0.147,0.23,0.23,0.156,0.156,0.452,0.452,1,1 +1,0.0495,0.432,0.432,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0936,1,0.292,0.233,0.292,0.292,0.263,0.263,0.19,0.19,1,1 +1,0.162,0.313,0.313,0,0,0.82,0.82,0.82,0.0122,0.0478,0,0,0,0,0,0.00243,0.00284,0.00527,0.276,0.487,0.155,1,0.292,0.223,0.292,0.292,0.503,0.503,0.19,0.19,0.667,1 +0.667,0.156,0.212,0.212,0,0,0.82,0.82,0.82,0.012,0,0,0,0,0,0,0.0503,0,0.0503,0.242,0.487,0.205,1,0.283,0.208,0.283,0.283,0.725,0.725,0.151,0.151,0.333,1 +0.667,0.256,0.221,0.221,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0,0,0.233,0.508,0.244,1,0.292,0.223,0.292,0.292,0.761,0.761,0.119,0.119,0,1 +1,0.343,0.23,0.23,0,0.0366,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0,0,0.23,0.542,0.268,1,0.292,0.233,0.292,0.292,0.725,0.725,0.111,0.111,0,1 +0.333,0.143,0.221,0.221,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0,0,0.245,0.495,0.287,1,0.283,0.213,0.283,0.283,0.719,0.719,0.111,0.111,0,1 +0.333,0.142,0.258,0.258,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.495,0.339,1,0.283,0.193,0.283,0.283,0.539,0.539,0.111,0.111,0,1 +0.333,0.142,0.285,0.285,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0,0,0.267,0.491,0.387,1,0.283,0.249,0.283,0.283,0.449,0.449,0.19,0.19,0,1 +0.333,0.143,0.294,0.294,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0.00284,0.00284,0.27,0.499,0.427,1,0.292,0.299,0.292,0.292,0.365,0.365,0.46,0.46,0,1 +0.333,0.144,0.359,0.359,0,0.0366,0.88,0.88,0.88,0,0,0,0,0,0,0,0,0,0,0.291,0.507,0.448,1,0.398,0.558,0.398,0.398,0.222,0.222,0.998,1,0,1 +0.667,0.252,0.488,0.488,0,0,0.96,0.96,0.96,0,0,0,0,0,0,0,0,0.00852,0.00852,0.411,0.582,0.464,1,0.504,0.817,0.504,0.504,0.138,0.138,0.967,0.968,0,1 +0,0.0495,0.58,0.58,0,0,1,1,1,0,0,0,0,0,0,0,0,0.00852,0.00852,0.258,0.465,0.546,1,0.584,0.583,0.584,0.584,0.0779,0.0779,0.539,0.54,0,1 +0.667,0.362,0.616,0.616,0,0,0.96,0.96,0.96,0,0,0,0,0,0,0,0,0.0255,0.0255,0.497,0.566,0.718,1,0.672,0.355,0.672,0.672,0.0479,0.0479,0.483,0.484,0,1 +0.667,0.462,0.653,0.653,0,0,0.94,0.94,0.94,0,0,0,0,0,0,0,0,0,0,0.521,0.541,0.844,1,0.716,0.223,0.716,0.716,0.024,0.024,0.404,0.405,0,1 +0.333,0.296,0.635,0.635,0,0,0.92,0.92,0.92,0,0,0,0,0,0,0,0.031,0.00284,0.0338,0.383,0.495,0.779,1,0.761,0.0964,0.761,0.761,0.018,0.018,0.341,0.341,0,1 +0.667,0.397,0.543,0.543,0,0,0.88,0.88,0.88,0,0,0,0,0,0,0,0.0433,0.00284,0.0461,0.448,0.484,0.492,1,0.663,0.066,0.663,0.663,0.018,0.018,0.19,0.19,0,1 +1,0.183,0.46,0.46,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0.00568,0.00568,0.393,0.451,0.224,1,0.575,0.0355,0.575,0.575,0.018,0.018,0.19,0.19,0.333,1 +1,0.0495,0.368,0.368,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0.0142,0.0142,0.258,0.465,0.0957,1,0.389,0.0203,0.389,0.389,0.018,0.018,0.19,0.19,1,1 +1,0.0495,0.34,0.34,0,0,0.78,0.78,0.78,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0479,1,0.203,0.00507,0.203,0.203,0.018,0.018,0.23,0.23,1,1 +1,0.0495,0.34,0.34,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0261,1,0.168,0.00507,0.168,0.168,0.018,0.018,0.19,0.19,1,1 +1,0.0495,0.331,0.331,0,0,0.74,0.74,0.74,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0174,1,0.133,0.0101,0.133,0.133,0.024,0.024,0.23,0.23,1,1 +1,0.0495,0.304,0.304,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0239,1,0.141,0.0355,0.141,0.141,0.0479,0.0479,0.372,0.373,1,1 +1,0.0768,0.331,0.331,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0,0,0,0.282,0.446,0.0305,1,0.159,0.0609,0.159,0.159,0.0898,0.0898,0.531,0.532,0.667,1 +1,0.0495,0.396,0.396,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0522,1,0.23,0.147,0.23,0.23,0.156,0.156,0.452,0.452,1,1 +1,0.0495,0.432,0.432,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0936,1,0.292,0.233,0.292,0.292,0.263,0.263,0.19,0.19,1,1 +0.667,0.0495,0.313,0.313,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0.0316,0,0.0316,0.258,0.465,0.155,1,0.292,0.223,0.292,0.292,0.503,0.503,0.19,0.19,0.667,1 +0.667,0.263,0.212,0.212,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0.037,0.00284,0.0398,0.227,0.508,0.205,1,0.283,0.208,0.283,0.283,0.725,0.725,0.151,0.151,0,1 +0.667,0.256,0.221,0.221,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0.0221,0,0.0221,0.233,0.508,0.244,1,0.292,0.223,0.292,0.292,0.761,0.761,0.119,0.119,0,1 +0.667,0.245,0.23,0.23,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0.0625,0.017,0,0.0795,0.239,0.517,0.268,1,0.292,0.233,0.292,0.292,0.725,0.725,0.111,0.111,0,1 +0.333,0.143,0.221,0.221,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0.0201,0,0.0201,0.245,0.495,0.287,1,0.283,0.213,0.283,0.283,0.719,0.719,0.111,0.111,0,1 +0.333,0.142,0.258,0.258,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0.017,0.017,0.258,0.495,0.339,1,0.283,0.193,0.283,0.283,0.539,0.539,0.111,0.111,0,1 +0.333,0.142,0.285,0.285,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0.00852,0.00852,0.267,0.491,0.387,1,0.283,0.249,0.283,0.283,0.449,0.449,0.19,0.19,0,1 +0.667,0.236,0.294,0.294,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0.00852,0.00852,0.282,0.533,0.427,1,0.292,0.299,0.292,0.292,0.365,0.365,0.46,0.46,0,1 +0.333,0.144,0.359,0.359,0,0,0.88,0.88,0.88,0,0,0,0,0,0,0,0,0.0142,0.0142,0.291,0.507,0.448,1,0.398,0.558,0.398,0.398,0.222,0.222,0.998,1,0,1 +0.333,0.151,0.488,0.488,0,0,0.96,0.96,0.96,0,0,0,0,0,0,0,0,0.00284,0.00284,0.334,0.524,0.464,1,0.504,0.817,0.504,0.504,0.138,0.138,0.967,0.968,0,1 +0.667,0.289,0.58,0.58,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0.472,0.591,0.546,1,0.584,0.583,0.584,0.584,0.0779,0.0779,0.539,0.54,0,1 +0.667,0.362,0.616,0.616,0,0,0.96,0.96,0.96,0,0,0,0,0,0,0,0,0.00568,0.00568,0.497,0.566,0.718,1,0.672,0.355,0.672,0.672,0.0479,0.0479,0.483,0.484,0,1 +0.667,0.462,0.653,0.653,0,0,0.94,0.94,0.94,0,0,0,0,0,0,0,0,0,0,0.521,0.541,0.844,1,0.716,0.223,0.716,0.716,0.024,0.024,0.404,0.405,0,1 +0.667,0.542,0.635,0.635,0,0,0.92,0.92,0.92,0,0,0,0,0,0,0,0,0,0,0.509,0.525,0.779,1,0.761,0.0964,0.761,0.761,0.018,0.018,0.341,0.341,0,1 +0.667,0.223,0.543,0.543,0,0.0366,0.88,0.88,0.88,0,0,0,0,0,0,0,0.0116,0,0.0116,0.353,0.475,0.492,1,0.663,0.066,0.663,0.663,0.018,0.018,0.19,0.19,0.333,1 +0.667,0.116,0.46,0.46,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0.0202,0,0.0202,0.325,0.458,0.224,1,0.575,0.0355,0.575,0.575,0.018,0.018,0.19,0.19,0.333,1 +0.667,0.0743,0.368,0.368,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0,0,0.294,0.454,0.0805,1,0.389,0.0203,0.389,0.389,0.018,0.018,0.19,0.19,0.333,1 +0.667,0.0578,0.34,0.34,0,0,0.78,0.78,0.78,0,0,0,0,0,0,0,0,0,0,0.285,0.446,0.0392,1,0.203,0.00507,0.203,0.203,0.018,0.018,0.23,0.23,0.333,1 +0.667,0.0495,0.34,0.34,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0,0.0142,0.0142,0.285,0.442,0.0196,1,0.168,0.00507,0.168,0.168,0.018,0.018,0.19,0.19,0.333,1 +0.667,0.0495,0.331,0.331,0,0,0.74,0.74,0.74,0,0,0,0,0,0,0,0,0,0,0.282,0.438,0.0152,1,0.133,0.0101,0.133,0.133,0.024,0.024,0.23,0.23,0.333,1 +1,0.0495,0.304,0.304,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0239,1,0.141,0.0355,0.141,0.141,0.0479,0.0479,0.372,0.373,1,1 +1,0.0495,0.331,0.331,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0.00528,0.00284,0.00812,0.258,0.465,0.0392,1,0.159,0.0609,0.159,0.159,0.0898,0.0898,0.531,0.532,1,1 +1,0.222,0.396,0.396,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0.0928,0,0.0928,0.35,0.459,0.0631,1,0.23,0.147,0.23,0.23,0.156,0.156,0.452,0.452,0.333,1 +1,0.277,0.432,0.432,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0.0402,0.00852,0.0487,0.374,0.5,0.087,1,0.292,0.233,0.292,0.292,0.263,0.263,0.19,0.19,0.333,1 +0.667,0.162,0.313,0.313,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0.0135,0,0.0135,0.276,0.487,0.107,1,0.292,0.223,0.292,0.292,0.503,0.503,0.19,0.19,0.333,1 +0.333,0.0495,0.212,0.212,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.126,1,0.283,0.208,0.283,0.283,0.725,0.725,0.151,0.151,0.333,1 +0.333,0.0495,0.221,0.221,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.141,1,0.292,0.223,0.292,0.292,0.761,0.761,0.119,0.119,0.333,1 +0.333,0.147,0.23,0.23,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0.00852,0.00852,0.248,0.491,0.157,1,0.292,0.233,0.292,0.292,0.725,0.725,0.111,0.111,0,1 +0.333,0.143,0.221,0.221,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0.00568,0.00568,0.245,0.495,0.165,1,0.283,0.213,0.283,0.283,0.719,0.719,0.111,0.111,0,1 +0.333,0.142,0.258,0.258,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0,0,0.258,0.495,0.187,1,0.283,0.193,0.283,0.283,0.539,0.539,0.111,0.111,0,1 +0.333,0.142,0.285,0.285,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0,0,0.267,0.491,0.198,1,0.283,0.249,0.283,0.283,0.449,0.449,0.19,0.19,0,1 +0.333,0.143,0.294,0.294,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0.00568,0.00568,0.27,0.499,0.222,1,0.292,0.299,0.292,0.292,0.365,0.365,0.46,0.46,0,1 +0.333,0.144,0.359,0.359,0,0.0122,0.88,0.88,0.88,0,0,0,0,0,0,0,0.0112,0,0.0112,0.291,0.507,0.276,1,0.398,0.558,0.398,0.398,0.222,0.222,0.998,1,0,1 +1,0.353,0.488,0.488,0,0.0244,0.96,0.96,0.96,0,0,0,0,0,0,0,0.0124,0.00284,0.0153,0.488,0.641,0.339,1,0.504,0.817,0.504,0.504,0.138,0.138,0.967,0.968,0,1 +1,0.408,0.58,0.58,0,0,1,1,1,0,0,0,0,0,0,0.0452,0.0533,0.0199,0.118,0.58,0.653,0.457,1,0.584,0.583,0.584,0.584,0.0779,0.0779,0.539,0.54,0,1 +1,0.518,0.616,0.616,0,0,0.96,0.96,0.96,0,0,0,0,0,0,0,0.0236,0.017,0.0406,0.616,0.616,0.64,1,0.672,0.355,0.672,0.672,0.0479,0.0479,0.483,0.484,0,1 +1,0.668,0.653,0.653,0,0,0.94,0.94,0.94,0,0,0,0,0,0,0,0,0,0,0.653,0.579,0.79,1,0.716,0.223,0.716,0.716,0.024,0.024,0.404,0.405,0,1 +1,0.0495,0.635,0.635,0,0,0.92,0.92,0.92,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.749,1,0.761,0.0964,0.761,0.761,0.018,0.018,0.341,0.341,1,1 +1,0.0495,0.543,0.543,0,0,0.88,0.88,0.88,0,0,0,0,0,0,0,0,0.00568,0.00568,0.258,0.465,0.453,1,0.663,0.066,0.663,0.663,0.018,0.018,0.19,0.19,1,1 +1,0.0495,0.46,0.46,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.196,1,0.575,0.0355,0.575,0.575,0.018,0.018,0.19,0.19,1,1 +1,0.0495,0.368,0.368,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0805,1,0.389,0.0203,0.389,0.389,0.018,0.018,0.19,0.19,1,1 +1,0.0578,0.34,0.34,0,0,0.78,0.78,0.78,0,0,0,0,0,0,0,0,0,0,0.285,0.446,0.0392,1,0.203,0.00507,0.203,0.203,0.018,0.018,0.23,0.23,0.667,1 +1,0.0495,0.34,0.34,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0,0,0,0.285,0.442,0.0196,1,0.168,0.00507,0.168,0.168,0.018,0.018,0.19,0.19,0.667,1 +1,0.0495,0.331,0.331,0,0,0.74,0.74,0.74,0,0,0,0,0,0,0,0,0,0,0.282,0.438,0.0152,1,0.133,0.0101,0.133,0.133,0.024,0.024,0.23,0.23,0.667,1 +1,0.0495,0.304,0.304,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0.00269,0,0.00269,0.258,0.465,0.0239,1,0.141,0.0355,0.141,0.141,0.0479,0.0479,0.372,0.373,1,1 +1,0.0768,0.331,0.331,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0.0175,0,0.0175,0.282,0.446,0.0392,1,0.159,0.0609,0.159,0.159,0.0898,0.0898,0.531,0.532,0.667,1 +0.667,0.0495,0.396,0.396,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.465,0.0631,1,0.23,0.147,0.23,0.23,0.156,0.156,0.452,0.452,0.667,1 +0.333,0.163,0.432,0.432,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0.00852,0.00852,0.316,0.483,0.087,1,0.292,0.233,0.292,0.292,0.263,0.263,0.19,0.19,0,1 +0.333,0.162,0.313,0.313,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0.0383,0,0.0383,0.276,0.487,0.107,1,0.292,0.223,0.292,0.292,0.503,0.503,0.19,0.19,0,1 +0.667,0.263,0.212,0.212,0,0.0122,0.82,0.82,0.82,0,0,0,0,0,0,0,0.021,0.0114,0.0324,0.227,0.508,0.126,1,0.283,0.208,0.283,0.283,0.725,0.725,0.151,0.151,0,1 +0.667,0.256,0.221,0.221,0,0.0244,0.8,0.8,0.8,0,0,0,0,0,0,0,0.0316,0,0.0316,0.233,0.508,0.141,1,0.292,0.223,0.292,0.292,0.761,0.761,0.119,0.119,0,1 +0.333,0.147,0.23,0.23,0,0.0122,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0,0,0.248,0.491,0.157,1,0.292,0.233,0.292,0.292,0.725,0.725,0.111,0.111,0,1 +0.333,0.143,0.221,0.221,0,0.0244,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0,0,0.245,0.495,0.165,1,0.283,0.213,0.283,0.283,0.719,0.719,0.111,0.111,0,1 +0.333,0.142,0.258,0.258,0,0,0.84,0.84,0.84,0.00994,0.0414,0,0,0,0,0,0,0.00284,0.00284,0.258,0.495,0.187,1,0.283,0.193,0.283,0.283,0.539,0.539,0.111,0.111,0,1 +0.333,0.142,0.285,0.285,0,0,0.84,0.84,0.84,0.0175,0.0541,0,0,0,0,0,0,0,0,0.267,0.491,0.198,1,0.283,0.249,0.283,0.283,0.449,0.449,0.19,0.19,0,1 +0.333,0.143,0.294,0.294,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0.017,0.017,0.27,0.499,0.222,1,0.292,0.299,0.292,0.292,0.365,0.365,0.46,0.46,0,1 +0.333,0.144,0.359,0.359,0,0,0.88,0.88,0.88,0,0,0,0,0,0,0,0.00224,0.00568,0.00792,0.291,0.507,0.276,1,0.398,0.558,0.398,0.398,0.222,0.222,0.998,1,0,1 +0.333,0.151,0.488,0.488,0,0,0.96,0.96,0.96,0,0,0,0,0,0,0,0.0277,0.00852,0.0362,0.334,0.524,0.339,1,0.504,0.817,0.504,0.504,0.138,0.138,0.967,0.968,0,1 +0.667,0.289,0.58,0.58,0,0.0366,1,1,1,0,0,0,0,0,0,0,0.0506,0.00852,0.0591,0.472,0.591,0.457,1,0.584,0.583,0.584,0.584,0.0779,0.0779,0.539,0.54,0,1 +1,0.518,0.616,0.616,0,0,0.96,0.96,0.96,0,0,0,0,0,0,0,0,0.017,0.017,0.616,0.616,0.64,1,0.672,0.355,0.672,0.672,0.0479,0.0479,0.483,0.484,0,1 +1,0.668,0.653,0.653,0,0,0.94,0.94,0.94,0,0,0,0,0,0,0,0,0,0,0.653,0.579,0.79,1,0.716,0.223,0.716,0.716,0.024,0.024,0.404,0.405,0,1 +1,0.542,0.635,0.635,0,0,0.92,0.92,0.92,0,0,0,0,0,0,0,0.00255,0.00284,0.00539,0.509,0.525,0.749,1,0.761,0.0964,0.761,0.761,0.018,0.018,0.341,0.341,0.333,1 +1,0.223,0.543,0.543,0,0,0.88,0.88,0.88,0,0,0,0,0,0,0,0.0179,0.0142,0.0321,0.353,0.475,0.453,1,0.663,0.066,0.663,0.663,0.018,0.018,0.19,0.19,0.667,1 +1,0.0495,0.46,0.46,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.196,1,0.575,0.0355,0.575,0.575,0.018,0.018,0.19,0.19,1,1 +1,0.0495,0.368,0.368,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0805,1,0.389,0.0203,0.389,0.389,0.018,0.018,0.19,0.19,1,1 +1,0.0495,0.34,0.34,0,0,0.78,0.78,0.78,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0392,1,0.203,0.00507,0.203,0.203,0.018,0.018,0.23,0.23,1,1 +1,0.0495,0.34,0.34,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0196,1,0.168,0.00507,0.168,0.168,0.018,0.018,0.19,0.19,1,1 +1,0.0495,0.331,0.331,0,0,0.74,0.74,0.74,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0152,1,0.133,0.0101,0.133,0.133,0.024,0.024,0.23,0.23,1,1 +0.333,0.0495,0.304,0.304,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0.0342,0,0.0342,0.258,0.465,0.0239,1,0.141,0.0355,0.141,0.141,0.0479,0.0479,0.372,0.373,0.333,1 +0,0.0495,0.331,0.331,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0392,1,0.159,0.0609,0.159,0.159,0.0898,0.0898,0.531,0.532,0,1 +0,0.0495,0.396,0.396,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0631,1,0.23,0.147,0.23,0.23,0.156,0.156,0.452,0.452,0,1 +0,0.0495,0.432,0.432,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.087,1,0.292,0.233,0.292,0.292,0.263,0.263,0.19,0.19,0,1 +0.333,0.162,0.313,0.313,0,0.0122,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0,0,0.276,0.487,0.107,1,0.292,0.223,0.292,0.292,0.503,0.503,0.19,0.19,0,1 +0.333,0.156,0.212,0.212,0,0.0609,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0,0,0.242,0.487,0.126,1,0.283,0.208,0.283,0.283,0.725,0.725,0.151,0.151,0,1 +0.333,0.153,0.221,0.221,0,0,0.8,0.8,0.8,0,0,0.0255,0.00596,0,0,0,0,0,0,0.245,0.487,0.141,1,0.292,0.223,0.292,0.292,0.761,0.761,0.119,0.119,0,1 +0.333,0.147,0.23,0.23,0,0,0.8,0.8,0.8,0,0,0.0384,0.00982,0.147,0.147,0,0,0,0,0.248,0.491,0.157,1,0.292,0.233,0.292,0.292,0.725,0.725,0.111,0.111,0,1 +0.333,0.143,0.221,0.221,0,0,0.84,0.84,0.84,0,0,0,0,0.22,0.22,0,0.0154,0.00284,0.0182,0.245,0.495,0.165,1,0.283,0.213,0.283,0.283,0.719,0.719,0.111,0.111,0,1 +0.333,0.142,0.258,0.258,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0.00906,0.00284,0.0119,0.258,0.495,0.187,1,0.283,0.193,0.283,0.283,0.539,0.539,0.111,0.111,0,1 +0,0.0495,0.285,0.285,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0.0199,0.0199,0.258,0.465,0.198,1,0.283,0.249,0.283,0.283,0.449,0.449,0.19,0.19,0,1 +0.667,0.236,0.294,0.294,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0.00568,0.00568,0.282,0.533,0.222,1,0.292,0.299,0.292,0.292,0.365,0.365,0.46,0.46,0,1 +0.667,0.239,0.359,0.359,0,0.0122,0.88,0.88,0.88,0,0,0,0,0,0,0,0,0.0114,0.0114,0.325,0.549,0.276,1,0.398,0.558,0.398,0.398,0.222,0.222,0.998,1,0,1 +0.667,0.252,0.488,0.488,0,0.0244,0.96,0.96,0.96,0,0,0,0,0,0,0,0,0.00568,0.00568,0.411,0.582,0.339,1,0.504,0.817,0.504,0.504,0.138,0.138,0.967,0.968,0,1 +0.667,0.289,0.58,0.58,0,0,1,1,1,0,0,0,0,0,0,0,0,0.00568,0.00568,0.472,0.591,0.457,1,0.584,0.583,0.584,0.584,0.0779,0.0779,0.539,0.54,0,1 +0.333,0.206,0.616,0.616,0,0,0.96,0.96,0.96,0,0,0,0,0,0,0,0,0.00568,0.00568,0.377,0.516,0.64,1,0.672,0.355,0.672,0.672,0.0479,0.0479,0.483,0.484,0,1 +0.333,0.256,0.653,0.653,0,0.122,0.94,0.94,0.94,0,0,0,0,0,0,0,0.00269,0.0114,0.014,0.39,0.503,0.79,1,0.716,0.223,0.716,0.716,0.024,0.024,0.404,0.405,0,1 +1,0.788,0.635,0.635,0,0.146,0.92,0.92,0.92,0,0,0,0,0,0,0,0.043,0,0.043,0.635,0.555,0.749,1,0.761,0.0964,0.761,0.761,0.018,0.018,0.341,0.341,0,1 +1,0.223,0.543,0.543,0,0.0244,0.88,0.88,0.88,0,0,0,0,0,0,0,0,0.00852,0.00852,0.353,0.475,0.453,1,0.663,0.066,0.663,0.663,0.018,0.018,0.19,0.19,0.667,1 +1,0.0495,0.46,0.46,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.196,1,0.575,0.0355,0.575,0.575,0.018,0.018,0.19,0.19,1,1 +1,0.0495,0.368,0.368,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0805,1,0.389,0.0203,0.389,0.389,0.018,0.018,0.19,0.19,1,1 +1,0.0495,0.34,0.34,0,0,0.78,0.78,0.78,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0392,1,0.203,0.00507,0.203,0.203,0.018,0.018,0.23,0.23,1,1 +1,0.0495,0.34,0.34,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0196,1,0.168,0.00507,0.168,0.168,0.018,0.018,0.19,0.19,1,1 +1,0.0495,0.331,0.331,0,0,0.74,0.74,0.74,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0152,1,0.133,0.0101,0.133,0.133,0.024,0.024,0.23,0.23,1,1 +1,0.0495,0.304,0.304,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0239,1,0.141,0.0355,0.141,0.141,0.0479,0.0479,0.372,0.373,1,1 +1,0.0495,0.331,0.331,0,0,0.72,0.72,0.72,0,0,0.00341,0,0,0,0,0.0145,0,0.0145,0.258,0.465,0.0392,1,0.159,0.0609,0.159,0.159,0.0898,0.0898,0.531,0.532,1,1 +1,0.222,0.396,0.396,0,0,0.76,0.76,0.76,0,0,0.0269,0.0112,0,0,0,0.0291,0,0.0291,0.35,0.459,0.0631,1,0.23,0.147,0.23,0.23,0.156,0.156,0.452,0.452,0.333,1 +1,0.39,0.432,0.432,0,0,0.8,0.8,0.8,0,0,0,0.00456,0.238,0.238,0,0.0434,0,0.0434,0.432,0.518,0.087,1,0.292,0.233,0.292,0.292,0.263,0.263,0.19,0.19,0,1 +0.667,0.274,0.313,0.313,0,0,0.82,0.82,0.82,0,0,0,0,0.0367,0.0367,0,0.0404,0,0.0404,0.294,0.508,0.107,1,0.292,0.223,0.292,0.292,0.503,0.503,0.19,0.19,0,1 +0.333,0.156,0.212,0.212,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0.00568,0.00568,0.242,0.487,0.126,1,0.283,0.208,0.283,0.283,0.725,0.725,0.151,0.151,0,1 +0.333,0.153,0.221,0.221,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0,0,0.245,0.487,0.141,1,0.292,0.223,0.292,0.292,0.761,0.761,0.119,0.119,0,1 +0.333,0.147,0.23,0.23,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0.00852,0.00852,0.248,0.491,0.157,1,0.292,0.233,0.292,0.292,0.725,0.725,0.111,0.111,0,1 +0.333,0.143,0.221,0.221,0,0.0122,0.84,0.84,0.84,0,0,0.0255,0,0,0,0,0,0.0114,0.0114,0.245,0.495,0.165,1,0.283,0.213,0.283,0.283,0.719,0.719,0.111,0.111,0,1 +0.667,0.235,0.258,0.258,0,0.0609,0.84,0.84,0.84,0,0,0.0436,0.0158,0,0,0,0,0.00284,0.00284,0.258,0.525,0.187,1,0.283,0.193,0.283,0.283,0.539,0.539,0.111,0.111,0,1 +0.667,0.235,0.285,0.285,0,0,0.84,0.84,0.84,0,0,0.0465,0,0.275,0.275,0,0,0,0,0.276,0.517,0.198,1,0.283,0.249,0.283,0.283,0.449,0.449,0.19,0.19,0,1 +0.667,0.236,0.294,0.294,0,0,0.82,0.82,0.82,0,0,0.0344,0,0,0,0,0,0.00568,0.00568,0.282,0.533,0.222,1,0.292,0.299,0.292,0.292,0.365,0.365,0.46,0.46,0,1 +1,0.334,0.359,0.359,0,0,0.88,0.88,0.88,0,0,0.0502,0,0,0,0,0,0.00568,0.00568,0.359,0.592,0.276,1,0.398,0.558,0.398,0.398,0.222,0.222,0.998,1,0,1 +1,0.353,0.488,0.488,0,0.0366,0.96,0.96,0.96,0,0,0.00312,0,0,0,0,0,0.00284,0.00284,0.488,0.641,0.339,1,0.504,0.817,0.504,0.504,0.138,0.138,0.967,0.968,0,1 +0.667,0.289,0.58,0.58,0,0,1,1,1,0,0,0,0,0,0,0,0.0233,0.00284,0.0261,0.472,0.591,0.457,1,0.584,0.583,0.584,0.584,0.0779,0.0779,0.539,0.54,0,1 +1,0.518,0.616,0.616,0,0,0.96,0.96,0.96,0,0,0,0,0,0,0,0.0926,0.00852,0.101,0.616,0.616,0.64,1,0.672,0.355,0.672,0.672,0.0479,0.0479,0.483,0.484,0,1 +1,0.462,0.653,0.653,0,0,0.94,0.94,0.94,0.0082,0.0414,0,0,0,0,0,0,0,0,0.521,0.541,0.79,1,0.716,0.223,0.716,0.716,0.024,0.024,0.404,0.405,0.333,1 +1,0.788,0.635,0.635,0,0,0.92,0.92,0.92,0.0174,0.0541,0,0,0,0,0,0.0245,0.00852,0.033,0.635,0.555,0.749,1,0.761,0.0964,0.761,0.761,0.018,0.018,0.341,0.341,0,1 +1,0.397,0.543,0.543,0,0,0.88,0.88,0.88,0,0,0,0,0,0,0,0.0163,0.0227,0.039,0.448,0.484,0.453,1,0.663,0.066,0.663,0.663,0.018,0.018,0.19,0.19,0.333,1 +1,0.116,0.46,0.46,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0,0,0.325,0.458,0.196,1,0.575,0.0355,0.575,0.575,0.018,0.018,0.19,0.19,0.667,1 +1,0.0743,0.368,0.368,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0,0,0.294,0.454,0.0805,1,0.389,0.0203,0.389,0.389,0.018,0.018,0.19,0.19,0.667,1 +1,0.0578,0.34,0.34,0,0,0.78,0.78,0.78,0,0,0,0,0,0,0,0,0,0,0.285,0.446,0.0392,1,0.203,0.00507,0.203,0.203,0.018,0.018,0.23,0.23,0.667,1 +1,0.0495,0.34,0.34,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0,0,0,0.285,0.442,0.0196,1,0.168,0.00507,0.168,0.168,0.018,0.018,0.19,0.19,0.667,1 +1,0.0495,0.331,0.331,0,0,0.74,0.74,0.74,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0152,1,0.133,0.0101,0.133,0.133,0.024,0.024,0.23,0.23,1,1 +1,0.05,0.304,0.304,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0,0.00284,0.00284,0.273,0.442,0.0239,1,0.141,0.0355,0.141,0.141,0.0479,0.0479,0.372,0.373,0.667,1 +0.667,0.0495,0.331,0.331,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0392,1,0.159,0.0609,0.159,0.159,0.0898,0.0898,0.531,0.532,0.667,1 +0.667,0.0495,0.396,0.396,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0.0124,0,0.0124,0.258,0.465,0.0631,1,0.23,0.147,0.23,0.23,0.156,0.156,0.452,0.452,0.667,1 +0.667,0.277,0.432,0.432,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0.0488,0,0.0488,0.374,0.5,0.087,1,0.292,0.233,0.292,0.292,0.263,0.263,0.19,0.19,0,1 +0.667,0.274,0.313,0.313,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0.00499,0.00284,0.00783,0.294,0.508,0.107,1,0.292,0.223,0.292,0.292,0.503,0.503,0.19,0.19,0,1 +0.667,0.263,0.212,0.212,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0.0739,0,0.0739,0.227,0.508,0.126,1,0.283,0.208,0.283,0.283,0.725,0.725,0.151,0.151,0,1 +0.667,0.256,0.221,0.221,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0,0,0.233,0.508,0.141,1,0.292,0.223,0.292,0.292,0.761,0.761,0.119,0.119,0,1 +0.667,0.147,0.23,0.23,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0.00568,0.00568,0.248,0.491,0.157,1,0.292,0.233,0.292,0.292,0.725,0.725,0.111,0.111,0.333,1 +0.333,0.0495,0.221,0.221,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0.00852,0.00852,0.258,0.465,0.165,1,0.283,0.213,0.283,0.283,0.719,0.719,0.111,0.111,0.333,1 +0.333,0.0495,0.258,0.258,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.187,1,0.283,0.193,0.283,0.283,0.539,0.539,0.111,0.111,0.333,1 +0.333,0.0495,0.285,0.285,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0.00852,0.00852,0.258,0.465,0.198,1,0.283,0.249,0.283,0.283,0.449,0.449,0.19,0.19,0.333,1 +0.333,0.143,0.294,0.294,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0.0113,0.00852,0.0198,0.27,0.499,0.222,1,0.292,0.299,0.292,0.292,0.365,0.365,0.46,0.46,0,1 +0.667,0.239,0.359,0.359,0,0,0.88,0.88,0.88,0.00438,0.0175,0,0,0,0,0,0,0,0,0.325,0.549,0.276,1,0.398,0.558,0.398,0.398,0.222,0.222,0.998,1,0,1 +0.667,0.252,0.488,0.488,0,0.0122,0.96,0.96,0.96,0.0188,0.078,0,0,0,0,0,0,0,0,0.411,0.582,0.339,1,0.504,0.817,0.504,0.504,0.138,0.138,0.967,0.968,0,1 +0.667,0.289,0.58,0.58,0,0.0975,1,1,1,0,0,0,0,0,0,0,0,0.0199,0.0199,0.472,0.591,0.457,1,0.584,0.583,0.584,0.584,0.0779,0.0779,0.539,0.54,0,1 +1,0.518,0.616,0.616,0,0,0.96,0.96,0.96,0,0,0,0,0,0,0,0,0.00852,0.00852,0.616,0.616,0.64,1,0.672,0.355,0.672,0.672,0.0479,0.0479,0.483,0.484,0,1 +1,0.668,0.653,0.653,0,0,0.94,0.94,0.94,0,0,0,0,0,0,0,0,0,0,0.653,0.579,0.79,1,0.716,0.223,0.716,0.716,0.024,0.024,0.404,0.405,0,1 +1,0.542,0.635,0.635,0,0,0.92,0.92,0.92,0,0,0,0,0,0,0,0.00232,0,0.00232,0.509,0.525,0.749,1,0.761,0.0964,0.761,0.761,0.018,0.018,0.341,0.341,0.333,1 +1,0.223,0.543,0.543,0,0,0.88,0.88,0.88,0,0,0,0,0,0,0,0.00697,0,0.00697,0.353,0.475,0.453,1,0.663,0.066,0.663,0.663,0.018,0.018,0.19,0.19,0.667,1 +1,0.0495,0.46,0.46,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.196,1,0.575,0.0355,0.575,0.575,0.018,0.018,0.19,0.19,1,1 +1,0.0495,0.371,0.371,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.099,1,0.391,0.0202,0.391,0.391,0.0181,0.0181,0.19,0.19,1,1 +1,0.0495,0.343,0.343,0,0,0.78,0.78,0.78,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0495,1,0.205,0.00504,0.205,0.205,0.0181,0.0181,0.23,0.23,1,1 +1,0.0495,0.343,0.343,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.465,0.027,1,0.169,0.00504,0.169,0.169,0.0181,0.0181,0.19,0.19,1,1 +1,0.0495,0.334,0.334,0,0,0.74,0.74,0.74,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.018,1,0.133,0.0101,0.133,0.133,0.0241,0.0241,0.23,0.23,1,1 +1,0.0503,0.306,0.306,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0,0,0,0.274,0.443,0.0248,1,0.142,0.0353,0.142,0.142,0.0482,0.0482,0.373,0.373,0.667,1 +1,0.0781,0.334,0.334,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0,0,0,0.283,0.447,0.0315,1,0.16,0.0605,0.16,0.16,0.0903,0.0903,0.532,0.532,0.667,1 +1,0.0495,0.398,0.398,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.054,1,0.231,0.146,0.231,0.231,0.157,0.157,0.452,0.452,1,1 +1,0.0495,0.436,0.436,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0.032,0,0.032,0.258,0.465,0.0968,1,0.293,0.232,0.293,0.293,0.265,0.265,0.19,0.19,1,1 +1,0.286,0.315,0.315,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0.0383,0.0227,0.061,0.296,0.511,0.16,1,0.293,0.222,0.293,0.293,0.506,0.506,0.19,0.19,0.333,1 +1,0.392,0.213,0.213,0,0.0731,0.82,0.82,0.82,0,0,0,0,0,0,0.0235,0.0588,0.00568,0.088,0.213,0.534,0.212,1,0.285,0.207,0.285,0.285,0.729,0.729,0.151,0.151,0,1 +1,0.381,0.222,0.222,0,0.0122,0.8,0.8,0.8,0,0,0,0,0,0,0,0.00727,0,0.00727,0.222,0.534,0.252,1,0.293,0.222,0.293,0.293,0.765,0.765,0.119,0.119,0,1 +1,0.364,0.232,0.232,0,0.0244,0.8,0.8,0.8,0,0,0,0,0,0,0.0529,0.0126,0,0.0656,0.232,0.546,0.277,1,0.293,0.232,0.293,0.293,0.729,0.729,0.111,0.111,0,1 +0.667,0.251,0.222,0.222,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0.00568,0.00568,0.234,0.528,0.297,1,0.285,0.212,0.285,0.285,0.723,0.723,0.111,0.111,0,1 +0.667,0.249,0.259,0.259,0,0,0.84,0.84,0.84,0.00343,0.0175,0,0,0,0,0,0,0.0142,0.0142,0.259,0.528,0.351,1,0.285,0.191,0.285,0.285,0.542,0.542,0.111,0.111,0,1 +0.667,0.249,0.287,0.287,0,0.0731,0.84,0.84,0.84,0.0215,0.0302,0,0,0,0,0,0,0,0,0.277,0.519,0.401,1,0.285,0.247,0.285,0.285,0.452,0.452,0.19,0.19,0,1 +0.667,0.251,0.297,0.297,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0,0,0.284,0.536,0.441,1,0.293,0.297,0.293,0.293,0.367,0.367,0.46,0.46,0,1 +0.667,0.259,0.361,0.361,0,0,0.88,0.88,0.88,0,0,0,0,0,0,0,0,0,0,0.327,0.552,0.464,1,0.4,0.554,0.4,0.4,0.223,0.223,1,1,0,1 +0.667,0.286,0.491,0.491,0,0.0122,0.96,0.96,0.96,0,0,0,0,0,0,0,0.0125,0.00284,0.0153,0.413,0.585,0.479,1,0.507,0.811,0.507,0.507,0.139,0.139,0.968,0.968,0,1 +1,0.501,0.584,0.584,0,0.0609,1,1,1,0,0,0,0,0,0,0,0,0.00568,0.00568,0.584,0.658,0.565,1,0.587,0.58,0.587,0.587,0.0783,0.0783,0.54,0.54,0,1 +1,0.656,0.621,0.621,0,0,0.96,0.96,0.96,0,0,0,0,0,0,0,0.0279,0.00852,0.0364,0.621,0.621,0.743,1,0.676,0.353,0.676,0.676,0.0482,0.0482,0.484,0.484,0,1 +1,0.806,0.658,0.658,0,0,0.94,0.94,0.94,0,0,0,0,0,0,0,0,0.0114,0.0114,0.658,0.583,0.873,1,0.72,0.222,0.72,0.72,0.0241,0.0241,0.405,0.405,0,1 +1,0.851,0.639,0.639,0,0,0.92,0.92,0.92,0,0,0,0,0,0,0,0,0.00284,0.00284,0.639,0.559,0.806,1,0.765,0.0957,0.765,0.765,0.0181,0.0181,0.341,0.341,0,1 +1,0.561,0.547,0.547,0,0,0.88,0.88,0.88,0,0,0,0,0,0,0,0.0289,0.00568,0.0346,0.547,0.497,0.509,1,0.667,0.0655,0.667,0.667,0.0181,0.0181,0.19,0.19,0,1 +1,0.249,0.463,0.463,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0.00262,0.00284,0.00546,0.463,0.447,0.232,1,0.578,0.0353,0.578,0.578,0.0181,0.0181,0.19,0.19,0,1 +1,0.099,0.371,0.371,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0.0613,0.021,0,0.0823,0.333,0.445,0.099,1,0.391,0.0202,0.391,0.391,0.0181,0.0181,0.19,0.19,0.333,1 +1,0.0578,0.343,0.343,0,0,0.78,0.78,0.78,0,0,0,0,0,0,0,0,0.00852,0.00852,0.286,0.447,0.0495,1,0.205,0.00504,0.205,0.205,0.0181,0.0181,0.23,0.23,0.667,1 +1,0.0495,0.343,0.343,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0,0,0,0.286,0.443,0.027,1,0.169,0.00504,0.169,0.169,0.0181,0.0181,0.19,0.19,0.667,1 +1,0.0495,0.334,0.334,0,0,0.74,0.74,0.74,0,0,0,0,0,0,0,0,0.00568,0.00568,0.283,0.438,0.018,1,0.133,0.0101,0.133,0.133,0.0241,0.0241,0.23,0.23,0.667,1 +1,0.0495,0.306,0.306,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0,0.0255,0.0255,0.258,0.465,0.0248,1,0.142,0.0353,0.142,0.142,0.0482,0.0482,0.373,0.373,1,1 +1,0.0495,0.334,0.334,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0,0.00568,0.00568,0.258,0.465,0.0315,1,0.16,0.0605,0.16,0.16,0.0903,0.0903,0.532,0.532,1,1 +1,0.0495,0.398,0.398,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0,0.0114,0.0114,0.258,0.465,0.054,1,0.231,0.146,0.231,0.231,0.157,0.157,0.452,0.452,1,1 +1,0.0495,0.436,0.436,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0968,1,0.293,0.232,0.293,0.293,0.265,0.265,0.19,0.19,1,1 +1,0.168,0.315,0.315,0,0.0122,0.82,0.82,0.82,0,0,0,0,0,0,0,0.00823,0,0.00823,0.277,0.488,0.16,1,0.293,0.222,0.293,0.293,0.506,0.506,0.19,0.19,0.667,1 +1,0.278,0.213,0.213,0,0.0244,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0,0,0.228,0.511,0.212,1,0.285,0.207,0.285,0.285,0.729,0.729,0.151,0.151,0.333,1 +0.667,0.16,0.222,0.222,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0,0,0.246,0.488,0.252,1,0.293,0.222,0.293,0.293,0.765,0.765,0.119,0.119,0.333,1 +0.667,0.259,0.232,0.232,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0,0,0.24,0.519,0.277,1,0.293,0.232,0.293,0.293,0.729,0.729,0.111,0.111,0,1 +0.667,0.251,0.222,0.222,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0,0,0.234,0.528,0.297,1,0.285,0.212,0.285,0.285,0.723,0.723,0.111,0.111,0,1 +0.667,0.249,0.259,0.259,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0.0114,0.0114,0.259,0.528,0.351,1,0.285,0.191,0.285,0.285,0.542,0.542,0.111,0.111,0,1 +0.667,0.249,0.287,0.287,0,0,0.84,0.84,0.84,0,0,0.0292,0.00596,0,0,0,0,0,0,0.277,0.519,0.401,1,0.285,0.247,0.285,0.285,0.452,0.452,0.19,0.19,0,1 +0.667,0.15,0.297,0.297,0,0,0.82,0.82,0.82,0,0,0.0287,0.00982,0.147,0.147,0,0,0.00852,0.00852,0.271,0.501,0.441,1,0.293,0.297,0.293,0.293,0.367,0.367,0.46,0.46,0.333,1 +0.667,0.259,0.361,0.361,0,0.0366,0.88,0.88,0.88,0,0,0.0333,0,0.22,0.22,0,0,0.00568,0.00568,0.327,0.552,0.464,1,0.4,0.554,0.4,0.4,0.223,0.223,1,1,0,1 +1,0.404,0.491,0.491,0,0,0.96,0.96,0.96,0,0,0.0402,0,0,0,0,0,0,0,0.491,0.646,0.479,1,0.507,0.811,0.507,0.507,0.139,0.139,0.968,0.968,0,1 +1,0.501,0.584,0.584,0,0,1,1,1,0,0,0.0211,0,0,0,0,0,0.00284,0.00284,0.584,0.658,0.565,1,0.587,0.58,0.587,0.587,0.0783,0.0783,0.54,0.54,0,1 +1,0.656,0.621,0.621,0,0,0.96,0.96,0.96,0,0,0,0,0,0,0,0.00253,0,0.00253,0.621,0.621,0.743,1,0.676,0.353,0.676,0.676,0.0482,0.0482,0.484,0.484,0,1 +1,0.806,0.658,0.658,0,0,0.94,0.94,0.94,0,0,0,0,0,0,0,0.0398,0.00852,0.0483,0.658,0.583,0.873,1,0.72,0.222,0.72,0.72,0.0241,0.0241,0.405,0.405,0,1 +1,0.851,0.639,0.639,0,0,0.92,0.92,0.92,0,0,0,0,0,0,0,0.0106,0,0.0106,0.639,0.559,0.806,1,0.765,0.0957,0.765,0.765,0.0181,0.0181,0.341,0.341,0,1 +1,0.391,0.547,0.547,0,0,0.88,0.88,0.88,0,0,0,0,0,0,0,0,0.00852,0.00852,0.45,0.486,0.509,1,0.667,0.0655,0.667,0.667,0.0181,0.0181,0.19,0.19,0.333,1 +1,0.183,0.463,0.463,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0.00568,0.00568,0.395,0.453,0.232,1,0.578,0.0353,0.578,0.578,0.0181,0.0181,0.19,0.19,0.333,1 +1,0.099,0.371,0.371,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0,0,0.333,0.445,0.0833,1,0.391,0.0202,0.391,0.391,0.0181,0.0181,0.19,0.19,0.333,1 +1,0.0578,0.343,0.343,0,0,0.78,0.78,0.78,0,0,0,0,0,0,0,0,0,0,0.286,0.447,0.0405,1,0.205,0.00504,0.205,0.205,0.0181,0.0181,0.23,0.23,0.667,1 +1,0.0495,0.343,0.343,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0,0,0,0.286,0.443,0.0203,1,0.169,0.00504,0.169,0.169,0.0181,0.0181,0.19,0.19,0.667,1 +1,0.0495,0.334,0.334,0,0,0.74,0.74,0.74,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0158,1,0.133,0.0101,0.133,0.133,0.0241,0.0241,0.23,0.23,1,1 +1,0.0495,0.306,0.306,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0248,1,0.142,0.0353,0.142,0.142,0.0482,0.0482,0.373,0.373,1,1 +1,0.0495,0.334,0.334,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0.00232,0.00568,0.00799,0.258,0.465,0.0405,1,0.16,0.0605,0.16,0.16,0.0903,0.0903,0.532,0.532,1,1 +1,0.228,0.398,0.398,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0.0337,0.00284,0.0365,0.352,0.461,0.0653,1,0.231,0.146,0.231,0.231,0.157,0.157,0.452,0.452,0.333,1 +1,0.402,0.436,0.436,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0.03,0,0.03,0.436,0.521,0.09,1,0.293,0.232,0.293,0.293,0.265,0.265,0.19,0.19,0,1 +0.333,0.168,0.315,0.315,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0.122,0,0,0.122,0.277,0.488,0.11,1,0.293,0.222,0.293,0.293,0.506,0.506,0.19,0.19,0,1 +0.333,0.164,0.213,0.213,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0,0,0.243,0.488,0.131,1,0.285,0.207,0.285,0.285,0.729,0.729,0.151,0.151,0,1 +0.333,0.16,0.222,0.222,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0.00284,0.00284,0.246,0.488,0.146,1,0.293,0.222,0.293,0.293,0.765,0.765,0.119,0.119,0,1 +0.333,0.154,0.232,0.232,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0.00284,0.00284,0.249,0.492,0.162,1,0.293,0.232,0.293,0.293,0.729,0.729,0.111,0.111,0,1 +0.333,0.15,0.222,0.222,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0,0,0.246,0.496,0.171,1,0.285,0.212,0.285,0.285,0.723,0.723,0.111,0.111,0,1 +0.333,0.149,0.259,0.259,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0,0,0.258,0.496,0.194,1,0.285,0.191,0.285,0.285,0.542,0.542,0.111,0.111,0,1 +0.333,0.149,0.287,0.287,0,0.0366,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0,0,0.268,0.492,0.205,1,0.285,0.247,0.285,0.285,0.452,0.452,0.19,0.19,0,1 +0.333,0.15,0.297,0.297,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0.0142,0.0142,0.271,0.501,0.23,1,0.293,0.297,0.293,0.293,0.367,0.367,0.46,0.46,0,1 +0.333,0.154,0.361,0.361,0,0,0.88,0.88,0.88,0,0,0,0,0,0,0,0,0.00568,0.00568,0.292,0.509,0.286,1,0.4,0.554,0.4,0.4,0.223,0.223,1,1,0,1 +0.333,0.168,0.491,0.491,0,0,0.96,0.96,0.96,0,0,0,0,0,0,0,0.0297,0.00568,0.0354,0.336,0.525,0.351,1,0.507,0.811,0.507,0.507,0.139,0.139,0.968,0.968,0,1 +0.667,0.351,0.584,0.584,0,0,1,1,1,0,0,0,0,0,0,0,0.031,0.017,0.048,0.475,0.594,0.473,1,0.587,0.58,0.587,0.587,0.0783,0.0783,0.54,0.54,0,1 +0.667,0.454,0.621,0.621,0,0,0.96,0.96,0.96,0,0,0,0,0,0,0,0,0,0,0.5,0.569,0.662,1,0.676,0.353,0.676,0.676,0.0482,0.0482,0.484,0.484,0,1 +0.667,0.554,0.658,0.658,0,0,0.94,0.94,0.94,0,0,0,0,0,0,0,0,0,0,0.525,0.544,0.817,1,0.72,0.222,0.72,0.72,0.0241,0.0241,0.405,0.405,0,1 +1,0.851,0.639,0.639,0,0,0.92,0.92,0.92,0.0109,0.0414,0,0,0,0,0,0,0.0114,0.0114,0.639,0.559,0.774,1,0.765,0.0957,0.765,0.765,0.0181,0.0181,0.341,0.341,0,1 +1,0.22,0.547,0.547,0,0,0.88,0.88,0.88,0.0198,0.00637,0,0,0,0,0,0,0.00852,0.00852,0.354,0.476,0.468,1,0.667,0.0655,0.667,0.667,0.0181,0.0181,0.19,0.19,0.667,1 +1,0.116,0.463,0.463,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0.00284,0.00284,0.326,0.459,0.203,1,0.578,0.0353,0.578,0.578,0.0181,0.0181,0.19,0.19,0.667,1 +1,0.0495,0.371,0.371,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0833,1,0.391,0.0202,0.391,0.391,0.0181,0.0181,0.19,0.19,1,1 +1,0.0495,0.343,0.343,0,0,0.78,0.78,0.78,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0405,1,0.205,0.00504,0.205,0.205,0.0181,0.0181,0.23,0.23,1,1 +1,0.0495,0.343,0.343,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0203,1,0.169,0.00504,0.169,0.169,0.0181,0.0181,0.19,0.19,1,1 +1,0.0495,0.334,0.334,0,0,0.74,0.74,0.74,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0158,1,0.133,0.0101,0.133,0.133,0.0241,0.0241,0.23,0.23,1,1 +1,0.0495,0.306,0.306,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0248,1,0.142,0.0353,0.142,0.142,0.0482,0.0482,0.373,0.373,1,1 +1,0.0495,0.334,0.334,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0.00257,0,0.00257,0.258,0.465,0.0405,1,0.16,0.0605,0.16,0.16,0.0903,0.0903,0.532,0.532,1,1 +1,0.139,0.398,0.398,0,0.0122,0.76,0.76,0.76,0,0,0,0,0,0,0,0.0419,0,0.0419,0.305,0.463,0.0653,1,0.231,0.146,0.231,0.231,0.157,0.157,0.452,0.452,0.667,1 +0.667,0.167,0.436,0.436,0,0.0244,0.8,0.8,0.8,0.022,0.0478,0,0,0,0,0,0,0,0,0.317,0.484,0.09,1,0.293,0.232,0.293,0.293,0.265,0.265,0.19,0.19,0.333,1 +0.667,0.168,0.315,0.315,0,0,0.82,0.82,0.82,0.0138,0,0,0,0,0,0,0.0143,0,0.0143,0.277,0.488,0.11,1,0.293,0.222,0.293,0.293,0.506,0.506,0.19,0.19,0.333,1 +0.333,0.0495,0.213,0.213,0,0,0.82,0.82,0.82,0.00859,0,0,0,0,0,0,0,0,0,0.258,0.465,0.131,1,0.285,0.207,0.285,0.285,0.729,0.729,0.151,0.151,0.333,1 +0.333,0.16,0.222,0.222,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0.00568,0.00568,0.246,0.488,0.146,1,0.293,0.222,0.293,0.293,0.765,0.765,0.119,0.119,0,1 +0.333,0.154,0.232,0.232,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0.00568,0.00568,0.249,0.492,0.162,1,0.293,0.232,0.293,0.293,0.729,0.729,0.111,0.111,0,1 +0.333,0.15,0.222,0.222,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0.00284,0.00284,0.246,0.496,0.171,1,0.285,0.212,0.285,0.285,0.723,0.723,0.111,0.111,0,1 +0.333,0.149,0.259,0.259,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0,0,0.258,0.496,0.194,1,0.285,0.191,0.285,0.285,0.542,0.542,0.111,0.111,0,1 +0.667,0.249,0.287,0.287,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0.0176,0,0.0176,0.277,0.519,0.205,1,0.285,0.247,0.285,0.285,0.452,0.452,0.19,0.19,0,1 +0.667,0.251,0.297,0.297,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0.0231,0.00284,0.0259,0.284,0.536,0.23,1,0.293,0.297,0.293,0.293,0.367,0.367,0.46,0.46,0,1 +0.667,0.259,0.361,0.361,0,0,0.88,0.88,0.88,0,0,0,0,0,0,0,0,0.00284,0.00284,0.327,0.552,0.286,1,0.4,0.554,0.4,0.4,0.223,0.223,1,1,0,1 +0.333,0.168,0.491,0.491,0,0,0.96,0.96,0.96,0,0,0,0,0,0,0,0.00272,0.0114,0.0141,0.336,0.525,0.351,1,0.507,0.811,0.507,0.507,0.139,0.139,0.968,0.968,0,1 +1,0.501,0.584,0.584,0,0.0853,1,1,1,0,0,0,0,0,0,0,0.0136,0.00284,0.0164,0.584,0.658,0.473,1,0.587,0.58,0.587,0.587,0.0783,0.0783,0.54,0.54,0,1 +1,0.656,0.621,0.621,0,0.0975,0.96,0.96,0.96,0,0,0,0,0,0,0,0,0.00284,0.00284,0.621,0.621,0.662,1,0.676,0.353,0.676,0.676,0.0482,0.0482,0.484,0.484,0,1 +1,0.554,0.658,0.658,0,0,0.94,0.94,0.94,0,0,0,0,0,0,0,0,0.00568,0.00568,0.525,0.544,0.817,1,0.72,0.222,0.72,0.72,0.0241,0.0241,0.405,0.405,0.333,1 +1,0.317,0.639,0.639,0,0,0.92,0.92,0.92,0,0,0,0,0,0,0,0,0.0114,0.0114,0.385,0.496,0.774,1,0.765,0.0957,0.765,0.765,0.0181,0.0181,0.341,0.341,0.667,1 +1,0.0495,0.547,0.547,0,0,0.88,0.88,0.88,0,0,0,0,0,0,0,0,0.00568,0.00568,0.258,0.465,0.468,1,0.667,0.0655,0.667,0.667,0.0181,0.0181,0.19,0.19,1,1 +1,0.0495,0.463,0.463,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.203,1,0.578,0.0353,0.578,0.578,0.0181,0.0181,0.19,0.19,1,1 +1,0.0495,0.371,0.371,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0.00568,0.00568,0.258,0.465,0.0833,1,0.391,0.0202,0.391,0.391,0.0181,0.0181,0.19,0.19,1,1 +1,0.0495,0.343,0.343,0,0,0.78,0.78,0.78,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0405,1,0.205,0.00504,0.205,0.205,0.0181,0.0181,0.23,0.23,1,1 +1,0.0495,0.343,0.343,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0.00269,0,0.00269,0.258,0.465,0.0203,1,0.169,0.00504,0.169,0.169,0.0181,0.0181,0.19,0.19,1,1 +1,0.0495,0.334,0.334,0,0,0.74,0.74,0.74,0,0,0,0,0,0,0,0.0537,0,0.0537,0.283,0.438,0.0158,1,0.133,0.0101,0.133,0.133,0.0241,0.0241,0.23,0.23,0.667,1 +0.667,0.0495,0.306,0.306,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0248,1,0.142,0.0353,0.142,0.142,0.0482,0.0482,0.373,0.373,0.667,1 +0.667,0.0495,0.334,0.334,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0.0188,0,0.0188,0.258,0.465,0.0405,1,0.16,0.0605,0.16,0.16,0.0903,0.0903,0.532,0.532,0.667,1 +0.667,0.139,0.398,0.398,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0.0434,0,0.0434,0.305,0.463,0.0653,1,0.231,0.146,0.231,0.231,0.157,0.157,0.452,0.452,0.333,1 +1,0.284,0.436,0.436,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0.0976,0.0114,0.109,0.376,0.503,0.09,1,0.293,0.232,0.293,0.293,0.265,0.265,0.19,0.19,0.333,1 +1,0.286,0.315,0.315,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0.0237,0,0.0237,0.296,0.511,0.11,1,0.293,0.222,0.293,0.293,0.506,0.506,0.19,0.19,0.333,1 +0.333,0.0495,0.213,0.213,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0.00852,0.00852,0.258,0.465,0.131,1,0.285,0.207,0.285,0.285,0.729,0.729,0.151,0.151,0.333,1 +0.333,0.0495,0.222,0.222,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0.0142,0.0142,0.258,0.465,0.146,1,0.293,0.222,0.293,0.293,0.765,0.765,0.119,0.119,0.333,1 +0.333,0.154,0.232,0.232,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0,0,0.249,0.492,0.162,1,0.293,0.232,0.293,0.293,0.729,0.729,0.111,0.111,0,1 +0.333,0.15,0.222,0.222,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0,0,0.246,0.496,0.171,1,0.285,0.212,0.285,0.285,0.723,0.723,0.111,0.111,0,1 +0.333,0.149,0.259,0.259,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0,0,0.258,0.496,0.194,1,0.285,0.191,0.285,0.285,0.542,0.542,0.111,0.111,0,1 +0.333,0.149,0.287,0.287,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0,0,0.268,0.492,0.205,1,0.285,0.247,0.285,0.285,0.452,0.452,0.19,0.19,0,1 +0.667,0.251,0.297,0.297,0,0.0122,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0.017,0.017,0.284,0.536,0.23,1,0.293,0.297,0.293,0.293,0.367,0.367,0.46,0.46,0,1 +1,0.363,0.361,0.361,0,0.0244,0.88,0.88,0.88,0,0,0,0,0,0,0,0,0,0,0.361,0.596,0.286,1,0.4,0.554,0.4,0.4,0.223,0.223,1,1,0,1 +0.667,0.286,0.491,0.491,0,0,0.96,0.96,0.96,0,0,0,0,0,0,0,0,0.00852,0.00852,0.413,0.585,0.351,1,0.507,0.811,0.507,0.507,0.139,0.139,0.968,0.968,0,1 +0.667,0.351,0.584,0.584,0,0.0366,1,1,1,0,0,0,0,0,0,0,0,0.017,0.017,0.475,0.594,0.473,1,0.587,0.58,0.587,0.587,0.0783,0.0783,0.54,0.54,0,1 +1,0.656,0.621,0.621,0,0,0.96,0.96,0.96,0,0,0,0,0,0,0,0,0,0,0.621,0.621,0.662,1,0.676,0.353,0.676,0.676,0.0482,0.0482,0.484,0.484,0,1 +1,0.806,0.658,0.658,0,0,0.94,0.94,0.94,0,0,0,0,0,0,0,0,0.00284,0.00284,0.658,0.583,0.817,1,0.72,0.222,0.72,0.72,0.0241,0.0241,0.405,0.405,0,1 +1,0.584,0.639,0.639,0,0,0.92,0.92,0.92,0,0,0,0,0,0,0,0,0,0,0.512,0.528,0.774,1,0.765,0.0957,0.765,0.765,0.0181,0.0181,0.341,0.341,0.333,1 +1,0.22,0.547,0.547,0,0,0.88,0.88,0.88,0,0,0,0,0,0,0,0,0,0,0.354,0.476,0.468,1,0.667,0.0655,0.667,0.667,0.0181,0.0181,0.19,0.19,0.667,1 +1,0.116,0.463,0.463,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0,0,0.326,0.459,0.203,1,0.578,0.0353,0.578,0.578,0.0181,0.0181,0.19,0.19,0.667,1 +1,0.0495,0.371,0.371,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0.00568,0.00568,0.258,0.465,0.0833,1,0.391,0.0202,0.391,0.391,0.0181,0.0181,0.19,0.19,1,1 +1,0.0495,0.343,0.343,0,0,0.78,0.78,0.78,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0405,1,0.205,0.00504,0.205,0.205,0.0181,0.0181,0.23,0.23,1,1 +1,0.0495,0.343,0.343,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0203,1,0.169,0.00504,0.169,0.169,0.0181,0.0181,0.19,0.19,1,1 +1,0.0495,0.334,0.334,0,0,0.74,0.74,0.74,0,0,0,0,0,0,0,0,0.00852,0.00852,0.258,0.465,0.0158,1,0.133,0.0101,0.133,0.133,0.0241,0.0241,0.23,0.23,1,1 +1,0.0495,0.306,0.306,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0,0.00568,0.00568,0.258,0.465,0.0248,1,0.142,0.0353,0.142,0.142,0.0482,0.0482,0.373,0.373,1,1 +1,0.0781,0.334,0.334,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0.0352,0.0286,0,0.0638,0.283,0.447,0.0405,1,0.16,0.0605,0.16,0.16,0.0903,0.0903,0.532,0.532,0.667,1 +1,0.317,0.398,0.398,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0.0352,0.0499,0,0.085,0.398,0.459,0.0653,1,0.231,0.146,0.231,0.231,0.157,0.157,0.452,0.452,0,1 +0.667,0.284,0.436,0.436,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0.0137,0,0.0137,0.376,0.503,0.09,1,0.293,0.232,0.293,0.293,0.265,0.265,0.19,0.19,0,1 +0.333,0.168,0.315,0.315,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0,0,0.277,0.488,0.11,1,0.293,0.222,0.293,0.293,0.506,0.506,0.19,0.19,0,1 +0.333,0.164,0.213,0.213,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0.00568,0.00568,0.243,0.488,0.131,1,0.285,0.207,0.285,0.285,0.729,0.729,0.151,0.151,0,1 +0.333,0.16,0.222,0.222,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0,0,0.246,0.488,0.146,1,0.293,0.222,0.293,0.293,0.765,0.765,0.119,0.119,0,1 +0.333,0.154,0.232,0.232,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0,0,0.249,0.492,0.162,1,0.293,0.232,0.293,0.293,0.729,0.729,0.111,0.111,0,1 +0.333,0.15,0.222,0.222,0,0,0.84,0.84,0.84,0,0,0.0423,0.00596,0,0,0,0,0.00568,0.00568,0.246,0.496,0.171,1,0.285,0.212,0.285,0.285,0.723,0.723,0.111,0.111,0,1 +0.333,0.149,0.259,0.259,0,0,0.84,0.84,0.84,0,0,0.034,0.0151,0.055,0.055,0,0,0.00284,0.00284,0.258,0.496,0.194,1,0.285,0.191,0.285,0.285,0.542,0.542,0.111,0.111,0,1 +0.333,0.149,0.287,0.287,0,0,0.84,0.84,0.84,0,0,0.0267,0,0.22,0.22,0,0,0.00568,0.00568,0.268,0.492,0.205,1,0.285,0.247,0.285,0.285,0.452,0.452,0.19,0.19,0,1 +0.333,0.15,0.297,0.297,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0,0,0.271,0.501,0.23,1,0.293,0.297,0.293,0.293,0.367,0.367,0.46,0.46,0,1 +0.333,0.154,0.361,0.361,0,0,0.88,0.88,0.88,0.00932,0.0414,0,0,0,0,0,0,0.00284,0.00284,0.292,0.509,0.286,1,0.4,0.554,0.4,0.4,0.223,0.223,1,1,0,1 +0.667,0.286,0.491,0.491,0,0,0.96,0.96,0.96,0.0211,0.0302,0,0,0,0,0,0,0.0199,0.0199,0.413,0.585,0.351,1,0.507,0.811,0.507,0.507,0.139,0.139,0.968,0.968,0,1 +1,0.501,0.584,0.584,0,0.0731,1,1,1,0.0154,0,0,0,0,0,0,0,0,0,0.584,0.658,0.473,1,0.587,0.58,0.587,0.587,0.0783,0.0783,0.54,0.54,0,1 +1,0.656,0.621,0.621,0,0,0.96,0.96,0.96,0.0198,0,0,0,0,0,0,0,0.00284,0.00284,0.621,0.621,0.662,1,0.676,0.353,0.676,0.676,0.0482,0.0482,0.484,0.484,0,1 +1,0.806,0.658,0.658,0,0,0.94,0.94,0.94,0.00607,0,0,0,0,0,0,0,0.00852,0.00852,0.658,0.583,0.817,1,0.72,0.222,0.72,0.72,0.0241,0.0241,0.405,0.405,0,1 +1,0.851,0.639,0.639,0,0,0.92,0.92,0.92,0,0,0,0,0,0,0,0,0,0,0.639,0.559,0.774,1,0.765,0.0957,0.765,0.765,0.0181,0.0181,0.341,0.341,0,1 +1,0.391,0.547,0.547,0,0,0.88,0.88,0.88,0,0,0,0,0,0,0,0,0,0,0.45,0.486,0.468,1,0.667,0.0655,0.667,0.667,0.0181,0.0181,0.19,0.19,0.333,1 +1,0.116,0.463,0.463,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0,0,0.326,0.459,0.203,1,0.578,0.0353,0.578,0.578,0.0181,0.0181,0.19,0.19,0.667,1 +1,0.0495,0.371,0.371,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.465,0.0833,1,0.391,0.0202,0.391,0.391,0.0181,0.0181,0.19,0.19,1,1 +1,0.0495,0.343,0.343,0,0,0.78,0.78,0.78,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0405,1,0.205,0.00504,0.205,0.205,0.0181,0.0181,0.23,0.23,1,1 +1,0.0495,0.343,0.343,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0203,1,0.169,0.00504,0.169,0.169,0.0181,0.0181,0.19,0.19,1,1 +1,0.0495,0.334,0.334,0,0,0.74,0.74,0.74,0,0,0,0,0,0,0,0.00208,0,0.00208,0.258,0.465,0.0158,1,0.133,0.0101,0.133,0.133,0.0241,0.0241,0.23,0.23,1,1 +1,0.0503,0.306,0.306,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0.0245,0,0.0245,0.274,0.443,0.0248,1,0.142,0.0353,0.142,0.142,0.0482,0.0482,0.373,0.373,0.667,1 +1,0.0781,0.334,0.334,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0.0238,0,0.0238,0.283,0.447,0.0405,1,0.16,0.0605,0.16,0.16,0.0903,0.0903,0.532,0.532,0.667,1 +1,0.228,0.398,0.398,0,0.0366,0.76,0.76,0.76,0,0,0,0,0,0,0.0616,0.045,0,0.107,0.352,0.461,0.0653,1,0.231,0.146,0.231,0.231,0.157,0.157,0.452,0.452,0.333,1 +1,0.402,0.436,0.436,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0.0394,0,0.0394,0.436,0.521,0.09,1,0.293,0.232,0.293,0.293,0.265,0.265,0.19,0.19,0,1 +1,0.404,0.315,0.315,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0.0936,0.00568,0.0993,0.315,0.534,0.11,1,0.293,0.222,0.293,0.293,0.506,0.506,0.19,0.19,0,1 +0.667,0.278,0.213,0.213,0,0.0487,0.82,0.82,0.82,0,0,0,0,0,0,0,0.0286,0.017,0.0456,0.228,0.511,0.131,1,0.285,0.207,0.285,0.285,0.729,0.729,0.151,0.151,0,1 +0.333,0.16,0.222,0.222,0,0.0244,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0,0,0.246,0.488,0.146,1,0.293,0.222,0.293,0.293,0.765,0.765,0.119,0.119,0,1 +0.333,0.154,0.232,0.232,0,0.0122,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0.00852,0.00852,0.249,0.492,0.162,1,0.293,0.232,0.293,0.293,0.729,0.729,0.111,0.111,0,1 +0.333,0.15,0.222,0.222,0,0.0609,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0,0,0.246,0.496,0.171,1,0.285,0.212,0.285,0.285,0.723,0.723,0.111,0.111,0,1 +0.667,0.149,0.259,0.259,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0.0114,0.0114,0.258,0.496,0.194,1,0.285,0.191,0.285,0.285,0.542,0.542,0.111,0.111,0.333,1 +0.333,0.0495,0.287,0.287,0,0.0122,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.205,1,0.285,0.247,0.285,0.285,0.452,0.452,0.19,0.19,0.333,1 +0.667,0.251,0.297,0.297,0,0.0975,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0.00568,0.00568,0.284,0.536,0.23,1,0.293,0.297,0.293,0.293,0.367,0.367,0.46,0.46,0,1 +0.667,0.259,0.361,0.361,0,0,0.88,0.88,0.88,0,0,0,0,0,0,0,0,0.0142,0.0142,0.327,0.552,0.286,1,0.4,0.554,0.4,0.4,0.223,0.223,1,1,0,1 +0.667,0.286,0.491,0.491,0,0,0.96,0.96,0.96,0,0,0,0,0,0,0,0,0.00284,0.00284,0.413,0.585,0.351,1,0.507,0.811,0.507,0.507,0.139,0.139,0.968,0.968,0,1 +1,0.501,0.584,0.584,0,0,1,1,1,0,0,0,0,0,0,0,0,0.00284,0.00284,0.584,0.658,0.473,1,0.587,0.58,0.587,0.587,0.0783,0.0783,0.54,0.54,0,1 +0.667,0.454,0.621,0.621,0,0,0.96,0.96,0.96,0,0,0,0,0,0,0,0.00266,0,0.00266,0.5,0.569,0.662,1,0.676,0.353,0.676,0.676,0.0482,0.0482,0.484,0.484,0,1 +0.667,0.554,0.658,0.658,0,0.0122,0.94,0.94,0.94,0,0,0,0,0,0,0,0.0239,0.00568,0.0296,0.525,0.544,0.817,1,0.72,0.222,0.72,0.72,0.0241,0.0241,0.405,0.405,0,1 +1,0.584,0.639,0.639,0,0.0609,0.92,0.92,0.92,0,0,0,0,0,0,0,0,0,0,0.512,0.528,0.774,1,0.765,0.0957,0.765,0.765,0.0181,0.0181,0.341,0.341,0.333,1 +1,0.22,0.547,0.547,0,0,0.88,0.88,0.88,0,0,0,0,0,0,0,0,0,0,0.354,0.476,0.468,1,0.667,0.0655,0.667,0.667,0.0181,0.0181,0.19,0.19,0.667,1 +1,0.0495,0.463,0.463,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.465,0.203,1,0.578,0.0353,0.578,0.578,0.0181,0.0181,0.19,0.19,1,1 +1,0.0495,0.371,0.371,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.099,1,0.391,0.0202,0.391,0.391,0.0181,0.0181,0.19,0.19,1,1 +1,0.0495,0.343,0.343,0,0,0.78,0.78,0.78,0,0,0,0,0,0,0,0,0.0142,0.0142,0.258,0.465,0.0495,1,0.205,0.00504,0.205,0.205,0.0181,0.0181,0.23,0.23,1,1 +1,0.0495,0.343,0.343,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.027,1,0.169,0.00504,0.169,0.169,0.0181,0.0181,0.19,0.19,1,1 +1,0.0495,0.334,0.334,0,0,0.74,0.74,0.74,0,0,0,0,0,0,0,0.00259,0,0.00259,0.258,0.465,0.018,1,0.133,0.0101,0.133,0.133,0.0241,0.0241,0.23,0.23,1,1 +1,0.0503,0.306,0.306,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0.0243,0,0.0243,0.274,0.443,0.0248,1,0.142,0.0353,0.142,0.142,0.0482,0.0482,0.373,0.373,0.667,1 +1,0.0781,0.334,0.334,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0.0374,0,0.0374,0.283,0.447,0.0315,1,0.16,0.0605,0.16,0.16,0.0903,0.0903,0.532,0.532,0.667,1 +1,0.139,0.398,0.398,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0.0525,0,0.0525,0.305,0.463,0.054,1,0.231,0.146,0.231,0.231,0.157,0.157,0.452,0.452,0.667,1 +1,0.167,0.436,0.436,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0.0175,0,0.0175,0.317,0.484,0.0968,1,0.293,0.232,0.293,0.293,0.265,0.265,0.19,0.19,0.667,1 +0.667,0.0495,0.315,0.315,0,0.0122,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.465,0.16,1,0.293,0.222,0.293,0.293,0.506,0.506,0.19,0.19,0.667,1 +0.667,0.278,0.213,0.213,0,0.0244,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0.00568,0.00568,0.228,0.511,0.212,1,0.285,0.207,0.285,0.285,0.729,0.729,0.151,0.151,0,1 +1,0.381,0.222,0.222,0,0.0731,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0,0,0.222,0.534,0.252,1,0.293,0.222,0.293,0.293,0.765,0.765,0.119,0.119,0,1 +0.667,0.259,0.232,0.232,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0,0,0.24,0.519,0.277,1,0.293,0.232,0.293,0.293,0.729,0.729,0.111,0.111,0,1 +0.667,0.251,0.222,0.222,0,0.0122,0.84,0.84,0.84,0,0,0,0,0,0,0,0.00259,0.00284,0.00543,0.234,0.528,0.297,1,0.285,0.212,0.285,0.285,0.723,0.723,0.111,0.111,0,1 +1,0.349,0.259,0.259,0,0.0244,0.84,0.84,0.84,0,0,0,0,0,0,0,0.0301,0.017,0.0472,0.259,0.559,0.351,1,0.285,0.191,0.285,0.285,0.542,0.542,0.111,0.111,0,1 +1,0.349,0.287,0.287,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0.00276,0.00852,0.0113,0.287,0.546,0.401,1,0.285,0.247,0.285,0.285,0.452,0.452,0.19,0.19,0,1 +1,0.351,0.297,0.297,0,0.0487,0.82,0.82,0.82,0,0,0,0,0,0,0,0.0588,0,0.0588,0.297,0.571,0.441,1,0.293,0.297,0.293,0.293,0.367,0.367,0.46,0.46,0,1 +1,0.363,0.361,0.361,0,0.0244,0.88,0.88,0.88,0,0,0,0,0,0,0,0.013,0,0.013,0.361,0.596,0.464,1,0.4,0.554,0.4,0.4,0.223,0.223,1,1,0,1 +0.667,0.286,0.491,0.491,0,0,0.96,0.96,0.96,0,0,0,0,0,0,0,0.0196,0,0.0196,0.413,0.585,0.479,1,0.507,0.811,0.507,0.507,0.139,0.139,0.968,0.968,0,1 +0.667,0.351,0.584,0.584,0,0,1,1,1,0,0,0,0,0,0,0,0.0421,0.00284,0.0449,0.475,0.594,0.565,1,0.587,0.58,0.587,0.587,0.0783,0.0783,0.54,0.54,0,1 +0.667,0.454,0.621,0.621,0,0,0.96,0.96,0.96,0,0,0.0138,0,0,0,0,0.0256,0.0114,0.0369,0.5,0.569,0.743,1,0.676,0.353,0.676,0.676,0.0482,0.0482,0.484,0.484,0,1 +0.667,0.554,0.658,0.658,0,0,0.94,0.94,0.94,0,0,0.0329,0.0158,0,0,0,0.0292,0.00568,0.0348,0.525,0.544,0.873,1,0.72,0.222,0.72,0.72,0.0241,0.0241,0.405,0.405,0,1 +1,0.584,0.639,0.639,0,0,0.92,0.92,0.92,0,0,0.00673,0,0.33,0.33,0,0.0427,0,0.0427,0.512,0.528,0.806,1,0.765,0.0957,0.765,0.765,0.0181,0.0181,0.341,0.341,0.333,1 +1,0.391,0.547,0.547,0,0,0.88,0.88,0.88,0,0,0,0,0.367,0.367,0,0.00533,0,0.00533,0.45,0.486,0.509,1,0.667,0.0655,0.667,0.667,0.0181,0.0181,0.19,0.19,0.333,1 +1,0.116,0.463,0.463,0,0,0.82,0.82,0.82,0,0,0,0,0.0367,0.0367,0,0,0,0,0.326,0.459,0.232,1,0.578,0.0353,0.578,0.578,0.0181,0.0181,0.19,0.19,0.667,1 +1,0.0495,0.371,0.371,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.099,1,0.391,0.0202,0.391,0.391,0.0181,0.0181,0.19,0.19,1,1 +1,0.0495,0.343,0.343,0,0,0.78,0.78,0.78,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0495,1,0.205,0.00504,0.205,0.205,0.0181,0.0181,0.23,0.23,1,1 +1,0.0495,0.343,0.343,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.027,1,0.169,0.00504,0.169,0.169,0.0181,0.0181,0.19,0.19,1,1 +1,0.0495,0.334,0.334,0,0,0.74,0.74,0.74,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.018,1,0.133,0.0101,0.133,0.133,0.0241,0.0241,0.23,0.23,1,1 +1,0.0495,0.306,0.306,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0248,1,0.142,0.0353,0.142,0.142,0.0482,0.0482,0.373,0.373,1,1 +1,0.0495,0.334,0.334,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0.0156,0,0.0156,0.258,0.465,0.0315,1,0.16,0.0605,0.16,0.16,0.0903,0.0903,0.532,0.532,1,1 +0.667,0.0495,0.398,0.398,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.054,1,0.231,0.146,0.231,0.231,0.157,0.157,0.452,0.452,0.667,1 +0.667,0.0495,0.436,0.436,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0968,1,0.293,0.232,0.293,0.293,0.265,0.265,0.19,0.19,0.667,1 +1,0.168,0.315,0.315,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0.0691,0.0187,0,0.0878,0.277,0.488,0.16,1,0.293,0.222,0.293,0.293,0.506,0.506,0.19,0.19,0.667,1 +1,0.164,0.213,0.213,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0.0357,0,0.0357,0.243,0.488,0.212,1,0.285,0.207,0.285,0.285,0.729,0.729,0.151,0.151,0.667,1 +1,0.27,0.222,0.222,0,0.0366,0.8,0.8,0.8,0,0,0,0,0,0,0,0.0383,0,0.0383,0.234,0.511,0.252,1,0.293,0.222,0.293,0.293,0.765,0.765,0.119,0.119,0.333,1 +1,0.364,0.232,0.232,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0.0152,0.00284,0.0181,0.232,0.546,0.277,1,0.293,0.232,0.293,0.293,0.729,0.729,0.111,0.111,0,1 +1,0.352,0.222,0.222,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0.0217,0.00568,0.0273,0.222,0.559,0.297,1,0.285,0.212,0.285,0.285,0.723,0.723,0.111,0.111,0,1 +0.667,0.249,0.259,0.259,0,0.0366,0.84,0.84,0.84,0.0221,0.0716,0,0,0,0,0,0,0.0341,0.0341,0.259,0.528,0.351,1,0.285,0.191,0.285,0.285,0.542,0.542,0.111,0.111,0,1 +0.667,0.249,0.287,0.287,0,0,0.84,0.84,0.84,0.00222,0,0,0,0,0,0,0.00256,0.0227,0.0253,0.277,0.519,0.401,1,0.285,0.247,0.285,0.285,0.452,0.452,0.19,0.19,0,1 +1,0.351,0.297,0.297,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0.0205,0.00284,0.0233,0.297,0.571,0.441,1,0.293,0.297,0.293,0.293,0.367,0.367,0.46,0.46,0,1 +1,0.363,0.361,0.361,0,0,0.88,0.88,0.88,0,0,0,0,0,0,0,0,0,0,0.361,0.596,0.464,1,0.4,0.554,0.4,0.4,0.223,0.223,1,1,0,1 +1,0.404,0.491,0.491,0,0,0.96,0.96,0.96,0,0,0,0,0,0,0,0,0.00852,0.00852,0.491,0.646,0.479,1,0.507,0.811,0.507,0.507,0.139,0.139,0.968,0.968,0,1 +1,0.501,0.584,0.584,0,0,1,1,1,0,0,0,0,0,0,0,0,0.00852,0.00852,0.584,0.658,0.565,1,0.587,0.58,0.587,0.587,0.0783,0.0783,0.54,0.54,0,1 +1,0.656,0.621,0.621,0,0,0.96,0.96,0.96,0,0,0,0,0,0,0,0,0,0,0.621,0.621,0.743,1,0.676,0.353,0.676,0.676,0.0482,0.0482,0.484,0.484,0,1 +1,0.806,0.658,0.658,0,0,0.94,0.94,0.94,0,0,0,0,0,0,0,0,0,0,0.658,0.583,0.873,1,0.72,0.222,0.72,0.72,0.0241,0.0241,0.405,0.405,0,1 +1,0.851,0.639,0.639,0,0,0.92,0.92,0.92,0,0,0,0,0,0,0,0,0.0114,0.0114,0.639,0.559,0.806,1,0.765,0.0957,0.765,0.765,0.0181,0.0181,0.341,0.341,0,1 +1,0.391,0.547,0.547,0,0,0.88,0.88,0.88,0,0,0,0,0,0,0,0,0.00284,0.00284,0.45,0.486,0.509,1,0.667,0.0655,0.667,0.667,0.0181,0.0181,0.19,0.19,0.333,1 +1,0.183,0.463,0.463,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0,0,0.395,0.453,0.232,1,0.578,0.0353,0.578,0.578,0.0181,0.0181,0.19,0.19,0.333,1 +1,0.0495,0.371,0.371,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.465,0.0833,1,0.391,0.0202,0.391,0.391,0.0181,0.0181,0.19,0.19,1,1 +1,0.0495,0.343,0.343,0,0,0.78,0.78,0.78,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0405,1,0.205,0.00504,0.205,0.205,0.0181,0.0181,0.23,0.23,1,1 +1,0.0495,0.343,0.343,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0203,1,0.169,0.00504,0.169,0.169,0.0181,0.0181,0.19,0.19,1,1 +1,0.0495,0.334,0.334,0,0,0.74,0.74,0.74,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.465,0.0158,1,0.133,0.0101,0.133,0.133,0.0241,0.0241,0.23,0.23,1,1 +1,0.0503,0.306,0.306,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0,0,0,0.274,0.443,0.0248,1,0.142,0.0353,0.142,0.142,0.0482,0.0482,0.373,0.373,0.667,1 +0.667,0.0495,0.334,0.334,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0.0148,0,0.0148,0.258,0.465,0.0405,1,0.16,0.0605,0.16,0.16,0.0903,0.0903,0.532,0.532,0.667,1 +0.667,0.139,0.398,0.398,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0.0159,0,0.0159,0.305,0.463,0.0653,1,0.231,0.146,0.231,0.231,0.157,0.157,0.452,0.452,0.333,1 +0.333,0.0495,0.436,0.436,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0.0289,0,0.0289,0.258,0.465,0.09,1,0.293,0.232,0.293,0.293,0.265,0.265,0.19,0.19,0.333,1 +0.333,0.168,0.315,0.315,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0.0146,0,0.0146,0.277,0.488,0.11,1,0.293,0.222,0.293,0.293,0.506,0.506,0.19,0.19,0,1 +0.667,0.278,0.213,0.213,0,0.122,0.82,0.82,0.82,0,0,0,0,0,0,0,0.0465,0.00568,0.0521,0.228,0.511,0.131,1,0.285,0.207,0.285,0.285,0.729,0.729,0.151,0.151,0,1 +0.333,0.16,0.222,0.222,0,0.0244,0.8,0.8,0.8,0,0,0,0,0,0,0,0.0176,0.00852,0.0261,0.246,0.488,0.146,1,0.293,0.222,0.293,0.293,0.765,0.765,0.119,0.119,0,1 +0.333,0.154,0.232,0.232,0,0,0.8,0.8,0.8,0.0195,0.0478,0,0,0,0,0,0,0.00284,0.00284,0.249,0.492,0.162,1,0.293,0.232,0.293,0.293,0.729,0.729,0.111,0.111,0,1 +0.333,0.15,0.222,0.222,0,0,0.84,0.84,0.84,0.0157,0,0,0,0,0,0,0,0.00284,0.00284,0.246,0.496,0.171,1,0.285,0.212,0.285,0.285,0.723,0.723,0.111,0.111,0,1 +0.333,0.149,0.259,0.259,0,0,0.84,0.84,0.84,0.00674,0,0,0,0,0,0,0,0.00568,0.00568,0.258,0.496,0.194,1,0.285,0.191,0.285,0.285,0.542,0.542,0.111,0.111,0,1 +0.333,0.149,0.287,0.287,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0.00852,0.00852,0.268,0.492,0.205,1,0.285,0.247,0.285,0.285,0.452,0.452,0.19,0.19,0,1 +0.333,0.15,0.297,0.297,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0.00284,0.00284,0.271,0.501,0.23,1,0.293,0.297,0.293,0.293,0.367,0.367,0.46,0.46,0,1 +0.333,0.154,0.361,0.361,0,0.0366,0.88,0.88,0.88,0,0,0,0,0,0,0,0,0,0,0.292,0.509,0.286,1,0.4,0.554,0.4,0.4,0.223,0.223,1,1,0,1 +1,0.404,0.491,0.491,0,0,0.96,0.96,0.96,0,0,0.0436,0.00596,0,0,0,0,0.00284,0.00284,0.491,0.646,0.351,1,0.507,0.811,0.507,0.507,0.139,0.139,0.968,0.968,0,1 +1,0.501,0.584,0.584,0,0,1,1,1,0.0124,0.0414,0.0424,0.00982,0.147,0.147,0,0,0.017,0.017,0.584,0.658,0.473,1,0.587,0.58,0.587,0.587,0.0783,0.0783,0.54,0.54,0,1 +0.667,0.454,0.621,0.621,0,0,0.96,0.96,0.96,0.0131,0.00637,0.00673,0,0.128,0.128,0,0.00258,0.0114,0.0139,0.5,0.569,0.662,1,0.676,0.353,0.676,0.676,0.0482,0.0482,0.484,0.484,0,1 +0.667,0.554,0.658,0.658,0,0,0.94,0.94,0.94,0,0,0,0,0,0,0,0.0417,0.0227,0.0644,0.525,0.544,0.817,1,0.72,0.222,0.72,0.72,0.0241,0.0241,0.405,0.405,0,1 +1,0.851,0.639,0.639,0,0,0.92,0.92,0.92,0,0,0,0,0,0,0,0.0052,0,0.0052,0.639,0.559,0.774,1,0.765,0.0957,0.765,0.765,0.0181,0.0181,0.341,0.341,0,1 +1,0.561,0.547,0.547,0,0,0.88,0.88,0.88,0,0,0,0,0,0,0,0.0587,0,0.0587,0.547,0.497,0.468,1,0.667,0.0655,0.667,0.667,0.0181,0.0181,0.19,0.19,0,1 +1,0.116,0.463,0.463,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0,0,0.326,0.459,0.203,1,0.578,0.0353,0.578,0.578,0.0181,0.0181,0.19,0.19,0.667,1 +1,0.0495,0.371,0.371,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0833,1,0.391,0.0202,0.391,0.391,0.0181,0.0181,0.19,0.19,1,1 +1,0.0495,0.343,0.343,0,0,0.78,0.78,0.78,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0405,1,0.205,0.00504,0.205,0.205,0.0181,0.0181,0.23,0.23,1,1 +1,0.0495,0.343,0.343,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0203,1,0.169,0.00504,0.169,0.169,0.0181,0.0181,0.19,0.19,1,1 +1,0.0495,0.334,0.334,0,0,0.74,0.74,0.74,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0158,1,0.133,0.0101,0.133,0.133,0.0241,0.0241,0.23,0.23,1,1 +1,0.0495,0.306,0.306,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0248,1,0.142,0.0353,0.142,0.142,0.0482,0.0482,0.373,0.373,1,1 +1,0.0781,0.334,0.334,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0.0351,0,0.0351,0.283,0.447,0.0405,1,0.16,0.0605,0.16,0.16,0.0903,0.0903,0.532,0.532,0.667,1 +1,0.139,0.398,0.398,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0.0144,0,0.0144,0.305,0.463,0.0653,1,0.231,0.146,0.231,0.231,0.157,0.157,0.452,0.452,0.667,1 +0.667,0.0495,0.436,0.436,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0.0048,0,0.0048,0.258,0.465,0.09,1,0.293,0.232,0.293,0.293,0.265,0.265,0.19,0.19,0.667,1 +0.667,0.286,0.315,0.315,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0.0536,0,0.0536,0.296,0.511,0.11,1,0.293,0.222,0.293,0.293,0.506,0.506,0.19,0.19,0,1 +0.333,0.164,0.213,0.213,0,0.0853,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0.00284,0.00284,0.243,0.488,0.131,1,0.285,0.207,0.285,0.285,0.729,0.729,0.151,0.151,0,1 +0.333,0.16,0.222,0.222,0,0.146,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0.0114,0.0114,0.246,0.488,0.146,1,0.293,0.222,0.293,0.293,0.765,0.765,0.119,0.119,0,1 +0.333,0.154,0.232,0.232,0,0.146,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0,0,0.249,0.492,0.162,1,0.293,0.232,0.293,0.293,0.729,0.729,0.111,0.111,0,1 +0.333,0.15,0.222,0.222,0,0.134,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0.0114,0.0114,0.246,0.496,0.171,1,0.285,0.212,0.285,0.285,0.723,0.723,0.111,0.111,0,1 +0.333,0.149,0.259,0.259,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.496,0.194,1,0.285,0.191,0.285,0.285,0.542,0.542,0.111,0.111,0,1 +0.667,0.249,0.287,0.287,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0.00568,0.00568,0.277,0.519,0.205,1,0.285,0.247,0.285,0.285,0.452,0.452,0.19,0.19,0,1 +0.667,0.15,0.297,0.297,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0.0227,0.0227,0.271,0.501,0.23,1,0.293,0.297,0.293,0.293,0.367,0.367,0.46,0.46,0.333,1 +0.667,0.259,0.361,0.361,0,0,0.88,0.88,0.88,0,0,0,0,0,0,0,0.0298,0,0.0298,0.327,0.552,0.286,1,0.4,0.554,0.4,0.4,0.223,0.223,1,1,0,1 +0.667,0.286,0.491,0.491,0,0,0.96,0.96,0.96,0,0,0,0,0,0,0,0.0415,0.00284,0.0444,0.413,0.585,0.351,1,0.507,0.811,0.507,0.507,0.139,0.139,0.968,0.968,0,1 +1,0.501,0.584,0.584,0,0,1,1,1,0,0,0,0,0,0,0,0.00998,0.00568,0.0157,0.584,0.658,0.473,1,0.587,0.58,0.587,0.587,0.0783,0.0783,0.54,0.54,0,1 +0.667,0.454,0.621,0.621,0,0,0.96,0.96,0.96,0,0,0,0,0,0,0,0,0,0,0.5,0.569,0.662,1,0.676,0.353,0.676,0.676,0.0482,0.0482,0.484,0.484,0,1 +1,0.806,0.658,0.658,0,0,0.94,0.94,0.94,0,0,0,0,0,0,0,0,0.00284,0.00284,0.658,0.583,0.817,1,0.72,0.222,0.72,0.72,0.0241,0.0241,0.405,0.405,0,1 +1,0.851,0.639,0.639,0,0,0.92,0.92,0.92,0,0,0,0,0,0,0,0,0.00284,0.00284,0.639,0.559,0.774,1,0.765,0.0957,0.765,0.765,0.0181,0.0181,0.341,0.341,0,1 +1,0.391,0.547,0.547,0,0,0.88,0.88,0.88,0,0,0,0,0,0,0,0,0,0,0.45,0.486,0.468,1,0.667,0.0655,0.667,0.667,0.0181,0.0181,0.19,0.19,0.333,1 +1,0.0495,0.463,0.463,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.465,0.203,1,0.578,0.0353,0.578,0.578,0.0181,0.0181,0.19,0.19,1,1 +1,0.0495,0.371,0.371,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0833,1,0.391,0.0202,0.391,0.391,0.0181,0.0181,0.19,0.19,1,1 +1,0.0495,0.343,0.343,0,0,0.78,0.78,0.78,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0405,1,0.205,0.00504,0.205,0.205,0.0181,0.0181,0.23,0.23,1,1 +1,0.0495,0.343,0.343,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0203,1,0.169,0.00504,0.169,0.169,0.0181,0.0181,0.19,0.19,1,1 +1,0.0495,0.334,0.334,0,0,0.74,0.74,0.74,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0158,1,0.133,0.0101,0.133,0.133,0.0241,0.0241,0.23,0.23,1,1 +1,0.0495,0.306,0.306,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0248,1,0.142,0.0353,0.142,0.142,0.0482,0.0482,0.373,0.373,1,1 +1,0.0495,0.334,0.334,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0.00271,0,0.00271,0.258,0.465,0.0405,1,0.16,0.0605,0.16,0.16,0.0903,0.0903,0.532,0.532,1,1 +1,0.139,0.398,0.398,0,0,0.76,0.76,0.76,0,0,0.0146,0,0,0,0,0.0271,0,0.0271,0.305,0.463,0.0653,1,0.231,0.146,0.231,0.231,0.157,0.157,0.452,0.452,0.667,1 +1,0.284,0.436,0.436,0,0,0.8,0.8,0.8,0,0,0.0383,0.0112,0,0,0,0,0,0,0.376,0.503,0.09,1,0.293,0.232,0.293,0.293,0.265,0.265,0.19,0.19,0.333,1 +0.667,0.168,0.315,0.315,0,0,0.82,0.82,0.82,0,0,0.0486,0.00982,0.147,0.147,0,0,0,0,0.277,0.488,0.11,1,0.293,0.222,0.293,0.293,0.506,0.506,0.19,0.19,0.333,1 +0.667,0.278,0.213,0.213,0,0,0.82,0.82,0.82,0,0,0.0529,0,0.22,0.22,0,0,0,0,0.228,0.511,0.131,1,0.285,0.207,0.285,0.285,0.729,0.729,0.151,0.151,0,1 +0.333,0.16,0.222,0.222,0,0,0.8,0.8,0.8,0,0,0.0171,0,0,0,0,0,0.00284,0.00284,0.246,0.488,0.146,1,0.293,0.222,0.293,0.293,0.765,0.765,0.119,0.119,0,1 +0.333,0.154,0.232,0.232,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0.0227,0.0227,0.249,0.492,0.162,1,0.293,0.232,0.293,0.293,0.729,0.729,0.111,0.111,0,1 +0.333,0.15,0.222,0.222,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0.00284,0.00284,0.246,0.496,0.171,1,0.285,0.212,0.285,0.285,0.723,0.723,0.111,0.111,0,1 +0,0.0495,0.259,0.259,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0.00568,0.00568,0.258,0.465,0.194,1,0.285,0.191,0.285,0.285,0.542,0.542,0.111,0.111,0,1 +0,0.0495,0.287,0.287,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0.0114,0.0114,0.258,0.465,0.205,1,0.285,0.247,0.285,0.285,0.452,0.452,0.19,0.19,0,1 +0.333,0.15,0.297,0.297,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0.0227,0.0227,0.271,0.501,0.23,1,0.293,0.297,0.293,0.293,0.367,0.367,0.46,0.46,0,1 +0,0.0495,0.361,0.361,0,0,0.88,0.88,0.88,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.465,0.286,1,0.4,0.554,0.4,0.4,0.223,0.223,1,1,0,1 +0.667,0.286,0.491,0.491,0,0,0.96,0.96,0.96,0.00382,0.0175,0,0,0,0,0,0.00954,0,0.00954,0.413,0.585,0.351,1,0.507,0.811,0.507,0.507,0.139,0.139,0.968,0.968,0,1 +0.667,0.351,0.584,0.584,0,0,1,1,1,0.0233,0.0302,0,0,0,0,0,0.0327,0,0.0327,0.475,0.594,0.473,1,0.587,0.58,0.587,0.587,0.0783,0.0783,0.54,0.54,0,1 +1,0.656,0.621,0.621,0,0,0.96,0.96,0.96,0,0,0,0,0,0,0,0.038,0,0.038,0.621,0.621,0.662,1,0.676,0.353,0.676,0.676,0.0482,0.0482,0.484,0.484,0,1 +0.667,0.554,0.658,0.658,0,0,0.94,0.94,0.94,0,0,0,0,0,0,0,0.0125,0,0.0125,0.525,0.544,0.817,1,0.72,0.222,0.72,0.72,0.0241,0.0241,0.405,0.405,0,1 +1,0.584,0.639,0.639,0,0.0366,0.92,0.92,0.92,0,0,0,0,0,0,0,0.0168,0.00284,0.0197,0.512,0.528,0.774,1,0.765,0.0957,0.765,0.765,0.0181,0.0181,0.341,0.341,0.333,1 +1,0.391,0.547,0.547,0,0,0.88,0.88,0.88,0,0,0,0,0,0,0,0.0564,0,0.0564,0.45,0.486,0.468,1,0.667,0.0655,0.667,0.667,0.0181,0.0181,0.19,0.19,0.333,1 +1,0.116,0.463,0.463,0,0,0.82,0.82,0.82,0.0115,0.0239,0,0,0,0,0,0.0129,0.00568,0.0186,0.326,0.459,0.203,1,0.578,0.0353,0.578,0.578,0.0181,0.0181,0.19,0.19,0.667,1 +1,0.0495,0.371,0.371,0,0,0.8,0.8,0.8,0.0187,0,0,0,0,0,0,0,0.0114,0.0114,0.258,0.465,0.0833,1,0.391,0.0202,0.391,0.391,0.0181,0.0181,0.19,0.19,1,1 +1,0.0495,0.343,0.343,0,0,0.78,0.78,0.78,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0405,1,0.205,0.00504,0.205,0.205,0.0181,0.0181,0.23,0.23,1,1 +1,0.0495,0.343,0.343,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0203,1,0.169,0.00504,0.169,0.169,0.0181,0.0181,0.19,0.19,1,1 +1,0.0495,0.334,0.334,0,0,0.74,0.74,0.74,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0158,1,0.133,0.0101,0.133,0.133,0.0241,0.0241,0.23,0.23,1,1 +1,0.0495,0.306,0.306,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0248,1,0.142,0.0353,0.142,0.142,0.0482,0.0482,0.373,0.373,1,1 +1,0.0495,0.334,0.334,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0405,1,0.16,0.0605,0.16,0.16,0.0903,0.0903,0.532,0.532,1,1 +1,0.0495,0.398,0.398,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0653,1,0.231,0.146,0.231,0.231,0.157,0.157,0.452,0.452,1,1 +0.667,0.0495,0.436,0.436,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.09,1,0.293,0.232,0.293,0.293,0.265,0.265,0.19,0.19,0.667,1 +0.333,0.0495,0.315,0.315,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.11,1,0.293,0.222,0.293,0.293,0.506,0.506,0.19,0.19,0.333,1 +0.333,0.164,0.213,0.213,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0,0,0.243,0.488,0.131,1,0.285,0.207,0.285,0.285,0.729,0.729,0.151,0.151,0,1 +0.333,0.16,0.222,0.222,0,0,0.8,0.8,0.8,0,0,0.0298,0.000702,0,0,0,0,0,0,0.246,0.488,0.146,1,0.293,0.222,0.293,0.293,0.765,0.765,0.119,0.119,0,1 +0.333,0.154,0.232,0.232,0,0,0.8,0.8,0.8,0,0,0.000292,0.0203,0,0,0,0,0,0,0.249,0.492,0.162,1,0.293,0.232,0.293,0.293,0.729,0.729,0.111,0.111,0,1 +0.667,0.251,0.222,0.222,0,0,0.84,0.84,0.84,0,0,0.0323,0,0.275,0.275,0,0,0,0,0.234,0.528,0.171,1,0.285,0.212,0.285,0.285,0.723,0.723,0.111,0.111,0,1 +0.667,0.249,0.259,0.259,0,0,0.84,0.84,0.84,0,0,0.0321,0,0,0,0,0,0.00568,0.00568,0.259,0.528,0.194,1,0.285,0.191,0.285,0.285,0.542,0.542,0.111,0.111,0,1 +0.667,0.249,0.287,0.287,0,0,0.84,0.84,0.84,0,0,0.03,0,0,0,0,0,0.00568,0.00568,0.277,0.519,0.205,1,0.285,0.247,0.285,0.285,0.452,0.452,0.19,0.19,0,1 +0.667,0.251,0.297,0.297,0,0,0.82,0.82,0.82,0,0,0.0369,0,0,0,0,0,0.0284,0.0284,0.284,0.536,0.23,1,0.293,0.297,0.293,0.293,0.367,0.367,0.46,0.46,0,1 +1,0.363,0.361,0.361,0,0.0853,0.88,0.88,0.88,0,0,0.0228,0,0,0,0,0,0.017,0.017,0.361,0.596,0.286,1,0.4,0.554,0.4,0.4,0.223,0.223,1,1,0,1 +1,0.404,0.491,0.491,0,0.134,0.96,0.96,0.96,0,0,0.0279,0,0,0,0,0,0.00568,0.00568,0.491,0.646,0.351,1,0.507,0.811,0.507,0.507,0.139,0.139,0.968,0.968,0,1 +1,0.501,0.584,0.584,0,0,1,1,1,0,0,0.0402,0,0,0,0,0,0.00568,0.00568,0.584,0.658,0.473,1,0.587,0.58,0.587,0.587,0.0783,0.0783,0.54,0.54,0,1 +1,0.656,0.621,0.621,0,0,0.96,0.96,0.96,0,0,0,0,0,0,0,0.00252,0.00284,0.00536,0.621,0.621,0.662,1,0.676,0.353,0.676,0.676,0.0482,0.0482,0.484,0.484,0,1 +1,0.806,0.658,0.658,0,0,0.94,0.94,0.94,0,0,0,0,0,0,0,0.0351,0,0.0351,0.658,0.583,0.817,1,0.72,0.222,0.72,0.72,0.0241,0.0241,0.405,0.405,0,1 +1,0.584,0.639,0.639,0,0,0.92,0.92,0.92,0,0,0,0,0,0,0,0.0136,0,0.0136,0.512,0.528,0.774,1,0.765,0.0957,0.765,0.765,0.0181,0.0181,0.341,0.341,0.333,1 +1,0.22,0.547,0.547,0,0,0.88,0.88,0.88,0,0,0,0,0,0,0,0.0248,0.00568,0.0305,0.354,0.476,0.468,1,0.667,0.0655,0.667,0.667,0.0181,0.0181,0.19,0.19,0.667,1 +1,0.0495,0.463,0.463,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.465,0.203,1,0.578,0.0353,0.578,0.578,0.0181,0.0181,0.19,0.19,1,1 +1,0.0495,0.371,0.371,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.465,0.0833,1,0.391,0.0202,0.391,0.391,0.0181,0.0181,0.19,0.19,1,1 +1,0.0495,0.343,0.343,0,0,0.78,0.78,0.78,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0405,1,0.205,0.00504,0.205,0.205,0.0181,0.0181,0.23,0.23,1,1 +1,0.0495,0.343,0.343,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0203,1,0.169,0.00504,0.169,0.169,0.0181,0.0181,0.19,0.19,1,1 +1,0.0495,0.334,0.334,0,0,0.74,0.74,0.74,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0158,1,0.133,0.0101,0.133,0.133,0.0241,0.0241,0.23,0.23,1,1 +1,0.0495,0.306,0.306,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0.00271,0,0.00271,0.258,0.465,0.0248,1,0.142,0.0353,0.142,0.142,0.0482,0.0482,0.373,0.373,1,1 +1,0.0781,0.334,0.334,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0.0796,0,0.0796,0.283,0.447,0.0405,1,0.16,0.0605,0.16,0.16,0.0903,0.0903,0.532,0.532,0.667,1 +1,0.228,0.398,0.398,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0.0352,0,0.0352,0.352,0.461,0.0653,1,0.231,0.146,0.231,0.231,0.157,0.157,0.452,0.452,0.333,1 +1,0.284,0.436,0.436,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0.0329,0,0.0329,0.376,0.503,0.09,1,0.293,0.232,0.293,0.293,0.265,0.265,0.19,0.19,0.333,1 +0.667,0.168,0.315,0.315,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0.0499,0,0.0499,0.277,0.488,0.11,1,0.293,0.222,0.293,0.293,0.506,0.506,0.19,0.19,0.333,1 +0.667,0.278,0.213,0.213,0,0.0366,0.82,0.82,0.82,0.00416,0.0175,0,0,0,0,0,0,0.00284,0.00284,0.228,0.511,0.131,1,0.285,0.207,0.285,0.285,0.729,0.729,0.151,0.151,0,1 +0.667,0.27,0.222,0.222,0,0,0.8,0.8,0.8,0.0217,0.0955,0,0,0,0,0,0,0.017,0.017,0.234,0.511,0.146,1,0.293,0.222,0.293,0.293,0.765,0.765,0.119,0.119,0,1 +0.667,0.259,0.232,0.232,0,0,0.8,0.8,0.8,0.0231,0.0302,0,0,0,0,0,0,0.00284,0.00284,0.24,0.519,0.162,1,0.293,0.232,0.293,0.293,0.729,0.729,0.111,0.111,0,1 +0.333,0.15,0.222,0.222,0,0,0.84,0.84,0.84,0.0108,0,0,0,0,0,0,0,0,0,0.246,0.496,0.171,1,0.285,0.212,0.285,0.285,0.723,0.723,0.111,0.111,0,1 +0.333,0.149,0.259,0.259,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.496,0.194,1,0.285,0.191,0.285,0.285,0.542,0.542,0.111,0.111,0,1 +0.333,0.149,0.287,0.287,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0,0,0.268,0.492,0.205,1,0.285,0.247,0.285,0.285,0.452,0.452,0.19,0.19,0,1 +0.333,0.15,0.297,0.297,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0.00568,0.00568,0.271,0.501,0.23,1,0.293,0.297,0.293,0.293,0.367,0.367,0.46,0.46,0,1 +0.667,0.259,0.361,0.361,0,0,0.88,0.88,0.88,0,0,0,0,0,0,0,0,0.00284,0.00284,0.327,0.552,0.286,1,0.4,0.554,0.4,0.4,0.223,0.223,1,1,0,1 +0,0.0495,0.491,0.491,0,0,0.96,0.96,0.96,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.351,1,0.507,0.811,0.507,0.507,0.139,0.139,0.968,0.968,0,1 +0.333,0.2,0.584,0.584,0,0.0366,1,1,1,0,0,0,0,0,0,0,0,0.0142,0.0142,0.366,0.53,0.473,1,0.587,0.58,0.587,0.587,0.0783,0.0783,0.54,0.54,0,1 +0.667,0.454,0.621,0.621,0,0,0.96,0.96,0.96,0,0,0,0,0,0,0,0,0.00568,0.00568,0.5,0.569,0.662,1,0.676,0.353,0.676,0.676,0.0482,0.0482,0.484,0.484,0,1 +1,0.806,0.658,0.658,0,0,0.94,0.94,0.94,0,0,0,0,0,0,0,0.0281,0.0114,0.0395,0.658,0.583,0.817,1,0.72,0.222,0.72,0.72,0.0241,0.0241,0.405,0.405,0,1 +1,0.584,0.639,0.639,0,0,0.92,0.92,0.92,0,0,0,0,0,0,0,0,0,0,0.512,0.528,0.774,1,0.765,0.0957,0.765,0.765,0.0181,0.0181,0.341,0.341,0.333,1 +1,0.391,0.547,0.547,0,0,0.88,0.88,0.88,0,0,0,0,0,0,0,0.00251,0.0284,0.0309,0.45,0.486,0.468,1,0.667,0.0655,0.667,0.667,0.0181,0.0181,0.19,0.19,0.333,1 +1,0.116,0.463,0.463,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0.0226,0,0.0226,0.326,0.459,0.203,1,0.578,0.0353,0.578,0.578,0.0181,0.0181,0.19,0.19,0.667,1 +1,0.0495,0.371,0.371,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.099,1,0.391,0.0202,0.391,0.391,0.0181,0.0181,0.19,0.19,1,1 +1,0.0495,0.343,0.343,0,0,0.78,0.78,0.78,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.465,0.0495,1,0.205,0.00504,0.205,0.205,0.0181,0.0181,0.23,0.23,1,1 +1,0.0495,0.343,0.343,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.027,1,0.169,0.00504,0.169,0.169,0.0181,0.0181,0.19,0.19,1,1 +1,0.0495,0.334,0.334,0,0,0.74,0.74,0.74,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.018,1,0.133,0.0101,0.133,0.133,0.0241,0.0241,0.23,0.23,1,1 +1,0.0495,0.306,0.306,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0248,1,0.142,0.0353,0.142,0.142,0.0482,0.0482,0.373,0.373,1,1 +1,0.0495,0.334,0.334,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0.0171,0,0.0171,0.258,0.465,0.0315,1,0.16,0.0605,0.16,0.16,0.0903,0.0903,0.532,0.532,1,1 +1,0.139,0.398,0.398,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0.0281,0,0.0281,0.305,0.463,0.054,1,0.231,0.146,0.231,0.231,0.157,0.157,0.452,0.452,0.667,1 +1,0.167,0.436,0.436,0,0.0731,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0,0,0.317,0.484,0.0968,1,0.293,0.232,0.293,0.293,0.265,0.265,0.19,0.19,0.667,1 +1,0.168,0.315,0.315,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0,0,0.277,0.488,0.16,1,0.293,0.222,0.293,0.293,0.506,0.506,0.19,0.19,0.667,1 +1,0.164,0.213,0.213,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0.00267,0,0.00267,0.243,0.488,0.212,1,0.285,0.207,0.285,0.285,0.729,0.729,0.151,0.151,0.667,1 +1,0.381,0.222,0.222,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0.0341,0,0.0341,0.222,0.534,0.252,1,0.293,0.222,0.293,0.293,0.765,0.765,0.119,0.119,0,1 +1,0.364,0.232,0.232,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0.0243,0,0.0243,0.232,0.546,0.277,1,0.293,0.232,0.293,0.293,0.729,0.729,0.111,0.111,0,1 +0.667,0.251,0.222,0.222,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0.0026,0.00568,0.00828,0.234,0.528,0.297,1,0.285,0.212,0.285,0.285,0.723,0.723,0.111,0.111,0,1 +0.667,0.249,0.259,0.259,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0.0354,0.00568,0.0411,0.259,0.528,0.351,1,0.285,0.191,0.285,0.285,0.542,0.542,0.111,0.111,0,1 +0.667,0.249,0.287,0.287,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0.0144,0.00568,0.0201,0.277,0.519,0.401,1,0.285,0.247,0.285,0.285,0.452,0.452,0.19,0.19,0,1 +0.667,0.251,0.297,0.297,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0.0488,0,0.0488,0.284,0.536,0.441,1,0.293,0.297,0.293,0.293,0.367,0.367,0.46,0.46,0,1 +0.667,0.259,0.361,0.361,0,0,0.88,0.88,0.88,0,0,0,0,0,0,0,0,0,0,0.327,0.552,0.464,1,0.4,0.554,0.4,0.4,0.223,0.223,1,1,0,1 +0.667,0.286,0.491,0.491,0,0,0.96,0.96,0.96,0,0,0,0,0,0,0,0,0.00568,0.00568,0.413,0.585,0.479,1,0.507,0.811,0.507,0.507,0.139,0.139,0.968,0.968,0,1 +1,0.501,0.584,0.584,0,0,1,1,1,0,0,0,0,0,0,0,0,0.00568,0.00568,0.584,0.658,0.565,1,0.587,0.58,0.587,0.587,0.0783,0.0783,0.54,0.54,0,1 +1,0.656,0.621,0.621,0,0,0.96,0.96,0.96,0,0,0.0136,0,0,0,0,0,0.0142,0.0142,0.621,0.621,0.743,1,0.676,0.353,0.676,0.676,0.0482,0.0482,0.484,0.484,0,1 +1,0.806,0.658,0.658,0,0,0.94,0.94,0.94,0,0,0.0337,0.0158,0,0,0,0,0,0,0.658,0.583,0.873,1,0.72,0.222,0.72,0.72,0.0241,0.0241,0.405,0.405,0,1 +1,0.851,0.639,0.639,0,0,0.92,0.92,0.92,0,0,0,0,0.33,0.33,0,0,0.0142,0.0142,0.639,0.559,0.806,1,0.765,0.0957,0.765,0.765,0.0181,0.0181,0.341,0.341,0,1 +1,0.561,0.547,0.547,0,0,0.88,0.88,0.88,0,0,0,0,0.0367,0.0367,0,0,0.00568,0.00568,0.547,0.497,0.509,1,0.667,0.0655,0.667,0.667,0.0181,0.0181,0.19,0.19,0,1 +1,0.116,0.463,0.463,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0,0,0.326,0.459,0.232,1,0.578,0.0353,0.578,0.578,0.0181,0.0181,0.19,0.19,0.667,1 +1,0.0495,0.371,0.371,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0.00568,0.00568,0.258,0.465,0.099,1,0.391,0.0202,0.391,0.391,0.0181,0.0181,0.19,0.19,1,1 +1,0.0495,0.343,0.343,0,0,0.78,0.78,0.78,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0495,1,0.205,0.00504,0.205,0.205,0.0181,0.0181,0.23,0.23,1,1 +1,0.0495,0.343,0.343,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.027,1,0.169,0.00504,0.169,0.169,0.0181,0.0181,0.19,0.19,1,1 +1,0.0495,0.334,0.334,0,0,0.74,0.74,0.74,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.465,0.018,1,0.133,0.0101,0.133,0.133,0.0241,0.0241,0.23,0.23,1,1 +1,0.0495,0.306,0.306,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0248,1,0.142,0.0353,0.142,0.142,0.0482,0.0482,0.373,0.373,1,1 +1,0.0781,0.334,0.334,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0,0,0,0.283,0.447,0.0315,1,0.16,0.0605,0.16,0.16,0.0903,0.0903,0.532,0.532,0.667,1 +1,0.0495,0.398,0.398,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0.00244,0,0.00244,0.258,0.465,0.054,1,0.231,0.146,0.231,0.231,0.157,0.157,0.452,0.452,1,1 +0.667,0.167,0.436,0.436,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0.0285,0,0.0285,0.317,0.484,0.0968,1,0.293,0.232,0.293,0.293,0.265,0.265,0.19,0.19,0.333,1 +1,0.168,0.315,0.315,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0.0107,0,0.0107,0.277,0.488,0.16,1,0.293,0.222,0.293,0.293,0.506,0.506,0.19,0.19,0.667,1 +1,0.164,0.213,0.213,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0.0187,0,0.0187,0.243,0.488,0.212,1,0.285,0.207,0.285,0.285,0.729,0.729,0.151,0.151,0.667,1 +1,0.16,0.222,0.222,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0,0,0.246,0.488,0.252,1,0.293,0.222,0.293,0.293,0.765,0.765,0.119,0.119,0.667,1 +1,0.154,0.232,0.232,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0,0,0.249,0.492,0.277,1,0.293,0.232,0.293,0.293,0.729,0.729,0.111,0.111,0.667,1 +0.667,0.15,0.222,0.222,0,0.0366,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0.00284,0.00284,0.246,0.496,0.297,1,0.285,0.212,0.285,0.285,0.723,0.723,0.111,0.111,0.333,1 +0.667,0.149,0.259,0.259,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.496,0.351,1,0.285,0.191,0.285,0.285,0.542,0.542,0.111,0.111,0.333,1 +0.667,0.149,0.287,0.287,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0,0,0.268,0.492,0.401,1,0.285,0.247,0.285,0.285,0.452,0.452,0.19,0.19,0.333,1 +0.667,0.15,0.297,0.297,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0.00284,0.00284,0.271,0.501,0.441,1,0.293,0.297,0.293,0.293,0.367,0.367,0.46,0.46,0.333,1 +0.667,0.154,0.361,0.361,0,0,0.88,0.88,0.88,0,0,0,0,0,0,0,0.0355,0.00284,0.0383,0.292,0.509,0.464,1,0.4,0.554,0.4,0.4,0.223,0.223,1,1,0.333,1 +0.667,0.168,0.491,0.491,0,0,0.96,0.96,0.96,0,0,0,0,0,0,0,0.0208,0.00568,0.0265,0.336,0.525,0.479,1,0.507,0.811,0.507,0.507,0.139,0.139,0.968,0.968,0.333,1 +0.667,0.2,0.584,0.584,0,0,1,1,1,0.0157,0.0653,0,0,0,0,0,0,0.0199,0.0199,0.366,0.53,0.565,1,0.587,0.58,0.587,0.587,0.0783,0.0783,0.54,0.54,0.333,1 +0.667,0.252,0.621,0.621,0,0,0.96,0.96,0.96,0.0184,0.00637,0.0143,0,0,0,0,0,0.00284,0.00284,0.379,0.517,0.743,1,0.676,0.353,0.676,0.676,0.0482,0.0482,0.484,0.484,0.333,1 +1,0.554,0.658,0.658,0,0,0.94,0.94,0.94,0.00882,0,0.0359,0.0105,0.055,0.055,0,0,0.00568,0.00568,0.525,0.544,0.873,1,0.72,0.222,0.72,0.72,0.0241,0.0241,0.405,0.405,0.333,1 +0.667,0.584,0.639,0.639,0,0,0.92,0.92,0.92,0,0,0.0079,0,0.22,0.22,0,0,0.00284,0.00284,0.512,0.528,0.806,1,0.765,0.0957,0.765,0.765,0.0181,0.0181,0.341,0.341,0,1 +1,0.391,0.547,0.547,0,0,0.88,0.88,0.88,0,0,0,0,0,0,0,0,0,0,0.45,0.486,0.509,1,0.667,0.0655,0.667,0.667,0.0181,0.0181,0.19,0.19,0.333,1 +1,0.116,0.463,0.463,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0.00568,0.00568,0.326,0.459,0.232,1,0.578,0.0353,0.578,0.578,0.0181,0.0181,0.19,0.19,0.667,1 +1,0.0495,0.371,0.371,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0.0142,0.0142,0.258,0.465,0.0833,1,0.391,0.0202,0.391,0.391,0.0181,0.0181,0.19,0.19,1,1 +1,0.0495,0.343,0.343,0,0,0.78,0.78,0.78,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0405,1,0.205,0.00504,0.205,0.205,0.0181,0.0181,0.23,0.23,1,1 +1,0.0495,0.343,0.343,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0203,1,0.169,0.00504,0.169,0.169,0.0181,0.0181,0.19,0.19,1,1 +1,0.0495,0.334,0.334,0,0,0.74,0.74,0.74,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0158,1,0.133,0.0101,0.133,0.133,0.0241,0.0241,0.23,0.23,1,1 +0.667,0.0503,0.306,0.306,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0,0,0,0.274,0.443,0.0248,1,0.142,0.0353,0.142,0.142,0.0482,0.0482,0.373,0.373,0.333,1 +0.667,0.0495,0.334,0.334,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0405,1,0.16,0.0605,0.16,0.16,0.0903,0.0903,0.532,0.532,0.667,1 +0.667,0.139,0.398,0.398,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0,0,0,0.305,0.463,0.0653,1,0.231,0.146,0.231,0.231,0.157,0.157,0.452,0.452,0.333,1 +0.333,0.167,0.436,0.436,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0,0,0.317,0.484,0.09,1,0.293,0.232,0.293,0.293,0.265,0.265,0.19,0.19,0,1 +0,0.0495,0.315,0.315,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0.0883,0.0179,0,0.106,0.258,0.465,0.11,1,0.293,0.222,0.293,0.293,0.506,0.506,0.19,0.19,0,1 +0.333,0.164,0.213,0.213,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0.064,0,0.0142,0.0781,0.243,0.488,0.131,1,0.285,0.207,0.285,0.285,0.729,0.729,0.151,0.151,0,1 +0.333,0.16,0.222,0.222,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0.00284,0.00284,0.246,0.488,0.146,1,0.293,0.222,0.293,0.293,0.765,0.765,0.119,0.119,0,1 +0.333,0.154,0.232,0.232,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0,0,0.249,0.492,0.162,1,0.293,0.232,0.293,0.293,0.729,0.729,0.111,0.111,0,1 +0.333,0.15,0.222,0.222,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0,0,0.246,0.496,0.171,1,0.285,0.212,0.285,0.285,0.723,0.723,0.111,0.111,0,1 +0.333,0.149,0.259,0.259,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.496,0.194,1,0.285,0.191,0.285,0.285,0.542,0.542,0.111,0.111,0,1 +0.333,0.149,0.287,0.287,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0.00568,0.00568,0.268,0.492,0.205,1,0.285,0.247,0.285,0.285,0.452,0.452,0.19,0.19,0,1 +0.333,0.15,0.297,0.297,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0.00284,0.00284,0.271,0.501,0.23,1,0.293,0.297,0.293,0.293,0.367,0.367,0.46,0.46,0,1 +0.667,0.259,0.361,0.361,0,0.0487,0.88,0.88,0.88,0,0,0,0,0,0,0,0,0.0369,0.0369,0.327,0.552,0.286,1,0.4,0.554,0.4,0.4,0.223,0.223,1,1,0,1 +0.667,0.286,0.491,0.491,0,0.0244,0.96,0.96,0.96,0,0,0,0,0,0,0,0,0.0114,0.0114,0.413,0.585,0.351,1,0.507,0.811,0.507,0.507,0.139,0.139,0.968,0.968,0,1 +0.333,0.2,0.584,0.584,0,0,1,1,1,0.00393,0.0175,0,0,0,0,0,0,0.00568,0.00568,0.366,0.53,0.473,1,0.587,0.58,0.587,0.587,0.0783,0.0783,0.54,0.54,0,1 +0.333,0.252,0.621,0.621,0,0,0.96,0.96,0.96,0.0257,0.0302,0,0,0,0,0,0,0.00284,0.00284,0.379,0.517,0.662,1,0.676,0.353,0.676,0.676,0.0482,0.0482,0.484,0.484,0,1 +0.333,0.302,0.658,0.658,0,0,0.94,0.94,0.94,0,0,0,0,0,0,0,0,0.00568,0.00568,0.391,0.505,0.817,1,0.72,0.222,0.72,0.72,0.0241,0.0241,0.405,0.405,0,1 +0.667,0.584,0.639,0.639,0,0,0.92,0.92,0.92,0,0,0,0,0,0,0.0376,0.016,0.00852,0.0621,0.512,0.528,0.774,1,0.765,0.0957,0.765,0.765,0.0181,0.0181,0.341,0.341,0,1 +1,0.391,0.547,0.547,0,0,0.88,0.88,0.88,0,0,0,0,0,0,0.0376,0,0,0.0376,0.45,0.486,0.468,1,0.667,0.0655,0.667,0.667,0.0181,0.0181,0.19,0.19,0.333,1 +1,0.0495,0.463,0.463,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.203,1,0.578,0.0353,0.578,0.578,0.0181,0.0181,0.19,0.19,1,1 +1,0.0495,0.371,0.371,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0833,1,0.391,0.0202,0.391,0.391,0.0181,0.0181,0.19,0.19,1,1 +1,0.0495,0.343,0.343,0,0,0.78,0.78,0.78,0,0,0,0,0,0,0,0,0.00568,0.00568,0.258,0.465,0.0405,1,0.205,0.00504,0.205,0.205,0.0181,0.0181,0.23,0.23,1,1 +1,0.0495,0.343,0.343,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0203,1,0.169,0.00504,0.169,0.169,0.0181,0.0181,0.19,0.19,1,1 +1,0.0495,0.334,0.334,0,0,0.74,0.74,0.74,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0158,1,0.133,0.0101,0.133,0.133,0.0241,0.0241,0.23,0.23,1,1 +0.667,0.0495,0.306,0.306,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0248,1,0.142,0.0353,0.142,0.142,0.0482,0.0482,0.373,0.373,0.667,1 +0.667,0.0495,0.334,0.334,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0.00254,0,0.00254,0.258,0.465,0.0405,1,0.16,0.0605,0.16,0.16,0.0903,0.0903,0.532,0.532,0.667,1 +1,0.139,0.398,0.398,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0.0253,0,0.0253,0.305,0.463,0.0653,1,0.231,0.146,0.231,0.231,0.157,0.157,0.452,0.452,0.667,1 +1,0.167,0.436,0.436,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0.0865,0,0.0865,0.317,0.484,0.09,1,0.293,0.232,0.293,0.293,0.265,0.265,0.19,0.19,0.667,1 +1,0.404,0.315,0.315,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0.0723,0,0.0723,0.315,0.534,0.11,1,0.293,0.222,0.293,0.293,0.506,0.506,0.19,0.19,0,1 +1,0.392,0.213,0.213,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0.00269,0,0.00269,0.213,0.534,0.131,1,0.285,0.207,0.285,0.285,0.729,0.729,0.151,0.151,0,1 +0.667,0.27,0.222,0.222,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0.0345,0,0.0345,0.234,0.511,0.146,1,0.293,0.222,0.293,0.293,0.765,0.765,0.119,0.119,0,1 +0.667,0.259,0.232,0.232,0,0,0.8,0.8,0.8,0.00769,0.0414,0,0,0,0,0,0,0.00284,0.00284,0.24,0.519,0.162,1,0.293,0.232,0.293,0.293,0.729,0.729,0.111,0.111,0,1 +0.667,0.251,0.222,0.222,0,0,0.84,0.84,0.84,0.0184,0.00637,0.0124,0,0,0,0,0,0.00284,0.00284,0.234,0.528,0.171,1,0.285,0.212,0.285,0.285,0.723,0.723,0.111,0.111,0,1 +0.333,0.149,0.259,0.259,0,0,0.84,0.84,0.84,0.0162,0,0.00224,0.0165,0,0,0,0,0,0,0.258,0.496,0.194,1,0.285,0.191,0.285,0.285,0.542,0.542,0.111,0.111,0,1 +0.333,0.149,0.287,0.287,0,0.0366,0.84,0.84,0.84,0,0,0,0.00456,0.238,0.238,0,0,0.00852,0.00852,0.268,0.492,0.205,1,0.285,0.247,0.285,0.285,0.452,0.452,0.19,0.19,0,1 +0.333,0.15,0.297,0.297,0,0,0.82,0.82,0.82,0,0,0,0,0.0367,0.0367,0,0,0.00284,0.00284,0.271,0.501,0.23,1,0.293,0.297,0.293,0.293,0.367,0.367,0.46,0.46,0,1 +0.333,0.154,0.361,0.361,0,0,0.88,0.88,0.88,0,0,0,0,0,0,0,0,0.0114,0.0114,0.292,0.509,0.286,1,0.4,0.554,0.4,0.4,0.223,0.223,1,1,0,1 +1,0.404,0.491,0.491,0,0,0.96,0.96,0.96,0,0,0,0,0,0,0,0,0.00568,0.00568,0.491,0.646,0.351,1,0.507,0.811,0.507,0.507,0.139,0.139,0.968,0.968,0,1 +1,0.501,0.584,0.584,0,0,1,1,1,0,0,0,0,0,0,0,0.00243,0,0.00243,0.584,0.658,0.473,1,0.587,0.58,0.587,0.587,0.0783,0.0783,0.54,0.54,0,1 +1,0.656,0.621,0.621,0,0,0.96,0.96,0.96,0,0,0,0,0,0,0,0.0121,0,0.0121,0.621,0.621,0.662,1,0.676,0.353,0.676,0.676,0.0482,0.0482,0.484,0.484,0,1 +1,0.806,0.658,0.658,0,0,0.94,0.94,0.94,0,0,0,0,0,0,0.084,0,0.00284,0.0868,0.658,0.583,0.817,1,0.72,0.222,0.72,0.72,0.0241,0.0241,0.405,0.405,0,1 +1,0.317,0.639,0.639,0,0,0.92,0.92,0.92,0,0,0,0,0,0,0,0,0.0114,0.0114,0.385,0.496,0.774,1,0.765,0.0957,0.765,0.765,0.0181,0.0181,0.341,0.341,0.667,1 +1,0.22,0.547,0.547,0,0,0.88,0.88,0.88,0,0,0,0,0,0,0,0,0.00568,0.00568,0.354,0.476,0.468,1,0.667,0.0655,0.667,0.667,0.0181,0.0181,0.19,0.19,0.667,1 +1,0.116,0.463,0.463,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0.00284,0.00284,0.326,0.459,0.203,1,0.578,0.0353,0.578,0.578,0.0181,0.0181,0.19,0.19,0.667,1 +1,0.0495,0.371,0.371,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0833,1,0.391,0.0202,0.391,0.391,0.0181,0.0181,0.19,0.19,1,1 +1,0.0495,0.343,0.343,0,0,0.78,0.78,0.78,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.465,0.0405,1,0.205,0.00504,0.205,0.205,0.0181,0.0181,0.23,0.23,1,1 +1,0.0495,0.343,0.343,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0203,1,0.169,0.00504,0.169,0.169,0.0181,0.0181,0.19,0.19,1,1 +1,0.0495,0.334,0.334,0,0,0.74,0.74,0.74,0,0,0,0,0,0,0,0.00261,0,0.00261,0.258,0.465,0.0158,1,0.133,0.0101,0.133,0.133,0.0241,0.0241,0.23,0.23,1,1 +1,0.0503,0.306,0.306,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0.0477,0,0.0477,0.274,0.443,0.0248,1,0.142,0.0353,0.142,0.142,0.0482,0.0482,0.373,0.373,0.667,1 +1,0.0781,0.334,0.334,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0,0,0,0.283,0.447,0.0405,1,0.16,0.0605,0.16,0.16,0.0903,0.0903,0.532,0.532,0.667,1 +0.667,0.139,0.398,0.398,0,0.0366,0.76,0.76,0.76,0,0,0.0278,0.00596,0,0,0,0.0161,0,0.0161,0.305,0.463,0.0653,1,0.231,0.146,0.231,0.231,0.157,0.157,0.452,0.452,0.333,1 +0.333,0.167,0.436,0.436,0,0,0.8,0.8,0.8,0,0,0,0.00982,0.147,0.147,0,0.025,0,0.025,0.317,0.484,0.09,1,0.293,0.232,0.293,0.293,0.265,0.265,0.19,0.19,0,1 +0.333,0.168,0.315,0.315,0,0,0.82,0.82,0.82,0,0,0,0,0.22,0.22,0,0.0334,0.00568,0.0391,0.277,0.488,0.11,1,0.293,0.222,0.293,0.293,0.506,0.506,0.19,0.19,0,1 +0.333,0.164,0.213,0.213,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0.00915,0.00568,0.0148,0.243,0.488,0.131,1,0.285,0.207,0.285,0.285,0.729,0.729,0.151,0.151,0,1 +0.333,0.16,0.222,0.222,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0.0402,0,0.0402,0.246,0.488,0.146,1,0.293,0.222,0.293,0.293,0.765,0.765,0.119,0.119,0,1 +0.333,0.154,0.232,0.232,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0.0319,0.0142,0.0461,0.249,0.492,0.162,1,0.293,0.232,0.293,0.293,0.729,0.729,0.111,0.111,0,1 +0.333,0.15,0.222,0.222,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0.0629,0.0166,0,0.0796,0.246,0.496,0.171,1,0.285,0.212,0.285,0.285,0.723,0.723,0.111,0.111,0,1 +0.333,0.149,0.259,0.259,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0.105,0.00894,0,0.114,0.258,0.496,0.194,1,0.285,0.191,0.285,0.285,0.542,0.542,0.111,0.111,0,1 +0.333,0.149,0.287,0.287,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0,0,0.268,0.492,0.205,1,0.285,0.247,0.285,0.285,0.452,0.452,0.19,0.19,0,1 +0.333,0.15,0.297,0.297,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0.00568,0.00568,0.271,0.501,0.23,1,0.293,0.297,0.293,0.293,0.367,0.367,0.46,0.46,0,1 +0.333,0.154,0.361,0.361,0,0.0366,0.88,0.88,0.88,0,0,0,0,0,0,0,0.0236,0.00568,0.0293,0.292,0.509,0.286,1,0.4,0.554,0.4,0.4,0.223,0.223,1,1,0,1 +0.667,0.286,0.491,0.491,0,0,0.96,0.96,0.96,0,0,0,0,0,0,0,0.0349,0.00852,0.0434,0.413,0.585,0.351,1,0.507,0.811,0.507,0.507,0.139,0.139,0.968,0.968,0,1 +1,0.501,0.584,0.584,0,0,1,1,1,0.0209,0.0478,0,0,0,0,0,0,0.00568,0.00568,0.584,0.658,0.473,1,0.587,0.58,0.587,0.587,0.0783,0.0783,0.54,0.54,0,1 +1,0.656,0.621,0.621,0,0,0.96,0.96,0.96,0.0186,0,0,0,0,0,0,0,0,0,0.621,0.621,0.662,1,0.676,0.353,0.676,0.676,0.0482,0.0482,0.484,0.484,0,1 +1,0.806,0.658,0.658,0,0,0.94,0.94,0.94,0.0246,0,0,0,0,0,0,0,0.00568,0.00568,0.658,0.583,0.817,1,0.72,0.222,0.72,0.72,0.0241,0.0241,0.405,0.405,0,1 +1,0.317,0.639,0.639,0,0,0.92,0.92,0.92,0.0245,0,0,0,0,0,0,0.0403,0.00568,0.046,0.385,0.496,0.774,1,0.765,0.0957,0.765,0.765,0.0181,0.0181,0.341,0.341,0.667,1 +1,0.22,0.547,0.547,0,0,0.88,0.88,0.88,0,0,0,0,0,0,0,0,0,0,0.354,0.476,0.468,1,0.667,0.0655,0.667,0.667,0.0181,0.0181,0.19,0.19,0.667,1 +1,0.0495,0.463,0.463,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.203,1,0.578,0.0353,0.578,0.578,0.0181,0.0181,0.19,0.19,1,1 +1,0.0495,0.371,0.371,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0833,1,0.391,0.0202,0.391,0.391,0.0181,0.0181,0.19,0.19,1,1 +1,0.0495,0.343,0.343,0,0,0.78,0.78,0.78,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0405,1,0.205,0.00504,0.205,0.205,0.0181,0.0181,0.23,0.23,1,1 +1,0.0495,0.343,0.343,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0203,1,0.169,0.00504,0.169,0.169,0.0181,0.0181,0.19,0.19,1,1 +1,0.0495,0.334,0.334,0,0,0.74,0.74,0.74,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0158,1,0.133,0.0101,0.133,0.133,0.0241,0.0241,0.23,0.23,1,1 +1,0.0495,0.306,0.306,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0248,1,0.142,0.0353,0.142,0.142,0.0482,0.0482,0.373,0.373,1,1 +1,0.0495,0.334,0.334,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0.0255,0,0.0255,0.258,0.465,0.0405,1,0.16,0.0605,0.16,0.16,0.0903,0.0903,0.532,0.532,1,1 +0.667,0.139,0.398,0.398,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0,0,0,0.305,0.463,0.0653,1,0.231,0.146,0.231,0.231,0.157,0.157,0.452,0.452,0.333,1 +0.667,0.167,0.436,0.436,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0.0154,0,0.0154,0.317,0.484,0.09,1,0.293,0.232,0.293,0.293,0.265,0.265,0.19,0.19,0.333,1 +0.333,0.0495,0.315,0.315,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0.016,0,0.016,0.258,0.465,0.11,1,0.293,0.222,0.293,0.293,0.506,0.506,0.19,0.19,0.333,1 +0.333,0.0495,0.213,0.213,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0.0108,0,0.0108,0.258,0.465,0.131,1,0.285,0.207,0.285,0.285,0.729,0.729,0.151,0.151,0.333,1 +0.333,0.16,0.222,0.222,0,0.0366,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0.0199,0.0199,0.246,0.488,0.146,1,0.293,0.222,0.293,0.293,0.765,0.765,0.119,0.119,0,1 +0,0.0495,0.232,0.232,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0.0114,0.0114,0.258,0.465,0.162,1,0.293,0.232,0.293,0.293,0.729,0.729,0.111,0.111,0,1 +0,0.0495,0.222,0.222,0,0.0122,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.171,1,0.285,0.212,0.285,0.285,0.723,0.723,0.111,0.111,0,1 +0.333,0.149,0.259,0.259,0,0.0975,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0,0,0.258,0.496,0.194,1,0.285,0.191,0.285,0.285,0.542,0.542,0.111,0.111,0,1 +0.333,0.149,0.287,0.287,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0,0,0.268,0.492,0.205,1,0.285,0.247,0.285,0.285,0.452,0.452,0.19,0.19,0,1 +0.333,0.15,0.297,0.297,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0,0,0.271,0.501,0.23,1,0.293,0.297,0.293,0.293,0.367,0.367,0.46,0.46,0,1 +0.667,0.259,0.361,0.361,0,0,0.88,0.88,0.88,0,0,0,0,0,0,0,0,0.00284,0.00284,0.327,0.552,0.286,1,0.4,0.554,0.4,0.4,0.223,0.223,1,1,0,1 +0.667,0.286,0.491,0.491,0,0,0.96,0.96,0.96,0,0,0.0078,0.000702,0,0,0,0,0.00284,0.00284,0.413,0.585,0.351,1,0.507,0.811,0.507,0.507,0.139,0.139,0.968,0.968,0,1 +1,0.501,0.584,0.584,0,0,1,1,1,0,0,0,0.00982,0.147,0.147,0,0,0.00284,0.00284,0.584,0.658,0.473,1,0.587,0.58,0.587,0.587,0.0783,0.0783,0.54,0.54,0,1 +1,0.656,0.621,0.621,0,0,0.96,0.96,0.96,0.00612,0.0175,0,0,0.22,0.22,0,0,0.017,0.017,0.621,0.621,0.662,1,0.676,0.353,0.676,0.676,0.0482,0.0482,0.484,0.484,0,1 +1,0.806,0.658,0.658,0,0,0.94,0.94,0.94,0.0224,0.0541,0,0,0,0,0,0,0.00568,0.00568,0.658,0.583,0.817,1,0.72,0.222,0.72,0.72,0.0241,0.0241,0.405,0.405,0,1 +1,0.584,0.639,0.639,0,0,0.92,0.92,0.92,0.0153,0,0,0,0,0,0,0,0,0,0.512,0.528,0.774,1,0.765,0.0957,0.765,0.765,0.0181,0.0181,0.341,0.341,0.333,1 +1,0.391,0.547,0.547,0,0,0.88,0.88,0.88,0,0,0,0,0,0,0,0,0.00568,0.00568,0.45,0.486,0.468,1,0.667,0.0655,0.667,0.667,0.0181,0.0181,0.19,0.19,0.333,1 +1,0.0495,0.463,0.463,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.203,1,0.578,0.0353,0.578,0.578,0.0181,0.0181,0.19,0.19,1,1 +1,0.0495,0.371,0.371,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0833,1,0.391,0.0202,0.391,0.391,0.0181,0.0181,0.19,0.19,1,1 +1,0.0495,0.343,0.343,0,0,0.78,0.78,0.78,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0405,1,0.205,0.00504,0.205,0.205,0.0181,0.0181,0.23,0.23,1,1 +1,0.0495,0.343,0.343,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0203,1,0.169,0.00504,0.169,0.169,0.0181,0.0181,0.19,0.19,1,1 +1,0.0495,0.334,0.334,0,0,0.74,0.74,0.74,0,0,0,0,0,0,0,0.00262,0,0.00262,0.258,0.465,0.0158,1,0.133,0.0101,0.133,0.133,0.0241,0.0241,0.23,0.23,1,1 +1,0.0503,0.306,0.306,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0.0599,0,0.0599,0.274,0.443,0.0248,1,0.142,0.0353,0.142,0.142,0.0482,0.0482,0.373,0.373,0.667,1 +0.667,0.0495,0.334,0.334,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0405,1,0.16,0.0605,0.16,0.16,0.0903,0.0903,0.532,0.532,0.667,1 +0.667,0.139,0.398,0.398,0,0.0366,0.76,0.76,0.76,0,0,0,0,0,0,0,0,0,0,0.305,0.463,0.0653,1,0.231,0.146,0.231,0.231,0.157,0.157,0.452,0.452,0.333,1 +0.333,0.167,0.436,0.436,0,0.0853,0.8,0.8,0.8,0.00528,0.0175,0,0,0,0,0,0,0,0,0.317,0.484,0.09,1,0.293,0.232,0.293,0.293,0.265,0.265,0.19,0.19,0,1 +0.333,0.168,0.315,0.315,0,0.134,0.82,0.82,0.82,0.0216,0.0302,0,0,0,0,0,0,0.00284,0.00284,0.277,0.488,0.11,1,0.293,0.222,0.293,0.293,0.506,0.506,0.19,0.19,0,1 +0.333,0.164,0.213,0.213,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0,0,0.243,0.488,0.131,1,0.285,0.207,0.285,0.285,0.729,0.729,0.151,0.151,0,1 +0.333,0.16,0.222,0.222,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0.00284,0.00284,0.246,0.488,0.146,1,0.293,0.222,0.293,0.293,0.765,0.765,0.119,0.119,0,1 +0.333,0.154,0.232,0.232,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0.017,0.017,0.249,0.492,0.162,1,0.293,0.232,0.293,0.293,0.729,0.729,0.111,0.111,0,1 +0.333,0.15,0.222,0.222,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0.00568,0.00568,0.246,0.496,0.171,1,0.285,0.212,0.285,0.285,0.723,0.723,0.111,0.111,0,1 +0.333,0.149,0.259,0.259,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0.00568,0.00568,0.258,0.496,0.194,1,0.285,0.191,0.285,0.285,0.542,0.542,0.111,0.111,0,1 +0.333,0.149,0.287,0.287,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0.00852,0.00852,0.268,0.492,0.205,1,0.285,0.247,0.285,0.285,0.452,0.452,0.19,0.19,0,1 +0.333,0.15,0.297,0.297,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0,0,0.271,0.501,0.23,1,0.293,0.297,0.293,0.293,0.367,0.367,0.46,0.46,0,1 +1,0.363,0.361,0.361,0,0.0366,0.88,0.88,0.88,0,0,0,0,0,0,0,0,0.00568,0.00568,0.361,0.596,0.286,1,0.4,0.554,0.4,0.4,0.223,0.223,1,1,0,1 +1,0.404,0.491,0.491,0,0,0.96,0.96,0.96,0,0,0.0118,0,0,0,0,0,0.00284,0.00284,0.491,0.646,0.351,1,0.507,0.811,0.507,0.507,0.139,0.139,0.968,0.968,0,1 +1,0.501,0.584,0.584,0,0,1,1,1,0,0,0.0421,0.0158,0,0,0,0,0.0114,0.0114,0.584,0.658,0.473,1,0.587,0.58,0.587,0.587,0.0783,0.0783,0.54,0.54,0,1 +1,0.656,0.621,0.621,0,0,0.96,0.96,0.96,0,0,0.000877,0,0.183,0.183,0,0,0.00568,0.00568,0.621,0.621,0.662,1,0.676,0.353,0.676,0.676,0.0482,0.0482,0.484,0.484,0,1 +1,0.806,0.658,0.658,0,0,0.94,0.94,0.94,0,0,0,0,0,0,0,0,0.0114,0.0114,0.658,0.583,0.817,1,0.72,0.222,0.72,0.72,0.0241,0.0241,0.405,0.405,0,1 +1,0.851,0.639,0.639,0,0,0.92,0.92,0.92,0,0,0,0,0,0,0,0,0,0,0.639,0.559,0.774,1,0.765,0.0957,0.765,0.765,0.0181,0.0181,0.341,0.341,0,1 +1,0.391,0.547,0.547,0,0,0.88,0.88,0.88,0,0,0,0,0,0,0,0,0,0,0.45,0.486,0.468,1,0.667,0.0655,0.667,0.667,0.0181,0.0181,0.19,0.19,0.333,1 +1,0.116,0.463,0.463,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0.00284,0.00284,0.326,0.459,0.203,1,0.578,0.0353,0.578,0.578,0.0181,0.0181,0.19,0.19,0.667,1 +1,0.0495,0.371,0.371,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.099,1,0.391,0.0202,0.391,0.391,0.0181,0.0181,0.19,0.19,1,1 +1,0.0495,0.343,0.343,0,0,0.78,0.78,0.78,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0495,1,0.205,0.00504,0.205,0.205,0.0181,0.0181,0.23,0.23,1,1 +1,0.0495,0.343,0.343,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.027,1,0.169,0.00504,0.169,0.169,0.0181,0.0181,0.19,0.19,1,1 +1,0.0495,0.334,0.334,0,0,0.74,0.74,0.74,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.018,1,0.133,0.0101,0.133,0.133,0.0241,0.0241,0.23,0.23,1,1 +1,0.0503,0.306,0.306,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0,0,0,0.274,0.443,0.0248,1,0.142,0.0353,0.142,0.142,0.0482,0.0482,0.373,0.373,0.667,1 +1,0.0781,0.334,0.334,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0,0,0,0.283,0.447,0.0315,1,0.16,0.0605,0.16,0.16,0.0903,0.0903,0.532,0.532,0.667,1 +1,0.139,0.398,0.398,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0.0136,0,0.0136,0.305,0.463,0.054,1,0.231,0.146,0.231,0.231,0.157,0.157,0.452,0.452,0.667,1 +1,0.167,0.436,0.436,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0.0217,0,0.0217,0.317,0.484,0.0968,1,0.293,0.232,0.293,0.293,0.265,0.265,0.19,0.19,0.667,1 +1,0.286,0.315,0.315,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0.0432,0.0142,0.0574,0.296,0.511,0.16,1,0.293,0.222,0.293,0.293,0.506,0.506,0.19,0.19,0.333,1 +1,0.392,0.213,0.213,0,0.0366,0.82,0.82,0.82,0,0,0,0,0,0,0,0.0179,0.00568,0.0236,0.213,0.534,0.212,1,0.285,0.207,0.285,0.285,0.729,0.729,0.151,0.151,0,1 +0.667,0.27,0.222,0.222,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0.024,0.00568,0.0297,0.234,0.511,0.252,1,0.293,0.222,0.293,0.293,0.765,0.765,0.119,0.119,0,1 +0.667,0.259,0.232,0.232,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0.00852,0.00852,0.24,0.519,0.277,1,0.293,0.232,0.293,0.293,0.729,0.729,0.111,0.111,0,1 +0.333,0.15,0.222,0.222,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0.0142,0.0142,0.246,0.496,0.297,1,0.285,0.212,0.285,0.285,0.723,0.723,0.111,0.111,0,1 +0.333,0.149,0.259,0.259,0,0.0122,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0,0,0.258,0.496,0.351,1,0.285,0.191,0.285,0.285,0.542,0.542,0.111,0.111,0,1 +0.333,0.149,0.287,0.287,0,0.0244,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0.017,0.017,0.268,0.492,0.401,1,0.285,0.247,0.285,0.285,0.452,0.452,0.19,0.19,0,1 +1,0.351,0.297,0.297,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0.00263,0,0.00263,0.297,0.571,0.441,1,0.293,0.297,0.293,0.293,0.367,0.367,0.46,0.46,0,1 +0.667,0.259,0.361,0.361,0,0,0.88,0.88,0.88,0,0,0,0,0,0,0,0.0263,0.00852,0.0349,0.327,0.552,0.464,1,0.4,0.554,0.4,0.4,0.223,0.223,1,1,0,1 +0.333,0.168,0.491,0.491,0,0,0.96,0.96,0.96,0,0,0,0,0,0,0,0,0,0,0.336,0.525,0.479,1,0.507,0.811,0.507,0.507,0.139,0.139,0.968,0.968,0,1 +0.667,0.351,0.584,0.584,0,0.0366,1,1,1,0,0,0,0,0,0,0,0,0.00284,0.00284,0.475,0.594,0.565,1,0.587,0.58,0.587,0.587,0.0783,0.0783,0.54,0.54,0,1 +1,0.656,0.621,0.621,0,0.0122,0.96,0.96,0.96,0,0,0,0,0,0,0,0,0.00852,0.00852,0.621,0.621,0.743,1,0.676,0.353,0.676,0.676,0.0482,0.0482,0.484,0.484,0,1 +1,0.806,0.658,0.658,0,0.146,0.94,0.94,0.94,0.01,0.0414,0,0,0,0,0,0.0129,0.00852,0.0214,0.658,0.583,0.873,1,0.72,0.222,0.72,0.72,0.0241,0.0241,0.405,0.405,0,1 +1,0.851,0.639,0.639,0,0.0244,0.92,0.92,0.92,0.0175,0.00637,0.0101,0,0,0,0,0.0236,0.00284,0.0264,0.639,0.559,0.806,1,0.765,0.0957,0.765,0.765,0.0181,0.0181,0.341,0.341,0,1 +1,0.391,0.547,0.547,0,0,0.88,0.88,0.88,0,0,0.0448,0.0158,0,0,0,0,0,0,0.45,0.486,0.509,1,0.667,0.0655,0.667,0.667,0.0181,0.0181,0.19,0.19,0.333,1 +1,0.116,0.463,0.463,0,0,0.82,0.82,0.82,0,0,0.0127,0,0.33,0.33,0,0,0.00284,0.00284,0.326,0.459,0.232,1,0.578,0.0353,0.578,0.578,0.0181,0.0181,0.19,0.19,0.667,1 +1,0.0743,0.371,0.371,0,0,0.8,0.8,0.8,0,0,0,0,0.0367,0.0367,0,0,0,0,0.295,0.455,0.099,1,0.391,0.0202,0.391,0.391,0.0181,0.0181,0.19,0.19,0.667,1 +1,0.0578,0.343,0.343,0,0,0.78,0.78,0.78,0,0,0,0,0,0,0,0,0,0,0.286,0.447,0.0495,1,0.205,0.00504,0.205,0.205,0.0181,0.0181,0.23,0.23,0.667,1 +1,0.0495,0.343,0.343,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0,0,0,0.286,0.443,0.027,1,0.169,0.00504,0.169,0.169,0.0181,0.0181,0.19,0.19,0.667,1 +1,0.0495,0.334,0.334,0,0,0.74,0.74,0.74,0,0,0,0,0,0,0,0,0,0,0.283,0.438,0.018,1,0.133,0.0101,0.133,0.133,0.0241,0.0241,0.23,0.23,0.667,1 +1,0.0495,0.306,0.306,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0248,1,0.142,0.0353,0.142,0.142,0.0482,0.0482,0.373,0.373,1,1 +1,0.0495,0.334,0.334,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0315,1,0.16,0.0605,0.16,0.16,0.0903,0.0903,0.532,0.532,1,1 +1,0.0495,0.398,0.398,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0.00266,0.0114,0.014,0.258,0.465,0.054,1,0.231,0.146,0.231,0.231,0.157,0.157,0.452,0.452,1,1 +1,0.284,0.436,0.436,0,0.0366,0.8,0.8,0.8,0,0,0,0,0,0,0,0.0419,0,0.0419,0.376,0.503,0.0968,1,0.293,0.232,0.293,0.293,0.265,0.265,0.19,0.19,0.333,1 +1,0.286,0.315,0.315,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0,0,0.296,0.511,0.16,1,0.293,0.222,0.293,0.293,0.506,0.506,0.19,0.19,0.333,1 +1,0.278,0.213,0.213,0,0,0.82,0.82,0.82,0.0237,0.0478,0,0,0,0,0,0,0,0,0.228,0.511,0.212,1,0.285,0.207,0.285,0.285,0.729,0.729,0.151,0.151,0.333,1 +0.667,0.16,0.222,0.222,0,0,0.8,0.8,0.8,0.00295,0,0,0,0,0,0,0,0,0,0.246,0.488,0.252,1,0.293,0.222,0.293,0.293,0.765,0.765,0.119,0.119,0.333,1 +0.667,0.154,0.232,0.232,0,0.0122,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0.00852,0.00852,0.249,0.492,0.277,1,0.293,0.232,0.293,0.293,0.729,0.729,0.111,0.111,0.333,1 +0.333,0.0495,0.222,0.222,0,0.0244,0.84,0.84,0.84,0,0,0,0,0,0,0,0.00256,0.00852,0.0111,0.258,0.465,0.297,1,0.285,0.212,0.285,0.285,0.723,0.723,0.111,0.111,0.333,1 +0.667,0.249,0.259,0.259,0,0.0366,0.84,0.84,0.84,0,0,0.0311,0.000702,0,0,0,0.0231,0.00568,0.0287,0.259,0.528,0.351,1,0.285,0.191,0.285,0.285,0.542,0.542,0.111,0.111,0,1 +1,0.349,0.287,0.287,0,0,0.84,0.84,0.84,0,0,0.0346,0.0203,0,0,0,0,0.00284,0.00284,0.287,0.546,0.401,1,0.285,0.247,0.285,0.285,0.452,0.452,0.19,0.19,0,1 +1,0.351,0.297,0.297,0,0,0.82,0.82,0.82,0,0,0.0203,0,0.275,0.275,0,0,0.00284,0.00284,0.297,0.571,0.441,1,0.293,0.297,0.293,0.293,0.367,0.367,0.46,0.46,0,1 +1,0.363,0.361,0.361,0,0,0.88,0.88,0.88,0,0,0,0,0,0,0,0,0,0,0.361,0.596,0.464,1,0.4,0.554,0.4,0.4,0.223,0.223,1,1,0,1 +1,0.404,0.491,0.491,0,0.0122,0.96,0.96,0.96,0,0,0,0,0,0,0,0,0,0,0.491,0.646,0.479,1,0.507,0.811,0.507,0.507,0.139,0.139,0.968,0.968,0,1 +1,0.501,0.584,0.584,0,0.146,1,1,1,0,0,0,0,0,0,0,0,0.00568,0.00568,0.584,0.658,0.565,1,0.587,0.58,0.587,0.587,0.0783,0.0783,0.54,0.54,0,1 +0.667,0.454,0.621,0.621,0,0.146,0.96,0.96,0.96,0.0122,0.0478,0,0,0,0,0,0,0.00568,0.00568,0.5,0.569,0.743,1,0.676,0.353,0.676,0.676,0.0482,0.0482,0.484,0.484,0,1 +0.667,0.554,0.658,0.658,0,0.146,0.94,0.94,0.94,0.0122,0,0,0,0,0,0,0,0.00852,0.00852,0.525,0.544,0.873,1,0.72,0.222,0.72,0.72,0.0241,0.0241,0.405,0.405,0,1 +0.667,0.317,0.639,0.639,0,0.146,0.92,0.92,0.92,0,0,0,0,0,0,0,0,0.00568,0.00568,0.385,0.496,0.806,1,0.765,0.0957,0.765,0.765,0.0181,0.0181,0.341,0.341,0.333,1 +0.667,0.22,0.547,0.547,0,0.146,0.88,0.88,0.88,0,0,0,0,0,0,0,0,0.00284,0.00284,0.354,0.476,0.509,1,0.667,0.0655,0.667,0.667,0.0181,0.0181,0.19,0.19,0.333,1 +0.667,0.116,0.463,0.463,0,0.0609,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0.00568,0.00568,0.326,0.459,0.232,1,0.578,0.0353,0.578,0.578,0.0181,0.0181,0.19,0.19,0.333,1 +0.667,0.0495,0.371,0.371,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0833,1,0.391,0.0202,0.391,0.391,0.0181,0.0181,0.19,0.19,0.667,1 +0.667,0.0495,0.343,0.343,0,0,0.78,0.78,0.78,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0405,1,0.205,0.00504,0.205,0.205,0.0181,0.0181,0.23,0.23,0.667,1 +0.667,0.0495,0.343,0.343,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0203,1,0.169,0.00504,0.169,0.169,0.0181,0.0181,0.19,0.19,0.667,1 +0.667,0.0495,0.334,0.334,0,0,0.74,0.74,0.74,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0158,1,0.133,0.0101,0.133,0.133,0.0241,0.0241,0.23,0.23,0.667,1 +1,0.0503,0.306,0.306,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0.0117,0.0157,0,0.0274,0.274,0.443,0.0248,1,0.142,0.0353,0.142,0.142,0.0482,0.0482,0.373,0.373,0.667,1 +1,0.107,0.334,0.334,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0.0546,0,0.0546,0.308,0.428,0.0405,1,0.16,0.0605,0.16,0.16,0.0903,0.0903,0.532,0.532,0.333,1 +0.667,0.139,0.398,0.398,0,0,0.76,0.76,0.76,0,0,0.0132,0,0,0,0,0,0,0,0.305,0.463,0.0653,1,0.231,0.146,0.231,0.231,0.157,0.157,0.452,0.452,0.333,1 +0.333,0.167,0.436,0.436,0,0.0366,0.8,0.8,0.8,0,0,0.0242,0.0112,0,0,0,0,0,0,0.317,0.484,0.09,1,0.293,0.232,0.293,0.293,0.265,0.265,0.19,0.19,0,1 +0.333,0.168,0.315,0.315,0,0,0.82,0.82,0.82,0,0,0.0368,0.00456,0.238,0.238,0,0,0.00568,0.00568,0.277,0.488,0.11,1,0.293,0.222,0.293,0.293,0.506,0.506,0.19,0.19,0,1 +0.333,0.164,0.213,0.213,0,0,0.82,0.82,0.82,0,0,0.0286,0,0.128,0.128,0,0,0.00852,0.00852,0.243,0.488,0.131,1,0.285,0.207,0.285,0.285,0.729,0.729,0.151,0.151,0,1 +0.333,0.16,0.222,0.222,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0.00284,0.00284,0.246,0.488,0.146,1,0.293,0.222,0.293,0.293,0.765,0.765,0.119,0.119,0,1 +0.333,0.154,0.232,0.232,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0,0,0.249,0.492,0.162,1,0.293,0.232,0.293,0.293,0.729,0.729,0.111,0.111,0,1 +0.333,0.15,0.222,0.222,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0,0,0.246,0.496,0.171,1,0.285,0.212,0.285,0.285,0.723,0.723,0.111,0.111,0,1 +0.333,0.149,0.259,0.259,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0,0,0.258,0.496,0.194,1,0.285,0.191,0.285,0.285,0.542,0.542,0.111,0.111,0,1 +0.333,0.149,0.287,0.287,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0.00284,0.00284,0.268,0.492,0.205,1,0.285,0.247,0.285,0.285,0.452,0.452,0.19,0.19,0,1 +0.333,0.15,0.297,0.297,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0.00568,0.00568,0.271,0.501,0.23,1,0.293,0.297,0.293,0.293,0.367,0.367,0.46,0.46,0,1 +0.333,0.154,0.361,0.361,0,0,0.88,0.88,0.88,0,0,0,0,0,0,0,0.0103,0,0.0103,0.292,0.509,0.286,1,0.4,0.554,0.4,0.4,0.223,0.223,1,1,0,1 +0.667,0.286,0.491,0.491,0,0,0.96,0.96,0.96,0,0,0,0,0,0,0,0.0294,0,0.0294,0.413,0.585,0.351,1,0.507,0.811,0.507,0.507,0.139,0.139,0.968,0.968,0,1 +1,0.501,0.584,0.584,0,0.0122,1,1,1,0,0,0,0,0,0,0,0,0.00852,0.00852,0.584,0.658,0.473,1,0.587,0.58,0.587,0.587,0.0783,0.0783,0.54,0.54,0,1 +1,0.656,0.621,0.621,0,0.11,0.96,0.96,0.96,0,0,0,0,0,0,0,0,0.00568,0.00568,0.621,0.621,0.662,1,0.676,0.353,0.676,0.676,0.0482,0.0482,0.484,0.484,0,1 +1,0.806,0.658,0.658,0,0.146,0.94,0.94,0.94,0,0,0,0,0,0,0,0,0.00568,0.00568,0.658,0.583,0.817,1,0.72,0.222,0.72,0.72,0.0241,0.0241,0.405,0.405,0,1 +1,0.584,0.639,0.639,0,0.146,0.92,0.92,0.92,0,0,0,0,0,0,0,0,0.00568,0.00568,0.512,0.528,0.774,1,0.765,0.0957,0.765,0.765,0.0181,0.0181,0.341,0.341,0.333,1 +0.667,0.22,0.547,0.547,0,0.146,0.88,0.88,0.88,0,0,0,0,0,0,0,0,0.00568,0.00568,0.354,0.476,0.468,1,0.667,0.0655,0.667,0.667,0.0181,0.0181,0.19,0.19,0.333,1 +1,0.116,0.463,0.463,0,0.146,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0,0,0.326,0.459,0.203,1,0.578,0.0353,0.578,0.578,0.0181,0.0181,0.19,0.19,0.667,1 +1,0.0495,0.371,0.371,0,0.146,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0833,1,0.391,0.0202,0.391,0.391,0.0181,0.0181,0.19,0.19,1,1 +1,0.0495,0.343,0.343,0,0.146,0.78,0.78,0.78,0,0,0,0,0,0,0,0,0.00568,0.00568,0.258,0.465,0.0405,1,0.205,0.00504,0.205,0.205,0.0181,0.0181,0.23,0.23,1,1 +1,0.0495,0.343,0.343,0,0.146,0.76,0.76,0.76,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0203,1,0.169,0.00504,0.169,0.169,0.0181,0.0181,0.19,0.19,1,1 +1,0.0495,0.334,0.334,0,0.0244,0.74,0.74,0.74,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0158,1,0.133,0.0101,0.133,0.133,0.0241,0.0241,0.23,0.23,1,1 +1,0.0495,0.306,0.306,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0248,1,0.142,0.0353,0.142,0.142,0.0482,0.0482,0.373,0.373,1,1 +1,0.0495,0.334,0.334,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0405,1,0.16,0.0605,0.16,0.16,0.0903,0.0903,0.532,0.532,1,1 +0.667,0.228,0.398,0.398,0,0.0366,0.76,0.76,0.76,0,0,0,0,0,0,0,0,0,0,0.352,0.461,0.0653,1,0.231,0.146,0.231,0.231,0.157,0.157,0.452,0.452,0,1 +0.667,0.284,0.436,0.436,0,0,0.8,0.8,0.8,0,0,0.0203,0,0,0,0,0,0,0,0.376,0.503,0.09,1,0.293,0.232,0.293,0.293,0.265,0.265,0.19,0.19,0,1 +0.667,0.286,0.315,0.315,0,0,0.82,0.82,0.82,0,0,0.029,0.0158,0,0,0,0,0,0,0.296,0.511,0.11,1,0.293,0.222,0.293,0.293,0.506,0.506,0.19,0.19,0,1 +0.667,0.278,0.213,0.213,0,0,0.82,0.82,0.82,0,0,0.0206,0,0.33,0.33,0,0,0.00568,0.00568,0.228,0.511,0.131,1,0.285,0.207,0.285,0.285,0.729,0.729,0.151,0.151,0,1 +0.667,0.27,0.222,0.222,0,0,0.8,0.8,0.8,0,0,0.0409,0,0.0367,0.0367,0,0,0.00284,0.00284,0.234,0.511,0.146,1,0.293,0.222,0.293,0.293,0.765,0.765,0.119,0.119,0,1 +0.333,0.154,0.232,0.232,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0,0,0.249,0.492,0.162,1,0.293,0.232,0.293,0.293,0.729,0.729,0.111,0.111,0,1 +0.333,0.15,0.222,0.222,0,0,0.84,0.84,0.84,0.00668,0.0175,0,0,0,0,0,0,0,0,0.246,0.496,0.171,1,0.285,0.212,0.285,0.285,0.723,0.723,0.111,0.111,0,1 +0.333,0.149,0.259,0.259,0,0,0.84,0.84,0.84,0.0217,0.00637,0,0,0,0,0,0,0,0,0.258,0.496,0.194,1,0.285,0.191,0.285,0.285,0.542,0.542,0.111,0.111,0,1 +0.333,0.149,0.287,0.287,0,0,0.84,0.84,0.84,0.0165,0,0,0,0,0,0,0,0.00284,0.00284,0.268,0.492,0.205,1,0.285,0.247,0.285,0.285,0.452,0.452,0.19,0.19,0,1 +0.667,0.251,0.297,0.297,0,0.0366,0.82,0.82,0.82,0.0225,0,0,0,0,0,0,0,0,0,0.284,0.536,0.23,1,0.293,0.297,0.293,0.293,0.367,0.367,0.46,0.46,0,1 +0.667,0.259,0.361,0.361,0,0,0.88,0.88,0.88,0.00612,0,0,0,0,0,0,0,0.00284,0.00284,0.327,0.552,0.286,1,0.4,0.554,0.4,0.4,0.223,0.223,1,1,0,1 +0.667,0.286,0.491,0.491,0,0,0.96,0.96,0.96,0,0,0.0163,0,0,0,0,0,0,0,0.413,0.585,0.351,1,0.507,0.811,0.507,0.507,0.139,0.139,0.968,0.968,0,1 +1,0.501,0.584,0.584,0,0,1,1,1,0,0,0.0564,0.0165,0,0,0,0,0.00284,0.00284,0.584,0.658,0.473,1,0.587,0.58,0.587,0.587,0.0783,0.0783,0.54,0.54,0,1 +1,0.656,0.621,0.621,0,0,0.96,0.96,0.96,0,0,0.00614,0.00456,0.238,0.238,0,0,0.017,0.017,0.621,0.621,0.662,1,0.676,0.353,0.676,0.676,0.0482,0.0482,0.484,0.484,0,1 +0.667,0.554,0.658,0.658,0,0,0.94,0.94,0.94,0,0,0,0,0.128,0.128,0,0,0.0114,0.0114,0.525,0.544,0.817,1,0.72,0.222,0.72,0.72,0.0241,0.0241,0.405,0.405,0,1 +1,0.851,0.639,0.639,0,0,0.92,0.92,0.92,0,0,0,0,0,0,0.0399,0.0337,0,0.0737,0.639,0.559,0.774,1,0.765,0.0957,0.765,0.765,0.0181,0.0181,0.341,0.341,0,1 +1,0.391,0.547,0.547,0,0,0.88,0.88,0.88,0,0,0,0,0,0,0,0,0.00568,0.00568,0.45,0.486,0.468,1,0.667,0.0655,0.667,0.667,0.0181,0.0181,0.19,0.19,0.333,1 +1,0.0495,0.463,0.463,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.465,0.203,1,0.578,0.0353,0.578,0.578,0.0181,0.0181,0.19,0.19,1,1 +1,0.0495,0.371,0.371,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.465,0.0833,1,0.391,0.0202,0.391,0.391,0.0181,0.0181,0.19,0.19,1,1 +1,0.0495,0.343,0.343,0,0,0.78,0.78,0.78,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.465,0.0405,1,0.205,0.00504,0.205,0.205,0.0181,0.0181,0.23,0.23,1,1 +1,0.0495,0.343,0.343,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0203,1,0.169,0.00504,0.169,0.169,0.0181,0.0181,0.19,0.19,1,1 +1,0.0495,0.334,0.334,0,0,0.74,0.74,0.74,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0158,1,0.133,0.0101,0.133,0.133,0.0241,0.0241,0.23,0.23,1,1 +1,0.0495,0.306,0.306,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0248,1,0.142,0.0353,0.142,0.142,0.0482,0.0482,0.373,0.373,1,1 +1,0.0495,0.334,0.334,0,0.0122,0.72,0.72,0.72,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0405,1,0.16,0.0605,0.16,0.16,0.0903,0.0903,0.532,0.532,1,1 +1,0.139,0.398,0.398,0,0.0975,0.76,0.76,0.76,0,0,0,0,0,0,0,0.0184,0,0.0184,0.305,0.463,0.0653,1,0.231,0.146,0.231,0.231,0.157,0.157,0.452,0.452,0.667,1 +1,0.402,0.436,0.436,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0.0448,0,0.0448,0.436,0.521,0.09,1,0.293,0.232,0.293,0.293,0.265,0.265,0.19,0.19,0,1 +0.667,0.286,0.315,0.315,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0.0403,0,0.0403,0.296,0.511,0.11,1,0.293,0.222,0.293,0.293,0.506,0.506,0.19,0.19,0,1 +0.667,0.278,0.213,0.213,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0.0387,0.00852,0.0472,0.228,0.511,0.131,1,0.285,0.207,0.285,0.285,0.729,0.729,0.151,0.151,0,1 +0.667,0.27,0.222,0.222,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0.0298,0.00852,0.0383,0.234,0.511,0.146,1,0.293,0.222,0.293,0.293,0.765,0.765,0.119,0.119,0,1 +0.333,0.154,0.232,0.232,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0,0,0.249,0.492,0.162,1,0.293,0.232,0.293,0.293,0.729,0.729,0.111,0.111,0,1 +0.333,0.15,0.222,0.222,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0,0,0.246,0.496,0.171,1,0.285,0.212,0.285,0.285,0.723,0.723,0.111,0.111,0,1 +0.333,0.149,0.259,0.259,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.496,0.194,1,0.285,0.191,0.285,0.285,0.542,0.542,0.111,0.111,0,1 +0.333,0.149,0.287,0.287,0,0.0366,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0,0,0.268,0.492,0.205,1,0.285,0.247,0.285,0.285,0.452,0.452,0.19,0.19,0,1 +0.333,0.15,0.297,0.297,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0.00568,0.00568,0.271,0.501,0.23,1,0.293,0.297,0.293,0.293,0.367,0.367,0.46,0.46,0,1 +0.333,0.154,0.361,0.361,0,0,0.88,0.88,0.88,0,0,0,0,0,0,0,0,0.00568,0.00568,0.292,0.509,0.286,1,0.4,0.554,0.4,0.4,0.223,0.223,1,1,0,1 +0.667,0.286,0.491,0.491,0,0,0.96,0.96,0.96,0.00449,0.0175,0,0,0,0,0,0.0219,0.00284,0.0247,0.413,0.585,0.351,1,0.507,0.811,0.507,0.507,0.139,0.139,0.968,0.968,0,1 +1,0.501,0.584,0.584,0,0,1,1,1,0.0166,0.078,0,0,0,0,0,0.0419,0.00568,0.0476,0.584,0.658,0.473,1,0.587,0.58,0.587,0.587,0.0783,0.0783,0.54,0.54,0,1 +1,0.656,0.621,0.621,0,0,0.96,0.96,0.96,0,0,0,0,0,0,0,0.024,0.00284,0.0269,0.621,0.621,0.662,1,0.676,0.353,0.676,0.676,0.0482,0.0482,0.484,0.484,0,1 +1,0.806,0.658,0.658,0,0.0366,0.94,0.94,0.94,0,0,0,0,0,0,0,0,0.00284,0.00284,0.658,0.583,0.817,1,0.72,0.222,0.72,0.72,0.0241,0.0241,0.405,0.405,0,1 +1,0.584,0.639,0.639,0,0,0.92,0.92,0.92,0,0,0,0,0,0,0,0,0.00284,0.00284,0.512,0.528,0.774,1,0.765,0.0957,0.765,0.765,0.0181,0.0181,0.341,0.341,0.333,1 +1,0.0495,0.547,0.547,0,0,0.88,0.88,0.88,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.468,1,0.667,0.0655,0.667,0.667,0.0181,0.0181,0.19,0.19,1,1 +1,0.0495,0.463,0.463,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.203,1,0.578,0.0353,0.578,0.578,0.0181,0.0181,0.19,0.19,1,1 +1,0.0495,0.371,0.371,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0833,1,0.391,0.0202,0.391,0.391,0.0181,0.0181,0.19,0.19,1,1 +1,0.0495,0.343,0.343,0,0,0.78,0.78,0.78,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0405,1,0.205,0.00504,0.205,0.205,0.0181,0.0181,0.23,0.23,1,1 +1,0.0495,0.343,0.343,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0203,1,0.169,0.00504,0.169,0.169,0.0181,0.0181,0.19,0.19,1,1 +1,0.0495,0.334,0.334,0,0,0.74,0.74,0.74,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0158,1,0.133,0.0101,0.133,0.133,0.0241,0.0241,0.23,0.23,1,1 +1,0.0495,0.306,0.306,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0248,1,0.142,0.0353,0.142,0.142,0.0482,0.0482,0.373,0.373,1,1 +1,0.107,0.334,0.334,0,0.0366,0.72,0.72,0.72,0,0,0,0,0,0,0.00452,0.0348,0,0.0393,0.308,0.428,0.0405,1,0.16,0.0605,0.16,0.16,0.0903,0.0903,0.532,0.532,0.333,1 +0.667,0.139,0.398,0.398,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0.033,0,0.033,0.305,0.463,0.0653,1,0.231,0.146,0.231,0.231,0.157,0.157,0.452,0.452,0.333,1 +0.667,0.167,0.436,0.436,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0.0189,0,0.0189,0.317,0.484,0.09,1,0.293,0.232,0.293,0.293,0.265,0.265,0.19,0.19,0.333,1 +0.333,0.168,0.315,0.315,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0.0295,0,0.0295,0.277,0.488,0.11,1,0.293,0.222,0.293,0.293,0.506,0.506,0.19,0.19,0,1 +0.333,0.164,0.213,0.213,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0.0168,0.00284,0.0197,0.243,0.488,0.131,1,0.285,0.207,0.285,0.285,0.729,0.729,0.151,0.151,0,1 +0.333,0.16,0.222,0.222,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0.0175,0.00852,0.026,0.246,0.488,0.146,1,0.293,0.222,0.293,0.293,0.765,0.765,0.119,0.119,0,1 +0.333,0.154,0.232,0.232,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0.0189,0.00284,0.0217,0.249,0.492,0.162,1,0.293,0.232,0.293,0.293,0.729,0.729,0.111,0.111,0,1 +0,0.0495,0.222,0.222,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.171,1,0.285,0.212,0.285,0.285,0.723,0.723,0.111,0.111,0,1 +0.333,0.149,0.259,0.259,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0.00852,0.00852,0.258,0.496,0.194,1,0.285,0.191,0.285,0.285,0.542,0.542,0.111,0.111,0,1 +0.333,0.149,0.287,0.287,0,0,0.84,0.84,0.84,0,0,0.0188,0,0,0,0,0,0.00852,0.00852,0.268,0.492,0.205,1,0.285,0.247,0.285,0.285,0.452,0.452,0.19,0.19,0,1 +0.333,0.15,0.297,0.297,0,0,0.82,0.82,0.82,0,0,0.0429,0.0158,0,0,0,0,0.00284,0.00284,0.271,0.501,0.23,1,0.293,0.297,0.293,0.293,0.367,0.367,0.46,0.46,0,1 +0.333,0.154,0.361,0.361,0,0,0.88,0.88,0.88,0,0,0.0538,0,0.275,0.275,0,0.00271,0,0.00271,0.292,0.509,0.286,1,0.4,0.554,0.4,0.4,0.223,0.223,1,1,0,1 +0.667,0.286,0.491,0.491,0,0,0.96,0.96,0.96,0,0,0.0333,0,0,0,0,0.0336,0.00568,0.0392,0.413,0.585,0.351,1,0.507,0.811,0.507,0.507,0.139,0.139,0.968,0.968,0,1 +0.667,0.351,0.584,0.584,0,0,1,1,1,0,0,0.0296,0,0,0,0,0.0172,0.00568,0.0228,0.475,0.594,0.473,1,0.587,0.58,0.587,0.587,0.0783,0.0783,0.54,0.54,0,1 +1,0.656,0.621,0.621,0,0,0.96,0.96,0.96,0,0,0.00283,0,0,0,0,0.0323,0.017,0.0494,0.621,0.621,0.662,1,0.676,0.353,0.676,0.676,0.0482,0.0482,0.484,0.484,0,1 +1,0.806,0.658,0.658,0,0,0.94,0.94,0.94,0,0,0,0,0,0,0,0.0177,0.00284,0.0205,0.658,0.583,0.817,1,0.72,0.222,0.72,0.72,0.0241,0.0241,0.405,0.405,0,1 +1,0.584,0.639,0.639,0,0,0.92,0.92,0.92,0,0,0,0,0,0,0,0,0,0,0.512,0.528,0.774,1,0.765,0.0957,0.765,0.765,0.0181,0.0181,0.341,0.341,0.333,1 +1,0.391,0.547,0.547,0,0,0.88,0.88,0.88,0,0,0,0,0,0,0,0,0,0,0.45,0.486,0.468,1,0.667,0.0655,0.667,0.667,0.0181,0.0181,0.19,0.19,0.333,1 +1,0.0495,0.463,0.463,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.203,1,0.578,0.0353,0.578,0.578,0.0181,0.0181,0.19,0.19,1,1 +1,0.0495,0.371,0.371,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0.00568,0.00568,0.258,0.465,0.0833,1,0.391,0.0202,0.391,0.391,0.0181,0.0181,0.19,0.19,1,1 +1,0.0495,0.343,0.343,0,0,0.78,0.78,0.78,0,0,0,0,0,0,0,0,0.00568,0.00568,0.258,0.465,0.0405,1,0.205,0.00504,0.205,0.205,0.0181,0.0181,0.23,0.23,1,1 +1,0.0495,0.343,0.343,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.465,0.0203,1,0.169,0.00504,0.169,0.169,0.0181,0.0181,0.19,0.19,1,1 +1,0.0495,0.334,0.334,0,0,0.74,0.74,0.74,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0158,1,0.133,0.0101,0.133,0.133,0.0241,0.0241,0.23,0.23,1,1 +1,0.0495,0.306,0.306,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0.0156,0,0.0156,0.258,0.465,0.0248,1,0.142,0.0353,0.142,0.142,0.0482,0.0482,0.373,0.373,1,1 +1,0.0781,0.334,0.334,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0.0246,0,0.0246,0.283,0.447,0.0405,1,0.16,0.0605,0.16,0.16,0.0903,0.0903,0.532,0.532,0.667,1 +0.667,0.139,0.398,0.398,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0,0,0,0.305,0.463,0.0653,1,0.231,0.146,0.231,0.231,0.157,0.157,0.452,0.452,0.333,1 +0.667,0.167,0.436,0.436,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0,0,0.317,0.484,0.09,1,0.293,0.232,0.293,0.293,0.265,0.265,0.19,0.19,0.333,1 +0.333,0.0495,0.315,0.315,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0.00852,0.00852,0.258,0.465,0.11,1,0.293,0.222,0.293,0.293,0.506,0.506,0.19,0.19,0.333,1 +0.333,0.164,0.213,0.213,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0,0,0.243,0.488,0.131,1,0.285,0.207,0.285,0.285,0.729,0.729,0.151,0.151,0,1 +0.333,0.16,0.222,0.222,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0,0,0.246,0.488,0.146,1,0.293,0.222,0.293,0.293,0.765,0.765,0.119,0.119,0,1 +0.333,0.154,0.232,0.232,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0,0,0.249,0.492,0.162,1,0.293,0.232,0.293,0.293,0.729,0.729,0.111,0.111,0,1 +0.333,0.15,0.222,0.222,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0,0,0.246,0.496,0.171,1,0.285,0.212,0.285,0.285,0.723,0.723,0.111,0.111,0,1 +0.667,0.249,0.259,0.259,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0.00568,0.00568,0.259,0.528,0.194,1,0.285,0.191,0.285,0.285,0.542,0.542,0.111,0.111,0,1 +0.667,0.249,0.287,0.287,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0,0.0227,0.0227,0.277,0.519,0.205,1,0.285,0.247,0.285,0.285,0.452,0.452,0.19,0.19,0,1 +0.667,0.251,0.297,0.297,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0.0199,0.0199,0.284,0.536,0.23,1,0.293,0.297,0.293,0.293,0.367,0.367,0.46,0.46,0,1 +0.667,0.259,0.361,0.361,0,0.0122,0.88,0.88,0.88,0,0,0,0,0,0,0,0,0.00568,0.00568,0.327,0.552,0.286,1,0.4,0.554,0.4,0.4,0.223,0.223,1,1,0,1 +1,0.404,0.491,0.491,0,0.0244,0.96,0.96,0.96,0,0,0,0,0,0,0,0,0.00852,0.00852,0.491,0.646,0.351,1,0.507,0.811,0.507,0.507,0.139,0.139,0.968,0.968,0,1 +1,0.501,0.584,0.584,0,0,1,1,1,0,0,0,0,0,0,0,0,0.00568,0.00568,0.584,0.658,0.473,1,0.587,0.58,0.587,0.587,0.0783,0.0783,0.54,0.54,0,1 +1,0.656,0.621,0.621,0,0,0.96,0.96,0.96,0,0,0.0176,0,0,0,0,0,0.00852,0.00852,0.621,0.621,0.662,1,0.676,0.353,0.676,0.676,0.0482,0.0482,0.484,0.484,0,1 +1,0.806,0.658,0.658,0,0,0.94,0.94,0.94,0,0,0.0421,0.0158,0,0,0,0,0.00284,0.00284,0.658,0.583,0.817,1,0.72,0.222,0.72,0.72,0.0241,0.0241,0.405,0.405,0,1 +1,0.851,0.639,0.639,0,0,0.92,0.92,0.92,0.0103,0.0653,0.0455,0,0.33,0.33,0,0,0,0,0.639,0.559,0.774,1,0.765,0.0957,0.765,0.765,0.0181,0.0181,0.341,0.341,0,1 +1,0.391,0.547,0.547,0,0,0.88,0.88,0.88,0.0102,0.0302,0.0281,0,0.0367,0.0367,0,0,0.00568,0.00568,0.45,0.486,0.468,1,0.667,0.0655,0.667,0.667,0.0181,0.0181,0.19,0.19,0.333,1 +1,0.116,0.463,0.463,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0.00852,0.00852,0.326,0.459,0.203,1,0.578,0.0353,0.578,0.578,0.0181,0.0181,0.19,0.19,0.667,1 +1,0.0495,0.371,0.371,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.099,1,0.391,0.0202,0.391,0.391,0.0181,0.0181,0.19,0.19,1,1 +1,0.0495,0.343,0.343,0,0,0.78,0.78,0.78,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.465,0.0495,1,0.205,0.00504,0.205,0.205,0.0181,0.0181,0.23,0.23,1,1 +1,0.0495,0.343,0.343,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.027,1,0.169,0.00504,0.169,0.169,0.0181,0.0181,0.19,0.19,1,1 +1,0.0495,0.334,0.334,0,0,0.74,0.74,0.74,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.018,1,0.133,0.0101,0.133,0.133,0.0241,0.0241,0.23,0.23,1,1 +1,0.0495,0.306,0.306,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0248,1,0.142,0.0353,0.142,0.142,0.0482,0.0482,0.373,0.373,1,1 +1,0.0495,0.334,0.334,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0315,1,0.16,0.0605,0.16,0.16,0.0903,0.0903,0.532,0.532,1,1 +1,0.0495,0.398,0.398,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.054,1,0.231,0.146,0.231,0.231,0.157,0.157,0.452,0.452,1,1 +1,0.0495,0.436,0.436,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0968,1,0.293,0.232,0.293,0.293,0.265,0.265,0.19,0.19,1,1 +1,0.404,0.315,0.315,0,0.0366,0.82,0.82,0.82,0,0,0.0199,0,0,0,0,0,0,0,0.315,0.534,0.16,1,0.293,0.222,0.293,0.293,0.506,0.506,0.19,0.19,0,1 +1,0.392,0.213,0.213,0,0,0.82,0.82,0.82,0,0,0.0211,0.0158,0,0,0,0,0,0,0.213,0.534,0.212,1,0.285,0.207,0.285,0.285,0.729,0.729,0.151,0.151,0,1 +1,0.381,0.222,0.222,0,0,0.8,0.8,0.8,0,0,0.0494,0,0.33,0.33,0,0,0,0,0.222,0.534,0.252,1,0.293,0.222,0.293,0.293,0.765,0.765,0.119,0.119,0,1 +1,0.364,0.232,0.232,0,0,0.8,0.8,0.8,0,0,0.0335,0,0.0367,0.0367,0,0,0,0,0.232,0.546,0.277,1,0.293,0.232,0.293,0.293,0.729,0.729,0.111,0.111,0,1 +0.667,0.251,0.222,0.222,0,0,0.84,0.84,0.84,0,0,0.0118,0,0,0,0,0,0.00284,0.00284,0.234,0.528,0.297,1,0.285,0.212,0.285,0.285,0.723,0.723,0.111,0.111,0,1 +0.667,0.249,0.259,0.259,0,0,0.84,0.84,0.84,0,0,0.018,0,0,0,0,0,0.00568,0.00568,0.259,0.528,0.351,1,0.285,0.191,0.285,0.285,0.542,0.542,0.111,0.111,0,1 +0.667,0.249,0.287,0.287,0,0,0.84,0.84,0.84,0,0,0.0253,0,0,0,0,0,0.0114,0.0114,0.277,0.519,0.401,1,0.285,0.247,0.285,0.285,0.452,0.452,0.19,0.19,0,1 +0.667,0.251,0.297,0.297,0,0,0.82,0.82,0.82,0,0,0.041,0,0,0,0,0,0,0,0.284,0.536,0.441,1,0.293,0.297,0.293,0.293,0.367,0.367,0.46,0.46,0,1 +0.667,0.259,0.361,0.361,0,0,0.88,0.88,0.88,0,0,0.0334,0,0,0,0,0,0,0,0.327,0.552,0.464,1,0.4,0.554,0.4,0.4,0.223,0.223,1,1,0,1 +0.667,0.286,0.491,0.491,0,0,0.96,0.96,0.96,0,0,0.0222,0,0,0,0,0.00261,0.0114,0.014,0.413,0.585,0.479,1,0.507,0.811,0.507,0.507,0.139,0.139,0.968,0.968,0,1 +1,0.501,0.584,0.584,0,0,1,1,1,0,0,0,0,0,0,0,0.00783,0.00568,0.0135,0.584,0.658,0.565,1,0.587,0.58,0.587,0.587,0.0783,0.0783,0.54,0.54,0,1 +1,0.656,0.621,0.621,0,0,0.96,0.96,0.96,0,0,0,0,0,0,0,0,0.00284,0.00284,0.621,0.621,0.743,1,0.676,0.353,0.676,0.676,0.0482,0.0482,0.484,0.484,0,1 +1,0.806,0.658,0.658,0,0,0.94,0.94,0.94,0,0,0,0,0,0,0,0,0,0,0.658,0.583,0.873,1,0.72,0.222,0.72,0.72,0.0241,0.0241,0.405,0.405,0,1 +1,0.851,0.639,0.639,0,0,0.92,0.92,0.92,0,0,0,0,0,0,0,0,0.017,0.017,0.639,0.559,0.806,1,0.765,0.0957,0.765,0.765,0.0181,0.0181,0.341,0.341,0,1 +1,0.391,0.547,0.547,0,0,0.88,0.88,0.88,0,0,0,0,0,0,0,0,0.0114,0.0114,0.45,0.486,0.509,1,0.667,0.0655,0.667,0.667,0.0181,0.0181,0.19,0.19,0.333,1 +1,0.116,0.463,0.463,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0.00568,0.00568,0.326,0.459,0.232,1,0.578,0.0353,0.578,0.578,0.0181,0.0181,0.19,0.19,0.667,1 +1,0.0495,0.371,0.371,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.099,1,0.391,0.0202,0.391,0.391,0.0181,0.0181,0.19,0.19,1,1 +1,0.0495,0.343,0.343,0,0,0.78,0.78,0.78,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.465,0.0495,1,0.205,0.00504,0.205,0.205,0.0181,0.0181,0.23,0.23,1,1 +1,0.0495,0.343,0.343,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.027,1,0.169,0.00504,0.169,0.169,0.0181,0.0181,0.19,0.19,1,1 +1,0.0495,0.334,0.334,0,0,0.74,0.74,0.74,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.018,1,0.133,0.0101,0.133,0.133,0.0241,0.0241,0.23,0.23,1,1 +1,0.0495,0.306,0.306,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0248,1,0.142,0.0353,0.142,0.142,0.0482,0.0482,0.373,0.373,1,1 +1,0.0495,0.334,0.334,0,0,0.72,0.72,0.72,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0315,1,0.16,0.0605,0.16,0.16,0.0903,0.0903,0.532,0.532,1,1 +1,0.0495,0.398,0.398,0,0,0.76,0.76,0.76,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.054,1,0.231,0.146,0.231,0.231,0.157,0.157,0.452,0.452,1,1 +1,0.0495,0.436,0.436,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0968,1,0.293,0.232,0.293,0.293,0.265,0.265,0.19,0.19,1,1 +1,0.168,0.315,0.315,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0.0116,0,0.0116,0.277,0.488,0.16,1,0.293,0.222,0.293,0.293,0.506,0.506,0.19,0.19,0.667,1 +0.667,0.164,0.213,0.213,0,0.0122,0.82,0.82,0.82,0,0,0,0,0,0,0,0.0157,0,0.0157,0.243,0.488,0.212,1,0.285,0.207,0.285,0.285,0.729,0.729,0.151,0.151,0.333,1 +0.667,0.16,0.222,0.222,0,0.0244,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0,0,0.246,0.488,0.252,1,0.293,0.222,0.293,0.293,0.765,0.765,0.119,0.119,0.333,1 +0.667,0.154,0.232,0.232,0,0,0.8,0.8,0.8,0,0,0,0,0,0,0,0,0,0,0.249,0.492,0.277,1,0.293,0.232,0.293,0.293,0.729,0.729,0.111,0.111,0.333,1 +1,0.352,0.222,0.222,0,0,0.84,0.84,0.84,0.0108,0.0414,0,0,0,0,0,0,0.0199,0.0199,0.222,0.559,0.297,1,0.285,0.212,0.285,0.285,0.723,0.723,0.111,0.111,0,1 +0.667,0.249,0.259,0.259,0,0,0.84,0.84,0.84,0.0138,0.00637,0,0,0,0,0,0,0.00852,0.00852,0.259,0.528,0.351,1,0.285,0.191,0.285,0.285,0.542,0.542,0.111,0.111,0,1 +0.667,0.249,0.287,0.287,0,0,0.84,0.84,0.84,0,0,0,0,0,0,0,0.00271,0,0.00271,0.277,0.519,0.401,1,0.285,0.247,0.285,0.285,0.452,0.452,0.19,0.19,0,1 +1,0.351,0.297,0.297,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0.0508,0.00568,0.0564,0.297,0.571,0.441,1,0.293,0.297,0.293,0.293,0.367,0.367,0.46,0.46,0,1 +1,0.363,0.361,0.361,0,0,0.88,0.88,0.88,0,0,0,0,0,0,0,0.0235,0.0114,0.0349,0.361,0.596,0.464,1,0.4,0.554,0.4,0.4,0.223,0.223,1,1,0,1 +1,0.404,0.491,0.491,0,0.0122,0.96,0.96,0.96,0.0126,0.0653,0,0,0,0,0,0.0333,0.00852,0.0418,0.491,0.646,0.479,1,0.507,0.811,0.507,0.507,0.139,0.139,0.968,0.968,0,1 +1,0.351,0.584,0.584,0,0.0609,1,1,1,0.0184,0.00637,0,0,0,0,0,0,0.00852,0.00852,0.475,0.594,0.565,1,0.587,0.58,0.587,0.587,0.0783,0.0783,0.54,0.54,0.333,1 +1,0.454,0.621,0.621,0,0,0.96,0.96,0.96,0.0193,0,0.0118,0,0,0,0,0,0.0142,0.0142,0.5,0.569,0.743,1,0.676,0.353,0.676,0.676,0.0482,0.0482,0.484,0.484,0.333,1 +1,0.806,0.658,0.658,0,0,0.94,0.94,0.94,0.0171,0,0,0.0112,0,0,0,0,0,0,0.658,0.583,0.873,1,0.72,0.222,0.72,0.72,0.0241,0.0241,0.405,0.405,0,1 +1,0.851,0.639,0.639,0,0,0.92,0.92,0.92,0.00854,0,0,0.00456,0.238,0.238,0,0,0.00568,0.00568,0.639,0.559,0.806,1,0.765,0.0957,0.765,0.765,0.0181,0.0181,0.341,0.341,0,1 +1,0.561,0.547,0.547,0,0,0.88,0.88,0.88,0,0,0,0,0.128,0.128,0,0,0.00568,0.00568,0.547,0.497,0.509,1,0.667,0.0655,0.667,0.667,0.0181,0.0181,0.19,0.19,0,1 +1,0.116,0.463,0.463,0,0,0.82,0.82,0.82,0,0,0,0,0,0,0,0,0,0,0.326,0.459,0.232,1,0.578,0.0353,0.578,0.578,0.0181,0.0181,0.19,0.19,0.667,1 +1,0.0495,0.444,0.444,0,0,0.68,0.68,0.68,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0727,1,0.431,0.0246,0.431,0.431,0.0199,0.0199,0.151,0.162,1,1 +1,0.0495,0.41,0.41,0,0,0.663,0.663,0.663,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0354,1,0.225,0.00614,0.225,0.225,0.0199,0.0199,0.183,0.196,1,1 +1,0.0495,0.41,0.41,0,0,0.646,0.646,0.646,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0177,1,0.186,0.00614,0.186,0.186,0.0199,0.0199,0.151,0.162,1,1 +1,0.0495,0.399,0.399,0,0,0.629,0.629,0.629,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0138,1,0.147,0.0123,0.147,0.147,0.0265,0.0265,0.183,0.196,1,1 +1,0.0495,0.366,0.366,0,0,0.612,0.612,0.612,0,0,0,0,0,0,0,0.0373,0,0.0373,0.258,0.465,0.0216,1,0.157,0.043,0.157,0.157,0.0531,0.0531,0.296,0.317,1,1 +1,0.11,0.399,0.399,0,0,0.612,0.612,0.612,0,0,0,0,0,0,0,0.0341,0,0.0341,0.352,0.482,0.0354,1,0.176,0.0737,0.176,0.176,0.0995,0.0995,0.422,0.452,0.333,1 +0.667,0.143,0.477,0.477,0,0,0.646,0.646,0.646,0,0,0,0,0,0,0,0.0399,0,0.0399,0.331,0.493,0.057,1,0.255,0.178,0.255,0.255,0.172,0.172,0.359,0.384,0.333,1 +0.333,0.172,0.521,0.521,0,0.0122,0.68,0.68,0.68,0,0,0,0,0,0,0,0,0,0,0.346,0.518,0.0786,1,0.323,0.283,0.323,0.323,0.292,0.292,0.151,0.162,0,1 +0.333,0.175,0.377,0.377,0,0.134,0.697,0.697,0.697,0,0,0,0,0,0,0,0,0.00568,0.00568,0.298,0.523,0.0963,1,0.323,0.27,0.323,0.323,0.557,0.557,0.151,0.162,0,1 +0.333,0.174,0.255,0.255,0,0,0.697,0.697,0.697,0,0,0,0,0,0,0,0,0.017,0.017,0.257,0.523,0.114,1,0.313,0.252,0.313,0.313,0.803,0.803,0.12,0.128,0,1 +0,0.0495,0.266,0.266,0,0,0.68,0.68,0.68,0,0,0,0,0,0,0,0,0.017,0.017,0.258,0.465,0.128,1,0.323,0.27,0.323,0.323,0.842,0.842,0.0945,0.101,0,1 +0.333,0.0495,0.277,0.277,0,0,0.68,0.68,0.68,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.465,0.142,1,0.323,0.283,0.323,0.323,0.803,0.803,0.0882,0.0944,0.333,1 +0.333,0.0495,0.266,0.266,0,0,0.714,0.714,0.714,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.465,0.149,1,0.313,0.258,0.313,0.313,0.796,0.796,0.0882,0.0944,0.333,1 +0.333,0.0495,0.311,0.311,0,0,0.714,0.714,0.714,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.169,1,0.313,0.233,0.313,0.313,0.597,0.597,0.0882,0.0944,0.333,1 +0.333,0.0495,0.344,0.344,0,0,0.714,0.714,0.714,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.179,1,0.313,0.301,0.313,0.313,0.497,0.497,0.151,0.162,0.333,1 +0.333,0.162,0.355,0.355,0,0.0366,0.697,0.697,0.697,0.00955,0.0414,0,0,0,0,0,0,0,0,0.29,0.538,0.2,1,0.323,0.362,0.323,0.323,0.405,0.405,0.365,0.391,0,1 +0.333,0.172,0.433,0.433,0,0,0.748,0.748,0.748,0,0.0302,0,0,0,0,0,0,0,0,0.316,0.548,0.25,1,0.441,0.676,0.441,0.441,0.245,0.245,0.794,0.849,0,1 +0.667,0.35,0.588,0.588,0,0,0.815,0.815,0.815,0,0,0,0,0,0,0,0,0,0,0.478,0.67,0.307,1,0.558,0.989,0.558,0.558,0.153,0.153,0.769,0.822,0,1 +1,0.655,0.699,0.699,0,0.0366,0.849,0.849,0.849,0,0,0,0,0,0,0,0.0026,0,0.0026,0.699,0.788,0.413,1,0.646,0.706,0.646,0.646,0.0862,0.0862,0.428,0.458,0,1 +1,0.829,0.743,0.743,0,0,0.815,0.815,0.815,0,0,0,0,0,0,0,0.0104,0.0114,0.0218,0.743,0.743,0.578,1,0.744,0.43,0.744,0.744,0.0531,0.0531,0.384,0.411,0,1 +1,0.905,0.788,0.788,0,0,0.798,0.798,0.798,0,0,0,0,0,0,0,0,0.00852,0.00852,0.788,0.698,0.713,1,0.793,0.27,0.793,0.793,0.0265,0.0265,0.321,0.344,0,1 +1,0.821,0.765,0.765,0,0,0.781,0.781,0.781,0,0,0,0,0,0,0,0,0.00852,0.00852,0.765,0.669,0.676,1,0.842,0.117,0.842,0.842,0.0199,0.0199,0.271,0.29,0,1 +1,0.356,0.654,0.654,0,0,0.748,0.748,0.748,0,0,0,0,0,0,0,0,0.00852,0.00852,0.522,0.551,0.409,1,0.735,0.0799,0.735,0.735,0.0199,0.0199,0.151,0.162,0.333,1 +1,0.116,0.555,0.555,0,0,0.697,0.697,0.697,0,0,0,0,0,0,0,0,0,0,0.357,0.489,0.177,1,0.637,0.043,0.637,0.637,0.0199,0.0199,0.151,0.162,0.667,1 +1,0.0495,0.444,0.444,0,0,0.68,0.68,0.68,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0727,1,0.431,0.0246,0.431,0.431,0.0199,0.0199,0.151,0.162,1,1 +1,0.0495,0.41,0.41,0,0,0.663,0.663,0.663,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0354,1,0.225,0.00614,0.225,0.225,0.0199,0.0199,0.183,0.196,1,1 +1,0.0495,0.41,0.41,0,0,0.646,0.646,0.646,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0177,1,0.186,0.00614,0.186,0.186,0.0199,0.0199,0.151,0.162,1,1 +1,0.0495,0.399,0.399,0,0,0.629,0.629,0.629,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0138,1,0.147,0.0123,0.147,0.147,0.0265,0.0265,0.183,0.196,1,1 +1,0.0506,0.366,0.366,0,0,0.612,0.612,0.612,0,0,0,0,0,0,0,0,0,0,0.294,0.469,0.0216,1,0.157,0.043,0.157,0.157,0.0531,0.0531,0.296,0.317,0.667,1 +1,0.0798,0.399,0.399,0,0,0.612,0.612,0.612,0,0,0,0,0,0,0,0.00269,0,0.00269,0.305,0.474,0.0354,1,0.176,0.0737,0.176,0.176,0.0995,0.0995,0.422,0.452,0.667,1 +0.667,0.236,0.477,0.477,0,0,0.646,0.646,0.646,0,0,0,0,0,0,0,0.0718,0,0.0718,0.404,0.522,0.057,1,0.255,0.178,0.255,0.255,0.172,0.172,0.359,0.384,0,1 +0.333,0.172,0.521,0.521,0,0,0.68,0.68,0.68,0,0,0,0,0,0,0,0.0026,0,0.0026,0.346,0.518,0.0786,1,0.323,0.283,0.323,0.323,0.292,0.292,0.151,0.162,0,1 +0.333,0.175,0.377,0.377,0,0,0.697,0.697,0.697,0,0,0.00985,0,0,0,0,0.0391,0,0.0391,0.298,0.523,0.0963,1,0.323,0.27,0.323,0.323,0.557,0.557,0.151,0.162,0,1 +0.333,0.174,0.255,0.255,0,0,0.697,0.697,0.697,0,0,0.0228,0.0112,0,0,0,0,0.0199,0.0199,0.257,0.523,0.114,1,0.313,0.252,0.313,0.313,0.803,0.803,0.12,0.128,0,1 +0.333,0.17,0.266,0.266,0,0,0.68,0.68,0.68,0,0,0.0351,0.00456,0.183,0.183,0,0,0.00284,0.00284,0.261,0.523,0.128,1,0.323,0.27,0.323,0.323,0.842,0.842,0.0945,0.101,0,1 +0.333,0.164,0.277,0.277,0,0,0.68,0.68,0.68,0,0,0,0,0,0,0,0,0.00852,0.00852,0.264,0.528,0.142,1,0.323,0.283,0.323,0.323,0.803,0.803,0.0882,0.0944,0,1 +0.333,0.16,0.266,0.266,0,0,0.714,0.714,0.714,0,0,0,0,0,0,0,0,0,0,0.261,0.533,0.149,1,0.313,0.258,0.313,0.313,0.796,0.796,0.0882,0.0944,0,1 +0.333,0.159,0.311,0.311,0,0,0.714,0.714,0.714,0,0,0,0,0,0,0,0,0,0,0.275,0.533,0.169,1,0.313,0.233,0.313,0.313,0.597,0.597,0.0882,0.0944,0,1 +0.333,0.159,0.344,0.344,0,0,0.714,0.714,0.714,0,0,0,0,0,0,0,0,0.00284,0.00284,0.286,0.528,0.179,1,0.313,0.301,0.313,0.313,0.497,0.497,0.151,0.162,0,1 +0.667,0.274,0.355,0.355,0,0,0.697,0.697,0.697,0,0,0,0,0,0,0,0,0,0,0.323,0.611,0.2,1,0.323,0.362,0.323,0.323,0.405,0.405,0.365,0.391,0,1 +1,0.417,0.433,0.433,0,0,0.748,0.748,0.748,0,0,0,0,0,0,0,0,0,0,0.433,0.713,0.25,1,0.441,0.676,0.441,0.441,0.245,0.245,0.794,0.849,0,1 +1,0.501,0.588,0.588,0,0.0731,0.815,0.815,0.815,0.00432,0.0175,0,0,0,0,0,0.00237,0,0.00237,0.588,0.773,0.307,1,0.558,0.989,0.558,0.558,0.153,0.153,0.769,0.822,0,1 +1,0.655,0.699,0.699,0,0,0.849,0.849,0.849,0.0165,0.0955,0,0,0,0,0,0.0312,0.00852,0.0398,0.699,0.788,0.413,1,0.646,0.706,0.646,0.646,0.0862,0.0862,0.428,0.458,0,1 +1,0.829,0.743,0.743,0,0,0.815,0.815,0.815,0,0.00637,0,0,0,0,0,0.0138,0.00284,0.0166,0.743,0.743,0.578,1,0.744,0.43,0.744,0.744,0.0531,0.0531,0.384,0.411,0,1 +1,0.905,0.788,0.788,0,0,0.798,0.798,0.798,0,0,0,0,0,0,0,0.0307,0.00284,0.0336,0.788,0.698,0.713,1,0.793,0.27,0.793,0.793,0.0265,0.0265,0.321,0.344,0,1 +1,0.821,0.765,0.765,0,0,0.781,0.781,0.781,0,0,0,0,0,0,0,0,0.0199,0.0199,0.765,0.669,0.676,1,0.842,0.117,0.842,0.842,0.0199,0.0199,0.271,0.29,0,1 +1,0.203,0.654,0.654,0,0,0.748,0.748,0.748,0,0,0,0,0,0,0,0,0.00284,0.00284,0.39,0.508,0.409,1,0.735,0.0799,0.735,0.735,0.0199,0.0199,0.151,0.162,0.667,1 +1,0.116,0.555,0.555,0,0,0.697,0.697,0.697,0,0,0,0,0,0,0,0,0,0,0.357,0.489,0.177,1,0.637,0.043,0.637,0.637,0.0199,0.0199,0.151,0.162,0.667,1 +1,0.0495,0.444,0.444,0,0,0.68,0.68,0.68,0,0,0,0,0,0,0,0,0.00568,0.00568,0.258,0.465,0.0727,1,0.431,0.0246,0.431,0.431,0.0199,0.0199,0.151,0.162,1,1 +1,0.0495,0.41,0.41,0,0,0.663,0.663,0.663,0,0,0,0,0,0,0,0,0.00568,0.00568,0.258,0.465,0.0354,1,0.225,0.00614,0.225,0.225,0.0199,0.0199,0.183,0.196,1,1 +1,0.0495,0.41,0.41,0,0,0.646,0.646,0.646,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0177,1,0.186,0.00614,0.186,0.186,0.0199,0.0199,0.151,0.162,1,1 +1,0.0495,0.399,0.399,0,0,0.629,0.629,0.629,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0138,1,0.147,0.0123,0.147,0.147,0.0265,0.0265,0.183,0.196,1,1 +1,0.0495,0.366,0.366,0,0,0.612,0.612,0.612,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0216,1,0.157,0.043,0.157,0.157,0.0531,0.0531,0.296,0.317,1,1 +1,0.0495,0.399,0.399,0,0,0.612,0.612,0.612,0,0,0,0,0,0,0,0.0024,0,0.0024,0.258,0.465,0.0354,1,0.176,0.0737,0.176,0.176,0.0995,0.0995,0.422,0.452,1,1 +1,0.143,0.477,0.477,0,0,0.646,0.646,0.646,0,0,0,0,0,0,0,0.032,0,0.032,0.331,0.493,0.057,1,0.255,0.178,0.255,0.255,0.172,0.172,0.359,0.384,0.667,1 +1,0.417,0.521,0.521,0,0,0.68,0.68,0.68,0,0,0,0,0,0,0,0.00998,0,0.00998,0.521,0.624,0.0786,1,0.323,0.283,0.323,0.323,0.292,0.292,0.151,0.162,0,1 +0.333,0.175,0.377,0.377,0,0,0.697,0.697,0.697,0,0,0,0,0,0,0,0,0,0,0.298,0.523,0.0963,1,0.323,0.27,0.323,0.323,0.557,0.557,0.151,0.162,0,1 +0.333,0.174,0.255,0.255,0,0,0.697,0.697,0.697,0,0,0,0,0,0,0,0,0,0,0.257,0.523,0.114,1,0.313,0.252,0.313,0.313,0.803,0.803,0.12,0.128,0,1 +0.333,0.17,0.266,0.266,0,0,0.68,0.68,0.68,0,0,0,0,0,0,0,0,0,0,0.261,0.523,0.128,1,0.323,0.27,0.323,0.323,0.842,0.842,0.0945,0.101,0,1 +0.333,0.164,0.277,0.277,0,0,0.68,0.68,0.68,0,0,0,0,0,0,0,0,0.00568,0.00568,0.264,0.528,0.142,1,0.323,0.283,0.323,0.323,0.803,0.803,0.0882,0.0944,0,1 +0.333,0.16,0.266,0.266,0,0,0.714,0.714,0.714,0,0,0,0,0,0,0,0,0.00284,0.00284,0.261,0.533,0.149,1,0.313,0.258,0.313,0.313,0.796,0.796,0.0882,0.0944,0,1 +0.333,0.159,0.311,0.311,0,0,0.714,0.714,0.714,0,0,0,0,0,0,0,0,0.00568,0.00568,0.275,0.533,0.169,1,0.313,0.233,0.313,0.313,0.597,0.597,0.0882,0.0944,0,1 +0.333,0.159,0.344,0.344,0,0,0.714,0.714,0.714,0,0,0,0,0,0,0,0,0.00284,0.00284,0.286,0.528,0.179,1,0.313,0.301,0.313,0.313,0.497,0.497,0.151,0.162,0,1 +0.333,0.162,0.355,0.355,0,0,0.697,0.697,0.697,0,0,0,0,0,0,0,0,0.00568,0.00568,0.29,0.538,0.2,1,0.323,0.362,0.323,0.323,0.405,0.405,0.365,0.391,0,1 +0.333,0.172,0.433,0.433,0,0.0853,0.748,0.748,0.748,0,0,0,0,0,0,0,0,0.00284,0.00284,0.316,0.548,0.25,1,0.441,0.676,0.441,0.441,0.245,0.245,0.794,0.849,0,1 +0.667,0.35,0.588,0.588,0,0.146,0.815,0.815,0.815,0,0,0,0,0,0,0,0,0,0,0.478,0.67,0.307,1,0.558,0.989,0.558,0.558,0.153,0.153,0.769,0.822,0,1 +1,0.453,0.699,0.699,0,0.0975,0.849,0.849,0.849,0,0,0,0,0,0,0,0,0.00284,0.00284,0.552,0.68,0.413,1,0.646,0.706,0.646,0.646,0.0862,0.0862,0.428,0.458,0.333,1 +1,0.569,0.743,0.743,0,0,0.815,0.815,0.815,0,0,0,0,0,0,0,0.00244,0.00852,0.011,0.581,0.65,0.578,1,0.744,0.43,0.744,0.744,0.0531,0.0531,0.384,0.411,0.333,1 +1,0.905,0.788,0.788,0,0,0.798,0.798,0.798,0,0,0,0,0,0,0,0.047,0.00568,0.0527,0.788,0.698,0.713,1,0.793,0.27,0.793,0.793,0.0265,0.0265,0.321,0.344,0,1 +1,0.564,0.765,0.765,0,0,0.781,0.781,0.781,0,0,0,0,0,0,0,0,0,0,0.596,0.601,0.676,1,0.842,0.117,0.842,0.842,0.0199,0.0199,0.271,0.29,0.333,1 +1,0.203,0.654,0.654,0,0,0.748,0.748,0.748,0,0,0,0,0,0,0,0,0,0,0.39,0.508,0.409,1,0.735,0.0799,0.735,0.735,0.0199,0.0199,0.151,0.162,0.667,1 +1,0.116,0.555,0.555,0,0,0.697,0.697,0.697,0,0,0,0,0,0,0,0,0.00284,0.00284,0.357,0.489,0.177,1,0.637,0.043,0.637,0.637,0.0199,0.0199,0.151,0.162,0.667,1 +1,0.0495,0.444,0.444,0,0,0.68,0.68,0.68,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.465,0.0727,1,0.431,0.0246,0.431,0.431,0.0199,0.0199,0.151,0.162,1,1 +1,0.0495,0.41,0.41,0,0,0.663,0.663,0.663,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0354,1,0.225,0.00614,0.225,0.225,0.0199,0.0199,0.183,0.196,1,1 +1,0.0495,0.41,0.41,0,0,0.646,0.646,0.646,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.465,0.0177,1,0.186,0.00614,0.186,0.186,0.0199,0.0199,0.151,0.162,1,1 +1,0.0495,0.399,0.399,0,0,0.629,0.629,0.629,0,0,0,0,0,0,0,0.00241,0,0.00241,0.258,0.465,0.0138,1,0.147,0.0123,0.147,0.147,0.0265,0.0265,0.183,0.196,1,1 +1,0.0506,0.366,0.366,0,0,0.612,0.612,0.612,0,0,0,0,0,0,0,0.025,0,0.025,0.294,0.469,0.0216,1,0.157,0.043,0.157,0.157,0.0531,0.0531,0.296,0.317,0.667,1 +0.667,0.0495,0.399,0.399,0,0,0.612,0.612,0.612,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0354,1,0.176,0.0737,0.176,0.176,0.0995,0.0995,0.422,0.452,0.667,1 +0.667,0.0495,0.477,0.477,0,0,0.646,0.646,0.646,0,0,0,0,0,0,0,0.00276,0,0.00276,0.258,0.465,0.057,1,0.255,0.178,0.255,0.255,0.172,0.172,0.359,0.384,0.667,1 +0.667,0.172,0.521,0.521,0,0,0.68,0.68,0.68,0,0,0,0,0,0,0,0.0288,0,0.0288,0.346,0.518,0.0786,1,0.323,0.283,0.323,0.323,0.292,0.292,0.151,0.162,0.333,1 +0.667,0.301,0.377,0.377,0,0,0.697,0.697,0.697,0,0,0,0,0,0,0,0.039,0.0142,0.0532,0.337,0.581,0.0963,1,0.323,0.27,0.323,0.323,0.557,0.557,0.151,0.162,0,1 +0.667,0.299,0.255,0.255,0,0,0.697,0.697,0.697,0,0,0,0,0,0,0,0.0329,0,0.0329,0.256,0.581,0.114,1,0.313,0.252,0.313,0.313,0.803,0.803,0.12,0.128,0,1 +0.667,0.291,0.266,0.266,0,0,0.68,0.68,0.68,0,0,0,0,0,0,0,0.0195,0,0.0195,0.263,0.581,0.128,1,0.323,0.27,0.323,0.323,0.842,0.842,0.0945,0.101,0,1 +0.333,0.164,0.277,0.277,0,0,0.68,0.68,0.68,0,0,0,0,0,0,0,0,0,0,0.264,0.528,0.142,1,0.323,0.283,0.323,0.323,0.803,0.803,0.0882,0.0944,0,1 +0.333,0.16,0.266,0.266,0,0.0366,0.714,0.714,0.714,0,0,0,0,0,0,0,0,0,0,0.261,0.533,0.149,1,0.313,0.258,0.313,0.313,0.796,0.796,0.0882,0.0944,0,1 +0.333,0.159,0.311,0.311,0,0,0.714,0.714,0.714,0,0,0,0,0,0,0,0,0.0114,0.0114,0.275,0.533,0.169,1,0.313,0.233,0.313,0.313,0.597,0.597,0.0882,0.0944,0,1 +0.333,0.159,0.344,0.344,0,0,0.714,0.714,0.714,0,0,0,0,0,0,0,0,0,0,0.286,0.528,0.179,1,0.313,0.301,0.313,0.313,0.497,0.497,0.151,0.162,0,1 +0.667,0.274,0.355,0.355,0,0,0.697,0.697,0.697,0,0,0,0,0,0,0,0,0,0,0.323,0.611,0.2,1,0.323,0.362,0.323,0.323,0.405,0.405,0.365,0.391,0,1 +0.667,0.294,0.433,0.433,0,0.0366,0.748,0.748,0.748,0,0,0,0,0,0,0,0,0.00852,0.00852,0.374,0.631,0.25,1,0.441,0.676,0.441,0.441,0.245,0.245,0.794,0.849,0,1 +1,0.501,0.588,0.588,0,0,0.815,0.815,0.815,0,0,0,0,0,0,0,0,0.00568,0.00568,0.588,0.773,0.307,1,0.558,0.989,0.558,0.558,0.153,0.153,0.769,0.822,0,1 +1,0.655,0.699,0.699,0,0,0.849,0.849,0.849,0,0,0,0,0,0,0,0,0.0114,0.0114,0.699,0.788,0.413,1,0.646,0.706,0.646,0.646,0.0862,0.0862,0.428,0.458,0,1 +1,0.829,0.743,0.743,0,0,0.815,0.815,0.815,0.00938,0.0414,0,0,0,0,0,0,0.00852,0.00852,0.743,0.743,0.578,1,0.744,0.43,0.744,0.744,0.0531,0.0531,0.384,0.411,0,1 +1,0.905,0.788,0.788,0,0,0.798,0.798,0.798,0.023,0.0302,0,0,0,0,0,0.0196,0,0.0196,0.788,0.698,0.713,1,0.793,0.27,0.793,0.793,0.0265,0.0265,0.321,0.344,0,1 +1,0.821,0.765,0.765,0,0,0.781,0.781,0.781,0,0,0,0,0,0,0,0,0.00284,0.00284,0.765,0.669,0.676,1,0.842,0.117,0.842,0.842,0.0199,0.0199,0.271,0.29,0,1 +1,0.203,0.654,0.654,0,0,0.748,0.748,0.748,0,0,0,0,0,0,0,0,0,0,0.39,0.508,0.409,1,0.735,0.0799,0.735,0.735,0.0199,0.0199,0.151,0.162,0.667,1 +1,0.0495,0.555,0.555,0,0,0.697,0.697,0.697,0,0,0,0,0,0,0,0,0.00568,0.00568,0.258,0.465,0.177,1,0.637,0.043,0.637,0.637,0.0199,0.0199,0.151,0.162,1,1 +1,0.0495,0.444,0.444,0,0,0.68,0.68,0.68,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0727,1,0.431,0.0246,0.431,0.431,0.0199,0.0199,0.151,0.162,1,1 +1,0.0495,0.41,0.41,0,0,0.663,0.663,0.663,0,0,0,0,0,0,0,0,0.00568,0.00568,0.258,0.465,0.0354,1,0.225,0.00614,0.225,0.225,0.0199,0.0199,0.183,0.196,1,1 +1,0.0495,0.41,0.41,0,0,0.646,0.646,0.646,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0177,1,0.186,0.00614,0.186,0.186,0.0199,0.0199,0.151,0.162,1,1 +1,0.0495,0.399,0.399,0,0,0.629,0.629,0.629,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0138,1,0.147,0.0123,0.147,0.147,0.0265,0.0265,0.183,0.196,1,1 +1,0.0495,0.366,0.366,0,0,0.612,0.612,0.612,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0216,1,0.157,0.043,0.157,0.157,0.0531,0.0531,0.296,0.317,1,1 +1,0.0495,0.399,0.399,0,0,0.612,0.612,0.612,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0354,1,0.176,0.0737,0.176,0.176,0.0995,0.0995,0.422,0.452,1,1 +1,0.0495,0.477,0.477,0,0,0.646,0.646,0.646,0,0,0,0,0,0,0,0.00713,0,0.00713,0.258,0.465,0.057,1,0.255,0.178,0.255,0.255,0.172,0.172,0.359,0.384,1,1 +1,0.417,0.521,0.521,0,0,0.68,0.68,0.68,0,0,0,0,0,0,0,0.0568,0,0.0568,0.521,0.624,0.0786,1,0.323,0.283,0.323,0.323,0.292,0.292,0.151,0.162,0,1 +0.667,0.301,0.377,0.377,0,0,0.697,0.697,0.697,0,0,0,0,0,0,0,0.02,0,0.02,0.337,0.581,0.0963,1,0.323,0.27,0.323,0.323,0.557,0.557,0.151,0.162,0,1 +0.667,0.299,0.255,0.255,0,0,0.697,0.697,0.697,0,0,0,0,0,0,0,0.0429,0,0.0429,0.256,0.581,0.114,1,0.313,0.252,0.313,0.313,0.803,0.803,0.12,0.128,0,1 +0.667,0.291,0.266,0.266,0,0,0.68,0.68,0.68,0,0,0,0,0,0,0,0.0174,0.00852,0.026,0.263,0.581,0.128,1,0.323,0.27,0.323,0.323,0.842,0.842,0.0945,0.101,0,1 +0.667,0.279,0.277,0.277,0,0,0.68,0.68,0.68,0,0,0,0,0,0,0,0.0293,0.00568,0.035,0.271,0.591,0.142,1,0.323,0.283,0.323,0.323,0.803,0.803,0.0882,0.0944,0,1 +0.667,0.271,0.266,0.266,0,0,0.714,0.714,0.714,0,0,0,0,0,0,0,0.0117,0,0.0117,0.263,0.601,0.149,1,0.313,0.258,0.313,0.313,0.796,0.796,0.0882,0.0944,0,1 +0.667,0.269,0.311,0.311,0,0,0.714,0.714,0.714,0,0,0,0,0,0,0,0,0,0,0.293,0.601,0.169,1,0.313,0.233,0.313,0.313,0.597,0.597,0.0882,0.0944,0,1 +0.667,0.269,0.344,0.344,0,0,0.714,0.714,0.714,0,0,0,0,0,0,0,0,0.00852,0.00852,0.315,0.591,0.179,1,0.313,0.301,0.313,0.313,0.497,0.497,0.151,0.162,0,1 +0.333,0.0495,0.355,0.355,0,0,0.697,0.697,0.697,0,0,0,0,0,0,0,0,0.00568,0.00568,0.258,0.465,0.2,1,0.323,0.362,0.323,0.323,0.405,0.405,0.365,0.391,0.333,1 +0.667,0.172,0.433,0.433,0,0,0.748,0.748,0.748,0,0,0,0,0,0,0,0,0,0,0.316,0.548,0.25,1,0.441,0.676,0.441,0.441,0.245,0.245,0.794,0.849,0.333,1 +1,0.35,0.588,0.588,0,0,0.815,0.815,0.815,0,0,0,0,0,0,0,0,0.00568,0.00568,0.478,0.67,0.307,1,0.558,0.989,0.558,0.558,0.153,0.153,0.769,0.822,0.333,1 +1,0.453,0.699,0.699,0,0.0731,0.849,0.849,0.849,0,0,0,0,0,0,0,0,0.00568,0.00568,0.552,0.68,0.413,1,0.646,0.706,0.646,0.646,0.0862,0.0862,0.428,0.458,0.333,1 +1,0.569,0.743,0.743,0,0,0.815,0.815,0.815,0,0,0,0,0,0,0,0,0,0,0.581,0.65,0.578,1,0.744,0.43,0.744,0.744,0.0531,0.0531,0.384,0.411,0.333,1 +1,0.62,0.788,0.788,0,0,0.798,0.798,0.798,0,0,0,0,0,0,0,0,0.0114,0.0114,0.611,0.621,0.713,1,0.793,0.27,0.793,0.793,0.0265,0.0265,0.321,0.344,0.333,1 +1,0.564,0.765,0.765,0,0.0853,0.781,0.781,0.781,0,0,0,0,0,0,0,0.0166,0.00284,0.0194,0.596,0.601,0.676,1,0.842,0.117,0.842,0.842,0.0199,0.0199,0.271,0.29,0.333,1 +1,0.356,0.654,0.654,0,0.0609,0.748,0.748,0.748,0,0,0,0,0,0,0,0.0224,0,0.0224,0.522,0.551,0.409,1,0.735,0.0799,0.735,0.735,0.0199,0.0199,0.151,0.162,0.333,1 +1,0.0495,0.555,0.555,0,0,0.697,0.697,0.697,0,0,0,0,0,0,0,0,0.00852,0.00852,0.258,0.465,0.177,1,0.637,0.043,0.637,0.637,0.0199,0.0199,0.151,0.162,1,1 +1,0.0495,0.444,0.444,0,0,0.68,0.68,0.68,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.465,0.0865,1,0.431,0.0246,0.431,0.431,0.0199,0.0199,0.151,0.162,1,1 +1,0.0495,0.41,0.41,0,0,0.663,0.663,0.663,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0432,1,0.225,0.00614,0.225,0.225,0.0199,0.0199,0.183,0.196,1,1 +1,0.0495,0.41,0.41,0,0,0.646,0.646,0.646,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0236,1,0.186,0.00614,0.186,0.186,0.0199,0.0199,0.151,0.162,1,1 +1,0.0495,0.399,0.399,0,0,0.629,0.629,0.629,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0157,1,0.147,0.0123,0.147,0.147,0.0265,0.0265,0.183,0.196,1,1 +1,0.0495,0.366,0.366,0,0,0.612,0.612,0.612,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0216,1,0.157,0.043,0.157,0.157,0.0531,0.0531,0.296,0.317,1,1 +1,0.0798,0.399,0.399,0,0,0.612,0.612,0.612,0,0,0,0,0,0,0,0,0,0,0.305,0.474,0.0275,1,0.176,0.0737,0.176,0.176,0.0995,0.0995,0.422,0.452,0.667,1 +1,0.143,0.477,0.477,0,0,0.646,0.646,0.646,0,0,0,0,0,0,0,0,0,0,0.331,0.493,0.0472,1,0.255,0.178,0.255,0.255,0.172,0.172,0.359,0.384,0.667,1 +1,0.0495,0.521,0.521,0,0.0122,0.68,0.68,0.68,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0845,1,0.323,0.283,0.323,0.323,0.292,0.292,0.151,0.162,1,1 +0.667,0.175,0.377,0.377,0,0.146,0.697,0.697,0.697,0,0,0,0,0,0,0,0,0,0,0.298,0.523,0.14,1,0.323,0.27,0.323,0.323,0.557,0.557,0.151,0.162,0.333,1 +0.667,0.174,0.255,0.255,0,0.0975,0.697,0.697,0.697,0,0,0,0,0,0,0,0,0.00284,0.00284,0.257,0.523,0.185,1,0.313,0.252,0.313,0.313,0.803,0.803,0.12,0.128,0.333,1 +0.667,0.17,0.266,0.266,0,0,0.68,0.68,0.68,0.0149,0.0653,0,0,0,0,0,0.0097,0.0114,0.0211,0.261,0.523,0.22,1,0.323,0.27,0.323,0.323,0.842,0.842,0.0945,0.101,0.333,1 +0.667,0.164,0.277,0.277,0,0,0.68,0.68,0.68,0.00955,0.0541,0,0,0,0,0,0.0212,0,0.0212,0.264,0.528,0.242,1,0.323,0.283,0.323,0.323,0.803,0.803,0.0882,0.0944,0.333,1 +0.667,0.16,0.266,0.266,0,0,0.714,0.714,0.714,0,0,0,0,0,0,0,0.0211,0.00852,0.0296,0.261,0.533,0.259,1,0.313,0.258,0.313,0.313,0.796,0.796,0.0882,0.0944,0.333,1 +0.667,0.159,0.311,0.311,0,0,0.714,0.714,0.714,0,0,0,0,0,0,0,0.0523,0.00568,0.0579,0.275,0.533,0.307,1,0.313,0.233,0.313,0.313,0.597,0.597,0.0882,0.0944,0.333,1 +0.667,0.159,0.344,0.344,0,0,0.714,0.714,0.714,0,0,0,0,0,0,0,0.00275,0.00284,0.00559,0.286,0.528,0.35,1,0.313,0.301,0.313,0.313,0.497,0.497,0.151,0.162,0.333,1 +0.667,0.162,0.355,0.355,0,0,0.697,0.697,0.697,0,0,0,0,0,0,0,0.0316,0,0.0316,0.29,0.538,0.385,1,0.323,0.362,0.323,0.323,0.405,0.405,0.365,0.391,0.333,1 +0.333,0.0495,0.433,0.433,0,0,0.748,0.748,0.748,0,0,0,0,0,0,0,0,0.00852,0.00852,0.258,0.465,0.405,1,0.441,0.676,0.441,0.441,0.245,0.245,0.794,0.849,0.333,1 +0.333,0.0495,0.588,0.588,0,0,0.815,0.815,0.815,0,0,0,0,0,0,0,0,0.0142,0.0142,0.258,0.465,0.419,1,0.558,0.989,0.558,0.558,0.153,0.153,0.769,0.822,0.333,1 +0.333,0.251,0.699,0.699,0,0,0.849,0.849,0.849,0,0,0,0,0,0,0,0,0.00284,0.00284,0.405,0.573,0.493,1,0.646,0.706,0.646,0.646,0.0862,0.0862,0.428,0.458,0,1 +0.333,0.309,0.743,0.743,0,0.0122,0.815,0.815,0.815,0,0,0,0,0,0,0,0,0.0142,0.0142,0.42,0.558,0.649,1,0.744,0.43,0.744,0.744,0.0531,0.0531,0.384,0.411,0,1 +0.667,0.62,0.788,0.788,0,0.0244,0.798,0.798,0.798,0,0,0,0,0,0,0,0,0,0,0.611,0.621,0.763,1,0.793,0.27,0.793,0.793,0.0265,0.0265,0.321,0.344,0,1 +0.667,0.564,0.765,0.765,0,0,0.781,0.781,0.781,0,0,0,0,0,0,0,0,0.00284,0.00284,0.596,0.601,0.704,1,0.842,0.117,0.842,0.842,0.0199,0.0199,0.271,0.29,0,1 +0.333,0.203,0.654,0.654,0,0,0.748,0.748,0.748,0,0,0,0,0,0,0,0,0.00568,0.00568,0.39,0.508,0.444,1,0.735,0.0799,0.735,0.735,0.0199,0.0199,0.151,0.162,0,1 +0.333,0.116,0.555,0.555,0,0,0.697,0.697,0.697,0,0,0,0,0,0,0,0,0,0,0.357,0.489,0.202,1,0.637,0.043,0.637,0.637,0.0199,0.0199,0.151,0.162,0,1 +0.667,0.099,0.444,0.444,0,0,0.68,0.68,0.68,0,0,0,0,0,0,0,0,0,0,0.382,0.502,0.0865,1,0.431,0.0246,0.431,0.431,0.0199,0.0199,0.151,0.162,0,1 +1,0.0495,0.41,0.41,0,0,0.663,0.663,0.663,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0432,1,0.225,0.00614,0.225,0.225,0.0199,0.0199,0.183,0.196,1,1 +1,0.0495,0.41,0.41,0,0,0.646,0.646,0.646,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.465,0.0236,1,0.186,0.00614,0.186,0.186,0.0199,0.0199,0.151,0.162,1,1 +1,0.0495,0.399,0.399,0,0,0.629,0.629,0.629,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0157,1,0.147,0.0123,0.147,0.147,0.0265,0.0265,0.183,0.196,1,1 +1,0.0495,0.366,0.366,0,0,0.612,0.612,0.612,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0216,1,0.157,0.043,0.157,0.157,0.0531,0.0531,0.296,0.317,1,1 +1,0.0495,0.399,0.399,0,0,0.612,0.612,0.612,0,0,0,0,0,0,0,0.019,0,0.019,0.258,0.465,0.0275,1,0.176,0.0737,0.176,0.176,0.0995,0.0995,0.422,0.452,1,1 +1,0.143,0.477,0.477,0,0,0.646,0.646,0.646,0,0,0,0,0,0,0,0.0186,0,0.0186,0.331,0.493,0.0472,1,0.255,0.178,0.255,0.255,0.172,0.172,0.359,0.384,0.667,1 +1,0.172,0.521,0.521,0,0,0.68,0.68,0.68,0,0,0,0,0,0,0,0.0309,0,0.0309,0.346,0.518,0.0845,1,0.323,0.283,0.323,0.323,0.292,0.292,0.151,0.162,0.667,1 +0.667,0.0495,0.377,0.377,0,0,0.697,0.697,0.697,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.14,1,0.323,0.27,0.323,0.323,0.557,0.557,0.151,0.162,0.667,1 +0.667,0.174,0.255,0.255,0,0,0.697,0.697,0.697,0,0,0,0,0,0,0,0,0.00568,0.00568,0.257,0.523,0.185,1,0.313,0.252,0.313,0.313,0.803,0.803,0.12,0.128,0.333,1 +0.667,0.17,0.266,0.266,0,0,0.68,0.68,0.68,0.00494,0.0175,0,0,0,0,0,0,0.0199,0.0199,0.261,0.523,0.22,1,0.323,0.27,0.323,0.323,0.842,0.842,0.0945,0.101,0.333,1 +0.667,0.279,0.277,0.277,0,0,0.68,0.68,0.68,0.025,0.0302,0,0,0,0,0,0,0,0,0.271,0.591,0.242,1,0.323,0.283,0.323,0.323,0.803,0.803,0.0882,0.0944,0,1 +0.667,0.271,0.266,0.266,0,0,0.714,0.714,0.714,0.0194,0,0.0198,0.000702,0,0,0,0,0,0,0.263,0.601,0.259,1,0.313,0.258,0.313,0.313,0.796,0.796,0.0882,0.0944,0,1 +0.667,0.269,0.311,0.311,0,0,0.714,0.714,0.714,0.00455,0,0.0292,0.0151,0.055,0.055,0,0,0.00284,0.00284,0.293,0.601,0.307,1,0.313,0.233,0.313,0.313,0.597,0.597,0.0882,0.0944,0,1 +0.667,0.269,0.344,0.344,0,0,0.714,0.714,0.714,0,0,0.0416,0,0.128,0.128,0,0,0.00852,0.00852,0.315,0.591,0.35,1,0.313,0.301,0.313,0.313,0.497,0.497,0.151,0.162,0,1 +0.667,0.274,0.355,0.355,0,0,0.697,0.697,0.697,0,0,0.0609,0,0,0,0,0,0.00284,0.00284,0.323,0.611,0.385,1,0.323,0.362,0.323,0.323,0.405,0.405,0.365,0.391,0,1 +0.667,0.294,0.433,0.433,0,0.0366,0.748,0.748,0.748,0,0,0.0255,0,0,0,0,0,0,0,0.374,0.631,0.405,1,0.441,0.676,0.441,0.441,0.245,0.245,0.794,0.849,0,1 +0.667,0.35,0.588,0.588,0,0,0.815,0.815,0.815,0,0,0,0,0,0,0,0,0.00568,0.00568,0.478,0.67,0.419,1,0.558,0.989,0.558,0.558,0.153,0.153,0.769,0.822,0,1 +1,0.655,0.699,0.699,0,0,0.849,0.849,0.849,0,0,0,0,0,0,0,0.00272,0,0.00272,0.699,0.788,0.493,1,0.646,0.706,0.646,0.646,0.0862,0.0862,0.428,0.458,0,1 +1,0.829,0.743,0.743,0,0,0.815,0.815,0.815,0,0,0,0,0,0,0,0.0333,0.00568,0.039,0.743,0.743,0.649,1,0.744,0.43,0.744,0.744,0.0531,0.0531,0.384,0.411,0,1 +1,0.905,0.788,0.788,0,0,0.798,0.798,0.798,0,0,0,0,0,0,0,0.0392,0.0114,0.0506,0.788,0.698,0.763,1,0.793,0.27,0.793,0.793,0.0265,0.0265,0.321,0.344,0,1 +1,0.821,0.765,0.765,0,0,0.781,0.781,0.781,0,0,0,0,0,0,0,0,0,0,0.765,0.669,0.704,1,0.842,0.117,0.842,0.842,0.0199,0.0199,0.271,0.29,0,1 +1,0.51,0.654,0.654,0,0,0.748,0.748,0.748,0,0,0,0,0,0,0,0.0228,0,0.0228,0.654,0.594,0.444,1,0.735,0.0799,0.735,0.735,0.0199,0.0199,0.151,0.162,0,1 +1,0.183,0.555,0.555,0,0,0.697,0.697,0.697,0,0,0,0,0,0,0,0,0.00568,0.00568,0.456,0.512,0.202,1,0.637,0.043,0.637,0.637,0.0199,0.0199,0.151,0.162,0.333,1 +1,0.0743,0.444,0.444,0,0,0.68,0.68,0.68,0,0,0,0,0,0,0,0,0.00284,0.00284,0.32,0.484,0.0727,1,0.431,0.0246,0.431,0.431,0.0199,0.0199,0.151,0.162,0.667,1 +1,0.0495,0.41,0.41,0,0,0.663,0.663,0.663,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0354,1,0.225,0.00614,0.225,0.225,0.0199,0.0199,0.183,0.196,1,1 +1,0.0495,0.41,0.41,0,0,0.646,0.646,0.646,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0177,1,0.186,0.00614,0.186,0.186,0.0199,0.0199,0.151,0.162,1,1 +1,0.0495,0.399,0.399,0,0,0.629,0.629,0.629,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0138,1,0.147,0.0123,0.147,0.147,0.0265,0.0265,0.183,0.196,1,1 +1,0.0495,0.366,0.366,0,0,0.612,0.612,0.612,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0216,1,0.157,0.043,0.157,0.157,0.0531,0.0531,0.296,0.317,1,1 +1,0.0495,0.399,0.399,0,0.0122,0.612,0.612,0.612,0,0,0,0,0,0,0,0.00223,0,0.00223,0.258,0.465,0.0354,1,0.176,0.0737,0.176,0.176,0.0995,0.0995,0.422,0.452,1,1 +1,0.236,0.477,0.477,0,0.134,0.646,0.646,0.646,0.00685,0.0414,0.0211,0.00596,0,0,0,0.0248,0,0.0248,0.404,0.522,0.057,1,0.255,0.178,0.255,0.255,0.172,0.172,0.359,0.384,0.333,1 +1,0.417,0.521,0.521,0,0.0366,0.68,0.68,0.68,0.0101,0.00637,0.0233,0.00456,0.183,0.183,0,0,0,0,0.521,0.624,0.0786,1,0.323,0.283,0.323,0.323,0.292,0.292,0.151,0.162,0,1 +0.667,0.301,0.377,0.377,0,0.0122,0.697,0.697,0.697,0,0,0,0,0,0,0,0,0,0,0.337,0.581,0.0963,1,0.323,0.27,0.323,0.323,0.557,0.557,0.151,0.162,0,1 +0.667,0.299,0.255,0.255,0,0.0244,0.697,0.697,0.697,0,0,0,0,0,0,0,0,0.00284,0.00284,0.256,0.581,0.114,1,0.313,0.252,0.313,0.313,0.803,0.803,0.12,0.128,0,1 +0.333,0.17,0.266,0.266,0,0.0122,0.68,0.68,0.68,0,0,0,0,0,0,0,0,0.0114,0.0114,0.261,0.523,0.128,1,0.323,0.27,0.323,0.323,0.842,0.842,0.0945,0.101,0,1 +0.333,0.164,0.277,0.277,0,0.0244,0.68,0.68,0.68,0,0,0,0,0,0,0,0,0.00568,0.00568,0.264,0.528,0.142,1,0.323,0.283,0.323,0.323,0.803,0.803,0.0882,0.0944,0,1 +0.333,0.16,0.266,0.266,0,0.0366,0.714,0.714,0.714,0,0,0,0,0,0,0,0,0.00284,0.00284,0.261,0.533,0.149,1,0.313,0.258,0.313,0.313,0.796,0.796,0.0882,0.0944,0,1 +0.667,0.269,0.311,0.311,0,0.0122,0.714,0.714,0.714,0,0,0,0,0,0,0,0,0,0,0.293,0.601,0.169,1,0.313,0.233,0.313,0.313,0.597,0.597,0.0882,0.0944,0,1 +0.667,0.269,0.344,0.344,0,0.0244,0.714,0.714,0.714,0,0,0,0,0,0,0,0,0.00852,0.00852,0.315,0.591,0.179,1,0.313,0.301,0.313,0.313,0.497,0.497,0.151,0.162,0,1 +0.667,0.274,0.355,0.355,0,0,0.697,0.697,0.697,0,0,0.0395,0.00596,0,0,0,0,0.00568,0.00568,0.323,0.611,0.2,1,0.323,0.362,0.323,0.323,0.405,0.405,0.365,0.391,0,1 +0.667,0.294,0.433,0.433,0,0,0.748,0.748,0.748,0,0,0.0237,0.00456,0.238,0.238,0,0.0166,0.00284,0.0195,0.374,0.631,0.25,1,0.441,0.676,0.441,0.441,0.245,0.245,0.794,0.849,0,1 +0.667,0.35,0.588,0.588,0,0.0366,0.815,0.815,0.815,0,0,0,0,0.0367,0.0367,0,0.0186,0,0.0186,0.478,0.67,0.307,1,0.558,0.989,0.558,0.558,0.153,0.153,0.769,0.822,0,1 +0.667,0.453,0.699,0.699,0,0,0.849,0.849,0.849,0,0,0,0,0,0,0,0.0309,0,0.0309,0.552,0.68,0.413,1,0.646,0.706,0.646,0.646,0.0862,0.0862,0.428,0.458,0,1 +1,0.829,0.743,0.743,0,0,0.815,0.815,0.815,0,0,0,0,0,0,0,0.0215,0.00284,0.0244,0.743,0.743,0.578,1,0.744,0.43,0.744,0.744,0.0531,0.0531,0.384,0.411,0,1 +1,0.905,0.788,0.788,0,0,0.798,0.798,0.798,0,0,0,0,0,0,0,0,0.0114,0.0114,0.788,0.698,0.713,1,0.793,0.27,0.793,0.793,0.0265,0.0265,0.321,0.344,0,1 +1,0.821,0.765,0.765,0,0,0.781,0.781,0.781,0,0,0,0,0,0,0,0,0.0114,0.0114,0.765,0.669,0.676,1,0.842,0.117,0.842,0.842,0.0199,0.0199,0.271,0.29,0,1 +1,0.203,0.654,0.654,0,0,0.748,0.748,0.748,0,0,0,0,0,0,0,0,0,0,0.39,0.508,0.409,1,0.735,0.0799,0.735,0.735,0.0199,0.0199,0.151,0.162,0.667,1 +1,0.0495,0.555,0.555,0,0,0.697,0.697,0.697,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.177,1,0.637,0.043,0.637,0.637,0.0199,0.0199,0.151,0.162,1,1 +1,0.0495,0.444,0.444,0,0,0.68,0.68,0.68,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0727,1,0.431,0.0246,0.431,0.431,0.0199,0.0199,0.151,0.162,1,1 +1,0.0495,0.41,0.41,0,0,0.663,0.663,0.663,0,0,0,0,0,0,0,0,0.00852,0.00852,0.258,0.465,0.0354,1,0.225,0.00614,0.225,0.225,0.0199,0.0199,0.183,0.196,1,1 +1,0.0495,0.41,0.41,0,0,0.646,0.646,0.646,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0177,1,0.186,0.00614,0.186,0.186,0.0199,0.0199,0.151,0.162,1,1 +1,0.0495,0.399,0.399,0,0,0.629,0.629,0.629,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0138,1,0.147,0.0123,0.147,0.147,0.0265,0.0265,0.183,0.196,1,1 +1,0.0495,0.366,0.366,0,0,0.612,0.612,0.612,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0216,1,0.157,0.043,0.157,0.157,0.0531,0.0531,0.296,0.317,1,1 +1,0.0495,0.399,0.399,0,0,0.612,0.612,0.612,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0354,1,0.176,0.0737,0.176,0.176,0.0995,0.0995,0.422,0.452,1,1 +1,0.143,0.477,0.477,0,0.0366,0.646,0.646,0.646,0,0,0.0182,0,0,0,0,0.012,0,0.012,0.331,0.493,0.057,1,0.255,0.178,0.255,0.255,0.172,0.172,0.359,0.384,0.667,1 +1,0.172,0.521,0.521,0,0,0.68,0.68,0.68,0,0,0.027,0.0165,0,0,0,0.0126,0.00284,0.0154,0.346,0.518,0.0786,1,0.323,0.283,0.323,0.323,0.292,0.292,0.151,0.162,0.667,1 +1,0.427,0.377,0.377,0,0,0.697,0.697,0.697,0,0,0.0231,0.00456,0.238,0.238,0,0.0319,0,0.0319,0.377,0.639,0.0963,1,0.323,0.27,0.323,0.323,0.557,0.557,0.151,0.162,0,1 +0.667,0.299,0.255,0.255,0,0,0.697,0.697,0.697,0,0,0,0,0.128,0.128,0,0.0194,0,0.0194,0.256,0.581,0.114,1,0.313,0.252,0.313,0.313,0.803,0.803,0.12,0.128,0,1 +0.667,0.291,0.266,0.266,0,0,0.68,0.68,0.68,0,0,0,0,0,0,0,0.0432,0.00852,0.0518,0.263,0.581,0.128,1,0.323,0.27,0.323,0.323,0.842,0.842,0.0945,0.101,0,1 +0.667,0.279,0.277,0.277,0,0,0.68,0.68,0.68,0,0,0,0,0,0,0,0.00264,0.00284,0.00548,0.271,0.591,0.142,1,0.323,0.283,0.323,0.323,0.803,0.803,0.0882,0.0944,0,1 +0.333,0.16,0.266,0.266,0,0,0.714,0.714,0.714,0,0,0,0,0,0,0,0,0.00284,0.00284,0.261,0.533,0.149,1,0.313,0.258,0.313,0.313,0.796,0.796,0.0882,0.0944,0,1 +0.333,0.159,0.311,0.311,0,0,0.714,0.714,0.714,0,0,0,0,0,0,0,0,0,0,0.275,0.533,0.169,1,0.313,0.233,0.313,0.313,0.597,0.597,0.0882,0.0944,0,1 +0.333,0.159,0.344,0.344,0,0,0.714,0.714,0.714,0,0,0,0,0,0,0,0,0,0,0.286,0.528,0.179,1,0.313,0.301,0.313,0.313,0.497,0.497,0.151,0.162,0,1 +0.333,0.162,0.355,0.355,0,0,0.697,0.697,0.697,0,0,0,0,0,0,0,0,0.00852,0.00852,0.29,0.538,0.2,1,0.323,0.362,0.323,0.323,0.405,0.405,0.365,0.391,0,1 +0.333,0.172,0.433,0.433,0,0,0.748,0.748,0.748,0,0,0,0,0,0,0,0,0.0199,0.0199,0.316,0.548,0.25,1,0.441,0.676,0.441,0.441,0.245,0.245,0.794,0.849,0,1 +0.667,0.35,0.588,0.588,0,0,0.815,0.815,0.815,0,0,0,0,0,0,0,0,0,0,0.478,0.67,0.307,1,0.558,0.989,0.558,0.558,0.153,0.153,0.769,0.822,0,1 +0.667,0.251,0.699,0.699,0,0,0.849,0.849,0.849,0,0,0,0,0,0,0,0,0.00852,0.00852,0.405,0.573,0.413,1,0.646,0.706,0.646,0.646,0.0862,0.0862,0.428,0.458,0.333,1 +1,0.829,0.743,0.743,0,0,0.815,0.815,0.815,0.0189,0.0239,0,0,0,0,0,0,0.00284,0.00284,0.743,0.743,0.578,1,0.744,0.43,0.744,0.744,0.0531,0.0531,0.384,0.411,0,1 +1,0.62,0.788,0.788,0,0,0.798,0.798,0.798,0.0206,0,0,0,0,0,0,0,0.00852,0.00852,0.611,0.621,0.713,1,0.793,0.27,0.793,0.793,0.0265,0.0265,0.321,0.344,0.333,1 +1,0.307,0.765,0.765,0,0,0.781,0.781,0.781,0.0108,0,0,0,0,0,0,0,0.00284,0.00284,0.427,0.533,0.676,1,0.842,0.117,0.842,0.842,0.0199,0.0199,0.271,0.29,0.667,1 +1,0.203,0.654,0.654,0,0,0.748,0.748,0.748,0,0,0,0,0,0,0,0,0,0,0.39,0.508,0.409,1,0.735,0.0799,0.735,0.735,0.0199,0.0199,0.151,0.162,0.667,1 +1,0.0495,0.555,0.555,0,0,0.697,0.697,0.697,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.465,0.177,1,0.637,0.043,0.637,0.637,0.0199,0.0199,0.151,0.162,1,1 +1,0.0495,0.444,0.444,0,0,0.68,0.68,0.68,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.465,0.0727,1,0.431,0.0246,0.431,0.431,0.0199,0.0199,0.151,0.162,1,1 +1,0.0495,0.41,0.41,0,0,0.663,0.663,0.663,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0354,1,0.225,0.00614,0.225,0.225,0.0199,0.0199,0.183,0.196,1,1 +1,0.0495,0.41,0.41,0,0,0.646,0.646,0.646,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0177,1,0.186,0.00614,0.186,0.186,0.0199,0.0199,0.151,0.162,1,1 +1,0.0495,0.399,0.399,0,0,0.629,0.629,0.629,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0138,1,0.147,0.0123,0.147,0.147,0.0265,0.0265,0.183,0.196,1,1 +1,0.0495,0.366,0.366,0,0,0.612,0.612,0.612,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0216,1,0.157,0.043,0.157,0.157,0.0531,0.0531,0.296,0.317,1,1 +1,0.0495,0.399,0.399,0,0,0.612,0.612,0.612,0,0,0,0,0,0,0,0.00537,0,0.00537,0.258,0.465,0.0354,1,0.176,0.0737,0.176,0.176,0.0995,0.0995,0.422,0.452,1,1 +1,0.236,0.477,0.477,0,0,0.646,0.646,0.646,0,0,0,0,0,0,0,0.0426,0,0.0426,0.404,0.522,0.057,1,0.255,0.178,0.255,0.255,0.172,0.172,0.359,0.384,0.333,1 +0.667,0.295,0.521,0.521,0,0,0.68,0.68,0.68,0,0,0,0,0,0,0,0.0722,0,0.0722,0.433,0.571,0.0786,1,0.323,0.283,0.323,0.323,0.292,0.292,0.151,0.162,0,1 +0.667,0.301,0.377,0.377,0,0,0.697,0.697,0.697,0,0,0,0,0,0,0,0.0566,0,0.0566,0.337,0.581,0.0963,1,0.323,0.27,0.323,0.323,0.557,0.557,0.151,0.162,0,1 +0.333,0.174,0.255,0.255,0,0,0.697,0.697,0.697,0,0,0,0,0,0,0,0,0,0,0.257,0.523,0.114,1,0.313,0.252,0.313,0.313,0.803,0.803,0.12,0.128,0,1 +0,0.0495,0.266,0.266,0,0,0.68,0.68,0.68,0,0,0,0,0,0,0,0,0.00568,0.00568,0.258,0.465,0.128,1,0.323,0.27,0.323,0.323,0.842,0.842,0.0945,0.101,0,1 +0,0.0495,0.277,0.277,0,0,0.68,0.68,0.68,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.142,1,0.323,0.283,0.323,0.323,0.803,0.803,0.0882,0.0944,0,1 +0,0.0495,0.266,0.266,0,0,0.714,0.714,0.714,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.465,0.149,1,0.313,0.258,0.313,0.313,0.796,0.796,0.0882,0.0944,0,1 +0,0.0495,0.311,0.311,0,0,0.714,0.714,0.714,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.169,1,0.313,0.233,0.313,0.313,0.597,0.597,0.0882,0.0944,0,1 +0.333,0.159,0.344,0.344,0,0,0.714,0.714,0.714,0,0,0,0,0,0,0,0,0,0,0.286,0.528,0.179,1,0.313,0.301,0.313,0.313,0.497,0.497,0.151,0.162,0,1 +0.667,0.274,0.355,0.355,0,0,0.697,0.697,0.697,0,0,0,0,0,0,0,0,0,0,0.323,0.611,0.2,1,0.323,0.362,0.323,0.323,0.405,0.405,0.365,0.391,0,1 +0.667,0.294,0.433,0.433,0,0,0.748,0.748,0.748,0,0,0,0,0,0,0,0,0,0,0.374,0.631,0.25,1,0.441,0.676,0.441,0.441,0.245,0.245,0.794,0.849,0,1 +0.667,0.35,0.588,0.588,0,0,0.815,0.815,0.815,0,0,0,0,0,0,0,0.0423,0,0.0423,0.478,0.67,0.307,1,0.558,0.989,0.558,0.558,0.153,0.153,0.769,0.822,0,1 +0.667,0.453,0.699,0.699,0,0,0.849,0.849,0.849,0,0,0.0183,0.000702,0,0,0,0.0184,0.00568,0.0241,0.552,0.68,0.413,1,0.646,0.706,0.646,0.646,0.0862,0.0862,0.428,0.458,0,1 +0.667,0.569,0.743,0.743,0,0,0.815,0.815,0.815,0,0,0,0.0203,0,0,0,0.0279,0.00852,0.0364,0.581,0.65,0.578,1,0.744,0.43,0.744,0.744,0.0531,0.0531,0.384,0.411,0,1 +1,0.905,0.788,0.788,0,0,0.798,0.798,0.798,0,0,0,0,0.33,0.33,0,0.0653,0.017,0.0824,0.788,0.698,0.713,1,0.793,0.27,0.793,0.793,0.0265,0.0265,0.321,0.344,0,1 +1,0.564,0.765,0.765,0,0,0.781,0.781,0.781,0,0,0,0,0.0367,0.0367,0,0,0.00284,0.00284,0.596,0.601,0.676,1,0.842,0.117,0.842,0.842,0.0199,0.0199,0.271,0.29,0.333,1 +1,0.203,0.654,0.654,0,0,0.748,0.748,0.748,0,0,0,0,0,0,0,0,0.00852,0.00852,0.39,0.508,0.409,1,0.735,0.0799,0.735,0.735,0.0199,0.0199,0.151,0.162,0.667,1 +1,0.0495,0.555,0.555,0,0,0.697,0.697,0.697,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.177,1,0.637,0.043,0.637,0.637,0.0199,0.0199,0.151,0.162,1,1 +1,0.0495,0.444,0.444,0,0,0.68,0.68,0.68,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0727,1,0.431,0.0246,0.431,0.431,0.0199,0.0199,0.151,0.162,1,1 +1,0.0495,0.41,0.41,0,0,0.663,0.663,0.663,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0354,1,0.225,0.00614,0.225,0.225,0.0199,0.0199,0.183,0.196,1,1 +1,0.0495,0.41,0.41,0,0,0.646,0.646,0.646,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0177,1,0.186,0.00614,0.186,0.186,0.0199,0.0199,0.151,0.162,1,1 +1,0.0495,0.399,0.399,0,0,0.629,0.629,0.629,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0138,1,0.147,0.0123,0.147,0.147,0.0265,0.0265,0.183,0.196,1,1 +1,0.0495,0.366,0.366,0,0,0.612,0.612,0.612,0,0,0,0,0,0,0,0.00272,0,0.00272,0.258,0.465,0.0216,1,0.157,0.043,0.157,0.157,0.0531,0.0531,0.296,0.317,1,1 +1,0.0798,0.399,0.399,0,0,0.612,0.612,0.612,0,0,0,0,0,0,0,0.0452,0,0.0452,0.305,0.474,0.0354,1,0.176,0.0737,0.176,0.176,0.0995,0.0995,0.422,0.452,0.667,1 +0.667,0.236,0.477,0.477,0,0,0.646,0.646,0.646,0,0,0,0,0,0,0.0353,0.0183,0,0.0537,0.404,0.522,0.057,1,0.255,0.178,0.255,0.255,0.172,0.172,0.359,0.384,0,1 +0.667,0.295,0.521,0.521,0,0,0.68,0.68,0.68,0,0,0,0,0,0,0.0265,0.0176,0,0.0441,0.433,0.571,0.0786,1,0.323,0.283,0.323,0.323,0.292,0.292,0.151,0.162,0,1 +0.333,0.175,0.377,0.377,0,0,0.697,0.697,0.697,0,0,0,0,0,0,0,0.0303,0,0.0303,0.298,0.523,0.0963,1,0.323,0.27,0.323,0.323,0.557,0.557,0.151,0.162,0,1 +0.333,0.174,0.255,0.255,0,0,0.697,0.697,0.697,0,0,0,0,0,0,0,0.0294,0.00568,0.0351,0.257,0.523,0.114,1,0.313,0.252,0.313,0.313,0.803,0.803,0.12,0.128,0,1 +0.333,0.17,0.266,0.266,0,0,0.68,0.68,0.68,0,0,0,0,0,0,0,0.0127,0.00852,0.0213,0.261,0.523,0.128,1,0.323,0.27,0.323,0.323,0.842,0.842,0.0945,0.101,0,1 +0.333,0.164,0.277,0.277,0,0.0366,0.68,0.68,0.68,0,0,0,0,0,0,0,0.0114,0.00852,0.0199,0.264,0.528,0.142,1,0.323,0.283,0.323,0.323,0.803,0.803,0.0882,0.0944,0,1 +0.667,0.271,0.266,0.266,0,0,0.714,0.714,0.714,0,0,0,0,0,0,0,0,0.00568,0.00568,0.263,0.601,0.149,1,0.313,0.258,0.313,0.313,0.796,0.796,0.0882,0.0944,0,1 +0.667,0.159,0.311,0.311,0,0,0.714,0.714,0.714,0,0,0,0,0,0,0,0,0.0142,0.0142,0.275,0.533,0.169,1,0.313,0.233,0.313,0.313,0.597,0.597,0.0882,0.0944,0.333,1 +0.333,0.159,0.344,0.344,0,0,0.714,0.714,0.714,0,0,0,0,0,0,0,0.0331,0,0.0331,0.286,0.528,0.179,1,0.313,0.301,0.313,0.313,0.497,0.497,0.151,0.162,0,1 +0.667,0.274,0.355,0.355,0,0,0.697,0.697,0.697,0,0,0,0,0,0,0,0.0209,0.0114,0.0323,0.323,0.611,0.2,1,0.323,0.362,0.323,0.323,0.405,0.405,0.365,0.391,0,1 +0.667,0.294,0.433,0.433,0,0,0.748,0.748,0.748,0,0,0,0,0,0,0,0.0272,0.00568,0.0328,0.374,0.631,0.25,1,0.441,0.676,0.441,0.441,0.245,0.245,0.794,0.849,0,1 +0.667,0.35,0.588,0.588,0,0,0.815,0.815,0.815,0.0119,0.0239,0,0,0,0,0.0249,0.0197,0.017,0.0617,0.478,0.67,0.307,1,0.558,0.989,0.558,0.558,0.153,0.153,0.769,0.822,0,1 +0.667,0.453,0.699,0.699,0,0,0.849,0.849,0.849,0.0248,0,0,0,0,0,0,0.0153,0,0.0153,0.552,0.68,0.413,1,0.646,0.706,0.646,0.646,0.0862,0.0862,0.428,0.458,0,1 +1,0.829,0.743,0.743,0,0,0.815,0.815,0.815,0.00848,0.0175,0,0,0,0,0,0.026,0.00284,0.0288,0.743,0.743,0.578,1,0.744,0.43,0.744,0.744,0.0531,0.0531,0.384,0.411,0,1 +1,0.905,0.788,0.788,0,0,0.798,0.798,0.798,0.0262,0.0302,0,0,0,0,0,0.0274,0,0.0274,0.788,0.698,0.713,1,0.793,0.27,0.793,0.793,0.0265,0.0265,0.321,0.344,0,1 +1,0.0495,0.765,0.765,0,0,0.781,0.781,0.781,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.676,1,0.842,0.117,0.842,0.842,0.0199,0.0199,0.271,0.29,1,1 +1,0.0495,0.654,0.654,0,0,0.748,0.748,0.748,0,0,0,0,0,0,0,0,0.0199,0.0199,0.258,0.465,0.409,1,0.735,0.0799,0.735,0.735,0.0199,0.0199,0.151,0.162,1,1 +1,0.0495,0.555,0.555,0,0,0.697,0.697,0.697,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.177,1,0.637,0.043,0.637,0.637,0.0199,0.0199,0.151,0.162,1,1 +1,0.0743,0.444,0.444,0,0,0.68,0.68,0.68,0,0,0,0,0,0,0,0,0,0,0.32,0.484,0.0727,1,0.431,0.0246,0.431,0.431,0.0199,0.0199,0.151,0.162,0.667,1 +1,0.0578,0.41,0.41,0,0,0.663,0.663,0.663,0,0,0,0,0,0,0,0,0,0,0.309,0.474,0.0354,1,0.225,0.00614,0.225,0.225,0.0199,0.0199,0.183,0.196,0.667,1 +1,0.0495,0.41,0.41,0,0,0.646,0.646,0.646,0,0,0,0,0,0,0,0,0,0,0.309,0.469,0.0177,1,0.186,0.00614,0.186,0.186,0.0199,0.0199,0.151,0.162,0.667,1 +1,0.0495,0.399,0.399,0,0.0731,0.629,0.629,0.629,0,0,0,0,0,0,0,0.0269,0,0.0269,0.305,0.464,0.0138,1,0.147,0.0123,0.147,0.147,0.0265,0.0265,0.183,0.196,0.667,1 +0.667,0.0495,0.366,0.366,0,0,0.612,0.612,0.612,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0216,1,0.157,0.043,0.157,0.157,0.0531,0.0531,0.296,0.317,0.667,1 +0.667,0.0495,0.399,0.399,0,0,0.612,0.612,0.612,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0354,1,0.176,0.0737,0.176,0.176,0.0995,0.0995,0.422,0.452,0.667,1 +0.667,0.0495,0.477,0.477,0,0,0.646,0.646,0.646,0,0,0,0,0,0,0.0352,0.0214,0.00284,0.0594,0.258,0.465,0.057,1,0.255,0.178,0.255,0.255,0.172,0.172,0.359,0.384,0.667,1 +0.667,0.172,0.521,0.521,0,0,0.68,0.68,0.68,0,0,0,0,0,0,0.0176,0.017,0,0.0346,0.346,0.518,0.0786,1,0.323,0.283,0.323,0.323,0.292,0.292,0.151,0.162,0.333,1 +0.667,0.301,0.377,0.377,0,0,0.697,0.697,0.697,0,0,0,0,0,0,0,0.0333,0,0.0333,0.337,0.581,0.0963,1,0.323,0.27,0.323,0.323,0.557,0.557,0.151,0.162,0,1 +0.667,0.299,0.255,0.255,0,0,0.697,0.697,0.697,0,0,0,0,0,0,0,0.023,0,0.023,0.256,0.581,0.114,1,0.313,0.252,0.313,0.313,0.803,0.803,0.12,0.128,0,1 +0.333,0.17,0.266,0.266,0,0,0.68,0.68,0.68,0,0,0,0,0,0,0,0,0.00284,0.00284,0.261,0.523,0.128,1,0.323,0.27,0.323,0.323,0.842,0.842,0.0945,0.101,0,1 +0.333,0.164,0.277,0.277,0,0.0366,0.68,0.68,0.68,0,0,0,0,0,0,0,0.0178,0.0114,0.0291,0.264,0.528,0.142,1,0.323,0.283,0.323,0.323,0.803,0.803,0.0882,0.0944,0,1 +0.667,0.16,0.266,0.266,0,0,0.714,0.714,0.714,0,0,0,0,0,0,0,0,0.00284,0.00284,0.261,0.533,0.149,1,0.313,0.258,0.313,0.313,0.796,0.796,0.0882,0.0944,0.333,1 +0,0.0495,0.311,0.311,0,0,0.714,0.714,0.714,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.169,1,0.313,0.233,0.313,0.313,0.597,0.597,0.0882,0.0944,0,1 +0,0.0495,0.344,0.344,0,0,0.714,0.714,0.714,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.179,1,0.313,0.301,0.313,0.313,0.497,0.497,0.151,0.162,0,1 +0.333,0.162,0.355,0.355,0,0,0.697,0.697,0.697,0,0,0,0,0,0,0,0,0.017,0.017,0.29,0.538,0.2,1,0.323,0.362,0.323,0.323,0.405,0.405,0.365,0.391,0,1 +0.667,0.294,0.433,0.433,0,0.0366,0.748,0.748,0.748,0,0,0,0,0,0,0,0,0,0,0.374,0.631,0.25,1,0.441,0.676,0.441,0.441,0.245,0.245,0.794,0.849,0,1 +0.667,0.35,0.588,0.588,0,0,0.815,0.815,0.815,0,0,0,0,0,0,0,0,0,0,0.478,0.67,0.307,1,0.558,0.989,0.558,0.558,0.153,0.153,0.769,0.822,0,1 +1,0.655,0.699,0.699,0,0,0.849,0.849,0.849,0,0,0,0,0,0,0,0,0.00568,0.00568,0.699,0.788,0.413,1,0.646,0.706,0.646,0.646,0.0862,0.0862,0.428,0.458,0,1 +1,0.829,0.743,0.743,0,0,0.815,0.815,0.815,0,0,0,0,0,0,0,0,0.0114,0.0114,0.743,0.743,0.578,1,0.744,0.43,0.744,0.744,0.0531,0.0531,0.384,0.411,0,1 +1,0.905,0.788,0.788,0,0,0.798,0.798,0.798,0,0,0,0,0,0,0,0.0166,0.0199,0.0365,0.788,0.698,0.713,1,0.793,0.27,0.793,0.793,0.0265,0.0265,0.321,0.344,0,1 +1,0.307,0.765,0.765,0,0,0.781,0.781,0.781,0,0,0,0,0,0,0,0,0,0,0.427,0.533,0.676,1,0.842,0.117,0.842,0.842,0.0199,0.0199,0.271,0.29,0.667,1 +1,0.203,0.654,0.654,0,0,0.748,0.748,0.748,0,0,0,0,0,0,0,0,0,0,0.39,0.508,0.409,1,0.735,0.0799,0.735,0.735,0.0199,0.0199,0.151,0.162,0.667,1 +1,0.116,0.555,0.555,0,0,0.697,0.697,0.697,0,0,0,0,0,0,0,0,0,0,0.357,0.489,0.177,1,0.637,0.043,0.637,0.637,0.0199,0.0199,0.151,0.162,0.667,1 +1,0.0495,0.444,0.444,0,0,0.68,0.68,0.68,0,0,0,0,0,0,0,0,0.00568,0.00568,0.258,0.465,0.0865,1,0.431,0.0246,0.431,0.431,0.0199,0.0199,0.151,0.162,1,1 +1,0.0495,0.41,0.41,0,0,0.663,0.663,0.663,0,0,0,0,0,0,0,0,0.00568,0.00568,0.258,0.465,0.0432,1,0.225,0.00614,0.225,0.225,0.0199,0.0199,0.183,0.196,1,1 +1,0.0495,0.41,0.41,0,0,0.646,0.646,0.646,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0236,1,0.186,0.00614,0.186,0.186,0.0199,0.0199,0.151,0.162,1,1 +1,0.0495,0.399,0.399,0,0,0.629,0.629,0.629,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0157,1,0.147,0.0123,0.147,0.147,0.0265,0.0265,0.183,0.196,1,1 +1,0.0495,0.366,0.366,0,0,0.612,0.612,0.612,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0216,1,0.157,0.043,0.157,0.157,0.0531,0.0531,0.296,0.317,1,1 +1,0.0495,0.399,0.399,0,0,0.612,0.612,0.612,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0275,1,0.176,0.0737,0.176,0.176,0.0995,0.0995,0.422,0.452,1,1 +1,0.0495,0.477,0.477,0,0,0.646,0.646,0.646,0,0,0,0,0,0,0,0.00257,0,0.00257,0.258,0.465,0.0472,1,0.255,0.178,0.255,0.255,0.172,0.172,0.359,0.384,1,1 +1,0.172,0.521,0.521,0,0,0.68,0.68,0.68,0,0,0,0,0,0,0,0.0383,0,0.0383,0.346,0.518,0.0845,1,0.323,0.283,0.323,0.323,0.292,0.292,0.151,0.162,0.667,1 +1,0.175,0.377,0.377,0,0,0.697,0.697,0.697,0,0,0,0,0,0,0,0,0,0,0.298,0.523,0.14,1,0.323,0.27,0.323,0.323,0.557,0.557,0.151,0.162,0.667,1 +0.667,0.0495,0.255,0.255,0,0,0.697,0.697,0.697,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.185,1,0.313,0.252,0.313,0.313,0.803,0.803,0.12,0.128,0.667,1 +0.667,0.17,0.266,0.266,0,0.0366,0.68,0.68,0.68,0,0,0,0,0,0,0,0,0,0,0.261,0.523,0.22,1,0.323,0.27,0.323,0.323,0.842,0.842,0.0945,0.101,0.333,1 +0.667,0.279,0.277,0.277,0,0,0.68,0.68,0.68,0,0,0,0,0,0,0,0,0.0114,0.0114,0.271,0.591,0.242,1,0.323,0.283,0.323,0.323,0.803,0.803,0.0882,0.0944,0,1 +0.667,0.271,0.266,0.266,0,0,0.714,0.714,0.714,0,0,0,0,0,0,0,0,0,0,0.263,0.601,0.259,1,0.313,0.258,0.313,0.313,0.796,0.796,0.0882,0.0944,0,1 +0.667,0.269,0.311,0.311,0,0,0.714,0.714,0.714,0,0,0,0,0,0,0,0,0,0,0.293,0.601,0.307,1,0.313,0.233,0.313,0.313,0.597,0.597,0.0882,0.0944,0,1 +0.667,0.269,0.344,0.344,0,0,0.714,0.714,0.714,0,0,0,0,0,0,0,0,0,0,0.315,0.591,0.35,1,0.313,0.301,0.313,0.313,0.497,0.497,0.151,0.162,0,1 +0.667,0.274,0.355,0.355,0,0,0.697,0.697,0.697,0,0,0,0,0,0,0,0,0.00568,0.00568,0.323,0.611,0.385,1,0.323,0.362,0.323,0.323,0.405,0.405,0.365,0.391,0,1 +0.667,0.294,0.433,0.433,0,0,0.748,0.748,0.748,0,0,0,0,0,0,0,0,0.00284,0.00284,0.374,0.631,0.405,1,0.441,0.676,0.441,0.441,0.245,0.245,0.794,0.849,0,1 +0.667,0.35,0.588,0.588,0,0,0.815,0.815,0.815,0,0,0,0,0,0,0,0,0.017,0.017,0.478,0.67,0.419,1,0.558,0.989,0.558,0.558,0.153,0.153,0.769,0.822,0,1 +0.667,0.453,0.699,0.699,0,0,0.849,0.849,0.849,0,0,0,0,0,0,0,0,0.00284,0.00284,0.552,0.68,0.493,1,0.646,0.706,0.646,0.646,0.0862,0.0862,0.428,0.458,0,1 +0.667,0.569,0.743,0.743,0,0,0.815,0.815,0.815,0,0,0,0,0,0,0,0,0.00568,0.00568,0.581,0.65,0.649,1,0.744,0.43,0.744,0.744,0.0531,0.0531,0.384,0.411,0,1 +1,0.905,0.788,0.788,0,0,0.798,0.798,0.798,0,0,0.0336,0.00596,0,0,0,0,0,0,0.788,0.698,0.763,1,0.793,0.27,0.793,0.793,0.0265,0.0265,0.321,0.344,0,1 +1,0.821,0.765,0.765,0,0,0.781,0.781,0.781,0,0,0.0331,0.0151,0.055,0.055,0,0.0123,0.00284,0.0152,0.765,0.669,0.704,1,0.842,0.117,0.842,0.842,0.0199,0.0199,0.271,0.29,0,1 +1,0.356,0.654,0.654,0,0,0.748,0.748,0.748,0,0,0.0511,0,0.128,0.128,0,0,0.00284,0.00284,0.522,0.551,0.444,1,0.735,0.0799,0.735,0.735,0.0199,0.0199,0.151,0.162,0.333,1 +1,0.183,0.555,0.555,0,0,0.697,0.697,0.697,0,0,0.0297,0,0,0,0,0.00266,0.0114,0.014,0.456,0.512,0.202,1,0.637,0.043,0.637,0.637,0.0199,0.0199,0.151,0.162,0.333,1 +1,0.099,0.444,0.444,0,0,0.68,0.68,0.68,0,0,0,0,0,0,0,0.0239,0.00852,0.0324,0.382,0.502,0.0865,1,0.431,0.0246,0.431,0.431,0.0199,0.0199,0.151,0.162,0.333,1 +1,0.0495,0.41,0.41,0,0,0.663,0.663,0.663,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0432,1,0.225,0.00614,0.225,0.225,0.0199,0.0199,0.183,0.196,1,1 +1,0.0495,0.41,0.41,0,0,0.646,0.646,0.646,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0236,1,0.186,0.00614,0.186,0.186,0.0199,0.0199,0.151,0.162,1,1 +1,0.0495,0.399,0.399,0,0,0.629,0.629,0.629,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0157,1,0.147,0.0123,0.147,0.147,0.0265,0.0265,0.183,0.196,1,1 +1,0.0495,0.366,0.366,0,0,0.612,0.612,0.612,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0216,1,0.157,0.043,0.157,0.157,0.0531,0.0531,0.296,0.317,1,1 +1,0.0798,0.399,0.399,0,0,0.612,0.612,0.612,0,0,0,0,0,0,0,0,0,0,0.305,0.474,0.0275,1,0.176,0.0737,0.176,0.176,0.0995,0.0995,0.422,0.452,0.667,1 +1,0.0495,0.477,0.477,0,0,0.646,0.646,0.646,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0472,1,0.255,0.178,0.255,0.255,0.172,0.172,0.359,0.384,1,1 +1,0.172,0.521,0.521,0,0,0.68,0.68,0.68,0,0,0,0,0,0,0,0,0,0,0.346,0.518,0.0845,1,0.323,0.283,0.323,0.323,0.292,0.292,0.151,0.162,0.667,1 +1,0.175,0.377,0.377,0,0,0.697,0.697,0.697,0,0,0,0,0,0,0,0,0,0,0.298,0.523,0.14,1,0.323,0.27,0.323,0.323,0.557,0.557,0.151,0.162,0.667,1 +1,0.174,0.255,0.255,0,0,0.697,0.697,0.697,0,0,0,0,0,0,0,0,0.00284,0.00284,0.257,0.523,0.185,1,0.313,0.252,0.313,0.313,0.803,0.803,0.12,0.128,0.667,1 +1,0.17,0.266,0.266,0,0,0.68,0.68,0.68,0,0,0,0,0,0,0,0,0.0142,0.0142,0.261,0.523,0.22,1,0.323,0.27,0.323,0.323,0.842,0.842,0.0945,0.101,0.667,1 +1,0.164,0.277,0.277,0,0,0.68,0.68,0.68,0,0,0,0,0,0,0,0,0.0255,0.0255,0.264,0.528,0.242,1,0.323,0.283,0.323,0.323,0.803,0.803,0.0882,0.0944,0.667,1 +0.667,0.16,0.266,0.266,0,0,0.714,0.714,0.714,0,0,0,0,0,0,0,0,0.00568,0.00568,0.261,0.533,0.259,1,0.313,0.258,0.313,0.313,0.796,0.796,0.0882,0.0944,0.333,1 +0.333,0.0495,0.311,0.311,0,0.0366,0.714,0.714,0.714,0,0,0,0,0,0,0,0,0.00568,0.00568,0.258,0.465,0.307,1,0.313,0.233,0.313,0.313,0.597,0.597,0.0882,0.0944,0.333,1 +0.667,0.159,0.344,0.344,0,0,0.714,0.714,0.714,0,0,0,0,0,0,0,0,0.00568,0.00568,0.286,0.528,0.35,1,0.313,0.301,0.313,0.313,0.497,0.497,0.151,0.162,0.333,1 +0.667,0.162,0.355,0.355,0,0,0.697,0.697,0.697,0,0,0,0,0,0,0,0,0.00852,0.00852,0.29,0.538,0.385,1,0.323,0.362,0.323,0.323,0.405,0.405,0.365,0.391,0.333,1 +0.667,0.294,0.433,0.433,0,0,0.748,0.748,0.748,0,0,0,0,0,0,0,0,0,0,0.374,0.631,0.405,1,0.441,0.676,0.441,0.441,0.245,0.245,0.794,0.849,0,1 +0.667,0.35,0.588,0.588,0,0,0.815,0.815,0.815,0,0,0,0,0,0,0,0.0209,0,0.0209,0.478,0.67,0.419,1,0.558,0.989,0.558,0.558,0.153,0.153,0.769,0.822,0,1 +1,0.655,0.699,0.699,0,0,0.849,0.849,0.849,0,0,0,0,0,0,0,0.0536,0.0341,0.0877,0.699,0.788,0.493,1,0.646,0.706,0.646,0.646,0.0862,0.0862,0.428,0.458,0,1 +0.667,0.569,0.743,0.743,0,0,0.815,0.815,0.815,0,0,0,0,0,0,0,0,0.00852,0.00852,0.581,0.65,0.649,1,0.744,0.43,0.744,0.744,0.0531,0.0531,0.384,0.411,0,1 +0.667,0.62,0.788,0.788,0,0,0.798,0.798,0.798,0,0,0,0,0,0,0,0,0.00568,0.00568,0.611,0.621,0.763,1,0.793,0.27,0.793,0.793,0.0265,0.0265,0.321,0.344,0,1 +0.667,0.564,0.765,0.765,0,0,0.781,0.781,0.781,0,0,0,0,0,0,0,0,0,0,0.596,0.601,0.704,1,0.842,0.117,0.842,0.842,0.0199,0.0199,0.271,0.29,0,1 +1,0.356,0.654,0.654,0,0,0.748,0.748,0.748,0,0,0,0,0,0,0,0,0.00284,0.00284,0.522,0.551,0.444,1,0.735,0.0799,0.735,0.735,0.0199,0.0199,0.151,0.162,0.333,1 +1,0.0495,0.555,0.555,0,0,0.697,0.697,0.697,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.202,1,0.637,0.043,0.637,0.637,0.0199,0.0199,0.151,0.162,1,1 +1,0.0495,0.444,0.444,0,0,0.68,0.68,0.68,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0727,1,0.431,0.0246,0.431,0.431,0.0199,0.0199,0.151,0.162,1,1 +1,0.0495,0.41,0.41,0,0,0.663,0.663,0.663,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0354,1,0.225,0.00614,0.225,0.225,0.0199,0.0199,0.183,0.196,1,1 +1,0.0495,0.41,0.41,0,0,0.646,0.646,0.646,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0177,1,0.186,0.00614,0.186,0.186,0.0199,0.0199,0.151,0.162,1,1 +1,0.0495,0.399,0.399,0,0,0.629,0.629,0.629,0,0,0,0,0,0,0,0.00261,0,0.00261,0.258,0.465,0.0138,1,0.147,0.0123,0.147,0.147,0.0265,0.0265,0.183,0.196,1,1 +1,0.0506,0.366,0.366,0,0,0.612,0.612,0.612,0,0,0,0,0,0,0,0.0463,0,0.0463,0.294,0.469,0.0216,1,0.157,0.043,0.157,0.157,0.0531,0.0531,0.296,0.317,0.667,1 +1,0.0798,0.399,0.399,0,0,0.612,0.612,0.612,0,0,0,0,0,0,0,0.00247,0,0.00247,0.305,0.474,0.0354,1,0.176,0.0737,0.176,0.176,0.0995,0.0995,0.422,0.452,0.667,1 +0.667,0.236,0.477,0.477,0,0,0.646,0.646,0.646,0,0,0,0,0,0,0,0.0148,0,0.0148,0.404,0.522,0.057,1,0.255,0.178,0.255,0.255,0.172,0.172,0.359,0.384,0,1 +0,0.0495,0.521,0.521,0,0,0.68,0.68,0.68,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0786,1,0.323,0.283,0.323,0.323,0.292,0.292,0.151,0.162,0,1 +0,0.0495,0.377,0.377,0,0,0.697,0.697,0.697,0,0,0,0,0,0,0,0,0.0142,0.0142,0.258,0.465,0.0963,1,0.323,0.27,0.323,0.323,0.557,0.557,0.151,0.162,0,1 +0,0.0495,0.255,0.255,0,0,0.697,0.697,0.697,0,0,0,0,0,0,0,0,0.00568,0.00568,0.258,0.465,0.114,1,0.313,0.252,0.313,0.313,0.803,0.803,0.12,0.128,0,1 +0,0.0495,0.266,0.266,0,0,0.68,0.68,0.68,0,0,0,0,0,0,0,0.0141,0.00284,0.017,0.258,0.465,0.128,1,0.323,0.27,0.323,0.323,0.842,0.842,0.0945,0.101,0,1 +0.667,0.279,0.277,0.277,0,0,0.68,0.68,0.68,0,0,0,0,0,0,0,0.0431,0,0.0431,0.271,0.591,0.142,1,0.323,0.283,0.323,0.323,0.803,0.803,0.0882,0.0944,0,1 +0.667,0.271,0.266,0.266,0,0,0.714,0.714,0.714,0,0,0.0369,0.000702,0,0,0,0.0164,0,0.0164,0.263,0.601,0.149,1,0.313,0.258,0.313,0.313,0.796,0.796,0.0882,0.0944,0,1 +0.333,0.159,0.311,0.311,0,0,0.714,0.714,0.714,0,0,0.0469,0.0203,0,0,0,0,0,0,0.275,0.533,0.169,1,0.313,0.233,0.313,0.313,0.597,0.597,0.0882,0.0944,0,1 +0.333,0.159,0.344,0.344,0,0,0.714,0.714,0.714,0,0,0.037,0,0.33,0.33,0,0,0.00284,0.00284,0.286,0.528,0.179,1,0.313,0.301,0.313,0.313,0.497,0.497,0.151,0.162,0,1 +0.333,0.162,0.355,0.355,0,0,0.697,0.697,0.697,0,0,0.0292,0,0.0367,0.0367,0,0,0,0,0.29,0.538,0.2,1,0.323,0.362,0.323,0.323,0.405,0.405,0.365,0.391,0,1 +0.333,0.172,0.433,0.433,0,0,0.748,0.748,0.748,0,0,0.0176,0,0,0,0,0,0.00284,0.00284,0.316,0.548,0.25,1,0.441,0.676,0.441,0.441,0.245,0.245,0.794,0.849,0,1 +0.333,0.2,0.588,0.588,0,0,0.815,0.815,0.815,0.00416,0.0175,0,0,0,0,0,0,0.00568,0.00568,0.368,0.568,0.307,1,0.558,0.989,0.558,0.558,0.153,0.153,0.769,0.822,0,1 +1,0.655,0.699,0.699,0,0,0.849,0.849,0.849,0.0235,0.078,0,0,0,0,0,0,0.00852,0.00852,0.699,0.788,0.413,1,0.646,0.706,0.646,0.646,0.0862,0.0862,0.428,0.458,0,1 +1,0.829,0.743,0.743,0,0,0.815,0.815,0.815,0.0186,0,0.0358,0.000702,0,0,0,0.0339,0.00568,0.0396,0.743,0.743,0.578,1,0.744,0.43,0.744,0.744,0.0531,0.0531,0.384,0.411,0,1 +1,0.905,0.788,0.788,0,0,0.798,0.798,0.798,0,0,0.00341,0.0151,0.055,0.055,0,0.0154,0.00852,0.0239,0.788,0.698,0.713,1,0.793,0.27,0.793,0.793,0.0265,0.0265,0.321,0.344,0,1 +1,0.307,0.765,0.765,0,0,0.781,0.781,0.781,0,0,0,0,0.128,0.128,0,0,0,0,0.427,0.533,0.676,1,0.842,0.117,0.842,0.842,0.0199,0.0199,0.271,0.29,0.667,1 +1,0.203,0.654,0.654,0,0,0.748,0.748,0.748,0,0,0,0,0,0,0,0,0,0,0.39,0.508,0.409,1,0.735,0.0799,0.735,0.735,0.0199,0.0199,0.151,0.162,0.667,1 +1,0.0495,0.555,0.555,0,0,0.697,0.697,0.697,0,0,0,0,0,0,0,0,0.00568,0.00568,0.258,0.465,0.177,1,0.637,0.043,0.637,0.637,0.0199,0.0199,0.151,0.162,1,1 +1,0.0495,0.444,0.444,0,0,0.68,0.68,0.68,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0727,1,0.431,0.0246,0.431,0.431,0.0199,0.0199,0.151,0.162,1,1 +1,0.0495,0.41,0.41,0,0,0.663,0.663,0.663,0,0,0,0,0,0,0,0,0.00852,0.00852,0.258,0.465,0.0354,1,0.225,0.00614,0.225,0.225,0.0199,0.0199,0.183,0.196,1,1 +1,0.0495,0.41,0.41,0,0,0.646,0.646,0.646,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0177,1,0.186,0.00614,0.186,0.186,0.0199,0.0199,0.151,0.162,1,1 +1,0.0495,0.399,0.399,0,0,0.629,0.629,0.629,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0138,1,0.147,0.0123,0.147,0.147,0.0265,0.0265,0.183,0.196,1,1 +1,0.0495,0.366,0.366,0,0,0.612,0.612,0.612,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0216,1,0.157,0.043,0.157,0.157,0.0531,0.0531,0.296,0.317,1,1 +1,0.0798,0.399,0.399,0,0.0366,0.612,0.612,0.612,0,0,0,0,0,0,0,0.00262,0,0.00262,0.305,0.474,0.0354,1,0.176,0.0737,0.176,0.176,0.0995,0.0995,0.422,0.452,0.667,1 +0.667,0.143,0.477,0.477,0,0,0.646,0.646,0.646,0,0,0,0,0,0,0,0.034,0,0.034,0.331,0.493,0.057,1,0.255,0.178,0.255,0.255,0.172,0.172,0.359,0.384,0.333,1 +0.333,0.0495,0.521,0.521,0,0,0.68,0.68,0.68,0,0,0,0,0,0,0.0382,0.0108,0,0.0491,0.258,0.465,0.0786,1,0.323,0.283,0.323,0.323,0.292,0.292,0.151,0.162,0.333,1 +0.333,0.175,0.377,0.377,0,0,0.697,0.697,0.697,0,0,0,0,0,0,0.0478,0,0,0.0478,0.298,0.523,0.0963,1,0.323,0.27,0.323,0.323,0.557,0.557,0.151,0.162,0,1 +0,0.0495,0.255,0.255,0,0,0.697,0.697,0.697,0,0,0,0,0,0,0,0,0.0114,0.0114,0.258,0.465,0.114,1,0.313,0.252,0.313,0.313,0.803,0.803,0.12,0.128,0,1 +0,0.0495,0.266,0.266,0,0,0.68,0.68,0.68,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.465,0.128,1,0.323,0.27,0.323,0.323,0.842,0.842,0.0945,0.101,0,1 +0.333,0.164,0.277,0.277,0,0,0.68,0.68,0.68,0.00359,0.0175,0,0,0,0,0,0,0.00284,0.00284,0.264,0.528,0.142,1,0.323,0.283,0.323,0.323,0.803,0.803,0.0882,0.0944,0,1 +0.333,0.16,0.266,0.266,0,0,0.714,0.714,0.714,0.0123,0.0302,0,0,0,0,0,0,0,0,0.261,0.533,0.149,1,0.313,0.258,0.313,0.313,0.796,0.796,0.0882,0.0944,0,1 +0,0.0495,0.311,0.311,0,0,0.714,0.714,0.714,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.169,1,0.313,0.233,0.313,0.313,0.597,0.597,0.0882,0.0944,0,1 +0.333,0.159,0.344,0.344,0,0,0.714,0.714,0.714,0,0,0,0,0,0,0,0,0,0,0.286,0.528,0.179,1,0.313,0.301,0.313,0.313,0.497,0.497,0.151,0.162,0,1 +0.333,0.162,0.355,0.355,0,0,0.697,0.697,0.697,0,0,0,0,0,0,0,0,0,0,0.29,0.538,0.2,1,0.323,0.362,0.323,0.323,0.405,0.405,0.365,0.391,0,1 +0.333,0.172,0.433,0.433,0,0,0.748,0.748,0.748,0,0,0,0,0,0,0,0,0.00568,0.00568,0.316,0.548,0.25,1,0.441,0.676,0.441,0.441,0.245,0.245,0.794,0.849,0,1 +0.667,0.35,0.588,0.588,0,0.0122,0.815,0.815,0.815,0,0,0,0,0,0,0,0,0,0,0.478,0.67,0.307,1,0.558,0.989,0.558,0.558,0.153,0.153,0.769,0.822,0,1 +1,0.655,0.699,0.699,0,0.0244,0.849,0.849,0.849,0,0,0,0,0,0,0,0,0.0199,0.0199,0.699,0.788,0.413,1,0.646,0.706,0.646,0.646,0.0862,0.0862,0.428,0.458,0,1 +1,0.829,0.743,0.743,0,0,0.815,0.815,0.815,0,0,0,0,0,0,0,0.013,0.0199,0.0328,0.743,0.743,0.578,1,0.744,0.43,0.744,0.744,0.0531,0.0531,0.384,0.411,0,1 +1,0.905,0.788,0.788,0,0,0.798,0.798,0.798,0,0,0.0273,0.00596,0,0,0,0.0392,0.00284,0.0421,0.788,0.698,0.713,1,0.793,0.27,0.793,0.793,0.0265,0.0265,0.321,0.344,0,1 +1,0.821,0.765,0.765,0,0,0.781,0.781,0.781,0,0,0.0242,0.00982,0.147,0.147,0,0.00909,0.0114,0.0204,0.765,0.669,0.676,1,0.842,0.117,0.842,0.842,0.0199,0.0199,0.271,0.29,0,1 +1,0.203,0.654,0.654,0,0,0.748,0.748,0.748,0,0,0.0318,0,0.0367,0.0367,0,0.00269,0.00284,0.00553,0.39,0.508,0.409,1,0.735,0.0799,0.735,0.735,0.0199,0.0199,0.151,0.162,0.667,1 +1,0.116,0.555,0.555,0,0,0.697,0.697,0.697,0,0,0,0,0,0,0,0.0161,0.0114,0.0275,0.357,0.489,0.177,1,0.637,0.043,0.637,0.637,0.0199,0.0199,0.151,0.162,0.667,1 +1,0.0495,0.444,0.444,0,0,0.68,0.68,0.68,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0727,1,0.431,0.0246,0.431,0.431,0.0199,0.0199,0.151,0.162,1,1 +1,0.0495,0.41,0.41,0,0,0.663,0.663,0.663,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0354,1,0.225,0.00614,0.225,0.225,0.0199,0.0199,0.183,0.196,1,1 +1,0.0495,0.41,0.41,0,0,0.646,0.646,0.646,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0177,1,0.186,0.00614,0.186,0.186,0.0199,0.0199,0.151,0.162,1,1 +1,0.0495,0.399,0.399,0,0,0.629,0.629,0.629,0,0,0,0,0,0,0,0.0177,0,0.0177,0.258,0.465,0.0138,1,0.147,0.0123,0.147,0.147,0.0265,0.0265,0.183,0.196,1,1 +1,0.0495,0.366,0.366,0,0,0.612,0.612,0.612,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0216,1,0.157,0.043,0.157,0.157,0.0531,0.0531,0.296,0.317,1,1 +1,0.0798,0.399,0.399,0,0,0.612,0.612,0.612,0,0,0,0,0,0,0,0.00266,0,0.00266,0.305,0.474,0.0354,1,0.176,0.0737,0.176,0.176,0.0995,0.0995,0.422,0.452,0.667,1 +0.667,0.236,0.477,0.477,0,0.0487,0.646,0.646,0.646,0,0,0,0,0,0,0,0.0213,0,0.0213,0.404,0.522,0.057,1,0.255,0.178,0.255,0.255,0.172,0.172,0.359,0.384,0,1 +0.333,0.172,0.521,0.521,0,0.134,0.68,0.68,0.68,0,0,0,0,0,0,0,0,0.00284,0.00284,0.346,0.518,0.0786,1,0.323,0.283,0.323,0.323,0.292,0.292,0.151,0.162,0,1 +0.333,0.175,0.377,0.377,0,0,0.697,0.697,0.697,0,0,0,0,0,0,0,0,0,0,0.298,0.523,0.0963,1,0.323,0.27,0.323,0.323,0.557,0.557,0.151,0.162,0,1 +0.333,0.174,0.255,0.255,0,0,0.697,0.697,0.697,0,0,0,0,0,0,0,0,0,0,0.257,0.523,0.114,1,0.313,0.252,0.313,0.313,0.803,0.803,0.12,0.128,0,1 +0.333,0.17,0.266,0.266,0,0,0.68,0.68,0.68,0,0,0,0,0,0,0,0,0.0114,0.0114,0.261,0.523,0.128,1,0.323,0.27,0.323,0.323,0.842,0.842,0.0945,0.101,0,1 +0.333,0.164,0.277,0.277,0,0,0.68,0.68,0.68,0,0,0,0,0,0,0,0,0,0,0.264,0.528,0.142,1,0.323,0.283,0.323,0.323,0.803,0.803,0.0882,0.0944,0,1 +0.333,0.16,0.266,0.266,0,0,0.714,0.714,0.714,0,0,0,0,0,0,0,0,0.00568,0.00568,0.261,0.533,0.149,1,0.313,0.258,0.313,0.313,0.796,0.796,0.0882,0.0944,0,1 +0.333,0.159,0.311,0.311,0,0,0.714,0.714,0.714,0,0,0,0,0,0,0,0,0.00568,0.00568,0.275,0.533,0.169,1,0.313,0.233,0.313,0.313,0.597,0.597,0.0882,0.0944,0,1 +0,0.0495,0.344,0.344,0,0,0.714,0.714,0.714,0,0,0,0,0,0,0,0,0.00852,0.00852,0.258,0.465,0.179,1,0.313,0.301,0.313,0.313,0.497,0.497,0.151,0.162,0,1 +0,0.0495,0.355,0.355,0,0.0366,0.697,0.697,0.697,0,0,0.0221,0,0,0,0,0,0.00284,0.00284,0.258,0.465,0.2,1,0.323,0.362,0.323,0.323,0.405,0.405,0.365,0.391,0,1 +0.667,0.294,0.433,0.433,0,0,0.748,0.748,0.748,0,0,0,0.0158,0,0,0,0,0.00284,0.00284,0.374,0.631,0.25,1,0.441,0.676,0.441,0.441,0.245,0.245,0.794,0.849,0,1 +0.667,0.35,0.588,0.588,0,0,0.815,0.815,0.815,0,0,0,0,0.33,0.33,0,0,0.00568,0.00568,0.478,0.67,0.307,1,0.558,0.989,0.558,0.558,0.153,0.153,0.769,0.822,0,1 +0.667,0.453,0.699,0.699,0,0,0.849,0.849,0.849,0,0,0,0,0.0367,0.0367,0.0508,0.0659,0,0.117,0.552,0.68,0.413,1,0.646,0.706,0.646,0.646,0.0862,0.0862,0.428,0.458,0,1 +1,0.829,0.743,0.743,0,0,0.815,0.815,0.815,0,0,0,0,0,0,0,0.0755,0.00568,0.0812,0.743,0.743,0.578,1,0.744,0.43,0.744,0.744,0.0531,0.0531,0.384,0.411,0,1 +1,0.905,0.788,0.788,0,0,0.798,0.798,0.798,0,0,0,0,0,0,0,0.0206,0.00852,0.0291,0.788,0.698,0.713,1,0.793,0.27,0.793,0.793,0.0265,0.0265,0.321,0.344,0,1 +1,0.564,0.765,0.765,0,0,0.781,0.781,0.781,0,0,0,0,0,0,0.0293,0.011,0.00284,0.0431,0.596,0.601,0.676,1,0.842,0.117,0.842,0.842,0.0199,0.0199,0.271,0.29,0.333,1 +1,0.356,0.654,0.654,0,0,0.748,0.748,0.748,0,0,0,0,0,0,0,0,0,0,0.522,0.551,0.409,1,0.735,0.0799,0.735,0.735,0.0199,0.0199,0.151,0.162,0.333,1 +1,0.116,0.555,0.555,0,0,0.697,0.697,0.697,0,0,0,0,0,0,0,0,0,0,0.357,0.489,0.177,1,0.637,0.043,0.637,0.637,0.0199,0.0199,0.151,0.162,0.667,1 +1,0.0495,0.444,0.444,0,0,0.68,0.68,0.68,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0727,1,0.431,0.0246,0.431,0.431,0.0199,0.0199,0.151,0.162,1,1 +1,0.0495,0.41,0.41,0,0,0.663,0.663,0.663,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0354,1,0.225,0.00614,0.225,0.225,0.0199,0.0199,0.183,0.196,1,1 +1,0.0495,0.41,0.41,0,0,0.646,0.646,0.646,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0177,1,0.186,0.00614,0.186,0.186,0.0199,0.0199,0.151,0.162,1,1 +1,0.0495,0.399,0.399,0,0,0.629,0.629,0.629,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0138,1,0.147,0.0123,0.147,0.147,0.0265,0.0265,0.183,0.196,1,1 +0.667,0.0495,0.366,0.366,0,0,0.612,0.612,0.612,0,0,0,0,0,0,0,0.00258,0,0.00258,0.258,0.465,0.0216,1,0.157,0.043,0.157,0.157,0.0531,0.0531,0.296,0.317,0.667,1 +0.667,0.11,0.399,0.399,0,0,0.612,0.612,0.612,0,0,0,0,0,0,0,0.0258,0,0.0258,0.352,0.482,0.0354,1,0.176,0.0737,0.176,0.176,0.0995,0.0995,0.422,0.452,0,1 +0.333,0.143,0.477,0.477,0,0,0.646,0.646,0.646,0,0,0,0,0,0,0,0,0,0,0.331,0.493,0.057,1,0.255,0.178,0.255,0.255,0.172,0.172,0.359,0.384,0,1 +0.333,0.172,0.521,0.521,0,0,0.68,0.68,0.68,0,0,0,0,0,0,0,0,0,0,0.346,0.518,0.0786,1,0.323,0.283,0.323,0.323,0.292,0.292,0.151,0.162,0,1 +0.333,0.175,0.377,0.377,0,0,0.697,0.697,0.697,0,0,0,0,0,0,0,0,0,0,0.298,0.523,0.0963,1,0.323,0.27,0.323,0.323,0.557,0.557,0.151,0.162,0,1 +0.333,0.174,0.255,0.255,0,0,0.697,0.697,0.697,0,0,0,0,0,0,0,0,0.00284,0.00284,0.257,0.523,0.114,1,0.313,0.252,0.313,0.313,0.803,0.803,0.12,0.128,0,1 +0.333,0.17,0.266,0.266,0,0.0366,0.68,0.68,0.68,0,0,0,0,0,0,0,0,0,0,0.261,0.523,0.128,1,0.323,0.27,0.323,0.323,0.842,0.842,0.0945,0.101,0,1 +0.333,0.164,0.277,0.277,0,0,0.68,0.68,0.68,0,0,0.00731,0,0,0,0,0,0.00852,0.00852,0.264,0.528,0.142,1,0.323,0.283,0.323,0.323,0.803,0.803,0.0882,0.0944,0,1 +0.333,0.16,0.266,0.266,0,0,0.714,0.714,0.714,0,0,0.0284,0.0112,0,0,0,0,0.00852,0.00852,0.261,0.533,0.149,1,0.313,0.258,0.313,0.313,0.796,0.796,0.0882,0.0944,0,1 +0.333,0.159,0.311,0.311,0,0,0.714,0.714,0.714,0,0,0.0256,0.00456,0.238,0.238,0,0,0,0,0.275,0.533,0.169,1,0.313,0.233,0.313,0.313,0.597,0.597,0.0882,0.0944,0,1 +0.333,0.159,0.344,0.344,0,0,0.714,0.714,0.714,0,0,0.0355,0,0.0367,0.0367,0,0,0,0,0.286,0.528,0.179,1,0.313,0.301,0.313,0.313,0.497,0.497,0.151,0.162,0,1 +0.333,0.162,0.355,0.355,0,0,0.697,0.697,0.697,0,0,0,0,0,0,0,0,0,0,0.29,0.538,0.2,1,0.323,0.362,0.323,0.323,0.405,0.405,0.365,0.391,0,1 +0,0.0495,0.433,0.433,0,0,0.748,0.748,0.748,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.25,1,0.441,0.676,0.441,0.441,0.245,0.245,0.794,0.849,0,1 +0.333,0.2,0.588,0.588,0,0,0.815,0.815,0.815,0,0,0,0,0,0,0,0,0.00284,0.00284,0.368,0.568,0.307,1,0.558,0.989,0.558,0.558,0.153,0.153,0.769,0.822,0,1 +0.333,0.251,0.699,0.699,0,0,0.849,0.849,0.849,0,0,0,0,0,0,0,0.0333,0.0142,0.0475,0.405,0.573,0.413,1,0.646,0.706,0.646,0.646,0.0862,0.0862,0.428,0.458,0,1 +1,0.829,0.743,0.743,0,0,0.815,0.815,0.815,0.0138,0.0653,0,0,0,0,0,0,0.00284,0.00284,0.743,0.743,0.578,1,0.744,0.43,0.744,0.744,0.0531,0.0531,0.384,0.411,0,1 +1,0.905,0.788,0.788,0,0,0.798,0.798,0.798,0.0215,0.0302,0,0,0,0,0,0,0.00284,0.00284,0.788,0.698,0.713,1,0.793,0.27,0.793,0.793,0.0265,0.0265,0.321,0.344,0,1 +1,0.821,0.765,0.765,0,0,0.781,0.781,0.781,0.0142,0,0,0,0,0,0,0,0.0114,0.0114,0.765,0.669,0.676,1,0.842,0.117,0.842,0.842,0.0199,0.0199,0.271,0.29,0,1 +1,0.356,0.654,0.654,0,0,0.748,0.748,0.748,0,0,0,0,0,0,0,0,0.00568,0.00568,0.522,0.551,0.409,1,0.735,0.0799,0.735,0.735,0.0199,0.0199,0.151,0.162,0.333,1 +1,0.0495,0.555,0.555,0,0,0.697,0.697,0.697,0,0,0,0,0,0,0,0,0.00568,0.00568,0.258,0.465,0.177,1,0.637,0.043,0.637,0.637,0.0199,0.0199,0.151,0.162,1,1 +1,0.0495,0.444,0.444,0,0,0.68,0.68,0.68,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0727,1,0.431,0.0246,0.431,0.431,0.0199,0.0199,0.151,0.162,1,1 +1,0.0495,0.41,0.41,0,0,0.663,0.663,0.663,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0354,1,0.225,0.00614,0.225,0.225,0.0199,0.0199,0.183,0.196,1,1 +1,0.0495,0.41,0.41,0,0,0.646,0.646,0.646,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0177,1,0.186,0.00614,0.186,0.186,0.0199,0.0199,0.151,0.162,1,1 +1,0.0495,0.399,0.399,0,0,0.629,0.629,0.629,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0138,1,0.147,0.0123,0.147,0.147,0.0265,0.0265,0.183,0.196,1,1 +1,0.0495,0.366,0.366,0,0,0.612,0.612,0.612,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0216,1,0.157,0.043,0.157,0.157,0.0531,0.0531,0.296,0.317,1,1 +1,0.0495,0.399,0.399,0,0,0.612,0.612,0.612,0,0,0,0,0,0,0,0.00699,0,0.00699,0.258,0.465,0.0354,1,0.176,0.0737,0.176,0.176,0.0995,0.0995,0.422,0.452,1,1 +1,0.33,0.477,0.477,0,0.0366,0.646,0.646,0.646,0,0,0,0,0,0,0,0.0601,0,0.0601,0.477,0.55,0.057,1,0.255,0.178,0.255,0.255,0.172,0.172,0.359,0.384,0,1 +1,0.417,0.521,0.521,0,0,0.68,0.68,0.68,0,0,0,0,0,0,0,0.0392,0,0.0392,0.521,0.624,0.0786,1,0.323,0.283,0.323,0.323,0.292,0.292,0.151,0.162,0,1 +0.333,0.175,0.377,0.377,0,0,0.697,0.697,0.697,0,0,0,0,0,0,0,0.0159,0,0.0159,0.298,0.523,0.0963,1,0.323,0.27,0.323,0.323,0.557,0.557,0.151,0.162,0,1 +0.333,0.174,0.255,0.255,0,0,0.697,0.697,0.697,0,0,0,0,0,0,0,0.0165,0,0.0165,0.257,0.523,0.114,1,0.313,0.252,0.313,0.313,0.803,0.803,0.12,0.128,0,1 +0.333,0.17,0.266,0.266,0,0,0.68,0.68,0.68,0,0,0,0,0,0,0,0,0.00852,0.00852,0.261,0.523,0.128,1,0.323,0.27,0.323,0.323,0.842,0.842,0.0945,0.101,0,1 +0.333,0.164,0.277,0.277,0,0,0.68,0.68,0.68,0,0,0,0,0,0,0,0.00251,0,0.00251,0.264,0.528,0.142,1,0.323,0.283,0.323,0.323,0.803,0.803,0.0882,0.0944,0,1 +0.333,0.16,0.266,0.266,0,0,0.714,0.714,0.714,0,0,0,0,0,0,0,0.0506,0.017,0.0677,0.261,0.533,0.149,1,0.313,0.258,0.313,0.313,0.796,0.796,0.0882,0.0944,0,1 +0.333,0.159,0.311,0.311,0,0,0.714,0.714,0.714,0,0,0,0,0,0,0,0,0.0114,0.0114,0.275,0.533,0.169,1,0.313,0.233,0.313,0.313,0.597,0.597,0.0882,0.0944,0,1 +0.333,0.159,0.344,0.344,0,0,0.714,0.714,0.714,0,0,0,0,0,0,0,0,0,0,0.286,0.528,0.179,1,0.313,0.301,0.313,0.313,0.497,0.497,0.151,0.162,0,1 +1,0.274,0.355,0.355,0,0.0366,0.697,0.697,0.697,0,0,0,0,0,0,0,0,0.00284,0.00284,0.323,0.611,0.2,1,0.323,0.362,0.323,0.323,0.405,0.405,0.365,0.391,0.333,1 +1,0.417,0.433,0.433,0,0.0122,0.748,0.748,0.748,0,0,0,0,0,0,0,0.0219,0.00284,0.0248,0.433,0.713,0.25,1,0.441,0.676,0.441,0.441,0.245,0.245,0.794,0.849,0,1 +1,0.501,0.588,0.588,0,0.0244,0.815,0.815,0.815,0,0,0,0,0,0,0,0.024,0.00852,0.0325,0.588,0.773,0.307,1,0.558,0.989,0.558,0.558,0.153,0.153,0.769,0.822,0,1 +1,0.655,0.699,0.699,0,0,0.849,0.849,0.849,0,0,0,0,0,0,0,0,0.0114,0.0114,0.699,0.788,0.413,1,0.646,0.706,0.646,0.646,0.0862,0.0862,0.428,0.458,0,1 +1,0.829,0.743,0.743,0,0,0.815,0.815,0.815,0.00483,0.0175,0,0,0,0,0,0,0,0,0.743,0.743,0.578,1,0.744,0.43,0.744,0.744,0.0531,0.0531,0.384,0.411,0,1 +1,0.905,0.788,0.788,0,0,0.798,0.798,0.798,0.0209,0.078,0,0,0,0,0,0.00621,0.00284,0.00905,0.788,0.698,0.713,1,0.793,0.27,0.793,0.793,0.0265,0.0265,0.321,0.344,0,1 +1,0.564,0.765,0.765,0,0,0.781,0.781,0.781,0.0247,0,0,0,0,0,0,0.0269,0,0.0269,0.596,0.601,0.676,1,0.842,0.117,0.842,0.842,0.0199,0.0199,0.271,0.29,0.333,1 +1,0.203,0.654,0.654,0,0,0.748,0.748,0.748,0.0192,0,0,0,0,0,0,0,0.00568,0.00568,0.39,0.508,0.409,1,0.735,0.0799,0.735,0.735,0.0199,0.0199,0.151,0.162,0.667,1 +1,0.116,0.555,0.555,0,0,0.697,0.697,0.697,0.0183,0,0,0,0,0,0,0,0,0,0.357,0.489,0.177,1,0.637,0.043,0.637,0.637,0.0199,0.0199,0.151,0.162,0.667,1 +1,0.0743,0.444,0.444,0,0,0.68,0.68,0.68,0.0192,0,0,0,0,0,0,0,0,0,0.32,0.484,0.0865,1,0.431,0.0246,0.431,0.431,0.0199,0.0199,0.151,0.162,0.667,1 +1,0.0495,0.41,0.41,0,0,0.663,0.663,0.663,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0432,1,0.225,0.00614,0.225,0.225,0.0199,0.0199,0.183,0.196,1,1 +1,0.0495,0.41,0.41,0,0,0.646,0.646,0.646,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0236,1,0.186,0.00614,0.186,0.186,0.0199,0.0199,0.151,0.162,1,1 +1,0.0495,0.399,0.399,0,0,0.629,0.629,0.629,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0157,1,0.147,0.0123,0.147,0.147,0.0265,0.0265,0.183,0.196,1,1 +1,0.0495,0.366,0.366,0,0,0.612,0.612,0.612,0,0,0,0,0,0,0,0,0.0114,0.0114,0.258,0.465,0.0216,1,0.157,0.043,0.157,0.157,0.0531,0.0531,0.296,0.317,1,1 +1,0.0495,0.399,0.399,0,0.0122,0.612,0.612,0.612,0,0,0,0,0,0,0,0.00274,0,0.00274,0.258,0.465,0.0275,1,0.176,0.0737,0.176,0.176,0.0995,0.0995,0.422,0.452,1,1 +1,0.143,0.477,0.477,0,0.0609,0.646,0.646,0.646,0,0,0,0,0,0,0,0.0192,0,0.0192,0.331,0.493,0.0472,1,0.255,0.178,0.255,0.255,0.172,0.172,0.359,0.384,0.667,1 +0.667,0.0495,0.521,0.521,0,0,0.68,0.68,0.68,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0845,1,0.323,0.283,0.323,0.323,0.292,0.292,0.151,0.162,0.667,1 +0.333,0.0495,0.377,0.377,0,0,0.697,0.697,0.697,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.14,1,0.323,0.27,0.323,0.323,0.557,0.557,0.151,0.162,0.333,1 +0.333,0.0495,0.255,0.255,0,0,0.697,0.697,0.697,0,0,0,0,0,0,0,0,0.00568,0.00568,0.258,0.465,0.185,1,0.313,0.252,0.313,0.313,0.803,0.803,0.12,0.128,0.333,1 +0.333,0.17,0.266,0.266,0,0.0853,0.68,0.68,0.68,0,0,0,0,0,0,0,0,0,0,0.261,0.523,0.22,1,0.323,0.27,0.323,0.323,0.842,0.842,0.0945,0.101,0,1 +0.333,0.164,0.277,0.277,0,0.0244,0.68,0.68,0.68,0,0,0,0,0,0,0,0,0,0,0.264,0.528,0.242,1,0.323,0.283,0.323,0.323,0.803,0.803,0.0882,0.0944,0,1 +0.333,0.16,0.266,0.266,0,0,0.714,0.714,0.714,0,0,0,0,0,0,0,0,0,0,0.261,0.533,0.259,1,0.313,0.258,0.313,0.313,0.796,0.796,0.0882,0.0944,0,1 +0.333,0.159,0.311,0.311,0,0,0.714,0.714,0.714,0,0,0,0,0,0,0,0,0,0,0.275,0.533,0.307,1,0.313,0.233,0.313,0.313,0.597,0.597,0.0882,0.0944,0,1 +0.333,0.159,0.344,0.344,0,0,0.714,0.714,0.714,0,0,0,0,0,0,0,0,0,0,0.286,0.528,0.35,1,0.313,0.301,0.313,0.313,0.497,0.497,0.151,0.162,0,1 +0.667,0.274,0.355,0.355,0,0,0.697,0.697,0.697,0,0,0,0,0,0,0,0,0,0,0.323,0.611,0.385,1,0.323,0.362,0.323,0.323,0.405,0.405,0.365,0.391,0,1 +0.667,0.294,0.433,0.433,0,0,0.748,0.748,0.748,0,0,0,0,0,0,0,0,0.00568,0.00568,0.374,0.631,0.405,1,0.441,0.676,0.441,0.441,0.245,0.245,0.794,0.849,0,1 +0.667,0.35,0.588,0.588,0,0,0.815,0.815,0.815,0,0,0,0,0,0,0,0,0.00852,0.00852,0.478,0.67,0.419,1,0.558,0.989,0.558,0.558,0.153,0.153,0.769,0.822,0,1 +1,0.655,0.699,0.699,0,0,0.849,0.849,0.849,0,0,0.0208,0,0,0,0,0,0.0142,0.0142,0.699,0.788,0.493,1,0.646,0.706,0.646,0.646,0.0862,0.0862,0.428,0.458,0,1 +1,0.829,0.743,0.743,0,0.0853,0.815,0.815,0.815,0,0,0.0317,0.0165,0,0,0,0,0.00284,0.00284,0.743,0.743,0.649,1,0.744,0.43,0.744,0.744,0.0531,0.0531,0.384,0.411,0,1 +1,0.905,0.788,0.788,0,0.0244,0.798,0.798,0.798,0,0,0.0175,0.0151,0.055,0.055,0,0,0.00852,0.00852,0.788,0.698,0.763,1,0.793,0.27,0.793,0.793,0.0265,0.0265,0.321,0.344,0,1 +1,0.821,0.765,0.765,0,0,0.781,0.781,0.781,0,0,0.0435,0,0.312,0.312,0,0,0,0,0.765,0.669,0.704,1,0.842,0.117,0.842,0.842,0.0199,0.0199,0.271,0.29,0,1 +1,0.51,0.654,0.654,0,0.0122,0.748,0.748,0.748,0,0,0,0,0,0,0,0,0.00568,0.00568,0.654,0.594,0.444,1,0.735,0.0799,0.735,0.735,0.0199,0.0199,0.151,0.162,0,1 +1,0.249,0.555,0.555,0,0.0244,0.697,0.697,0.697,0,0,0,0,0,0,0,0,0,0,0.555,0.535,0.202,1,0.637,0.043,0.637,0.637,0.0199,0.0199,0.151,0.162,0,1 +1,0.0743,0.444,0.444,0,0,0.68,0.68,0.68,0,0,0,0,0,0,0,0,0.00568,0.00568,0.32,0.484,0.0865,1,0.431,0.0246,0.431,0.431,0.0199,0.0199,0.151,0.162,0.667,1 +1,0.0495,0.41,0.41,0,0,0.663,0.663,0.663,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0432,1,0.225,0.00614,0.225,0.225,0.0199,0.0199,0.183,0.196,1,1 +1,0.0495,0.41,0.41,0,0,0.646,0.646,0.646,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0236,1,0.186,0.00614,0.186,0.186,0.0199,0.0199,0.151,0.162,1,1 +1,0.0495,0.399,0.399,0,0,0.629,0.629,0.629,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0157,1,0.147,0.0123,0.147,0.147,0.0265,0.0265,0.183,0.196,1,1 +1,0.0518,0.366,0.366,0,0,0.612,0.612,0.612,0,0,0,0,0,0,0,0,0,0,0.33,0.472,0.0216,1,0.157,0.043,0.157,0.157,0.0531,0.0531,0.296,0.317,0.333,1 +0.667,0.0798,0.399,0.399,0,0,0.612,0.612,0.612,0,0,0,0,0,0,0,0,0,0,0.305,0.474,0.0275,1,0.176,0.0737,0.176,0.176,0.0995,0.0995,0.422,0.452,0.333,1 +0.667,0.143,0.477,0.477,0,0,0.646,0.646,0.646,0,0,0,0,0,0,0,0,0,0,0.331,0.493,0.0472,1,0.255,0.178,0.255,0.255,0.172,0.172,0.359,0.384,0.333,1 +0.667,0.172,0.521,0.521,0,0,0.68,0.68,0.68,0,0,0,0,0,0,0,0,0,0,0.346,0.518,0.0845,1,0.323,0.283,0.323,0.323,0.292,0.292,0.151,0.162,0.333,1 +0.667,0.301,0.377,0.377,0,0,0.697,0.697,0.697,0.0119,0.0478,0,0,0,0,0,0,0,0,0.337,0.581,0.14,1,0.323,0.27,0.323,0.323,0.557,0.557,0.151,0.162,0,1 +0.667,0.299,0.255,0.255,0,0,0.697,0.697,0.697,0.0231,0,0,0,0,0,0,0,0.00284,0.00284,0.256,0.581,0.185,1,0.313,0.252,0.313,0.313,0.803,0.803,0.12,0.128,0,1 +0.667,0.291,0.266,0.266,0,0,0.68,0.68,0.68,0,0,0,0,0,0,0,0,0.0312,0.0312,0.263,0.581,0.22,1,0.323,0.27,0.323,0.323,0.842,0.842,0.0945,0.101,0,1 +0.333,0.164,0.277,0.277,0,0,0.68,0.68,0.68,0,0,0,0,0,0,0,0,0,0,0.264,0.528,0.242,1,0.323,0.283,0.323,0.323,0.803,0.803,0.0882,0.0944,0,1 +0.333,0.16,0.266,0.266,0,0,0.714,0.714,0.714,0,0,0,0,0,0,0,0,0,0,0.261,0.533,0.259,1,0.313,0.258,0.313,0.313,0.796,0.796,0.0882,0.0944,0,1 +0.667,0.269,0.311,0.311,0,0,0.714,0.714,0.714,0,0,0.0418,0.00596,0,0,0,0,0.00284,0.00284,0.293,0.601,0.307,1,0.313,0.233,0.313,0.313,0.597,0.597,0.0882,0.0944,0,1 +1,0.379,0.344,0.344,0,0,0.714,0.714,0.714,0,0,0.0185,0.00982,0.147,0.147,0,0,0.00284,0.00284,0.344,0.654,0.35,1,0.313,0.301,0.313,0.313,0.497,0.497,0.151,0.162,0,1 +0.667,0.274,0.355,0.355,0,0,0.697,0.697,0.697,0,0,0,0,0.22,0.22,0,0,0.00568,0.00568,0.323,0.611,0.385,1,0.323,0.362,0.323,0.323,0.405,0.405,0.365,0.391,0,1 +0.333,0.172,0.433,0.433,0,0,0.748,0.748,0.748,0,0,0,0,0,0,0,0,0.017,0.017,0.316,0.548,0.405,1,0.441,0.676,0.441,0.441,0.245,0.245,0.794,0.849,0,1 +0,0.0495,0.588,0.588,0,0,0.815,0.815,0.815,0,0,0,0,0,0,0,0,0.00852,0.00852,0.258,0.465,0.419,1,0.558,0.989,0.558,0.558,0.153,0.153,0.769,0.822,0,1 +0,0.0495,0.699,0.699,0,0,0.849,0.849,0.849,0,0,0.00507,0,0,0,0,0,0.00568,0.00568,0.258,0.465,0.493,1,0.646,0.706,0.646,0.646,0.0862,0.0862,0.428,0.458,0,1 +0,0.0495,0.743,0.743,0,0,0.815,0.815,0.815,0,0,0.0321,0.0112,0,0,0,0,0.00852,0.00852,0.258,0.465,0.649,1,0.744,0.43,0.744,0.744,0.0531,0.0531,0.384,0.411,0,1 +0.333,0.335,0.788,0.788,0,0,0.798,0.798,0.798,0,0,0.0143,0.00456,0.238,0.238,0,0,0.0114,0.0114,0.434,0.543,0.763,1,0.793,0.27,0.793,0.793,0.0265,0.0265,0.321,0.344,0,1 +1,0.821,0.765,0.765,0,0,0.781,0.781,0.781,0,0,0,0,0.0367,0.0367,0,0,0,0,0.765,0.669,0.704,1,0.842,0.117,0.842,0.842,0.0199,0.0199,0.271,0.29,0,1 +1,0.356,0.654,0.654,0,0,0.748,0.748,0.748,0,0,0,0,0,0,0,0,0,0,0.522,0.551,0.444,1,0.735,0.0799,0.735,0.735,0.0199,0.0199,0.151,0.162,0.333,1 +1,0.183,0.555,0.555,0,0,0.697,0.697,0.697,0,0,0,0,0,0,0,0,0,0,0.456,0.512,0.202,1,0.637,0.043,0.637,0.637,0.0199,0.0199,0.151,0.162,0.333,1 +1,0.0743,0.444,0.444,0,0,0.68,0.68,0.68,0,0,0,0,0,0,0,0,0,0,0.32,0.484,0.0727,1,0.431,0.0246,0.431,0.431,0.0199,0.0199,0.151,0.162,0.667,1 +1,0.0495,0.41,0.41,0,0,0.663,0.663,0.663,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0354,1,0.225,0.00614,0.225,0.225,0.0199,0.0199,0.183,0.196,1,1 +1,0.0495,0.41,0.41,0,0,0.646,0.646,0.646,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0177,1,0.186,0.00614,0.186,0.186,0.0199,0.0199,0.151,0.162,1,1 +1,0.0495,0.399,0.399,0,0,0.629,0.629,0.629,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0138,1,0.147,0.0123,0.147,0.147,0.0265,0.0265,0.183,0.196,1,1 +1,0.0495,0.366,0.366,0,0,0.612,0.612,0.612,0,0,0,0,0,0,0,0,0.00852,0.00852,0.258,0.465,0.0216,1,0.157,0.043,0.157,0.157,0.0531,0.0531,0.296,0.317,1,1 +1,0.0495,0.399,0.399,0,0,0.612,0.612,0.612,0,0,0,0,0,0,0,0.0239,0,0.0239,0.258,0.465,0.0354,1,0.176,0.0737,0.176,0.176,0.0995,0.0995,0.422,0.452,1,1 +1,0.143,0.477,0.477,0,0,0.646,0.646,0.646,0,0,0,0,0,0,0,0.015,0,0.015,0.331,0.493,0.057,1,0.255,0.178,0.255,0.255,0.172,0.172,0.359,0.384,0.667,1 +0.667,0.172,0.521,0.521,0,0,0.68,0.68,0.68,0,0,0,0,0,0,0,0,0,0,0.346,0.518,0.0786,1,0.323,0.283,0.323,0.323,0.292,0.292,0.151,0.162,0.333,1 +0.667,0.175,0.377,0.377,0,0,0.697,0.697,0.697,0,0,0,0,0,0,0,0.0217,0,0.0217,0.298,0.523,0.0963,1,0.323,0.27,0.323,0.323,0.557,0.557,0.151,0.162,0.333,1 +0.333,0.174,0.255,0.255,0,0,0.697,0.697,0.697,0,0,0,0,0,0,0,0.0437,0,0.0437,0.257,0.523,0.114,1,0.313,0.252,0.313,0.313,0.803,0.803,0.12,0.128,0,1 +0.667,0.291,0.266,0.266,0,0,0.68,0.68,0.68,0,0,0,0,0,0,0,0.0437,0.00568,0.0494,0.263,0.581,0.128,1,0.323,0.27,0.323,0.323,0.842,0.842,0.0945,0.101,0,1 +0.667,0.279,0.277,0.277,0,0,0.68,0.68,0.68,0,0,0,0,0,0,0,0,0.00284,0.00284,0.271,0.591,0.142,1,0.323,0.283,0.323,0.323,0.803,0.803,0.0882,0.0944,0,1 +0.333,0.16,0.266,0.266,0,0,0.714,0.714,0.714,0,0,0,0,0,0,0,0,0.00568,0.00568,0.261,0.533,0.149,1,0.313,0.258,0.313,0.313,0.796,0.796,0.0882,0.0944,0,1 +0.333,0.159,0.311,0.311,0,0,0.714,0.714,0.714,0,0,0,0,0,0,0,0,0.00284,0.00284,0.275,0.533,0.169,1,0.313,0.233,0.313,0.313,0.597,0.597,0.0882,0.0944,0,1 +0.333,0.159,0.344,0.344,0,0,0.714,0.714,0.714,0,0,0,0,0,0,0,0,0,0,0.286,0.528,0.179,1,0.313,0.301,0.313,0.313,0.497,0.497,0.151,0.162,0,1 +0.333,0.162,0.355,0.355,0,0,0.697,0.697,0.697,0,0,0,0,0,0,0,0,0.0114,0.0114,0.29,0.538,0.2,1,0.323,0.362,0.323,0.323,0.405,0.405,0.365,0.391,0,1 +0.667,0.294,0.433,0.433,0,0.0122,0.748,0.748,0.748,0,0,0,0,0,0,0,0.0154,0.00852,0.0239,0.374,0.631,0.25,1,0.441,0.676,0.441,0.441,0.245,0.245,0.794,0.849,0,1 +1,0.501,0.588,0.588,0,0.0609,0.815,0.815,0.815,0,0,0,0,0,0,0,0,0.00568,0.00568,0.588,0.773,0.307,1,0.558,0.989,0.558,0.558,0.153,0.153,0.769,0.822,0,1 +1,0.655,0.699,0.699,0,0.0731,0.849,0.849,0.849,0.00331,0.0175,0,0,0,0,0,0,0,0,0.699,0.788,0.413,1,0.646,0.706,0.646,0.646,0.0862,0.0862,0.428,0.458,0,1 +1,0.829,0.743,0.743,0,0,0.815,0.815,0.815,0.0178,0.0541,0,0,0,0,0,0,0.00852,0.00852,0.743,0.743,0.578,1,0.744,0.43,0.744,0.744,0.0531,0.0531,0.384,0.411,0,1 +1,0.905,0.788,0.788,0,0,0.798,0.798,0.798,0.0199,0,0,0,0,0,0,0,0.0114,0.0114,0.788,0.698,0.713,1,0.793,0.27,0.793,0.793,0.0265,0.0265,0.321,0.344,0,1 +1,0.564,0.765,0.765,0,0,0.781,0.781,0.781,0.0189,0,0,0,0,0,0,0,0,0,0.596,0.601,0.676,1,0.842,0.117,0.842,0.842,0.0199,0.0199,0.271,0.29,0.333,1 +1,0.203,0.654,0.654,0,0,0.748,0.748,0.748,0,0,0,0,0,0,0,0,0,0,0.39,0.508,0.409,1,0.735,0.0799,0.735,0.735,0.0199,0.0199,0.151,0.162,0.667,1 +1,0.0495,0.555,0.555,0,0,0.697,0.697,0.697,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.177,1,0.637,0.043,0.637,0.637,0.0199,0.0199,0.151,0.162,1,1 +1,0.0495,0.444,0.444,0,0,0.68,0.68,0.68,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0727,1,0.431,0.0246,0.431,0.431,0.0199,0.0199,0.151,0.162,1,1 +1,0.0495,0.41,0.41,0,0,0.663,0.663,0.663,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0354,1,0.225,0.00614,0.225,0.225,0.0199,0.0199,0.183,0.196,1,1 +1,0.0495,0.41,0.41,0,0,0.646,0.646,0.646,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0177,1,0.186,0.00614,0.186,0.186,0.0199,0.0199,0.151,0.162,1,1 +1,0.0495,0.399,0.399,0,0,0.629,0.629,0.629,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0138,1,0.147,0.0123,0.147,0.147,0.0265,0.0265,0.183,0.196,1,1 +1,0.0495,0.366,0.366,0,0,0.612,0.612,0.612,0,0,0,0,0,0,0,0.00274,0,0.00274,0.258,0.465,0.0216,1,0.157,0.043,0.157,0.157,0.0531,0.0531,0.296,0.317,1,1 +1,0.0798,0.399,0.399,0,0,0.612,0.612,0.612,0,0,0,0,0,0,0,0.0305,0,0.0305,0.305,0.474,0.0354,1,0.176,0.0737,0.176,0.176,0.0995,0.0995,0.422,0.452,0.667,1 +1,0.143,0.477,0.477,0,0,0.646,0.646,0.646,0,0,0,0,0,0,0,0,0,0,0.331,0.493,0.057,1,0.255,0.178,0.255,0.255,0.172,0.172,0.359,0.384,0.667,1 +1,0.295,0.521,0.521,0,0,0.68,0.68,0.68,0,0,0,0,0,0,0,0.00248,0,0.00248,0.433,0.571,0.0786,1,0.323,0.283,0.323,0.323,0.292,0.292,0.151,0.162,0.333,1 +0.667,0.175,0.377,0.377,0,0,0.697,0.697,0.697,0,0,0,0,0,0,0,0.0414,0,0.0414,0.298,0.523,0.0963,1,0.323,0.27,0.323,0.323,0.557,0.557,0.151,0.162,0.333,1 +0.333,0.174,0.255,0.255,0,0,0.697,0.697,0.697,0,0,0,0,0,0,0,0,0,0,0.257,0.523,0.114,1,0.313,0.252,0.313,0.313,0.803,0.803,0.12,0.128,0,1 +0.333,0.17,0.266,0.266,0,0,0.68,0.68,0.68,0,0,0,0,0,0,0,0,0,0,0.261,0.523,0.128,1,0.323,0.27,0.323,0.323,0.842,0.842,0.0945,0.101,0,1 +0.333,0.164,0.277,0.277,0,0,0.68,0.68,0.68,0,0,0,0,0,0,0,0,0,0,0.264,0.528,0.142,1,0.323,0.283,0.323,0.323,0.803,0.803,0.0882,0.0944,0,1 +0.333,0.16,0.266,0.266,0,0.0366,0.714,0.714,0.714,0,0,0,0,0,0,0,0,0,0,0.261,0.533,0.149,1,0.313,0.258,0.313,0.313,0.796,0.796,0.0882,0.0944,0,1 +0.333,0.159,0.311,0.311,0,0,0.714,0.714,0.714,0,0,0,0,0,0,0,0,0.00284,0.00284,0.275,0.533,0.169,1,0.313,0.233,0.313,0.313,0.597,0.597,0.0882,0.0944,0,1 +0.333,0.159,0.344,0.344,0,0,0.714,0.714,0.714,0,0,0,0,0,0,0,0,0.00284,0.00284,0.286,0.528,0.179,1,0.313,0.301,0.313,0.313,0.497,0.497,0.151,0.162,0,1 +0.667,0.274,0.355,0.355,0,0,0.697,0.697,0.697,0,0,0,0,0,0,0,0,0.00568,0.00568,0.323,0.611,0.2,1,0.323,0.362,0.323,0.323,0.405,0.405,0.365,0.391,0,1 +0.333,0.172,0.433,0.433,0,0,0.748,0.748,0.748,0,0,0,0,0,0,0,0,0.00284,0.00284,0.316,0.548,0.25,1,0.441,0.676,0.441,0.441,0.245,0.245,0.794,0.849,0,1 +0.333,0.2,0.588,0.588,0,0,0.815,0.815,0.815,0,0,0,0,0,0,0,0,0.0312,0.0312,0.368,0.568,0.307,1,0.558,0.989,0.558,0.558,0.153,0.153,0.769,0.822,0,1 +0.667,0.453,0.699,0.699,0,0.122,0.849,0.849,0.849,0,0,0,0,0,0,0,0.0147,0.0114,0.026,0.552,0.68,0.413,1,0.646,0.706,0.646,0.646,0.0862,0.0862,0.428,0.458,0,1 +0.667,0.569,0.743,0.743,0,0.0975,0.815,0.815,0.815,0,0,0,0,0,0,0,0.0267,0.0199,0.0466,0.581,0.65,0.578,1,0.744,0.43,0.744,0.744,0.0531,0.0531,0.384,0.411,0,1 +1,0.905,0.788,0.788,0,0,0.798,0.798,0.798,0,0,0,0,0,0,0,0,0.00568,0.00568,0.788,0.698,0.713,1,0.793,0.27,0.793,0.793,0.0265,0.0265,0.321,0.344,0,1 +1,0.821,0.765,0.765,0,0,0.781,0.781,0.781,0,0,0,0,0,0,0,0.015,0.00568,0.0207,0.765,0.669,0.676,1,0.842,0.117,0.842,0.842,0.0199,0.0199,0.271,0.29,0,1 +1,0.203,0.654,0.654,0,0,0.748,0.748,0.748,0,0,0,0,0,0,0,0.0175,0,0.0175,0.39,0.508,0.409,1,0.735,0.0799,0.735,0.735,0.0199,0.0199,0.151,0.162,0.667,1 +1,0.0495,0.555,0.555,0,0,0.697,0.697,0.697,0,0,0,0,0,0,0,0.0126,0,0.0126,0.258,0.465,0.177,1,0.637,0.043,0.637,0.637,0.0199,0.0199,0.151,0.162,1,1 +1,0.0495,0.444,0.444,0,0,0.68,0.68,0.68,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.465,0.0727,1,0.431,0.0246,0.431,0.431,0.0199,0.0199,0.151,0.162,1,1 +1,0.0495,0.41,0.41,0,0,0.663,0.663,0.663,0,0,0,0,0,0,0,0,0.00568,0.00568,0.258,0.465,0.0354,1,0.225,0.00614,0.225,0.225,0.0199,0.0199,0.183,0.196,1,1 +1,0.0495,0.41,0.41,0,0,0.646,0.646,0.646,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0177,1,0.186,0.00614,0.186,0.186,0.0199,0.0199,0.151,0.162,1,1 +1,0.0495,0.399,0.399,0,0,0.629,0.629,0.629,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0138,1,0.147,0.0123,0.147,0.147,0.0265,0.0265,0.183,0.196,1,1 +1,0.0495,0.366,0.366,0,0,0.612,0.612,0.612,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0216,1,0.157,0.043,0.157,0.157,0.0531,0.0531,0.296,0.317,1,1 +1,0.0495,0.399,0.399,0,0,0.612,0.612,0.612,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0354,1,0.176,0.0737,0.176,0.176,0.0995,0.0995,0.422,0.452,1,1 +0.667,0.0495,0.477,0.477,0,0,0.646,0.646,0.646,0,0,0,0,0,0,0,0.0423,0,0.0423,0.258,0.465,0.057,1,0.255,0.178,0.255,0.255,0.172,0.172,0.359,0.384,0.667,1 +0.333,0.0495,0.521,0.521,0,0,0.68,0.68,0.68,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0786,1,0.323,0.283,0.323,0.323,0.292,0.292,0.151,0.162,0.333,1 +0.333,0.175,0.377,0.377,0,0.0366,0.697,0.697,0.697,0.0196,0.0239,0,0,0,0,0,0,0,0,0.298,0.523,0.0963,1,0.323,0.27,0.323,0.323,0.557,0.557,0.151,0.162,0,1 +0.333,0.174,0.255,0.255,0,0,0.697,0.697,0.697,0.00842,0,0,0,0,0,0,0,0.00284,0.00284,0.257,0.523,0.114,1,0.313,0.252,0.313,0.313,0.803,0.803,0.12,0.128,0,1 +0.333,0.17,0.266,0.266,0,0,0.68,0.68,0.68,0,0,0,0,0,0,0,0,0.00568,0.00568,0.261,0.523,0.128,1,0.323,0.27,0.323,0.323,0.842,0.842,0.0945,0.101,0,1 +0.333,0.164,0.277,0.277,0,0,0.68,0.68,0.68,0,0,0,0,0,0,0,0,0,0,0.264,0.528,0.142,1,0.323,0.283,0.323,0.323,0.803,0.803,0.0882,0.0944,0,1 +0,0.0495,0.266,0.266,0,0,0.714,0.714,0.714,0,0,0,0,0,0,0,0,0.0114,0.0114,0.258,0.465,0.149,1,0.313,0.258,0.313,0.313,0.796,0.796,0.0882,0.0944,0,1 +0,0.0495,0.311,0.311,0,0,0.714,0.714,0.714,0,0,0,0,0,0,0,0,0.00568,0.00568,0.258,0.465,0.169,1,0.313,0.233,0.313,0.313,0.597,0.597,0.0882,0.0944,0,1 +0,0.0495,0.344,0.344,0,0,0.714,0.714,0.714,0,0,0,0,0,0,0,0,0.00852,0.00852,0.258,0.465,0.179,1,0.313,0.301,0.313,0.313,0.497,0.497,0.151,0.162,0,1 +0.333,0.162,0.355,0.355,0,0,0.697,0.697,0.697,0,0,0,0,0,0,0,0,0,0,0.29,0.538,0.2,1,0.323,0.362,0.323,0.323,0.405,0.405,0.365,0.391,0,1 +0.667,0.294,0.433,0.433,0,0,0.748,0.748,0.748,0,0,0,0,0,0,0,0,0,0,0.374,0.631,0.25,1,0.441,0.676,0.441,0.441,0.245,0.245,0.794,0.849,0,1 +1,0.501,0.588,0.588,0,0.0122,0.815,0.815,0.815,0,0,0,0,0,0,0.0503,0,0,0.0503,0.588,0.773,0.307,1,0.558,0.989,0.558,0.558,0.153,0.153,0.769,0.822,0,1 +1,0.655,0.699,0.699,0,0.0244,0.849,0.849,0.849,0.00955,0.0414,0,0,0,0,0,0,0,0,0.699,0.788,0.413,1,0.646,0.706,0.646,0.646,0.0862,0.0862,0.428,0.458,0,1 +0.667,0.569,0.743,0.743,0,0,0.815,0.815,0.815,0.00764,0.00637,0,0,0,0,0,0,0.00852,0.00852,0.581,0.65,0.578,1,0.744,0.43,0.744,0.744,0.0531,0.0531,0.384,0.411,0,1 +0.667,0.62,0.788,0.788,0,0,0.798,0.798,0.798,0,0,0,0,0,0,0,0,0,0,0.611,0.621,0.713,1,0.793,0.27,0.793,0.793,0.0265,0.0265,0.321,0.344,0,1 +0.667,0.307,0.765,0.765,0,0,0.781,0.781,0.781,0,0,0,0,0,0,0,0,0.00852,0.00852,0.427,0.533,0.676,1,0.842,0.117,0.842,0.842,0.0199,0.0199,0.271,0.29,0.333,1 +0.667,0.203,0.654,0.654,0,0,0.748,0.748,0.748,0,0,0,0,0,0,0,0,0.00852,0.00852,0.39,0.508,0.409,1,0.735,0.0799,0.735,0.735,0.0199,0.0199,0.151,0.162,0.333,1 +0.667,0.0495,0.555,0.555,0,0,0.697,0.697,0.697,0,0,0,0,0,0,0,0,0.00852,0.00852,0.258,0.465,0.177,1,0.637,0.043,0.637,0.637,0.0199,0.0199,0.151,0.162,0.667,1 +0.667,0.0495,0.444,0.444,0,0,0.68,0.68,0.68,0,0,0,0,0,0,0,0,0.00568,0.00568,0.258,0.465,0.0727,1,0.431,0.0246,0.431,0.431,0.0199,0.0199,0.151,0.162,0.667,1 +0.667,0.0495,0.41,0.41,0,0,0.663,0.663,0.663,0,0,0,0,0,0,0,0,0.0114,0.0114,0.258,0.465,0.0354,1,0.225,0.00614,0.225,0.225,0.0199,0.0199,0.183,0.196,0.667,1 +0.667,0.0495,0.41,0.41,0,0,0.646,0.646,0.646,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0177,1,0.186,0.00614,0.186,0.186,0.0199,0.0199,0.151,0.162,0.667,1 +0.667,0.0495,0.399,0.399,0,0,0.629,0.629,0.629,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0138,1,0.147,0.0123,0.147,0.147,0.0265,0.0265,0.183,0.196,0.667,1 +1,0.0495,0.366,0.366,0,0,0.612,0.612,0.612,0,0,0.0133,0,0,0,0,0,0,0,0.258,0.465,0.0216,1,0.157,0.043,0.157,0.157,0.0531,0.0531,0.296,0.317,1,1 +1,0.0798,0.399,0.399,0,0,0.612,0.612,0.612,0,0,0.0224,0.0165,0,0,0,0.024,0,0.024,0.305,0.474,0.0354,1,0.176,0.0737,0.176,0.176,0.0995,0.0995,0.422,0.452,0.667,1 +1,0.236,0.477,0.477,0,0,0.646,0.646,0.646,0,0,0.0337,0.00456,0.238,0.238,0,0.0123,0,0.0123,0.404,0.522,0.057,1,0.255,0.178,0.255,0.255,0.172,0.172,0.359,0.384,0.333,1 +0.667,0.172,0.521,0.521,0,0,0.68,0.68,0.68,0,0,0.0373,0,0.128,0.128,0,0,0,0,0.346,0.518,0.0786,1,0.323,0.283,0.323,0.323,0.292,0.292,0.151,0.162,0.333,1 +0.667,0.175,0.377,0.377,0,0,0.697,0.697,0.697,0,0,0.0296,0,0,0,0,0,0,0,0.298,0.523,0.0963,1,0.323,0.27,0.323,0.323,0.557,0.557,0.151,0.162,0.333,1 +0.667,0.299,0.255,0.255,0,0,0.697,0.697,0.697,0,0,0.0148,0,0,0,0,0,0.00568,0.00568,0.256,0.581,0.114,1,0.313,0.252,0.313,0.313,0.803,0.803,0.12,0.128,0,1 +0.333,0.17,0.266,0.266,0,0,0.68,0.68,0.68,0,0,0,0,0,0,0,0,0,0,0.261,0.523,0.128,1,0.323,0.27,0.323,0.323,0.842,0.842,0.0945,0.101,0,1 +0.333,0.164,0.277,0.277,0,0,0.68,0.68,0.68,0,0,0,0,0,0,0,0.0167,0.00284,0.0196,0.264,0.528,0.142,1,0.323,0.283,0.323,0.323,0.803,0.803,0.0882,0.0944,0,1 +0.333,0.16,0.266,0.266,0,0,0.714,0.714,0.714,0,0,0,0,0,0,0,0.021,0.00852,0.0295,0.261,0.533,0.149,1,0.313,0.258,0.313,0.313,0.796,0.796,0.0882,0.0944,0,1 +0.333,0.159,0.311,0.311,0,0,0.714,0.714,0.714,0,0,0,0,0,0,0,0.0366,0.00284,0.0394,0.275,0.533,0.169,1,0.313,0.233,0.313,0.313,0.597,0.597,0.0882,0.0944,0,1 +0.333,0.159,0.344,0.344,0,0,0.714,0.714,0.714,0,0,0,0,0,0,0,0,0,0,0.286,0.528,0.179,1,0.313,0.301,0.313,0.313,0.497,0.497,0.151,0.162,0,1 +0.333,0.162,0.355,0.355,0,0,0.697,0.697,0.697,0,0,0,0,0,0,0,0,0,0,0.29,0.538,0.2,1,0.323,0.362,0.323,0.323,0.405,0.405,0.365,0.391,0,1 +0.667,0.294,0.433,0.433,0,0,0.748,0.748,0.748,0,0,0,0,0,0,0,0,0.00568,0.00568,0.374,0.631,0.25,1,0.441,0.676,0.441,0.441,0.245,0.245,0.794,0.849,0,1 +0.667,0.35,0.588,0.588,0,0.122,0.815,0.815,0.815,0,0,0,0,0,0,0,0,0,0,0.478,0.67,0.307,1,0.558,0.989,0.558,0.558,0.153,0.153,0.769,0.822,0,1 +1,0.655,0.699,0.699,0,0.0244,0.849,0.849,0.849,0,0,0,0,0,0,0,0,0.0227,0.0227,0.699,0.788,0.413,1,0.646,0.706,0.646,0.646,0.0862,0.0862,0.428,0.458,0,1 +1,0.829,0.743,0.743,0,0,0.815,0.815,0.815,0,0,0.0491,0.00596,0,0,0,0,0.0199,0.0199,0.743,0.743,0.578,1,0.744,0.43,0.744,0.744,0.0531,0.0531,0.384,0.411,0,1 +1,0.62,0.788,0.788,0,0,0.798,0.798,0.798,0,0,0.0401,0.0151,0.055,0.055,0,0.0026,0.00284,0.00544,0.611,0.621,0.713,1,0.793,0.27,0.793,0.793,0.0265,0.0265,0.321,0.344,0.333,1 +1,0.564,0.765,0.765,0,0,0.781,0.781,0.781,0,0,0.0364,0,0.312,0.312,0,0.0519,0.00284,0.0548,0.596,0.601,0.676,1,0.842,0.117,0.842,0.842,0.0199,0.0199,0.271,0.29,0.333,1 +1,0.203,0.654,0.654,0,0,0.748,0.748,0.748,0,0,0.0079,0,0,0,0,0,0.00852,0.00852,0.39,0.508,0.409,1,0.735,0.0799,0.735,0.735,0.0199,0.0199,0.151,0.162,0.667,1 +1,0.116,0.555,0.555,0,0,0.697,0.697,0.697,0,0,0,0,0,0,0,0,0.00284,0.00284,0.357,0.489,0.177,1,0.637,0.043,0.637,0.637,0.0199,0.0199,0.151,0.162,0.667,1 +1,0.0743,0.444,0.444,0,0,0.68,0.68,0.68,0,0,0,0,0,0,0,0,0,0,0.32,0.484,0.0727,1,0.431,0.0246,0.431,0.431,0.0199,0.0199,0.151,0.162,0.667,1 +1,0.0578,0.41,0.41,0,0,0.663,0.663,0.663,0,0,0,0,0,0,0,0,0,0,0.309,0.474,0.0354,1,0.225,0.00614,0.225,0.225,0.0199,0.0199,0.183,0.196,0.667,1 +1,0.0495,0.41,0.41,0,0,0.646,0.646,0.646,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0177,1,0.186,0.00614,0.186,0.186,0.0199,0.0199,0.151,0.162,1,1 +1,0.0495,0.399,0.399,0,0,0.629,0.629,0.629,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0138,1,0.147,0.0123,0.147,0.147,0.0265,0.0265,0.183,0.196,1,1 +1,0.0506,0.366,0.366,0,0,0.612,0.612,0.612,0,0,0,0,0,0,0,0,0,0,0.294,0.469,0.0216,1,0.157,0.043,0.157,0.157,0.0531,0.0531,0.296,0.317,0.667,1 +1,0.0798,0.399,0.399,0,0,0.612,0.612,0.612,0,0,0,0,0,0,0,0,0,0,0.305,0.474,0.0354,1,0.176,0.0737,0.176,0.176,0.0995,0.0995,0.422,0.452,0.667,1 +1,0.143,0.477,0.477,0,0,0.646,0.646,0.646,0,0,0,0,0,0,0,0.0113,0,0.0113,0.331,0.493,0.057,1,0.255,0.178,0.255,0.255,0.172,0.172,0.359,0.384,0.667,1 +1,0.417,0.521,0.521,0,0.0366,0.68,0.68,0.68,0,0,0,0,0,0,0,0.0212,0,0.0212,0.521,0.624,0.0786,1,0.323,0.283,0.323,0.323,0.292,0.292,0.151,0.162,0,1 +1,0.427,0.377,0.377,0,0,0.697,0.697,0.697,0,0,0,0,0,0,0,0,0.00852,0.00852,0.377,0.639,0.0963,1,0.323,0.27,0.323,0.323,0.557,0.557,0.151,0.162,0,1 +0.333,0.174,0.255,0.255,0,0,0.697,0.697,0.697,0,0,0,0,0,0,0,0,0,0,0.257,0.523,0.114,1,0.313,0.252,0.313,0.313,0.803,0.803,0.12,0.128,0,1 +0,0.0495,0.266,0.266,0,0,0.68,0.68,0.68,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.128,1,0.323,0.27,0.323,0.323,0.842,0.842,0.0945,0.101,0,1 +0,0.0495,0.277,0.277,0,0,0.68,0.68,0.68,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.465,0.142,1,0.323,0.283,0.323,0.323,0.803,0.803,0.0882,0.0944,0,1 +0.333,0.16,0.266,0.266,0,0,0.714,0.714,0.714,0,0,0,0,0,0,0,0,0.00568,0.00568,0.261,0.533,0.149,1,0.313,0.258,0.313,0.313,0.796,0.796,0.0882,0.0944,0,1 +0.667,0.269,0.311,0.311,0,0,0.714,0.714,0.714,0,0,0,0,0,0,0,0,0.00852,0.00852,0.293,0.601,0.169,1,0.313,0.233,0.313,0.313,0.597,0.597,0.0882,0.0944,0,1 +0.667,0.269,0.344,0.344,0,0,0.714,0.714,0.714,0,0,0,0,0,0,0,0,0.00568,0.00568,0.315,0.591,0.179,1,0.313,0.301,0.313,0.313,0.497,0.497,0.151,0.162,0,1 +0.667,0.274,0.355,0.355,0,0,0.697,0.697,0.697,0,0,0,0,0,0,0,0,0,0,0.323,0.611,0.2,1,0.323,0.362,0.323,0.323,0.405,0.405,0.365,0.391,0,1 +1,0.417,0.433,0.433,0,0,0.748,0.748,0.748,0,0,0,0,0,0,0,0,0,0,0.433,0.713,0.25,1,0.441,0.676,0.441,0.441,0.245,0.245,0.794,0.849,0,1 +0.667,0.35,0.588,0.588,0,0.0853,0.815,0.815,0.815,0,0,0,0,0,0,0,0,0.00852,0.00852,0.478,0.67,0.307,1,0.558,0.989,0.558,0.558,0.153,0.153,0.769,0.822,0,1 +1,0.655,0.699,0.699,0,0.0244,0.849,0.849,0.849,0,0,0,0,0,0,0,0,0.00852,0.00852,0.699,0.788,0.413,1,0.646,0.706,0.646,0.646,0.0862,0.0862,0.428,0.458,0,1 +1,0.829,0.743,0.743,0,0,0.815,0.815,0.815,0,0,0,0,0,0,0,0,0.017,0.017,0.743,0.743,0.578,1,0.744,0.43,0.744,0.744,0.0531,0.0531,0.384,0.411,0,1 +1,0.905,0.788,0.788,0,0,0.798,0.798,0.798,0,0,0,0,0,0,0,0,0,0,0.788,0.698,0.713,1,0.793,0.27,0.793,0.793,0.0265,0.0265,0.321,0.344,0,1 +1,0.821,0.765,0.765,0,0,0.781,0.781,0.781,0.012,0.0414,0,0,0,0,0,0.0203,0,0.0203,0.765,0.669,0.676,1,0.842,0.117,0.842,0.842,0.0199,0.0199,0.271,0.29,0,1 +1,0.51,0.654,0.654,0,0,0.748,0.748,0.748,0.0157,0.0302,0,0,0,0,0,0.0194,0,0.0194,0.654,0.594,0.409,1,0.735,0.0799,0.735,0.735,0.0199,0.0199,0.151,0.162,0,1 +1,0.183,0.555,0.555,0,0,0.697,0.697,0.697,0.0108,0,0,0,0,0,0,0,0,0,0.456,0.512,0.177,1,0.637,0.043,0.637,0.637,0.0199,0.0199,0.151,0.162,0.333,1 +1,0.0495,0.444,0.444,0,0,0.68,0.68,0.68,0,0,0,0,0,0,0,0,0.017,0.017,0.258,0.465,0.0865,1,0.431,0.0246,0.431,0.431,0.0199,0.0199,0.151,0.162,1,1 +1,0.0495,0.41,0.41,0,0,0.663,0.663,0.663,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0432,1,0.225,0.00614,0.225,0.225,0.0199,0.0199,0.183,0.196,1,1 +1,0.0495,0.41,0.41,0,0,0.646,0.646,0.646,0,0,0,0,0,0,0,0,0.0142,0.0142,0.258,0.465,0.0236,1,0.186,0.00614,0.186,0.186,0.0199,0.0199,0.151,0.162,1,1 +1,0.0495,0.399,0.399,0,0,0.629,0.629,0.629,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0157,1,0.147,0.0123,0.147,0.147,0.0265,0.0265,0.183,0.196,1,1 +1,0.0506,0.366,0.366,0,0,0.612,0.612,0.612,0,0,0,0,0,0,0,0,0,0,0.294,0.469,0.0216,1,0.157,0.043,0.157,0.157,0.0531,0.0531,0.296,0.317,0.667,1 +1,0.0495,0.399,0.399,0,0,0.612,0.612,0.612,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0275,1,0.176,0.0737,0.176,0.176,0.0995,0.0995,0.422,0.452,1,1 +1,0.0495,0.477,0.477,0,0,0.646,0.646,0.646,0,0,0,0,0,0,0,0.026,0,0.026,0.258,0.465,0.0472,1,0.255,0.178,0.255,0.255,0.172,0.172,0.359,0.384,1,1 +1,0.172,0.521,0.521,0,0,0.68,0.68,0.68,0,0,0,0,0,0,0,0.0175,0,0.0175,0.346,0.518,0.0845,1,0.323,0.283,0.323,0.323,0.292,0.292,0.151,0.162,0.667,1 +1,0.175,0.377,0.377,0,0,0.697,0.697,0.697,0,0,0,0,0,0,0,0.0257,0.0142,0.0399,0.298,0.523,0.14,1,0.323,0.27,0.323,0.323,0.557,0.557,0.151,0.162,0.667,1 +1,0.299,0.255,0.255,0,0,0.697,0.697,0.697,0,0,0,0,0,0,0,0.0146,0,0.0146,0.256,0.581,0.185,1,0.313,0.252,0.313,0.313,0.803,0.803,0.12,0.128,0.333,1 +0.667,0.291,0.266,0.266,0,0,0.68,0.68,0.68,0,0,0,0,0,0,0,0.017,0.00284,0.0198,0.263,0.581,0.22,1,0.323,0.27,0.323,0.323,0.842,0.842,0.0945,0.101,0,1 +0.667,0.279,0.277,0.277,0,0,0.68,0.68,0.68,0,0,0,0,0,0,0,0.0302,0.0114,0.0415,0.271,0.591,0.242,1,0.323,0.283,0.323,0.323,0.803,0.803,0.0882,0.0944,0,1 +0.667,0.271,0.266,0.266,0,0,0.714,0.714,0.714,0,0,0,0,0,0,0,0,0.00568,0.00568,0.263,0.601,0.259,1,0.313,0.258,0.313,0.313,0.796,0.796,0.0882,0.0944,0,1 +0,0.0495,0.311,0.311,0,0,0.714,0.714,0.714,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.307,1,0.313,0.233,0.313,0.313,0.597,0.597,0.0882,0.0944,0,1 +0.333,0.159,0.344,0.344,0,0.0731,0.714,0.714,0.714,0,0,0,0,0,0,0,0,0.00284,0.00284,0.286,0.528,0.35,1,0.313,0.301,0.313,0.313,0.497,0.497,0.151,0.162,0,1 +0.333,0.162,0.355,0.355,0,0,0.697,0.697,0.697,0,0,0,0,0,0,0,0,0.0114,0.0114,0.29,0.538,0.385,1,0.323,0.362,0.323,0.323,0.405,0.405,0.365,0.391,0,1 +1,0.417,0.433,0.433,0,0,0.748,0.748,0.748,0,0,0,0,0,0,0,0,0,0,0.433,0.713,0.405,1,0.441,0.676,0.441,0.441,0.245,0.245,0.794,0.849,0,1 +1,0.501,0.588,0.588,0,0,0.815,0.815,0.815,0,0,0.0206,0.00596,0,0,0,0,0.0114,0.0114,0.588,0.773,0.419,1,0.558,0.989,0.558,0.558,0.153,0.153,0.769,0.822,0,1 +0.667,0.453,0.699,0.699,0,0,0.849,0.849,0.849,0,0,0.0391,0.00982,0.147,0.147,0,0,0.0142,0.0142,0.552,0.68,0.493,1,0.646,0.706,0.646,0.646,0.0862,0.0862,0.428,0.458,0,1 +0.667,0.569,0.743,0.743,0,0,0.815,0.815,0.815,0,0,0,0,0.0367,0.0367,0,0,0.0114,0.0114,0.581,0.65,0.649,1,0.744,0.43,0.744,0.744,0.0531,0.0531,0.384,0.411,0,1 +0.667,0.62,0.788,0.788,0,0,0.798,0.798,0.798,0,0,0,0,0,0,0,0,0,0,0.611,0.621,0.763,1,0.793,0.27,0.793,0.793,0.0265,0.0265,0.321,0.344,0,1 +0.667,0.564,0.765,0.765,0,0,0.781,0.781,0.781,0,0,0,0,0,0,0,0,0,0,0.596,0.601,0.704,1,0.842,0.117,0.842,0.842,0.0199,0.0199,0.271,0.29,0,1 +0.667,0.356,0.654,0.654,0,0,0.748,0.748,0.748,0,0,0,0,0,0,0,0.0027,0.0114,0.0141,0.522,0.551,0.444,1,0.735,0.0799,0.735,0.735,0.0199,0.0199,0.151,0.162,0,1 +0.667,0.116,0.555,0.555,0,0,0.697,0.697,0.697,0,0,0,0,0,0,0,0.0054,0,0.0054,0.357,0.489,0.202,1,0.637,0.043,0.637,0.637,0.0199,0.0199,0.151,0.162,0.333,1 +1,0.0743,0.444,0.444,0,0,0.68,0.68,0.68,0,0,0,0,0,0,0,0,0,0,0.32,0.484,0.0865,1,0.431,0.0246,0.431,0.431,0.0199,0.0199,0.151,0.162,0.667,1 +1,0.0495,0.41,0.41,0,0,0.663,0.663,0.663,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0432,1,0.225,0.00614,0.225,0.225,0.0199,0.0199,0.183,0.196,1,1 +1,0.0495,0.41,0.41,0,0,0.646,0.646,0.646,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0236,1,0.186,0.00614,0.186,0.186,0.0199,0.0199,0.151,0.162,1,1 +1,0.0495,0.399,0.399,0,0,0.629,0.629,0.629,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0157,1,0.147,0.0123,0.147,0.147,0.0265,0.0265,0.183,0.196,1,1 +1,0.0506,0.366,0.366,0,0,0.612,0.612,0.612,0,0,0,0,0,0,0,0,0,0,0.294,0.469,0.0216,1,0.157,0.043,0.157,0.157,0.0531,0.0531,0.296,0.317,0.667,1 +1,0.0798,0.399,0.399,0,0,0.612,0.612,0.612,0,0,0,0,0,0,0,0.00246,0,0.00246,0.305,0.474,0.0275,1,0.176,0.0737,0.176,0.176,0.0995,0.0995,0.422,0.452,0.667,1 +1,0.143,0.477,0.477,0,0,0.646,0.646,0.646,0,0,0,0,0,0,0,0.026,0,0.026,0.331,0.493,0.0472,1,0.255,0.178,0.255,0.255,0.172,0.172,0.359,0.384,0.667,1 +1,0.172,0.521,0.521,0,0,0.68,0.68,0.68,0,0,0,0,0,0,0,0,0,0,0.346,0.518,0.0845,1,0.323,0.283,0.323,0.323,0.292,0.292,0.151,0.162,0.667,1 +0.667,0.0495,0.377,0.377,0,0,0.697,0.697,0.697,0,0,0,0,0,0,0,0,0.00568,0.00568,0.258,0.465,0.14,1,0.323,0.27,0.323,0.323,0.557,0.557,0.151,0.162,0.667,1 +0.667,0.0495,0.255,0.255,0,0,0.697,0.697,0.697,0,0,0,0,0,0,0,0,0.00568,0.00568,0.258,0.465,0.185,1,0.313,0.252,0.313,0.313,0.803,0.803,0.12,0.128,0.667,1 +0.667,0.17,0.266,0.266,0,0,0.68,0.68,0.68,0,0,0,0,0,0,0,0,0.00284,0.00284,0.261,0.523,0.22,1,0.323,0.27,0.323,0.323,0.842,0.842,0.0945,0.101,0.333,1 +0.667,0.164,0.277,0.277,0,0,0.68,0.68,0.68,0,0,0,0,0,0,0,0.0169,0.0312,0.0481,0.264,0.528,0.242,1,0.323,0.283,0.323,0.323,0.803,0.803,0.0882,0.0944,0.333,1 +0.667,0.271,0.266,0.266,0,0,0.714,0.714,0.714,0,0,0,0,0,0,0,0,0,0,0.263,0.601,0.259,1,0.313,0.258,0.313,0.313,0.796,0.796,0.0882,0.0944,0,1 +0.667,0.159,0.311,0.311,0,0,0.714,0.714,0.714,0,0,0,0,0,0,0,0,0,0,0.275,0.533,0.307,1,0.313,0.233,0.313,0.313,0.597,0.597,0.0882,0.0944,0.333,1 +1,0.269,0.344,0.344,0,0,0.714,0.714,0.714,0,0,0.0394,0.00596,0,0,0,0,0.00852,0.00852,0.315,0.591,0.35,1,0.313,0.301,0.313,0.313,0.497,0.497,0.151,0.162,0.333,1 +1,0.387,0.355,0.355,0,0,0.697,0.697,0.697,0,0,0.026,0.00456,0.238,0.238,0,0,0.0142,0.0142,0.355,0.684,0.385,1,0.323,0.362,0.323,0.323,0.405,0.405,0.365,0.391,0,1 +1,0.417,0.433,0.433,0,0,0.748,0.748,0.748,0,0,0.0363,0,0.128,0.128,0,0,0.0142,0.0142,0.433,0.713,0.405,1,0.441,0.676,0.441,0.441,0.245,0.245,0.794,0.849,0,1 +1,0.501,0.588,0.588,0,0,0.815,0.815,0.815,0,0,0.013,0,0,0,0,0,0.00852,0.00852,0.588,0.773,0.419,1,0.558,0.989,0.558,0.558,0.153,0.153,0.769,0.822,0,1 +1,0.655,0.699,0.699,0,0,0.849,0.849,0.849,0,0,0,0,0,0,0,0,0,0,0.699,0.788,0.493,1,0.646,0.706,0.646,0.646,0.0862,0.0862,0.428,0.458,0,1 +1,0.829,0.743,0.743,0,0,0.815,0.815,0.815,0.0156,0.0716,0.0245,0.00596,0,0,0,0,0.00284,0.00284,0.743,0.743,0.649,1,0.744,0.43,0.744,0.744,0.0531,0.0531,0.384,0.411,0,1 +1,0.905,0.788,0.788,0,0,0.798,0.798,0.798,0,0,0.0537,0.00982,0.147,0.147,0,0,0.00568,0.00568,0.788,0.698,0.763,1,0.793,0.27,0.793,0.793,0.0265,0.0265,0.321,0.344,0,1 +1,0.821,0.765,0.765,0,0,0.781,0.781,0.781,0,0,0.0329,0,0.367,0.367,0,0,0.00852,0.00852,0.765,0.669,0.704,1,0.842,0.117,0.842,0.842,0.0199,0.0199,0.271,0.29,0,1 +1,0.51,0.654,0.654,0,0,0.748,0.748,0.748,0,0,0.0273,0,0.0367,0.0367,0,0,0,0,0.654,0.594,0.444,1,0.735,0.0799,0.735,0.735,0.0199,0.0199,0.151,0.162,0,1 +1,0.183,0.555,0.555,0,0,0.697,0.697,0.697,0,0,0.00702,0,0,0,0,0,0,0,0.456,0.512,0.202,1,0.637,0.043,0.637,0.637,0.0199,0.0199,0.151,0.162,0.333,1 +1,0.0743,0.444,0.444,0,0,0.68,0.68,0.68,0,0,0,0,0,0,0,0,0,0,0.32,0.484,0.0727,1,0.431,0.0246,0.431,0.431,0.0199,0.0199,0.151,0.162,0.667,1 +1,0.0495,0.41,0.41,0,0,0.663,0.663,0.663,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0354,1,0.225,0.00614,0.225,0.225,0.0199,0.0199,0.183,0.196,1,1 +1,0.0495,0.41,0.41,0,0,0.646,0.646,0.646,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0177,1,0.186,0.00614,0.186,0.186,0.0199,0.0199,0.151,0.162,1,1 +1,0.0495,0.399,0.399,0,0,0.629,0.629,0.629,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0138,1,0.147,0.0123,0.147,0.147,0.0265,0.0265,0.183,0.196,1,1 +1,0.0495,0.366,0.366,0,0,0.612,0.612,0.612,0,0,0,0,0,0,0,0.0302,0,0.0302,0.258,0.465,0.0216,1,0.157,0.043,0.157,0.157,0.0531,0.0531,0.296,0.317,1,1 +1,0.0798,0.399,0.399,0,0,0.612,0.612,0.612,0,0,0,0,0,0,0.0349,0.0275,0,0.0624,0.305,0.474,0.0354,1,0.176,0.0737,0.176,0.176,0.0995,0.0995,0.422,0.452,0.667,1 +0.667,0.143,0.477,0.477,0,0.0487,0.646,0.646,0.646,0,0,0,0,0,0,0.0262,0,0,0.0262,0.331,0.493,0.057,1,0.255,0.178,0.255,0.255,0.172,0.172,0.359,0.384,0.333,1 +0.667,0.172,0.521,0.521,0,0.134,0.68,0.68,0.68,0,0,0,0,0,0,0,0,0,0,0.346,0.518,0.0786,1,0.323,0.283,0.323,0.323,0.292,0.292,0.151,0.162,0.333,1 +0.333,0.175,0.377,0.377,0,0,0.697,0.697,0.697,0,0,0,0,0,0,0,0,0.00284,0.00284,0.298,0.523,0.0963,1,0.323,0.27,0.323,0.323,0.557,0.557,0.151,0.162,0,1 +0,0.0495,0.255,0.255,0,0,0.697,0.697,0.697,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.465,0.114,1,0.313,0.252,0.313,0.313,0.803,0.803,0.12,0.128,0,1 +0,0.0495,0.266,0.266,0,0,0.68,0.68,0.68,0,0,0,0,0,0,0,0,0.00852,0.00852,0.258,0.465,0.128,1,0.323,0.27,0.323,0.323,0.842,0.842,0.0945,0.101,0,1 +0.333,0.164,0.277,0.277,0,0,0.68,0.68,0.68,0,0,0,0,0,0,0,0,0,0,0.264,0.528,0.142,1,0.323,0.283,0.323,0.323,0.803,0.803,0.0882,0.0944,0,1 +0.333,0.16,0.266,0.266,0,0,0.714,0.714,0.714,0,0,0,0,0,0,0,0,0.00284,0.00284,0.261,0.533,0.149,1,0.313,0.258,0.313,0.313,0.796,0.796,0.0882,0.0944,0,1 +0.333,0.0495,0.311,0.311,0,0,0.714,0.714,0.714,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.169,1,0.313,0.233,0.313,0.313,0.597,0.597,0.0882,0.0944,0.333,1 +0,0.0495,0.344,0.344,0,0,0.714,0.714,0.714,0,0,0,0,0,0,0,0,0.00568,0.00568,0.258,0.465,0.179,1,0.313,0.301,0.313,0.313,0.497,0.497,0.151,0.162,0,1 +0.333,0.162,0.355,0.355,0,0,0.697,0.697,0.697,0,0,0,0,0,0,0,0.0187,0.0114,0.03,0.29,0.538,0.2,1,0.323,0.362,0.323,0.323,0.405,0.405,0.365,0.391,0,1 +0.667,0.294,0.433,0.433,0,0,0.748,0.748,0.748,0,0,0,0,0,0,0,0,0,0,0.374,0.631,0.25,1,0.441,0.676,0.441,0.441,0.245,0.245,0.794,0.849,0,1 +1,0.501,0.588,0.588,0,0.0366,0.815,0.815,0.815,0,0,0,0,0,0,0,0,0.00852,0.00852,0.588,0.773,0.307,1,0.558,0.989,0.558,0.558,0.153,0.153,0.769,0.822,0,1 +1,0.655,0.699,0.699,0,0,0.849,0.849,0.849,0,0,0,0,0,0,0,0,0.0114,0.0114,0.699,0.788,0.413,1,0.646,0.706,0.646,0.646,0.0862,0.0862,0.428,0.458,0,1 +0.667,0.569,0.743,0.743,0,0,0.815,0.815,0.815,0,0,0,0,0,0,0,0.00268,0.0199,0.0225,0.581,0.65,0.578,1,0.744,0.43,0.744,0.744,0.0531,0.0531,0.384,0.411,0,1 +1,0.905,0.788,0.788,0,0,0.798,0.798,0.798,0,0,0,0,0,0,0,0.0468,0.00284,0.0496,0.788,0.698,0.713,1,0.793,0.27,0.793,0.793,0.0265,0.0265,0.321,0.344,0,1 +1,0.821,0.765,0.765,0,0,0.781,0.781,0.781,0,0,0,0,0,0,0,0,0,0,0.765,0.669,0.676,1,0.842,0.117,0.842,0.842,0.0199,0.0199,0.271,0.29,0,1 +1,0.356,0.654,0.654,0,0,0.748,0.748,0.748,0,0,0,0,0,0,0.0363,0.0175,0.00284,0.0567,0.522,0.551,0.409,1,0.735,0.0799,0.735,0.735,0.0199,0.0199,0.151,0.162,0.333,1 +1,0.116,0.555,0.555,0,0,0.697,0.697,0.697,0,0,0,0,0,0,0.00908,0.0161,0.00568,0.0309,0.357,0.489,0.177,1,0.637,0.043,0.637,0.637,0.0199,0.0199,0.151,0.162,0.667,1 +1,0.0495,0.444,0.444,0,0,0.68,0.68,0.68,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0727,1,0.431,0.0246,0.431,0.431,0.0199,0.0199,0.151,0.162,1,1 +1,0.0495,0.41,0.41,0,0,0.663,0.663,0.663,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0354,1,0.225,0.00614,0.225,0.225,0.0199,0.0199,0.183,0.196,1,1 +1,0.0495,0.41,0.41,0,0,0.646,0.646,0.646,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0177,1,0.186,0.00614,0.186,0.186,0.0199,0.0199,0.151,0.162,1,1 +1,0.0495,0.399,0.399,0,0,0.629,0.629,0.629,0,0,0,0,0,0,0,0.00259,0,0.00259,0.258,0.465,0.0138,1,0.147,0.0123,0.147,0.147,0.0265,0.0265,0.183,0.196,1,1 +1,0.0506,0.366,0.366,0,0,0.612,0.612,0.612,0,0,0,0,0,0,0,0.0457,0,0.0457,0.294,0.469,0.0216,1,0.157,0.043,0.157,0.157,0.0531,0.0531,0.296,0.317,0.667,1 +1,0.11,0.399,0.399,0,0,0.612,0.612,0.612,0,0,0,0,0,0,0,0,0,0,0.352,0.482,0.0354,1,0.176,0.0737,0.176,0.176,0.0995,0.0995,0.422,0.452,0.333,1 +0.333,0.0495,0.477,0.477,0,0,0.646,0.646,0.646,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.057,1,0.255,0.178,0.255,0.255,0.172,0.172,0.359,0.384,0.333,1 +0.333,0.0495,0.521,0.521,0,0,0.68,0.68,0.68,0,0,0,0,0,0,0,0.0126,0,0.0126,0.258,0.465,0.0786,1,0.323,0.283,0.323,0.323,0.292,0.292,0.151,0.162,0.333,1 +0.333,0.175,0.377,0.377,0,0,0.697,0.697,0.697,0,0,0,0,0,0,0,0.0194,0.0114,0.0308,0.298,0.523,0.0963,1,0.323,0.27,0.323,0.323,0.557,0.557,0.151,0.162,0,1 +0.333,0.174,0.255,0.255,0,0,0.697,0.697,0.697,0,0,0,0,0,0,0,0.00264,0.00568,0.00832,0.257,0.523,0.114,1,0.313,0.252,0.313,0.313,0.803,0.803,0.12,0.128,0,1 +0.333,0.17,0.266,0.266,0,0,0.68,0.68,0.68,0,0,0,0,0,0,0,0.0438,0,0.0438,0.261,0.523,0.128,1,0.323,0.27,0.323,0.323,0.842,0.842,0.0945,0.101,0,1 +0.333,0.164,0.277,0.277,0,0,0.68,0.68,0.68,0,0,0,0,0,0,0,0,0.00568,0.00568,0.264,0.528,0.142,1,0.323,0.283,0.323,0.323,0.803,0.803,0.0882,0.0944,0,1 +0,0.0495,0.266,0.266,0,0,0.714,0.714,0.714,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.149,1,0.313,0.258,0.313,0.313,0.796,0.796,0.0882,0.0944,0,1 +0,0.0495,0.311,0.311,0,0,0.714,0.714,0.714,0,0,0,0,0,0,0,0.00249,0,0.00249,0.258,0.465,0.169,1,0.313,0.233,0.313,0.313,0.597,0.597,0.0882,0.0944,0,1 +0.667,0.269,0.344,0.344,0,0,0.714,0.714,0.714,0,0,0,0,0,0,0,0.0175,0.0142,0.0317,0.315,0.591,0.179,1,0.313,0.301,0.313,0.313,0.497,0.497,0.151,0.162,0,1 +0.333,0.162,0.355,0.355,0,0,0.697,0.697,0.697,0,0,0,0,0,0,0,0,0.00852,0.00852,0.29,0.538,0.2,1,0.323,0.362,0.323,0.323,0.405,0.405,0.365,0.391,0,1 +0.667,0.294,0.433,0.433,0,0.0366,0.748,0.748,0.748,0,0,0.0373,0.00596,0,0,0,0,0,0,0.374,0.631,0.25,1,0.441,0.676,0.441,0.441,0.245,0.245,0.794,0.849,0,1 +0.667,0.35,0.588,0.588,0,0,0.815,0.815,0.815,0,0,0.02,0.00982,0.147,0.147,0,0,0,0,0.478,0.67,0.307,1,0.558,0.989,0.558,0.558,0.153,0.153,0.769,0.822,0,1 +0.667,0.453,0.699,0.699,0,0,0.849,0.849,0.849,0,0,0,0,0.128,0.128,0,0,0.00852,0.00852,0.552,0.68,0.413,1,0.646,0.706,0.646,0.646,0.0862,0.0862,0.428,0.458,0,1 +0.667,0.569,0.743,0.743,0,0,0.815,0.815,0.815,0,0,0,0,0,0,0,0.0152,0,0.0152,0.581,0.65,0.578,1,0.744,0.43,0.744,0.744,0.0531,0.0531,0.384,0.411,0,1 +1,0.905,0.788,0.788,0,0,0.798,0.798,0.798,0,0,0,0,0,0,0,0.00262,0.00852,0.0111,0.788,0.698,0.713,1,0.793,0.27,0.793,0.793,0.0265,0.0265,0.321,0.344,0,1 +1,0.821,0.765,0.765,0,0,0.781,0.781,0.781,0,0,0,0,0,0,0,0.0418,0,0.0418,0.765,0.669,0.676,1,0.842,0.117,0.842,0.842,0.0199,0.0199,0.271,0.29,0,1 +1,0.203,0.654,0.654,0,0,0.748,0.748,0.748,0,0,0,0,0,0,0,0.0168,0.0142,0.031,0.39,0.508,0.409,1,0.735,0.0799,0.735,0.735,0.0199,0.0199,0.151,0.162,0.667,1 +1,0.0495,0.555,0.555,0,0,0.697,0.697,0.697,0,0,0,0,0,0,0,0,0.0142,0.0142,0.258,0.465,0.177,1,0.637,0.043,0.637,0.637,0.0199,0.0199,0.151,0.162,1,1 +1,0.0495,0.444,0.444,0,0,0.68,0.68,0.68,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0727,1,0.431,0.0246,0.431,0.431,0.0199,0.0199,0.151,0.162,1,1 +1,0.0495,0.41,0.41,0,0,0.663,0.663,0.663,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.465,0.0354,1,0.225,0.00614,0.225,0.225,0.0199,0.0199,0.183,0.196,1,1 +1,0.0495,0.41,0.41,0,0,0.646,0.646,0.646,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0177,1,0.186,0.00614,0.186,0.186,0.0199,0.0199,0.151,0.162,1,1 +1,0.0495,0.399,0.399,0,0,0.629,0.629,0.629,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0138,1,0.147,0.0123,0.147,0.147,0.0265,0.0265,0.183,0.196,1,1 +1,0.0495,0.366,0.366,0,0,0.612,0.612,0.612,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0216,1,0.157,0.043,0.157,0.157,0.0531,0.0531,0.296,0.317,1,1 +1,0.0495,0.399,0.399,0,0,0.612,0.612,0.612,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0354,1,0.176,0.0737,0.176,0.176,0.0995,0.0995,0.422,0.452,1,1 +0.667,0.143,0.477,0.477,0,0,0.646,0.646,0.646,0,0,0,0,0,0,0,0,0,0,0.331,0.493,0.057,1,0.255,0.178,0.255,0.255,0.172,0.172,0.359,0.384,0.333,1 +0.667,0.172,0.521,0.521,0,0,0.68,0.68,0.68,0.0255,0.0716,0,0,0,0,0,0,0,0,0.346,0.518,0.0786,1,0.323,0.283,0.323,0.323,0.292,0.292,0.151,0.162,0.333,1 +0.333,0.0495,0.377,0.377,0,0,0.697,0.697,0.697,0.0155,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0963,1,0.323,0.27,0.323,0.323,0.557,0.557,0.151,0.162,0.333,1 +0.333,0.174,0.255,0.255,0,0.0731,0.697,0.697,0.697,0,0,0,0,0,0,0,0,0,0,0.257,0.523,0.114,1,0.313,0.252,0.313,0.313,0.803,0.803,0.12,0.128,0,1 +0.333,0.17,0.266,0.266,0,0,0.68,0.68,0.68,0,0,0,0,0,0,0,0,0.00568,0.00568,0.261,0.523,0.128,1,0.323,0.27,0.323,0.323,0.842,0.842,0.0945,0.101,0,1 +0.333,0.164,0.277,0.277,0,0,0.68,0.68,0.68,0,0,0,0,0,0,0,0,0,0,0.264,0.528,0.142,1,0.323,0.283,0.323,0.323,0.803,0.803,0.0882,0.0944,0,1 +0.333,0.16,0.266,0.266,0,0,0.714,0.714,0.714,0,0,0,0,0,0,0,0,0,0,0.261,0.533,0.149,1,0.313,0.258,0.313,0.313,0.796,0.796,0.0882,0.0944,0,1 +0.333,0.159,0.311,0.311,0,0,0.714,0.714,0.714,0,0,0,0,0,0,0,0,0.0114,0.0114,0.275,0.533,0.169,1,0.313,0.233,0.313,0.313,0.597,0.597,0.0882,0.0944,0,1 +0,0.0495,0.344,0.344,0,0,0.714,0.714,0.714,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.179,1,0.313,0.301,0.313,0.313,0.497,0.497,0.151,0.162,0,1 +0.333,0.162,0.355,0.355,0,0,0.697,0.697,0.697,0,0,0,0,0,0,0,0,0.017,0.017,0.29,0.538,0.2,1,0.323,0.362,0.323,0.323,0.405,0.405,0.365,0.391,0,1 +0.333,0.172,0.433,0.433,0,0,0.748,0.748,0.748,0,0,0,0,0,0,0,0,0.00852,0.00852,0.316,0.548,0.25,1,0.441,0.676,0.441,0.441,0.245,0.245,0.794,0.849,0,1 +1,0.501,0.588,0.588,0,0,0.815,0.815,0.815,0,0,0,0,0,0,0,0,0.00284,0.00284,0.588,0.773,0.307,1,0.558,0.989,0.558,0.558,0.153,0.153,0.769,0.822,0,1 +1,0.655,0.699,0.699,0,0,0.849,0.849,0.849,0,0,0,0,0,0,0,0,0.00284,0.00284,0.699,0.788,0.413,1,0.646,0.706,0.646,0.646,0.0862,0.0862,0.428,0.458,0,1 +0.667,0.569,0.743,0.743,0,0,0.815,0.815,0.815,0.00938,0.0239,0,0,0,0,0,0,0.00852,0.00852,0.581,0.65,0.578,1,0.744,0.43,0.744,0.744,0.0531,0.0531,0.384,0.411,0,1 +0.667,0.62,0.788,0.788,0,0,0.798,0.798,0.798,0.0166,0,0,0,0,0,0,0,0.00852,0.00852,0.611,0.621,0.713,1,0.793,0.27,0.793,0.793,0.0265,0.0265,0.321,0.344,0,1 +1,0.307,0.765,0.765,0,0,0.781,0.781,0.781,0,0,0,0,0,0,0,0.00267,0,0.00267,0.427,0.533,0.676,1,0.842,0.117,0.842,0.842,0.0199,0.0199,0.271,0.29,0.667,1 +1,0.203,0.654,0.654,0,0,0.748,0.748,0.748,0,0,0,0,0,0,0,0.024,0,0.024,0.39,0.508,0.409,1,0.735,0.0799,0.735,0.735,0.0199,0.0199,0.151,0.162,0.667,1 +1,0.0495,0.555,0.555,0,0,0.697,0.697,0.697,0,0,0,0,0,0,0,0,0.0255,0.0255,0.258,0.465,0.177,1,0.637,0.043,0.637,0.637,0.0199,0.0199,0.151,0.162,1,1 +1,0.0495,0.442,0.442,0,0,0.675,0.675,0.675,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0721,1,0.429,0.0246,0.429,0.429,0.0198,0.0198,0.15,0.161,1,1 +1,0.0495,0.409,0.409,0,0,0.658,0.658,0.658,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0351,1,0.224,0.00614,0.224,0.224,0.0198,0.0198,0.182,0.194,1,1 +1,0.0495,0.409,0.409,0,0,0.641,0.641,0.641,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0175,1,0.185,0.00614,0.185,0.185,0.0198,0.0198,0.15,0.161,1,1 +1,0.0495,0.398,0.398,0,0,0.625,0.625,0.625,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0136,1,0.146,0.0123,0.146,0.146,0.0264,0.0264,0.182,0.194,1,1 +1,0.0495,0.365,0.365,0,0,0.608,0.608,0.608,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0214,1,0.156,0.043,0.156,0.156,0.0528,0.0528,0.294,0.315,1,1 +1,0.0495,0.398,0.398,0,0,0.608,0.608,0.608,0,0,0,0,0,0,0,0.0363,0,0.0363,0.258,0.465,0.0351,1,0.176,0.0737,0.176,0.176,0.0991,0.0991,0.419,0.449,1,1 +1,0.147,0.476,0.476,0,0,0.641,0.641,0.641,0,0,0,0,0,0,0,0.0134,0,0.0134,0.33,0.493,0.0565,1,0.254,0.178,0.254,0.254,0.172,0.172,0.357,0.382,0.667,1 +1,0.305,0.52,0.52,0,0,0.675,0.675,0.675,0,0,0,0,0,0,0,0.0483,0,0.0483,0.432,0.57,0.078,1,0.322,0.283,0.322,0.322,0.291,0.291,0.15,0.161,0.333,1 +1,0.318,0.376,0.376,0,0,0.692,0.692,0.692,0,0,0.0281,0.000702,0,0,0.0328,0.0328,0,0.0656,0.337,0.58,0.0955,1,0.322,0.27,0.322,0.322,0.555,0.555,0.15,0.161,0.333,1 +1,0.456,0.254,0.254,0,0,0.692,0.692,0.692,0,0,0.0441,0.0203,0,0,0,0.013,0.00852,0.0215,0.254,0.637,0.113,1,0.312,0.252,0.312,0.312,0.799,0.799,0.119,0.127,0,1 +0.667,0.312,0.265,0.265,0,0,0.675,0.675,0.675,0,0,0.029,0,0.275,0.275,0,0,0,0,0.263,0.58,0.127,1,0.322,0.27,0.322,0.322,0.839,0.839,0.0939,0.1,0,1 +0.333,0.175,0.276,0.276,0,0,0.675,0.675,0.675,0,0,0,0,0,0,0,0,0,0,0.264,0.528,0.14,1,0.322,0.283,0.322,0.322,0.799,0.799,0.0876,0.0938,0,1 +0,0.0495,0.265,0.265,0,0,0.709,0.709,0.709,0,0,0,0,0,0,0,0,0.0142,0.0142,0.258,0.465,0.148,1,0.312,0.258,0.312,0.312,0.793,0.793,0.0876,0.0938,0,1 +0,0.0495,0.31,0.31,0,0,0.709,0.709,0.709,0,0,0,0,0,0,0,0.0364,0.00852,0.0449,0.258,0.465,0.168,1,0.312,0.233,0.312,0.312,0.595,0.595,0.0876,0.0938,0,1 +0.333,0.173,0.343,0.343,0,0,0.709,0.709,0.709,0,0,0,0,0,0,0,0.0309,0,0.0309,0.286,0.528,0.177,1,0.312,0.301,0.312,0.312,0.495,0.495,0.15,0.161,0,1 +0.333,0.194,0.354,0.354,0,0,0.692,0.692,0.692,0,0,0,0,0,0,0,0,0.00284,0.00284,0.29,0.537,0.199,1,0.322,0.362,0.322,0.322,0.403,0.403,0.363,0.388,0,1 +0.333,0.237,0.431,0.431,0,0,0.743,0.743,0.743,0,0,0,0,0,0,0,0,0,0,0.316,0.547,0.248,1,0.439,0.676,0.439,0.439,0.244,0.244,0.789,0.844,0,1 +0.333,0.301,0.586,0.586,0,0,0.81,0.81,0.81,0,0,0,0,0,0,0,0,0,0,0.367,0.567,0.304,1,0.556,0.989,0.556,0.556,0.152,0.152,0.764,0.817,0,1 +0.667,0.647,0.697,0.697,0,0,0.844,0.844,0.844,0,0,0,0,0,0,0,0,0.0142,0.0142,0.55,0.679,0.409,1,0.644,0.706,0.644,0.644,0.0859,0.0859,0.426,0.455,0,1 +1,0.919,0.741,0.741,0,0.0366,0.81,0.81,0.81,0,0,0,0,0,0,0,0,0.00568,0.00568,0.741,0.741,0.573,1,0.741,0.43,0.741,0.741,0.0528,0.0528,0.382,0.409,0,1 +1,0.747,0.785,0.785,0,0,0.793,0.793,0.793,0,0,0,0,0,0,0,0,0.00284,0.00284,0.785,0.696,0.708,1,0.79,0.27,0.79,0.79,0.0264,0.0264,0.319,0.342,0,1 +1,0.394,0.763,0.763,0,0,0.776,0.776,0.776,0,0,0,0,0,0,0,0.0101,0.00568,0.0158,0.595,0.6,0.671,1,0.839,0.117,0.839,0.839,0.0198,0.0198,0.269,0.288,0.333,1 +1,0.345,0.652,0.652,0,0,0.743,0.743,0.743,0,0,0,0,0,0,0,0.0143,0,0.0143,0.521,0.55,0.405,1,0.732,0.0799,0.732,0.732,0.0198,0.0198,0.15,0.161,0.333,1 +1,0.116,0.553,0.553,0,0,0.692,0.692,0.692,0,0,0,0,0,0,0,0,0,0,0.356,0.488,0.175,1,0.634,0.043,0.634,0.634,0.0198,0.0198,0.15,0.161,0.667,1 +1,0.0495,0.442,0.442,0,0,0.675,0.675,0.675,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0721,1,0.429,0.0246,0.429,0.429,0.0198,0.0198,0.15,0.161,1,1 +1,0.0495,0.409,0.409,0,0,0.658,0.658,0.658,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0351,1,0.224,0.00614,0.224,0.224,0.0198,0.0198,0.182,0.194,1,1 +1,0.0495,0.409,0.409,0,0,0.641,0.641,0.641,0,0,0,0,0,0,0,0,0.00568,0.00568,0.258,0.465,0.0175,1,0.185,0.00614,0.185,0.185,0.0198,0.0198,0.15,0.161,1,1 +1,0.0495,0.398,0.398,0,0,0.625,0.625,0.625,0,0,0,0,0,0,0,0,0.0114,0.0114,0.258,0.465,0.0136,1,0.146,0.0123,0.146,0.146,0.0264,0.0264,0.182,0.194,1,1 +1,0.0495,0.365,0.365,0,0,0.608,0.608,0.608,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0214,1,0.156,0.043,0.156,0.156,0.0528,0.0528,0.294,0.315,1,1 +1,0.0495,0.398,0.398,0,0,0.608,0.608,0.608,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0351,1,0.176,0.0737,0.176,0.176,0.0991,0.0991,0.419,0.449,1,1 +1,0.0495,0.476,0.476,0,0,0.641,0.641,0.641,0,0,0.0429,0.00596,0,0,0,0.0217,0,0.0217,0.258,0.465,0.0565,1,0.254,0.178,0.254,0.254,0.172,0.172,0.357,0.382,1,1 +1,0.433,0.52,0.52,0,0.0122,0.675,0.675,0.675,0,0,0,0.00456,0.238,0.238,0,0.0188,0,0.0188,0.52,0.622,0.078,1,0.322,0.283,0.322,0.322,0.291,0.291,0.15,0.161,0,1 +0.667,0.318,0.376,0.376,0,0.0244,0.692,0.692,0.692,0,0,0,0,0.0367,0.0367,0,0.0351,0,0.0351,0.337,0.58,0.0955,1,0.322,0.27,0.322,0.322,0.555,0.555,0.15,0.161,0,1 +0.667,0.321,0.254,0.254,0,0,0.692,0.692,0.692,0,0,0,0,0,0,0,0.0231,0,0.0231,0.255,0.58,0.113,1,0.312,0.252,0.312,0.312,0.799,0.799,0.119,0.127,0,1 +0.667,0.312,0.265,0.265,0,0,0.675,0.675,0.675,0,0,0,0,0,0,0.0335,0.00259,0,0.0361,0.263,0.58,0.127,1,0.322,0.27,0.322,0.322,0.839,0.839,0.0939,0.1,0,1 +0.667,0.3,0.276,0.276,0,0,0.675,0.675,0.675,0,0,0,0,0,0,0.0862,0.0382,0,0.124,0.27,0.59,0.14,1,0.322,0.283,0.322,0.322,0.799,0.799,0.0876,0.0938,0,1 +0.667,0.292,0.265,0.265,0,0,0.709,0.709,0.709,0,0,0,0,0,0,0,0.0143,0.0255,0.0398,0.263,0.6,0.148,1,0.312,0.258,0.312,0.312,0.793,0.793,0.0876,0.0938,0,1 +0.667,0.289,0.31,0.31,0,0.0122,0.709,0.709,0.709,0,0,0,0,0,0,0,0.0148,0.00284,0.0176,0.292,0.6,0.168,1,0.312,0.233,0.312,0.312,0.595,0.595,0.0876,0.0938,0,1 +0.333,0.173,0.343,0.343,0,0.0244,0.709,0.709,0.709,0,0,0,0,0,0,0,0,0.0227,0.0227,0.286,0.528,0.177,1,0.312,0.301,0.312,0.312,0.495,0.495,0.15,0.161,0,1 +0.667,0.338,0.354,0.354,0,0,0.692,0.692,0.692,0,0,0,0,0,0,0,0,0.0114,0.0114,0.322,0.609,0.199,1,0.322,0.362,0.322,0.322,0.403,0.403,0.363,0.388,0,1 +0.667,0.425,0.431,0.431,0,0,0.743,0.743,0.743,0,0,0,0,0,0,0,0,0.0142,0.0142,0.373,0.629,0.248,1,0.439,0.676,0.439,0.439,0.244,0.244,0.789,0.844,0,1 +0.667,0.553,0.586,0.586,0,0,0.81,0.81,0.81,0,0,0,0,0,0,0,0,0,0,0.477,0.669,0.304,1,0.556,0.989,0.556,0.556,0.152,0.152,0.764,0.817,0,1 +0.667,0.647,0.697,0.697,0,0,0.844,0.844,0.844,0,0,0,0,0,0,0,0.0232,0.00852,0.0317,0.55,0.679,0.409,1,0.644,0.706,0.644,0.644,0.0859,0.0859,0.426,0.455,0,1 +1,0.919,0.741,0.741,0,0,0.81,0.81,0.81,0.0141,0.0239,0,0,0,0,0,0.0136,0.00568,0.0192,0.741,0.741,0.573,1,0.741,0.43,0.741,0.741,0.0528,0.0528,0.382,0.409,0,1 +1,0.747,0.785,0.785,0,0,0.793,0.793,0.793,0.0176,0.0239,0,0,0,0,0,0.0386,0.00568,0.0443,0.785,0.696,0.708,1,0.79,0.27,0.79,0.79,0.0264,0.0264,0.319,0.342,0,1 +1,0.394,0.763,0.763,0,0,0.776,0.776,0.776,0.0136,0,0,0,0,0,0.0355,0.00795,0.00284,0.0463,0.595,0.6,0.671,1,0.839,0.117,0.839,0.839,0.0198,0.0198,0.269,0.288,0.333,1 +1,0.345,0.652,0.652,0,0,0.743,0.743,0.743,0,0,0,0,0,0,0.0266,0.0278,0,0.0544,0.521,0.55,0.405,1,0.732,0.0799,0.732,0.732,0.0198,0.0198,0.15,0.161,0.333,1 +1,0.116,0.553,0.553,0,0,0.692,0.692,0.692,0,0,0,0,0,0,0,0,0,0,0.356,0.488,0.175,1,0.634,0.043,0.634,0.634,0.0198,0.0198,0.15,0.161,0.667,1 +1,0.0495,0.442,0.442,0,0,0.675,0.675,0.675,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0858,1,0.429,0.0246,0.429,0.429,0.0198,0.0198,0.15,0.161,1,1 +1,0.0495,0.409,0.409,0,0,0.658,0.658,0.658,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0429,1,0.224,0.00614,0.224,0.224,0.0198,0.0198,0.182,0.194,1,1 +1,0.0495,0.409,0.409,0,0,0.641,0.641,0.641,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.465,0.0234,1,0.185,0.00614,0.185,0.185,0.0198,0.0198,0.15,0.161,1,1 +1,0.0495,0.398,0.398,0,0,0.625,0.625,0.625,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0156,1,0.146,0.0123,0.146,0.146,0.0264,0.0264,0.182,0.194,1,1 +1,0.0495,0.365,0.365,0,0,0.608,0.608,0.608,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0214,1,0.156,0.043,0.156,0.156,0.0528,0.0528,0.294,0.315,1,1 +1,0.0495,0.398,0.398,0,0,0.608,0.608,0.608,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0273,1,0.176,0.0737,0.176,0.176,0.0991,0.0991,0.419,0.449,1,1 +1,0.0495,0.476,0.476,0,0,0.641,0.641,0.641,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0468,1,0.254,0.178,0.254,0.254,0.172,0.172,0.357,0.382,1,1 +0.667,0.177,0.52,0.52,0,0,0.675,0.675,0.675,0,0,0,0,0,0,0,0,0,0,0.345,0.518,0.0838,1,0.322,0.283,0.322,0.322,0.291,0.291,0.15,0.161,0.333,1 +0.667,0.184,0.376,0.376,0,0,0.692,0.692,0.692,0,0,0,0,0,0,0,0,0,0,0.297,0.523,0.138,1,0.322,0.27,0.322,0.322,0.555,0.555,0.15,0.161,0.333,1 +0.667,0.185,0.254,0.254,0,0,0.692,0.692,0.692,0,0,0,0,0,0,0,0,0,0,0.257,0.523,0.183,1,0.312,0.252,0.312,0.312,0.799,0.799,0.119,0.127,0.333,1 +0.667,0.181,0.265,0.265,0,0,0.675,0.675,0.675,0,0,0,0,0,0,0,0,0,0,0.26,0.523,0.218,1,0.322,0.27,0.322,0.322,0.839,0.839,0.0939,0.1,0.333,1 +0.667,0.175,0.276,0.276,0,0,0.675,0.675,0.675,0,0,0,0,0,0,0,0.00263,0.00852,0.0111,0.264,0.528,0.24,1,0.322,0.283,0.322,0.322,0.799,0.799,0.0876,0.0938,0.333,1 +0.667,0.292,0.265,0.265,0,0.0122,0.709,0.709,0.709,0,0,0,0,0,0,0,0.0158,0,0.0158,0.263,0.6,0.257,1,0.312,0.258,0.312,0.312,0.793,0.793,0.0876,0.0938,0,1 +0.333,0.169,0.31,0.31,0,0.146,0.709,0.709,0.709,0,0,0,0,0,0,0,0,0.0199,0.0199,0.275,0.532,0.304,1,0.312,0.233,0.312,0.312,0.595,0.595,0.0876,0.0938,0,1 +0.333,0.173,0.343,0.343,0,0.146,0.709,0.709,0.709,0,0,0,0,0,0,0,0.0255,0.00568,0.0312,0.286,0.528,0.347,1,0.312,0.301,0.312,0.312,0.495,0.495,0.15,0.161,0,1 +0.667,0.338,0.354,0.354,0,0.146,0.692,0.692,0.692,0,0,0,0,0,0,0,0,0.00284,0.00284,0.322,0.609,0.382,1,0.322,0.362,0.322,0.322,0.403,0.403,0.363,0.388,0,1 +0.667,0.425,0.431,0.431,0,0.146,0.743,0.743,0.743,0,0,0,0,0,0,0,0,0.0114,0.0114,0.373,0.629,0.402,1,0.439,0.676,0.439,0.439,0.244,0.244,0.789,0.844,0,1 +0.667,0.553,0.586,0.586,0,0.0244,0.81,0.81,0.81,0,0,0,0,0,0,0,0,0,0,0.477,0.669,0.415,1,0.556,0.989,0.556,0.556,0.152,0.152,0.764,0.817,0,1 +1,0.946,0.697,0.697,0,0,0.844,0.844,0.844,0,0,0,0,0,0,0,0,0,0,0.697,0.785,0.489,1,0.644,0.706,0.644,0.644,0.0859,0.0859,0.426,0.455,0,1 +1,0.919,0.741,0.741,0,0,0.81,0.81,0.81,0,0,0,0,0,0,0,0,0.0114,0.0114,0.741,0.741,0.643,1,0.741,0.43,0.741,0.741,0.0528,0.0528,0.382,0.409,0,1 +1,0.747,0.785,0.785,0,0,0.793,0.793,0.793,0,0,0,0,0,0,0,0,0,0,0.785,0.696,0.756,1,0.79,0.27,0.79,0.79,0.0264,0.0264,0.319,0.342,0,1 +1,0.566,0.763,0.763,0,0,0.776,0.776,0.776,0,0,0,0,0,0,0,0,0.00568,0.00568,0.763,0.667,0.698,1,0.839,0.117,0.839,0.839,0.0198,0.0198,0.269,0.288,0,1 +1,0.493,0.652,0.652,0,0,0.743,0.743,0.743,0,0,0,0,0,0,0,0,0,0,0.652,0.593,0.441,1,0.732,0.0799,0.732,0.732,0.0198,0.0198,0.15,0.161,0,1 +1,0.249,0.553,0.553,0,0,0.692,0.692,0.692,0,0,0,0,0,0,0,0,0.00568,0.00568,0.553,0.533,0.201,1,0.634,0.043,0.634,0.634,0.0198,0.0198,0.15,0.161,0,1 +1,0.0743,0.442,0.442,0,0,0.675,0.675,0.675,0,0,0,0,0,0,0,0,0.0114,0.0114,0.319,0.483,0.0858,1,0.429,0.0246,0.429,0.429,0.0198,0.0198,0.15,0.161,0.667,1 +1,0.0495,0.409,0.409,0,0,0.658,0.658,0.658,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0429,1,0.224,0.00614,0.224,0.224,0.0198,0.0198,0.182,0.194,1,1 +1,0.0495,0.409,0.409,0,0,0.641,0.641,0.641,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0234,1,0.185,0.00614,0.185,0.185,0.0198,0.0198,0.15,0.161,1,1 +1,0.0495,0.398,0.398,0,0,0.625,0.625,0.625,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0156,1,0.146,0.0123,0.146,0.146,0.0264,0.0264,0.182,0.194,1,1 +1,0.0495,0.365,0.365,0,0,0.608,0.608,0.608,0,0,0,0,0,0,0,0,0.017,0.017,0.258,0.465,0.0214,1,0.156,0.043,0.156,0.156,0.0528,0.0528,0.294,0.315,1,1 +1,0.0495,0.398,0.398,0,0,0.608,0.608,0.608,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0273,1,0.176,0.0737,0.176,0.176,0.0991,0.0991,0.419,0.449,1,1 +0.667,0.0495,0.476,0.476,0,0,0.641,0.641,0.641,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0468,1,0.254,0.178,0.254,0.254,0.172,0.172,0.357,0.382,0.667,1 +0.667,0.0495,0.52,0.52,0,0,0.675,0.675,0.675,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0838,1,0.322,0.283,0.322,0.322,0.291,0.291,0.15,0.161,0.667,1 +0.667,0.0495,0.376,0.376,0,0,0.692,0.692,0.692,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.138,1,0.322,0.27,0.322,0.322,0.555,0.555,0.15,0.161,0.667,1 +0.667,0.321,0.254,0.254,0,0.0853,0.692,0.692,0.692,0,0,0.00556,0,0,0,0,0,0,0,0.255,0.58,0.183,1,0.312,0.252,0.312,0.312,0.799,0.799,0.119,0.127,0,1 +0.667,0.312,0.265,0.265,0,0.0731,0.675,0.675,0.675,0,0,0.0362,0.0165,0,0,0,0,0,0,0.263,0.58,0.218,1,0.322,0.27,0.322,0.322,0.839,0.839,0.0939,0.1,0,1 +0.667,0.3,0.276,0.276,0,0.0244,0.675,0.675,0.675,0,0,0.0294,0.00456,0.238,0.238,0,0,0,0,0.27,0.59,0.24,1,0.322,0.283,0.322,0.322,0.799,0.799,0.0876,0.0938,0,1 +0.667,0.292,0.265,0.265,0,0,0.709,0.709,0.709,0,0,0.0331,0,0.312,0.312,0,0,0,0,0.263,0.6,0.257,1,0.312,0.258,0.312,0.312,0.793,0.793,0.0876,0.0938,0,1 +0.667,0.289,0.31,0.31,0,0,0.709,0.709,0.709,0,0,0.025,0,0,0,0,0,0.00852,0.00852,0.292,0.6,0.304,1,0.312,0.233,0.312,0.312,0.595,0.595,0.0876,0.0938,0,1 +0.667,0.173,0.343,0.343,0,0.0853,0.709,0.709,0.709,0,0,0,0,0,0,0,0,0,0,0.286,0.528,0.347,1,0.312,0.301,0.312,0.312,0.495,0.495,0.15,0.161,0.333,1 +0.667,0.194,0.354,0.354,0,0.134,0.692,0.692,0.692,0,0,0,0,0,0,0,0.0378,0.00568,0.0435,0.29,0.537,0.382,1,0.322,0.362,0.322,0.322,0.403,0.403,0.363,0.388,0.333,1 +0.667,0.425,0.431,0.431,0,0,0.743,0.743,0.743,0,0,0,0,0,0,0,0,0.017,0.017,0.373,0.629,0.402,1,0.439,0.676,0.439,0.439,0.244,0.244,0.789,0.844,0,1 +0.667,0.553,0.586,0.586,0,0,0.81,0.81,0.81,0,0,0,0,0,0,0,0,0.0142,0.0142,0.477,0.669,0.415,1,0.556,0.989,0.556,0.556,0.152,0.152,0.764,0.817,0,1 +0.667,0.647,0.697,0.697,0,0,0.844,0.844,0.844,0,0,0,0,0,0,0,0.0249,0.00568,0.0306,0.55,0.679,0.489,1,0.644,0.706,0.644,0.644,0.0859,0.0859,0.426,0.455,0,1 +0.667,0.629,0.741,0.741,0,0,0.81,0.81,0.81,0,0,0,0,0,0,0,0.0189,0,0.0189,0.58,0.649,0.643,1,0.741,0.43,0.741,0.741,0.0528,0.0528,0.382,0.409,0,1 +0.667,0.515,0.785,0.785,0,0.0122,0.793,0.793,0.793,0.0148,0.0716,0,0,0,0,0,0,0.00852,0.00852,0.609,0.619,0.756,1,0.79,0.27,0.79,0.79,0.0264,0.0264,0.319,0.342,0,1 +1,0.566,0.763,0.763,0,0.0609,0.776,0.776,0.776,0.0115,0,0,0,0,0,0,0.00255,0.0199,0.0224,0.763,0.667,0.698,1,0.839,0.117,0.839,0.839,0.0198,0.0198,0.269,0.288,0,1 +1,0.345,0.652,0.652,0,0,0.743,0.743,0.743,0,0,0,0,0,0,0,0.0269,0.00852,0.0354,0.521,0.55,0.441,1,0.732,0.0799,0.732,0.732,0.0198,0.0198,0.15,0.161,0.333,1 +1,0.183,0.553,0.553,0,0,0.692,0.692,0.692,0,0,0,0,0,0,0,0.0245,0,0.0245,0.455,0.511,0.201,1,0.634,0.043,0.634,0.634,0.0198,0.0198,0.15,0.161,0.333,1 +1,0.0743,0.442,0.442,0,0,0.675,0.675,0.675,0,0,0,0,0,0,0,0.0277,0,0.0277,0.319,0.483,0.0721,1,0.429,0.0246,0.429,0.429,0.0198,0.0198,0.15,0.161,0.667,1 +1,0.0578,0.409,0.409,0,0,0.658,0.658,0.658,0,0,0,0,0,0,0,0,0,0,0.308,0.473,0.0351,1,0.224,0.00614,0.224,0.224,0.0198,0.0198,0.182,0.194,0.667,1 +1,0.0495,0.409,0.409,0,0,0.641,0.641,0.641,0,0,0,0,0,0,0,0,0,0,0.308,0.468,0.0175,1,0.185,0.00614,0.185,0.185,0.0198,0.0198,0.15,0.161,0.667,1 +1,0.0495,0.398,0.398,0,0,0.625,0.625,0.625,0,0,0,0,0,0,0,0,0,0,0.305,0.463,0.0136,1,0.146,0.0123,0.146,0.146,0.0264,0.0264,0.182,0.194,0.667,1 +1,0.0495,0.365,0.365,0,0,0.608,0.608,0.608,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0214,1,0.156,0.043,0.156,0.156,0.0528,0.0528,0.294,0.315,1,1 +1,0.0816,0.398,0.398,0,0,0.608,0.608,0.608,0,0,0.0253,0.000702,0,0,0,0,0,0,0.305,0.473,0.0351,1,0.176,0.0737,0.176,0.176,0.0991,0.0991,0.419,0.449,0.667,1 +1,0.245,0.476,0.476,0,0,0.641,0.641,0.641,0,0,0.0469,0.00982,0.147,0.147,0,0,0,0,0.403,0.521,0.0565,1,0.254,0.178,0.254,0.254,0.172,0.172,0.357,0.382,0.333,1 +1,0.305,0.52,0.52,0,0.0366,0.675,0.675,0.675,0,0,0,0,0.128,0.128,0,0.0196,0.00284,0.0224,0.432,0.57,0.078,1,0.322,0.283,0.322,0.322,0.291,0.291,0.15,0.161,0.333,1 +0.667,0.184,0.376,0.376,0,0.0122,0.692,0.692,0.692,0,0,0,0,0,0,0,0.0375,0,0.0375,0.297,0.523,0.0955,1,0.322,0.27,0.322,0.322,0.555,0.555,0.15,0.161,0.333,1 +0.667,0.321,0.254,0.254,0,0.146,0.692,0.692,0.692,0,0,0,0,0,0,0,0,0.00284,0.00284,0.255,0.58,0.113,1,0.312,0.252,0.312,0.312,0.799,0.799,0.119,0.127,0,1 +0.333,0.181,0.265,0.265,0,0.0244,0.675,0.675,0.675,0,0,0,0,0,0,0,0.0314,0,0.0314,0.26,0.523,0.127,1,0.322,0.27,0.322,0.322,0.839,0.839,0.0939,0.1,0,1 +0.333,0.175,0.276,0.276,0,0,0.675,0.675,0.675,0,0,0,0,0,0,0,0.00766,0.00852,0.0162,0.264,0.528,0.14,1,0.322,0.283,0.322,0.322,0.799,0.799,0.0876,0.0938,0,1 +0.333,0.171,0.265,0.265,0,0,0.709,0.709,0.709,0,0,0,0,0,0,0,0,0,0,0.26,0.532,0.148,1,0.312,0.258,0.312,0.312,0.793,0.793,0.0876,0.0938,0,1 +0.333,0.169,0.31,0.31,0,0,0.709,0.709,0.709,0,0,0,0,0,0,0,0,0,0,0.275,0.532,0.168,1,0.312,0.233,0.312,0.312,0.595,0.595,0.0876,0.0938,0,1 +0.333,0.0495,0.343,0.343,0,0,0.709,0.709,0.709,0,0,0,0,0,0,0,0.0291,0,0.0291,0.258,0.465,0.177,1,0.312,0.301,0.312,0.312,0.495,0.495,0.15,0.161,0.333,1 +0.333,0.194,0.354,0.354,0,0,0.692,0.692,0.692,0,0,0.0079,0,0,0,0.0696,0.0233,0.00284,0.0957,0.29,0.537,0.199,1,0.322,0.362,0.322,0.322,0.403,0.403,0.363,0.388,0,1 +0.333,0.237,0.431,0.431,0,0.0122,0.743,0.743,0.743,0,0,0,0.0112,0,0,0,0.00818,0.017,0.0252,0.316,0.547,0.248,1,0.439,0.676,0.439,0.439,0.244,0.244,0.789,0.844,0,1 +1,0.804,0.586,0.586,0,0.0609,0.81,0.81,0.81,0,0,0,0.00456,0.183,0.183,0,0.026,0.00852,0.0345,0.586,0.77,0.304,1,0.556,0.989,0.556,0.556,0.152,0.152,0.764,0.817,0,1 +1,0.946,0.697,0.697,0,0,0.844,0.844,0.844,0.0108,0.0653,0,0,0,0,0,0,0.00568,0.00568,0.697,0.785,0.409,1,0.644,0.706,0.644,0.644,0.0859,0.0859,0.426,0.455,0,1 +1,0.919,0.741,0.741,0,0,0.81,0.81,0.81,0.00427,0.0302,0,0,0,0,0,0.0323,0.0114,0.0437,0.741,0.741,0.573,1,0.741,0.43,0.741,0.741,0.0528,0.0528,0.382,0.409,0,1 +1,0.515,0.785,0.785,0,0,0.793,0.793,0.793,0,0,0,0,0,0,0,0,0,0,0.609,0.619,0.708,1,0.79,0.27,0.79,0.79,0.0264,0.0264,0.319,0.342,0.333,1 +1,0.222,0.763,0.763,0,0,0.776,0.776,0.776,0,0,0,0,0,0,0,0,0.00852,0.00852,0.426,0.532,0.671,1,0.839,0.117,0.839,0.839,0.0198,0.0198,0.269,0.288,0.667,1 +1,0.197,0.652,0.652,0,0,0.743,0.743,0.743,0,0,0,0,0,0,0,0,0.00852,0.00852,0.389,0.508,0.405,1,0.732,0.0799,0.732,0.732,0.0198,0.0198,0.15,0.161,0.667,1 +1,0.116,0.553,0.553,0,0,0.692,0.692,0.692,0,0,0,0,0,0,0,0,0,0,0.356,0.488,0.175,1,0.634,0.043,0.634,0.634,0.0198,0.0198,0.15,0.161,0.667,1 +1,0.0743,0.442,0.442,0,0,0.675,0.675,0.675,0,0,0,0,0,0,0,0,0.0142,0.0142,0.319,0.483,0.0721,1,0.429,0.0246,0.429,0.429,0.0198,0.0198,0.15,0.161,0.667,1 +1,0.0495,0.409,0.409,0,0,0.658,0.658,0.658,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0351,1,0.224,0.00614,0.224,0.224,0.0198,0.0198,0.182,0.194,1,1 +1,0.0495,0.409,0.409,0,0,0.641,0.641,0.641,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.465,0.0175,1,0.185,0.00614,0.185,0.185,0.0198,0.0198,0.15,0.161,1,1 +1,0.0495,0.398,0.398,0,0,0.625,0.625,0.625,0,0,0,0,0,0,0,0.00236,0,0.00236,0.258,0.465,0.0136,1,0.146,0.0123,0.146,0.146,0.0264,0.0264,0.182,0.194,1,1 +1,0.051,0.365,0.365,0,0,0.608,0.608,0.608,0,0,0,0,0,0,0,0.0304,0,0.0304,0.293,0.468,0.0214,1,0.156,0.043,0.156,0.156,0.0528,0.0528,0.294,0.315,0.667,1 +0.667,0.0495,0.398,0.398,0,0,0.608,0.608,0.608,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0351,1,0.176,0.0737,0.176,0.176,0.0991,0.0991,0.419,0.449,0.667,1 +0.667,0.147,0.476,0.476,0,0,0.641,0.641,0.641,0,0,0,0,0,0,0,0.0158,0,0.0158,0.33,0.493,0.0565,1,0.254,0.178,0.254,0.254,0.172,0.172,0.357,0.382,0.333,1 +0.667,0.177,0.52,0.52,0,0,0.675,0.675,0.675,0,0,0,0,0,0,0,0.0128,0,0.0128,0.345,0.518,0.078,1,0.322,0.283,0.322,0.322,0.291,0.291,0.15,0.161,0.333,1 +0.333,0.184,0.376,0.376,0,0,0.692,0.692,0.692,0,0,0,0,0,0,0,0,0,0,0.297,0.523,0.0955,1,0.322,0.27,0.322,0.322,0.555,0.555,0.15,0.161,0,1 +0.333,0.185,0.254,0.254,0,0,0.692,0.692,0.692,0,0,0,0,0,0,0,0,0,0,0.257,0.523,0.113,1,0.312,0.252,0.312,0.312,0.799,0.799,0.119,0.127,0,1 +0.333,0.181,0.265,0.265,0,0,0.675,0.675,0.675,0,0,0,0,0,0,0,0.00276,0,0.00276,0.26,0.523,0.127,1,0.322,0.27,0.322,0.322,0.839,0.839,0.0939,0.1,0,1 +0.333,0.175,0.276,0.276,0,0.0122,0.675,0.675,0.675,0,0,0,0,0,0,0,0.0386,0,0.0386,0.264,0.528,0.14,1,0.322,0.283,0.322,0.322,0.799,0.799,0.0876,0.0938,0,1 +0.333,0.171,0.265,0.265,0,0.0244,0.709,0.709,0.709,0,0,0,0,0,0,0,0,0.00568,0.00568,0.26,0.532,0.148,1,0.312,0.258,0.312,0.312,0.793,0.793,0.0876,0.0938,0,1 +0.333,0.169,0.31,0.31,0,0,0.709,0.709,0.709,0,0,0,0,0,0,0,0,0.0114,0.0114,0.275,0.532,0.168,1,0.312,0.233,0.312,0.312,0.595,0.595,0.0876,0.0938,0,1 +0.333,0.173,0.343,0.343,0,0,0.709,0.709,0.709,0,0,0,0,0,0,0,0,0,0,0.286,0.528,0.177,1,0.312,0.301,0.312,0.312,0.495,0.495,0.15,0.161,0,1 +0.667,0.338,0.354,0.354,0,0,0.692,0.692,0.692,0,0,0,0,0,0,0,0,0,0,0.322,0.609,0.199,1,0.322,0.362,0.322,0.322,0.403,0.403,0.363,0.388,0,1 +0.667,0.425,0.431,0.431,0,0,0.743,0.743,0.743,0,0,0,0,0,0,0,0,0,0,0.373,0.629,0.248,1,0.439,0.676,0.439,0.439,0.244,0.244,0.789,0.844,0,1 +0.333,0.301,0.586,0.586,0,0,0.81,0.81,0.81,0,0,0,0,0,0,0,0,0.0227,0.0227,0.367,0.567,0.304,1,0.556,0.989,0.556,0.556,0.152,0.152,0.764,0.817,0,1 +1,0.946,0.697,0.697,0,0,0.844,0.844,0.844,0,0,0,0,0,0,0,0,0.00284,0.00284,0.697,0.785,0.409,1,0.644,0.706,0.644,0.644,0.0859,0.0859,0.426,0.455,0,1 +1,0.919,0.741,0.741,0,0,0.81,0.81,0.81,0,0,0,0,0,0,0,0,0.0142,0.0142,0.741,0.741,0.573,1,0.741,0.43,0.741,0.741,0.0528,0.0528,0.382,0.409,0,1 +1,0.747,0.785,0.785,0,0,0.793,0.793,0.793,0,0,0,0,0,0,0,0.00264,0.00284,0.00547,0.785,0.696,0.708,1,0.79,0.27,0.79,0.79,0.0264,0.0264,0.319,0.342,0,1 +1,0.566,0.763,0.763,0,0,0.776,0.776,0.776,0,0,0,0,0,0,0,0.047,0.00568,0.0527,0.763,0.667,0.671,1,0.839,0.117,0.839,0.839,0.0198,0.0198,0.269,0.288,0,1 +1,0.345,0.652,0.652,0,0,0.743,0.743,0.743,0,0,0,0,0,0,0,0,0.0142,0.0142,0.521,0.55,0.405,1,0.732,0.0799,0.732,0.732,0.0198,0.0198,0.15,0.161,0.333,1 +1,0.0495,0.553,0.553,0,0,0.692,0.692,0.692,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.175,1,0.634,0.043,0.634,0.634,0.0198,0.0198,0.15,0.161,1,1 +1,0.0495,0.442,0.442,0,0,0.675,0.675,0.675,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0721,1,0.429,0.0246,0.429,0.429,0.0198,0.0198,0.15,0.161,1,1 +1,0.0495,0.409,0.409,0,0,0.658,0.658,0.658,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0351,1,0.224,0.00614,0.224,0.224,0.0198,0.0198,0.182,0.194,1,1 +1,0.0495,0.409,0.409,0,0,0.641,0.641,0.641,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0175,1,0.185,0.00614,0.185,0.185,0.0198,0.0198,0.15,0.161,1,1 +1,0.0495,0.398,0.398,0,0,0.625,0.625,0.625,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0136,1,0.146,0.0123,0.146,0.146,0.0264,0.0264,0.182,0.194,1,1 +1,0.0495,0.365,0.365,0,0,0.608,0.608,0.608,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0214,1,0.156,0.043,0.156,0.156,0.0528,0.0528,0.294,0.315,1,1 +1,0.0495,0.398,0.398,0,0,0.608,0.608,0.608,0,0,0,0,0,0,0,0.00251,0,0.00251,0.258,0.465,0.0351,1,0.176,0.0737,0.176,0.176,0.0991,0.0991,0.419,0.449,1,1 +1,0.147,0.476,0.476,0,0,0.641,0.641,0.641,0,0,0,0,0,0,0,0.0125,0,0.0125,0.33,0.493,0.0565,1,0.254,0.178,0.254,0.254,0.172,0.172,0.357,0.382,0.667,1 +0.667,0.177,0.52,0.52,0,0,0.675,0.675,0.675,0,0,0,0,0,0,0,0,0,0,0.345,0.518,0.078,1,0.322,0.283,0.322,0.322,0.291,0.291,0.15,0.161,0.333,1 +0.333,0.184,0.376,0.376,0,0,0.692,0.692,0.692,0,0,0,0,0,0,0,0,0,0,0.297,0.523,0.0955,1,0.322,0.27,0.322,0.322,0.555,0.555,0.15,0.161,0,1 +0.333,0.185,0.254,0.254,0,0,0.692,0.692,0.692,0.00388,0.0175,0,0,0,0,0,0.00252,0,0.00252,0.257,0.523,0.113,1,0.312,0.252,0.312,0.312,0.799,0.799,0.119,0.127,0,1 +0.333,0.181,0.265,0.265,0,0,0.675,0.675,0.675,0.022,0.00637,0,0,0,0,0,0.046,0.0114,0.0573,0.26,0.523,0.127,1,0.322,0.27,0.322,0.322,0.839,0.839,0.0939,0.1,0,1 +0.333,0.175,0.276,0.276,0,0,0.675,0.675,0.675,0.00517,0,0,0,0,0,0,0,0.017,0.017,0.264,0.528,0.14,1,0.322,0.283,0.322,0.322,0.799,0.799,0.0876,0.0938,0,1 +0.333,0.171,0.265,0.265,0,0,0.709,0.709,0.709,0,0,0,0,0,0,0,0,0.00852,0.00852,0.26,0.532,0.148,1,0.312,0.258,0.312,0.312,0.793,0.793,0.0876,0.0938,0,1 +0,0.0495,0.31,0.31,0,0,0.709,0.709,0.709,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.168,1,0.312,0.233,0.312,0.312,0.595,0.595,0.0876,0.0938,0,1 +0.333,0.173,0.343,0.343,0,0,0.709,0.709,0.709,0,0,0,0,0,0,0,0,0,0,0.286,0.528,0.177,1,0.312,0.301,0.312,0.312,0.495,0.495,0.15,0.161,0,1 +0.333,0.194,0.354,0.354,0,0,0.692,0.692,0.692,0,0,0,0,0,0,0,0,0.00852,0.00852,0.29,0.537,0.199,1,0.322,0.362,0.322,0.322,0.403,0.403,0.363,0.388,0,1 +0.667,0.425,0.431,0.431,0,0.0853,0.743,0.743,0.743,0,0,0,0,0,0,0,0,0,0,0.373,0.629,0.248,1,0.439,0.676,0.439,0.439,0.244,0.244,0.789,0.844,0,1 +0.667,0.553,0.586,0.586,0,0.0609,0.81,0.81,0.81,0.00477,0.0175,0,0,0,0,0,0,0,0,0.477,0.669,0.304,1,0.556,0.989,0.556,0.556,0.152,0.152,0.764,0.817,0,1 +0.667,0.647,0.697,0.697,0,0,0.844,0.844,0.844,0.0154,0.0302,0,0,0,0,0,0.00273,0.00852,0.0112,0.55,0.679,0.409,1,0.644,0.706,0.644,0.644,0.0859,0.0859,0.426,0.455,0,1 +1,0.919,0.741,0.741,0,0,0.81,0.81,0.81,0.00595,0.0239,0,0,0,0,0,0.0607,0.00852,0.0692,0.741,0.741,0.573,1,0.741,0.43,0.741,0.741,0.0528,0.0528,0.382,0.409,0,1 +1,0.747,0.785,0.785,0,0,0.793,0.793,0.793,0.0177,0,0,0,0,0,0,0.0164,0.00852,0.0249,0.785,0.696,0.708,1,0.79,0.27,0.79,0.79,0.0264,0.0264,0.319,0.342,0,1 +1,0.222,0.763,0.763,0,0,0.776,0.776,0.776,0,0,0,0,0,0,0,0,0,0,0.426,0.532,0.671,1,0.839,0.117,0.839,0.839,0.0198,0.0198,0.269,0.288,0.667,1 +1,0.197,0.652,0.652,0,0,0.743,0.743,0.743,0,0,0,0,0,0,0,0.00216,0.00568,0.00784,0.389,0.508,0.405,1,0.732,0.0799,0.732,0.732,0.0198,0.0198,0.15,0.161,0.667,1 +1,0.116,0.553,0.553,0,0,0.692,0.692,0.692,0,0,0,0,0,0,0,0.00648,0,0.00648,0.356,0.488,0.175,1,0.634,0.043,0.634,0.634,0.0198,0.0198,0.15,0.161,0.667,1 +1,0.0495,0.442,0.442,0,0,0.675,0.675,0.675,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0721,1,0.429,0.0246,0.429,0.429,0.0198,0.0198,0.15,0.161,1,1 +1,0.0495,0.409,0.409,0,0,0.658,0.658,0.658,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0351,1,0.224,0.00614,0.224,0.224,0.0198,0.0198,0.182,0.194,1,1 +1,0.0495,0.409,0.409,0,0,0.641,0.641,0.641,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0175,1,0.185,0.00614,0.185,0.185,0.0198,0.0198,0.15,0.161,1,1 +1,0.0495,0.398,0.398,0,0,0.625,0.625,0.625,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0136,1,0.146,0.0123,0.146,0.146,0.0264,0.0264,0.182,0.194,1,1 +1,0.0495,0.365,0.365,0,0,0.608,0.608,0.608,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0214,1,0.156,0.043,0.156,0.156,0.0528,0.0528,0.294,0.315,1,1 +1,0.0495,0.398,0.398,0,0,0.608,0.608,0.608,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0351,1,0.176,0.0737,0.176,0.176,0.0991,0.0991,0.419,0.449,1,1 +0.667,0.0495,0.476,0.476,0,0,0.641,0.641,0.641,0,0,0,0,0,0,0,0.00984,0,0.00984,0.258,0.465,0.0565,1,0.254,0.178,0.254,0.254,0.172,0.172,0.357,0.382,0.667,1 +1,0.177,0.52,0.52,0,0,0.675,0.675,0.675,0,0,0,0,0,0,0,0.0294,0,0.0294,0.345,0.518,0.078,1,0.322,0.283,0.322,0.322,0.291,0.291,0.15,0.161,0.667,1 +0.667,0.0495,0.376,0.376,0,0,0.692,0.692,0.692,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0955,1,0.322,0.27,0.322,0.322,0.555,0.555,0.15,0.161,0.667,1 +0.333,0.185,0.254,0.254,0,0,0.692,0.692,0.692,0,0,0,0,0,0,0,0,0,0,0.257,0.523,0.113,1,0.312,0.252,0.312,0.312,0.799,0.799,0.119,0.127,0,1 +0.333,0.181,0.265,0.265,0,0,0.675,0.675,0.675,0,0,0,0,0,0,0,0,0,0,0.26,0.523,0.127,1,0.322,0.27,0.322,0.322,0.839,0.839,0.0939,0.1,0,1 +0.333,0.175,0.276,0.276,0,0.0731,0.675,0.675,0.675,0,0,0,0,0,0,0,0,0.00568,0.00568,0.264,0.528,0.14,1,0.322,0.283,0.322,0.322,0.799,0.799,0.0876,0.0938,0,1 +0,0.0495,0.265,0.265,0,0,0.709,0.709,0.709,0,0,0.0194,0,0,0,0,0,0,0,0.258,0.465,0.148,1,0.312,0.258,0.312,0.312,0.793,0.793,0.0876,0.0938,0,1 +0.333,0.169,0.31,0.31,0,0,0.709,0.709,0.709,0,0,0.032,0.0158,0,0,0,0,0.0142,0.0142,0.275,0.532,0.168,1,0.312,0.233,0.312,0.312,0.595,0.595,0.0876,0.0938,0,1 +0.333,0.173,0.343,0.343,0,0,0.709,0.709,0.709,0,0,0.0316,0,0.33,0.33,0,0,0,0,0.286,0.528,0.177,1,0.312,0.301,0.312,0.312,0.495,0.495,0.15,0.161,0,1 +0.333,0.194,0.354,0.354,0,0,0.692,0.692,0.692,0,0,0.0309,0,0.0367,0.0367,0,0,0.00568,0.00568,0.29,0.537,0.199,1,0.322,0.362,0.322,0.322,0.403,0.403,0.363,0.388,0,1 +0.333,0.237,0.431,0.431,0,0.0122,0.743,0.743,0.743,0,0,0.0264,0,0,0,0,0,0.00852,0.00852,0.316,0.547,0.248,1,0.439,0.676,0.439,0.439,0.244,0.244,0.789,0.844,0,1 +0.667,0.553,0.586,0.586,0,0.0244,0.81,0.81,0.81,0,0,0.0346,0,0,0,0,0,0.00284,0.00284,0.477,0.669,0.304,1,0.556,0.989,0.556,0.556,0.152,0.152,0.764,0.817,0,1 +1,0.946,0.697,0.697,0,0,0.844,0.844,0.844,0,0,0.0233,0,0,0,0,0,0.00852,0.00852,0.697,0.785,0.409,1,0.644,0.706,0.644,0.644,0.0859,0.0859,0.426,0.455,0,1 +1,0.919,0.741,0.741,0,0,0.81,0.81,0.81,0.0111,0.0414,0.00926,0,0,0,0,0,0.00568,0.00568,0.741,0.741,0.573,1,0.741,0.43,0.741,0.741,0.0528,0.0528,0.382,0.409,0,1 +1,0.747,0.785,0.785,0,0,0.793,0.793,0.793,0.0233,0.00637,0,0,0,0,0,0,0.00568,0.00568,0.785,0.696,0.708,1,0.79,0.27,0.79,0.79,0.0264,0.0264,0.319,0.342,0,1 +1,0.394,0.763,0.763,0,0,0.776,0.776,0.776,0,0,0,0,0,0,0,0.0477,0.00852,0.0562,0.595,0.6,0.671,1,0.839,0.117,0.839,0.839,0.0198,0.0198,0.269,0.288,0.333,1 +1,0.0495,0.652,0.652,0,0,0.743,0.743,0.743,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.405,1,0.732,0.0799,0.732,0.732,0.0198,0.0198,0.15,0.161,1,1 +1,0.0495,0.553,0.553,0,0,0.692,0.692,0.692,0,0,0,0,0,0,0,0,0.00568,0.00568,0.258,0.465,0.175,1,0.634,0.043,0.634,0.634,0.0198,0.0198,0.15,0.161,1,1 +1,0.0495,0.442,0.442,0,0,0.675,0.675,0.675,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.465,0.0721,1,0.429,0.0246,0.429,0.429,0.0198,0.0198,0.15,0.161,1,1 +1,0.0495,0.409,0.409,0,0,0.658,0.658,0.658,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0351,1,0.224,0.00614,0.224,0.224,0.0198,0.0198,0.182,0.194,1,1 +1,0.0495,0.409,0.409,0,0,0.641,0.641,0.641,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0175,1,0.185,0.00614,0.185,0.185,0.0198,0.0198,0.15,0.161,1,1 +1,0.0495,0.398,0.398,0,0,0.625,0.625,0.625,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0136,1,0.146,0.0123,0.146,0.146,0.0264,0.0264,0.182,0.194,1,1 +0.667,0.0495,0.365,0.365,0,0,0.608,0.608,0.608,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0214,1,0.156,0.043,0.156,0.156,0.0528,0.0528,0.294,0.315,0.667,1 +0.667,0.0495,0.398,0.398,0,0,0.608,0.608,0.608,0,0,0,0,0,0,0,0.0112,0,0.0112,0.258,0.465,0.0351,1,0.176,0.0737,0.176,0.176,0.0991,0.0991,0.419,0.449,0.667,1 +0.667,0.0495,0.476,0.476,0,0,0.641,0.641,0.641,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0565,1,0.254,0.178,0.254,0.254,0.172,0.172,0.357,0.382,0.667,1 +0.667,0.0495,0.52,0.52,0,0,0.675,0.675,0.675,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.078,1,0.322,0.283,0.322,0.322,0.291,0.291,0.15,0.161,0.667,1 +0.667,0.184,0.376,0.376,0,0.0366,0.692,0.692,0.692,0.00781,0.0414,0,0,0,0,0,0,0,0,0.297,0.523,0.0955,1,0.322,0.27,0.322,0.322,0.555,0.555,0.15,0.161,0.333,1 +0.667,0.185,0.254,0.254,0,0,0.692,0.692,0.692,0.0149,0.00637,0,0,0,0,0,0,0.0199,0.0199,0.257,0.523,0.113,1,0.312,0.252,0.312,0.312,0.799,0.799,0.119,0.127,0.333,1 +0.667,0.312,0.265,0.265,0,0,0.675,0.675,0.675,0,0,0,0,0,0,0,0,0,0,0.263,0.58,0.127,1,0.322,0.27,0.322,0.322,0.839,0.839,0.0939,0.1,0,1 +0.333,0.175,0.276,0.276,0,0,0.675,0.675,0.675,0,0,0,0,0,0,0,0,0,0,0.264,0.528,0.14,1,0.322,0.283,0.322,0.322,0.799,0.799,0.0876,0.0938,0,1 +0,0.0495,0.265,0.265,0,0,0.709,0.709,0.709,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.148,1,0.312,0.258,0.312,0.312,0.793,0.793,0.0876,0.0938,0,1 +0.333,0.169,0.31,0.31,0,0.0366,0.709,0.709,0.709,0,0,0,0,0,0,0,0,0.017,0.017,0.275,0.532,0.168,1,0.312,0.233,0.312,0.312,0.595,0.595,0.0876,0.0938,0,1 +0.333,0.173,0.343,0.343,0,0,0.709,0.709,0.709,0,0,0,0,0,0,0,0,0,0,0.286,0.528,0.177,1,0.312,0.301,0.312,0.312,0.495,0.495,0.15,0.161,0,1 +0.333,0.194,0.354,0.354,0,0,0.692,0.692,0.692,0,0,0,0,0,0,0,0.0254,0,0.0254,0.29,0.537,0.199,1,0.322,0.362,0.322,0.322,0.403,0.403,0.363,0.388,0,1 +0.667,0.237,0.431,0.431,0,0,0.743,0.743,0.743,0,0,0,0,0,0,0,0.016,0,0.016,0.316,0.547,0.248,1,0.439,0.676,0.439,0.439,0.244,0.244,0.789,0.844,0.333,1 +0.667,0.553,0.586,0.586,0,0.11,0.81,0.81,0.81,0,0,0,0,0,0,0,0,0.0114,0.0114,0.477,0.669,0.304,1,0.556,0.989,0.556,0.556,0.152,0.152,0.764,0.817,0,1 +1,0.946,0.697,0.697,0,0,0.844,0.844,0.844,0.012,0.0478,0,0,0,0,0,0,0.00852,0.00852,0.697,0.785,0.409,1,0.644,0.706,0.644,0.644,0.0859,0.0859,0.426,0.455,0,1 +1,0.919,0.741,0.741,0,0,0.81,0.81,0.81,0.00242,0,0,0,0,0,0,0,0.00568,0.00568,0.741,0.741,0.573,1,0.741,0.43,0.741,0.741,0.0528,0.0528,0.382,0.409,0,1 +1,0.747,0.785,0.785,0,0,0.793,0.793,0.793,0,0,0,0,0,0,0,0.0191,0.0114,0.0304,0.785,0.696,0.708,1,0.79,0.27,0.79,0.79,0.0264,0.0264,0.319,0.342,0,1 +1,0.394,0.763,0.763,0,0,0.776,0.776,0.776,0,0,0,0,0,0,0.0458,0.0128,0.00284,0.0615,0.595,0.6,0.671,1,0.839,0.117,0.839,0.839,0.0198,0.0198,0.269,0.288,0.333,1 +1,0.0495,0.652,0.652,0,0,0.743,0.743,0.743,0,0,0,0,0,0,0,0,0.00568,0.00568,0.258,0.465,0.405,1,0.732,0.0799,0.732,0.732,0.0198,0.0198,0.15,0.161,1,1 +1,0.0495,0.553,0.553,0,0,0.692,0.692,0.692,0,0,0,0,0,0,0,0,0.0142,0.0142,0.258,0.465,0.175,1,0.634,0.043,0.634,0.634,0.0198,0.0198,0.15,0.161,1,1 +1,0.0495,0.442,0.442,0,0,0.675,0.675,0.675,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.465,0.0858,1,0.429,0.0246,0.429,0.429,0.0198,0.0198,0.15,0.161,1,1 +1,0.0495,0.409,0.409,0,0,0.658,0.658,0.658,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0429,1,0.224,0.00614,0.224,0.224,0.0198,0.0198,0.182,0.194,1,1 +1,0.0495,0.409,0.409,0,0,0.641,0.641,0.641,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0234,1,0.185,0.00614,0.185,0.185,0.0198,0.0198,0.15,0.161,1,1 +1,0.0495,0.398,0.398,0,0,0.625,0.625,0.625,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0156,1,0.146,0.0123,0.146,0.146,0.0264,0.0264,0.182,0.194,1,1 +1,0.0495,0.365,0.365,0,0,0.608,0.608,0.608,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0214,1,0.156,0.043,0.156,0.156,0.0528,0.0528,0.294,0.315,1,1 +1,0.0495,0.398,0.398,0,0,0.608,0.608,0.608,0,0,0,0,0,0,0,0.00512,0,0.00512,0.258,0.465,0.0273,1,0.176,0.0737,0.176,0.176,0.0991,0.0991,0.419,0.449,1,1 +1,0.245,0.476,0.476,0,0,0.641,0.641,0.641,0,0,0,0,0,0,0,0.0908,0,0.0908,0.403,0.521,0.0468,1,0.254,0.178,0.254,0.254,0.172,0.172,0.357,0.382,0.333,1 +1,0.305,0.52,0.52,0,0,0.675,0.675,0.675,0,0,0,0,0,0,0,0.00255,0,0.00255,0.432,0.57,0.0838,1,0.322,0.283,0.322,0.322,0.291,0.291,0.15,0.161,0.333,1 +0.333,0.184,0.376,0.376,0,0,0.692,0.692,0.692,0,0,0,0,0,0,0,0.0195,0,0.0195,0.297,0.523,0.138,1,0.322,0.27,0.322,0.322,0.555,0.555,0.15,0.161,0,1 +0.333,0.185,0.254,0.254,0,0,0.692,0.692,0.692,0,0,0,0,0,0,0,0.0234,0,0.0234,0.257,0.523,0.183,1,0.312,0.252,0.312,0.312,0.799,0.799,0.119,0.127,0,1 +0.333,0.181,0.265,0.265,0,0.0731,0.675,0.675,0.675,0,0,0,0,0,0,0,0,0.00568,0.00568,0.26,0.523,0.218,1,0.322,0.27,0.322,0.322,0.839,0.839,0.0939,0.1,0,1 +0.333,0.175,0.276,0.276,0,0,0.675,0.675,0.675,0,0,0.0402,0.000702,0,0,0,0,0,0,0.264,0.528,0.24,1,0.322,0.283,0.322,0.322,0.799,0.799,0.0876,0.0938,0,1 +0.667,0.292,0.265,0.265,0,0,0.709,0.709,0.709,0,0,0.0272,0.0151,0.055,0.055,0,0,0.00852,0.00852,0.263,0.6,0.257,1,0.312,0.258,0.312,0.312,0.793,0.793,0.0876,0.0938,0,1 +0.667,0.289,0.31,0.31,0,0,0.709,0.709,0.709,0,0,0.0219,0,0.312,0.312,0,0,0.00852,0.00852,0.292,0.6,0.304,1,0.312,0.233,0.312,0.312,0.595,0.595,0.0876,0.0938,0,1 +0.667,0.297,0.343,0.343,0,0,0.709,0.709,0.709,0,0,0.0302,0,0,0,0,0,0.00568,0.00568,0.314,0.59,0.347,1,0.312,0.301,0.312,0.312,0.495,0.495,0.15,0.161,0,1 +0.667,0.194,0.354,0.354,0,0,0.692,0.692,0.692,0,0,0.0076,0,0,0,0,0,0.00852,0.00852,0.29,0.537,0.382,1,0.322,0.362,0.322,0.322,0.403,0.403,0.363,0.388,0.333,1 +0.667,0.237,0.431,0.431,0,0,0.743,0.743,0.743,0,0,0,0,0,0,0,0,0,0,0.316,0.547,0.402,1,0.439,0.676,0.439,0.439,0.244,0.244,0.789,0.844,0.333,1 +1,0.553,0.586,0.586,0,0.0366,0.81,0.81,0.81,0,0,0,0,0,0,0,0,0.00284,0.00284,0.477,0.669,0.415,1,0.556,0.989,0.556,0.556,0.152,0.152,0.764,0.817,0.333,1 +1,0.946,0.697,0.697,0,0,0.844,0.844,0.844,0,0,0,0,0,0,0,0,0.00568,0.00568,0.697,0.785,0.489,1,0.644,0.706,0.644,0.644,0.0859,0.0859,0.426,0.455,0,1 +1,0.919,0.741,0.741,0,0,0.81,0.81,0.81,0,0,0,0,0,0,0,0,0.00284,0.00284,0.741,0.741,0.643,1,0.741,0.43,0.741,0.741,0.0528,0.0528,0.382,0.409,0,1 +1,0.747,0.785,0.785,0,0,0.793,0.793,0.793,0,0,0,0,0,0,0,0,0.00568,0.00568,0.785,0.696,0.756,1,0.79,0.27,0.79,0.79,0.0264,0.0264,0.319,0.342,0,1 +1,0.566,0.763,0.763,0,0,0.776,0.776,0.776,0,0,0,0,0,0,0,0,0.0142,0.0142,0.763,0.667,0.698,1,0.839,0.117,0.839,0.839,0.0198,0.0198,0.269,0.288,0,1 +1,0.345,0.652,0.652,0,0,0.743,0.743,0.743,0,0,0,0,0,0,0,0,0,0,0.521,0.55,0.441,1,0.732,0.0799,0.732,0.732,0.0198,0.0198,0.15,0.161,0.333,1 +1,0.116,0.553,0.553,0,0,0.692,0.692,0.692,0,0,0,0,0,0,0,0,0.00568,0.00568,0.356,0.488,0.201,1,0.634,0.043,0.634,0.634,0.0198,0.0198,0.15,0.161,0.667,1 +1,0.0743,0.442,0.442,0,0,0.675,0.675,0.675,0,0,0,0,0,0,0,0,0.00568,0.00568,0.319,0.483,0.0858,1,0.429,0.0246,0.429,0.429,0.0198,0.0198,0.15,0.161,0.667,1 +1,0.0495,0.409,0.409,0,0,0.658,0.658,0.658,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0429,1,0.224,0.00614,0.224,0.224,0.0198,0.0198,0.182,0.194,1,1 +1,0.0495,0.409,0.409,0,0,0.641,0.641,0.641,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0234,1,0.185,0.00614,0.185,0.185,0.0198,0.0198,0.15,0.161,1,1 +1,0.0495,0.398,0.398,0,0,0.625,0.625,0.625,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0156,1,0.146,0.0123,0.146,0.146,0.0264,0.0264,0.182,0.194,1,1 +1,0.0495,0.365,0.365,0,0,0.608,0.608,0.608,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0214,1,0.156,0.043,0.156,0.156,0.0528,0.0528,0.294,0.315,1,1 +1,0.0495,0.398,0.398,0,0,0.608,0.608,0.608,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0273,1,0.176,0.0737,0.176,0.176,0.0991,0.0991,0.419,0.449,1,1 +1,0.0495,0.476,0.476,0,0,0.641,0.641,0.641,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0468,1,0.254,0.178,0.254,0.254,0.172,0.172,0.357,0.382,1,1 +1,0.0495,0.52,0.52,0,0,0.675,0.675,0.675,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0838,1,0.322,0.283,0.322,0.322,0.291,0.291,0.15,0.161,1,1 +1,0.0495,0.376,0.376,0,0,0.692,0.692,0.692,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.138,1,0.322,0.27,0.322,0.322,0.555,0.555,0.15,0.161,1,1 +1,0.185,0.254,0.254,0,0,0.692,0.692,0.692,0,0,0,0,0,0,0.0378,0.0174,0,0.0552,0.257,0.523,0.183,1,0.312,0.252,0.312,0.312,0.799,0.799,0.119,0.127,0.667,1 +0.667,0.312,0.265,0.265,0,0,0.675,0.675,0.675,0,0,0,0,0,0,0.0283,0.02,0,0.0483,0.263,0.58,0.218,1,0.322,0.27,0.322,0.322,0.839,0.839,0.0939,0.1,0,1 +0.667,0.3,0.276,0.276,0,0,0.675,0.675,0.675,0,0,0,0,0,0,0,0,0,0,0.27,0.59,0.24,1,0.322,0.283,0.322,0.322,0.799,0.799,0.0876,0.0938,0,1 +0.667,0.292,0.265,0.265,0,0,0.709,0.709,0.709,0,0,0,0,0,0,0,0,0,0,0.263,0.6,0.257,1,0.312,0.258,0.312,0.312,0.793,0.793,0.0876,0.0938,0,1 +0.667,0.289,0.31,0.31,0,0,0.709,0.709,0.709,0,0,0,0,0,0,0,0,0.0114,0.0114,0.292,0.6,0.304,1,0.312,0.233,0.312,0.312,0.595,0.595,0.0876,0.0938,0,1 +0.667,0.297,0.343,0.343,0,0,0.709,0.709,0.709,0,0,0,0,0,0,0,0.0128,0,0.0128,0.314,0.59,0.347,1,0.312,0.301,0.312,0.312,0.495,0.495,0.15,0.161,0,1 +0.667,0.338,0.354,0.354,0,0,0.692,0.692,0.692,0,0,0,0,0,0,0,0.0183,0.00284,0.0211,0.322,0.609,0.382,1,0.322,0.362,0.322,0.322,0.403,0.403,0.363,0.388,0,1 +0.667,0.425,0.431,0.431,0,0,0.743,0.743,0.743,0,0,0,0,0,0,0,0.0126,0.0255,0.0381,0.373,0.629,0.402,1,0.439,0.676,0.439,0.439,0.244,0.244,0.789,0.844,0,1 +1,0.553,0.586,0.586,0,0,0.81,0.81,0.81,0.0167,0.0239,0,0,0,0,0,0.042,0.00568,0.0477,0.477,0.669,0.415,1,0.556,0.989,0.556,0.556,0.152,0.152,0.764,0.817,0.333,1 +1,0.946,0.697,0.697,0,0.0122,0.844,0.844,0.844,0.0199,0,0,0,0,0,0,0.00268,0.00852,0.0112,0.697,0.785,0.489,1,0.644,0.706,0.644,0.644,0.0859,0.0859,0.426,0.455,0,1 +0.667,0.629,0.741,0.741,0,0.0609,0.81,0.81,0.81,0,0,0,0,0,0,0,0,0.0199,0.0199,0.58,0.649,0.643,1,0.741,0.43,0.741,0.741,0.0528,0.0528,0.382,0.409,0,1 +1,0.747,0.785,0.785,0,0,0.793,0.793,0.793,0,0,0,0,0,0,0,0,0.00568,0.00568,0.785,0.696,0.756,1,0.79,0.27,0.79,0.79,0.0264,0.0264,0.319,0.342,0,1 +1,0.566,0.763,0.763,0,0,0.776,0.776,0.776,0,0,0,0,0,0,0,0.00252,0,0.00252,0.763,0.667,0.698,1,0.839,0.117,0.839,0.839,0.0198,0.0198,0.269,0.288,0,1 +1,0.345,0.652,0.652,0,0,0.743,0.743,0.743,0,0,0,0,0,0,0,0.0333,0.00568,0.039,0.521,0.55,0.441,1,0.732,0.0799,0.732,0.732,0.0198,0.0198,0.15,0.161,0.333,1 +1,0.116,0.553,0.553,0,0,0.692,0.692,0.692,0,0,0,0,0,0,0,0.0163,0,0.0163,0.356,0.488,0.201,1,0.634,0.043,0.634,0.634,0.0198,0.0198,0.15,0.161,0.667,1 +1,0.0743,0.442,0.442,0,0,0.675,0.675,0.675,0,0,0,0,0,0,0,0.0334,0.00568,0.0391,0.319,0.483,0.0721,1,0.429,0.0246,0.429,0.429,0.0198,0.0198,0.15,0.161,0.667,1 +1,0.0578,0.409,0.409,0,0,0.658,0.658,0.658,0,0,0,0,0,0,0,0.0143,0,0.0143,0.308,0.473,0.0351,1,0.224,0.00614,0.224,0.224,0.0198,0.0198,0.182,0.194,0.667,1 +1,0.0495,0.409,0.409,0,0,0.641,0.641,0.641,0,0,0,0,0,0,0,0.0195,0,0.0195,0.308,0.468,0.0175,1,0.185,0.00614,0.185,0.185,0.0198,0.0198,0.15,0.161,0.667,1 +1,0.0495,0.398,0.398,0,0,0.625,0.625,0.625,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0136,1,0.146,0.0123,0.146,0.146,0.0264,0.0264,0.182,0.194,1,1 +1,0.0495,0.365,0.365,0,0,0.608,0.608,0.608,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0214,1,0.156,0.043,0.156,0.156,0.0528,0.0528,0.294,0.315,1,1 +1,0.0495,0.398,0.398,0,0,0.608,0.608,0.608,0,0,0,0,0,0,0,0.0155,0.0142,0.0296,0.258,0.465,0.0351,1,0.176,0.0737,0.176,0.176,0.0991,0.0991,0.419,0.449,1,1 +1,0.147,0.476,0.476,0,0,0.641,0.641,0.641,0,0,0,0,0,0,0.0655,0.0141,0,0.0797,0.33,0.493,0.0565,1,0.254,0.178,0.254,0.254,0.172,0.172,0.357,0.382,0.667,1 +0.667,0.177,0.52,0.52,0,0.0122,0.675,0.675,0.675,0,0,0,0,0,0,0,0.0176,0,0.0176,0.345,0.518,0.078,1,0.322,0.283,0.322,0.322,0.291,0.291,0.15,0.161,0.333,1 +1,0.184,0.376,0.376,0,0.134,0.692,0.692,0.692,0,0,0,0,0,0,0,0.0519,0,0.0519,0.297,0.523,0.0955,1,0.322,0.27,0.322,0.322,0.555,0.555,0.15,0.161,0.667,1 +0.667,0.185,0.254,0.254,0,0,0.692,0.692,0.692,0,0,0,0,0,0,0,0.0101,0,0.0101,0.257,0.523,0.113,1,0.312,0.252,0.312,0.312,0.799,0.799,0.119,0.127,0.333,1 +0.667,0.312,0.265,0.265,0,0,0.675,0.675,0.675,0,0,0,0,0,0,0,0,0.00284,0.00284,0.263,0.58,0.127,1,0.322,0.27,0.322,0.322,0.839,0.839,0.0939,0.1,0,1 +0.667,0.3,0.276,0.276,0,0,0.675,0.675,0.675,0,0,0,0,0,0,0,0.0212,0.00284,0.024,0.27,0.59,0.14,1,0.322,0.283,0.322,0.322,0.799,0.799,0.0876,0.0938,0,1 +0.667,0.292,0.265,0.265,0,0,0.709,0.709,0.709,0.00994,0.0239,0,0,0,0,0,0.0162,0,0.0162,0.263,0.6,0.148,1,0.312,0.258,0.312,0.312,0.793,0.793,0.0876,0.0938,0,1 +0.667,0.289,0.31,0.31,0,0,0.709,0.709,0.709,0.0202,0,0,0,0,0,0,0.0155,0,0.0155,0.292,0.6,0.168,1,0.312,0.233,0.312,0.312,0.595,0.595,0.0876,0.0938,0,1 +0.333,0.173,0.343,0.343,0,0,0.709,0.709,0.709,0.00932,0,0,0,0,0,0,0,0,0,0.286,0.528,0.177,1,0.312,0.301,0.312,0.312,0.495,0.495,0.15,0.161,0,1 +0.333,0.194,0.354,0.354,0,0.0122,0.692,0.692,0.692,0,0,0,0,0,0,0,0,0.0142,0.0142,0.29,0.537,0.199,1,0.322,0.362,0.322,0.322,0.403,0.403,0.363,0.388,0,1 +0.333,0.237,0.431,0.431,0,0.0609,0.743,0.743,0.743,0,0,0,0,0,0,0,0,0.00284,0.00284,0.316,0.547,0.248,1,0.439,0.676,0.439,0.439,0.244,0.244,0.789,0.844,0,1 +0.667,0.553,0.586,0.586,0,0,0.81,0.81,0.81,0,0,0,0,0,0,0,0,0.00852,0.00852,0.477,0.669,0.304,1,0.556,0.989,0.556,0.556,0.152,0.152,0.764,0.817,0,1 +0.667,0.647,0.697,0.697,0,0,0.844,0.844,0.844,0,0,0,0,0,0,0,0,0.00284,0.00284,0.55,0.679,0.409,1,0.644,0.706,0.644,0.644,0.0859,0.0859,0.426,0.455,0,1 +1,0.919,0.741,0.741,0,0,0.81,0.81,0.81,0.0173,0.0891,0,0,0,0,0,0,0.00284,0.00284,0.741,0.741,0.573,1,0.741,0.43,0.741,0.741,0.0528,0.0528,0.382,0.409,0,1 +1,0.515,0.785,0.785,0,0,0.793,0.793,0.793,0,0.0541,0,0,0,0,0,0,0.00852,0.00852,0.609,0.619,0.708,1,0.79,0.27,0.79,0.79,0.0264,0.0264,0.319,0.342,0.333,1 +1,0.222,0.763,0.763,0,0,0.776,0.776,0.776,0,0,0,0,0,0,0,0,0.00284,0.00284,0.426,0.532,0.671,1,0.839,0.117,0.839,0.839,0.0198,0.0198,0.269,0.288,0.667,1 +1,0.197,0.652,0.652,0,0,0.743,0.743,0.743,0,0,0,0,0,0,0,0,0.017,0.017,0.389,0.508,0.405,1,0.732,0.0799,0.732,0.732,0.0198,0.0198,0.15,0.161,0.667,1 +1,0.0495,0.553,0.553,0,0,0.692,0.692,0.692,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.175,1,0.634,0.043,0.634,0.634,0.0198,0.0198,0.15,0.161,1,1 +1,0.0495,0.442,0.442,0,0,0.675,0.675,0.675,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0721,1,0.429,0.0246,0.429,0.429,0.0198,0.0198,0.15,0.161,1,1 +1,0.0495,0.409,0.409,0,0,0.658,0.658,0.658,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0351,1,0.224,0.00614,0.224,0.224,0.0198,0.0198,0.182,0.194,1,1 +1,0.0495,0.409,0.409,0,0,0.641,0.641,0.641,0,0,0,0,0,0,0,0,0.00852,0.00852,0.258,0.465,0.0175,1,0.185,0.00614,0.185,0.185,0.0198,0.0198,0.15,0.161,1,1 +1,0.0495,0.398,0.398,0,0,0.625,0.625,0.625,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0136,1,0.146,0.0123,0.146,0.146,0.0264,0.0264,0.182,0.194,1,1 +1,0.0495,0.365,0.365,0,0,0.608,0.608,0.608,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0214,1,0.156,0.043,0.156,0.156,0.0528,0.0528,0.294,0.315,1,1 +1,0.0495,0.398,0.398,0,0,0.608,0.608,0.608,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0351,1,0.176,0.0737,0.176,0.176,0.0991,0.0991,0.419,0.449,1,1 +1,0.245,0.476,0.476,0,0.0122,0.641,0.641,0.641,0,0,0.0298,0,0,0,0,0,0,0,0.403,0.521,0.0565,1,0.254,0.178,0.254,0.254,0.172,0.172,0.357,0.382,0.333,1 +1,0.433,0.52,0.52,0,0.0244,0.675,0.675,0.675,0,0,0.0518,0.0165,0,0,0,0,0,0,0.52,0.622,0.078,1,0.322,0.283,0.322,0.322,0.291,0.291,0.15,0.161,0,1 +0.333,0.184,0.376,0.376,0,0,0.692,0.692,0.692,0,0,0.00819,0.00456,0.238,0.238,0,0.0174,0,0.0174,0.297,0.523,0.0955,1,0.322,0.27,0.322,0.322,0.555,0.555,0.15,0.161,0,1 +0.667,0.321,0.254,0.254,0,0,0.692,0.692,0.692,0,0,0,0,0.0367,0.0367,0,0.0377,0,0.0377,0.255,0.58,0.113,1,0.312,0.252,0.312,0.312,0.799,0.799,0.119,0.127,0,1 +0.333,0.181,0.265,0.265,0,0,0.675,0.675,0.675,0,0,0,0,0,0,0,0,0,0,0.26,0.523,0.127,1,0.322,0.27,0.322,0.322,0.839,0.839,0.0939,0.1,0,1 +0.333,0.175,0.276,0.276,0,0,0.675,0.675,0.675,0,0,0,0,0,0,0,0,0.0114,0.0114,0.264,0.528,0.14,1,0.322,0.283,0.322,0.322,0.799,0.799,0.0876,0.0938,0,1 +0.333,0.171,0.265,0.265,0,0,0.709,0.709,0.709,0,0,0,0,0,0,0,0,0.00568,0.00568,0.26,0.532,0.148,1,0.312,0.258,0.312,0.312,0.793,0.793,0.0876,0.0938,0,1 +0.333,0.169,0.31,0.31,0,0,0.709,0.709,0.709,0,0,0,0,0,0,0,0,0,0,0.275,0.532,0.168,1,0.312,0.233,0.312,0.312,0.595,0.595,0.0876,0.0938,0,1 +0.333,0.173,0.343,0.343,0,0,0.709,0.709,0.709,0,0,0,0,0,0,0,0,0,0,0.286,0.528,0.177,1,0.312,0.301,0.312,0.312,0.495,0.495,0.15,0.161,0,1 +0.333,0.194,0.354,0.354,0,0,0.692,0.692,0.692,0,0,0,0,0,0,0,0,0,0,0.29,0.537,0.199,1,0.322,0.362,0.322,0.322,0.403,0.403,0.363,0.388,0,1 +0.333,0.237,0.431,0.431,0,0,0.743,0.743,0.743,0,0,0,0,0,0,0,0,0,0,0.316,0.547,0.248,1,0.439,0.676,0.439,0.439,0.244,0.244,0.789,0.844,0,1 +1,0.804,0.586,0.586,0,0.0853,0.81,0.81,0.81,0,0,0,0,0,0,0,0.00267,0.00568,0.00834,0.586,0.77,0.304,1,0.556,0.989,0.556,0.556,0.152,0.152,0.764,0.817,0,1 +1,0.946,0.697,0.697,0,0.0244,0.844,0.844,0.844,0,0,0,0,0,0,0,0.0349,0.0114,0.0462,0.697,0.785,0.409,1,0.644,0.706,0.644,0.644,0.0859,0.0859,0.426,0.455,0,1 +1,0.919,0.741,0.741,0,0,0.81,0.81,0.81,0,0,0,0,0,0,0,0.0159,0,0.0159,0.741,0.741,0.573,1,0.741,0.43,0.741,0.741,0.0528,0.0528,0.382,0.409,0,1 +0.667,0.515,0.785,0.785,0,0,0.793,0.793,0.793,0,0,0,0,0,0,0,0.0424,0.00568,0.0481,0.609,0.619,0.708,1,0.79,0.27,0.79,0.79,0.0264,0.0264,0.319,0.342,0,1 +0.667,0.394,0.763,0.763,0,0,0.776,0.776,0.776,0,0,0,0,0,0,0,0.0133,0.00852,0.0218,0.595,0.6,0.671,1,0.839,0.117,0.839,0.839,0.0198,0.0198,0.269,0.288,0,1 +1,0.197,0.652,0.652,0,0,0.743,0.743,0.743,0,0,0,0,0,0,0,0.00271,0.0114,0.0141,0.389,0.508,0.405,1,0.732,0.0799,0.732,0.732,0.0198,0.0198,0.15,0.161,0.667,1 +1,0.116,0.553,0.553,0,0,0.692,0.692,0.692,0,0,0,0,0,0,0,0.019,0.00284,0.0218,0.356,0.488,0.175,1,0.634,0.043,0.634,0.634,0.0198,0.0198,0.15,0.161,0.667,1 +1,0.0495,0.442,0.442,0,0,0.675,0.675,0.675,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0721,1,0.429,0.0246,0.429,0.429,0.0198,0.0198,0.15,0.161,1,1 +1,0.0495,0.409,0.409,0,0,0.658,0.658,0.658,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0351,1,0.224,0.00614,0.224,0.224,0.0198,0.0198,0.182,0.194,1,1 +1,0.0495,0.409,0.409,0,0,0.641,0.641,0.641,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0175,1,0.185,0.00614,0.185,0.185,0.0198,0.0198,0.15,0.161,1,1 +1,0.0495,0.398,0.398,0,0,0.625,0.625,0.625,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0136,1,0.146,0.0123,0.146,0.146,0.0264,0.0264,0.182,0.194,1,1 +1,0.0495,0.365,0.365,0,0,0.608,0.608,0.608,0,0,0,0,0,0,0,0.00253,0,0.00253,0.258,0.465,0.0214,1,0.156,0.043,0.156,0.156,0.0528,0.0528,0.294,0.315,1,1 +1,0.0816,0.398,0.398,0,0,0.608,0.608,0.608,0,0,0,0,0,0,0,0.0334,0,0.0334,0.305,0.473,0.0351,1,0.176,0.0737,0.176,0.176,0.0991,0.0991,0.419,0.449,0.667,1 +0.667,0.147,0.476,0.476,0,0,0.641,0.641,0.641,0,0,0,0,0,0,0,0.0181,0,0.0181,0.33,0.493,0.0565,1,0.254,0.178,0.254,0.254,0.172,0.172,0.357,0.382,0.333,1 +0.333,0.0495,0.52,0.52,0,0,0.675,0.675,0.675,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.078,1,0.322,0.283,0.322,0.322,0.291,0.291,0.15,0.161,0.333,1 +0.333,0.184,0.376,0.376,0,0.0731,0.692,0.692,0.692,0,0,0,0,0,0,0,0,0,0,0.297,0.523,0.0955,1,0.322,0.27,0.322,0.322,0.555,0.555,0.15,0.161,0,1 +0.333,0.185,0.254,0.254,0,0,0.692,0.692,0.692,0,0,0,0,0,0,0,0,0.00568,0.00568,0.257,0.523,0.113,1,0.312,0.252,0.312,0.312,0.799,0.799,0.119,0.127,0,1 +0,0.0495,0.265,0.265,0,0,0.675,0.675,0.675,0,0,0,0,0,0,0,0,0.00568,0.00568,0.258,0.465,0.127,1,0.322,0.27,0.322,0.322,0.839,0.839,0.0939,0.1,0,1 +0,0.0495,0.276,0.276,0,0,0.675,0.675,0.675,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.14,1,0.322,0.283,0.322,0.322,0.799,0.799,0.0876,0.0938,0,1 +0,0.0495,0.265,0.265,0,0,0.709,0.709,0.709,0,0,0,0,0,0,0,0,0.0255,0.0255,0.258,0.465,0.148,1,0.312,0.258,0.312,0.312,0.793,0.793,0.0876,0.0938,0,1 +0,0.0495,0.31,0.31,0,0,0.709,0.709,0.709,0,0,0,0,0,0,0,0,0.00852,0.00852,0.258,0.465,0.168,1,0.312,0.233,0.312,0.312,0.595,0.595,0.0876,0.0938,0,1 +0,0.0495,0.343,0.343,0,0,0.709,0.709,0.709,0,0,0,0,0,0,0,0.0335,0,0.0335,0.258,0.465,0.177,1,0.312,0.301,0.312,0.312,0.495,0.495,0.15,0.161,0,1 +0.667,0.338,0.354,0.354,0,0.0122,0.692,0.692,0.692,0,0,0,0,0,0,0,0,0,0,0.322,0.609,0.199,1,0.322,0.362,0.322,0.322,0.403,0.403,0.363,0.388,0,1 +1,0.612,0.431,0.431,0,0.0366,0.743,0.743,0.743,0,0,0,0,0,0,0,0,0,0,0.431,0.711,0.248,1,0.439,0.676,0.439,0.439,0.244,0.244,0.789,0.844,0,1 +1,0.804,0.586,0.586,0,0.0609,0.81,0.81,0.81,0,0,0,0,0,0,0,0,0,0,0.586,0.77,0.304,1,0.556,0.989,0.556,0.556,0.152,0.152,0.764,0.817,0,1 +1,0.946,0.697,0.697,0,0,0.844,0.844,0.844,0,0,0,0,0,0,0,0,0.00852,0.00852,0.697,0.785,0.409,1,0.644,0.706,0.644,0.644,0.0859,0.0859,0.426,0.455,0,1 +1,0.919,0.741,0.741,0,0,0.81,0.81,0.81,0,0,0,0,0,0,0,0.00239,0.017,0.0194,0.741,0.741,0.573,1,0.741,0.43,0.741,0.741,0.0528,0.0528,0.382,0.409,0,1 +1,0.747,0.785,0.785,0,0,0.793,0.793,0.793,0,0,0,0,0,0,0,0.0328,0,0.0328,0.785,0.696,0.708,1,0.79,0.27,0.79,0.79,0.0264,0.0264,0.319,0.342,0,1 +1,0.566,0.763,0.763,0,0,0.776,0.776,0.776,0,0,0,0,0,0,0,0.00982,0.00852,0.0183,0.763,0.667,0.671,1,0.839,0.117,0.839,0.839,0.0198,0.0198,0.269,0.288,0,1 +1,0.493,0.652,0.652,0,0,0.743,0.743,0.743,0,0,0,0,0,0,0,0.0216,0.00852,0.0301,0.652,0.593,0.405,1,0.732,0.0799,0.732,0.732,0.0198,0.0198,0.15,0.161,0,1 +1,0.116,0.553,0.553,0,0,0.692,0.692,0.692,0,0,0,0,0,0,0,0,0,0,0.356,0.488,0.175,1,0.634,0.043,0.634,0.634,0.0198,0.0198,0.15,0.161,0.667,1 +1,0.0743,0.442,0.442,0,0,0.675,0.675,0.675,0,0,0,0,0,0,0,0,0,0,0.319,0.483,0.0721,1,0.429,0.0246,0.429,0.429,0.0198,0.0198,0.15,0.161,0.667,1 +1,0.0495,0.409,0.409,0,0,0.658,0.658,0.658,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0351,1,0.224,0.00614,0.224,0.224,0.0198,0.0198,0.182,0.194,1,1 +1,0.0495,0.409,0.409,0,0,0.641,0.641,0.641,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0175,1,0.185,0.00614,0.185,0.185,0.0198,0.0198,0.15,0.161,1,1 +1,0.0495,0.398,0.398,0,0,0.625,0.625,0.625,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0136,1,0.146,0.0123,0.146,0.146,0.0264,0.0264,0.182,0.194,1,1 +1,0.051,0.365,0.365,0,0,0.608,0.608,0.608,0,0,0,0,0,0,0,0,0,0,0.293,0.468,0.0214,1,0.156,0.043,0.156,0.156,0.0528,0.0528,0.294,0.315,0.667,1 +1,0.0816,0.398,0.398,0,0,0.608,0.608,0.608,0,0,0,0,0,0,0,0.00244,0,0.00244,0.305,0.473,0.0351,1,0.176,0.0737,0.176,0.176,0.0991,0.0991,0.419,0.449,0.667,1 +0.667,0.147,0.476,0.476,0,0,0.641,0.641,0.641,0,0,0,0,0,0,0,0.00975,0,0.00975,0.33,0.493,0.0565,1,0.254,0.178,0.254,0.254,0.172,0.172,0.357,0.382,0.333,1 +0.333,0.0495,0.52,0.52,0,0,0.675,0.675,0.675,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.078,1,0.322,0.283,0.322,0.322,0.291,0.291,0.15,0.161,0.333,1 +0.333,0.0495,0.376,0.376,0,0,0.692,0.692,0.692,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0955,1,0.322,0.27,0.322,0.322,0.555,0.555,0.15,0.161,0.333,1 +0.333,0.0495,0.254,0.254,0,0,0.692,0.692,0.692,0,0,0,0,0,0,0,0,0.0227,0.0227,0.258,0.465,0.113,1,0.312,0.252,0.312,0.312,0.799,0.799,0.119,0.127,0.333,1 +0.333,0.0495,0.265,0.265,0,0,0.675,0.675,0.675,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.127,1,0.322,0.27,0.322,0.322,0.839,0.839,0.0939,0.1,0.333,1 +0.333,0.0495,0.276,0.276,0,0,0.675,0.675,0.675,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.14,1,0.322,0.283,0.322,0.322,0.799,0.799,0.0876,0.0938,0.333,1 +0.333,0.171,0.265,0.265,0,0.0122,0.709,0.709,0.709,0,0,0,0,0,0,0,0,0,0,0.26,0.532,0.148,1,0.312,0.258,0.312,0.312,0.793,0.793,0.0876,0.0938,0,1 +0.333,0.169,0.31,0.31,0,0.0244,0.709,0.709,0.709,0,0,0,0,0,0,0,0,0,0,0.275,0.532,0.168,1,0.312,0.233,0.312,0.312,0.595,0.595,0.0876,0.0938,0,1 +0.333,0.173,0.343,0.343,0,0,0.709,0.709,0.709,0,0,0,0,0,0,0,0,0,0,0.286,0.528,0.177,1,0.312,0.301,0.312,0.312,0.495,0.495,0.15,0.161,0,1 +0.333,0.194,0.354,0.354,0,0,0.692,0.692,0.692,0,0,0,0,0,0,0,0,0,0,0.29,0.537,0.199,1,0.322,0.362,0.322,0.322,0.403,0.403,0.363,0.388,0,1 +0.333,0.237,0.431,0.431,0,0,0.743,0.743,0.743,0,0,0,0,0,0,0,0,0.00568,0.00568,0.316,0.547,0.248,1,0.439,0.676,0.439,0.439,0.244,0.244,0.789,0.844,0,1 +0.667,0.553,0.586,0.586,0,0,0.81,0.81,0.81,0,0,0,0,0,0,0,0,0.0369,0.0369,0.477,0.669,0.304,1,0.556,0.989,0.556,0.556,0.152,0.152,0.764,0.817,0,1 +1,0.946,0.697,0.697,0,0,0.844,0.844,0.844,0,0,0,0,0,0,0,0,0.0114,0.0114,0.697,0.785,0.409,1,0.644,0.706,0.644,0.644,0.0859,0.0859,0.426,0.455,0,1 +1,0.919,0.741,0.741,0,0,0.81,0.81,0.81,0,0,0,0,0,0,0,0.00264,0,0.00264,0.741,0.741,0.573,1,0.741,0.43,0.741,0.741,0.0528,0.0528,0.382,0.409,0,1 +1,0.747,0.785,0.785,0,0,0.793,0.793,0.793,0,0,0,0,0,0,0,0.00793,0,0.00793,0.785,0.696,0.708,1,0.79,0.27,0.79,0.79,0.0264,0.0264,0.319,0.342,0,1 +1,0.566,0.763,0.763,0,0,0.776,0.776,0.776,0,0,0,0,0,0,0,0,0.00284,0.00284,0.763,0.667,0.671,1,0.839,0.117,0.839,0.839,0.0198,0.0198,0.269,0.288,0,1 +1,0.345,0.652,0.652,0,0,0.743,0.743,0.743,0,0,0,0,0,0,0,0,0.00852,0.00852,0.521,0.55,0.405,1,0.732,0.0799,0.732,0.732,0.0198,0.0198,0.15,0.161,0.333,1 +1,0.183,0.553,0.553,0,0,0.692,0.692,0.692,0,0,0,0,0,0,0,0,0.0255,0.0255,0.455,0.511,0.175,1,0.634,0.043,0.634,0.634,0.0198,0.0198,0.15,0.161,0.333,1 +1,0.0743,0.442,0.442,0,0,0.675,0.675,0.675,0,0,0,0,0,0,0,0,0.00284,0.00284,0.319,0.483,0.0721,1,0.429,0.0246,0.429,0.429,0.0198,0.0198,0.15,0.161,0.667,1 +1,0.0495,0.409,0.409,0,0,0.658,0.658,0.658,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0351,1,0.224,0.00614,0.224,0.224,0.0198,0.0198,0.182,0.194,1,1 +1,0.0495,0.409,0.409,0,0,0.641,0.641,0.641,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0175,1,0.185,0.00614,0.185,0.185,0.0198,0.0198,0.15,0.161,1,1 +1,0.0495,0.398,0.398,0,0,0.625,0.625,0.625,0,0,0,0,0,0,0,0,0.00568,0.00568,0.258,0.465,0.0136,1,0.146,0.0123,0.146,0.146,0.0264,0.0264,0.182,0.194,1,1 +1,0.0495,0.365,0.365,0,0,0.608,0.608,0.608,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.465,0.0214,1,0.156,0.043,0.156,0.156,0.0528,0.0528,0.294,0.315,1,1 +1,0.0816,0.398,0.398,0,0.0366,0.608,0.608,0.608,0,0,0,0,0,0,0,0.00263,0,0.00263,0.305,0.473,0.0351,1,0.176,0.0737,0.176,0.176,0.0991,0.0991,0.419,0.449,0.667,1 +1,0.245,0.476,0.476,0,0,0.641,0.641,0.641,0,0,0,0,0,0,0,0.0539,0,0.0539,0.403,0.521,0.0565,1,0.254,0.178,0.254,0.254,0.172,0.172,0.357,0.382,0.333,1 +1,0.433,0.52,0.52,0,0,0.675,0.675,0.675,0,0,0,0,0,0,0,0.0133,0,0.0133,0.52,0.622,0.078,1,0.322,0.283,0.322,0.322,0.291,0.291,0.15,0.161,0,1 +0.667,0.318,0.376,0.376,0,0,0.692,0.692,0.692,0,0,0,0,0,0,0,0,0,0,0.337,0.58,0.0955,1,0.322,0.27,0.322,0.322,0.555,0.555,0.15,0.161,0,1 +0.333,0.185,0.254,0.254,0,0,0.692,0.692,0.692,0,0,0,0,0,0,0,0,0.00284,0.00284,0.257,0.523,0.113,1,0.312,0.252,0.312,0.312,0.799,0.799,0.119,0.127,0,1 +0.333,0.181,0.265,0.265,0,0,0.675,0.675,0.675,0,0,0,0,0,0,0,0,0.00568,0.00568,0.26,0.523,0.127,1,0.322,0.27,0.322,0.322,0.839,0.839,0.0939,0.1,0,1 +0,0.0495,0.276,0.276,0,0,0.675,0.675,0.675,0,0,0,0,0,0,0,0,0.00568,0.00568,0.258,0.465,0.14,1,0.322,0.283,0.322,0.322,0.799,0.799,0.0876,0.0938,0,1 +0.333,0.171,0.265,0.265,0,0,0.709,0.709,0.709,0,0,0,0,0,0,0,0,0.00284,0.00284,0.26,0.532,0.148,1,0.312,0.258,0.312,0.312,0.793,0.793,0.0876,0.0938,0,1 +0.333,0.0495,0.31,0.31,0,0,0.709,0.709,0.709,0,0,0,0,0,0,0,0,0.0142,0.0142,0.258,0.465,0.168,1,0.312,0.233,0.312,0.312,0.595,0.595,0.0876,0.0938,0.333,1 +0.333,0.173,0.343,0.343,0,0,0.709,0.709,0.709,0,0,0,0,0,0,0,0,0,0,0.286,0.528,0.177,1,0.312,0.301,0.312,0.312,0.495,0.495,0.15,0.161,0,1 +0.333,0.194,0.354,0.354,0,0,0.692,0.692,0.692,0,0,0,0,0,0,0,0,0,0,0.29,0.537,0.199,1,0.322,0.362,0.322,0.322,0.403,0.403,0.363,0.388,0,1 +0.333,0.237,0.431,0.431,0,0.0122,0.743,0.743,0.743,0,0,0,0,0,0,0,0,0,0,0.316,0.547,0.248,1,0.439,0.676,0.439,0.439,0.244,0.244,0.789,0.844,0,1 +0.667,0.553,0.586,0.586,0,0.146,0.81,0.81,0.81,0,0,0,0,0,0,0,0,0,0,0.477,0.669,0.304,1,0.556,0.989,0.556,0.556,0.152,0.152,0.764,0.817,0,1 +0.667,0.647,0.697,0.697,0,0.0244,0.844,0.844,0.844,0,0,0,0,0,0,0,0.0226,0.0199,0.0424,0.55,0.679,0.409,1,0.644,0.706,0.644,0.644,0.0859,0.0859,0.426,0.455,0,1 +1,0.919,0.741,0.741,0,0,0.81,0.81,0.81,0,0,0,0,0,0,0,0,0.0369,0.0369,0.741,0.741,0.573,1,0.741,0.43,0.741,0.741,0.0528,0.0528,0.382,0.409,0,1 +1,0.747,0.785,0.785,0,0,0.793,0.793,0.793,0,0,0,0,0,0,0,0,0.00284,0.00284,0.785,0.696,0.708,1,0.79,0.27,0.79,0.79,0.0264,0.0264,0.319,0.342,0,1 +1,0.566,0.763,0.763,0,0,0.776,0.776,0.776,0,0,0,0,0,0,0,0,0,0,0.763,0.667,0.671,1,0.839,0.117,0.839,0.839,0.0198,0.0198,0.269,0.288,0,1 +1,0.197,0.652,0.652,0,0,0.743,0.743,0.743,0,0,0,0,0,0,0,0.0174,0.00284,0.0202,0.389,0.508,0.405,1,0.732,0.0799,0.732,0.732,0.0198,0.0198,0.15,0.161,0.667,1 +1,0.116,0.553,0.553,0,0,0.692,0.692,0.692,0,0,0,0,0,0,0,0.0267,0,0.0267,0.356,0.488,0.175,1,0.634,0.043,0.634,0.634,0.0198,0.0198,0.15,0.161,0.667,1 +1,0.0495,0.442,0.442,0,0,0.675,0.675,0.675,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0858,1,0.429,0.0246,0.429,0.429,0.0198,0.0198,0.15,0.161,1,1 +1,0.0495,0.409,0.409,0,0,0.658,0.658,0.658,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0429,1,0.224,0.00614,0.224,0.224,0.0198,0.0198,0.182,0.194,1,1 +1,0.0495,0.409,0.409,0,0,0.641,0.641,0.641,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0234,1,0.185,0.00614,0.185,0.185,0.0198,0.0198,0.15,0.161,1,1 +1,0.0495,0.398,0.398,0,0,0.625,0.625,0.625,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0156,1,0.146,0.0123,0.146,0.146,0.0264,0.0264,0.182,0.194,1,1 +1,0.0495,0.365,0.365,0,0,0.608,0.608,0.608,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0214,1,0.156,0.043,0.156,0.156,0.0528,0.0528,0.294,0.315,1,1 +1,0.0495,0.398,0.398,0,0,0.608,0.608,0.608,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0273,1,0.176,0.0737,0.176,0.176,0.0991,0.0991,0.419,0.449,1,1 +1,0.0495,0.476,0.476,0,0,0.641,0.641,0.641,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0468,1,0.254,0.178,0.254,0.254,0.172,0.172,0.357,0.382,1,1 +1,0.0495,0.52,0.52,0,0.0122,0.675,0.675,0.675,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0838,1,0.322,0.283,0.322,0.322,0.291,0.291,0.15,0.161,1,1 +1,0.184,0.376,0.376,0,0.0609,0.692,0.692,0.692,0,0,0,0,0,0,0,0.0106,0,0.0106,0.297,0.523,0.138,1,0.322,0.27,0.322,0.322,0.555,0.555,0.15,0.161,0.667,1 +1,0.321,0.254,0.254,0,0,0.692,0.692,0.692,0,0,0,0,0,0,0,0.0444,0,0.0444,0.255,0.58,0.183,1,0.312,0.252,0.312,0.312,0.799,0.799,0.119,0.127,0.333,1 +1,0.312,0.265,0.265,0,0,0.675,0.675,0.675,0,0,0,0,0,0,0,0.0263,0,0.0263,0.263,0.58,0.218,1,0.322,0.27,0.322,0.322,0.839,0.839,0.0939,0.1,0.333,1 +1,0.3,0.276,0.276,0,0,0.675,0.675,0.675,0,0,0,0,0,0,0,0.0233,0.00284,0.0262,0.27,0.59,0.24,1,0.322,0.283,0.322,0.322,0.799,0.799,0.0876,0.0938,0.333,1 +0.667,0.171,0.265,0.265,0,0.0731,0.709,0.709,0.709,0,0,0,0,0,0,0,0,0.017,0.017,0.26,0.532,0.257,1,0.312,0.258,0.312,0.312,0.793,0.793,0.0876,0.0938,0.333,1 +1,0.289,0.31,0.31,0,0,0.709,0.709,0.709,0,0,0,0,0,0,0,0,0.00852,0.00852,0.292,0.6,0.304,1,0.312,0.233,0.312,0.312,0.595,0.595,0.0876,0.0938,0.333,1 +1,0.421,0.343,0.343,0,0,0.709,0.709,0.709,0,0,0,0,0,0,0,0,0.00284,0.00284,0.343,0.652,0.347,1,0.312,0.301,0.312,0.312,0.495,0.495,0.15,0.161,0,1 +1,0.482,0.354,0.354,0,0,0.692,0.692,0.692,0.00865,0.0414,0,0,0,0,0,0,0.00284,0.00284,0.354,0.681,0.382,1,0.322,0.362,0.322,0.322,0.403,0.403,0.363,0.388,0,1 +1,0.612,0.431,0.431,0,0,0.743,0.743,0.743,0.0255,0.00637,0,0,0,0,0,0,0.00284,0.00284,0.431,0.711,0.402,1,0.439,0.676,0.439,0.439,0.244,0.244,0.789,0.844,0,1 +1,0.804,0.586,0.586,0,0,0.81,0.81,0.81,0,0,0,0,0,0,0,0,0.0114,0.0114,0.586,0.77,0.415,1,0.556,0.989,0.556,0.556,0.152,0.152,0.764,0.817,0,1 +1,0.946,0.697,0.697,0,0,0.844,0.844,0.844,0,0,0,0,0,0,0,0,0.00568,0.00568,0.697,0.785,0.489,1,0.644,0.706,0.644,0.644,0.0859,0.0859,0.426,0.455,0,1 +1,0.919,0.741,0.741,0,0,0.81,0.81,0.81,0.0163,0.0891,0,0,0,0,0,0,0.0199,0.0199,0.741,0.741,0.643,1,0.741,0.43,0.741,0.741,0.0528,0.0528,0.382,0.409,0,1 +1,0.747,0.785,0.785,0,0,0.793,0.793,0.793,0.0174,0.0302,0,0,0,0,0,0,0,0,0.785,0.696,0.756,1,0.79,0.27,0.79,0.79,0.0264,0.0264,0.319,0.342,0,1 +1,0.566,0.763,0.763,0,0,0.776,0.776,0.776,0.0126,0,0,0,0,0,0,0,0,0,0.763,0.667,0.698,1,0.839,0.117,0.839,0.839,0.0198,0.0198,0.269,0.288,0,1 +1,0.493,0.652,0.652,0,0,0.743,0.743,0.743,0,0,0,0,0,0,0,0,0.00568,0.00568,0.652,0.593,0.441,1,0.732,0.0799,0.732,0.732,0.0198,0.0198,0.15,0.161,0,1 +1,0.116,0.553,0.553,0,0,0.692,0.692,0.692,0,0,0,0,0,0,0,0,0,0,0.356,0.488,0.201,1,0.634,0.043,0.634,0.634,0.0198,0.0198,0.15,0.161,0.667,1 +1,0.0743,0.442,0.442,0,0,0.675,0.675,0.675,0,0,0,0,0,0,0,0,0.00284,0.00284,0.319,0.483,0.0858,1,0.429,0.0246,0.429,0.429,0.0198,0.0198,0.15,0.161,0.667,1 +1,0.0495,0.409,0.409,0,0,0.658,0.658,0.658,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0429,1,0.224,0.00614,0.224,0.224,0.0198,0.0198,0.182,0.194,1,1 +1,0.0495,0.409,0.409,0,0,0.641,0.641,0.641,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0234,1,0.185,0.00614,0.185,0.185,0.0198,0.0198,0.15,0.161,1,1 +1,0.0495,0.398,0.398,0,0,0.625,0.625,0.625,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0156,1,0.146,0.0123,0.146,0.146,0.0264,0.0264,0.182,0.194,1,1 +1,0.0495,0.365,0.365,0,0,0.608,0.608,0.608,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0214,1,0.156,0.043,0.156,0.156,0.0528,0.0528,0.294,0.315,1,1 +1,0.0495,0.398,0.398,0,0,0.608,0.608,0.608,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0273,1,0.176,0.0737,0.176,0.176,0.0991,0.0991,0.419,0.449,1,1 +1,0.147,0.476,0.476,0,0,0.641,0.641,0.641,0,0,0,0,0,0,0.0411,0.0177,0,0.0588,0.33,0.493,0.0468,1,0.254,0.178,0.254,0.254,0.172,0.172,0.357,0.382,0.667,1 +1,0.177,0.52,0.52,0,0,0.675,0.675,0.675,0,0,0,0,0,0,0,0.0397,0,0.0397,0.345,0.518,0.0838,1,0.322,0.283,0.322,0.322,0.291,0.291,0.15,0.161,0.667,1 +1,0.318,0.376,0.376,0,0.0366,0.692,0.692,0.692,0,0,0,0,0,0,0,0,0,0,0.337,0.58,0.138,1,0.322,0.27,0.322,0.322,0.555,0.555,0.15,0.161,0.333,1 +1,0.456,0.254,0.254,0,0,0.692,0.692,0.692,0,0,0,0,0,0,0,0,0,0,0.254,0.637,0.183,1,0.312,0.252,0.312,0.312,0.799,0.799,0.119,0.127,0,1 +0.667,0.312,0.265,0.265,0,0,0.675,0.675,0.675,0,0,0,0,0,0,0,0,0.00284,0.00284,0.263,0.58,0.218,1,0.322,0.27,0.322,0.322,0.839,0.839,0.0939,0.1,0,1 +0.667,0.3,0.276,0.276,0,0,0.675,0.675,0.675,0,0,0,0,0,0,0,0,0.00284,0.00284,0.27,0.59,0.24,1,0.322,0.283,0.322,0.322,0.799,0.799,0.0876,0.0938,0,1 +0.333,0.171,0.265,0.265,0,0,0.709,0.709,0.709,0,0,0,0,0,0,0,0,0.00284,0.00284,0.26,0.532,0.257,1,0.312,0.258,0.312,0.312,0.793,0.793,0.0876,0.0938,0,1 +0.333,0.169,0.31,0.31,0,0,0.709,0.709,0.709,0,0,0,0,0,0,0,0,0,0,0.275,0.532,0.304,1,0.312,0.233,0.312,0.312,0.595,0.595,0.0876,0.0938,0,1 +0,0.0495,0.343,0.343,0,0.0487,0.709,0.709,0.709,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.347,1,0.312,0.301,0.312,0.312,0.495,0.495,0.15,0.161,0,1 +1,0.482,0.354,0.354,0,0.0244,0.692,0.692,0.692,0,0,0,0,0,0,0,0,0,0,0.354,0.681,0.382,1,0.322,0.362,0.322,0.322,0.403,0.403,0.363,0.388,0,1 +1,0.612,0.431,0.431,0,0,0.743,0.743,0.743,0,0,0,0,0,0,0,0,0,0,0.431,0.711,0.402,1,0.439,0.676,0.439,0.439,0.244,0.244,0.789,0.844,0,1 +1,0.804,0.586,0.586,0,0,0.81,0.81,0.81,0,0,0,0,0,0,0,0,0.00852,0.00852,0.586,0.77,0.415,1,0.556,0.989,0.556,0.556,0.152,0.152,0.764,0.817,0,1 +1,0.946,0.697,0.697,0,0,0.844,0.844,0.844,0.00382,0.0175,0,0,0,0,0,0,0.00568,0.00568,0.697,0.785,0.489,1,0.644,0.706,0.644,0.644,0.0859,0.0859,0.426,0.455,0,1 +1,0.629,0.741,0.741,0,0,0.81,0.81,0.81,0.0158,0.0302,0,0,0,0,0,0,0,0,0.58,0.649,0.643,1,0.741,0.43,0.741,0.741,0.0528,0.0528,0.382,0.409,0.333,1 +1,0.747,0.785,0.785,0,0,0.793,0.793,0.793,0,0,0,0,0,0,0,0,0.00852,0.00852,0.785,0.696,0.756,1,0.79,0.27,0.79,0.79,0.0264,0.0264,0.319,0.342,0,1 +1,0.566,0.763,0.763,0,0,0.776,0.776,0.776,0,0,0,0,0,0,0,0,0.00852,0.00852,0.763,0.667,0.698,1,0.839,0.117,0.839,0.839,0.0198,0.0198,0.269,0.288,0,1 +1,0.493,0.652,0.652,0,0,0.743,0.743,0.743,0,0,0,0,0,0,0,0,0.0227,0.0227,0.652,0.593,0.441,1,0.732,0.0799,0.732,0.732,0.0198,0.0198,0.15,0.161,0,1 +1,0.116,0.553,0.553,0,0,0.692,0.692,0.692,0.011,0.0478,0,0,0,0,0,0,0.00852,0.00852,0.356,0.488,0.201,1,0.634,0.043,0.634,0.634,0.0198,0.0198,0.15,0.161,0.667,1 +1,0.0495,0.442,0.442,0,0,0.675,0.675,0.675,0.00708,0,0,0,0,0,0,0,0.0114,0.0114,0.258,0.465,0.0721,1,0.429,0.0246,0.429,0.429,0.0198,0.0198,0.15,0.161,1,1 +1,0.0495,0.409,0.409,0,0,0.658,0.658,0.658,0,0,0,0,0,0,0,0,0.00568,0.00568,0.258,0.465,0.0351,1,0.224,0.00614,0.224,0.224,0.0198,0.0198,0.182,0.194,1,1 +1,0.0495,0.409,0.409,0,0,0.641,0.641,0.641,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0175,1,0.185,0.00614,0.185,0.185,0.0198,0.0198,0.15,0.161,1,1 +1,0.0495,0.398,0.398,0,0,0.625,0.625,0.625,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0136,1,0.146,0.0123,0.146,0.146,0.0264,0.0264,0.182,0.194,1,1 +1,0.0495,0.365,0.365,0,0,0.608,0.608,0.608,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0214,1,0.156,0.043,0.156,0.156,0.0528,0.0528,0.294,0.315,1,1 +1,0.0495,0.398,0.398,0,0,0.608,0.608,0.608,0,0,0,0,0,0,0,0.00794,0,0.00794,0.258,0.465,0.0351,1,0.176,0.0737,0.176,0.176,0.0991,0.0991,0.419,0.449,1,1 +1,0.342,0.476,0.476,0,0,0.641,0.641,0.641,0,0,0,0,0,0,0,0.0814,0,0.0814,0.476,0.548,0.0565,1,0.254,0.178,0.254,0.254,0.172,0.172,0.357,0.382,0,1 +0.667,0.305,0.52,0.52,0,0,0.675,0.675,0.675,0,0,0,0,0,0,0,0.0184,0,0.0184,0.432,0.57,0.078,1,0.322,0.283,0.322,0.322,0.291,0.291,0.15,0.161,0,1 +0.667,0.318,0.376,0.376,0,0,0.692,0.692,0.692,0,0,0,0,0,0,0,0.0417,0,0.0417,0.337,0.58,0.0955,1,0.322,0.27,0.322,0.322,0.555,0.555,0.15,0.161,0,1 +0.333,0.185,0.254,0.254,0,0,0.692,0.692,0.692,0,0,0,0,0,0,0,0.00533,0,0.00533,0.257,0.523,0.113,1,0.312,0.252,0.312,0.312,0.799,0.799,0.119,0.127,0,1 +0.333,0.181,0.265,0.265,0,0,0.675,0.675,0.675,0,0,0,0,0,0,0,0,0.00284,0.00284,0.26,0.523,0.127,1,0.322,0.27,0.322,0.322,0.839,0.839,0.0939,0.1,0,1 +0.333,0.175,0.276,0.276,0,0,0.675,0.675,0.675,0,0,0,0,0,0,0,0,0.00284,0.00284,0.264,0.528,0.14,1,0.322,0.283,0.322,0.322,0.799,0.799,0.0876,0.0938,0,1 +0.333,0.171,0.265,0.265,0,0.0853,0.709,0.709,0.709,0,0,0,0,0,0,0,0,0.00568,0.00568,0.26,0.532,0.148,1,0.312,0.258,0.312,0.312,0.793,0.793,0.0876,0.0938,0,1 +0.333,0.169,0.31,0.31,0,0.0975,0.709,0.709,0.709,0,0,0,0,0,0,0,0,0,0,0.275,0.532,0.168,1,0.312,0.233,0.312,0.312,0.595,0.595,0.0876,0.0938,0,1 +0.333,0.173,0.343,0.343,0,0,0.709,0.709,0.709,0,0,0,0,0,0,0,0,0.00852,0.00852,0.286,0.528,0.177,1,0.312,0.301,0.312,0.312,0.495,0.495,0.15,0.161,0,1 +0.333,0.194,0.354,0.354,0,0,0.692,0.692,0.692,0,0,0,0,0,0,0,0.0147,0.00568,0.0204,0.29,0.537,0.199,1,0.322,0.362,0.322,0.322,0.403,0.403,0.363,0.388,0,1 +0.667,0.425,0.431,0.431,0,0,0.743,0.743,0.743,0,0,0,0,0,0,0,0.0191,0.00284,0.022,0.373,0.629,0.248,1,0.439,0.676,0.439,0.439,0.244,0.244,0.789,0.844,0,1 +0.667,0.553,0.586,0.586,0,0.0853,0.81,0.81,0.81,0,0,0,0,0,0,0,0.0369,0,0.0369,0.477,0.669,0.304,1,0.556,0.989,0.556,0.556,0.152,0.152,0.764,0.817,0,1 +1,0.946,0.697,0.697,0,0.0244,0.844,0.844,0.844,0,0,0,0,0,0,0,0.0518,0.00284,0.0546,0.697,0.785,0.409,1,0.644,0.706,0.644,0.644,0.0859,0.0859,0.426,0.455,0,1 +1,0.919,0.741,0.741,0,0,0.81,0.81,0.81,0,0,0,0,0,0,0,0,0.0255,0.0255,0.741,0.741,0.573,1,0.741,0.43,0.741,0.741,0.0528,0.0528,0.382,0.409,0,1 +0.667,0.515,0.785,0.785,0,0,0.793,0.793,0.793,0,0,0,0,0,0,0,0,0.00568,0.00568,0.609,0.619,0.708,1,0.79,0.27,0.79,0.79,0.0264,0.0264,0.319,0.342,0,1 +0.667,0.394,0.763,0.763,0,0,0.776,0.776,0.776,0,0,0.00253,0,0,0,0,0.028,0.00284,0.0308,0.595,0.6,0.671,1,0.839,0.117,0.839,0.839,0.0198,0.0198,0.269,0.288,0,1 +0.667,0.345,0.652,0.652,0,0,0.743,0.743,0.743,0,0,0.0183,0.0165,0,0,0,0.0231,0.00852,0.0316,0.521,0.55,0.405,1,0.732,0.0799,0.732,0.732,0.0198,0.0198,0.15,0.161,0,1 +0.667,0.116,0.553,0.553,0,0,0.692,0.692,0.692,0,0,0,0.00456,0.238,0.238,0,0.00475,0,0.00475,0.356,0.488,0.175,1,0.634,0.043,0.634,0.634,0.0198,0.0198,0.15,0.161,0.333,1 +1,0.0743,0.442,0.442,0,0,0.675,0.675,0.675,0,0,0,0,0.128,0.128,0,0,0,0,0.319,0.483,0.0721,1,0.429,0.0246,0.429,0.429,0.0198,0.0198,0.15,0.161,0.667,1 +1,0.0578,0.409,0.409,0,0,0.658,0.658,0.658,0,0,0,0,0,0,0,0,0,0,0.308,0.473,0.0351,1,0.224,0.00614,0.224,0.224,0.0198,0.0198,0.182,0.194,0.667,1 +1,0.0495,0.409,0.409,0,0,0.641,0.641,0.641,0,0,0,0,0,0,0,0,0.00568,0.00568,0.258,0.465,0.0175,1,0.185,0.00614,0.185,0.185,0.0198,0.0198,0.15,0.161,1,1 +1,0.0495,0.398,0.398,0,0,0.625,0.625,0.625,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0136,1,0.146,0.0123,0.146,0.146,0.0264,0.0264,0.182,0.194,1,1 +1,0.0495,0.365,0.365,0,0,0.608,0.608,0.608,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0214,1,0.156,0.043,0.156,0.156,0.0528,0.0528,0.294,0.315,1,1 +1,0.0816,0.398,0.398,0,0,0.608,0.608,0.608,0,0,0,0,0,0,0,0.0215,0.00568,0.0272,0.305,0.473,0.0351,1,0.176,0.0737,0.176,0.176,0.0991,0.0991,0.419,0.449,0.667,1 +1,0.245,0.476,0.476,0,0.0366,0.641,0.641,0.641,0,0,0,0,0,0,0,0.0375,0,0.0375,0.403,0.521,0.0565,1,0.254,0.178,0.254,0.254,0.172,0.172,0.357,0.382,0.333,1 +1,0.305,0.52,0.52,0,0,0.675,0.675,0.675,0,0,0,0,0,0,0,0.0334,0,0.0334,0.432,0.57,0.078,1,0.322,0.283,0.322,0.322,0.291,0.291,0.15,0.161,0.333,1 +1,0.452,0.376,0.376,0,0,0.692,0.692,0.692,0,0,0,0,0,0,0,0.0319,0.00284,0.0347,0.376,0.637,0.0955,1,0.322,0.27,0.322,0.322,0.555,0.555,0.15,0.161,0,1 +0.667,0.321,0.254,0.254,0,0,0.692,0.692,0.692,0,0,0,0,0,0,0,0.012,0.00568,0.0177,0.255,0.58,0.113,1,0.312,0.252,0.312,0.312,0.799,0.799,0.119,0.127,0,1 +0,0.0495,0.265,0.265,0,0,0.675,0.675,0.675,0,0,0,0,0,0,0,0,0.0114,0.0114,0.258,0.465,0.127,1,0.322,0.27,0.322,0.322,0.839,0.839,0.0939,0.1,0,1 +0,0.0495,0.276,0.276,0,0,0.675,0.675,0.675,0,0,0,0,0,0,0,0,0.00852,0.00852,0.258,0.465,0.14,1,0.322,0.283,0.322,0.322,0.799,0.799,0.0876,0.0938,0,1 +0,0.0495,0.265,0.265,0,0,0.709,0.709,0.709,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.148,1,0.312,0.258,0.312,0.312,0.793,0.793,0.0876,0.0938,0,1 +0,0.0495,0.31,0.31,0,0,0.709,0.709,0.709,0,0,0,0,0,0,0,0,0.00568,0.00568,0.258,0.465,0.168,1,0.312,0.233,0.312,0.312,0.595,0.595,0.0876,0.0938,0,1 +0,0.0495,0.343,0.343,0,0,0.709,0.709,0.709,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.177,1,0.312,0.301,0.312,0.312,0.495,0.495,0.15,0.161,0,1 +0.333,0.194,0.354,0.354,0,0.0366,0.692,0.692,0.692,0,0,0.0236,0.000702,0,0,0,0,0,0,0.29,0.537,0.199,1,0.322,0.362,0.322,0.322,0.403,0.403,0.363,0.388,0,1 +0.667,0.425,0.431,0.431,0,0,0.743,0.743,0.743,0,0,0.0533,0.0151,0.055,0.055,0,0.0126,0,0.0126,0.373,0.629,0.248,1,0.439,0.676,0.439,0.439,0.244,0.244,0.789,0.844,0,1 +0.667,0.553,0.586,0.586,0,0,0.81,0.81,0.81,0,0,0.0263,0,0.22,0.22,0,0.0461,0,0.0461,0.477,0.669,0.304,1,0.556,0.989,0.556,0.556,0.152,0.152,0.764,0.817,0,1 +1,0.946,0.697,0.697,0,0.0366,0.844,0.844,0.844,0,0,0,0,0,0,0,0,0,0,0.697,0.785,0.409,1,0.644,0.706,0.644,0.644,0.0859,0.0859,0.426,0.455,0,1 +1,0.919,0.741,0.741,0,0,0.81,0.81,0.81,0,0,0.0076,0,0,0,0,0,0.00284,0.00284,0.741,0.741,0.573,1,0.741,0.43,0.741,0.741,0.0528,0.0528,0.382,0.409,0,1 +1,0.747,0.785,0.785,0,0,0.793,0.793,0.793,0,0,0.0326,0.0112,0,0,0,0.00271,0.00284,0.00554,0.785,0.696,0.708,1,0.79,0.27,0.79,0.79,0.0264,0.0264,0.319,0.342,0,1 +1,0.566,0.763,0.763,0,0,0.776,0.776,0.776,0,0,0.0183,0.00456,0.238,0.238,0,0.0365,0,0.0365,0.763,0.667,0.671,1,0.839,0.117,0.839,0.839,0.0198,0.0198,0.269,0.288,0,1 +1,0.345,0.652,0.652,0,0,0.743,0.743,0.743,0,0,0.0222,0,0.128,0.128,0,0,0.0114,0.0114,0.521,0.55,0.405,1,0.732,0.0799,0.732,0.732,0.0198,0.0198,0.15,0.161,0.333,1 +1,0.116,0.553,0.553,0,0,0.692,0.692,0.692,0,0,0.0312,0,0,0,0,0,0.00284,0.00284,0.356,0.488,0.175,1,0.634,0.043,0.634,0.634,0.0198,0.0198,0.15,0.161,0.667,1 +1,0.0743,0.442,0.442,0,0,0.675,0.675,0.675,0,0,0,0,0,0,0,0,0,0,0.319,0.483,0.0721,1,0.429,0.0246,0.429,0.429,0.0198,0.0198,0.15,0.161,0.667,1 +1,0.0495,0.409,0.409,0,0,0.658,0.658,0.658,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0351,1,0.224,0.00614,0.224,0.224,0.0198,0.0198,0.182,0.194,1,1 +1,0.0495,0.409,0.409,0,0,0.641,0.641,0.641,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0175,1,0.185,0.00614,0.185,0.185,0.0198,0.0198,0.15,0.161,1,1 +1,0.0495,0.398,0.398,0,0,0.625,0.625,0.625,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0136,1,0.146,0.0123,0.146,0.146,0.0264,0.0264,0.182,0.194,1,1 +1,0.0495,0.365,0.365,0,0,0.608,0.608,0.608,0,0,0,0,0,0,0,0.0149,0,0.0149,0.258,0.465,0.0214,1,0.156,0.043,0.156,0.156,0.0528,0.0528,0.294,0.315,1,1 +1,0.0816,0.398,0.398,0,0,0.608,0.608,0.608,0,0,0,0,0,0,0.0318,0.027,0,0.0588,0.305,0.473,0.0351,1,0.176,0.0737,0.176,0.176,0.0991,0.0991,0.419,0.449,0.667,1 +1,0.245,0.476,0.476,0,0,0.641,0.641,0.641,0,0,0,0,0,0,0,0.0162,0,0.0162,0.403,0.521,0.0565,1,0.254,0.178,0.254,0.254,0.172,0.172,0.357,0.382,0.333,1 +0.333,0.0495,0.52,0.52,0,0,0.675,0.675,0.675,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.078,1,0.322,0.283,0.322,0.322,0.291,0.291,0.15,0.161,0.333,1 +0.333,0.184,0.376,0.376,0,0,0.692,0.692,0.692,0,0,0,0,0,0,0,0,0,0,0.297,0.523,0.0955,1,0.322,0.27,0.322,0.322,0.555,0.555,0.15,0.161,0,1 +0.333,0.185,0.254,0.254,0,0,0.692,0.692,0.692,0,0,0,0,0,0,0,0,0.00284,0.00284,0.257,0.523,0.113,1,0.312,0.252,0.312,0.312,0.799,0.799,0.119,0.127,0,1 +0.333,0.181,0.265,0.265,0,0,0.675,0.675,0.675,0.0186,0.0716,0,0,0,0,0,0.0342,0.00852,0.0427,0.26,0.523,0.127,1,0.322,0.27,0.322,0.322,0.839,0.839,0.0939,0.1,0,1 +0.333,0.175,0.276,0.276,0,0,0.675,0.675,0.675,0,0,0,0,0,0,0,0.0125,0,0.0125,0.264,0.528,0.14,1,0.322,0.283,0.322,0.322,0.799,0.799,0.0876,0.0938,0,1 +0.667,0.292,0.265,0.265,0,0,0.709,0.709,0.709,0,0,0,0,0,0,0,0.0268,0.017,0.0439,0.263,0.6,0.148,1,0.312,0.258,0.312,0.312,0.793,0.793,0.0876,0.0938,0,1 +0.333,0.169,0.31,0.31,0,0,0.709,0.709,0.709,0,0,0,0,0,0,0,0.00518,0.0142,0.0194,0.275,0.532,0.168,1,0.312,0.233,0.312,0.312,0.595,0.595,0.0876,0.0938,0,1 +0.333,0.173,0.343,0.343,0,0,0.709,0.709,0.709,0,0,0,0,0,0,0,0,0,0,0.286,0.528,0.177,1,0.312,0.301,0.312,0.312,0.495,0.495,0.15,0.161,0,1 +0.333,0.194,0.354,0.354,0,0,0.692,0.692,0.692,0,0,0,0,0,0,0,0,0,0,0.29,0.537,0.199,1,0.322,0.362,0.322,0.322,0.403,0.403,0.363,0.388,0,1 +0.333,0.237,0.431,0.431,0,0,0.743,0.743,0.743,0,0,0,0,0,0,0,0.00253,0.00852,0.011,0.316,0.547,0.248,1,0.439,0.676,0.439,0.439,0.244,0.244,0.789,0.844,0,1 +0.333,0.301,0.586,0.586,0,0.0122,0.81,0.81,0.81,0,0,0,0,0,0,0,0.0228,0.00284,0.0256,0.367,0.567,0.304,1,0.556,0.989,0.556,0.556,0.152,0.152,0.764,0.817,0,1 +0.333,0.348,0.697,0.697,0,0.134,0.844,0.844,0.844,0,0,0,0,0,0,0,0,0,0,0.404,0.572,0.409,1,0.644,0.706,0.644,0.644,0.0859,0.0859,0.426,0.455,0,1 +1,0.919,0.741,0.741,0,0,0.81,0.81,0.81,0,0,0,0,0,0,0,0,0,0,0.741,0.741,0.573,1,0.741,0.43,0.741,0.741,0.0528,0.0528,0.382,0.409,0,1 +1,0.515,0.785,0.785,0,0,0.793,0.793,0.793,0,0,0,0,0,0,0,0,0.0114,0.0114,0.609,0.619,0.708,1,0.79,0.27,0.79,0.79,0.0264,0.0264,0.319,0.342,0.333,1 +1,0.394,0.763,0.763,0,0,0.776,0.776,0.776,0,0,0,0,0,0,0,0,0,0,0.595,0.6,0.671,1,0.839,0.117,0.839,0.839,0.0198,0.0198,0.269,0.288,0.333,1 +1,0.197,0.652,0.652,0,0,0.743,0.743,0.743,0,0,0,0,0,0,0,0,0.00284,0.00284,0.389,0.508,0.405,1,0.732,0.0799,0.732,0.732,0.0198,0.0198,0.15,0.161,0.667,1 +1,0.0495,0.553,0.553,0,0,0.692,0.692,0.692,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.465,0.175,1,0.634,0.043,0.634,0.634,0.0198,0.0198,0.15,0.161,1,1 +1,0.0495,0.442,0.442,0,0,0.675,0.675,0.675,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0721,1,0.429,0.0246,0.429,0.429,0.0198,0.0198,0.15,0.161,1,1 +1,0.0495,0.409,0.409,0,0,0.658,0.658,0.658,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0351,1,0.224,0.00614,0.224,0.224,0.0198,0.0198,0.182,0.194,1,1 +1,0.0495,0.409,0.409,0,0,0.641,0.641,0.641,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0175,1,0.185,0.00614,0.185,0.185,0.0198,0.0198,0.15,0.161,1,1 +1,0.0495,0.398,0.398,0,0,0.625,0.625,0.625,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0136,1,0.146,0.0123,0.146,0.146,0.0264,0.0264,0.182,0.194,1,1 +1,0.0495,0.365,0.365,0,0,0.608,0.608,0.608,0,0,0,0,0,0,0,0.0189,0,0.0189,0.258,0.465,0.0214,1,0.156,0.043,0.156,0.156,0.0528,0.0528,0.294,0.315,1,1 +0.667,0.0816,0.398,0.398,0,0,0.608,0.608,0.608,0,0,0,0,0,0,0.0464,0.0221,0,0.0685,0.305,0.473,0.0351,1,0.176,0.0737,0.176,0.176,0.0991,0.0991,0.419,0.449,0.333,1 +0.667,0.147,0.476,0.476,0,0,0.641,0.641,0.641,0,0,0,0,0,0,0,0.0421,0,0.0421,0.33,0.493,0.0565,1,0.254,0.178,0.254,0.254,0.172,0.172,0.357,0.382,0.333,1 +0.667,0.305,0.52,0.52,0,0,0.675,0.675,0.675,0,0,0,0,0,0,0,0.00851,0,0.00851,0.432,0.57,0.078,1,0.322,0.283,0.322,0.322,0.291,0.291,0.15,0.161,0,1 +0.667,0.318,0.376,0.376,0,0,0.692,0.692,0.692,0,0,0,0,0,0,0,0,0.00568,0.00568,0.337,0.58,0.0955,1,0.322,0.27,0.322,0.322,0.555,0.555,0.15,0.161,0,1 +0,0.0495,0.254,0.254,0,0,0.692,0.692,0.692,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.465,0.113,1,0.312,0.252,0.312,0.312,0.799,0.799,0.119,0.127,0,1 +0,0.0495,0.265,0.265,0,0,0.675,0.675,0.675,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.465,0.127,1,0.322,0.27,0.322,0.322,0.839,0.839,0.0939,0.1,0,1 +0.333,0.175,0.276,0.276,0,0,0.675,0.675,0.675,0,0,0,0,0,0,0,0,0.00284,0.00284,0.264,0.528,0.14,1,0.322,0.283,0.322,0.322,0.799,0.799,0.0876,0.0938,0,1 +0.667,0.292,0.265,0.265,0,0,0.709,0.709,0.709,0,0,0,0,0,0,0,0,0,0,0.263,0.6,0.148,1,0.312,0.258,0.312,0.312,0.793,0.793,0.0876,0.0938,0,1 +0.667,0.289,0.31,0.31,0,0,0.709,0.709,0.709,0,0,0,0,0,0,0,0,0,0,0.292,0.6,0.168,1,0.312,0.233,0.312,0.312,0.595,0.595,0.0876,0.0938,0,1 +0.667,0.297,0.343,0.343,0,0,0.709,0.709,0.709,0,0,0,0,0,0,0,0.0141,0,0.0141,0.314,0.59,0.177,1,0.312,0.301,0.312,0.312,0.495,0.495,0.15,0.161,0,1 +0.333,0.194,0.354,0.354,0,0,0.692,0.692,0.692,0,0,0,0,0,0,0,0,0.00568,0.00568,0.29,0.537,0.199,1,0.322,0.362,0.322,0.322,0.403,0.403,0.363,0.388,0,1 +0.333,0.237,0.431,0.431,0,0,0.743,0.743,0.743,0,0,0,0,0,0,0,0,0.00852,0.00852,0.316,0.547,0.248,1,0.439,0.676,0.439,0.439,0.244,0.244,0.789,0.844,0,1 +0.667,0.301,0.586,0.586,0,0,0.81,0.81,0.81,0,0,0,0,0,0,0,0.0286,0.00568,0.0342,0.367,0.567,0.304,1,0.556,0.989,0.556,0.556,0.152,0.152,0.764,0.817,0.333,1 +1,0.946,0.697,0.697,0,0,0.844,0.844,0.844,0,0,0,0,0,0,0,0.019,0.00568,0.0247,0.697,0.785,0.409,1,0.644,0.706,0.644,0.644,0.0859,0.0859,0.426,0.455,0,1 +0.667,0.629,0.741,0.741,0,0,0.81,0.81,0.81,0,0,0,0,0,0,0,0.0124,0,0.0124,0.58,0.649,0.573,1,0.741,0.43,0.741,0.741,0.0528,0.0528,0.382,0.409,0,1 +0.667,0.282,0.785,0.785,0,0,0.793,0.793,0.793,0,0,0,0,0,0,0,0,0.0284,0.0284,0.434,0.542,0.708,1,0.79,0.27,0.79,0.79,0.0264,0.0264,0.319,0.342,0.333,1 +1,0.394,0.763,0.763,0,0,0.776,0.776,0.776,0,0,0,0,0,0,0,0,0.00852,0.00852,0.595,0.6,0.671,1,0.839,0.117,0.839,0.839,0.0198,0.0198,0.269,0.288,0.333,1 +1,0.345,0.652,0.652,0,0,0.743,0.743,0.743,0,0,0,0,0,0,0.0355,0.0171,0,0.0526,0.521,0.55,0.405,1,0.732,0.0799,0.732,0.732,0.0198,0.0198,0.15,0.161,0.333,1 +1,0.116,0.553,0.553,0,0,0.692,0.692,0.692,0,0,0,0,0,0,0.00886,0.0148,0,0.0236,0.356,0.488,0.175,1,0.634,0.043,0.634,0.634,0.0198,0.0198,0.15,0.161,0.667,1 +1,0.0495,0.442,0.442,0,0,0.675,0.675,0.675,0,0,0,0,0,0,0,0.0183,0.00284,0.0212,0.258,0.465,0.0721,1,0.429,0.0246,0.429,0.429,0.0198,0.0198,0.15,0.161,1,1 +1,0.0495,0.409,0.409,0,0,0.658,0.658,0.658,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0351,1,0.224,0.00614,0.224,0.224,0.0198,0.0198,0.182,0.194,1,1 +1,0.0495,0.409,0.409,0,0,0.641,0.641,0.641,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0175,1,0.185,0.00614,0.185,0.185,0.0198,0.0198,0.15,0.161,1,1 +1,0.0495,0.398,0.398,0,0,0.625,0.625,0.625,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0136,1,0.146,0.0123,0.146,0.146,0.0264,0.0264,0.182,0.194,1,1 +1,0.051,0.365,0.365,0,0,0.608,0.608,0.608,0,0,0,0,0,0,0,0,0,0,0.293,0.468,0.0214,1,0.156,0.043,0.156,0.156,0.0528,0.0528,0.294,0.315,0.667,1 +0.667,0.0495,0.398,0.398,0,0,0.608,0.608,0.608,0,0,0,0,0,0,0,0.00261,0,0.00261,0.258,0.465,0.0351,1,0.176,0.0737,0.176,0.176,0.0991,0.0991,0.419,0.449,0.667,1 +0.667,0.147,0.476,0.476,0,0,0.641,0.641,0.641,0,0,0,0,0,0,0,0.0131,0.00852,0.0216,0.33,0.493,0.0565,1,0.254,0.178,0.254,0.254,0.172,0.172,0.357,0.382,0.333,1 +0.333,0.0495,0.52,0.52,0,0,0.675,0.675,0.675,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.465,0.078,1,0.322,0.283,0.322,0.322,0.291,0.291,0.15,0.161,0.333,1 +0.333,0.0495,0.376,0.376,0,0,0.692,0.692,0.692,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0955,1,0.322,0.27,0.322,0.322,0.555,0.555,0.15,0.161,0.333,1 +0.333,0.0495,0.254,0.254,0,0,0.692,0.692,0.692,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.113,1,0.312,0.252,0.312,0.312,0.799,0.799,0.119,0.127,0.333,1 +0.333,0.0495,0.265,0.265,0,0,0.675,0.675,0.675,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.465,0.127,1,0.322,0.27,0.322,0.322,0.839,0.839,0.0939,0.1,0.333,1 +0.333,0.0495,0.276,0.276,0,0,0.675,0.675,0.675,0,0,0,0,0,0,0,0.024,0,0.024,0.258,0.465,0.14,1,0.322,0.283,0.322,0.322,0.799,0.799,0.0876,0.0938,0.333,1 +0.333,0.171,0.265,0.265,0,0,0.709,0.709,0.709,0,0,0,0,0,0,0,0.0312,0,0.0312,0.26,0.532,0.148,1,0.312,0.258,0.312,0.312,0.793,0.793,0.0876,0.0938,0,1 +0.333,0.169,0.31,0.31,0,0,0.709,0.709,0.709,0,0,0,0,0,0,0,0.0438,0,0.0438,0.275,0.532,0.168,1,0.312,0.233,0.312,0.312,0.595,0.595,0.0876,0.0938,0,1 +0.333,0.173,0.343,0.343,0,0,0.709,0.709,0.709,0,0,0,0,0,0,0,0.0407,0,0.0407,0.286,0.528,0.177,1,0.312,0.301,0.312,0.312,0.495,0.495,0.15,0.161,0,1 +0.333,0.194,0.354,0.354,0,0,0.692,0.692,0.692,0,0,0,0,0,0,0,0.0143,0,0.0143,0.29,0.537,0.199,1,0.322,0.362,0.322,0.322,0.403,0.403,0.363,0.388,0,1 +0.333,0.237,0.431,0.431,0,0,0.743,0.743,0.743,0,0,0,0,0,0,0,0.0292,0.00568,0.0348,0.316,0.547,0.248,1,0.439,0.676,0.439,0.439,0.244,0.244,0.789,0.844,0,1 +1,0.804,0.586,0.586,0,0,0.81,0.81,0.81,0,0,0,0,0,0,0,0.0324,0.0114,0.0438,0.586,0.77,0.304,1,0.556,0.989,0.556,0.556,0.152,0.152,0.764,0.817,0,1 +0.667,0.647,0.697,0.697,0,0,0.844,0.844,0.844,0,0,0,0,0,0,0,0,0.00284,0.00284,0.55,0.679,0.409,1,0.644,0.706,0.644,0.644,0.0859,0.0859,0.426,0.455,0,1 +0.667,0.629,0.741,0.741,0,0.0366,0.81,0.81,0.81,0.00427,0.0175,0,0,0,0,0,0,0.00568,0.00568,0.58,0.649,0.573,1,0.741,0.43,0.741,0.741,0.0528,0.0528,0.382,0.409,0,1 +0.667,0.515,0.785,0.785,0,0,0.793,0.793,0.793,0.0235,0.0302,0,0,0,0,0,0.00528,0.017,0.0223,0.609,0.619,0.708,1,0.79,0.27,0.79,0.79,0.0264,0.0264,0.319,0.342,0,1 +0.667,0.394,0.763,0.763,0,0,0.776,0.776,0.776,0,0,0,0,0,0,0,0.0877,0,0.0877,0.595,0.6,0.671,1,0.839,0.117,0.839,0.839,0.0198,0.0198,0.269,0.288,0,1 +1,0.345,0.652,0.652,0,0,0.743,0.743,0.743,0,0,0,0,0,0,0,0.00247,0.00568,0.00814,0.521,0.55,0.405,1,0.732,0.0799,0.732,0.732,0.0198,0.0198,0.15,0.161,0.333,1 +1,0.116,0.553,0.553,0,0,0.692,0.692,0.692,0,0,0,0,0,0,0,0.0379,0.00284,0.0407,0.356,0.488,0.175,1,0.634,0.043,0.634,0.634,0.0198,0.0198,0.15,0.161,0.667,1 +1,0.0743,0.442,0.442,0,0,0.675,0.675,0.675,0,0,0,0,0,0,0,0,0.00284,0.00284,0.319,0.483,0.0858,1,0.429,0.0246,0.429,0.429,0.0198,0.0198,0.15,0.161,0.667,1 +1,0.0495,0.409,0.409,0,0,0.658,0.658,0.658,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0429,1,0.224,0.00614,0.224,0.224,0.0198,0.0198,0.182,0.194,1,1 +1,0.0495,0.409,0.409,0,0,0.641,0.641,0.641,0,0,0,0,0,0,0,0,0.00852,0.00852,0.258,0.465,0.0234,1,0.185,0.00614,0.185,0.185,0.0198,0.0198,0.15,0.161,1,1 +1,0.0495,0.398,0.398,0,0,0.625,0.625,0.625,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0156,1,0.146,0.0123,0.146,0.146,0.0264,0.0264,0.182,0.194,1,1 +1,0.0495,0.365,0.365,0,0,0.608,0.608,0.608,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0214,1,0.156,0.043,0.156,0.156,0.0528,0.0528,0.294,0.315,1,1 +1,0.0495,0.398,0.398,0,0,0.608,0.608,0.608,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0273,1,0.176,0.0737,0.176,0.176,0.0991,0.0991,0.419,0.449,1,1 +1,0.0495,0.476,0.476,0,0,0.641,0.641,0.641,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0468,1,0.254,0.178,0.254,0.254,0.172,0.172,0.357,0.382,1,1 +1,0.0495,0.52,0.52,0,0,0.675,0.675,0.675,0,0,0,0,0,0,0,0.0375,0,0.0375,0.258,0.465,0.0838,1,0.322,0.283,0.322,0.322,0.291,0.291,0.15,0.161,1,1 +1,0.318,0.376,0.376,0,0,0.692,0.692,0.692,0,0,0,0,0,0,0.0472,0.0388,0,0.0859,0.337,0.58,0.138,1,0.322,0.27,0.322,0.322,0.555,0.555,0.15,0.161,0.333,1 +0.667,0.185,0.254,0.254,0,0,0.692,0.692,0.692,0,0,0,0,0,0,0,0,0,0,0.257,0.523,0.183,1,0.312,0.252,0.312,0.312,0.799,0.799,0.119,0.127,0.333,1 +0.333,0.0495,0.265,0.265,0,0,0.675,0.675,0.675,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.218,1,0.322,0.27,0.322,0.322,0.839,0.839,0.0939,0.1,0.333,1 +1,0.3,0.276,0.276,0,0,0.675,0.675,0.675,0,0,0,0,0,0,0,0,0,0,0.27,0.59,0.24,1,0.322,0.283,0.322,0.322,0.799,0.799,0.0876,0.0938,0.333,1 +0.333,0.171,0.265,0.265,0,0,0.709,0.709,0.709,0,0,0,0,0,0,0,0,0.0142,0.0142,0.26,0.532,0.257,1,0.312,0.258,0.312,0.312,0.793,0.793,0.0876,0.0938,0,1 +0.333,0.169,0.31,0.31,0,0,0.709,0.709,0.709,0,0,0,0,0,0,0,0,0.00284,0.00284,0.275,0.532,0.304,1,0.312,0.233,0.312,0.312,0.595,0.595,0.0876,0.0938,0,1 +0.667,0.297,0.343,0.343,0,0,0.709,0.709,0.709,0,0,0,0,0,0,0,0,0.00284,0.00284,0.314,0.59,0.347,1,0.312,0.301,0.312,0.312,0.495,0.495,0.15,0.161,0,1 +0.667,0.338,0.354,0.354,0,0,0.692,0.692,0.692,0,0,0,0,0,0,0,0,0.00852,0.00852,0.322,0.609,0.382,1,0.322,0.362,0.322,0.322,0.403,0.403,0.363,0.388,0,1 +0.667,0.237,0.431,0.431,0,0,0.743,0.743,0.743,0,0,0,0,0,0,0,0,0,0,0.316,0.547,0.402,1,0.439,0.676,0.439,0.439,0.244,0.244,0.789,0.844,0.333,1 +1,0.804,0.586,0.586,0,0.0366,0.81,0.81,0.81,0,0,0,0,0,0,0,0,0.0199,0.0199,0.586,0.77,0.415,1,0.556,0.989,0.556,0.556,0.152,0.152,0.764,0.817,0,1 +1,0.946,0.697,0.697,0,0.0853,0.844,0.844,0.844,0.0082,0.0175,0,0,0,0,0,0,0.00284,0.00284,0.697,0.785,0.489,1,0.644,0.706,0.644,0.644,0.0859,0.0859,0.426,0.455,0,1 +1,0.919,0.741,0.741,0,0.0244,0.81,0.81,0.81,0.0181,0.078,0,0,0,0,0,0,0.00852,0.00852,0.741,0.741,0.643,1,0.741,0.43,0.741,0.741,0.0528,0.0528,0.382,0.409,0,1 +1,0.747,0.785,0.785,0,0,0.793,0.793,0.793,0,0,0,0,0,0,0,0,0,0,0.785,0.696,0.756,1,0.79,0.27,0.79,0.79,0.0264,0.0264,0.319,0.342,0,1 +1,0.566,0.763,0.763,0,0,0.776,0.776,0.776,0,0,0,0,0,0,0,0,0.00284,0.00284,0.763,0.667,0.698,1,0.839,0.117,0.839,0.839,0.0198,0.0198,0.269,0.288,0,1 +1,0.345,0.652,0.652,0,0,0.743,0.743,0.743,0,0,0,0,0,0,0,0,0,0,0.521,0.55,0.441,1,0.732,0.0799,0.732,0.732,0.0198,0.0198,0.15,0.161,0.333,1 +1,0.183,0.553,0.553,0,0,0.692,0.692,0.692,0,0,0,0,0,0,0,0,0.00284,0.00284,0.455,0.511,0.201,1,0.634,0.043,0.634,0.634,0.0198,0.0198,0.15,0.161,0.333,1 +1,0.0743,0.442,0.442,0,0,0.675,0.675,0.675,0,0,0,0,0,0,0,0.00242,0.0142,0.0166,0.319,0.483,0.0858,1,0.429,0.0246,0.429,0.429,0.0198,0.0198,0.15,0.161,0.667,1 +1,0.0578,0.409,0.409,0,0,0.658,0.658,0.658,0,0,0,0,0,0,0,0.0121,0.00284,0.0149,0.308,0.473,0.0429,1,0.224,0.00614,0.224,0.224,0.0198,0.0198,0.182,0.194,0.667,1 +1,0.0495,0.409,0.409,0,0,0.641,0.641,0.641,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0234,1,0.185,0.00614,0.185,0.185,0.0198,0.0198,0.15,0.161,1,1 +1,0.0495,0.398,0.398,0,0,0.625,0.625,0.625,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0156,1,0.146,0.0123,0.146,0.146,0.0264,0.0264,0.182,0.194,1,1 +1,0.0495,0.365,0.365,0,0,0.608,0.608,0.608,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0214,1,0.156,0.043,0.156,0.156,0.0528,0.0528,0.294,0.315,1,1 +1,0.0495,0.398,0.398,0,0,0.608,0.608,0.608,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.465,0.0273,1,0.176,0.0737,0.176,0.176,0.0991,0.0991,0.419,0.449,1,1 +1,0.0495,0.476,0.476,0,0,0.641,0.641,0.641,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0468,1,0.254,0.178,0.254,0.254,0.172,0.172,0.357,0.382,1,1 +0.667,0.0495,0.52,0.52,0,0,0.675,0.675,0.675,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0838,1,0.322,0.283,0.322,0.322,0.291,0.291,0.15,0.161,0.667,1 +0.667,0.0495,0.376,0.376,0,0,0.692,0.692,0.692,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.138,1,0.322,0.27,0.322,0.322,0.555,0.555,0.15,0.161,0.667,1 +0.667,0.185,0.254,0.254,0,0,0.692,0.692,0.692,0,0,0,0,0,0,0,0,0,0,0.257,0.523,0.183,1,0.312,0.252,0.312,0.312,0.799,0.799,0.119,0.127,0.333,1 +0.667,0.312,0.265,0.265,0,0,0.675,0.675,0.675,0,0,0.0354,0.00596,0,0,0,0,0,0,0.263,0.58,0.218,1,0.322,0.27,0.322,0.322,0.839,0.839,0.0939,0.1,0,1 +0.667,0.3,0.276,0.276,0,0,0.675,0.675,0.675,0,0,0.0399,0.00982,0.147,0.147,0,0,0,0,0.27,0.59,0.24,1,0.322,0.283,0.322,0.322,0.799,0.799,0.0876,0.0938,0,1 +0.667,0.292,0.265,0.265,0,0,0.709,0.709,0.709,0,0,0.0159,0,0.22,0.22,0,0,0.00284,0.00284,0.263,0.6,0.257,1,0.312,0.258,0.312,0.312,0.793,0.793,0.0876,0.0938,0,1 +0.667,0.289,0.31,0.31,0,0,0.709,0.709,0.709,0,0,0,0,0,0,0,0,0.0114,0.0114,0.292,0.6,0.304,1,0.312,0.233,0.312,0.312,0.595,0.595,0.0876,0.0938,0,1 +1,0.297,0.343,0.343,0,0,0.709,0.709,0.709,0,0,0,0,0,0,0,0,0.00284,0.00284,0.314,0.59,0.347,1,0.312,0.301,0.312,0.312,0.495,0.495,0.15,0.161,0.333,1 +1,0.338,0.354,0.354,0,0,0.692,0.692,0.692,0,0,0,0,0,0,0,0.00262,0,0.00262,0.322,0.609,0.382,1,0.322,0.362,0.322,0.322,0.403,0.403,0.363,0.388,0.333,1 +1,0.425,0.431,0.431,0,0,0.743,0.743,0.743,0,0,0,0,0,0,0,0.0291,0.00852,0.0376,0.373,0.629,0.402,1,0.439,0.676,0.439,0.439,0.244,0.244,0.789,0.844,0.333,1 +1,0.553,0.586,0.586,0,0,0.81,0.81,0.81,0,0,0,0,0,0,0,0.0246,0.00568,0.0303,0.477,0.669,0.415,1,0.556,0.989,0.556,0.556,0.152,0.152,0.764,0.817,0.333,1 +1,0.647,0.697,0.697,0,0,0.844,0.844,0.844,0,0,0,0,0,0,0,0.0103,0.00284,0.0131,0.55,0.679,0.489,1,0.644,0.706,0.644,0.644,0.0859,0.0859,0.426,0.455,0.333,1 +0.667,0.629,0.741,0.741,0,0,0.81,0.81,0.81,0,0,0,0,0,0,0,0,0.00852,0.00852,0.58,0.649,0.643,1,0.741,0.43,0.741,0.741,0.0528,0.0528,0.382,0.409,0,1 +1,0.747,0.785,0.785,0,0.0366,0.793,0.793,0.793,0,0,0,0,0,0,0,0.033,0,0.033,0.785,0.696,0.756,1,0.79,0.27,0.79,0.79,0.0264,0.0264,0.319,0.342,0,1 +1,0.566,0.763,0.763,0,0,0.776,0.776,0.776,0,0,0,0,0,0,0,0.0418,0.00284,0.0446,0.763,0.667,0.698,1,0.839,0.117,0.839,0.839,0.0198,0.0198,0.269,0.288,0,1 +1,0.493,0.652,0.652,0,0,0.743,0.743,0.743,0,0,0,0,0,0,0,0.0433,0,0.0433,0.652,0.593,0.441,1,0.732,0.0799,0.732,0.732,0.0198,0.0198,0.15,0.161,0,1 +1,0.183,0.553,0.553,0,0,0.692,0.692,0.692,0,0,0,0,0,0,0,0,0,0,0.455,0.511,0.201,1,0.634,0.043,0.634,0.634,0.0198,0.0198,0.15,0.161,0.333,1 +1,0.0743,0.442,0.442,0,0,0.675,0.675,0.675,0,0,0,0,0,0,0,0,0,0,0.319,0.483,0.0721,1,0.429,0.0246,0.429,0.429,0.0198,0.0198,0.15,0.161,0.667,1 +1,0.0495,0.409,0.409,0,0,0.658,0.658,0.658,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0351,1,0.224,0.00614,0.224,0.224,0.0198,0.0198,0.182,0.194,1,1 +1,0.0495,0.409,0.409,0,0,0.641,0.641,0.641,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0175,1,0.185,0.00614,0.185,0.185,0.0198,0.0198,0.15,0.161,1,1 +1,0.0495,0.398,0.398,0,0,0.625,0.625,0.625,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0136,1,0.146,0.0123,0.146,0.146,0.0264,0.0264,0.182,0.194,1,1 +1,0.051,0.365,0.365,0,0,0.608,0.608,0.608,0,0,0,0,0,0,0,0,0,0,0.293,0.468,0.0214,1,0.156,0.043,0.156,0.156,0.0528,0.0528,0.294,0.315,0.667,1 +1,0.0495,0.398,0.398,0,0,0.608,0.608,0.608,0,0,0,0,0,0,0,0.0252,0,0.0252,0.258,0.465,0.0351,1,0.176,0.0737,0.176,0.176,0.0991,0.0991,0.419,0.449,1,1 +1,0.147,0.476,0.476,0,0,0.641,0.641,0.641,0,0,0,0,0,0,0,0.0301,0,0.0301,0.33,0.493,0.0565,1,0.254,0.178,0.254,0.254,0.172,0.172,0.357,0.382,0.667,1 +0.667,0.177,0.52,0.52,0,0,0.675,0.675,0.675,0,0,0,0,0,0,0,0,0,0,0.345,0.518,0.078,1,0.322,0.283,0.322,0.322,0.291,0.291,0.15,0.161,0.333,1 +0.333,0.0495,0.376,0.376,0,0,0.692,0.692,0.692,0,0,0,0,0,0,0,0,0.017,0.017,0.258,0.465,0.0955,1,0.322,0.27,0.322,0.322,0.555,0.555,0.15,0.161,0.333,1 +0.333,0.185,0.254,0.254,0,0,0.692,0.692,0.692,0,0,0,0,0,0,0,0,0,0,0.257,0.523,0.113,1,0.312,0.252,0.312,0.312,0.799,0.799,0.119,0.127,0,1 +0.333,0.181,0.265,0.265,0,0,0.675,0.675,0.675,0,0,0,0,0,0,0,0,0.00568,0.00568,0.26,0.523,0.127,1,0.322,0.27,0.322,0.322,0.839,0.839,0.0939,0.1,0,1 +0.333,0.175,0.276,0.276,0,0,0.675,0.675,0.675,0,0,0,0,0,0,0,0,0,0,0.264,0.528,0.14,1,0.322,0.283,0.322,0.322,0.799,0.799,0.0876,0.0938,0,1 +0.333,0.171,0.265,0.265,0,0,0.709,0.709,0.709,0,0,0,0,0,0,0,0,0,0,0.26,0.532,0.148,1,0.312,0.258,0.312,0.312,0.793,0.793,0.0876,0.0938,0,1 +0.333,0.169,0.31,0.31,0,0,0.709,0.709,0.709,0,0,0,0,0,0,0,0,0,0,0.275,0.532,0.168,1,0.312,0.233,0.312,0.312,0.595,0.595,0.0876,0.0938,0,1 +0.667,0.173,0.343,0.343,0,0,0.709,0.709,0.709,0,0,0,0,0,0,0,0,0.0199,0.0199,0.286,0.528,0.177,1,0.312,0.301,0.312,0.312,0.495,0.495,0.15,0.161,0.333,1 +0.667,0.194,0.354,0.354,0,0.122,0.692,0.692,0.692,0,0,0,0,0,0,0,0,0.00568,0.00568,0.29,0.537,0.199,1,0.322,0.362,0.322,0.322,0.403,0.403,0.363,0.388,0.333,1 +1,0.612,0.431,0.431,0,0.0244,0.743,0.743,0.743,0,0,0,0,0,0,0,0.00268,0,0.00268,0.431,0.711,0.248,1,0.439,0.676,0.439,0.439,0.244,0.244,0.789,0.844,0,1 +1,0.804,0.586,0.586,0,0.0366,0.81,0.81,0.81,0,0,0,0,0,0,0.0874,0.0343,0.0114,0.133,0.586,0.77,0.304,1,0.556,0.989,0.556,0.556,0.152,0.152,0.764,0.817,0,1 +0.667,0.647,0.697,0.697,0,0,0.844,0.844,0.844,0,0,0,0,0,0,0,0,0.00852,0.00852,0.55,0.679,0.409,1,0.644,0.706,0.644,0.644,0.0859,0.0859,0.426,0.455,0,1 +1,0.919,0.741,0.741,0,0.0731,0.81,0.81,0.81,0,0,0,0,0,0,0,0,0.0114,0.0114,0.741,0.741,0.573,1,0.741,0.43,0.741,0.741,0.0528,0.0528,0.382,0.409,0,1 +1,0.747,0.785,0.785,0,0,0.793,0.793,0.793,0,0,0,0,0,0,0,0.00271,0.00284,0.00555,0.785,0.696,0.708,1,0.79,0.27,0.79,0.79,0.0264,0.0264,0.319,0.342,0,1 +1,0.394,0.763,0.763,0,0,0.776,0.776,0.776,0,0,0,0,0,0,0,0.0279,0.00568,0.0335,0.595,0.6,0.671,1,0.839,0.117,0.839,0.839,0.0198,0.0198,0.269,0.288,0.333,1 +1,0.345,0.652,0.652,0,0,0.743,0.743,0.743,0,0,0,0,0,0,0,0,0,0,0.521,0.55,0.405,1,0.732,0.0799,0.732,0.732,0.0198,0.0198,0.15,0.161,0.333,1 +1,0.0495,0.553,0.553,0,0,0.692,0.692,0.692,0,0,0,0,0,0,0,0,0.0114,0.0114,0.258,0.465,0.175,1,0.634,0.043,0.634,0.634,0.0198,0.0198,0.15,0.161,1,1 +1,0.0495,0.442,0.442,0,0,0.675,0.675,0.675,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0721,1,0.429,0.0246,0.429,0.429,0.0198,0.0198,0.15,0.161,1,1 +1,0.0495,0.409,0.409,0,0,0.658,0.658,0.658,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0351,1,0.224,0.00614,0.224,0.224,0.0198,0.0198,0.182,0.194,1,1 +1,0.0495,0.409,0.409,0,0,0.641,0.641,0.641,0,0,0,0,0,0,0,0,0.00568,0.00568,0.258,0.465,0.0175,1,0.185,0.00614,0.185,0.185,0.0198,0.0198,0.15,0.161,1,1 +1,0.0495,0.398,0.398,0,0,0.625,0.625,0.625,0,0,0,0,0,0,0,0,0.00568,0.00568,0.258,0.465,0.0136,1,0.146,0.0123,0.146,0.146,0.0264,0.0264,0.182,0.194,1,1 +1,0.0495,0.365,0.365,0,0,0.608,0.608,0.608,0,0,0,0,0,0,0,0.00252,0,0.00252,0.258,0.465,0.0214,1,0.156,0.043,0.156,0.156,0.0528,0.0528,0.294,0.315,1,1 +1,0.0816,0.398,0.398,0,0,0.608,0.608,0.608,0,0,0,0,0,0,0,0.02,0,0.02,0.305,0.473,0.0351,1,0.176,0.0737,0.176,0.176,0.0991,0.0991,0.419,0.449,0.667,1 +1,0.147,0.476,0.476,0,0,0.641,0.641,0.641,0,0,0,0,0,0,0,0,0,0,0.33,0.493,0.0565,1,0.254,0.178,0.254,0.254,0.172,0.172,0.357,0.382,0.667,1 +0.667,0.177,0.52,0.52,0,0,0.675,0.675,0.675,0,0,0,0,0,0,0,0,0,0,0.345,0.518,0.078,1,0.322,0.283,0.322,0.322,0.291,0.291,0.15,0.161,0.333,1 +0.333,0.184,0.376,0.376,0,0,0.692,0.692,0.692,0.0131,0.0653,0,0,0,0,0,0,0,0,0.297,0.523,0.0955,1,0.322,0.27,0.322,0.322,0.555,0.555,0.15,0.161,0,1 +0.333,0.185,0.254,0.254,0,0,0.692,0.692,0.692,0.0181,0.0302,0,0,0,0,0,0,0.00284,0.00284,0.257,0.523,0.113,1,0.312,0.252,0.312,0.312,0.799,0.799,0.119,0.127,0,1 +0.333,0.181,0.265,0.265,0,0,0.675,0.675,0.675,0.0121,0.0653,0,0,0,0,0,0,0.00852,0.00852,0.26,0.523,0.127,1,0.322,0.27,0.322,0.322,0.839,0.839,0.0939,0.1,0,1 +0.333,0.175,0.276,0.276,0,0,0.675,0.675,0.675,0,0.0302,0,0,0,0,0,0,0.00568,0.00568,0.264,0.528,0.14,1,0.322,0.283,0.322,0.322,0.799,0.799,0.0876,0.0938,0,1 +0.333,0.171,0.265,0.265,0,0,0.709,0.709,0.709,0,0,0,0,0,0,0,0,0,0,0.26,0.532,0.148,1,0.312,0.258,0.312,0.312,0.793,0.793,0.0876,0.0938,0,1 +0.333,0.169,0.31,0.31,0,0,0.709,0.709,0.709,0,0,0,0,0,0,0,0,0,0,0.275,0.532,0.168,1,0.312,0.233,0.312,0.312,0.595,0.595,0.0876,0.0938,0,1 +0.667,0.297,0.343,0.343,0,0,0.709,0.709,0.709,0,0,0,0,0,0,0,0,0.017,0.017,0.314,0.59,0.177,1,0.312,0.301,0.312,0.312,0.495,0.495,0.15,0.161,0,1 +0.333,0.194,0.354,0.354,0,0,0.692,0.692,0.692,0,0,0,0,0,0,0,0,0.00284,0.00284,0.29,0.537,0.199,1,0.322,0.362,0.322,0.322,0.403,0.403,0.363,0.388,0,1 +0.333,0.237,0.431,0.431,0,0,0.743,0.743,0.743,0,0,0,0,0,0,0,0,0,0,0.316,0.547,0.248,1,0.439,0.676,0.439,0.439,0.244,0.244,0.789,0.844,0,1 +0.333,0.301,0.586,0.586,0,0,0.81,0.81,0.81,0.0135,0.0478,0,0,0,0,0,0.0153,0.00852,0.0238,0.367,0.567,0.304,1,0.556,0.989,0.556,0.556,0.152,0.152,0.764,0.817,0,1 +0.667,0.647,0.697,0.697,0,0,0.844,0.844,0.844,0.00298,0,0,0,0,0,0,0.0404,0.00568,0.0461,0.55,0.679,0.409,1,0.644,0.706,0.644,0.644,0.0859,0.0859,0.426,0.455,0,1 +1,0.919,0.741,0.741,0,0,0.81,0.81,0.81,0,0,0,0,0,0,0,0.0422,0.00284,0.0451,0.741,0.741,0.573,1,0.741,0.43,0.741,0.741,0.0528,0.0528,0.382,0.409,0,1 +1,0.747,0.785,0.785,0,0,0.793,0.793,0.793,0,0,0,0,0,0,0,0.0343,0,0.0343,0.785,0.696,0.708,1,0.79,0.27,0.79,0.79,0.0264,0.0264,0.319,0.342,0,1 +1,0.566,0.763,0.763,0,0,0.776,0.776,0.776,0,0,0,0,0,0,0,0.0421,0.00568,0.0478,0.763,0.667,0.671,1,0.839,0.117,0.839,0.839,0.0198,0.0198,0.269,0.288,0,1 +1,0.345,0.652,0.652,0,0,0.743,0.743,0.743,0,0,0,0,0,0,0,0,0.00852,0.00852,0.521,0.55,0.405,1,0.732,0.0799,0.732,0.732,0.0198,0.0198,0.15,0.161,0.333,1 +1,0.0495,0.553,0.553,0,0,0.692,0.692,0.692,0,0,0,0,0,0,0,0,0.00568,0.00568,0.258,0.465,0.175,1,0.634,0.043,0.634,0.634,0.0198,0.0198,0.15,0.161,1,1 +1,0.0495,0.442,0.442,0,0,0.675,0.675,0.675,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0721,1,0.429,0.0246,0.429,0.429,0.0198,0.0198,0.15,0.161,1,1 +1,0.0495,0.409,0.409,0,0,0.658,0.658,0.658,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0351,1,0.224,0.00614,0.224,0.224,0.0198,0.0198,0.182,0.194,1,1 +1,0.0495,0.409,0.409,0,0,0.641,0.641,0.641,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.465,0.0175,1,0.185,0.00614,0.185,0.185,0.0198,0.0198,0.15,0.161,1,1 +1,0.0495,0.398,0.398,0,0,0.625,0.625,0.625,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0136,1,0.146,0.0123,0.146,0.146,0.0264,0.0264,0.182,0.194,1,1 +1,0.051,0.365,0.365,0,0,0.608,0.608,0.608,0,0,0,0,0,0,0,0,0,0,0.293,0.468,0.0214,1,0.156,0.043,0.156,0.156,0.0528,0.0528,0.294,0.315,0.667,1 +1,0.0816,0.398,0.398,0,0,0.608,0.608,0.608,0,0,0,0,0,0,0,0.00536,0,0.00536,0.305,0.473,0.0351,1,0.176,0.0737,0.176,0.176,0.0991,0.0991,0.419,0.449,0.667,1 +1,0.342,0.476,0.476,0,0,0.641,0.641,0.641,0,0,0.0179,0.000702,0,0,0,0.0967,0,0.0967,0.476,0.548,0.0565,1,0.254,0.178,0.254,0.254,0.172,0.172,0.357,0.382,0,1 +1,0.433,0.52,0.52,0,0,0.675,0.675,0.675,0,0,0.0371,0.0203,0,0,0,0.0178,0,0.0178,0.52,0.622,0.078,1,0.322,0.283,0.322,0.322,0.291,0.291,0.15,0.161,0,1 +0.333,0.184,0.376,0.376,0,0,0.692,0.692,0.692,0,0,0.0259,0,0.33,0.33,0,0,0.00284,0.00284,0.297,0.523,0.0955,1,0.322,0.27,0.322,0.322,0.555,0.555,0.15,0.161,0,1 +0.333,0.185,0.254,0.254,0,0,0.692,0.692,0.692,0,0,0.0449,0,0.0367,0.0367,0,0,0.0142,0.0142,0.257,0.523,0.113,1,0.312,0.252,0.312,0.312,0.799,0.799,0.119,0.127,0,1 +0.333,0.181,0.265,0.265,0,0,0.675,0.675,0.675,0,0,0.0218,0,0,0,0,0,0.00284,0.00284,0.26,0.523,0.127,1,0.322,0.27,0.322,0.322,0.839,0.839,0.0939,0.1,0,1 +0.333,0.175,0.276,0.276,0,0,0.675,0.675,0.675,0,0,0.0109,0,0,0,0,0,0.0142,0.0142,0.264,0.528,0.14,1,0.322,0.283,0.322,0.322,0.799,0.799,0.0876,0.0938,0,1 +0.333,0.171,0.265,0.265,0,0,0.709,0.709,0.709,0,0,0,0,0,0,0,0,0.00568,0.00568,0.26,0.532,0.148,1,0.312,0.258,0.312,0.312,0.793,0.793,0.0876,0.0938,0,1 +0.333,0.169,0.31,0.31,0,0,0.709,0.709,0.709,0,0,0,0,0,0,0,0,0.0114,0.0114,0.275,0.532,0.168,1,0.312,0.233,0.312,0.312,0.595,0.595,0.0876,0.0938,0,1 +0.333,0.173,0.343,0.343,0,0,0.709,0.709,0.709,0,0,0,0,0,0,0,0,0,0,0.286,0.528,0.177,1,0.312,0.301,0.312,0.312,0.495,0.495,0.15,0.161,0,1 +0.333,0.194,0.354,0.354,0,0,0.692,0.692,0.692,0,0,0,0,0,0,0,0,0.00568,0.00568,0.29,0.537,0.199,1,0.322,0.362,0.322,0.322,0.403,0.403,0.363,0.388,0,1 +0.333,0.237,0.431,0.431,0.0288,0,0.743,0.743,0.743,0.00753,0.0175,0,0,0,0,0,0,0,0,0.316,0.547,0.248,1,0.439,0.676,0.439,0.439,0.244,0.244,0.789,0.844,0,1 +0.667,0.553,0.586,0.586,0.346,0.0366,0.81,0.81,0.81,0.0196,0.0955,0,0,0,0,0,0,0.0142,0.0142,0.477,0.669,0.304,1,0.556,0.989,0.556,0.556,0.152,0.152,0.764,0.817,0,1 +0.667,0.647,0.697,0.697,0.593,0,0.844,0.844,0.844,0,0.0302,0,0,0,0,0,0.00265,0.00568,0.00832,0.55,0.679,0.409,1,0.644,0.706,0.644,0.644,0.0859,0.0859,0.426,0.455,0,1 +0.667,0.629,0.741,0.741,0.683,0,0.81,0.81,0.81,0.00337,0.0175,0,0,0,0,0,0.0291,0.0114,0.0405,0.58,0.649,0.573,1,0.741,0.43,0.741,0.741,0.0528,0.0528,0.382,0.409,0,1 +1,0.747,0.785,0.785,1,0,0.793,0.793,0.793,0.0144,0.0302,0,0,0,0,0,0,0.00852,0.00852,0.785,0.696,0.708,1,0.79,0.27,0.79,0.79,0.0264,0.0264,0.319,0.342,0,1 +1,0.566,0.763,0.763,0.679,0,0.776,0.776,0.776,0.011,0,0,0,0,0,0,0,0.0114,0.0114,0.763,0.667,0.671,1,0.839,0.117,0.839,0.839,0.0198,0.0198,0.269,0.288,0,1 +1,0.197,0.652,0.652,0.132,0,0.743,0.743,0.743,0,0,0,0,0,0,0,0,0.00284,0.00284,0.389,0.508,0.405,1,0.732,0.0799,0.732,0.732,0.0198,0.0198,0.15,0.161,0.667,1 +1,0.0495,0.553,0.553,0.0658,0,0.692,0.692,0.692,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.175,1,0.634,0.043,0.634,0.634,0.0198,0.0198,0.15,0.161,1,1 +1,0.0495,0.442,0.442,0,0,0.675,0.675,0.675,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0721,1,0.429,0.0246,0.429,0.429,0.0198,0.0198,0.15,0.161,1,1 +1,0.0495,0.409,0.409,0,0,0.658,0.658,0.658,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0351,1,0.224,0.00614,0.224,0.224,0.0198,0.0198,0.182,0.194,1,1 +1,0.0495,0.409,0.409,0,0,0.641,0.641,0.641,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0175,1,0.185,0.00614,0.185,0.185,0.0198,0.0198,0.15,0.161,1,1 +1,0.0495,0.398,0.398,0,0,0.625,0.625,0.625,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0136,1,0.146,0.0123,0.146,0.146,0.0264,0.0264,0.182,0.194,1,1 +0.667,0.0495,0.365,0.365,0,0,0.608,0.608,0.608,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0214,1,0.156,0.043,0.156,0.156,0.0528,0.0528,0.294,0.315,0.667,1 +0.667,0.0816,0.398,0.398,0,0,0.608,0.608,0.608,0,0,0,0,0,0,0,0,0,0,0.305,0.473,0.0351,1,0.176,0.0737,0.176,0.176,0.0991,0.0991,0.419,0.449,0.333,1 +0.333,0.0495,0.476,0.476,0,0,0.641,0.641,0.641,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0565,1,0.254,0.178,0.254,0.254,0.172,0.172,0.357,0.382,0.333,1 +0.333,0.0495,0.52,0.52,0,0,0.675,0.675,0.675,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.078,1,0.322,0.283,0.322,0.322,0.291,0.291,0.15,0.161,0.333,1 +0.333,0.0495,0.376,0.376,0,0,0.692,0.692,0.692,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0955,1,0.322,0.27,0.322,0.322,0.555,0.555,0.15,0.161,0.333,1 +0.333,0.185,0.254,0.254,0,0,0.692,0.692,0.692,0,0,0,0,0,0,0,0,0.00284,0.00284,0.257,0.523,0.113,1,0.312,0.252,0.312,0.312,0.799,0.799,0.119,0.127,0,1 +0.333,0.181,0.265,0.265,0,0,0.675,0.675,0.675,0,0,0,0,0,0,0,0,0,0,0.26,0.523,0.127,1,0.322,0.27,0.322,0.322,0.839,0.839,0.0939,0.1,0,1 +0.333,0.175,0.276,0.276,0,0.0366,0.675,0.675,0.675,0,0,0,0,0,0,0,0,0,0,0.264,0.528,0.14,1,0.322,0.283,0.322,0.322,0.799,0.799,0.0876,0.0938,0,1 +0.333,0.171,0.265,0.265,0,0,0.709,0.709,0.709,0,0,0,0,0,0,0,0,0,0,0.26,0.532,0.148,1,0.312,0.258,0.312,0.312,0.793,0.793,0.0876,0.0938,0,1 +0.333,0.169,0.31,0.31,0,0,0.709,0.709,0.709,0,0,0,0,0,0,0,0,0.00852,0.00852,0.275,0.532,0.168,1,0.312,0.233,0.312,0.312,0.595,0.595,0.0876,0.0938,0,1 +0.333,0.173,0.343,0.343,0,0,0.709,0.709,0.709,0,0,0,0,0,0,0,0,0.00284,0.00284,0.286,0.528,0.177,1,0.312,0.301,0.312,0.312,0.495,0.495,0.15,0.161,0,1 +0,0.0495,0.354,0.354,0,0,0.692,0.692,0.692,0,0,0,0,0,0,0,0,0.0114,0.0114,0.258,0.465,0.199,1,0.322,0.362,0.322,0.322,0.403,0.403,0.363,0.388,0,1 +0.333,0.237,0.431,0.431,0.0288,0,0.743,0.743,0.743,0,0,0,0,0,0,0,0,0.00568,0.00568,0.316,0.547,0.248,1,0.439,0.676,0.439,0.439,0.244,0.244,0.789,0.844,0,1 +0.667,0.553,0.586,0.586,0.346,0.0122,0.81,0.81,0.81,0,0,0,0,0,0,0,0,0.00852,0.00852,0.477,0.669,0.304,1,0.556,0.989,0.556,0.556,0.152,0.152,0.764,0.817,0,1 +1,0.946,0.697,0.697,0.593,0.0244,0.844,0.844,0.844,0,0,0,0,0,0,0,0,0.0114,0.0114,0.697,0.785,0.409,1,0.644,0.706,0.644,0.644,0.0859,0.0859,0.426,0.455,0,1 +1,0.919,0.741,0.741,0.683,0,0.81,0.81,0.81,0.00601,0.0175,0,0,0,0,0,0,0,0,0.741,0.741,0.573,1,0.741,0.43,0.741,0.741,0.0528,0.0528,0.382,0.409,0,1 +1,0.747,0.785,0.785,1,0,0.793,0.793,0.793,0.0206,0.0302,0,0,0,0,0,0,0.00852,0.00852,0.785,0.696,0.708,1,0.79,0.27,0.79,0.79,0.0264,0.0264,0.319,0.342,0,1 +1,0.566,0.763,0.763,0.679,0,0.776,0.776,0.776,0.0103,0,0,0,0,0,0,0.0218,0,0.0218,0.763,0.667,0.671,1,0.839,0.117,0.839,0.839,0.0198,0.0198,0.269,0.288,0,1 +1,0.345,0.652,0.652,0.132,0,0.743,0.743,0.743,0,0,0,0,0,0,0,0.0126,0.0114,0.024,0.521,0.55,0.405,1,0.732,0.0799,0.732,0.732,0.0198,0.0198,0.15,0.161,0.333,1 +1,0.183,0.553,0.553,0.0658,0,0.692,0.692,0.692,0,0,0,0,0,0,0,0,0.0114,0.0114,0.455,0.511,0.175,1,0.634,0.043,0.634,0.634,0.0198,0.0198,0.15,0.161,0.333,1 +1,0.0743,0.442,0.442,0,0,0.675,0.675,0.675,0,0,0,0,0,0,0,0,0,0,0.319,0.483,0.0721,1,0.429,0.0246,0.429,0.429,0.0198,0.0198,0.15,0.161,0.667,1 +1,0.0495,0.409,0.409,0,0,0.658,0.658,0.658,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0351,1,0.224,0.00614,0.224,0.224,0.0198,0.0198,0.182,0.194,1,1 +1,0.0495,0.409,0.409,0,0,0.641,0.641,0.641,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0175,1,0.185,0.00614,0.185,0.185,0.0198,0.0198,0.15,0.161,1,1 +1,0.0495,0.398,0.398,0,0,0.625,0.625,0.625,0,0,0,0,0,0,0,0,0.00568,0.00568,0.258,0.465,0.0136,1,0.146,0.0123,0.146,0.146,0.0264,0.0264,0.182,0.194,1,1 +1,0.0495,0.365,0.365,0,0,0.608,0.608,0.608,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0214,1,0.156,0.043,0.156,0.156,0.0528,0.0528,0.294,0.315,1,1 +1,0.0495,0.398,0.398,0,0,0.608,0.608,0.608,0,0,0,0,0,0,0,0.0133,0,0.0133,0.258,0.465,0.0351,1,0.176,0.0737,0.176,0.176,0.0991,0.0991,0.419,0.449,1,1 +0.667,0.147,0.476,0.476,0,0,0.641,0.641,0.641,0,0,0,0,0,0,0,0.0358,0,0.0358,0.33,0.493,0.0565,1,0.254,0.178,0.254,0.254,0.172,0.172,0.357,0.382,0.333,1 +0.667,0.305,0.52,0.52,0,0,0.675,0.675,0.675,0,0,0,0,0,0,0,0.0124,0,0.0124,0.432,0.57,0.078,1,0.322,0.283,0.322,0.322,0.291,0.291,0.15,0.161,0,1 +0.667,0.318,0.376,0.376,0,0,0.692,0.692,0.692,0,0,0,0,0,0,0,0,0,0,0.337,0.58,0.0955,1,0.322,0.27,0.322,0.322,0.555,0.555,0.15,0.161,0,1 +0.333,0.185,0.254,0.254,0,0,0.692,0.692,0.692,0,0,0,0,0,0,0,0,0,0,0.257,0.523,0.113,1,0.312,0.252,0.312,0.312,0.799,0.799,0.119,0.127,0,1 +0.333,0.181,0.265,0.265,0,0,0.675,0.675,0.675,0,0,0,0,0,0,0,0,0.0199,0.0199,0.26,0.523,0.127,1,0.322,0.27,0.322,0.322,0.839,0.839,0.0939,0.1,0,1 +0.333,0.175,0.276,0.276,0,0,0.675,0.675,0.675,0.018,0.0239,0,0,0,0,0,0.0173,0,0.0173,0.264,0.528,0.14,1,0.322,0.283,0.322,0.322,0.799,0.799,0.0876,0.0938,0,1 +0,0.0495,0.265,0.265,0,0,0.709,0.709,0.709,0,0,0,0,0,0,0,0.0143,0.00852,0.0229,0.258,0.465,0.148,1,0.312,0.258,0.312,0.312,0.793,0.793,0.0876,0.0938,0,1 +0,0.0495,0.31,0.31,0,0,0.709,0.709,0.709,0,0,0,0,0,0,0,0,0.0114,0.0114,0.258,0.465,0.168,1,0.312,0.233,0.312,0.312,0.595,0.595,0.0876,0.0938,0,1 +0,0.0495,0.343,0.343,0,0,0.709,0.709,0.709,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.177,1,0.312,0.301,0.312,0.312,0.495,0.495,0.15,0.161,0,1 +0.667,0.338,0.354,0.354,0,0,0.692,0.692,0.692,0,0,0,0,0,0,0,0,0.00568,0.00568,0.322,0.609,0.199,1,0.322,0.362,0.322,0.322,0.403,0.403,0.363,0.388,0,1 +0.667,0.425,0.431,0.431,0.0288,0,0.743,0.743,0.743,0,0,0,0,0,0,0,0,0,0,0.373,0.629,0.248,1,0.439,0.676,0.439,0.439,0.244,0.244,0.789,0.844,0,1 +1,0.804,0.586,0.586,0.346,0.0731,0.81,0.81,0.81,0,0,0,0,0,0,0,0,0,0,0.586,0.77,0.304,1,0.556,0.989,0.556,0.556,0.152,0.152,0.764,0.817,0,1 +1,0.946,0.697,0.697,0.593,0,0.844,0.844,0.844,0,0,0,0,0,0,0,0,0.00284,0.00284,0.697,0.785,0.409,1,0.644,0.706,0.644,0.644,0.0859,0.0859,0.426,0.455,0,1 +1,0.919,0.741,0.741,0.683,0,0.81,0.81,0.81,0,0,0,0,0,0,0,0,0.00852,0.00852,0.741,0.741,0.573,1,0.741,0.43,0.741,0.741,0.0528,0.0528,0.382,0.409,0,1 +0.667,0.515,0.785,0.785,1,0,0.793,0.793,0.793,0,0,0,0,0,0,0,0,0.00852,0.00852,0.609,0.619,0.708,1,0.79,0.27,0.79,0.79,0.0264,0.0264,0.319,0.342,0,1 +1,0.566,0.763,0.763,0.679,0,0.776,0.776,0.776,0,0,0,0,0,0,0,0.0177,0.00852,0.0263,0.763,0.667,0.671,1,0.839,0.117,0.839,0.839,0.0198,0.0198,0.269,0.288,0,1 +1,0.345,0.652,0.652,0.132,0,0.743,0.743,0.743,0,0,0,0,0,0,0,0.0174,0,0.0174,0.521,0.55,0.405,1,0.732,0.0799,0.732,0.732,0.0198,0.0198,0.15,0.161,0.333,1 +1,0.116,0.553,0.553,0.0658,0,0.692,0.692,0.692,0,0,0,0,0,0,0,0,0.00284,0.00284,0.356,0.488,0.175,1,0.634,0.043,0.634,0.634,0.0198,0.0198,0.15,0.161,0.667,1 +1,0.0495,0.559,0.559,0,0,0.611,0.611,0.611,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.113,1,0.509,0.0248,0.509,0.509,0.0235,0.0235,0.151,0.145,1,1 +1,0.0495,0.517,0.517,0,0,0.596,0.596,0.596,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0567,1,0.266,0.00621,0.266,0.266,0.0235,0.0235,0.183,0.176,1,1 +1,0.0495,0.517,0.517,0,0,0.58,0.58,0.58,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0309,1,0.22,0.00621,0.22,0.22,0.0235,0.0235,0.151,0.145,1,1 +1,0.0495,0.503,0.503,0,0,0.565,0.565,0.565,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0206,1,0.173,0.0124,0.173,0.173,0.0313,0.0313,0.183,0.176,1,1 +1,0.0495,0.461,0.461,0,0,0.55,0.55,0.55,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0284,1,0.185,0.0435,0.185,0.185,0.0626,0.0626,0.296,0.285,1,1 +1,0.0495,0.503,0.503,0,0,0.55,0.55,0.55,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0361,1,0.208,0.0745,0.208,0.208,0.117,0.117,0.422,0.406,1,1 +1,0.0495,0.601,0.601,0,0,0.58,0.58,0.58,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0619,1,0.301,0.18,0.301,0.301,0.203,0.203,0.359,0.345,1,1 +1,0.181,0.657,0.657,0,0,0.611,0.611,0.611,0,0,0,0,0,0,0,0.00268,0,0.00268,0.391,0.572,0.111,1,0.381,0.286,0.381,0.381,0.344,0.344,0.151,0.145,0.667,1 +1,0.33,0.475,0.475,0,0,0.626,0.626,0.626,0,0,0,0,0,0,0,0.0217,0,0.0217,0.403,0.692,0.183,1,0.381,0.273,0.381,0.381,0.657,0.657,0.151,0.145,0.333,1 +1,0.337,0.322,0.322,0,0,0.626,0.626,0.626,0,0,0,0,0,0,0,0.0211,0,0.0211,0.3,0.692,0.242,1,0.37,0.255,0.37,0.37,0.947,0.947,0.12,0.115,0.333,1 +1,0.468,0.336,0.336,0,0,0.611,0.611,0.611,0,0,0,0,0,0,0,0.00956,0,0.00956,0.336,0.806,0.289,1,0.381,0.273,0.381,0.381,0.994,0.994,0.0945,0.0909,0,1 +0.333,0.183,0.35,0.35,0,0.0122,0.611,0.611,0.611,0,0,0,0,0,0,0,0,0.00284,0.00284,0.288,0.585,0.317,1,0.381,0.286,0.381,0.381,0.947,0.947,0.0882,0.0849,0,1 +0.333,0.178,0.336,0.336,0,0.0609,0.641,0.641,0.641,0,0,0,0,0,0,0,0,0,0,0.284,0.591,0.34,1,0.37,0.261,0.37,0.37,0.939,0.939,0.0882,0.0849,0,1 +0.333,0.177,0.392,0.392,0,0,0.641,0.641,0.641,0,0,0,0,0,0,0,0,0.0142,0.0142,0.302,0.591,0.402,1,0.37,0.236,0.37,0.37,0.704,0.704,0.0882,0.0849,0,1 +0.333,0.182,0.433,0.433,0,0,0.641,0.641,0.641,0,0,0,0,0,0,0,0,0.00284,0.00284,0.316,0.585,0.459,1,0.37,0.304,0.37,0.37,0.587,0.587,0.151,0.145,0,1 +0.333,0.204,0.447,0.447,0,0,0.626,0.626,0.626,0,0,0,0,0,0,0,0,0.017,0.017,0.321,0.597,0.505,1,0.381,0.366,0.381,0.381,0.477,0.477,0.365,0.352,0,1 +0.333,0.253,0.545,0.545,0.0288,0,0.672,0.672,0.672,0,0,0,0,0,0,0,0,0,0,0.354,0.61,0.531,1,0.52,0.683,0.52,0.52,0.29,0.29,0.794,0.764,0,1 +1,0.869,0.741,0.741,0.346,0,0.733,0.733,0.733,0,0,0,0,0,0,0,0,0,0,0.741,0.974,0.549,1,0.659,1,0.659,0.659,0.18,0.18,0.769,0.739,0,1 +1,1,0.881,0.881,0.593,0,0.764,0.764,0.764,0,0,0,0,0,0,0,0,0.00284,0.00284,0.881,0.993,0.647,1,0.763,0.714,0.763,0.763,0.102,0.102,0.428,0.412,0,1 +1,0.933,0.937,0.937,0.683,0,0.733,0.733,0.733,0,0,0,0,0,0,0,0,0.00568,0.00568,0.937,0.937,0.851,1,0.878,0.435,0.878,0.878,0.0626,0.0626,0.384,0.37,0,1 +1,0.504,0.993,0.993,1,0,0.718,0.718,0.718,0,0,0,0,0,0,0,0,0.0114,0.0114,0.748,0.742,1,1,0.936,0.273,0.936,0.936,0.0313,0.0313,0.321,0.309,0.333,1 +1,0.386,0.965,0.965,0.679,0,0.703,0.703,0.703,0,0,0,0,0,0,0,0,0.0142,0.0142,0.729,0.717,0.923,1,0.994,0.118,0.994,0.994,0.0235,0.0235,0.271,0.261,0.333,1 +1,0.342,0.825,0.825,0.132,0,0.672,0.672,0.672,0,0,0,0,0,0,0,0,0.00284,0.00284,0.636,0.655,0.582,1,0.867,0.0807,0.867,0.867,0.0235,0.0235,0.151,0.145,0.333,1 +1,0.183,0.699,0.699,0.0658,0,0.626,0.626,0.626,0,0,0,0,0,0,0,0,0.00568,0.00568,0.552,0.605,0.265,1,0.751,0.0435,0.751,0.751,0.0235,0.0235,0.151,0.145,0.333,1 +1,0.099,0.559,0.559,0,0,0.611,0.611,0.611,0,0,0,0,0,0,0,0,0,0,0.459,0.592,0.113,1,0.509,0.0248,0.509,0.509,0.0235,0.0235,0.151,0.145,0.333,1 +1,0.066,0.517,0.517,0,0,0.596,0.596,0.596,0,0,0,0,0,0,0,0,0,0,0.431,0.567,0.0567,1,0.266,0.00621,0.266,0.266,0.0235,0.0235,0.183,0.176,0.333,1 +1,0.0495,0.517,0.517,0,0,0.58,0.58,0.58,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0309,1,0.22,0.00621,0.22,0.22,0.0235,0.0235,0.151,0.145,1,1 +1,0.0495,0.503,0.503,0,0,0.565,0.565,0.565,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.465,0.0206,1,0.173,0.0124,0.173,0.173,0.0313,0.0313,0.183,0.176,1,1 +1,0.0495,0.461,0.461,0,0,0.55,0.55,0.55,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0284,1,0.185,0.0435,0.185,0.185,0.0626,0.0626,0.296,0.285,1,1 +1,0.0495,0.503,0.503,0,0,0.55,0.55,0.55,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0361,1,0.208,0.0745,0.208,0.208,0.117,0.117,0.422,0.406,1,1 +1,0.0495,0.601,0.601,0,0,0.58,0.58,0.58,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0619,1,0.301,0.18,0.301,0.301,0.203,0.203,0.359,0.345,1,1 +1,0.0495,0.657,0.657,0,0,0.611,0.611,0.611,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.111,1,0.381,0.286,0.381,0.381,0.344,0.344,0.151,0.145,1,1 +1,0.19,0.475,0.475,0,0,0.626,0.626,0.626,0,0,0,0,0,0,0,0,0,0,0.33,0.579,0.183,1,0.381,0.273,0.381,0.381,0.657,0.657,0.151,0.145,0.667,1 +1,0.337,0.322,0.322,0,0,0.626,0.626,0.626,0,0,0,0,0,0,0,0,0,0,0.3,0.692,0.242,1,0.37,0.255,0.37,0.37,0.947,0.947,0.12,0.115,0.333,1 +1,0.328,0.336,0.336,0,0,0.611,0.611,0.611,0,0,0,0,0,0,0,0,0,0,0.31,0.692,0.289,1,0.381,0.273,0.381,0.381,0.994,0.994,0.0945,0.0909,0.333,1 +1,0.316,0.35,0.35,0,0,0.611,0.611,0.611,0,0,0,0,0,0,0,0,0,0,0.319,0.705,0.317,1,0.381,0.286,0.381,0.381,0.947,0.947,0.0882,0.0849,0.333,1 +0.667,0.307,0.336,0.336,0,0,0.641,0.641,0.641,0,0,0,0,0,0,0,0,0.0114,0.0114,0.31,0.717,0.34,1,0.37,0.261,0.37,0.37,0.939,0.939,0.0882,0.0849,0,1 +0.667,0.305,0.392,0.392,0,0,0.641,0.641,0.641,0,0,0,0,0,0,0,0.00274,0.00284,0.00558,0.347,0.717,0.402,1,0.37,0.236,0.37,0.37,0.704,0.704,0.0882,0.0849,0,1 +0.667,0.314,0.433,0.433,0,0,0.641,0.641,0.641,0,0,0,0,0,0,0,0.0488,0,0.0488,0.375,0.705,0.459,1,0.37,0.304,0.37,0.37,0.587,0.587,0.151,0.145,0,1 +0.667,0.359,0.447,0.447,0,0,0.626,0.626,0.626,0,0,0,0,0,0,0,0.0666,0,0.0666,0.384,0.73,0.505,1,0.381,0.366,0.381,0.381,0.477,0.477,0.365,0.352,0,1 +1,0.661,0.545,0.545,0.0288,0,0.672,0.672,0.672,0,0,0,0,0,0,0,0.0154,0.00284,0.0182,0.545,0.899,0.531,1,0.52,0.683,0.52,0.52,0.29,0.29,0.794,0.764,0,1 +1,0.596,0.741,0.741,0.346,0,0.733,0.733,0.733,0,0,0,0,0,0,0,0.0144,0.0114,0.0258,0.58,0.805,0.549,1,0.659,1,0.659,0.659,0.18,0.18,0.769,0.739,0.333,1 +1,0.683,0.881,0.881,0.593,0,0.764,0.764,0.764,0,0,0,0,0,0,0,0.0251,0.0227,0.0478,0.673,0.817,0.647,1,0.763,0.714,0.763,0.763,0.102,0.102,0.428,0.412,0.333,1 +1,0.638,0.937,0.937,0.683,0,0.733,0.733,0.733,0,0,0,0,0,0,0,0,0.00284,0.00284,0.711,0.78,0.851,1,0.878,0.435,0.878,0.878,0.0626,0.0626,0.384,0.37,0.333,1 +1,0.504,0.993,0.993,1,0,0.718,0.718,0.718,0,0,0,0,0,0,0,0,0,0,0.748,0.742,1,1,0.936,0.273,0.936,0.936,0.0313,0.0313,0.321,0.309,0.333,1 +1,0.554,0.965,0.965,0.679,0,0.703,0.703,0.703,0,0,0,0,0,0,0,0,0,0,0.965,0.843,0.923,1,0.994,0.118,0.994,0.994,0.0235,0.0235,0.271,0.261,0,1 +1,0.342,0.825,0.825,0.132,0,0.672,0.672,0.672,0,0,0,0,0,0,0,0,0.00852,0.00852,0.636,0.655,0.582,1,0.867,0.0807,0.867,0.867,0.0235,0.0235,0.151,0.145,0.333,1 +1,0.183,0.699,0.699,0.0658,0.0731,0.626,0.626,0.626,0,0,0,0,0,0,0,0,0.00568,0.00568,0.552,0.605,0.265,1,0.751,0.0435,0.751,0.751,0.0235,0.0235,0.151,0.145,0.333,1 +1,0.0495,0.559,0.559,0,0,0.611,0.611,0.611,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.465,0.0954,1,0.509,0.0248,0.509,0.509,0.0235,0.0235,0.151,0.145,1,1 +1,0.0495,0.517,0.517,0,0,0.596,0.596,0.596,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0464,1,0.266,0.00621,0.266,0.266,0.0235,0.0235,0.183,0.176,1,1 +1,0.0495,0.517,0.517,0,0,0.58,0.58,0.58,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0232,1,0.22,0.00621,0.22,0.22,0.0235,0.0235,0.151,0.145,1,1 +1,0.0495,0.503,0.503,0,0,0.565,0.565,0.565,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.018,1,0.173,0.0124,0.173,0.173,0.0313,0.0313,0.183,0.176,1,1 +1,0.0495,0.461,0.461,0,0,0.55,0.55,0.55,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0284,1,0.185,0.0435,0.185,0.185,0.0626,0.0626,0.296,0.285,1,1 +1,0.0495,0.503,0.503,0,0,0.55,0.55,0.55,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0464,1,0.208,0.0745,0.208,0.208,0.117,0.117,0.422,0.406,1,1 +1,0.0495,0.601,0.601,0,0,0.58,0.58,0.58,0,0,0,0,0,0,0.0357,0.0134,0,0.0491,0.258,0.465,0.0747,1,0.301,0.18,0.301,0.301,0.203,0.203,0.359,0.345,1,1 +1,0.313,0.657,0.657,0,0,0.611,0.611,0.611,0,0,0,0,0,0,0.0268,0.0401,0,0.0668,0.524,0.68,0.103,1,0.381,0.286,0.381,0.381,0.344,0.344,0.151,0.145,0.333,1 +0.333,0.0495,0.475,0.475,0,0,0.626,0.626,0.626,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.126,1,0.381,0.273,0.381,0.381,0.657,0.657,0.151,0.145,0.333,1 +0.333,0.0495,0.322,0.322,0,0,0.626,0.626,0.626,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.149,1,0.37,0.255,0.37,0.37,0.947,0.947,0.12,0.115,0.333,1 +0.333,0.0495,0.336,0.336,0,0,0.611,0.611,0.611,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.465,0.168,1,0.381,0.273,0.381,0.381,0.994,0.994,0.0945,0.0909,0.333,1 +0.333,0.0495,0.35,0.35,0,0,0.611,0.611,0.611,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.186,1,0.381,0.286,0.381,0.381,0.947,0.947,0.0882,0.0849,0.333,1 +0.333,0.0495,0.336,0.336,0,0,0.641,0.641,0.641,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.196,1,0.37,0.261,0.37,0.37,0.939,0.939,0.0882,0.0849,0.333,1 +0,0.0495,0.392,0.392,0,0,0.641,0.641,0.641,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.222,1,0.37,0.236,0.37,0.37,0.704,0.704,0.0882,0.0849,0,1 +0,0.0495,0.433,0.433,0,0,0.641,0.641,0.641,0,0,0,0,0,0,0,0.0228,0,0.0228,0.258,0.465,0.235,1,0.37,0.304,0.37,0.37,0.587,0.587,0.151,0.145,0,1 +0.333,0.204,0.447,0.447,0,0,0.626,0.626,0.626,0,0,0,0,0,0,0,0,0,0,0.321,0.597,0.263,1,0.381,0.366,0.381,0.381,0.477,0.477,0.365,0.352,0,1 +0.667,0.457,0.545,0.545,0.0288,0,0.672,0.672,0.672,0,0,0,0,0,0,0,0,0,0,0.449,0.755,0.327,1,0.52,0.683,0.52,0.52,0.29,0.29,0.794,0.764,0,1 +0.333,0.323,0.741,0.741,0.346,0.0487,0.733,0.733,0.733,0,0,0,0,0,0,0,0.00943,0,0.00943,0.419,0.635,0.402,1,0.659,1,0.659,0.659,0.18,0.18,0.769,0.739,0,1 +1,1,0.881,0.881,0.593,0.0609,0.764,0.764,0.764,0,0,0,0,0,0,0,0.0222,0.00568,0.0279,0.881,0.993,0.541,1,0.763,0.714,0.763,0.763,0.102,0.102,0.428,0.412,0,1 +1,0.933,0.937,0.937,0.683,0,0.733,0.733,0.733,0,0,0,0,0,0,0,0.0129,0.0142,0.0271,0.937,0.937,0.758,1,0.878,0.435,0.878,0.878,0.0626,0.0626,0.384,0.37,0,1 +0.667,0.504,0.993,0.993,1,0,0.718,0.718,0.718,0,0,0,0,0,0,0,0,0.00568,0.00568,0.748,0.742,0.936,1,0.936,0.273,0.936,0.936,0.0313,0.0313,0.321,0.309,0,1 +0.667,0.386,0.965,0.965,0.679,0.0122,0.703,0.703,0.703,0,0,0,0,0,0,0,0,0.0114,0.0114,0.729,0.717,0.887,1,0.994,0.118,0.994,0.994,0.0235,0.0235,0.271,0.261,0,1 +1,0.196,0.825,0.825,0.132,0.0244,0.672,0.672,0.672,0,0,0,0,0,0,0,0,0.0199,0.0199,0.447,0.56,0.536,1,0.867,0.0807,0.867,0.867,0.0235,0.0235,0.151,0.145,0.667,1 +1,0.116,0.699,0.699,0.0658,0,0.626,0.626,0.626,0.0203,0.0891,0,0,0,0,0,0,0.0227,0.0227,0.405,0.535,0.232,1,0.751,0.0435,0.751,0.751,0.0235,0.0235,0.151,0.145,0.667,1 +1,0.0743,0.559,0.559,0,0,0.611,0.611,0.611,0.0234,0.00637,0,0,0,0,0,0,0.00284,0.00284,0.358,0.529,0.0954,1,0.509,0.0248,0.509,0.509,0.0235,0.0235,0.151,0.145,0.667,1 +1,0.0495,0.517,0.517,0,0,0.596,0.596,0.596,0.022,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0464,1,0.266,0.00621,0.266,0.266,0.0235,0.0235,0.183,0.176,1,1 +1,0.0495,0.517,0.517,0,0,0.58,0.58,0.58,0.00432,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0232,1,0.22,0.00621,0.22,0.22,0.0235,0.0235,0.151,0.145,1,1 +1,0.0495,0.503,0.503,0,0.0366,0.565,0.565,0.565,0,0,0,0,0,0,0,0,0.0142,0.0142,0.34,0.504,0.018,1,0.173,0.0124,0.173,0.173,0.0313,0.0313,0.183,0.176,0.667,1 +1,0.0495,0.461,0.461,0,0,0.55,0.55,0.55,0,0,0,0,0,0,0,0.0119,0,0.0119,0.258,0.465,0.0284,1,0.185,0.0435,0.185,0.185,0.0626,0.0626,0.296,0.285,1,1 +1,0.0829,0.503,0.503,0,0,0.55,0.55,0.55,0,0,0,0,0,0,0,0.0281,0,0.0281,0.34,0.516,0.0464,1,0.208,0.0745,0.208,0.208,0.117,0.117,0.422,0.406,0.667,1 +0.667,0.0495,0.601,0.601,0,0,0.58,0.58,0.58,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0747,1,0.301,0.18,0.301,0.301,0.203,0.203,0.359,0.345,0.667,1 +0.667,0.181,0.657,0.657,0,0,0.611,0.611,0.611,0,0,0,0,0,0,0,0,0.00852,0.00852,0.391,0.572,0.103,1,0.381,0.286,0.381,0.381,0.344,0.344,0.151,0.145,0.333,1 +0.667,0.33,0.475,0.475,0,0.0366,0.626,0.626,0.626,0,0,0,0,0,0,0,0,0,0,0.403,0.692,0.126,1,0.381,0.273,0.381,0.381,0.657,0.657,0.151,0.145,0,1 +0.333,0.193,0.322,0.322,0,0,0.626,0.626,0.626,0,0,0,0,0,0,0,0,0.0114,0.0114,0.279,0.579,0.149,1,0.37,0.255,0.37,0.37,0.947,0.947,0.12,0.115,0,1 +0.333,0.189,0.336,0.336,0,0,0.611,0.611,0.611,0,0,0,0,0,0,0,0,0,0,0.284,0.579,0.168,1,0.381,0.273,0.381,0.381,0.994,0.994,0.0945,0.0909,0,1 +0.333,0.183,0.35,0.35,0,0,0.611,0.611,0.611,0,0,0,0,0,0,0,0,0,0,0.288,0.585,0.186,1,0.381,0.286,0.381,0.381,0.947,0.947,0.0882,0.0849,0,1 +0.333,0.178,0.336,0.336,0,0,0.641,0.641,0.641,0,0,0,0,0,0,0,0,0.00568,0.00568,0.284,0.591,0.196,1,0.37,0.261,0.37,0.37,0.939,0.939,0.0882,0.0849,0,1 +0.333,0.177,0.392,0.392,0,0.0366,0.641,0.641,0.641,0,0,0,0,0,0,0,0,0,0,0.302,0.591,0.222,1,0.37,0.236,0.37,0.37,0.704,0.704,0.0882,0.0849,0,1 +0.333,0.182,0.433,0.433,0,0,0.641,0.641,0.641,0,0,0,0,0,0,0,0,0.00284,0.00284,0.316,0.585,0.235,1,0.37,0.304,0.37,0.37,0.587,0.587,0.151,0.145,0,1 +0.333,0.204,0.447,0.447,0,0,0.626,0.626,0.626,0,0,0,0,0,0,0,0,0.00284,0.00284,0.321,0.597,0.263,1,0.381,0.366,0.381,0.381,0.477,0.477,0.365,0.352,0,1 +0.667,0.457,0.545,0.545,0.0288,0,0.672,0.672,0.672,0,0,0,0,0,0,0,0,0.00852,0.00852,0.449,0.755,0.327,1,0.52,0.683,0.52,0.52,0.29,0.29,0.794,0.764,0,1 +0.667,0.596,0.741,0.741,0.346,0,0.733,0.733,0.733,0,0,0,0,0,0,0,0,0.0114,0.0114,0.58,0.805,0.402,1,0.659,1,0.659,0.659,0.18,0.18,0.769,0.739,0,1 +0.667,0.683,0.881,0.881,0.593,0,0.764,0.764,0.764,0,0,0,0,0,0,0,0.015,0.00284,0.0178,0.673,0.817,0.541,1,0.763,0.714,0.763,0.763,0.102,0.102,0.428,0.412,0,1 +0.667,0.638,0.937,0.937,0.683,0,0.733,0.733,0.733,0.0122,0.0653,0,0,0,0,0,0,0.00568,0.00568,0.711,0.78,0.758,1,0.878,0.435,0.878,0.878,0.0626,0.0626,0.384,0.37,0,1 +1,0.732,0.993,0.993,1,0,0.718,0.718,0.718,0.0267,0.078,0,0,0,0,0,0,0.00284,0.00284,0.993,0.88,0.936,1,0.936,0.273,0.936,0.936,0.0313,0.0313,0.321,0.309,0,1 +1,0.386,0.965,0.965,0.679,0,0.703,0.703,0.703,0.0116,0,0,0,0,0,0,0,0,0,0.729,0.717,0.887,1,0.994,0.118,0.994,0.994,0.0235,0.0235,0.271,0.261,0.333,1 +1,0.342,0.825,0.825,0.132,0,0.672,0.672,0.672,0,0,0,0,0,0,0.0347,0,0,0.0347,0.636,0.655,0.536,1,0.867,0.0807,0.867,0.867,0.0235,0.0235,0.151,0.145,0.333,1 +1,0.0495,0.699,0.699,0.0658,0,0.626,0.626,0.626,0,0,0,0,0,0,0.00867,0,0,0.00867,0.258,0.465,0.232,1,0.751,0.0435,0.751,0.751,0.0235,0.0235,0.151,0.145,1,1 +1,0.0495,0.559,0.559,0,0,0.611,0.611,0.611,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.465,0.0954,1,0.509,0.0248,0.509,0.509,0.0235,0.0235,0.151,0.145,1,1 +1,0.0495,0.517,0.517,0,0,0.596,0.596,0.596,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0464,1,0.266,0.00621,0.266,0.266,0.0235,0.0235,0.183,0.176,1,1 +1,0.0495,0.517,0.517,0,0,0.58,0.58,0.58,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0232,1,0.22,0.00621,0.22,0.22,0.0235,0.0235,0.151,0.145,1,1 +1,0.0495,0.503,0.503,0,0,0.565,0.565,0.565,0,0,0,0,0,0,0,0,0,0,0.34,0.504,0.018,1,0.173,0.0124,0.173,0.173,0.0313,0.0313,0.183,0.176,0.667,1 +1,0.0495,0.461,0.461,0,0,0.55,0.55,0.55,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0284,1,0.185,0.0435,0.185,0.185,0.0626,0.0626,0.296,0.285,1,1 +0.667,0.0495,0.503,0.503,0,0,0.55,0.55,0.55,0,0,0,0,0,0,0,0.00255,0,0.00255,0.258,0.465,0.0464,1,0.208,0.0745,0.208,0.208,0.117,0.117,0.422,0.406,0.667,1 +0.667,0.15,0.601,0.601,0,0,0.58,0.58,0.58,0,0,0,0,0,0,0,0.00766,0,0.00766,0.372,0.541,0.0747,1,0.301,0.18,0.301,0.301,0.203,0.203,0.359,0.345,0.333,1 +0.667,0.181,0.657,0.657,0,0,0.611,0.611,0.611,0,0,0,0,0,0,0,0,0.00568,0.00568,0.391,0.572,0.103,1,0.381,0.286,0.381,0.381,0.344,0.344,0.151,0.145,0.333,1 +0.667,0.19,0.475,0.475,0,0,0.626,0.626,0.626,0.0228,0.0891,0,0,0,0,0,0.0209,0,0.0209,0.33,0.579,0.126,1,0.381,0.273,0.381,0.381,0.657,0.657,0.151,0.145,0.333,1 +0.667,0.337,0.322,0.322,0,0.0122,0.626,0.626,0.626,0.00953,0.00637,0,0,0,0,0,0.042,0,0.042,0.3,0.692,0.149,1,0.37,0.255,0.37,0.37,0.947,0.947,0.12,0.115,0,1 +0.333,0.189,0.336,0.336,0,0.134,0.611,0.611,0.611,0,0,0,0,0,0,0,0.0169,0.00852,0.0254,0.284,0.579,0.168,1,0.381,0.273,0.381,0.381,0.994,0.994,0.0945,0.0909,0,1 +0.333,0.183,0.35,0.35,0,0,0.611,0.611,0.611,0,0,0,0,0,0,0,0,0.00568,0.00568,0.288,0.585,0.186,1,0.381,0.286,0.381,0.381,0.947,0.947,0.0882,0.0849,0,1 +0,0.0495,0.336,0.336,0,0,0.641,0.641,0.641,0,0,0,0,0,0,0,0,0.00852,0.00852,0.258,0.465,0.196,1,0.37,0.261,0.37,0.37,0.939,0.939,0.0882,0.0849,0,1 +0,0.0495,0.392,0.392,0,0,0.641,0.641,0.641,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.222,1,0.37,0.236,0.37,0.37,0.704,0.704,0.0882,0.0849,0,1 +0.333,0.182,0.433,0.433,0,0,0.641,0.641,0.641,0,0,0,0,0,0,0,0,0,0,0.316,0.585,0.235,1,0.37,0.304,0.37,0.37,0.587,0.587,0.151,0.145,0,1 +0.333,0.204,0.447,0.447,0,0,0.626,0.626,0.626,0,0,0,0,0,0,0,0,0.0142,0.0142,0.321,0.597,0.263,1,0.381,0.366,0.381,0.381,0.477,0.477,0.365,0.352,0,1 +0.667,0.457,0.545,0.545,0.0288,0,0.672,0.672,0.672,0.0132,0.0478,0,0,0,0,0,0,0,0,0.449,0.755,0.327,1,0.52,0.683,0.52,0.52,0.29,0.29,0.794,0.764,0,1 +0.667,0.596,0.741,0.741,0.346,0.0366,0.733,0.733,0.733,0.0134,0,0,0,0,0,0,0,0.00284,0.00284,0.58,0.805,0.402,1,0.659,1,0.659,0.659,0.18,0.18,0.769,0.739,0,1 +0.667,0.683,0.881,0.881,0.593,0,0.764,0.764,0.764,0,0,0,0,0,0,0,0,0,0,0.673,0.817,0.541,1,0.763,0.714,0.763,0.763,0.102,0.102,0.428,0.412,0,1 +0.667,0.638,0.937,0.937,0.683,0,0.733,0.733,0.733,0,0,0,0,0,0,0,0,0.0142,0.0142,0.711,0.78,0.758,1,0.878,0.435,0.878,0.878,0.0626,0.0626,0.384,0.37,0,1 +1,0.732,0.993,0.993,1,0,0.718,0.718,0.718,0,0,0,0,0,0,0,0.0285,0.00568,0.0341,0.993,0.88,0.936,1,0.936,0.273,0.936,0.936,0.0313,0.0313,0.321,0.309,0,1 +1,0.554,0.965,0.965,0.679,0,0.703,0.703,0.703,0,0,0,0,0,0,0,0.0415,0.00284,0.0444,0.965,0.843,0.887,1,0.994,0.118,0.994,0.994,0.0235,0.0235,0.271,0.261,0,1 +1,0.342,0.825,0.825,0.132,0,0.672,0.672,0.672,0,0,0,0,0,0,0,0.0238,0.00284,0.0267,0.636,0.655,0.536,1,0.867,0.0807,0.867,0.867,0.0235,0.0235,0.151,0.145,0.333,1 +1,0.116,0.699,0.699,0.0658,0,0.626,0.626,0.626,0,0,0,0,0,0,0,0,0,0,0.405,0.535,0.232,1,0.751,0.0435,0.751,0.751,0.0235,0.0235,0.151,0.145,0.667,1 +1,0.0495,0.559,0.559,0,0,0.611,0.611,0.611,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0954,1,0.509,0.0248,0.509,0.509,0.0235,0.0235,0.151,0.145,1,1 +1,0.0495,0.517,0.517,0,0,0.596,0.596,0.596,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0464,1,0.266,0.00621,0.266,0.266,0.0235,0.0235,0.183,0.176,1,1 +1,0.0495,0.517,0.517,0,0,0.58,0.58,0.58,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0232,1,0.22,0.00621,0.22,0.22,0.0235,0.0235,0.151,0.145,1,1 +1,0.0495,0.503,0.503,0,0,0.565,0.565,0.565,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.018,1,0.173,0.0124,0.173,0.173,0.0313,0.0313,0.183,0.176,1,1 +1,0.0495,0.461,0.461,0,0,0.55,0.55,0.55,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0284,1,0.185,0.0435,0.185,0.185,0.0626,0.0626,0.296,0.285,1,1 +1,0.0495,0.503,0.503,0,0,0.55,0.55,0.55,0,0,0,0,0,0,0,0.00258,0,0.00258,0.258,0.465,0.0464,1,0.208,0.0745,0.208,0.208,0.117,0.117,0.422,0.406,1,1 +1,0.15,0.601,0.601,0,0,0.58,0.58,0.58,0,0,0,0,0,0,0,0.0431,0,0.0431,0.372,0.541,0.0747,1,0.301,0.18,0.301,0.301,0.203,0.203,0.359,0.345,0.667,1 +1,0.444,0.657,0.657,0,0,0.611,0.611,0.611,0,0,0,0,0,0,0,0.0319,0,0.0319,0.657,0.787,0.103,1,0.381,0.286,0.381,0.381,0.344,0.344,0.151,0.145,0,1 +0.667,0.33,0.475,0.475,0,0,0.626,0.626,0.626,0,0,0,0,0,0,0,0.0225,0,0.0225,0.403,0.692,0.126,1,0.381,0.273,0.381,0.381,0.657,0.657,0.151,0.145,0,1 +0.667,0.337,0.322,0.322,0,0,0.626,0.626,0.626,0,0,0,0,0,0,0,0.054,0,0.054,0.3,0.692,0.149,1,0.37,0.255,0.37,0.37,0.947,0.947,0.12,0.115,0,1 +0.667,0.328,0.336,0.336,0,0,0.611,0.611,0.611,0,0,0,0,0,0,0,0.0257,0.0142,0.0399,0.31,0.692,0.168,1,0.381,0.273,0.381,0.381,0.994,0.994,0.0945,0.0909,0,1 +0.667,0.316,0.35,0.35,0,0,0.611,0.611,0.611,0,0,0,0,0,0,0,0.0416,0,0.0416,0.319,0.705,0.186,1,0.381,0.286,0.381,0.381,0.947,0.947,0.0882,0.0849,0,1 +0.667,0.307,0.336,0.336,0,0,0.641,0.641,0.641,0,0,0,0,0,0,0,0,0,0,0.31,0.717,0.196,1,0.37,0.261,0.37,0.37,0.939,0.939,0.0882,0.0849,0,1 +0.333,0.177,0.392,0.392,0,0.0366,0.641,0.641,0.641,0,0,0,0,0,0,0,0,0.00568,0.00568,0.302,0.591,0.222,1,0.37,0.236,0.37,0.37,0.704,0.704,0.0882,0.0849,0,1 +0.333,0.182,0.433,0.433,0,0,0.641,0.641,0.641,0,0,0,0,0,0,0,0,0.0199,0.0199,0.316,0.585,0.235,1,0.37,0.304,0.37,0.37,0.587,0.587,0.151,0.145,0,1 +0.333,0.204,0.447,0.447,0,0,0.626,0.626,0.626,0,0,0,0,0,0,0,0,0.017,0.017,0.321,0.597,0.263,1,0.381,0.366,0.381,0.381,0.477,0.477,0.365,0.352,0,1 +0.667,0.457,0.545,0.545,0.0288,0,0.672,0.672,0.672,0,0,0,0,0,0,0,0,0.00284,0.00284,0.449,0.755,0.327,1,0.52,0.683,0.52,0.52,0.29,0.29,0.794,0.764,0,1 +0.667,0.596,0.741,0.741,0.346,0,0.733,0.733,0.733,0,0,0,0,0,0,0,0,0.00568,0.00568,0.58,0.805,0.402,1,0.659,1,0.659,0.659,0.18,0.18,0.769,0.739,0,1 +0.667,0.683,0.881,0.881,0.593,0,0.764,0.764,0.764,0.0154,0.0239,0,0,0,0,0,0,0.0199,0.0199,0.673,0.817,0.541,1,0.763,0.714,0.763,0.763,0.102,0.102,0.428,0.412,0,1 +0.667,0.638,0.937,0.937,0.683,0,0.733,0.733,0.733,0.0121,0,0.0236,0.00596,0,0,0,0,0.00284,0.00284,0.711,0.78,0.758,1,0.878,0.435,0.878,0.878,0.0626,0.0626,0.384,0.37,0,1 +0.667,0.504,0.993,0.993,1,0,0.718,0.718,0.718,0,0,0.00565,0.00982,0.147,0.147,0,0,0,0,0.748,0.742,0.936,1,0.936,0.273,0.936,0.936,0.0313,0.0313,0.321,0.309,0,1 +1,0.554,0.965,0.965,0.679,0,0.703,0.703,0.703,0,0,0,0,0.22,0.22,0,0.00265,0,0.00265,0.965,0.843,0.887,1,0.994,0.118,0.994,0.994,0.0235,0.0235,0.271,0.261,0,1 +1,0.342,0.825,0.825,0.132,0,0.672,0.672,0.672,0,0,0,0,0,0,0,0.0248,0,0.0248,0.636,0.655,0.536,1,0.867,0.0807,0.867,0.867,0.0235,0.0235,0.151,0.145,0.333,1 +1,0.116,0.699,0.699,0.0658,0,0.626,0.626,0.626,0,0,0,0,0,0,0.0593,0.0162,0,0.0755,0.405,0.535,0.232,1,0.751,0.0435,0.751,0.751,0.0235,0.0235,0.151,0.145,0.667,1 +1,0.0743,0.559,0.559,0,0,0.611,0.611,0.611,0,0,0,0,0,0,0,0.0566,0,0.0566,0.358,0.529,0.0954,1,0.509,0.0248,0.509,0.509,0.0235,0.0235,0.151,0.145,0.667,1 +1,0.0578,0.517,0.517,0,0,0.596,0.596,0.596,0,0,0,0,0,0,0,0,0,0,0.344,0.516,0.0464,1,0.266,0.00621,0.266,0.266,0.0235,0.0235,0.183,0.176,0.667,1 +0.667,0.0495,0.517,0.517,0,0,0.58,0.58,0.58,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0232,1,0.22,0.00621,0.22,0.22,0.0235,0.0235,0.151,0.145,0.667,1 +0.667,0.0495,0.503,0.503,0,0,0.565,0.565,0.565,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.018,1,0.173,0.0124,0.173,0.173,0.0313,0.0313,0.183,0.176,0.667,1 +1,0.0495,0.461,0.461,0,0,0.55,0.55,0.55,0,0,0,0,0,0,0,0.00247,0,0.00247,0.258,0.465,0.0284,1,0.185,0.0435,0.185,0.185,0.0626,0.0626,0.296,0.285,1,1 +1,0.0829,0.503,0.503,0,0,0.55,0.55,0.55,0,0,0,0,0,0,0,0.0173,0,0.0173,0.34,0.516,0.0464,1,0.208,0.0745,0.208,0.208,0.117,0.117,0.422,0.406,0.667,1 +0.667,0.15,0.601,0.601,0,0,0.58,0.58,0.58,0,0,0,0,0,0,0,0.0182,0,0.0182,0.372,0.541,0.0747,1,0.301,0.18,0.301,0.301,0.203,0.203,0.359,0.345,0.333,1 +0.667,0.181,0.657,0.657,0,0,0.611,0.611,0.611,0,0,0,0,0,0,0,0,0,0,0.391,0.572,0.103,1,0.381,0.286,0.381,0.381,0.344,0.344,0.151,0.145,0.333,1 +0.333,0.0495,0.475,0.475,0,0,0.626,0.626,0.626,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.126,1,0.381,0.273,0.381,0.381,0.657,0.657,0.151,0.145,0.333,1 +0.333,0.0495,0.322,0.322,0,0,0.626,0.626,0.626,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.149,1,0.37,0.255,0.37,0.37,0.947,0.947,0.12,0.115,0.333,1 +0.333,0.0495,0.336,0.336,0,0,0.611,0.611,0.611,0,0,0,0,0,0,0,0.00185,0.00852,0.0104,0.258,0.465,0.168,1,0.381,0.273,0.381,0.381,0.994,0.994,0.0945,0.0909,0.333,1 +0.333,0.183,0.35,0.35,0,0,0.611,0.611,0.611,0,0,0,0,0,0,0,0.0307,0.0142,0.0448,0.288,0.585,0.186,1,0.381,0.286,0.381,0.381,0.947,0.947,0.0882,0.0849,0,1 +0.333,0.178,0.336,0.336,0,0,0.641,0.641,0.641,0,0,0,0,0,0,0,0.0128,0,0.0128,0.284,0.591,0.196,1,0.37,0.261,0.37,0.37,0.939,0.939,0.0882,0.0849,0,1 +0.333,0.177,0.392,0.392,0,0,0.641,0.641,0.641,0,0,0,0,0,0,0,0.0429,0,0.0429,0.302,0.591,0.222,1,0.37,0.236,0.37,0.37,0.704,0.704,0.0882,0.0849,0,1 +0.333,0.182,0.433,0.433,0,0,0.641,0.641,0.641,0,0,0,0,0,0,0,0.0156,0,0.0156,0.316,0.585,0.235,1,0.37,0.304,0.37,0.37,0.587,0.587,0.151,0.145,0,1 +0.333,0.204,0.447,0.447,0,0,0.626,0.626,0.626,0,0,0,0,0,0,0.0524,0.0197,0.00284,0.075,0.321,0.597,0.263,1,0.381,0.366,0.381,0.381,0.477,0.477,0.365,0.352,0,1 +0.333,0.253,0.545,0.545,0.0288,0,0.672,0.672,0.672,0,0,0,0,0,0,0,0.0101,0,0.0101,0.354,0.61,0.327,1,0.52,0.683,0.52,0.52,0.29,0.29,0.794,0.764,0,1 +0.667,0.596,0.741,0.741,0.346,0,0.733,0.733,0.733,0,0,0,0,0,0,0,0.0726,0.00568,0.0783,0.58,0.805,0.402,1,0.659,1,0.659,0.659,0.18,0.18,0.769,0.739,0,1 +0.667,0.683,0.881,0.881,0.593,0,0.764,0.764,0.764,0,0,0,0,0,0,0,0.0205,0.00284,0.0233,0.673,0.817,0.541,1,0.763,0.714,0.763,0.763,0.102,0.102,0.428,0.412,0,1 +1,0.933,0.937,0.937,0.683,0,0.733,0.733,0.733,0,0,0.0112,0,0,0,0,0.022,0.0142,0.0362,0.937,0.937,0.758,1,0.878,0.435,0.878,0.878,0.0626,0.0626,0.384,0.37,0,1 +1,0.732,0.993,0.993,1,0,0.718,0.718,0.718,0,0,0.0202,0.0112,0,0,0,0,0.00852,0.00852,0.993,0.88,0.936,1,0.936,0.273,0.936,0.936,0.0313,0.0313,0.321,0.309,0,1 +1,0.386,0.965,0.965,0.679,0,0.703,0.703,0.703,0,0,0,0.00456,0.183,0.183,0,0,0.00852,0.00852,0.729,0.717,0.887,1,0.994,0.118,0.994,0.994,0.0235,0.0235,0.271,0.261,0.333,1 +1,0.0495,0.825,0.825,0.132,0,0.672,0.672,0.672,0,0,0,0,0,0,0,0,0.00852,0.00852,0.258,0.465,0.536,1,0.867,0.0807,0.867,0.867,0.0235,0.0235,0.151,0.145,1,1 +1,0.0495,0.699,0.699,0.0658,0,0.626,0.626,0.626,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.465,0.232,1,0.751,0.0435,0.751,0.751,0.0235,0.0235,0.151,0.145,1,1 +1,0.0495,0.559,0.559,0,0,0.611,0.611,0.611,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.113,1,0.509,0.0248,0.509,0.509,0.0235,0.0235,0.151,0.145,1,1 +1,0.0495,0.517,0.517,0,0,0.596,0.596,0.596,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0567,1,0.266,0.00621,0.266,0.266,0.0235,0.0235,0.183,0.176,1,1 +1,0.0495,0.517,0.517,0,0,0.58,0.58,0.58,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0309,1,0.22,0.00621,0.22,0.22,0.0235,0.0235,0.151,0.145,1,1 +1,0.0495,0.503,0.503,0,0,0.565,0.565,0.565,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0206,1,0.173,0.0124,0.173,0.173,0.0313,0.0313,0.183,0.176,1,1 +1,0.0495,0.461,0.461,0,0,0.55,0.55,0.55,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0284,1,0.185,0.0435,0.185,0.185,0.0626,0.0626,0.296,0.285,1,1 +1,0.0495,0.503,0.503,0,0,0.55,0.55,0.55,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0361,1,0.208,0.0745,0.208,0.208,0.117,0.117,0.422,0.406,1,1 +1,0.0495,0.601,0.601,0,0,0.58,0.58,0.58,0,0,0,0,0,0,0,0.00269,0,0.00269,0.258,0.465,0.0619,1,0.301,0.18,0.301,0.301,0.203,0.203,0.359,0.345,1,1 +1,0.181,0.657,0.657,0,0,0.611,0.611,0.611,0,0,0,0,0,0,0,0.039,0,0.039,0.391,0.572,0.111,1,0.381,0.286,0.381,0.381,0.344,0.344,0.151,0.145,0.667,1 +1,0.19,0.475,0.475,0,0,0.626,0.626,0.626,0,0,0,0,0,0,0,0.0154,0,0.0154,0.33,0.579,0.183,1,0.381,0.273,0.381,0.381,0.657,0.657,0.151,0.145,0.667,1 +1,0.193,0.322,0.322,0,0,0.626,0.626,0.626,0,0,0.0149,0.000702,0,0,0,0,0,0,0.279,0.579,0.242,1,0.37,0.255,0.37,0.37,0.947,0.947,0.12,0.115,0.667,1 +1,0.189,0.336,0.336,0,0,0.611,0.611,0.611,0,0,0,0.0151,0.055,0.055,0,0.00258,0,0.00258,0.284,0.579,0.289,1,0.381,0.273,0.381,0.381,0.994,0.994,0.0945,0.0909,0.667,1 +1,0.449,0.35,0.35,0,0.0487,0.611,0.611,0.611,0,0,0,0,0.312,0.312,0,0.0429,0.00568,0.0485,0.35,0.824,0.317,1,0.381,0.286,0.381,0.381,0.947,0.947,0.0882,0.0849,0,1 +1,0.436,0.336,0.336,0,0.0244,0.641,0.641,0.641,0,0,0,0,0,0,0,0.0172,0.0114,0.0285,0.336,0.843,0.34,1,0.37,0.261,0.37,0.37,0.939,0.939,0.0882,0.0849,0,1 +1,0.432,0.392,0.392,0,0,0.641,0.641,0.641,0,0,0,0,0,0,0,0.0467,0.00568,0.0523,0.392,0.843,0.402,1,0.37,0.236,0.37,0.37,0.704,0.704,0.0882,0.0849,0,1 +0.667,0.314,0.433,0.433,0,0,0.641,0.641,0.641,0,0,0,0,0,0,0,0.0278,0.0114,0.0391,0.375,0.705,0.459,1,0.37,0.304,0.37,0.37,0.587,0.587,0.151,0.145,0,1 +0.333,0.204,0.447,0.447,0,0,0.626,0.626,0.626,0,0,0,0,0,0,0,0.021,0.00284,0.0238,0.321,0.597,0.505,1,0.381,0.366,0.381,0.381,0.477,0.477,0.365,0.352,0,1 +0.333,0.253,0.545,0.545,0.0288,0,0.672,0.672,0.672,0,0,0,0,0,0,0,0,0.00284,0.00284,0.354,0.61,0.531,1,0.52,0.683,0.52,0.52,0.29,0.29,0.794,0.764,0,1 +0.333,0.323,0.741,0.741,0.346,0,0.733,0.733,0.733,0,0,0,0,0,0,0,0,0,0,0.419,0.635,0.549,1,0.659,1,0.659,0.659,0.18,0.18,0.769,0.739,0,1 +0.333,0.366,0.881,0.881,0.593,0.0853,0.764,0.764,0.764,0,0,0,0,0,0,0,0,0.017,0.017,0.465,0.641,0.647,1,0.763,0.714,0.763,0.763,0.102,0.102,0.428,0.412,0,1 +0.667,0.638,0.937,0.937,0.683,0.146,0.733,0.733,0.733,0,0,0,0,0,0,0,0,0.00852,0.00852,0.711,0.78,0.851,1,0.878,0.435,0.878,0.878,0.0626,0.0626,0.384,0.37,0,1 +0.667,0.504,0.993,0.993,1,0.146,0.718,0.718,0.718,0,0,0,0,0,0,0,0,0,0,0.748,0.742,1,1,0.936,0.273,0.936,0.936,0.0313,0.0313,0.321,0.309,0,1 +0.333,0.218,0.965,0.965,0.679,0.146,0.703,0.703,0.703,0,0,0,0,0,0,0,0,0.00284,0.00284,0.493,0.591,0.923,1,0.994,0.118,0.994,0.994,0.0235,0.0235,0.271,0.261,0,1 +0.667,0.342,0.825,0.825,0.132,0.0975,0.672,0.672,0.672,0,0,0,0,0,0,0,0,0,0,0.636,0.655,0.582,1,0.867,0.0807,0.867,0.867,0.0235,0.0235,0.151,0.145,0,1 +0.667,0.183,0.699,0.699,0.0658,0,0.626,0.626,0.626,0,0,0,0,0,0,0.049,0.024,0.00852,0.0816,0.552,0.605,0.265,1,0.751,0.0435,0.751,0.751,0.0235,0.0235,0.151,0.145,0,1 +0.667,0.0743,0.559,0.559,0,0,0.611,0.611,0.611,0,0,0,0,0,0,0,0.0182,0,0.0182,0.358,0.529,0.113,1,0.509,0.0248,0.509,0.509,0.0235,0.0235,0.151,0.145,0.333,1 +0.667,0.0578,0.517,0.517,0,0,0.596,0.596,0.596,0,0,0,0,0,0,0,0.0301,0,0.0301,0.344,0.516,0.0567,1,0.266,0.00621,0.266,0.266,0.0235,0.0235,0.183,0.176,0.333,1 +0.667,0.0495,0.517,0.517,0,0,0.58,0.58,0.58,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0309,1,0.22,0.00621,0.22,0.22,0.0235,0.0235,0.151,0.145,0.667,1 +0.667,0.0495,0.503,0.503,0,0,0.565,0.565,0.565,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0206,1,0.173,0.0124,0.173,0.173,0.0313,0.0313,0.183,0.176,0.667,1 +1,0.0495,0.461,0.461,0,0,0.55,0.55,0.55,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.465,0.0284,1,0.185,0.0435,0.185,0.185,0.0626,0.0626,0.296,0.285,1,1 +1,0.0495,0.503,0.503,0,0,0.55,0.55,0.55,0,0,0,0,0,0,0,0.0217,0.00852,0.0302,0.258,0.465,0.0361,1,0.208,0.0745,0.208,0.208,0.117,0.117,0.422,0.406,1,1 +1,0.15,0.601,0.601,0,0,0.58,0.58,0.58,0,0,0,0,0,0,0,0.0184,0,0.0184,0.372,0.541,0.0619,1,0.301,0.18,0.301,0.301,0.203,0.203,0.359,0.345,0.667,1 +1,0.181,0.657,0.657,0,0,0.611,0.611,0.611,0,0,0,0,0,0,0,0.0215,0,0.0215,0.391,0.572,0.111,1,0.381,0.286,0.381,0.381,0.344,0.344,0.151,0.145,0.667,1 +1,0.19,0.475,0.475,0,0,0.626,0.626,0.626,0,0,0,0,0,0,0,0.0167,0,0.0167,0.33,0.579,0.183,1,0.381,0.273,0.381,0.381,0.657,0.657,0.151,0.145,0.667,1 +1,0.193,0.322,0.322,0,0,0.626,0.626,0.626,0,0,0,0,0,0,0,0.0147,0,0.0147,0.279,0.579,0.242,1,0.37,0.255,0.37,0.37,0.947,0.947,0.12,0.115,0.667,1 +1,0.328,0.336,0.336,0,0,0.611,0.611,0.611,0,0,0,0,0,0,0,0.00255,0,0.00255,0.31,0.692,0.289,1,0.381,0.273,0.381,0.381,0.994,0.994,0.0945,0.0909,0.333,1 +0.667,0.316,0.35,0.35,0,0,0.611,0.611,0.611,0,0,0,0,0,0,0,0.0204,0.00568,0.0261,0.319,0.705,0.317,1,0.381,0.286,0.381,0.381,0.947,0.947,0.0882,0.0849,0,1 +0.667,0.307,0.336,0.336,0,0,0.641,0.641,0.641,0,0,0,0,0,0,0.0224,0.0333,0.0142,0.0699,0.31,0.717,0.34,1,0.37,0.261,0.37,0.37,0.939,0.939,0.0882,0.0849,0,1 +1,0.432,0.392,0.392,0,0,0.641,0.641,0.641,0,0,0,0,0,0,0,0.0161,0.00852,0.0246,0.392,0.843,0.402,1,0.37,0.236,0.37,0.37,0.704,0.704,0.0882,0.0849,0,1 +1,0.446,0.433,0.433,0,0,0.641,0.641,0.641,0,0,0,0,0,0,0,0,0.0114,0.0114,0.433,0.824,0.459,1,0.37,0.304,0.37,0.37,0.587,0.587,0.151,0.145,0,1 +0.667,0.359,0.447,0.447,0,0,0.626,0.626,0.626,0,0,0,0,0,0,0,0.016,0.0114,0.0274,0.384,0.73,0.505,1,0.381,0.366,0.381,0.381,0.477,0.477,0.365,0.352,0,1 +0.667,0.457,0.545,0.545,0.0288,0,0.672,0.672,0.672,0,0,0,0,0,0,0,0.0138,0,0.0138,0.449,0.755,0.531,1,0.52,0.683,0.52,0.52,0.29,0.29,0.794,0.764,0,1 +0.667,0.596,0.741,0.741,0.346,0,0.733,0.733,0.733,0,0,0,0,0,0,0,0.0326,0.00852,0.0412,0.58,0.805,0.549,1,0.659,1,0.659,0.659,0.18,0.18,0.769,0.739,0,1 +1,1,0.881,0.881,0.593,0,0.764,0.764,0.764,0,0,0,0,0,0,0,0.0439,0.0284,0.0723,0.881,0.993,0.647,1,0.763,0.714,0.763,0.763,0.102,0.102,0.428,0.412,0,1 +1,0.933,0.937,0.937,0.683,0,0.733,0.733,0.733,0,0,0,0,0,0,0,0.0358,0.00284,0.0387,0.937,0.937,0.851,1,0.878,0.435,0.878,0.878,0.0626,0.0626,0.384,0.37,0,1 +1,0.504,0.993,0.993,1,0,0.718,0.718,0.718,0,0,0,0,0,0,0,0,0.00284,0.00284,0.748,0.742,1,1,0.936,0.273,0.936,0.936,0.0313,0.0313,0.321,0.309,0.333,1 +1,0.386,0.965,0.965,0.679,0,0.703,0.703,0.703,0,0,0,0,0,0,0,0.0212,0,0.0212,0.729,0.717,0.923,1,0.994,0.118,0.994,0.994,0.0235,0.0235,0.271,0.261,0.333,1 +1,0.342,0.825,0.825,0.132,0,0.672,0.672,0.672,0,0,0,0,0,0,0,0.0413,0.0114,0.0526,0.636,0.655,0.582,1,0.867,0.0807,0.867,0.867,0.0235,0.0235,0.151,0.145,0.333,1 +1,0.116,0.699,0.699,0.0658,0,0.626,0.626,0.626,0,0,0,0,0,0,0,0.0162,0,0.0162,0.405,0.535,0.265,1,0.751,0.0435,0.751,0.751,0.0235,0.0235,0.151,0.145,0.667,1 +1,0.0743,0.559,0.559,0,0,0.611,0.611,0.611,0,0,0,0,0,0,0,0.0278,0,0.0278,0.358,0.529,0.0954,1,0.509,0.0248,0.509,0.509,0.0235,0.0235,0.151,0.145,0.667,1 +1,0.0578,0.517,0.517,0,0,0.596,0.596,0.596,0,0,0,0,0,0,0,0.027,0,0.027,0.344,0.516,0.0464,1,0.266,0.00621,0.266,0.266,0.0235,0.0235,0.183,0.176,0.667,1 +1,0.0495,0.517,0.517,0,0,0.58,0.58,0.58,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0232,1,0.22,0.00621,0.22,0.22,0.0235,0.0235,0.151,0.145,1,1 +1,0.0495,0.503,0.503,0,0,0.565,0.565,0.565,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.018,1,0.173,0.0124,0.173,0.173,0.0313,0.0313,0.183,0.176,1,1 +1,0.0495,0.461,0.461,0,0,0.55,0.55,0.55,0,0,0,0,0,0,0,0.0379,0,0.0379,0.258,0.465,0.0284,1,0.185,0.0435,0.185,0.185,0.0626,0.0626,0.296,0.285,1,1 +1,0.0829,0.503,0.503,0,0,0.55,0.55,0.55,0,0,0,0,0,0,0,0.0319,0,0.0319,0.34,0.516,0.0464,1,0.208,0.0745,0.208,0.208,0.117,0.117,0.422,0.406,0.667,1 +1,0.251,0.601,0.601,0,0,0.58,0.58,0.58,0,0,0,0,0,0,0,0.0397,0,0.0397,0.487,0.617,0.0747,1,0.301,0.18,0.301,0.301,0.203,0.203,0.359,0.345,0.333,1 +0.667,0.181,0.657,0.657,0,0,0.611,0.611,0.611,0,0,0,0,0,0,0,0.0141,0,0.0141,0.391,0.572,0.103,1,0.381,0.286,0.381,0.381,0.344,0.344,0.151,0.145,0.333,1 +0.667,0.19,0.475,0.475,0,0,0.626,0.626,0.626,0,0,0,0,0,0,0,0.0297,0.00284,0.0325,0.33,0.579,0.126,1,0.381,0.273,0.381,0.381,0.657,0.657,0.151,0.145,0.333,1 +1,0.337,0.322,0.322,0,0,0.626,0.626,0.626,0,0,0,0,0,0,0,0.0207,0.00284,0.0236,0.3,0.692,0.149,1,0.37,0.255,0.37,0.37,0.947,0.947,0.12,0.115,0.333,1 +0.667,0.189,0.336,0.336,0,0,0.611,0.611,0.611,0,0,0,0,0,0,0,0.0256,0.00284,0.0285,0.284,0.579,0.168,1,0.381,0.273,0.381,0.381,0.994,0.994,0.0945,0.0909,0.333,1 +0.667,0.316,0.35,0.35,0,0,0.611,0.611,0.611,0,0,0,0,0,0,0,0.0596,0.00852,0.0681,0.319,0.705,0.186,1,0.381,0.286,0.381,0.381,0.947,0.947,0.0882,0.0849,0,1 +0.667,0.307,0.336,0.336,0,0,0.641,0.641,0.641,0,0,0,0,0,0,0,0.0109,0.00852,0.0195,0.31,0.717,0.196,1,0.37,0.261,0.37,0.37,0.939,0.939,0.0882,0.0849,0,1 +0.667,0.177,0.392,0.392,0,0,0.641,0.641,0.641,0,0,0,0,0,0,0,0,0,0,0.302,0.591,0.222,1,0.37,0.236,0.37,0.37,0.704,0.704,0.0882,0.0849,0.333,1 +0.667,0.314,0.433,0.433,0,0,0.641,0.641,0.641,0,0,0,0,0,0,0,0,0.00284,0.00284,0.375,0.705,0.235,1,0.37,0.304,0.37,0.37,0.587,0.587,0.151,0.145,0,1 +0.667,0.359,0.447,0.447,0,0,0.626,0.626,0.626,0,0,0,0,0,0,0,0,0,0,0.384,0.73,0.263,1,0.381,0.366,0.381,0.381,0.477,0.477,0.365,0.352,0,1 +0.667,0.457,0.545,0.545,0.0288,0,0.672,0.672,0.672,0,0,0,0,0,0,0,0.0403,0,0.0403,0.449,0.755,0.327,1,0.52,0.683,0.52,0.52,0.29,0.29,0.794,0.764,0,1 +1,0.869,0.741,0.741,0.346,0.0366,0.733,0.733,0.733,0,0,0,0,0,0,0,0.0132,0.00852,0.0217,0.741,0.974,0.402,1,0.659,1,0.659,0.659,0.18,0.18,0.769,0.739,0,1 +1,1,0.881,0.881,0.593,0.0122,0.764,0.764,0.764,0,0,0,0,0,0,0,0,0.0114,0.0114,0.881,0.993,0.541,1,0.763,0.714,0.763,0.763,0.102,0.102,0.428,0.412,0,1 +1,0.933,0.937,0.937,0.683,0.0244,0.733,0.733,0.733,0,0,0,0,0,0,0,0,0.00284,0.00284,0.937,0.937,0.758,1,0.878,0.435,0.878,0.878,0.0626,0.0626,0.384,0.37,0,1 +1,0.732,0.993,0.993,1,0,0.718,0.718,0.718,0,0,0,0,0,0,0,0,0.00568,0.00568,0.993,0.88,0.936,1,0.936,0.273,0.936,0.936,0.0313,0.0313,0.321,0.309,0,1 +1,0.554,0.965,0.965,0.679,0,0.703,0.703,0.703,0,0,0,0,0,0,0,0,0.017,0.017,0.965,0.843,0.887,1,0.994,0.118,0.994,0.994,0.0235,0.0235,0.271,0.261,0,1 +1,0.342,0.825,0.825,0.132,0,0.672,0.672,0.672,0,0,0,0,0,0,0,0,0.00284,0.00284,0.636,0.655,0.536,1,0.867,0.0807,0.867,0.867,0.0235,0.0235,0.151,0.145,0.333,1 +1,0.183,0.699,0.699,0.0658,0,0.626,0.626,0.626,0,0,0,0,0,0,0,0,0,0,0.552,0.605,0.232,1,0.751,0.0435,0.751,0.751,0.0235,0.0235,0.151,0.145,0.333,1 +1,0.0743,0.559,0.559,0,0,0.611,0.611,0.611,0,0,0,0,0,0,0,0,0,0,0.358,0.529,0.0954,1,0.509,0.0248,0.509,0.509,0.0235,0.0235,0.151,0.145,0.667,1 +1,0.0495,0.517,0.517,0,0,0.596,0.596,0.596,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0464,1,0.266,0.00621,0.266,0.266,0.0235,0.0235,0.183,0.176,1,1 +1,0.0495,0.517,0.517,0,0,0.58,0.58,0.58,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0232,1,0.22,0.00621,0.22,0.22,0.0235,0.0235,0.151,0.145,1,1 +1,0.0495,0.503,0.503,0,0,0.565,0.565,0.565,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.018,1,0.173,0.0124,0.173,0.173,0.0313,0.0313,0.183,0.176,1,1 +1,0.0495,0.461,0.461,0,0,0.55,0.55,0.55,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0284,1,0.185,0.0435,0.185,0.185,0.0626,0.0626,0.296,0.285,1,1 +1,0.0495,0.503,0.503,0,0,0.55,0.55,0.55,0,0,0,0,0,0,0,0.0053,0,0.0053,0.258,0.465,0.0464,1,0.208,0.0745,0.208,0.208,0.117,0.117,0.422,0.406,1,1 +1,0.351,0.601,0.601,0,0,0.58,0.58,0.58,0,0,0,0,0,0,0.0749,0.0616,0,0.136,0.601,0.693,0.0747,1,0.301,0.18,0.301,0.301,0.203,0.203,0.359,0.345,0,1 +1,0.444,0.657,0.657,0,0.0366,0.611,0.611,0.611,0,0,0,0,0,0,0,0,0,0,0.657,0.787,0.103,1,0.381,0.286,0.381,0.381,0.344,0.344,0.151,0.145,0,1 +0.667,0.33,0.475,0.475,0,0,0.626,0.626,0.626,0,0,0.014,0,0,0,0,0,0,0,0.403,0.692,0.126,1,0.381,0.273,0.381,0.381,0.657,0.657,0.151,0.145,0,1 +0.667,0.337,0.322,0.322,0,0,0.626,0.626,0.626,0,0,0.0413,0.0112,0,0,0,0,0,0,0.3,0.692,0.149,1,0.37,0.255,0.37,0.37,0.947,0.947,0.12,0.115,0,1 +0.333,0.189,0.336,0.336,0,0,0.611,0.611,0.611,0,0,0.00614,0.00982,0.147,0.147,0,0,0.00284,0.00284,0.284,0.579,0.168,1,0.381,0.273,0.381,0.381,0.994,0.994,0.0945,0.0909,0,1 +0.333,0.183,0.35,0.35,0,0,0.611,0.611,0.611,0,0,0,0,0.128,0.128,0,0,0.0114,0.0114,0.288,0.585,0.186,1,0.381,0.286,0.381,0.381,0.947,0.947,0.0882,0.0849,0,1 +0.333,0.178,0.336,0.336,0,0,0.641,0.641,0.641,0,0,0,0,0,0,0,0,0,0,0.284,0.591,0.196,1,0.37,0.261,0.37,0.37,0.939,0.939,0.0882,0.0849,0,1 +0,0.0495,0.392,0.392,0,0,0.641,0.641,0.641,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.222,1,0.37,0.236,0.37,0.37,0.704,0.704,0.0882,0.0849,0,1 +0.333,0.182,0.433,0.433,0,0,0.641,0.641,0.641,0,0,0,0,0,0,0,0,0.00284,0.00284,0.316,0.585,0.235,1,0.37,0.304,0.37,0.37,0.587,0.587,0.151,0.145,0,1 +0.333,0.204,0.447,0.447,0,0,0.626,0.626,0.626,0,0,0,0,0,0,0,0,0.00568,0.00568,0.321,0.597,0.263,1,0.381,0.366,0.381,0.381,0.477,0.477,0.365,0.352,0,1 +0.333,0.253,0.545,0.545,0.0288,0,0.672,0.672,0.672,0,0,0,0,0,0,0,0.0113,0.00284,0.0141,0.354,0.61,0.327,1,0.52,0.683,0.52,0.52,0.29,0.29,0.794,0.764,0,1 +0.333,0.323,0.741,0.741,0.346,0,0.733,0.733,0.733,0,0,0,0,0,0,0,0.0367,0,0.0367,0.419,0.635,0.402,1,0.659,1,0.659,0.659,0.18,0.18,0.769,0.739,0,1 +0.667,0.683,0.881,0.881,0.593,0,0.764,0.764,0.764,0,0,0,0,0,0,0,0.0491,0.00284,0.0519,0.673,0.817,0.541,1,0.763,0.714,0.763,0.763,0.102,0.102,0.428,0.412,0,1 +1,0.933,0.937,0.937,0.683,0,0.733,0.733,0.733,0,0,0.0331,0.000702,0,0,0,0,0.0114,0.0114,0.937,0.937,0.758,1,0.878,0.435,0.878,0.878,0.0626,0.0626,0.384,0.37,0,1 +1,0.732,0.993,0.993,1,0,0.718,0.718,0.718,0,0,0.0344,0.0151,0.055,0.055,0,0,0.00568,0.00568,0.993,0.88,0.936,1,0.936,0.273,0.936,0.936,0.0313,0.0313,0.321,0.309,0,1 +1,0.554,0.965,0.965,0.679,0,0.703,0.703,0.703,0,0,0.022,0,0.312,0.312,0,0,0.00568,0.00568,0.965,0.843,0.887,1,0.994,0.118,0.994,0.994,0.0235,0.0235,0.271,0.261,0,1 +1,0.196,0.825,0.825,0.132,0,0.672,0.672,0.672,0,0,0,0,0,0,0,0,0.00568,0.00568,0.447,0.56,0.536,1,0.867,0.0807,0.867,0.867,0.0235,0.0235,0.151,0.145,0.667,1 +1,0.0495,0.699,0.699,0.0658,0,0.626,0.626,0.626,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.232,1,0.751,0.0435,0.751,0.751,0.0235,0.0235,0.151,0.145,1,1 +1,0.0495,0.559,0.559,0,0,0.611,0.611,0.611,0,0,0,0,0,0,0,0,0.0114,0.0114,0.258,0.465,0.0954,1,0.509,0.0248,0.509,0.509,0.0235,0.0235,0.151,0.145,1,1 +1,0.0495,0.517,0.517,0,0,0.596,0.596,0.596,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.465,0.0464,1,0.266,0.00621,0.266,0.266,0.0235,0.0235,0.183,0.176,1,1 +1,0.0495,0.517,0.517,0,0,0.58,0.58,0.58,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0232,1,0.22,0.00621,0.22,0.22,0.0235,0.0235,0.151,0.145,1,1 +1,0.0495,0.503,0.503,0,0,0.565,0.565,0.565,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.018,1,0.173,0.0124,0.173,0.173,0.0313,0.0313,0.183,0.176,1,1 +1,0.0495,0.461,0.461,0,0,0.55,0.55,0.55,0,0,0,0,0,0,0,0.00268,0,0.00268,0.258,0.465,0.0284,1,0.185,0.0435,0.185,0.185,0.0626,0.0626,0.296,0.285,1,1 +1,0.0829,0.503,0.503,0,0,0.55,0.55,0.55,0,0,0,0,0,0,0,0.0638,0,0.0638,0.34,0.516,0.0464,1,0.208,0.0745,0.208,0.208,0.117,0.117,0.422,0.406,0.667,1 +0.333,0.0495,0.601,0.601,0,0,0.58,0.58,0.58,0,0,0,0,0,0,0,0.00529,0,0.00529,0.258,0.465,0.0747,1,0.301,0.18,0.301,0.301,0.203,0.203,0.359,0.345,0.333,1 +0.333,0.181,0.657,0.657,0,0.0122,0.611,0.611,0.611,0.0111,0.0239,0,0,0,0,0,0,0,0,0.391,0.572,0.103,1,0.381,0.286,0.381,0.381,0.344,0.344,0.151,0.145,0,1 +0.333,0.19,0.475,0.475,0,0.0244,0.626,0.626,0.626,0,0,0,0,0,0,0,0,0,0,0.33,0.579,0.126,1,0.381,0.273,0.381,0.381,0.657,0.657,0.151,0.145,0,1 +0.333,0.193,0.322,0.322,0,0,0.626,0.626,0.626,0,0,0,0,0,0,0,0,0,0,0.279,0.579,0.149,1,0.37,0.255,0.37,0.37,0.947,0.947,0.12,0.115,0,1 +0.333,0.189,0.336,0.336,0,0,0.611,0.611,0.611,0,0,0,0,0,0,0,0,0,0,0.284,0.579,0.168,1,0.381,0.273,0.381,0.381,0.994,0.994,0.0945,0.0909,0,1 +0.333,0.183,0.35,0.35,0,0,0.611,0.611,0.611,0,0,0,0,0,0,0,0,0,0,0.288,0.585,0.186,1,0.381,0.286,0.381,0.381,0.947,0.947,0.0882,0.0849,0,1 +0.333,0.178,0.336,0.336,0,0.0122,0.641,0.641,0.641,0,0,0,0,0,0,0,0,0.0142,0.0142,0.284,0.591,0.196,1,0.37,0.261,0.37,0.37,0.939,0.939,0.0882,0.0849,0,1 +0.333,0.177,0.392,0.392,0,0.0244,0.641,0.641,0.641,0,0,0,0,0,0,0,0,0.00852,0.00852,0.302,0.591,0.222,1,0.37,0.236,0.37,0.37,0.704,0.704,0.0882,0.0849,0,1 +0.333,0.182,0.433,0.433,0,0,0.641,0.641,0.641,0,0,0,0,0,0,0,0,0.00284,0.00284,0.316,0.585,0.235,1,0.37,0.304,0.37,0.37,0.587,0.587,0.151,0.145,0,1 +0.667,0.359,0.447,0.447,0,0,0.626,0.626,0.626,0,0,0,0,0,0,0,0,0.00284,0.00284,0.384,0.73,0.263,1,0.381,0.366,0.381,0.381,0.477,0.477,0.365,0.352,0,1 +0.667,0.457,0.545,0.545,0.0288,0,0.672,0.672,0.672,0,0,0,0,0,0,0,0,0.0142,0.0142,0.449,0.755,0.327,1,0.52,0.683,0.52,0.52,0.29,0.29,0.794,0.764,0,1 +1,0.869,0.741,0.741,0.346,0.0487,0.733,0.733,0.733,0.0125,0.0239,0,0,0,0,0,0,0.00284,0.00284,0.741,0.974,0.402,1,0.659,1,0.659,0.659,0.18,0.18,0.769,0.739,0,1 +1,1,0.881,0.881,0.593,0.0975,0.764,0.764,0.764,0.00854,0,0,0,0,0,0,0,0.00284,0.00284,0.881,0.993,0.541,1,0.763,0.714,0.763,0.763,0.102,0.102,0.428,0.412,0,1 +0.667,0.638,0.937,0.937,0.683,0,0.733,0.733,0.733,0,0,0,0,0,0,0,0,0.00284,0.00284,0.711,0.78,0.758,1,0.878,0.435,0.878,0.878,0.0626,0.0626,0.384,0.37,0,1 +0.667,0.504,0.993,0.993,1,0,0.718,0.718,0.718,0,0,0,0,0,0,0,0,0.0114,0.0114,0.748,0.742,0.936,1,0.936,0.273,0.936,0.936,0.0313,0.0313,0.321,0.309,0,1 +0.667,0.386,0.965,0.965,0.679,0,0.703,0.703,0.703,0,0,0.0409,0.00596,0,0,0,0,0.0114,0.0114,0.729,0.717,0.887,1,0.994,0.118,0.994,0.994,0.0235,0.0235,0.271,0.261,0,1 +1,0.342,0.825,0.825,0.132,0,0.672,0.672,0.672,0,0,0.021,0.00982,0.147,0.147,0,0,0,0,0.636,0.655,0.536,1,0.867,0.0807,0.867,0.867,0.0235,0.0235,0.151,0.145,0.333,1 +1,0.183,0.699,0.699,0.0658,0,0.626,0.626,0.626,0,0,0.0343,0,0.312,0.312,0,0,0,0,0.552,0.605,0.232,1,0.751,0.0435,0.751,0.751,0.0235,0.0235,0.151,0.145,0.333,1 +1,0.099,0.559,0.559,0,0,0.611,0.611,0.611,0,0,0.0287,0,0,0,0,0,0,0,0.459,0.592,0.0954,1,0.509,0.0248,0.509,0.509,0.0235,0.0235,0.151,0.145,0.333,1 +1,0.066,0.517,0.517,0,0,0.596,0.596,0.596,0,0,0.0212,0,0,0,0,0,0,0,0.431,0.567,0.0464,1,0.266,0.00621,0.266,0.266,0.0235,0.0235,0.183,0.176,0.333,1 +1,0.0495,0.517,0.517,0,0,0.58,0.58,0.58,0,0,0.0143,0,0,0,0,0,0,0,0.431,0.555,0.0232,1,0.22,0.00621,0.22,0.22,0.0235,0.0235,0.151,0.145,0.333,1 +1,0.0495,0.503,0.503,0,0,0.565,0.565,0.565,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.018,1,0.173,0.0124,0.173,0.173,0.0313,0.0313,0.183,0.176,1,1 +1,0.0495,0.461,0.461,0,0,0.55,0.55,0.55,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0284,1,0.185,0.0435,0.185,0.185,0.0626,0.0626,0.296,0.285,1,1 +1,0.0495,0.503,0.503,0,0,0.55,0.55,0.55,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0464,1,0.208,0.0745,0.208,0.208,0.117,0.117,0.422,0.406,1,1 +1,0.15,0.601,0.601,0,0,0.58,0.58,0.58,0,0,0,0,0,0,0,0.0138,0.0142,0.028,0.372,0.541,0.0747,1,0.301,0.18,0.301,0.301,0.203,0.203,0.359,0.345,0.667,1 +0.667,0.181,0.657,0.657,0,0,0.611,0.611,0.611,0,0,0,0,0,0,0,0.0108,0.00284,0.0136,0.391,0.572,0.103,1,0.381,0.286,0.381,0.381,0.344,0.344,0.151,0.145,0.333,1 +0.667,0.33,0.475,0.475,0,0,0.626,0.626,0.626,0,0,0,0,0,0,0,0,0,0,0.403,0.692,0.126,1,0.381,0.273,0.381,0.381,0.657,0.657,0.151,0.145,0,1 +0.333,0.193,0.322,0.322,0,0,0.626,0.626,0.626,0,0,0,0,0,0,0,0,0,0,0.279,0.579,0.149,1,0.37,0.255,0.37,0.37,0.947,0.947,0.12,0.115,0,1 +0.333,0.189,0.336,0.336,0,0,0.611,0.611,0.611,0,0,0,0,0,0,0,0,0.00284,0.00284,0.284,0.579,0.168,1,0.381,0.273,0.381,0.381,0.994,0.994,0.0945,0.0909,0,1 +0.333,0.183,0.35,0.35,0,0,0.611,0.611,0.611,0,0,0,0,0,0,0,0,0.017,0.017,0.288,0.585,0.186,1,0.381,0.286,0.381,0.381,0.947,0.947,0.0882,0.0849,0,1 +0.333,0.178,0.336,0.336,0,0,0.641,0.641,0.641,0,0,0,0,0,0,0,0,0,0,0.284,0.591,0.196,1,0.37,0.261,0.37,0.37,0.939,0.939,0.0882,0.0849,0,1 +0.333,0.177,0.392,0.392,0,0,0.641,0.641,0.641,0,0,0,0,0,0,0,0,0.0142,0.0142,0.302,0.591,0.222,1,0.37,0.236,0.37,0.37,0.704,0.704,0.0882,0.0849,0,1 +0.333,0.182,0.433,0.433,0,0,0.641,0.641,0.641,0,0,0,0,0,0,0,0.0256,0,0.0256,0.316,0.585,0.235,1,0.37,0.304,0.37,0.37,0.587,0.587,0.151,0.145,0,1 +0.333,0.204,0.447,0.447,0,0,0.626,0.626,0.626,0,0,0,0,0,0,0,0,0.00852,0.00852,0.321,0.597,0.263,1,0.381,0.366,0.381,0.381,0.477,0.477,0.365,0.352,0,1 +0.667,0.457,0.545,0.545,0.0288,0.0366,0.672,0.672,0.672,0,0,0,0,0,0,0,0,0.0114,0.0114,0.449,0.755,0.327,1,0.52,0.683,0.52,0.52,0.29,0.29,0.794,0.764,0,1 +0.667,0.596,0.741,0.741,0.346,0,0.733,0.733,0.733,0,0,0,0,0,0,0,0,0.00284,0.00284,0.58,0.805,0.402,1,0.659,1,0.659,0.659,0.18,0.18,0.769,0.739,0,1 +1,1,0.881,0.881,0.593,0,0.764,0.764,0.764,0,0,0,0,0,0,0,0,0.00568,0.00568,0.881,0.993,0.541,1,0.763,0.714,0.763,0.763,0.102,0.102,0.428,0.412,0,1 +1,0.933,0.937,0.937,0.683,0.0366,0.733,0.733,0.733,0.0032,0.0175,0,0,0,0,0,0,0.00852,0.00852,0.937,0.937,0.758,1,0.878,0.435,0.878,0.878,0.0626,0.0626,0.384,0.37,0,1 +1,0.732,0.993,0.993,1,0,0.718,0.718,0.718,0.0244,0.00637,0,0,0,0,0,0,0.00568,0.00568,0.993,0.88,0.936,1,0.936,0.273,0.936,0.936,0.0313,0.0313,0.321,0.309,0,1 +1,0.386,0.965,0.965,0.679,0,0.703,0.703,0.703,0.0172,0,0,0,0,0,0,0,0.00568,0.00568,0.729,0.717,0.887,1,0.994,0.118,0.994,0.994,0.0235,0.0235,0.271,0.261,0.333,1 +1,0.196,0.825,0.825,0.132,0,0.672,0.672,0.672,0,0,0,0,0,0,0,0,0.0227,0.0227,0.447,0.56,0.536,1,0.867,0.0807,0.867,0.867,0.0235,0.0235,0.151,0.145,0.667,1 +1,0.0495,0.699,0.699,0.0658,0,0.626,0.626,0.626,0,0,0,0,0,0,0,0,0.0199,0.0199,0.258,0.465,0.232,1,0.751,0.0435,0.751,0.751,0.0235,0.0235,0.151,0.145,1,1 +1,0.0495,0.559,0.559,0,0,0.611,0.611,0.611,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0954,1,0.509,0.0248,0.509,0.509,0.0235,0.0235,0.151,0.145,1,1 +1,0.0495,0.517,0.517,0,0,0.596,0.596,0.596,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0464,1,0.266,0.00621,0.266,0.266,0.0235,0.0235,0.183,0.176,1,1 +1,0.0495,0.517,0.517,0,0,0.58,0.58,0.58,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0232,1,0.22,0.00621,0.22,0.22,0.0235,0.0235,0.151,0.145,1,1 +1,0.0495,0.503,0.503,0,0,0.565,0.565,0.565,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.018,1,0.173,0.0124,0.173,0.173,0.0313,0.0313,0.183,0.176,1,1 +1,0.0495,0.461,0.461,0,0,0.55,0.55,0.55,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0284,1,0.185,0.0435,0.185,0.185,0.0626,0.0626,0.296,0.285,1,1 +1,0.0495,0.503,0.503,0,0,0.55,0.55,0.55,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0464,1,0.208,0.0745,0.208,0.208,0.117,0.117,0.422,0.406,1,1 +1,0.0495,0.601,0.601,0,0,0.58,0.58,0.58,0,0,0,0,0,0,0,0.0172,0,0.0172,0.258,0.465,0.0747,1,0.301,0.18,0.301,0.301,0.203,0.203,0.359,0.345,1,1 +0.667,0.181,0.657,0.657,0,0,0.611,0.611,0.611,0,0,0,0,0,0,0,0.0435,0,0.0435,0.391,0.572,0.103,1,0.381,0.286,0.381,0.381,0.344,0.344,0.151,0.145,0.333,1 +0.667,0.19,0.475,0.475,0,0,0.626,0.626,0.626,0,0,0,0,0,0,0,0.0217,0,0.0217,0.33,0.579,0.126,1,0.381,0.273,0.381,0.381,0.657,0.657,0.151,0.145,0.333,1 +0.333,0.193,0.322,0.322,0,0,0.626,0.626,0.626,0,0,0,0,0,0,0,0,0,0,0.279,0.579,0.149,1,0.37,0.255,0.37,0.37,0.947,0.947,0.12,0.115,0,1 +0.333,0.189,0.336,0.336,0,0,0.611,0.611,0.611,0,0,0,0,0,0,0,0,0,0,0.284,0.579,0.168,1,0.381,0.273,0.381,0.381,0.994,0.994,0.0945,0.0909,0,1 +0.333,0.183,0.35,0.35,0,0,0.611,0.611,0.611,0,0,0,0,0,0,0,0,0.0114,0.0114,0.288,0.585,0.186,1,0.381,0.286,0.381,0.381,0.947,0.947,0.0882,0.0849,0,1 +0.333,0.178,0.336,0.336,0,0,0.641,0.641,0.641,0,0,0,0,0,0,0,0,0.0114,0.0114,0.284,0.591,0.196,1,0.37,0.261,0.37,0.37,0.939,0.939,0.0882,0.0849,0,1 +0.667,0.177,0.392,0.392,0,0.0122,0.641,0.641,0.641,0,0,0,0,0,0,0,0,0.00568,0.00568,0.302,0.591,0.222,1,0.37,0.236,0.37,0.37,0.704,0.704,0.0882,0.0849,0.333,1 +0.667,0.182,0.433,0.433,0,0.0609,0.641,0.641,0.641,0,0,0,0,0,0,0,0,0.0114,0.0114,0.316,0.585,0.235,1,0.37,0.304,0.37,0.37,0.587,0.587,0.151,0.145,0.333,1 +0.667,0.204,0.447,0.447,0,0,0.626,0.626,0.626,0,0,0,0,0,0,0,0,0.00284,0.00284,0.321,0.597,0.263,1,0.381,0.366,0.381,0.381,0.477,0.477,0.365,0.352,0.333,1 +0.667,0.253,0.545,0.545,0.0288,0,0.672,0.672,0.672,0,0,0,0,0,0,0,0,0,0,0.354,0.61,0.327,1,0.52,0.683,0.52,0.52,0.29,0.29,0.794,0.764,0.333,1 +0.667,0.596,0.741,0.741,0.346,0,0.733,0.733,0.733,0,0,0,0,0,0,0,0.00271,0.0255,0.0283,0.58,0.805,0.402,1,0.659,1,0.659,0.659,0.18,0.18,0.769,0.739,0,1 +1,1,0.881,0.881,0.593,0,0.764,0.764,0.764,0,0,0,0,0,0,0,0.0135,0.0114,0.0249,0.881,0.993,0.541,1,0.763,0.714,0.763,0.763,0.102,0.102,0.428,0.412,0,1 +1,0.933,0.937,0.937,0.683,0,0.733,0.733,0.733,0,0,0,0,0,0,0,0,0,0,0.937,0.937,0.758,1,0.878,0.435,0.878,0.878,0.0626,0.0626,0.384,0.37,0,1 +0.667,0.504,0.993,0.993,1,0,0.718,0.718,0.718,0,0,0,0,0,0,0,0.0203,0,0.0203,0.748,0.742,0.936,1,0.936,0.273,0.936,0.936,0.0313,0.0313,0.321,0.309,0,1 +1,0.386,0.965,0.965,0.679,0,0.703,0.703,0.703,0,0,0,0,0,0,0,0.012,0,0.012,0.729,0.717,0.887,1,0.994,0.118,0.994,0.994,0.0235,0.0235,0.271,0.261,0.333,1 +0.667,0.0495,0.825,0.825,0.132,0,0.672,0.672,0.672,0,0,0,0,0,0,0,0.0166,0,0.0166,0.258,0.465,0.536,1,0.867,0.0807,0.867,0.867,0.0235,0.0235,0.151,0.145,0.667,1 +1,0.0495,0.699,0.699,0.0658,0,0.626,0.626,0.626,0,0,0,0,0,0,0,0,0.0142,0.0142,0.258,0.465,0.232,1,0.751,0.0435,0.751,0.751,0.0235,0.0235,0.151,0.145,1,1 +1,0.0495,0.559,0.559,0,0,0.611,0.611,0.611,0,0,0,0,0,0,0,0,0.00852,0.00852,0.258,0.465,0.113,1,0.509,0.0248,0.509,0.509,0.0235,0.0235,0.151,0.145,1,1 +1,0.0495,0.517,0.517,0,0,0.596,0.596,0.596,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0567,1,0.266,0.00621,0.266,0.266,0.0235,0.0235,0.183,0.176,1,1 +1,0.0495,0.517,0.517,0,0,0.58,0.58,0.58,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0309,1,0.22,0.00621,0.22,0.22,0.0235,0.0235,0.151,0.145,1,1 +1,0.0495,0.503,0.503,0,0,0.565,0.565,0.565,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0206,1,0.173,0.0124,0.173,0.173,0.0313,0.0313,0.183,0.176,1,1 +1,0.0495,0.461,0.461,0,0,0.55,0.55,0.55,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0284,1,0.185,0.0435,0.185,0.185,0.0626,0.0626,0.296,0.285,1,1 +1,0.0495,0.503,0.503,0,0,0.55,0.55,0.55,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0361,1,0.208,0.0745,0.208,0.208,0.117,0.117,0.422,0.406,1,1 +1,0.0495,0.601,0.601,0,0,0.58,0.58,0.58,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0619,1,0.301,0.18,0.301,0.301,0.203,0.203,0.359,0.345,1,1 +1,0.0495,0.657,0.657,0,0,0.611,0.611,0.611,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.111,1,0.381,0.286,0.381,0.381,0.344,0.344,0.151,0.145,1,1 +0.667,0.0495,0.475,0.475,0,0,0.626,0.626,0.626,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.183,1,0.381,0.273,0.381,0.381,0.657,0.657,0.151,0.145,0.667,1 +0.667,0.193,0.322,0.322,0,0,0.626,0.626,0.626,0,0,0,0,0,0,0,0,0,0,0.279,0.579,0.242,1,0.37,0.255,0.37,0.37,0.947,0.947,0.12,0.115,0.333,1 +0.667,0.189,0.336,0.336,0,0,0.611,0.611,0.611,0,0,0,0,0,0,0,0,0,0,0.284,0.579,0.289,1,0.381,0.273,0.381,0.381,0.994,0.994,0.0945,0.0909,0.333,1 +0.667,0.183,0.35,0.35,0,0,0.611,0.611,0.611,0,0,0,0,0,0,0,0,0,0,0.288,0.585,0.317,1,0.381,0.286,0.381,0.381,0.947,0.947,0.0882,0.0849,0.333,1 +0.667,0.178,0.336,0.336,0,0,0.641,0.641,0.641,0,0,0,0,0,0,0,0,0,0,0.284,0.591,0.34,1,0.37,0.261,0.37,0.37,0.939,0.939,0.0882,0.0849,0.333,1 +0.667,0.305,0.392,0.392,0,0,0.641,0.641,0.641,0,0,0,0,0,0,0,0,0.0114,0.0114,0.347,0.717,0.402,1,0.37,0.236,0.37,0.37,0.704,0.704,0.0882,0.0849,0,1 +1,0.446,0.433,0.433,0,0,0.641,0.641,0.641,0,0,0,0,0,0,0,0,0.00284,0.00284,0.433,0.824,0.459,1,0.37,0.304,0.37,0.37,0.587,0.587,0.151,0.145,0,1 +1,0.513,0.447,0.447,0,0,0.626,0.626,0.626,0.0152,0.0653,0,0,0,0,0,0,0.00852,0.00852,0.447,0.862,0.505,1,0.381,0.366,0.381,0.381,0.477,0.477,0.365,0.352,0,1 +1,0.661,0.545,0.545,0.0288,0.0366,0.672,0.672,0.672,0.0174,0.0302,0,0,0,0,0,0,0.0255,0.0255,0.545,0.899,0.531,1,0.52,0.683,0.52,0.52,0.29,0.29,0.794,0.764,0,1 +1,0.869,0.741,0.741,0.346,0,0.733,0.733,0.733,0.0157,0,0,0,0,0,0,0.0194,0,0.0194,0.741,0.974,0.549,1,0.659,1,0.659,0.659,0.18,0.18,0.769,0.739,0,1 +1,1,0.881,0.881,0.593,0,0.764,0.764,0.764,0,0,0,0,0,0,0,0.029,0.00852,0.0375,0.881,0.993,0.647,1,0.763,0.714,0.763,0.763,0.102,0.102,0.428,0.412,0,1 +1,0.933,0.937,0.937,0.683,0,0.733,0.733,0.733,0,0,0,0,0,0,0,0.0227,0,0.0227,0.937,0.937,0.851,1,0.878,0.435,0.878,0.878,0.0626,0.0626,0.384,0.37,0,1 +1,0.732,0.993,0.993,1,0,0.718,0.718,0.718,0,0,0,0,0,0,0,0,0,0,0.993,0.88,1,1,0.936,0.273,0.936,0.936,0.0313,0.0313,0.321,0.309,0,1 +1,0.554,0.965,0.965,0.679,0,0.703,0.703,0.703,0,0,0,0,0,0,0,0,0,0,0.965,0.843,0.923,1,0.994,0.118,0.994,0.994,0.0235,0.0235,0.271,0.261,0,1 +1,0.488,0.825,0.825,0.132,0,0.672,0.672,0.672,0,0,0,0,0,0,0,0.00989,0.0227,0.0326,0.825,0.749,0.582,1,0.867,0.0807,0.867,0.867,0.0235,0.0235,0.151,0.145,0,1 +0.667,0.183,0.699,0.699,0.0658,0,0.626,0.626,0.626,0,0,0,0,0,0,0,0.034,0.00568,0.0397,0.552,0.605,0.265,1,0.751,0.0435,0.751,0.751,0.0235,0.0235,0.151,0.145,0,1 +0.667,0.0743,0.559,0.559,0,0,0.611,0.611,0.611,0,0,0,0,0,0,0,0.0155,0,0.0155,0.358,0.529,0.113,1,0.509,0.0248,0.509,0.509,0.0235,0.0235,0.151,0.145,0.333,1 +0.667,0.0495,0.517,0.517,0,0,0.596,0.596,0.596,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0567,1,0.266,0.00621,0.266,0.266,0.0235,0.0235,0.183,0.176,0.667,1 +1,0.0495,0.517,0.517,0,0,0.58,0.58,0.58,0,0,0,0,0,0,0,0,0.00284,0.00284,0.344,0.51,0.0309,1,0.22,0.00621,0.22,0.22,0.0235,0.0235,0.151,0.145,0.667,1 +1,0.0495,0.503,0.503,0,0,0.565,0.565,0.565,0,0,0,0,0,0,0,0,0,0,0.34,0.504,0.0206,1,0.173,0.0124,0.173,0.173,0.0313,0.0313,0.183,0.176,0.667,1 +0.667,0.0495,0.461,0.461,0,0,0.55,0.55,0.55,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0284,1,0.185,0.0435,0.185,0.185,0.0626,0.0626,0.296,0.285,0.667,1 +0.667,0.0495,0.503,0.503,0,0,0.55,0.55,0.55,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0361,1,0.208,0.0745,0.208,0.208,0.117,0.117,0.422,0.406,0.667,1 +0.667,0.0495,0.601,0.601,0,0,0.58,0.58,0.58,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.465,0.0619,1,0.301,0.18,0.301,0.301,0.203,0.203,0.359,0.345,0.667,1 +0.667,0.0495,0.657,0.657,0,0,0.611,0.611,0.611,0,0,0,0,0,0,0,0.00246,0.00568,0.00814,0.258,0.465,0.111,1,0.381,0.286,0.381,0.381,0.344,0.344,0.151,0.145,0.667,1 +0.667,0.19,0.475,0.475,0,0,0.626,0.626,0.626,0,0,0,0,0,0,0,0.0402,0,0.0402,0.33,0.579,0.183,1,0.381,0.273,0.381,0.381,0.657,0.657,0.151,0.145,0.333,1 +0.667,0.337,0.322,0.322,0,0.0853,0.626,0.626,0.626,0,0,0,0,0,0,0,0.0354,0,0.0354,0.3,0.692,0.242,1,0.37,0.255,0.37,0.37,0.947,0.947,0.12,0.115,0,1 +1,0.468,0.336,0.336,0,0.0975,0.611,0.611,0.611,0,0,0,0,0,0,0,0.0238,0,0.0238,0.336,0.806,0.289,1,0.381,0.273,0.381,0.381,0.994,0.994,0.0945,0.0909,0,1 +0.333,0.183,0.35,0.35,0,0,0.611,0.611,0.611,0,0,0,0,0,0,0,0,0,0,0.288,0.585,0.317,1,0.381,0.286,0.381,0.381,0.947,0.947,0.0882,0.0849,0,1 +0.333,0.178,0.336,0.336,0,0,0.641,0.641,0.641,0,0,0,0,0,0,0,0.0186,0.00568,0.0243,0.284,0.591,0.34,1,0.37,0.261,0.37,0.37,0.939,0.939,0.0882,0.0849,0,1 +0.667,0.305,0.392,0.392,0,0,0.641,0.641,0.641,0,0,0,0,0,0,0,0.0304,0.00852,0.039,0.347,0.717,0.402,1,0.37,0.236,0.37,0.37,0.704,0.704,0.0882,0.0849,0,1 +0.667,0.314,0.433,0.433,0,0,0.641,0.641,0.641,0,0,0,0,0,0,0,0.0124,0.00284,0.0153,0.375,0.705,0.459,1,0.37,0.304,0.37,0.37,0.587,0.587,0.151,0.145,0,1 +1,0.513,0.447,0.447,0,0,0.626,0.626,0.626,0,0,0,0,0,0,0,0.00979,0.00568,0.0155,0.447,0.862,0.505,1,0.381,0.366,0.381,0.381,0.477,0.477,0.365,0.352,0,1 +0.667,0.457,0.545,0.545,0.0288,0,0.672,0.672,0.672,0,0,0,0,0,0,0,0,0,0,0.449,0.755,0.531,1,0.52,0.683,0.52,0.52,0.29,0.29,0.794,0.764,0,1 +0.667,0.596,0.741,0.741,0.346,0,0.733,0.733,0.733,0,0,0.0123,0,0,0,0,0.0239,0,0.0239,0.58,0.805,0.549,1,0.659,1,0.659,0.659,0.18,0.18,0.769,0.739,0,1 +0.667,0.683,0.881,0.881,0.593,0,0.764,0.764,0.764,0,0,0.0197,0.0112,0,0,0,0,0.0199,0.0199,0.673,0.817,0.647,1,0.763,0.714,0.763,0.763,0.102,0.102,0.428,0.412,0,1 +0.667,0.638,0.937,0.937,0.683,0,0.733,0.733,0.733,0,0,0,0.00982,0.147,0.147,0,0,0.0142,0.0142,0.711,0.78,0.851,1,0.878,0.435,0.878,0.878,0.0626,0.0626,0.384,0.37,0,1 +0.667,0.504,0.993,0.993,1,0.0366,0.718,0.718,0.718,0.00359,0.0175,0.0158,0.000702,0.22,0.22,0,0,0,0,0.748,0.742,1,1,0.936,0.273,0.936,0.936,0.0313,0.0313,0.321,0.309,0,1 +1,0.554,0.965,0.965,0.679,0,0.703,0.703,0.703,0.0234,0.078,0.0138,0.0151,0.055,0.055,0,0,0,0,0.965,0.843,0.923,1,0.994,0.118,0.994,0.994,0.0235,0.0235,0.271,0.261,0,1 +1,0.342,0.825,0.825,0.132,0,0.672,0.672,0.672,0.00309,0,0.0359,0,0.312,0.312,0,0.00244,0,0.00244,0.636,0.655,0.582,1,0.867,0.0807,0.867,0.867,0.0235,0.0235,0.151,0.145,0.333,1 +1,0.183,0.699,0.699,0.0658,0,0.626,0.626,0.626,0,0,0.00946,0,0,0,0,0.0504,0,0.0504,0.552,0.605,0.265,1,0.751,0.0435,0.751,0.751,0.0235,0.0235,0.151,0.145,0.333,1 +1,0.099,0.559,0.559,0,0,0.611,0.611,0.611,0,0,0,0,0,0,0,0.0131,0.0142,0.0273,0.459,0.592,0.0954,1,0.509,0.0248,0.509,0.509,0.0235,0.0235,0.151,0.145,0.333,1 +1,0.0495,0.517,0.517,0,0,0.596,0.596,0.596,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0464,1,0.266,0.00621,0.266,0.266,0.0235,0.0235,0.183,0.176,1,1 +1,0.0495,0.517,0.517,0,0,0.58,0.58,0.58,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0232,1,0.22,0.00621,0.22,0.22,0.0235,0.0235,0.151,0.145,1,1 +1,0.0495,0.503,0.503,0,0,0.565,0.565,0.565,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.018,1,0.173,0.0124,0.173,0.173,0.0313,0.0313,0.183,0.176,1,1 +1,0.0513,0.461,0.461,0,0,0.55,0.55,0.55,0,0,0,0,0,0,0.0739,0.0148,0.00284,0.0916,0.326,0.51,0.0284,1,0.185,0.0435,0.185,0.185,0.0626,0.0626,0.296,0.285,0.667,1 +1,0.0829,0.503,0.503,0,0,0.55,0.55,0.55,0,0,0,0,0,0,0,0.0482,0,0.0482,0.34,0.516,0.0464,1,0.208,0.0745,0.208,0.208,0.117,0.117,0.422,0.406,0.667,1 +1,0.251,0.601,0.601,0,0,0.58,0.58,0.58,0,0,0,0,0,0,0,0.034,0,0.034,0.487,0.617,0.0747,1,0.301,0.18,0.301,0.301,0.203,0.203,0.359,0.345,0.333,1 +0.667,0.313,0.657,0.657,0,0.0122,0.611,0.611,0.611,0,0,0,0,0,0,0,0,0,0,0.524,0.68,0.103,1,0.381,0.286,0.381,0.381,0.344,0.344,0.151,0.145,0,1 +0.333,0.19,0.475,0.475,0,0.0609,0.626,0.626,0.626,0,0,0,0,0,0,0,0.0406,0.017,0.0576,0.33,0.579,0.126,1,0.381,0.273,0.381,0.381,0.657,0.657,0.151,0.145,0,1 +0.333,0.193,0.322,0.322,0,0,0.626,0.626,0.626,0,0,0,0,0,0,0,0.0295,0.00852,0.038,0.279,0.579,0.149,1,0.37,0.255,0.37,0.37,0.947,0.947,0.12,0.115,0,1 +0.333,0.189,0.336,0.336,0,0,0.611,0.611,0.611,0,0,0,0,0,0,0,0,0,0,0.284,0.579,0.168,1,0.381,0.273,0.381,0.381,0.994,0.994,0.0945,0.0909,0,1 +0.333,0.183,0.35,0.35,0,0,0.611,0.611,0.611,0,0,0,0,0,0,0,0,0,0,0.288,0.585,0.186,1,0.381,0.286,0.381,0.381,0.947,0.947,0.0882,0.0849,0,1 +0.333,0.178,0.336,0.336,0,0,0.641,0.641,0.641,0,0,0,0,0,0,0,0,0.00568,0.00568,0.284,0.591,0.196,1,0.37,0.261,0.37,0.37,0.939,0.939,0.0882,0.0849,0,1 +0.333,0.177,0.392,0.392,0,0,0.641,0.641,0.641,0,0,0,0,0,0,0,0,0.00284,0.00284,0.302,0.591,0.222,1,0.37,0.236,0.37,0.37,0.704,0.704,0.0882,0.0849,0,1 +0,0.0495,0.433,0.433,0,0,0.641,0.641,0.641,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.235,1,0.37,0.304,0.37,0.37,0.587,0.587,0.151,0.145,0,1 +0.333,0.204,0.447,0.447,0,0,0.626,0.626,0.626,0,0,0,0,0,0,0,0,0,0,0.321,0.597,0.263,1,0.381,0.366,0.381,0.381,0.477,0.477,0.365,0.352,0,1 +0.333,0.253,0.545,0.545,0.0288,0,0.672,0.672,0.672,0,0,0,0,0,0,0,0,0.00568,0.00568,0.354,0.61,0.327,1,0.52,0.683,0.52,0.52,0.29,0.29,0.794,0.764,0,1 +0.667,0.596,0.741,0.741,0.346,0.0487,0.733,0.733,0.733,0,0,0,0,0,0,0,0,0.0114,0.0114,0.58,0.805,0.402,1,0.659,1,0.659,0.659,0.18,0.18,0.769,0.739,0,1 +0.667,0.683,0.881,0.881,0.593,0.0244,0.764,0.764,0.764,0,0,0,0,0,0,0,0,0,0,0.673,0.817,0.541,1,0.763,0.714,0.763,0.763,0.102,0.102,0.428,0.412,0,1 +0.667,0.638,0.937,0.937,0.683,0,0.733,0.733,0.733,0.0164,0.0716,0,0,0,0,0,0.0282,0.00284,0.0311,0.711,0.78,0.758,1,0.878,0.435,0.878,0.878,0.0626,0.0626,0.384,0.37,0,1 +1,0.732,0.993,0.993,1,0,0.718,0.718,0.718,0,0,0,0,0,0,0,0.0173,0.00568,0.023,0.993,0.88,0.936,1,0.936,0.273,0.936,0.936,0.0313,0.0313,0.321,0.309,0,1 +1,0.386,0.965,0.965,0.679,0,0.703,0.703,0.703,0,0,0,0,0,0,0,0.0148,0.00852,0.0233,0.729,0.717,0.887,1,0.994,0.118,0.994,0.994,0.0235,0.0235,0.271,0.261,0.333,1 +1,0.196,0.825,0.825,0.132,0,0.672,0.672,0.672,0,0,0,0,0,0,0,0,0.00852,0.00852,0.447,0.56,0.536,1,0.867,0.0807,0.867,0.867,0.0235,0.0235,0.151,0.145,0.667,1 +1,0.116,0.699,0.699,0.0658,0.0366,0.626,0.626,0.626,0,0,0,0,0,0,0,0,0,0,0.405,0.535,0.232,1,0.751,0.0435,0.751,0.751,0.0235,0.0235,0.151,0.145,0.667,1 +1,0.0495,0.559,0.559,0,0,0.611,0.611,0.611,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0954,1,0.509,0.0248,0.509,0.509,0.0235,0.0235,0.151,0.145,1,1 +1,0.0495,0.517,0.517,0,0,0.596,0.596,0.596,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0464,1,0.266,0.00621,0.266,0.266,0.0235,0.0235,0.183,0.176,1,1 +1,0.0495,0.517,0.517,0,0,0.58,0.58,0.58,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0232,1,0.22,0.00621,0.22,0.22,0.0235,0.0235,0.151,0.145,1,1 +1,0.0495,0.503,0.503,0,0,0.565,0.565,0.565,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.018,1,0.173,0.0124,0.173,0.173,0.0313,0.0313,0.183,0.176,1,1 +1,0.0495,0.461,0.461,0,0,0.55,0.55,0.55,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0284,1,0.185,0.0435,0.185,0.185,0.0626,0.0626,0.296,0.285,1,1 +1,0.0495,0.503,0.503,0,0,0.55,0.55,0.55,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0464,1,0.208,0.0745,0.208,0.208,0.117,0.117,0.422,0.406,1,1 +1,0.0495,0.601,0.601,0,0,0.58,0.58,0.58,0,0,0,0,0,0,0,0.00247,0,0.00247,0.258,0.465,0.0747,1,0.301,0.18,0.301,0.301,0.203,0.203,0.359,0.345,1,1 +0.667,0.313,0.657,0.657,0,0,0.611,0.611,0.611,0,0,0,0,0,0,0,0.0173,0,0.0173,0.524,0.68,0.103,1,0.381,0.286,0.381,0.381,0.344,0.344,0.151,0.145,0,1 +0.667,0.33,0.475,0.475,0,0,0.626,0.626,0.626,0,0,0,0,0,0,0,0,0,0,0.403,0.692,0.126,1,0.381,0.273,0.381,0.381,0.657,0.657,0.151,0.145,0,1 +0.667,0.337,0.322,0.322,0,0,0.626,0.626,0.626,0,0,0,0,0,0,0,0,0,0,0.3,0.692,0.149,1,0.37,0.255,0.37,0.37,0.947,0.947,0.12,0.115,0,1 +0.333,0.189,0.336,0.336,0,0,0.611,0.611,0.611,0,0,0,0,0,0,0,0.0143,0,0.0143,0.284,0.579,0.168,1,0.381,0.273,0.381,0.381,0.994,0.994,0.0945,0.0909,0,1 +0.333,0.183,0.35,0.35,0,0,0.611,0.611,0.611,0,0,0,0,0,0,0,0.0172,0.017,0.0343,0.288,0.585,0.186,1,0.381,0.286,0.381,0.381,0.947,0.947,0.0882,0.0849,0,1 +0.333,0.178,0.336,0.336,0,0,0.641,0.641,0.641,0,0,0,0,0,0,0,0,0.0199,0.0199,0.284,0.591,0.196,1,0.37,0.261,0.37,0.37,0.939,0.939,0.0882,0.0849,0,1 +0.333,0.177,0.392,0.392,0,0,0.641,0.641,0.641,0,0,0,0,0,0,0,0,0,0,0.302,0.591,0.222,1,0.37,0.236,0.37,0.37,0.704,0.704,0.0882,0.0849,0,1 +0.333,0.182,0.433,0.433,0,0,0.641,0.641,0.641,0,0,0,0,0,0,0,0,0.00284,0.00284,0.316,0.585,0.235,1,0.37,0.304,0.37,0.37,0.587,0.587,0.151,0.145,0,1 +0.333,0.204,0.447,0.447,0,0,0.626,0.626,0.626,0,0,0,0,0,0,0,0,0,0,0.321,0.597,0.263,1,0.381,0.366,0.381,0.381,0.477,0.477,0.365,0.352,0,1 +0.667,0.457,0.545,0.545,0.0288,0,0.672,0.672,0.672,0,0,0,0,0,0,0,0,0.00568,0.00568,0.449,0.755,0.327,1,0.52,0.683,0.52,0.52,0.29,0.29,0.794,0.764,0,1 +1,0.869,0.741,0.741,0.346,0.0853,0.733,0.733,0.733,0,0,0.0248,0.00596,0,0,0,0.0246,0.00568,0.0303,0.741,0.974,0.402,1,0.659,1,0.659,0.659,0.18,0.18,0.769,0.739,0,1 +0.667,0.683,0.881,0.881,0.593,0.0975,0.764,0.764,0.764,0,0,0.0409,0.00982,0.147,0.147,0,0.0317,0.00852,0.0402,0.673,0.817,0.541,1,0.763,0.714,0.763,0.763,0.102,0.102,0.428,0.412,0,1 +0.667,0.638,0.937,0.937,0.683,0,0.733,0.733,0.733,0,0,0.00702,0,0.128,0.128,0,0.0192,0.00284,0.022,0.711,0.78,0.758,1,0.878,0.435,0.878,0.878,0.0626,0.0626,0.384,0.37,0,1 +0.667,0.504,0.993,0.993,1,0,0.718,0.718,0.718,0,0,0,0,0,0,0,0.0212,0.00568,0.0269,0.748,0.742,0.936,1,0.936,0.273,0.936,0.936,0.0313,0.0313,0.321,0.309,0,1 +0.667,0.218,0.965,0.965,0.679,0,0.703,0.703,0.703,0,0,0,0,0,0,0,0,0.00568,0.00568,0.493,0.591,0.887,1,0.994,0.118,0.994,0.994,0.0235,0.0235,0.271,0.261,0.333,1 +1,0.196,0.825,0.825,0.132,0,0.672,0.672,0.672,0,0,0,0,0,0,0,0,0.00568,0.00568,0.447,0.56,0.536,1,0.867,0.0807,0.867,0.867,0.0235,0.0235,0.151,0.145,0.667,1 +1,0.116,0.699,0.699,0.0658,0,0.626,0.626,0.626,0,0,0,0,0,0,0,0,0.00284,0.00284,0.405,0.535,0.232,1,0.751,0.0435,0.751,0.751,0.0235,0.0235,0.151,0.145,0.667,1 +1,0.0495,0.559,0.559,0,0,0.611,0.611,0.611,0,0,0,0,0,0,0,0,0.00568,0.00568,0.258,0.465,0.0954,1,0.509,0.0248,0.509,0.509,0.0235,0.0235,0.151,0.145,1,1 +1,0.0495,0.517,0.517,0,0,0.596,0.596,0.596,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0464,1,0.266,0.00621,0.266,0.266,0.0235,0.0235,0.183,0.176,1,1 +1,0.0495,0.517,0.517,0,0,0.58,0.58,0.58,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0232,1,0.22,0.00621,0.22,0.22,0.0235,0.0235,0.151,0.145,1,1 +1,0.0495,0.503,0.503,0,0,0.565,0.565,0.565,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.465,0.018,1,0.173,0.0124,0.173,0.173,0.0313,0.0313,0.183,0.176,1,1 +1,0.0495,0.461,0.461,0,0,0.55,0.55,0.55,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0284,1,0.185,0.0435,0.185,0.185,0.0626,0.0626,0.296,0.285,1,1 +1,0.0495,0.503,0.503,0,0,0.55,0.55,0.55,0,0,0,0,0,0,0,0.00256,0,0.00256,0.258,0.465,0.0464,1,0.208,0.0745,0.208,0.208,0.117,0.117,0.422,0.406,1,1 +1,0.251,0.601,0.601,0,0.0366,0.58,0.58,0.58,0,0,0,0,0,0,0,0.0293,0,0.0293,0.487,0.617,0.0747,1,0.301,0.18,0.301,0.301,0.203,0.203,0.359,0.345,0.333,1 +1,0.444,0.657,0.657,0,0,0.611,0.611,0.611,0,0,0,0,0,0,0,0.0172,0,0.0172,0.657,0.787,0.103,1,0.381,0.286,0.381,0.381,0.344,0.344,0.151,0.145,0,1 +1,0.47,0.475,0.475,0,0,0.626,0.626,0.626,0.0158,0.0478,0.0354,0.000702,0,0,0,0.0457,0,0.0457,0.475,0.806,0.126,1,0.381,0.273,0.381,0.381,0.657,0.657,0.151,0.145,0,1 +1,0.481,0.322,0.322,0,0,0.626,0.626,0.626,0.00758,0,0.0387,0.0151,0.055,0.055,0,0.0138,0,0.0138,0.322,0.806,0.149,1,0.37,0.255,0.37,0.37,0.947,0.947,0.12,0.115,0,1 +1,0.468,0.336,0.336,0,0,0.611,0.611,0.611,0,0,0.0292,0,0.22,0.22,0,0.0342,0.00284,0.037,0.336,0.806,0.168,1,0.381,0.273,0.381,0.381,0.994,0.994,0.0945,0.0909,0,1 +0.667,0.316,0.35,0.35,0,0,0.611,0.611,0.611,0,0,0.0228,0,0,0,0,0,0.0114,0.0114,0.319,0.705,0.186,1,0.381,0.286,0.381,0.381,0.947,0.947,0.0882,0.0849,0,1 +0.667,0.307,0.336,0.336,0,0,0.641,0.641,0.641,0,0,0,0,0,0,0,0,0,0,0.31,0.717,0.196,1,0.37,0.261,0.37,0.37,0.939,0.939,0.0882,0.0849,0,1 +0.333,0.177,0.392,0.392,0,0,0.641,0.641,0.641,0,0,0,0,0,0,0,0,0.00568,0.00568,0.302,0.591,0.222,1,0.37,0.236,0.37,0.37,0.704,0.704,0.0882,0.0849,0,1 +1,0.446,0.433,0.433,0,0,0.641,0.641,0.641,0,0,0,0,0,0,0,0,0,0,0.433,0.824,0.235,1,0.37,0.304,0.37,0.37,0.587,0.587,0.151,0.145,0,1 +1,0.513,0.447,0.447,0,0,0.626,0.626,0.626,0,0,0,0,0,0,0,0,0.017,0.017,0.447,0.862,0.263,1,0.381,0.366,0.381,0.381,0.477,0.477,0.365,0.352,0,1 +1,0.661,0.545,0.545,0.0288,0,0.672,0.672,0.672,0.00399,0.0175,0,0,0,0,0,0,0.00284,0.00284,0.545,0.899,0.327,1,0.52,0.683,0.52,0.52,0.29,0.29,0.794,0.764,0,1 +0.667,0.596,0.741,0.741,0.346,0.0487,0.733,0.733,0.733,0.0181,0.0302,0,0,0,0,0,0,0.00284,0.00284,0.58,0.805,0.402,1,0.659,1,0.659,0.659,0.18,0.18,0.769,0.739,0,1 +0.667,0.683,0.881,0.881,0.593,0.0609,0.764,0.764,0.764,0,0,0,0,0,0,0,0,0.00568,0.00568,0.673,0.817,0.541,1,0.763,0.714,0.763,0.763,0.102,0.102,0.428,0.412,0,1 +1,0.933,0.937,0.937,0.683,0,0.733,0.733,0.733,0,0,0,0,0,0,0,0,0.0199,0.0199,0.937,0.937,0.758,1,0.878,0.435,0.878,0.878,0.0626,0.0626,0.384,0.37,0,1 +1,0.732,0.993,0.993,1,0,0.718,0.718,0.718,0,0,0,0,0,0,0,0,0.0114,0.0114,0.993,0.88,0.936,1,0.936,0.273,0.936,0.936,0.0313,0.0313,0.321,0.309,0,1 +1,0.386,0.965,0.965,0.679,0,0.703,0.703,0.703,0,0,0,0,0,0,0,0,0.00284,0.00284,0.729,0.717,0.887,1,0.994,0.118,0.994,0.994,0.0235,0.0235,0.271,0.261,0.333,1 +1,0.342,0.825,0.825,0.132,0,0.672,0.672,0.672,0,0,0,0,0,0,0,0,0,0,0.636,0.655,0.536,1,0.867,0.0807,0.867,0.867,0.0235,0.0235,0.151,0.145,0.333,1 +1,0.183,0.699,0.699,0.0658,0,0.626,0.626,0.626,0,0,0,0,0,0,0,0,0.00284,0.00284,0.552,0.605,0.232,1,0.751,0.0435,0.751,0.751,0.0235,0.0235,0.151,0.145,0.333,1 +1,0.0743,0.559,0.559,0,0,0.611,0.611,0.611,0,0,0,0,0,0,0,0.00252,0,0.00252,0.358,0.529,0.0954,1,0.509,0.0248,0.509,0.509,0.0235,0.0235,0.151,0.145,0.667,1 +1,0.0578,0.517,0.517,0,0,0.596,0.596,0.596,0,0,0,0,0,0,0,0.0364,0,0.0364,0.344,0.516,0.0464,1,0.266,0.00621,0.266,0.266,0.0235,0.0235,0.183,0.176,0.667,1 +1,0.0495,0.517,0.517,0,0,0.58,0.58,0.58,0,0,0,0,0,0,0,0.0135,0,0.0135,0.344,0.51,0.0232,1,0.22,0.00621,0.22,0.22,0.0235,0.0235,0.151,0.145,0.667,1 +1,0.0495,0.503,0.503,0,0,0.565,0.565,0.565,0,0,0,0,0,0,0.0502,0.0231,0,0.0733,0.34,0.504,0.018,1,0.173,0.0124,0.173,0.173,0.0313,0.0313,0.183,0.176,0.667,1 +1,0.0495,0.461,0.461,0,0,0.55,0.55,0.55,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.465,0.0284,1,0.185,0.0435,0.185,0.185,0.0626,0.0626,0.296,0.285,1,1 +1,0.0495,0.503,0.503,0,0,0.55,0.55,0.55,0,0,0,0,0,0,0,0.00245,0,0.00245,0.258,0.465,0.0464,1,0.208,0.0745,0.208,0.208,0.117,0.117,0.422,0.406,1,1 +0.667,0.15,0.601,0.601,0,0,0.58,0.58,0.58,0,0,0,0,0,0,0,0.0402,0.0284,0.0686,0.372,0.541,0.0747,1,0.301,0.18,0.301,0.301,0.203,0.203,0.359,0.345,0.333,1 +0.667,0.181,0.657,0.657,0,0,0.611,0.611,0.611,0,0,0,0,0,0,0,0,0.0114,0.0114,0.391,0.572,0.103,1,0.381,0.286,0.381,0.381,0.344,0.344,0.151,0.145,0.333,1 +0.333,0.0495,0.475,0.475,0,0,0.626,0.626,0.626,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.126,1,0.381,0.273,0.381,0.381,0.657,0.657,0.151,0.145,0.333,1 +0.333,0.193,0.322,0.322,0,0,0.626,0.626,0.626,0,0,0,0,0,0,0,0,0,0,0.279,0.579,0.149,1,0.37,0.255,0.37,0.37,0.947,0.947,0.12,0.115,0,1 +0.333,0.189,0.336,0.336,0,0,0.611,0.611,0.611,0,0,0,0,0,0,0,0,0,0,0.284,0.579,0.168,1,0.381,0.273,0.381,0.381,0.994,0.994,0.0945,0.0909,0,1 +0.333,0.183,0.35,0.35,0,0,0.611,0.611,0.611,0,0,0,0,0,0,0,0,0,0,0.288,0.585,0.186,1,0.381,0.286,0.381,0.381,0.947,0.947,0.0882,0.0849,0,1 +0.333,0.178,0.336,0.336,0,0,0.641,0.641,0.641,0,0,0.000877,0,0,0,0,0,0,0,0.284,0.591,0.196,1,0.37,0.261,0.37,0.37,0.939,0.939,0.0882,0.0849,0,1 +0.333,0.0495,0.392,0.392,0,0,0.641,0.641,0.641,0,0,0.0466,0.0112,0,0,0,0,0,0,0.258,0.465,0.222,1,0.37,0.236,0.37,0.37,0.704,0.704,0.0882,0.0849,0.333,1 +0.333,0.182,0.433,0.433,0,0,0.641,0.641,0.641,0,0,0.0238,0.00456,0.238,0.238,0,0,0.00852,0.00852,0.316,0.585,0.235,1,0.37,0.304,0.37,0.37,0.587,0.587,0.151,0.145,0,1 +0.333,0.204,0.447,0.447,0,0,0.626,0.626,0.626,0,0,0,0,0.128,0.128,0,0,0.0114,0.0114,0.321,0.597,0.263,1,0.381,0.366,0.381,0.381,0.477,0.477,0.365,0.352,0,1 +0.333,0.253,0.545,0.545,0.0288,0,0.672,0.672,0.672,0,0,0,0,0,0,0,0,0.00852,0.00852,0.354,0.61,0.327,1,0.52,0.683,0.52,0.52,0.29,0.29,0.794,0.764,0,1 +0.333,0.323,0.741,0.741,0.346,0,0.733,0.733,0.733,0,0,0,0,0,0,0,0,0.00568,0.00568,0.419,0.635,0.402,1,0.659,1,0.659,0.659,0.18,0.18,0.769,0.739,0,1 +0.667,0.683,0.881,0.881,0.593,0,0.764,0.764,0.764,0,0,0,0,0,0,0,0,0.00284,0.00284,0.673,0.817,0.541,1,0.763,0.714,0.763,0.763,0.102,0.102,0.428,0.412,0,1 +0.667,0.638,0.937,0.937,0.683,0,0.733,0.733,0.733,0,0,0,0,0,0,0,0.00257,0.00568,0.00825,0.711,0.78,0.758,1,0.878,0.435,0.878,0.878,0.0626,0.0626,0.384,0.37,0,1 +0.667,0.504,0.993,0.993,1,0,0.718,0.718,0.718,0,0,0,0,0,0,0,0.0154,0.00284,0.0182,0.748,0.742,0.936,1,0.936,0.273,0.936,0.936,0.0313,0.0313,0.321,0.309,0,1 +1,0.218,0.965,0.965,0.679,0,0.703,0.703,0.703,0,0,0,0,0,0,0,0,0.00284,0.00284,0.493,0.591,0.887,1,0.994,0.118,0.994,0.994,0.0235,0.0235,0.271,0.261,0.667,1 +1,0.196,0.825,0.825,0.132,0,0.672,0.672,0.672,0,0,0,0,0,0,0,0,0,0,0.447,0.56,0.536,1,0.867,0.0807,0.867,0.867,0.0235,0.0235,0.151,0.145,0.667,1 +1,0.116,0.699,0.699,0.0658,0,0.626,0.626,0.626,0,0,0,0,0,0,0,0,0.00284,0.00284,0.405,0.535,0.232,1,0.751,0.0435,0.751,0.751,0.0235,0.0235,0.151,0.145,0.667,1 +1,0.0743,0.559,0.559,0,0,0.611,0.611,0.611,0,0,0,0,0,0,0,0,0,0,0.358,0.529,0.0954,1,0.509,0.0248,0.509,0.509,0.0235,0.0235,0.151,0.145,0.667,1 +1,0.0578,0.517,0.517,0,0,0.596,0.596,0.596,0,0,0,0,0,0,0,0,0,0,0.344,0.516,0.0464,1,0.266,0.00621,0.266,0.266,0.0235,0.0235,0.183,0.176,0.667,1 +1,0.0495,0.517,0.517,0,0,0.58,0.58,0.58,0,0,0,0,0,0,0,0.0126,0,0.0126,0.344,0.51,0.0232,1,0.22,0.00621,0.22,0.22,0.0235,0.0235,0.151,0.145,0.667,1 +1,0.0495,0.503,0.503,0,0,0.565,0.565,0.565,0,0,0,0,0,0,0,0.0512,0,0.0512,0.34,0.504,0.018,1,0.173,0.0124,0.173,0.173,0.0313,0.0313,0.183,0.176,0.667,1 +1,0.0495,0.461,0.461,0,0,0.55,0.55,0.55,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0284,1,0.185,0.0435,0.185,0.185,0.0626,0.0626,0.296,0.285,1,1 +1,0.0495,0.503,0.503,0,0,0.55,0.55,0.55,0,0,0,0,0,0,0,0.0248,0,0.0248,0.258,0.465,0.0464,1,0.208,0.0745,0.208,0.208,0.117,0.117,0.422,0.406,1,1 +0.667,0.0495,0.601,0.601,0,0,0.58,0.58,0.58,0,0,0,0,0,0,0,0.00271,0,0.00271,0.258,0.465,0.0747,1,0.301,0.18,0.301,0.301,0.203,0.203,0.359,0.345,0.667,1 +0.667,0.181,0.657,0.657,0,0,0.611,0.611,0.611,0,0,0,0,0,0,0,0.0217,0.00852,0.0302,0.391,0.572,0.103,1,0.381,0.286,0.381,0.381,0.344,0.344,0.151,0.145,0.333,1 +0.333,0.19,0.475,0.475,0,0,0.626,0.626,0.626,0,0,0,0,0,0,0,0,0,0,0.33,0.579,0.126,1,0.381,0.273,0.381,0.381,0.657,0.657,0.151,0.145,0,1 +0.333,0.193,0.322,0.322,0,0,0.626,0.626,0.626,0,0,0,0,0,0,0,0,0,0,0.279,0.579,0.149,1,0.37,0.255,0.37,0.37,0.947,0.947,0.12,0.115,0,1 +0,0.0495,0.336,0.336,0,0,0.611,0.611,0.611,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.168,1,0.381,0.273,0.381,0.381,0.994,0.994,0.0945,0.0909,0,1 +0,0.0495,0.35,0.35,0,0,0.611,0.611,0.611,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.186,1,0.381,0.286,0.381,0.381,0.947,0.947,0.0882,0.0849,0,1 +0.333,0.178,0.336,0.336,0,0.0366,0.641,0.641,0.641,0,0,0,0,0,0,0,0,0.00852,0.00852,0.284,0.591,0.196,1,0.37,0.261,0.37,0.37,0.939,0.939,0.0882,0.0849,0,1 +0.333,0.177,0.392,0.392,0,0,0.641,0.641,0.641,0.0104,0.0414,0,0,0,0,0,0,0,0,0.302,0.591,0.222,1,0.37,0.236,0.37,0.37,0.704,0.704,0.0882,0.0849,0,1 +0.333,0.182,0.433,0.433,0,0,0.641,0.641,0.641,0.0116,0.0955,0,0,0,0,0,0,0,0,0.316,0.585,0.235,1,0.37,0.304,0.37,0.37,0.587,0.587,0.151,0.145,0,1 +0.333,0.204,0.447,0.447,0,0,0.626,0.626,0.626,0,0.00637,0,0,0,0,0,0,0.00284,0.00284,0.321,0.597,0.263,1,0.381,0.366,0.381,0.381,0.477,0.477,0.365,0.352,0,1 +0.333,0.253,0.545,0.545,0.0288,0,0.672,0.672,0.672,0,0,0,0,0,0,0,0,0.017,0.017,0.354,0.61,0.327,1,0.52,0.683,0.52,0.52,0.29,0.29,0.794,0.764,0,1 +0.667,0.596,0.741,0.741,0.346,0,0.733,0.733,0.733,0,0,0,0,0,0,0,0,0.00284,0.00284,0.58,0.805,0.402,1,0.659,1,0.659,0.659,0.18,0.18,0.769,0.739,0,1 +1,1,0.881,0.881,0.593,0.0853,0.764,0.764,0.764,0,0,0,0,0,0,0,0,0.00568,0.00568,0.881,0.993,0.541,1,0.763,0.714,0.763,0.763,0.102,0.102,0.428,0.412,0,1 +0.667,0.638,0.937,0.937,0.683,0.0244,0.733,0.733,0.733,0,0,0,0,0,0,0,0.0408,0.00284,0.0436,0.711,0.78,0.758,1,0.878,0.435,0.878,0.878,0.0626,0.0626,0.384,0.37,0,1 +0.667,0.504,0.993,0.993,1,0,0.718,0.718,0.718,0,0,0,0,0,0,0,0.0243,0.0114,0.0357,0.748,0.742,0.936,1,0.936,0.273,0.936,0.936,0.0313,0.0313,0.321,0.309,0,1 +0.667,0.386,0.965,0.965,0.679,0.0122,0.703,0.703,0.703,0,0,0,0,0,0,0,0.0132,0.00284,0.0161,0.729,0.717,0.887,1,0.994,0.118,0.994,0.994,0.0235,0.0235,0.271,0.261,0,1 +1,0.196,0.825,0.825,0.132,0.146,0.672,0.672,0.672,0,0,0,0,0,0,0,0,0.00568,0.00568,0.447,0.56,0.536,1,0.867,0.0807,0.867,0.867,0.0235,0.0235,0.151,0.145,0.667,1 +1,0.116,0.699,0.699,0.0658,0.146,0.626,0.626,0.626,0,0,0,0,0,0,0,0,0,0,0.405,0.535,0.232,1,0.751,0.0435,0.751,0.751,0.0235,0.0235,0.151,0.145,0.667,1 +1,0.0495,0.559,0.559,0,0.146,0.611,0.611,0.611,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.113,1,0.509,0.0248,0.509,0.509,0.0235,0.0235,0.151,0.145,1,1 +1,0.0495,0.517,0.517,0,0.0244,0.596,0.596,0.596,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0567,1,0.266,0.00621,0.266,0.266,0.0235,0.0235,0.183,0.176,1,1 +1,0.0495,0.517,0.517,0,0,0.58,0.58,0.58,0,0,0,0,0,0,0,0,0,0,0.344,0.51,0.0309,1,0.22,0.00621,0.22,0.22,0.0235,0.0235,0.151,0.145,0.667,1 +1,0.0495,0.503,0.503,0,0,0.565,0.565,0.565,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0206,1,0.173,0.0124,0.173,0.173,0.0313,0.0313,0.183,0.176,1,1 +1,0.0495,0.461,0.461,0,0,0.55,0.55,0.55,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0284,1,0.185,0.0435,0.185,0.185,0.0626,0.0626,0.296,0.285,1,1 +1,0.0495,0.503,0.503,0,0,0.55,0.55,0.55,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0361,1,0.208,0.0745,0.208,0.208,0.117,0.117,0.422,0.406,1,1 +1,0.0495,0.601,0.601,0,0,0.58,0.58,0.58,0,0,0,0,0,0,0,0.00273,0.017,0.0198,0.258,0.465,0.0619,1,0.301,0.18,0.301,0.301,0.203,0.203,0.359,0.345,1,1 +1,0.181,0.657,0.657,0,0,0.611,0.611,0.611,0,0,0,0,0,0,0,0.035,0,0.035,0.391,0.572,0.111,1,0.381,0.286,0.381,0.381,0.344,0.344,0.151,0.145,0.667,1 +1,0.33,0.475,0.475,0,0,0.626,0.626,0.626,0,0,0,0,0,0,0,0.0101,0,0.0101,0.403,0.692,0.183,1,0.381,0.273,0.381,0.381,0.657,0.657,0.151,0.145,0.333,1 +1,0.481,0.322,0.322,0,0,0.626,0.626,0.626,0,0,0,0,0,0,0,0.0555,0,0.0555,0.322,0.806,0.242,1,0.37,0.255,0.37,0.37,0.947,0.947,0.12,0.115,0,1 +0.667,0.328,0.336,0.336,0,0,0.611,0.611,0.611,0,0,0,0,0,0,0,0.0423,0,0.0423,0.31,0.692,0.289,1,0.381,0.273,0.381,0.381,0.994,0.994,0.0945,0.0909,0,1 +0.333,0.183,0.35,0.35,0,0,0.611,0.611,0.611,0,0,0,0,0,0,0,0,0.00568,0.00568,0.288,0.585,0.317,1,0.381,0.286,0.381,0.381,0.947,0.947,0.0882,0.0849,0,1 +0.333,0.178,0.336,0.336,0,0,0.641,0.641,0.641,0,0,0,0,0,0,0,0,0,0,0.284,0.591,0.34,1,0.37,0.261,0.37,0.37,0.939,0.939,0.0882,0.0849,0,1 +0.333,0.177,0.392,0.392,0,0,0.641,0.641,0.641,0,0,0,0,0,0,0,0,0,0,0.302,0.591,0.402,1,0.37,0.236,0.37,0.37,0.704,0.704,0.0882,0.0849,0,1 +0.667,0.314,0.433,0.433,0,0,0.641,0.641,0.641,0,0,0,0,0,0,0,0,0.00284,0.00284,0.375,0.705,0.459,1,0.37,0.304,0.37,0.37,0.587,0.587,0.151,0.145,0,1 +0.667,0.359,0.447,0.447,0,0,0.626,0.626,0.626,0,0,0,0,0,0,0,0,0.00568,0.00568,0.384,0.73,0.505,1,0.381,0.366,0.381,0.381,0.477,0.477,0.365,0.352,0,1 +0.667,0.457,0.545,0.545,0.0288,0,0.672,0.672,0.672,0,0,0,0,0,0,0,0,0,0,0.449,0.755,0.531,1,0.52,0.683,0.52,0.52,0.29,0.29,0.794,0.764,0,1 +1,0.869,0.741,0.741,0.346,0.0853,0.733,0.733,0.733,0,0,0,0,0,0,0,0,0.00284,0.00284,0.741,0.974,0.549,1,0.659,1,0.659,0.659,0.18,0.18,0.769,0.739,0,1 +1,1,0.881,0.881,0.593,0.146,0.764,0.764,0.764,0,0,0,0,0,0,0,0.00947,0.0227,0.0322,0.881,0.993,0.647,1,0.763,0.714,0.763,0.763,0.102,0.102,0.428,0.412,0,1 +1,0.933,0.937,0.937,0.683,0.0244,0.733,0.733,0.733,0,0,0,0,0,0,0,0.0151,0.0114,0.0264,0.937,0.937,0.851,1,0.878,0.435,0.878,0.878,0.0626,0.0626,0.384,0.37,0,1 +1,0.732,0.993,0.993,1,0,0.718,0.718,0.718,0,0,0,0,0,0,0,0.0304,0.00852,0.0389,0.993,0.88,1,1,0.936,0.273,0.936,0.936,0.0313,0.0313,0.321,0.309,0,1 +1,0.554,0.965,0.965,0.679,0,0.703,0.703,0.703,0,0,0,0,0,0,0,0,0.00284,0.00284,0.965,0.843,0.923,1,0.994,0.118,0.994,0.994,0.0235,0.0235,0.271,0.261,0,1 +1,0.342,0.825,0.825,0.132,0,0.672,0.672,0.672,0,0,0,0,0,0,0,0,0.0255,0.0255,0.636,0.655,0.582,1,0.867,0.0807,0.867,0.867,0.0235,0.0235,0.151,0.145,0.333,1 +1,0.183,0.699,0.699,0.0658,0,0.626,0.626,0.626,0,0,0,0,0,0,0,0,0,0,0.552,0.605,0.265,1,0.751,0.0435,0.751,0.751,0.0235,0.0235,0.151,0.145,0.333,1 +1,0.099,0.559,0.559,0,0,0.611,0.611,0.611,0,0,0,0,0,0,0,0,0,0,0.459,0.592,0.113,1,0.509,0.0248,0.509,0.509,0.0235,0.0235,0.151,0.145,0.333,1 +1,0.0578,0.517,0.517,0,0,0.596,0.596,0.596,0,0,0,0,0,0,0,0,0,0,0.344,0.516,0.0567,1,0.266,0.00621,0.266,0.266,0.0235,0.0235,0.183,0.176,0.667,1 +1,0.0495,0.517,0.517,0,0,0.58,0.58,0.58,0,0,0,0,0,0,0,0,0.00284,0.00284,0.344,0.51,0.0309,1,0.22,0.00621,0.22,0.22,0.0235,0.0235,0.151,0.145,0.667,1 +1,0.0495,0.503,0.503,0,0,0.565,0.565,0.565,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0206,1,0.173,0.0124,0.173,0.173,0.0313,0.0313,0.183,0.176,1,1 +1,0.0495,0.461,0.461,0,0,0.55,0.55,0.55,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0284,1,0.185,0.0435,0.185,0.185,0.0626,0.0626,0.296,0.285,1,1 +1,0.0495,0.503,0.503,0,0,0.55,0.55,0.55,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0361,1,0.208,0.0745,0.208,0.208,0.117,0.117,0.422,0.406,1,1 +1,0.15,0.601,0.601,0,0,0.58,0.58,0.58,0,0,0,0,0,0,0,0,0.00284,0.00284,0.372,0.541,0.0619,1,0.301,0.18,0.301,0.301,0.203,0.203,0.359,0.345,0.667,1 +1,0.181,0.657,0.657,0,0.122,0.611,0.611,0.611,0,0,0,0,0,0,0,0.0282,0,0.0282,0.391,0.572,0.111,1,0.381,0.286,0.381,0.381,0.344,0.344,0.151,0.145,0.667,1 +1,0.19,0.475,0.475,0,0.0244,0.626,0.626,0.626,0,0,0,0,0,0,0,0.0179,0,0.0179,0.33,0.579,0.183,1,0.381,0.273,0.381,0.381,0.657,0.657,0.151,0.145,0.667,1 +0.667,0.193,0.322,0.322,0,0,0.626,0.626,0.626,0,0,0,0,0,0,0,0.0334,0,0.0334,0.279,0.579,0.242,1,0.37,0.255,0.37,0.37,0.947,0.947,0.12,0.115,0.333,1 +0.667,0.328,0.336,0.336,0,0.122,0.611,0.611,0.611,0,0,0,0,0,0,0,0,0.00852,0.00852,0.31,0.692,0.289,1,0.381,0.273,0.381,0.381,0.994,0.994,0.0945,0.0909,0,1 +0.667,0.316,0.35,0.35,0,0.0244,0.611,0.611,0.611,0,0,0,0,0,0,0,0.0282,0.0227,0.0509,0.319,0.705,0.317,1,0.381,0.286,0.381,0.381,0.947,0.947,0.0882,0.0849,0,1 +0.333,0.178,0.336,0.336,0,0,0.641,0.641,0.641,0,0,0,0,0,0,0,0,0,0,0.284,0.591,0.34,1,0.37,0.261,0.37,0.37,0.939,0.939,0.0882,0.0849,0,1 +0.333,0.177,0.392,0.392,0,0,0.641,0.641,0.641,0,0,0,0,0,0,0,0,0.00284,0.00284,0.302,0.591,0.402,1,0.37,0.236,0.37,0.37,0.704,0.704,0.0882,0.0849,0,1 +0.667,0.314,0.433,0.433,0,0.0122,0.641,0.641,0.641,0,0,0.0261,0.000702,0,0,0,0,0,0,0.375,0.705,0.459,1,0.37,0.304,0.37,0.37,0.587,0.587,0.151,0.145,0,1 +1,0.513,0.447,0.447,0,0.0244,0.626,0.626,0.626,0,0,0.00312,0.0203,0,0,0,0,0,0,0.447,0.862,0.505,1,0.381,0.366,0.381,0.381,0.477,0.477,0.365,0.352,0,1 +1,0.661,0.545,0.545,0.0288,0,0.672,0.672,0.672,0,0,0,0,0.33,0.33,0,0,0.00852,0.00852,0.545,0.899,0.531,1,0.52,0.683,0.52,0.52,0.29,0.29,0.794,0.764,0,1 +1,0.596,0.741,0.741,0.346,0.0366,0.733,0.733,0.733,0,0,0,0,0.0367,0.0367,0,0,0.00568,0.00568,0.58,0.805,0.549,1,0.659,1,0.659,0.659,0.18,0.18,0.769,0.739,0.333,1 +1,0.683,0.881,0.881,0.593,0,0.764,0.764,0.764,0,0,0,0,0,0,0,0,0.00852,0.00852,0.673,0.817,0.647,1,0.763,0.714,0.763,0.763,0.102,0.102,0.428,0.412,0.333,1 +1,0.638,0.937,0.937,0.683,0,0.733,0.733,0.733,0,0,0,0,0,0,0,0,0.00284,0.00284,0.711,0.78,0.851,1,0.878,0.435,0.878,0.878,0.0626,0.0626,0.384,0.37,0.333,1 +1,0.504,0.993,0.993,1,0,0.718,0.718,0.718,0,0,0,0,0,0,0,0,0.00284,0.00284,0.748,0.742,1,1,0.936,0.273,0.936,0.936,0.0313,0.0313,0.321,0.309,0.333,1 +1,0.386,0.965,0.965,0.679,0,0.703,0.703,0.703,0,0,0,0,0,0,0,0,0,0,0.729,0.717,0.923,1,0.994,0.118,0.994,0.994,0.0235,0.0235,0.271,0.261,0.333,1 +1,0.342,0.825,0.825,0.132,0,0.672,0.672,0.672,0,0,0,0,0,0,0,0,0.00284,0.00284,0.636,0.655,0.582,1,0.867,0.0807,0.867,0.867,0.0235,0.0235,0.151,0.145,0.333,1 +1,0.116,0.699,0.699,0.0658,0,0.626,0.626,0.626,0,0,0,0,0,0,0,0,0,0,0.405,0.535,0.265,1,0.751,0.0435,0.751,0.751,0.0235,0.0235,0.151,0.145,0.667,1 +1,0.0743,0.559,0.559,0,0,0.611,0.611,0.611,0,0,0,0,0,0,0,0,0,0,0.358,0.529,0.0954,1,0.509,0.0248,0.509,0.509,0.0235,0.0235,0.151,0.145,0.667,1 +1,0.0495,0.517,0.517,0,0,0.596,0.596,0.596,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0464,1,0.266,0.00621,0.266,0.266,0.0235,0.0235,0.183,0.176,1,1 +1,0.0495,0.517,0.517,0,0,0.58,0.58,0.58,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.465,0.0232,1,0.22,0.00621,0.22,0.22,0.0235,0.0235,0.151,0.145,1,1 +1,0.0495,0.503,0.503,0,0,0.565,0.565,0.565,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.018,1,0.173,0.0124,0.173,0.173,0.0313,0.0313,0.183,0.176,1,1 +1,0.0495,0.461,0.461,0,0,0.55,0.55,0.55,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.465,0.0284,1,0.185,0.0435,0.185,0.185,0.0626,0.0626,0.296,0.285,1,1 +1,0.0495,0.503,0.503,0,0,0.55,0.55,0.55,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0464,1,0.208,0.0745,0.208,0.208,0.117,0.117,0.422,0.406,1,1 +1,0.0495,0.601,0.601,0,0,0.58,0.58,0.58,0,0,0,0,0,0,0,0.019,0,0.019,0.258,0.465,0.0747,1,0.301,0.18,0.301,0.301,0.203,0.203,0.359,0.345,1,1 +0.667,0.0495,0.657,0.657,0,0,0.611,0.611,0.611,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.103,1,0.381,0.286,0.381,0.381,0.344,0.344,0.151,0.145,0.667,1 +0.667,0.19,0.475,0.475,0,0,0.626,0.626,0.626,0,0,0,0,0,0,0,0.00251,0,0.00251,0.33,0.579,0.126,1,0.381,0.273,0.381,0.381,0.657,0.657,0.151,0.145,0.333,1 +0.667,0.337,0.322,0.322,0,0,0.626,0.626,0.626,0,0,0,0,0,0,0,0.0416,0,0.0416,0.3,0.692,0.149,1,0.37,0.255,0.37,0.37,0.947,0.947,0.12,0.115,0,1 +0.667,0.328,0.336,0.336,0,0,0.611,0.611,0.611,0,0,0,0,0,0,0,0.00782,0.00568,0.0135,0.31,0.692,0.168,1,0.381,0.273,0.381,0.381,0.994,0.994,0.0945,0.0909,0,1 +0.667,0.316,0.35,0.35,0,0,0.611,0.611,0.611,0,0,0,0,0,0,0,0,0,0,0.319,0.705,0.186,1,0.381,0.286,0.381,0.381,0.947,0.947,0.0882,0.0849,0,1 +0.667,0.307,0.336,0.336,0,0,0.641,0.641,0.641,0,0,0,0,0,0,0,0,0.00284,0.00284,0.31,0.717,0.196,1,0.37,0.261,0.37,0.37,0.939,0.939,0.0882,0.0849,0,1 +0.667,0.305,0.392,0.392,0,0,0.641,0.641,0.641,0,0,0,0,0,0,0,0.0198,0,0.0198,0.347,0.717,0.222,1,0.37,0.236,0.37,0.37,0.704,0.704,0.0882,0.0849,0,1 +0.667,0.314,0.433,0.433,0,0,0.641,0.641,0.641,0,0,0,0,0,0,0,0.0198,0,0.0198,0.375,0.705,0.235,1,0.37,0.304,0.37,0.37,0.587,0.587,0.151,0.145,0,1 +0.333,0.204,0.447,0.447,0,0,0.626,0.626,0.626,0,0,0,0,0,0,0,0,0.00568,0.00568,0.321,0.597,0.263,1,0.381,0.366,0.381,0.381,0.477,0.477,0.365,0.352,0,1 +0.333,0.253,0.545,0.545,0.0288,0,0.672,0.672,0.672,0,0,0,0,0,0,0,0,0.00284,0.00284,0.354,0.61,0.327,1,0.52,0.683,0.52,0.52,0.29,0.29,0.794,0.764,0,1 +0.333,0.323,0.741,0.741,0.346,0,0.733,0.733,0.733,0,0,0.00926,0.000702,0,0,0,0.02,0.00568,0.0257,0.419,0.635,0.402,1,0.659,1,0.659,0.659,0.18,0.18,0.769,0.739,0,1 +1,1,0.881,0.881,0.593,0,0.764,0.764,0.764,0,0,0,0.0151,0.055,0.055,0,0.0772,0.0114,0.0885,0.881,0.993,0.541,1,0.763,0.714,0.763,0.763,0.102,0.102,0.428,0.412,0,1 +1,0.933,0.937,0.937,0.683,0,0.733,0.733,0.733,0,0,0,0,0.312,0.312,0,0.0383,0.0227,0.0611,0.937,0.937,0.758,1,0.878,0.435,0.878,0.878,0.0626,0.0626,0.384,0.37,0,1 +1,0.732,0.993,0.993,1,0,0.718,0.718,0.718,0,0,0,0,0,0,0,0.0317,0,0.0317,0.993,0.88,0.936,1,0.936,0.273,0.936,0.936,0.0313,0.0313,0.321,0.309,0,1 +1,0.218,0.965,0.965,0.679,0,0.703,0.703,0.703,0,0,0,0,0,0,0,0,0,0,0.493,0.591,0.887,1,0.994,0.118,0.994,0.994,0.0235,0.0235,0.271,0.261,0.667,1 +1,0.196,0.825,0.825,0.132,0,0.672,0.672,0.672,0,0,0,0,0,0,0,0,0.00284,0.00284,0.447,0.56,0.536,1,0.867,0.0807,0.867,0.867,0.0235,0.0235,0.151,0.145,0.667,1 +1,0.0495,0.699,0.699,0.0658,0,0.626,0.626,0.626,0,0,0,0,0,0,0,0,0.0142,0.0142,0.258,0.465,0.232,1,0.751,0.0435,0.751,0.751,0.0235,0.0235,0.151,0.145,1,1 +1,0.0495,0.559,0.559,0,0,0.611,0.611,0.611,0,0,0,0,0,0,0,0,0.00568,0.00568,0.258,0.465,0.0954,1,0.509,0.0248,0.509,0.509,0.0235,0.0235,0.151,0.145,1,1 +1,0.0495,0.517,0.517,0,0,0.596,0.596,0.596,0,0,0,0,0,0,0,0,0.0114,0.0114,0.258,0.465,0.0464,1,0.266,0.00621,0.266,0.266,0.0235,0.0235,0.183,0.176,1,1 +1,0.0495,0.517,0.517,0,0,0.58,0.58,0.58,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0232,1,0.22,0.00621,0.22,0.22,0.0235,0.0235,0.151,0.145,1,1 +1,0.0495,0.503,0.503,0,0,0.565,0.565,0.565,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.018,1,0.173,0.0124,0.173,0.173,0.0313,0.0313,0.183,0.176,1,1 +1,0.0495,0.461,0.461,0,0,0.55,0.55,0.55,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0284,1,0.185,0.0435,0.185,0.185,0.0626,0.0626,0.296,0.285,1,1 +1,0.0495,0.503,0.503,0,0,0.55,0.55,0.55,0,0,0,0,0,0,0.0346,0.00956,0,0.0441,0.258,0.465,0.0464,1,0.208,0.0745,0.208,0.208,0.117,0.117,0.422,0.406,1,1 +1,0.251,0.601,0.601,0,0,0.58,0.58,0.58,0,0,0,0,0,0,0,0.0215,0,0.0215,0.487,0.617,0.0747,1,0.301,0.18,0.301,0.301,0.203,0.203,0.359,0.345,0.333,1 +0.667,0.313,0.657,0.657,0,0,0.611,0.611,0.611,0,0,0,0,0,0,0,0.0408,0,0.0408,0.524,0.68,0.103,1,0.381,0.286,0.381,0.381,0.344,0.344,0.151,0.145,0,1 +0.333,0.19,0.475,0.475,0,0,0.626,0.626,0.626,0,0,0,0,0,0,0,0,0,0,0.33,0.579,0.126,1,0.381,0.273,0.381,0.381,0.657,0.657,0.151,0.145,0,1 +0.333,0.193,0.322,0.322,0,0,0.626,0.626,0.626,0,0,0,0,0,0,0,0,0.00568,0.00568,0.279,0.579,0.149,1,0.37,0.255,0.37,0.37,0.947,0.947,0.12,0.115,0,1 +0.667,0.189,0.336,0.336,0,0,0.611,0.611,0.611,0,0,0,0,0,0,0,0,0.0142,0.0142,0.284,0.579,0.168,1,0.381,0.273,0.381,0.381,0.994,0.994,0.0945,0.0909,0.333,1 +0.667,0.183,0.35,0.35,0,0,0.611,0.611,0.611,0,0,0.00673,0,0,0,0,0,0.00852,0.00852,0.288,0.585,0.186,1,0.381,0.286,0.381,0.381,0.947,0.947,0.0882,0.0849,0.333,1 +0.667,0.178,0.336,0.336,0,0,0.641,0.641,0.641,0,0,0.0371,0.0112,0,0,0,0,0,0,0.284,0.591,0.196,1,0.37,0.261,0.37,0.37,0.939,0.939,0.0882,0.0849,0.333,1 +0.333,0.177,0.392,0.392,0,0,0.641,0.641,0.641,0,0,0,0.00456,0.238,0.238,0,0,0,0,0.302,0.591,0.222,1,0.37,0.236,0.37,0.37,0.704,0.704,0.0882,0.0849,0,1 +0.333,0.182,0.433,0.433,0,0.0366,0.641,0.641,0.641,0,0,0,0,0.128,0.128,0,0,0.00284,0.00284,0.316,0.585,0.235,1,0.37,0.304,0.37,0.37,0.587,0.587,0.151,0.145,0,1 +0.333,0.204,0.447,0.447,0,0,0.626,0.626,0.626,0,0,0,0,0,0,0,0,0,0,0.321,0.597,0.263,1,0.381,0.366,0.381,0.381,0.477,0.477,0.365,0.352,0,1 +0.333,0.253,0.545,0.545,0.0288,0,0.672,0.672,0.672,0,0,0,0,0,0,0,0,0.017,0.017,0.354,0.61,0.327,1,0.52,0.683,0.52,0.52,0.29,0.29,0.794,0.764,0,1 +0.333,0.323,0.741,0.741,0.346,0.0122,0.733,0.733,0.733,0,0,0,0,0,0,0,0,0.0114,0.0114,0.419,0.635,0.402,1,0.659,1,0.659,0.659,0.18,0.18,0.769,0.739,0,1 +0.667,0.683,0.881,0.881,0.593,0.146,0.764,0.764,0.764,0,0,0,0,0,0,0,0,0.00568,0.00568,0.673,0.817,0.541,1,0.763,0.714,0.763,0.763,0.102,0.102,0.428,0.412,0,1 +0.667,0.638,0.937,0.937,0.683,0.0975,0.733,0.733,0.733,0,0,0,0,0,0,0,0,0.0142,0.0142,0.711,0.78,0.758,1,0.878,0.435,0.878,0.878,0.0626,0.0626,0.384,0.37,0,1 +1,0.732,0.993,0.993,1,0.0122,0.718,0.718,0.718,0.00809,0.0414,0,0,0,0,0,0,0.00852,0.00852,0.993,0.88,0.936,1,0.936,0.273,0.936,0.936,0.0313,0.0313,0.321,0.309,0,1 +1,0.554,0.965,0.965,0.679,0.0244,0.703,0.703,0.703,0.0151,0.0541,0,0,0,0,0,0.0389,0,0.0389,0.965,0.843,0.887,1,0.994,0.118,0.994,0.994,0.0235,0.0235,0.271,0.261,0,1 +1,0.488,0.825,0.825,0.132,0,0.672,0.672,0.672,0.00826,0,0,0,0,0,0,0.0272,0,0.0272,0.825,0.749,0.536,1,0.867,0.0807,0.867,0.867,0.0235,0.0235,0.151,0.145,0,1 +1,0.0495,0.699,0.699,0.0658,0,0.626,0.626,0.626,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.232,1,0.751,0.0435,0.751,0.751,0.0235,0.0235,0.151,0.145,1,1 +1,0.0495,0.559,0.559,0,0,0.611,0.611,0.611,0,0,0,0,0,0,0,0,0.00568,0.00568,0.258,0.465,0.0954,1,0.509,0.0248,0.509,0.509,0.0235,0.0235,0.151,0.145,1,1 +1,0.0495,0.517,0.517,0,0,0.596,0.596,0.596,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0464,1,0.266,0.00621,0.266,0.266,0.0235,0.0235,0.183,0.176,1,1 +1,0.0495,0.517,0.517,0,0,0.58,0.58,0.58,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0232,1,0.22,0.00621,0.22,0.22,0.0235,0.0235,0.151,0.145,1,1 +1,0.0495,0.503,0.503,0,0,0.565,0.565,0.565,0,0,0,0,0,0,0,0.0114,0,0.0114,0.258,0.465,0.018,1,0.173,0.0124,0.173,0.173,0.0313,0.0313,0.183,0.176,1,1 +1,0.0495,0.461,0.461,0,0,0.55,0.55,0.55,0,0,0,0,0,0,0,0.00258,0,0.00258,0.258,0.465,0.0284,1,0.185,0.0435,0.185,0.185,0.0626,0.0626,0.296,0.285,1,1 +1,0.0829,0.503,0.503,0,0,0.55,0.55,0.55,0,0,0,0,0,0,0,0.0306,0,0.0306,0.34,0.516,0.0464,1,0.208,0.0745,0.208,0.208,0.117,0.117,0.422,0.406,0.667,1 +1,0.251,0.601,0.601,0,0.0122,0.58,0.58,0.58,0,0,0,0,0,0,0,0.0148,0,0.0148,0.487,0.617,0.0747,1,0.301,0.18,0.301,0.301,0.203,0.203,0.359,0.345,0.333,1 +1,0.313,0.657,0.657,0,0.134,0.611,0.611,0.611,0,0,0,0,0,0,0,0.0453,0,0.0453,0.524,0.68,0.103,1,0.381,0.286,0.381,0.381,0.344,0.344,0.151,0.145,0.333,1 +1,0.47,0.475,0.475,0,0,0.626,0.626,0.626,0,0,0,0,0,0,0.0467,0.0096,0,0.0563,0.475,0.806,0.126,1,0.381,0.273,0.381,0.381,0.657,0.657,0.151,0.145,0,1 +0.333,0.193,0.322,0.322,0,0,0.626,0.626,0.626,0,0,0,0,0,0,0.0647,0.00241,0.00568,0.0728,0.279,0.579,0.149,1,0.37,0.255,0.37,0.37,0.947,0.947,0.12,0.115,0,1 +0.333,0.189,0.336,0.336,0,0.0122,0.611,0.611,0.611,0,0,0,0,0,0,0,0.0426,0.00852,0.0511,0.284,0.579,0.168,1,0.381,0.273,0.381,0.381,0.994,0.994,0.0945,0.0909,0,1 +0.333,0.183,0.35,0.35,0,0.0244,0.611,0.611,0.611,0,0,0,0,0,0,0,0,0,0,0.288,0.585,0.186,1,0.381,0.286,0.381,0.381,0.947,0.947,0.0882,0.0849,0,1 +0.333,0.178,0.336,0.336,0,0,0.641,0.641,0.641,0,0,0,0,0,0,0,0,0.00568,0.00568,0.284,0.591,0.196,1,0.37,0.261,0.37,0.37,0.939,0.939,0.0882,0.0849,0,1 +0.333,0.177,0.392,0.392,0,0,0.641,0.641,0.641,0,0,0,0,0,0,0,0,0,0,0.302,0.591,0.222,1,0.37,0.236,0.37,0.37,0.704,0.704,0.0882,0.0849,0,1 +0.333,0.182,0.433,0.433,0,0,0.641,0.641,0.641,0,0,0,0,0,0,0,0,0.00284,0.00284,0.316,0.585,0.235,1,0.37,0.304,0.37,0.37,0.587,0.587,0.151,0.145,0,1 +0.333,0.204,0.447,0.447,0,0,0.626,0.626,0.626,0,0,0,0,0,0,0,0,0,0,0.321,0.597,0.263,1,0.381,0.366,0.381,0.381,0.477,0.477,0.365,0.352,0,1 +0.667,0.457,0.545,0.545,0.0288,0,0.672,0.672,0.672,0,0,0,0,0,0,0,0,0.00284,0.00284,0.449,0.755,0.327,1,0.52,0.683,0.52,0.52,0.29,0.29,0.794,0.764,0,1 +0.333,0.323,0.741,0.741,0.346,0.0122,0.733,0.733,0.733,0,0,0,0,0,0,0,0.015,0.0142,0.0292,0.419,0.635,0.402,1,0.659,1,0.659,0.659,0.18,0.18,0.769,0.739,0,1 +1,1,0.881,0.881,0.593,0.0244,0.764,0.764,0.764,0,0,0,0,0,0,0,0,0,0,0.881,0.993,0.541,1,0.763,0.714,0.763,0.763,0.102,0.102,0.428,0.412,0,1 +1,0.933,0.937,0.937,0.683,0,0.733,0.733,0.733,0,0,0,0,0,0,0,0,0.00284,0.00284,0.937,0.937,0.758,1,0.878,0.435,0.878,0.878,0.0626,0.0626,0.384,0.37,0,1 +1,0.732,0.993,0.993,1,0,0.718,0.718,0.718,0,0,0.0346,0.00596,0,0,0,0,0.0114,0.0114,0.993,0.88,0.936,1,0.936,0.273,0.936,0.936,0.0313,0.0313,0.321,0.309,0,1 +1,0.554,0.965,0.965,0.679,0,0.703,0.703,0.703,0,0,0.0112,0.00456,0.238,0.238,0,0,0.00284,0.00284,0.965,0.843,0.887,1,0.994,0.118,0.994,0.994,0.0235,0.0235,0.271,0.261,0,1 +1,0.196,0.825,0.825,0.132,0,0.672,0.672,0.672,0,0,0,0,0.22,0.22,0,0,0,0,0.447,0.56,0.536,1,0.867,0.0807,0.867,0.867,0.0235,0.0235,0.151,0.145,0.667,1 +1,0.0495,0.699,0.699,0.0658,0,0.626,0.626,0.626,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.232,1,0.751,0.0435,0.751,0.751,0.0235,0.0235,0.151,0.145,1,1 +1,0.0495,0.559,0.559,0,0,0.611,0.611,0.611,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0954,1,0.509,0.0248,0.509,0.509,0.0235,0.0235,0.151,0.145,1,1 +1,0.0495,0.517,0.517,0,0,0.596,0.596,0.596,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.465,0.0464,1,0.266,0.00621,0.266,0.266,0.0235,0.0235,0.183,0.176,1,1 +1,0.0495,0.517,0.517,0,0,0.58,0.58,0.58,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0232,1,0.22,0.00621,0.22,0.22,0.0235,0.0235,0.151,0.145,1,1 +1,0.0495,0.503,0.503,0,0,0.565,0.565,0.565,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.018,1,0.173,0.0124,0.173,0.173,0.0313,0.0313,0.183,0.176,1,1 +0.667,0.0495,0.461,0.461,0,0,0.55,0.55,0.55,0,0,0,0,0,0,0,0.00276,0,0.00276,0.258,0.465,0.0284,1,0.185,0.0435,0.185,0.185,0.0626,0.0626,0.296,0.285,0.667,1 +1,0.0829,0.503,0.503,0,0,0.55,0.55,0.55,0,0,0,0,0,0,0,0.0526,0,0.0526,0.34,0.516,0.0464,1,0.208,0.0745,0.208,0.208,0.117,0.117,0.422,0.406,0.667,1 +1,0.251,0.601,0.601,0,0,0.58,0.58,0.58,0,0,0,0,0,0,0,0.0132,0,0.0132,0.487,0.617,0.0747,1,0.301,0.18,0.301,0.301,0.203,0.203,0.359,0.345,0.333,1 +1,0.444,0.657,0.657,0,0.0366,0.611,0.611,0.611,0,0,0,0,0,0,0,0.0568,0,0.0568,0.657,0.787,0.103,1,0.381,0.286,0.381,0.381,0.344,0.344,0.151,0.145,0,1 +0.667,0.33,0.475,0.475,0,0,0.626,0.626,0.626,0,0,0,0,0,0,0,0.0201,0,0.0201,0.403,0.692,0.126,1,0.381,0.273,0.381,0.381,0.657,0.657,0.151,0.145,0,1 +0.333,0.193,0.322,0.322,0,0,0.626,0.626,0.626,0,0,0,0,0,0,0,0,0.0255,0.0255,0.279,0.579,0.149,1,0.37,0.255,0.37,0.37,0.947,0.947,0.12,0.115,0,1 +0.333,0.189,0.336,0.336,0,0,0.611,0.611,0.611,0,0,0,0,0,0,0,0,0.0114,0.0114,0.284,0.579,0.168,1,0.381,0.273,0.381,0.381,0.994,0.994,0.0945,0.0909,0,1 +0.333,0.183,0.35,0.35,0,0,0.611,0.611,0.611,0,0,0,0,0,0,0,0,0.00852,0.00852,0.288,0.585,0.186,1,0.381,0.286,0.381,0.381,0.947,0.947,0.0882,0.0849,0,1 +0.333,0.178,0.336,0.336,0,0,0.641,0.641,0.641,0,0,0,0,0,0,0,0,0.00284,0.00284,0.284,0.591,0.196,1,0.37,0.261,0.37,0.37,0.939,0.939,0.0882,0.0849,0,1 +0.333,0.177,0.392,0.392,0,0,0.641,0.641,0.641,0,0,0.0189,0.000702,0,0,0,0,0,0,0.302,0.591,0.222,1,0.37,0.236,0.37,0.37,0.704,0.704,0.0882,0.0849,0,1 +0.333,0.182,0.433,0.433,0,0,0.641,0.641,0.641,0,0,0.0262,0.0151,0.055,0.055,0,0.0224,0.00852,0.031,0.316,0.585,0.235,1,0.37,0.304,0.37,0.37,0.587,0.587,0.151,0.145,0,1 +0.667,0.359,0.447,0.447,0,0,0.626,0.626,0.626,0,0,0.0309,0,0.128,0.128,0,0.0146,0.00568,0.0203,0.384,0.73,0.263,1,0.381,0.366,0.381,0.381,0.477,0.477,0.365,0.352,0,1 +0.333,0.253,0.545,0.545,0.0288,0,0.672,0.672,0.672,0,0,0.0393,0,0,0,0,0,0,0,0.354,0.61,0.327,1,0.52,0.683,0.52,0.52,0.29,0.29,0.794,0.764,0,1 +1,0.869,0.741,0.741,0.346,0,0.733,0.733,0.733,0,0,0.0258,0,0,0,0,0.00261,0,0.00261,0.741,0.974,0.402,1,0.659,1,0.659,0.659,0.18,0.18,0.769,0.739,0,1 +1,1,0.881,0.881,0.593,0,0.764,0.764,0.764,0,0,0,0,0,0,0,0.0667,0.00568,0.0724,0.881,0.993,0.541,1,0.763,0.714,0.763,0.763,0.102,0.102,0.428,0.412,0,1 +1,0.933,0.937,0.937,0.683,0,0.733,0.733,0.733,0,0,0,0,0,0,0,0.0201,0.00852,0.0286,0.937,0.937,0.758,1,0.878,0.435,0.878,0.878,0.0626,0.0626,0.384,0.37,0,1 +0.667,0.504,0.993,0.993,1,0,0.718,0.718,0.718,0,0,0,0,0,0,0,0.0245,0.0114,0.0359,0.748,0.742,0.936,1,0.936,0.273,0.936,0.936,0.0313,0.0313,0.321,0.309,0,1 +0.667,0.386,0.965,0.965,0.679,0,0.703,0.703,0.703,0,0,0,0,0,0,0,0.0465,0,0.0465,0.729,0.717,0.887,1,0.994,0.118,0.994,0.994,0.0235,0.0235,0.271,0.261,0,1 +0.667,0.196,0.825,0.825,0.132,0,0.672,0.672,0.672,0,0,0,0,0,0,0,0.00809,0,0.00809,0.447,0.56,0.536,1,0.867,0.0807,0.867,0.867,0.0235,0.0235,0.151,0.145,0.333,1 +1,0.116,0.699,0.699,0.0658,0,0.626,0.626,0.626,0,0,0,0,0,0,0.0716,0,0,0.0716,0.405,0.535,0.232,1,0.751,0.0435,0.751,0.751,0.0235,0.0235,0.151,0.145,0.667,1 +1,0.0495,0.559,0.559,0,0,0.611,0.611,0.611,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0954,1,0.509,0.0248,0.509,0.509,0.0235,0.0235,0.151,0.145,1,1 +1,0.0495,0.517,0.517,0,0,0.596,0.596,0.596,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0464,1,0.266,0.00621,0.266,0.266,0.0235,0.0235,0.183,0.176,1,1 +1,0.0495,0.517,0.517,0,0,0.58,0.58,0.58,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0232,1,0.22,0.00621,0.22,0.22,0.0235,0.0235,0.151,0.145,1,1 +1,0.0495,0.503,0.503,0,0,0.565,0.565,0.565,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.018,1,0.173,0.0124,0.173,0.173,0.0313,0.0313,0.183,0.176,1,1 +1,0.0513,0.461,0.461,0,0,0.55,0.55,0.55,0,0,0,0,0,0,0,0,0,0,0.326,0.51,0.0284,1,0.185,0.0435,0.185,0.185,0.0626,0.0626,0.296,0.285,0.667,1 +1,0.0829,0.503,0.503,0,0,0.55,0.55,0.55,0,0,0.0193,0,0,0,0,0,0,0,0.34,0.516,0.0464,1,0.208,0.0745,0.208,0.208,0.117,0.117,0.422,0.406,0.667,1 +1,0.251,0.601,0.601,0,0.0366,0.58,0.58,0.58,0,0,0.0177,0.0105,0.055,0.055,0,0.0415,0,0.0415,0.487,0.617,0.0747,1,0.301,0.18,0.301,0.301,0.203,0.203,0.359,0.345,0.333,1 +1,0.444,0.657,0.657,0,0,0.611,0.611,0.611,0,0,0.0411,0,0.312,0.312,0,0,0,0,0.657,0.787,0.103,1,0.381,0.286,0.381,0.381,0.344,0.344,0.151,0.145,0,1 +1,0.47,0.475,0.475,0,0,0.626,0.626,0.626,0.0102,0.0414,0.0596,0,0,0,0,0,0.00284,0.00284,0.475,0.806,0.126,1,0.381,0.273,0.381,0.381,0.657,0.657,0.151,0.145,0,1 +1,0.481,0.322,0.322,0,0,0.626,0.626,0.626,0.0174,0.0541,0.0339,0,0,0,0,0,0.0114,0.0114,0.322,0.806,0.149,1,0.37,0.255,0.37,0.37,0.947,0.947,0.12,0.115,0,1 +1,0.468,0.336,0.336,0,0,0.611,0.611,0.611,0,0,0.0292,0,0,0,0,0.0303,0.00568,0.0359,0.336,0.806,0.168,1,0.381,0.273,0.381,0.381,0.994,0.994,0.0945,0.0909,0,1 +0.667,0.316,0.35,0.35,0,0,0.611,0.611,0.611,0,0,0.0403,0,0,0,0,0,0,0,0.319,0.705,0.186,1,0.381,0.286,0.381,0.381,0.947,0.947,0.0882,0.0849,0,1 +0.667,0.307,0.336,0.336,0,0,0.641,0.641,0.641,0,0,0.0183,0,0,0,0,0,0.00284,0.00284,0.31,0.717,0.196,1,0.37,0.261,0.37,0.37,0.939,0.939,0.0882,0.0849,0,1 +0.667,0.305,0.392,0.392,0,0,0.641,0.641,0.641,0,0,0.0505,0,0,0,0,0,0.0199,0.0199,0.347,0.717,0.222,1,0.37,0.236,0.37,0.37,0.704,0.704,0.0882,0.0849,0,1 +0.333,0.182,0.433,0.433,0,0,0.641,0.641,0.641,0,0,0.0587,0,0,0,0,0,0,0,0.316,0.585,0.235,1,0.37,0.304,0.37,0.37,0.587,0.587,0.151,0.145,0,1 +0.333,0.204,0.447,0.447,0,0,0.626,0.626,0.626,0,0,0.0273,0,0,0,0,0,0.00568,0.00568,0.321,0.597,0.263,1,0.381,0.366,0.381,0.381,0.477,0.477,0.365,0.352,0,1 +0.667,0.457,0.545,0.545,0.0288,0,0.672,0.672,0.672,0,0,0.0329,0,0,0,0,0,0.00568,0.00568,0.449,0.755,0.327,1,0.52,0.683,0.52,0.52,0.29,0.29,0.794,0.764,0,1 +0.667,0.596,0.741,0.741,0.346,0,0.733,0.733,0.733,0,0,0,0,0,0,0,0.0191,0.00852,0.0276,0.58,0.805,0.402,1,0.659,1,0.659,0.659,0.18,0.18,0.769,0.739,0,1 +0.667,0.366,0.881,0.881,0.593,0,0.764,0.764,0.764,0,0,0,0,0,0,0,0,0.00284,0.00284,0.465,0.641,0.541,1,0.763,0.714,0.763,0.763,0.102,0.102,0.428,0.412,0.333,1 +0.667,0.344,0.937,0.937,0.683,0,0.733,0.733,0.733,0,0,0,0,0,0,0,0,0,0,0.484,0.622,0.758,1,0.878,0.435,0.878,0.878,0.0626,0.0626,0.384,0.37,0.333,1 +0.667,0.277,0.993,0.993,1,0,0.718,0.718,0.718,0,0,0,0,0,0,0,0,0.00284,0.00284,0.503,0.604,0.936,1,0.936,0.273,0.936,0.936,0.0313,0.0313,0.321,0.309,0.333,1 +1,0.386,0.965,0.965,0.679,0,0.703,0.703,0.703,0,0,0,0,0,0,0,0.0479,0.00568,0.0535,0.729,0.717,0.887,1,0.994,0.118,0.994,0.994,0.0235,0.0235,0.271,0.261,0.333,1 +1,0.342,0.825,0.825,0.132,0,0.672,0.672,0.672,0,0,0,0,0,0,0,0,0.00852,0.00852,0.636,0.655,0.536,1,0.867,0.0807,0.867,0.867,0.0235,0.0235,0.151,0.145,0.333,1 +1,0.116,0.699,0.699,0.0658,0,0.626,0.626,0.626,0,0,0,0,0,0,0,0,0,0,0.405,0.535,0.232,1,0.751,0.0435,0.751,0.751,0.0235,0.0235,0.151,0.145,0.667,1 +1,0.0495,0.559,0.559,0,0,0.611,0.611,0.611,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.113,1,0.509,0.0248,0.509,0.509,0.0235,0.0235,0.151,0.145,1,1 +1,0.0495,0.517,0.517,0,0,0.596,0.596,0.596,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0567,1,0.266,0.00621,0.266,0.266,0.0235,0.0235,0.183,0.176,1,1 +1,0.0495,0.517,0.517,0,0,0.58,0.58,0.58,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0309,1,0.22,0.00621,0.22,0.22,0.0235,0.0235,0.151,0.145,1,1 +1,0.0495,0.503,0.503,0,0,0.565,0.565,0.565,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0206,1,0.173,0.0124,0.173,0.173,0.0313,0.0313,0.183,0.176,1,1 +1,0.0495,0.461,0.461,0,0,0.55,0.55,0.55,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0284,1,0.185,0.0435,0.185,0.185,0.0626,0.0626,0.296,0.285,1,1 +1,0.0495,0.503,0.503,0,0,0.55,0.55,0.55,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0361,1,0.208,0.0745,0.208,0.208,0.117,0.117,0.422,0.406,1,1 +1,0.15,0.601,0.601,0,0.0366,0.58,0.58,0.58,0,0,0,0,0,0,0,0,0,0,0.372,0.541,0.0619,1,0.301,0.18,0.301,0.301,0.203,0.203,0.359,0.345,0.667,1 +1,0.181,0.657,0.657,0,0,0.611,0.611,0.611,0,0,0,0,0,0,0,0,0,0,0.391,0.572,0.111,1,0.381,0.286,0.381,0.381,0.344,0.344,0.151,0.145,0.667,1 +1,0.19,0.475,0.475,0,0,0.626,0.626,0.626,0,0,0,0,0,0,0,0.0156,0,0.0156,0.33,0.579,0.183,1,0.381,0.273,0.381,0.381,0.657,0.657,0.151,0.145,0.667,1 +1,0.337,0.322,0.322,0,0.0731,0.626,0.626,0.626,0,0,0,0,0,0,0,0.0277,0,0.0277,0.3,0.692,0.242,1,0.37,0.255,0.37,0.37,0.947,0.947,0.12,0.115,0.333,1 +1,0.328,0.336,0.336,0,0,0.611,0.611,0.611,0,0,0,0,0,0,0,0.0189,0.00568,0.0245,0.31,0.692,0.289,1,0.381,0.273,0.381,0.381,0.994,0.994,0.0945,0.0909,0.333,1 +1,0.316,0.35,0.35,0,0,0.611,0.611,0.611,0,0,0,0,0,0,0,0.0439,0.00568,0.0496,0.319,0.705,0.317,1,0.381,0.286,0.381,0.381,0.947,0.947,0.0882,0.0849,0.333,1 +0.667,0.307,0.336,0.336,0,0,0.641,0.641,0.641,0,0,0,0,0,0,0,0,0.00284,0.00284,0.31,0.717,0.34,1,0.37,0.261,0.37,0.37,0.939,0.939,0.0882,0.0849,0,1 +0.333,0.177,0.392,0.392,0,0,0.641,0.641,0.641,0,0,0,0,0,0,0,0,0,0,0.302,0.591,0.402,1,0.37,0.236,0.37,0.37,0.704,0.704,0.0882,0.0849,0,1 +0.333,0.182,0.433,0.433,0,0,0.641,0.641,0.641,0,0,0,0,0,0,0,0,0,0,0.316,0.585,0.459,1,0.37,0.304,0.37,0.37,0.587,0.587,0.151,0.145,0,1 +0.333,0.204,0.447,0.447,0,0,0.626,0.626,0.626,0,0,0,0,0,0,0,0,0.00852,0.00852,0.321,0.597,0.505,1,0.381,0.366,0.381,0.381,0.477,0.477,0.365,0.352,0,1 +0.667,0.457,0.545,0.545,0.0288,0.0366,0.672,0.672,0.672,0,0,0.0348,0.00596,0,0,0,0,0,0,0.449,0.755,0.531,1,0.52,0.683,0.52,0.52,0.29,0.29,0.794,0.764,0,1 +1,0.869,0.741,0.741,0.346,0,0.733,0.733,0.733,0,0,0.0161,0.00982,0.147,0.147,0,0,0.00852,0.00852,0.741,0.974,0.549,1,0.659,1,0.659,0.659,0.18,0.18,0.769,0.739,0,1 +1,1,0.881,0.881,0.593,0,0.764,0.764,0.764,0,0,0,0,0.128,0.128,0,0,0.00284,0.00284,0.881,0.993,0.647,1,0.763,0.714,0.763,0.763,0.102,0.102,0.428,0.412,0,1 +1,0.933,0.937,0.937,0.683,0,0.733,0.733,0.733,0,0,0,0,0,0,0,0,0.0142,0.0142,0.937,0.937,0.851,1,0.878,0.435,0.878,0.878,0.0626,0.0626,0.384,0.37,0,1 +1,0.732,0.993,0.993,1,0,0.718,0.718,0.718,0,0,0,0,0,0,0,0,0,0,0.993,0.88,1,1,0.936,0.273,0.936,0.936,0.0313,0.0313,0.321,0.309,0,1 +1,0.554,0.965,0.965,0.679,0,0.703,0.703,0.703,0,0,0,0,0,0,0,0,0,0,0.965,0.843,0.923,1,0.994,0.118,0.994,0.994,0.0235,0.0235,0.271,0.261,0,1 +1,0.342,0.825,0.825,0.132,0,0.672,0.672,0.672,0,0,0,0,0,0,0,0,0.00284,0.00284,0.636,0.655,0.582,1,0.867,0.0807,0.867,0.867,0.0235,0.0235,0.151,0.145,0.333,1 +1,0.116,0.699,0.699,0.0658,0,0.626,0.626,0.626,0,0,0,0,0,0,0,0,0.0142,0.0142,0.405,0.535,0.265,1,0.751,0.0435,0.751,0.751,0.0235,0.0235,0.151,0.145,0.667,1 +1,0.0495,0.559,0.559,0,0,0.611,0.611,0.611,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.113,1,0.509,0.0248,0.509,0.509,0.0235,0.0235,0.151,0.145,1,1 +1,0.0495,0.517,0.517,0,0,0.596,0.596,0.596,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0567,1,0.266,0.00621,0.266,0.266,0.0235,0.0235,0.183,0.176,1,1 +1,0.0495,0.517,0.517,0,0,0.58,0.58,0.58,0,0,0,0,0,0,0,0,0.0142,0.0142,0.258,0.465,0.0309,1,0.22,0.00621,0.22,0.22,0.0235,0.0235,0.151,0.145,1,1 +1,0.0495,0.503,0.503,0,0,0.565,0.565,0.565,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0206,1,0.173,0.0124,0.173,0.173,0.0313,0.0313,0.183,0.176,1,1 +1,0.0495,0.461,0.461,0,0,0.55,0.55,0.55,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0284,1,0.185,0.0435,0.185,0.185,0.0626,0.0626,0.296,0.285,1,1 +1,0.0495,0.503,0.503,0,0,0.55,0.55,0.55,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0361,1,0.208,0.0745,0.208,0.208,0.117,0.117,0.422,0.406,1,1 +1,0.0495,0.601,0.601,0,0,0.58,0.58,0.58,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0619,1,0.301,0.18,0.301,0.301,0.203,0.203,0.359,0.345,1,1 +1,0.0495,0.657,0.657,0,0,0.611,0.611,0.611,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.111,1,0.381,0.286,0.381,0.381,0.344,0.344,0.151,0.145,1,1 +1,0.19,0.475,0.475,0,0,0.626,0.626,0.626,0,0,0,0,0,0,0,0,0,0,0.33,0.579,0.183,1,0.381,0.273,0.381,0.381,0.657,0.657,0.151,0.145,0.667,1 +0.667,0.337,0.322,0.322,0,0.0853,0.626,0.626,0.626,0,0,0,0,0,0,0,0,0,0,0.3,0.692,0.242,1,0.37,0.255,0.37,0.37,0.947,0.947,0.12,0.115,0,1 +0.333,0.189,0.336,0.336,0,0.0609,0.611,0.611,0.611,0,0,0,0,0,0,0,0,0,0,0.284,0.579,0.289,1,0.381,0.273,0.381,0.381,0.994,0.994,0.0945,0.0909,0,1 +0.333,0.183,0.35,0.35,0,0,0.611,0.611,0.611,0,0,0,0,0,0,0,0,0,0,0.288,0.585,0.317,1,0.381,0.286,0.381,0.381,0.947,0.947,0.0882,0.0849,0,1 +0,0.0495,0.336,0.336,0,0,0.641,0.641,0.641,0,0,0,0,0,0,0,0.027,0,0.027,0.258,0.465,0.34,1,0.37,0.261,0.37,0.37,0.939,0.939,0.0882,0.0849,0,1 +0.667,0.305,0.392,0.392,0,0,0.641,0.641,0.641,0,0,0,0,0,0,0,0.0264,0.00284,0.0293,0.347,0.717,0.402,1,0.37,0.236,0.37,0.37,0.704,0.704,0.0882,0.0849,0,1 +0.667,0.314,0.433,0.433,0,0,0.641,0.641,0.641,0,0,0,0,0,0,0,0.0104,0.00852,0.0189,0.375,0.705,0.459,1,0.37,0.304,0.37,0.37,0.587,0.587,0.151,0.145,0,1 +0.333,0.204,0.447,0.447,0,0,0.626,0.626,0.626,0,0,0,0,0,0,0,0,0,0,0.321,0.597,0.505,1,0.381,0.366,0.381,0.381,0.477,0.477,0.365,0.352,0,1 +0.667,0.457,0.545,0.545,0.0288,0,0.672,0.672,0.672,0,0,0,0,0,0,0,0,0,0,0.449,0.755,0.531,1,0.52,0.683,0.52,0.52,0.29,0.29,0.794,0.764,0,1 +0.667,0.596,0.741,0.741,0.346,0,0.733,0.733,0.733,0,0,0,0,0,0,0,0,0.00568,0.00568,0.58,0.805,0.549,1,0.659,1,0.659,0.659,0.18,0.18,0.769,0.739,0,1 +0.667,0.683,0.881,0.881,0.593,0,0.764,0.764,0.764,0,0,0,0,0,0,0,0,0.00568,0.00568,0.673,0.817,0.647,1,0.763,0.714,0.763,0.763,0.102,0.102,0.428,0.412,0,1 +0.667,0.638,0.937,0.937,0.683,0,0.733,0.733,0.733,0,0,0,0,0,0,0,0,0.0114,0.0114,0.711,0.78,0.851,1,0.878,0.435,0.878,0.878,0.0626,0.0626,0.384,0.37,0,1 +1,0.732,0.993,0.993,1,0,0.718,0.718,0.718,0,0,0,0,0,0,0,0.00851,0.0341,0.0426,0.993,0.88,1,1,0.936,0.273,0.936,0.936,0.0313,0.0313,0.321,0.309,0,1 +1,0.386,0.965,0.965,0.679,0,0.703,0.703,0.703,0,0,0,0,0,0,0,0,0.0114,0.0114,0.729,0.717,0.923,1,0.994,0.118,0.994,0.994,0.0235,0.0235,0.271,0.261,0.333,1 +1,0.342,0.825,0.825,0.132,0,0.672,0.672,0.672,0,0,0,0,0,0,0,0,0.00568,0.00568,0.636,0.655,0.582,1,0.867,0.0807,0.867,0.867,0.0235,0.0235,0.151,0.145,0.333,1 +1,0.183,0.699,0.699,0.0658,0,0.626,0.626,0.626,0,0,0,0,0,0,0,0,0,0,0.552,0.605,0.265,1,0.751,0.0435,0.751,0.751,0.0235,0.0235,0.151,0.145,0.333,1 +1,0.0743,0.559,0.559,0,0,0.611,0.611,0.611,0,0,0,0,0,0,0,0,0,0,0.358,0.529,0.0954,1,0.509,0.0248,0.509,0.509,0.0235,0.0235,0.151,0.145,0.667,1 +1,0.0495,0.517,0.517,0,0,0.596,0.596,0.596,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0464,1,0.266,0.00621,0.266,0.266,0.0235,0.0235,0.183,0.176,1,1 +1,0.0495,0.517,0.517,0,0,0.58,0.58,0.58,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0232,1,0.22,0.00621,0.22,0.22,0.0235,0.0235,0.151,0.145,1,1 +1,0.0495,0.503,0.503,0,0,0.565,0.565,0.565,0,0,0,0,0,0,0,0,0.00568,0.00568,0.258,0.465,0.018,1,0.173,0.0124,0.173,0.173,0.0313,0.0313,0.183,0.176,1,1 +1,0.0495,0.461,0.461,0,0,0.55,0.55,0.55,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.0284,1,0.185,0.0435,0.185,0.185,0.0626,0.0626,0.296,0.285,1,1 +1,0.0495,0.503,0.503,0,0,0.55,0.55,0.55,0,0,0,0,0,0,0,0.0177,0,0.0177,0.258,0.465,0.0464,1,0.208,0.0745,0.208,0.208,0.117,0.117,0.422,0.406,1,1 +1,0.351,0.601,0.601,0,0,0.58,0.58,0.58,0,0,0,0,0,0,0,0.0305,0,0.0305,0.601,0.693,0.0747,1,0.301,0.18,0.301,0.301,0.203,0.203,0.359,0.345,0,1 +1,0.444,0.657,0.657,0,0,0.611,0.611,0.611,0.02,0.0239,0,0,0,0,0,0,0,0,0.657,0.787,0.103,1,0.381,0.286,0.381,0.381,0.344,0.344,0.151,0.145,0,1 +0.667,0.33,0.475,0.475,0,0.0366,0.626,0.626,0.626,0.00404,0,0,0,0,0,0,0,0,0,0.403,0.692,0.126,1,0.381,0.273,0.381,0.381,0.657,0.657,0.151,0.145,0,1 +0.667,0.337,0.322,0.322,0,0,0.626,0.626,0.626,0,0,0,0,0,0,0,0,0.00284,0.00284,0.3,0.692,0.149,1,0.37,0.255,0.37,0.37,0.947,0.947,0.12,0.115,0,1 +0.667,0.328,0.336,0.336,0,0,0.611,0.611,0.611,0,0,0,0,0,0,0,0,0,0,0.31,0.692,0.168,1,0.381,0.273,0.381,0.381,0.994,0.994,0.0945,0.0909,0,1 +0.667,0.316,0.35,0.35,0,0.0487,0.611,0.611,0.611,0.00814,0.0414,0,0,0,0,0,0,0.00852,0.00852,0.319,0.705,0.186,1,0.381,0.286,0.381,0.381,0.947,0.947,0.0882,0.0849,0,1 +0.667,0.307,0.336,0.336,0,0.0244,0.641,0.641,0.641,0.00696,0.00637,0,0,0,0,0,0,0.00568,0.00568,0.31,0.717,0.196,1,0.37,0.261,0.37,0.37,0.939,0.939,0.0882,0.0849,0,1 +0.667,0.305,0.392,0.392,0,0,0.641,0.641,0.641,0,0,0,0,0,0,0,0,0.0227,0.0227,0.347,0.717,0.222,1,0.37,0.236,0.37,0.37,0.704,0.704,0.0882,0.0849,0,1 +0.667,0.314,0.433,0.433,0,0,0.641,0.641,0.641,0,0,0,0,0,0,0,0,0.00284,0.00284,0.375,0.705,0.235,1,0.37,0.304,0.37,0.37,0.587,0.587,0.151,0.145,0,1 +0.667,0.359,0.447,0.447,0,0,0.626,0.626,0.626,0,0,0,0,0,0,0,0,0.0114,0.0114,0.384,0.73,0.263,1,0.381,0.366,0.381,0.381,0.477,0.477,0.365,0.352,0,1 +0.333,0.253,0.545,0.545,0.0288,0,0.672,0.672,0.672,0,0,0,0,0,0,0,0,0.00568,0.00568,0.354,0.61,0.327,1,0.52,0.683,0.52,0.52,0.29,0.29,0.794,0.764,0,1 +0.333,0.323,0.741,0.741,0.346,0,0.733,0.733,0.733,0,0,0,0,0,0,0,0,0.0142,0.0142,0.419,0.635,0.402,1,0.659,1,0.659,0.659,0.18,0.18,0.769,0.739,0,1 +1,1,0.881,0.881,0.593,0,0.764,0.764,0.764,0,0,0,0,0,0,0.0812,0.023,0.0142,0.118,0.881,0.993,0.541,1,0.763,0.714,0.763,0.763,0.102,0.102,0.428,0.412,0,1 +1,0.933,0.937,0.937,0.683,0,0.733,0.733,0.733,0,0,0,0,0,0,0,0.0245,0,0.0245,0.937,0.937,0.758,1,0.878,0.435,0.878,0.878,0.0626,0.0626,0.384,0.37,0,1 +1,0.504,0.993,0.993,1,0,0.718,0.718,0.718,0,0,0,0,0,0,0,0,0.00568,0.00568,0.748,0.742,0.936,1,0.936,0.273,0.936,0.936,0.0313,0.0313,0.321,0.309,0.333,1 +1,0.386,0.965,0.965,0.679,0,0.703,0.703,0.703,0,0,0,0,0,0,0,0,0,0,0.729,0.717,0.887,1,0.994,0.118,0.994,0.994,0.0235,0.0235,0.271,0.261,0.333,1 +1,0.0495,0.825,0.825,0.132,0,0.672,0.672,0.672,0,0,0,0,0,0,0,0,0.00284,0.00284,0.258,0.465,0.536,1,0.867,0.0807,0.867,0.867,0.0235,0.0235,0.151,0.145,1,1 +1,0.0495,0.699,0.699,0.0658,0,0.626,0.626,0.626,0,0,0,0,0,0,0,0,0,0,0.258,0.465,0.232,1,0.751,0.0435,0.751,0.751,0.0235,0.0235,0.151,0.145,1,1 diff --git a/example_files/resources/hpxml-measures/Changelog.md b/example_files/resources/hpxml-measures/Changelog.md new file mode 100644 index 00000000..a93fda8b --- /dev/null +++ b/example_files/resources/hpxml-measures/Changelog.md @@ -0,0 +1,238 @@ +## OpenStudio-HPXML v1.2.0 (Pending) + +__New Features__ +- Allow `Slab/ExposedPerimeter` to be zero. +- **Breaking change**: Replaces `Site/extension/ShelterCoefficient` with `Site/ShieldingofHome`. +- Removes `ClothesDryer/ControlType` from being a required input, it is not used. +- Moves additional error-checking from the ruby measure to the schematron validator. +- Adds more detail to error messages regarding the wrong data type in the HPXML file. +- Relaxes tolerance for duct leakage to outside warning when ducts solely in conditioned space. + +__Bugfixes__ +- Fixes ruby error if elements (e.g., `SystemIdentifier`) exist without the proper 'id'/'idref' attribute. +- Fixes error if boiler/GSHP pump power is zero +- Fixes possible "Electricity category end uses do not sum to total" error due to boiler pump energy. +- Fixes possible "Construction R-value ... does not match Assembly R-value" error for highly insulated enclosure elements. + +## OpenStudio-HPXML v1.1.0 + +__New Features__ +- **Breaking change**: `Type` is now a required input for dehumidifiers; can be "portable" or "whole-home". +- **Breaking change**: `Location` is now a required input for dehumidifiers; must be "living space" as dehumidifiers are currently modeled as located in living space. +- **Breaking change**: `Type` is now a required input for Pool, PoolPump, HotTub, and HotTubPump. +- **Breaking change**: Both supply and return duct leakage to outside are now required inputs for AirDistribution systems. +- **Breaking change**: Simplifies inputs for fan coils and water loop heat pumps by A) removing HydronicAndAirDistribution element and B) moving WLHP inputs from extension elements to HeatPump element. +- Allows modeling airflow/charge defects for air conditioners, heat pumps, and furnaces (RESNET Standard 310). +- Allows modeling *multiple* dehumidifiers (previously only one allowed). +- Allows modeling generators (generic on-site power production). +- Allows detailed heating/cooling setpoints to be specified: 24-hour weekday & weekend values. +- Allows modeling window/skylight *exterior* shading via summer/winter shading coefficients. +- Allows JSON annual/timeseries output files to be generated instead of CSV. **Breaking change**: For CSV outputs, the first two sections in the results_annual.csv file are now prefixed with "Fuel Use:" and "End Use:", respectively. +- Allows more defaulting (optional inputs) for a variety of HPXML elements. +- Allows requesting timeseries unmet heating/cooling loads. +- Allows skipping schema/schematron validation (for speed); should only be used if the HPXML was already validated upstream. +- Allows HPXML files w/ multiple `Building` elements; requires providing the ID of the single building to be simulated. +- Includes hot water loads (in addition to heating/cooling loads) when timeseries total loads are requested. +- The `in.xml` HPXML file is now always produced for inspection of default values (e.g., autosized HVAC capacities). **Breaking change**: The `output_dir` HPXMLtoOpenStudio measure argument is now required. +- Overhauls documentation to be more comprehensive and standardized. +- `run_simulation.rb` now returns exit code 1 if not successful (i.e., either invalid inputs or simulation fails). + +__Bugfixes__ +- Improved modeling of window/skylight interior shading -- better reflects shading coefficient inputs. +- Adds error-checking on the HPXML schemaVersion. +- Adds various error-checking to the schematron validator. +- Adds error-checking for empty IDs in the HPXML file. +- Fixes heat pump water heater fan energy not included in SimulationOutputReport outputs. +- Fixes possibility of incorrect "A neighbor building has an azimuth (XXX) not equal to the azimuth of any wall" error. +- Fixes possibility of errors encountered before schematron validation has occurred. +- Small bugfixes related to basement interior surface solar absorptances. +- Allows NumberofConditionedFloors/NumberofConditionedFloorsAboveGrade to be non-integer values per the HPXML schema. +- HVAC sizing design load improvements for floors above crawlspaces/basements, walls, ducts, and heat pumps. +- Now recognizes Type="none" to prevent modeling of pools and hot tubs (pumps and heaters). +- Fixes error for overhangs with zero depth. +- Fixes possible error where the normalized flue height for the AIM-2 infiltration model is negative. +- Slight adjustment of default water heater recovery efficiency equation to prevent errors from values being too high. +- Fixes schematron file not being valid per ISO Schematron standard. + +## OpenStudio-HPXML v1.0.0 + +__New Features__ +- Updates to OpenStudio 3.1.0/EnergyPlus 9.4.0. +- **Breaking change**: Deprecates `WeatherStation/WMO` HPXML input, use `WeatherStation/extension/EPWFilePath` instead; also removes `weather_dir` argument from HPXMLtoOpenStudio measure. +- Implements water heater Uniform Energy Factor (UEF) model; replaces RESNET UEF->EF regression. **Breaking change**: `FirstHourRating` is now a required input for storage water heaters when UEF is provided. +- Adds optional HPXML fan power inputs for most HVAC system types. **Breaking change**: Removes ElectricAuxiliaryEnergy input for non-boiler heating systems. +- Uses air-source heat pump cooling performance curves for central air conditioners. +- Updates rated fan power assumption for mini-split heat pump models. +- Allows coal fuel type for non-boiler heating systems. +- Accommodates common walls adjacent to unconditioned space by using HPXML surfaces where InteriorAdjacentTo == ExteriorAdjacentTo. +- Adds optional HPXML inputs to define whether a clothes dryer is vented and its ventilation rate. +- Adds optional HPXML input for `SimulationControl/CalendarYear` for TMY weather files. +- Schematron validation improvements. +- Adds some HPXML XSD schema validation and additional error-checking. +- Various small updates to ASHRAE 140 test files. +- Reduces number of EnergyPlus output files produced by using new OutputControlFiles object. +- Release packages now include ASHRAE 140 test files/results. + +__Bugfixes__ +- EnergyPlus 9.4.0 fix for negative window solar absorptances at certain hours. +- Fixes airflow timeseries outputs to be averaged instead of summed. +- Updates HVAC sizing methodology for slab-on-grade foundation types. +- Fixes an error that could prevent schematron validation errors from being produced. +- Skips weather caching if filesystem is read only. + +## OpenStudio-HPXML v0.11.0 Beta + +__New Features__ +- New [Schematron](http://schematron.com) validation (EPvalidator.xml) replaces custom ruby validation (EPvalidator.rb) +- **[Breaking Change]** `BuildingConstruction/ResidentialFacilityType` ("single-family detached", "single-family attached", "apartment unit", or "manufactured home") is a required input +- Ability to model shared systems for Attached/Multifamily dwelling units + - Shared HVAC systems (cooling towers, chillers, central boilers, water loop heat pumps, fan coils, ground source heat pumps on shared hydronic circulation loops) + - Shared water heaters serving either A) multiple dwelling units' service hot water or B) a shared laundry/equipment room, as well as hot water recirculation systems + - Shared appliances (e.g., clothes dryer in a shared laundry room) + - Shared hot water recirculation systems + - Shared ventilation systems (optionally with preconditioning equipment and recirculation) + - Shared PV systems + - **[Breaking Change]** Appliances located in MF spaces (i.e., "other") must now be specified in more detail (i.e., "other heated space", "other non-freezing space", "other multifamily buffer space", or "other housing unit") +- Enclosure + - New optional inputs: `Roof/RoofType`, `Wall/Siding`, and `RimJoist/Siding` + - New optional inputs: `Skylight/InteriorShading/SummerShadingCoefficient` and `Skylight/InteriorShading/SummerShadingCoefficient` + - New optional inputs: `Roof/RoofColor`, `Wall/Color`, and `RimJoist/Color` can be provided instead of `SolarAbsorptance` + - New optional input to specify presence of flue/chimney, which results in increased infiltration + - Allows adobe wall type + - Allows `AirInfiltrationMeasurement/HousePressure` to be any value (previously required to be 50 Pa) + - **[Breaking Change]** `Roof/RadiantBarrierGrade` input now required when there is a radiant barrier +- HVAC + - Adds optional high-level HVAC autosizing controls + - `AllowIncreasedFixedCapacities`: Describes how HVAC equipment with fixed capacities are handled. If true, the maximum of the user-specified fixed capacity and the heating/cooling design load will be used to reduce potential for unmet loads. Defaults to false. + - `UseMaxLoadForHeatPumps`: Describes how autosized heat pumps are handled. If true, heat pumps are sized based on the maximum of heating and cooling design loads. If false, heat pumps are sized per ACCA Manual J/S based on cooling design loads with some oversizing allowances for heating design loads. Defaults to true. + - Additional HVAC types: mini-split air conditioners and fixed (non-portable) space heaters + - Adds optional inputs for ground-to-air heat pumps: `extension/PumpPowerWattsPerTon` and `extension/FanPowerWattsPerCFM` +- Ventilation + - Allows _multiple_ whole-home ventilation, spot ventilation, and/or whole house fans +- Appliances & Plug Loads + - Allows _multiple_ `Refrigerator` and `Freezer` + - Allows `Pool`, `HotTub`, `PlugLoad` of type "electric vehicle charging" and "well pump", and `FuelLoad` of type "grill", "lighting", and "fireplace" + - **[Breaking Change]** "other" and "TV other" plug loads now required +- Lighting + - Allows lighting schedules and holiday lighting +- **[Breaking Change]** For hydronic distributions, `HydronicDistributionType` is now required +- **[Breaking Change]** For DSE distributions, `AnnualHeatingDistributionSystemEfficiency` and `AnnualCoolingDistributionSystemEfficiency` are both always required +- Allows more HPXML fuel types to be used for HVAC, water heating, appliances, etc. +- New inputs to define Daylight Saving period; defaults to enabled +- Adds more reporting of warnings/errors to run.log + +__Bugfixes__ +- Fixes pump energy for boilers and ground source heat pumps +- Fixes incorrect gallons of hot water use reported when there are multiple water heaters +- No longer report unmet load for buildings where the HVAC system only meets part of the load (e.g., room AC serving 33% of the load) +- Schedule bugfix for leap years + +## OpenStudio-HPXML v0.10.0 Beta + +__New Features__ +- Dwelling units of single-family attached/multifamily buildings: + - Adds new generic space types "other heated space", "other multifamily buffer space", and "other non-freezing space" for surface `ExteriorAdjacentTo` elements. "other housing unit", i.e. adiabatic surfaces, was already supported. + - **[Breaking Change]** For `FrameFloors`, replaces "other housing unit above" and "other housing unit below" enumerations with "other housing unit". All four "other ..." spaces must have an `extension/OtherSpaceAboveOrBelow` property set to either "above" or "below". + - Allows ducts and water heaters to be located in all "other ..." spaces. + - Allows all appliances to be located in "other", in which internal gains are neglected. +- Allows `Fireplace` and `FloorFurnace` for heating system types. +- Allows "exterior wall", "under slab", and "roof deck" for `DuctLocation`. +- Allows "wood" and "wood pellets" as fuel types for additional HVAC systems, water heaters, and appliances. +- Allows `Location` to be provided for `Dishwasher` and `CookingRange`. +- Allows `BuildingSummary/Site/SiteType` ("urban", "suburban", or "rural") to be provided. +- Allows user-specified `Refrigerator` and `CookingRange` schedules to be provided. +- HVAC capacity elements are no longer required; if not provided, ACCA Manual J autosizing calculations will be used (-1 can continue to be used for capacity elements but is discouraged). +- Duct locations/areas can be defaulted by specifying supply/return `Duct` elements without `DuctSurfaceArea` and `DuctLocation`. `HVACDistribution/DistributionSystemType/AirDistribution/NumberofReturnRegisters` can be optionally provided to inform the default duct area calculations. +- **[Breaking Change]** Lighting inputs now use `LightingType[LightEmittingDiode | CompactFluorescent | FluorescentTube]` instead of `ThirdPartyCertification="ERI Tier I" or ThirdPartyCertification="ERI Tier II"`. +- **[Breaking Change]** `HVACDistribution/ConditionedFloorAreaServed` is now required for air distribution systems. +- **[Breaking Change]** Infiltration and attic ventilation specified using natural air changes per hour now uses `ACHnatural` instead of `extension/ConstantACHnatural`. +- **[Breaking Change]** The optional `PerformanceAdjustment` input for instantaneous water heaters is now treated as a performance multiplier (e.g., 0.92) instead of derate (e.g., 0.08). +- Adds ASHRAE 140 Class II test files. +- SimulationOutputReport reporting measure: + - New optional timeseries outputs: airflows (e.g., infiltration, mechanical ventilation, natural ventilation, whole house fan) and weather (e.g., temperatures, wind speed, solar). + - Timeseries frequency can now be set to 'none' as an alternative to setting all include_timeseries_foo variables to false. + - **[Breaking Change]** Renames "Wood" to "Wood Cord" to better distinguish from "Wood Pellets". +- Modeling improvements: + - Improved calculation for infiltration height + - Infiltration & mechanical ventilation now combined using ASHRAE 62.2 Normative Appendix C. +- Runtime improvements: + - Optimized ruby require calls. + - Skip ViewFactor calculations when not needed (i.e., no conditioned basement). +- Error-checking: + - Adds more space type-specific error checking of adjacent surfaces. + - Adds additional HPXML datatype checks. + - Adds a warning if a `HVACDistribution` system has ducts entirely within conditioned space and non-zero leakage to the outside. + - Adds warnings if appliance inputs may be inappropriate and result in negative energy or hot water use. + +__Bugfixes__ +- Fixes error if there's a `FoundationWall` whose height is less than 0.5 ft. +- Fixes HVAC defrost control in EnergyPlus model to use "Timed" instead of "OnDemand". +- Fixes exterior air film and wind exposure for a `FrameFloor` over ambient conditions. +- Fixes air films for a `FrameFloor` ceiling. +- Fixes error if there are additional `LightingGroup` elements beyond the ones required. +- Fixes vented attic ventilation rate. +- Reported unmet heating/cooling load now correctly excludes latent energy. +- Ground-source heat pump backup fuel is now correctly honored instead of always using electricity. + +## OpenStudio-HPXML v0.9.0 Beta + +__New Features__ +- **[Breaking Change]** Updates to OpenStudio v3.0.0 and EnergyPlus 9.3 +- Numerous HPXML inputs are now optional with built-in defaulting, particularly for water heating, appliances, and PV. Set the `debug` argument to true to output a in.xml HPXML file with defaults applied for inspection. See the documentation for defaulting equations/assumptions/references. +- **[Breaking Change]** If clothes washer efficiency inputs are provided, `LabelUsage` is now required. +- **[Breaking Change]** If dishwasher efficiency inputs are provided, `LabelElectricRate`, `LabelGasRate`, `LabelAnnualGasCost`, and `LabelUsage` are now required. +- Adds optional specification of simulation controls including timestep and begin/end dates. +- Adds optional `extension/UsageMultiplier` inputs for appliances, plug loads, lighting, and water fixtures. Can be used to, e.g., reflect high/low usage occupants. +- Adds ability to model a dehumidifier. +- Adds ability to model kitchen/bath fans (spot ventilation). +- Improved desuperheater model; desuperheater can now be connected to heat pump water heaters. +- Updated clothes washer/dryer and dishwasher models per ANSI/RESNET/ICC 301-2019 Addendum A. +- Solar thermal systems modeled with `SolarFraction` can now be connected to combi water heating systems. +- **[Breaking Change]** Replaces optional `epw_output_path` and `osm_output_path` arguments with a single optional `output_dir` argument; adds an optional `debug` argument. +- **[Breaking Change]** Replaces optional `BuildingConstruction/extension/FractionofOperableWindowArea` with optional `Window/FractionOperable`. +- **[Breaking Change]** Replaces optional `extension/EPWFileName` with optional `extension/EPWFilePath` to allow absolute paths to be provided as an alternative to just the file name. +- Replaces REXML xml library with Oga for better runtime performance. +- Additional error-checking. +- SimulationOutputReport reporting measure: + - Now reports wood and wood pellets + - Can report monthly timeseries values if requested + - Adds hot water outputs (gallons) for clothes washer, dishwasher, fixtures, and distribution waste. + - Small improvement to calculation of component loads + +__Bugfixes__ +- Fixes possible simulation error for buildings with complex HVAC/duct systems. +- Fixes handling of infiltration induced by duct leakage imbalance (i.e., supply leakage != return leakage). Only affects ducts located in a vented crawlspace or vented attic. +- Fixes an unsuccessful simulation for buildings where the sum of multiple HVAC systems' fraction load served was slightly above 1 due to rounding. +- Small fix for interior partition wall thermal mass model. +- Skip building surfaces with areas that are extremely small. + +## OpenStudio-HPXML v0.8.0 Beta + +__Breaking Changes__ +- Weather cache files are now in .csv instead of .cache format. +- `extension/StandbyLoss` changed to `StandbyLoss` for indirect water heaters. +- `Site/extension/DisableNaturalVentilation` changed to `BuildingConstruction/extension/FractionofOperableWindowArea` for more granularity. + +__New Features__ +- Adds a SimulationOutputReport reporting measure that provides a variety of annual/timeseries outputs in CSV format. +- Allows modeling of whole-house fans to address cooling. +- Improved natural ventilation algorithm that reduces the potential for incurring additional heating energy. +- Optional `HotWaterTemperature` input for water heaters. +- Optional `CompressorType` input for air conditioners and air-source heat pumps. +- Allows specifying the EnergyPlus simulation timestep. +- Runtime performance improvements. +- Additional HPXML error-checking. + +__Bugfixes__ +- Fix for central fan integrated supply (CFIS) fan energy. +- Fix simulation error when `FractionHeatLoadServed` (or `FractionCoolLoadServed`) sums to slightly greater than 1. +- Fix for running simulations on a different drive (either local or remote network). +- Fix for HVAC sizing error when latitude is exactly 64 (Big Delta, Alaska). +- Fixes running simulations when there is no weather cache file. +- Fixes view factors when conditioned basement foundation walls have a window/door. +- Fixes weather file download. +- Allow a building with ceiling fans and without lighting. + +## OpenStudio-HPXML v0.7.0 Beta + +- Initial beta release \ No newline at end of file diff --git a/example_files/resources/hpxml-measures/Gemfile b/example_files/resources/hpxml-measures/Gemfile index 5bde88bf..4200f7ad 100644 --- a/example_files/resources/hpxml-measures/Gemfile +++ b/example_files/resources/hpxml-measures/Gemfile @@ -2,11 +2,13 @@ source 'http://rubygems.org' +gem 'nokogiri', '~> 1.10' gem 'oga' +gem 'schematron-nokogiri' gem 'rake' gem 'minitest', '~> 5.9' gem 'ci_reporter_minitest', '~> 1.0.0' gem 'simplecov' -gem 'codecov' +gem 'codecov', '0.2.12' gem 'minitest-reporters' -gem 'minitest-ci' # For CircleCI Automatic test metadata collection +gem 'parallel' diff --git a/example_files/resources/hpxml-measures/Gemfile.lock b/example_files/resources/hpxml-measures/Gemfile.lock index ab904f62..0fc6c364 100644 --- a/example_files/resources/hpxml-measures/Gemfile.lock +++ b/example_files/resources/hpxml-measures/Gemfile.lock @@ -9,25 +9,35 @@ GEM ci_reporter_minitest (1.0.0) ci_reporter (~> 2.0) minitest (~> 5.0) - codecov (0.5.1) - simplecov (>= 0.15, < 0.22) + codecov (0.2.12) + json + simplecov docile (1.3.5) + json (2.5.1) + mini_portile2 (2.5.0) minitest (5.14.4) - minitest-ci (3.4.0) - minitest (>= 5.0.6) minitest-reporters (1.4.3) ansi builder minitest (>= 5.0) ruby-progressbar + nokogiri (1.11.2) + mini_portile2 (~> 2.5.0) + racc (~> 1.4) + nokogiri (1.11.2-x64-mingw32) + racc (~> 1.4) oga (3.3) ast ruby-ll (~> 2.1) + parallel (1.20.1) + racc (1.5.2) rake (13.0.3) ruby-ll (2.1.2) ansi ast ruby-progressbar (1.11.0) + schematron-nokogiri (0.0.3) + nokogiri (~> 1.6) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -41,13 +51,15 @@ PLATFORMS DEPENDENCIES ci_reporter_minitest (~> 1.0.0) - codecov + codecov (= 0.2.12) minitest (~> 5.9) - minitest-ci minitest-reporters + nokogiri (~> 1.10) oga + parallel rake + schematron-nokogiri simplecov BUNDLED WITH - 2.2.7 + 2.2.11 diff --git a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/measure.rb b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/measure.rb index a07d5826..6e8f6b83 100644 --- a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/measure.rb +++ b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/measure.rb @@ -61,17 +61,28 @@ def arguments(model) arg.setDescription('Absolute/relative path of the HPXML file.') args << arg - arg = OpenStudio::Measure::OSArgument.makeStringArgument('output_dir', false) + arg = OpenStudio::Measure::OSArgument.makeStringArgument('output_dir', true) arg.setDisplayName('Directory for Output Files') arg.setDescription('Absolute/relative path for the output files directory.') args << arg arg = OpenStudio::Measure::OSArgument.makeBoolArgument('debug', false) arg.setDisplayName('Debug Mode?') - arg.setDescription('If enabled: 1) Writes in.osm file, 2) Writes in.xml HPXML file with defaults populated, 3) Generates additional log output, and 4) Creates all EnergyPlus output files. Any files written will be in the output path specified above.') + arg.setDescription('If true: 1) Writes in.osm file, 2) Generates additional log output, and 3) Creates all EnergyPlus output files.') arg.setDefaultValue(false) args << arg + arg = OpenStudio::Measure::OSArgument.makeBoolArgument('skip_validation', false) + arg.setDisplayName('Skip Validation?') + arg.setDescription('If true, bypasses HPXML input validation for faster performance. WARNING: This should only be used if the supplied HPXML file has already been validated against the Schema & Schematron documents.') + arg.setDefaultValue(false) + args << arg + + arg = OpenStudio::Measure::OSArgument.makeStringArgument('building_id', false) + arg.setDisplayName('BuildingID') + arg.setDescription('The ID of the HPXML Building. Only required if there are multiple Building elements in the HPXML file.') + args << arg + return args end @@ -84,14 +95,16 @@ def run(model, runner, user_arguments) return false end - tear_down_model(model, runner) + Geometry.tear_down_model(model, runner) Version.check_openstudio_version() # assign the user inputs to variables hpxml_path = runner.getStringArgumentValue('hpxml_path', user_arguments) - output_dir = runner.getOptionalStringArgumentValue('output_dir', user_arguments) + output_dir = runner.getStringArgumentValue('output_dir', user_arguments) debug = runner.getBoolArgumentValue('debug', user_arguments) + skip_validation = runner.getBoolArgumentValue('skip_validation', user_arguments) + building_id = runner.getOptionalStringArgumentValue('building_id', user_arguments) unless (Pathname.new hpxml_path).absolute? hpxml_path = File.expand_path(File.join(File.dirname(__FILE__), hpxml_path)) @@ -100,19 +113,24 @@ def run(model, runner, user_arguments) fail "'#{hpxml_path}' does not exist or is not an .xml file." end - if output_dir.is_initialized - output_dir = output_dir.get - unless (Pathname.new output_dir).absolute? - output_dir = File.expand_path(File.join(File.dirname(__FILE__), output_dir)) - end + unless (Pathname.new output_dir).absolute? + output_dir = File.expand_path(File.join(File.dirname(__FILE__), output_dir)) + end + + if building_id.is_initialized + building_id = building_id.get else - output_dir = nil + building_id = nil end begin - stron_paths = [File.join(File.dirname(__FILE__), 'resources', 'HPXMLvalidator.xml'), - File.join(File.dirname(__FILE__), 'resources', 'EPvalidator.xml')] - hpxml = HPXML.new(hpxml_path: hpxml_path, schematron_validators: stron_paths) + if skip_validation + stron_paths = [] + else + stron_paths = [File.join(File.dirname(__FILE__), 'resources', 'HPXMLvalidator.xml'), + File.join(File.dirname(__FILE__), 'resources', 'EPvalidator.xml')] + end + hpxml = HPXML.new(hpxml_path: hpxml_path, schematron_validators: stron_paths, building_id: building_id) hpxml.errors.each do |error| runner.registerError(error) end @@ -121,9 +139,14 @@ def run(model, runner, user_arguments) end return false unless hpxml.errors.empty? - epw_path, cache_path = process_weather(hpxml, runner, model, output_dir, hpxml_path) + epw_path, cache_path = process_weather(hpxml, runner, model, hpxml_path) + + if debug + epw_output_path = File.join(output_dir, 'in.epw') + FileUtils.cp(epw_path, epw_output_path) + end - OSModel.create(hpxml, runner, model, hpxml_path, epw_path, cache_path, output_dir, debug) + OSModel.create(hpxml, runner, model, hpxml_path, epw_path, cache_path, output_dir, building_id, debug) rescue Exception => e runner.registerError("#{e.message}\n#{e.backtrace.join("\n")}") return false @@ -132,20 +155,7 @@ def run(model, runner, user_arguments) return true end - def tear_down_model(model, runner) - # Tear down the existing model if it exists - has_existing_objects = (model.getThermalZones.size > 0) - handles = OpenStudio::UUIDVector.new - model.objects.each do |obj| - handles << obj.handle - end - model.removeObjects(handles) - if has_existing_objects - runner.registerWarning('The model contains existing objects and is being reset.') - end - end - - def process_weather(hpxml, runner, model, output_dir, hpxml_path) + def process_weather(hpxml, runner, model, hpxml_path) epw_path = hpxml.climate_and_risk_zones.weather_station_epw_filepath if not File.exist? epw_path @@ -185,7 +195,7 @@ def process_weather(hpxml, runner, model, output_dir, hpxml_path) end class OSModel - def self.create(hpxml, runner, model, hpxml_path, epw_path, cache_path, output_dir, debug) + def self.create(hpxml, runner, model, hpxml_path, epw_path, cache_path, output_dir, building_id, debug) @hpxml = hpxml @debug = debug @@ -199,14 +209,13 @@ def self.create(hpxml, runner, model, hpxml_path, epw_path, cache_path, output_d # Init weather, epw_file = Location.apply_weather_file(model, runner, epw_path, cache_path) - check_for_errors() - set_defaults_and_globals(runner, output_dir, epw_file) + set_defaults_and_globals(runner, output_dir, epw_file, weather) Location.apply(model, runner, weather, epw_file, @hpxml) add_simulation_params(model) @schedules_file = nil - if not @hpxml.header.schedules_path.nil? - @schedules_file = SchedulesFile.new(runner: runner, model: model, schedules_path: @hpxml.header.schedules_path, col_names: ScheduleGenerator.col_names) + unless @hpxml.header.schedules_path.nil? + @schedules_file = SchedulesFile.new(runner: runner, model: model, schedules_path: @hpxml.header.schedules_path, col_names: ScheduleGenerator.col_names.keys) end # Conditioned space/zone @@ -222,7 +231,7 @@ def self.create(hpxml, runner, model, hpxml_path, epw_path, cache_path, output_d add_rim_joists(runner, model, spaces) add_frame_floors(runner, model, spaces) add_foundation_walls_slabs(runner, model, spaces) - add_interior_shading_schedule(runner, model, weather) + add_shading_schedule(runner, model, weather) add_windows(runner, model, spaces, weather) add_doors(runner, model, spaces) add_skylights(runner, model, spaces, weather) @@ -235,12 +244,11 @@ def self.create(hpxml, runner, model, hpxml_path, epw_path, cache_path, output_d # HVAC - update_shared_hvac_systems() add_ideal_system(runner, model, spaces, epw_path) add_cooling_system(runner, model, spaces) add_heating_system(runner, model, spaces) add_heat_pump(runner, model, weather, spaces) - add_dehumidifier(runner, model, spaces) + add_dehumidifiers(runner, model, spaces) add_residual_ideal_system(runner, model, spaces) add_ceiling_fans(runner, model, weather, spaces) @@ -260,10 +268,9 @@ def self.create(hpxml, runner, model, hpxml_path, epw_path, cache_path, output_d # Other add_airflow(runner, model, weather, spaces) - add_hvac_sizing(runner, model, weather, spaces) add_photovoltaics(runner, model) add_generators(runner, model) - add_additional_properties(runner, model, hpxml_path) + add_additional_properties(runner, model, hpxml_path, building_id) # Output @@ -273,9 +280,11 @@ def self.create(hpxml, runner, model, hpxml_path, epw_path, cache_path, output_d # add_ems_debug_output(runner, model) # Vacancy - set_vacancy(runner, model) + unless @schedules_file.nil? + @schedules_file.set_vacancy + end - if debug && (not output_dir.nil?) + if debug osm_output_path = File.join(output_dir, 'in.osm') File.write(osm_output_path, model.to_s) runner.registerInfo("Wrote file: #{osm_output_path}") @@ -284,80 +293,7 @@ def self.create(hpxml, runner, model, hpxml_path, epw_path, cache_path, output_d private - def self.check_for_errors() - # Conditioned space - location = HPXML::LocationLivingSpace - if (@hpxml.roofs.select { |s| s.interior_adjacent_to == location }.size + - @hpxml.frame_floors.select { |s| s.is_ceiling && (s.interior_adjacent_to == location) }.size) == 0 - fail 'There must be at least one ceiling/roof adjacent to conditioned space.' - end - if @hpxml.walls.select { |s| (s.interior_adjacent_to == location) && s.is_exterior }.size == 0 - fail 'There must be at least one exterior wall adjacent to conditioned space.' - end - if (@hpxml.slabs.select { |s| [location, HPXML::LocationBasementConditioned].include? s.interior_adjacent_to }.size + - @hpxml.frame_floors.select { |s| s.is_floor && (s.interior_adjacent_to == location) }.size) == 0 - fail 'There must be at least one floor/slab adjacent to conditioned space.' - end - - # Basement/Crawlspace - [HPXML::LocationBasementConditioned, - HPXML::LocationBasementUnconditioned, - HPXML::LocationCrawlspaceVented, - HPXML::LocationCrawlspaceUnvented].each do |location| - next unless @hpxml.has_space_type(location) - - if location != HPXML::LocationBasementConditioned # HPXML file doesn't need to have FrameFloor between living and conditioned basement - if @hpxml.frame_floors.select { |s| s.is_floor && (s.interior_adjacent_to == HPXML::LocationLivingSpace) && (s.exterior_adjacent_to == location) }.size == 0 - fail "There must be at least one ceiling adjacent to #{location}." - end - end - if @hpxml.foundation_walls.select { |s| (s.interior_adjacent_to == location) && s.is_exterior }.size == 0 - fail "There must be at least one exterior foundation wall adjacent to #{location}." - end - if @hpxml.slabs.select { |s| s.interior_adjacent_to == location }.size == 0 - fail "There must be at least one slab adjacent to #{location}." - end - end - - # Garage - location = HPXML::LocationGarage - if @hpxml.has_space_type(location) - if (@hpxml.roofs.select { |s| s.interior_adjacent_to == location }.size + - @hpxml.frame_floors.select { |s| [s.interior_adjacent_to, s.exterior_adjacent_to].include? location }.size) == 0 - fail "There must be at least one roof/ceiling adjacent to #{location}." - end - if (@hpxml.walls.select { |s| (s.interior_adjacent_to == location) && s.is_exterior }.size + - @hpxml.foundation_walls.select { |s| [s.interior_adjacent_to, s.exterior_adjacent_to].include?(location) && s.is_exterior }.size) == 0 - fail "There must be at least one exterior wall/foundation wall adjacent to #{location}." - end - if @hpxml.slabs.select { |s| s.interior_adjacent_to == location }.size == 0 - fail "There must be at least one slab adjacent to #{location}." - end - end - - # Attic - [HPXML::LocationAtticVented, - HPXML::LocationAtticUnvented].each do |location| - next unless @hpxml.has_space_type(location) - - if @hpxml.roofs.select { |s| s.interior_adjacent_to == location }.size == 0 - fail "There must be at least one roof adjacent to #{location}." - end - - if @hpxml.frame_floors.select { |s| s.is_ceiling && [s.interior_adjacent_to, s.exterior_adjacent_to].include?(location) }.size == 0 - fail "There must be at least one floor adjacent to #{location}." - end - end - - # Error-checking from RESNET Pub 002: Number of bedrooms - nbeds = @hpxml.building_construction.number_of_bedrooms - nbeds_limit = (@hpxml.building_construction.conditioned_floor_area - 120.0) / 70.0 - if nbeds > nbeds_limit - fail "Number of bedrooms (#{nbeds}) exceeds limit of (CFA-120)/70=#{nbeds_limit.round(1)}." - end - end - - def self.set_defaults_and_globals(runner, output_dir, epw_file) + def self.set_defaults_and_globals(runner, output_dir, epw_file, weather) # Initialize @remaining_heat_load_frac = 1.0 @remaining_cool_load_frac = 1.0 @@ -370,25 +306,20 @@ def self.set_defaults_and_globals(runner, output_dir, epw_file) @ncfl = @hpxml.building_construction.number_of_conditioned_floors @ncfl_ag = @hpxml.building_construction.number_of_conditioned_floors_above_grade @nbeds = @hpxml.building_construction.number_of_bedrooms - @min_neighbor_distance = get_min_neighbor_distance() @default_azimuths = get_default_azimuths() - @has_uncond_bsmnt = @hpxml.has_space_type(HPXML::LocationBasementUnconditioned) - - if @hpxml.building_construction.use_only_ideal_air_system.nil? - @hpxml.building_construction.use_only_ideal_air_system = false - end # Apply defaults to HPXML object - HPXMLDefaults.apply(@hpxml, @cfa, @nbeds, @ncfl, @ncfl_ag, @has_uncond_bsmnt, @eri_version, epw_file, runner) + HPXMLDefaults.apply(@hpxml, @eri_version, weather, epw_file) @frac_windows_operable = @hpxml.fraction_of_windows_operable() - if @debug && (not output_dir.nil?) - # Write updated HPXML object to file - hpxml_defaults_path = File.join(output_dir, 'in.xml') - XMLHelper.write_file(@hpxml.to_oga, hpxml_defaults_path) - runner.registerInfo("Wrote file: #{hpxml_defaults_path}") - end + # Write updated HPXML object (w/ defaults) to file for inspection + hpxml_defaults_path = File.join(output_dir, 'in.xml') + XMLHelper.write_file(@hpxml.to_oga, hpxml_defaults_path) + + # Now that we've written in.xml, ensure that no capacities/airflows + # are zero in order to prevent potential E+ errors. + HVAC.ensure_nonzero_sizing_values(@hpxml) end def self.add_simulation_params(model) @@ -437,7 +368,6 @@ def self.set_zone_volumes(runner, model, spaces) def self.explode_surfaces(runner, model) # Re-position surfaces so as to not shade each other and to make it easier to visualize the building. - # FUTURE: Might be able to use the new self-shading options in E+ 8.9 ShadowCalculation object instead? gap_distance = UnitConversions.convert(10.0, 'ft', 'm') # distance between surfaces of the same azimuth rad90 = UnitConversions.convert(90, 'deg', 'rad') @@ -490,10 +420,10 @@ def self.explode_surfaces(runner, model) end # Explode neighbors - model.getShadingSurfaceGroups.each do |shading_surface_group| - next if shading_surface_group.name.to_s != Constants.ObjectNameNeighbors + model.getShadingSurfaceGroups.each do |shading_group| + next unless shading_group.name.to_s == Constants.ObjectNameNeighbors - shading_surface_group.shadingSurfaces.each do |shading_surface| + shading_group.shadingSurfaces.each do |shading_surface| azimuth = shading_surface.additionalProperties.getFeatureAsInteger('Azimuth').get azimuth_rad = UnitConversions.convert(azimuth, 'deg', 'rad') distance = shading_surface.additionalProperties.getFeatureAsDouble('Distance').get @@ -523,6 +453,28 @@ def self.explode_surfaces(runner, model) azimuth = surface.additionalProperties.getFeatureAsInteger('Azimuth').get azimuth_rad = UnitConversions.convert(azimuth, 'deg', 'rad') + # Get associated shading surfaces (e.g., overhangs, interior shading surfaces) + overhang_surfaces = [] + shading_surfaces = [] + surface.subSurfaces.each do |subsurface| + next unless subsurface.subSurfaceType.downcase == 'fixedwindow' + + subsurface.shadingSurfaceGroups.each do |overhang_group| + overhang_group.shadingSurfaces.each do |overhang| + overhang_surfaces << overhang + end + end + end + model.getShadingSurfaceGroups.each do |shading_group| + next unless [Constants.ObjectNameSkylightShade, Constants.ObjectNameWindowShade].include? shading_group.name.to_s + + shading_group.shadingSurfaces.each do |window_shade| + next unless window_shade.additionalProperties.getFeatureAsString('ParentSurface').get == surface.name.to_s + + shading_surfaces << window_shade + end + end + # Push out horizontally distance = explode_distance @@ -533,40 +485,28 @@ def self.explode_surfaces(runner, model) distance -= 0.5 * Math.cos(Math.atan(tilt)) * width end transformation = get_surface_transformation(distance, Math::sin(azimuth_rad), Math::cos(azimuth_rad), 0) + transformation_shade = get_surface_transformation(distance + 0.001, Math::sin(azimuth_rad), Math::cos(azimuth_rad), 0) # Offset slightly from window - surface.setVertices(transformation * surface.vertices) + ([surface] + surface.subSurfaces + overhang_surfaces).each do |s| + s.setVertices(transformation * s.vertices) + end + shading_surfaces.each do |s| + s.setVertices(transformation_shade * s.vertices) + end if surface.adjacentSurface.is_initialized surface.adjacentSurface.get.setVertices(transformation * surface.adjacentSurface.get.vertices) end - surface.subSurfaces.each do |subsurface| - subsurface.setVertices(transformation * subsurface.vertices) - next unless subsurface.subSurfaceType.downcase == 'fixedwindow' - - subsurface.shadingSurfaceGroups.each do |overhang_group| - overhang_group.shadingSurfaces.each do |overhang| - overhang.setVertices(transformation * overhang.vertices) - end - end - end - # Shift at 90-degrees to previous transformation + # Shift at 90-degrees to previous transformation, so surfaces don't overlap and shade each other azimuth_side_shifts[azimuth] -= surface.additionalProperties.getFeatureAsDouble('Length').get / 2.0 transformation_shift = get_surface_transformation(azimuth_side_shifts[azimuth], Math::sin(azimuth_rad + rad90), Math::cos(azimuth_rad + rad90), 0) - surface.setVertices(transformation_shift * surface.vertices) + ([surface] + surface.subSurfaces + overhang_surfaces + shading_surfaces).each do |s| + s.setVertices(transformation_shift * s.vertices) + end if surface.adjacentSurface.is_initialized surface.adjacentSurface.get.setVertices(transformation_shift * surface.adjacentSurface.get.vertices) end - surface.subSurfaces.each do |subsurface| - subsurface.setVertices(transformation_shift * subsurface.vertices) - next unless subsurface.subSurfaceType.downcase == 'fixedwindow' - - subsurface.shadingSurfaceGroups.each do |overhang_group| - overhang_group.shadingSurfaces.each do |overhang| - overhang.setVertices(transformation_shift * overhang.vertices) - end - end - end azimuth_side_shifts[azimuth] -= (surface.additionalProperties.getFeatureAsDouble('Length').get / 2.0 + gap_distance) @@ -576,6 +516,16 @@ def self.explode_surfaces(runner, model) def self.update_conditioned_basement(runner, model, spaces) return if @cond_bsmnt_surfaces.empty? + # Update @cond_bsmnt_surfaces to include subsurfaces + new_cond_bsmnt_surfaces = @cond_bsmnt_surfaces.dup + @cond_bsmnt_surfaces.each do |cond_bsmnt_surface| + next if cond_bsmnt_surface.is_a? OpenStudio::Model::InternalMassDefinition + next if cond_bsmnt_surface.subSurfaces.empty? + cond_bsmnt_surface.subSurfaces.each do |ss| + new_cond_bsmnt_surfaces << ss + end + end + @cond_bsmnt_surfaces = new_cond_bsmnt_surfaces.dup update_solar_absorptances(runner, model) assign_view_factors(runner, model, spaces) @@ -584,7 +534,18 @@ def self.update_conditioned_basement(runner, model, spaces) def self.update_solar_absorptances(runner, model) # modify conditioned basement surface properties # zero out interior solar absorptance in conditioned basement + @cond_bsmnt_surfaces.each do |cond_bsmnt_surface| + # skip windows because windows don't have such property to change. + next if cond_bsmnt_surface.is_a?(OpenStudio::Model::SubSurface) && (cond_bsmnt_surface.subSurfaceType.downcase == 'fixedwindow') + adj_surface = nil + if not cond_bsmnt_surface.is_a? OpenStudio::Model::InternalMassDefinition + if not cond_bsmnt_surface.is_a? OpenStudio::Model::SubSurface + adj_surface = cond_bsmnt_surface.adjacentSurface.get if cond_bsmnt_surface.adjacentSurface.is_initialized + else + adj_surface = cond_bsmnt_surface.adjacentSubSurface.get if cond_bsmnt_surface.adjacentSubSurface.is_initialized + end + end const = cond_bsmnt_surface.construction.get layered_const = const.to_LayeredConstruction.get innermost_material = layered_const.layers[layered_const.numLayers() - 1].to_StandardOpaqueMaterial.get @@ -614,6 +575,12 @@ def self.update_solar_absorptances(runner, model) innermost_material = layered_const.layers[layered_const.numLayers() - 1].to_StandardOpaqueMaterial.get innermost_material.setSolarAbsorptance(0.0) innermost_material.setVisibleAbsorptance(0.0) + next if adj_surface.nil? + # Create new construction in case of shared construciton. + layered_const_adj = OpenStudio::Model::Construction.new(model) + layered_const_adj.setName(cond_bsmnt_surface.construction.get.name.get + ' Reversed Bsmnt') + adj_surface.setConstruction(layered_const_adj) + layered_const_adj.setLayers(cond_bsmnt_surface.construction.get.to_LayeredConstruction.get.layers.reverse()) end end @@ -635,8 +602,7 @@ def self.assign_view_factors(runner, model, spaces) all_surfaces.each do |surface| if @cond_bsmnt_surfaces.include?(surface) || - ((@cond_bsmnt_surfaces.include? surface.internalMassDefinition) if surface.is_a? OpenStudio::Model::InternalMass) || - ((@cond_bsmnt_surfaces.include? surface.surface.get) if surface.is_a? OpenStudio::Model::SubSurface) + ((@cond_bsmnt_surfaces.include? surface.internalMassDefinition) if surface.is_a? OpenStudio::Model::InternalMass) cond_base_surfaces << surface else lv_surfaces << surface @@ -902,19 +868,9 @@ def self.add_ceiling_polygon(x, y, z) def self.add_num_occupants(model, runner, spaces) # Occupants num_occ = @hpxml.building_occupancy.number_of_residents - if num_occ > 0 - occ_gain, hrs_per_day, sens_frac, lat_frac = Geometry.get_occupancy_default_values() - weekday_sch = Schedule.OccupantsWeekdayFractions - weekday_sch_sum = weekday_sch.split(',').map(&:to_f).sum(0.0) - if (weekday_sch_sum - hrs_per_day).abs > 0.1 - fail 'Occupancy schedule inconsistent with hrs_per_day.' - end + return if num_occ <= 0 - weekend_sch = Schedule.OccupantsWeekendFractions - monthly_sch = Schedule.OccupantsMonthlyMultipliers - - Geometry.process_occupants(model, num_occ, occ_gain, sens_frac, lat_frac, weekday_sch, weekend_sch, monthly_sch, @cfa, @nbeds, spaces[HPXML::LocationLivingSpace], @schedules_file) - end + Geometry.process_occupants(model, num_occ, @cfa, spaces[HPXML::LocationLivingSpace], @schedules_file) end def self.get_default_azimuths() @@ -1022,14 +978,14 @@ def self.add_roofs(runner, model, spaces) if roof.is_thermal_boundary constr_sets = [ + WoodStudConstructionSet.new(Material.Stud2x(8.0), 0.07, 20.0, 0.75, 0.5, mat_roofing), # 2x8, 24" o.c. + R20 WoodStudConstructionSet.new(Material.Stud2x(8.0), 0.07, 10.0, 0.75, 0.5, mat_roofing), # 2x8, 24" o.c. + R10 - WoodStudConstructionSet.new(Material.Stud2x(8.0), 0.07, 5.0, 0.75, 0.5, mat_roofing), # 2x8, 24" o.c. + R5 WoodStudConstructionSet.new(Material.Stud2x(8.0), 0.07, 0.0, 0.75, 0.5, mat_roofing), # 2x8, 24" o.c. WoodStudConstructionSet.new(Material.Stud2x6, 0.07, 0.0, 0.75, 0.5, mat_roofing), # 2x6, 24" o.c. WoodStudConstructionSet.new(Material.Stud2x4, 0.07, 0.0, 0.5, 0.5, mat_roofing), # 2x4, 16" o.c. WoodStudConstructionSet.new(Material.Stud2x4, 0.01, 0.0, 0.0, 0.0, mat_roofing), # Fallback ] - match, constr_set, cavity_r = pick_wood_stud_construction_set(assembly_r, constr_sets, inside_film, outside_film, roof.id) + match, constr_set, cavity_r = Constructions.pick_wood_stud_construction_set(assembly_r, constr_sets, inside_film, outside_film, roof.id) Constructions.apply_closed_cavity_roof(runner, model, surfaces, "#{roof.id} construction", cavity_r, install_grade, @@ -1045,7 +1001,7 @@ def self.add_roofs(runner, model, spaces) GenericConstructionSet.new(0.0, 0.5, 0.0, mat_roofing), # Standard GenericConstructionSet.new(0.0, 0.0, 0.0, mat_roofing), # Fallback ] - match, constr_set, layer_r = pick_generic_construction_set(assembly_r, constr_sets, inside_film, outside_film, roof.id) + match, constr_set, layer_r = Constructions.pick_generic_construction_set(assembly_r, constr_sets, inside_film, outside_film, roof.id) cavity_r = 0 cavity_ins_thick_in = 0 @@ -1059,7 +1015,7 @@ def self.add_roofs(runner, model, spaces) mat_roofing, has_radiant_barrier, inside_film, outside_film, radiant_barrier_grade) end - check_surface_assembly_rvalue(runner, surfaces, inside_film, outside_film, assembly_r, match) + Constructions.check_surface_assembly_rvalue(runner, surfaces, inside_film, outside_film, assembly_r, match) end end @@ -1128,8 +1084,8 @@ def self.add_walls(runner, model, spaces) outside_film = Material.AirFilmOutsideASHRAE140 end - apply_wall_construction(runner, model, surfaces, wall, wall.id, wall.wall_type, wall.insulation_assembly_r_value, - drywall_thick_in, inside_film, outside_film, mat_ext_finish) + Constructions.apply_wall_construction(runner, model, surfaces, wall, wall.id, wall.wall_type, wall.insulation_assembly_r_value, + drywall_thick_in, inside_film, outside_film, mat_ext_finish) end end @@ -1191,12 +1147,12 @@ def self.add_rim_joists(runner, model, spaces) assembly_r = rim_joist.insulation_assembly_r_value constr_sets = [ + WoodStudConstructionSet.new(Material.Stud2x(2.0), 0.17, 20.0, 2.0, drywall_thick_in, mat_ext_finish), # 2x4 + R20 WoodStudConstructionSet.new(Material.Stud2x(2.0), 0.17, 10.0, 2.0, drywall_thick_in, mat_ext_finish), # 2x4 + R10 - WoodStudConstructionSet.new(Material.Stud2x(2.0), 0.17, 5.0, 2.0, drywall_thick_in, mat_ext_finish), # 2x4 + R5 WoodStudConstructionSet.new(Material.Stud2x(2.0), 0.17, 0.0, 2.0, drywall_thick_in, mat_ext_finish), # 2x4 WoodStudConstructionSet.new(Material.Stud2x(2.0), 0.01, 0.0, 0.0, 0.0, mat_ext_finish), # Fallback ] - match, constr_set, cavity_r = pick_wood_stud_construction_set(assembly_r, constr_sets, inside_film, outside_film, rim_joist.id) + match, constr_set, cavity_r = Constructions.pick_wood_stud_construction_set(assembly_r, constr_sets, inside_film, outside_film, rim_joist.id) install_grade = 1 Constructions.apply_rim_joist(runner, model, surfaces, rim_joist, "#{rim_joist.id} construction", @@ -1204,7 +1160,7 @@ def self.add_rim_joists(runner, model, spaces) constr_set.drywall_thick_in, constr_set.osb_thick_in, constr_set.rigid_r, constr_set.exterior_material, inside_film, outside_film) - check_surface_assembly_rvalue(runner, surfaces, inside_film, outside_film, assembly_r, match) + Constructions.check_surface_assembly_rvalue(runner, surfaces, inside_film, outside_film, assembly_r, match) end end @@ -1272,6 +1228,7 @@ def self.add_frame_floors(runner, model, spaces) end end constr_sets = [ + WoodStudConstructionSet.new(Material.Stud2x6, 0.10, 20.0, 0.75, 0.0, covering), # 2x6, 24" o.c. + R20 WoodStudConstructionSet.new(Material.Stud2x6, 0.10, 10.0, 0.75, 0.0, covering), # 2x6, 24" o.c. + R10 WoodStudConstructionSet.new(Material.Stud2x6, 0.10, 0.0, 0.75, 0.0, covering), # 2x6, 24" o.c. WoodStudConstructionSet.new(Material.Stud2x4, 0.13, 0.0, 0.5, 0.0, covering), # 2x4, 16" o.c. @@ -1280,7 +1237,7 @@ def self.add_frame_floors(runner, model, spaces) end assembly_r = frame_floor.insulation_assembly_r_value - match, constr_set, cavity_r = pick_wood_stud_construction_set(assembly_r, constr_sets, inside_film, outside_film, frame_floor.id) + match, constr_set, cavity_r = Constructions.pick_wood_stud_construction_set(assembly_r, constr_sets, inside_film, outside_film, frame_floor.id) install_grade = 1 if frame_floor.is_ceiling @@ -1298,7 +1255,7 @@ def self.add_frame_floors(runner, model, spaces) constr_set.exterior_material, inside_film, outside_film) end - check_surface_assembly_rvalue(runner, [surface], inside_film, outside_film, assembly_r, match) + Constructions.check_surface_assembly_rvalue(runner, [surface], inside_film, outside_film, assembly_r, match) end end @@ -1319,6 +1276,7 @@ def self.add_foundation_walls_slabs(runner, model, spaces) next unless slab.interior_adjacent_to == foundation_type slabs << slab + slab.exposed_perimeter = [slab.exposed_perimeter, 1.0].max # minimum value to prevent error if no exposed slab end # Calculate combinations of slabs/walls for each Kiva instance @@ -1444,8 +1402,8 @@ def self.add_foundation_walls_slabs(runner, model, spaces) end mat_ext_finish = nil - apply_wall_construction(runner, model, [surface], foundation_wall, foundation_wall.id, wall_type, assembly_r, - drywall_thick_in, inside_film, outside_film, mat_ext_finish) + Constructions.apply_wall_construction(runner, model, [surface], foundation_wall, foundation_wall.id, wall_type, assembly_r, + drywall_thick_in, inside_film, outside_film, mat_ext_finish) end end end @@ -1528,7 +1486,7 @@ def self.add_foundation_wall(runner, model, spaces, foundation_wall, slab_frac, ext_rigid_r, int_rigid_r, drywall_thick_in, concrete_thick_in, height_ag) if not assembly_r.nil? - check_surface_assembly_rvalue(runner, [surface], inside_film, nil, assembly_r, match) + Constructions.check_surface_assembly_rvalue(runner, [surface], inside_film, nil, assembly_r, match) end return surface.adjacentFoundation.get @@ -1613,9 +1571,7 @@ def self.add_conditioned_floor_area(runner, model, spaces) addtl_cfa = @cfa - sum_cfa - if addtl_cfa < -1.0 # Allow some rounding - fail "Sum of floor/slab area adjacent to conditioned space (#{sum_cfa.round(1)}) is greater than conditioned floor area (#{@cfa.round(1)})." - end + fail if addtl_cfa < -1.0 # Allow some rounding; EPvalidator.xml should prevent this return unless addtl_cfa > 1.0 # Allow some rounding @@ -1704,17 +1660,14 @@ def self.add_neighbors(runner, model, length) end end - def self.add_interior_shading_schedule(runner, model, weather) - heating_season, cooling_season = HVAC.get_default_heating_and_cooling_seasons(weather) - @clg_season_sch = MonthWeekdayWeekendSchedule.new(model, 'cooling season schedule', Array.new(24, 1), Array.new(24, 1), cooling_season, Constants.ScheduleTypeLimitsFraction) - - # Create heating season as opposite of cooling season (i.e., with overlap months) - non_cooling_season = cooling_season.map { |m| (m - 1).abs } - @htg_season_sch = MonthWeekdayWeekendSchedule.new(model, 'heating season schedule', Array.new(24, 1), Array.new(24, 1), non_cooling_season, Constants.ScheduleTypeLimitsFraction) + def self.add_shading_schedule(runner, model, weather) + heating_season, @cooling_season = HVAC.get_default_heating_and_cooling_seasons(weather) + # Create cooling season schedule + clg_season_sch = MonthWeekdayWeekendSchedule.new(model, 'cooling season schedule', Array.new(24, 1), Array.new(24, 1), @cooling_season, Constants.ScheduleTypeLimitsFraction) @clg_ssn_sensor = OpenStudio::Model::EnergyManagementSystemSensor.new(model, 'Schedule Value') @clg_ssn_sensor.setName('cool_season') - @clg_ssn_sensor.setKeyName(@clg_season_sch.schedule.name.to_s) + @clg_ssn_sensor.setKeyName(clg_season_sch.schedule.name.to_s) end def self.add_windows(runner, model, spaces, weather) @@ -1727,12 +1680,15 @@ def self.add_windows(runner, model, spaces, weather) end @hpxml.collapse_enclosure_surfaces() + shading_group = nil + shading_schedules = {} + surfaces = [] @hpxml.windows.each do |window| window_height = 4.0 # ft, default overhang_depth = nil - if not window.overhangs_depth.nil? + if (not window.overhangs_depth.nil?) && (window.overhangs_depth > 0) overhang_depth = window.overhangs_depth overhang_distance_to_top = window.overhangs_distance_to_top_of_window overhang_distance_to_bottom = window.overhangs_distance_to_bottom_of_window @@ -1771,11 +1727,11 @@ def self.add_windows(runner, model, spaces, weather) end # Apply construction - cool_shade_mult = window.interior_shading_factor_summer - heat_shade_mult = window.interior_shading_factor_winter - Constructions.apply_window(runner, model, sub_surface, 'WindowConstruction', - weather, @htg_season_sch, @clg_season_sch, window.ufactor, window.shgc, - heat_shade_mult, cool_shade_mult) + Constructions.apply_window(runner, model, sub_surface, 'WindowConstruction', window.ufactor, window.shgc) + + # Apply interior/exterior shading (as needed) + shading_polygon = add_wall_polygon(window_width, window_height, z_origin, window.azimuth, [0, 0, 0, 0]) + shading_group = apply_shading(model, window, shading_polygon, surface, sub_surface, shading_group, shading_schedules, Constants.ObjectNameWindowShade) else # Window is on an interior surface, which E+ does not allow. Model # as a door instead so that we can get the appropriate conduction @@ -1814,6 +1770,10 @@ def self.add_windows(runner, model, spaces, weather) def self.add_skylights(runner, model, spaces, weather) surfaces = [] + + shading_group = nil + shading_schedules = {} + @hpxml.skylights.each do |skylight| tilt = skylight.roof.pitch / 12.0 width = Math::sqrt(skylight.area) @@ -1842,18 +1802,53 @@ def self.add_skylights(runner, model, spaces, weather) sub_surface.setSubSurfaceType('Skylight') # Apply construction - ufactor = skylight.ufactor - shgc = skylight.shgc - cool_shade_mult = skylight.interior_shading_factor_summer - heat_shade_mult = skylight.interior_shading_factor_winter - Constructions.apply_skylight(runner, model, sub_surface, 'SkylightConstruction', - weather, @htg_season_sch, @clg_season_sch, ufactor, shgc, - heat_shade_mult, cool_shade_mult) + Constructions.apply_skylight(runner, model, sub_surface, 'SkylightConstruction', skylight.ufactor, skylight.shgc) + + # Apply interior/exterior shading (as needed) + shading_polygon = add_roof_polygon(length, width, z_origin, skylight.azimuth, tilt) + shading_group = apply_shading(model, skylight, shading_polygon, surface, sub_surface, shading_group, shading_schedules, Constants.ObjectNameSkylightShade) end apply_adiabatic_construction(runner, model, surfaces, 'roof') end + def self.apply_shading(model, window_or_skylight, shading_polygon, parent_surface, sub_surface, shading_group, shading_schedules, name) + sf_summer = window_or_skylight.interior_shading_factor_summer * window_or_skylight.exterior_shading_factor_summer + sf_winter = window_or_skylight.interior_shading_factor_winter * window_or_skylight.exterior_shading_factor_winter + if (sf_summer < 1.0) || (sf_winter < 1.0) + # Apply shading + # We use a ShadingSurface instead of a Shade so that we perfectly get the result we want. + # The latter object is complex and it is essentially impossible to achieve the target reduction in transmitted + # solar (due to, e.g., re-reflectance, absorptance, angle modifiers, effects on convection, etc.). + + # Shading surface is used to reduce beam solar and sky diffuse solar + shading_surface = OpenStudio::Model::ShadingSurface.new(shading_polygon, model) + shading_surface.setName("#{window_or_skylight.id} shading surface") + shading_surface.additionalProperties.setFeature('Azimuth', window_or_skylight.azimuth) + shading_surface.additionalProperties.setFeature('ParentSurface', parent_surface.name.to_s) + + # Create transmittance schedule for heating/cooling seasons + trans_values = @cooling_season.map { |c| c == 1 ? sf_summer : sf_winter } + if shading_schedules[trans_values].nil? + trans_sch = MonthWeekdayWeekendSchedule.new(model, "trans schedule winter=#{sf_winter} summer=#{sf_summer}", Array.new(24, 1), Array.new(24, 1), trans_values, Constants.ScheduleTypeLimitsFraction, false) + shading_schedules[trans_values] = trans_sch + end + shading_surface.setTransmittanceSchedule(shading_schedules[trans_values].schedule) + + # Adjustment to default view factor is used to reduce ground diffuse solar + avg_trans_value = trans_values.sum(0.0) / 12.0 # FUTURE: Create EnergyPlus actuator to adjust this + default_vf_to_ground = ((1.0 - Math::cos(parent_surface.tilt)) / 2.0).round(2) + sub_surface.setViewFactortoGround(default_vf_to_ground * avg_trans_value) + + if shading_group.nil? + shading_group = OpenStudio::Model::ShadingSurfaceGroup.new(model) + shading_group.setName(name) + end + shading_surface.setShadingSurfaceGroup(shading_group) + end + return shading_group + end + def self.add_doors(runner, model, spaces) surfaces = [] @hpxml.doors.each do |door| @@ -1958,10 +1953,11 @@ def self.add_hot_water_and_appliances(runner, model, weather, spaces) end # Water Heater + has_uncond_bsmnt = @hpxml.has_space_type(HPXML::LocationBasementUnconditioned) @hpxml.water_heating_systems.each do |water_heating_system| loc_space, loc_schedule = get_space_or_schedule_from_location(water_heating_system.location, 'WaterHeatingSystem', model, spaces) - ec_adj = HotWaterAndAppliances.get_dist_energy_consumption_adjustment(@has_uncond_bsmnt, @cfa, @ncfl, water_heating_system, hot_water_distribution) + ec_adj = HotWaterAndAppliances.get_dist_energy_consumption_adjustment(has_uncond_bsmnt, @cfa, @ncfl, water_heating_system, hot_water_distribution) if water_heating_system.water_heater_type == HPXML::WaterHeaterTypeStorage @@ -1993,11 +1989,7 @@ def self.add_hot_water_and_appliances(runner, model, weather, spaces) end # Hot water fixtures and appliances - HotWaterAndAppliances.apply(model, runner, weather, spaces[HPXML::LocationLivingSpace], - @cfa, @nbeds, @ncfl, @has_uncond_bsmnt, @hpxml.clothes_washers, - @hpxml.clothes_dryers, @hpxml.dishwashers, @hpxml.refrigerators, - @hpxml.freezers, @hpxml.cooking_ranges, @hpxml.ovens, @hpxml.water_heating, - @hpxml.water_heating_systems, hot_water_distribution, @hpxml.water_fixtures, + HotWaterAndAppliances.apply(model, runner, @hpxml, weather, spaces, hot_water_distribution, solar_thermal_system, @eri_version, @dhw_map, @schedules_file) if (not solar_thermal_system.nil?) && (not solar_thermal_system.collector_area.nil?) # Detailed solar water heater @@ -2009,33 +2001,19 @@ def self.add_hot_water_and_appliances(runner, model, weather, spaces) Waterheater.apply_combi_system_EMS(model, @dhw_map, @hpxml.water_heating_systems) end - def self.is_central_air_conditioner_and_furnace(heating_system, cooling_system) - if not (@hpxml.heating_systems.include?(heating_system) && (heating_system.heating_system_type == HPXML::HVACTypeFurnace)) - return false - end - if not (@hpxml.cooling_systems.include?(cooling_system) && (cooling_system.cooling_system_type == HPXML::HVACTypeCentralAirConditioner)) - return false - end - - return true - end - - def self.update_shared_hvac_systems() - HVAC.apply_shared_systems(@hpxml) - end - def self.add_cooling_system(runner, model, spaces) living_zone = spaces[HPXML::LocationLivingSpace].thermalZone.get - @hpxml.cooling_systems.each do |cooling_system| - check_distribution_system(cooling_system.distribution_system, cooling_system.cooling_system_type) + HVAC.get_hpxml_hvac_systems(@hpxml).each do |hvac_system| + next if hvac_system[:cooling].nil? + next unless hvac_system[:cooling].is_a? HPXML::CoolingSystem - if cooling_system.cooling_system_type == HPXML::HVACTypeCentralAirConditioner + cooling_system = hvac_system[:cooling] + heating_system = hvac_system[:heating] - heating_system = cooling_system.attached_heating_system - if not is_central_air_conditioner_and_furnace(heating_system, cooling_system) - heating_system = nil - end + check_distribution_system(cooling_system.distribution_system, cooling_system.cooling_system_type) + + if [HPXML::HVACTypeCentralAirConditioner].include? cooling_system.cooling_system_type HVAC.apply_central_air_conditioner_furnace(model, runner, cooling_system, heating_system, @remaining_cool_load_frac, @remaining_heat_load_frac, @@ -2045,19 +2023,19 @@ def self.add_cooling_system(runner, model, spaces) @remaining_heat_load_frac -= heating_system.fraction_heat_load_served end - elsif cooling_system.cooling_system_type == HPXML::HVACTypeRoomAirConditioner + elsif [HPXML::HVACTypeRoomAirConditioner].include? cooling_system.cooling_system_type HVAC.apply_room_air_conditioner(model, runner, cooling_system, @remaining_cool_load_frac, living_zone, @hvac_map) - elsif cooling_system.cooling_system_type == HPXML::HVACTypeEvaporativeCooler + elsif [HPXML::HVACTypeEvaporativeCooler].include? cooling_system.cooling_system_type HVAC.apply_evaporative_cooler(model, runner, cooling_system, @remaining_cool_load_frac, living_zone, @hvac_map) - elsif cooling_system.cooling_system_type == HPXML::HVACTypeMiniSplitAirConditioner + elsif [HPXML::HVACTypeMiniSplitAirConditioner].include? cooling_system.cooling_system_type HVAC.apply_mini_split_air_conditioner(model, runner, cooling_system, @remaining_cool_load_frac, @@ -2071,13 +2049,18 @@ def self.add_cooling_system(runner, model, spaces) def self.add_heating_system(runner, model, spaces) living_zone = spaces[HPXML::LocationLivingSpace].thermalZone.get - @hpxml.heating_systems.each do |heating_system| + HVAC.get_hpxml_hvac_systems(@hpxml).each do |hvac_system| + next if hvac_system[:heating].nil? + next unless hvac_system[:heating].is_a? HPXML::HeatingSystem + + cooling_system = hvac_system[:cooling] + heating_system = hvac_system[:heating] + check_distribution_system(heating_system.distribution_system, heating_system.heating_system_type) - if heating_system.heating_system_type == HPXML::HVACTypeFurnace + if [HPXML::HVACTypeFurnace].include? heating_system.heating_system_type - cooling_system = heating_system.attached_cooling_system - if is_central_air_conditioner_and_furnace(heating_system, cooling_system) + if not cooling_system.nil? next # Already processed combined AC+furnace end @@ -2085,22 +2068,22 @@ def self.add_heating_system(runner, model, spaces) nil, @remaining_heat_load_frac, living_zone, @hvac_map) - elsif heating_system.heating_system_type == HPXML::HVACTypeBoiler + elsif [HPXML::HVACTypeBoiler].include? heating_system.heating_system_type HVAC.apply_boiler(model, runner, heating_system, @remaining_heat_load_frac, living_zone, @hvac_map) - elsif heating_system.heating_system_type == HPXML::HVACTypeElectricResistance + elsif [HPXML::HVACTypeElectricResistance].include? heating_system.heating_system_type HVAC.apply_electric_baseboard(model, runner, heating_system, @remaining_heat_load_frac, living_zone, @hvac_map) - elsif (heating_system.heating_system_type == HPXML::HVACTypeStove || - heating_system.heating_system_type == HPXML::HVACTypePortableHeater || - heating_system.heating_system_type == HPXML::HVACTypeFixedHeater || - heating_system.heating_system_type == HPXML::HVACTypeWallFurnace || - heating_system.heating_system_type == HPXML::HVACTypeFloorFurnace || - heating_system.heating_system_type == HPXML::HVACTypeFireplace) + elsif [HPXML::HVACTypeStove, + HPXML::HVACTypePortableHeater, + HPXML::HVACTypeFixedHeater, + HPXML::HVACTypeWallFurnace, + HPXML::HVACTypeFloorFurnace, + HPXML::HVACTypeFireplace].include? heating_system.heating_system_type HVAC.apply_unit_heater(model, runner, heating_system, @remaining_heat_load_frac, living_zone, @hvac_map) @@ -2113,45 +2096,36 @@ def self.add_heating_system(runner, model, spaces) def self.add_heat_pump(runner, model, weather, spaces) living_zone = spaces[HPXML::LocationLivingSpace].thermalZone.get - @hpxml.heat_pumps.each do |heat_pump| - # FUTURE: Move these checks into hvac.rb - if not heat_pump.heating_capacity_17F.nil? - if heat_pump.heating_capacity.nil? - fail "HeatPump '#{heat_pump.id}' must have both HeatingCapacity and HeatingCapacity17F provided or not provided." - elsif heat_pump.heating_capacity == 0.0 - heat_pump.heating_capacity_17F = nil - end - end - if not heat_pump.backup_heating_fuel.nil? - if heat_pump.backup_heating_capacity.nil? ^ heat_pump.heating_capacity.nil? - fail "HeatPump '#{heat_pump.id}' must have both HeatingCapacity and BackupHeatingCapacity provided or not provided." - end - end + HVAC.get_hpxml_hvac_systems(@hpxml).each do |hvac_system| + next if hvac_system[:cooling].nil? + next unless hvac_system[:cooling].is_a? HPXML::HeatPump + + heat_pump = hvac_system[:cooling] check_distribution_system(heat_pump.distribution_system, heat_pump.heat_pump_type) - if heat_pump.heat_pump_type == HPXML::HVACTypeHeatPumpWaterLoopToAir + if [HPXML::HVACTypeHeatPumpWaterLoopToAir].include? heat_pump.heat_pump_type HVAC.apply_water_loop_to_air_heat_pump(model, runner, heat_pump, @remaining_heat_load_frac, @remaining_cool_load_frac, living_zone, @hvac_map) - elsif heat_pump.heat_pump_type == HPXML::HVACTypeHeatPumpAirToAir + elsif [HPXML::HVACTypeHeatPumpAirToAir].include? heat_pump.heat_pump_type HVAC.apply_central_air_to_air_heat_pump(model, runner, heat_pump, @remaining_heat_load_frac, @remaining_cool_load_frac, living_zone, @hvac_map) - elsif heat_pump.heat_pump_type == HPXML::HVACTypeHeatPumpMiniSplit + elsif [HPXML::HVACTypeHeatPumpMiniSplit].include? heat_pump.heat_pump_type HVAC.apply_mini_split_heat_pump(model, runner, heat_pump, @remaining_heat_load_frac, @remaining_cool_load_frac, living_zone, @hvac_map) - elsif heat_pump.heat_pump_type == HPXML::HVACTypeHeatPumpGroundToAir + elsif [HPXML::HVACTypeHeatPumpGroundToAir].include? heat_pump.heat_pump_type HVAC.apply_ground_to_air_heat_pump(model, runner, weather, heat_pump, @remaining_heat_load_frac, @@ -2171,7 +2145,7 @@ def self.add_ideal_system(runner, model, spaces, epw_path) living_zone = spaces[HPXML::LocationLivingSpace].thermalZone.get obj_name = Constants.ObjectNameIdealAirSystem - if @hpxml.building_construction.use_only_ideal_air_system + if @apply_ashrae140_assumptions && (@hpxml.total_fraction_heat_load_served + @hpxml.total_fraction_heat_load_served == 0.0) cooling_load_frac = 1.0 heating_load_frac = 1.0 if @apply_ashrae140_assumptions @@ -2218,19 +2192,17 @@ def self.add_residual_ideal_system(runner, model, spaces) obj_name = Constants.ObjectNameIdealAirSystemResidual if @remaining_cool_load_frac < 1.0 - sequential_cool_load_frac = 1 + sequential_cool_load_frac = 1.0 else - sequential_cool_load_frac = 0 # no cooling system, don't add ideal air for cooling either - runner.registerWarning('No cooling system specified, the model will not include space cooling energy use.') + sequential_cool_load_frac = 0.0 # no cooling system, don't add ideal air for cooling either end if @remaining_heat_load_frac < 1.0 - sequential_heat_load_frac = 1 + sequential_heat_load_frac = 1.0 else - sequential_heat_load_frac = 0 # no heating system, don't add ideal air for heating either - runner.registerWarning('No heating system specified, the model will not include space heating energy use.') + sequential_heat_load_frac = 0.0 # no heating system, don't add ideal air for heating either end - if (sequential_heat_load_frac > 0) || (sequential_cool_load_frac > 0) + if (sequential_heat_load_frac > 0.0) || (sequential_cool_load_frac > 0.0) HVAC.apply_ideal_air_loads(model, runner, obj_name, sequential_cool_load_frac, sequential_heat_load_frac, living_zone) end @@ -2253,25 +2225,24 @@ def self.add_ceiling_fans(runner, model, weather, spaces) HVAC.apply_ceiling_fans(model, runner, weather, ceiling_fan, spaces[HPXML::LocationLivingSpace], @schedules_file) end - def self.add_dehumidifier(runner, model, spaces) + def self.add_dehumidifiers(runner, model, spaces) return if @hpxml.dehumidifiers.size == 0 - dehumidifier = @hpxml.dehumidifiers[0] - HVAC.apply_dehumidifier(model, runner, dehumidifier, spaces[HPXML::LocationLivingSpace], @hvac_map) + HVAC.apply_dehumidifiers(model, runner, @hpxml.dehumidifiers, spaces[HPXML::LocationLivingSpace], @hvac_map) end def self.check_distribution_system(hvac_distribution, system_type) return if hvac_distribution.nil? hvac_distribution_type_map = { HPXML::HVACTypeFurnace => [HPXML::HVACDistributionTypeAir, HPXML::HVACDistributionTypeDSE], - HPXML::HVACTypeBoiler => [HPXML::HVACDistributionTypeHydronic, HPXML::HVACDistributionTypeHydronicAndAir, HPXML::HVACDistributionTypeDSE], + HPXML::HVACTypeBoiler => [HPXML::HVACDistributionTypeHydronic, HPXML::HVACDistributionTypeAir, HPXML::HVACDistributionTypeDSE], HPXML::HVACTypeCentralAirConditioner => [HPXML::HVACDistributionTypeAir, HPXML::HVACDistributionTypeDSE], HPXML::HVACTypeEvaporativeCooler => [HPXML::HVACDistributionTypeAir, HPXML::HVACDistributionTypeDSE], HPXML::HVACTypeMiniSplitAirConditioner => [HPXML::HVACDistributionTypeAir, HPXML::HVACDistributionTypeDSE], HPXML::HVACTypeHeatPumpAirToAir => [HPXML::HVACDistributionTypeAir, HPXML::HVACDistributionTypeDSE], HPXML::HVACTypeHeatPumpMiniSplit => [HPXML::HVACDistributionTypeAir, HPXML::HVACDistributionTypeDSE], HPXML::HVACTypeHeatPumpGroundToAir => [HPXML::HVACDistributionTypeAir, HPXML::HVACDistributionTypeDSE], - HPXML::HVACTypeHeatPumpWaterLoopToAir => [HPXML::HVACDistributionTypeAir, HPXML::HVACDistributionTypeHydronicAndAir, HPXML::HVACDistributionTypeDSE] } + HPXML::HVACTypeHeatPumpWaterLoopToAir => [HPXML::HVACDistributionTypeAir, HPXML::HVACDistributionTypeDSE] } if not hvac_distribution_type_map[system_type].include? hvac_distribution.distribution_system_type # validator.rb only checks that a HVAC distribution system of the correct type (for the given HVAC system) exists @@ -2282,7 +2253,6 @@ def self.check_distribution_system(hvac_distribution, system_type) def self.add_mels(runner, model, spaces) # Misc - modeled_mels = [] @hpxml.plug_loads.each do |plug_load| if plug_load.plug_load_type == HPXML::PlugLoadTypeOther obj_name = Constants.ObjectNameMiscPlugLoads @@ -2297,7 +2267,6 @@ def self.add_mels(runner, model, spaces) runner.registerWarning("Unexpected plug load type '#{plug_load.plug_load_type}'. The plug load will not be modeled.") next end - modeled_mels << plug_load.plug_load_type MiscLoads.apply_plug(model, plug_load, obj_name, spaces[HPXML::LocationLivingSpace], @apply_ashrae140_assumptions, @schedules_file) end @@ -2329,37 +2298,25 @@ def self.add_lighting(runner, model, epw_file, spaces) def self.add_pools_and_hot_tubs(runner, model, spaces) @hpxml.pools.each do |pool| + next if pool.type == HPXML::TypeNone + MiscLoads.apply_pool_or_hot_tub_heater(model, pool, Constants.ObjectNameMiscPoolHeater, spaces[HPXML::LocationLivingSpace], @schedules_file) MiscLoads.apply_pool_or_hot_tub_pump(model, pool, Constants.ObjectNameMiscPoolPump, spaces[HPXML::LocationLivingSpace], @schedules_file) end @hpxml.hot_tubs.each do |hot_tub| + next if hot_tub.type == HPXML::TypeNone + MiscLoads.apply_pool_or_hot_tub_heater(model, hot_tub, Constants.ObjectNameMiscHotTubHeater, spaces[HPXML::LocationLivingSpace], @schedules_file) MiscLoads.apply_pool_or_hot_tub_pump(model, hot_tub, Constants.ObjectNameMiscHotTubPump, spaces[HPXML::LocationLivingSpace], @schedules_file) end end def self.add_airflow(runner, model, weather, spaces) - # Vented Attic - vented_attic = nil - @hpxml.attics.each do |attic| - next unless attic.attic_type == HPXML::AtticTypeVented - - vented_attic = attic - end - - # Vented Crawlspace - vented_crawl = nil - @hpxml.foundations.each do |foundation| - next unless foundation.foundation_type == HPXML::FoundationTypeCrawlspaceVented - - vented_crawl = foundation - end - # Ducts duct_systems = {} @hpxml.hvac_distributions.each do |hvac_distribution| - next unless [HPXML::HVACDistributionTypeAir, HPXML::HVACDistributionTypeHydronicAndAir].include? hvac_distribution.distribution_system_type + next unless hvac_distribution.distribution_system_type == HPXML::HVACDistributionTypeAir air_ducts = create_ducts(runner, model, hvac_distribution, spaces) next if air_ducts.empty? @@ -2368,7 +2325,7 @@ def self.add_airflow(runner, model, weather, spaces) added_ducts = false hvac_distribution.hvac_systems.each do |hvac_system| @hvac_map[hvac_system.id].each do |object| - next unless object.is_a? OpenStudio::Model::AirLoopHVAC + next unless object.is_a?(OpenStudio::Model::AirLoopHVAC) || object.is_a?(OpenStudio::Model::ZoneHVACFourPipeFanCoil) if duct_systems[air_ducts].nil? duct_systems[air_ducts] = object @@ -2382,37 +2339,14 @@ def self.add_airflow(runner, model, weather, spaces) end end end - if not added_ducts - # Check if ducted fan coil, which doesn't have an AirLoopHVAC; - # assign to FanCoil instead. - if hvac_distribution.distribution_system_type && hvac_distribution.hydronic_and_air_type == HPXML::HydronicAndAirTypeFanCoil - hvac_distribution.hvac_systems.each do |hvac_system| - @hvac_map[hvac_system.id].each do |object| - next unless object.is_a? OpenStudio::Model::ZoneHVACFourPipeFanCoil - - duct_systems[air_ducts] = object - added_ducts = true - end - end - end - end if not added_ducts fail 'Unexpected error adding ducts to model.' end end - air_infils = @hpxml.air_infiltration_measurements - window_area = @hpxml.windows.map { |w| w.area }.sum(0.0) - open_window_area = window_area * @frac_windows_operable * 0.5 * 0.2 # Assume A) 50% of the area of an operable window can be open, and B) 20% of openable window area is actually open - site_type = @hpxml.site.site_type - shelter_coef = @hpxml.site.shelter_coefficient - @infil_volume = air_infils.select { |i| !i.infiltration_volume.nil? }[0].infiltration_volume - infil_height = @hpxml.inferred_infiltration_height(@infil_volume) - Airflow.apply(model, runner, weather, spaces, air_infils, @hpxml.ventilation_fans, @hpxml.clothes_dryers, @nbeds, - duct_systems, @infil_volume, infil_height, open_window_area, - @clg_ssn_sensor, @min_neighbor_distance, vented_attic, vented_crawl, - site_type, shelter_coef, @hpxml.building_construction.has_flue_or_chimney, @hvac_map, @eri_version, - @apply_ashrae140_assumptions, @schedules_file) + Airflow.apply(model, runner, weather, spaces, @hpxml, @cfa, @nbeds, + @ncfl_ag, duct_systems, @clg_ssn_sensor, @hvac_map, @eri_version, + @frac_windows_operable, @apply_ashrae140_assumptions, @schedules_file) end def self.create_ducts(runner, model, hvac_distribution, spaces) @@ -2465,14 +2399,9 @@ def self.create_ducts(runner, model, hvac_distribution, spaces) end # If all ducts are in conditioned space, model leakage as going to outside - registered_warning = false [HPXML::DuctTypeSupply, HPXML::DuctTypeReturn].each do |duct_side| next unless (leakage_to_outside[duct_side][0] > 0) && (total_unconditioned_duct_area[duct_side] == 0) - if not registered_warning - runner.registerWarning("HVACDistribution '#{hvac_distribution.id}' has ducts entirely within conditioned space but there is non-zero leakage to the outside. Leakage to the outside is typically zero in these situations; consider revising leakage values. Leakage will be modeled as heat lost to the ambient environment.") - registered_warning = true - end duct_area = 0.0 duct_rvalue = 0.0 duct_loc_space = nil # outside @@ -2496,10 +2425,6 @@ def self.create_ducts(runner, model, hvac_distribution, spaces) return air_ducts end - def self.add_hvac_sizing(runner, model, weather, spaces) - HVACSizing.apply(model, runner, weather, spaces, @hpxml, @infil_volume, @nbeds, @min_neighbor_distance, @debug) - end - def self.add_photovoltaics(runner, model) @hpxml.pv_systems.each do |pv_system| PV.apply(model, @nbeds, pv_system) @@ -2512,10 +2437,11 @@ def self.add_generators(runner, model) end end - def self.add_additional_properties(runner, model, hpxml_path) + def self.add_additional_properties(runner, model, hpxml_path, building_id) # Store some data for use in reporting measure additionalProperties = model.getBuilding.additionalProperties additionalProperties.setFeature('hpxml_path', hpxml_path) + additionalProperties.setFeature('building_id', building_id.to_s) additionalProperties.setFeature('hvac_map', map_to_string(@hvac_map)) additionalProperties.setFeature('dhw_map', map_to_string(@dhw_map)) end @@ -3019,12 +2945,6 @@ def self.add_component_loads_output(runner, model, spaces) program_calling_manager.addProgram(program) end - def self.set_vacancy(runner, model) - return if @schedules_file.nil? - - @schedules_file.set_vacancy(col_names: ScheduleGenerator.col_names) - end - def self.add_output_control_files(runner, model) return if @debug @@ -3049,396 +2969,6 @@ def self.add_ems_debug_output(runner, model) oems.setEMSRuntimeLanguageDebugOutputLevel('Verbose') end - # FUTURE: Move all of these construction methods to constructions.rb - def self.calc_non_cavity_r(film_r, constr_set) - # Calculate R-value for all non-cavity layers - non_cavity_r = film_r - if not constr_set.exterior_material.nil? - non_cavity_r += constr_set.exterior_material.rvalue - end - if not constr_set.rigid_r.nil? - non_cavity_r += constr_set.rigid_r - end - if not constr_set.osb_thick_in.nil? - non_cavity_r += Material.Plywood(constr_set.osb_thick_in).rvalue - end - if not constr_set.drywall_thick_in.nil? - non_cavity_r += Material.GypsumWall(constr_set.drywall_thick_in).rvalue - end - return non_cavity_r - end - - def self.apply_wall_construction(runner, model, surfaces, wall, wall_id, wall_type, assembly_r, - drywall_thick_in, inside_film, outside_film, mat_ext_finish) - - film_r = inside_film.rvalue + outside_film.rvalue - if mat_ext_finish.nil? - fallback_mat_ext_finish = nil - else - fallback_mat_ext_finish = Material.ExteriorFinishMaterial(mat_ext_finish.name, mat_ext_finish.tAbs, mat_ext_finish.sAbs, 0.1) - end - - if wall_type == HPXML::WallTypeWoodStud - install_grade = 1 - cavity_filled = true - - constr_sets = [ - WoodStudConstructionSet.new(Material.Stud2x6, 0.20, 10.0, 0.5, drywall_thick_in, mat_ext_finish), # 2x6, 24" o.c. + R10 - WoodStudConstructionSet.new(Material.Stud2x6, 0.20, 5.0, 0.5, drywall_thick_in, mat_ext_finish), # 2x6, 24" o.c. + R5 - WoodStudConstructionSet.new(Material.Stud2x6, 0.20, 0.0, 0.5, drywall_thick_in, mat_ext_finish), # 2x6, 24" o.c. - WoodStudConstructionSet.new(Material.Stud2x4, 0.23, 0.0, 0.5, drywall_thick_in, mat_ext_finish), # 2x4, 16" o.c. - WoodStudConstructionSet.new(Material.Stud2x4, 0.01, 0.0, 0.0, 0.0, fallback_mat_ext_finish), # Fallback - ] - match, constr_set, cavity_r = pick_wood_stud_construction_set(assembly_r, constr_sets, inside_film, outside_film, wall_id) - - Constructions.apply_wood_stud_wall(runner, model, surfaces, wall, "#{wall_id} construction", - cavity_r, install_grade, constr_set.stud.thick_in, - cavity_filled, constr_set.framing_factor, - constr_set.drywall_thick_in, constr_set.osb_thick_in, - constr_set.rigid_r, constr_set.exterior_material, - 0, inside_film, outside_film) - elsif wall_type == HPXML::WallTypeSteelStud - install_grade = 1 - cavity_filled = true - corr_factor = 0.45 - - constr_sets = [ - SteelStudConstructionSet.new(5.5, corr_factor, 0.20, 10.0, 0.5, drywall_thick_in, mat_ext_finish), # 2x6, 24" o.c. + R10 - SteelStudConstructionSet.new(5.5, corr_factor, 0.20, 5.0, 0.5, drywall_thick_in, mat_ext_finish), # 2x6, 24" o.c. + R5 - SteelStudConstructionSet.new(5.5, corr_factor, 0.20, 0.0, 0.5, drywall_thick_in, mat_ext_finish), # 2x6, 24" o.c. - SteelStudConstructionSet.new(3.5, corr_factor, 0.23, 0.0, 0.5, drywall_thick_in, mat_ext_finish), # 2x4, 16" o.c. - SteelStudConstructionSet.new(3.5, 1.0, 0.01, 0.0, 0.0, 0.0, fallback_mat_ext_finish), # Fallback - ] - match, constr_set, cavity_r = pick_steel_stud_construction_set(assembly_r, constr_sets, inside_film, outside_film, wall_id) - - Constructions.apply_steel_stud_wall(runner, model, surfaces, wall, "#{wall_id} construction", - cavity_r, install_grade, constr_set.cavity_thick_in, - cavity_filled, constr_set.framing_factor, - constr_set.corr_factor, constr_set.drywall_thick_in, - constr_set.osb_thick_in, constr_set.rigid_r, - constr_set.exterior_material, inside_film, outside_film) - elsif wall_type == HPXML::WallTypeDoubleWoodStud - install_grade = 1 - is_staggered = false - - constr_sets = [ - DoubleStudConstructionSet.new(Material.Stud2x4, 0.23, 24.0, 0.0, 0.5, drywall_thick_in, mat_ext_finish), # 2x4, 24" o.c. - DoubleStudConstructionSet.new(Material.Stud2x4, 0.01, 16.0, 0.0, 0.0, 0.0, fallback_mat_ext_finish), # Fallback - ] - match, constr_set, cavity_r = pick_double_stud_construction_set(assembly_r, constr_sets, inside_film, outside_film, wall_id) - - Constructions.apply_double_stud_wall(runner, model, surfaces, wall, "#{wall_id} construction", - cavity_r, install_grade, constr_set.stud.thick_in, - constr_set.stud.thick_in, constr_set.framing_factor, - constr_set.framing_spacing, is_staggered, - constr_set.drywall_thick_in, constr_set.osb_thick_in, - constr_set.rigid_r, constr_set.exterior_material, - inside_film, outside_film) - elsif wall_type == HPXML::WallTypeCMU - density = 119.0 # lb/ft^3 - furring_r = 0 - furring_cavity_depth_in = 0 # in - furring_spacing = 0 - - constr_sets = [ - CMUConstructionSet.new(8.0, 1.4, 0.08, 0.5, drywall_thick_in, mat_ext_finish), # 8" perlite-filled CMU - CMUConstructionSet.new(6.0, 5.29, 0.01, 0.0, 0.0, fallback_mat_ext_finish), # Fallback (6" hollow CMU) - ] - match, constr_set, rigid_r = pick_cmu_construction_set(assembly_r, constr_sets, inside_film, outside_film, wall_id) - - Constructions.apply_cmu_wall(runner, model, surfaces, wall, "#{wall_id} construction", - constr_set.thick_in, constr_set.cond_in, density, - constr_set.framing_factor, furring_r, - furring_cavity_depth_in, furring_spacing, - constr_set.drywall_thick_in, constr_set.osb_thick_in, - rigid_r, constr_set.exterior_material, inside_film, - outside_film) - elsif wall_type == HPXML::WallTypeSIP - sheathing_thick_in = 0.44 - - constr_sets = [ - SIPConstructionSet.new(10.0, 0.16, 0.0, sheathing_thick_in, 0.5, drywall_thick_in, mat_ext_finish), # 10" SIP core - SIPConstructionSet.new(5.0, 0.16, 0.0, sheathing_thick_in, 0.5, drywall_thick_in, mat_ext_finish), # 5" SIP core - SIPConstructionSet.new(1.0, 0.01, 0.0, sheathing_thick_in, 0.0, 0.0, fallback_mat_ext_finish), # Fallback - ] - match, constr_set, cavity_r = pick_sip_construction_set(assembly_r, constr_sets, inside_film, outside_film, wall_id) - - Constructions.apply_sip_wall(runner, model, surfaces, wall, "#{wall_id} construction", - cavity_r, constr_set.thick_in, constr_set.framing_factor, - constr_set.sheath_thick_in, constr_set.drywall_thick_in, - constr_set.osb_thick_in, constr_set.rigid_r, - constr_set.exterior_material, inside_film, outside_film) - elsif wall_type == HPXML::WallTypeICF - constr_sets = [ - ICFConstructionSet.new(2.0, 4.0, 0.08, 0.0, 0.5, drywall_thick_in, mat_ext_finish), # ICF w/4" concrete and 2" rigid ins layers - ICFConstructionSet.new(1.0, 1.0, 0.01, 0.0, 0.0, 0.0, fallback_mat_ext_finish), # Fallback - ] - match, constr_set, icf_r = pick_icf_construction_set(assembly_r, constr_sets, inside_film, outside_film, wall_id) - - Constructions.apply_icf_wall(runner, model, surfaces, wall, "#{wall_id} construction", - icf_r, constr_set.ins_thick_in, - constr_set.concrete_thick_in, constr_set.framing_factor, - constr_set.drywall_thick_in, constr_set.osb_thick_in, - constr_set.rigid_r, constr_set.exterior_material, - inside_film, outside_film) - elsif [HPXML::WallTypeConcrete, HPXML::WallTypeBrick, HPXML::WallTypeAdobe, HPXML::WallTypeStrawBale, HPXML::WallTypeStone, HPXML::WallTypeLog].include? wall_type - constr_sets = [ - GenericConstructionSet.new(10.0, 0.5, drywall_thick_in, mat_ext_finish), # w/R-10 rigid - GenericConstructionSet.new(0.0, 0.5, drywall_thick_in, mat_ext_finish), # Standard - GenericConstructionSet.new(0.0, 0.0, 0.0, fallback_mat_ext_finish), # Fallback - ] - match, constr_set, layer_r = pick_generic_construction_set(assembly_r, constr_sets, inside_film, outside_film, wall_id) - - if wall_type == HPXML::WallTypeConcrete - thick_in = 6.0 - base_mat = BaseMaterial.Concrete - elsif wall_type == HPXML::WallTypeBrick - thick_in = 8.0 - base_mat = BaseMaterial.Brick - elsif wall_type == HPXML::WallTypeAdobe - thick_in = 10.0 - base_mat = BaseMaterial.Soil - elsif wall_type == HPXML::WallTypeStrawBale - thick_in = 23.0 - base_mat = BaseMaterial.StrawBale - elsif wall_type == HPXML::WallTypeStone - thick_in = 6.0 - base_mat = BaseMaterial.Stone - elsif wall_type == HPXML::WallTypeLog - thick_in = 6.0 - base_mat = BaseMaterial.Wood - end - thick_ins = [thick_in] - if layer_r == 0 - conds = [99] - else - conds = [thick_in / layer_r] - end - denss = [base_mat.rho] - specheats = [base_mat.cp] - - Constructions.apply_generic_layered_wall(runner, model, surfaces, wall, "#{wall_id} construction", - thick_ins, conds, denss, specheats, - constr_set.drywall_thick_in, constr_set.osb_thick_in, - constr_set.rigid_r, constr_set.exterior_material, - inside_film, outside_film) - else - fail "Unexpected wall type '#{wall_type}'." - end - - check_surface_assembly_rvalue(runner, surfaces, inside_film, outside_film, assembly_r, match) - end - - def self.pick_wood_stud_construction_set(assembly_r, constr_sets, inside_film, outside_film, surface_name) - # Picks a construction set from supplied constr_sets for which a positive R-value - # can be calculated for the unknown insulation to achieve the assembly R-value. - - constr_sets.each do |constr_set| - fail 'Unexpected object.' unless constr_set.is_a? WoodStudConstructionSet - - film_r = inside_film.rvalue + outside_film.rvalue - non_cavity_r = calc_non_cavity_r(film_r, constr_set) - - # Calculate effective cavity R-value - # Assumes installation quality 1 - cavity_frac = 1.0 - constr_set.framing_factor - cavity_r = cavity_frac / (1.0 / assembly_r - constr_set.framing_factor / (constr_set.stud.rvalue + non_cavity_r)) - non_cavity_r - if cavity_r > 0 # Choose this construction set - return true, constr_set, cavity_r - end - end - - return false, constr_sets[-1], 0.0 # Pick fallback construction with minimum R-value - end - - def self.pick_steel_stud_construction_set(assembly_r, constr_sets, inside_film, outside_film, surface_name) - # Picks a construction set from supplied constr_sets for which a positive R-value - # can be calculated for the unknown insulation to achieve the assembly R-value. - - constr_sets.each do |constr_set| - fail 'Unexpected object.' unless constr_set.is_a? SteelStudConstructionSet - - film_r = inside_film.rvalue + outside_film.rvalue - non_cavity_r = calc_non_cavity_r(film_r, constr_set) - - # Calculate effective cavity R-value - # Assumes installation quality 1 - cavity_r = (assembly_r - non_cavity_r) / constr_set.corr_factor - if cavity_r > 0 # Choose this construction set - return true, constr_set, cavity_r - end - end - - return false, constr_sets[-1], 0.0 # Pick fallback construction with minimum R-value - end - - def self.pick_double_stud_construction_set(assembly_r, constr_sets, inside_film, outside_film, surface_name) - # Picks a construction set from supplied constr_sets for which a positive R-value - # can be calculated for the unknown insulation to achieve the assembly R-value. - - constr_sets.each do |constr_set| - fail 'Unexpected object.' unless constr_set.is_a? DoubleStudConstructionSet - - film_r = inside_film.rvalue + outside_film.rvalue - non_cavity_r = calc_non_cavity_r(film_r, constr_set) - - # Calculate effective cavity R-value - # Assumes installation quality 1, not staggered, gap depth == stud depth - # Solved in Wolfram Alpha: https://www.wolframalpha.com/input/?i=1%2FA+%3D+B%2F(2*C%2Bx%2BD)+%2B+E%2F(3*C%2BD)+%2B+(1-B-E)%2F(3*x%2BD) - stud_frac = 1.5 / constr_set.framing_spacing - misc_framing_factor = constr_set.framing_factor - stud_frac - cavity_frac = 1.0 - (2 * stud_frac + misc_framing_factor) - a = assembly_r - b = stud_frac - c = constr_set.stud.rvalue - d = non_cavity_r - e = misc_framing_factor - cavity_r = ((3 * c + d) * Math.sqrt(4 * a**2 * b**2 + 12 * a**2 * b * e + 4 * a**2 * b + 9 * a**2 * e**2 - 6 * a**2 * e + a**2 - 48 * a * b * c - 16 * a * b * d - 36 * a * c * e + 12 * a * c - 12 * a * d * e + 4 * a * d + 36 * c**2 + 24 * c * d + 4 * d**2) + 6 * a * b * c + 2 * a * b * d + 3 * a * c * e + 3 * a * c + 3 * a * d * e + a * d - 18 * c**2 - 18 * c * d - 4 * d**2) / (2 * (-3 * a * e + 9 * c + 3 * d)) - cavity_r = 3 * cavity_r - if cavity_r > 0 # Choose this construction set - return true, constr_set, cavity_r - end - end - - return false, constr_sets[-1], 0.0 # Pick fallback construction with minimum R-value - end - - def self.pick_sip_construction_set(assembly_r, constr_sets, inside_film, outside_film, surface_name) - # Picks a construction set from supplied constr_sets for which a positive R-value - # can be calculated for the unknown insulation to achieve the assembly R-value. - - constr_sets.each do |constr_set| - fail 'Unexpected object.' unless constr_set.is_a? SIPConstructionSet - - film_r = inside_film.rvalue + outside_film.rvalue - non_cavity_r = calc_non_cavity_r(film_r, constr_set) - non_cavity_r += Material.new(nil, constr_set.sheath_thick_in, BaseMaterial.Wood).rvalue - - # Calculate effective SIP core R-value - # Solved in Wolfram Alpha: https://www.wolframalpha.com/input/?i=1%2FA+%3D+B%2F(C%2BD)+%2B+E%2F(2*F%2BG%2FH*x%2BD)+%2B+(1-B-E)%2F(x%2BD) - spline_thick_in = 0.5 # in - ins_thick_in = constr_set.thick_in - (2.0 * spline_thick_in) # in - framing_r = Material.new(nil, constr_set.thick_in, BaseMaterial.Wood).rvalue - spline_r = Material.new(nil, spline_thick_in, BaseMaterial.Wood).rvalue - spline_frac = 4.0 / 48.0 # One 4" spline for every 48" wide panel - cavity_frac = 1.0 - (spline_frac + constr_set.framing_factor) - a = assembly_r - b = constr_set.framing_factor - c = framing_r - d = non_cavity_r - e = spline_frac - f = spline_r - g = ins_thick_in - h = constr_set.thick_in - cavity_r = (Math.sqrt((a * b * c * g - a * b * d * h - 2 * a * b * f * h + a * c * e * g - a * c * e * h - a * c * g + a * d * e * g - a * d * e * h - a * d * g + c * d * g + c * d * h + 2 * c * f * h + d**2 * g + d**2 * h + 2 * d * f * h)**2 - 4 * (-a * b * g + c * g + d * g) * (a * b * c * d * h + 2 * a * b * c * f * h - a * c * d * h + 2 * a * c * e * f * h - 2 * a * c * f * h - a * d**2 * h + 2 * a * d * e * f * h - 2 * a * d * f * h + c * d**2 * h + 2 * c * d * f * h + d**3 * h + 2 * d**2 * f * h)) - a * b * c * g + a * b * d * h + 2 * a * b * f * h - a * c * e * g + a * c * e * h + a * c * g - a * d * e * g + a * d * e * h + a * d * g - c * d * g - c * d * h - 2 * c * f * h - g * d**2 - d**2 * h - 2 * d * f * h) / (2 * (-a * b * g + c * g + d * g)) - if cavity_r > 0 # Choose this construction set - return true, constr_set, cavity_r - end - end - - return false, constr_sets[-1], 0.0 # Pick fallback construction with minimum R-value - end - - def self.pick_cmu_construction_set(assembly_r, constr_sets, inside_film, outside_film, surface_name) - # Picks a construction set from supplied constr_sets for which a positive R-value - # can be calculated for the unknown insulation to achieve the assembly R-value. - - constr_sets.each do |constr_set| - fail 'Unexpected object.' unless constr_set.is_a? CMUConstructionSet - - film_r = inside_film.rvalue + outside_film.rvalue - non_cavity_r = calc_non_cavity_r(film_r, constr_set) - - # Calculate effective other CMU R-value - # Assumes no furring strips - # Solved in Wolfram Alpha: https://www.wolframalpha.com/input/?i=1%2FA+%3D+B%2F(C%2BE%2Bx)+%2B+(1-B)%2F(D%2BE%2Bx) - a = assembly_r - b = constr_set.framing_factor - c = Material.new(nil, constr_set.thick_in, BaseMaterial.Wood).rvalue # Framing - d = Material.new(nil, constr_set.thick_in, BaseMaterial.Concrete, constr_set.cond_in).rvalue # Concrete - e = non_cavity_r - rigid_r = 0.5 * (Math.sqrt(a**2 - 4 * a * b * c + 4 * a * b * d + 2 * a * c - 2 * a * d + c**2 - 2 * c * d + d**2) + a - c - d - 2 * e) - if rigid_r > 0 # Choose this construction set - return true, constr_set, rigid_r - end - end - - return false, constr_sets[-1], 0.0 # Pick fallback construction with minimum R-value - end - - def self.pick_icf_construction_set(assembly_r, constr_sets, inside_film, outside_film, surface_name) - # Picks a construction set from supplied constr_sets for which a positive R-value - # can be calculated for the unknown insulation to achieve the assembly R-value. - - constr_sets.each do |constr_set| - fail 'Unexpected object.' unless constr_set.is_a? ICFConstructionSet - - film_r = inside_film.rvalue + outside_film.rvalue - non_cavity_r = calc_non_cavity_r(film_r, constr_set) - - # Calculate effective ICF rigid ins R-value - # Solved in Wolfram Alpha: https://www.wolframalpha.com/input/?i=1%2FA+%3D+B%2F(C%2BE)+%2B+(1-B)%2F(D%2BE%2B2*x) - a = assembly_r - b = constr_set.framing_factor - c = Material.new(nil, 2 * constr_set.ins_thick_in + constr_set.concrete_thick_in, BaseMaterial.Wood).rvalue # Framing - d = Material.new(nil, constr_set.concrete_thick_in, BaseMaterial.Concrete).rvalue # Concrete - e = non_cavity_r - icf_r = (a * b * c - a * b * d - a * c - a * e + c * d + c * e + d * e + e**2) / (2 * (a * b - c - e)) - if icf_r > 0 # Choose this construction set - return true, constr_set, icf_r - end - end - - return false, constr_sets[-1], 0.0 # Pick fallback construction with minimum R-value - end - - def self.pick_generic_construction_set(assembly_r, constr_sets, inside_film, outside_film, surface_name) - # Picks a construction set from supplied constr_sets for which a positive R-value - # can be calculated for the unknown insulation to achieve the assembly R-value. - - constr_sets.each do |constr_set| - fail 'Unexpected object.' unless constr_set.is_a? GenericConstructionSet - - film_r = inside_film.rvalue + outside_film.rvalue - non_cavity_r = calc_non_cavity_r(film_r, constr_set) - - # Calculate effective ins layer R-value - layer_r = assembly_r - non_cavity_r - if layer_r > 0 # Choose this construction set - return true, constr_set, layer_r - end - end - - return false, constr_sets[-1], 0.0 # Pick fallback construction with minimum R-value - end - - def self.check_surface_assembly_rvalue(runner, surfaces, inside_film, outside_film, assembly_r, match) - # Verify that the actual OpenStudio construction R-value matches our target assembly R-value - - film_r = 0.0 - film_r += inside_film.rvalue unless inside_film.nil? - film_r += outside_film.rvalue unless outside_film.nil? - surfaces.each do |surface| - constr_r = UnitConversions.convert(1.0 / surface.construction.get.uFactor(0.0).get, 'm^2*k/w', 'hr*ft^2*f/btu') + film_r - - if surface.adjacentFoundation.is_initialized - foundation = surface.adjacentFoundation.get - foundation.customBlocks.each do |custom_block| - ins_mat = custom_block.material.to_StandardOpaqueMaterial.get - constr_r += UnitConversions.convert(ins_mat.thickness, 'm', 'ft') / UnitConversions.convert(ins_mat.thermalConductivity, 'W/(m*K)', 'Btu/(hr*ft*R)') - end - end - - if (assembly_r - constr_r).abs > 0.1 - if match - fail "Construction R-value (#{constr_r}) does not match Assembly R-value (#{assembly_r}) for '#{surface.name}'." - else - runner.registerWarning("Assembly R-value (#{assembly_r}) for '#{surface.name}' below minimum expected value. Construction R-value increased to #{constr_r.round(2)}.") - end - end - end - end - def self.set_surface_interior(model, spaces, surface, hpxml_surface) interior_adjacent_to = hpxml_surface.interior_adjacent_to if [HPXML::LocationBasementConditioned].include? interior_adjacent_to @@ -3464,7 +2994,7 @@ def self.set_surface_exterior(model, spaces, surface, hpxml_surface) set_surface_otherside_coefficients(surface, exterior_adjacent_to, model, spaces) elsif exterior_adjacent_to == HPXML::LocationBasementConditioned surface.createAdjacentSurface(create_or_get_space(model, spaces, HPXML::LocationLivingSpace)) - @cond_bsmnt_surfaces << surface + @cond_bsmnt_surfaces << surface.adjacentSurface.get else surface.createAdjacentSurface(create_or_get_space(model, spaces, exterior_adjacent_to)) end @@ -3606,9 +3136,7 @@ def self.get_space_from_location(location, object_name, model, spaces) space = create_or_get_space(model, spaces, location) end - if spaces.size != num_orig_spaces - fail "#{object_name} location is '#{location}' but building does not have this location specified." - end + fail if spaces.size != num_orig_spaces # EPvalidator.xml should prevent this return space end @@ -3625,19 +3153,6 @@ def self.set_subsurface_exterior(surface, spaces, model, hpxml_surface) end end - def self.get_min_neighbor_distance() - min_neighbor_distance = nil - @hpxml.neighbor_buildings.each do |neighbor_building| - if min_neighbor_distance.nil? - min_neighbor_distance = 9e99 - end - if neighbor_building.distance < min_neighbor_distance - min_neighbor_distance = neighbor_building.distance - end - end - return min_neighbor_distance - end - def self.get_kiva_instances(fnd_walls, slabs) # Identify unique Kiva foundations that are required. kiva_fnd_walls = [] @@ -3665,93 +3180,5 @@ def self.set_foundation_and_walls_top() end end -# FUTURE: Move all of these construction classes to constructions.rb -class WoodStudConstructionSet - def initialize(stud, framing_factor, rigid_r, osb_thick_in, drywall_thick_in, exterior_material) - @stud = stud - @framing_factor = framing_factor - @rigid_r = rigid_r - @osb_thick_in = osb_thick_in - @drywall_thick_in = drywall_thick_in - @exterior_material = exterior_material - end - attr_accessor(:stud, :framing_factor, :rigid_r, :osb_thick_in, :drywall_thick_in, :exterior_material) -end - -class SteelStudConstructionSet - def initialize(cavity_thick_in, corr_factor, framing_factor, rigid_r, osb_thick_in, drywall_thick_in, exterior_material) - @cavity_thick_in = cavity_thick_in - @corr_factor = corr_factor - @framing_factor = framing_factor - @rigid_r = rigid_r - @osb_thick_in = osb_thick_in - @drywall_thick_in = drywall_thick_in - @exterior_material = exterior_material - end - attr_accessor(:cavity_thick_in, :corr_factor, :framing_factor, :rigid_r, :osb_thick_in, :drywall_thick_in, :exterior_material) -end - -class DoubleStudConstructionSet - def initialize(stud, framing_factor, framing_spacing, rigid_r, osb_thick_in, drywall_thick_in, exterior_material) - @stud = stud - @framing_factor = framing_factor - @framing_spacing = framing_spacing - @rigid_r = rigid_r - @osb_thick_in = osb_thick_in - @drywall_thick_in = drywall_thick_in - @exterior_material = exterior_material - end - attr_accessor(:stud, :framing_factor, :framing_spacing, :rigid_r, :osb_thick_in, :drywall_thick_in, :exterior_material) -end - -class SIPConstructionSet - def initialize(thick_in, framing_factor, rigid_r, sheath_thick_in, osb_thick_in, drywall_thick_in, exterior_material) - @thick_in = thick_in - @framing_factor = framing_factor - @rigid_r = rigid_r - @sheath_thick_in = sheath_thick_in - @osb_thick_in = osb_thick_in - @drywall_thick_in = drywall_thick_in - @exterior_material = exterior_material - end - attr_accessor(:thick_in, :framing_factor, :rigid_r, :sheath_thick_in, :osb_thick_in, :drywall_thick_in, :exterior_material) -end - -class CMUConstructionSet - def initialize(thick_in, cond_in, framing_factor, osb_thick_in, drywall_thick_in, exterior_material) - @thick_in = thick_in - @cond_in = cond_in - @framing_factor = framing_factor - @osb_thick_in = osb_thick_in - @drywall_thick_in = drywall_thick_in - @exterior_material = exterior_material - @rigid_r = nil # solved for - end - attr_accessor(:thick_in, :cond_in, :framing_factor, :rigid_r, :osb_thick_in, :drywall_thick_in, :exterior_material) -end - -class ICFConstructionSet - def initialize(ins_thick_in, concrete_thick_in, framing_factor, rigid_r, osb_thick_in, drywall_thick_in, exterior_material) - @ins_thick_in = ins_thick_in - @concrete_thick_in = concrete_thick_in - @framing_factor = framing_factor - @rigid_r = rigid_r - @osb_thick_in = osb_thick_in - @drywall_thick_in = drywall_thick_in - @exterior_material = exterior_material - end - attr_accessor(:ins_thick_in, :concrete_thick_in, :framing_factor, :rigid_r, :osb_thick_in, :drywall_thick_in, :exterior_material) -end - -class GenericConstructionSet - def initialize(rigid_r, osb_thick_in, drywall_thick_in, exterior_material) - @rigid_r = rigid_r - @osb_thick_in = osb_thick_in - @drywall_thick_in = drywall_thick_in - @exterior_material = exterior_material - end - attr_accessor(:rigid_r, :osb_thick_in, :drywall_thick_in, :exterior_material) -end - # register the measure to be used by the application HPXMLtoOpenStudio.new.registerWithApplication diff --git a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/measure.xml b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/measure.xml index 5fa4286f..15047a8d 100644 --- a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/measure.xml +++ b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/measure.xml @@ -3,8 +3,8 @@ 3.0 hpxm_lto_openstudio b1543b30-9465-45ff-ba04-1d1f85e763bc - d8a65282-212d-45ec-9233-6967bef4042f - 20201210T202958Z + 7266ea6e-ed3a-43e7-a608-e73f3c14757f + 20210325T174426Z D8922A73 HPXMLtoOpenStudio HPXML to OpenStudio Translator @@ -24,13 +24,32 @@ Directory for Output Files Absolute/relative path for the output files directory. String - false + true false debug Debug Mode? - If enabled: 1) Writes in.osm file, 2) Writes in.xml HPXML file with defaults populated, 3) Generates additional log output, and 4) Creates all EnergyPlus output files. Any files written will be in the output path specified above. + If true: 1) Writes in.osm file, 2) Generates additional log output, and 3) Creates all EnergyPlus output files. + Boolean + false + false + false + + + true + true + + + false + false + + + + + skip_validation + Skip Validation? + If true, bypasses HPXML input validation for faster performance. WARNING: This should only be used if the supplied HPXML file has already been validated against the Schema & Schematron documents. Boolean false false @@ -46,6 +65,14 @@ + + building_id + BuildingID + The ID of the HPXML Building. Only required if there are multiple Building elements in the HPXML file. + String + false + false + @@ -87,18 +114,6 @@ resource 38ED685E - - unit_conversions.rb - rb - resource - 6F263948 - - - unit_conversions.rb - rb - resource - 6F263948 - util.rb rb @@ -268,232 +283,244 @@ 00BB7C11 - test_miscloads.rb + validator.rb rb - test - 8FFE4973 + resource + 7039FF35 - test_lighting.rb + test_hvac_sizing.rb rb test - F42143F8 + 35C3F156 - meta_measure.rb + simcontrols.rb rb resource - 0C040490 + 77520F9B - test_constructions.rb + unit_conversions.rb + rb + resource + 5E866DCA + + + test_miscloads.rb rb test - 1DEAF026 + CAB25584 - constructions.rb + test_lighting.rb rb - resource - BA0409DC + test + 4E79FEBB - BaseElements.xsd - xsd - resource - B7D212FC + test_location.rb + rb + test + E35FFC5D - HPXMLDataTypes.xsd - xsd - resource - C13E66F3 + test_simcontrols.rb + rb + test + 4548B844 - validator.rb + test_pv.rb rb - resource - 7039FF35 + test + CCE7EC8C - test_validation.rb + test_water_heater.rb rb test - DF4C6299 + 468A0868 - version.rb + test_generator.rb rb - resource - A1532F79 + test + F67DB8C9 - hvac_sizing.rb + test_constructions.rb rb - resource - 51B1E37F + test + 106158AA - test_hvac_sizing.rb + test_airflow.rb rb test - 35C3F156 + E6A57DCD constants.rb rb resource - E4CE9FD0 + 5C04ADBE - waterheater.rb - rb + HPXMLDataTypes.xsd + xsd resource - 8CC67A4B + 09DB4799 - simcontrols.rb - rb + BaseElements.xsd + xsd resource - 1164C9B8 + 5894425E - test_location.rb + test_hvac.rb rb test - 983025AE + 558ED24D - test_simcontrols.rb + version.rb rb - test - 5CEBAA1B + resource + 4F621F55 location.rb rb resource - CFF8A021 + CB27A3C5 - xmlhelper.rb + generator.rb rb resource - 1932CF82 + 8094AEAC - HPXMLvalidator.xml - xml + pv.rb + rb resource - 7FDAF453 + 120417ED test_hotwater_appliance.rb rb test - A751054A + 9911B5A5 - test_hvac.rb + waterheater.rb rb - test - ABFAA1F9 + resource + C696219C - test_airflow.rb + constructions.rb rb - test - B065BC98 + resource + 4FD58D3F - test_pv.rb + test_defaults.rb rb test - 6EBE898A + 21C7F17E - test_water_heater.rb - rb - test - 00FF316C + HPXMLvalidator.xml + xml + resource + BCC4746A - pv.rb + hvac_sizing.rb rb resource - DF137AA1 + 53FE554B - test_generator.rb + test_validation.rb rb test - 223C82A9 + 012DB13A - generator.rb + EPvalidator.xml + xml + resource + D0C1F54C + + + weather.rb rb resource - EC9E575F + AC14851E - test_defaults.rb + lighting.rb rb - test - 2040ABBC + resource + 5507213C - EPvalidator.xml - xml + misc_loads.rb + rb resource - 2129504F + 4FB83469 - weather.rb + meta_measure.rb rb resource - AC14851E + 5523EAA1 geometry.rb rb resource - 6B904FD9 + E5B56D54 airflow.rb rb resource - C58C7B84 + 4A23F2F5 - hotwater_appliances.rb + xmlhelper.rb rb resource - 9F302346 + EEAB4FC6 - lighting.rb + hotwater_appliances.rb rb resource - FD083F5C + EF9BC498 - schedules.rb + hpxml_defaults.rb rb resource - C714CC53 + F38F9875 - misc_loads.rb + hpxml.rb rb resource - 77F89B51 + 0021C3D6 hvac.rb rb resource - 7FAEF245 + 376EE0A8 @@ -504,19 +531,13 @@ measure.rb rb script - D6647EEC + AB6B67F1 - hpxml_defaults.rb - rb - resource - 4AD8B2E6 - - - hpxml.rb + schedules.rb rb resource - CED559D7 + D76F0C2B diff --git a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/BaseElements.xsd b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/BaseElements.xsd index 63f9287e..08bd3072 100644 --- a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/BaseElements.xsd +++ b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/BaseElements.xsd @@ -449,7 +449,7 @@ Portable room dehumidifiers are typically used to dehumidify a single room or space and can be easily moved to where they are needed. Whole-home dehumidifiers are typically installed to use your home’s air ducts to dehumidify one or more rooms and are often permanent. Some dehumifiers can operate in both configurations by means of a ducting kit. - + [L/kWh] DEPRECATED. This will be removed in v4.0. Use EnergyFactor or IntegratedEnergyFactor instead. @@ -1273,7 +1273,6 @@ - describe @@ -1288,18 +1287,14 @@ [sq.ft.] Conditioned floor area that this distribution system serves. - + - For software that does not calculate an annual distribution system efficiency (DSE) for heating, the DSE may be approximated by equation - 3.4.i in ANSI/BPI-2400-S-2012: Standard Practice for Standardized Qualification of Whole-House Energy Savings, Predictions by Calibration to Energy Use - History. + For software that does not calculate an annual distribution system efficiency (DSE) for heating, the DSE may be approximated by equation 3.4.i in ANSI/BPI-2400-S-2012: Standard Practice for Standardized Qualification of Whole-House Energy Savings, Predictions by Calibration to Energy Use History. Enter values as a fractional number between 0 and 1, i.e. 80% = 0.8 - + - For software that does not calculate an annual distribution system efficiency (DSE) for cooling, the DSE may be approximated by equation - 3.4.i in ANSI/BPI-2400-S-2012: Standard Practice for Standardized Qualification of Whole-House Energy Savings, Predictions by Calibration to Energy Use - History. + For software that does not calculate an annual distribution system efficiency (DSE) for cooling, the DSE may be approximated by equation 3.4.i in ANSI/BPI-2400-S-2012: Standard Practice for Standardized Qualification of Whole-House Energy Savings, Predictions by Calibration to Energy Use History. Enter values as a fractional number between 0 and 1, i.e. 80% = 0.8 @@ -3828,93 +3823,6 @@ - - - - - - - - - - - - - - - - [in] - - - - - - - If a DuctType of supply or return is specified above, this is the fraction of the supply or return duct area. If DuctType is omitted above, this is - the fraction of the total duct area. - - - - - [sq.ft.] - - - - - - - - - - - - - - - - - - - - - - [in] - - - - - [ft] - - - - - - [degF] - - - - - [degF] - - - - - - - - System Pump and Zone Valve Corrections made - - - - - - - - - - - - HPXML records may contain data about an individual, either a person, or a business. This element contains the root elements for individual identifier values between a diff --git a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/EPvalidator.xml b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/EPvalidator.xml index 6f5d5201..2aed95b1 100644 --- a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/EPvalidator.xml +++ b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/EPvalidator.xml @@ -3,19 +3,27 @@ HPXML Schematron Validator: EnergyPlus Simulation - + + [Root] Expected 1 element(s) for xpath: XMLTransactionHeaderInformation Expected 0 or 1 element(s) for xpath: SoftwareInfo/extension/SimulationControl Expected 0 or 1 element(s) for xpath: SoftwareInfo/extension/HVACSizingControl - Expected 1 element(s) for xpath: Building - Expected 1 element(s) for xpath: Building/BuildingID - Expected 1 element(s) for xpath: Building/ProjectStatus/EventType - Expected 1 element(s) for xpath: Building/BuildingDetails + Expected 1 or more element(s) for xpath: Building - + + [Building] + + Expected 1 element(s) for xpath: Building/BuildingID + Expected 1 element(s) for xpath: Building/ProjectStatus/EventType + Expected 1 element(s) for xpath: Building/BuildingDetails + + + + + [XMLTransactionHeaderInformation] Expected 1 element(s) for xpath: XMLType Expected 1 element(s) for xpath: XMLGeneratedBy @@ -24,7 +32,8 @@ - + + [SimulationControl] Expected 0 or 1 element(s) for xpath: Timestep Expected 0 or 2 element(s) for xpath: BeginMonth | BeginDayOfMonth @@ -36,21 +45,24 @@ - + + [HVACSizingControl] Expected 0 or 1 element(s) for xpath: AllowIncreasedFixedCapacities Expected 0 or 1 element(s) for xpath: UseMaxLoadForHeatPumps - + + [DaylightSaving] Expected 1 element(s) for xpath: Enabled Expected 0 or 4 element(s) for xpath: BeginMonth | BeginDayOfMonth | EndMonth | EndDayOfMonth - + + [BuildingDetails] Expected 0 or 1 element(s) for xpath: BuildingSummary/Site Expected 0 or 1 element(s) for xpath: BuildingSummary/BuildingOccupancy @@ -86,7 +98,7 @@ Expected 0 or 1 element(s) for xpath: Appliances/Dishwasher Expected 0 or more element(s) for xpath: Appliances/Refrigerator Expected 0 or more element(s) for xpath: Appliances/Freezer - Expected 0 or 1 element(s) for xpath: Appliances/Dehumidifier + Expected 0 or more element(s) for xpath: Appliances/Dehumidifier Expected 0 or 1 element(s) for xpath: Appliances/CookingRange Expected 0 or 1 element(s) for xpath: Appliances/Oven Expected 0 or 1 element(s) for xpath: Lighting @@ -101,33 +113,37 @@ Expected 0 or 1 element(s) for xpath: MiscLoads/FuelLoad[FuelLoadType[text()="lighting"]] Expected 0 or 1 element(s) for xpath: MiscLoads/FuelLoad[FuelLoadType[text()="fireplace"]] + No windows specified, the model will not include window heat transfer. + No space heating specified, the model will not include space heating energy use. + No space cooling specified, the model will not include space cooling energy use. + No water heating specified, the model will not include water heating energy use. No clothes washer specified, the model will not include clothes washer energy use. No clothes dryer specified, the model will not include clothes dryer energy use. No dishwasher specified, the model will not include dishwasher energy use. No refrigerator specified, the model will not include refrigerator energy use. No cooking range specified, the model will not include cooking range/oven energy use. - No water heater specified, the model will not include water heating energy use. + No lighting specified, the model will not include lighting energy use. - + + [Site] Expected 0 or 1 element(s) for xpath: SiteType - Expected SiteType to be 'rural' or 'suburban' or 'urban' - Expected 0 or 1 element(s) for xpath: extension/ShelterCoefficient - Expected extension/ShelterCoefficient to be greater than or equal to 0 - Expected extension/ShelterCoefficient to be less than or equal to 1 + Expected 0 or 1 element(s) for xpath: ShieldingofHome Expected 0 or 1 element(s) for xpath: extension/Neighbors - + + [Neighbors] Expected 1 or more element(s) for xpath: NeighborBuilding - + + [NeighborBuilding] Expected 1 element(s) for xpath: Azimuth Expected 1 element(s) for xpath: Distance @@ -135,27 +151,33 @@ - + + [BuildingOccupancy] Expected 0 or 1 element(s) for xpath: NumberofResidents - + + [BuildingConstruction] Expected 1 element(s) for xpath: ResidentialFacilityType Expected ResidentialFacilityType to be 'single-family detached' or 'single-family attached' or 'apartment unit' or 'manufactured home' Expected 1 element(s) for xpath: NumberofConditionedFloors Expected 1 element(s) for xpath: NumberofConditionedFloorsAboveGrade + Expected NumberofConditionedFloors to be greater than or equal to NumberofConditionedFloorsAboveGrade Expected 1 element(s) for xpath: NumberofBedrooms + Expected NumberofBedrooms to be less than or equal to (ConditionedFloorArea-120)/70 Expected 0 or 1 element(s) for xpath: NumberofBathrooms Expected 1 element(s) for xpath: ConditionedFloorArea + Expected ConditionedFloorArea to be greater than or equal to the sum of conditioned slab/floor areas. Expected 0 or more element(s) for xpath: ConditionedBuildingVolume | AverageCeilingHeight Expected 0 or 1 element(s) for xpath: extension/HasFlueOrChimney - + + [ClimateZoneIECC] Expected 1 element(s) for xpath: Year Expected 1 element(s) for xpath: ClimateZone @@ -163,7 +185,8 @@ - + + [WeatherStation] Expected 1 element(s) for xpath: SystemIdentifier Expected 1 element(s) for xpath: Name @@ -171,25 +194,30 @@ - + + [AirInfiltrationUnits=ACHorCFM] Expected 1 element(s) for xpath: SystemIdentifier Expected 1 element(s) for xpath: HousePressure Expected 1 element(s) for xpath: BuildingAirLeakage/AirLeakage Expected 0 or 1 element(s) for xpath: InfiltrationVolume + Expected InfiltrationVolume to be greater than or equal to ../../../BuildingSummary/BuildingConstruction/ConditionedBuildingVolume - + + [AirInfiltrationUnits=ACHnatural] Expected 1 element(s) for xpath: SystemIdentifier Expected 0 element(s) for xpath: HousePressure Expected 1 element(s) for xpath: BuildingAirLeakage/AirLeakage Expected 0 or 1 element(s) for xpath: InfiltrationVolume + Expected InfiltrationVolume to be greater than or equal to ../../../BuildingSummary/BuildingConstruction/ConditionedBuildingVolume - + + [Roof] Expected 1 element(s) for xpath: SystemIdentifier Expected 1 element(s) for xpath: InteriorAdjacentTo @@ -204,22 +232,26 @@ Expected 0 or 1 element(s) for xpath: RadiantBarrier Expected 1 element(s) for xpath: Insulation/SystemIdentifier Expected 1 element(s) for xpath: Insulation/AssemblyEffectiveRValue + Expected Insulation/AssemblyEffectiveRValue to be greater than 0 - + + [RoofType=AdjacentToVentedAttic] Expected 0 or 1 element(s) for xpath: ../../Attics/Attic[AtticType/Attic[Vented="true"]]/VentilationRate[UnitofMeasure="SLA" or UnitofMeasure="ACHnatural"]/Value - + + [RadiantBarrier] Expected 1 element(s) for xpath: RadiantBarrierGrade - + + [RimJoist] Expected 1 element(s) for xpath: SystemIdentifier Expected 1 element(s) for xpath: ExteriorAdjacentTo @@ -234,10 +266,12 @@ Expected 0 or 1 element(s) for xpath: Emittance Expected 1 element(s) for xpath: Insulation/SystemIdentifier Expected 1 element(s) for xpath: Insulation/AssemblyEffectiveRValue + Expected Insulation/AssemblyEffectiveRValue to be greater than 0 - + + [Wall] Expected 1 element(s) for xpath: SystemIdentifier Expected 1 element(s) for xpath: ExteriorAdjacentTo @@ -253,10 +287,12 @@ Expected 0 or 1 element(s) for xpath: Emittance Expected 1 element(s) for xpath: Insulation/SystemIdentifier Expected 1 element(s) for xpath: Insulation/AssemblyEffectiveRValue + Expected Insulation/AssemblyEffectiveRValue to be greater than 0 - + + [FoundationWall] Expected 1 element(s) for xpath: SystemIdentifier Expected 1 element(s) for xpath: ExteriorAdjacentTo @@ -268,28 +304,35 @@ Expected 0 or 1 element(s) for xpath: Azimuth Expected 0 or 1 element(s) for xpath: Thickness Expected 1 element(s) for xpath: DepthBelowGrade + Expected DepthBelowGrade to be less than or equal to Height Expected 1 element(s) for xpath: Insulation/SystemIdentifier Expected 1 element(s) for xpath: Insulation/Layer[InstallationType[text()="continuous - interior"]] | Insulation/AssemblyEffectiveRValue Expected 1 element(s) for xpath: Insulation/Layer[InstallationType[text()="continuous - exterior"]] | Insulation/AssemblyEffectiveRValue + Expected Insulation/AssemblyEffectiveRValue to be greater than 0 - + + [FoundationWallType=AdjacentToVentedCrawl] Expected 0 or 1 element(s) for xpath: ../../Foundations/Foundation[FoundationType/Crawlspace[Vented="true"]]/VentilationRate[UnitofMeasure="SLA"]/Value - + + [FoundationWallInsulationLayer] Expected 1 element(s) for xpath: NominalRValue - Expected 1 element(s) for xpath: extension/DistanceToTopOfInsulation - Expected 1 element(s) for xpath: extension/DistanceToBottomOfInsulation + Expected 1 element(s) for xpath: extension/DistanceToTopOfInsulation + Expected 1 element(s) for xpath: extension/DistanceToBottomOfInsulation + Expected extension/DistanceToBottomOfInsulation to be greater than or equal to extension/DistanceToTopOfInsulation + Expected extension/DistanceToBottomOfInsulation to be less than or equal to ../../Height - + + [FrameFloor] Expected 1 element(s) for xpath: SystemIdentifier Expected 1 element(s) for xpath: ExteriorAdjacentTo @@ -299,16 +342,19 @@ Expected 1 element(s) for xpath: Area Expected 1 element(s) for xpath: Insulation/SystemIdentifier Expected 1 element(s) for xpath: Insulation/AssemblyEffectiveRValue + Expected Insulation/AssemblyEffectiveRValue to be greater than 0 - + + [FrameFloorType=AdjacentToOther] Expected 1 element(s) for xpath: extension/OtherSpaceAboveOrBelow[text()="above" or text()="below"] - + + [Slab] Expected 1 element(s) for xpath: SystemIdentifier Expected 1 element(s) for xpath: InteriorAdjacentTo @@ -325,16 +371,21 @@ Expected 1 element(s) for xpath: UnderSlabInsulation/Layer/NominalRValue Expected 0 or 1 element(s) for xpath: extension/CarpetFraction Expected 0 or 1 element(s) for xpath: extension/CarpetRValue + + Slab has zero exposed perimeter, this may indicate an input error. - + + [Window] Expected 1 element(s) for xpath: SystemIdentifier Expected 1 element(s) for xpath: Area Expected 1 element(s) for xpath: Azimuth Expected 1 element(s) for xpath: UFactor Expected 1 element(s) for xpath: SHGC + Expected 0 or 1 element(s) for xpath: ExteriorShading/SummerShadingCoefficient + Expected 0 or 1 element(s) for xpath: ExteriorShading/WinterShadingCoefficient Expected 0 or 1 element(s) for xpath: InteriorShading/SummerShadingCoefficient Expected 0 or 1 element(s) for xpath: InteriorShading/WinterShadingCoefficient Expected 0 or 1 element(s) for xpath: Overhangs @@ -343,28 +394,34 @@ - + + [WindowOverhangs] Expected 1 element(s) for xpath: Depth Expected 1 element(s) for xpath: DistanceToTopOfWindow Expected 1 element(s) for xpath: DistanceToBottomOfWindow + Expected DistanceToBottomOfWindow to be greater than DistanceToTopOfWindow - + + [Skylight] Expected 1 element(s) for xpath: SystemIdentifier Expected 1 element(s) for xpath: Area Expected 1 element(s) for xpath: Azimuth Expected 1 element(s) for xpath: UFactor Expected 1 element(s) for xpath: SHGC + Expected 0 or 1 element(s) for xpath: ExteriorShading/SummerShadingCoefficient + Expected 0 or 1 element(s) for xpath: ExteriorShading/WinterShadingCoefficient Expected 0 or 1 element(s) for xpath: InteriorShading/SummerShadingCoefficient Expected 0 or 1 element(s) for xpath: InteriorShading/WinterShadingCoefficient Expected 1 element(s) for xpath: AttachedToRoof - + + [Door] Expected 1 element(s) for xpath: SystemIdentifier Expected 1 element(s) for xpath: AttachedToWall @@ -374,7 +431,8 @@ - + + [HeatingSystem] Expected 1 element(s) for xpath: SystemIdentifier Expected 1 element(s) for xpath: ../../HVACControl @@ -383,17 +441,20 @@ - + + [HeatingSystemType=Resistance] Expected 0 element(s) for xpath: DistributionSystem Expected 1 element(s) for xpath: HeatingSystemFuel Expected HeatingSystemFuel to be 'electricity' Expected 0 or 1 element(s) for xpath: HeatingCapacity Expected 1 element(s) for xpath: AnnualHeatingEfficiency[Units="Percent"]/Value + Expected AnnualHeatingEfficiency[Units="Percent"]/Value to be less than or equal to 1 - + + [HeatingSystemType=Furnace] Expected 1 or more element(s) for xpath: ../../HVACDistribution/DistributionSystemType/AirDistribution | ../../HVACDistribution/DistributionSystemType/Other[text()="DSE"] Expected 1 element(s) for xpath: DistributionSystem @@ -401,43 +462,56 @@ Expected HeatingSystemFuel to be 'electricity' or 'natural gas' or 'fuel oil' or 'fuel oil 1' or 'fuel oil 2' or 'fuel oil 4' or 'fuel oil 5/6' or 'diesel' or 'propane' or 'kerosene' or 'coal' or 'coke' or 'bituminous coal' or 'wood' or 'wood pellets' Expected 0 or 1 element(s) for xpath: HeatingCapacity Expected 1 element(s) for xpath: AnnualHeatingEfficiency[Units="AFUE"]/Value + Expected AnnualHeatingEfficiency[Units="AFUE"]/Value to be less than or equal to 1 Expected 0 or 1 element(s) for xpath: extension/FanPowerWattsPerCFM + Expected extension/FanPowerWattsPerCFM to be greater than or equal to 0 + Expected 0 or 1 element(s) for xpath: extension/AirflowDefectRatio + Expected extension/AirflowDefectRatio to be greater than -1 - + + [HeatingSystemType=WallFurnace] Expected 0 element(s) for xpath: DistributionSystem Expected 1 element(s) for xpath: HeatingSystemFuel Expected HeatingSystemFuel to be 'electricity' or 'natural gas' or 'fuel oil' or 'fuel oil 1' or 'fuel oil 2' or 'fuel oil 4' or 'fuel oil 5/6' or 'diesel' or 'propane' or 'kerosene' or 'coal' or 'coke' or 'bituminous coal' or 'wood' or 'wood pellets' Expected 0 or 1 element(s) for xpath: HeatingCapacity Expected 1 element(s) for xpath: AnnualHeatingEfficiency[Units="AFUE"]/Value + Expected AnnualHeatingEfficiency[Units="AFUE"]/Value to be less than or equal to 1 Expected 0 or 1 element(s) for xpath: extension/FanPowerWatts + Expected extension/FanPowerWatts to be greater than or equal to 0 - + + [HeatingSystemType=FloorFurnace] Expected 0 element(s) for xpath: DistributionSystem Expected 1 element(s) for xpath: HeatingSystemFuel Expected HeatingSystemFuel to be 'electricity' or 'natural gas' or 'fuel oil' or 'fuel oil 1' or 'fuel oil 2' or 'fuel oil 4' or 'fuel oil 5/6' or 'diesel' or 'propane' or 'kerosene' or 'coal' or 'coke' or 'bituminous coal' or 'wood' or 'wood pellets' Expected 0 or 1 element(s) for xpath: HeatingCapacity Expected 1 element(s) for xpath: AnnualHeatingEfficiency[Units="AFUE"]/Value + Expected AnnualHeatingEfficiency[Units="AFUE"]/Value to be less than or equal to 1 Expected 0 or 1 element(s) for xpath: extension/FanPowerWatts + Expected extension/FanPowerWatts to be greater than or equal to 0 - + + [HeatingSystemType=Boiler] Expected 0 or 1 element(s) for xpath: IsSharedSystem Expected 1 element(s) for xpath: DistributionSystem Expected 1 element(s) for xpath: HeatingSystemFuel Expected HeatingSystemFuel to be 'electricity' or 'natural gas' or 'fuel oil' or 'fuel oil 1' or 'fuel oil 2' or 'fuel oil 4' or 'fuel oil 5/6' or 'diesel' or 'propane' or 'kerosene' or 'coal' or 'coke' or 'bituminous coal' or 'wood' or 'wood pellets' Expected 1 element(s) for xpath: AnnualHeatingEfficiency[Units="AFUE"]/Value + Expected AnnualHeatingEfficiency[Units="AFUE"]/Value to be less than or equal to 1 - + + [HeatingSystemType=InUnitBoiler] Expected 1 or more element(s) for xpath: ../../HVACDistribution/DistributionSystemType/HydronicDistribution/HydronicDistributionType[text()="radiator" or text()="baseboard" or text()="radiant floor" or text()="radiant ceiling"] | ../../HVACDistribution/DistributionSystemType/Other[text()="DSE"] Expected 0 or 1 element(s) for xpath: HeatingCapacity @@ -445,72 +519,92 @@ - + + [HeatingSystemType=SharedBoiler] Expected 1 element(s) for xpath: ../../../../BuildingSummary/BuildingConstruction[ResidentialFacilityType[text()="single-family attached" or text()="apartment unit"]] - Expected 1 element(s) for xpath: ../../HVACDistribution/DistributionSystemType/HydronicDistribution/HydronicDistributionType[text()="radiator" or text()="baseboard" or text()="radiant floor" or text()="radiant ceiling"] | ../../HVACDistribution/DistributionSystemType/HydronicAndAirDistribution/HydronicAndAirDistributionType[text()="fan coil" or text()="water loop heat pump"] + Expected 1 or more element(s) for xpath: ../../HVACDistribution/DistributionSystemType/HydronicDistribution/HydronicDistributionType[text()="radiator" or text()="baseboard" or text()="radiant floor" or text()="radiant ceiling" or text()="water loop"] | ../../HVACDistribution/DistributionSystemType/AirDistribution/AirDistributionType[text()="fan coil"] Expected 1 element(s) for xpath: NumberofUnitsServed + Expected NumberofUnitsServed to be greater than 1 Expected 0 or 1 element(s) for xpath: ElectricAuxiliaryEnergy | extension/SharedLoopWatts + Expected extension/SharedLoopWatts to be greater than or equal to 0 - - + + [HeatingSystemType=SharedBoilerWthFanCoil] + Expected 0 or 1 element(s) for xpath: ElectricAuxiliaryEnergy | extension/FanCoilWatts + Expected extension/FanCoilWatts to be greater than or equal to 0 - - - Expected 1 element(s) for xpath: extension/WaterLoopHeatPump/AnnualHeatingEfficiency[Units="COP"]/Value + + [HeatingSystemType=SharedBoilerWithWLHP] + + Expected 0 or 1 element(s) for xpath: ../HeatPump[HeatPumpType="water-loop-to-air"]/HeatingCapacity + Expected 1 element(s) for xpath: ../HeatPump[HeatPumpType="water-loop-to-air"]/AnnualHeatingEfficiency[Units="COP"]/Value - + + [HeatingSystemType=Stove] Expected 0 element(s) for xpath: DistributionSystem Expected 1 element(s) for xpath: HeatingSystemFuel Expected HeatingSystemFuel to be 'electricity' or 'natural gas' or 'fuel oil' or 'fuel oil 1' or 'fuel oil 2' or 'fuel oil 4' or 'fuel oil 5/6' or 'diesel' or 'propane' or 'kerosene' or 'coal' or 'coke' or 'bituminous coal' or 'wood' or 'wood pellets' Expected 0 or 1 element(s) for xpath: HeatingCapacity Expected 1 element(s) for xpath: AnnualHeatingEfficiency[Units="Percent"]/Value + Expected AnnualHeatingEfficiency[Units="Percent"]/Value to be less than or equal to 1 Expected 0 or 1 element(s) for xpath: extension/FanPowerWatts + Expected extension/FanPowerWatts to be greater than or equal to 0 - + + [HeatingSystemType=PortableHeater] Expected 0 element(s) for xpath: DistributionSystem Expected 1 element(s) for xpath: HeatingSystemFuel Expected HeatingSystemFuel to be 'electricity' or 'natural gas' or 'fuel oil' or 'fuel oil 1' or 'fuel oil 2' or 'fuel oil 4' or 'fuel oil 5/6' or 'diesel' or 'propane' or 'kerosene' or 'coal' or 'coke' or 'bituminous coal' or 'wood' or 'wood pellets' Expected 0 or 1 element(s) for xpath: HeatingCapacity Expected 1 element(s) for xpath: AnnualHeatingEfficiency[Units="Percent"]/Value + Expected AnnualHeatingEfficiency[Units="Percent"]/Value to be less than or equal to 1 Expected 0 or 1 element(s) for xpath: extension/FanPowerWatts + Expected extension/FanPowerWatts to be greater than or equal to 0 - + + [HeatingSystemType=FixedHeater] Expected 0 element(s) for xpath: DistributionSystem Expected 1 element(s) for xpath: HeatingSystemFuel Expected HeatingSystemFuel to be 'electricity' or 'natural gas' or 'fuel oil' or 'fuel oil 1' or 'fuel oil 2' or 'fuel oil 4' or 'fuel oil 5/6' or 'diesel' or 'propane' or 'kerosene' or 'coal' or 'coke' or 'bituminous coal' or 'wood' or 'wood pellets' Expected 0 or 1 element(s) for xpath: HeatingCapacity Expected 1 element(s) for xpath: AnnualHeatingEfficiency[Units="Percent"]/Value + Expected AnnualHeatingEfficiency[Units="Percent"]/Value to be less than or equal to 1 Expected 0 or 1 element(s) for xpath: extension/FanPowerWatts + Expected extension/FanPowerWatts to be greater than or equal to 0 - + + [HeatingSystemType=Fireplace] Expected 0 element(s) for xpath: DistributionSystem Expected 1 element(s) for xpath: HeatingSystemFuel Expected HeatingSystemFuel to be 'electricity' or 'natural gas' or 'fuel oil' or 'fuel oil 1' or 'fuel oil 2' or 'fuel oil 4' or 'fuel oil 5/6' or 'diesel' or 'propane' or 'kerosene' or 'coal' or 'coke' or 'bituminous coal' or 'wood' or 'wood pellets' Expected 0 or 1 element(s) for xpath: HeatingCapacity Expected 1 element(s) for xpath: AnnualHeatingEfficiency[Units="Percent"]/Value + Expected AnnualHeatingEfficiency[Units="Percent"]/Value to be less than or equal to 1 Expected 0 or 1 element(s) for xpath: extension/FanPowerWatts + Expected extension/FanPowerWatts to be greater than or equal to 0 - + + [CoolingSystem] Expected 1 element(s) for xpath: SystemIdentifier Expected 1 element(s) for xpath: ../../HVACControl @@ -522,7 +616,8 @@ - + + [CoolingSystemType=CentralAC] Expected 1 or more element(s) for xpath: ../../HVACDistribution/DistributionSystemType/AirDistribution | ../../HVACDistribution/DistributionSystemType/Other[text()="DSE"] Expected 1 element(s) for xpath: DistributionSystem @@ -532,10 +627,16 @@ Expected 1 element(s) for xpath: AnnualCoolingEfficiency[Units="SEER"]/Value Expected 0 or 1 element(s) for xpath: SensibleHeatFraction Expected 0 or 1 element(s) for xpath: extension/FanPowerWattsPerCFM + Expected extension/FanPowerWattsPerCFM to be greater than or equal to 0 + Expected 0 or 1 element(s) for xpath: extension/AirflowDefectRatio + Expected extension/AirflowDefectRatio to be greater than -1 + Expected 0 or 1 element(s) for xpath: extension/ChargeDefectRatio + Expected extension/ChargeDefectRatio to be greater than -1 - + + [CoolingSystemType=RoomAC] Expected 0 element(s) for xpath: DistributionSystem Expected 0 or 1 element(s) for xpath: CoolingCapacity @@ -544,137 +645,210 @@ - + + [CoolingSystemType=EvapCooler] Expected 0 or more element(s) for xpath: ../../HVACDistribution/DistributionSystemType/AirDistribution | ../../HVACDistribution/DistributionSystemType/Other[text()="DSE"] Expected 0 or 1 element(s) for xpath: DistributionSystem - Expected 0 element(s) for xpath: CoolingCapacity - Expected 0 or 1 element(s) for xpath: extension/FanPowerWattsPerCFM + Expected 0 or 1 element(s) for xpath: CoolingCapacity - + + [CoolingSystemType=MiniSplitAC] Expected 0 or more element(s) for xpath: ../../HVACDistribution/DistributionSystemType/AirDistribution | ../../HVACDistribution/DistributionSystemType/Other[text()="DSE"] - Expected 0 or 1 element(s) for xpath: DistributionSystem + Expected 0 or 1 element(s) for xpath: DistributionSystem Expected 0 or 1 element(s) for xpath: CoolingCapacity Expected 1 element(s) for xpath: AnnualCoolingEfficiency[Units="SEER"]/Value Expected 0 or 1 element(s) for xpath: SensibleHeatFraction + Expected 0 or 1 element(s) for xpath: extension/ChargeDefectRatio + Expected extension/ChargeDefectRatio to be greater than -1 + + + + + [CoolingSystemType=DuctedMiniSplitAC] + Expected 0 or 1 element(s) for xpath: extension/FanPowerWattsPerCFM + Expected extension/FanPowerWattsPerCFM to be greater than or equal to 0 + Expected 0 or 1 element(s) for xpath: extension/AirflowDefectRatio + Expected extension/AirflowDefectRatio to be greater than -1 - + + [CoolingSystemType=SharedChiller] Expected 1 element(s) for xpath: ../../../../BuildingSummary/BuildingConstruction[ResidentialFacilityType[text()="single-family attached" or text()="apartment unit"]] - Expected 1 element(s) for xpath: ../../HVACDistribution/DistributionSystemType/HydronicDistribution/HydronicDistributionType[text()="radiator" or text()="baseboard" or text()="radiant floor" or text()="radiant ceiling"] | ../../HVACDistribution/DistributionSystemType/HydronicAndAirDistribution/HydronicAndAirDistributionType[text()="fan coil" or text()="water loop heat pump"] + Expected 1 or more element(s) for xpath: ../../HVACDistribution/DistributionSystemType/HydronicDistribution/HydronicDistributionType[text()="radiator" or text()="baseboard" or text()="radiant floor" or text()="radiant ceiling" or text()="water loop"] | ../../HVACDistribution/DistributionSystemType/AirDistribution/AirDistributionType[text()="fan coil"] Expected 1 element(s) for xpath: DistributionSystem Expected 1 element(s) for xpath: IsSharedSystem[text()="true"] Expected 1 element(s) for xpath: NumberofUnitsServed + Expected NumberofUnitsServed to be greater than 1 Expected 1 element(s) for xpath: CoolingCapacity Expected 1 element(s) for xpath: AnnualCoolingEfficiency[Units="kW/ton"]/Value Expected 1 element(s) for xpath: extension/SharedLoopWatts + Expected extension/SharedLoopWatts to be greater than or equal to 0 - - + + [CoolingSystemType=SharedChillerWithFanCoil] + Expected 1 element(s) for xpath: extension/FanCoilWatts + Expected extension/FanCoilWatts to be greater than or equal to 0 - - - Expected 1 element(s) for xpath: extension/WaterLoopHeatPump/CoolingCapacity - Expected 1 element(s) for xpath: extension/WaterLoopHeatPump/AnnualCoolingEfficiency[Units="EER"]/Value + + [CoolingSystemType=SharedChillerWithWLHP] + + Expected 1 element(s) for xpath: ../HeatPump[HeatPumpType="water-loop-to-air"]/CoolingCapacity + Expected 1 element(s) for xpath: ../HeatPump[HeatPumpType="water-loop-to-air"]/AnnualCoolingEfficiency[Units="EER"]/Value - + + [CoolingSystemType=SharedCoolingTowerWLHP] Expected 1 element(s) for xpath: ../../../../BuildingSummary/BuildingConstruction[ResidentialFacilityType[text()="single-family attached" or text()="apartment unit"]] - Expected 1 element(s) for xpath: ../../HVACDistribution/DistributionSystemType/HydronicAndAirDistribution/HydronicAndAirDistributionType[text()="water loop heat pump"] + Expected 1 or more element(s) for xpath: ../../HVACDistribution/DistributionSystemType/HydronicDistribution/HydronicDistributionType[text()="water loop"] Expected 1 element(s) for xpath: DistributionSystem Expected 1 element(s) for xpath: IsSharedSystem[text()="true"] Expected 1 element(s) for xpath: NumberofUnitsServed + Expected NumberofUnitsServed to be greater than 1 Expected 1 element(s) for xpath: extension/SharedLoopWatts - Expected 1 element(s) for xpath: extension/WaterLoopHeatPump/CoolingCapacity - Expected 1 element(s) for xpath: extension/WaterLoopHeatPump/AnnualCoolingEfficiency[Units="EER"]/Value + Expected extension/SharedLoopWatts to be greater than or equal to 0 + Expected 1 element(s) for xpath: ../HeatPump[HeatPumpType="water-loop-to-air"]/CoolingCapacity + Expected 1 element(s) for xpath: ../HeatPump[HeatPumpType="water-loop-to-air"]/AnnualCoolingEfficiency[Units="EER"]/Value - + + [HeatPump] Expected 1 element(s) for xpath: SystemIdentifier Expected 1 element(s) for xpath: ../../HVACControl - Expected 1 element(s) for xpath: HeatPumpType - Expected HeatPumpType to be 'air-to-air' or 'mini-split' or 'ground-to-air' + Expected 1 element(s) for xpath: HeatPumpType + Expected HeatPumpType to be 'air-to-air' or 'mini-split' or 'ground-to-air' or 'water-loop-to-air' Expected 1 element(s) for xpath: HeatPumpFuel Expected HeatPumpFuel to be 'electricity' - Expected 0 or 1 element(s) for xpath: HeatingCapacity - Expected 0 or 1 element(s) for xpath: CoolingCapacity - Expected 0 or 1 element(s) for xpath: CoolingSensibleHeatFraction Expected 0 or 1 element(s) for xpath: BackupSystemFuel Expected BackupSystemFuel to be 'electricity' or 'natural gas' or 'fuel oil' or 'fuel oil 1' or 'fuel oil 2' or 'fuel oil 4' or 'fuel oil 5/6' or 'diesel' or 'propane' or 'kerosene' or 'coal' or 'coke' or 'bituminous coal' or 'wood' or 'wood pellets' - Expected 1 element(s) for xpath: FractionHeatLoadServed - Expected 1 element(s) for xpath: FractionCoolLoadServed - + + [HeatPumpType=AirSource] Expected 1 or more element(s) for xpath: ../../HVACDistribution/DistributionSystemType/AirDistribution | ../../HVACDistribution/DistributionSystemType/Other[text()="DSE"] Expected 1 element(s) for xpath: DistributionSystem Expected 0 or 1 element(s) for xpath: CompressorType Expected CompressorType to be 'single stage' or 'two stage' or 'variable speed' + Expected 0 or 1 element(s) for xpath: HeatingCapacity + Expected 0 or 1 element(s) for xpath: HeatingCapacity17F + Expected 0 or 1 element(s) for xpath: CoolingCapacity + Expected 0 or 1 element(s) for xpath: CoolingSensibleHeatFraction + Expected 1 element(s) for xpath: FractionHeatLoadServed + Expected 1 element(s) for xpath: FractionCoolLoadServed Expected 1 element(s) for xpath: AnnualCoolingEfficiency[Units="SEER"]/Value Expected 1 element(s) for xpath: AnnualHeatingEfficiency[Units="HSPF"]/Value - Expected 0 or 1 element(s) for xpath: HeatingCapacity17F Expected 0 or 1 element(s) for xpath: extension/FanPowerWattsPerCFM + Expected extension/FanPowerWattsPerCFM to be greater than or equal to 0 + Expected 0 or 1 element(s) for xpath: extension/AirflowDefectRatio + Expected extension/AirflowDefectRatio to be greater than -1 + Expected 0 or 1 element(s) for xpath: extension/ChargeDefectRatio + Expected extension/ChargeDefectRatio to be greater than -1 - + + [HeatPumpType=MiniSplit] Expected 0 or more element(s) for xpath: ../../HVACDistribution/DistributionSystemType/AirDistribution | ../../HVACDistribution/DistributionSystemType/Other[text()="DSE"] - Expected 0 or 1 element(s) for xpath: DistributionSystem + Expected 0 or 1 element(s) for xpath: DistributionSystem + Expected 0 or 1 element(s) for xpath: HeatingCapacity + Expected 0 or 1 element(s) for xpath: HeatingCapacity17F + Expected 0 or 1 element(s) for xpath: CoolingCapacity + Expected 0 or 1 element(s) for xpath: CoolingSensibleHeatFraction + Expected 1 element(s) for xpath: FractionHeatLoadServed + Expected 1 element(s) for xpath: FractionCoolLoadServed Expected 1 element(s) for xpath: AnnualCoolingEfficiency[Units="SEER"]/Value Expected 1 element(s) for xpath: AnnualHeatingEfficiency[Units="HSPF"]/Value - Expected 0 or 1 element(s) for xpath: HeatingCapacity17F - Expected 0 or 1 element(s) for xpath: extension/FanPowerWattsPerCFM + Expected 0 or 1 element(s) for xpath: extension/ChargeDefectRatio + Expected extension/ChargeDefectRatio to be greater than -1 - + + [HeatPumpType=DuctedMiniSplit] + + Expected 0 or 1 element(s) for xpath: extension/FanPowerWattsPerCFM + Expected extension/FanPowerWattsPerCFM to be greater than or equal to 0 + Expected 0 or 1 element(s) for xpath: extension/AirflowDefectRatio + Expected extension/AirflowDefectRatio to be greater than -1 + + + + + [HeatPumpType=GroundSource] Expected 1 or more element(s) for xpath: ../../HVACDistribution/DistributionSystemType/AirDistribution | ../../HVACDistribution/DistributionSystemType/Other[text()="DSE"] Expected 0 or 1 element(s) for xpath: IsSharedSystem Expected 1 element(s) for xpath: DistributionSystem Expected 0 element(s) for xpath: BackupHeatingSwitchoverTemperature + Expected 0 or 1 element(s) for xpath: HeatingCapacity + Expected 0 or 1 element(s) for xpath: CoolingCapacity + Expected 0 or 1 element(s) for xpath: CoolingSensibleHeatFraction + Expected 1 element(s) for xpath: FractionHeatLoadServed + Expected 1 element(s) for xpath: FractionCoolLoadServed Expected 1 element(s) for xpath: AnnualCoolingEfficiency[Units="EER"]/Value Expected 1 element(s) for xpath: AnnualHeatingEfficiency[Units="COP"]/Value Expected 0 or 1 element(s) for xpath: extension/PumpPowerWattsPerTon + Expected extension/PumpPowerWattsPerTon to be greater than or equal to 0 Expected 0 or 1 element(s) for xpath: extension/FanPowerWattsPerCFM + Expected extension/FanPowerWattsPerCFM to be greater than or equal to 0 + Expected 0 or 1 element(s) for xpath: extension/AirflowDefectRatio + Expected extension/AirflowDefectRatio to be greater than -1 + Expected 0 or 1 element(s) for xpath: extension/ChargeDefectRatio + Expected extension/ChargeDefectRatio to be 0 - + + [HeatPumpType=GroundSourceWithSharedLoop] Expected 1 element(s) for xpath: ../../../../BuildingSummary/BuildingConstruction[ResidentialFacilityType[text()="single-family attached" or text()="apartment unit"]] Expected 1 element(s) for xpath: NumberofUnitsServed + Expected NumberofUnitsServed to be greater than 1 Expected 1 element(s) for xpath: extension/SharedLoopWatts + Expected extension/SharedLoopWatts to be greater than or equal to 0 - + + [HeatPumpType=WaterLoop] + + Expected 1 or more element(s) for xpath: ../../HVACDistribution/DistributionSystemType/AirDistribution | ../../HVACDistribution/DistributionSystemType/Other[text()="DSE"] + Expected 1 or more element(s) for xpath: ../HeatingSystem[HeatingSystemType/Boiler and IsSharedSystem="true"] | ../CoolingSystem[(CoolingSystemType="chiller" or CoolingSystemType="cooling tower") and IsSharedSystem="true"] + Expected 1 or more element(s) for xpath: ../../HVACDistribution/DistributionSystemType/HydronicDistribution[HydronicDistributionType="water loop"] + + + + + [HeatPumpBackup] Expected 1 element(s) for xpath: BackupAnnualHeatingEfficiency[Units="Percent" or Units="AFUE"]/Value + Expected BackupAnnualHeatingEfficiency[Units="Percent" or Units="AFUE"]/Value to be less than or equal to 1 Expected 0 or 1 element(s) for xpath: BackupHeatingCapacity + Expected 0 or 2 element(s) for xpath: HeatingCapacity | BackupHeatingCapacity Expected 0 or 1 element(s) for xpath: BackupHeatingSwitchoverTemperature - + + [HVACControl] Expected 1 element(s) for xpath: SystemIdentifier Expected 1 element(s) for xpath: SetpointTempHeatingSeason | WeekdaySetpointTempsHeatingSeason @@ -689,7 +863,8 @@ - + + [HVACControlType=HeatingSetback] Expected 1 element(s) for xpath: TotalSetbackHoursperWeekHeating Expected 0 or 1 element(s) for xpath: extension/SetbackStartHourHeating @@ -698,7 +873,8 @@ - + + [HVACControlType=CoolingSetup] Expected 1 element(s) for xpath: TotalSetupHoursperWeekCooling Expected 0 or 1 element(s) for xpath: extension/SetupStartHourCooling @@ -707,60 +883,74 @@ - + + [HVACDistribution] Expected 1 element(s) for xpath: SystemIdentifier - Expected 1 element(s) for xpath: DistributionSystemType[AirDistribution | HydronicDistribution | HydronicAndAirDistribution | Other[text()="DSE"]] + Expected 1 element(s) for xpath: DistributionSystemType[AirDistribution | HydronicDistribution | Other[text()="DSE"]] - + + [HVACDistributionType=Air] Expected 1 element(s) for xpath: ../../ConditionedFloorAreaServed - Expected 0 or 1 element(s) for xpath: DuctLeakageMeasurement[DuctType="supply"]/DuctLeakage[(Units="CFM25" or Units="Percent") and TotalOrToOutside="to outside"]/Value - Expected 0 or 1 element(s) for xpath: DuctLeakageMeasurement[DuctType="return"]/DuctLeakage[(Units="CFM25" or Units="Percent") and TotalOrToOutside="to outside"]/Value - Expected 0 or more element(s) for xpath: Ducts[DuctType="supply"] - Expected 0 or more element(s) for xpath: Ducts[DuctType="return"] + Expected 1 element(s) for xpath: DuctLeakageMeasurement[DuctType="supply"]/DuctLeakage[(Units="CFM25" or Units="Percent") and TotalOrToOutside="to outside"] + Expected 1 element(s) for xpath: DuctLeakageMeasurement[DuctType="return"]/DuctLeakage[(Units="CFM25" or Units="Percent") and TotalOrToOutside="to outside"] + Expected 0 or more element(s) for xpath: Ducts Expected 0 or 1 element(s) for xpath: NumberofReturnRegisters + + Ducts are entirely within conditioned space but there is moderate leakage to the outside. Leakage to the outside is typically zero or near-zero in these situations, consider revising leakage values. Leakage will be modeled as heat lost to the ambient environment. + Ducts are entirely within conditioned space but there is moderate leakage to the outside. Leakage to the outside is typically zero or near-zero in these situations, consider revising leakage values. Leakage will be modeled as heat lost to the ambient environment. + + + + + [DuctLeakage=CFM25] + + Expected 1 element(s) for xpath: Value + Expected Value to be greater than or equal to 0 - - - Expected 1 element(s) for xpath: HydronicDistributionType - Expected HydronicDistributionType to be 'radiator' or 'baseboard' or 'radiant floor' or 'radiant ceiling' + + [DuctLeakage=Percent] + + Expected 1 element(s) for xpath: Value + Expected Value to be greater than or equal to 0 + Expected Value to be less than 1 - - - Expected 1 element(s) for xpath: HydronicAndAirDistributionType - Expected HydronicAndAirDistributionType to be 'fan coil' or 'water loop heat pump' - Expected 1 element(s) for xpath: ../../ConditionedFloorAreaServed - Expected 0 or 1 element(s) for xpath: DuctLeakageMeasurement[DuctType="supply"]/DuctLeakage[(Units="CFM25" or Units="Percent") and TotalOrToOutside="to outside"]/Value - Expected 0 or 1 element(s) for xpath: DuctLeakageMeasurement[DuctType="return"]/DuctLeakage[(Units="CFM25" or Units="Percent") and TotalOrToOutside="to outside"]/Value - Expected 0 or more element(s) for xpath: Ducts[DuctType="supply"] - Expected 0 or more element(s) for xpath: Ducts[DuctType="return"] - Expected 0 or 1 element(s) for xpath: NumberofReturnRegisters + + [HVACDistributionType=Hydronic] + + Expected 1 element(s) for xpath: HydronicDistributionType + Expected HydronicDistributionType to be 'radiator' or 'baseboard' or 'radiant floor' or 'radiant ceiling' or 'water loop' - + + [HVACDistributionType=DSE] Expected 1 element(s) for xpath: AnnualHeatingDistributionSystemEfficiency Expected 1 element(s) for xpath: AnnualCoolingDistributionSystemEfficiency - - + + [HVACDuct] + + Expected 1 element(s) for xpath: DuctType + Expected DuctType to be 'supply' or 'return' Expected 1 element(s) for xpath: DuctInsulationRValue Expected 0 or 2 element(s) for xpath: DuctSurfaceArea | DuctLocation Expected DuctLocation to be 'living space' or 'basement - conditioned' or 'basement - unconditioned' or 'crawlspace - vented' or 'crawlspace - unvented' or 'attic - vented' or 'attic - unvented' or 'garage' or 'exterior wall' or 'under slab' or 'roof deck' or 'outside' or 'other housing unit' or 'other heated space' or 'other multifamily buffer space' or 'other non-freezing space' - + + [MechanicalVentilation] Expected 1 element(s) for xpath: SystemIdentifier Expected 0 or 1 element(s) for xpath: IsSharedSystem @@ -772,36 +962,43 @@ - + + [MechanicalVentilationType=HRV] Expected 1 element(s) for xpath: SensibleRecoveryEfficiency | AdjustedSensibleRecoveryEfficiency - + + [MechanicalVentilationType=ERV] Expected 1 element(s) for xpath: TotalRecoveryEfficiency | AdjustedTotalRecoveryEfficiency Expected 1 element(s) for xpath: SensibleRecoveryEfficiency | AdjustedSensibleRecoveryEfficiency - + + [MechanicalVentilationType=CFIS] Expected 1 element(s) for xpath: AttachedToHVACDistributionSystem Expected 0 element(s) for xpath: IsSharedSystem[text()="true"] - + + [MechanicalVentilationType=Shared] Expected 1 element(s) for xpath: FractionRecirculation Expected 1 element(s) for xpath: extension/InUnitFlowRate + Expected extension/InUnitFlowRate to be less than TestedFlowRate + Expected extension/InUnitFlowRate to be less than RatedFlowRate Expected 0 or 1 element(s) for xpath: extension/PreHeating Expected 0 or 1 element(s) for xpath: extension/PreCooling - + + [MechanicalVentilationType=SharedWithPreHeating] Expected 0 element(s) for xpath: ../../FanType[text()="exhaust only"] Expected 1 element(s) for xpath: Fuel @@ -813,7 +1010,8 @@ - + + [MechanicalVentilationType=SharedWithPreCooling] Expected 0 element(s) for xpath: ../../FanType[text()="exhaust only"] Expected 1 element(s) for xpath: Fuel @@ -825,7 +1023,8 @@ - + + [LocalVentilation] Expected 1 element(s) for xpath: SystemIdentifier Expected 0 or 1 element(s) for xpath: Quantity @@ -840,7 +1039,8 @@ - + + [WholeHouseFan] Expected 1 element(s) for xpath: SystemIdentifier Expected 1 element(s) for xpath: RatedFlowRate @@ -848,7 +1048,8 @@ - + + [WaterHeatingSystem] Expected 1 element(s) for xpath: ../HotWaterDistribution Expected 1 or more element(s) for xpath: ../WaterFixture @@ -864,14 +1065,17 @@ - + + [WaterHeatingSystemType=Shared] Expected 1 element(s) for xpath: ../../../BuildingSummary/BuildingConstruction[ResidentialFacilityType[text()="single-family attached" or text()="apartment unit"]] Expected 1 element(s) for xpath: NumberofUnitsServed + Expected NumberofUnitsServed to be greater than 1 - + + [WaterHeatingSystemType=Tank] Expected 1 element(s) for xpath: FuelType Expected FuelType to be 'natural gas' or 'fuel oil' or 'fuel oil 1' or 'fuel oil 2' or 'fuel oil 4' or 'fuel oil 5/6' or 'diesel' or 'propane' or 'kerosene' or 'coal' or 'coke' or 'bituminous coal' or 'anthracite coal' or 'electricity' or 'wood' or 'wood pellets' @@ -886,18 +1090,20 @@ - + + [WaterHeatingSystemType=Tankless] Expected 1 element(s) for xpath: FuelType Expected FuelType to be 'natural gas' or 'fuel oil' or 'fuel oil 1' or 'fuel oil 2' or 'fuel oil 4' or 'fuel oil 5/6' or 'diesel' or 'propane' or 'kerosene' or 'coal' or 'coke' or 'bituminous coal' or 'anthracite coal' or 'electricity' or 'wood' or 'wood pellets' - Expected 0 or 1 element(s) for xpath: PerformanceAdjustment + Expected 0 or 1 element(s) for xpath: PerformanceAdjustment Expected 1 element(s) for xpath: UniformEnergyFactor | EnergyFactor Expected UniformEnergyFactor to be less than 1 Expected EnergyFactor to be less than 1 - + + [WaterHeatingSystemType=HeatPump] Expected 1 element(s) for xpath: FuelType[text()="electricity"] Expected 1 element(s) for xpath: TankVolume @@ -909,7 +1115,8 @@ - + + [WaterHeatingSystemType=CombiIndirect] Expected 1 element(s) for xpath: RelatedHVACSystem Expected 1 element(s) for xpath: TankVolume @@ -918,19 +1125,22 @@ - + + [WaterHeatingSystemType=CombiTanklessCoil] Expected 1 element(s) for xpath: RelatedHVACSystem - + + [Desuperheater] Expected 1 element(s) for xpath: RelatedHVACSystem - + + [HotWaterDistribution] Expected 1 element(s) for xpath: SystemIdentifier Expected 1 element(s) for xpath: SystemType/Standard | SystemType/Recirculation @@ -940,13 +1150,15 @@ - + + [HotWaterDistributionType=Standard] Expected 0 or 1 element(s) for xpath: PipingLength - + + [HotWaterDistributionType=Recirculation] Expected 1 element(s) for xpath: ControlType Expected ControlType to be 'manual demand control' or 'presence sensor demand control' or 'temperature' or 'timer' or 'no control' @@ -956,18 +1168,21 @@ - + + [HotWaterDistributionType=SharedRecirculation] Expected 1 element(s) for xpath: ../../../../../BuildingSummary/BuildingConstruction[ResidentialFacilityType[text()="single-family attached" or text()="apartment unit"]] Expected 1 element(s) for xpath: ../../SystemType/Standard Expected 1 element(s) for xpath: NumberofUnitsServed + Expected NumberofUnitsServed to be greater than 1 Expected 0 or 1 element(s) for xpath: PumpPower Expected 1 element(s) for xpath: ControlType Expected ControlType to be 'manual demand control' or 'presence sensor demand control' or 'timer' or 'no control' - + + [DrainWaterHeatRecovery] Expected 1 element(s) for xpath: FacilitiesConnected Expected 1 element(s) for xpath: EqualFlow @@ -975,7 +1190,8 @@ - + + [WaterFixture] Expected 1 element(s) for xpath: ../HotWaterDistribution Expected 1 element(s) for xpath: SystemIdentifier @@ -986,7 +1202,8 @@ - + + [SolarThermalSystem] Expected 1 element(s) for xpath: SystemIdentifier Expected 1 element(s) for xpath: SystemType @@ -995,7 +1212,8 @@ - + + [SolarThermalSystemType=Detailed] Expected 1 element(s) for xpath: CollectorLoopType Expected CollectorLoopType to be 'liquid indirect' or 'liquid direct' or 'passive thermosyphon' @@ -1010,13 +1228,15 @@ - + + [SolarThermalSystemType=Simple] Expected 0 or 1 element(s) for xpath: ConnectedTo - + + [PVSystem] Expected 1 element(s) for xpath: SystemIdentifier Expected 0 or 1 element(s) for xpath: IsSharedSystem @@ -1034,14 +1254,17 @@ - + + [PVSystemType=Shared] Expected 1 element(s) for xpath: ../../../BuildingSummary/BuildingConstruction[ResidentialFacilityType[text()="single-family attached" or text()="apartment unit"]] Expected 1 element(s) for xpath: extension/NumberofBedroomsServed + Expected extension/NumberofBedroomsServed to be greater than ../../../BuildingSummary/BuildingConstruction/NumberofBedrooms - + + [Generator] Expected 1 element(s) for xpath: SystemIdentifier Expected 0 or 1 element(s) for xpath: IsSharedSystem @@ -1051,17 +1274,21 @@ Expected AnnualConsumptionkBtu to be greater than 0 Expected 1 element(s) for xpath: AnnualOutputkWh Expected AnnualOutputkWh to be greater than 0 + Expected AnnualConsumptionkBtu to be greater than AnnualOutputkWh*3412 - + + [GeneratorType=Shared] Expected 1 element(s) for xpath: ../../../BuildingSummary/BuildingConstruction[ResidentialFacilityType[text()="single-family attached" or text()="apartment unit"]] Expected 1 element(s) for xpath: NumberofBedroomsServed + Expected NumberofBedroomsServed to be greater than ../../../../BuildingSummary/BuildingConstruction/NumberofBedrooms - + + [ClothesWasher] Expected 1 element(s) for xpath: ../../Systems/WaterHeating/HotWaterDistribution Expected 1 element(s) for xpath: SystemIdentifier @@ -1073,7 +1300,8 @@ - + + [ClothesWasherType=Detailed] Expected 1 element(s) for xpath: RatedAnnualkWh Expected 1 element(s) for xpath: LabelElectricRate @@ -1084,7 +1312,8 @@ - + + [ClothesWasherType=Shared] Expected 1 element(s) for xpath: ../../BuildingSummary/BuildingConstruction[ResidentialFacilityType[text()="single-family attached" or text()="apartment unit"]] Expected 1 or more element(s) for xpath: ../../Systems/WaterHeating/WaterHeatingSystem[IsSharedSystem="true" and number(FractionDHWLoadServed)=0] @@ -1092,7 +1321,8 @@ - + + [ClothesDryer] Expected 1 element(s) for xpath: ../ClothesWasher Expected 1 element(s) for xpath: SystemIdentifier @@ -1101,32 +1331,28 @@ Expected Location to be 'living space' or 'basement - unconditioned' or 'basement - conditioned' or 'attic - unvented' or 'attic - vented' or 'garage' or 'crawlspace - unvented' or 'crawlspace - vented' or 'other housing unit' or 'other heated space' or 'other multifamily buffer space' or 'other non-freezing space' Expected 1 element(s) for xpath: FuelType Expected FuelType to be 'natural gas' or 'fuel oil' or 'fuel oil 1' or 'fuel oil 2' or 'fuel oil 4' or 'fuel oil 5/6' or 'diesel' or 'propane' or 'kerosene' or 'coal' or 'coke' or 'bituminous coal' or 'anthracite coal' or 'electricity' or 'wood' or 'wood pellets' - Expected 0 or 1 element(s) for xpath: CombinedEnergyFactor | EnergyFactor + Expected 0 or 1 element(s) for xpath: CombinedEnergyFactor | EnergyFactor Expected 0 or 1 element(s) for xpath: extension/UsageMultiplier Expected 0 or 1 element(s) for xpath: extension/IsVented - - - Expected 1 element(s) for xpath: ControlType - Expected ControlType to be 'timer' or 'moisture' - - - - + + [ClothesDryerType=Shared] Expected 1 element(s) for xpath: ../../BuildingSummary/BuildingConstruction[ResidentialFacilityType[text()="single-family attached" or text()="apartment unit"]] - + + [ClothesDryerType=Vented] Expected 0 or 1 element(s) for xpath: extension/VentedFlowRate - + + [Dishwasher] Expected 1 element(s) for xpath: SystemIdentifier Expected 0 or 1 element(s) for xpath: IsSharedAppliance @@ -1137,7 +1363,8 @@ - + + [DishwasherType=Detailed] Expected 1 element(s) for xpath: LabelElectricRate Expected 1 element(s) for xpath: LabelGasRate @@ -1147,7 +1374,8 @@ - + + [DishwasherType=Shared] Expected 1 element(s) for xpath: ../../BuildingSummary/BuildingConstruction[ResidentialFacilityType[text()="single-family attached" or text()="apartment unit"]] Expected 1 or more element(s) for xpath: ../../Systems/WaterHeating/WaterHeatingSystem[IsSharedSystem="true" and number(FractionDHWLoadServed)=0] @@ -1155,7 +1383,8 @@ - + + [Refrigerator] Expected 1 element(s) for xpath: SystemIdentifier Expected 0 or 1 element(s) for xpath: Location @@ -1169,7 +1398,8 @@ - + + [Freezer] Expected 1 element(s) for xpath: SystemIdentifier Expected 0 or 1 element(s) for xpath: Location @@ -1182,11 +1412,14 @@ - + + [Dehumidifier] Expected 1 element(s) for xpath: SystemIdentifier Expected 1 element(s) for xpath: Type Expected Type to be 'portable' or 'whole-home' + Expected 1 element(s) for xpath: Location + Expected Location to be 'living space' Expected 1 element(s) for xpath: Capacity Expected 1 element(s) for xpath: IntegratedEnergyFactor | EnergyFactor Expected 1 element(s) for xpath: DehumidistatSetpoint @@ -1194,7 +1427,8 @@ - + + [CookingRange] Expected 1 element(s) for xpath: ../Oven Expected 1 element(s) for xpath: SystemIdentifier @@ -1210,7 +1444,8 @@ - + + [Oven] Expected 1 element(s) for xpath: ../CookingRange Expected 1 element(s) for xpath: SystemIdentifier @@ -1218,7 +1453,8 @@ - + + [Lighting] Expected 1 element(s) for xpath: LightingGroup[LightingType[LightEmittingDiode] and Location[text()="interior"]] Expected 1 element(s) for xpath: LightingGroup[LightingType[LightEmittingDiode] and Location[text()="exterior"]] @@ -1245,14 +1481,16 @@ - + + [LightingGroup] Expected 1 element(s) for xpath: SystemIdentifier Expected 1 element(s) for xpath: FractionofUnitsInLocation - + + [ExteriorHolidayLighting] Expected 0 or 1 element(s) for xpath: Load[Units="kWh/day"]/Value Expected 0 or 2 element(s) for xpath: PeriodBeginMonth | PeriodBeginDayOfMonth @@ -1262,7 +1500,8 @@ - + + [CeilingFan] Expected 1 element(s) for xpath: SystemIdentifier Expected 0 or 1 element(s) for xpath: Airflow[FanSpeed="medium"]/Efficiency @@ -1270,17 +1509,21 @@ - + + [Pool] Expected 1 element(s) for xpath: SystemIdentifier - Expected 1 element(s) for xpath: PoolPumps/PoolPump + Expected 1 element(s) for xpath: Type + Expected 0 or 1 element(s) for xpath: PoolPumps/PoolPump Expected 0 or 1 element(s) for xpath: Heater - + + [PoolPump] Expected 1 element(s) for xpath: SystemIdentifier + Expected 1 element(s) for xpath: Type Expected 0 or 1 element(s) for xpath: Load[Units="kWh/year"]/Value Expected 0 or 1 element(s) for xpath: extension/UsageMultiplier Expected 0 or 1 element(s) for xpath: extension/WeekdayScheduleFractions @@ -1289,11 +1532,12 @@ - + + [PoolHeater] Expected 1 element(s) for xpath: SystemIdentifier Expected 1 element(s) for xpath: Type - Expected Type to be 'gas fired' or 'electric resistance' or 'heat pump' + Expected Type to be 'gas fired' or 'electric resistance' or 'heat pump' Expected 0 or 1 element(s) for xpath: Load[Units="kWh/year" or Units="therm/year"]/Value Expected 0 or 1 element(s) for xpath: extension/UsageMultiplier Expected 0 or 1 element(s) for xpath: extension/WeekdayScheduleFractions @@ -1302,17 +1546,21 @@ - + + [HotTub] Expected 1 element(s) for xpath: SystemIdentifier - Expected 1 element(s) for xpath: HotTubPumps/HotTubPump + Expected 1 element(s) for xpath: Type + Expected 0 or 1 element(s) for xpath: HotTubPumps/HotTubPump Expected 0 or 1 element(s) for xpath: Heater - + + [HotTubPump] Expected 1 element(s) for xpath: SystemIdentifier + Expected 1 element(s) for xpath: Type Expected 0 or 1 element(s) for xpath: Load[Units="kWh/year"]/Value Expected 0 or 1 element(s) for xpath: extension/UsageMultiplier Expected 0 or 1 element(s) for xpath: extension/WeekdayScheduleFractions @@ -1321,11 +1569,12 @@ - + + [HotTubHeater] Expected 1 element(s) for xpath: SystemIdentifier Expected 1 element(s) for xpath: Type - Expected Type to be 'gas fired' or 'electric resistance' or 'heat pump' + Expected Type to be 'gas fired' or 'electric resistance' or 'heat pump' Expected 0 or 1 element(s) for xpath: Load[Units="kWh/year" or Units="therm/year"]/Value Expected 0 or 1 element(s) for xpath: extension/UsageMultiplier Expected 0 or 1 element(s) for xpath: extension/WeekdayScheduleFractions @@ -1334,12 +1583,16 @@ - + + [PlugLoad] Expected 1 element(s) for xpath: SystemIdentifier Expected 0 or 1 element(s) for xpath: Load[Units="kWh/year"]/Value Expected 0 or 1 element(s) for xpath: extension/FracSensible + Expected extension/FracSensible to be greater than or equal to 0 Expected 0 or 1 element(s) for xpath: extension/FracLatent + Expected extension/FracLatent to be greater than or equal to 0 + Expected sum of extension/FracSensible and extension/FracLatent to be less than or equal to 1 Expected 0 or 1 element(s) for xpath: extension/UsageMultiplier Expected 0 or 1 element(s) for xpath: extension/WeekdayScheduleFractions Expected 0 or 1 element(s) for xpath: extension/WeekendScheduleFractions @@ -1347,18 +1600,145 @@ - + + [FuelLoad] Expected 1 element(s) for xpath: SystemIdentifier Expected 0 or 1 element(s) for xpath: Load[Units="therm/year"]/Value Expected 1 element(s) for xpath: FuelType Expected FuelType to be 'natural gas' or 'fuel oil' or 'fuel oil 1' or 'fuel oil 2' or 'fuel oil 4' or 'fuel oil 5/6' or 'diesel' or 'propane' or 'kerosene' or 'coal' or 'coke' or 'bituminous coal' or 'anthracite coal' or 'wood' or 'wood pellets' Expected 0 or 1 element(s) for xpath: extension/FracSensible + Expected extension/FracSensible to be greater than or equal to 0 Expected 0 or 1 element(s) for xpath: extension/FracLatent + Expected extension/FracLatent to be greater than or equal to 0 + Expected sum of extension/FracSensible and extension/FracLatent to be less than or equal to 1 Expected 0 or 1 element(s) for xpath: extension/UsageMultiplier Expected 0 or 1 element(s) for xpath: extension/WeekdayScheduleFractions Expected 0 or 1 element(s) for xpath: extension/WeekendScheduleFractions Expected 0 or 1 element(s) for xpath: extension/MonthlyScheduleMultipliers + + + + + [AdjacentSurfaces=ConditionedSpace] + + There must be at least one ceiling/roof adjacent to conditioned space. + There must be at least one exterior wall adjacent to conditioned space. + There must be at least one floor/slab adjacent to conditioned space. + + + + + [AdjacentSurfaces=ConditionedBasement] + + There must be at least one exterior foundation wall adjacent to "basement - conditioned". + There must be at least one slab adjacent to "basement - conditioned". + + + + + [AdjacentSurfaces=UnconditionedBasement] + + There must be at least one ceiling adjacent to "basement - unconditioned". + There must be at least one exterior foundation wall adjacent to "basement - unconditioned". + There must be at least one slab adjacent to "basement - unconditioned". + + + + + [AdjacentSurfaces=VentedCrawlspace] + + There must be at least one ceiling adjacent to "crawlspace - vented". + There must be at least one exterior foundation wall adjacent to "crawlspace - vented". + There must be at least one slab adjacent to "crawlspace - vented". + + + + + [AdjacentSurfaces=UnventedCrawlspace] + + There must be at least one ceiling adjacent to "crawlspace - unvented". + There must be at least one exterior foundation wall adjacent to "crawlspace - unvented". + There must be at least one slab adjacent to "crawlspace - unvented". + + + + + [AdjacentSurfaces=Garage] + + There must be at least one roof/ceiling adjacent to "garage". + There must be at least one exterior wall/foundation wall adjacent to "garage". + There must be at least one slab adjacent to "garage". + + + + + [AdjacentSurfaces=VentedAttic] + + There must be at least one roof adjacent to "attic - vented". + There must be at least one floor adjacent to "attic - vented". + + + + + [AdjacentSurfaces=UnventedAttic] + + There must be at least one roof adjacent to "attic - unvented". + There must be at least one floor adjacent to "attic - unvented". + + + + + + + [LocationCheck=ConditionedBasement] + + A location is specified as "basement - conditioned" but no surfaces were found adjacent to this space type. + + + + + [LocationCheck=UnconditionedBasement] + + A location is specified as "basement - unconditioned" but no surfaces were found adjacent to this space type. + + + + + [LocationCheck=VentedCrawlspace] + + A location is specified as "crawlspace - vented" but no surfaces were found adjacent to this space type. + + + + + [LocationCheck=UnventedCrawlspace] + + A location is specified as "crawlspace - unvented" but no surfaces were found adjacent to this space type. + + + + + [LocationCheck=Garage] + + A location is specified as "garage" but no surfaces were found adjacent to this space type. + + + + + [LocationCheck=VentedAttic] + + A location is specified as "attic - vented" but no surfaces were found adjacent to this space type. + + + + + [LocationCheck=UnventedAttic] + + A location is specified as "attic - unvented" but no surfaces were found adjacent to this space type. + + + \ No newline at end of file diff --git a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/HPXMLDataTypes.xsd b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/HPXMLDataTypes.xsd index d1a05005..6d047280 100644 --- a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/HPXMLDataTypes.xsd +++ b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/HPXMLDataTypes.xsd @@ -2750,6 +2750,7 @@ + @@ -2765,6 +2766,7 @@ + @@ -2774,20 +2776,6 @@ - - - - - - - - - - - - - - @@ -3074,20 +3062,6 @@ - - - - - - - - - - - - - - diff --git a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/HPXMLvalidator.xml b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/HPXMLvalidator.xml index 9b2db3c7..522cbf2f 100644 --- a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/HPXMLvalidator.xml +++ b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/HPXMLvalidator.xml @@ -11,6 +11,7 @@ Expected SiteType to be 'rural' or 'suburban' or 'urban' + Expected ShieldingofHome to be 'well-shielded' or 'normal' or 'exposed' Expected Fuel to be 'electricity' or 'renewable electricity' or 'natural gas' or 'renewable natural gas' or 'fuel oil' or 'fuel oil 1' or 'fuel oil 2' or 'fuel oil 4' or 'fuel oil 5/6' or 'district steam' or 'district hot water' or 'district chilled water' or 'solar hot water' or 'propane' or 'kerosene' or 'diesel' or 'coal' or 'anthracite coal' or 'bituminous coal' or 'coke' or 'wood' or 'wood pellets' or 'combination' or 'other' @@ -33,6 +34,7 @@ Expected HousePressure to be greater than 0 + Expected id attribute for SystemIdentifier Expected UnitofMeasure to be 'CFM' or 'CFMnatural' or 'ACH' or 'ACHnatural' @@ -60,9 +62,11 @@ Expected Pitch to be greater than or equal to 0 Expected RadiantBarrierGrade to be greater than or equal to 1 Expected RadiantBarrierGrade to be less than or equal to 3 + Expected id attribute for SystemIdentifier Expected AssemblyEffectiveRValue to be greater than or equal to 0 + Expected id attribute for SystemIdentifier Expected ExteriorAdjacentTo to be 'attic' or 'attic - conditioned' or 'attic - unconditioned' or 'attic - unvented' or 'attic - vented' or 'basement' or 'basement - conditioned' or 'basement - unconditioned' or 'crawlspace' or 'crawlspace - conditioned' or 'crawlspace - unconditioned' or 'crawlspace - unvented' or 'crawlspace - vented' or 'garage' or 'garage - conditioned' or 'garage - unconditioned' or 'ground' or 'living space' or 'other' or 'other heated space' or 'other housing unit' or 'other housing unit above' or 'other housing unit below' or 'other multifamily buffer space' or 'other non-freezing space' or 'outside' or 'unconditioned space' @@ -76,9 +80,11 @@ Expected SolarAbsorptance to be less than or equal to 1 Expected Emittance to be greater than or equal to 0 Expected Emittance to be less than or equal to 1 + Expected id attribute for SystemIdentifier Expected AssemblyEffectiveRValue to be greater than or equal to 0 + Expected id attribute for SystemIdentifier Expected ExteriorAdjacentTo to be 'attic' or 'attic - conditioned' or 'attic - unconditioned' or 'attic - unvented' or 'attic - vented' or 'basement' or 'basement - conditioned' or 'basement - unconditioned' or 'crawlspace' or 'crawlspace - conditioned' or 'crawlspace - unconditioned' or 'crawlspace - unvented' or 'crawlspace - vented' or 'garage' or 'garage - conditioned' or 'garage - unconditioned' or 'ground' or 'living space' or 'other' or 'other heated space' or 'other housing unit' or 'other housing unit above' or 'other housing unit below' or 'other multifamily buffer space' or 'other non-freezing space' or 'outside' or 'unconditioned space' @@ -92,9 +98,11 @@ Expected SolarAbsorptance to be less than or equal to 1 Expected Emittance to be greater than or equal to 0 Expected Emittance to be less than or equal to 1 + Expected id attribute for SystemIdentifier Expected AssemblyEffectiveRValue to be greater than or equal to 0 + Expected id attribute for SystemIdentifier Expected ExteriorAdjacentTo to be 'attic' or 'attic - conditioned' or 'attic - unconditioned' or 'attic - unvented' or 'attic - vented' or 'basement' or 'basement - conditioned' or 'basement - unconditioned' or 'crawlspace' or 'crawlspace - conditioned' or 'crawlspace - unconditioned' or 'crawlspace - unvented' or 'crawlspace - vented' or 'garage' or 'garage - conditioned' or 'garage - unconditioned' or 'ground' or 'living space' or 'other' or 'other heated space' or 'other housing unit' or 'other housing unit above' or 'other housing unit below' or 'other multifamily buffer space' or 'other non-freezing space' or 'outside' or 'unconditioned space' @@ -105,9 +113,11 @@ Expected Azimuth to be less than 360 Expected Thickness to be greater than or equal to 0 Expected DepthBelowGrade to be greater than or equal to 0 + Expected id attribute for SystemIdentifier Expected AssemblyEffectiveRValue to be greater than or equal to 0 + Expected id attribute for SystemIdentifier Expected InstallationType to be 'cavity' or 'continuous' or 'continuous - interior' or 'continuous - exterior' @@ -117,9 +127,11 @@ Expected ExteriorAdjacentTo to be 'attic' or 'attic - conditioned' or 'attic - unconditioned' or 'attic - unvented' or 'attic - vented' or 'basement' or 'basement - conditioned' or 'basement - unconditioned' or 'crawlspace' or 'crawlspace - conditioned' or 'crawlspace - unconditioned' or 'crawlspace - unvented' or 'crawlspace - vented' or 'garage' or 'garage - conditioned' or 'garage - unconditioned' or 'ground' or 'living space' or 'other' or 'other heated space' or 'other housing unit' or 'other housing unit above' or 'other housing unit below' or 'other multifamily buffer space' or 'other non-freezing space' or 'outside' or 'unconditioned space' Expected InteriorAdjacentTo to be 'attic' or 'attic - conditioned' or 'attic - unconditioned' or 'attic - unvented' or 'attic - vented' or 'basement' or 'basement - conditioned' or 'basement - unconditioned' or 'crawlspace' or 'crawlspace - conditioned' or 'crawlspace - unconditioned' or 'crawlspace - unvented' or 'crawlspace - vented' or 'garage' or 'garage - conditioned' or 'garage - unconditioned' or 'ground' or 'living space' or 'other' or 'other heated space' or 'other housing unit' or 'other housing unit above' or 'other housing unit below' or 'other multifamily buffer space' or 'other non-freezing space' or 'outside' or 'unconditioned space' Expected Area to be greater than 0 + Expected id attribute for SystemIdentifier Expected AssemblyEffectiveRValue to be greater than or equal to 0 + Expected id attribute for SystemIdentifier Expected InteriorAdjacentTo to be 'attic' or 'attic - conditioned' or 'attic - unconditioned' or 'attic - unvented' or 'attic - vented' or 'basement' or 'basement - conditioned' or 'basement - unconditioned' or 'crawlspace' or 'crawlspace - conditioned' or 'crawlspace - unconditioned' or 'crawlspace - unvented' or 'crawlspace - vented' or 'garage' or 'garage - conditioned' or 'garage - unconditioned' or 'ground' or 'living space' or 'other' or 'other heated space' or 'other housing unit' or 'other housing unit above' or 'other housing unit below' or 'other multifamily buffer space' or 'other non-freezing space' or 'outside' or 'unconditioned space' @@ -130,6 +142,7 @@ Expected PerimeterInsulationDepth to be greater than or equal to 0 Expected UnderSlabInsulationWidth to be greater than or equal to 0 Expected DepthBelowGrade to be greater than or equal to 0 + Expected id attribute for SystemIdentifier Expected NominalRValue to be greater than or equal to 0 @@ -146,12 +159,22 @@ Expected SHGC to be less than 1 Expected FractionOperable to be greater than or equal to 0 Expected FractionOperable to be less than or equal to 1 + Expected id attribute for SystemIdentifier + Expected idref attribute for AttachedToWall + + + Expected SummerShadingCoefficient to be greater than or equal to 0 + Expected SummerShadingCoefficient to be less than or equal to 1 + Expected WinterShadingCoefficient to be greater than or equal to 0 + Expected WinterShadingCoefficient to be less than or equal to 1 + Expected id attribute for SystemIdentifier Expected SummerShadingCoefficient to be greater than or equal to 0 Expected SummerShadingCoefficient to be less than or equal to 1 Expected WinterShadingCoefficient to be greater than or equal to 0 Expected WinterShadingCoefficient to be less than or equal to 1 + Expected id attribute for SystemIdentifier Expected Depth to be greater than or equal to 0 @@ -165,23 +188,37 @@ Expected UFactor to be greater than 0 Expected SHGC to be greater than 0 Expected SHGC to be less than 1 + Expected id attribute for SystemIdentifier + Expected idref attribute for AttachedToRoof + + + Expected SummerShadingCoefficient to be greater than or equal to 0 + Expected SummerShadingCoefficient to be less than or equal to 1 + Expected WinterShadingCoefficient to be greater than or equal to 0 + Expected WinterShadingCoefficient to be less than or equal to 1 + Expected id attribute for SystemIdentifier Expected SummerShadingCoefficient to be greater than or equal to 0 Expected SummerShadingCoefficient to be less than or equal to 1 Expected WinterShadingCoefficient to be greater than or equal to 0 Expected WinterShadingCoefficient to be less than or equal to 1 + Expected id attribute for SystemIdentifier Expected Area to be greater than 0 Expected Azimuth to be greater than or equal to 0 Expected Azimuth to be less than 360 Expected RValue to be greater than or equal to 0 + Expected id attribute for SystemIdentifier + Expected idref attribute for AttachedToWall Expected HeatingSystemFuel to be 'electricity' or 'renewable electricity' or 'natural gas' or 'renewable natural gas' or 'fuel oil' or 'fuel oil 1' or 'fuel oil 2' or 'fuel oil 4' or 'fuel oil 5/6' or 'district steam' or 'district hot water' or 'district chilled water' or 'solar hot water' or 'propane' or 'kerosene' or 'diesel' or 'coal' or 'anthracite coal' or 'bituminous coal' or 'coke' or 'wood' or 'wood pellets' or 'combination' or 'other' Expected FractionHeatLoadServed to be greater than or equal to 0 Expected FractionHeatLoadServed to be less than or equal to 1 + Expected id attribute for SystemIdentifier + Expected idref attribute for DistributionSystem Expected Units to be 'HSPF' or 'COP' or 'AFUE' or 'Percent' @@ -195,6 +232,8 @@ Expected FractionCoolLoadServed to be less than or equal to 1 Expected SensibleHeatFraction to be greater than or equal to 0 Expected SensibleHeatFraction to be less than or equal to 1 + Expected id attribute for SystemIdentifier + Expected idref attribute for DistributionSystem Expected Units to be 'SEER' or 'EER' or 'COP' or 'kW/ton' @@ -211,6 +250,8 @@ Expected FractionHeatLoadServed to be less than or equal to 1 Expected FractionCoolLoadServed to be greater than or equal to 0 Expected FractionCoolLoadServed to be less than or equal to 1 + Expected id attribute for SystemIdentifier + Expected idref attribute for DistributionSystem Expected Units to be 'HSPF' or 'COP' or 'AFUE' or 'Percent' @@ -226,6 +267,11 @@ Expected ControlType to be 'programmable thermostat' or 'manual thermostat' or 'digital thermostat' or 'timer' or 'EMCS' or 'other' + Expected id attribute for SystemIdentifier + + + Expected AirDistributionType to be 'regular velocity' or 'high velocity' or 'gravity' or 'fan coil' + Expected NumberofReturnRegisters to be greater than or equal to 0 Expected DuctType to be 'supply' or 'return' @@ -240,31 +286,16 @@ Expected DuctLocation to be 'attic' or 'attic - conditioned' or 'attic - unconditioned' or 'attic - unvented' or 'attic - vented' or 'basement' or 'basement - conditioned' or 'basement - unconditioned' or 'crawlspace' or 'crawlspace - conditioned' or 'crawlspace - unconditioned' or 'crawlspace - unvented' or 'crawlspace - vented' or 'exterior wall' or 'garage' or 'garage - conditioned' or 'garage - unconditioned' or 'interstitial space' or 'living space' or 'other heated space' or 'other housing unit' or 'other multifamily buffer space' or 'other non-freezing space' or 'outside' or 'roof deck' or 'unconditioned space' or 'under slab' Expected DuctSurfaceArea to be greater than 0 - - Expected NumberofReturnRegisters to be greater than or equal to 0 - - Expected HydronicDistributionType to be 'radiator' or 'baseboard' or 'radiant floor' or 'radiant ceiling' or 'other' - - - Expected HydronicAndAirDistributionType to be 'fan coil' or 'water loop heat pump' or 'other' - Expected NumberofReturnRegisters to be greater than or equal to 0 - - - Expected DuctType to be 'supply' or 'return' - - - Expected Units to be 'CFM50' or 'CFM25' or 'CFM per Std 152' or 'Percent' - Expected TotalOrToOutside to be 'to outside' or 'total' - - - Expected DuctType to be 'supply' or 'return' - Expected DuctInsulationRValue to be greater than or equal to 0 - Expected DuctLocation to be 'attic' or 'attic - conditioned' or 'attic - unconditioned' or 'attic - unvented' or 'attic - vented' or 'basement' or 'basement - conditioned' or 'basement - unconditioned' or 'crawlspace' or 'crawlspace - conditioned' or 'crawlspace - unconditioned' or 'crawlspace - unvented' or 'crawlspace - vented' or 'exterior wall' or 'garage' or 'garage - conditioned' or 'garage - unconditioned' or 'interstitial space' or 'living space' or 'other heated space' or 'other housing unit' or 'other multifamily buffer space' or 'other non-freezing space' or 'outside' or 'roof deck' or 'unconditioned space' or 'under slab' - Expected DuctSurfaceArea to be greater than 0 + Expected HydronicDistributionType to be 'radiator' or 'baseboard' or 'radiant floor' or 'radiant ceiling' or 'water loop' or 'other' Expected ConditionedFloorAreaServed to be greater than 0 + Expected AnnualHeatingDistributionSystemEfficiency to be greater than or equal to 0 + Expected AnnualHeatingDistributionSystemEfficiency to be less than or equal to 1 + Expected AnnualCoolingDistributionSystemEfficiency to be greater than or equal to 0 + Expected AnnualCoolingDistributionSystemEfficiency to be less than or equal to 1 + Expected id attribute for SystemIdentifier Expected Quantity to be greater than 0 @@ -282,6 +313,8 @@ Expected AdjustedTotalRecoveryEfficiency to be less than or equal to 1 Expected AdjustedSensibleRecoveryEfficiency to be greater than or equal to 0 Expected AdjustedSensibleRecoveryEfficiency to be less than or equal to 1 + Expected id attribute for SystemIdentifier + Expected idref attribute for AttachedToHVACDistributionSystem Expected FuelType to be 'electricity' or 'renewable electricity' or 'natural gas' or 'renewable natural gas' or 'fuel oil' or 'fuel oil 1' or 'fuel oil 2' or 'fuel oil 4' or 'fuel oil 5/6' or 'district steam' or 'district hot water' or 'district chilled water' or 'solar hot water' or 'propane' or 'kerosene' or 'diesel' or 'coal' or 'anthracite coal' or 'bituminous coal' or 'coke' or 'wood' or 'wood pellets' or 'combination' or 'other' @@ -299,6 +332,8 @@ Expected FirstHourRating to be greater than 0 Expected RecoveryEfficiency to be less than or equal to 5 Expected RecoveryEfficiency to be greater than 0 + Expected id attribute for SystemIdentifier + Expected idref attribute for RelatedHVACSystem Expected JacketRValue to be greater than or equal to 0 @@ -322,6 +357,7 @@ Expected WaterFixtureType to be 'faucet' or 'shower head' or 'other' + Expected id attribute for SystemIdentifier Expected SystemType to be 'hot water' or 'hot water and space heating' or 'space heating' or 'hybrid system' @@ -338,6 +374,8 @@ Expected StorageVolume to be greater than 0 Expected SolarFraction to be less than or equal to 1 Expected SolarFraction to be greater than 0 + Expected id attribute for SystemIdentifier + Expected idref attribute for ConnectedTo Expected Location to be 'roof' or 'ground' or 'other' @@ -352,15 +390,17 @@ Expected InverterEfficiency to be less than or equal to 1 Expected SystemLossesFraction to be greater than or equal to 0 Expected SystemLossesFraction to be less than or equal to 1 + Expected id attribute for SystemIdentifier Expected Location to be 'basement' or 'basement - conditioned' or 'basement - unconditioned' or 'garage' or 'garage - conditioned' or 'garage - unconditioned' or 'laundry room' or 'living space' or 'other' or 'other heated space' or 'other housing unit' or 'other multifamily buffer space' or 'other non-freezing space' or 'unconditioned space' Expected RatedAnnualkWh to be greater than 0 + Expected id attribute for SystemIdentifier Expected Location to be 'basement' or 'basement - conditioned' or 'basement - unconditioned' or 'garage' or 'garage - conditioned' or 'garage - unconditioned' or 'laundry room' or 'living space' or 'other' or 'other heated space' or 'other housing unit' or 'other multifamily buffer space' or 'other non-freezing space' or 'unconditioned space' Expected FuelType to be 'electricity' or 'renewable electricity' or 'natural gas' or 'renewable natural gas' or 'fuel oil' or 'fuel oil 1' or 'fuel oil 2' or 'fuel oil 4' or 'fuel oil 5/6' or 'district steam' or 'district hot water' or 'district chilled water' or 'solar hot water' or 'propane' or 'kerosene' or 'diesel' or 'coal' or 'anthracite coal' or 'bituminous coal' or 'coke' or 'wood' or 'wood pellets' or 'combination' or 'other' - Expected ControlType to be 'timer' or 'moisture' or 'temperature' + Expected id attribute for SystemIdentifier Expected Location to be 'basement' or 'basement - conditioned' or 'basement - unconditioned' or 'garage' or 'garage - conditioned' or 'garage - unconditioned' or 'kitchen' or 'living space' or 'other' or 'other heated space' or 'other housing unit' or 'other multifamily buffer space' or 'other non-freezing space' or 'unconditioned space' @@ -368,57 +408,84 @@ Expected EnergyFactor to be less than or equal to 5 Expected EnergyFactor to be greater than 0 Expected PlaceSettingCapacity to be greater than 0 + Expected id attribute for SystemIdentifier Expected Location to be 'basement' or 'basement - conditioned' or 'basement - unconditioned' or 'garage' or 'garage - conditioned' or 'garage - unconditioned' or 'kitchen' or 'living space' or 'other' or 'other heated space' or 'other housing unit' or 'other multifamily buffer space' or 'other non-freezing space' or 'unconditioned space' Expected RatedAnnualkWh to be greater than 0 + Expected id attribute for SystemIdentifier Expected Location to be 'basement' or 'basement - conditioned' or 'basement - unconditioned' or 'garage' or 'garage - conditioned' or 'garage - unconditioned' or 'kitchen' or 'living space' or 'other' or 'other heated space' or 'other housing unit' or 'other multifamily buffer space' or 'other non-freezing space' or 'unconditioned space' Expected RatedAnnualkWh to be greater than 0 + Expected id attribute for SystemIdentifier Expected Type to be 'portable' or 'whole-home' + Expected Location to be 'attic' or 'attic - conditioned' or 'attic - unconditioned' or 'attic - unvented' or 'attic - vented' or 'basement' or 'basement - conditioned' or 'basement - unconditioned' or 'crawlspace' or 'crawlspace - conditioned' or 'crawlspace - unconditioned' or 'crawlspace - unvented' or 'crawlspace - vented' or 'garage' or 'garage - conditioned' or 'garage - unconditioned' or 'ground' or 'living space' or 'other' or 'other heated space' or 'other housing unit' or 'other housing unit above' or 'other housing unit below' or 'other multifamily buffer space' or 'other non-freezing space' or 'outside' or 'unconditioned space' Expected DehumidistatSetpoint to be greater than or equal to 0 Expected DehumidistatSetpoint to be less than or equal to 1 Expected FractionDehumidificationLoadServed to be greater than or equal to 0 Expected FractionDehumidificationLoadServed to be less than or equal to 1 + Expected id attribute for SystemIdentifier Expected Location to be 'basement' or 'basement - conditioned' or 'basement - unconditioned' or 'garage' or 'garage - conditioned' or 'garage - unconditioned' or 'kitchen' or 'living space' or 'other' or 'other heated space' or 'other housing unit' or 'other multifamily buffer space' or 'other non-freezing space' or 'unconditioned space' Expected FuelType to be 'electricity' or 'renewable electricity' or 'natural gas' or 'renewable natural gas' or 'fuel oil' or 'fuel oil 1' or 'fuel oil 2' or 'fuel oil 4' or 'fuel oil 5/6' or 'district steam' or 'district hot water' or 'district chilled water' or 'solar hot water' or 'propane' or 'kerosene' or 'diesel' or 'coal' or 'anthracite coal' or 'bituminous coal' or 'coke' or 'wood' or 'wood pellets' or 'combination' or 'other' + Expected id attribute for SystemIdentifier Expected Location to be 'interior' or 'exterior' or 'garage' or 'common area' Expected FractionofUnitsInLocation to be greater than or equal to 0 Expected FractionofUnitsInLocation to be less than or equal to 1 + Expected id attribute for SystemIdentifier Expected FanSpeed to be 'low' or 'medium' or 'high' Expected Quantity to be greater than 0 + Expected id attribute for SystemIdentifier + + + Expected Type to be 'in ground' or 'on ground' or 'above ground' or 'other' or 'unknown' or 'none' + Expected id attribute for SystemIdentifier + + + Expected Type to be 'single speed' or 'multi speed' or 'variable speed' or 'variable flow' or 'other' or 'unknown' or 'none' + Expected id attribute for SystemIdentifier Expected Units to be 'kWh/year' or 'W' Expected Type to be 'gas fired' or 'electric resistance' or 'heat pump' or 'solar' or 'other' or 'unknown' or 'none' + Expected id attribute for SystemIdentifier Expected Units to be 'kWh/year' or 'therm/year' or 'W' or 'Btuh' + + Expected Type to be 'in ground' or 'on ground' or 'above ground' or 'other' or 'unknown' or 'none' + Expected id attribute for SystemIdentifier + + + Expected Type to be 'single speed' or 'multi speed' or 'variable speed' or 'variable flow' or 'other' or 'unknown' or 'none' + Expected id attribute for SystemIdentifier + Expected Units to be 'kWh/year' or 'W' Expected Type to be 'gas fired' or 'electric resistance' or 'heat pump' or 'solar' or 'other' or 'unknown' or 'none' + Expected id attribute for SystemIdentifier Expected Units to be 'kWh/year' or 'therm/year' or 'W' or 'Btuh' Expected PlugLoadType to be 'TV plasma' or 'TV CRT' or 'TV other' or 'computer' or 'space heater' or 'water bed' or 'aquarium' or 'electric vehicle charging' or 'well pump' or 'sauna' or 'other' + Expected id attribute for SystemIdentifier Expected Units to be 'kWh/year' or 'W' @@ -426,9 +493,34 @@ Expected FuelLoadType to be 'grill' or 'lighting' or 'fireplace' or 'other' Expected FuelType to be 'electricity' or 'renewable electricity' or 'natural gas' or 'renewable natural gas' or 'fuel oil' or 'fuel oil 1' or 'fuel oil 2' or 'fuel oil 4' or 'fuel oil 5/6' or 'district steam' or 'district hot water' or 'district chilled water' or 'solar hot water' or 'propane' or 'kerosene' or 'diesel' or 'coal' or 'anthracite coal' or 'bituminous coal' or 'coke' or 'wood' or 'wood pellets' or 'combination' or 'other' + Expected id attribute for SystemIdentifier Expected Units to be 'therm/year' or 'Btuh' + + Expected id attribute for BuildingID + + + Expected id attribute for SystemIdentifier + + + Expected id attribute for SystemIdentifier + + + Expected id attribute for SystemIdentifier + + + Expected id attribute for SystemIdentifier + + + Expected id attribute for SystemIdentifier + + + Expected id attribute for SystemIdentifier + + + Expected id attribute for SystemIdentifier + \ No newline at end of file diff --git a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/airflow.rb b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/airflow.rb index 25d311e7..e8210b89 100644 --- a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/airflow.rb +++ b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/airflow.rb @@ -1,25 +1,23 @@ # frozen_string_literal: true class Airflow - def self.apply(model, runner, weather, spaces, air_infils, vent_fans, clothes_dryers, nbeds, - duct_systems, infil_volume, infil_height, open_window_area, - nv_clg_ssn_sensor, min_neighbor_distance, vented_attic, vented_crawl, - site_type, shelter_coef, has_flue_chimney, hvac_map, eri_version, - apply_ashrae140_assumptions, schedules_file) + def self.apply(model, runner, weather, spaces, hpxml, cfa, nbeds, + ncfl_ag, duct_systems, nv_clg_ssn_sensor, hvac_map, eri_version, + frac_windows_operable, apply_ashrae140_assumptions, schedules_file) # Global variables @runner = runner @spaces = spaces - @building_height = Geometry.get_max_z_of_spaces(model.getSpaces) - @infil_volume = infil_volume - @infil_height = infil_height + @infil_volume = hpxml.air_infiltration_measurements.select { |i| !i.infiltration_volume.nil? }[0].infiltration_volume + @infil_height = hpxml.inferred_infiltration_height(@infil_volume) @living_space = spaces[HPXML::LocationLivingSpace] @living_zone = @living_space.thermalZone.get @nbeds = nbeds + @ncfl_ag = ncfl_ag @eri_version = eri_version @apply_ashrae140_assumptions = apply_ashrae140_assumptions - @cfa = UnitConversions.convert(@living_space.floorArea, 'm^2', 'ft^2') + @cfa = cfa # Global sensors @@ -57,7 +55,7 @@ def self.apply(model, runner, weather, spaces, air_infils, vent_fans, clothes_dr vent_fans_kitchen = [] vent_fans_bath = [] vent_fans_whf = [] - vent_fans.each do |vent_fan| + hpxml.ventilation_fans.each do |vent_fan| if vent_fan.used_for_whole_building_ventilation vent_fans_mech << vent_fan elsif vent_fan.used_for_seasonal_cooling_load_reduction @@ -72,7 +70,7 @@ def self.apply(model, runner, weather, spaces, air_infils, vent_fans, clothes_dr end # Vented clothes dryers in conditioned space - vented_dryers = clothes_dryers.select { |cd| cd.is_vented && cd.vented_flow_rate.to_f > 0 && [HPXML::LocationLivingSpace, HPXML::LocationBasementConditioned].include?(cd.location) } + vented_dryers = hpxml.clothes_dryers.select { |cd| cd.is_vented && cd.vented_flow_rate.to_f > 0 && [HPXML::LocationLivingSpace, HPXML::LocationBasementConditioned].include?(cd.location) } # Initialization initialize_cfis(model, vent_fans_mech, hvac_map) @@ -91,14 +89,27 @@ def self.apply(model, runner, weather, spaces, air_infils, vent_fans, clothes_dr # Apply infiltration/ventilation - @wind_speed = set_wind_speed_correction(model, site_type, shelter_coef, min_neighbor_distance) - apply_natural_ventilation_and_whole_house_fan(model, weather, vent_fans_whf, open_window_area, nv_clg_ssn_sensor) - apply_infiltration_and_ventilation_fans(model, weather, vent_fans_mech, vent_fans_kitchen, vent_fans_bath, vented_dryers, - has_flue_chimney, air_infils, vented_attic, vented_crawl, hvac_map, schedules_file) - end + set_wind_speed_correction(model, hpxml.site) + window_area = hpxml.windows.map { |w| w.area }.sum(0.0) + open_window_area = window_area * frac_windows_operable * 0.5 * 0.2 # Assume A) 50% of the area of an operable window can be open, and B) 20% of openable window area is actually open + + vented_attic = nil + hpxml.attics.each do |attic| + next unless attic.attic_type == HPXML::AtticTypeVented - def self.get_default_shelter_coefficient() - return 0.5 # Table 4.2.2(1)(g) + vented_attic = attic + end + vented_crawl = nil + hpxml.foundations.each do |foundation| + next unless foundation.foundation_type == HPXML::FoundationTypeCrawlspaceVented + + vented_crawl = foundation + end + + apply_natural_ventilation_and_whole_house_fan(model, weather, hpxml.site, vent_fans_whf, open_window_area, nv_clg_ssn_sensor) + apply_infiltration_and_ventilation_fans(model, weather, hpxml.site, vent_fans_mech, vent_fans_kitchen, vent_fans_bath, vented_dryers, + hpxml.building_construction.has_flue_or_chimney, hpxml.air_infiltration_measurements, + vented_attic, vented_crawl, hvac_map, schedules_file) end def self.get_default_fraction_of_windows_operable() @@ -110,11 +121,11 @@ def self.get_default_fraction_of_windows_operable() end def self.get_default_vented_attic_sla() - return 1.0 / 300.0 # Table 4.2.2(1) - Attics + return (1.0 / 300.0).round(6) # Table 4.2.2(1) - Attics end def self.get_default_vented_crawl_sla() - return 1.0 / 150.0 # Table 4.2.2(1) - Crawlspaces + return (1.0 / 150.0).round(6) # Table 4.2.2(1) - Crawlspaces end def self.get_default_mech_vent_fan_power(vent_fan) @@ -137,60 +148,53 @@ def self.get_default_mech_vent_fan_power(vent_fan) private - def self.set_wind_speed_correction(model, site_type, shelter_coef, min_neighbor_distance) + def self.set_wind_speed_correction(model, site) + site_ap = site.additional_properties + site_map = { HPXML::SiteTypeRural => 'Country', # Flat, open country HPXML::SiteTypeSuburban => 'Suburbs', # Rough, wooded country, suburbs HPXML::SiteTypeUrban => 'City' } # Towns, city outskirts, center of large cities - model.getSite.setTerrain(site_map[site_type]) + model.getSite.setTerrain(site_map[site.site_type]) - wind_speed = WindSpeed.new - wind_speed.height = 32.8 # ft (Standard weather station height) + site_ap.height = 32.8 # ft (Standard weather station height) # Open, Unrestricted at Weather Station - wind_speed.terrain_multiplier = 1.0 - wind_speed.terrain_exponent = 0.15 - wind_speed.ashrae_terrain_thickness = 270 - wind_speed.ashrae_terrain_exponent = 0.14 - - if site_type == HPXML::SiteTypeRural - wind_speed.site_terrain_multiplier = 0.85 - wind_speed.site_terrain_exponent = 0.20 - wind_speed.ashrae_site_terrain_thickness = 270 # Flat, open country - wind_speed.ashrae_site_terrain_exponent = 0.14 # Flat, open country - elsif site_type == HPXML::SiteTypeSuburban - wind_speed.site_terrain_multiplier = 0.67 - wind_speed.site_terrain_exponent = 0.25 - wind_speed.ashrae_site_terrain_thickness = 370 # Rough, wooded country, suburbs - wind_speed.ashrae_site_terrain_exponent = 0.22 # Rough, wooded country, suburbs - elsif site_type == HPXML::SiteTypeUrban - wind_speed.site_terrain_multiplier = 0.47 - wind_speed.site_terrain_exponent = 0.35 - wind_speed.ashrae_site_terrain_thickness = 460 # Towns, city outskirts, center of large cities - wind_speed.ashrae_site_terrain_exponent = 0.33 # Towns, city outskirts, center of large cities - end - - # Local Shielding - if shelter_coef.nil? - # FIXME: Move into HPXML defaults - if min_neighbor_distance.nil? - # Typical shelter for isolated rural house - wind_speed.S_wo = 0.90 - elsif min_neighbor_distance > @building_height - # Typical shelter caused by other building across the street - wind_speed.S_wo = 0.70 - else - # Typical shelter for urban buildings where sheltering obstacles - # are less than one building height away. - wind_speed.S_wo = 0.50 - end - else - wind_speed.S_wo = Float(shelter_coef) + site_ap.terrain_multiplier = 1.0 + site_ap.terrain_exponent = 0.15 + site_ap.ashrae_terrain_thickness = 270 + site_ap.ashrae_terrain_exponent = 0.14 + + if site.site_type == HPXML::SiteTypeRural + site_ap.site_terrain_multiplier = 0.85 + site_ap.site_terrain_exponent = 0.20 + site_ap.ashrae_site_terrain_thickness = 270 # Flat, open country + site_ap.ashrae_site_terrain_exponent = 0.14 # Flat, open country + elsif site.site_type == HPXML::SiteTypeSuburban + site_ap.site_terrain_multiplier = 0.67 + site_ap.site_terrain_exponent = 0.25 + site_ap.ashrae_site_terrain_thickness = 370 # Rough, wooded country, suburbs + site_ap.ashrae_site_terrain_exponent = 0.22 # Rough, wooded country, suburbs + elsif site.site_type == HPXML::SiteTypeUrban + site_ap.site_terrain_multiplier = 0.47 + site_ap.site_terrain_exponent = 0.35 + site_ap.ashrae_site_terrain_thickness = 460 # Towns, city outskirts, center of large cities + site_ap.ashrae_site_terrain_exponent = 0.33 # Towns, city outskirts, center of large cities end # S-G Shielding Coefficients are roughly 1/3 of AIM2 Shelter Coefficients - wind_speed.shielding_coef = wind_speed.S_wo / 3.0 + site_ap.s_g_shielding_coef = site_ap.aim2_shelter_coeff / 3.0 + end - return wind_speed + def self.get_aim2_shelter_coefficient(shielding_of_home) + # Mapping based on AIM-2 Model by Walker/Wilson + # Table 2: Estimates of Shelter Coefficient S_wo for No Flue + if shielding_of_home == HPXML::ShieldingNormal + return 0.50 # Class 4: "Very heavy shielding, many large obstructions within one house height" + elsif shielding_of_home == HPXML::ShieldingExposed + return 0.90 # Class 2: "Light local shielding with few obstructions within two house heights" + elsif shielding_of_home == HPXML::ShieldingWellShielded + return 0.30 # Class 5: "Complete shielding, with large buildings immediately adjacent" + end end def self.apply_infiltration_to_unconditioned_space(model, space, ach = nil, ela = nil, c_w_SG = nil, c_s_SG = nil) @@ -218,7 +222,7 @@ def self.apply_infiltration_to_unconditioned_space(model, space, ach = nil, ela end end - def self.apply_natural_ventilation_and_whole_house_fan(model, weather, vent_fans_whf, open_window_area, nv_clg_ssn_sensor) + def self.apply_natural_ventilation_and_whole_house_fan(model, weather, site, vent_fans_whf, open_window_area, nv_clg_ssn_sensor) if @living_zone.thermostatSetpointDualSetpoint.is_initialized thermostat = @living_zone.thermostatSetpointDualSetpoint.get htg_sch = thermostat.heatingSetpointTemperatureSchedule.get @@ -310,7 +314,7 @@ def self.apply_natural_ventilation_and_whole_house_fan(model, weather, vent_fans max_flow_rate = max_rate * @infil_volume / UnitConversions.convert(1.0, 'hr', 'min') neutral_level = 0.5 hor_lk_frac = 0.0 - c_w, c_s = calc_wind_stack_coeffs(hor_lk_frac, neutral_level, @living_space, @infil_height) + c_w, c_s = calc_wind_stack_coeffs(site, hor_lk_frac, neutral_level, @living_space, @infil_height) max_oa_hr = 0.0115 # From BA HSP max_oa_rh = 0.7 # From BA HSP @@ -567,18 +571,6 @@ def self.apply_ducts(model, ducts, object) if duct.leakage_frac.nil? == duct.leakage_cfm25.nil? fail 'Ducts: Must provide either leakage fraction or cfm25, but not both.' end - if (not duct.leakage_frac.nil?) && ((duct.leakage_frac < 0) || (duct.leakage_frac > 1)) - fail 'Ducts: Leakage Fraction must be greater than or equal to 0 and less than or equal to 1.' - end - if (not duct.leakage_cfm25.nil?) && (duct.leakage_cfm25 < 0) - fail 'Ducts: Leakage CFM25 must be greater than or equal to 0.' - end - if duct.rvalue < 0 - fail 'Ducts: Insulation Nominal R-Value must be greater than or equal to 0.' - end - if duct.area < 0 - fail 'Ducts: Surface Area must be greater than or equal to 0.' - end end ducts.each do |duct| @@ -595,17 +587,6 @@ def self.apply_ducts(model, ducts, object) end end - if ducts.size > 0 - # Store info for HVAC Sizing measure - object.additionalProperties.setFeature(Constants.SizingInfoDuctExist, true) - object.additionalProperties.setFeature(Constants.SizingInfoDuctSides, ducts.map { |duct| duct.side }.join(',')) - object.additionalProperties.setFeature(Constants.SizingInfoDuctLocations, ducts.map { |duct| duct.location.to_s }.join(',')) - object.additionalProperties.setFeature(Constants.SizingInfoDuctLeakageFracs, ducts.map { |duct| duct.leakage_frac.to_f }.join(',')) - object.additionalProperties.setFeature(Constants.SizingInfoDuctLeakageCFM25s, ducts.map { |duct| duct.leakage_cfm25.to_f }.join(',')) - object.additionalProperties.setFeature(Constants.SizingInfoDuctAreas, ducts.map { |duct| duct.area.to_f }.join(',')) - object.additionalProperties.setFeature(Constants.SizingInfoDuctRvalues, ducts.map { |duct| duct.rvalue.to_f }.join(',')) - end - return if ducts.size == 0 # No ducts # get duct located zone or ambient temperature schedule objects @@ -1110,7 +1091,7 @@ def self.apply_ducts(model, ducts, object) end end - def self.apply_infiltration_to_garage(model, weather, ach50) + def self.apply_infiltration_to_garage(model, weather, site, ach50) return if @spaces[HPXML::LocationGarage].nil? space = @spaces[HPXML::LocationGarage] @@ -1122,7 +1103,7 @@ def self.apply_infiltration_to_garage(model, weather, ach50) ela = sla * area ach = get_infiltration_ACH_from_SLA(sla, 8.202, weather) cfm = ach / UnitConversions.convert(1.0, 'hr', 'min') * volume - c_w_SG, c_s_SG = calc_wind_stack_coeffs(hor_lk_frac, neutral_level, space) + c_w_SG, c_s_SG = calc_wind_stack_coeffs(site, hor_lk_frac, neutral_level, space) apply_infiltration_to_unconditioned_space(model, space, nil, ela, c_w_SG, c_s_SG) end @@ -1134,9 +1115,6 @@ def self.apply_infiltration_to_unconditioned_basement(model, weather) ach = 0.1 # Assumption cfm = ach / UnitConversions.convert(1.0, 'hr', 'min') * volume apply_infiltration_to_unconditioned_space(model, space, ach, nil, nil, nil) - - # Store info for HVAC Sizing measure - space.thermalZone.get.additionalProperties.setFeature(Constants.SizingInfoZoneInfiltrationCFM, cfm.to_f) end def self.apply_infiltration_to_vented_crawlspace(model, weather, vented_crawl) @@ -1148,9 +1126,6 @@ def self.apply_infiltration_to_vented_crawlspace(model, weather, vented_crawl) ach = get_infiltration_ACH_from_SLA(sla, 8.202, weather) cfm = ach / UnitConversions.convert(1.0, 'hr', 'min') * volume apply_infiltration_to_unconditioned_space(model, space, ach, nil, nil, nil) - - # Store info for HVAC Sizing measure - space.thermalZone.get.additionalProperties.setFeature(Constants.SizingInfoZoneInfiltrationCFM, cfm.to_f) end def self.apply_infiltration_to_unvented_crawlspace(model, weather) @@ -1162,12 +1137,9 @@ def self.apply_infiltration_to_unvented_crawlspace(model, weather) ach = get_infiltration_ACH_from_SLA(sla, 8.202, weather) cfm = ach / UnitConversions.convert(1.0, 'hr', 'min') * volume apply_infiltration_to_unconditioned_space(model, space, ach, nil, nil, nil) - - # Store info for HVAC Sizing measure - space.thermalZone.get.additionalProperties.setFeature(Constants.SizingInfoZoneInfiltrationCFM, cfm.to_f) end - def self.apply_infiltration_to_vented_attic(model, weather, vented_attic) + def self.apply_infiltration_to_vented_attic(model, weather, site, vented_attic) return if @spaces[HPXML::LocationAtticVented].nil? if not vented_attic.vented_attic_sla.nil? @@ -1190,19 +1162,16 @@ def self.apply_infiltration_to_vented_attic(model, weather, vented_attic) ach = get_infiltration_ACH_from_SLA(sla, 8.202, weather) ela = sla * vented_attic_area cfm = ach / UnitConversions.convert(1.0, 'hr', 'min') * volume - c_w_SG, c_s_SG = calc_wind_stack_coeffs(hor_lk_frac, neutral_level, space) + c_w_SG, c_s_SG = calc_wind_stack_coeffs(site, hor_lk_frac, neutral_level, space) apply_infiltration_to_unconditioned_space(model, space, nil, ela, c_w_SG, c_s_SG) elsif not vented_attic_const_ach.nil? ach = vented_attic_const_ach cfm = ach / UnitConversions.convert(1.0, 'hr', 'min') * volume apply_infiltration_to_unconditioned_space(model, space, ach, nil, nil, nil) end - - # Store info for HVAC Sizing measure - space.thermalZone.get.additionalProperties.setFeature(Constants.SizingInfoZoneInfiltrationCFM, cfm.to_f) end - def self.apply_infiltration_to_unvented_attic(model, weather) + def self.apply_infiltration_to_unvented_attic(model, weather, site) return if @spaces[HPXML::LocationAtticUnvented].nil? space = @spaces[HPXML::LocationAtticUnvented] @@ -1214,11 +1183,8 @@ def self.apply_infiltration_to_unvented_attic(model, weather) ach = get_infiltration_ACH_from_SLA(sla, 8.202, weather) ela = sla * area cfm = ach / UnitConversions.convert(1.0, 'hr', 'min') * volume - c_w_SG, c_s_SG = calc_wind_stack_coeffs(hor_lk_frac, neutral_level, space) + c_w_SG, c_s_SG = calc_wind_stack_coeffs(site, hor_lk_frac, neutral_level, space) apply_infiltration_to_unconditioned_space(model, space, nil, ela, c_w_SG, c_s_SG) - - # Store info for HVAC Sizing measure - space.thermalZone.get.additionalProperties.setFeature(Constants.SizingInfoZoneInfiltrationCFM, cfm.to_f) end def self.apply_local_ventilation(model, vent_object_array, obj_type_name) @@ -1605,8 +1571,8 @@ def self.calculate_precond_loads(model, infil_program, vent_mech_preheat, vent_m end end - def self.apply_mechanical_ventilation(model, vent_fans_mech, living_ach50, living_const_ach, weather, vent_fans_kitchen, vent_fans_bath, vented_dryers, - range_sch_sensors_map, bath_sch_sensors_map, dryer_exhaust_sch_sensors_map, has_flue_chimney, hvac_map) + def self.apply_infiltration_and_mechanical_ventilation(model, site, vent_fans_mech, living_ach50, living_const_ach, weather, vent_fans_kitchen, vent_fans_bath, vented_dryers, + range_sch_sensors_map, bath_sch_sensors_map, dryer_exhaust_sch_sensors_map, has_flue_chimney, hvac_map) # Categorize fans into different types vent_mech_preheat = vent_fans_mech.select { |vent_mech| (not vent_mech.preheating_efficiency_cop.nil?) } vent_mech_precool = vent_fans_mech.select { |vent_mech| (not vent_mech.precooling_efficiency_cop.nil?) } @@ -1641,40 +1607,10 @@ def self.apply_mechanical_ventilation(model, vent_fans_mech, living_ach50, livin exh_cfm_tot = vent_mech_exh_tot.map { |vent_mech| vent_mech.average_total_unit_flow_rate }.sum(0.0) bal_cfm_tot = vent_mech_bal_tot.map { |vent_mech| vent_mech.average_total_unit_flow_rate }.sum(0.0) erv_hrv_cfm_tot = vent_mech_erv_hrv_tot.map { |vent_mech| vent_mech.average_total_unit_flow_rate }.sum(0.0) - cfis_cfm_tot = vent_mech_cfis_tot.map { |vent_mech| vent_mech.average_total_unit_flow_rate }.sum(0.0) - - # Average preconditioned oa air cfms (only oa, recirculation will be addressed below for all shared systems) - oa_cfm_preheat = vent_mech_preheat.map { |vent_mech| vent_mech.average_oa_unit_flow_rate * vent_mech.preheating_fraction_load_served }.sum(0.0) - oa_cfm_precool = vent_mech_precool.map { |vent_mech| vent_mech.average_oa_unit_flow_rate * vent_mech.precooling_fraction_load_served }.sum(0.0) - recirc_cfm_shared = vent_mech_shared.map { |vent_mech| vent_mech.average_total_unit_flow_rate - vent_mech.average_oa_unit_flow_rate }.sum(0.0) - - # HVAC Sizing data - tot_sup_cfm = sup_cfm_tot + bal_cfm_tot + erv_hrv_cfm_tot + cfis_cfm_tot - tot_exh_cfm = exh_cfm_tot + bal_cfm_tot + erv_hrv_cfm_tot - tot_unbal_cfm = (tot_sup_cfm - tot_exh_cfm).abs - tot_bal_cfm = [tot_exh_cfm, tot_sup_cfm].min # Calculate effectivenesses for all ERV/HRV and store results in a hash hrv_erv_effectiveness_map = calc_hrv_erv_effectiveness(vent_mech_erv_hrv_tot) - # Calculate cfm weighted average effectivenesses for the combined balanced airflow - weighted_vent_mech_lat_eff = 0.0 - weighted_vent_mech_apparent_sens_eff = 0.0 - vent_mech_erv_hrv_unprecond = vent_mech_erv_hrv_tot.select { |vent_mech| vent_mech.preheating_efficiency_cop.nil? && vent_mech.precooling_efficiency_cop.nil? } - vent_mech_erv_hrv_unprecond.each do |vent_mech| - weighted_vent_mech_lat_eff += vent_mech.average_oa_unit_flow_rate / tot_bal_cfm * hrv_erv_effectiveness_map[vent_mech][:vent_mech_lat_eff] - weighted_vent_mech_apparent_sens_eff += vent_mech.average_oa_unit_flow_rate / tot_bal_cfm * hrv_erv_effectiveness_map[vent_mech][:vent_mech_apparent_sens_eff] - end - # Store info for HVAC Sizing measure - model.getBuilding.additionalProperties.setFeature(Constants.SizingInfoMechVentLatentEffectiveness, weighted_vent_mech_lat_eff) - model.getBuilding.additionalProperties.setFeature(Constants.SizingInfoMechVentApparentSensibleEffectiveness, weighted_vent_mech_apparent_sens_eff) - model.getBuilding.additionalProperties.setFeature(Constants.SizingInfoMechVentWholeHouseRateBalanced, tot_bal_cfm) - model.getBuilding.additionalProperties.setFeature(Constants.SizingInfoMechVentWholeHouseRateUnbalanced, tot_unbal_cfm) - model.getBuilding.additionalProperties.setFeature(Constants.SizingInfoMechVentWholeHouseRatePreHeated, oa_cfm_preheat) - model.getBuilding.additionalProperties.setFeature(Constants.SizingInfoMechVentWholeHouseRatePreCooled, oa_cfm_precool) - model.getBuilding.additionalProperties.setFeature(Constants.SizingInfoMechVentWholeHouseRateRecirculated, recirc_cfm_shared) - model.getBuilding.additionalProperties.setFeature(Constants.SizingInfoMechVentExist, (not vent_fans_mech.empty?)) - infil_flow = OpenStudio::Model::SpaceInfiltrationDesignFlowRate.new(model) infil_flow.setName(Constants.ObjectNameInfiltration + ' flow') infil_flow.setSchedule(model.alwaysOnDiscreteSchedule) @@ -1687,7 +1623,7 @@ def self.apply_mechanical_ventilation(model, vent_fans_mech, living_ach50, livin infil_program.setName(Constants.ObjectNameInfiltration + ' program') # Calculate infiltration without adjustment by ventilation - apply_infiltration_to_living(living_ach50, living_const_ach, infil_program, weather, has_flue_chimney) + apply_infiltration_to_living(site, living_ach50, living_const_ach, infil_program, weather, has_flue_chimney) # Common variable and load actuators across multiple mech vent calculations, create only once fan_sens_load_actuator, fan_lat_load_actuator = setup_mech_vent_vars_actuators(model: model, program: infil_program) @@ -1719,18 +1655,18 @@ def self.apply_mechanical_ventilation(model, vent_fans_mech, living_ach50, livin program_calling_manager.addProgram(infil_program) end - def self.apply_infiltration_and_ventilation_fans(model, weather, vent_fans_mech, vent_fans_kitchen, vent_fans_bath, vented_dryers, + def self.apply_infiltration_and_ventilation_fans(model, weather, site, vent_fans_mech, vent_fans_kitchen, vent_fans_bath, vented_dryers, has_flue_chimney, air_infils, vented_attic, vented_crawl, hvac_map, schedules_file) # Get living space infiltration living_ach50 = nil living_const_ach = nil air_infils.each do |air_infil| if (air_infil.unit_of_measure == HPXML::UnitsACH) && !air_infil.house_pressure.nil? - living_ach = air_infil.air_leakage - living_ach50 = calc_air_leakage_at_diff_pressure(0.65, living_ach, air_infil.house_pressure, 50.0) + living_achXX = air_infil.air_leakage + living_ach50 = calc_air_leakage_at_diff_pressure(0.65, living_achXX, air_infil.house_pressure, 50.0) elsif (air_infil.unit_of_measure == HPXML::UnitsCFM) && !air_infil.house_pressure.nil? - living_ach = air_infil.air_leakage * 60.0 / @infil_volume # Convert CFM to ACH - living_ach50 = calc_air_leakage_at_diff_pressure(0.65, living_ach, air_infil.house_pressure, 50.0) + living_achXX = air_infil.air_leakage * 60.0 / @infil_volume # Convert CFM to ACH + living_ach50 = calc_air_leakage_at_diff_pressure(0.65, living_achXX, air_infil.house_pressure, 50.0) elsif air_infil.unit_of_measure == HPXML::UnitsACHNatural if @apply_ashrae140_assumptions living_const_ach = air_infil.air_leakage @@ -1742,12 +1678,12 @@ def self.apply_infiltration_and_ventilation_fans(model, weather, vent_fans_mech, end # Infiltration for unconditioned spaces - apply_infiltration_to_garage(model, weather, living_ach50) + apply_infiltration_to_garage(model, weather, site, living_ach50) apply_infiltration_to_unconditioned_basement(model, weather) apply_infiltration_to_vented_crawlspace(model, weather, vented_crawl) apply_infiltration_to_unvented_crawlspace(model, weather) - apply_infiltration_to_vented_attic(model, weather, vented_attic) - apply_infiltration_to_unvented_attic(model, weather) + apply_infiltration_to_vented_attic(model, weather, site, vented_attic) + apply_infiltration_to_unvented_attic(model, weather, site) # Local ventilation range_sch_sensors_map = apply_local_ventilation(model, vent_fans_kitchen, Constants.ObjectNameMechanicalVentilationRangeFan) @@ -1757,11 +1693,13 @@ def self.apply_infiltration_and_ventilation_fans(model, weather, vent_fans_mech, dryer_exhaust_sch_sensors_map = apply_dryer_exhaust(model, vented_dryers, schedules_file) # Get mechanical ventilation - apply_mechanical_ventilation(model, vent_fans_mech, living_ach50, living_const_ach, weather, vent_fans_kitchen, vent_fans_bath, vented_dryers, - range_sch_sensors_map, bath_sch_sensors_map, dryer_exhaust_sch_sensors_map, has_flue_chimney, hvac_map) + apply_infiltration_and_mechanical_ventilation(model, site, vent_fans_mech, living_ach50, living_const_ach, weather, vent_fans_kitchen, vent_fans_bath, vented_dryers, + range_sch_sensors_map, bath_sch_sensors_map, dryer_exhaust_sch_sensors_map, has_flue_chimney, hvac_map) end - def self.apply_infiltration_to_living(living_ach50, living_const_ach, infil_program, weather, has_flue_chimney) + def self.apply_infiltration_to_living(site, living_ach50, living_const_ach, infil_program, weather, has_flue_chimney) + site_ap = site.additional_properties + if living_ach50.to_f > 0 # Based on "Field Validation of Algebraic Equations for Stack and # Wind Driven Air Infiltration Calculations" by Walker and Wilson (1998) @@ -1779,11 +1717,9 @@ def self.apply_infiltration_to_living(living_ach50, living_const_ach, infil_prog if has_flue_chimney y_i = 0.2 # Fraction of leakage through the flue; 0.2 is a "typical" value according to THE ALBERTA AIR INFIL1RATION MODEL, Walker and Wilson, 1990 - flue_height = @building_height + 2.0 # ft s_wflue = 1.0 # Flue Shelter Coefficient else y_i = 0.0 # Fraction of leakage through the flu - flue_height = 0.0 # ft s_wflue = 0.0 # Flue Shelter Coefficient end @@ -1804,7 +1740,6 @@ def self.apply_infiltration_to_living(living_ach50, living_const_ach, infil_prog x_i = (leakage_ceiling - leakage_floor) r_i *= (1 - y_i) x_i *= (1 - y_i) - z_f = flue_height / (@infil_height + Geometry.get_z_origin_for_zone(@living_zone)) # Calculate Stack Coefficient m_o = (x_i + (2.0 * n_i + 1.0) * y_i)**2.0 / (2 - r_i) @@ -1814,6 +1749,11 @@ def self.apply_infiltration_to_living(living_ach50, living_const_ach, infil_prog m_i = 1.0 # eq. 11 end if has_flue_chimney + if @ncfl_ag <= 0 + z_f = 1.0 + else + z_f = (@ncfl_ag + 0.5) / @ncfl_ag # Typical value is 1.5 according to THE ALBERTA AIR INFIL1RATION MODEL, Walker and Wilson, 1990, presumably for a single story home + end x_c = r_i + (2.0 * (1.0 - r_i - y_i)) / (n_i + 1.0) - 2.0 * y_i * (z_f - 1.0)**n_i # Eq. 13 f_i = n_i * y_i * (z_f - 1.0)**((3.0 * n_i - 1.0) / 3.0) * (1.0 - (3.0 * (x_c - x_i)**2.0 * r_i**(1 - n_i)) / (2.0 * (z_f + 1.0))) # Additive flue function, Eq. 12 else @@ -1843,11 +1783,11 @@ def self.apply_infiltration_to_living(living_ach50, living_const_ach, infil_prog living_ach = get_infiltration_ACH_from_SLA(living_sla, @infil_height, weather) living_cfm = living_ach / UnitConversions.convert(1.0, 'hr', 'min') * @infil_volume - infil_program.addLine("Set p_m = #{@wind_speed.ashrae_terrain_exponent}") - infil_program.addLine("Set p_s = #{@wind_speed.ashrae_site_terrain_exponent}") - infil_program.addLine("Set s_m = #{@wind_speed.ashrae_terrain_thickness}") - infil_program.addLine("Set s_s = #{@wind_speed.ashrae_site_terrain_thickness}") - infil_program.addLine("Set z_m = #{UnitConversions.convert(@wind_speed.height, 'ft', 'm')}") + infil_program.addLine("Set p_m = #{site_ap.ashrae_terrain_exponent}") + infil_program.addLine("Set p_s = #{site_ap.ashrae_site_terrain_exponent}") + infil_program.addLine("Set s_m = #{site_ap.ashrae_terrain_thickness}") + infil_program.addLine("Set s_s = #{site_ap.ashrae_site_terrain_thickness}") + infil_program.addLine("Set z_m = #{UnitConversions.convert(site_ap.height, 'ft', 'm')}") infil_program.addLine("Set z_s = #{UnitConversions.convert(@infil_height, 'ft', 'm')}") infil_program.addLine('Set f_t = (((s_m/z_m)^p_m)*((z_s/s_s)^p_s))') infil_program.addLine("Set Tdiff = #{@tin_sensor.name}-#{@tout_sensor.name}") @@ -1856,7 +1796,7 @@ def self.apply_infiltration_to_living(living_ach50, living_const_ach, infil_prog infil_program.addLine("Set Cs = #{(stack_coef * (UnitConversions.convert(1.0, 'inH2O/R', 'Pa/K')**n_i)).round(4)}") infil_program.addLine("Set Cw = #{(wind_coef * (UnitConversions.convert(1.0, 'inH2O/mph^2', 'Pa*s^2/m^2')**n_i)).round(4)}") infil_program.addLine("Set n = #{n_i}") - infil_program.addLine("Set sft = (f_t*#{(((@wind_speed.S_wo * (1.0 - y_i)) + (s_wflue * (1.5 * y_i))))})") + infil_program.addLine("Set sft = (f_t*#{(((site_ap.aim2_shelter_coeff * (1.0 - y_i)) + (s_wflue * (1.5 * y_i))))})") infil_program.addLine("Set temp1 = ((c*Cw)*((sft*#{@vwind_sensor.name})^(2*n)))^2") infil_program.addLine('Set Qinf = (((c*Cs*(dT^n))^2)+temp1)^0.5') infil_program.addLine('Set Qinf = (@Max Qinf 0)') @@ -1870,20 +1810,17 @@ def self.apply_infiltration_to_living(living_ach50, living_const_ach, infil_prog else infil_program.addLine('Set Qinf = 0') end - - # Store info for HVAC Sizing measure - @living_zone.additionalProperties.setFeature(Constants.SizingInfoZoneInfiltrationCFM, living_cfm.to_f) - @living_zone.additionalProperties.setFeature(Constants.SizingInfoZoneInfiltrationACH, living_ach.to_f) end - def self.calc_wind_stack_coeffs(hor_lk_frac, neutral_level, space, space_height = nil) + def self.calc_wind_stack_coeffs(site, hor_lk_frac, neutral_level, space, space_height = nil) + site_ap = site.additional_properties if space_height.nil? space_height = Geometry.get_height_of_spaces([space]) end coord_z = Geometry.get_z_origin_for_zone(space.thermalZone.get) - f_t_SG = @wind_speed.site_terrain_multiplier * ((space_height + coord_z) / 32.8)**@wind_speed.site_terrain_exponent / (@wind_speed.terrain_multiplier * (@wind_speed.height / 32.8)**@wind_speed.terrain_exponent) + f_t_SG = site_ap.site_terrain_multiplier * ((space_height + coord_z) / 32.8)**site_ap.site_terrain_exponent / (site_ap.terrain_multiplier * (site_ap.height / 32.8)**site_ap.terrain_exponent) f_s_SG = 2.0 / 3.0 * (1 + hor_lk_frac / 2.0) * (2.0 * neutral_level * (1.0 - neutral_level))**0.5 / (neutral_level**0.5 + (1.0 - neutral_level)**0.5) - f_w_SG = @wind_speed.shielding_coef * (1.0 - hor_lk_frac)**(1.0 / 3.0) * f_t_SG + f_w_SG = site_ap.s_g_shielding_coef * (1.0 - hor_lk_frac)**(1.0 / 3.0) * f_t_SG c_s_SG = f_s_SG**2.0 * Constants.g * space_height / (Constants.AssumedInsideTemp + 460.0) c_w_SG = f_w_SG**2.0 return c_w_SG, c_s_SG @@ -1969,9 +1906,3 @@ def initialize(side, loc_space, loc_schedule, leakage_frac, leakage_cfm25, area, end attr_accessor(:side, :loc_space, :loc_schedule, :leakage_frac, :leakage_cfm25, :area, :rvalue, :zone, :location) end - -class WindSpeed - def initialize - end - attr_accessor(:height, :terrain_multiplier, :terrain_exponent, :ashrae_terrain_thickness, :ashrae_terrain_exponent, :site_terrain_multiplier, :site_terrain_exponent, :ashrae_site_terrain_thickness, :ashrae_site_terrain_exponent, :S_wo, :shielding_coef) -end diff --git a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/constants.rb b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/constants.rb index cb7f08b0..ad4a7d02 100644 --- a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/constants.rb +++ b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/constants.rb @@ -41,34 +41,6 @@ def self.CalcTypeERIIndexAdjustmentReferenceHome return 'ERI Index Adjustment Reference Home' end - def self.BoreConfigSingle - return 'single' - end - - def self.BoreConfigLine - return 'line' - end - - def self.BoreConfigOpenRectangle - return 'open-rectangle' - end - - def self.BoreConfigRectangle - return 'rectangle' - end - - def self.BoreConfigLconfig - return 'l-config' - end - - def self.BoreConfigL2config - return 'l2-config' - end - - def self.BoreConfigUconfig - return 'u-config' - end - def self.BuildingAmericaClimateZone return 'Building America' end @@ -281,6 +253,10 @@ def self.ObjectNameMechanicalVentilationRangeFan return 'mech vent range fan' end + def self.ObjectNameMiniSplitAirConditioner + return 'mini split air conditioner' + end + def self.ObjectNameMiniSplitHeatPump return 'mini split heat pump' end @@ -369,6 +345,10 @@ def self.ObjectNameSharedPump(hvac_name) return "#{hvac_name} shared pump" end + def self.ObjectNameSkylightShade + return 'skylight shade' + end + def self.ObjectNameSolarHotWater return 'solar hot water' end @@ -405,6 +385,10 @@ def self.ObjectNameWholeHouseFan return 'whole house fan' end + def self.ObjectNameWindowShade + return 'window shade' + end + def self.ScheduleTypeLimitsFraction return 'Fractional' end @@ -416,156 +400,4 @@ def self.ScheduleTypeLimitsOnOff def self.ScheduleTypeLimitsTemperature return 'Temperature' end - - def self.SizingInfoDuctExist - return __method__.to_s - end - - def self.SizingInfoDuctSides - return __method__.to_s - end - - def self.SizingInfoDuctLocations - return __method__.to_s - end - - def self.SizingInfoDuctLeakageFracs - return __method__.to_s - end - - def self.SizingInfoDuctLeakageCFM25s - return __method__.to_s - end - - def self.SizingInfoDuctAreas - return __method__.to_s - end - - def self.SizingInfoDuctRvalues - return __method__.to_s - end - - def self.SizingInfoHVACFanWatts - return __method__.to_s - end - - def self.SizingInfoHVACFracHeatLoadServed - return __method__.to_s - end - - def self.SizingInfoHVACFracCoolLoadServed - return __method__.to_s - end - - def self.SizingInfoHVACCoolType - return __method__.to_s - end - - def self.SizingInfoHVACHeatType - return __method__.to_s - end - - def self.SizingInfoHVACPumpPower - return __method__.to_s - end - - def self.SizingInfoHVACSystemIsDucted # Only needed for optionally ducted systems - return __method__.to_s - end - - def self.SizingInfoGSHPBoreConfig - return __method__.to_s - end - - def self.SizingInfoGSHPBoreDepth - return __method__.to_s - end - - def self.SizingInfoGSHPBoreHoles - return __method__.to_s - end - - def self.SizingInfoGSHPBoreSpacing - return __method__.to_s - end - - def self.SizingInfoGSHPCoil_BF_FT_SPEC - return __method__.to_s - end - - def self.SizingInfoGSHPCoilBF - return __method__.to_s - end - - def self.SizingInfoGSHPUTubeSpacingType - return __method__.to_s - end - - def self.SizingInfoHVACCapacityRatioCooling - return __method__.to_s - end - - def self.SizingInfoHVACCapacityRatioHeating - return __method__.to_s - end - - def self.SizingInfoHVACHeatingCapacityOffset - return __method__.to_s - end - - def self.SizingInfoHVACRatedCFMperTonHeating - return __method__.to_s - end - - def self.SizingInfoHVACRatedCFMperTonCooling - return __method__.to_s - end - - def self.SizingInfoHVACSHR - return __method__.to_s - end - - def self.SizingInfoMechVentExist - return __method__.to_s - end - - def self.SizingInfoMechVentApparentSensibleEffectiveness - return __method__.to_s - end - - def self.SizingInfoMechVentLatentEffectiveness - return __method__.to_s - end - - def self.SizingInfoMechVentWholeHouseRateBalanced - return __method__.to_s - end - - def self.SizingInfoMechVentWholeHouseRateUnbalanced - return __method__.to_s - end - - def self.SizingInfoMechVentWholeHouseRatePreHeated - return __method__.to_s - end - - def self.SizingInfoMechVentWholeHouseRatePreCooled - return __method__.to_s - end - - def self.SizingInfoMechVentWholeHouseRateRecirculated - return __method__.to_s - end - - def self.SizingInfoSIPWallInsThickness - return __method__.to_s - end - - def self.SizingInfoZoneInfiltrationACH - return __method__.to_s - end - - def self.SizingInfoZoneInfiltrationCFM - return __method__.to_s - end end diff --git a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/constructions.rb b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/constructions.rb index 0c82d714..b849f7a7 100644 --- a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/constructions.rb +++ b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/constructions.rb @@ -63,12 +63,6 @@ def self.apply_wood_stud_wall(runner, model, surfaces, wall, constr_name, # Create and assign construction to surfaces constr.create_and_assign_constructions(runner, surfaces, model) - - # Store info for HVAC Sizing measure - if not wall.nil? - wall.insulation_cavity_r_value = cavity_r - wall.insulation_continuous_r_value = rigid_r - end end def self.apply_double_stud_wall(runner, model, surfaces, wall, constr_name, @@ -137,9 +131,6 @@ def self.apply_double_stud_wall(runner, model, surfaces, wall, constr_name, # Create and assign construction to surfaces constr.create_and_assign_constructions(runner, surfaces, model) - - # Store info for HVAC Sizing measure - wall.insulation_continuous_r_value = rigid_r end def self.apply_cmu_wall(runner, model, surfaces, wall, constr_name, @@ -207,10 +198,6 @@ def self.apply_cmu_wall(runner, model, surfaces, wall, constr_name, # Create and assign construction to surfaces constr.create_and_assign_constructions(runner, surfaces, model) - - # Store info for HVAC Sizing measure - wall.insulation_cavity_r_value = furring_r - wall.insulation_continuous_r_value = rigid_r end def self.apply_icf_wall(runner, model, surfaces, wall, constr_name, @@ -260,9 +247,6 @@ def self.apply_icf_wall(runner, model, surfaces, wall, constr_name, # Create and assign construction to surfaces constr.create_and_assign_constructions(runner, surfaces, model) - - # Store info for HVAC Sizing measure - wall.insulation_continuous_r_value = rigid_r end def self.apply_sip_wall(runner, model, surfaces, wall, constr_name, sip_r, @@ -378,10 +362,6 @@ def self.apply_steel_stud_wall(runner, model, surfaces, wall, constr_name, # Create and assign construction to surfaces constr.create_and_assign_constructions(runner, surfaces, model) - - # Store info for HVAC Sizing measure - wall.insulation_cavity_r_value = cavity_r - wall.insulation_continuous_r_value = rigid_r end def self.apply_generic_layered_wall(runner, model, surfaces, wall, constr_name, @@ -448,9 +428,6 @@ def self.apply_generic_layered_wall(runner, model, surfaces, wall, constr_name, # Create and assign construction to surfaces constr.create_and_assign_constructions(runner, surfaces, model) - - # Store info for HVAC Sizing measure - wall.insulation_continuous_r_value = rigid_r end def self.apply_rim_joist(runner, model, surfaces, rim_joist, constr_name, @@ -508,10 +485,6 @@ def self.apply_rim_joist(runner, model, surfaces, rim_joist, constr_name, # Create and assign construction to surfaces constr.create_and_assign_constructions(runner, surfaces, model) - - # Store info for HVAC Sizing measure - rim_joist.insulation_continuous_r_value = rigid_r - rim_joist.insulation_cavity_r_value = cavity_r end def self.apply_open_cavity_roof(runner, model, surfaces, constr_name, @@ -858,18 +831,12 @@ def self.apply_door(runner, model, subsurfaces, constr_name, ufactor, inside_fil constr.create_and_assign_constructions(runner, subsurfaces, model) end - def self.apply_window(runner, model, subsurface, constr_name, weather, - heat_sch, cool_sch, ufactor, shgc, heat_shade_mult, cool_shade_mult) - - apply_window_skylight(runner, model, 'Window', subsurface, constr_name, weather, - heat_sch, cool_sch, ufactor, shgc, heat_shade_mult, cool_shade_mult) + def self.apply_window(runner, model, subsurface, constr_name, ufactor, shgc) + apply_window_skylight(runner, model, 'Window', subsurface, constr_name, ufactor, shgc) end - def self.apply_skylight(runner, model, subsurface, constr_name, weather, - heat_sch, cool_sch, ufactor, shgc, heat_shade_mult, cool_shade_mult) - - apply_window_skylight(runner, model, 'Skylight', subsurface, constr_name, weather, - heat_sch, cool_sch, ufactor, shgc, heat_shade_mult, cool_shade_mult) + def self.apply_skylight(runner, model, subsurface, constr_name, ufactor, shgc) + apply_window_skylight(runner, model, 'Skylight', subsurface, constr_name, ufactor, shgc) end def self.apply_partition_walls(runner, model, constr_name, drywall_thick_in, frac_of_ffa, @@ -1179,63 +1146,7 @@ def self.create_footing_material(model, name) return mat end - def self.apply_window_skylight(runner, model, type, subsurface, constr_name, weather, - heat_sch, cool_sch, ufactor, shgc, heat_shade_mult, cool_shade_mult) - - # Define shade and schedule - { 'Cooling' => [cool_sch, cool_shade_mult], - 'Heating' => [heat_sch, heat_shade_mult] }.each do |mode, values| - sch, shade_mult = values - next if shade_mult >= 1.0 - - shade_name = "#{type}#{mode}Shade" - sc_name = "#{type}#{mode}ShadingControl" - - # Reuse existing Shade? - # Note: We still create a unique ShadingControl per subsurface in order to - # prevent the shading control from being used by subsurfaces in different - # zones, which is probably not a good idea. - sm = nil - model.getShades.each do |shade| - next unless (shade.solarTransmittance - shade_mult).abs < 0.0001 - next unless shade.name.to_s.start_with? shade_name - - sm = shade - break - end - - if sm.nil? - shade_abs = 0.00001 - shade_ref = 1.0 - shade_mult - shade_abs - - # Shade - sm = OpenStudio::Model::Shade.new(model) - sm.setName(shade_name) - sm.setSolarTransmittance(shade_mult) - sm.setSolarReflectance(shade_ref) - sm.setVisibleTransmittance(shade_mult) - sm.setVisibleReflectance(shade_ref) - sm.setThermalHemisphericalEmissivity(shade_abs) - sm.setThermalTransmittance(shade_mult) - sm.setThickness(0.0001) - sm.setConductivity(10000) - sm.setShadetoGlassDistance(0.001) - sm.setTopOpeningMultiplier(0) - sm.setBottomOpeningMultiplier(0) - sm.setLeftSideOpeningMultiplier(0) - sm.setRightSideOpeningMultiplier(0) - sm.setAirflowPermeability(0) - end - - # ShadingControl - sc = OpenStudio::Model::ShadingControl.new(sm) - sc.setName(sc_name) - sc.setShadingType('InteriorShade') - sc.setShadingControlType('OnIfScheduleAllows') - sc.setSchedule(sch.schedule) - subsurface.addShadingControl(sc) - end - + def self.apply_window_skylight(runner, model, type, subsurface, constr_name, ufactor, shgc) # Define materials if type == 'Skylight' # As of 2004, NFRC skylights are rated at a 20-degree slope (instead of vertical), but @@ -1257,6 +1168,395 @@ def self.apply_window_skylight(runner, model, type, subsurface, constr_name, wea # Create and assign construction to subsurfaces constr.create_and_assign_constructions(runner, [subsurface], model) end + + def self.calc_non_cavity_r(film_r, constr_set) + # Calculate R-value for all non-cavity layers + non_cavity_r = film_r + if not constr_set.exterior_material.nil? + non_cavity_r += constr_set.exterior_material.rvalue + end + if not constr_set.rigid_r.nil? + non_cavity_r += constr_set.rigid_r + end + if not constr_set.osb_thick_in.nil? + non_cavity_r += Material.Plywood(constr_set.osb_thick_in).rvalue + end + if not constr_set.drywall_thick_in.nil? + non_cavity_r += Material.GypsumWall(constr_set.drywall_thick_in).rvalue + end + return non_cavity_r + end + + def self.apply_wall_construction(runner, model, surfaces, wall, wall_id, wall_type, assembly_r, + drywall_thick_in, inside_film, outside_film, mat_ext_finish) + + film_r = inside_film.rvalue + outside_film.rvalue + if mat_ext_finish.nil? + fallback_mat_ext_finish = nil + else + fallback_mat_ext_finish = Material.ExteriorFinishMaterial(mat_ext_finish.name, mat_ext_finish.tAbs, mat_ext_finish.sAbs, 0.1) + end + + if wall_type == HPXML::WallTypeWoodStud + install_grade = 1 + cavity_filled = true + + constr_sets = [ + WoodStudConstructionSet.new(Material.Stud2x6, 0.20, 20.0, 0.5, drywall_thick_in, mat_ext_finish), # 2x6, 24" o.c. + R20 + WoodStudConstructionSet.new(Material.Stud2x6, 0.20, 10.0, 0.5, drywall_thick_in, mat_ext_finish), # 2x6, 24" o.c. + R10 + WoodStudConstructionSet.new(Material.Stud2x6, 0.20, 0.0, 0.5, drywall_thick_in, mat_ext_finish), # 2x6, 24" o.c. + WoodStudConstructionSet.new(Material.Stud2x4, 0.23, 0.0, 0.5, drywall_thick_in, mat_ext_finish), # 2x4, 16" o.c. + WoodStudConstructionSet.new(Material.Stud2x4, 0.01, 0.0, 0.0, 0.0, fallback_mat_ext_finish), # Fallback + ] + match, constr_set, cavity_r = pick_wood_stud_construction_set(assembly_r, constr_sets, inside_film, outside_film, wall_id) + + apply_wood_stud_wall(runner, model, surfaces, wall, "#{wall_id} construction", + cavity_r, install_grade, constr_set.stud.thick_in, + cavity_filled, constr_set.framing_factor, + constr_set.drywall_thick_in, constr_set.osb_thick_in, + constr_set.rigid_r, constr_set.exterior_material, + 0, inside_film, outside_film) + elsif wall_type == HPXML::WallTypeSteelStud + install_grade = 1 + cavity_filled = true + corr_factor = 0.45 + + constr_sets = [ + SteelStudConstructionSet.new(5.5, corr_factor, 0.20, 10.0, 0.5, drywall_thick_in, mat_ext_finish), # 2x6, 24" o.c. + R20 + SteelStudConstructionSet.new(5.5, corr_factor, 0.20, 10.0, 0.5, drywall_thick_in, mat_ext_finish), # 2x6, 24" o.c. + R10 + SteelStudConstructionSet.new(5.5, corr_factor, 0.20, 0.0, 0.5, drywall_thick_in, mat_ext_finish), # 2x6, 24" o.c. + SteelStudConstructionSet.new(3.5, corr_factor, 0.23, 0.0, 0.5, drywall_thick_in, mat_ext_finish), # 2x4, 16" o.c. + SteelStudConstructionSet.new(3.5, 1.0, 0.01, 0.0, 0.0, 0.0, fallback_mat_ext_finish), # Fallback + ] + match, constr_set, cavity_r = pick_steel_stud_construction_set(assembly_r, constr_sets, inside_film, outside_film, wall_id) + + apply_steel_stud_wall(runner, model, surfaces, wall, "#{wall_id} construction", + cavity_r, install_grade, constr_set.cavity_thick_in, + cavity_filled, constr_set.framing_factor, + constr_set.corr_factor, constr_set.drywall_thick_in, + constr_set.osb_thick_in, constr_set.rigid_r, + constr_set.exterior_material, inside_film, outside_film) + elsif wall_type == HPXML::WallTypeDoubleWoodStud + install_grade = 1 + is_staggered = false + + constr_sets = [ + DoubleStudConstructionSet.new(Material.Stud2x4, 0.23, 24.0, 0.0, 0.5, drywall_thick_in, mat_ext_finish), # 2x4, 24" o.c. + DoubleStudConstructionSet.new(Material.Stud2x4, 0.01, 16.0, 0.0, 0.0, 0.0, fallback_mat_ext_finish), # Fallback + ] + match, constr_set, cavity_r = pick_double_stud_construction_set(assembly_r, constr_sets, inside_film, outside_film, wall_id) + + apply_double_stud_wall(runner, model, surfaces, wall, "#{wall_id} construction", + cavity_r, install_grade, constr_set.stud.thick_in, + constr_set.stud.thick_in, constr_set.framing_factor, + constr_set.framing_spacing, is_staggered, + constr_set.drywall_thick_in, constr_set.osb_thick_in, + constr_set.rigid_r, constr_set.exterior_material, + inside_film, outside_film) + elsif wall_type == HPXML::WallTypeCMU + density = 119.0 # lb/ft^3 + furring_r = 0 + furring_cavity_depth_in = 0 # in + furring_spacing = 0 + + constr_sets = [ + CMUConstructionSet.new(8.0, 1.4, 0.08, 0.5, drywall_thick_in, mat_ext_finish), # 8" perlite-filled CMU + CMUConstructionSet.new(6.0, 5.29, 0.01, 0.0, 0.0, fallback_mat_ext_finish), # Fallback (6" hollow CMU) + ] + match, constr_set, rigid_r = pick_cmu_construction_set(assembly_r, constr_sets, inside_film, outside_film, wall_id) + + apply_cmu_wall(runner, model, surfaces, wall, "#{wall_id} construction", + constr_set.thick_in, constr_set.cond_in, density, + constr_set.framing_factor, furring_r, + furring_cavity_depth_in, furring_spacing, + constr_set.drywall_thick_in, constr_set.osb_thick_in, + rigid_r, constr_set.exterior_material, inside_film, + outside_film) + elsif wall_type == HPXML::WallTypeSIP + sheathing_thick_in = 0.44 + + constr_sets = [ + SIPConstructionSet.new(10.0, 0.16, 0.0, sheathing_thick_in, 0.5, drywall_thick_in, mat_ext_finish), # 10" SIP core + SIPConstructionSet.new(5.0, 0.16, 0.0, sheathing_thick_in, 0.5, drywall_thick_in, mat_ext_finish), # 5" SIP core + SIPConstructionSet.new(1.0, 0.01, 0.0, sheathing_thick_in, 0.0, 0.0, fallback_mat_ext_finish), # Fallback + ] + match, constr_set, cavity_r = pick_sip_construction_set(assembly_r, constr_sets, inside_film, outside_film, wall_id) + + apply_sip_wall(runner, model, surfaces, wall, "#{wall_id} construction", + cavity_r, constr_set.thick_in, constr_set.framing_factor, + constr_set.sheath_thick_in, constr_set.drywall_thick_in, + constr_set.osb_thick_in, constr_set.rigid_r, + constr_set.exterior_material, inside_film, outside_film) + elsif wall_type == HPXML::WallTypeICF + constr_sets = [ + ICFConstructionSet.new(2.0, 4.0, 0.08, 0.0, 0.5, drywall_thick_in, mat_ext_finish), # ICF w/4" concrete and 2" rigid ins layers + ICFConstructionSet.new(1.0, 1.0, 0.01, 0.0, 0.0, 0.0, fallback_mat_ext_finish), # Fallback + ] + match, constr_set, icf_r = pick_icf_construction_set(assembly_r, constr_sets, inside_film, outside_film, wall_id) + + apply_icf_wall(runner, model, surfaces, wall, "#{wall_id} construction", + icf_r, constr_set.ins_thick_in, + constr_set.concrete_thick_in, constr_set.framing_factor, + constr_set.drywall_thick_in, constr_set.osb_thick_in, + constr_set.rigid_r, constr_set.exterior_material, + inside_film, outside_film) + elsif [HPXML::WallTypeConcrete, HPXML::WallTypeBrick, HPXML::WallTypeAdobe, HPXML::WallTypeStrawBale, HPXML::WallTypeStone, HPXML::WallTypeLog].include? wall_type + constr_sets = [ + GenericConstructionSet.new(10.0, 0.5, drywall_thick_in, mat_ext_finish), # w/R-10 rigid + GenericConstructionSet.new(0.0, 0.5, drywall_thick_in, mat_ext_finish), # Standard + GenericConstructionSet.new(0.0, 0.0, 0.0, fallback_mat_ext_finish), # Fallback + ] + match, constr_set, layer_r = pick_generic_construction_set(assembly_r, constr_sets, inside_film, outside_film, wall_id) + + if wall_type == HPXML::WallTypeConcrete + thick_in = 6.0 + base_mat = BaseMaterial.Concrete + elsif wall_type == HPXML::WallTypeBrick + thick_in = 8.0 + base_mat = BaseMaterial.Brick + elsif wall_type == HPXML::WallTypeAdobe + thick_in = 10.0 + base_mat = BaseMaterial.Soil + elsif wall_type == HPXML::WallTypeStrawBale + thick_in = 23.0 + base_mat = BaseMaterial.StrawBale + elsif wall_type == HPXML::WallTypeStone + thick_in = 6.0 + base_mat = BaseMaterial.Stone + elsif wall_type == HPXML::WallTypeLog + thick_in = 6.0 + base_mat = BaseMaterial.Wood + end + thick_ins = [thick_in] + if layer_r == 0 + conds = [99] + else + conds = [thick_in / layer_r] + end + denss = [base_mat.rho] + specheats = [base_mat.cp] + + apply_generic_layered_wall(runner, model, surfaces, wall, "#{wall_id} construction", + thick_ins, conds, denss, specheats, + constr_set.drywall_thick_in, constr_set.osb_thick_in, + constr_set.rigid_r, constr_set.exterior_material, + inside_film, outside_film) + else + fail "Unexpected wall type '#{wall_type}'." + end + + check_surface_assembly_rvalue(runner, surfaces, inside_film, outside_film, assembly_r, match) + end + + def self.pick_wood_stud_construction_set(assembly_r, constr_sets, inside_film, outside_film, surface_name) + # Picks a construction set from supplied constr_sets for which a positive R-value + # can be calculated for the unknown insulation to achieve the assembly R-value. + + constr_sets.each do |constr_set| + fail 'Unexpected object.' unless constr_set.is_a? WoodStudConstructionSet + + film_r = inside_film.rvalue + outside_film.rvalue + non_cavity_r = calc_non_cavity_r(film_r, constr_set) + + # Calculate effective cavity R-value + # Assumes installation quality 1 + cavity_frac = 1.0 - constr_set.framing_factor + cavity_r = cavity_frac / (1.0 / assembly_r - constr_set.framing_factor / (constr_set.stud.rvalue + non_cavity_r)) - non_cavity_r + if cavity_r > 0 # Choose this construction set + return true, constr_set, cavity_r + end + end + + return false, constr_sets[-1], 0.0 # Pick fallback construction with minimum R-value + end + + def self.pick_steel_stud_construction_set(assembly_r, constr_sets, inside_film, outside_film, surface_name) + # Picks a construction set from supplied constr_sets for which a positive R-value + # can be calculated for the unknown insulation to achieve the assembly R-value. + + constr_sets.each do |constr_set| + fail 'Unexpected object.' unless constr_set.is_a? SteelStudConstructionSet + + film_r = inside_film.rvalue + outside_film.rvalue + non_cavity_r = calc_non_cavity_r(film_r, constr_set) + + # Calculate effective cavity R-value + # Assumes installation quality 1 + cavity_r = (assembly_r - non_cavity_r) / constr_set.corr_factor + if cavity_r > 0 # Choose this construction set + return true, constr_set, cavity_r + end + end + + return false, constr_sets[-1], 0.0 # Pick fallback construction with minimum R-value + end + + def self.pick_double_stud_construction_set(assembly_r, constr_sets, inside_film, outside_film, surface_name) + # Picks a construction set from supplied constr_sets for which a positive R-value + # can be calculated for the unknown insulation to achieve the assembly R-value. + + constr_sets.each do |constr_set| + fail 'Unexpected object.' unless constr_set.is_a? DoubleStudConstructionSet + + film_r = inside_film.rvalue + outside_film.rvalue + non_cavity_r = calc_non_cavity_r(film_r, constr_set) + + # Calculate effective cavity R-value + # Assumes installation quality 1, not staggered, gap depth == stud depth + # Solved in Wolfram Alpha: https://www.wolframalpha.com/input/?i=1%2FA+%3D+B%2F(2*C%2Bx%2BD)+%2B+E%2F(3*C%2BD)+%2B+(1-B-E)%2F(3*x%2BD) + stud_frac = 1.5 / constr_set.framing_spacing + misc_framing_factor = constr_set.framing_factor - stud_frac + cavity_frac = 1.0 - (2 * stud_frac + misc_framing_factor) + a = assembly_r + b = stud_frac + c = constr_set.stud.rvalue + d = non_cavity_r + e = misc_framing_factor + cavity_r = ((3 * c + d) * Math.sqrt(4 * a**2 * b**2 + 12 * a**2 * b * e + 4 * a**2 * b + 9 * a**2 * e**2 - 6 * a**2 * e + a**2 - 48 * a * b * c - 16 * a * b * d - 36 * a * c * e + 12 * a * c - 12 * a * d * e + 4 * a * d + 36 * c**2 + 24 * c * d + 4 * d**2) + 6 * a * b * c + 2 * a * b * d + 3 * a * c * e + 3 * a * c + 3 * a * d * e + a * d - 18 * c**2 - 18 * c * d - 4 * d**2) / (2 * (-3 * a * e + 9 * c + 3 * d)) + cavity_r = 3 * cavity_r + if cavity_r > 0 # Choose this construction set + return true, constr_set, cavity_r + end + end + + return false, constr_sets[-1], 0.0 # Pick fallback construction with minimum R-value + end + + def self.pick_sip_construction_set(assembly_r, constr_sets, inside_film, outside_film, surface_name) + # Picks a construction set from supplied constr_sets for which a positive R-value + # can be calculated for the unknown insulation to achieve the assembly R-value. + + constr_sets.each do |constr_set| + fail 'Unexpected object.' unless constr_set.is_a? SIPConstructionSet + + film_r = inside_film.rvalue + outside_film.rvalue + non_cavity_r = calc_non_cavity_r(film_r, constr_set) + non_cavity_r += Material.new(nil, constr_set.sheath_thick_in, BaseMaterial.Wood).rvalue + + # Calculate effective SIP core R-value + # Solved in Wolfram Alpha: https://www.wolframalpha.com/input/?i=1%2FA+%3D+B%2F(C%2BD)+%2B+E%2F(2*F%2BG%2FH*x%2BD)+%2B+(1-B-E)%2F(x%2BD) + spline_thick_in = 0.5 # in + ins_thick_in = constr_set.thick_in - (2.0 * spline_thick_in) # in + framing_r = Material.new(nil, constr_set.thick_in, BaseMaterial.Wood).rvalue + spline_r = Material.new(nil, spline_thick_in, BaseMaterial.Wood).rvalue + spline_frac = 4.0 / 48.0 # One 4" spline for every 48" wide panel + cavity_frac = 1.0 - (spline_frac + constr_set.framing_factor) + a = assembly_r + b = constr_set.framing_factor + c = framing_r + d = non_cavity_r + e = spline_frac + f = spline_r + g = ins_thick_in + h = constr_set.thick_in + cavity_r = (Math.sqrt((a * b * c * g - a * b * d * h - 2 * a * b * f * h + a * c * e * g - a * c * e * h - a * c * g + a * d * e * g - a * d * e * h - a * d * g + c * d * g + c * d * h + 2 * c * f * h + d**2 * g + d**2 * h + 2 * d * f * h)**2 - 4 * (-a * b * g + c * g + d * g) * (a * b * c * d * h + 2 * a * b * c * f * h - a * c * d * h + 2 * a * c * e * f * h - 2 * a * c * f * h - a * d**2 * h + 2 * a * d * e * f * h - 2 * a * d * f * h + c * d**2 * h + 2 * c * d * f * h + d**3 * h + 2 * d**2 * f * h)) - a * b * c * g + a * b * d * h + 2 * a * b * f * h - a * c * e * g + a * c * e * h + a * c * g - a * d * e * g + a * d * e * h + a * d * g - c * d * g - c * d * h - 2 * c * f * h - g * d**2 - d**2 * h - 2 * d * f * h) / (2 * (-a * b * g + c * g + d * g)) + if cavity_r > 0 # Choose this construction set + return true, constr_set, cavity_r + end + end + + return false, constr_sets[-1], 0.0 # Pick fallback construction with minimum R-value + end + + def self.pick_cmu_construction_set(assembly_r, constr_sets, inside_film, outside_film, surface_name) + # Picks a construction set from supplied constr_sets for which a positive R-value + # can be calculated for the unknown insulation to achieve the assembly R-value. + + constr_sets.each do |constr_set| + fail 'Unexpected object.' unless constr_set.is_a? CMUConstructionSet + + film_r = inside_film.rvalue + outside_film.rvalue + non_cavity_r = calc_non_cavity_r(film_r, constr_set) + + # Calculate effective other CMU R-value + # Assumes no furring strips + # Solved in Wolfram Alpha: https://www.wolframalpha.com/input/?i=1%2FA+%3D+B%2F(C%2BE%2Bx)+%2B+(1-B)%2F(D%2BE%2Bx) + a = assembly_r + b = constr_set.framing_factor + c = Material.new(nil, constr_set.thick_in, BaseMaterial.Wood).rvalue # Framing + d = Material.new(nil, constr_set.thick_in, BaseMaterial.Concrete, constr_set.cond_in).rvalue # Concrete + e = non_cavity_r + rigid_r = 0.5 * (Math.sqrt(a**2 - 4 * a * b * c + 4 * a * b * d + 2 * a * c - 2 * a * d + c**2 - 2 * c * d + d**2) + a - c - d - 2 * e) + if rigid_r > 0 # Choose this construction set + return true, constr_set, rigid_r + end + end + + return false, constr_sets[-1], 0.0 # Pick fallback construction with minimum R-value + end + + def self.pick_icf_construction_set(assembly_r, constr_sets, inside_film, outside_film, surface_name) + # Picks a construction set from supplied constr_sets for which a positive R-value + # can be calculated for the unknown insulation to achieve the assembly R-value. + + constr_sets.each do |constr_set| + fail 'Unexpected object.' unless constr_set.is_a? ICFConstructionSet + + film_r = inside_film.rvalue + outside_film.rvalue + non_cavity_r = calc_non_cavity_r(film_r, constr_set) + + # Calculate effective ICF rigid ins R-value + # Solved in Wolfram Alpha: https://www.wolframalpha.com/input/?i=1%2FA+%3D+B%2F(C%2BE)+%2B+(1-B)%2F(D%2BE%2B2*x) + a = assembly_r + b = constr_set.framing_factor + c = Material.new(nil, 2 * constr_set.ins_thick_in + constr_set.concrete_thick_in, BaseMaterial.Wood).rvalue # Framing + d = Material.new(nil, constr_set.concrete_thick_in, BaseMaterial.Concrete).rvalue # Concrete + e = non_cavity_r + icf_r = (a * b * c - a * b * d - a * c - a * e + c * d + c * e + d * e + e**2) / (2 * (a * b - c - e)) + if icf_r > 0 # Choose this construction set + return true, constr_set, icf_r + end + end + + return false, constr_sets[-1], 0.0 # Pick fallback construction with minimum R-value + end + + def self.pick_generic_construction_set(assembly_r, constr_sets, inside_film, outside_film, surface_name) + # Picks a construction set from supplied constr_sets for which a positive R-value + # can be calculated for the unknown insulation to achieve the assembly R-value. + + constr_sets.each do |constr_set| + fail 'Unexpected object.' unless constr_set.is_a? GenericConstructionSet + + film_r = inside_film.rvalue + outside_film.rvalue + non_cavity_r = calc_non_cavity_r(film_r, constr_set) + + # Calculate effective ins layer R-value + layer_r = assembly_r - non_cavity_r + if layer_r > 0 # Choose this construction set + return true, constr_set, layer_r + end + end + + return false, constr_sets[-1], 0.0 # Pick fallback construction with minimum R-value + end + + def self.check_surface_assembly_rvalue(runner, surfaces, inside_film, outside_film, assembly_r, match) + # Verify that the actual OpenStudio construction R-value matches our target assembly R-value + + film_r = 0.0 + film_r += inside_film.rvalue unless inside_film.nil? + film_r += outside_film.rvalue unless outside_film.nil? + surfaces.each do |surface| + constr_r = UnitConversions.convert(1.0 / surface.construction.get.uFactor(0.0).get, 'm^2*k/w', 'hr*ft^2*f/btu') + film_r + + if surface.adjacentFoundation.is_initialized + foundation = surface.adjacentFoundation.get + foundation.customBlocks.each do |custom_block| + ins_mat = custom_block.material.to_StandardOpaqueMaterial.get + constr_r += UnitConversions.convert(ins_mat.thickness, 'm', 'ft') / UnitConversions.convert(ins_mat.thermalConductivity, 'W/(m*K)', 'Btu/(hr*ft*R)') + end + end + + if (assembly_r - constr_r).abs > 0.1 + if match + fail "Construction R-value (#{constr_r}) does not match Assembly R-value (#{assembly_r}) for '#{surface.name}'." + else + runner.registerWarning("Assembly R-value (#{assembly_r}) for '#{surface.name}' below minimum expected value. Construction R-value increased to #{constr_r.round(2)}.") + end + end + end + end end class Construction @@ -1573,3 +1873,90 @@ def self.create_os_material(runner, model, material) return mat end end + +class WoodStudConstructionSet + def initialize(stud, framing_factor, rigid_r, osb_thick_in, drywall_thick_in, exterior_material) + @stud = stud + @framing_factor = framing_factor + @rigid_r = rigid_r + @osb_thick_in = osb_thick_in + @drywall_thick_in = drywall_thick_in + @exterior_material = exterior_material + end + attr_accessor(:stud, :framing_factor, :rigid_r, :osb_thick_in, :drywall_thick_in, :exterior_material) +end + +class SteelStudConstructionSet + def initialize(cavity_thick_in, corr_factor, framing_factor, rigid_r, osb_thick_in, drywall_thick_in, exterior_material) + @cavity_thick_in = cavity_thick_in + @corr_factor = corr_factor + @framing_factor = framing_factor + @rigid_r = rigid_r + @osb_thick_in = osb_thick_in + @drywall_thick_in = drywall_thick_in + @exterior_material = exterior_material + end + attr_accessor(:cavity_thick_in, :corr_factor, :framing_factor, :rigid_r, :osb_thick_in, :drywall_thick_in, :exterior_material) +end + +class DoubleStudConstructionSet + def initialize(stud, framing_factor, framing_spacing, rigid_r, osb_thick_in, drywall_thick_in, exterior_material) + @stud = stud + @framing_factor = framing_factor + @framing_spacing = framing_spacing + @rigid_r = rigid_r + @osb_thick_in = osb_thick_in + @drywall_thick_in = drywall_thick_in + @exterior_material = exterior_material + end + attr_accessor(:stud, :framing_factor, :framing_spacing, :rigid_r, :osb_thick_in, :drywall_thick_in, :exterior_material) +end + +class SIPConstructionSet + def initialize(thick_in, framing_factor, rigid_r, sheath_thick_in, osb_thick_in, drywall_thick_in, exterior_material) + @thick_in = thick_in + @framing_factor = framing_factor + @rigid_r = rigid_r + @sheath_thick_in = sheath_thick_in + @osb_thick_in = osb_thick_in + @drywall_thick_in = drywall_thick_in + @exterior_material = exterior_material + end + attr_accessor(:thick_in, :framing_factor, :rigid_r, :sheath_thick_in, :osb_thick_in, :drywall_thick_in, :exterior_material) +end + +class CMUConstructionSet + def initialize(thick_in, cond_in, framing_factor, osb_thick_in, drywall_thick_in, exterior_material) + @thick_in = thick_in + @cond_in = cond_in + @framing_factor = framing_factor + @osb_thick_in = osb_thick_in + @drywall_thick_in = drywall_thick_in + @exterior_material = exterior_material + @rigid_r = nil # solved for + end + attr_accessor(:thick_in, :cond_in, :framing_factor, :rigid_r, :osb_thick_in, :drywall_thick_in, :exterior_material) +end + +class ICFConstructionSet + def initialize(ins_thick_in, concrete_thick_in, framing_factor, rigid_r, osb_thick_in, drywall_thick_in, exterior_material) + @ins_thick_in = ins_thick_in + @concrete_thick_in = concrete_thick_in + @framing_factor = framing_factor + @rigid_r = rigid_r + @osb_thick_in = osb_thick_in + @drywall_thick_in = drywall_thick_in + @exterior_material = exterior_material + end + attr_accessor(:ins_thick_in, :concrete_thick_in, :framing_factor, :rigid_r, :osb_thick_in, :drywall_thick_in, :exterior_material) +end + +class GenericConstructionSet + def initialize(rigid_r, osb_thick_in, drywall_thick_in, exterior_material) + @rigid_r = rigid_r + @osb_thick_in = osb_thick_in + @drywall_thick_in = drywall_thick_in + @exterior_material = exterior_material + end + attr_accessor(:rigid_r, :osb_thick_in, :drywall_thick_in, :exterior_material) +end diff --git a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/generator.rb b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/generator.rb index 7503b249..7485ca64 100644 --- a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/generator.rb +++ b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/generator.rb @@ -9,9 +9,7 @@ def self.apply(model, nbeds, generator) annual_output_kwh = generator.annual_output_kwh else # Apportion to single dwelling unit by # bedrooms - if generator.number_of_bedrooms_served.to_f <= nbeds.to_f - fail "Shared Generator number of bedrooms served (#{generator.number_of_bedrooms_served}) must be greater than the number of bedrooms in the dwelling unit (#{nbeds})." - end + fail if generator.number_of_bedrooms_served.to_f <= nbeds.to_f # EPvalidator.xml should prevent this annual_consumption_kbtu = generator.annual_consumption_kbtu * nbeds.to_f / generator.number_of_bedrooms_served.to_f annual_output_kwh = generator.annual_output_kwh * nbeds.to_f / generator.number_of_bedrooms_served.to_f end @@ -19,9 +17,7 @@ def self.apply(model, nbeds, generator) input_w = UnitConversions.convert(annual_consumption_kbtu, 'kBtu', 'Wh') / 8760.0 output_w = UnitConversions.convert(annual_output_kwh, 'kWh', 'Wh') / 8760.0 efficiency = output_w / input_w - if efficiency > 1.0 - fail 'Generator Annual Consumption must be greater than Annual Output.' - end + fail if efficiency > 1.0 # EPvalidator.xml should prevent this curve_biquadratic_constant = create_curve_biquadratic_constant(model) curve_cubic_constant = create_curve_cubic_constant(model) diff --git a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/geometry.rb b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/geometry.rb index cf98b619..97251793 100644 --- a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/geometry.rb +++ b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/geometry.rb @@ -60,15 +60,6 @@ def self.get_height_of_spaces(spaces) return maxzs.max - minzs.min end - def self.get_max_z_of_spaces(spaces) - maxzs = [] - spaces.each do |space| - zvalues = getSurfaceZValues(space.surfaces) - maxzs << zvalues.max + UnitConversions.convert(space.zOrigin, 'm', 'ft') - end - return maxzs.max - end - # Return an array of z values for surfaces passed in. The values will be relative to the parent origin. This was intended for spaces. def self.getSurfaceZValues(surfaceArray) zValueArray = [] @@ -137,8 +128,16 @@ def self.zone_is_of_type(zone, space_type) end end - def self.process_occupants(model, num_occ, occ_gain, sens_frac, lat_frac, weekday_sch, weekend_sch, monthly_sch, - cfa, nbeds, space, schedules_file) + def self.process_occupants(model, num_occ, cfa, space, schedules_file) + occ_gain, hrs_per_day, sens_frac, lat_frac = Geometry.get_occupancy_default_values() + weekday_sch = Schedule.OccupantsWeekdayFractions + weekday_sch_sum = weekday_sch.split(',').map(&:to_f).sum(0.0) + if (weekday_sch_sum - hrs_per_day).abs > 0.1 + fail 'Occupancy schedule inconsistent with hrs_per_day.' + end + + weekend_sch = Schedule.OccupantsWeekendFractions + monthly_sch = Schedule.OccupantsMonthlyMultipliers # Error checking if (sens_frac < 0) || (sens_frac > 1) @@ -208,4 +207,17 @@ def self.get_occupancy_default_values() lat_frac = lat_gains / tot_gains return heat_gain, hrs_per_day, sens_frac, lat_frac end + + def self.tear_down_model(model, runner) + # Tear down the existing model if it exists + has_existing_objects = (model.getThermalZones.size > 0) + handles = OpenStudio::UUIDVector.new + model.objects.each do |obj| + handles << obj.handle + end + model.removeObjects(handles) + if has_existing_objects + runner.registerWarning('The model contains existing objects and is being reset.') + end + end end diff --git a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/hotwater_appliances.rb b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/hotwater_appliances.rb index 2de44ab9..cd3b53e6 100644 --- a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/hotwater_appliances.rb +++ b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/hotwater_appliances.rb @@ -1,28 +1,31 @@ # frozen_string_literal: true class HotWaterAndAppliances - def self.apply(model, runner, weather, living_space, - cfa, nbeds, ncfl, has_uncond_bsmnt, clothes_washers, - clothes_dryers, dishwashers, refrigerators, - freezers, cooking_ranges, ovens, water_heating, - water_heating_systems, hot_water_distribution, water_fixtures, + def self.apply(model, runner, hpxml, weather, spaces, hot_water_distribution, solar_thermal_system, eri_version, dhw_map, schedules_file) - # Get appliances - if not clothes_washers.empty? - clothes_washer = clothes_washers[0] + cfa = hpxml.building_construction.conditioned_floor_area + nbeds = hpxml.building_construction.number_of_bedrooms + ncfl = hpxml.building_construction.number_of_conditioned_floors + has_uncond_bsmnt = hpxml.has_space_type(HPXML::LocationBasementUnconditioned) + fixtures_usage_multiplier = hpxml.water_heating.water_fixtures_usage_multiplier + living_space = spaces[HPXML::LocationLivingSpace] + + # Get appliances, etc. + if not hpxml.clothes_washers.empty? + clothes_washer = hpxml.clothes_washers[0] end - if not clothes_dryers.empty? - clothes_dryer = clothes_dryers[0] + if not hpxml.clothes_dryers.empty? + clothes_dryer = hpxml.clothes_dryers[0] end - if not dishwashers.empty? - dishwasher = dishwashers[0] + if not hpxml.dishwashers.empty? + dishwasher = hpxml.dishwashers[0] end - if not cooking_ranges.empty? - cooking_range = cooking_ranges[0] + if not hpxml.cooking_ranges.empty? + cooking_range = hpxml.cooking_ranges[0] end - if not ovens.empty? - oven = ovens[0] + if not hpxml.ovens.empty? + oven = hpxml.ovens[0] end # For each water heater (plant loop): @@ -106,7 +109,7 @@ def self.apply(model, runner, weather, living_space, end # Refrigerator(s) energy - refrigerators.each do |refrigerator| + hpxml.refrigerators.each do |refrigerator| rf_annual_kwh, rf_frac_sens, rf_frac_lat = calc_refrigerator_or_freezer_energy(refrigerator, refrigerator.additional_properties.space.nil?) if not schedules_file.nil? @@ -127,7 +130,7 @@ def self.apply(model, runner, weather, living_space, end # Freezer(s) energy - freezers.each do |freezer| + hpxml.freezers.each do |freezer| fz_annual_kwh, fz_frac_sens, fz_frac_lat = calc_refrigerator_or_freezer_energy(freezer, freezer.additional_properties.space.nil?) if not schedules_file.nil? @@ -173,7 +176,7 @@ def self.apply(model, runner, weather, living_space, if not hot_water_distribution.nil? fixtures_all_low_flow = true - water_fixtures.each do |water_fixture| + hpxml.water_fixtures.each do |water_fixture| next unless [HPXML::WaterFixtureTypeShowerhead, HPXML::WaterFixtureTypeFaucet].include? water_fixture.water_fixture_type fixtures_all_low_flow = false if not water_fixture.low_flow @@ -182,7 +185,7 @@ def self.apply(model, runner, weather, living_space, # Calculate mixed water fractions t_mix = 105.0 # F, Temperature of mixed water at fixtures avg_setpoint_temp = 0.0 # WH Setpoint: Weighted average by fraction DHW load served - water_heating_systems.each do |water_heating_system| + hpxml.water_heating_systems.each do |water_heating_system| avg_setpoint_temp += water_heating_system.temperature * water_heating_system.fraction_dhw_load_served end daily_wh_inlet_temperatures = calc_water_heater_daily_inlet_temperatures(weather, nbeds, hot_water_distribution, fixtures_all_low_flow) @@ -210,14 +213,14 @@ def self.apply(model, runner, weather, living_space, end end - water_heating_systems.each do |water_heating_system| + hpxml.water_heating_systems.each do |water_heating_system| non_solar_fraction = 1.0 - Waterheater.get_water_heater_solar_fraction(water_heating_system, solar_thermal_system) gpd_frac = water_heating_system.fraction_dhw_load_served # Fixtures fraction if gpd_frac > 0 - fx_gpd = get_fixtures_gpd(eri_version, nbeds, fixtures_all_low_flow, daily_mw_fractions, water_heating.water_fixtures_usage_multiplier) - w_gpd = get_dist_waste_gpd(eri_version, nbeds, has_uncond_bsmnt, cfa, ncfl, hot_water_distribution, fixtures_all_low_flow, water_heating.water_fixtures_usage_multiplier) + fx_gpd = get_fixtures_gpd(eri_version, nbeds, fixtures_all_low_flow, daily_mw_fractions, fixtures_usage_multiplier) + w_gpd = get_dist_waste_gpd(eri_version, nbeds, has_uncond_bsmnt, cfa, ncfl, hot_water_distribution, fixtures_all_low_flow, fixtures_usage_multiplier) if not schedules_file.nil? fx_peak_flow = schedules_file.calc_peak_flow_from_daily_gpm(col_name: 'fixtures', daily_water: fx_gpd) @@ -435,8 +438,7 @@ def self.get_freezer_default_values def self.get_clothes_dryer_default_values(eri_version, fuel_type) if Constants.ERIVersions.index(eri_version) >= Constants.ERIVersions.index('2019A') - return { combined_energy_factor: 3.01, - control_type: HPXML::ClothesDryerControlTypeTimer } + return { combined_energy_factor: 3.01 } else if fuel_type == HPXML::FuelTypeElectricity return { combined_energy_factor: 2.62, diff --git a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/hpxml.rb b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/hpxml.rb index e9676dbd..d483c88d 100644 --- a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/hpxml.rb +++ b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/hpxml.rb @@ -43,6 +43,7 @@ ''' require_relative 'version' +require 'ostruct' # FUTURE: Remove all idref attributes, make object attributes instead # E.g., in class Window, :wall_idref => :wall @@ -51,20 +52,23 @@ class HPXML < Object HPXML_ATTRS = [:header, :site, :neighbor_buildings, :building_occupancy, :building_construction, :climate_and_risk_zones, :air_infiltration_measurements, :attics, :foundations, :roofs, :rim_joists, :walls, :foundation_walls, :frame_floors, :slabs, :windows, - :skylights, :doors, :heating_systems, :cooling_systems, :heat_pumps, :hvac_controls, - :hvac_distributions, :ventilation_fans, :water_heating_systems, :hot_water_distributions, - :water_fixtures, :water_heating, :solar_thermal_systems, :pv_systems, :generators, - :clothes_washers, :clothes_dryers, :dishwashers, :refrigerators, :freezers, :dehumidifiers, - :cooking_ranges, :ovens, :lighting_groups, :lighting, :ceiling_fans, :pools, :hot_tubs, - :plug_loads, :fuel_loads] + :skylights, :doors, :heating_systems, :cooling_systems, :heat_pumps, :hvac_plant, + :hvac_controls, :hvac_distributions, :ventilation_fans, :water_heating_systems, + :hot_water_distributions, :water_fixtures, :water_heating, :solar_thermal_systems, + :pv_systems, :generators, :clothes_washers, :clothes_dryers, :dishwashers, :refrigerators, + :freezers, :dehumidifiers, :cooking_ranges, :ovens, :lighting_groups, :lighting, + :ceiling_fans, :pools, :hot_tubs, :plug_loads, :fuel_loads] attr_reader(*HPXML_ATTRS, :doc, :errors, :warnings) # Constants + # FUTURE: Move some of these to within child classes (e.g., HPXML::Attic class) + AirTypeFanCoil = 'fan coil' AtticTypeCathedral = 'CathedralCeiling' AtticTypeConditioned = 'ConditionedAttic' AtticTypeFlatRoof = 'FlatRoof' AtticTypeUnvented = 'UnventedAttic' AtticTypeVented = 'VentedAttic' + CertificationEnergyStar = 'Energy Star' ClothesDryerControlTypeMoisture = 'moisture' ClothesDryerControlTypeTimer = 'timer' ColorDark = 'dark' @@ -89,6 +93,7 @@ class HPXML < Object DuctTypeSupply = 'supply' DWHRFacilitiesConnectedAll = 'all' DWHRFacilitiesConnectedOne = 'one' + ExteriorShadingTypeSolarScreens = 'solar screens' FoundationTypeAmbient = 'Ambient' FoundationTypeBasementConditioned = 'ConditionedBasement' FoundationTypeBasementUnconditioned = 'UnconditionedBasement' @@ -127,7 +132,6 @@ class HPXML < Object HVACDistributionTypeAir = 'AirDistribution' HVACDistributionTypeDSE = 'DSE' HVACDistributionTypeHydronic = 'HydronicDistribution' - HVACDistributionTypeHydronicAndAir = 'HydronicAndAirDistribution' HVACTypeBoiler = 'Boiler' HVACTypeCentralAirConditioner = 'central air conditioner' HVACTypeChiller = 'chiller' @@ -147,12 +151,11 @@ class HPXML < Object HVACTypeRoomAirConditioner = 'room air conditioner' HVACTypeStove = 'Stove' HVACTypeWallFurnace = 'WallFurnace' - HydronicAndAirTypeFanCoil = 'fan coil' - HydronicAndAirTypeWaterLoopHeatPump = 'water loop heat pump' HydronicTypeBaseboard = 'baseboard' HydronicTypeRadiantCeiling = 'radiant ceiling' HydronicTypeRadiantFloor = 'radiant floor' HydronicTypeRadiator = 'radiator' + HydronicTypeWaterLoop = 'water loop' LeakinessTight = 'tight' LeakinessAverage = 'average' LightingTypeCFL = 'CompactFluorescent' @@ -217,6 +220,9 @@ class HPXML < Object RoofTypeMetal = 'metal surfacing' RoofTypePlasticRubber = 'plastic/rubber/synthetic sheeting' RoofTypeWoodShingles = 'wood shingles or shakes' + ShieldingExposed = 'exposed' + ShieldingNormal = 'normal' + ShieldingWellShielded = 'well-shielded' SidingTypeAluminum = 'aluminum siding' SidingTypeBrick = 'brick veneer' SidingTypeFiberCement = 'fiber cement siding' @@ -233,6 +239,8 @@ class HPXML < Object SolarThermalTypeEvacuatedTube = 'evacuated tube' SolarThermalTypeICS = 'integrated collector storage' SolarThermalTypeSingleGlazing = 'single glazing black' + TypeNone = 'none' + TypeUnknown = 'unknown' UnitsACH = 'ACH' UnitsACHNatural = 'ACHnatural' UnitsAFUE = 'AFUE' @@ -267,6 +275,10 @@ class HPXML < Object WaterHeaterTypeTankless = 'instantaneous water heater' WaterHeaterTypeStorage = 'storage water heater' WindowFrameTypeAluminum = 'Aluminum' + WindowFrameTypeComposite = 'Composite' + WindowFrameTypeFiberglass = 'Fiberglass' + WindowFrameTypeMetal = 'Metal' + WindowFrameTypeVinyl = 'Vinyl' WindowFrameTypeWood = 'Wood' WindowGasAir = 'air' WindowGasArgon = 'argon' @@ -277,7 +289,7 @@ class HPXML < Object WindowLayersSinglePane = 'single-pane' WindowLayersTriplePane = 'triple-pane' - def initialize(hpxml_path: nil, schematron_validators: [], collapse_enclosure: true) + def initialize(hpxml_path: nil, schematron_validators: [], collapse_enclosure: true, building_id: nil) @doc = nil @hpxml_path = hpxml_path @errors = [] @@ -294,6 +306,25 @@ def initialize(hpxml_path: nil, schematron_validators: [], collapse_enclosure: t # Validate against Schematron docs @errors, @warnings = validate_against_schematron(schematron_validators: schematron_validators) return unless @errors.empty? + + # Handle multiple buildings + if XMLHelper.get_elements(hpxml, 'Building').size > 1 + if building_id.nil? + @errors << 'Multiple Building elements defined in HPXML file; Building ID argument must be provided.' + return unless @errors.empty? + end + + # Discard all Building elements except the one of interest + XMLHelper.get_elements(hpxml, 'Building').reverse_each do |building| + next if XMLHelper.get_attribute_value(XMLHelper.get_element(building, 'BuildingID'), 'id') == building_id + + building.remove + end + if XMLHelper.get_elements(hpxml, 'Building').size == 0 + @errors << "Could not find Building element with ID '#{building_id}'." + return unless @errors.empty? + end + end end # Create/populate child objects @@ -516,6 +547,7 @@ def to_oga() @heating_systems.to_oga(@doc) @cooling_systems.to_oga(@doc) @heat_pumps.to_oga(@doc) + @hvac_plant.to_oga(@doc) @hvac_controls.to_oga(@doc) @hvac_distributions.to_oga(@doc) @ventilation_fans.to_oga(@doc) @@ -566,6 +598,7 @@ def from_oga(hpxml) @heating_systems = HeatingSystems.new(self, hpxml) @cooling_systems = CoolingSystems.new(self, hpxml) @heat_pumps = HeatPumps.new(self, hpxml) + @hvac_plant = HVACPlant.new(self, hpxml) @hvac_controls = HVACControls.new(self, hpxml) @hvac_distributions = HVACDistributions.new(self, hpxml) @ventilation_fans = VentilationFans.new(self, hpxml) @@ -856,20 +889,20 @@ def from_oga(hpxml) @software_program_version = XMLHelper.get_value(hpxml, 'SoftwareInfo/SoftwareProgramVersion', :string) @eri_calculation_version = XMLHelper.get_value(hpxml, 'SoftwareInfo/extension/ERICalculation/Version', :string) @eri_design = XMLHelper.get_value(hpxml, 'SoftwareInfo/extension/ERICalculation/Design', :string) - @timestep, @timestep_isdefaulted = XMLHelper.get_value_and_defaulted(hpxml, 'SoftwareInfo/extension/SimulationControl/Timestep', :integer) - @sim_begin_month, @sim_begin_month_isdefaulted = XMLHelper.get_value_and_defaulted(hpxml, 'SoftwareInfo/extension/SimulationControl/BeginMonth', :integer) - @sim_begin_day, @sim_begin_day_isdefaulted = XMLHelper.get_value_and_defaulted(hpxml, 'SoftwareInfo/extension/SimulationControl/BeginDayOfMonth', :integer) - @sim_end_month, @sim_end_month_isdefaulted = XMLHelper.get_value_and_defaulted(hpxml, 'SoftwareInfo/extension/SimulationControl/EndMonth', :integer) - @sim_end_day, @sim_end_day_isdefaulted = XMLHelper.get_value_and_defaulted(hpxml, 'SoftwareInfo/extension/SimulationControl/EndDayOfMonth', :integer) - @sim_calendar_year, @sim_calendar_year_isdefaulted = XMLHelper.get_value_and_defaulted(hpxml, 'SoftwareInfo/extension/SimulationControl/CalendarYear', :integer) - @dst_enabled, @dst_enabled_isdefaulted = XMLHelper.get_value_and_defaulted(hpxml, 'SoftwareInfo/extension/SimulationControl/DaylightSaving/Enabled', :boolean) - @dst_begin_month, @dst_begin_month_isdefaulted = XMLHelper.get_value_and_defaulted(hpxml, 'SoftwareInfo/extension/SimulationControl/DaylightSaving/BeginMonth', :integer) - @dst_begin_day, @dst_begin_day_isdefaulted = XMLHelper.get_value_and_defaulted(hpxml, 'SoftwareInfo/extension/SimulationControl/DaylightSaving/BeginDayOfMonth', :integer) - @dst_end_month, @dst_end_month_isdefaulted = XMLHelper.get_value_and_defaulted(hpxml, 'SoftwareInfo/extension/SimulationControl/DaylightSaving/EndMonth', :integer) - @dst_end_day, @dst_end_day_isdefaulted = XMLHelper.get_value_and_defaulted(hpxml, 'SoftwareInfo/extension/SimulationControl/DaylightSaving/EndDayOfMonth', :integer) + @timestep = XMLHelper.get_value(hpxml, 'SoftwareInfo/extension/SimulationControl/Timestep', :integer) + @sim_begin_month = XMLHelper.get_value(hpxml, 'SoftwareInfo/extension/SimulationControl/BeginMonth', :integer) + @sim_begin_day = XMLHelper.get_value(hpxml, 'SoftwareInfo/extension/SimulationControl/BeginDayOfMonth', :integer) + @sim_end_month = XMLHelper.get_value(hpxml, 'SoftwareInfo/extension/SimulationControl/EndMonth', :integer) + @sim_end_day = XMLHelper.get_value(hpxml, 'SoftwareInfo/extension/SimulationControl/EndDayOfMonth', :integer) + @sim_calendar_year = XMLHelper.get_value(hpxml, 'SoftwareInfo/extension/SimulationControl/CalendarYear', :integer) + @dst_enabled = XMLHelper.get_value(hpxml, 'SoftwareInfo/extension/SimulationControl/DaylightSaving/Enabled', :boolean) + @dst_begin_month = XMLHelper.get_value(hpxml, 'SoftwareInfo/extension/SimulationControl/DaylightSaving/BeginMonth', :integer) + @dst_begin_day = XMLHelper.get_value(hpxml, 'SoftwareInfo/extension/SimulationControl/DaylightSaving/BeginDayOfMonth', :integer) + @dst_end_month = XMLHelper.get_value(hpxml, 'SoftwareInfo/extension/SimulationControl/DaylightSaving/EndMonth', :integer) + @dst_end_day = XMLHelper.get_value(hpxml, 'SoftwareInfo/extension/SimulationControl/DaylightSaving/EndDayOfMonth', :integer) @apply_ashrae140_assumptions = XMLHelper.get_value(hpxml, 'SoftwareInfo/extension/ApplyASHRAE140Assumptions', :boolean) - @use_max_load_for_heat_pumps, @use_max_load_for_heat_pumps_isdefaulted = XMLHelper.get_value_and_defaulted(hpxml, 'SoftwareInfo/extension/HVACSizingControl/UseMaxLoadForHeatPumps', :boolean) - @allow_increased_fixed_capacities, @allow_increased_fixed_capacities_isdefaulted = XMLHelper.get_value_and_defaulted(hpxml, 'SoftwareInfo/extension/HVACSizingControl/AllowIncreasedFixedCapacities', :boolean) + @use_max_load_for_heat_pumps = XMLHelper.get_value(hpxml, 'SoftwareInfo/extension/HVACSizingControl/UseMaxLoadForHeatPumps', :boolean) + @allow_increased_fixed_capacities = XMLHelper.get_value(hpxml, 'SoftwareInfo/extension/HVACSizingControl/AllowIncreasedFixedCapacities', :boolean) @schedules_path = XMLHelper.get_value(hpxml, 'SoftwareInfo/extension/OccupancySchedulesCSVPath', :string) @building_id = HPXML::get_id(hpxml, 'Building/BuildingID') @event_type = XMLHelper.get_value(hpxml, 'Building/ProjectStatus/EventType', :string) @@ -878,7 +911,7 @@ def from_oga(hpxml) end class Site < BaseElement - ATTRS = [:site_type, :surroundings, :orientation_of_front_of_home, :fuels, :shelter_coefficient] + ATTRS = [:site_type, :surroundings, :shielding_of_home, :orientation_of_front_of_home, :fuels] attr_accessor(*ATTRS) def check_for_errors @@ -892,6 +925,7 @@ def to_oga(doc) site = XMLHelper.create_elements_as_needed(doc, ['HPXML', 'Building', 'BuildingDetails', 'BuildingSummary', 'Site']) XMLHelper.add_element(site, 'SiteType', @site_type, :string, @site_type_isdefaulted) unless @site_type.nil? XMLHelper.add_element(site, 'Surroundings', @surroundings, :string) unless @surroundings.nil? + XMLHelper.add_element(site, 'ShieldingofHome', @shielding_of_home, :string, @shielding_of_home_isdefaulted) unless @shielding_of_home.nil? XMLHelper.add_element(site, 'OrientationOfFrontOfHome', @orientation_of_front_of_home, :string) unless @orientation_of_front_of_home.nil? if (not @fuels.nil?) && (not @fuels.empty?) fuel_types_available = XMLHelper.add_element(site, 'FuelTypesAvailable') @@ -899,7 +933,6 @@ def to_oga(doc) XMLHelper.add_element(fuel_types_available, 'Fuel', fuel, :string) end end - XMLHelper.add_extension(site, 'ShelterCoefficient', @shelter_coefficient, :float, shelter_coefficient_isdefaulted) unless @shelter_coefficient.nil? end def from_oga(hpxml) @@ -908,11 +941,11 @@ def from_oga(hpxml) site = XMLHelper.get_element(hpxml, 'Building/BuildingDetails/BuildingSummary/Site') return if site.nil? - @site_type, @site_type_isdefaulted = XMLHelper.get_value_and_defaulted(site, 'SiteType', :string) + @site_type = XMLHelper.get_value(site, 'SiteType', :string) @surroundings = XMLHelper.get_value(site, 'Surroundings', :string) + @shielding_of_home = XMLHelper.get_value(site, 'ShieldingofHome', :string) @orientation_of_front_of_home = XMLHelper.get_value(site, 'OrientationOfFrontOfHome', :string) @fuels = XMLHelper.get_values(site, 'FuelTypesAvailable/Fuel', :string) - @shelter_coefficient, @shelter_coefficient_isdefaulted = XMLHelper.get_value_and_defaulted(site, 'extension/ShelterCoefficient', :float) end end @@ -980,15 +1013,15 @@ def from_oga(hpxml) building_occupancy = XMLHelper.get_element(hpxml, 'Building/BuildingDetails/BuildingSummary/BuildingOccupancy') return if building_occupancy.nil? - @number_of_residents, @number_of_residents_isdefaulted = XMLHelper.get_value_and_defaulted(building_occupancy, 'NumberofResidents', :float) + @number_of_residents = XMLHelper.get_value(building_occupancy, 'NumberofResidents', :float) end end class BuildingConstruction < BaseElement ATTRS = [:year_built, :number_of_conditioned_floors, :number_of_conditioned_floors_above_grade, :average_ceiling_height, :number_of_bedrooms, :number_of_bathrooms, - :conditioned_floor_area, :conditioned_building_volume, :use_only_ideal_air_system, - :residential_facility_type, :has_flue_or_chimney] + :conditioned_floor_area, :conditioned_building_volume, :residential_facility_type, + :has_flue_or_chimney] attr_accessor(*ATTRS) def check_for_errors @@ -1000,6 +1033,7 @@ def to_oga(doc) return if nil? building_construction = XMLHelper.create_elements_as_needed(doc, ['HPXML', 'Building', 'BuildingDetails', 'BuildingSummary', 'BuildingConstruction']) + XMLHelper.add_element(building_construction, 'YearBuilt', @year_built, :integer) unless @year_built.nil? XMLHelper.add_element(building_construction, 'ResidentialFacilityType', @residential_facility_type, :string) unless @residential_facility_type.nil? XMLHelper.add_element(building_construction, 'NumberofConditionedFloors', @number_of_conditioned_floors, :float) unless @number_of_conditioned_floors.nil? XMLHelper.add_element(building_construction, 'NumberofConditionedFloorsAboveGrade', @number_of_conditioned_floors_above_grade, :float) unless @number_of_conditioned_floors_above_grade.nil? @@ -1008,7 +1042,6 @@ def to_oga(doc) XMLHelper.add_element(building_construction, 'NumberofBathrooms', @number_of_bathrooms, :integer, @number_of_bathrooms_isdefaulted) unless @number_of_bathrooms.nil? XMLHelper.add_element(building_construction, 'ConditionedFloorArea', @conditioned_floor_area, :float) unless @conditioned_floor_area.nil? XMLHelper.add_element(building_construction, 'ConditionedBuildingVolume', @conditioned_building_volume, :float, @conditioned_building_volume_isdefaulted) unless @conditioned_building_volume.nil? - XMLHelper.add_extension(building_construction, 'UseOnlyIdealAirSystem', @use_only_ideal_air_system, :boolean) unless @use_only_ideal_air_system.nil? XMLHelper.add_extension(building_construction, 'HasFlueOrChimney', @has_flue_or_chimney, :boolean, @has_flue_or_chimney_isdefaulted) unless @has_flue_or_chimney.nil? end @@ -1019,16 +1052,15 @@ def from_oga(hpxml) return if building_construction.nil? @year_built = XMLHelper.get_value(building_construction, 'YearBuilt', :integer) + @residential_facility_type = XMLHelper.get_value(building_construction, 'ResidentialFacilityType', :string) @number_of_conditioned_floors = XMLHelper.get_value(building_construction, 'NumberofConditionedFloors', :float) @number_of_conditioned_floors_above_grade = XMLHelper.get_value(building_construction, 'NumberofConditionedFloorsAboveGrade', :float) - @average_ceiling_height, @average_ceiling_height_isdefaulted = XMLHelper.get_value_and_defaulted(building_construction, 'AverageCeilingHeight', :float) + @average_ceiling_height = XMLHelper.get_value(building_construction, 'AverageCeilingHeight', :float) @number_of_bedrooms = XMLHelper.get_value(building_construction, 'NumberofBedrooms', :integer) - @number_of_bathrooms, @number_of_bathrooms_isdefaulted = XMLHelper.get_value_and_defaulted(building_construction, 'NumberofBathrooms', :integer) + @number_of_bathrooms = XMLHelper.get_value(building_construction, 'NumberofBathrooms', :integer) @conditioned_floor_area = XMLHelper.get_value(building_construction, 'ConditionedFloorArea', :float) - @conditioned_building_volume, @conditioned_building_volume_isdefaulted = XMLHelper.get_value_and_defaulted(building_construction, 'ConditionedBuildingVolume', :float) - @use_only_ideal_air_system = XMLHelper.get_value(building_construction, 'extension/UseOnlyIdealAirSystem', :boolean) - @residential_facility_type = XMLHelper.get_value(building_construction, 'ResidentialFacilityType', :string) - @has_flue_or_chimney, @has_flue_or_chimney_isdefaulted = XMLHelper.get_value_and_defaulted(building_construction, 'extension/HasFlueOrChimney', :boolean) + @conditioned_building_volume = XMLHelper.get_value(building_construction, 'ConditionedBuildingVolume', :float) + @has_flue_or_chimney = XMLHelper.get_value(building_construction, 'extension/HasFlueOrChimney', :boolean) end end @@ -1096,7 +1128,7 @@ def from_oga(hpxml) end class AirInfiltrationMeasurement < BaseElement - ATTRS = [:id, :house_pressure, :unit_of_measure, :air_leakage, :effective_leakage_area, + ATTRS = [:id, :house_pressure, :unit_of_measure, :air_leakage, :effective_leakage_area, :type, :infiltration_volume, :leakiness_description, :infiltration_height, :a_ext] attr_accessor(*ATTRS) @@ -1112,7 +1144,9 @@ def to_oga(doc) air_infiltration_measurement = XMLHelper.add_element(air_infiltration, 'AirInfiltrationMeasurement') sys_id = XMLHelper.add_element(air_infiltration_measurement, 'SystemIdentifier') XMLHelper.add_attribute(sys_id, 'id', @id) + XMLHelper.add_element(air_infiltration_measurement, 'TypeOfInfiltrationMeasurement', @type, :string) unless @type.nil? XMLHelper.add_element(air_infiltration_measurement, 'HousePressure', @house_pressure, :float) unless @house_pressure.nil? + XMLHelper.add_element(air_infiltration_measurement, 'LeakinessDescription', @leakiness_description, :string) unless @leakiness_description.nil? if (not @unit_of_measure.nil?) && (not @air_leakage.nil?) building_air_leakage = XMLHelper.add_element(air_infiltration_measurement, 'BuildingAirLeakage') XMLHelper.add_element(building_air_leakage, 'UnitofMeasure', @unit_of_measure, :string) @@ -1128,12 +1162,13 @@ def from_oga(air_infiltration_measurement) return if air_infiltration_measurement.nil? @id = HPXML::get_id(air_infiltration_measurement) + @type = XMLHelper.get_value(air_infiltration_measurement, 'TypeOfInfiltrationMeasurement', :string) @house_pressure = XMLHelper.get_value(air_infiltration_measurement, 'HousePressure', :float) + @leakiness_description = XMLHelper.get_value(air_infiltration_measurement, 'LeakinessDescription', :string) @unit_of_measure = XMLHelper.get_value(air_infiltration_measurement, 'BuildingAirLeakage/UnitofMeasure', :string) @air_leakage = XMLHelper.get_value(air_infiltration_measurement, 'BuildingAirLeakage/AirLeakage', :float) @effective_leakage_area = XMLHelper.get_value(air_infiltration_measurement, 'EffectiveLeakageArea', :float) - @infiltration_volume, @infiltration_volume_isdefaulted = XMLHelper.get_value_and_defaulted(air_infiltration_measurement, 'InfiltrationVolume', :float) - @leakiness_description = XMLHelper.get_value(air_infiltration_measurement, 'LeakinessDescription', :string) + @infiltration_volume = XMLHelper.get_value(air_infiltration_measurement, 'InfiltrationVolume', :float) @infiltration_height = XMLHelper.get_value(air_infiltration_measurement, 'extension/InfiltrationHeight', :float) @a_ext = XMLHelper.get_value(air_infiltration_measurement, 'extension/Aext', :float) end @@ -1214,12 +1249,12 @@ def to_oga(doc) sys_id = XMLHelper.add_element(attic, 'SystemIdentifier') XMLHelper.add_attribute(sys_id, 'id', @id) if not @attic_type.nil? - attic_type_e = XMLHelper.add_element(attic, 'AtticType') + attic_type_el = XMLHelper.add_element(attic, 'AtticType') if @attic_type == AtticTypeUnvented - attic_type_attic = XMLHelper.add_element(attic_type_e, 'Attic') + attic_type_attic = XMLHelper.add_element(attic_type_el, 'Attic') XMLHelper.add_element(attic_type_attic, 'Vented', false, :boolean) elsif @attic_type == AtticTypeVented - attic_type_attic = XMLHelper.add_element(attic_type_e, 'Attic') + attic_type_attic = XMLHelper.add_element(attic_type_el, 'Attic') XMLHelper.add_element(attic_type_attic, 'Vented', true, :boolean) if not @vented_attic_sla.nil? ventilation_rate = XMLHelper.add_element(attic, 'VentilationRate') @@ -1231,10 +1266,10 @@ def to_oga(doc) XMLHelper.add_element(ventilation_rate, 'Value', @vented_attic_ach, :float) end elsif @attic_type == AtticTypeConditioned - attic_type_attic = XMLHelper.add_element(attic_type_e, 'Attic') + attic_type_attic = XMLHelper.add_element(attic_type_el, 'Attic') XMLHelper.add_element(attic_type_attic, 'Conditioned', true, :boolean) elsif (@attic_type == AtticTypeFlatRoof) || (@attic_type == AtticTypeCathedral) - XMLHelper.add_element(attic_type_e, @attic_type) + XMLHelper.add_element(attic_type_el, @attic_type) else fail "Unhandled attic type '#{@attic_type}'." end @@ -1258,7 +1293,7 @@ def from_oga(attic) @attic_type = AtticTypeCathedral end if @attic_type == AtticTypeVented - @vented_attic_sla, @vented_attic_sla_isdefaulted = XMLHelper.get_value_and_defaulted(attic, "VentilationRate[UnitofMeasure='#{UnitsSLA}']/Value", :float) + @vented_attic_sla = XMLHelper.get_value(attic, "VentilationRate[UnitofMeasure='#{UnitsSLA}']/Value", :float) @vented_attic_ach = XMLHelper.get_value(attic, "VentilationRate[UnitofMeasure='#{UnitsACHNatural}']/Value", :float) end @within_infiltration_volume = XMLHelper.get_value(attic, 'WithinInfiltrationVolume', :boolean) @@ -1377,17 +1412,17 @@ def to_oga(doc) sys_id = XMLHelper.add_element(foundation, 'SystemIdentifier') XMLHelper.add_attribute(sys_id, 'id', @id) if not @foundation_type.nil? - foundation_type_e = XMLHelper.add_element(foundation, 'FoundationType') + foundation_type_el = XMLHelper.add_element(foundation, 'FoundationType') if [FoundationTypeSlab, FoundationTypeAmbient].include? @foundation_type - XMLHelper.add_element(foundation_type_e, @foundation_type) + XMLHelper.add_element(foundation_type_el, @foundation_type) elsif @foundation_type == FoundationTypeBasementConditioned - basement = XMLHelper.add_element(foundation_type_e, 'Basement') + basement = XMLHelper.add_element(foundation_type_el, 'Basement') XMLHelper.add_element(basement, 'Conditioned', true, :boolean) elsif @foundation_type == FoundationTypeBasementUnconditioned - basement = XMLHelper.add_element(foundation_type_e, 'Basement') + basement = XMLHelper.add_element(foundation_type_el, 'Basement') XMLHelper.add_element(basement, 'Conditioned', false, :boolean) elsif @foundation_type == FoundationTypeCrawlspaceVented - crawlspace = XMLHelper.add_element(foundation_type_e, 'Crawlspace') + crawlspace = XMLHelper.add_element(foundation_type_el, 'Crawlspace') XMLHelper.add_element(crawlspace, 'Vented', true, :boolean) if not @vented_crawlspace_sla.nil? ventilation_rate = XMLHelper.add_element(foundation, 'VentilationRate') @@ -1395,7 +1430,7 @@ def to_oga(doc) XMLHelper.add_element(ventilation_rate, 'Value', @vented_crawlspace_sla, :float, @vented_crawlspace_sla_isdefaulted) end elsif @foundation_type == FoundationTypeCrawlspaceUnvented - crawlspace = XMLHelper.add_element(foundation_type_e, 'Crawlspace') + crawlspace = XMLHelper.add_element(foundation_type_el, 'Crawlspace') XMLHelper.add_element(crawlspace, 'Vented', false, :boolean) else fail "Unhandled foundation type '#{@foundation_type}'." @@ -1422,7 +1457,7 @@ def from_oga(foundation) @foundation_type = FoundationTypeAmbient end if @foundation_type == FoundationTypeCrawlspaceVented - @vented_crawlspace_sla, @vented_crawlspace_sla_isdefaulted = XMLHelper.get_value_and_defaulted(foundation, "VentilationRate[UnitofMeasure='#{UnitsSLA}']/Value", :float) + @vented_crawlspace_sla = XMLHelper.get_value(foundation, "VentilationRate[UnitofMeasure='#{UnitsSLA}']/Value", :float) end @within_infiltration_volume = XMLHelper.get_value(foundation, 'WithinInfiltrationVolume', :boolean) @attached_to_slab_idrefs = [] @@ -1455,7 +1490,7 @@ def from_oga(hpxml) end class Roof < BaseElement - ATTRS = [:id, :interior_adjacent_to, :area, :azimuth, :roof_type, + ATTRS = [:id, :interior_adjacent_to, :area, :azimuth, :orientation, :roof_type, :roof_color, :solar_absorptance, :emittance, :pitch, :radiant_barrier, :insulation_id, :insulation_assembly_r_value, :insulation_cavity_r_value, :insulation_continuous_r_value, :radiant_barrier_grade] @@ -1523,6 +1558,7 @@ def to_oga(doc) XMLHelper.add_attribute(sys_id, 'id', @id) XMLHelper.add_element(roof, 'InteriorAdjacentTo', @interior_adjacent_to, :string) unless @interior_adjacent_to.nil? XMLHelper.add_element(roof, 'Area', @area, :float) unless @area.nil? + XMLHelper.add_element(roof, 'Orientation', @orientation, :string) unless @orientation.nil? XMLHelper.add_element(roof, 'Azimuth', @azimuth, :integer) unless @azimuth.nil? XMLHelper.add_element(roof, 'RoofType', @roof_type, :string, @roof_type_isdefaulted) unless @roof_type.nil? XMLHelper.add_element(roof, 'RoofColor', @roof_color, :string, @roof_color_isdefaulted) unless @roof_color.nil? @@ -1539,6 +1575,16 @@ def to_oga(doc) XMLHelper.add_attribute(sys_id, 'id', @id + 'Insulation') end XMLHelper.add_element(insulation, 'AssemblyEffectiveRValue', @insulation_assembly_r_value, :float) unless @insulation_assembly_r_value.nil? + if not @insulation_cavity_r_value.nil? + layer = XMLHelper.add_element(insulation, 'Layer') + XMLHelper.add_element(layer, 'InstallationType', 'cavity', :string) + XMLHelper.add_element(layer, 'NominalRValue', @insulation_cavity_r_value, :float) + end + if not @insulation_continuous_r_value.nil? + layer = XMLHelper.add_element(insulation, 'Layer') + XMLHelper.add_element(layer, 'InstallationType', 'continuous', :string) + XMLHelper.add_element(layer, 'NominalRValue', @insulation_continuous_r_value, :float) + end end def from_oga(roof) @@ -1547,13 +1593,14 @@ def from_oga(roof) @id = HPXML::get_id(roof) @interior_adjacent_to = XMLHelper.get_value(roof, 'InteriorAdjacentTo', :string) @area = XMLHelper.get_value(roof, 'Area', :float) + @orientation = XMLHelper.get_value(roof, 'Orientation', :string) @azimuth = XMLHelper.get_value(roof, 'Azimuth', :integer) - @roof_type, @roof_type_isdefaulted = XMLHelper.get_value_and_defaulted(roof, 'RoofType', :string) - @roof_color, @roof_color_isdefaulted = XMLHelper.get_value_and_defaulted(roof, 'RoofColor', :string) - @solar_absorptance, @solar_absorptance_isdefaulted = XMLHelper.get_value_and_defaulted(roof, 'SolarAbsorptance', :float) - @emittance, @emittance_isdefaulted = XMLHelper.get_value_and_defaulted(roof, 'Emittance', :float) + @roof_type = XMLHelper.get_value(roof, 'RoofType', :string) + @roof_color = XMLHelper.get_value(roof, 'RoofColor', :string) + @solar_absorptance = XMLHelper.get_value(roof, 'SolarAbsorptance', :float) + @emittance = XMLHelper.get_value(roof, 'Emittance', :float) @pitch = XMLHelper.get_value(roof, 'Pitch', :float) - @radiant_barrier, @radiant_barrier_isdefaulted = XMLHelper.get_value_and_defaulted(roof, 'RadiantBarrier', :boolean) + @radiant_barrier = XMLHelper.get_value(roof, 'RadiantBarrier', :boolean) @radiant_barrier_grade = XMLHelper.get_value(roof, 'RadiantBarrierGrade', :integer) insulation = XMLHelper.get_element(roof, 'Insulation') if not insulation.nil? @@ -1580,8 +1627,8 @@ def from_oga(hpxml) end class RimJoist < BaseElement - ATTRS = [:id, :exterior_adjacent_to, :interior_adjacent_to, :area, :azimuth, :siding, :color, - :solar_absorptance, :emittance, :insulation_id, :insulation_assembly_r_value, + ATTRS = [:id, :exterior_adjacent_to, :interior_adjacent_to, :area, :orientation, :azimuth, :siding, + :color, :solar_absorptance, :emittance, :insulation_id, :insulation_assembly_r_value, :insulation_cavity_r_value, :insulation_continuous_r_value] attr_accessor(*ATTRS) @@ -1628,6 +1675,7 @@ def to_oga(doc) XMLHelper.add_element(rim_joist, 'ExteriorAdjacentTo', @exterior_adjacent_to, :string) unless @exterior_adjacent_to.nil? XMLHelper.add_element(rim_joist, 'InteriorAdjacentTo', @interior_adjacent_to, :string) unless @interior_adjacent_to.nil? XMLHelper.add_element(rim_joist, 'Area', @area, :float) unless @area.nil? + XMLHelper.add_element(rim_joist, 'Orientation', @orientation, :string) unless @orientation.nil? XMLHelper.add_element(rim_joist, 'Azimuth', @azimuth, :integer) unless @azimuth.nil? XMLHelper.add_element(rim_joist, 'Siding', @siding, :string, @siding_isdefaulted) unless @siding.nil? XMLHelper.add_element(rim_joist, 'Color', @color, :string, @color_isdefaulted) unless @color.nil? @@ -1641,6 +1689,16 @@ def to_oga(doc) XMLHelper.add_attribute(sys_id, 'id', @id + 'Insulation') end XMLHelper.add_element(insulation, 'AssemblyEffectiveRValue', @insulation_assembly_r_value, :float) unless @insulation_assembly_r_value.nil? + if not @insulation_cavity_r_value.nil? + layer = XMLHelper.add_element(insulation, 'Layer') + XMLHelper.add_element(layer, 'InstallationType', 'cavity', :string) + XMLHelper.add_element(layer, 'NominalRValue', @insulation_cavity_r_value, :float) + end + if not @insulation_continuous_r_value.nil? + layer = XMLHelper.add_element(insulation, 'Layer') + XMLHelper.add_element(layer, 'InstallationType', 'continuous', :string) + XMLHelper.add_element(layer, 'NominalRValue', @insulation_continuous_r_value, :float) + end end def from_oga(rim_joist) @@ -1650,11 +1708,12 @@ def from_oga(rim_joist) @exterior_adjacent_to = XMLHelper.get_value(rim_joist, 'ExteriorAdjacentTo', :string) @interior_adjacent_to = XMLHelper.get_value(rim_joist, 'InteriorAdjacentTo', :string) @area = XMLHelper.get_value(rim_joist, 'Area', :float) + @orientation = XMLHelper.get_value(rim_joist, 'Orientation', :string) @azimuth = XMLHelper.get_value(rim_joist, 'Azimuth', :integer) - @siding, @siding_isdefaulted = XMLHelper.get_value_and_defaulted(rim_joist, 'Siding', :string) - @color, @color_isdefaulted = XMLHelper.get_value_and_defaulted(rim_joist, 'Color', :string) - @solar_absorptance, @solar_absorptance_isdefaulted = XMLHelper.get_value_and_defaulted(rim_joist, 'SolarAbsorptance', :float) - @emittance, @emittance_isdefaulted = XMLHelper.get_value_and_defaulted(rim_joist, 'Emittance', :float) + @siding = XMLHelper.get_value(rim_joist, 'Siding', :string) + @color = XMLHelper.get_value(rim_joist, 'Color', :string) + @solar_absorptance = XMLHelper.get_value(rim_joist, 'SolarAbsorptance', :float) + @emittance = XMLHelper.get_value(rim_joist, 'Emittance', :float) insulation = XMLHelper.get_element(rim_joist, 'Insulation') if not insulation.nil? @insulation_id = HPXML::get_id(insulation) @@ -1756,10 +1815,14 @@ def to_oga(doc) XMLHelper.add_element(wall, 'ExteriorAdjacentTo', @exterior_adjacent_to, :string) unless @exterior_adjacent_to.nil? XMLHelper.add_element(wall, 'InteriorAdjacentTo', @interior_adjacent_to, :string) unless @interior_adjacent_to.nil? if not @wall_type.nil? - wall_type_e = XMLHelper.add_element(wall, 'WallType') - XMLHelper.add_element(wall_type_e, @wall_type) + wall_type_el = XMLHelper.add_element(wall, 'WallType') + wall_type = XMLHelper.add_element(wall_type_el, @wall_type) + if @wall_type == HPXML::WallTypeWoodStud + XMLHelper.add_element(wall_type, 'OptimumValueEngineering', @optimum_value_engineering, :boolean) unless @optimum_value_engineering.nil? + end end XMLHelper.add_element(wall, 'Area', @area, :float) unless @area.nil? + XMLHelper.add_element(wall, 'Orientation', @orientation, :string) unless @orientation.nil? XMLHelper.add_element(wall, 'Azimuth', @azimuth, :integer) unless @azimuth.nil? XMLHelper.add_element(wall, 'Siding', @siding, :string, @siding_isdefaulted) unless @siding.nil? XMLHelper.add_element(wall, 'Color', @color, :string, @color_isdefaulted) unless @color.nil? @@ -1773,6 +1836,16 @@ def to_oga(doc) XMLHelper.add_attribute(sys_id, 'id', @id + 'Insulation') end XMLHelper.add_element(insulation, 'AssemblyEffectiveRValue', @insulation_assembly_r_value, :float) unless @insulation_assembly_r_value.nil? + if not @insulation_cavity_r_value.nil? + layer = XMLHelper.add_element(insulation, 'Layer') + XMLHelper.add_element(layer, 'InstallationType', 'cavity', :string) + XMLHelper.add_element(layer, 'NominalRValue', @insulation_cavity_r_value, :float) + end + if not @insulation_continuous_r_value.nil? + layer = XMLHelper.add_element(insulation, 'Layer') + XMLHelper.add_element(layer, 'InstallationType', 'continuous', :string) + XMLHelper.add_element(layer, 'NominalRValue', @insulation_continuous_r_value, :float) + end end def from_oga(wall) @@ -1782,14 +1855,16 @@ def from_oga(wall) @exterior_adjacent_to = XMLHelper.get_value(wall, 'ExteriorAdjacentTo', :string) @interior_adjacent_to = XMLHelper.get_value(wall, 'InteriorAdjacentTo', :string) @wall_type = XMLHelper.get_child_name(wall, 'WallType') - @optimum_value_engineering = XMLHelper.get_value(wall, 'WallType/WoodStud/OptimumValueEngineering', :boolean) + if @wall_type == HPXML::WallTypeWoodStud + @optimum_value_engineering = XMLHelper.get_value(wall, 'WallType/WoodStud/OptimumValueEngineering', :boolean) + end @area = XMLHelper.get_value(wall, 'Area', :float) @orientation = XMLHelper.get_value(wall, 'Orientation', :string) @azimuth = XMLHelper.get_value(wall, 'Azimuth', :integer) - @siding, @siding_isdefaulted = XMLHelper.get_value_and_defaulted(wall, 'Siding', :string) - @color, @color_isdefaulted = XMLHelper.get_value_and_defaulted(wall, 'Color', :string) - @solar_absorptance, @solar_absorptance_isdefaulted = XMLHelper.get_value_and_defaulted(wall, 'SolarAbsorptance', :float) - @emittance, @emittance_isdefaulted = XMLHelper.get_value_and_defaulted(wall, 'Emittance', :float) + @siding = XMLHelper.get_value(wall, 'Siding', :string) + @color = XMLHelper.get_value(wall, 'Color', :string) + @solar_absorptance = XMLHelper.get_value(wall, 'SolarAbsorptance', :float) + @emittance = XMLHelper.get_value(wall, 'Emittance', :float) insulation = XMLHelper.get_element(wall, 'Insulation') if not insulation.nil? @insulation_id = HPXML::get_id(insulation) @@ -1815,8 +1890,8 @@ def from_oga(hpxml) end class FoundationWall < BaseElement - ATTRS = [:id, :exterior_adjacent_to, :interior_adjacent_to, :height, :area, :azimuth, :thickness, - :depth_below_grade, :insulation_id, :insulation_r_value, :insulation_interior_r_value, + ATTRS = [:id, :exterior_adjacent_to, :interior_adjacent_to, :height, :area, :orientation, :azimuth, + :thickness, :depth_below_grade, :insulation_id, :insulation_interior_r_value, :insulation_interior_distance_to_top, :insulation_interior_distance_to_bottom, :insulation_exterior_r_value, :insulation_exterior_distance_to_top, :insulation_exterior_distance_to_bottom, :insulation_assembly_r_value, @@ -1900,6 +1975,7 @@ def to_oga(doc) XMLHelper.add_element(foundation_wall, 'InteriorAdjacentTo', @interior_adjacent_to, :string) unless @interior_adjacent_to.nil? XMLHelper.add_element(foundation_wall, 'Height', @height, :float) unless @height.nil? XMLHelper.add_element(foundation_wall, 'Area', @area, :float) unless @area.nil? + XMLHelper.add_element(foundation_wall, 'Orientation', @orientation, :string) unless @orientation.nil? XMLHelper.add_element(foundation_wall, 'Azimuth', @azimuth, :integer) unless @azimuth.nil? XMLHelper.add_element(foundation_wall, 'Thickness', @thickness, :float, @thickness_isdefaulted) unless @thickness.nil? XMLHelper.add_element(foundation_wall, 'DepthBelowGrade', @depth_below_grade, :float) unless @depth_below_grade.nil? @@ -1935,21 +2011,21 @@ def from_oga(foundation_wall) @interior_adjacent_to = XMLHelper.get_value(foundation_wall, 'InteriorAdjacentTo', :string) @height = XMLHelper.get_value(foundation_wall, 'Height', :float) @area = XMLHelper.get_value(foundation_wall, 'Area', :float) + @orientation = XMLHelper.get_value(foundation_wall, 'Orientation', :string) @azimuth = XMLHelper.get_value(foundation_wall, 'Azimuth', :integer) - @thickness, @thickness_isdefaulted = XMLHelper.get_value_and_defaulted(foundation_wall, 'Thickness', :float) + @thickness = XMLHelper.get_value(foundation_wall, 'Thickness', :float) @depth_below_grade = XMLHelper.get_value(foundation_wall, 'DepthBelowGrade', :float) insulation = XMLHelper.get_element(foundation_wall, 'Insulation') if not insulation.nil? @insulation_id = HPXML::get_id(insulation) - @insulation_r_value = XMLHelper.get_value(insulation, "Layer[InstallationType='continuous']/NominalRValue", :float) + @insulation_assembly_r_value = XMLHelper.get_value(insulation, 'AssemblyEffectiveRValue', :float) + @insulation_continuous_r_value = XMLHelper.get_value(insulation, "Layer[InstallationType='continuous']/NominalRValue", :float) @insulation_interior_r_value = XMLHelper.get_value(insulation, "Layer[InstallationType='continuous - interior']/NominalRValue", :float) @insulation_interior_distance_to_top = XMLHelper.get_value(insulation, "Layer[InstallationType='continuous - interior']/extension/DistanceToTopOfInsulation", :float) @insulation_interior_distance_to_bottom = XMLHelper.get_value(insulation, "Layer[InstallationType='continuous - interior']/extension/DistanceToBottomOfInsulation", :float) @insulation_exterior_r_value = XMLHelper.get_value(insulation, "Layer[InstallationType='continuous - exterior']/NominalRValue", :float) @insulation_exterior_distance_to_top = XMLHelper.get_value(insulation, "Layer[InstallationType='continuous - exterior']/extension/DistanceToTopOfInsulation", :float) @insulation_exterior_distance_to_bottom = XMLHelper.get_value(insulation, "Layer[InstallationType='continuous - exterior']/extension/DistanceToBottomOfInsulation", :float) - @insulation_continuous_r_value = XMLHelper.get_value(insulation, "Layer[InstallationType='continuous']/NominalRValue", :float) - @insulation_assembly_r_value = XMLHelper.get_value(insulation, 'AssemblyEffectiveRValue', :float) end end end @@ -2047,6 +2123,16 @@ def to_oga(doc) XMLHelper.add_attribute(sys_id, 'id', @id + 'Insulation') end XMLHelper.add_element(insulation, 'AssemblyEffectiveRValue', @insulation_assembly_r_value, :float) unless @insulation_assembly_r_value.nil? + if not @insulation_cavity_r_value.nil? + layer = XMLHelper.add_element(insulation, 'Layer') + XMLHelper.add_element(layer, 'InstallationType', 'cavity', :string) + XMLHelper.add_element(layer, 'NominalRValue', @insulation_cavity_r_value, :float) + end + if not @insulation_continuous_r_value.nil? + layer = XMLHelper.add_element(insulation, 'Layer') + XMLHelper.add_element(layer, 'InstallationType', 'continuous', :string) + XMLHelper.add_element(layer, 'NominalRValue', @insulation_continuous_r_value, :float) + end XMLHelper.add_extension(frame_floor, 'OtherSpaceAboveOrBelow', @other_space_above_or_below, :string) unless @other_space_above_or_below.nil? end @@ -2119,13 +2205,6 @@ def delete def check_for_errors errors = [] - - if not @exposed_perimeter.nil? - if @exposed_perimeter <= 0 - errors << "Exposed perimeter for Slab '#{@id}' must be greater than zero." - end - end - return errors end @@ -2172,14 +2251,12 @@ def from_oga(slab) @id = HPXML::get_id(slab) @interior_adjacent_to = XMLHelper.get_value(slab, 'InteriorAdjacentTo', :string) @area = XMLHelper.get_value(slab, 'Area', :float) - @thickness, @thickness_isdefaulted = XMLHelper.get_value_and_defaulted(slab, 'Thickness', :float) + @thickness = XMLHelper.get_value(slab, 'Thickness', :float) @exposed_perimeter = XMLHelper.get_value(slab, 'ExposedPerimeter', :float) @perimeter_insulation_depth = XMLHelper.get_value(slab, 'PerimeterInsulationDepth', :float) @under_slab_insulation_width = XMLHelper.get_value(slab, 'UnderSlabInsulationWidth', :float) @under_slab_insulation_spans_entire_slab = XMLHelper.get_value(slab, 'UnderSlabInsulationSpansEntireSlab', :boolean) @depth_below_grade = XMLHelper.get_value(slab, 'DepthBelowGrade', :float) - @carpet_fraction, @carpet_fraction_isdefaulted = XMLHelper.get_value_and_defaulted(slab, 'extension/CarpetFraction', :float) - @carpet_r_value, @carpet_r_value_isdefaulted = XMLHelper.get_value_and_defaulted(slab, 'extension/CarpetRValue', :float) perimeter_insulation = XMLHelper.get_element(slab, 'PerimeterInsulation') if not perimeter_insulation.nil? @perimeter_insulation_id = HPXML::get_id(perimeter_insulation) @@ -2190,6 +2267,8 @@ def from_oga(slab) @under_slab_insulation_id = HPXML::get_id(under_slab_insulation) @under_slab_insulation_r_value = XMLHelper.get_value(under_slab_insulation, 'Layer/NominalRValue', :float) end + @carpet_fraction = XMLHelper.get_value(slab, 'extension/CarpetFraction', :float) + @carpet_r_value = XMLHelper.get_value(slab, 'extension/CarpetRValue', :float) end end @@ -2210,7 +2289,8 @@ def from_oga(hpxml) class Window < BaseElement ATTRS = [:id, :area, :azimuth, :orientation, :frame_type, :aluminum_thermal_break, :glass_layers, :glass_type, :gas_fill, :ufactor, :shgc, :interior_shading_factor_summer, - :interior_shading_factor_winter, :exterior_shading, :overhangs_depth, + :interior_shading_factor_winter, :interior_shading_type, :exterior_shading_factor_summer, + :exterior_shading_factor_winter, :exterior_shading_type, :overhangs_depth, :overhangs_distance_to_top_of_window, :overhangs_distance_to_bottom_of_window, :fraction_operable, :wall_idref] attr_accessor(*ATTRS) @@ -2249,12 +2329,6 @@ def delete def check_for_errors errors = [] begin; wall; rescue StandardError => e; errors << e.message; end - if (not @overhangs_distance_to_top_of_window.nil?) && (not @overhangs_distance_to_bottom_of_window.nil?) - if @overhangs_distance_to_bottom_of_window <= @overhangs_distance_to_top_of_window - errors << "For Window '#{@id}', overhangs distance to bottom (#{@overhangs_distance_to_bottom_of_window}) must be greater than distance to top (#{@overhangs_distance_to_top_of_window})." - end - end - return errors end @@ -2267,12 +2341,32 @@ def to_oga(doc) XMLHelper.add_attribute(sys_id, 'id', @id) XMLHelper.add_element(window, 'Area', @area, :float) unless @area.nil? XMLHelper.add_element(window, 'Azimuth', @azimuth, :integer) unless @azimuth.nil? + XMLHelper.add_element(window, 'Orientation', @orientation, :string) unless @orientation.nil? + if not @frame_type.nil? + frame_type_el = XMLHelper.add_element(window, 'FrameType') + frame_type = XMLHelper.add_element(frame_type_el, @frame_type) + if @frame_type == HPXML::WindowFrameTypeAluminum + XMLHelper.add_element(frame_type, 'ThermalBreak', @aluminum_thermal_break, :boolean) unless @aluminum_thermal_break.nil? + end + end + XMLHelper.add_element(window, 'GlassLayers', @glass_layers, :string) unless @glass_layers.nil? + XMLHelper.add_element(window, 'GlassType', @glass_type, :string) unless @glass_type.nil? + XMLHelper.add_element(window, 'GasFill', @gas_fill, :string) unless @gas_fill.nil? XMLHelper.add_element(window, 'UFactor', @ufactor, :float) unless @ufactor.nil? XMLHelper.add_element(window, 'SHGC', @shgc, :float) unless @shgc.nil? - if (not @interior_shading_factor_summer.nil?) || (not @interior_shading_factor_winter.nil?) + if (not @exterior_shading_type.nil?) || (not @exterior_shading_factor_summer.nil?) || (not @exterior_shading_factor_winter.nil?) + exterior_shading = XMLHelper.add_element(window, 'ExteriorShading') + sys_id = XMLHelper.add_element(exterior_shading, 'SystemIdentifier') + XMLHelper.add_attribute(sys_id, 'id', "#{id}ExteriorShading") + XMLHelper.add_element(exterior_shading, 'Type', @exterior_shading_type, :string) unless @exterior_shading_type.nil? + XMLHelper.add_element(exterior_shading, 'SummerShadingCoefficient', @exterior_shading_factor_summer, :float, @exterior_shading_factor_summer_isdefaulted) unless @exterior_shading_factor_summer.nil? + XMLHelper.add_element(exterior_shading, 'WinterShadingCoefficient', @exterior_shading_factor_winter, :float, @exterior_shading_factor_winter_isdefaulted) unless @exterior_shading_factor_winter.nil? + end + if (not @interior_shading_type.nil?) || (not @interior_shading_factor_summer.nil?) || (not @interior_shading_factor_winter.nil?) interior_shading = XMLHelper.add_element(window, 'InteriorShading') sys_id = XMLHelper.add_element(interior_shading, 'SystemIdentifier') XMLHelper.add_attribute(sys_id, 'id', "#{id}InteriorShading") + XMLHelper.add_element(interior_shading, 'Type', @interior_shading_type, :string) unless @interior_shading_type.nil? XMLHelper.add_element(interior_shading, 'SummerShadingCoefficient', @interior_shading_factor_summer, :float, @interior_shading_factor_summer_isdefaulted) unless @interior_shading_factor_summer.nil? XMLHelper.add_element(interior_shading, 'WinterShadingCoefficient', @interior_shading_factor_winter, :float, @interior_shading_factor_winter_isdefaulted) unless @interior_shading_factor_winter.nil? end @@ -2297,19 +2391,24 @@ def from_oga(window) @azimuth = XMLHelper.get_value(window, 'Azimuth', :integer) @orientation = XMLHelper.get_value(window, 'Orientation', :string) @frame_type = XMLHelper.get_child_name(window, 'FrameType') - @aluminum_thermal_break = XMLHelper.get_value(window, 'FrameType/Aluminum/ThermalBreak', :boolean) + if not @frame_type.nil? + @aluminum_thermal_break = XMLHelper.get_value(window, 'FrameType/Aluminum/ThermalBreak', :boolean) + end @glass_layers = XMLHelper.get_value(window, 'GlassLayers', :string) @glass_type = XMLHelper.get_value(window, 'GlassType', :string) @gas_fill = XMLHelper.get_value(window, 'GasFill', :string) @ufactor = XMLHelper.get_value(window, 'UFactor', :float) @shgc = XMLHelper.get_value(window, 'SHGC', :float) - @interior_shading_factor_summer, @interior_shading_factor_summer_isdefaulted = XMLHelper.get_value_and_defaulted(window, 'InteriorShading/SummerShadingCoefficient', :float) - @interior_shading_factor_winter, @interior_shading_factor_winter_isdefaulted = XMLHelper.get_value_and_defaulted(window, 'InteriorShading/WinterShadingCoefficient', :float) - @exterior_shading = XMLHelper.get_value(window, 'ExteriorShading/Type', :string) + @exterior_shading_type = XMLHelper.get_value(window, 'ExteriorShading/Type', :string) + @exterior_shading_factor_summer = XMLHelper.get_value(window, 'ExteriorShading/SummerShadingCoefficient', :float) + @exterior_shading_factor_winter = XMLHelper.get_value(window, 'ExteriorShading/WinterShadingCoefficient', :float) + @interior_shading_type = XMLHelper.get_value(window, 'InteriorShading/Type', :string) + @interior_shading_factor_summer = XMLHelper.get_value(window, 'InteriorShading/SummerShadingCoefficient', :float) + @interior_shading_factor_winter = XMLHelper.get_value(window, 'InteriorShading/WinterShadingCoefficient', :float) @overhangs_depth = XMLHelper.get_value(window, 'Overhangs/Depth', :float) @overhangs_distance_to_top_of_window = XMLHelper.get_value(window, 'Overhangs/DistanceToTopOfWindow', :float) @overhangs_distance_to_bottom_of_window = XMLHelper.get_value(window, 'Overhangs/DistanceToBottomOfWindow', :float) - @fraction_operable, @fraction_operable_isdefaulted = XMLHelper.get_value_and_defaulted(window, 'FractionOperable', :float) + @fraction_operable = XMLHelper.get_value(window, 'FractionOperable', :float) @wall_idref = HPXML::get_idref(XMLHelper.get_element(window, 'AttachedToWall')) end end @@ -2331,7 +2430,8 @@ def from_oga(hpxml) class Skylight < BaseElement ATTRS = [:id, :area, :azimuth, :orientation, :frame_type, :aluminum_thermal_break, :glass_layers, :glass_type, :gas_fill, :ufactor, :shgc, :interior_shading_factor_summer, - :interior_shading_factor_winter, :exterior_shading, :roof_idref] + :interior_shading_factor_winter, :interior_shading_type, :exterior_shading_factor_summer, + :exterior_shading_factor_winter, :exterior_shading_type, :roof_idref] attr_accessor(*ATTRS) def roof @@ -2380,12 +2480,32 @@ def to_oga(doc) XMLHelper.add_attribute(sys_id, 'id', @id) XMLHelper.add_element(skylight, 'Area', @area, :float) unless @area.nil? XMLHelper.add_element(skylight, 'Azimuth', @azimuth, :integer) unless @azimuth.nil? + XMLHelper.add_element(skylight, 'Orientation', @orientation, :string) unless @orientation.nil? + if not @frame_type.nil? + frame_type_el = XMLHelper.add_element(skylight, 'FrameType') + frame_type = XMLHelper.add_element(frame_type_el, @frame_type) + if @frame_type == HPXML::WindowFrameTypeAluminum + XMLHelper.add_element(frame_type, 'ThermalBreak', @aluminum_thermal_break, :boolean) unless @aluminum_thermal_break.nil? + end + end + XMLHelper.add_element(skylight, 'GlassLayers', @glass_layers, :string) unless @glass_layers.nil? + XMLHelper.add_element(skylight, 'GlassType', @glass_type, :string) unless @glass_type.nil? + XMLHelper.add_element(skylight, 'GasFill', @gas_fill, :string) unless @gas_fill.nil? XMLHelper.add_element(skylight, 'UFactor', @ufactor, :float) unless @ufactor.nil? XMLHelper.add_element(skylight, 'SHGC', @shgc, :float) unless @shgc.nil? - if (not @interior_shading_factor_summer.nil?) || (not @interior_shading_factor_winter.nil?) + if (not @exterior_shading_type.nil?) || (not @exterior_shading_factor_summer.nil?) || (not @exterior_shading_factor_winter.nil?) + exterior_shading = XMLHelper.add_element(skylight, 'ExteriorShading') + sys_id = XMLHelper.add_element(exterior_shading, 'SystemIdentifier') + XMLHelper.add_attribute(sys_id, 'id', "#{id}ExteriorShading") + XMLHelper.add_element(exterior_shading, 'Type', @exterior_shading_type, :string) unless @exterior_shading_type.nil? + XMLHelper.add_element(exterior_shading, 'SummerShadingCoefficient', @exterior_shading_factor_summer, :float, @exterior_shading_factor_summer_isdefaulted) unless @exterior_shading_factor_summer.nil? + XMLHelper.add_element(exterior_shading, 'WinterShadingCoefficient', @exterior_shading_factor_winter, :float, @exterior_shading_factor_winter_isdefaulted) unless @exterior_shading_factor_winter.nil? + end + if (not @interior_shading_type.nil?) || (not @interior_shading_factor_summer.nil?) || (not @interior_shading_factor_winter.nil?) interior_shading = XMLHelper.add_element(skylight, 'InteriorShading') sys_id = XMLHelper.add_element(interior_shading, 'SystemIdentifier') XMLHelper.add_attribute(sys_id, 'id', "#{id}InteriorShading") + XMLHelper.add_element(interior_shading, 'Type', @interior_shading_type, :string) unless @interior_shading_type.nil? XMLHelper.add_element(interior_shading, 'SummerShadingCoefficient', @interior_shading_factor_summer, :float, @interior_shading_factor_summer_isdefaulted) unless @interior_shading_factor_summer.nil? XMLHelper.add_element(interior_shading, 'WinterShadingCoefficient', @interior_shading_factor_winter, :float, @interior_shading_factor_winter_isdefaulted) unless @interior_shading_factor_winter.nil? end @@ -2409,9 +2529,12 @@ def from_oga(skylight) @gas_fill = XMLHelper.get_value(skylight, 'GasFill', :string) @ufactor = XMLHelper.get_value(skylight, 'UFactor', :float) @shgc = XMLHelper.get_value(skylight, 'SHGC', :float) - @interior_shading_factor_summer, @interior_shading_factor_summer_isdefaulted = XMLHelper.get_value_and_defaulted(skylight, 'InteriorShading/SummerShadingCoefficient', :float) - @interior_shading_factor_winter, @interior_shading_factor_winter_isdefaulted = XMLHelper.get_value_and_defaulted(skylight, 'InteriorShading/WinterShadingCoefficient', :float) - @exterior_shading = XMLHelper.get_value(skylight, 'ExteriorShading/Type', :string) + @exterior_shading_type = XMLHelper.get_value(skylight, 'ExteriorShading/Type', :string) + @exterior_shading_factor_summer = XMLHelper.get_value(skylight, 'ExteriorShading/SummerShadingCoefficient', :float) + @exterior_shading_factor_winter = XMLHelper.get_value(skylight, 'ExteriorShading/WinterShadingCoefficient', :float) + @interior_shading_type = XMLHelper.get_value(skylight, 'InteriorShading/Type', :string) + @interior_shading_factor_summer = XMLHelper.get_value(skylight, 'InteriorShading/SummerShadingCoefficient', :float) + @interior_shading_factor_winter = XMLHelper.get_value(skylight, 'InteriorShading/WinterShadingCoefficient', :float) @roof_idref = HPXML::get_idref(XMLHelper.get_element(skylight, 'AttachedToRoof')) end end @@ -2431,7 +2554,7 @@ def from_oga(hpxml) end class Door < BaseElement - ATTRS = [:id, :wall_idref, :area, :azimuth, :r_value] + ATTRS = [:id, :wall_idref, :area, :azimuth, :orientation, :r_value] attr_accessor(*ATTRS) def wall @@ -2484,6 +2607,7 @@ def to_oga(doc) end XMLHelper.add_element(door, 'Area', @area, :float) unless @area.nil? XMLHelper.add_element(door, 'Azimuth', @azimuth, :integer) unless @azimuth.nil? + XMLHelper.add_element(door, 'Orientation', @orientation, :string) unless @orientation.nil? XMLHelper.add_element(door, 'RValue', @r_value, :float) unless @r_value.nil? end @@ -2494,6 +2618,7 @@ def from_oga(door) @wall_idref = HPXML::get_idref(XMLHelper.get_element(door, 'AttachedToWall')) @area = XMLHelper.get_value(door, 'Area', :float) @azimuth = XMLHelper.get_value(door, 'Azimuth', :integer) + @orientation = XMLHelper.get_value(door, 'Orientation', :string) @r_value = XMLHelper.get_value(door, 'RValue', :float) end end @@ -2520,9 +2645,10 @@ class HeatingSystem < BaseElement ATTRS = [:id, :distribution_system_idref, :year_installed, :heating_system_type, :heating_system_fuel, :heating_capacity, :heating_efficiency_afue, :heating_efficiency_percent, :fraction_heat_load_served, :electric_auxiliary_energy, - :energy_star, :seed_id, :is_shared_system, :number_of_units_served, - :shared_loop_watts, :fan_coil_watts, :wlhp_heating_efficiency_cop, :fan_watts_per_cfm, - :fan_watts] + :third_party_certification, :seed_id, :is_shared_system, :number_of_units_served, + :shared_loop_watts, :fan_coil_watts, :fan_watts_per_cfm, + :fan_power_not_tested, :airflow_defect_ratio, :airflow_not_tested, + :fan_watts, :heating_airflow_cfm] attr_accessor(*ATTRS) def distribution_system @@ -2569,6 +2695,8 @@ def to_oga(doc) heating_system = XMLHelper.add_element(hvac_plant, 'HeatingSystem') sys_id = XMLHelper.add_element(heating_system, 'SystemIdentifier') XMLHelper.add_attribute(sys_id, 'id', @id) + XMLHelper.add_element(heating_system, 'YearInstalled', @year_installed, :integer) unless @year_installed.nil? + XMLHelper.add_element(heating_system, 'ThirdPartyCertification', @third_party_certification, :string) unless @third_party_certification.nil? if not @distribution_system_idref.nil? distribution_system = XMLHelper.add_element(heating_system, 'DistributionSystem') XMLHelper.add_attribute(distribution_system, 'idref', @distribution_system_idref) @@ -2576,11 +2704,11 @@ def to_oga(doc) XMLHelper.add_element(heating_system, 'IsSharedSystem', @is_shared_system, :boolean) unless @is_shared_system.nil? XMLHelper.add_element(heating_system, 'NumberofUnitsServed', @number_of_units_served, :integer) unless @number_of_units_served.nil? if not @heating_system_type.nil? - heating_system_type_e = XMLHelper.add_element(heating_system, 'HeatingSystemType') - XMLHelper.add_element(heating_system_type_e, @heating_system_type) + heating_system_type_el = XMLHelper.add_element(heating_system, 'HeatingSystemType') + XMLHelper.add_element(heating_system_type_el, @heating_system_type) end XMLHelper.add_element(heating_system, 'HeatingSystemFuel', @heating_system_fuel, :string) unless @heating_system_fuel.nil? - XMLHelper.add_element(heating_system, 'HeatingCapacity', @heating_capacity, :float) unless @heating_capacity.nil? + XMLHelper.add_element(heating_system, 'HeatingCapacity', @heating_capacity, :float, @heating_capacity_isdefaulted) unless @heating_capacity.nil? efficiency_units = nil efficiency_value = nil @@ -2596,27 +2724,26 @@ def to_oga(doc) XMLHelper.add_element(annual_efficiency, 'Units', efficiency_units, :string) XMLHelper.add_element(annual_efficiency, 'Value', efficiency_value, :float) end - XMLHelper.add_element(heating_system, 'FractionHeatLoadServed', @fraction_heat_load_served, :float) unless @fraction_heat_load_served.nil? + XMLHelper.add_element(heating_system, 'FractionHeatLoadServed', @fraction_heat_load_served, :float, @fraction_heat_load_served_isdefaulted) unless @fraction_heat_load_served.nil? XMLHelper.add_element(heating_system, 'ElectricAuxiliaryEnergy', @electric_auxiliary_energy, :float, @electric_auxiliary_energy_isdefaulted) unless @electric_auxiliary_energy.nil? XMLHelper.add_extension(heating_system, 'SharedLoopWatts', @shared_loop_watts, :float) unless @shared_loop_watts.nil? XMLHelper.add_extension(heating_system, 'FanCoilWatts', @fan_coil_watts, :float) unless @fan_coil_watts.nil? XMLHelper.add_extension(heating_system, 'FanPowerWattsPerCFM', @fan_watts_per_cfm, :float, @fan_watts_per_cfm_isdefaulted) unless @fan_watts_per_cfm.nil? XMLHelper.add_extension(heating_system, 'FanPowerWatts', @fan_watts, :float, @fan_watts_isdefaulted) unless @fan_watts.nil? + XMLHelper.add_extension(heating_system, 'FanPowerNotTested', @fan_power_not_tested, :boolean) unless @fan_power_not_tested.nil? + XMLHelper.add_extension(heating_system, 'AirflowDefectRatio', @airflow_defect_ratio, :float, @airflow_defect_ratio_isdefaulted) unless @airflow_defect_ratio.nil? + XMLHelper.add_extension(heating_system, 'AirflowNotTested', @airflow_not_tested, :boolean) unless @airflow_not_tested.nil? + XMLHelper.add_extension(heating_system, 'HeatingAirflowCFM', @heating_airflow_cfm, :float, @heating_airflow_cfm_isdefaulted) unless @heating_airflow_cfm.nil? XMLHelper.add_extension(heating_system, 'SeedId', @seed_id, :string) unless @seed_id.nil? - if not @wlhp_heating_efficiency_cop.nil? - wlhp = XMLHelper.create_elements_as_needed(heating_system, ['extension', 'WaterLoopHeatPump']) - annual_efficiency = XMLHelper.add_element(wlhp, 'AnnualHeatingEfficiency') - XMLHelper.add_element(annual_efficiency, 'Units', UnitsCOP, :string) - XMLHelper.add_element(annual_efficiency, 'Value', @wlhp_heating_efficiency_cop, :float) - end end def from_oga(heating_system) return if heating_system.nil? @id = HPXML::get_id(heating_system) - @distribution_system_idref = HPXML::get_idref(XMLHelper.get_element(heating_system, 'DistributionSystem')) @year_installed = XMLHelper.get_value(heating_system, 'YearInstalled', :integer) + @third_party_certification = XMLHelper.get_value(heating_system, 'ThirdPartyCertification', :string) + @distribution_system_idref = HPXML::get_idref(XMLHelper.get_element(heating_system, 'DistributionSystem')) @is_shared_system = XMLHelper.get_value(heating_system, 'IsSharedSystem', :boolean) @number_of_units_served = XMLHelper.get_value(heating_system, 'NumberofUnitsServed', :integer) @heating_system_type = XMLHelper.get_child_name(heating_system, 'HeatingSystemType') @@ -2628,14 +2755,16 @@ def from_oga(heating_system) @heating_efficiency_percent = XMLHelper.get_value(heating_system, "AnnualHeatingEfficiency[Units='Percent']/Value", :float) end @fraction_heat_load_served = XMLHelper.get_value(heating_system, 'FractionHeatLoadServed', :float) - @electric_auxiliary_energy, @electric_auxiliary_energy_isdefaulted = XMLHelper.get_value_and_defaulted(heating_system, 'ElectricAuxiliaryEnergy', :float) - @energy_star = XMLHelper.get_values(heating_system, 'ThirdPartyCertification', :string).include?('Energy Star') - @seed_id = XMLHelper.get_value(heating_system, 'extension/SeedId', :string) - @fan_watts_per_cfm, @fan_watts_per_cfm_isdefaulted = XMLHelper.get_value_and_defaulted(heating_system, 'extension/FanPowerWattsPerCFM', :float) - @fan_watts, @fan_watts_isdefaulted = XMLHelper.get_value_and_defaulted(heating_system, 'extension/FanPowerWatts', :float) + @electric_auxiliary_energy = XMLHelper.get_value(heating_system, 'ElectricAuxiliaryEnergy', :float) @shared_loop_watts = XMLHelper.get_value(heating_system, 'extension/SharedLoopWatts', :float) @fan_coil_watts = XMLHelper.get_value(heating_system, 'extension/FanCoilWatts', :float) - @wlhp_heating_efficiency_cop = XMLHelper.get_value(heating_system, "extension/WaterLoopHeatPump/AnnualHeatingEfficiency[Units='#{UnitsCOP}']/Value", :float) + @fan_watts_per_cfm = XMLHelper.get_value(heating_system, 'extension/FanPowerWattsPerCFM', :float) + @fan_watts = XMLHelper.get_value(heating_system, 'extension/FanPowerWatts', :float) + @fan_power_not_tested = XMLHelper.get_value(heating_system, 'extension/FanPowerNotTested', :boolean) + @airflow_defect_ratio = XMLHelper.get_value(heating_system, 'extension/AirflowDefectRatio', :float) + @airflow_not_tested = XMLHelper.get_value(heating_system, 'extension/AirflowNotTested', :boolean) + @heating_airflow_cfm = XMLHelper.get_value(heating_system, 'extension/HeatingAirflowCFM', :float) + @seed_id = XMLHelper.get_value(heating_system, 'extension/SeedId', :string) end end @@ -2661,9 +2790,10 @@ class CoolingSystem < BaseElement ATTRS = [:id, :distribution_system_idref, :year_installed, :cooling_system_type, :cooling_system_fuel, :cooling_capacity, :compressor_type, :fraction_cool_load_served, :cooling_efficiency_seer, :cooling_efficiency_eer, :cooling_efficiency_kw_per_ton, - :cooling_shr, :energy_star, :seed_id, :is_shared_system, - :number_of_units_served, :shared_loop_watts, :fan_coil_watts, :wlhp_cooling_capacity, - :wlhp_cooling_efficiency_eer, :fan_watts_per_cfm] + :cooling_shr, :third_party_certification, :seed_id, :is_shared_system, :number_of_units_served, + :shared_loop_watts, :fan_coil_watts, :airflow_defect_ratio, :fan_watts_per_cfm, + :fan_power_not_tested, :airflow_not_tested, :charge_defect_ratio, :charge_not_tested, + :cooling_airflow_cfm] attr_accessor(*ATTRS) def distribution_system @@ -2710,6 +2840,8 @@ def to_oga(doc) cooling_system = XMLHelper.add_element(hvac_plant, 'CoolingSystem') sys_id = XMLHelper.add_element(cooling_system, 'SystemIdentifier') XMLHelper.add_attribute(sys_id, 'id', @id) + XMLHelper.add_element(cooling_system, 'YearInstalled', @year_installed, :integer) unless @year_installed.nil? + XMLHelper.add_element(cooling_system, 'ThirdPartyCertification', @third_party_certification, :string) unless @third_party_certification.nil? if not @distribution_system_idref.nil? distribution_system = XMLHelper.add_element(cooling_system, 'DistributionSystem') XMLHelper.add_attribute(distribution_system, 'idref', @distribution_system_idref) @@ -2718,9 +2850,9 @@ def to_oga(doc) XMLHelper.add_element(cooling_system, 'NumberofUnitsServed', @number_of_units_served, :integer) unless @number_of_units_served.nil? XMLHelper.add_element(cooling_system, 'CoolingSystemType', @cooling_system_type, :string) unless @cooling_system_type.nil? XMLHelper.add_element(cooling_system, 'CoolingSystemFuel', @cooling_system_fuel, :string) unless @cooling_system_fuel.nil? - XMLHelper.add_element(cooling_system, 'CoolingCapacity', @cooling_capacity, :float) unless @cooling_capacity.nil? + XMLHelper.add_element(cooling_system, 'CoolingCapacity', @cooling_capacity, :float, @cooling_capacity_isdefaulted) unless @cooling_capacity.nil? XMLHelper.add_element(cooling_system, 'CompressorType', @compressor_type, :string, @compressor_type_isdefaulted) unless @compressor_type.nil? - XMLHelper.add_element(cooling_system, 'FractionCoolLoadServed', @fraction_cool_load_served, :float) unless @fraction_cool_load_served.nil? + XMLHelper.add_element(cooling_system, 'FractionCoolLoadServed', @fraction_cool_load_served, :float, @fraction_cool_load_served_isdefaulted) unless @fraction_cool_load_served.nil? efficiency_units = nil efficiency_value = nil @@ -2740,33 +2872,31 @@ def to_oga(doc) XMLHelper.add_element(annual_efficiency, 'Value', efficiency_value, :float) end XMLHelper.add_element(cooling_system, 'SensibleHeatFraction', @cooling_shr, :float, @cooling_shr_isdefaulted) unless @cooling_shr.nil? + XMLHelper.add_extension(cooling_system, 'AirflowDefectRatio', @airflow_defect_ratio, :float, @airflow_defect_ratio_isdefaulted) unless @airflow_defect_ratio.nil? + XMLHelper.add_extension(cooling_system, 'ChargeDefectRatio', @charge_defect_ratio, :float, @charge_defect_ratio_isdefaulted) unless @charge_defect_ratio.nil? + XMLHelper.add_extension(cooling_system, 'ChargeNotTested', @charge_not_tested, :boolean) unless @charge_not_tested.nil? XMLHelper.add_extension(cooling_system, 'FanPowerWattsPerCFM', @fan_watts_per_cfm, :float, @fan_watts_per_cfm_isdefaulted) unless @fan_watts_per_cfm.nil? + XMLHelper.add_extension(cooling_system, 'FanPowerNotTested', @fan_power_not_tested, :boolean) unless @fan_power_not_tested.nil? + XMLHelper.add_extension(cooling_system, 'AirflowNotTested', @airflow_not_tested, :boolean) unless @airflow_not_tested.nil? + XMLHelper.add_extension(cooling_system, 'CoolingAirflowCFM', @cooling_airflow_cfm, :float, @cooling_airflow_cfm_isdefaulted) unless @cooling_airflow_cfm.nil? XMLHelper.add_extension(cooling_system, 'SharedLoopWatts', @shared_loop_watts, :float) unless @shared_loop_watts.nil? XMLHelper.add_extension(cooling_system, 'FanCoilWatts', @fan_coil_watts, :float) unless @fan_coil_watts.nil? XMLHelper.add_extension(cooling_system, 'SeedId', @seed_id, :string) unless @seed_id.nil? - if (not @wlhp_cooling_capacity.nil?) || (not @wlhp_cooling_efficiency_eer.nil?) - wlhp = XMLHelper.create_elements_as_needed(cooling_system, ['extension', 'WaterLoopHeatPump']) - XMLHelper.add_element(wlhp, 'CoolingCapacity', @wlhp_cooling_capacity, :float) unless @wlhp_cooling_capacity.nil? - if not @wlhp_cooling_efficiency_eer.nil? - annual_efficiency = XMLHelper.add_element(wlhp, 'AnnualCoolingEfficiency') - XMLHelper.add_element(annual_efficiency, 'Units', UnitsEER, :string) - XMLHelper.add_element(annual_efficiency, 'Value', @wlhp_cooling_efficiency_eer, :float) - end - end end def from_oga(cooling_system) return if cooling_system.nil? @id = HPXML::get_id(cooling_system) - @distribution_system_idref = HPXML::get_idref(XMLHelper.get_element(cooling_system, 'DistributionSystem')) @year_installed = XMLHelper.get_value(cooling_system, 'YearInstalled', :integer) + @third_party_certification = XMLHelper.get_value(cooling_system, 'ThirdPartyCertification', :string) + @distribution_system_idref = HPXML::get_idref(XMLHelper.get_element(cooling_system, 'DistributionSystem')) @is_shared_system = XMLHelper.get_value(cooling_system, 'IsSharedSystem', :boolean) @number_of_units_served = XMLHelper.get_value(cooling_system, 'NumberofUnitsServed', :integer) @cooling_system_type = XMLHelper.get_value(cooling_system, 'CoolingSystemType', :string) @cooling_system_fuel = XMLHelper.get_value(cooling_system, 'CoolingSystemFuel', :string) @cooling_capacity = XMLHelper.get_value(cooling_system, 'CoolingCapacity', :float) - @compressor_type, @compressor_type_isdefaulted = XMLHelper.get_value_and_defaulted(cooling_system, 'CompressorType', :string) + @compressor_type = XMLHelper.get_value(cooling_system, 'CompressorType', :string) @fraction_cool_load_served = XMLHelper.get_value(cooling_system, 'FractionCoolLoadServed', :float) if [HVACTypeCentralAirConditioner, HVACTypeMiniSplitAirConditioner].include? @cooling_system_type @cooling_efficiency_seer = XMLHelper.get_value(cooling_system, "AnnualCoolingEfficiency[Units='#{UnitsSEER}']/Value", :float) @@ -2775,14 +2905,17 @@ def from_oga(cooling_system) elsif [HVACTypeChiller].include? @cooling_system_type @cooling_efficiency_kw_per_ton = XMLHelper.get_value(cooling_system, "AnnualCoolingEfficiency[Units='#{UnitsKwPerTon}']/Value", :float) end - @cooling_shr, @cooling_shr_isdefaulted = XMLHelper.get_value_and_defaulted(cooling_system, 'SensibleHeatFraction', :float) - @energy_star = XMLHelper.get_values(cooling_system, 'ThirdPartyCertification', :string).include?('Energy Star') - @seed_id = XMLHelper.get_value(cooling_system, 'extension/SeedId', :string) - @fan_watts_per_cfm, @fan_watts_per_cfm_isdefaulted = XMLHelper.get_value_and_defaulted(cooling_system, 'extension/FanPowerWattsPerCFM', :float) + @cooling_shr = XMLHelper.get_value(cooling_system, 'SensibleHeatFraction', :float) + @airflow_defect_ratio = XMLHelper.get_value(cooling_system, 'extension/AirflowDefectRatio', :float) + @charge_defect_ratio = XMLHelper.get_value(cooling_system, 'extension/ChargeDefectRatio', :float) + @charge_not_tested = XMLHelper.get_value(cooling_system, 'extension/ChargeNotTested', :boolean) + @fan_watts_per_cfm = XMLHelper.get_value(cooling_system, 'extension/FanPowerWattsPerCFM', :float) + @fan_power_not_tested = XMLHelper.get_value(cooling_system, 'extension/FanPowerNotTested', :boolean) + @airflow_not_tested = XMLHelper.get_value(cooling_system, 'extension/AirflowNotTested', :boolean) + @cooling_airflow_cfm = XMLHelper.get_value(cooling_system, 'extension/CoolingAirflowCFM', :float) @shared_loop_watts = XMLHelper.get_value(cooling_system, 'extension/SharedLoopWatts', :float) @fan_coil_watts = XMLHelper.get_value(cooling_system, 'extension/FanCoilWatts', :float) - @wlhp_cooling_capacity = XMLHelper.get_value(cooling_system, 'extension/WaterLoopHeatPump/CoolingCapacity', :float) - @wlhp_cooling_efficiency_eer = XMLHelper.get_value(cooling_system, "extension/WaterLoopHeatPump/AnnualCoolingEfficiency[Units='#{UnitsEER}']/Value", :float) + @seed_id = XMLHelper.get_value(cooling_system, 'extension/SeedId', :string) end end @@ -2815,8 +2948,10 @@ class HeatPump < BaseElement :backup_heating_efficiency_percent, :backup_heating_efficiency_afue, :backup_heating_switchover_temp, :fraction_heat_load_served, :fraction_cool_load_served, :cooling_efficiency_seer, :cooling_efficiency_eer, :heating_efficiency_hspf, - :heating_efficiency_cop, :energy_star, :seed_id, :pump_watts_per_ton, :fan_watts_per_cfm, - :is_shared_system, :number_of_units_served, :shared_loop_watts] + :heating_efficiency_cop, :third_party_certification, :seed_id, :pump_watts_per_ton, + :fan_watts_per_cfm, :fan_power_not_tested, :is_shared_system, :number_of_units_served, + :shared_loop_watts, :airflow_defect_ratio, :airflow_not_tested, :charge_defect_ratio, + :charge_not_tested, :heating_airflow_cfm, :cooling_airflow_cfm] attr_accessor(*ATTRS) def distribution_system @@ -2852,6 +2987,8 @@ def to_oga(doc) heat_pump = XMLHelper.add_element(hvac_plant, 'HeatPump') sys_id = XMLHelper.add_element(heat_pump, 'SystemIdentifier') XMLHelper.add_attribute(sys_id, 'id', @id) + XMLHelper.add_element(heat_pump, 'YearInstalled', @year_installed, :integer) unless @year_installed.nil? + XMLHelper.add_element(heat_pump, 'ThirdPartyCertification', @third_party_certification, :string) unless @third_party_certification.nil? if not @distribution_system_idref.nil? distribution_system = XMLHelper.add_element(heat_pump, 'DistributionSystem') XMLHelper.add_attribute(distribution_system, 'idref', @distribution_system_idref) @@ -2860,27 +2997,25 @@ def to_oga(doc) XMLHelper.add_element(heat_pump, 'NumberofUnitsServed', @number_of_units_served, :integer) unless @number_of_units_served.nil? XMLHelper.add_element(heat_pump, 'HeatPumpType', @heat_pump_type, :string) unless @heat_pump_type.nil? XMLHelper.add_element(heat_pump, 'HeatPumpFuel', @heat_pump_fuel, :string) unless @heat_pump_fuel.nil? - XMLHelper.add_element(heat_pump, 'HeatingCapacity', @heating_capacity, :float) unless @heating_capacity.nil? + XMLHelper.add_element(heat_pump, 'HeatingCapacity', @heating_capacity, :float, @heating_capacity_isdefaulted) unless @heating_capacity.nil? XMLHelper.add_element(heat_pump, 'HeatingCapacity17F', @heating_capacity_17F, :float) unless @heating_capacity_17F.nil? - XMLHelper.add_element(heat_pump, 'CoolingCapacity', @cooling_capacity, :float) unless @cooling_capacity.nil? + XMLHelper.add_element(heat_pump, 'CoolingCapacity', @cooling_capacity, :float, @cooling_capacity_isdefaulted) unless @cooling_capacity.nil? XMLHelper.add_element(heat_pump, 'CompressorType', @compressor_type, :string, @compressor_type_isdefaulted) unless @compressor_type.nil? XMLHelper.add_element(heat_pump, 'CoolingSensibleHeatFraction', @cooling_shr, :float, @cooling_shr_isdefaulted) unless @cooling_shr.nil? - if not @backup_heating_fuel.nil? - XMLHelper.add_element(heat_pump, 'BackupSystemFuel', @backup_heating_fuel, :string) - efficiencies = { 'Percent' => @backup_heating_efficiency_percent, - UnitsAFUE => @backup_heating_efficiency_afue } - efficiencies.each do |units, value| - next if value.nil? - - backup_eff = XMLHelper.add_element(heat_pump, 'BackupAnnualHeatingEfficiency') - XMLHelper.add_element(backup_eff, 'Units', units, :string) - XMLHelper.add_element(backup_eff, 'Value', value, :float) - end - XMLHelper.add_element(heat_pump, 'BackupHeatingCapacity', @backup_heating_capacity, :float) unless @backup_heating_capacity.nil? - XMLHelper.add_element(heat_pump, 'BackupHeatingSwitchoverTemperature', @backup_heating_switchover_temp, :float) unless @backup_heating_switchover_temp.nil? + XMLHelper.add_element(heat_pump, 'BackupSystemFuel', @backup_heating_fuel, :string) unless @backup_heating_fuel.nil? + efficiencies = { 'Percent' => @backup_heating_efficiency_percent, + UnitsAFUE => @backup_heating_efficiency_afue } + efficiencies.each do |units, value| + next if value.nil? + + backup_eff = XMLHelper.add_element(heat_pump, 'BackupAnnualHeatingEfficiency') + XMLHelper.add_element(backup_eff, 'Units', units, :string) + XMLHelper.add_element(backup_eff, 'Value', value, :float) end - XMLHelper.add_element(heat_pump, 'FractionHeatLoadServed', @fraction_heat_load_served, :float) unless @fraction_heat_load_served.nil? - XMLHelper.add_element(heat_pump, 'FractionCoolLoadServed', @fraction_cool_load_served, :float) unless @fraction_cool_load_served.nil? + XMLHelper.add_element(heat_pump, 'BackupHeatingCapacity', @backup_heating_capacity, :float, @backup_heating_capacity_isdefaulted) unless @backup_heating_capacity.nil? + XMLHelper.add_element(heat_pump, 'BackupHeatingSwitchoverTemperature', @backup_heating_switchover_temp, :float) unless @backup_heating_switchover_temp.nil? + XMLHelper.add_element(heat_pump, 'FractionHeatLoadServed', @fraction_heat_load_served, :float, @fraction_heat_load_served_isdefaulted) unless @fraction_heat_load_served.nil? + XMLHelper.add_element(heat_pump, 'FractionCoolLoadServed', @fraction_cool_load_served, :float, @fraction_cool_load_served_isdefaulted) unless @fraction_cool_load_served.nil? clg_efficiency_units = nil clg_efficiency_value = nil @@ -2891,7 +3026,7 @@ def to_oga(doc) clg_efficiency_value = @cooling_efficiency_seer htg_efficiency_units = UnitsHSPF htg_efficiency_value = @heating_efficiency_hspf - elsif [HVACTypeHeatPumpGroundToAir].include? @heat_pump_type + elsif [HVACTypeHeatPumpGroundToAir, HVACTypeHeatPumpWaterLoopToAir].include? @heat_pump_type clg_efficiency_units = UnitsEER clg_efficiency_value = @cooling_efficiency_eer htg_efficiency_units = UnitsCOP @@ -2907,7 +3042,14 @@ def to_oga(doc) XMLHelper.add_element(annual_efficiency, 'Units', htg_efficiency_units, :string) XMLHelper.add_element(annual_efficiency, 'Value', htg_efficiency_value, :float) end + XMLHelper.add_extension(heat_pump, 'AirflowDefectRatio', @airflow_defect_ratio, :float, @airflow_defect_ratio_isdefaulted) unless @airflow_defect_ratio.nil? + XMLHelper.add_extension(heat_pump, 'ChargeDefectRatio', @charge_defect_ratio, :float, @charge_defect_ratio_isdefaulted) unless @charge_defect_ratio.nil? + XMLHelper.add_extension(heat_pump, 'ChargeNotTested', @charge_not_tested, :boolean) unless @charge_not_tested.nil? XMLHelper.add_extension(heat_pump, 'FanPowerWattsPerCFM', @fan_watts_per_cfm, :float, @fan_watts_per_cfm_isdefaulted) unless @fan_watts_per_cfm.nil? + XMLHelper.add_extension(heat_pump, 'FanPowerNotTested', @fan_power_not_tested, :boolean) unless @fan_power_not_tested.nil? + XMLHelper.add_extension(heat_pump, 'AirflowNotTested', @airflow_not_tested, :boolean) unless @airflow_not_tested.nil? + XMLHelper.add_extension(heat_pump, 'HeatingAirflowCFM', @heating_airflow_cfm, :float, @heating_airflow_cfm_isdefaulted) unless @heating_airflow_cfm.nil? + XMLHelper.add_extension(heat_pump, 'CoolingAirflowCFM', @cooling_airflow_cfm, :float, @cooling_airflow_cfm_isdefaulted) unless @cooling_airflow_cfm.nil? XMLHelper.add_extension(heat_pump, 'PumpPowerWattsPerTon', @pump_watts_per_ton, :float, @pump_watts_per_ton_isdefaulted) unless @pump_watts_per_ton.nil? XMLHelper.add_extension(heat_pump, 'SharedLoopWatts', @shared_loop_watts, :float) unless @shared_loop_watts.nil? XMLHelper.add_extension(heat_pump, 'SeedId', @seed_id, :string) unless @seed_id.nil? @@ -2917,8 +3059,9 @@ def from_oga(heat_pump) return if heat_pump.nil? @id = HPXML::get_id(heat_pump) - @distribution_system_idref = HPXML::get_idref(XMLHelper.get_element(heat_pump, 'DistributionSystem')) @year_installed = XMLHelper.get_value(heat_pump, 'YearInstalled', :integer) + @third_party_certification = XMLHelper.get_value(heat_pump, 'ThirdPartyCertification', :string) + @distribution_system_idref = HPXML::get_idref(XMLHelper.get_element(heat_pump, 'DistributionSystem')) @is_shared_system = XMLHelper.get_value(heat_pump, 'IsSharedSystem', :boolean) @number_of_units_served = XMLHelper.get_value(heat_pump, 'NumberofUnitsServed', :integer) @heat_pump_type = XMLHelper.get_value(heat_pump, 'HeatPumpType', :string) @@ -2926,30 +3069,112 @@ def from_oga(heat_pump) @heating_capacity = XMLHelper.get_value(heat_pump, 'HeatingCapacity', :float) @heating_capacity_17F = XMLHelper.get_value(heat_pump, 'HeatingCapacity17F', :float) @cooling_capacity = XMLHelper.get_value(heat_pump, 'CoolingCapacity', :float) - @compressor_type, @compressor_type_isdefaulted = XMLHelper.get_value_and_defaulted(heat_pump, 'CompressorType', :string) - @cooling_shr, @cooling_shr_isdefaulted = XMLHelper.get_value_and_defaulted(heat_pump, 'CoolingSensibleHeatFraction', :float) + @compressor_type = XMLHelper.get_value(heat_pump, 'CompressorType', :string) + @cooling_shr = XMLHelper.get_value(heat_pump, 'CoolingSensibleHeatFraction', :float) @backup_heating_fuel = XMLHelper.get_value(heat_pump, 'BackupSystemFuel', :string) - @backup_heating_capacity = XMLHelper.get_value(heat_pump, 'BackupHeatingCapacity', :float) @backup_heating_efficiency_percent = XMLHelper.get_value(heat_pump, "BackupAnnualHeatingEfficiency[Units='Percent']/Value", :float) @backup_heating_efficiency_afue = XMLHelper.get_value(heat_pump, "BackupAnnualHeatingEfficiency[Units='#{UnitsAFUE}']/Value", :float) + @backup_heating_capacity = XMLHelper.get_value(heat_pump, 'BackupHeatingCapacity', :float) @backup_heating_switchover_temp = XMLHelper.get_value(heat_pump, 'BackupHeatingSwitchoverTemperature', :float) @fraction_heat_load_served = XMLHelper.get_value(heat_pump, 'FractionHeatLoadServed', :float) @fraction_cool_load_served = XMLHelper.get_value(heat_pump, 'FractionCoolLoadServed', :float) if [HVACTypeHeatPumpAirToAir, HVACTypeHeatPumpMiniSplit].include? @heat_pump_type @cooling_efficiency_seer = XMLHelper.get_value(heat_pump, "AnnualCoolingEfficiency[Units='#{UnitsSEER}']/Value", :float) - elsif [HVACTypeHeatPumpGroundToAir].include? @heat_pump_type + elsif [HVACTypeHeatPumpGroundToAir, HVACTypeHeatPumpWaterLoopToAir].include? @heat_pump_type @cooling_efficiency_eer = XMLHelper.get_value(heat_pump, "AnnualCoolingEfficiency[Units='#{UnitsEER}']/Value", :float) end if [HVACTypeHeatPumpAirToAir, HVACTypeHeatPumpMiniSplit].include? @heat_pump_type @heating_efficiency_hspf = XMLHelper.get_value(heat_pump, "AnnualHeatingEfficiency[Units='#{UnitsHSPF}']/Value", :float) - elsif [HVACTypeHeatPumpGroundToAir].include? @heat_pump_type + elsif [HVACTypeHeatPumpGroundToAir, HVACTypeHeatPumpWaterLoopToAir].include? @heat_pump_type @heating_efficiency_cop = XMLHelper.get_value(heat_pump, "AnnualHeatingEfficiency[Units='#{UnitsCOP}']/Value", :float) end - @energy_star = XMLHelper.get_values(heat_pump, 'ThirdPartyCertification', :string).include?('Energy Star') - @pump_watts_per_ton, @pump_watts_per_ton_isdefaulted = XMLHelper.get_value_and_defaulted(heat_pump, 'extension/PumpPowerWattsPerTon', :float) - @fan_watts_per_cfm, @fan_watts_per_cfm_isdefaulted = XMLHelper.get_value_and_defaulted(heat_pump, 'extension/FanPowerWattsPerCFM', :float) - @seed_id = XMLHelper.get_value(heat_pump, 'extension/SeedId', :string) + @airflow_defect_ratio = XMLHelper.get_value(heat_pump, 'extension/AirflowDefectRatio', :float) + @charge_defect_ratio = XMLHelper.get_value(heat_pump, 'extension/ChargeDefectRatio', :float) + @charge_not_tested = XMLHelper.get_value(heat_pump, 'extension/ChargeNotTested', :boolean) + @fan_watts_per_cfm = XMLHelper.get_value(heat_pump, 'extension/FanPowerWattsPerCFM', :float) + @fan_power_not_tested = XMLHelper.get_value(heat_pump, 'extension/FanPowerNotTested', :boolean) + @airflow_not_tested = XMLHelper.get_value(heat_pump, 'extension/AirflowNotTested', :boolean) + @heating_airflow_cfm = XMLHelper.get_value(heat_pump, 'extension/HeatingAirflowCFM', :float) + @cooling_airflow_cfm = XMLHelper.get_value(heat_pump, 'extension/CoolingAirflowCFM', :float) + @pump_watts_per_ton = XMLHelper.get_value(heat_pump, 'extension/PumpPowerWattsPerTon', :float) @shared_loop_watts = XMLHelper.get_value(heat_pump, 'extension/SharedLoopWatts', :float) + @seed_id = XMLHelper.get_value(heat_pump, 'extension/SeedId', :string) + end + end + + class HVACPlant < BaseElement + HDL_ATTRS = { hdl_total: 'Total', + hdl_ducts: 'Ducts', + hdl_windows: 'Windows', + hdl_skylights: 'Skylights', + hdl_doors: 'Doors', + hdl_walls: 'Walls', + hdl_roofs: 'Roofs', + hdl_floors: 'Floors', + hdl_slabs: 'Slabs', + hdl_ceilings: 'Ceilings', + hdl_infilvent: 'InfilVent' } + CDL_SENS_ATTRS = { cdl_sens_total: 'Total', + cdl_sens_ducts: 'Ducts', + cdl_sens_windows: 'Windows', + cdl_sens_skylights: 'Skylights', + cdl_sens_doors: 'Doors', + cdl_sens_walls: 'Walls', + cdl_sens_roofs: 'Roofs', + cdl_sens_floors: 'Floors', + cdl_sens_slabs: 'Slabs', + cdl_sens_ceilings: 'Ceilings', + cdl_sens_infilvent: 'InfilVent', + cdl_sens_intgains: 'InternalGains' } + CDL_LAT_ATTRS = { cdl_lat_total: 'Total', + cdl_lat_ducts: 'Ducts', + cdl_lat_infilvent: 'InfilVent', + cdl_lat_intgains: 'InternalGains' } + ATTRS = HDL_ATTRS.keys + CDL_SENS_ATTRS.keys + CDL_LAT_ATTRS.keys + attr_accessor(*ATTRS) + + def check_for_errors + errors = [] + return errors + end + + def to_oga(doc) + return if nil? + + hvac_plant = XMLHelper.create_elements_as_needed(doc, ['HPXML', 'Building', 'BuildingDetails', 'Systems', 'HVAC', 'HVACPlant']) + if not @hdl_total.nil? + dl_extension = XMLHelper.create_elements_as_needed(hvac_plant, ['extension', 'DesignLoads']) + XMLHelper.add_attribute(dl_extension, 'dataSource', 'software') + hdl = XMLHelper.add_element(dl_extension, 'Heating') + HDL_ATTRS.each do |attr, element_name| + XMLHelper.add_element(hdl, element_name, send(attr), :float) + end + cdl_sens = XMLHelper.add_element(dl_extension, 'CoolingSensible') + CDL_SENS_ATTRS.each do |attr, element_name| + XMLHelper.add_element(cdl_sens, element_name, send(attr), :float) + end + cdl_lat = XMLHelper.add_element(dl_extension, 'CoolingLatent') + CDL_LAT_ATTRS.each do |attr, element_name| + XMLHelper.add_element(cdl_lat, element_name, send(attr), :float) + end + end + end + + def from_oga(hpxml) + return if hpxml.nil? + + hvac_plant = XMLHelper.get_element(hpxml, 'Building/BuildingDetails/Systems/HVAC/HVACPlant') + return if hvac_plant.nil? + + HDL_ATTRS.each do |attr, element_name| + send("#{attr.to_s}=", XMLHelper.get_value(hvac_plant, "extension/DesignLoads/Heating/#{element_name}", :float)) + end + CDL_SENS_ATTRS.each do |attr, element_name| + send("#{attr.to_s}=", XMLHelper.get_value(hvac_plant, "extension/DesignLoads/CoolingSensible/#{element_name}", :float)) + end + CDL_LAT_ATTRS.each do |attr, element_name| + send("#{attr.to_s}=", XMLHelper.get_value(hvac_plant, "extension/DesignLoads/CoolingLatent/#{element_name}", :float)) + end end end @@ -3016,11 +3241,11 @@ def from_oga(hvac_control) @heating_setpoint_temp = XMLHelper.get_value(hvac_control, 'SetpointTempHeatingSeason', :float) @heating_setback_temp = XMLHelper.get_value(hvac_control, 'SetbackTempHeatingSeason', :float) @heating_setback_hours_per_week = XMLHelper.get_value(hvac_control, 'TotalSetbackHoursperWeekHeating', :integer) - @heating_setback_start_hour, @heating_setback_start_hour_isdefaulted = XMLHelper.get_value_and_defaulted(hvac_control, 'extension/SetbackStartHourHeating', :integer) - @cooling_setpoint_temp = XMLHelper.get_value(hvac_control, 'SetpointTempCoolingSeason', :float) @cooling_setup_temp = XMLHelper.get_value(hvac_control, 'SetupTempCoolingSeason', :float) + @cooling_setpoint_temp = XMLHelper.get_value(hvac_control, 'SetpointTempCoolingSeason', :float) @cooling_setup_hours_per_week = XMLHelper.get_value(hvac_control, 'TotalSetupHoursperWeekCooling', :integer) - @cooling_setup_start_hour, @cooling_setup_start_hour_isdefaulted = XMLHelper.get_value_and_defaulted(hvac_control, 'extension/SetupStartHourCooling', :integer) + @heating_setback_start_hour = XMLHelper.get_value(hvac_control, 'extension/SetbackStartHourHeating', :integer) + @cooling_setup_start_hour = XMLHelper.get_value(hvac_control, 'extension/SetupStartHourCooling', :integer) @ceiling_fan_cooling_setpoint_temp_offset = XMLHelper.get_value(hvac_control, 'extension/CeilingFanSetpointTempCoolingSeasonOffset', :float) @weekday_heating_setpoints = XMLHelper.get_value(hvac_control, 'extension/WeekdaySetpointTempsHeatingSeason', :string) @weekend_heating_setpoints = XMLHelper.get_value(hvac_control, 'extension/WeekendSetpointTempsHeatingSeason', :string) @@ -3051,7 +3276,7 @@ def initialize(hpxml_object, *args) end ATTRS = [:id, :distribution_system_type, :annual_heating_dse, :annual_cooling_dse, :duct_system_sealed, :duct_leakage_to_outside_testing_exemption, :conditioned_floor_area_served, - :number_of_return_registers, :hydronic_type, :hydronic_and_air_type] + :number_of_return_registers, :air_type, :hydronic_type] attr_accessor(*ATTRS) attr_reader(:duct_leakage_measurements, :ducts) @@ -3089,6 +3314,18 @@ def hvac_systems return list end + def total_unconditioned_duct_areas + areas = { HPXML::DuctTypeSupply => 0, + HPXML::DuctTypeReturn => 0 } + @ducts.each do |duct| + next if [HPXML::LocationLivingSpace, HPXML::LocationBasementConditioned].include? duct.duct_location + next if duct.duct_type.nil? + + areas[duct.duct_type] += duct.duct_surface_area + end + return areas + end + def delete @hpxml_object.hvac_distributions.delete(self) (@hpxml_object.heating_systems + @hpxml_object.cooling_systems + @hpxml_object.heat_pumps).each do |hvac_system| @@ -3119,12 +3356,12 @@ def to_oga(doc) hvac_distribution = XMLHelper.add_element(hvac, 'HVACDistribution') sys_id = XMLHelper.add_element(hvac_distribution, 'SystemIdentifier') XMLHelper.add_attribute(sys_id, 'id', @id) - distribution_system_type_e = XMLHelper.add_element(hvac_distribution, 'DistributionSystemType') - if [HVACDistributionTypeAir, HVACDistributionTypeHydronic, HVACDistributionTypeHydronicAndAir].include? @distribution_system_type - XMLHelper.add_element(distribution_system_type_e, @distribution_system_type) + distribution_system_type_el = XMLHelper.add_element(hvac_distribution, 'DistributionSystemType') + if [HVACDistributionTypeAir, HVACDistributionTypeHydronic].include? @distribution_system_type + XMLHelper.add_element(distribution_system_type_el, @distribution_system_type) XMLHelper.add_element(hvac_distribution, 'ConditionedFloorAreaServed', @conditioned_floor_area_served, :float) unless @conditioned_floor_area_served.nil? elsif [HVACDistributionTypeDSE].include? @distribution_system_type - XMLHelper.add_element(distribution_system_type_e, 'Other', @distribution_system_type, :string) + XMLHelper.add_element(distribution_system_type_el, 'Other', @distribution_system_type, :string) XMLHelper.add_element(hvac_distribution, 'AnnualHeatingDistributionSystemEfficiency', @annual_heating_dse, :float) unless @annual_heating_dse.nil? XMLHelper.add_element(hvac_distribution, 'AnnualCoolingDistributionSystemEfficiency', @annual_cooling_dse, :float) unless @annual_cooling_dse.nil? else @@ -3135,21 +3372,19 @@ def to_oga(doc) distribution = XMLHelper.get_element(hvac_distribution, 'DistributionSystemType/HydronicDistribution') XMLHelper.add_element(distribution, 'HydronicDistributionType', @hydronic_type, :string) unless @hydronic_type.nil? end - if [HPXML::HVACDistributionTypeHydronicAndAir].include? @distribution_system_type - distribution = XMLHelper.get_element(hvac_distribution, 'DistributionSystemType/HydronicAndAirDistribution') - XMLHelper.add_element(distribution, 'HydronicAndAirDistributionType', @hydronic_and_air_type, :string) unless @hydronic_and_air_type.nil? - end - if [HPXML::HVACDistributionTypeAir, HPXML::HVACDistributionTypeHydronicAndAir].include? @distribution_system_type - if @distribution_system_type == HPXML::HVACDistributionTypeAir - distribution = XMLHelper.get_element(hvac_distribution, 'DistributionSystemType/AirDistribution') - elsif @distribution_system_type == HPXML::HVACDistributionTypeHydronicAndAir - distribution = XMLHelper.get_element(hvac_distribution, 'DistributionSystemType/HydronicAndAirDistribution') - end + if [HPXML::HVACDistributionTypeAir].include? @distribution_system_type + distribution = XMLHelper.get_element(hvac_distribution, 'DistributionSystemType/AirDistribution') + XMLHelper.add_element(distribution, 'AirDistributionType', @air_type, :string) unless @air_type.nil? @duct_leakage_measurements.to_oga(distribution) @ducts.to_oga(distribution) XMLHelper.add_element(distribution, 'NumberofReturnRegisters', @number_of_return_registers, :integer, @number_of_return_registers_isdefaulted) unless @number_of_return_registers.nil? XMLHelper.add_extension(distribution, 'DuctLeakageToOutsideTestingExemption', @duct_leakage_to_outside_testing_exemption, :boolean) unless @duct_leakage_to_outside_testing_exemption.nil? end + + if not @duct_system_sealed.nil? + dist_impr_el = XMLHelper.add_element(hvac_distribution, 'HVACDistributionImprovement') + XMLHelper.add_element(dist_impr_el, 'DuctSystemSealed', @duct_system_sealed, :boolean) + end end def from_oga(hvac_distribution) @@ -3167,21 +3402,16 @@ def from_oga(hvac_distribution) air_distribution = XMLHelper.get_element(hvac_distribution, 'DistributionSystemType/AirDistribution') hydronic_distribution = XMLHelper.get_element(hvac_distribution, 'DistributionSystemType/HydronicDistribution') - hydronic_and_air_distribution = XMLHelper.get_element(hvac_distribution, 'DistributionSystemType/HydronicAndAirDistribution') if not hydronic_distribution.nil? @hydronic_type = XMLHelper.get_value(hydronic_distribution, 'HydronicDistributionType', :string) end - if not hydronic_and_air_distribution.nil? - @hydronic_and_air_type = XMLHelper.get_value(hydronic_and_air_distribution, 'HydronicAndAirDistributionType', :string) - end - if (not air_distribution.nil?) || (not hydronic_and_air_distribution.nil?) - distribution = air_distribution - distribution = hydronic_and_air_distribution if distribution.nil? - @number_of_return_registers, @number_of_return_registers_isdefaulted = XMLHelper.get_value_and_defaulted(distribution, 'NumberofReturnRegisters', :integer) - @duct_leakage_to_outside_testing_exemption = XMLHelper.get_value(distribution, 'extension/DuctLeakageToOutsideTestingExemption', :boolean) - @duct_leakage_measurements.from_oga(distribution) - @ducts.from_oga(distribution) + if not air_distribution.nil? + @air_type = XMLHelper.get_value(air_distribution, 'AirDistributionType', :string) + @number_of_return_registers = XMLHelper.get_value(air_distribution, 'NumberofReturnRegisters', :integer) + @duct_leakage_to_outside_testing_exemption = XMLHelper.get_value(air_distribution, 'extension/DuctLeakageToOutsideTestingExemption', :boolean) + @duct_leakage_measurements.from_oga(air_distribution) + @ducts.from_oga(air_distribution) end end end @@ -3221,6 +3451,7 @@ def check_for_errors def to_oga(air_distribution) duct_leakage_measurement_el = XMLHelper.add_element(air_distribution, 'DuctLeakageMeasurement') XMLHelper.add_element(duct_leakage_measurement_el, 'DuctType', @duct_type, :string) unless @duct_type.nil? + XMLHelper.add_element(duct_leakage_measurement_el, 'DuctLeakageTestMethod', @duct_leakage_test_method, :string) unless @duct_leakage_test_method.nil? if not @duct_leakage_value.nil? duct_leakage_el = XMLHelper.add_element(duct_leakage_measurement_el, 'DuctLeakage') XMLHelper.add_element(duct_leakage_el, 'Units', @duct_leakage_units, :string) unless @duct_leakage_units.nil? @@ -3275,8 +3506,13 @@ def check_for_errors def to_oga(air_distribution) ducts_el = XMLHelper.add_element(air_distribution, 'Ducts') XMLHelper.add_element(ducts_el, 'DuctType', @duct_type, :string) unless @duct_type.nil? + if not @duct_insulation_material.nil? + ins_material_el = XMLHelper.add_element(ducts_el, 'DuctInsulationMaterial') + XMLHelper.add_element(ins_material_el, @duct_insulation_material) + end XMLHelper.add_element(ducts_el, 'DuctInsulationRValue', @duct_insulation_r_value, :float) unless @duct_insulation_r_value.nil? XMLHelper.add_element(ducts_el, 'DuctLocation', @duct_location, :string, @duct_location_isdefaulted) unless @duct_location.nil? + XMLHelper.add_element(ducts_el, 'FractionDuctArea', @duct_fraction_area, :float) unless @duct_fraction_area.nil? XMLHelper.add_element(ducts_el, 'DuctSurfaceArea', @duct_surface_area, :float, @duct_surface_area_isdefaulted) unless @duct_surface_area.nil? end @@ -3284,11 +3520,11 @@ def from_oga(duct) return if duct.nil? @duct_type = XMLHelper.get_value(duct, 'DuctType', :string) - @duct_insulation_r_value = XMLHelper.get_value(duct, 'DuctInsulationRValue', :float) @duct_insulation_material = XMLHelper.get_child_name(duct, 'DuctInsulationMaterial') - @duct_location, @duct_location_isdefaulted = XMLHelper.get_value_and_defaulted(duct, 'DuctLocation', :string) + @duct_insulation_r_value = XMLHelper.get_value(duct, 'DuctInsulationRValue', :float) + @duct_location = XMLHelper.get_value(duct, 'DuctLocation', :string) @duct_fraction_area = XMLHelper.get_value(duct, 'FractionDuctArea', :float) - @duct_surface_area, @duct_surface_area_isdefaulted = XMLHelper.get_value_and_defaulted(duct, 'DuctSurfaceArea', :float) + @duct_surface_area = XMLHelper.get_value(duct, 'DuctSurfaceArea', :float) end end @@ -3384,9 +3620,6 @@ def unit_flow_rate_ratio ratio = @in_unit_flow_rate / @rated_flow_rate end return if ratio.nil? - if ratio >= 1.0 - fail "The in-unit flow rate of shared fan '#{@id}' must be less than the system flow rate." - end return ratio end @@ -3463,9 +3696,7 @@ def to_oga(doc) XMLHelper.add_element(ventilation_fan, 'UsedForWholeBuildingVentilation', @used_for_whole_building_ventilation, :boolean) unless @used_for_whole_building_ventilation.nil? XMLHelper.add_element(ventilation_fan, 'UsedForSeasonalCoolingLoadReduction', @used_for_seasonal_cooling_load_reduction, :boolean) unless @used_for_seasonal_cooling_load_reduction.nil? XMLHelper.add_element(ventilation_fan, 'IsSharedSystem', @is_shared_system, :boolean, @is_shared_system_isdefaulted) unless @is_shared_system.nil? - if @is_shared_system - XMLHelper.add_element(ventilation_fan, 'FractionRecirculation', @fraction_recirculation, :float) unless @fraction_recirculation.nil? - end + XMLHelper.add_element(ventilation_fan, 'FractionRecirculation', @fraction_recirculation, :float) unless @fraction_recirculation.nil? XMLHelper.add_element(ventilation_fan, 'TotalRecoveryEfficiency', @total_recovery_efficiency, :float) unless @total_recovery_efficiency.nil? XMLHelper.add_element(ventilation_fan, 'SensibleRecoveryEfficiency', @sensible_recovery_efficiency, :float) unless @sensible_recovery_efficiency.nil? XMLHelper.add_element(ventilation_fan, 'AdjustedTotalRecoveryEfficiency', @total_recovery_efficiency_adjusted, :float) unless @total_recovery_efficiency_adjusted.nil? @@ -3476,24 +3707,22 @@ def to_oga(doc) XMLHelper.add_attribute(attached_to_hvac_distribution_system, 'idref', @distribution_system_idref) end XMLHelper.add_extension(ventilation_fan, 'StartHour', @start_hour, :integer, @start_hour_isdefaulted) unless @start_hour.nil? - if @is_shared_system - XMLHelper.add_extension(ventilation_fan, 'InUnitFlowRate', @in_unit_flow_rate, :float) unless @in_unit_flow_rate.nil? - if (not @preheating_fuel.nil?) && (not @preheating_efficiency_cop.nil?) - precond_htg = XMLHelper.create_elements_as_needed(ventilation_fan, ['extension', 'PreHeating']) - XMLHelper.add_element(precond_htg, 'Fuel', @preheating_fuel, :string) unless @preheating_fuel.nil? - eff = XMLHelper.add_element(precond_htg, 'AnnualHeatingEfficiency') unless @preheating_efficiency_cop.nil? - XMLHelper.add_element(eff, 'Value', @preheating_efficiency_cop, :float) unless eff.nil? - XMLHelper.add_element(eff, 'Units', UnitsCOP, :string) unless eff.nil? - XMLHelper.add_element(precond_htg, 'FractionVentilationHeatLoadServed', @preheating_fraction_load_served, :float) unless @preheating_fraction_load_served.nil? - end - if (not @precooling_fuel.nil?) && (not @precooling_efficiency_cop.nil?) - precond_clg = XMLHelper.create_elements_as_needed(ventilation_fan, ['extension', 'PreCooling']) - XMLHelper.add_element(precond_clg, 'Fuel', @precooling_fuel, :string) unless @precooling_fuel.nil? - eff = XMLHelper.add_element(precond_clg, 'AnnualCoolingEfficiency') unless @precooling_efficiency_cop.nil? - XMLHelper.add_element(eff, 'Value', @precooling_efficiency_cop, :float) unless eff.nil? - XMLHelper.add_element(eff, 'Units', UnitsCOP, :string) unless eff.nil? - XMLHelper.add_element(precond_clg, 'FractionVentilationCoolLoadServed', @precooling_fraction_load_served, :float) unless @precooling_fraction_load_served.nil? - end + XMLHelper.add_extension(ventilation_fan, 'InUnitFlowRate', @in_unit_flow_rate, :float) unless @in_unit_flow_rate.nil? + if (not @preheating_fuel.nil?) && (not @preheating_efficiency_cop.nil?) + precond_htg = XMLHelper.create_elements_as_needed(ventilation_fan, ['extension', 'PreHeating']) + XMLHelper.add_element(precond_htg, 'Fuel', @preheating_fuel, :string) unless @preheating_fuel.nil? + eff = XMLHelper.add_element(precond_htg, 'AnnualHeatingEfficiency') unless @preheating_efficiency_cop.nil? + XMLHelper.add_element(eff, 'Value', @preheating_efficiency_cop, :float) unless eff.nil? + XMLHelper.add_element(eff, 'Units', UnitsCOP, :string) unless eff.nil? + XMLHelper.add_element(precond_htg, 'FractionVentilationHeatLoadServed', @preheating_fraction_load_served, :float) unless @preheating_fraction_load_served.nil? + end + if (not @precooling_fuel.nil?) && (not @precooling_efficiency_cop.nil?) + precond_clg = XMLHelper.create_elements_as_needed(ventilation_fan, ['extension', 'PreCooling']) + XMLHelper.add_element(precond_clg, 'Fuel', @precooling_fuel, :string) unless @precooling_fuel.nil? + eff = XMLHelper.add_element(precond_clg, 'AnnualCoolingEfficiency') unless @precooling_efficiency_cop.nil? + XMLHelper.add_element(eff, 'Value', @precooling_efficiency_cop, :float) unless eff.nil? + XMLHelper.add_element(eff, 'Units', UnitsCOP, :string) unless eff.nil? + XMLHelper.add_element(precond_clg, 'FractionVentilationCoolLoadServed', @precooling_fraction_load_served, :float) unless @precooling_fraction_load_served.nil? end XMLHelper.add_extension(ventilation_fan, 'FlowRateNotTested', @flow_rate_not_tested, :boolean) unless @flow_rate_not_tested.nil? XMLHelper.add_extension(ventilation_fan, 'FanPowerDefaulted', @fan_power_defaulted, :boolean) unless @fan_power_defaulted.nil? @@ -3503,35 +3732,33 @@ def from_oga(ventilation_fan) return if ventilation_fan.nil? @id = HPXML::get_id(ventilation_fan) - @quantity, @quantity_isdefaulted = XMLHelper.get_value_and_defaulted(ventilation_fan, 'Quantity', :integer) + @quantity = XMLHelper.get_value(ventilation_fan, 'Quantity', :integer) @fan_type = XMLHelper.get_value(ventilation_fan, 'FanType', :string) - @is_shared_system, @is_shared_system_isdefaulted = XMLHelper.get_value_and_defaulted(ventilation_fan, 'IsSharedSystem', :boolean) - @rated_flow_rate, @rated_flow_rate_isdefaulted = XMLHelper.get_value_and_defaulted(ventilation_fan, 'RatedFlowRate', :float) + @rated_flow_rate = XMLHelper.get_value(ventilation_fan, 'RatedFlowRate', :float) @tested_flow_rate = XMLHelper.get_value(ventilation_fan, 'TestedFlowRate', :float) - @flow_rate_not_tested = XMLHelper.get_value(ventilation_fan, 'extension/FlowRateNotTested', :boolean) - @fan_power, @fan_power_isdefaulted = XMLHelper.get_value_and_defaulted(ventilation_fan, 'FanPower', :float) - @fan_power_defaulted = XMLHelper.get_value(ventilation_fan, 'extension/FanPowerDefaulted', :boolean) - if @is_shared_system - @fraction_recirculation = XMLHelper.get_value(ventilation_fan, 'FractionRecirculation', :float) - @in_unit_flow_rate = XMLHelper.get_value(ventilation_fan, 'extension/InUnitFlowRate', :float) - @preheating_fuel = XMLHelper.get_value(ventilation_fan, 'extension/PreHeating/Fuel', :string) - @preheating_efficiency_cop = XMLHelper.get_value(ventilation_fan, "extension/PreHeating/AnnualHeatingEfficiency[Units='#{UnitsCOP}']/Value", :float) - @preheating_fraction_load_served = XMLHelper.get_value(ventilation_fan, 'extension/PreHeating/FractionVentilationHeatLoadServed', :float) - @precooling_fuel = XMLHelper.get_value(ventilation_fan, 'extension/PreCooling/Fuel', :string) - @precooling_efficiency_cop = XMLHelper.get_value(ventilation_fan, "extension/PreCooling/AnnualCoolingEfficiency[Units='#{UnitsCOP}']/Value", :float) - @precooling_fraction_load_served = XMLHelper.get_value(ventilation_fan, 'extension/PreCooling/FractionVentilationCoolLoadServed', :float) - end - @hours_in_operation, @hours_in_operation_isdefaulted = XMLHelper.get_value_and_defaulted(ventilation_fan, 'HoursInOperation', :float) + @hours_in_operation = XMLHelper.get_value(ventilation_fan, 'HoursInOperation', :float) @fan_location = XMLHelper.get_value(ventilation_fan, 'FanLocation', :string) @used_for_local_ventilation = XMLHelper.get_value(ventilation_fan, 'UsedForLocalVentilation', :boolean) @used_for_whole_building_ventilation = XMLHelper.get_value(ventilation_fan, 'UsedForWholeBuildingVentilation', :boolean) @used_for_seasonal_cooling_load_reduction = XMLHelper.get_value(ventilation_fan, 'UsedForSeasonalCoolingLoadReduction', :boolean) + @is_shared_system = XMLHelper.get_value(ventilation_fan, 'IsSharedSystem', :boolean) + @fraction_recirculation = XMLHelper.get_value(ventilation_fan, 'FractionRecirculation', :float) @total_recovery_efficiency = XMLHelper.get_value(ventilation_fan, 'TotalRecoveryEfficiency', :float) - @total_recovery_efficiency_adjusted = XMLHelper.get_value(ventilation_fan, 'AdjustedTotalRecoveryEfficiency', :float) @sensible_recovery_efficiency = XMLHelper.get_value(ventilation_fan, 'SensibleRecoveryEfficiency', :float) + @total_recovery_efficiency_adjusted = XMLHelper.get_value(ventilation_fan, 'AdjustedTotalRecoveryEfficiency', :float) @sensible_recovery_efficiency_adjusted = XMLHelper.get_value(ventilation_fan, 'AdjustedSensibleRecoveryEfficiency', :float) + @fan_power = XMLHelper.get_value(ventilation_fan, 'FanPower', :float) @distribution_system_idref = HPXML::get_idref(XMLHelper.get_element(ventilation_fan, 'AttachedToHVACDistributionSystem')) - @start_hour, @start_hour_isdefaulted = XMLHelper.get_value_and_defaulted(ventilation_fan, 'extension/StartHour', :integer) + @start_hour = XMLHelper.get_value(ventilation_fan, 'extension/StartHour', :integer) + @in_unit_flow_rate = XMLHelper.get_value(ventilation_fan, 'extension/InUnitFlowRate', :float) + @preheating_fuel = XMLHelper.get_value(ventilation_fan, 'extension/PreHeating/Fuel', :string) + @preheating_efficiency_cop = XMLHelper.get_value(ventilation_fan, "extension/PreHeating/AnnualHeatingEfficiency[Units='#{UnitsCOP}']/Value", :float) + @preheating_fraction_load_served = XMLHelper.get_value(ventilation_fan, 'extension/PreHeating/FractionVentilationHeatLoadServed', :float) + @precooling_fuel = XMLHelper.get_value(ventilation_fan, 'extension/PreCooling/Fuel', :string) + @precooling_efficiency_cop = XMLHelper.get_value(ventilation_fan, "extension/PreCooling/AnnualCoolingEfficiency[Units='#{UnitsCOP}']/Value", :float) + @precooling_fraction_load_served = XMLHelper.get_value(ventilation_fan, 'extension/PreCooling/FractionVentilationCoolLoadServed', :float) + @flow_rate_not_tested = XMLHelper.get_value(ventilation_fan, 'extension/FlowRateNotTested', :boolean) + @fan_power_defaulted = XMLHelper.get_value(ventilation_fan, 'extension/FanPowerDefaulted', :boolean) end end @@ -3553,7 +3780,7 @@ class WaterHeatingSystem < BaseElement ATTRS = [:id, :year_installed, :fuel_type, :water_heater_type, :location, :performance_adjustment, :tank_volume, :fraction_dhw_load_served, :heating_capacity, :energy_factor, :uniform_energy_factor, :first_hour_rating, :recovery_efficiency, :uses_desuperheater, :jacket_r_value, - :related_hvac_idref, :energy_star, :standby_loss, :temperature, :is_shared_system, + :related_hvac_idref, :third_party_certification, :standby_loss, :temperature, :is_shared_system, :number_of_units_served] attr_accessor(*ATTRS) @@ -3593,9 +3820,11 @@ def to_oga(doc) XMLHelper.add_element(water_heating_system, 'FuelType', @fuel_type, :string) unless @fuel_type.nil? XMLHelper.add_element(water_heating_system, 'WaterHeaterType', @water_heater_type, :string) unless @water_heater_type.nil? XMLHelper.add_element(water_heating_system, 'Location', @location, :string, @location_isdefaulted) unless @location.nil? + XMLHelper.add_element(water_heating_system, 'YearInstalled', @year_installed, :integer) unless @year_installed.nil? XMLHelper.add_element(water_heating_system, 'IsSharedSystem', @is_shared_system, :boolean, @is_shared_system_isdefaulted) unless @is_shared_system.nil? XMLHelper.add_element(water_heating_system, 'NumberofUnitsServed', @number_of_units_served, :integer) unless @number_of_units_served.nil? XMLHelper.add_element(water_heating_system, 'PerformanceAdjustment', @performance_adjustment, :float, @performance_adjustment_isdefaulted) unless @performance_adjustment.nil? + XMLHelper.add_element(water_heating_system, 'ThirdPartyCertification', @third_party_certification, :string) unless @third_party_certification.nil? XMLHelper.add_element(water_heating_system, 'TankVolume', @tank_volume, :float, @tank_volume_isdefaulted) unless @tank_volume.nil? XMLHelper.add_element(water_heating_system, 'FractionDHWLoadServed', @fraction_dhw_load_served, :float) unless @fraction_dhw_load_served.nil? XMLHelper.add_element(water_heating_system, 'HeatingCapacity', @heating_capacity, :float, @heating_capacity_isdefaulted) unless @heating_capacity.nil? @@ -3621,26 +3850,26 @@ def from_oga(water_heating_system) return if water_heating_system.nil? @id = HPXML::get_id(water_heating_system) - @year_installed = XMLHelper.get_value(water_heating_system, 'YearInstalled', :integer) @fuel_type = XMLHelper.get_value(water_heating_system, 'FuelType', :string) @water_heater_type = XMLHelper.get_value(water_heating_system, 'WaterHeaterType', :string) - @location, @location_isdefaulted = XMLHelper.get_value_and_defaulted(water_heating_system, 'Location', :string) - @is_shared_system, @is_shared_system_isdefaulted = XMLHelper.get_value_and_defaulted(water_heating_system, 'IsSharedSystem', :boolean) + @location = XMLHelper.get_value(water_heating_system, 'Location', :string) + @year_installed = XMLHelper.get_value(water_heating_system, 'YearInstalled', :integer) + @is_shared_system = XMLHelper.get_value(water_heating_system, 'IsSharedSystem', :boolean) @number_of_units_served = XMLHelper.get_value(water_heating_system, 'NumberofUnitsServed', :integer) - @performance_adjustment, @performance_adjustment_isdefaulted = XMLHelper.get_value_and_defaulted(water_heating_system, 'PerformanceAdjustment', :float) - @tank_volume, @tank_volume_isdefaulted = XMLHelper.get_value_and_defaulted(water_heating_system, 'TankVolume', :float) + @performance_adjustment = XMLHelper.get_value(water_heating_system, 'PerformanceAdjustment', :float) + @third_party_certification = XMLHelper.get_value(water_heating_system, 'ThirdPartyCertification', :string) + @tank_volume = XMLHelper.get_value(water_heating_system, 'TankVolume', :float) @fraction_dhw_load_served = XMLHelper.get_value(water_heating_system, 'FractionDHWLoadServed', :float) - @heating_capacity, @heating_capacity_isdefaulted = XMLHelper.get_value_and_defaulted(water_heating_system, 'HeatingCapacity', :float) + @heating_capacity = XMLHelper.get_value(water_heating_system, 'HeatingCapacity', :float) @energy_factor = XMLHelper.get_value(water_heating_system, 'EnergyFactor', :float) @uniform_energy_factor = XMLHelper.get_value(water_heating_system, 'UniformEnergyFactor', :float) @first_hour_rating = XMLHelper.get_value(water_heating_system, 'FirstHourRating', :float) - @recovery_efficiency, @recovery_efficiency_isdefaulted = XMLHelper.get_value_and_defaulted(water_heating_system, 'RecoveryEfficiency', :float) - @uses_desuperheater = XMLHelper.get_value(water_heating_system, 'UsesDesuperheater', :boolean) + @recovery_efficiency = XMLHelper.get_value(water_heating_system, 'RecoveryEfficiency', :float) @jacket_r_value = XMLHelper.get_value(water_heating_system, 'WaterHeaterInsulation/Jacket/JacketRValue', :float) + @standby_loss = XMLHelper.get_value(water_heating_system, 'StandbyLoss', :float) + @temperature = XMLHelper.get_value(water_heating_system, 'HotWaterTemperature', :float) + @uses_desuperheater = XMLHelper.get_value(water_heating_system, 'UsesDesuperheater', :boolean) @related_hvac_idref = HPXML::get_idref(XMLHelper.get_element(water_heating_system, 'RelatedHVACSystem')) - @energy_star = XMLHelper.get_values(water_heating_system, 'ThirdPartyCertification', :string).include?('Energy Star') - @standby_loss, @standby_loss_isdefaulted = XMLHelper.get_value_and_defaulted(water_heating_system, 'StandbyLoss', :float) - @temperature, @temperature_isdefaulted = XMLHelper.get_value_and_defaulted(water_heating_system, 'HotWaterTemperature', :float) end end @@ -3683,12 +3912,12 @@ def to_oga(doc) sys_id = XMLHelper.add_element(hot_water_distribution, 'SystemIdentifier') XMLHelper.add_attribute(sys_id, 'id', @id) if not @system_type.nil? - system_type_e = XMLHelper.add_element(hot_water_distribution, 'SystemType') + system_type_el = XMLHelper.add_element(hot_water_distribution, 'SystemType') if @system_type == DHWDistTypeStandard - standard = XMLHelper.add_element(system_type_e, @system_type) + standard = XMLHelper.add_element(system_type_el, @system_type) XMLHelper.add_element(standard, 'PipingLength', @standard_piping_length, :float, @standard_piping_length_isdefaulted) unless @standard_piping_length.nil? elsif system_type == DHWDistTypeRecirc - recirculation = XMLHelper.add_element(system_type_e, @system_type) + recirculation = XMLHelper.add_element(system_type_el, @system_type) XMLHelper.add_element(recirculation, 'ControlType', @recirculation_control_type, :string) unless @recirculation_control_type.nil? XMLHelper.add_element(recirculation, 'RecirculationPipingLoopLength', @recirculation_piping_length, :float, @recirculation_piping_length_isdefaulted) unless @recirculation_piping_length.nil? XMLHelper.add_element(recirculation, 'BranchPipingLoopLength', @recirculation_branch_piping_length, :float, @recirculation_branch_piping_length_isdefaulted) unless @recirculation_branch_piping_length.nil? @@ -3721,22 +3950,22 @@ def from_oga(hot_water_distribution) @id = HPXML::get_id(hot_water_distribution) @system_type = XMLHelper.get_child_name(hot_water_distribution, 'SystemType') - @pipe_r_value, @pipe_r_value_isdefaulted = XMLHelper.get_value_and_defaulted(hot_water_distribution, 'PipeInsulation/PipeRValue', :float) if @system_type == 'Standard' - @standard_piping_length, @standard_piping_length_isdefaulted = XMLHelper.get_value_and_defaulted(hot_water_distribution, 'SystemType/Standard/PipingLength', :float) + @standard_piping_length = XMLHelper.get_value(hot_water_distribution, 'SystemType/Standard/PipingLength', :float) elsif @system_type == 'Recirculation' @recirculation_control_type = XMLHelper.get_value(hot_water_distribution, 'SystemType/Recirculation/ControlType', :string) - @recirculation_piping_length, @recirculation_piping_length_isdefaulted = XMLHelper.get_value_and_defaulted(hot_water_distribution, 'SystemType/Recirculation/RecirculationPipingLoopLength', :float) - @recirculation_branch_piping_length, @recirculation_branch_piping_length_isdefaulted = XMLHelper.get_value_and_defaulted(hot_water_distribution, 'SystemType/Recirculation/BranchPipingLoopLength', :float) - @recirculation_pump_power, @recirculation_pump_power_isdefaulted = XMLHelper.get_value_and_defaulted(hot_water_distribution, 'SystemType/Recirculation/PumpPower', :float) + @recirculation_piping_length = XMLHelper.get_value(hot_water_distribution, 'SystemType/Recirculation/RecirculationPipingLoopLength', :float) + @recirculation_branch_piping_length = XMLHelper.get_value(hot_water_distribution, 'SystemType/Recirculation/BranchPipingLoopLength', :float) + @recirculation_pump_power = XMLHelper.get_value(hot_water_distribution, 'SystemType/Recirculation/PumpPower', :float) end + @pipe_r_value = XMLHelper.get_value(hot_water_distribution, 'PipeInsulation/PipeRValue', :float) @dwhr_facilities_connected = XMLHelper.get_value(hot_water_distribution, 'DrainWaterHeatRecovery/FacilitiesConnected', :string) @dwhr_equal_flow = XMLHelper.get_value(hot_water_distribution, 'DrainWaterHeatRecovery/EqualFlow', :boolean) @dwhr_efficiency = XMLHelper.get_value(hot_water_distribution, 'DrainWaterHeatRecovery/Efficiency', :float) @has_shared_recirculation = XMLHelper.has_element(hot_water_distribution, 'extension/SharedRecirculation') if @has_shared_recirculation @shared_recirculation_number_of_units_served = XMLHelper.get_value(hot_water_distribution, 'extension/SharedRecirculation/NumberofUnitsServed', :integer) - @shared_recirculation_pump_power, @shared_recirculation_pump_power_isdefaulted = XMLHelper.get_value_and_defaulted(hot_water_distribution, 'extension/SharedRecirculation/PumpPower', :float) + @shared_recirculation_pump_power = XMLHelper.get_value(hot_water_distribution, 'extension/SharedRecirculation/PumpPower', :float) @shared_recirculation_control_type = XMLHelper.get_value(hot_water_distribution, 'extension/SharedRecirculation/ControlType', :string) end end @@ -3811,7 +4040,7 @@ def from_oga(hpxml) water_heating = XMLHelper.get_element(hpxml, 'Building/BuildingDetails/Systems/WaterHeating') return if water_heating.nil? - @water_fixtures_usage_multiplier, @water_fixtures_usage_multiplier_isdefaulted = XMLHelper.get_value_and_defaulted(water_heating, 'extension/WaterFixturesUsageMultiplier', :float) + @water_fixtures_usage_multiplier = XMLHelper.get_value(water_heating, 'extension/WaterFixturesUsageMultiplier', :float) end end @@ -3886,12 +4115,12 @@ def from_oga(solar_thermal_system) @system_type = XMLHelper.get_value(solar_thermal_system, 'SystemType', :string) @collector_area = XMLHelper.get_value(solar_thermal_system, 'CollectorArea', :float) @collector_loop_type = XMLHelper.get_value(solar_thermal_system, 'CollectorLoopType', :string) - @collector_azimuth = XMLHelper.get_value(solar_thermal_system, 'CollectorAzimuth', :integer) @collector_type = XMLHelper.get_value(solar_thermal_system, 'CollectorType', :string) + @collector_azimuth = XMLHelper.get_value(solar_thermal_system, 'CollectorAzimuth', :integer) @collector_tilt = XMLHelper.get_value(solar_thermal_system, 'CollectorTilt', :float) @collector_frta = XMLHelper.get_value(solar_thermal_system, 'CollectorRatedOpticalEfficiency', :float) @collector_frul = XMLHelper.get_value(solar_thermal_system, 'CollectorRatedThermalLosses', :float) - @storage_volume, @storage_volume_isdefaulted = XMLHelper.get_value_and_defaulted(solar_thermal_system, 'StorageVolume', :float) + @storage_volume = XMLHelper.get_value(solar_thermal_system, 'StorageVolume', :float) @water_heating_system_idref = HPXML::get_idref(XMLHelper.get_element(solar_thermal_system, 'ConnectedTo')) @solar_fraction = XMLHelper.get_value(solar_thermal_system, 'SolarFraction', :float) end @@ -3937,9 +4166,11 @@ def to_oga(doc) XMLHelper.add_element(pv_system, 'Location', @location, :string, @location_isdefaulted) unless @location.nil? XMLHelper.add_element(pv_system, 'ModuleType', @module_type, :string, @module_type_isdefaulted) unless @module_type.nil? XMLHelper.add_element(pv_system, 'Tracking', @tracking, :string, @tracking_isdefaulted) unless @tracking.nil? + XMLHelper.add_element(pv_system, 'ArrayOrientation', @array_orientation, :string) unless @array_orientation.nil? XMLHelper.add_element(pv_system, 'ArrayAzimuth', @array_azimuth, :integer) unless @array_azimuth.nil? XMLHelper.add_element(pv_system, 'ArrayTilt', @array_tilt, :float) unless @array_tilt.nil? XMLHelper.add_element(pv_system, 'MaxPowerOutput', @max_power_output, :float) unless @max_power_output.nil? + XMLHelper.add_element(pv_system, 'NumberOfPanels', @number_of_panels, :integer) unless @number_of_panels.nil? XMLHelper.add_element(pv_system, 'InverterEfficiency', @inverter_efficiency, :float, @inverter_efficiency_isdefaulted) unless @inverter_efficiency.nil? XMLHelper.add_element(pv_system, 'SystemLossesFraction', @system_losses_fraction, :float, @system_losses_fraction_isdefaulted) unless @system_losses_fraction.nil? XMLHelper.add_element(pv_system, 'YearModulesManufactured', @year_modules_manufactured, :integer) unless @year_modules_manufactured.nil? @@ -3950,17 +4181,17 @@ def from_oga(pv_system) return if pv_system.nil? @id = HPXML::get_id(pv_system) - @is_shared_system, @is_shared_system_isdefaulted = XMLHelper.get_value_and_defaulted(pv_system, 'IsSharedSystem', :boolean) - @location, @location_isdefaulted = XMLHelper.get_value_and_defaulted(pv_system, 'Location', :string) - @module_type, @module_type_isdefaulted = XMLHelper.get_value_and_defaulted(pv_system, 'ModuleType', :string) - @tracking, @tracking_isdefaulted = XMLHelper.get_value_and_defaulted(pv_system, 'Tracking', :string) + @is_shared_system = XMLHelper.get_value(pv_system, 'IsSharedSystem', :boolean) + @location = XMLHelper.get_value(pv_system, 'Location', :string) + @module_type = XMLHelper.get_value(pv_system, 'ModuleType', :string) + @tracking = XMLHelper.get_value(pv_system, 'Tracking', :string) @array_orientation = XMLHelper.get_value(pv_system, 'ArrayOrientation', :string) @array_azimuth = XMLHelper.get_value(pv_system, 'ArrayAzimuth', :integer) @array_tilt = XMLHelper.get_value(pv_system, 'ArrayTilt', :float) @max_power_output = XMLHelper.get_value(pv_system, 'MaxPowerOutput', :float) - @inverter_efficiency, @inverter_efficiency_isdefaulted = XMLHelper.get_value_and_defaulted(pv_system, 'InverterEfficiency', :float) - @system_losses_fraction, @system_losses_fraction_isdefaulted = XMLHelper.get_value_and_defaulted(pv_system, 'SystemLossesFraction', :float) @number_of_panels = XMLHelper.get_value(pv_system, 'NumberOfPanels', :integer) + @inverter_efficiency = XMLHelper.get_value(pv_system, 'InverterEfficiency', :float) + @system_losses_fraction = XMLHelper.get_value(pv_system, 'SystemLossesFraction', :float) @year_modules_manufactured = XMLHelper.get_value(pv_system, 'YearModulesManufactured', :integer) @number_of_bedrooms_served = XMLHelper.get_value(pv_system, 'extension/NumberofBedroomsServed', :integer) end @@ -4011,7 +4242,7 @@ def from_oga(generator) return if generator.nil? @id = HPXML::get_id(generator) - @is_shared_system, @is_shared_system_isdefaulted = XMLHelper.get_value_and_defaulted(generator, 'IsSharedSystem', :boolean) + @is_shared_system = XMLHelper.get_value(generator, 'IsSharedSystem', :boolean) @fuel_type = XMLHelper.get_value(generator, 'FuelType', :string) @annual_consumption_kbtu = XMLHelper.get_value(generator, 'AnnualConsumptionkBtu', :float) @annual_output_kwh = XMLHelper.get_value(generator, 'AnnualOutputkWh', :float) @@ -4092,19 +4323,19 @@ def from_oga(clothes_washer) @id = HPXML::get_id(clothes_washer) @number_of_units = XMLHelper.get_value(clothes_washer, 'NumberofUnits', :integer) - @is_shared_appliance, @is_shared_appliance_isdefaulted = XMLHelper.get_value_and_defaulted(clothes_washer, 'IsSharedAppliance', :boolean) + @is_shared_appliance = XMLHelper.get_value(clothes_washer, 'IsSharedAppliance', :boolean) @number_of_units_served = XMLHelper.get_value(clothes_washer, 'NumberofUnitsServed', :integer) - @location, @location_isdefaulted = XMLHelper.get_value_and_defaulted(clothes_washer, 'Location', :string) - @modified_energy_factor = XMLHelper.get_value(clothes_washer, 'ModifiedEnergyFactor', :float) - @integrated_modified_energy_factor, @integrated_modified_energy_factor_isdefaulted = XMLHelper.get_value_and_defaulted(clothes_washer, 'IntegratedModifiedEnergyFactor', :float) - @rated_annual_kwh, @rated_annual_kwh_isdefaulted = XMLHelper.get_value_and_defaulted(clothes_washer, 'RatedAnnualkWh', :float) - @label_electric_rate, @label_electric_rate_isdefaulted = XMLHelper.get_value_and_defaulted(clothes_washer, 'LabelElectricRate', :float) - @label_gas_rate, @label_gas_rate_isdefaulted = XMLHelper.get_value_and_defaulted(clothes_washer, 'LabelGasRate', :float) - @label_annual_gas_cost, @label_annual_gas_cost_isdefaulted = XMLHelper.get_value_and_defaulted(clothes_washer, 'LabelAnnualGasCost', :float) - @label_usage, @label_usage_isdefaulted = XMLHelper.get_value_and_defaulted(clothes_washer, 'LabelUsage', :float) - @capacity, @capacity_isdefaulted = XMLHelper.get_value_and_defaulted(clothes_washer, 'Capacity', :float) - @usage_multiplier, @usage_multiplier_isdefaulted = XMLHelper.get_value_and_defaulted(clothes_washer, 'extension/UsageMultiplier', :float) @water_heating_system_idref = HPXML::get_idref(XMLHelper.get_element(clothes_washer, 'AttachedToWaterHeatingSystem')) + @location = XMLHelper.get_value(clothes_washer, 'Location', :string) + @modified_energy_factor = XMLHelper.get_value(clothes_washer, 'ModifiedEnergyFactor', :float) + @integrated_modified_energy_factor = XMLHelper.get_value(clothes_washer, 'IntegratedModifiedEnergyFactor', :float) + @rated_annual_kwh = XMLHelper.get_value(clothes_washer, 'RatedAnnualkWh', :float) + @label_electric_rate = XMLHelper.get_value(clothes_washer, 'LabelElectricRate', :float) + @label_gas_rate = XMLHelper.get_value(clothes_washer, 'LabelGasRate', :float) + @label_annual_gas_cost = XMLHelper.get_value(clothes_washer, 'LabelAnnualGasCost', :float) + @label_usage = XMLHelper.get_value(clothes_washer, 'LabelUsage', :float) + @capacity = XMLHelper.get_value(clothes_washer, 'Capacity', :float) + @usage_multiplier = XMLHelper.get_value(clothes_washer, 'extension/UsageMultiplier', :float) end end @@ -4162,16 +4393,16 @@ def from_oga(clothes_dryer) @id = HPXML::get_id(clothes_dryer) @number_of_units = XMLHelper.get_value(clothes_dryer, 'NumberofUnits', :integer) - @is_shared_appliance, @is_shared_appliance_isdefaulted = XMLHelper.get_value_and_defaulted(clothes_dryer, 'IsSharedAppliance', :boolean) + @is_shared_appliance = XMLHelper.get_value(clothes_dryer, 'IsSharedAppliance', :boolean) @number_of_units_served = XMLHelper.get_value(clothes_dryer, 'NumberofUnitsServed', :integer) - @location, @location_isdefaulted = XMLHelper.get_value_and_defaulted(clothes_dryer, 'Location', :string) + @location = XMLHelper.get_value(clothes_dryer, 'Location', :string) @fuel_type = XMLHelper.get_value(clothes_dryer, 'FuelType', :string) @energy_factor = XMLHelper.get_value(clothes_dryer, 'EnergyFactor', :float) - @combined_energy_factor, @combined_energy_factor_isdefaulted = XMLHelper.get_value_and_defaulted(clothes_dryer, 'CombinedEnergyFactor', :float) - @control_type, @control_type_isdefaulted = XMLHelper.get_value_and_defaulted(clothes_dryer, 'ControlType', :string) - @usage_multiplier, @usage_multiplier_isdefaulted = XMLHelper.get_value_and_defaulted(clothes_dryer, 'extension/UsageMultiplier', :float) - @is_vented, @is_vented_isdefaulted = XMLHelper.get_value_and_defaulted(clothes_dryer, 'extension/IsVented', :boolean) - @vented_flow_rate, @vented_flow_rate_isdefaulted = XMLHelper.get_value_and_defaulted(clothes_dryer, 'extension/VentedFlowRate', :float) + @combined_energy_factor = XMLHelper.get_value(clothes_dryer, 'CombinedEnergyFactor', :float) + @control_type = XMLHelper.get_value(clothes_dryer, 'ControlType', :string) + @usage_multiplier = XMLHelper.get_value(clothes_dryer, 'extension/UsageMultiplier', :float) + @is_vented = XMLHelper.get_value(clothes_dryer, 'extension/IsVented', :boolean) + @vented_flow_rate = XMLHelper.get_value(clothes_dryer, 'extension/VentedFlowRate', :float) end end @@ -4243,17 +4474,17 @@ def from_oga(dishwasher) return if dishwasher.nil? @id = HPXML::get_id(dishwasher) - @is_shared_appliance, @is_shared_appliance_isdefaulted = XMLHelper.get_value_and_defaulted(dishwasher, 'IsSharedAppliance', :boolean) - @location, @location_isdefaulted = XMLHelper.get_value_and_defaulted(dishwasher, 'Location', :string) - @rated_annual_kwh, @rated_annual_kwh_isdefaulted = XMLHelper.get_value_and_defaulted(dishwasher, 'RatedAnnualkWh', :float) - @energy_factor = XMLHelper.get_value(dishwasher, 'EnergyFactor', :float) - @place_setting_capacity, @place_setting_capacity_isdefaulted = XMLHelper.get_value_and_defaulted(dishwasher, 'PlaceSettingCapacity', :integer) - @label_electric_rate, @label_electric_rate_isdefaulted = XMLHelper.get_value_and_defaulted(dishwasher, 'LabelElectricRate', :float) - @label_gas_rate, @label_gas_rate_isdefaulted = XMLHelper.get_value_and_defaulted(dishwasher, 'LabelGasRate', :float) - @label_annual_gas_cost, @label_annual_gas_cost_isdefaulted = XMLHelper.get_value_and_defaulted(dishwasher, 'LabelAnnualGasCost', :float) - @label_usage, @label_usage_isdefaulted = XMLHelper.get_value_and_defaulted(dishwasher, 'LabelUsage', :float) - @usage_multiplier, @usage_multiplier_isdefaulted = XMLHelper.get_value_and_defaulted(dishwasher, 'extension/UsageMultiplier', :float) + @is_shared_appliance = XMLHelper.get_value(dishwasher, 'IsSharedAppliance', :boolean) @water_heating_system_idref = HPXML::get_idref(XMLHelper.get_element(dishwasher, 'AttachedToWaterHeatingSystem')) + @location = XMLHelper.get_value(dishwasher, 'Location', :string) + @rated_annual_kwh = XMLHelper.get_value(dishwasher, 'RatedAnnualkWh', :float) + @energy_factor = XMLHelper.get_value(dishwasher, 'EnergyFactor', :float) + @place_setting_capacity = XMLHelper.get_value(dishwasher, 'PlaceSettingCapacity', :integer) + @label_electric_rate = XMLHelper.get_value(dishwasher, 'LabelElectricRate', :float) + @label_gas_rate = XMLHelper.get_value(dishwasher, 'LabelGasRate', :float) + @label_annual_gas_cost = XMLHelper.get_value(dishwasher, 'LabelAnnualGasCost', :float) + @label_usage = XMLHelper.get_value(dishwasher, 'LabelUsage', :float) + @usage_multiplier = XMLHelper.get_value(dishwasher, 'extension/UsageMultiplier', :float) end end @@ -4306,14 +4537,14 @@ def from_oga(refrigerator) return if refrigerator.nil? @id = HPXML::get_id(refrigerator) - @location, @location_isdefaulted = XMLHelper.get_value_and_defaulted(refrigerator, 'Location', :string) - @rated_annual_kwh, @rated_annual_kwh_isdefaulted = XMLHelper.get_value_and_defaulted(refrigerator, 'RatedAnnualkWh', :float) - @primary_indicator, @primary_indicator_isdefaulted = XMLHelper.get_value_and_defaulted(refrigerator, 'PrimaryIndicator', :boolean) + @location = XMLHelper.get_value(refrigerator, 'Location', :string) + @rated_annual_kwh = XMLHelper.get_value(refrigerator, 'RatedAnnualkWh', :float) + @primary_indicator = XMLHelper.get_value(refrigerator, 'PrimaryIndicator', :boolean) @adjusted_annual_kwh = XMLHelper.get_value(refrigerator, 'extension/AdjustedAnnualkWh', :float) - @usage_multiplier, @usage_multiplier_isdefaulted = XMLHelper.get_value_and_defaulted(refrigerator, 'extension/UsageMultiplier', :float) - @weekday_fractions, @weekday_fractions_isdefaulted = XMLHelper.get_value_and_defaulted(refrigerator, 'extension/WeekdayScheduleFractions', :string) - @weekend_fractions, @weekend_fractions_isdefaulted = XMLHelper.get_value_and_defaulted(refrigerator, 'extension/WeekendScheduleFractions', :string) - @monthly_multipliers, @monthly_multipliers_isdefaulted = XMLHelper.get_value_and_defaulted(refrigerator, 'extension/MonthlyScheduleMultipliers', :string) + @usage_multiplier = XMLHelper.get_value(refrigerator, 'extension/UsageMultiplier', :float) + @weekday_fractions = XMLHelper.get_value(refrigerator, 'extension/WeekdayScheduleFractions', :string) + @weekend_fractions = XMLHelper.get_value(refrigerator, 'extension/WeekendScheduleFractions', :string) + @monthly_multipliers = XMLHelper.get_value(refrigerator, 'extension/MonthlyScheduleMultipliers', :string) end end @@ -4365,13 +4596,13 @@ def from_oga(freezer) return if freezer.nil? @id = HPXML::get_id(freezer) - @location, @location_isdefaulted = XMLHelper.get_value_and_defaulted(freezer, 'Location', :string) - @rated_annual_kwh, @rated_annual_kwh_isdefaulted = XMLHelper.get_value_and_defaulted(freezer, 'RatedAnnualkWh', :float) + @location = XMLHelper.get_value(freezer, 'Location', :string) + @rated_annual_kwh = XMLHelper.get_value(freezer, 'RatedAnnualkWh', :float) @adjusted_annual_kwh = XMLHelper.get_value(freezer, 'extension/AdjustedAnnualkWh', :float) - @usage_multiplier, @usage_multiplier_isdefaulted = XMLHelper.get_value_and_defaulted(freezer, 'extension/UsageMultiplier', :float) - @weekday_fractions, @weekday_fractions_isdefaulted = XMLHelper.get_value_and_defaulted(freezer, 'extension/WeekdayScheduleFractions', :string) - @weekend_fractions, @weekend_fractions_isdefaulted = XMLHelper.get_value_and_defaulted(freezer, 'extension/WeekendScheduleFractions', :string) - @monthly_multipliers, @monthly_multipliers_isdefaulted = XMLHelper.get_value_and_defaulted(freezer, 'extension/MonthlyScheduleMultipliers', :string) + @usage_multiplier = XMLHelper.get_value(freezer, 'extension/UsageMultiplier', :float) + @weekday_fractions = XMLHelper.get_value(freezer, 'extension/WeekdayScheduleFractions', :string) + @weekend_fractions = XMLHelper.get_value(freezer, 'extension/WeekendScheduleFractions', :string) + @monthly_multipliers = XMLHelper.get_value(freezer, 'extension/MonthlyScheduleMultipliers', :string) end end @@ -4390,7 +4621,8 @@ def from_oga(hpxml) end class Dehumidifier < BaseElement - ATTRS = [:id, :type, :capacity, :energy_factor, :integrated_energy_factor, :rh_setpoint, :fraction_served] + ATTRS = [:id, :type, :capacity, :energy_factor, :integrated_energy_factor, :rh_setpoint, :fraction_served, + :location] attr_accessor(*ATTRS) def delete @@ -4410,6 +4642,7 @@ def to_oga(doc) sys_id = XMLHelper.add_element(dehumidifier, 'SystemIdentifier') XMLHelper.add_attribute(sys_id, 'id', @id) XMLHelper.add_element(dehumidifier, 'Type', @type, :string) unless @type.nil? + XMLHelper.add_element(dehumidifier, 'Location', @location, :string) unless @location.nil? XMLHelper.add_element(dehumidifier, 'Capacity', @capacity, :float) unless @capacity.nil? XMLHelper.add_element(dehumidifier, 'EnergyFactor', @energy_factor, :float) unless @energy_factor.nil? XMLHelper.add_element(dehumidifier, 'IntegratedEnergyFactor', @integrated_energy_factor, :float) unless @integrated_energy_factor.nil? @@ -4422,6 +4655,7 @@ def from_oga(dehumidifier) @id = HPXML::get_id(dehumidifier) @type = XMLHelper.get_value(dehumidifier, 'Type', :string) + @location = XMLHelper.get_value(dehumidifier, 'Location', :string) @capacity = XMLHelper.get_value(dehumidifier, 'Capacity', :float) @energy_factor = XMLHelper.get_value(dehumidifier, 'EnergyFactor', :float) @integrated_energy_factor = XMLHelper.get_value(dehumidifier, 'IntegratedEnergyFactor', :float) @@ -4478,13 +4712,13 @@ def from_oga(cooking_range) return if cooking_range.nil? @id = HPXML::get_id(cooking_range) - @location, @location_isdefaulted = XMLHelper.get_value_and_defaulted(cooking_range, 'Location', :string) + @location = XMLHelper.get_value(cooking_range, 'Location', :string) @fuel_type = XMLHelper.get_value(cooking_range, 'FuelType', :string) - @is_induction, @is_induction_isdefaulted = XMLHelper.get_value_and_defaulted(cooking_range, 'IsInduction', :boolean) - @usage_multiplier, @usage_multiplier_isdefaulted = XMLHelper.get_value_and_defaulted(cooking_range, 'extension/UsageMultiplier', :float) - @weekday_fractions, @weekday_fractions_isdefaulted = XMLHelper.get_value_and_defaulted(cooking_range, 'extension/WeekdayScheduleFractions', :string) - @weekend_fractions, @weekend_fractions_isdefaulted = XMLHelper.get_value_and_defaulted(cooking_range, 'extension/WeekendScheduleFractions', :string) - @monthly_multipliers, @monthly_multipliers_isdefaulted = XMLHelper.get_value_and_defaulted(cooking_range, 'extension/MonthlyScheduleMultipliers', :string) + @is_induction = XMLHelper.get_value(cooking_range, 'IsInduction', :boolean) + @usage_multiplier = XMLHelper.get_value(cooking_range, 'extension/UsageMultiplier', :float) + @weekday_fractions = XMLHelper.get_value(cooking_range, 'extension/WeekdayScheduleFractions', :string) + @weekend_fractions = XMLHelper.get_value(cooking_range, 'extension/WeekendScheduleFractions', :string) + @monthly_multipliers = XMLHelper.get_value(cooking_range, 'extension/MonthlyScheduleMultipliers', :string) end end @@ -4529,7 +4763,7 @@ def from_oga(oven) return if oven.nil? @id = HPXML::get_id(oven) - @is_convection, @is_convection_isdefaulted = XMLHelper.get_value_and_defaulted(oven, 'IsConvection', :boolean) + @is_convection = XMLHelper.get_value(oven, 'IsConvection', :boolean) end end @@ -4637,27 +4871,27 @@ def from_oga(hpxml) lighting = XMLHelper.get_element(hpxml, 'Building/BuildingDetails/Lighting') return if lighting.nil? - @interior_usage_multiplier, @interior_usage_multiplier_isdefaulted = XMLHelper.get_value_and_defaulted(lighting, 'extension/InteriorUsageMultiplier', :float) - @garage_usage_multiplier, @garage_usage_multiplier_isdefaulted = XMLHelper.get_value_and_defaulted(lighting, 'extension/GarageUsageMultiplier', :float) - @exterior_usage_multiplier, @exterior_usage_multiplier_isdefaulted = XMLHelper.get_value_and_defaulted(lighting, 'extension/ExteriorUsageMultiplier', :float) - @interior_weekday_fractions, @interior_weekday_fractions_isdefaulted = XMLHelper.get_value_and_defaulted(lighting, 'extension/InteriorWeekdayScheduleFractions', :string) - @interior_weekend_fractions, @interior_weekend_fractions_isdefaulted = XMLHelper.get_value_and_defaulted(lighting, 'extension/InteriorWeekendScheduleFractions', :string) - @interior_monthly_multipliers, @interior_monthly_multipliers_isdefaulted = XMLHelper.get_value_and_defaulted(lighting, 'extension/InteriorMonthlyScheduleMultipliers', :string) - @garage_weekday_fractions, @garage_weekday_fractions_isdefaulted = XMLHelper.get_value_and_defaulted(lighting, 'extension/GarageWeekdayScheduleFractions', :string) - @garage_weekend_fractions, @garage_weekend_fractions_isdefaulted = XMLHelper.get_value_and_defaulted(lighting, 'extension/GarageWeekendScheduleFractions', :string) - @garage_monthly_multipliers, @garage_monthly_multipliers_isdefaulted = XMLHelper.get_value_and_defaulted(lighting, 'extension/GarageMonthlyScheduleMultipliers', :string) - @exterior_weekday_fractions, @exterior_weekday_fractions_isdefaulted = XMLHelper.get_value_and_defaulted(lighting, 'extension/ExteriorWeekdayScheduleFractions', :string) - @exterior_weekend_fractions, @exterior_weekend_fractions_isdefaulted = XMLHelper.get_value_and_defaulted(lighting, 'extension/ExteriorWeekendScheduleFractions', :string) - @exterior_monthly_multipliers, @exterior_monthly_multipliers_isdefaulted = XMLHelper.get_value_and_defaulted(lighting, 'extension/ExteriorMonthlyScheduleMultipliers', :string) + @interior_usage_multiplier = XMLHelper.get_value(lighting, 'extension/InteriorUsageMultiplier', :float) + @garage_usage_multiplier = XMLHelper.get_value(lighting, 'extension/GarageUsageMultiplier', :float) + @exterior_usage_multiplier = XMLHelper.get_value(lighting, 'extension/ExteriorUsageMultiplier', :float) + @interior_weekday_fractions = XMLHelper.get_value(lighting, 'extension/InteriorWeekdayScheduleFractions', :string) + @interior_weekend_fractions = XMLHelper.get_value(lighting, 'extension/InteriorWeekendScheduleFractions', :string) + @interior_monthly_multipliers = XMLHelper.get_value(lighting, 'extension/InteriorMonthlyScheduleMultipliers', :string) + @garage_weekday_fractions = XMLHelper.get_value(lighting, 'extension/GarageWeekdayScheduleFractions', :string) + @garage_weekend_fractions = XMLHelper.get_value(lighting, 'extension/GarageWeekendScheduleFractions', :string) + @garage_monthly_multipliers = XMLHelper.get_value(lighting, 'extension/GarageMonthlyScheduleMultipliers', :string) + @exterior_weekday_fractions = XMLHelper.get_value(lighting, 'extension/ExteriorWeekdayScheduleFractions', :string) + @exterior_weekend_fractions = XMLHelper.get_value(lighting, 'extension/ExteriorWeekendScheduleFractions', :string) + @exterior_monthly_multipliers = XMLHelper.get_value(lighting, 'extension/ExteriorMonthlyScheduleMultipliers', :string) if not XMLHelper.get_element(hpxml, 'Building/BuildingDetails/Lighting/extension/ExteriorHolidayLighting').nil? @holiday_exists = true - @holiday_kwh_per_day, @holiday_kwh_per_day_isdefaulted = XMLHelper.get_value_and_defaulted(lighting, 'extension/ExteriorHolidayLighting/Load[Units="kWh/day"]/Value', :float) - @holiday_period_begin_month, @holiday_period_begin_month_isdefaulted = XMLHelper.get_value_and_defaulted(lighting, 'extension/ExteriorHolidayLighting/PeriodBeginMonth', :integer) - @holiday_period_begin_day, @holiday_period_begin_day_isdefaulted = XMLHelper.get_value_and_defaulted(lighting, 'extension/ExteriorHolidayLighting/PeriodBeginDayOfMonth', :integer) - @holiday_period_end_month, @holiday_period_end_month_isdefaulted = XMLHelper.get_value_and_defaulted(lighting, 'extension/ExteriorHolidayLighting/PeriodEndMonth', :integer) - @holiday_period_end_day, @holiday_period_end_day_isdefaulted = XMLHelper.get_value_and_defaulted(lighting, 'extension/ExteriorHolidayLighting/PeriodEndDayOfMonth', :integer) - @holiday_weekday_fractions, @holiday_weekday_fractions_isdefaulted = XMLHelper.get_value_and_defaulted(lighting, 'extension/ExteriorHolidayLighting/WeekdayScheduleFractions', :string) - @holiday_weekend_fractions, @holiday_weekend_fractions_isdefaulted = XMLHelper.get_value_and_defaulted(lighting, 'extension/ExteriorHolidayLighting/WeekendScheduleFractions', :string) + @holiday_kwh_per_day = XMLHelper.get_value(lighting, 'extension/ExteriorHolidayLighting/Load[Units="kWh/day"]/Value', :float) + @holiday_period_begin_month = XMLHelper.get_value(lighting, 'extension/ExteriorHolidayLighting/PeriodBeginMonth', :integer) + @holiday_period_begin_day = XMLHelper.get_value(lighting, 'extension/ExteriorHolidayLighting/PeriodBeginDayOfMonth', :integer) + @holiday_period_end_month = XMLHelper.get_value(lighting, 'extension/ExteriorHolidayLighting/PeriodEndMonth', :integer) + @holiday_period_end_day = XMLHelper.get_value(lighting, 'extension/ExteriorHolidayLighting/PeriodEndDayOfMonth', :integer) + @holiday_weekday_fractions = XMLHelper.get_value(lighting, 'extension/ExteriorHolidayLighting/WeekdayScheduleFractions', :string) + @holiday_weekend_fractions = XMLHelper.get_value(lighting, 'extension/ExteriorHolidayLighting/WeekendScheduleFractions', :string) else @holiday_exists = false end @@ -4708,8 +4942,8 @@ def to_oga(doc) def from_oga(ceiling_fan) @id = HPXML::get_id(ceiling_fan) - @efficiency, @efficiency_isdefaulted = XMLHelper.get_value_and_defaulted(ceiling_fan, "Airflow[FanSpeed='medium']/Efficiency", :float) - @quantity, @quantity_isdefaulted = XMLHelper.get_value_and_defaulted(ceiling_fan, 'Quantity', :integer) + @efficiency = XMLHelper.get_value(ceiling_fan, "Airflow[FanSpeed='medium']/Efficiency", :float) + @quantity = XMLHelper.get_value(ceiling_fan, 'Quantity', :integer) end end @@ -4728,8 +4962,8 @@ def from_oga(hpxml) end class Pool < BaseElement - ATTRS = [:id, :heater_id, :heater_type, :heater_load_units, :heater_load_value, :heater_usage_multiplier, - :pump_id, :pump_kwh_per_year, :pump_usage_multiplier, + ATTRS = [:id, :type, :heater_id, :heater_type, :heater_load_units, :heater_load_value, :heater_usage_multiplier, + :pump_id, :pump_type, :pump_kwh_per_year, :pump_usage_multiplier, :heater_weekday_fractions, :heater_weekend_fractions, :heater_monthly_multipliers, :pump_weekday_fractions, :pump_weekend_fractions, :pump_monthly_multipliers] attr_accessor(*ATTRS) @@ -4750,24 +4984,28 @@ def to_oga(doc) pool = XMLHelper.add_element(pools, 'Pool') sys_id = XMLHelper.add_element(pool, 'SystemIdentifier') XMLHelper.add_attribute(sys_id, 'id', @id) - pumps = XMLHelper.add_element(pool, 'PoolPumps') - pool_pump = XMLHelper.add_element(pumps, 'PoolPump') - sys_id = XMLHelper.add_element(pool_pump, 'SystemIdentifier') - if not @pump_id.nil? - XMLHelper.add_attribute(sys_id, 'id', @pump_id) - else - XMLHelper.add_attribute(sys_id, 'id', @id + 'Pump') - end - if not @pump_kwh_per_year.nil? - load = XMLHelper.add_element(pool_pump, 'Load') - XMLHelper.add_element(load, 'Units', UnitsKwhPerYear, :string) - XMLHelper.add_element(load, 'Value', @pump_kwh_per_year, :float, @pump_kwh_per_year_isdefaulted) - XMLHelper.add_extension(pool_pump, 'UsageMultiplier', @pump_usage_multiplier, :float, @pump_usage_multiplier_isdefaulted) unless @pump_usage_multiplier.nil? - XMLHelper.add_extension(pool_pump, 'WeekdayScheduleFractions', @pump_weekday_fractions, :string, @pump_weekday_fractions_isdefaulted) unless @pump_weekday_fractions.nil? - XMLHelper.add_extension(pool_pump, 'WeekendScheduleFractions', @pump_weekend_fractions, :string, @pump_weekend_fractions_isdefaulted) unless @pump_weekend_fractions.nil? - XMLHelper.add_extension(pool_pump, 'MonthlyScheduleMultipliers', @pump_monthly_multipliers, :string, @pump_monthly_multipliers_isdefaulted) unless @pump_monthly_multipliers.nil? - end - if not @heater_type.nil? + XMLHelper.add_element(pool, 'Type', @type, :string) unless @type.nil? + if @type != HPXML::TypeNone + pumps = XMLHelper.add_element(pool, 'PoolPumps') + pool_pump = XMLHelper.add_element(pumps, 'PoolPump') + sys_id = XMLHelper.add_element(pool_pump, 'SystemIdentifier') + if not @pump_id.nil? + XMLHelper.add_attribute(sys_id, 'id', @pump_id) + else + XMLHelper.add_attribute(sys_id, 'id', @id + 'Pump') + end + XMLHelper.add_element(pool_pump, 'Type', @pump_type, :string) + if @pump_type != HPXML::TypeNone + if not @pump_kwh_per_year.nil? + load = XMLHelper.add_element(pool_pump, 'Load') + XMLHelper.add_element(load, 'Units', UnitsKwhPerYear, :string) + XMLHelper.add_element(load, 'Value', @pump_kwh_per_year, :float, @pump_kwh_per_year_isdefaulted) + end + XMLHelper.add_extension(pool_pump, 'UsageMultiplier', @pump_usage_multiplier, :float, @pump_usage_multiplier_isdefaulted) unless @pump_usage_multiplier.nil? + XMLHelper.add_extension(pool_pump, 'WeekdayScheduleFractions', @pump_weekday_fractions, :string, @pump_weekday_fractions_isdefaulted) unless @pump_weekday_fractions.nil? + XMLHelper.add_extension(pool_pump, 'WeekendScheduleFractions', @pump_weekend_fractions, :string, @pump_weekend_fractions_isdefaulted) unless @pump_weekend_fractions.nil? + XMLHelper.add_extension(pool_pump, 'MonthlyScheduleMultipliers', @pump_monthly_multipliers, :string, @pump_monthly_multipliers_isdefaulted) unless @pump_monthly_multipliers.nil? + end heater = XMLHelper.add_element(pool, 'Heater') sys_id = XMLHelper.add_element(heater, 'SystemIdentifier') if not @heater_id.nil? @@ -4776,37 +5014,43 @@ def to_oga(doc) XMLHelper.add_attribute(sys_id, 'id', @id + 'Heater') end XMLHelper.add_element(heater, 'Type', @heater_type, :string) - if (not @heater_load_units.nil?) && (not @heater_load_value.nil?) - load = XMLHelper.add_element(heater, 'Load') - XMLHelper.add_element(load, 'Units', @heater_load_units, :string) - XMLHelper.add_element(load, 'Value', @heater_load_value, :float, @heater_load_value_isdefaulted) + if @heater_type != HPXML::TypeNone + if (not @heater_load_units.nil?) && (not @heater_load_value.nil?) + load = XMLHelper.add_element(heater, 'Load') + XMLHelper.add_element(load, 'Units', @heater_load_units, :string) + XMLHelper.add_element(load, 'Value', @heater_load_value, :float, @heater_load_value_isdefaulted) + end + XMLHelper.add_extension(heater, 'UsageMultiplier', @heater_usage_multiplier, :float, @heater_usage_multiplier_isdefaulted) unless @heater_usage_multiplier.nil? + XMLHelper.add_extension(heater, 'WeekdayScheduleFractions', @heater_weekday_fractions, :string, @heater_weekday_fractions_isdefaulted) unless @heater_weekday_fractions.nil? + XMLHelper.add_extension(heater, 'WeekendScheduleFractions', @heater_weekend_fractions, :string, @heater_weekend_fractions_isdefaulted) unless @heater_weekend_fractions.nil? + XMLHelper.add_extension(heater, 'MonthlyScheduleMultipliers', @heater_monthly_multipliers, :string, @heater_monthly_multipliers_isdefaulted) unless @heater_monthly_multipliers.nil? end - XMLHelper.add_extension(heater, 'UsageMultiplier', @heater_usage_multiplier, :float, @heater_usage_multiplier_isdefaulted) unless @heater_usage_multiplier.nil? - XMLHelper.add_extension(heater, 'WeekdayScheduleFractions', @heater_weekday_fractions, :string, @heater_weekday_fractions_isdefaulted) unless @heater_weekday_fractions.nil? - XMLHelper.add_extension(heater, 'WeekendScheduleFractions', @heater_weekend_fractions, :string, @heater_weekend_fractions_isdefaulted) unless @heater_weekend_fractions.nil? - XMLHelper.add_extension(heater, 'MonthlyScheduleMultipliers', @heater_monthly_multipliers, :string, @heater_monthly_multipliers_isdefaulted) unless @heater_monthly_multipliers.nil? end end def from_oga(pool) @id = HPXML::get_id(pool) + @type = XMLHelper.get_value(pool, 'Type', :string) pool_pump = XMLHelper.get_element(pool, 'PoolPumps/PoolPump') - @pump_id = HPXML::get_id(pool_pump) - @pump_kwh_per_year, @pump_kwh_per_year_isdefaulted = XMLHelper.get_value_and_defaulted(pool_pump, "Load[Units='#{UnitsKwhPerYear}']/Value", :float) - @pump_usage_multiplier, @pump_usage_multiplier_isdefaulted = XMLHelper.get_value_and_defaulted(pool_pump, 'extension/UsageMultiplier', :float) - @pump_weekday_fractions, @pump_weekday_fractions_isdefaulted = XMLHelper.get_value_and_defaulted(pool_pump, 'extension/WeekdayScheduleFractions', :string) - @pump_weekend_fractions, @pump_weekend_fractions_isdefaulted = XMLHelper.get_value_and_defaulted(pool_pump, 'extension/WeekendScheduleFractions', :string) - @pump_monthly_multipliers, @pump_monthly_multipliers_isdefaulted = XMLHelper.get_value_and_defaulted(pool_pump, 'extension/MonthlyScheduleMultipliers', :string) + if not pool_pump.nil? + @pump_id = HPXML::get_id(pool_pump) + @pump_type = XMLHelper.get_value(pool_pump, 'Type', :string) + @pump_kwh_per_year = XMLHelper.get_value(pool_pump, "Load[Units='#{UnitsKwhPerYear}']/Value", :float) + @pump_usage_multiplier = XMLHelper.get_value(pool_pump, 'extension/UsageMultiplier', :float) + @pump_weekday_fractions = XMLHelper.get_value(pool_pump, 'extension/WeekdayScheduleFractions', :string) + @pump_weekend_fractions = XMLHelper.get_value(pool_pump, 'extension/WeekendScheduleFractions', :string) + @pump_monthly_multipliers = XMLHelper.get_value(pool_pump, 'extension/MonthlyScheduleMultipliers', :string) + end heater = XMLHelper.get_element(pool, 'Heater') if not heater.nil? @heater_id = HPXML::get_id(heater) @heater_type = XMLHelper.get_value(heater, 'Type', :string) @heater_load_units = XMLHelper.get_value(heater, 'Load/Units', :string) - @heater_load_value, @heater_load_value_isdefaulted = XMLHelper.get_value_and_defaulted(heater, 'Load/Value', :float) - @heater_usage_multiplier, @heater_usage_multiplier_isdefaulted = XMLHelper.get_value_and_defaulted(heater, 'extension/UsageMultiplier', :float) - @heater_weekday_fractions, @heater_weekday_fractions_isdefaulted = XMLHelper.get_value_and_defaulted(heater, 'extension/WeekdayScheduleFractions', :string) - @heater_weekend_fractions, @heater_weekend_fractions_isdefaulted = XMLHelper.get_value_and_defaulted(heater, 'extension/WeekendScheduleFractions', :string) - @heater_monthly_multipliers, @heater_monthly_multipliers_isdefaulted = XMLHelper.get_value_and_defaulted(heater, 'extension/MonthlyScheduleMultipliers', :string) + @heater_load_value = XMLHelper.get_value(heater, 'Load/Value', :float) + @heater_usage_multiplier = XMLHelper.get_value(heater, 'extension/UsageMultiplier', :float) + @heater_weekday_fractions = XMLHelper.get_value(heater, 'extension/WeekdayScheduleFractions', :string) + @heater_weekend_fractions = XMLHelper.get_value(heater, 'extension/WeekendScheduleFractions', :string) + @heater_monthly_multipliers = XMLHelper.get_value(heater, 'extension/MonthlyScheduleMultipliers', :string) end end end @@ -4826,8 +5070,8 @@ def from_oga(hpxml) end class HotTub < BaseElement - ATTRS = [:id, :heater_id, :heater_type, :heater_load_units, :heater_load_value, :heater_usage_multiplier, - :pump_id, :pump_kwh_per_year, :pump_usage_multiplier, + ATTRS = [:id, :type, :heater_id, :heater_type, :heater_load_units, :heater_load_value, :heater_usage_multiplier, + :pump_id, :pump_type, :pump_kwh_per_year, :pump_usage_multiplier, :heater_weekday_fractions, :heater_weekend_fractions, :heater_monthly_multipliers, :pump_weekday_fractions, :pump_weekend_fractions, :pump_monthly_multipliers] attr_accessor(*ATTRS) @@ -4848,24 +5092,28 @@ def to_oga(doc) hot_tub = XMLHelper.add_element(hot_tubs, 'HotTub') sys_id = XMLHelper.add_element(hot_tub, 'SystemIdentifier') XMLHelper.add_attribute(sys_id, 'id', @id) - pumps = XMLHelper.add_element(hot_tub, 'HotTubPumps') - hot_tub_pump = XMLHelper.add_element(pumps, 'HotTubPump') - sys_id = XMLHelper.add_element(hot_tub_pump, 'SystemIdentifier') - if not @pump_id.nil? - XMLHelper.add_attribute(sys_id, 'id', @pump_id) - else - XMLHelper.add_attribute(sys_id, 'id', @id + 'Pump') - end - if not @pump_kwh_per_year.nil? - load = XMLHelper.add_element(hot_tub_pump, 'Load') - XMLHelper.add_element(load, 'Units', UnitsKwhPerYear, :string) - XMLHelper.add_element(load, 'Value', @pump_kwh_per_year, :float, @pump_kwh_per_year_isdefaulted) - XMLHelper.add_extension(hot_tub_pump, 'UsageMultiplier', @pump_usage_multiplier, :float, @pump_usage_multiplier_isdefaulted) unless @pump_usage_multiplier.nil? - XMLHelper.add_extension(hot_tub_pump, 'WeekdayScheduleFractions', @pump_weekday_fractions, :string, @pump_weekday_fractions_isdefaulted) unless @pump_weekday_fractions.nil? - XMLHelper.add_extension(hot_tub_pump, 'WeekendScheduleFractions', @pump_weekend_fractions, :string, @pump_weekend_fractions_isdefaulted) unless @pump_weekend_fractions.nil? - XMLHelper.add_extension(hot_tub_pump, 'MonthlyScheduleMultipliers', @pump_monthly_multipliers, :string, @pump_monthly_multipliers_isdefaulted) unless @pump_monthly_multipliers.nil? - end - if not @heater_type.nil? + XMLHelper.add_element(hot_tub, 'Type', @type, :string) unless @type.nil? + if @type != HPXML::TypeNone + pumps = XMLHelper.add_element(hot_tub, 'HotTubPumps') + hot_tub_pump = XMLHelper.add_element(pumps, 'HotTubPump') + sys_id = XMLHelper.add_element(hot_tub_pump, 'SystemIdentifier') + if not @pump_id.nil? + XMLHelper.add_attribute(sys_id, 'id', @pump_id) + else + XMLHelper.add_attribute(sys_id, 'id', @id + 'Pump') + end + XMLHelper.add_element(hot_tub_pump, 'Type', @pump_type, :string) + if @pump_type != HPXML::TypeNone + if not @pump_kwh_per_year.nil? + load = XMLHelper.add_element(hot_tub_pump, 'Load') + XMLHelper.add_element(load, 'Units', UnitsKwhPerYear, :string) + XMLHelper.add_element(load, 'Value', @pump_kwh_per_year, :float, @pump_kwh_per_year_isdefaulted) + end + XMLHelper.add_extension(hot_tub_pump, 'UsageMultiplier', @pump_usage_multiplier, :float, @pump_usage_multiplier_isdefaulted) unless @pump_usage_multiplier.nil? + XMLHelper.add_extension(hot_tub_pump, 'WeekdayScheduleFractions', @pump_weekday_fractions, :string, @pump_weekday_fractions_isdefaulted) unless @pump_weekday_fractions.nil? + XMLHelper.add_extension(hot_tub_pump, 'WeekendScheduleFractions', @pump_weekend_fractions, :string, @pump_weekend_fractions_isdefaulted) unless @pump_weekend_fractions.nil? + XMLHelper.add_extension(hot_tub_pump, 'MonthlyScheduleMultipliers', @pump_monthly_multipliers, :string, @pump_monthly_multipliers_isdefaulted) unless @pump_monthly_multipliers.nil? + end heater = XMLHelper.add_element(hot_tub, 'Heater') sys_id = XMLHelper.add_element(heater, 'SystemIdentifier') if not @heater_id.nil? @@ -4874,37 +5122,43 @@ def to_oga(doc) XMLHelper.add_attribute(sys_id, 'id', @id + 'Heater') end XMLHelper.add_element(heater, 'Type', @heater_type, :string) - if (not @heater_load_units.nil?) && (not @heater_load_value.nil?) - load = XMLHelper.add_element(heater, 'Load') - XMLHelper.add_element(load, 'Units', @heater_load_units, :string) - XMLHelper.add_element(load, 'Value', @heater_load_value, :float, @heater_load_value_isdefaulted) + if @heater_type != HPXML::TypeNone + if (not @heater_load_units.nil?) && (not @heater_load_value.nil?) + load = XMLHelper.add_element(heater, 'Load') + XMLHelper.add_element(load, 'Units', @heater_load_units, :string) + XMLHelper.add_element(load, 'Value', @heater_load_value, :float, @heater_load_value_isdefaulted) + end + XMLHelper.add_extension(heater, 'UsageMultiplier', @heater_usage_multiplier, :float, @heater_usage_multiplier_isdefaulted) unless @heater_usage_multiplier.nil? + XMLHelper.add_extension(heater, 'WeekdayScheduleFractions', @heater_weekday_fractions, :string, @heater_weekday_fractions_isdefaulted) unless @heater_weekday_fractions.nil? + XMLHelper.add_extension(heater, 'WeekendScheduleFractions', @heater_weekend_fractions, :string, @heater_weekend_fractions_isdefaulted) unless @heater_weekend_fractions.nil? + XMLHelper.add_extension(heater, 'MonthlyScheduleMultipliers', @heater_monthly_multipliers, :string, @heater_monthly_multipliers_isdefaulted) unless @heater_monthly_multipliers.nil? end - XMLHelper.add_extension(heater, 'UsageMultiplier', @heater_usage_multiplier, :float, @heater_usage_multiplier_isdefaulted) unless @heater_usage_multiplier.nil? - XMLHelper.add_extension(heater, 'WeekdayScheduleFractions', @heater_weekday_fractions, :string, @heater_weekday_fractions_isdefaulted) unless @heater_weekday_fractions.nil? - XMLHelper.add_extension(heater, 'WeekendScheduleFractions', @heater_weekend_fractions, :string, @heater_weekend_fractions_isdefaulted) unless @heater_weekend_fractions.nil? - XMLHelper.add_extension(heater, 'MonthlyScheduleMultipliers', @heater_monthly_multipliers, :string, @heater_monthly_multipliers_isdefaulted) unless @heater_monthly_multipliers.nil? end end def from_oga(hot_tub) @id = HPXML::get_id(hot_tub) + @type = XMLHelper.get_value(hot_tub, 'Type', :string) hot_tub_pump = XMLHelper.get_element(hot_tub, 'HotTubPumps/HotTubPump') - @pump_id = HPXML::get_id(hot_tub_pump) - @pump_kwh_per_year, @pump_kwh_per_year_isdefaulted = XMLHelper.get_value_and_defaulted(hot_tub_pump, "Load[Units='#{UnitsKwhPerYear}']/Value", :float) - @pump_usage_multiplier, @pump_usage_multiplier_isdefaulted = XMLHelper.get_value_and_defaulted(hot_tub_pump, 'extension/UsageMultiplier', :float) - @pump_weekday_fractions, @pump_weekday_fractions_isdefaulted = XMLHelper.get_value_and_defaulted(hot_tub_pump, 'extension/WeekdayScheduleFractions', :string) - @pump_weekend_fractions, @pump_weekend_fractions_isdefaulted = XMLHelper.get_value_and_defaulted(hot_tub_pump, 'extension/WeekendScheduleFractions', :string) - @pump_monthly_multipliers, @pump_monthly_multipliers_isdefaulted = XMLHelper.get_value_and_defaulted(hot_tub_pump, 'extension/MonthlyScheduleMultipliers', :string) + if not hot_tub_pump.nil? + @pump_id = HPXML::get_id(hot_tub_pump) + @pump_type = XMLHelper.get_value(hot_tub_pump, 'Type', :string) + @pump_kwh_per_year = XMLHelper.get_value(hot_tub_pump, "Load[Units='#{UnitsKwhPerYear}']/Value", :float) + @pump_usage_multiplier = XMLHelper.get_value(hot_tub_pump, 'extension/UsageMultiplier', :float) + @pump_weekday_fractions = XMLHelper.get_value(hot_tub_pump, 'extension/WeekdayScheduleFractions', :string) + @pump_weekend_fractions = XMLHelper.get_value(hot_tub_pump, 'extension/WeekendScheduleFractions', :string) + @pump_monthly_multipliers = XMLHelper.get_value(hot_tub_pump, 'extension/MonthlyScheduleMultipliers', :string) + end heater = XMLHelper.get_element(hot_tub, 'Heater') if not heater.nil? @heater_id = HPXML::get_id(heater) @heater_type = XMLHelper.get_value(heater, 'Type', :string) @heater_load_units = XMLHelper.get_value(heater, 'Load/Units', :string) - @heater_load_value, @heater_load_value_isdefaulted = XMLHelper.get_value_and_defaulted(heater, 'Load/Value', :float) - @heater_usage_multiplier, @heater_usage_multiplier_isdefaulted = XMLHelper.get_value_and_defaulted(heater, 'extension/UsageMultiplier', :float) - @heater_weekday_fractions, @heater_weekday_fractions_isdefaulted = XMLHelper.get_value_and_defaulted(heater, 'extension/WeekdayScheduleFractions', :string) - @heater_weekend_fractions, @heater_weekend_fractions_isdefaulted = XMLHelper.get_value_and_defaulted(heater, 'extension/WeekendScheduleFractions', :string) - @heater_monthly_multipliers, @heater_monthly_multipliers_isdefaulted = XMLHelper.get_value_and_defaulted(heater, 'extension/MonthlyScheduleMultipliers', :string) + @heater_load_value = XMLHelper.get_value(heater, 'Load/Value', :float) + @heater_usage_multiplier = XMLHelper.get_value(heater, 'extension/UsageMultiplier', :float) + @heater_weekday_fractions = XMLHelper.get_value(heater, 'extension/WeekdayScheduleFractions', :string) + @heater_weekend_fractions = XMLHelper.get_value(heater, 'extension/WeekendScheduleFractions', :string) + @heater_monthly_multipliers = XMLHelper.get_value(heater, 'extension/MonthlyScheduleMultipliers', :string) end end end @@ -4961,13 +5215,13 @@ def to_oga(doc) def from_oga(plug_load) @id = HPXML::get_id(plug_load) @plug_load_type = XMLHelper.get_value(plug_load, 'PlugLoadType', :string) - @kWh_per_year, @kWh_per_year_isdefaulted = XMLHelper.get_value_and_defaulted(plug_load, "Load[Units='#{UnitsKwhPerYear}']/Value", :float) - @frac_sensible, @frac_sensible_isdefaulted = XMLHelper.get_value_and_defaulted(plug_load, 'extension/FracSensible', :float) - @frac_latent, @frac_latent_isdefaulted = XMLHelper.get_value_and_defaulted(plug_load, 'extension/FracLatent', :float) - @usage_multiplier, @usage_multiplier_isdefaulted = XMLHelper.get_value_and_defaulted(plug_load, 'extension/UsageMultiplier', :float) - @weekday_fractions, @weekday_fractions_isdefaulted = XMLHelper.get_value_and_defaulted(plug_load, 'extension/WeekdayScheduleFractions', :string) - @weekend_fractions, @weekend_fractions_isdefaulted = XMLHelper.get_value_and_defaulted(plug_load, 'extension/WeekendScheduleFractions', :string) - @monthly_multipliers, @monthly_multipliers_isdefaulted = XMLHelper.get_value_and_defaulted(plug_load, 'extension/MonthlyScheduleMultipliers', :string) + @kWh_per_year = XMLHelper.get_value(plug_load, "Load[Units='#{UnitsKwhPerYear}']/Value", :float) + @frac_sensible = XMLHelper.get_value(plug_load, 'extension/FracSensible', :float) + @frac_latent = XMLHelper.get_value(plug_load, 'extension/FracLatent', :float) + @usage_multiplier = XMLHelper.get_value(plug_load, 'extension/UsageMultiplier', :float) + @weekday_fractions = XMLHelper.get_value(plug_load, 'extension/WeekdayScheduleFractions', :string) + @weekend_fractions = XMLHelper.get_value(plug_load, 'extension/WeekendScheduleFractions', :string) + @monthly_multipliers = XMLHelper.get_value(plug_load, 'extension/MonthlyScheduleMultipliers', :string) end end @@ -5024,14 +5278,14 @@ def to_oga(doc) def from_oga(fuel_load) @id = HPXML::get_id(fuel_load) @fuel_load_type = XMLHelper.get_value(fuel_load, 'FuelLoadType', :string) - @therm_per_year, @therm_per_year_isdefaulted = XMLHelper.get_value_and_defaulted(fuel_load, "Load[Units='#{UnitsThermPerYear}']/Value", :float) + @therm_per_year = XMLHelper.get_value(fuel_load, "Load[Units='#{UnitsThermPerYear}']/Value", :float) @fuel_type = XMLHelper.get_value(fuel_load, 'FuelType', :string) - @frac_sensible, @frac_sensible_isdefaulted = XMLHelper.get_value_and_defaulted(fuel_load, 'extension/FracSensible', :float) - @frac_latent, @frac_latent_isdefaulted = XMLHelper.get_value_and_defaulted(fuel_load, 'extension/FracLatent', :float) - @usage_multiplier, @usage_multiplier_isdefaulted = XMLHelper.get_value_and_defaulted(fuel_load, 'extension/UsageMultiplier', :float) - @weekday_fractions, @weekday_fractions_isdefaulted = XMLHelper.get_value_and_defaulted(fuel_load, 'extension/WeekdayScheduleFractions', :string) - @weekend_fractions, @weekend_fractions_isdefaulted = XMLHelper.get_value_and_defaulted(fuel_load, 'extension/WeekendScheduleFractions', :string) - @monthly_multipliers, @monthly_multipliers_isdefaulted = XMLHelper.get_value_and_defaulted(fuel_load, 'extension/MonthlyScheduleMultipliers', :string) + @frac_sensible = XMLHelper.get_value(fuel_load, 'extension/FracSensible', :float) + @frac_latent = XMLHelper.get_value(fuel_load, 'extension/FracLatent', :float) + @usage_multiplier = XMLHelper.get_value(fuel_load, 'extension/UsageMultiplier', :float) + @weekday_fractions = XMLHelper.get_value(fuel_load, 'extension/WeekdayScheduleFractions', :string) + @weekend_fractions = XMLHelper.get_value(fuel_load, 'extension/WeekendScheduleFractions', :string) + @monthly_multipliers = XMLHelper.get_value(fuel_load, 'extension/MonthlyScheduleMultipliers', :string) end end @@ -5178,7 +5432,7 @@ def check_for_errors() # Check for errors across objects # # ------------------------------- # - # Check for globally unique SystemIdentifier IDs + # Check for globally unique SystemIdentifier IDs and empty IDs sys_ids = {} self.class::HPXML_ATTRS.each do |attribute| hpxml_obj = send(attribute) @@ -5189,6 +5443,8 @@ def check_for_errors() sys_ids[obj.id] = 0 if sys_ids[obj.id].nil? sys_ids[obj.id] += 1 + + errors << "Empty SystemIdentifier ID ('#{obj.id}') detected for #{attribute}." if !obj.id || obj.id.size == 0 end end sys_ids.each do |sys_id, cnt| @@ -5205,6 +5461,12 @@ def check_for_errors() errors << "Expected FractionHeatLoadServed to sum to <= 1, but calculated sum is #{total_fraction_heat_load_served.round(2)}." end + # Check sum of dehumidifier FractionDehumidificationLoadServed <= 1 + total_fraction_dehum_load_served = @dehumidifiers.map { |d| d.fraction_served }.sum(0.0) + if total_fraction_dehum_load_served > 1.01 # Use 1.01 in case of rounding + errors << "Expected FractionDehumidificationLoadServed to sum to <= 1, but calculated sum is #{total_fraction_dehum_load_served.round(2)}." + end + # Check sum of HVAC FractionDHWLoadServed == 1 frac_dhw_load = @water_heating_systems.map { |dhw| dhw.fraction_dhw_load_served.to_f }.sum(0.0) if (frac_dhw_load > 0) && ((frac_dhw_load < 0.99) || (frac_dhw_load > 1.01)) # Use 0.99/1.01 in case of rounding @@ -5220,9 +5482,9 @@ def check_for_errors() ltg_fracs[lighting_group.location] += lighting_group.fraction_of_units_in_location end ltg_fracs.each do |location, sum| - next if sum <= 1 + next if sum <= 1.01 # Use 1.01 in case of rounding - fail "Sum of fractions of #{location} lighting (#{sum}) is greater than 1." + errors << "Sum of fractions of #{location} lighting (#{sum}) is greater than 1." end # Check for HVAC systems referenced by multiple water heating systems @@ -5241,7 +5503,7 @@ def check_for_errors() # Check for the sum of CFA served by distribution systems <= CFA if not @building_construction.conditioned_floor_area.nil? - air_distributions = @hvac_distributions.select { |dist| dist if [HPXML::HVACDistributionTypeAir, HPXML::HVACDistributionTypeHydronicAndAir].include? dist.distribution_system_type } + air_distributions = @hvac_distributions.select { |dist| dist if HPXML::HVACDistributionTypeAir == dist.distribution_system_type } heating_dist = [] cooling_dist = [] air_distributions.each do |dist| @@ -5256,10 +5518,10 @@ def check_for_errors() end heating_total_dist_cfa_served = heating_dist.map { |htg_dist| htg_dist.conditioned_floor_area_served.to_f }.sum(0.0) cooling_total_dist_cfa_served = cooling_dist.map { |clg_dist| clg_dist.conditioned_floor_area_served.to_f }.sum(0.0) - if (heating_total_dist_cfa_served > @building_construction.conditioned_floor_area) + if (heating_total_dist_cfa_served > @building_construction.conditioned_floor_area + 1.0) # Allow 1 ft2 of tolerance errors << 'The total conditioned floor area served by the HVAC distribution system(s) for heating is larger than the conditioned floor area of the building.' end - if (cooling_total_dist_cfa_served > @building_construction.conditioned_floor_area) + if (cooling_total_dist_cfa_served > @building_construction.conditioned_floor_area + 1.0) # Allow 1 ft2 of tolerance errors << 'The total conditioned floor area served by the HVAC distribution system(s) for cooling is larger than the conditioned floor area of the building.' end end @@ -5299,6 +5561,26 @@ def check_for_errors() end end + # Check for at most 1 shared heating system and 1 shared cooling system + num_htg_shared = 0 + num_clg_shared = 0 + (@heating_systems + @heat_pumps).each do |hvac_system| + next unless hvac_system.is_shared_system + + num_htg_shared += 1 + end + (@cooling_systems + @heat_pumps).each do |hvac_system| + next unless hvac_system.is_shared_system + + num_clg_shared += 1 + end + if num_htg_shared > 1 + errors << 'More than one shared heating system found.' + end + if num_clg_shared > 1 + errors << 'More than one shared cooling system found.' + end + errors.map! { |e| "#{@hpxml_path}: #{e}" } return errors diff --git a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/hpxml_defaults.rb b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/hpxml_defaults.rb index 61aad7eb..2b4bebad 100644 --- a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/hpxml_defaults.rb +++ b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/hpxml_defaults.rb @@ -1,8 +1,19 @@ # frozen_string_literal: true class HPXMLDefaults - def self.apply(hpxml, cfa, nbeds, ncfl, ncfl_ag, has_uncond_bsmnt, eri_version, epw_file, runner) - apply_header(hpxml, epw_file, runner) + # Note: Each HPXML object (e.g., HPXML::Wall) has an additional_properties + # child object where # custom information can be attached to the object without + # being written to the HPXML file. This is useful to associate additional values + # with the HPXML objects that will ultimately get passed around. + + def self.apply(hpxml, eri_version, weather, epw_file = nil) + cfa = hpxml.building_construction.conditioned_floor_area + nbeds = hpxml.building_construction.number_of_bedrooms + ncfl = hpxml.building_construction.number_of_conditioned_floors + ncfl_ag = hpxml.building_construction.number_of_conditioned_floors_above_grade + has_uncond_bsmnt = hpxml.has_space_type(HPXML::LocationBasementUnconditioned) + + apply_header(hpxml, epw_file) apply_site(hpxml) apply_building_occupancy(hpxml, nbeds) apply_building_construction(hpxml, cfa, nbeds) @@ -16,7 +27,7 @@ def self.apply(hpxml, cfa, nbeds, ncfl, ncfl_ag, has_uncond_bsmnt, eri_version, apply_slabs(hpxml) apply_windows(hpxml) apply_skylights(hpxml) - apply_hvac(hpxml) + apply_hvac(hpxml, weather) apply_hvac_control(hpxml) apply_hvac_distribution(hpxml, ncfl, ncfl_ag) apply_ventilation_fans(hpxml) @@ -32,11 +43,14 @@ def self.apply(hpxml, cfa, nbeds, ncfl, ncfl_ag, has_uncond_bsmnt, eri_version, apply_fuel_loads(hpxml, cfa, nbeds) apply_pv_systems(hpxml) apply_generators(hpxml) + + # Do HVAC sizing after all other defaults have been applied + apply_hvac_sizing(hpxml, weather, cfa, nbeds) end private - def self.apply_header(hpxml, epw_file, runner) + def self.apply_header(hpxml, epw_file) if hpxml.header.timestep.nil? hpxml.header.timestep = 60 hpxml.header.timestep_isdefaulted = true @@ -59,10 +73,9 @@ def self.apply_header(hpxml, epw_file, runner) hpxml.header.sim_end_day_isdefaulted = true end - if epw_file.startDateActualYear.is_initialized # AMY + if (not epw_file.nil?) && epw_file.startDateActualYear.is_initialized # AMY if not hpxml.header.sim_calendar_year.nil? if hpxml.header.sim_calendar_year != epw_file.startDateActualYear.get - runner.registerWarning("Overriding Calendar Year (#{hpxml.header.sim_calendar_year}) with AMY year (#{epw_file.startDateActualYear.get}).") hpxml.header.sim_calendar_year = epw_file.startDateActualYear.get hpxml.header.sim_calendar_year_isdefaulted = true end @@ -82,7 +95,7 @@ def self.apply_header(hpxml, epw_file, runner) hpxml.header.dst_enabled_isdefaulted = true end - if hpxml.header.dst_enabled + if hpxml.header.dst_enabled && (not epw_file.nil?) if hpxml.header.dst_begin_month.nil? || hpxml.header.dst_begin_day.nil? || hpxml.header.dst_end_month.nil? || hpxml.header.dst_end_day.nil? if epw_file.daylightSavingStartDate.is_initialized && epw_file.daylightSavingEndDate.is_initialized # Use weather file DST dates if available @@ -122,10 +135,11 @@ def self.apply_site(hpxml) hpxml.site.site_type_isdefaulted = true end - if hpxml.site.shelter_coefficient.nil? - hpxml.site.shelter_coefficient = Airflow.get_default_shelter_coefficient() - hpxml.site.shelter_coefficient_isdefaulted = true + if hpxml.site.shielding_of_home.nil? + hpxml.site.shielding_of_home = HPXML::ShieldingNormal + hpxml.site.shielding_of_home_isdefaulted = true end + hpxml.site.additional_properties.aim2_shelter_coeff = Airflow.get_aim2_shelter_coefficient(hpxml.site.shielding_of_home) end def self.apply_building_occupancy(hpxml, nbeds) @@ -205,24 +219,37 @@ def self.apply_infiltration(hpxml) measurement.infiltration_volume_isdefaulted = true end end + + return infil_volume end def self.apply_attics(hpxml) return unless hpxml.has_space_type(HPXML::LocationAtticVented) - vented_attic = nil + vented_attics = [] + default_sla = Airflow.get_default_vented_attic_sla() + default_ach = nil hpxml.attics.each do |attic| next unless attic.attic_type == HPXML::AtticTypeVented + # check existing sla and ach + default_sla = attic.vented_attic_sla unless attic.vented_attic_sla.nil? + default_ach = attic.vented_attic_ach unless attic.vented_attic_ach.nil? - vented_attic = attic + vented_attics << attic end - if vented_attic.nil? + if vented_attics.empty? hpxml.attics.add(id: 'VentedAttic', - attic_type: HPXML::AtticTypeVented) - vented_attic = hpxml.attics[-1] + attic_type: HPXML::AtticTypeVented, + vented_attic_sla: default_sla) + hpxml.attics[-1].vented_attic_sla_isdefaulted = true end - if vented_attic.vented_attic_sla.nil? && vented_attic.vented_attic_ach.nil? - vented_attic.vented_attic_sla = Airflow.get_default_vented_attic_sla() + vented_attics.each do |vented_attic| + next unless (vented_attic.vented_attic_sla.nil? && vented_attic.vented_attic_ach.nil?) + if not default_ach.nil? # ACH specified + vented_attic.vented_attic_ach = default_ach + else # Use SLA + vented_attic.vented_attic_sla = default_sla + end vented_attic.vented_attic_sla_isdefaulted = true end end @@ -230,19 +257,24 @@ def self.apply_attics(hpxml) def self.apply_foundations(hpxml) return unless hpxml.has_space_type(HPXML::LocationCrawlspaceVented) - vented_crawl = nil + vented_crawls = [] + default_sla = Airflow.get_default_vented_crawl_sla() hpxml.foundations.each do |foundation| next unless foundation.foundation_type == HPXML::FoundationTypeCrawlspaceVented + # check existing sla + default_sla = foundation.vented_crawlspace_sla unless foundation.vented_crawlspace_sla.nil? - vented_crawl = foundation + vented_crawls << foundation end - if vented_crawl.nil? + if vented_crawls.empty? hpxml.foundations.add(id: 'VentedCrawlspace', - foundation_type: HPXML::FoundationTypeCrawlspaceVented) - vented_crawl = hpxml.foundations[-1] + foundation_type: HPXML::FoundationTypeCrawlspaceVented, + vented_crawlspace_sla: default_sla) + hpxml.foundations[-1].vented_crawlspace_sla_isdefaulted = true end - if vented_crawl.vented_crawlspace_sla.nil? - vented_crawl.vented_crawlspace_sla = Airflow.get_default_vented_crawl_sla() + vented_crawls.each do |vented_crawl| + next unless vented_crawl.vented_crawlspace_sla.nil? + vented_crawl.vented_crawlspace_sla = default_sla vented_crawl.vented_crawlspace_sla_isdefaulted = true end end @@ -355,6 +387,14 @@ def self.apply_windows(hpxml) window.interior_shading_factor_winter = default_shade_winter window.interior_shading_factor_winter_isdefaulted = true end + if window.exterior_shading_factor_summer.nil? + window.exterior_shading_factor_summer = 1.0 + window.exterior_shading_factor_summer_isdefaulted = true + end + if window.exterior_shading_factor_winter.nil? + window.exterior_shading_factor_winter = 1.0 + window.exterior_shading_factor_winter_isdefaulted = true + end if window.fraction_operable.nil? window.fraction_operable = Airflow.get_default_fraction_of_windows_operable() window.fraction_operable_isdefaulted = true @@ -372,10 +412,20 @@ def self.apply_skylights(hpxml) skylight.interior_shading_factor_winter = 1.0 skylight.interior_shading_factor_winter_isdefaulted = true end + if skylight.exterior_shading_factor_summer.nil? + skylight.exterior_shading_factor_summer = 1.0 + skylight.exterior_shading_factor_summer_isdefaulted = true + end + if skylight.exterior_shading_factor_winter.nil? + skylight.exterior_shading_factor_winter = 1.0 + skylight.exterior_shading_factor_winter_isdefaulted = true + end end end - def self.apply_hvac(hpxml) + def self.apply_hvac(hpxml, weather) + HVAC.apply_shared_systems(hpxml) + # Default AC/HP compressor type hpxml.cooling_systems.each do |cooling_system| next unless cooling_system.compressor_type.nil? @@ -392,10 +442,11 @@ def self.apply_hvac(hpxml) # Default boiler EAE hpxml.heating_systems.each do |heating_system| - if heating_system.electric_auxiliary_energy.nil? - heating_system.electric_auxiliary_energy_isdefaulted = true - heating_system.electric_auxiliary_energy = HVAC.get_default_boiler_eae(heating_system) - end + next unless heating_system.electric_auxiliary_energy.nil? + heating_system.electric_auxiliary_energy_isdefaulted = true + heating_system.electric_auxiliary_energy = HVAC.get_default_boiler_eae(heating_system) + heating_system.shared_loop_watts = nil + heating_system.fan_coil_watts = nil end # Default AC/HP sensible heat ratio @@ -449,11 +500,61 @@ def self.apply_hvac(hpxml) heat_pump.pump_watts_per_ton_isdefaulted = true end + # Charge defect ratio + hpxml.cooling_systems.each do |cooling_system| + next unless [HPXML::HVACTypeCentralAirConditioner, + HPXML::HVACTypeMiniSplitAirConditioner].include? cooling_system.cooling_system_type + next unless cooling_system.charge_defect_ratio.nil? + + cooling_system.charge_defect_ratio = 0.0 + cooling_system.charge_defect_ratio_isdefaulted = true + end + hpxml.heat_pumps.each do |heat_pump| + next unless [HPXML::HVACTypeHeatPumpAirToAir, + HPXML::HVACTypeHeatPumpMiniSplit, + HPXML::HVACTypeHeatPumpGroundToAir].include? heat_pump.heat_pump_type + next unless heat_pump.charge_defect_ratio.nil? + + heat_pump.charge_defect_ratio = 0.0 + heat_pump.charge_defect_ratio_isdefaulted = true + end + + # Airflow defect ratio + hpxml.heating_systems.each do |heating_system| + next unless [HPXML::HVACTypeFurnace].include? heating_system.heating_system_type + next unless heating_system.airflow_defect_ratio.nil? + + heating_system.airflow_defect_ratio = 0.0 + heating_system.airflow_defect_ratio_isdefaulted = true + end + hpxml.cooling_systems.each do |cooling_system| + next unless [HPXML::HVACTypeCentralAirConditioner, + HPXML::HVACTypeMiniSplitAirConditioner].include? cooling_system.cooling_system_type + if cooling_system.cooling_system_type == HPXML::HVACTypeMiniSplitAirConditioner && cooling_system.distribution_system_idref.nil? + next # Ducted mini-splits only + end + next unless cooling_system.airflow_defect_ratio.nil? + + cooling_system.airflow_defect_ratio = 0.0 + cooling_system.airflow_defect_ratio_isdefaulted = true + end + hpxml.heat_pumps.each do |heat_pump| + next unless [HPXML::HVACTypeHeatPumpAirToAir, + HPXML::HVACTypeHeatPumpGroundToAir, + HPXML::HVACTypeHeatPumpMiniSplit].include? heat_pump.heat_pump_type + if heat_pump.heat_pump_type == HPXML::HVACTypeHeatPumpMiniSplit && heat_pump.distribution_system_idref.nil? + next # Ducted mini-splits only + end + next unless heat_pump.airflow_defect_ratio.nil? + + heat_pump.airflow_defect_ratio = 0.0 + heat_pump.airflow_defect_ratio_isdefaulted = true + end + # Fan power psc_watts_per_cfm = 0.5 # W/cfm, PSC fan ecm_watts_per_cfm = 0.375 # W/cfm, ECM fan mini_split_ducted_watts_per_cfm = 0.18 # W/cfm, ducted mini split - mini_split_ductless_watts_per_cfm = 0.07 # W/cfm, ductless mini split hpxml.heating_systems.each do |heating_system| if [HPXML::HVACTypeFurnace].include? heating_system.heating_system_type if heating_system.fan_watts_per_cfm.nil? @@ -496,8 +597,6 @@ def self.apply_hvac(hpxml) elsif [HPXML::HVACTypeMiniSplitAirConditioner].include? cooling_system.cooling_system_type if not cooling_system.distribution_system.nil? cooling_system.fan_watts_per_cfm = mini_split_ducted_watts_per_cfm - else - cooling_system.fan_watts_per_cfm = mini_split_ductless_watts_per_cfm end cooling_system.fan_watts_per_cfm_isdefaulted = true elsif [HPXML::HVACTypeEvaporativeCooler].include? cooling_system.cooling_system_type @@ -524,46 +623,108 @@ def self.apply_hvac(hpxml) elsif [HPXML::HVACTypeHeatPumpMiniSplit].include? heat_pump.heat_pump_type if not heat_pump.distribution_system.nil? heat_pump.fan_watts_per_cfm = mini_split_ducted_watts_per_cfm - else - heat_pump.fan_watts_per_cfm = mini_split_ductless_watts_per_cfm end heat_pump.fan_watts_per_cfm_isdefaulted = true end end - # HVAC capacities - # Transition capacity elements from -1 to nil - hpxml.heating_systems.each do |heating_system| - if (not heating_system.heating_capacity.nil?) && (heating_system.heating_capacity < 0) - heating_system.heating_capacity = nil - end - end + # Detailed HVAC performance hpxml.cooling_systems.each do |cooling_system| - if (not cooling_system.cooling_capacity.nil?) && (cooling_system.cooling_capacity < 0) - cooling_system.cooling_capacity = nil + clg_ap = cooling_system.additional_properties + if [HPXML::HVACTypeCentralAirConditioner].include? cooling_system.cooling_system_type + # Note: We use HP cooling curve so that a central AC behaves the same. + HVAC.set_num_speeds(cooling_system) + HVAC.set_fan_power_rated(cooling_system) + HVAC.set_crankcase_assumptions(cooling_system) + + HVAC.set_cool_c_d(cooling_system, clg_ap.num_speeds) + HVAC.set_cool_curves_ashp(cooling_system) + HVAC.set_cool_rated_cfm_per_ton(cooling_system) + HVAC.set_cool_rated_shrs_gross(cooling_system) + HVAC.set_cool_rated_eirs(cooling_system) + + elsif [HPXML::HVACTypeRoomAirConditioner].include? cooling_system.cooling_system_type + HVAC.set_num_speeds(cooling_system) + HVAC.set_cool_c_d(cooling_system, clg_ap.num_speeds) + HVAC.set_cool_curves_room_ac(cooling_system) + HVAC.set_cool_rated_cfm_per_ton(cooling_system) + HVAC.set_cool_rated_shrs_gross(cooling_system) + + elsif [HPXML::HVACTypeMiniSplitAirConditioner].include? cooling_system.cooling_system_type + num_speeds = 10 + HVAC.set_num_speeds(cooling_system) + HVAC.set_crankcase_assumptions(cooling_system) + HVAC.set_fan_power_rated(cooling_system) + + HVAC.set_cool_c_d(cooling_system, num_speeds) + HVAC.set_cool_curves_mshp(cooling_system, num_speeds) + HVAC.set_cool_rated_cfm_per_ton_mshp(cooling_system, num_speeds) + HVAC.set_cool_rated_eirs_mshp(cooling_system, num_speeds) + + HVAC.set_mshp_downselected_speed_indices(cooling_system) + + elsif [HPXML::HVACTypeEvaporativeCooler].include? cooling_system.cooling_system_type + clg_ap.effectiveness = 0.72 # Assumption from HEScore + end end + hpxml.heating_systems.each do |heating_system| + htg_ap = heating_system.additional_properties + next unless [HPXML::HVACTypeStove, + HPXML::HVACTypePortableHeater, + HPXML::HVACTypeFixedHeater, + HPXML::HVACTypeWallFurnace, + HPXML::HVACTypeFloorFurnace, + HPXML::HVACTypeFireplace].include? heating_system.heating_system_type + HVAC.set_heat_rated_cfm_per_ton(heating_system) + end hpxml.heat_pumps.each do |heat_pump| - if (not heat_pump.cooling_capacity.nil?) && (heat_pump.cooling_capacity < 0) - heat_pump.cooling_capacity = nil - end - if (not heat_pump.heating_capacity.nil?) && (heat_pump.heating_capacity < 0) - heat_pump.heating_capacity = nil - end - if (not heat_pump.heating_capacity_17F.nil?) && (heat_pump.heating_capacity_17F < 0) - heat_pump.heating_capacity_17F = nil - end - if (not heat_pump.backup_heating_capacity.nil?) && (heat_pump.backup_heating_capacity < 0) - heat_pump.backup_heating_capacity = nil - end - if heat_pump.cooling_capacity.nil? && (not heat_pump.heating_capacity.nil?) - heat_pump.cooling_capacity = heat_pump.heating_capacity - elsif heat_pump.heating_capacity.nil? && (not heat_pump.cooling_capacity.nil?) - heat_pump.heating_capacity = heat_pump.cooling_capacity + hp_ap = heat_pump.additional_properties + if [HPXML::HVACTypeHeatPumpAirToAir].include? heat_pump.heat_pump_type + HVAC.set_num_speeds(heat_pump) + HVAC.set_fan_power_rated(heat_pump) + HVAC.set_crankcase_assumptions(heat_pump) + HVAC.set_heat_pump_temperatures(heat_pump) + + HVAC.set_cool_c_d(heat_pump, hp_ap.num_speeds) + HVAC.set_cool_curves_ashp(heat_pump) + HVAC.set_cool_rated_cfm_per_ton(heat_pump) + HVAC.set_cool_rated_shrs_gross(heat_pump) + HVAC.set_cool_rated_eirs(heat_pump) + + HVAC.set_heat_c_d(heat_pump, hp_ap.num_speeds) + HVAC.set_ashp_htg_curves(heat_pump) + HVAC.set_heat_rated_cfm_per_ton(heat_pump) + HVAC.set_heat_rated_eirs(heat_pump) + + elsif [HPXML::HVACTypeHeatPumpMiniSplit].include? heat_pump.heat_pump_type + num_speeds = 10 + HVAC.set_num_speeds(heat_pump) + HVAC.set_crankcase_assumptions(heat_pump) + HVAC.set_fan_power_rated(heat_pump) + HVAC.set_heat_pump_temperatures(heat_pump) + + HVAC.set_cool_c_d(heat_pump, num_speeds) + HVAC.set_cool_curves_mshp(heat_pump, num_speeds) + HVAC.set_cool_rated_cfm_per_ton_mshp(heat_pump, num_speeds) + HVAC.set_cool_rated_eirs_mshp(heat_pump, num_speeds) + + HVAC.set_heat_c_d(heat_pump, num_speeds) + HVAC.set_heat_curves_mshp(heat_pump, num_speeds) + HVAC.set_heat_rated_cfm_per_ton_mshp(heat_pump, num_speeds) + HVAC.set_heat_rated_eirs_mshp(heat_pump, num_speeds) + + HVAC.set_mshp_downselected_speed_indices(heat_pump) + + elsif [HPXML::HVACTypeHeatPumpGroundToAir].include? heat_pump.heat_pump_type + HVAC.set_gshp_assumptions(heat_pump, weather) + HVAC.set_curves_gshp(heat_pump) + + elsif [HPXML::HVACTypeHeatPumpWaterLoopToAir].include? heat_pump.heat_pump_type + HVAC.set_heat_pump_temperatures(heat_pump) + end end - - # TODO: Default HeatingCapacity17F? end def self.apply_hvac_control(hpxml) @@ -591,12 +752,10 @@ def self.apply_hvac_distribution(hpxml, ncfl, ncfl_ag) n_ducts += hvac_distribution.ducts.size n_ducts_to_be_defaulted += hvac_distribution.ducts.select { |duct| duct.duct_surface_area.nil? && duct.duct_location.nil? }.size end - if n_ducts_to_be_defaulted > 0 && (n_ducts != n_ducts_to_be_defaulted) - fail 'The location and surface area of all ducts must be provided or blank.' - end + fail if n_ducts_to_be_defaulted > 0 && (n_ducts != n_ducts_to_be_defaulted) # EPvalidator.xml should prevent this hpxml.hvac_distributions.each do |hvac_distribution| - next unless [HPXML::HVACDistributionTypeAir, HPXML::HVACDistributionTypeHydronicAndAir].include? hvac_distribution.distribution_system_type + next unless [HPXML::HVACDistributionTypeAir].include? hvac_distribution.distribution_system_type # Default return registers if hvac_distribution.number_of_return_registers.nil? @@ -893,12 +1052,15 @@ def self.apply_appliances(hpxml, nbeds, eri_version) clothes_dryer.location = HPXML::LocationLivingSpace clothes_dryer.location_isdefaulted = true end + if clothes_dryer.combined_energy_factor.nil? && clothes_dryer.energy_factor.nil? + default_values = HotWaterAndAppliances.get_clothes_dryer_default_values(eri_version, clothes_dryer.fuel_type) + clothes_dryer.combined_energy_factor = default_values[:combined_energy_factor] + clothes_dryer.combined_energy_factor_isdefaulted = true + end if clothes_dryer.control_type.nil? default_values = HotWaterAndAppliances.get_clothes_dryer_default_values(eri_version, clothes_dryer.fuel_type) clothes_dryer.control_type = default_values[:control_type] clothes_dryer.control_type_isdefaulted = true - clothes_dryer.combined_energy_factor = default_values[:combined_energy_factor] - clothes_dryer.combined_energy_factor_isdefaulted = true end if clothes_dryer.usage_multiplier.nil? clothes_dryer.usage_multiplier = 1.0 @@ -1074,6 +1236,8 @@ def self.apply_appliances(hpxml, nbeds, eri_version) end def self.apply_lighting(hpxml) + return if hpxml.lighting_groups.empty? + if hpxml.lighting.interior_usage_multiplier.nil? hpxml.lighting.interior_usage_multiplier = 1.0 hpxml.lighting.interior_usage_multiplier_isdefaulted = true @@ -1166,10 +1330,34 @@ def self.apply_ceiling_fans(hpxml, nbeds) def self.apply_pools_and_hot_tubs(hpxml, cfa, nbeds) hpxml.pools.each do |pool| - if pool.pump_kwh_per_year.nil? - pool.pump_kwh_per_year = MiscLoads.get_pool_pump_default_values(cfa, nbeds) - pool.pump_kwh_per_year_isdefaulted = true + next if pool.type == HPXML::TypeNone + + if pool.pump_type != HPXML::TypeNone + # Pump + if pool.pump_kwh_per_year.nil? + pool.pump_kwh_per_year = MiscLoads.get_pool_pump_default_values(cfa, nbeds) + pool.pump_kwh_per_year_isdefaulted = true + end + if pool.pump_usage_multiplier.nil? + pool.pump_usage_multiplier = 1.0 + pool.pump_usage_multiplier_isdefaulted = true + end + if pool.pump_weekday_fractions.nil? + pool.pump_weekday_fractions = '0.003, 0.003, 0.003, 0.004, 0.008, 0.015, 0.026, 0.044, 0.084, 0.121, 0.127, 0.121, 0.120, 0.090, 0.075, 0.061, 0.037, 0.023, 0.013, 0.008, 0.004, 0.003, 0.003, 0.003' + pool.pump_weekday_fractions_isdefaulted = true + end + if pool.pump_weekend_fractions.nil? + pool.pump_weekend_fractions = '0.003, 0.003, 0.003, 0.004, 0.008, 0.015, 0.026, 0.044, 0.084, 0.121, 0.127, 0.121, 0.120, 0.090, 0.075, 0.061, 0.037, 0.023, 0.013, 0.008, 0.004, 0.003, 0.003, 0.003' + pool.pump_weekend_fractions_isdefaulted = true + end + if pool.pump_monthly_multipliers.nil? + pool.pump_monthly_multipliers = '1.154, 1.161, 1.013, 1.010, 1.013, 0.888, 0.883, 0.883, 0.888, 0.978, 0.974, 1.154' + pool.pump_monthly_multipliers_isdefaulted = true + end end + + next unless pool.heater_type != HPXML::TypeNone + # Heater if pool.heater_load_value.nil? default_heater_load_units, default_heater_load_value = MiscLoads.get_pool_heater_default_values(cfa, nbeds, pool.heater_type) pool.heater_load_units = default_heater_load_units @@ -1180,22 +1368,6 @@ def self.apply_pools_and_hot_tubs(hpxml, cfa, nbeds) pool.heater_usage_multiplier = 1.0 pool.heater_usage_multiplier_isdefaulted = true end - if pool.pump_usage_multiplier.nil? - pool.pump_usage_multiplier = 1.0 - pool.pump_usage_multiplier_isdefaulted = true - end - if pool.pump_weekday_fractions.nil? - pool.pump_weekday_fractions = '0.003, 0.003, 0.003, 0.004, 0.008, 0.015, 0.026, 0.044, 0.084, 0.121, 0.127, 0.121, 0.120, 0.090, 0.075, 0.061, 0.037, 0.023, 0.013, 0.008, 0.004, 0.003, 0.003, 0.003' - pool.pump_weekday_fractions_isdefaulted = true - end - if pool.pump_weekend_fractions.nil? - pool.pump_weekend_fractions = '0.003, 0.003, 0.003, 0.004, 0.008, 0.015, 0.026, 0.044, 0.084, 0.121, 0.127, 0.121, 0.120, 0.090, 0.075, 0.061, 0.037, 0.023, 0.013, 0.008, 0.004, 0.003, 0.003, 0.003' - pool.pump_weekend_fractions_isdefaulted = true - end - if pool.pump_monthly_multipliers.nil? - pool.pump_monthly_multipliers = '1.154, 1.161, 1.013, 1.010, 1.013, 0.888, 0.883, 0.883, 0.888, 0.978, 0.974, 1.154' - pool.pump_monthly_multipliers_isdefaulted = true - end if pool.heater_weekday_fractions.nil? pool.heater_weekday_fractions = '0.003, 0.003, 0.003, 0.004, 0.008, 0.015, 0.026, 0.044, 0.084, 0.121, 0.127, 0.121, 0.120, 0.090, 0.075, 0.061, 0.037, 0.023, 0.013, 0.008, 0.004, 0.003, 0.003, 0.003' pool.heater_weekday_fractions_isdefaulted = true @@ -1211,10 +1383,34 @@ def self.apply_pools_and_hot_tubs(hpxml, cfa, nbeds) end hpxml.hot_tubs.each do |hot_tub| - if hot_tub.pump_kwh_per_year.nil? - hot_tub.pump_kwh_per_year = MiscLoads.get_hot_tub_pump_default_values(cfa, nbeds) - hot_tub.pump_kwh_per_year_isdefaulted = true + next if hot_tub.type == HPXML::TypeNone + + if hot_tub.pump_type != HPXML::TypeNone + # Pump + if hot_tub.pump_kwh_per_year.nil? + hot_tub.pump_kwh_per_year = MiscLoads.get_hot_tub_pump_default_values(cfa, nbeds) + hot_tub.pump_kwh_per_year_isdefaulted = true + end + if hot_tub.pump_usage_multiplier.nil? + hot_tub.pump_usage_multiplier = 1.0 + hot_tub.pump_usage_multiplier_isdefaulted = true + end + if hot_tub.pump_weekday_fractions.nil? + hot_tub.pump_weekday_fractions = '0.024, 0.029, 0.024, 0.029, 0.047, 0.067, 0.057, 0.024, 0.024, 0.019, 0.015, 0.014, 0.014, 0.014, 0.024, 0.058, 0.126, 0.122, 0.068, 0.061, 0.051, 0.043, 0.024, 0.024' + hot_tub.pump_weekday_fractions_isdefaulted = true + end + if hot_tub.pump_weekend_fractions.nil? + hot_tub.pump_weekend_fractions = '0.024, 0.029, 0.024, 0.029, 0.047, 0.067, 0.057, 0.024, 0.024, 0.019, 0.015, 0.014, 0.014, 0.014, 0.024, 0.058, 0.126, 0.122, 0.068, 0.061, 0.051, 0.043, 0.024, 0.024' + hot_tub.pump_weekend_fractions_isdefaulted = true + end + if hot_tub.pump_monthly_multipliers.nil? + hot_tub.pump_monthly_multipliers = '0.921, 0.928, 0.921, 0.915, 0.921, 1.160, 1.158, 1.158, 1.160, 0.921, 0.915, 0.921' + hot_tub.pump_monthly_multipliers_isdefaulted = true + end end + + next unless hot_tub.heater_type != HPXML::TypeNone + # Heater if hot_tub.heater_load_value.nil? default_heater_load_units, default_heater_load_value = MiscLoads.get_hot_tub_heater_default_values(cfa, nbeds, hot_tub.heater_type) hot_tub.heater_load_units = default_heater_load_units @@ -1225,22 +1421,6 @@ def self.apply_pools_and_hot_tubs(hpxml, cfa, nbeds) hot_tub.heater_usage_multiplier = 1.0 hot_tub.heater_usage_multiplier_isdefaulted = true end - if hot_tub.pump_usage_multiplier.nil? - hot_tub.pump_usage_multiplier = 1.0 - hot_tub.pump_usage_multiplier_isdefaulted = true - end - if hot_tub.pump_weekday_fractions.nil? - hot_tub.pump_weekday_fractions = '0.024, 0.029, 0.024, 0.029, 0.047, 0.067, 0.057, 0.024, 0.024, 0.019, 0.015, 0.014, 0.014, 0.014, 0.024, 0.058, 0.126, 0.122, 0.068, 0.061, 0.051, 0.043, 0.024, 0.024' - hot_tub.pump_weekday_fractions_isdefaulted = true - end - if hot_tub.pump_weekend_fractions.nil? - hot_tub.pump_weekend_fractions = '0.024, 0.029, 0.024, 0.029, 0.047, 0.067, 0.057, 0.024, 0.024, 0.019, 0.015, 0.014, 0.014, 0.014, 0.024, 0.058, 0.126, 0.122, 0.068, 0.061, 0.051, 0.043, 0.024, 0.024' - hot_tub.pump_weekend_fractions_isdefaulted = true - end - if hot_tub.pump_monthly_multipliers.nil? - hot_tub.pump_monthly_multipliers = '0.921, 0.928, 0.921, 0.915, 0.921, 1.160, 1.158, 1.158, 1.160, 0.921, 0.915, 0.921' - hot_tub.pump_monthly_multipliers_isdefaulted = true - end if hot_tub.heater_weekday_fractions.nil? hot_tub.heater_weekday_fractions = '0.024, 0.029, 0.024, 0.029, 0.047, 0.067, 0.057, 0.024, 0.024, 0.019, 0.015, 0.014, 0.014, 0.014, 0.024, 0.058, 0.126, 0.122, 0.068, 0.061, 0.051, 0.043, 0.024, 0.024' hot_tub.heater_weekday_fractions_isdefaulted = true @@ -1454,4 +1634,136 @@ def self.apply_fuel_loads(hpxml, cfa, nbeds) end end end + + def self.apply_hvac_sizing(hpxml, weather, cfa, nbeds) + hvac_systems = HVAC.get_hpxml_hvac_systems(hpxml) + + # Calculate building design loads and equipment capacities/airflows + bldg_design_loads, all_hvac_sizing_values = HVACSizing.calculate(weather, hpxml, cfa, nbeds, hvac_systems) + + hvacpl = hpxml.hvac_plant + tol = 10 # Btuh + + # Assign heating design loads back to HPXML object + hvacpl.hdl_total = bldg_design_loads.Heat_Tot.round + hvacpl.hdl_walls = bldg_design_loads.Heat_Walls.round + hvacpl.hdl_ceilings = bldg_design_loads.Heat_Ceilings.round + hvacpl.hdl_roofs = bldg_design_loads.Heat_Roofs.round + hvacpl.hdl_floors = bldg_design_loads.Heat_Floors.round + hvacpl.hdl_slabs = bldg_design_loads.Heat_Slabs.round + hvacpl.hdl_windows = bldg_design_loads.Heat_Windows.round + hvacpl.hdl_skylights = bldg_design_loads.Heat_Skylights.round + hvacpl.hdl_doors = bldg_design_loads.Heat_Doors.round + hvacpl.hdl_infilvent = bldg_design_loads.Heat_InfilVent.round + hvacpl.hdl_ducts = bldg_design_loads.Heat_Ducts.round + hdl_sum = (hvacpl.hdl_walls + hvacpl.hdl_ceilings + hvacpl.hdl_roofs + + hvacpl.hdl_floors + hvacpl.hdl_slabs + hvacpl.hdl_windows + + hvacpl.hdl_skylights + hvacpl.hdl_doors + hvacpl.hdl_infilvent + + hvacpl.hdl_ducts) + if (hdl_sum - hvacpl.hdl_total).abs > tol + fail 'Heating design loads do not sum to total.' + end + + # Cooling sensible design loads back to HPXML object + hvacpl.cdl_sens_total = bldg_design_loads.Cool_Sens.round + hvacpl.cdl_sens_walls = bldg_design_loads.Cool_Walls.round + hvacpl.cdl_sens_ceilings = bldg_design_loads.Cool_Ceilings.round + hvacpl.cdl_sens_roofs = bldg_design_loads.Cool_Roofs.round + hvacpl.cdl_sens_floors = bldg_design_loads.Cool_Floors.round + hvacpl.cdl_sens_slabs = 0.0 + hvacpl.cdl_sens_windows = bldg_design_loads.Cool_Windows.round + hvacpl.cdl_sens_skylights = bldg_design_loads.Cool_Skylights.round + hvacpl.cdl_sens_doors = bldg_design_loads.Cool_Doors.round + hvacpl.cdl_sens_infilvent = bldg_design_loads.Cool_Infil_Sens.round + hvacpl.cdl_sens_ducts = bldg_design_loads.Cool_Ducts_Sens.round + hvacpl.cdl_sens_intgains = bldg_design_loads.Cool_IntGains_Sens.round + cdl_sens_sum = (hvacpl.cdl_sens_walls + hvacpl.cdl_sens_ceilings + + hvacpl.cdl_sens_roofs + hvacpl.cdl_sens_floors + + hvacpl.cdl_sens_slabs + hvacpl.cdl_sens_windows + + hvacpl.cdl_sens_skylights + hvacpl.cdl_sens_doors + + hvacpl.cdl_sens_infilvent + hvacpl.cdl_sens_ducts + + hvacpl.cdl_sens_intgains) + if (cdl_sens_sum - hvacpl.cdl_sens_total).abs > tol + fail 'Cooling sensible design loads do not sum to total.' + end + + # Cooling latent design loads back to HPXML object + hvacpl.cdl_lat_total = bldg_design_loads.Cool_Lat.round + hvacpl.cdl_lat_ducts = bldg_design_loads.Cool_Ducts_Lat.round + hvacpl.cdl_lat_infilvent = bldg_design_loads.Cool_Infil_Lat.round + hvacpl.cdl_lat_intgains = bldg_design_loads.Cool_IntGains_Lat.round + cdl_lat_sum = (hvacpl.cdl_lat_ducts + hvacpl.cdl_lat_infilvent + + hvacpl.cdl_lat_intgains) + if (cdl_lat_sum - hvacpl.cdl_lat_total).abs > tol + fail 'Cooling latent design loads do not sum to total.' + end + + # Assign sizing values back to HPXML objects + all_hvac_sizing_values.each do |hvac_system, hvac_sizing_values| + htg_sys = hvac_system[:heating] + clg_sys = hvac_system[:cooling] + + # Heating system + if not htg_sys.nil? + + # Heating capacities + if htg_sys.heating_capacity.nil? || ((htg_sys.heating_capacity - hvac_sizing_values.Heat_Capacity).abs >= 1.0) + # Heating capacity @ 17F + if htg_sys.respond_to? :heating_capacity_17F + if (not htg_sys.heating_capacity.nil?) && (not htg_sys.heating_capacity_17F.nil?) + # Fixed value entered; scale w/ heating_capacity in case allow_increased_fixed_capacities=true + htg_cap_17f = htg_sys.heating_capacity_17F * hvac_sizing_values.Heat_Capacity.round / htg_sys.heating_capacity + if (htg_sys.heating_capacity_17F - htg_cap_17f).abs >= 1.0 + htg_sys.heating_capacity_17F = htg_cap_17f + htg_sys.heating_capacity_17F_isdefaulted = true + end + else + # Autosized + # FUTURE: Calculate HeatingCapacity17F from heat_cap_ft_spec? Might be confusing + # since user would not be able to replicate the results using this value, as the + # default curves are non-linear. + end + end + htg_sys.heating_capacity = hvac_sizing_values.Heat_Capacity.round + htg_sys.heating_capacity_isdefaulted = true + end + if htg_sys.respond_to? :backup_heating_capacity + if not htg_sys.backup_heating_fuel.nil? # If there is a backup heating source + if htg_sys.backup_heating_capacity.nil? || ((htg_sys.backup_heating_capacity - hvac_sizing_values.Heat_Capacity_Supp).abs >= 1.0) + htg_sys.backup_heating_capacity = hvac_sizing_values.Heat_Capacity_Supp.round + htg_sys.backup_heating_capacity_isdefaulted = true + end + else + htg_sys.backup_heating_capacity = 0.0 + end + end + + # Heating airflow + htg_sys.heating_airflow_cfm = hvac_sizing_values.Heat_Airflow.round + htg_sys.heating_airflow_cfm_isdefaulted = true + + # Heating GSHP loop + if htg_sys.is_a? HPXML::HeatPump + htg_sys.additional_properties.GSHP_Loop_flow = hvac_sizing_values.GSHP_Loop_flow + htg_sys.additional_properties.GSHP_Bore_Depth = hvac_sizing_values.GSHP_Bore_Depth + htg_sys.additional_properties.GSHP_Bore_Holes = hvac_sizing_values.GSHP_Bore_Holes + htg_sys.additional_properties.GSHP_G_Functions = hvac_sizing_values.GSHP_G_Functions + end + end + + # Cooling system + next unless not clg_sys.nil? + + # Cooling capacities + if clg_sys.cooling_capacity.nil? || ((clg_sys.cooling_capacity - hvac_sizing_values.Cool_Capacity).abs >= 1.0) + clg_sys.cooling_capacity = hvac_sizing_values.Cool_Capacity.round + clg_sys.cooling_capacity_isdefaulted = true + end + clg_sys.additional_properties.cooling_capacity_sensible = hvac_sizing_values.Cool_Capacity_Sens.round + + # Cooling airflow + clg_sys.cooling_airflow_cfm = hvac_sizing_values.Cool_Airflow.round + clg_sys.cooling_airflow_cfm_isdefaulted = true + end + end end diff --git a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/hvac.rb b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/hvac.rb index 701927da..46aa7296 100644 --- a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/hvac.rb +++ b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/hvac.rb @@ -15,6 +15,13 @@ def self.apply_central_air_conditioner_furnace(model, runner, cooling_system, he obj_name = Constants.ObjectNameCentralAirConditionerAndFurnace end + if not heating_system.nil? + htg_ap = heating_system.additional_properties + end + if not cooling_system.nil? + clg_ap = cooling_system.additional_properties + end + if not heating_system.nil? sequential_heat_load_frac = calc_sequential_load_fraction(heating_system.fraction_heat_load_served, remaining_heat_load_frac) else @@ -26,33 +33,14 @@ def self.apply_central_air_conditioner_furnace(model, runner, cooling_system, he sequential_cool_load_frac = 0.0 end + # Cooling Coil if not cooling_system.nil? - if cooling_system.compressor_type == HPXML::HVACCompressorTypeSingleStage - num_speeds = 1 - elsif cooling_system.compressor_type == HPXML::HVACCompressorTypeTwoStage - num_speeds = 2 - elsif cooling_system.compressor_type == HPXML::HVACCompressorTypeVariableSpeed - num_speeds = 4 - end - fan_power_rated = get_fan_power_rated(cooling_system.cooling_efficiency_seer) - crankcase_kw, crankcase_temp = get_crankcase_assumptions(cooling_system.fraction_cool_load_served) - - # Cooling Coil - - cool_c_d = get_cool_c_d(num_speeds, cooling_system.cooling_efficiency_seer) - cool_rated_airflow_rate, cool_fan_speed_ratios, cool_capacity_ratios, cool_shrs, cool_eers, cool_cap_ft_spec, cool_eir_ft_spec, cool_cap_fflow_spec, cool_eir_fflow_spec = get_hp_clg_curves(num_speeds, cooling_system, fan_power_rated, cool_c_d, runner) - cool_cfms_ton_rated = calc_cfms_ton_rated(cool_rated_airflow_rate, cool_fan_speed_ratios, cool_capacity_ratios) - cool_shrs_rated_gross = calc_shrs_rated_gross(num_speeds, cool_shrs, fan_power_rated, cool_cfms_ton_rated) - cool_eirs = calc_cool_eirs(num_speeds, cool_eers, fan_power_rated) - cool_closs_fplr_spec = [calc_plr_coefficients(cool_c_d)] * num_speeds - clg_coil = create_dx_cooling_coil(model, obj_name, (0...num_speeds).to_a, cool_eirs, cool_cap_ft_spec, cool_eir_ft_spec, cool_closs_fplr_spec, cool_cap_fflow_spec, cool_eir_fflow_spec, cool_shrs_rated_gross, cooling_system.cooling_capacity, crankcase_kw, crankcase_temp, fan_power_rated) + clg_coil = create_dx_cooling_coil(model, obj_name, cooling_system) hvac_map[cooling_system.id] << clg_coil end + # Heating Coil if not heating_system.nil? - - # Heating Coil - if heating_system.heating_system_fuel == HPXML::FuelTypeElectricity htg_coil = OpenStudio::Model::CoilHeatingElectric.new(model) htg_coil.setEfficiency(heating_system.heating_efficiency_afue) @@ -63,24 +51,36 @@ def self.apply_central_air_conditioner_furnace(model, runner, cooling_system, he htg_coil.setParasiticGasLoad(0) htg_coil.setFuelType(EPlus.fuel_type(heating_system.heating_system_fuel)) end + htg_coil.setNominalCapacity(UnitConversions.convert(heating_system.heating_capacity, 'Btu/hr', 'W')) htg_coil.setName(obj_name + ' htg coil') - if not heating_system.heating_capacity.nil? - htg_coil.setNominalCapacity(UnitConversions.convert([heating_system.heating_capacity, Constants.small].max, 'Btu/hr', 'W')) # Used by HVACSizing measure - end hvac_map[heating_system.id] << htg_coil end # Fan - if (not cooling_system.nil?) && (not heating_system.nil?) && (cooling_system.fan_watts_per_cfm.to_f != heating_system.fan_watts_per_cfm.to_f) - fail "Fan powers for heating system '#{heating_system.id}' and cooling system '#{cooling_system.id}' must be the same." + fail "Fan powers for heating system '#{heating_system.id}' and cooling system '#{cooling_system.id}' are attached to a single distribution system and therefore must be the same." end if (not cooling_system.nil?) && (not cooling_system.fan_watts_per_cfm.nil?) fan_watts_per_cfm = cooling_system.fan_watts_per_cfm else fan_watts_per_cfm = heating_system.fan_watts_per_cfm end - fan = create_supply_fan(model, obj_name, num_speeds, fan_watts_per_cfm) + if not cooling_system.nil? + num_speeds = clg_ap.num_speeds + else + num_speeds = 1 + end + if not heating_system.nil? + htg_cfm = heating_system.heating_airflow_cfm + end + if not cooling_system.nil? + clg_cfm = cooling_system.cooling_airflow_cfm + end + fan_cfm = [htg_cfm.to_f, clg_cfm.to_f].max + if not cooling_system.nil? + fan_cfm *= clg_ap.cool_fan_speed_ratios.max + end + fan = create_supply_fan(model, obj_name, num_speeds, fan_watts_per_cfm, fan_cfm) if not cooling_system.nil? hvac_map[cooling_system.id] += disaggregate_fan_or_pump(model, fan, nil, clg_coil, nil) end @@ -89,8 +89,7 @@ def self.apply_central_air_conditioner_furnace(model, runner, cooling_system, he end # Unitary System - - air_loop_unitary = create_air_loop_unitary_system(model, obj_name, fan, htg_coil, clg_coil, nil) + air_loop_unitary = create_air_loop_unitary_system(model, obj_name, fan, htg_coil, clg_coil, nil, htg_cfm, clg_cfm) if not cooling_system.nil? hvac_map[cooling_system.id] << air_loop_unitary end @@ -98,20 +97,19 @@ def self.apply_central_air_conditioner_furnace(model, runner, cooling_system, he hvac_map[heating_system.id] << air_loop_unitary end + # Unitary System Performance if (not cooling_system.nil?) && (num_speeds > 1) - # Unitary System Performance perf = OpenStudio::Model::UnitarySystemPerformanceMultispeed.new(model) perf.setSingleModeOperation(false) for speed in 1..num_speeds - f = OpenStudio::Model::SupplyAirflowRatioField.fromCoolingRatio(cool_fan_speed_ratios[speed - 1]) + f = OpenStudio::Model::SupplyAirflowRatioField.fromCoolingRatio(clg_ap.cool_fan_speed_ratios[speed - 1]) perf.addSupplyAirflowRatioField(f) end air_loop_unitary.setDesignSpecificationMultispeedObject(perf) end # Air Loop - - air_loop = create_air_loop(model, obj_name, air_loop_unitary, control_zone, sequential_heat_load_frac, sequential_cool_load_frac) + air_loop = create_air_loop(model, obj_name, air_loop_unitary, control_zone, sequential_heat_load_frac, sequential_cool_load_frac, fan_cfm) if not cooling_system.nil? hvac_map[cooling_system.id] << air_loop end @@ -119,17 +117,8 @@ def self.apply_central_air_conditioner_furnace(model, runner, cooling_system, he hvac_map[heating_system.id] << air_loop end - # Store info for HVAC Sizing measure - if not cooling_system.nil? - air_loop_unitary.additionalProperties.setFeature(Constants.SizingInfoHVACCapacityRatioCooling, cool_capacity_ratios.join(',')) - air_loop_unitary.additionalProperties.setFeature(Constants.SizingInfoHVACRatedCFMperTonCooling, cool_cfms_ton_rated.join(',')) - air_loop_unitary.additionalProperties.setFeature(Constants.SizingInfoHVACFracCoolLoadServed, cooling_system.fraction_cool_load_served) - air_loop_unitary.additionalProperties.setFeature(Constants.SizingInfoHVACCoolType, Constants.ObjectNameCentralAirConditioner) - end - if not heating_system.nil? - air_loop_unitary.additionalProperties.setFeature(Constants.SizingInfoHVACFracHeatLoadServed, heating_system.fraction_heat_load_served) - air_loop_unitary.additionalProperties.setFeature(Constants.SizingInfoHVACHeatType, Constants.ObjectNameFurnace) - end + # HVAC Installation Quality + apply_installation_quality(model, heating_system, cooling_system, air_loop_unitary, htg_coil, clg_coil, control_zone) end def self.apply_room_air_conditioner(model, runner, cooling_system, @@ -140,63 +129,56 @@ def self.apply_room_air_conditioner(model, runner, cooling_system, obj_name = Constants.ObjectNameRoomAirConditioner sequential_cool_load_frac = calc_sequential_load_fraction(cooling_system.fraction_cool_load_served, remaining_cool_load_frac) + clg_ap = cooling_system.additional_properties + # Performance curves - # From Frigidaire 10.7 eer unit in Winkler et. al. Lab Testing of Window ACs (2013) - - cool_cap_ft_spec = [0.43945980246913574, -0.0008922469135802481, 0.00013984567901234569, 0.0038489259259259253, -5.6327160493827156e-05, 2.041358024691358e-05] - cool_cap_ft_spec_si = convert_curve_biquadratic(cool_cap_ft_spec) - cool_eir_ft_spec = [6.310506172839506, -0.17705185185185185, 0.0014645061728395061, 0.012571604938271608, 0.0001493827160493827, -0.00040308641975308644] - cool_eir_ft_spec_si = convert_curve_biquadratic(cool_eir_ft_spec) - cool_cap_fflow_spec = [0.887, 0.1128, 0] - cool_eir_fflow_spec = [1.763, -0.6081, 0] - cool_plf_fplr = [0.78, 0.22, 0] - cfms_ton_rated = [312] # cfm/ton, medium speed - - roomac_cap_ft_curve = create_curve_biquadratic(model, cool_cap_ft_spec_si, 'RoomAC-Cap-fT', 0, 100, 0, 100) - roomac_cap_fff_curve = create_curve_quadratic(model, cool_cap_fflow_spec, 'RoomAC-Cap-fFF', 0, 2, 0, 2) - roomac_eir_ft_curve = create_curve_biquadratic(model, cool_eir_ft_spec_si, 'RoomAC-eir-fT', 0, 100, 0, 100) - roomcac_eir_fff_curve = create_curve_quadratic(model, cool_eir_fflow_spec, 'RoomAC-eir-fFF', 0, 2, 0, 2) - roomac_plf_fplr_curve = create_curve_quadratic(model, cool_plf_fplr, 'RoomAC-PLF-fPLR', 0, 1, 0, 1) + cool_cap_ft_spec_si = convert_curve_biquadratic(clg_ap.cool_cap_ft_spec[0]) + cool_eir_ft_spec_si = convert_curve_biquadratic(clg_ap.cool_eir_ft_spec[0]) - # Cooling Coil + roomac_cap_ft_curve = create_curve_biquadratic(model, cool_cap_ft_spec_si, 'Cool-CAP-fT', 0, 100, 0, 100) + roomac_cap_fff_curve = create_curve_quadratic(model, clg_ap.cool_cap_fflow_spec[0], 'Cool-CAP-fFF', 0, 2, 0, 2) + roomac_eir_ft_curve = create_curve_biquadratic(model, cool_eir_ft_spec_si, 'Cool-EIR-fT', 0, 100, 0, 100) + roomcac_eir_fff_curve = create_curve_quadratic(model, clg_ap.cool_eir_fflow_spec[0], 'Cool-EIR-fFF', 0, 2, 0, 2) + roomac_plf_fplr_curve = create_curve_quadratic(model, clg_ap.cool_plf_fplr_spec[0], 'Cool-PLF-fPLR', 0, 1, 0, 1) + # Cooling Coil clg_coil = OpenStudio::Model::CoilCoolingDXSingleSpeed.new(model, model.alwaysOnDiscreteSchedule, roomac_cap_ft_curve, roomac_cap_fff_curve, roomac_eir_ft_curve, roomcac_eir_fff_curve, roomac_plf_fplr_curve) clg_coil.setName(obj_name + ' clg coil') - if not cooling_system.cooling_capacity.nil? - clg_coil.setRatedTotalCoolingCapacity(UnitConversions.convert([cooling_system.cooling_capacity, Constants.small].max, 'Btu/hr', 'W')) # Used by HVACSizing measure - end clg_coil.setRatedSensibleHeatRatio(cooling_system.cooling_shr) clg_coil.setRatedCOP(UnitConversions.convert(cooling_system.cooling_efficiency_eer, 'Btu/hr', 'W')) clg_coil.setRatedEvaporatorFanPowerPerVolumeFlowRate(773.3) clg_coil.setEvaporativeCondenserEffectiveness(0.9) clg_coil.setMaximumOutdoorDryBulbTemperatureForCrankcaseHeaterOperation(10) clg_coil.setBasinHeaterSetpointTemperature(2) + clg_coil.setRatedTotalCoolingCapacity(UnitConversions.convert(cooling_system.cooling_capacity, 'Btu/hr', 'W')) + clg_coil.setRatedAirFlowRate(calc_rated_airflow(cooling_system.cooling_capacity, clg_ap.cool_rated_cfm_per_ton[0], 1.0)) hvac_map[cooling_system.id] << clg_coil # Fan - fan = create_supply_fan(model, obj_name, 1, 0.0) # Fan power included in EER (net COP) above + clg_cfm = cooling_system.cooling_airflow_cfm + fan = create_supply_fan(model, obj_name, 1, 0.0, clg_cfm) # Fan power included in EER (net COP) above hvac_map[cooling_system.id] += disaggregate_fan_or_pump(model, fan, nil, clg_coil, nil) # Heating Coil (none) - htg_coil = OpenStudio::Model::CoilHeatingElectric.new(model, model.alwaysOffDiscreteSchedule()) + htg_coil.setNominalCapacity(0.0) htg_coil.setName(obj_name + ' htg coil') # PTAC - ptac = OpenStudio::Model::ZoneHVACPackagedTerminalAirConditioner.new(model, model.alwaysOnDiscreteSchedule, fan, htg_coil, clg_coil) ptac.setName(obj_name) ptac.setSupplyAirFanOperatingModeSchedule(model.alwaysOffDiscreteSchedule) + ptac.setSupplyAirFlowRateDuringCoolingOperation(UnitConversions.convert(clg_cfm, 'cfm', 'm^3/s')) + ptac.setSupplyAirFlowRateDuringHeatingOperation(0.00001) + ptac.setSupplyAirFlowRateWhenNoCoolingorHeatingisNeeded(0.0) + ptac.setOutdoorAirFlowRateDuringCoolingOperation(0.0) + ptac.setOutdoorAirFlowRateDuringHeatingOperation(0.0) + ptac.setOutdoorAirFlowRateWhenNoCoolingorHeatingisNeeded(0.0) ptac.addToThermalZone(control_zone) hvac_map[cooling_system.id] << ptac control_zone.setSequentialCoolingFractionSchedule(ptac, get_sequential_load_schedule(model, sequential_cool_load_frac)) control_zone.setSequentialHeatingFractionSchedule(ptac, get_sequential_load_schedule(model, 0)) - - # Store info for HVAC Sizing measure - ptac.additionalProperties.setFeature(Constants.SizingInfoHVACRatedCFMperTonCooling, cfms_ton_rated.join(',')) - ptac.additionalProperties.setFeature(Constants.SizingInfoHVACFracCoolLoadServed, cooling_system.fraction_cool_load_served) - ptac.additionalProperties.setFeature(Constants.SizingInfoHVACCoolType, Constants.ObjectNameRoomAirConditioner) end def self.apply_evaporative_cooler(model, runner, cooling_system, @@ -207,21 +189,21 @@ def self.apply_evaporative_cooler(model, runner, cooling_system, obj_name = Constants.ObjectNameEvaporativeCooler sequential_cool_load_frac = calc_sequential_load_fraction(cooling_system.fraction_cool_load_served, remaining_cool_load_frac) - # Evap Cooler + clg_ap = cooling_system.additional_properties + clg_cfm = cooling_system.cooling_airflow_cfm + # Evap Cooler evap_cooler = OpenStudio::Model::EvaporativeCoolerDirectResearchSpecial.new(model, model.alwaysOnDiscreteSchedule) evap_cooler.setName(obj_name) - evap_cooler.setCoolerEffectiveness(0.72) # Assumed effectiveness + evap_cooler.setCoolerEffectiveness(clg_ap.effectiveness) evap_cooler.setEvaporativeOperationMinimumDrybulbTemperature(0) # relax limitation to open evap cooler for any potential cooling evap_cooler.setEvaporativeOperationMaximumLimitWetbulbTemperature(50) # relax limitation to open evap cooler for any potential cooling evap_cooler.setEvaporativeOperationMaximumLimitDrybulbTemperature(50) # relax limitation to open evap cooler for any potential cooling + evap_cooler.setPrimaryAirDesignFlowRate(UnitConversions.convert(clg_cfm, 'cfm', 'm^3/s')) hvac_map[cooling_system.id] << evap_cooler # Air Loop - - air_loop = create_air_loop(model, obj_name, evap_cooler, control_zone, 0, sequential_cool_load_frac) - air_loop.additionalProperties.setFeature(Constants.SizingInfoHVACSystemIsDucted, !cooling_system.distribution_system_idref.nil?) - air_loop.additionalProperties.setFeature(Constants.SizingInfoHVACCoolType, Constants.ObjectNameEvaporativeCooler) + air_loop = create_air_loop(model, obj_name, evap_cooler, control_zone, 0, sequential_cool_load_frac, clg_cfm) hvac_map[cooling_system.id] << air_loop # Fan @@ -236,7 +218,9 @@ def self.apply_evaporative_cooler(model, runner, cooling_system, fan.setFanPowerCoefficient3(0) fan.setFanPowerCoefficient4(0) fan.setFanPowerCoefficient5(0) - set_fan_power(fan, cooling_system.fan_watts_per_cfm.to_f) + fan.setMaximumFlowRate(UnitConversions.convert(clg_cfm, 'cfm', 'm^3/s')) + fan_watts_per_cfm = [2.79 * clg_cfm**-0.29, 0.6].min # W/cfm; fit of efficacy to air flow from the CEC listed equipment + set_fan_power(fan, fan_watts_per_cfm) fan.addToNode(air_loop.supplyInletNode) hvac_map[cooling_system.id] += disaggregate_fan_or_pump(model, fan, nil, evap_cooler, nil) @@ -246,6 +230,7 @@ def self.apply_evaporative_cooler(model, runner, cooling_system, oa_intake_controller.setMinimumLimitType('FixedMinimum') oa_intake_controller.resetEconomizerMinimumLimitDryBulbTemperature oa_intake_controller.setMinimumFractionofOutdoorAirSchedule(model.alwaysOnDiscreteSchedule) + oa_intake_controller.setMaximumOutdoorAirFlowRate(UnitConversions.convert(clg_cfm, 'cfm', 'm^3/s')) oa_intake = OpenStudio::Model::AirLoopHVACOutdoorAirSystem.new(model, oa_intake_controller) oa_intake.setName("#{air_loop.name} OA System") @@ -258,10 +243,6 @@ def self.apply_evaporative_cooler(model, runner, cooling_system, evap_stpt_manager.setReferenceTemperatureType('OutdoorAirWetBulb') evap_stpt_manager.setOffsetTemperatureDifference(0.0) evap_stpt_manager.addToNode(air_loop.supplyOutletNode) - - # Store info for HVAC Sizing measure - evap_cooler.additionalProperties.setFeature(Constants.SizingInfoHVACFracCoolLoadServed, cooling_system.fraction_cool_load_served) - evap_cooler.additionalProperties.setFeature(Constants.SizingInfoHVACCoolType, Constants.ObjectNameEvaporativeCooler) end def self.apply_central_air_to_air_heat_pump(model, runner, heat_pump, @@ -273,156 +254,91 @@ def self.apply_central_air_to_air_heat_pump(model, runner, heat_pump, obj_name = Constants.ObjectNameAirSourceHeatPump sequential_heat_load_frac = calc_sequential_load_fraction(heat_pump.fraction_heat_load_served, remaining_heat_load_frac) sequential_cool_load_frac = calc_sequential_load_fraction(heat_pump.fraction_cool_load_served, remaining_cool_load_frac) - if heat_pump.compressor_type == HPXML::HVACCompressorTypeSingleStage - num_speeds = 1 - elsif heat_pump.compressor_type == HPXML::HVACCompressorTypeTwoStage - num_speeds = 2 - elsif heat_pump.compressor_type == HPXML::HVACCompressorTypeVariableSpeed - num_speeds = 4 - end - fan_power_rated = get_fan_power_rated(heat_pump.cooling_efficiency_seer) - if heat_pump.fraction_heat_load_served <= 0 - crankcase_kw, crankcase_temp = 0, nil - else - crankcase_kw, crankcase_temp = get_crankcase_assumptions(heat_pump.fraction_cool_load_served) - end - hp_min_temp, supp_max_temp = get_heat_pump_temp_assumptions(heat_pump) - # Cooling Coil + hp_ap = heat_pump.additional_properties - cool_c_d = get_cool_c_d(num_speeds, heat_pump.cooling_efficiency_seer) - cool_rated_airflow_rate, cool_fan_speed_ratios, cool_capacity_ratios, cool_shrs, cool_eers, cool_cap_ft_spec, cool_eir_ft_spec, cool_cap_fflow_spec, cool_eir_fflow_spec = get_hp_clg_curves(num_speeds, heat_pump, fan_power_rated, cool_c_d, runner) - cool_cfms_ton_rated = calc_cfms_ton_rated(cool_rated_airflow_rate, cool_fan_speed_ratios, cool_capacity_ratios) - cool_shrs_rated_gross = calc_shrs_rated_gross(num_speeds, cool_shrs, fan_power_rated, cool_cfms_ton_rated) - cool_eirs = calc_cool_eirs(num_speeds, cool_eers, fan_power_rated) - cool_closs_fplr_spec = [calc_plr_coefficients(cool_c_d)] * num_speeds - clg_coil = create_dx_cooling_coil(model, obj_name, (0...num_speeds).to_a, cool_eirs, cool_cap_ft_spec, cool_eir_ft_spec, cool_closs_fplr_spec, cool_cap_fflow_spec, cool_eir_fflow_spec, cool_shrs_rated_gross, heat_pump.cooling_capacity, 0, nil, fan_power_rated) + # Cooling Coil + clg_coil = create_dx_cooling_coil(model, obj_name, heat_pump) hvac_map[heat_pump.id] << clg_coil # Heating Coil - - heat_c_d = get_heat_c_d(num_speeds, heat_pump.heating_efficiency_hspf) - if num_speeds == 1 - heat_rated_airflow_rate = 384.1 # cfm/ton - heat_capacity_ratios = [1.0] - heat_fan_speed_ratios = [1.0] - heat_eir_ft_spec = [[0.718398423, 0.003498178, 0.000142202, -0.005724331, 0.00014085, -0.000215321]] - heat_cap_fflow_spec = [[0.694045465, 0.474207981, -0.168253446]] - heat_eir_fflow_spec = [[2.185418751, -1.942827919, 0.757409168]] - if heat_pump.heating_capacity_17F.nil? - heat_cap_ft_spec = [[0.566333415, -0.000744164, -0.0000103, 0.009414634, 0.0000506, -0.00000675]] - else - heat_cap_ft_spec = calc_heat_cap_ft_spec_using_capacity_17F(num_speeds, heat_pump) - end - heat_cops = [calc_cop_heating_1speed(heat_pump.heating_efficiency_hspf, heat_c_d, fan_power_rated, heat_eir_ft_spec, heat_cap_ft_spec)] - elsif num_speeds == 2 - heat_rated_airflow_rate = 352.2 # cfm/ton - heat_capacity_ratios = [0.72, 1.0] - heat_fan_speed_ratios = [0.8, 1.0] - heat_eir_ft_spec = [[0.36338171, 0.013523725, 0.000258872, -0.009450269, 0.000439519, -0.000653723], - [0.981100941, -0.005158493, 0.000243416, -0.005274352, 0.000230742, -0.000336954]] - heat_cap_fflow_spec = [[0.741466907, 0.378645444, -0.119754733], - [0.76634609, 0.32840943, -0.094701495]] - heat_eir_fflow_spec = [[2.153618211, -1.737190609, 0.584269478], - [2.001041353, -1.58869128, 0.587593517]] - if heat_pump.heating_capacity_17F.nil? - heat_cap_ft_spec = [[0.335690634, 0.002405123, -0.0000464, 0.013498735, 0.0000499, -0.00000725], - [0.306358843, 0.005376987, -0.0000579, 0.011645092, 0.0000591, -0.0000203]] - else - heat_cap_ft_spec = calc_heat_cap_ft_spec_using_capacity_17F(num_speeds, heat_pump) - end - heat_cops = calc_cops_heating_2speed(heat_pump.heating_efficiency_hspf, heat_c_d, heat_capacity_ratios, heat_fan_speed_ratios, fan_power_rated, heat_eir_ft_spec, heat_cap_ft_spec) - elsif num_speeds == 4 - heat_rated_airflow_rate = 296.9 # cfm/ton - heat_capacity_ratios = [0.33, 0.56, 1.0, 1.17] - heat_fan_speed_ratios = [0.63, 0.76, 1.0, 1.19] - heat_eir_ft_spec = [[0.708311527, 0.020732093, 0.000391479, -0.037640031, 0.000979937, -0.001079042], - [0.025480155, 0.020169585, 0.000121341, -0.004429789, 0.000166472, -0.00036447], - [0.379003189, 0.014195012, 0.0000821046, -0.008894061, 0.000151519, -0.000210299], - [0.690404655, 0.00616619, 0.000137643, -0.009350199, 0.000153427, -0.000213258]] - heat_cap_fflow_spec = [[1, 0, 0]] * 4 - heat_eir_fflow_spec = [[1, 0, 0]] * 4 - if heat_pump.heating_capacity_17F.nil? - heat_cap_ft_spec = [[0.304192655, -0.003972566, 0.0000196432, 0.024471251, -0.000000774126, -0.0000841323], - [0.496381324, -0.00144792, 0.0, 0.016020855, 0.0000203447, -0.0000584118], - [0.697171186, -0.006189599, 0.0000337077, 0.014291981, 0.0000105633, -0.0000387956], - [0.555513805, -0.001337363, -0.00000265117, 0.014328826, 0.0000163849, -0.0000480711]] - else - heat_cap_ft_spec = calc_heat_cap_ft_spec_using_capacity_17F(num_speeds, heat_pump) - end - heat_cops = calc_cops_heating_4speed(runner, heat_pump.heating_efficiency_hspf, heat_c_d, heat_capacity_ratios, heat_fan_speed_ratios, fan_power_rated, heat_eir_ft_spec, heat_cap_ft_spec) - end - heat_cfms_ton_rated = calc_cfms_ton_rated(heat_rated_airflow_rate, heat_fan_speed_ratios, heat_capacity_ratios) - heat_eirs = calc_heat_eirs(num_speeds, heat_cops, fan_power_rated) - heat_closs_fplr_spec = [calc_plr_coefficients(heat_c_d)] * num_speeds - htg_coil = create_dx_heating_coil(model, obj_name, (0...num_speeds).to_a, heat_eirs, heat_cap_ft_spec, heat_eir_ft_spec, heat_closs_fplr_spec, heat_cap_fflow_spec, heat_eir_fflow_spec, heat_pump.heating_capacity, crankcase_kw, crankcase_temp, fan_power_rated, hp_min_temp, heat_pump.fraction_heat_load_served) + htg_coil = create_dx_heating_coil(model, obj_name, heat_pump) hvac_map[heat_pump.id] << htg_coil # Supplemental Heating Coil - htg_supp_coil = create_supp_heating_coil(model, obj_name, heat_pump) hvac_map[heat_pump.id] << htg_supp_coil # Fan - fan = create_supply_fan(model, obj_name, num_speeds, heat_pump.fan_watts_per_cfm) + num_speeds = hp_ap.num_speeds + htg_cfm = heat_pump.heating_airflow_cfm + clg_cfm = heat_pump.cooling_airflow_cfm + fan_cfm = hp_ap.cool_fan_speed_ratios.max * [htg_cfm, clg_cfm].max + fan = create_supply_fan(model, obj_name, num_speeds, heat_pump.fan_watts_per_cfm, fan_cfm) hvac_map[heat_pump.id] += disaggregate_fan_or_pump(model, fan, htg_coil, clg_coil, htg_supp_coil) # Unitary System - - air_loop_unitary = create_air_loop_unitary_system(model, obj_name, fan, htg_coil, clg_coil, htg_supp_coil, supp_max_temp) + air_loop_unitary = create_air_loop_unitary_system(model, obj_name, fan, htg_coil, clg_coil, htg_supp_coil, htg_cfm, clg_cfm, hp_ap.supp_max_temp) hvac_map[heat_pump.id] << air_loop_unitary + # Unitary System Performance if num_speeds > 1 - # Unitary System Performance perf = OpenStudio::Model::UnitarySystemPerformanceMultispeed.new(model) perf.setSingleModeOperation(false) for speed in 1..num_speeds - f = OpenStudio::Model::SupplyAirflowRatioField.new(heat_fan_speed_ratios[speed - 1], cool_fan_speed_ratios[speed - 1]) + f = OpenStudio::Model::SupplyAirflowRatioField.new(hp_ap.heat_fan_speed_ratios[speed - 1], hp_ap.cool_fan_speed_ratios[speed - 1]) perf.addSupplyAirflowRatioField(f) end air_loop_unitary.setDesignSpecificationMultispeedObject(perf) end # Air Loop - - air_loop = create_air_loop(model, obj_name, air_loop_unitary, control_zone, sequential_heat_load_frac, sequential_cool_load_frac) + air_loop = create_air_loop(model, obj_name, air_loop_unitary, control_zone, sequential_heat_load_frac, sequential_cool_load_frac, fan_cfm) hvac_map[heat_pump.id] << air_loop - # Store info for HVAC Sizing measure - air_loop_unitary.additionalProperties.setFeature(Constants.SizingInfoHVACCapacityRatioHeating, heat_capacity_ratios.join(',')) - air_loop_unitary.additionalProperties.setFeature(Constants.SizingInfoHVACCapacityRatioCooling, cool_capacity_ratios.join(',')) - air_loop_unitary.additionalProperties.setFeature(Constants.SizingInfoHVACRatedCFMperTonHeating, heat_cfms_ton_rated.join(',')) - air_loop_unitary.additionalProperties.setFeature(Constants.SizingInfoHVACRatedCFMperTonCooling, cool_cfms_ton_rated.join(',')) - air_loop_unitary.additionalProperties.setFeature(Constants.SizingInfoHVACFracHeatLoadServed, heat_pump.fraction_heat_load_served) - air_loop_unitary.additionalProperties.setFeature(Constants.SizingInfoHVACFracCoolLoadServed, heat_pump.fraction_cool_load_served) - air_loop_unitary.additionalProperties.setFeature(Constants.SizingInfoHVACCoolType, Constants.ObjectNameAirSourceHeatPump) - air_loop_unitary.additionalProperties.setFeature(Constants.SizingInfoHVACHeatType, Constants.ObjectNameAirSourceHeatPump) + # HVAC Installation Quality + apply_installation_quality(model, heat_pump, heat_pump, air_loop_unitary, htg_coil, clg_coil, control_zone) end def self.apply_mini_split_air_conditioner(model, runner, cooling_system, remaining_cool_load_frac, control_zone, hvac_map) - # Shoehorn cooling_system object into a corresponding heat_pump object - heat_pump = HPXML::HeatPump.new(cooling_system.hpxml_object) - heat_pump.id = cooling_system.id - heat_pump.heat_pump_type = HPXML::HVACTypeHeatPumpMiniSplit - heat_pump.heat_pump_fuel = cooling_system.cooling_system_fuel - heat_pump.cooling_capacity = cooling_system.cooling_capacity - if !heat_pump.cooling_capacity.nil? - heat_pump.heating_capacity = 0 - end - heat_pump.cooling_shr = cooling_system.cooling_shr - heat_pump.fraction_heat_load_served = 0 - heat_pump.fraction_cool_load_served = cooling_system.fraction_cool_load_served - heat_pump.cooling_efficiency_seer = cooling_system.cooling_efficiency_seer - heat_pump.heating_efficiency_hspf = 7.7 # Arbitrary; shouldn't affect energy use TODO: Allow nil - heat_pump.distribution_system_idref = cooling_system.distribution_system_idref - heat_pump.fan_watts_per_cfm = cooling_system.fan_watts_per_cfm - - apply_mini_split_heat_pump(model, runner, heat_pump, 0, - remaining_cool_load_frac, - control_zone, hvac_map) + hvac_map[cooling_system.id] = [] + obj_name = Constants.ObjectNameMiniSplitAirConditioner + sequential_cool_load_frac = calc_sequential_load_fraction(cooling_system.fraction_cool_load_served, remaining_cool_load_frac) + + clg_ap = cooling_system.additional_properties + + # Cooling Coil + clg_coil = create_dx_cooling_coil(model, obj_name, cooling_system) + hvac_map[cooling_system.id] << clg_coil + + # Fan + num_speeds = clg_ap.num_speeds + clg_cfm = cooling_system.cooling_airflow_cfm + fan = create_supply_fan(model, obj_name, num_speeds, cooling_system.fan_watts_per_cfm, clg_cfm) + hvac_map[cooling_system.id] += disaggregate_fan_or_pump(model, fan, nil, clg_coil, nil) + + # Unitary System + air_loop_unitary = create_air_loop_unitary_system(model, obj_name, fan, nil, clg_coil, nil, nil, clg_cfm) + hvac_map[cooling_system.id] << air_loop_unitary + + # Unitary System Performance + perf = OpenStudio::Model::UnitarySystemPerformanceMultispeed.new(model) + perf.setSingleModeOperation(false) + for i in 0..(num_speeds - 1) + f = OpenStudio::Model::SupplyAirflowRatioField.new(1.0, clg_ap.cool_fan_speed_ratios[i]) + perf.addSupplyAirflowRatioField(f) + end + air_loop_unitary.setDesignSpecificationMultispeedObject(perf) + + # Air Loop + air_loop = create_air_loop(model, obj_name, air_loop_unitary, control_zone, 0, sequential_cool_load_frac, clg_cfm) + hvac_map[cooling_system.id] << air_loop + + # HVAC Installation Quality + apply_installation_quality(model, nil, cooling_system, air_loop_unitary, nil, clg_coil, control_zone) end def self.apply_mini_split_heat_pump(model, runner, heat_pump, @@ -434,192 +350,48 @@ def self.apply_mini_split_heat_pump(model, runner, heat_pump, obj_name = Constants.ObjectNameMiniSplitHeatPump sequential_heat_load_frac = calc_sequential_load_fraction(heat_pump.fraction_heat_load_served, remaining_heat_load_frac) sequential_cool_load_frac = calc_sequential_load_fraction(heat_pump.fraction_cool_load_served, remaining_cool_load_frac) - num_speeds = 10 - mshp_indices = [1, 3, 5, 9] - hp_min_temp, supp_max_temp = get_heat_pump_temp_assumptions(heat_pump) - pan_heater_power = 0.0 # W, disabled - if not heat_pump.distribution_system.nil? - fan_power_rated = 0.18 # W/cfm, ducted - else - fan_power_rated = heat_pump.fan_watts_per_cfm # ductless, installed and rated value should be equal - end - - # Calculate generic inputs - min_cooling_capacity = 0.4 # frac - max_cooling_capacity = 1.2 # frac - min_cooling_airflow_rate = 200.0 - max_cooling_airflow_rate = 425.0 - min_heating_capacity = 0.3 # frac - max_heating_capacity = 1.2 # frac - min_heating_airflow_rate = 200.0 - max_heating_airflow_rate = 400.0 - if heat_pump.heating_capacity.nil? - heating_capacity_offset = 2300.0 # Btu/hr - else - heating_capacity_offset = heat_pump.heating_capacity - heat_pump.cooling_capacity - end - if heat_pump.heating_capacity_17F.nil? - cap_retention_frac = 0.25 # frac - cap_retention_temp = -5.0 # deg-F - else - cap_retention_frac = heat_pump.heating_capacity_17F / heat_pump.heating_capacity - cap_retention_temp = 17.0 # deg-F - end - # Cooling Coil + hp_ap = heat_pump.additional_properties - cool_cap_ft_spec = [[0.7531983499655835, 0.003618193903031667, 0.0, 0.006574385031351544, -6.87181191015432e-05, 0.0]] * num_speeds - cool_eir_ft_spec = [[-0.06376924779982301, -0.0013360593470367282, 1.413060577993827e-05, 0.019433076486584752, -4.91395947154321e-05, -4.909341249475308e-05]] * num_speeds - cool_cap_fflow_spec = [[1, 0, 0]] * num_speeds - cool_eir_fflow_spec = [[1, 0, 0]] * num_speeds - cool_c_d = get_cool_c_d(num_speeds, heat_pump.cooling_efficiency_seer) - cool_closs_fplr_spec = [calc_plr_coefficients(cool_c_d)] * num_speeds - dB_rated = 80.0 # deg-F - wB_rated = 67.0 # deg-F - cool_cfms_ton_rated, cool_capacity_ratios, cool_shrs_rated_gross = calc_mshp_cfms_ton_cooling(min_cooling_capacity, max_cooling_capacity, min_cooling_airflow_rate, max_cooling_airflow_rate, num_speeds, dB_rated, wB_rated, heat_pump.cooling_shr) - cool_eirs = calc_mshp_cool_eirs(runner, heat_pump.cooling_efficiency_seer, fan_power_rated, cool_c_d, num_speeds, cool_capacity_ratios, cool_cfms_ton_rated, cool_eir_ft_spec, cool_cap_ft_spec) - clg_coil = create_dx_cooling_coil(model, obj_name, mshp_indices, cool_eirs, cool_cap_ft_spec, cool_eir_ft_spec, cool_closs_fplr_spec, cool_cap_fflow_spec, cool_eir_fflow_spec, cool_shrs_rated_gross, heat_pump.cooling_capacity, 0.0, nil, nil) + # Cooling Coil + clg_coil = create_dx_cooling_coil(model, obj_name, heat_pump) hvac_map[heat_pump.id] << clg_coil # Heating Coil - - # cop/eir as a function of temperature - # Generic curves (=Daikin from lab data) - heat_eir_ft_spec = [[0.9999941697687026, 0.004684593830254383, 5.901286675833333e-05, -0.0028624467783091973, 1.3041120194135802e-05, -0.00016172918478765433]] * num_speeds - heat_cap_fflow_spec = [[1, 0, 0]] * num_speeds - heat_eir_fflow_spec = [[1, 0, 0]] * num_speeds - - # Derive coefficients from user input for capacity retention at outdoor drybulb temperature X [C]. - # Biquadratic: capacity multiplier = a + b*IAT + c*IAT^2 + d*OAT + e*OAT^2 + f*IAT*OAT - x_A = UnitConversions.convert(cap_retention_temp, 'F', 'C') - y_A = cap_retention_frac - x_B = UnitConversions.convert(47.0, 'F', 'C') # 47F is the rating point - y_B = 1.0 # Maximum capacity factor is 1 at the rating point, by definition (this is maximum capacity, not nominal capacity) - oat_slope = (y_B - y_A) / (x_B - x_A) - oat_intercept = y_A - (x_A * oat_slope) - - # Coefficients for the indoor temperature relationship are retained from the generic curve (Daikin lab data). - iat_slope = -0.010386676170938 - iat_intercept = 0.219274275 - a = oat_intercept + iat_intercept - b = iat_slope - c = 0 - d = oat_slope - e = 0 - f = 0 - heat_cap_ft_spec = [convert_curve_biquadratic([a, b, c, d, e, f], false)] * num_speeds - - heat_c_d = get_heat_c_d(num_speeds, heat_pump.heating_efficiency_hspf) - heat_closs_fplr_spec = [calc_plr_coefficients(heat_c_d)] * num_speeds - heat_cfms_ton_rated, heat_capacity_ratios = calc_mshp_cfms_ton_heating(min_heating_capacity, max_heating_capacity, min_heating_airflow_rate, max_heating_airflow_rate, num_speeds) - heat_eirs = calc_mshp_heat_eirs(runner, heat_pump.heating_efficiency_hspf, fan_power_rated, hp_min_temp, heat_c_d, cool_cfms_ton_rated, num_speeds, heat_capacity_ratios, heat_cfms_ton_rated, heat_eir_ft_spec, heat_cap_ft_spec) - htg_coil = create_dx_heating_coil(model, obj_name, mshp_indices, heat_eirs, heat_cap_ft_spec, heat_eir_ft_spec, heat_closs_fplr_spec, heat_cap_fflow_spec, heat_eir_fflow_spec, heat_pump.heating_capacity, 0.0, nil, nil, hp_min_temp, heat_pump.fraction_heat_load_served) + htg_coil = create_dx_heating_coil(model, obj_name, heat_pump) hvac_map[heat_pump.id] << htg_coil # Supplemental Heating Coil - htg_supp_coil = create_supp_heating_coil(model, obj_name, heat_pump) hvac_map[heat_pump.id] << htg_supp_coil # Fan - fan = create_supply_fan(model, obj_name, 4, heat_pump.fan_watts_per_cfm) + num_speeds = hp_ap.num_speeds + htg_cfm = heat_pump.heating_airflow_cfm + clg_cfm = heat_pump.cooling_airflow_cfm + fan_cfm = hp_ap.cool_fan_speed_ratios.max * [htg_cfm, clg_cfm].max + fan = create_supply_fan(model, obj_name, num_speeds, heat_pump.fan_watts_per_cfm, fan_cfm) hvac_map[heat_pump.id] += disaggregate_fan_or_pump(model, fan, htg_coil, clg_coil, htg_supp_coil) # Unitary System - - air_loop_unitary = create_air_loop_unitary_system(model, obj_name, fan, htg_coil, clg_coil, htg_supp_coil, supp_max_temp) + air_loop_unitary = create_air_loop_unitary_system(model, obj_name, fan, htg_coil, clg_coil, htg_supp_coil, htg_cfm, clg_cfm, hp_ap.supp_max_temp) hvac_map[heat_pump.id] << air_loop_unitary + # Unitary System Performance perf = OpenStudio::Model::UnitarySystemPerformanceMultispeed.new(model) perf.setSingleModeOperation(false) - mshp_indices.each do |mshp_index| - ratio_heating = heat_cfms_ton_rated[mshp_index] / heat_cfms_ton_rated[mshp_indices[-1]] - ratio_cooling = cool_cfms_ton_rated[mshp_index] / cool_cfms_ton_rated[mshp_indices[-1]] - f = OpenStudio::Model::SupplyAirflowRatioField.new(ratio_heating, ratio_cooling) + for i in 0..(num_speeds - 1) + f = OpenStudio::Model::SupplyAirflowRatioField.new(hp_ap.heat_fan_speed_ratios[i], hp_ap.cool_fan_speed_ratios[i]) perf.addSupplyAirflowRatioField(f) end air_loop_unitary.setDesignSpecificationMultispeedObject(perf) # Air Loop - - air_loop = create_air_loop(model, obj_name, air_loop_unitary, control_zone, sequential_heat_load_frac, sequential_cool_load_frac) + air_loop = create_air_loop(model, obj_name, air_loop_unitary, control_zone, sequential_heat_load_frac, sequential_cool_load_frac, fan_cfm) hvac_map[heat_pump.id] << air_loop - if pan_heater_power > 0 - - mshp_sensor = OpenStudio::Model::EnergyManagementSystemSensor.new(model, "Heating Coil #{EPlus::FuelTypeElectricity} Energy") - mshp_sensor.setName("#{obj_name} vrf energy sensor") - mshp_sensor.setKeyName(obj_name + ' coil') - - equip_def = OpenStudio::Model::ElectricEquipmentDefinition.new(model) - equip_def.setName(obj_name + ' pan heater equip') - equip = OpenStudio::Model::ElectricEquipment.new(equip_def) - equip.setName(equip_def.name.to_s) - equip.setSpace(control_zone.spaces[0]) - equip_def.setFractionRadiant(0) - equip_def.setFractionLatent(0) - equip_def.setFractionLost(1) - equip.setSchedule(model.alwaysOnDiscreteSchedule) - equip.setEndUseSubcategory(obj_name + ' pan heater') - - pan_heater_actuator = OpenStudio::Model::EnergyManagementSystemActuator.new(equip, *EPlus::EMSActuatorElectricEquipmentPower) - pan_heater_actuator.setName("#{obj_name} pan heater actuator") - - tout_sensor = OpenStudio::Model::EnergyManagementSystemSensor.new(model, 'Zone Outdoor Air Drybulb Temperature') - tout_sensor.setName("#{obj_name} tout sensor") - thermal_zones.each do |thermal_zone| - if Geometry.is_living(thermal_zone) - tout_sensor.setKeyName(thermal_zone.name.to_s) - break - end - end - - program = OpenStudio::Model::EnergyManagementSystemProgram.new(model) - program.setName(obj_name + ' pan heater program') - if not heat_pump.cooling_capacity.nil? - num_outdoor_units = (UnitConversions.convert([heat_pump.cooling_capacity, Constants.small].max, 'Btu/hr', 'ton') / 1.5).ceil # Assume 1.5 tons max per outdoor unit - else - num_outdoor_units = 2 - end - pan_heater_power *= num_outdoor_units # W - program.addLine("Set #{pan_heater_actuator.name} = 0") - program.addLine("If #{mshp_sensor.name} > 0") - program.addLine(" If #{tout_sensor.name} <= #{UnitConversions.convert(32.0, 'F', 'C').round(3)}") - program.addLine(" Set #{pan_heater_actuator.name} = #{pan_heater_power}") - program.addLine(' EndIf') - program.addLine('EndIf') - - program_calling_manager = OpenStudio::Model::EnergyManagementSystemProgramCallingManager.new(model) - program_calling_manager.setName(obj_name + ' pan heater program calling manager') - program_calling_manager.setCallingPoint('BeginTimestepBeforePredictor') - program_calling_manager.addProgram(program) - - end - - # Store info for HVAC Sizing measure - heat_capacity_ratios_4 = [] - cool_capacity_ratios_4 = [] - heat_cfms_ton_rated_4 = [] - cool_cfms_ton_rated_4 = [] - cool_shrs_rated_gross_4 = [] - mshp_indices.each do |mshp_index| - heat_capacity_ratios_4 << heat_capacity_ratios[mshp_index] - cool_capacity_ratios_4 << cool_capacity_ratios[mshp_index] - heat_cfms_ton_rated_4 << heat_cfms_ton_rated[mshp_index] - cool_cfms_ton_rated_4 << cool_cfms_ton_rated[mshp_index] - cool_shrs_rated_gross_4 << cool_shrs_rated_gross[mshp_index] - end - air_loop_unitary.additionalProperties.setFeature(Constants.SizingInfoHVACSystemIsDucted, !heat_pump.distribution_system_idref.nil?) - air_loop_unitary.additionalProperties.setFeature(Constants.SizingInfoHVACCapacityRatioHeating, heat_capacity_ratios_4.join(',')) - air_loop_unitary.additionalProperties.setFeature(Constants.SizingInfoHVACCapacityRatioCooling, cool_capacity_ratios_4.join(',')) - air_loop_unitary.additionalProperties.setFeature(Constants.SizingInfoHVACRatedCFMperTonHeating, heat_cfms_ton_rated_4.join(',')) - air_loop_unitary.additionalProperties.setFeature(Constants.SizingInfoHVACRatedCFMperTonCooling, cool_cfms_ton_rated_4.join(',')) - air_loop_unitary.additionalProperties.setFeature(Constants.SizingInfoHVACHeatingCapacityOffset, heating_capacity_offset) - air_loop_unitary.additionalProperties.setFeature(Constants.SizingInfoHVACFracHeatLoadServed, heat_pump.fraction_heat_load_served) - air_loop_unitary.additionalProperties.setFeature(Constants.SizingInfoHVACFracCoolLoadServed, heat_pump.fraction_cool_load_served) - air_loop_unitary.additionalProperties.setFeature(Constants.SizingInfoHVACSHR, cool_shrs_rated_gross_4.join(',')) - air_loop_unitary.additionalProperties.setFeature(Constants.SizingInfoHVACCoolType, Constants.ObjectNameMiniSplitHeatPump) - air_loop_unitary.additionalProperties.setFeature(Constants.SizingInfoHVACHeatType, Constants.ObjectNameMiniSplitHeatPump) + # HVAC Installation Quality + apply_installation_quality(model, heat_pump, heat_pump, air_loop_unitary, htg_coil, clg_coil, control_zone) end def self.apply_ground_to_air_heat_pump(model, runner, weather, heat_pump, @@ -630,181 +402,122 @@ def self.apply_ground_to_air_heat_pump(model, runner, weather, heat_pump, obj_name = Constants.ObjectNameGroundSourceHeatPump sequential_heat_load_frac = calc_sequential_load_fraction(heat_pump.fraction_heat_load_served, remaining_heat_load_frac) sequential_cool_load_frac = calc_sequential_load_fraction(heat_pump.fraction_cool_load_served, remaining_cool_load_frac) - pipe_cond = 0.23 # Pipe thermal conductivity, default to high density polyethylene - ground_conductivity = 0.6 - grout_conductivity = 0.4 - bore_config = nil # Autosize - bore_holes = nil # Autosize - bore_depth = nil # Autosize - bore_spacing = 20.0 - bore_diameter = 5.0 - pipe_size = 0.75 - ground_diffusivity = 0.0208 - fluid_type = Constants.FluidPropyleneGlycol - frac_glycol = 0.3 - design_delta_t = 10.0 - chw_design = [85.0, weather.design.CoolingDrybulb - 15.0, weather.data.AnnualAvgDrybulb + 10.0].max # Temperature of water entering indoor coil,use 85F as lower bound - if fluid_type == Constants.FluidWater - hw_design = [45.0, weather.design.HeatingDrybulb + 35.0, weather.data.AnnualAvgDrybulb - 10.0].max # Temperature of fluid entering indoor coil, use 45F as lower bound for water - else - hw_design = [35.0, weather.design.HeatingDrybulb + 35.0, weather.data.AnnualAvgDrybulb - 10.0].min # Temperature of fluid entering indoor coil, use 35F as upper bound - end - # Pipe nominal size conversion to pipe outside diameter and inside diameter, - # only pipe sizes <= 2" are used here with DR11 (dimension ratio), - if pipe_size == 0.75 # 3/4" pipe - pipe_od = 1.050 - pipe_id = 0.859 - elsif pipe_size == 1.0 # 1" pipe - pipe_od = 1.315 - pipe_id = 1.076 - elsif pipe_size == 1.25 # 1-1/4" pipe - pipe_od = 1.660 - pipe_id = 1.358 - end - u_tube_spacing_type = 'b' - # Calculate distance between pipes - if u_tube_spacing_type == 'as' - # Two tubes, spaced 1/8” apart at the center of the borehole - u_tube_spacing = 0.125 - elsif u_tube_spacing_type == 'b' - # Two tubes equally spaced between the borehole edges - u_tube_spacing = 0.9661 - elsif u_tube_spacing_type == 'c' - # Both tubes placed against outer edge of borehole - u_tube_spacing = bore_diameter - 2 * pipe_od - end - shank_spacing = u_tube_spacing + pipe_od # Distance from center of pipe to center of pipe - if frac_glycol == 0 - fluid_type = Constants.FluidWater - runner.registerWarning("Specified #{fluid_type} fluid type and 0 fraction of glycol, so assuming #{Constants.FluidWater} fluid type.") + hp_ap = heat_pump.additional_properties + htg_cfm = heat_pump.heating_airflow_cfm + clg_cfm = heat_pump.cooling_airflow_cfm + + if hp_ap.frac_glycol == 0 + hp_ap.fluid_type = Constants.FluidWater + runner.registerWarning("Specified #{hp_ap.fluid_type} fluid type and 0 fraction of glycol, so assuming #{Constants.FluidWater} fluid type.") end # Cooling Coil - - coil_bf = 0.08060000 - cool_cap_ft_spec = [0.39039063, 0.01382596, 0.00000000, -0.00445738, 0.00000000, 0.00000000] - cool_SH_ft_spec = [4.27136253, -0.04678521, 0.00000000, -0.00219031, 0.00000000, 0.00000000] - cool_power_ft_spec = [0.01717338, 0.00316077, 0.00000000, 0.01043792, 0.00000000, 0.00000000] - coil_bf_ft_spec = [1.21005458, -0.00664200, 0.00000000, 0.00348246, 0.00000000, 0.00000000] - gshp_cool_cap_fT_coeff = convert_curve_gshp(cool_cap_ft_spec, false) - gshp_cool_power_fT_coeff = convert_curve_gshp(cool_power_ft_spec, false) - gshp_cool_SH_fT_coeff = convert_curve_gshp(cool_SH_ft_spec, false) - - # FUTURE: Reconcile these adjustments with ANSI/RESNET/ICC 301-2019 Section 4.4.5 - fan_adjust_kw = UnitConversions.convert(400.0, 'Btu/hr', 'ton') * UnitConversions.convert(1.0, 'cfm', 'm^3/s') * 1000.0 * 0.35 * 249.0 / 300.0 # Adjustment per ISO 13256-1 Internal pressure drop across heat pump assumed to be 0.5 in. w.g. - pump_adjust_kw = UnitConversions.convert(3.0, 'Btu/hr', 'ton') * UnitConversions.convert(1.0, 'gal/min', 'm^3/s') * 1000.0 * 6.0 * 2990.0 / 3000.0 # Adjustment per ISO 13256-1 Internal Pressure drop across heat pump coil assumed to be 11ft w.g. - cooling_eir = UnitConversions.convert((1.0 - heat_pump.cooling_efficiency_eer * (fan_adjust_kw + pump_adjust_kw)) / (heat_pump.cooling_efficiency_eer * (1.0 + UnitConversions.convert(fan_adjust_kw, 'Wh', 'Btu'))), 'Wh', 'Btu') - clg_coil = OpenStudio::Model::CoilCoolingWaterToAirHeatPumpEquationFit.new(model) clg_coil.setName(obj_name + ' clg coil') - if not heat_pump.cooling_capacity.nil? - clg_coil.setRatedTotalCoolingCapacity(UnitConversions.convert([heat_pump.cooling_capacity, Constants.small].max, 'Btu/hr', 'W')) # Used by HVACSizing measure - end - clg_coil.setRatedCoolingCoefficientofPerformance(1.0 / cooling_eir) - clg_coil.setTotalCoolingCapacityCoefficient1(gshp_cool_cap_fT_coeff[0]) - clg_coil.setTotalCoolingCapacityCoefficient2(gshp_cool_cap_fT_coeff[1]) - clg_coil.setTotalCoolingCapacityCoefficient3(gshp_cool_cap_fT_coeff[2]) - clg_coil.setTotalCoolingCapacityCoefficient4(gshp_cool_cap_fT_coeff[3]) - clg_coil.setTotalCoolingCapacityCoefficient5(gshp_cool_cap_fT_coeff[4]) - clg_coil.setSensibleCoolingCapacityCoefficient1(gshp_cool_SH_fT_coeff[0]) - clg_coil.setSensibleCoolingCapacityCoefficient2(0) - clg_coil.setSensibleCoolingCapacityCoefficient3(gshp_cool_SH_fT_coeff[1]) - clg_coil.setSensibleCoolingCapacityCoefficient4(gshp_cool_SH_fT_coeff[2]) - clg_coil.setSensibleCoolingCapacityCoefficient5(gshp_cool_SH_fT_coeff[3]) - clg_coil.setSensibleCoolingCapacityCoefficient6(gshp_cool_SH_fT_coeff[4]) - clg_coil.setCoolingPowerConsumptionCoefficient1(gshp_cool_power_fT_coeff[0]) - clg_coil.setCoolingPowerConsumptionCoefficient2(gshp_cool_power_fT_coeff[1]) - clg_coil.setCoolingPowerConsumptionCoefficient3(gshp_cool_power_fT_coeff[2]) - clg_coil.setCoolingPowerConsumptionCoefficient4(gshp_cool_power_fT_coeff[3]) - clg_coil.setCoolingPowerConsumptionCoefficient5(gshp_cool_power_fT_coeff[4]) + clg_coil.setRatedCoolingCoefficientofPerformance(1.0 / hp_ap.cool_rated_eirs[0]) + clg_coil.setTotalCoolingCapacityCoefficient1(hp_ap.cool_cap_ft_spec[0][0]) + clg_coil.setTotalCoolingCapacityCoefficient2(hp_ap.cool_cap_ft_spec[0][1]) + clg_coil.setTotalCoolingCapacityCoefficient3(hp_ap.cool_cap_ft_spec[0][2]) + clg_coil.setTotalCoolingCapacityCoefficient4(hp_ap.cool_cap_ft_spec[0][3]) + clg_coil.setTotalCoolingCapacityCoefficient5(hp_ap.cool_cap_ft_spec[0][4]) + clg_coil.setSensibleCoolingCapacityCoefficient1(hp_ap.cool_sh_ft_spec[0][0]) + clg_coil.setSensibleCoolingCapacityCoefficient2(hp_ap.cool_sh_ft_spec[0][1]) + clg_coil.setSensibleCoolingCapacityCoefficient3(hp_ap.cool_sh_ft_spec[0][2]) + clg_coil.setSensibleCoolingCapacityCoefficient4(hp_ap.cool_sh_ft_spec[0][3]) + clg_coil.setSensibleCoolingCapacityCoefficient5(hp_ap.cool_sh_ft_spec[0][4]) + clg_coil.setSensibleCoolingCapacityCoefficient6(hp_ap.cool_sh_ft_spec[0][5]) + clg_coil.setCoolingPowerConsumptionCoefficient1(hp_ap.cool_power_ft_spec[0][0]) + clg_coil.setCoolingPowerConsumptionCoefficient2(hp_ap.cool_power_ft_spec[0][1]) + clg_coil.setCoolingPowerConsumptionCoefficient3(hp_ap.cool_power_ft_spec[0][2]) + clg_coil.setCoolingPowerConsumptionCoefficient4(hp_ap.cool_power_ft_spec[0][3]) + clg_coil.setCoolingPowerConsumptionCoefficient5(hp_ap.cool_power_ft_spec[0][4]) clg_coil.setNominalTimeforCondensateRemovaltoBegin(1000) clg_coil.setRatioofInitialMoistureEvaporationRateandSteadyStateLatentCapacity(1.5) + clg_coil.setRatedAirFlowRate(UnitConversions.convert(clg_cfm, 'cfm', 'm^3/s')) + clg_coil.setRatedWaterFlowRate(UnitConversions.convert(hp_ap.GSHP_Loop_flow, 'gal/min', 'm^3/s')) + clg_coil.setRatedTotalCoolingCapacity(UnitConversions.convert(heat_pump.cooling_capacity, 'Btu/hr', 'W')) + clg_coil.setRatedSensibleCoolingCapacity(UnitConversions.convert(hp_ap.cooling_capacity_sensible, 'Btu/hr', 'W')) hvac_map[heat_pump.id] << clg_coil # Heating Coil - - heat_cap_ft_spec = [0.67104926, -0.00210834, 0.00000000, 0.01491424, 0.00000000, 0.00000000] - heat_power_ft_spec = [-0.46308105, 0.02008988, 0.00000000, 0.00300222, 0.00000000, 0.00000000] - gshp_heat_cap_fT_coeff = convert_curve_gshp(heat_cap_ft_spec, false) - gshp_heat_power_fT_coeff = convert_curve_gshp(heat_power_ft_spec, false) - - heating_eir = (1.0 - heat_pump.heating_efficiency_cop * (fan_adjust_kw + pump_adjust_kw)) / (heat_pump.heating_efficiency_cop * (1.0 - fan_adjust_kw)) - htg_coil = OpenStudio::Model::CoilHeatingWaterToAirHeatPumpEquationFit.new(model) htg_coil.setName(obj_name + ' htg coil') - if not heat_pump.heating_capacity.nil? - htg_coil.setRatedHeatingCapacity(UnitConversions.convert([heat_pump.heating_capacity, Constants.small].max, 'Btu/hr', 'W')) # Used by HVACSizing measure - end - htg_coil.setRatedHeatingCoefficientofPerformance(1.0 / heating_eir) - htg_coil.setHeatingCapacityCoefficient1(gshp_heat_cap_fT_coeff[0]) - htg_coil.setHeatingCapacityCoefficient2(gshp_heat_cap_fT_coeff[1]) - htg_coil.setHeatingCapacityCoefficient3(gshp_heat_cap_fT_coeff[2]) - htg_coil.setHeatingCapacityCoefficient4(gshp_heat_cap_fT_coeff[3]) - htg_coil.setHeatingCapacityCoefficient5(gshp_heat_cap_fT_coeff[4]) - htg_coil.setHeatingPowerConsumptionCoefficient1(gshp_heat_power_fT_coeff[0]) - htg_coil.setHeatingPowerConsumptionCoefficient2(gshp_heat_power_fT_coeff[1]) - htg_coil.setHeatingPowerConsumptionCoefficient3(gshp_heat_power_fT_coeff[2]) - htg_coil.setHeatingPowerConsumptionCoefficient4(gshp_heat_power_fT_coeff[3]) - htg_coil.setHeatingPowerConsumptionCoefficient5(gshp_heat_power_fT_coeff[4]) + htg_coil.setRatedHeatingCoefficientofPerformance(1.0 / hp_ap.heat_rated_eirs[0]) + htg_coil.setHeatingCapacityCoefficient1(hp_ap.heat_cap_ft_spec[0][0]) + htg_coil.setHeatingCapacityCoefficient2(hp_ap.heat_cap_ft_spec[0][1]) + htg_coil.setHeatingCapacityCoefficient3(hp_ap.heat_cap_ft_spec[0][2]) + htg_coil.setHeatingCapacityCoefficient4(hp_ap.heat_cap_ft_spec[0][3]) + htg_coil.setHeatingCapacityCoefficient5(hp_ap.heat_cap_ft_spec[0][4]) + htg_coil.setHeatingPowerConsumptionCoefficient1(hp_ap.heat_power_ft_spec[0][0]) + htg_coil.setHeatingPowerConsumptionCoefficient2(hp_ap.heat_power_ft_spec[0][1]) + htg_coil.setHeatingPowerConsumptionCoefficient3(hp_ap.heat_power_ft_spec[0][2]) + htg_coil.setHeatingPowerConsumptionCoefficient4(hp_ap.heat_power_ft_spec[0][3]) + htg_coil.setHeatingPowerConsumptionCoefficient5(hp_ap.heat_power_ft_spec[0][4]) + htg_coil.setRatedAirFlowRate(UnitConversions.convert(htg_cfm, 'cfm', 'm^3/s')) + htg_coil.setRatedWaterFlowRate(UnitConversions.convert(hp_ap.GSHP_Loop_flow, 'gal/min', 'm^3/s')) + htg_coil.setRatedHeatingCapacity(UnitConversions.convert(heat_pump.heating_capacity, 'Btu/hr', 'W')) hvac_map[heat_pump.id] << htg_coil # Supplemental Heating Coil - htg_supp_coil = create_supp_heating_coil(model, obj_name, heat_pump) hvac_map[heat_pump.id] << htg_supp_coil # Ground Heat Exchanger - ground_heat_exch_vert = OpenStudio::Model::GroundHeatExchangerVertical.new(model) ground_heat_exch_vert.setName(obj_name + ' exchanger') - ground_heat_exch_vert.setBoreHoleRadius(UnitConversions.convert(bore_diameter / 2.0, 'in', 'm')) - ground_heat_exch_vert.setGroundThermalConductivity(UnitConversions.convert(ground_conductivity, 'Btu/(hr*ft*R)', 'W/(m*K)')) - ground_heat_exch_vert.setGroundThermalHeatCapacity(UnitConversions.convert(ground_conductivity / ground_diffusivity, 'Btu/(ft^3*F)', 'J/(m^3*K)')) + ground_heat_exch_vert.setBoreHoleRadius(UnitConversions.convert(hp_ap.bore_diameter / 2.0, 'in', 'm')) + ground_heat_exch_vert.setGroundThermalConductivity(UnitConversions.convert(hp_ap.ground_conductivity, 'Btu/(hr*ft*R)', 'W/(m*K)')) + ground_heat_exch_vert.setGroundThermalHeatCapacity(UnitConversions.convert(hp_ap.ground_conductivity / hp_ap.ground_diffusivity, 'Btu/(ft^3*F)', 'J/(m^3*K)')) ground_heat_exch_vert.setGroundTemperature(UnitConversions.convert(weather.data.AnnualAvgDrybulb, 'F', 'C')) - ground_heat_exch_vert.setGroutThermalConductivity(UnitConversions.convert(grout_conductivity, 'Btu/(hr*ft*R)', 'W/(m*K)')) - ground_heat_exch_vert.setPipeThermalConductivity(UnitConversions.convert(pipe_cond, 'Btu/(hr*ft*R)', 'W/(m*K)')) - ground_heat_exch_vert.setPipeOutDiameter(UnitConversions.convert(pipe_od, 'in', 'm')) - ground_heat_exch_vert.setUTubeDistance(UnitConversions.convert(shank_spacing, 'in', 'm')) - ground_heat_exch_vert.setPipeThickness(UnitConversions.convert((pipe_od - pipe_id) / 2.0, 'in', 'm')) + ground_heat_exch_vert.setGroutThermalConductivity(UnitConversions.convert(hp_ap.grout_conductivity, 'Btu/(hr*ft*R)', 'W/(m*K)')) + ground_heat_exch_vert.setPipeThermalConductivity(UnitConversions.convert(hp_ap.pipe_cond, 'Btu/(hr*ft*R)', 'W/(m*K)')) + ground_heat_exch_vert.setPipeOutDiameter(UnitConversions.convert(hp_ap.pipe_od, 'in', 'm')) + ground_heat_exch_vert.setUTubeDistance(UnitConversions.convert(hp_ap.shank_spacing, 'in', 'm')) + ground_heat_exch_vert.setPipeThickness(UnitConversions.convert((hp_ap.pipe_od - hp_ap.pipe_id) / 2.0, 'in', 'm')) ground_heat_exch_vert.setMaximumLengthofSimulation(1) ground_heat_exch_vert.setGFunctionReferenceRatio(0.0005) + ground_heat_exch_vert.setDesignFlowRate(UnitConversions.convert(hp_ap.GSHP_Loop_flow, 'gal/min', 'm^3/s')) + ground_heat_exch_vert.setNumberofBoreHoles(hp_ap.GSHP_Bore_Holes.to_i) + ground_heat_exch_vert.setBoreHoleLength(UnitConversions.convert(hp_ap.GSHP_Bore_Depth, 'ft', 'm')) + ground_heat_exch_vert.removeAllGFunctions + for i in 0..(hp_ap.GSHP_G_Functions[0].size - 1) + ground_heat_exch_vert.addGFunction(hp_ap.GSHP_G_Functions[0][i], hp_ap.GSHP_G_Functions[1][i]) + end # Plant Loop - plant_loop = OpenStudio::Model::PlantLoop.new(model) plant_loop.setName(obj_name + ' condenser loop') - if fluid_type == Constants.FluidWater + if hp_ap.fluid_type == Constants.FluidWater plant_loop.setFluidType('Water') else - plant_loop.setFluidType({ Constants.FluidPropyleneGlycol => 'PropyleneGlycol', Constants.FluidEthyleneGlycol => 'EthyleneGlycol' }[fluid_type]) - plant_loop.setGlycolConcentration((frac_glycol * 100).to_i) + plant_loop.setFluidType({ Constants.FluidPropyleneGlycol => 'PropyleneGlycol', Constants.FluidEthyleneGlycol => 'EthyleneGlycol' }[hp_ap.fluid_type]) + plant_loop.setGlycolConcentration((hp_ap.frac_glycol * 100).to_i) end plant_loop.setMaximumLoopTemperature(48.88889) - plant_loop.setMinimumLoopTemperature(UnitConversions.convert(hw_design, 'F', 'C')) + plant_loop.setMinimumLoopTemperature(UnitConversions.convert(hp_ap.design_hw, 'F', 'C')) plant_loop.setMinimumLoopFlowRate(0) plant_loop.setLoadDistributionScheme('SequentialLoad') plant_loop.addSupplyBranchForComponent(ground_heat_exch_vert) plant_loop.addDemandBranchForComponent(htg_coil) plant_loop.addDemandBranchForComponent(clg_coil) + plant_loop.setMaximumLoopFlowRate(UnitConversions.convert(hp_ap.GSHP_Loop_flow, 'gal/min', 'm^3/s')) hvac_map[heat_pump.id] << plant_loop sizing_plant = plant_loop.sizingPlant sizing_plant.setLoopType('Condenser') - sizing_plant.setDesignLoopExitTemperature(UnitConversions.convert(chw_design, 'F', 'C')) - sizing_plant.setLoopDesignTemperatureDifference(UnitConversions.convert(design_delta_t, 'R', 'K')) + sizing_plant.setDesignLoopExitTemperature(UnitConversions.convert(hp_ap.design_chw, 'F', 'C')) + sizing_plant.setLoopDesignTemperatureDifference(UnitConversions.convert(hp_ap.design_delta_t, 'R', 'K')) setpoint_mgr_follow_ground_temp = OpenStudio::Model::SetpointManagerFollowGroundTemperature.new(model) setpoint_mgr_follow_ground_temp.setName(obj_name + ' condenser loop temp') setpoint_mgr_follow_ground_temp.setControlVariable('Temperature') setpoint_mgr_follow_ground_temp.setMaximumSetpointTemperature(48.88889) - setpoint_mgr_follow_ground_temp.setMinimumSetpointTemperature(UnitConversions.convert(hw_design, 'F', 'C')) + setpoint_mgr_follow_ground_temp.setMinimumSetpointTemperature(UnitConversions.convert(hp_ap.design_hw, 'F', 'C')) setpoint_mgr_follow_ground_temp.setReferenceGroundTemperatureObjectType('Site:GroundTemperature:Deep') setpoint_mgr_follow_ground_temp.addToNode(plant_loop.supplyOutletNode) # Pump - - # Pump power set in hvac_sizing.rb pump = OpenStudio::Model::PumpVariableSpeed.new(model) pump.setName(obj_name + ' pump') pump.setMotorEfficiency(0.85) @@ -817,11 +530,18 @@ def self.apply_ground_to_air_heat_pump(model, runner, weather, heat_pump, pump.setMinimumFlowRate(0) pump.setPumpControlType('Intermittent') pump.addToNode(plant_loop.supplyInletNode) + if heat_pump.cooling_capacity > 1.0 + pump_w = heat_pump.pump_watts_per_ton * UnitConversions.convert(heat_pump.cooling_capacity, 'Btu/hr', 'ton') + else + pump_w = heat_pump.pump_watts_per_ton * UnitConversions.convert(heat_pump.heating_capacity, 'Btu/hr', 'ton') + end + pump_w = [pump_w, 1.0].max # prevent error if zero + pump.setRatedPowerConsumption(pump_w) + pump.setRatedFlowRate(calc_pump_rated_flow_rate(0.75, pump_w, pump.ratedPumpHead)) hvac_map[heat_pump.id] << pump hvac_map[heat_pump.id] += disaggregate_fan_or_pump(model, pump, htg_coil, clg_coil, htg_supp_coil) # Pipes - chiller_bypass_pipe = OpenStudio::Model::PipeAdiabatic.new(model) plant_loop.addSupplyBranchForComponent(chiller_bypass_pipe) coil_bypass_pipe = OpenStudio::Model::PipeAdiabatic.new(model) @@ -834,14 +554,14 @@ def self.apply_ground_to_air_heat_pump(model, runner, weather, heat_pump, demand_outlet_pipe.addToNode(plant_loop.demandOutletNode) # Fan - - fan = create_supply_fan(model, obj_name, 1, heat_pump.fan_watts_per_cfm) + fan_cfm = [htg_cfm, clg_cfm].max + fan = create_supply_fan(model, obj_name, 1, heat_pump.fan_watts_per_cfm, fan_cfm) hvac_map[heat_pump.id] += disaggregate_fan_or_pump(model, fan, htg_coil, clg_coil, htg_supp_coil) # Unitary System - - air_loop_unitary = create_air_loop_unitary_system(model, obj_name, fan, htg_coil, clg_coil, htg_supp_coil, 40.0) + air_loop_unitary = create_air_loop_unitary_system(model, obj_name, fan, htg_coil, clg_coil, htg_supp_coil, htg_cfm, clg_cfm, 40.0) hvac_map[heat_pump.id] << air_loop_unitary + set_pump_power_ems_program(model, pump_w, pump, air_loop_unitary) if heat_pump.is_shared_system # Shared pump power per ANSI/RESNET/ICC 301-2019 Section 4.4.5.1 (pump runs 8760) @@ -865,24 +585,11 @@ def self.apply_ground_to_air_heat_pump(model, runner, weather, heat_pump, end # Air Loop - - air_loop = create_air_loop(model, obj_name, air_loop_unitary, control_zone, sequential_heat_load_frac, sequential_cool_load_frac) + air_loop = create_air_loop(model, obj_name, air_loop_unitary, control_zone, sequential_heat_load_frac, sequential_cool_load_frac, fan_cfm) hvac_map[heat_pump.id] << air_loop - # Store info for HVAC Sizing measure - air_loop_unitary.additionalProperties.setFeature(Constants.SizingInfoHVACSHR, heat_pump.cooling_shr.to_s) - air_loop_unitary.additionalProperties.setFeature(Constants.SizingInfoGSHPCoil_BF_FT_SPEC, coil_bf_ft_spec.join(',')) - air_loop_unitary.additionalProperties.setFeature(Constants.SizingInfoGSHPCoilBF, coil_bf) - air_loop_unitary.additionalProperties.setFeature(Constants.SizingInfoHVACFracHeatLoadServed, heat_pump.fraction_heat_load_served) - air_loop_unitary.additionalProperties.setFeature(Constants.SizingInfoHVACFracCoolLoadServed, heat_pump.fraction_cool_load_served) - air_loop_unitary.additionalProperties.setFeature(Constants.SizingInfoGSHPBoreSpacing, bore_spacing) - air_loop_unitary.additionalProperties.setFeature(Constants.SizingInfoGSHPBoreHoles, bore_holes.to_s) - air_loop_unitary.additionalProperties.setFeature(Constants.SizingInfoGSHPBoreDepth, bore_depth.to_s) - air_loop_unitary.additionalProperties.setFeature(Constants.SizingInfoGSHPBoreConfig, bore_config.to_s) - air_loop_unitary.additionalProperties.setFeature(Constants.SizingInfoGSHPUTubeSpacingType, u_tube_spacing_type) - air_loop_unitary.additionalProperties.setFeature(Constants.SizingInfoHVACCoolType, Constants.ObjectNameGroundSourceHeatPump) - air_loop_unitary.additionalProperties.setFeature(Constants.SizingInfoHVACHeatType, Constants.ObjectNameGroundSourceHeatPump) - air_loop_unitary.additionalProperties.setFeature(Constants.SizingInfoHVACPumpPower, heat_pump.pump_watts_per_ton) + # HVAC Installation Quality + apply_installation_quality(model, heat_pump, heat_pump, air_loop_unitary, htg_coil, clg_coil, control_zone) end def self.apply_water_loop_to_air_heat_pump(model, runner, heat_pump, @@ -898,10 +605,11 @@ def self.apply_water_loop_to_air_heat_pump(model, runner, heat_pump, obj_name = Constants.ObjectNameWaterLoopHeatPump sequential_heat_load_frac = calc_sequential_load_fraction(heat_pump.fraction_heat_load_served, remaining_heat_load_frac) sequential_cool_load_frac = 0.0 - hp_min_temp, supp_max_temp = get_heat_pump_temp_assumptions(heat_pump) - # Cooling Coil + hp_ap = heat_pump.additional_properties + htg_cfm = heat_pump.heating_airflow_cfm + # Cooling Coil (none) clg_coil = nil # Heating Coil (model w/ constant efficiency) @@ -911,35 +619,27 @@ def self.apply_water_loop_to_air_heat_pump(model, runner, heat_pump, htg_coil.setName(obj_name + ' htg coil') htg_coil.setRatedCOP(heat_pump.heating_efficiency_cop) htg_coil.setDefrostTimePeriodFraction(0.00001) # Disable defrost; avoid E+ warning w/ value of zero - htg_coil.setMinimumOutdoorDryBulbTemperatureforCompressorOperation(UnitConversions.convert(hp_min_temp, 'F', 'C')) + htg_coil.setMinimumOutdoorDryBulbTemperatureforCompressorOperation(UnitConversions.convert(hp_ap.hp_min_temp, 'F', 'C')) + htg_coil.setRatedTotalHeatingCapacity(UnitConversions.convert(heat_pump.heating_capacity, 'Btu/hr', 'W')) + htg_coil.setRatedAirFlowRate(htg_cfm) hvac_map[heat_pump.id] << htg_coil # Supplemental Heating Coil - htg_supp_coil = create_supp_heating_coil(model, obj_name, heat_pump) hvac_map[heat_pump.id] << htg_supp_coil # Fan - fan_power_installed = 0.5 # FIXME - fan = create_supply_fan(model, obj_name, 1, fan_power_installed) + fan = create_supply_fan(model, obj_name, 1, fan_power_installed, htg_cfm) hvac_map[heat_pump.id] += disaggregate_fan_or_pump(model, fan, htg_coil, clg_coil, htg_supp_coil) # Unitary System - - air_loop_unitary = create_air_loop_unitary_system(model, obj_name, fan, htg_coil, clg_coil, htg_supp_coil, supp_max_temp) + air_loop_unitary = create_air_loop_unitary_system(model, obj_name, fan, htg_coil, clg_coil, htg_supp_coil, htg_cfm, nil, hp_ap.supp_max_temp) hvac_map[heat_pump.id] << air_loop_unitary # Air Loop - - air_loop = create_air_loop(model, obj_name, air_loop_unitary, control_zone, sequential_heat_load_frac, sequential_cool_load_frac) + air_loop = create_air_loop(model, obj_name, air_loop_unitary, control_zone, sequential_heat_load_frac, sequential_cool_load_frac, htg_cfm) hvac_map[heat_pump.id] << air_loop - - # Store info for HVAC Sizing measure - air_loop_unitary.additionalProperties.setFeature(Constants.SizingInfoHVACFracHeatLoadServed, heat_pump.fraction_heat_load_served) - air_loop_unitary.additionalProperties.setFeature(Constants.SizingInfoHVACFracCoolLoadServed, heat_pump.fraction_cool_load_served) - air_loop_unitary.additionalProperties.setFeature(Constants.SizingInfoHVACCoolType, Constants.ObjectNameWaterLoopHeatPump) - air_loop_unitary.additionalProperties.setFeature(Constants.SizingInfoHVACHeatType, Constants.ObjectNameWaterLoopHeatPump) end def self.apply_boiler(model, runner, heating_system, @@ -965,7 +665,6 @@ def self.apply_boiler(model, runner, heating_system, end # Plant Loop - plant_loop = OpenStudio::Model::PlantLoop.new(model) plant_loop.setName(obj_name + ' hydronic heat loop') plant_loop.setFluidType('Water') @@ -981,8 +680,8 @@ def self.apply_boiler(model, runner, heating_system, loop_sizing.setLoopDesignTemperatureDifference(UnitConversions.convert(20.0, 'R', 'K')) # Pump - pump_w = heating_system.electric_auxiliary_energy / 2.08 + pump_w = [pump_w, 1.0].max # prevent error if zero pump = OpenStudio::Model::PumpVariableSpeed.new(model) pump.setName(obj_name + ' hydronic pump') pump.setRatedPowerConsumption(pump_w) @@ -999,13 +698,9 @@ def self.apply_boiler(model, runner, heating_system, hvac_map[heating_system.id] << pump # Boiler - boiler = OpenStudio::Model::BoilerHotWater.new(model) boiler.setName(obj_name) boiler.setFuelType(EPlus.fuel_type(heating_system.heating_system_fuel)) - if not heating_system.heating_capacity.nil? - boiler.setNominalCapacity(UnitConversions.convert([heating_system.heating_capacity, Constants.small].max, 'Btu/hr', 'W')) # Used by HVACSizing measure - end if is_condensing # Convert Rated Efficiency at 80F and 1.0PLR where the performance curves are derived from to Design condition as input boiler_RatedHWRT = UnitConversions.convert(80.0 - 32.0, 'R', 'K') @@ -1031,6 +726,7 @@ def self.apply_boiler(model, runner, heating_system, boiler.setOptimumPartLoadRatio(1.0) boiler.setWaterOutletUpperTemperatureLimit(99.9) boiler.setParasiticElectricLoad(0) + boiler.setNominalCapacity(UnitConversions.convert(heating_system.heating_capacity, 'Btu/hr', 'W')) plant_loop.addSupplyBranchForComponent(boiler) hvac_map[heating_system.id] << boiler set_pump_power_ems_program(model, pump_w, pump, boiler) @@ -1066,16 +762,21 @@ def self.apply_boiler(model, runner, heating_system, pipe_demand_outlet = OpenStudio::Model::PipeAdiabatic.new(model) pipe_demand_outlet.addToNode(plant_loop.demandOutletNode) - if heating_system.distribution_system.hydronic_and_air_type.to_s == HPXML::HydronicAndAirTypeFanCoil + bb_ua = UnitConversions.convert(heating_system.heating_capacity, 'Btu/hr', 'W') / UnitConversions.convert(UnitConversions.convert(loop_sizing.designLoopExitTemperature, 'C', 'F') - 10.0 - 95.0, 'R', 'K') * 3.0 # W/K + max_water_flow = UnitConversions.convert(heating_system.heating_capacity, 'Btu/hr', 'W') / UnitConversions.convert(20.0, 'R', 'K') / 4.186 / 998.2 / 1000.0 * 2.0 # m^3/s + fan_cfm = 400.0 * UnitConversions.convert(heating_system.heating_capacity, 'Btu/hr', 'ton') # CFM; assumes 400 cfm/ton + + if heating_system.distribution_system.air_type.to_s == HPXML::AirTypeFanCoil # Fan - fan = create_supply_fan(model, obj_name, 1, 0.0) # fan energy included in above pump via Electrix Auxiliar Energy (EAE) + fan = create_supply_fan(model, obj_name, 1, 0.0, fan_cfm) # fan energy included in above pump via Electric Auxiliary Energy (EAE) # Heating Coil htg_coil = OpenStudio::Model::CoilHeatingWater.new(model, model.alwaysOnDiscreteSchedule) + htg_coil.setRatedCapacity(UnitConversions.convert(heating_system.heating_capacity, 'Btu/hr', 'W')) + htg_coil.setUFactorTimesAreaValue(bb_ua) + htg_coil.setMaximumWaterFlowRate(max_water_flow) + htg_coil.setPerformanceInputMethod('NominalCapacity') htg_coil.setName(obj_name + ' htg coil') - if not heating_system.heating_capacity.nil? - htg_coil.setRatedCapacity(UnitConversions.convert([heating_system.heating_capacity, Constants.small].max, 'Btu/hr', 'W')) # Used by HVACSizing measure - end plant_loop.addDemandBranchForComponent(htg_coil) # Cooling Coil (always off) @@ -1099,6 +800,8 @@ def self.apply_boiler(model, runner, heating_system, zone_hvac.setMaximumColdWaterFlowRate(0.0) zone_hvac.setCoolingConvergenceTolerance(0.001) zone_hvac.setMaximumOutdoorAirFlowRate(0.0) + zone_hvac.setMaximumSupplyAirFlowRate(UnitConversions.convert(fan_cfm, 'cfm', 'm^3/s')) + zone_hvac.setMaximumHotWaterFlowRate(max_water_flow) zone_hvac.addToThermalZone(control_zone) hvac_map[heating_system.id] << zone_hvac hvac_map[heating_system.id] += disaggregate_fan_or_pump(model, pump, zone_hvac, nil, nil) @@ -1106,10 +809,11 @@ def self.apply_boiler(model, runner, heating_system, # Heating Coil htg_coil = OpenStudio::Model::CoilHeatingWaterBaseboard.new(model) htg_coil.setName(obj_name + ' htg coil') - if not heating_system.heating_capacity.nil? - htg_coil.setHeatingDesignCapacity(UnitConversions.convert([heating_system.heating_capacity, Constants.small].max, 'Btu/hr', 'W')) # Used by HVACSizing measure - end htg_coil.setConvergenceTolerance(0.001) + htg_coil.setHeatingDesignCapacity(UnitConversions.convert(heating_system.heating_capacity, 'Btu/hr', 'W')) + htg_coil.setUFactorTimesAreaValue(bb_ua) + htg_coil.setMaximumWaterFlowRate(max_water_flow) + htg_coil.setHeatingDesignCapacityMethod('HeatingDesignCapacity') plant_loop.addDemandBranchForComponent(htg_coil) hvac_map[heating_system.id] << htg_coil @@ -1123,10 +827,6 @@ def self.apply_boiler(model, runner, heating_system, control_zone.setSequentialHeatingFractionSchedule(zone_hvac, get_sequential_load_schedule(model, sequential_heat_load_frac)) control_zone.setSequentialCoolingFractionSchedule(zone_hvac, get_sequential_load_schedule(model, 0)) - - # Store info for HVAC Sizing measure - zone_hvac.additionalProperties.setFeature(Constants.SizingInfoHVACFracHeatLoadServed, heating_system.fraction_heat_load_served) - zone_hvac.additionalProperties.setFeature(Constants.SizingInfoHVACHeatType, Constants.ObjectNameBoiler) end def self.apply_electric_baseboard(model, runner, heating_system, @@ -1138,22 +838,15 @@ def self.apply_electric_baseboard(model, runner, heating_system, sequential_heat_load_frac = calc_sequential_load_fraction(heating_system.fraction_heat_load_served, remaining_heat_load_frac) # Baseboard - zone_hvac = OpenStudio::Model::ZoneHVACBaseboardConvectiveElectric.new(model) zone_hvac.setName(obj_name) - if not heating_system.heating_capacity.nil? - zone_hvac.setNominalCapacity(UnitConversions.convert([heating_system.heating_capacity, Constants.small].max, 'Btu/hr', 'W')) # Used by HVACSizing measure - end zone_hvac.setEfficiency(heating_system.heating_efficiency_percent) + zone_hvac.setNominalCapacity(UnitConversions.convert(heating_system.heating_capacity, 'Btu/hr', 'W')) zone_hvac.addToThermalZone(control_zone) hvac_map[heating_system.id] << zone_hvac control_zone.setSequentialHeatingFractionSchedule(zone_hvac, get_sequential_load_schedule(model, sequential_heat_load_frac)) control_zone.setSequentialCoolingFractionSchedule(zone_hvac, get_sequential_load_schedule(model, 0)) - - # Store info for HVAC Sizing measure - zone_hvac.additionalProperties.setFeature(Constants.SizingInfoHVACFracHeatLoadServed, heating_system.fraction_heat_load_served) - zone_hvac.additionalProperties.setFeature(Constants.SizingInfoHVACHeatType, Constants.ObjectNameElectricBaseboard) end def self.apply_unit_heater(model, runner, heating_system, @@ -1163,10 +856,10 @@ def self.apply_unit_heater(model, runner, heating_system, hvac_map[heating_system.id] = [] obj_name = Constants.ObjectNameUnitHeater sequential_heat_load_frac = calc_sequential_load_fraction(heating_system.fraction_heat_load_served, remaining_heat_load_frac) - airflow_cfm_per_ton = 350.0 - # Heating Coil + htg_ap = heating_system.additional_properties + # Heating Coil efficiency = heating_system.heating_efficiency_afue efficiency = heating_system.heating_efficiency_percent if efficiency.nil? if heating_system.heating_system_fuel == HPXML::FuelTypeElectricity @@ -1179,39 +872,30 @@ def self.apply_unit_heater(model, runner, heating_system, htg_coil.setParasiticGasLoad(0) htg_coil.setFuelType(EPlus.fuel_type(heating_system.heating_system_fuel)) end + htg_coil.setNominalCapacity(UnitConversions.convert(heating_system.heating_capacity, 'Btu/hr', 'W')) htg_coil.setName(obj_name + ' htg coil') - if not heating_system.heating_capacity.nil? - htg_coil.setNominalCapacity(UnitConversions.convert([heating_system.heating_capacity, Constants.small].max, 'Btu/hr', 'W')) # Used by HVACSizing measure - end hvac_map[heating_system.id] << htg_coil # Fan - - fan = create_supply_fan(model, obj_name, 1, 0.0) # Fan power assigned in hvac_sizing.rb + htg_cfm = heating_system.heating_airflow_cfm + fan_watts_per_cfm = heating_system.fan_watts / htg_cfm + fan = create_supply_fan(model, obj_name, 1, fan_watts_per_cfm, htg_cfm) hvac_map[heating_system.id] += disaggregate_fan_or_pump(model, fan, htg_coil, nil, nil) # Unitary System - - unitary_system = create_air_loop_unitary_system(model, obj_name, fan, htg_coil, nil, nil) + unitary_system = create_air_loop_unitary_system(model, obj_name, fan, htg_coil, nil, nil, htg_cfm, nil) unitary_system.setControllingZoneorThermostatLocation(control_zone) unitary_system.addToThermalZone(control_zone) hvac_map[heating_system.id] << unitary_system control_zone.setSequentialHeatingFractionSchedule(unitary_system, get_sequential_load_schedule(model, sequential_heat_load_frac)) control_zone.setSequentialCoolingFractionSchedule(unitary_system, get_sequential_load_schedule(model, 0)) - - # Store info for HVAC Sizing measure - unitary_system.additionalProperties.setFeature(Constants.SizingInfoHVACRatedCFMperTonHeating, [airflow_cfm_per_ton].join(',')) - unitary_system.additionalProperties.setFeature(Constants.SizingInfoHVACFracHeatLoadServed, heating_system.fraction_heat_load_served) - unitary_system.additionalProperties.setFeature(Constants.SizingInfoHVACHeatType, Constants.ObjectNameUnitHeater) - unitary_system.additionalProperties.setFeature(Constants.SizingInfoHVACFanWatts, heating_system.fan_watts) end def self.apply_ideal_air_loads(model, runner, obj_name, sequential_cool_load_frac, sequential_heat_load_frac, control_zone) # Ideal Air System - ideal_air = OpenStudio::Model::ZoneHVACIdealLoadsAirSystem.new(model) ideal_air.setName(obj_name) ideal_air.setMaximumHeatingSupplyAirTemperature(50) @@ -1236,62 +920,70 @@ def self.apply_ideal_air_loads(model, runner, obj_name, sequential_cool_load_fra control_zone.setSequentialCoolingFractionSchedule(ideal_air, get_sequential_load_schedule(model, sequential_cool_load_frac)) control_zone.setSequentialHeatingFractionSchedule(ideal_air, get_sequential_load_schedule(model, sequential_heat_load_frac)) - - # Store info for HVAC Sizing measure - ideal_air.additionalProperties.setFeature(Constants.SizingInfoHVACCoolType, Constants.ObjectNameIdealAirSystem) - ideal_air.additionalProperties.setFeature(Constants.SizingInfoHVACHeatType, Constants.ObjectNameIdealAirSystem) end - def self.apply_dehumidifier(model, runner, dehumidifier, living_space, hvac_map) - hvac_map[dehumidifier.id] = [] - - water_removal_rate = dehumidifier.capacity - energy_factor = dehumidifier.energy_factor + def self.apply_dehumidifiers(model, runner, dehumidifiers, living_space, hvac_map) + dehumidifier_id = dehumidifiers[0].id # Syncs with SimulationOutputReport, which only looks at first dehumidifier ID + hvac_map[dehumidifier_id] = [] - control_zone = living_space.thermalZone.get - obj_name = Constants.ObjectNameDehumidifier - - avg_rh_setpoint = dehumidifier.rh_setpoint * 100.0 # (EnergyPlus uses 60 for 60% RH) - relative_humidity_setpoint_sch = OpenStudio::Model::ScheduleConstant.new(model) - relative_humidity_setpoint_sch.setName(Constants.ObjectNameRelativeHumiditySetpoint) - relative_humidity_setpoint_sch.setValue(avg_rh_setpoint) + if dehumidifiers.map { |d| d.rh_setpoint }.uniq.size > 1 + fail 'All dehumidifiers must have the same setpoint but multiple setpoints were specified.' + end # Dehumidifier coefficients # Generic model coefficients from Winkler, Christensen, and Tomerlin (2011) w_coeff = [-1.162525707, 0.02271469, -0.000113208, 0.021110538, -0.0000693034, 0.000378843] ef_coeff = [-1.902154518, 0.063466565, -0.000622839, 0.039540407, -0.000125637, -0.000176722] pl_coeff = [0.90, 0.10, 0.0] - water_removal_curve = create_curve_biquadratic(model, w_coeff, 'DXDH-WaterRemove-Cap-fT', -100, 100, -100, 100) - energy_factor_curve = create_curve_biquadratic(model, ef_coeff, 'DXDH-EnergyFactor-fT', -100, 100, -100, 100) - part_load_frac_curve = create_curve_quadratic(model, pl_coeff, 'DXDH-PLF-fPLR', 0, 1, 0.7, 1) - if energy_factor.nil? + + dehumidifiers.each do |d| + next unless d.energy_factor.nil? + # shift inputs tested under IEF test conditions to those under EF test conditions with performance curves - energy_factor, water_removal_rate = apply_dehumidifier_ief_to_ef_inputs(dehumidifier.type, w_coeff, ef_coeff, dehumidifier.integrated_energy_factor, water_removal_rate) + d.energy_factor, d.capacity = apply_dehumidifier_ief_to_ef_inputs(d.type, w_coeff, ef_coeff, d.integrated_energy_factor, d.capacity) end + total_capacity = dehumidifiers.map { |d| d.capacity }.sum + avg_energy_factor = dehumidifiers.map { |d| d.energy_factor * d.capacity }.sum / total_capacity + total_fraction_served = dehumidifiers.map { |d| d.fraction_served }.sum + + control_zone = living_space.thermalZone.get + obj_name = Constants.ObjectNameDehumidifier + + rh_setpoint = dehumidifiers[0].rh_setpoint * 100.0 # (EnergyPlus uses 60 for 60% RH) + relative_humidity_setpoint_sch = OpenStudio::Model::ScheduleConstant.new(model) + relative_humidity_setpoint_sch.setName(Constants.ObjectNameRelativeHumiditySetpoint) + relative_humidity_setpoint_sch.setValue(rh_setpoint) + + capacity_curve = create_curve_biquadratic(model, w_coeff, 'DXDH-CAP-fT', -100, 100, -100, 100) + energy_factor_curve = create_curve_biquadratic(model, ef_coeff, 'DXDH-EF-fT', -100, 100, -100, 100) + part_load_frac_curve = create_curve_quadratic(model, pl_coeff, 'DXDH-PLF-fPLR', 0, 1, 0.7, 1) + # Calculate air flow rate by assuming 2.75 cfm/pint/day (based on experimental test data) - air_flow_rate = 2.75 * water_removal_rate + air_flow_rate = 2.75 * total_capacity + # Humidity Setpoint humidistat = OpenStudio::Model::ZoneControlHumidistat.new(model) humidistat.setName(obj_name + ' humidistat') humidistat.setHumidifyingRelativeHumiditySetpointSchedule(relative_humidity_setpoint_sch) humidistat.setDehumidifyingRelativeHumiditySetpointSchedule(relative_humidity_setpoint_sch) control_zone.setZoneControlHumidistat(humidistat) - zone_hvac = OpenStudio::Model::ZoneHVACDehumidifierDX.new(model, water_removal_curve, energy_factor_curve, part_load_frac_curve) + # Dehumidifier + zone_hvac = OpenStudio::Model::ZoneHVACDehumidifierDX.new(model, capacity_curve, energy_factor_curve, part_load_frac_curve) zone_hvac.setName(obj_name) zone_hvac.setAvailabilitySchedule(model.alwaysOnDiscreteSchedule) - zone_hvac.setRatedWaterRemoval(UnitConversions.convert(water_removal_rate, 'pint', 'L')) - zone_hvac.setRatedEnergyFactor(energy_factor / dehumidifier.fraction_served) + zone_hvac.setRatedWaterRemoval(UnitConversions.convert(total_capacity, 'pint', 'L')) + zone_hvac.setRatedEnergyFactor(avg_energy_factor / total_fraction_served) zone_hvac.setRatedAirFlowRate(UnitConversions.convert(air_flow_rate, 'cfm', 'm^3/s')) zone_hvac.setMinimumDryBulbTemperatureforDehumidifierOperation(10) zone_hvac.setMaximumDryBulbTemperatureforDehumidifierOperation(40) zone_hvac.addToThermalZone(control_zone) - hvac_map[dehumidifier.id] << zone_hvac - if dehumidifier.fraction_served < 1.0 - adjust_dehumidifier_load_EMS(dehumidifier.fraction_served, zone_hvac, model, living_space) + hvac_map[dehumidifier_id] << zone_hvac + if total_fraction_served < 1.0 + adjust_dehumidifier_load_EMS(total_fraction_served, zone_hvac, model, living_space) end end @@ -1393,7 +1085,7 @@ def self.apply_setpoints(model, runner, weather, hvac_control, living_zone, has_ if has_ceiling_fan clg_ceiling_fan_offset = hvac_control.ceiling_fan_cooling_setpoint_temp_offset if not clg_ceiling_fan_offset.nil? - HVAC.get_default_ceiling_fan_months(weather).each_with_index do |operation, m| + get_default_ceiling_fan_months(weather).each_with_index do |operation, m| next unless operation == 1 clg_weekday_setpoints[m] = [clg_weekday_setpoints[m], Array.new(24, clg_ceiling_fan_offset)].transpose.map { |i| i.reduce(:+) } @@ -1491,58 +1183,219 @@ def self.get_default_cooling_setpoint(control_type) return clg_sp, clg_setup_sp, clg_setup_hrs_per_week, clg_setup_start_hr end - def self.get_hp_clg_curves(num_speeds, heat_pump, fan_power_rated, cool_c_d, runner) - if num_speeds == 1 - cool_rated_airflow_rate = 394.2 # cfm/ton - cool_capacity_ratios = [1.0] - cool_fan_speed_ratios = [1.0] - cool_shrs = [heat_pump.cooling_shr] - cool_cap_ft_spec = [[3.68637657, -0.098352478, 0.000956357, 0.005838141, -0.0000127, -0.000131702]] - cool_eir_ft_spec = [[-3.437356399, 0.136656369, -0.001049231, -0.0079378, 0.000185435, -0.0001441]] - cool_cap_fflow_spec = [[0.718664047, 0.41797409, -0.136638137]] - cool_eir_fflow_spec = [[1.143487507, -0.13943972, -0.004047787]] - cool_eers = [calc_eer_cooling_1speed(heat_pump.cooling_efficiency_seer, fan_power_rated, cool_eir_ft_spec)] - elsif num_speeds == 2 - cool_rated_airflow_rate = 344.1 # cfm/ton - cool_capacity_ratios = [0.72, 1.0] - cool_fan_speed_ratios = [0.86, 1.0] - cool_shrs = [heat_pump.cooling_shr - 0.014, heat_pump.cooling_shr] # TODO: is the following assumption correct (revisit Dylan's data?)? OR should value from HPXML be used for both stages? - cool_cap_ft_spec = [[3.998418659, -0.108728222, 0.001056818, 0.007512314, -0.0000139, -0.000164716], - [3.466810106, -0.091476056, 0.000901205, 0.004163355, -0.00000919, -0.000110829]] - cool_eir_ft_spec = [[-4.282911381, 0.181023691, -0.001357391, -0.026310378, 0.000333282, -0.000197405], - [-3.557757517, 0.112737397, -0.000731381, 0.013184877, 0.000132645, -0.000338716]] - cool_cap_fflow_spec = [[0.655239515, 0.511655216, -0.166894731], - [0.618281092, 0.569060264, -0.187341356]] - cool_eir_fflow_spec = [[1.639108268, -0.998953996, 0.359845728], - [1.570774717, -0.914152018, 0.343377302]] - cool_eers = calc_eers_cooling_2speed(runner, heat_pump.cooling_efficiency_seer, cool_c_d, cool_capacity_ratios, cool_fan_speed_ratios, fan_power_rated, cool_eir_ft_spec, cool_cap_ft_spec, true) - elsif num_speeds == 4 - cool_rated_airflow_rate = 411.0 # cfm/ton - cool_capacity_ratios = [0.36, 0.51, 0.67, 1.0] - cool_fan_speed_ratios = [0.42, 0.54, 0.68, 1.0] - cool_shrs = [1.115, 1.026, 1.013, 1.0].map { |mult| heat_pump.cooling_shr * mult } - # The following coefficients were generated using NREL experimental performance mapping for the Carrier unit - cool_cap_coeff_perf_map = [[1.6516044444444447, 0.0698916049382716, -0.0005546296296296296, -0.08870160493827162, 0.0004135802469135802, 0.00029077160493827157], - [-6.84948049382716, 0.26946, -0.0019413580246913577, -0.03281469135802469, 0.00015694444444444442, 3.32716049382716e-05], - [-4.53543086419753, 0.15358543209876546, -0.0009345679012345678, 0.002666913580246914, -7.993827160493826e-06, -0.00011617283950617283], - [-3.500948395061729, 0.11738987654320988, -0.0006580246913580248, 0.007003148148148148, -2.8518518518518517e-05, -0.0001284259259259259], - [1.8769221728395058, -0.04768641975308643, 0.0006885802469135801, 0.006643395061728395, 1.4209876543209876e-05, -0.00024043209876543206]] - cool_cap_ft_spec = cool_cap_coeff_perf_map.select { |i| [0, 1, 2, 4].include? cool_cap_coeff_perf_map.index(i) } - cool_cap_ft_spec_3 = cool_cap_coeff_perf_map.select { |i| [0, 1, 4].include? cool_cap_coeff_perf_map.index(i) } - cool_eir_coeff_perf_map = [[2.896298765432099, -0.12487654320987657, 0.0012148148148148148, 0.04492037037037037, 8.734567901234567e-05, -0.0006348765432098764], - [6.428076543209876, -0.20913209876543212, 0.0018521604938271604, 0.024392592592592594, 0.00019691358024691356, -0.0006012345679012346], - [5.136356049382716, -0.1591530864197531, 0.0014151234567901232, 0.018665555555555557, 0.00020398148148148147, -0.0005407407407407407], - [1.3823471604938273, -0.02875123456790123, 0.00038302469135802463, 0.006344814814814816, 0.00024836419753086417, -0.00047469135802469134], - [-1.0411735802469133, 0.055261604938271605, -0.0004404320987654321, 0.0002154938271604939, 0.00017484567901234564, -0.0002017901234567901]] - cool_eir_ft_spec = cool_eir_coeff_perf_map.select { |i| [0, 1, 2, 4].include? cool_eir_coeff_perf_map.index(i) } - cool_eir_ft_spec_3 = cool_eir_coeff_perf_map.select { |i| [0, 1, 4].include? cool_eir_coeff_perf_map.index(i) } - cool_eir_fflow_spec = [[1, 0, 0]] * 4 - cool_cap_fflow_spec = [[1, 0, 0]] * 4 - cap_ratio_seer_3 = cool_capacity_ratios.select { |i| [0, 1, 3].include? cool_capacity_ratios.index(i) } - fan_speed_seer_3 = cool_fan_speed_ratios.select { |i| [0, 1, 3].include? cool_fan_speed_ratios.index(i) } - cool_eers = calc_eers_cooling_4speed(runner, heat_pump.cooling_efficiency_seer, cool_c_d, cap_ratio_seer_3, fan_speed_seer_3, fan_power_rated, cool_eir_ft_spec_3, cool_cap_ft_spec_3) - end - return cool_rated_airflow_rate, cool_fan_speed_ratios, cool_capacity_ratios, cool_shrs, cool_eers, cool_cap_ft_spec, cool_eir_ft_spec, cool_cap_fflow_spec, cool_eir_fflow_spec + def self.set_cool_curves_ashp(heat_pump) + hp_ap = heat_pump.additional_properties + if hp_ap.num_speeds == 1 + # From "Improved Modeling of Residential Air Conditioners and Heat Pumps for Energy Calculations", Cutler at al + # https://www.nrel.gov/docs/fy13osti/56354.pdf + hp_ap.cool_rated_airflow_rate = 394.2 # cfm/ton of rated capacity + hp_ap.cool_capacity_ratios = [1.0] + hp_ap.cool_fan_speed_ratios = [1.0] + hp_ap.cool_rated_shrs_net = [heat_pump.cooling_shr] + hp_ap.cool_cap_ft_spec = [[3.68637657, -0.098352478, 0.000956357, 0.005838141, -0.0000127, -0.000131702]] + hp_ap.cool_eir_ft_spec = [[-3.437356399, 0.136656369, -0.001049231, -0.0079378, 0.000185435, -0.0001441]] + # Single stage systems have PSC or constant torque ECM blowers, so the airflow rate is affected by the static pressure losses. + hp_ap.cool_cap_fflow_spec = [[0.718664047, 0.41797409, -0.136638137]] + hp_ap.cool_eir_fflow_spec = [[1.143487507, -0.13943972, -0.004047787]] + hp_ap.cool_eers = [calc_eer_cooling_1speed(heat_pump.cooling_efficiency_seer, hp_ap.cool_c_d, hp_ap.fan_power_rated, hp_ap.cool_eir_ft_spec)] + elsif hp_ap.num_speeds == 2 + # From "Improved Modeling of Residential Air Conditioners and Heat Pumps for Energy Calculations", Cutler at al + # https://www.nrel.gov/docs/fy13osti/56354.pdf + hp_ap.cool_rated_airflow_rate = 344.1 # cfm/ton + hp_ap.cool_capacity_ratios = [0.72, 1.0] + hp_ap.cool_fan_speed_ratios = [0.86, 1.0] + hp_ap.cool_rated_shrs_net = [heat_pump.cooling_shr - 0.014, heat_pump.cooling_shr] # TODO: is the following assumption correct (revisit Dylan's data?)? OR should value from HPXML be used for both stages? + hp_ap.cool_cap_ft_spec = [[3.998418659, -0.108728222, 0.001056818, 0.007512314, -0.0000139, -0.000164716], + [3.466810106, -0.091476056, 0.000901205, 0.004163355, -0.00000919, -0.000110829]] + hp_ap.cool_eir_ft_spec = [[-4.282911381, 0.181023691, -0.001357391, -0.026310378, 0.000333282, -0.000197405], + [-3.557757517, 0.112737397, -0.000731381, 0.013184877, 0.000132645, -0.000338716]] + # Most two stage systems have PSC or constant torque ECM blowers, so the airflow rate is affected by the static pressure losses. + hp_ap.cool_cap_fflow_spec = [[0.655239515, 0.511655216, -0.166894731], + [0.618281092, 0.569060264, -0.187341356]] + hp_ap.cool_eir_fflow_spec = [[1.639108268, -0.998953996, 0.359845728], + [1.570774717, -0.914152018, 0.343377302]] + hp_ap.cool_eers = calc_eers_cooling_2speed(heat_pump.cooling_efficiency_seer, hp_ap.cool_c_d, hp_ap.cool_capacity_ratios, hp_ap.cool_fan_speed_ratios, hp_ap.fan_power_rated, hp_ap.cool_eir_ft_spec, hp_ap.cool_cap_ft_spec) + elsif hp_ap.num_speeds == 4 + # From Carrier heat pump lab testing + hp_ap.cool_rated_airflow_rate = 411.0 # cfm/ton + hp_ap.cool_capacity_ratios = [0.36, 0.51, 0.67, 1.0] + hp_ap.cool_fan_speed_ratios = [0.42, 0.54, 0.68, 1.0] + hp_ap.cool_rated_shrs_net = [1.115, 1.026, 1.013, 1.0].map { |mult| heat_pump.cooling_shr * mult } + hp_ap.cool_cap_coeff_perf_map = [[1.6516044444444447, 0.0698916049382716, -0.0005546296296296296, -0.08870160493827162, 0.0004135802469135802, 0.00029077160493827157], + [-6.84948049382716, 0.26946, -0.0019413580246913577, -0.03281469135802469, 0.00015694444444444442, 3.32716049382716e-05], + [-4.53543086419753, 0.15358543209876546, -0.0009345679012345678, 0.002666913580246914, -7.993827160493826e-06, -0.00011617283950617283], + [-3.500948395061729, 0.11738987654320988, -0.0006580246913580248, 0.007003148148148148, -2.8518518518518517e-05, -0.0001284259259259259], + [1.8769221728395058, -0.04768641975308643, 0.0006885802469135801, 0.006643395061728395, 1.4209876543209876e-05, -0.00024043209876543206]] + hp_ap.cool_cap_ft_spec = hp_ap.cool_cap_coeff_perf_map.select { |i| [0, 1, 2, 4].include? hp_ap.cool_cap_coeff_perf_map.index(i) } + hp_ap.cool_cap_ft_spec_3 = hp_ap.cool_cap_coeff_perf_map.select { |i| [0, 1, 4].include? hp_ap.cool_cap_coeff_perf_map.index(i) } + hp_ap.cool_eir_coeff_perf_map = [[2.896298765432099, -0.12487654320987657, 0.0012148148148148148, 0.04492037037037037, 8.734567901234567e-05, -0.0006348765432098764], + [6.428076543209876, -0.20913209876543212, 0.0018521604938271604, 0.024392592592592594, 0.00019691358024691356, -0.0006012345679012346], + [5.136356049382716, -0.1591530864197531, 0.0014151234567901232, 0.018665555555555557, 0.00020398148148148147, -0.0005407407407407407], + [1.3823471604938273, -0.02875123456790123, 0.00038302469135802463, 0.006344814814814816, 0.00024836419753086417, -0.00047469135802469134], + [-1.0411735802469133, 0.055261604938271605, -0.0004404320987654321, 0.0002154938271604939, 0.00017484567901234564, -0.0002017901234567901]] + hp_ap.cool_eir_ft_spec = hp_ap.cool_eir_coeff_perf_map.select { |i| [0, 1, 2, 4].include? hp_ap.cool_eir_coeff_perf_map.index(i) } + hp_ap.cool_eir_ft_spec_3 = hp_ap.cool_eir_coeff_perf_map.select { |i| [0, 1, 4].include? hp_ap.cool_eir_coeff_perf_map.index(i) } + # Variable speed systems have constant flow ECM blowers, so the air handler can always achieve the design airflow rate by sacrificing blower power. + # So we assume that there is only one corresponding airflow rate for each compressor speed. + hp_ap.cool_eir_fflow_spec = [[1, 0, 0]] * 4 + hp_ap.cool_cap_fflow_spec = [[1, 0, 0]] * 4 + hp_ap.cap_ratio_seer_3 = hp_ap.cool_capacity_ratios.select { |i| [0, 1, 3].include? hp_ap.cool_capacity_ratios.index(i) } + hp_ap.fan_speed_seer_3 = hp_ap.cool_fan_speed_ratios.select { |i| [0, 1, 3].include? hp_ap.cool_fan_speed_ratios.index(i) } + hp_ap.cool_eers = calc_eers_cooling_4speed(heat_pump.cooling_efficiency_seer, hp_ap.cool_c_d, hp_ap.cap_ratio_seer_3, hp_ap.fan_speed_seer_3, hp_ap.fan_power_rated, hp_ap.cool_eir_ft_spec_3, hp_ap.cool_cap_ft_spec_3) + end + end + + def self.set_ashp_htg_curves(heat_pump) + hp_ap = heat_pump.additional_properties + if hp_ap.num_speeds == 1 + # From "Improved Modeling of Residential Air Conditioners and Heat Pumps for Energy Calculations", Cutler at al + # https://www.nrel.gov/docs/fy13osti/56354.pdf + hp_ap.heat_rated_airflow_rate = 384.1 # cfm/ton + hp_ap.heat_capacity_ratios = [1.0] + hp_ap.heat_fan_speed_ratios = [1.0] + hp_ap.heat_eir_ft_spec = [[0.718398423, 0.003498178, 0.000142202, -0.005724331, 0.00014085, -0.000215321]] + hp_ap.heat_cap_fflow_spec = [[0.694045465, 0.474207981, -0.168253446]] + hp_ap.heat_eir_fflow_spec = [[2.185418751, -1.942827919, 0.757409168]] + if heat_pump.heating_capacity_17F.nil? + hp_ap.heat_cap_ft_spec = [[0.566333415, -0.000744164, -0.0000103, 0.009414634, 0.0000506, -0.00000675]] + else + hp_ap.heat_cap_ft_spec = calc_heat_cap_ft_spec_using_capacity_17F(heat_pump) + end + hp_ap.heat_cops = [calc_cop_heating_1speed(heat_pump.heating_efficiency_hspf, hp_ap.heat_c_d, hp_ap.fan_power_rated, hp_ap.heat_eir_ft_spec, hp_ap.heat_cap_ft_spec)] + elsif hp_ap.num_speeds == 2 + # From "Improved Modeling of Residential Air Conditioners and Heat Pumps for Energy Calculations", Cutler at al + # https://www.nrel.gov/docs/fy13osti/56354.pdf + hp_ap.heat_rated_airflow_rate = 352.2 # cfm/ton + hp_ap.heat_capacity_ratios = [0.72, 1.0] + hp_ap.heat_fan_speed_ratios = [0.8, 1.0] + hp_ap.heat_eir_ft_spec = [[0.36338171, 0.013523725, 0.000258872, -0.009450269, 0.000439519, -0.000653723], + [0.981100941, -0.005158493, 0.000243416, -0.005274352, 0.000230742, -0.000336954]] + hp_ap.heat_cap_fflow_spec = [[0.741466907, 0.378645444, -0.119754733], + [0.76634609, 0.32840943, -0.094701495]] + hp_ap.heat_eir_fflow_spec = [[2.153618211, -1.737190609, 0.584269478], + [2.001041353, -1.58869128, 0.587593517]] + if heat_pump.heating_capacity_17F.nil? + hp_ap.heat_cap_ft_spec = [[0.335690634, 0.002405123, -0.0000464, 0.013498735, 0.0000499, -0.00000725], + [0.306358843, 0.005376987, -0.0000579, 0.011645092, 0.0000591, -0.0000203]] + else + hp_ap.heat_cap_ft_spec = calc_heat_cap_ft_spec_using_capacity_17F(heat_pump) + end + hp_ap.heat_cops = calc_cops_heating_2speed(heat_pump.heating_efficiency_hspf, hp_ap.heat_c_d, hp_ap.heat_capacity_ratios, hp_ap.heat_fan_speed_ratios, hp_ap.fan_power_rated, hp_ap.heat_eir_ft_spec, hp_ap.heat_cap_ft_spec) + elsif hp_ap.num_speeds == 4 + # From Carrier heat pump lab testing + hp_ap.heat_rated_airflow_rate = 296.9 # cfm/ton + hp_ap.heat_capacity_ratios = [0.33, 0.56, 1.0, 1.17] + hp_ap.heat_fan_speed_ratios = [0.63, 0.76, 1.0, 1.19] + hp_ap.heat_eir_ft_spec = [[0.708311527, 0.020732093, 0.000391479, -0.037640031, 0.000979937, -0.001079042], + [0.025480155, 0.020169585, 0.000121341, -0.004429789, 0.000166472, -0.00036447], + [0.379003189, 0.014195012, 0.0000821046, -0.008894061, 0.000151519, -0.000210299], + [0.690404655, 0.00616619, 0.000137643, -0.009350199, 0.000153427, -0.000213258]] + hp_ap.heat_cap_fflow_spec = [[1, 0, 0]] * 4 + hp_ap.heat_eir_fflow_spec = [[1, 0, 0]] * 4 + if heat_pump.heating_capacity_17F.nil? + hp_ap.heat_cap_ft_spec = [[0.304192655, -0.003972566, 0.0000196432, 0.024471251, -0.000000774126, -0.0000841323], + [0.496381324, -0.00144792, 0.0, 0.016020855, 0.0000203447, -0.0000584118], + [0.697171186, -0.006189599, 0.0000337077, 0.014291981, 0.0000105633, -0.0000387956], + [0.555513805, -0.001337363, -0.00000265117, 0.014328826, 0.0000163849, -0.0000480711]] + else + hp_ap.heat_cap_ft_spec = calc_heat_cap_ft_spec_using_capacity_17F(heat_pump) + end + hp_ap.heat_cops = calc_cops_heating_4speed(heat_pump.heating_efficiency_hspf, hp_ap.heat_c_d, hp_ap.heat_capacity_ratios, hp_ap.heat_fan_speed_ratios, hp_ap.fan_power_rated, hp_ap.heat_eir_ft_spec, hp_ap.heat_cap_ft_spec) + end + end + + def self.set_cool_curves_room_ac(cooling_system) + clg_ap = cooling_system.additional_properties + + # From Frigidaire 10.7 EER unit in Winkler et. al. Lab Testing of Window ACs (2013) + clg_ap.cool_cap_ft_spec = [[0.43945980246913574, -0.0008922469135802481, 0.00013984567901234569, 0.0038489259259259253, -5.6327160493827156e-05, 2.041358024691358e-05]] + clg_ap.cool_eir_ft_spec = [[6.310506172839506, -0.17705185185185185, 0.0014645061728395061, 0.012571604938271608, 0.0001493827160493827, -0.00040308641975308644]] + clg_ap.cool_cap_fflow_spec = [[0.887, 0.1128, 0]] + clg_ap.cool_eir_fflow_spec = [[1.763, -0.6081, 0]] + end + + def self.set_cool_curves_mshp(heat_pump, num_speeds) + hp_ap = heat_pump.additional_properties + + # From Daikin mini-split lab testing + hp_ap.cool_cap_ft_spec = [[0.7531983499655835, 0.003618193903031667, 0.0, 0.006574385031351544, -6.87181191015432e-05, 0.0]] * num_speeds + hp_ap.cool_eir_ft_spec = [[-0.06376924779982301, -0.0013360593470367282, 1.413060577993827e-05, 0.019433076486584752, -4.91395947154321e-05, -4.909341249475308e-05]] * num_speeds + hp_ap.cool_cap_fflow_spec = [[1, 0, 0]] * num_speeds + hp_ap.cool_eir_fflow_spec = [[1, 0, 0]] * num_speeds + + hp_ap.cool_min_capacity_ratio = 0.4 # frac + hp_ap.cool_max_capacity_ratio = 1.2 # frac + hp_ap.cool_min_cfm_per_ton = 200.0 / hp_ap.cool_min_capacity_ratio # Convert cfm/ton of nominal rated capacity to cfm/ton of min capacity + hp_ap.cool_max_cfm_per_ton = 425.0 / hp_ap.cool_max_capacity_ratio # Convert cfm/ton of nominal rated capacity to cfm/ton of max capacity + end + + def self.set_heat_curves_mshp(heat_pump, num_speeds) + hp_ap = heat_pump.additional_properties + + # From Daikin mini-split lab testing + hp_ap.heat_eir_ft_spec = [[0.9999941697687026, 0.004684593830254383, 5.901286675833333e-05, -0.0028624467783091973, 1.3041120194135802e-05, -0.00016172918478765433]] * num_speeds + hp_ap.heat_cap_fflow_spec = [[1, 0, 0]] * num_speeds + hp_ap.heat_eir_fflow_spec = [[1, 0, 0]] * num_speeds + + # Derive coefficients from user input for capacity retention at outdoor drybulb temperature X [C]. + if heat_pump.heating_capacity_17F.nil? || ((heat_pump.heating_capacity_17F == 0) && (heat_pump.heating_capacity == 0)) + cap_retention_frac = 0.25 # frac + cap_retention_temp = -5.0 # deg-F + else + cap_retention_frac = heat_pump.heating_capacity_17F / heat_pump.heating_capacity + cap_retention_temp = 17.0 # deg-F + end + + # Biquadratic: capacity multiplier = a + b*IAT + c*IAT^2 + d*OAT + e*OAT^2 + f*IAT*OAT + x_A = UnitConversions.convert(cap_retention_temp, 'F', 'C') + y_A = cap_retention_frac + x_B = UnitConversions.convert(47.0, 'F', 'C') # 47F is the rating point + y_B = 1.0 # Maximum capacity factor is 1 at the rating point, by definition (this is maximum capacity, not nominal capacity) + oat_slope = (y_B - y_A) / (x_B - x_A) + oat_intercept = y_A - (x_A * oat_slope) + + # Coefficients for the indoor temperature relationship are retained from the generic curve (Daikin lab data). + iat_slope = -0.010386676170938 + iat_intercept = 0.219274275 + a = oat_intercept + iat_intercept + b = iat_slope + c = 0 + d = oat_slope + e = 0 + f = 0 + hp_ap.heat_cap_ft_spec = [HVAC.convert_curve_biquadratic([a, b, c, d, e, f], false)] * num_speeds + + hp_ap.heat_min_capacity_ratio = 0.3 # frac + hp_ap.heat_max_capacity_ratio = 1.2 # frac + hp_ap.heat_min_cfm_per_ton = 200.0 / hp_ap.heat_min_capacity_ratio # Convert cfm/ton of nominal rated capacity to cfm/ton of min capacity + hp_ap.heat_max_cfm_per_ton = 400.0 / hp_ap.heat_max_capacity_ratio # Convert cfm/ton of nominal rated capacity to cfm/ton of min capacity + end + + def self.set_curves_gshp(heat_pump) + hp_ap = heat_pump.additional_properties + + # E+ equation fit coil coefficients generated following approach in Tang's thesis: + # See Appendix B of https://hvac.okstate.edu/sites/default/files/pubs/theses/MS/27-Tang_Thesis_05.pdf + # Coefficients generated by catalog data: https://files.climatemaster.com/Genesis-GS-Series-Product-Catalog.pdf, p180 + # Data point taken as rated condition: + # EWT: 80F EAT:80/67F, AFR: 1200cfm, WFR: 4.5gpm + hp_ap.cool_cap_ft_spec = [[-1.57177156131221, 4.60343712716819, -2.15976622898044, 0.0590964827802021, 0.0194696644460315]] + hp_ap.cool_power_ft_spec = [[-4.42471086639888, 0.658017281046304, 4.37331801294626, 0.174096187531254, -0.0526514790164159]] + hp_ap.cool_sh_ft_spec = [[4.54172823345154, 14.7653304889134, -18.3541272090485, -0.74401391092935, 0.545560799548833, 0.0182620032235494]] + hp_ap.cool_rated_shrs_gross = [heat_pump.cooling_shr] + # FUTURE: Reconcile these fan/pump adjustments with ANSI/RESNET/ICC 301-2019 Section 4.4.5 + fan_adjust_kw = UnitConversions.convert(400.0, 'Btu/hr', 'ton') * UnitConversions.convert(1.0, 'cfm', 'm^3/s') * 1000.0 * 0.35 * 249.0 / 300.0 # Adjustment per ISO 13256-1 Internal pressure drop across heat pump assumed to be 0.5 in. w.g. + pump_adjust_kw = UnitConversions.convert(3.0, 'Btu/hr', 'ton') * UnitConversions.convert(1.0, 'gal/min', 'm^3/s') * 1000.0 * 6.0 * 2990.0 / 3000.0 # Adjustment per ISO 13256-1 Internal Pressure drop across heat pump coil assumed to be 11ft w.g. + cool_eir = UnitConversions.convert((1.0 - heat_pump.cooling_efficiency_eer * (fan_adjust_kw + pump_adjust_kw)) / (heat_pump.cooling_efficiency_eer * (1.0 + UnitConversions.convert(fan_adjust_kw, 'Wh', 'Btu'))), 'Wh', 'Btu') + hp_ap.cool_rated_eirs = [cool_eir] + + # E+ equation fit coil coefficients from Tang's thesis: + # See Appendix B Figure B.3 of https://hvac.okstate.edu/sites/default/files/pubs/theses/MS/27-Tang_Thesis_05.pdf + # Coefficients generated by catalog data + hp_ap.heat_cap_ft_spec = [[-5.12650150, -0.93997630, 7.21443206, 0.121065721, 0.051809805]] + hp_ap.heat_power_ft_spec = [[-7.73235249, 6.43390775, 2.29152262, -0.175598629, 0.005888871]] + heat_eir = (1.0 - heat_pump.heating_efficiency_cop * (fan_adjust_kw + pump_adjust_kw)) / (heat_pump.heating_efficiency_cop * (1.0 - fan_adjust_kw)) + hp_ap.heat_rated_eirs = [heat_eir] end def self.get_default_compressor_type(hvac_type, seer) @@ -1757,32 +1610,36 @@ def self.disaggregate_fan_or_pump(model, fan_or_pump, htg_object, clg_object, ba sensors = { 'clg' => clg_object_sensor, 'primary_htg' => htg_object_sensor, 'backup_htg' => backup_htg_object_sensor } + sensors = sensors.select { |m, s| !s.nil? } fan_or_pump_var = fan_or_pump.name.to_s.gsub(' ', '_') # Disaggregate electric fan/pump energy fan_or_pump_program = OpenStudio::Model::EnergyManagementSystemProgram.new(model) fan_or_pump_program.setName("#{fan_or_pump_var} disaggregate program") - sensors.each do |mode, sensor| - next if sensor.nil? - - fan_or_pump_program.addLine("Set #{fan_or_pump_var}_#{mode} = 0") - end - i = 0 - sensors.each do |mode, sensor| - next if sensor.nil? - - if i == 0 - fan_or_pump_program.addLine("If #{sensor.name} > 0") - elsif i == 2 - fan_or_pump_program.addLine('Else') - else - fan_or_pump_program.addLine("ElseIf #{sensor.name} > 0") + if htg_object.is_a?(OpenStudio::Model::ZoneHVACBaseboardConvectiveWater) || htg_object.is_a?(OpenStudio::Model::ZoneHVACFourPipeFanCoil) + # Pump may occassionally run when baseboard isn't, so just assign all pump energy here + mode, sensor = sensors.first + if (sensors.size != 1) || (mode != 'primary_htg') + fail 'Unexpected situation.' end fan_or_pump_program.addLine(" Set #{fan_or_pump_var}_#{mode} = #{fan_or_pump_sensor.name}") - i += 1 + else + sensors.each do |mode, sensor| + fan_or_pump_program.addLine("Set #{fan_or_pump_var}_#{mode} = 0") + end + sensors.each_with_index do |(mode, sensor), i| + if i == 0 + fan_or_pump_program.addLine("If #{sensor.name} > 0") + elsif i == 2 + fan_or_pump_program.addLine('Else') + else + fan_or_pump_program.addLine("ElseIf #{sensor.name} > 0") + end + fan_or_pump_program.addLine(" Set #{fan_or_pump_var}_#{mode} = #{fan_or_pump_sensor.name}") + end + fan_or_pump_program.addLine('EndIf') end - fan_or_pump_program.addLine('EndIf') hvac_objects << fan_or_pump_program fan_or_pump_program_calling_manager = OpenStudio::Model::EnergyManagementSystemProgramCallingManager.new(model) @@ -1804,12 +1661,6 @@ def self.disaggregate_fan_or_pump(model, fan_or_pump, htg_object, clg_object, ba fan_or_pump_ems_output_var.setEMSProgramOrSubroutineName(fan_or_pump_program) fan_or_pump_ems_output_var.setUnits('J') hvac_objects << fan_or_pump_ems_output_var - - # Used by HEScore - # TODO: Move to HEScore project or reporting measure - outputVariable = OpenStudio::Model::OutputVariable.new(fan_or_pump_ems_output_var.name.to_s, model) - outputVariable.setReportingFrequency('monthly') - outputVariable.setKeyValue('*') end return hvac_objects @@ -1878,14 +1729,12 @@ def self.create_supp_heating_coil(model, obj_name, heat_pump) htg_supp_coil.setParasiticGasLoad(0) htg_supp_coil.setFuelType(EPlus.fuel_type(fuel)) end + htg_supp_coil.setNominalCapacity(UnitConversions.convert(capacity, 'Btu/hr', 'W')) htg_supp_coil.setName(obj_name + ' ' + Constants.ObjectNameBackupHeatingCoil) - if not capacity.nil? - htg_supp_coil.setNominalCapacity(UnitConversions.convert([capacity, Constants.small].max, 'Btu/hr', 'W')) # Used by HVACSizing measure - end return htg_supp_coil end - def self.create_supply_fan(model, obj_name, num_speeds, fan_watts_per_cfm) + def self.create_supply_fan(model, obj_name, num_speeds, fan_watts_per_cfm, fan_cfm) if num_speeds == 1 fan = OpenStudio::Model::FanOnOff.new(model, model.alwaysOnDiscreteSchedule) else @@ -1898,25 +1747,30 @@ def self.create_supply_fan(model, obj_name, num_speeds, fan_watts_per_cfm) fan.setEndUseSubcategory('supply fan') fan.setMotorEfficiency(1.0) fan.setMotorInAirstreamFraction(1.0) + fan.setMaximumFlowRate(UnitConversions.convert(fan_cfm, 'cfm', 'm^3/s')) return fan end - def self.create_air_loop_unitary_system(model, obj_name, fan, htg_coil, clg_coil, htg_supp_coil, supp_max_temp = nil) + def self.create_air_loop_unitary_system(model, obj_name, fan, htg_coil, clg_coil, htg_supp_coil, htg_cfm, clg_cfm, supp_max_temp = nil) air_loop_unitary = OpenStudio::Model::AirLoopHVACUnitarySystem.new(model) air_loop_unitary.setName(obj_name + ' unitary system') air_loop_unitary.setAvailabilitySchedule(model.alwaysOnDiscreteSchedule) air_loop_unitary.setSupplyFan(fan) air_loop_unitary.setFanPlacement('BlowThrough') air_loop_unitary.setSupplyAirFanOperatingModeSchedule(model.alwaysOffDiscreteSchedule) + air_loop_unitary.setSupplyAirFlowRateMethodDuringHeatingOperation('SupplyAirFlowRate') if htg_coil.nil? air_loop_unitary.setSupplyAirFlowRateDuringHeatingOperation(0.0) else air_loop_unitary.setHeatingCoil(htg_coil) + air_loop_unitary.setSupplyAirFlowRateDuringHeatingOperation(UnitConversions.convert(htg_cfm, 'cfm', 'm^3/s')) end + air_loop_unitary.setSupplyAirFlowRateMethodDuringCoolingOperation('SupplyAirFlowRate') if clg_coil.nil? air_loop_unitary.setSupplyAirFlowRateDuringCoolingOperation(0.0) else air_loop_unitary.setCoolingCoil(clg_coil) + air_loop_unitary.setSupplyAirFlowRateDuringCoolingOperation(UnitConversions.convert(clg_cfm, 'cfm', 'm^3/s')) end if htg_supp_coil.nil? air_loop_unitary.setMaximumSupplyAirTemperature(UnitConversions.convert(120.0, 'F', 'C')) @@ -1929,12 +1783,13 @@ def self.create_air_loop_unitary_system(model, obj_name, fan, htg_coil, clg_coil return air_loop_unitary end - def self.create_air_loop(model, obj_name, system, control_zone, sequential_heat_load_frac, sequential_cool_load_frac) + def self.create_air_loop(model, obj_name, system, control_zone, sequential_heat_load_frac, sequential_cool_load_frac, airflow_cfm) air_loop = OpenStudio::Model::AirLoopHVAC.new(model) air_loop.setAvailabilitySchedule(model.alwaysOnDiscreteSchedule) air_loop.setName(obj_name + ' airloop') air_loop.zoneSplitter.setName(obj_name + ' zone splitter') air_loop.zoneMixer.setName(obj_name + ' zone mixer') + air_loop.setDesignSupplyAirFlowRate(UnitConversions.convert(airflow_cfm, 'cfm', 'm^3/s')) system.addToNode(air_loop.supplyInletNode) if system.is_a? OpenStudio::Model::AirLoopHVACUnitarySystem @@ -1945,6 +1800,7 @@ def self.create_air_loop(model, obj_name, system, control_zone, sequential_heat_ air_terminal.setConstantMinimumAirFlowFraction(0) air_terminal.setFixedMinimumAirFlowRate(0) end + air_terminal.setMaximumAirFlowRate(UnitConversions.convert(airflow_cfm, 'cfm', 'm^3/s')) air_terminal.setName(obj_name + ' terminal') air_loop.multiAddBranchForZone(control_zone, air_terminal) @@ -1996,17 +1852,27 @@ def self.get_default_boiler_eae(heating_system) distribution_type = distribution_system.distribution_system_type if distribution_type == HPXML::HVACDistributionTypeHydronic - # Shared boiler w/ baseboard/radiators/etc - if heating_system.shared_loop_watts.nil? - return 220.0 # kWh/yr, per ANSI/RESNET/ICC 301-2019 Table 4.5.2(5) + if distribution_system.hydronic_type == HPXML::HydronicTypeWaterLoop + # Shared boiler w/ WLHP + if heating_system.shared_loop_watts.nil? + return 265.0 # kWh/yr, per ANSI/RESNET/ICC 301-2019 Table 4.5.2(5) + else + sp_kw = UnitConversions.convert(heating_system.shared_loop_watts, 'W', 'kW') + n_dweq = heating_system.number_of_units_served.to_f + aux_in = 0.0 # ANSI/RESNET/ICC 301-2019 Section 4.4.7.2 + end else - sp_kw = UnitConversions.convert(heating_system.shared_loop_watts, 'W', 'kW') - n_dweq = heating_system.number_of_units_served.to_f - aux_in = 0.0 + # Shared boiler w/ baseboard/radiators/etc + if heating_system.shared_loop_watts.nil? + return 220.0 # kWh/yr, per ANSI/RESNET/ICC 301-2019 Table 4.5.2(5) + else + sp_kw = UnitConversions.convert(heating_system.shared_loop_watts, 'W', 'kW') + n_dweq = heating_system.number_of_units_served.to_f + aux_in = 0.0 + end end - elsif distribution_type == HPXML::HVACDistributionTypeHydronicAndAir - hydronic_and_air_type = distribution_system.hydronic_and_air_type - if hydronic_and_air_type == HPXML::HydronicAndAirTypeFanCoil + elsif distribution_type == HPXML::HVACDistributionTypeAir + if distribution_system.air_type == HPXML::AirTypeFanCoil # Shared boiler w/ fan coil if heating_system.shared_loop_watts.nil? || heating_system.fan_coil_watts.nil? return 438.0 # kWh/yr, per ANSI/RESNET/ICC 301-2019 Table 4.5.2(5) @@ -2015,20 +1881,7 @@ def self.get_default_boiler_eae(heating_system) n_dweq = heating_system.number_of_units_served.to_f aux_in = UnitConversions.convert(heating_system.fan_coil_watts, 'W', 'kW') end - elsif hydronic_and_air_type == HPXML::HydronicAndAirTypeWaterLoopHeatPump - # Shared boiler w/ WLHP - if heating_system.shared_loop_watts.nil? - return 265.0 # kWh/yr, per ANSI/RESNET/ICC 301-2019 Table 4.5.2(5) - else - sp_kw = UnitConversions.convert(heating_system.shared_loop_watts, 'W', 'kW') - n_dweq = heating_system.number_of_units_served.to_f - aux_in = 0.0 # ANSI/RESNET/ICC 301-2019 Section 4.4.7.2 - end - else - fail "Unexpected distribution type '#{hydronic_and_air_type}' for shared boiler." end - else - fail "Unexpected distribution type '#{distribution_type}' for shared boiler." end # ANSI/RESNET/ICC 301-2019 Equation 4.4-5 @@ -2059,7 +1912,9 @@ def self.get_default_boiler_eae(heating_system) end end - def self.calc_heat_cap_ft_spec_using_capacity_17F(num_speeds, heat_pump) + def self.calc_heat_cap_ft_spec_using_capacity_17F(heat_pump) + num_speeds = heat_pump.additional_properties.num_speeds + # Indoor temperature slope and intercept used if Q_17 is specified (derived using heat_cap_ft_spec) # NOTE: Using Q_17 assumes the same curve for all speeds if num_speeds == 1 @@ -2076,7 +1931,11 @@ def self.calc_heat_cap_ft_spec_using_capacity_17F(num_speeds, heat_pump) # Derive coefficients from user input for heating capacity at 47F and 17F # Biquadratic: capacity multiplier = a + b*IAT + c*IAT^2 + d*OAT + e*OAT^2 + f*IAT*OAT x_A = 17.0 - y_A = heat_pump.heating_capacity_17F / heat_pump.heating_capacity + if heat_pump.heating_capacity > 0 + y_A = heat_pump.heating_capacity_17F / heat_pump.heating_capacity + else + y_A = 0.5 # Arbitrary + end x_B = 47.0 # 47F is the rating point y_B = 1.0 @@ -2105,22 +1964,18 @@ def self.calc_eer_from_eir(eir, fan_power_rated) return ((1.0 - 3.412 * (fan_power_rated * cfm_per_btuh)) / (eir / 3.412 + (fan_power_rated * cfm_per_btuh))) end - def self.calc_eers_from_eir_2speed(eer_2, fan_power_rated, is_heat_pump) - # Returns low and high stage eer A given high stage eer A + def self.calc_eers_from_eir_2speed(eer_2, fan_power_rated) + # Returns low and high stage EER A given high stage EER A eir_2_a = calc_eir_from_eer(eer_2, fan_power_rated) - if not is_heat_pump - eir_1_a = 0.8691 * eir_2_a + 0.0127 # Relationship derived using Dylan's data for two stage air conditioners - else - eir_1_a = 0.8887 * eir_2_a + 0.0083 # Relationship derived using Dylan's data for two stage heat pumps - end + eir_1_a = 0.8887 * eir_2_a + 0.0083 # Relationship derived using Dylan's data for two stage heat pumps return [calc_eer_from_eir(eir_1_a, fan_power_rated), eer_2] end def self.calc_eers_from_eir_4speed(eer_nom, fan_power_rated, calc_type = 'seer') - # Returns eer A at minimum, intermediate, and nominal speed given eer A (and a fourth speed if calc_type != 'seer') + # Returns EER A at minimum, intermediate, and nominal speed given EER A (and a fourth speed if calc_type != 'seer') eir_nom = calc_eir_from_eer(eer_nom, fan_power_rated) @@ -2172,9 +2027,9 @@ def self.calc_cops_from_eir_4speed(cop_nom, fan_power_rated, calc_type = 'hspf') cop_ratios = [1.385171617, 1.183214059, 1.0, 0.95544453] # Updated based on Nordyne 3 ton heat pump # HSPF calculation is based on performance at three speeds - if calc_type.include? 'hspf' + if calc_type == 'hspf' indices = [0, 1, 2] - else + elsif calc_type == 'model' indices = [0, 1, 2, 3] end @@ -2187,33 +2042,26 @@ def self.calc_cops_from_eir_4speed(cop_nom, fan_power_rated, calc_type = 'hspf') return cops_net end - def self.calc_biquad(coeff, in_1, in_2) - result = coeff[0] + coeff[1] * in_1 + coeff[2] * in_1 * in_1 + coeff[3] * in_2 + coeff[4] * in_2 * in_2 + coeff[5] * in_1 * in_2 - return result - end - - def self.calc_eer_cooling_1speed(seer, fan_power_rated, coeff_eir) - # Directly calculate cooling coil net eer at condition A (95/80/67) using Seer + def self.calc_eer_cooling_1speed(seer, c_d, fan_power_rated, coeff_eir) + # Directly calculate cooling coil net EER at condition A (95/80/67) using SEER - c_d = get_cool_c_d(1, seer) - - # 1. Calculate eer_b using Seer and c_d + # 1. Calculate EER_b using SEER and c_d eer_b = seer / (1.0 - 0.5 * c_d) - # 2. Calculate eir_b + # 2. Calculate EIR_b eir_b = calc_eir_from_eer(eer_b, fan_power_rated) - # 3. Calculate eir_a using performance curves - eir_a = eir_b / calc_biquad(coeff_eir[0], 67.0, 82.0) + # 3. Calculate EIR_a using performance curves + eir_a = eir_b / MathTools.biquadratic(67.0, 82.0, coeff_eir[0]) eer_a = calc_eer_from_eir(eir_a, fan_power_rated) return eer_a end - def self.calc_eers_cooling_2speed(runner, seer, c_d, capacity_ratios, fanspeed_ratios, fan_power_rated, coeff_eir, coeff_q, is_heat_pump = false) - # Iterate to find rated net eers given Seer using simple bisection method for two stage air conditioners + def self.calc_eers_cooling_2speed(seer, c_d, capacity_ratios, fanspeed_ratios, fan_power_rated, coeff_eir, coeff_q) + # Iterate to find rated net EERs given SEER using simple bisection method for two stage heat pumps - # Initial large bracket of eer (A condition) to span possible seer range + # Initial large bracket of EER (A condition) to span possible SEER range eer_a = 5.0 eer_b = 20.0 @@ -2224,10 +2072,10 @@ def self.calc_eers_cooling_2speed(runner, seer, c_d, capacity_ratios, fanspeed_r err = 1 eer_c = (eer_a + eer_b) / 2.0 (1..iter_max).each do |n| - eers = calc_eers_from_eir_2speed(eer_a, fan_power_rated, is_heat_pump) + eers = calc_eers_from_eir_2speed(eer_a, fan_power_rated) f_a = calc_seer_2speed(eers, c_d, capacity_ratios, fanspeed_ratios, fan_power_rated, coeff_eir, coeff_q) - seer - eers = calc_eers_from_eir_2speed(eer_c, fan_power_rated, is_heat_pump) + eers = calc_eers_from_eir_2speed(eer_c, fan_power_rated) f_c = calc_seer_2speed(eers, c_d, capacity_ratios, fanspeed_ratios, fan_power_rated, coeff_eir, coeff_q) - seer if f_c == 0 @@ -2250,10 +2098,10 @@ def self.calc_eers_cooling_2speed(runner, seer, c_d, capacity_ratios, fanspeed_r fail 'Two-speed cooling eers iteration failed to converge.' end - return calc_eers_from_eir_2speed(eer_c, fan_power_rated, is_heat_pump) + return calc_eers_from_eir_2speed(eer_c, fan_power_rated) end - def self.calc_eers_cooling_4speed(runner, seer, c_d, capacity_ratios, fanspeed_ratios, fan_power_rated, coeff_eir, coeff_q) + def self.calc_eers_cooling_4speed(seer, c_d, capacity_ratios, fanspeed_ratios, fan_power_rated, coeff_eir, coeff_q) # Iterate to find rated net eers given Seer using simple bisection method for two stage and variable speed air conditioners # Initial large bracket of eer (A condition) to span possible seer range @@ -2298,17 +2146,17 @@ def self.calc_eers_cooling_4speed(runner, seer, c_d, capacity_ratios, fanspeed_r def self.calc_seer_2speed(eers, c_d, capacity_ratios, fanspeed_ratios, fan_power_rated, coeff_eir, coeff_q) eir_A2 = calc_eir_from_eer(eers[1], fan_power_rated) - eir_B2 = eir_A2 * calc_biquad(coeff_eir[1], 67.0, 82.0) + eir_B2 = eir_A2 * MathTools.biquadratic(67.0, 82.0, coeff_eir[1]) eir_A1 = calc_eir_from_eer(eers[0], fan_power_rated) - eir_B1 = eir_A1 * calc_biquad(coeff_eir[0], 67.0, 82.0) - eir_F1 = eir_A1 * calc_biquad(coeff_eir[0], 67.0, 67.0) + eir_B1 = eir_A1 * MathTools.biquadratic(67.0, 82.0, coeff_eir[0]) + eir_F1 = eir_A1 * MathTools.biquadratic(67.0, 67.0, coeff_eir[0]) q_A2 = 1.0 - q_B2 = q_A2 * calc_biquad(coeff_q[1], 67.0, 82.0) + q_B2 = q_A2 * MathTools.biquadratic(67.0, 82.0, coeff_q[1]) - q_B1 = q_A2 * capacity_ratios[0] * calc_biquad(coeff_q[0], 67.0, 82.0) - q_F1 = q_A2 * capacity_ratios[0] * calc_biquad(coeff_q[0], 67.0, 67.0) + q_B1 = q_A2 * capacity_ratios[0] * MathTools.biquadratic(67.0, 82.0, coeff_q[0]) + q_F1 = q_A2 * capacity_ratios[0] * MathTools.biquadratic(67.0, 67.0, coeff_q[0]) cfm_Btu_h = 400.0 / 12000.0 @@ -2365,20 +2213,20 @@ def self.calc_seer_4speed(eers, c_d, capacity_ratios, fanspeed_ratios, fan_power tout_F = 67.0 eir_A2 = calc_eir_from_eer(eers[n_max], fan_power_rated) - eir_B2 = eir_A2 * calc_biquad(coeff_eir[n_max], wBin, tout_B) + eir_B2 = eir_A2 * MathTools.biquadratic(wBin, tout_B, coeff_eir[n_max]) eir_Av = calc_eir_from_eer(eers[n_int], fan_power_rated) - eir_Ev = eir_Av * calc_biquad(coeff_eir[n_int], wBin, tout_E) + eir_Ev = eir_Av * MathTools.biquadratic(wBin, tout_E, coeff_eir[n_int]) eir_A1 = calc_eir_from_eer(eers[n_min], fan_power_rated) - eir_B1 = eir_A1 * calc_biquad(coeff_eir[n_min], wBin, tout_B) - eir_F1 = eir_A1 * calc_biquad(coeff_eir[n_min], wBin, tout_F) + eir_B1 = eir_A1 * MathTools.biquadratic(wBin, tout_B, coeff_eir[n_min]) + eir_F1 = eir_A1 * MathTools.biquadratic(wBin, tout_F, coeff_eir[n_min]) q_A2 = capacity_ratios[n_max] - q_B2 = q_A2 * calc_biquad(coeff_q[n_max], wBin, tout_B) - q_Ev = capacity_ratios[n_int] * calc_biquad(coeff_q[n_int], wBin, tout_E) - q_B1 = capacity_ratios[n_min] * calc_biquad(coeff_q[n_min], wBin, tout_B) - q_F1 = capacity_ratios[n_min] * calc_biquad(coeff_q[n_min], wBin, tout_F) + q_B2 = q_A2 * MathTools.biquadratic(wBin, tout_B, coeff_q[n_max]) + q_Ev = capacity_ratios[n_int] * MathTools.biquadratic(wBin, tout_E, coeff_q[n_int]) + q_B1 = capacity_ratios[n_min] * MathTools.biquadratic(wBin, tout_B, coeff_q[n_min]) + q_F1 = capacity_ratios[n_min] * MathTools.biquadratic(wBin, tout_F, coeff_q[n_min]) cfm_Btu_h = 400.0 / 12000.0 @@ -2545,7 +2393,7 @@ def self.calc_cops_heating_2speed(hspf, c_d, capacity_ratios, fanspeed_ratios, f return calc_cops_from_eir_2speed(cop_c, fan_power_rated) end - def self.calc_cops_heating_4speed(runner, hspf, c_d, capacity_ratios, fanspeed_ratios, fan_power_rated, coeff_eir, coeff_q) + def self.calc_cops_heating_4speed(hspf, c_d, capacity_ratios, fanspeed_ratios, fan_power_rated, coeff_eir, coeff_q) # Iterate to find rated net cops given HSPF using simple bisection method for variable speed heat pumps # Initial large bracket of cop to span possible hspf range @@ -2590,12 +2438,12 @@ def self.calc_cops_heating_4speed(runner, hspf, c_d, capacity_ratios, fanspeed_r def self.calc_hspf_1speed(cop_47, c_d, fan_power_rated, coeff_eir, coeff_q) eir_47 = calc_eir_from_cop(cop_47, fan_power_rated) - eir_35 = eir_47 * calc_biquad(coeff_eir[0], 70.0, 35.0) - eir_17 = eir_47 * calc_biquad(coeff_eir[0], 70.0, 17.0) + eir_35 = eir_47 * MathTools.biquadratic(70.0, 35.0, coeff_eir[0]) + eir_17 = eir_47 * MathTools.biquadratic(70.0, 17.0, coeff_eir[0]) q_47 = 1.0 q_35 = 0.7519 - q_17 = q_47 * calc_biquad(coeff_q[0], 70.0, 17.0) + q_17 = q_47 * MathTools.biquadratic(70.0, 17.0, coeff_q[0]) cfm_Btu_h = 400.0 / 12000.0 @@ -2653,22 +2501,22 @@ def self.calc_hspf_1speed(cop_47, c_d, fan_power_rated, coeff_eir, coeff_q) def self.calc_hspf_2speed(cops, c_d, capacity_ratios, fanspeed_ratios, fan_power_rated, coeff_eir, coeff_q) eir_47_H = calc_eir_from_cop(cops[1], fan_power_rated) - eir_35_H = eir_47_H * calc_biquad(coeff_eir[1], 70.0, 35.0) - eir_17_H = eir_47_H * calc_biquad(coeff_eir[1], 70.0, 17.0) + eir_35_H = eir_47_H * MathTools.biquadratic(70.0, 35.0, coeff_eir[1]) + eir_17_H = eir_47_H * MathTools.biquadratic(70.0, 17.0, coeff_eir[1]) eir_47_L = calc_eir_from_cop(cops[0], fan_power_rated) - eir_62_L = eir_47_L * calc_biquad(coeff_eir[0], 70.0, 62.0) - eir_35_L = eir_47_L * calc_biquad(coeff_eir[0], 70.0, 35.0) - eir_17_L = eir_47_L * calc_biquad(coeff_eir[0], 70.0, 17.0) + eir_62_L = eir_47_L * MathTools.biquadratic(70.0, 62.0, coeff_eir[0]) + eir_35_L = eir_47_L * MathTools.biquadratic(70.0, 35.0, coeff_eir[0]) + eir_17_L = eir_47_L * MathTools.biquadratic(70.0, 17.0, coeff_eir[0]) q_H47 = 1.0 - q_H35 = q_H47 * calc_biquad(coeff_q[1], 70.0, 35.0) - q_H17 = q_H47 * calc_biquad(coeff_q[1], 70.0, 17.0) + q_H35 = q_H47 * MathTools.biquadratic(70.0, 35.0, coeff_q[1]) + q_H17 = q_H47 * MathTools.biquadratic(70.0, 17.0, coeff_q[1]) q_L47 = q_H47 * capacity_ratios[0] - q_L62 = q_L47 * calc_biquad(coeff_q[0], 70.0, 62.0) - q_L35 = q_L47 * calc_biquad(coeff_q[0], 70.0, 35.0) - q_L17 = q_L47 * calc_biquad(coeff_q[0], 70.0, 17.0) + q_L62 = q_L47 * MathTools.biquadratic(70.0, 62.0, coeff_q[0]) + q_L35 = q_L47 * MathTools.biquadratic(70.0, 35.0, coeff_q[0]) + q_L17 = q_L47 * MathTools.biquadratic(70.0, 17.0, coeff_q[0]) cfm_Btu_h = 400.0 / 12000.0 @@ -2773,21 +2621,21 @@ def self.calc_hspf_4speed(cop_47, c_d, capacity_ratios, fanspeed_ratios, fan_pow tout_0 = 62.0 eir_H1_2 = calc_eir_from_cop(cop_47[n_max], fan_power_rated) - eir_H3_2 = eir_H1_2 * calc_biquad(coeff_eir[n_max], tin, tout_3) + eir_H3_2 = eir_H1_2 * MathTools.biquadratic(tin, tout_3, coeff_eir[n_max]) eir_adjv = calc_eir_from_cop(cop_47[n_int], fan_power_rated) - eir_H2_v = eir_adjv * calc_biquad(coeff_eir[n_int], tin, tout_2) + eir_H2_v = eir_adjv * MathTools.biquadratic(tin, tout_2, coeff_eir[n_int]) eir_H1_1 = calc_eir_from_cop(cop_47[n_min], fan_power_rated) - eir_H0_1 = eir_H1_1 * calc_biquad(coeff_eir[n_min], tin, tout_0) + eir_H0_1 = eir_H1_1 * MathTools.biquadratic(tin, tout_0, coeff_eir[n_min]) q_H1_2 = capacity_ratios[n_max] - q_H3_2 = q_H1_2 * calc_biquad(coeff_q[n_max], tin, tout_3) + q_H3_2 = q_H1_2 * MathTools.biquadratic(tin, tout_3, coeff_q[n_max]) - q_H2_v = capacity_ratios[n_int] * calc_biquad(coeff_q[n_int], tin, tout_2) + q_H2_v = capacity_ratios[n_int] * MathTools.biquadratic(tin, tout_2, coeff_q[n_int]) q_H1_1 = capacity_ratios[n_min] - q_H0_1 = q_H1_1 * calc_biquad(coeff_q[n_min], tin, tout_0) + q_H0_1 = q_H1_1 * MathTools.biquadratic(tin, tout_0, coeff_q[n_min]) cfm_Btu_h = 400.0 / 12000.0 @@ -2890,13 +2738,30 @@ def self.calc_hspf_4speed(cop_47, c_d, capacity_ratios, fanspeed_ratios, fan_pow return hspf end - def self.calc_cfms_ton_rated(rated_airflow_rate, fan_speed_ratios, capacity_ratios) - array = [] - fan_speed_ratios.each_with_index do |fanspeed_ratio, i| - capacity_ratio = capacity_ratios[i] - array << fanspeed_ratio * rated_airflow_rate / capacity_ratio + def self.set_cool_rated_cfm_per_ton(cooling_system) + clg_ap = cooling_system.additional_properties + + if cooling_system.is_a?(HPXML::CoolingSystem) && (cooling_system.cooling_system_type == HPXML::HVACTypeRoomAirConditioner) + clg_ap.cool_rated_cfm_per_ton = [312.0] # medium speed + else + clg_ap.cool_rated_cfm_per_ton = [] + clg_ap.cool_fan_speed_ratios.each_with_index do |fanspeed_ratio, i| + clg_ap.cool_rated_cfm_per_ton << fanspeed_ratio * clg_ap.cool_rated_airflow_rate / clg_ap.cool_capacity_ratios[i] + end + end + end + + def self.set_heat_rated_cfm_per_ton(heating_system) + htg_ap = heating_system.additional_properties + + if heating_system.is_a? HPXML::HeatingSystem + htg_ap.heat_rated_cfm_per_ton = [350.0] + else + htg_ap.heat_rated_cfm_per_ton = [] + htg_ap.heat_fan_speed_ratios.each_with_index do |fanspeed_ratio, i| + htg_ap.heat_rated_cfm_per_ton << fanspeed_ratio * htg_ap.heat_rated_airflow_rate / htg_ap.heat_capacity_ratios[i] + end end - return array end def self.create_curve_biquadratic_constant(model) @@ -2964,29 +2829,6 @@ def self.convert_curve_biquadratic(coeff, ip_to_si = true) end end - def self.convert_curve_gshp(coeff, gshp_to_biquadratic) - m1 = 32 - 273.15 * 1.8 - m2 = 283 * 1.8 - if gshp_to_biquadratic - biq_coeff = [] - biq_coeff << coeff[0] - m1 * ((coeff[1] + coeff[2]) / m2) - biq_coeff << coeff[1] / m2 - biq_coeff << 0 - biq_coeff << coeff[2] / m2 - biq_coeff << 0 - biq_coeff << 0 - return biq_coeff - else - gsph_coeff = [] - gsph_coeff << coeff[0] + m1 * (coeff[1] + coeff[3]) - gsph_coeff << m2 * coeff[1] - gsph_coeff << m2 * coeff[3] - gsph_coeff << 0 - gsph_coeff << 0 - return gsph_coeff - end - end - def self.create_curve_biquadratic(model, coeff, name, min_x, max_x, min_y, max_y) curve = OpenStudio::Model::CurveBiquadratic.new(model) curve.setName(name) @@ -3069,40 +2911,44 @@ def self.create_curve_exponent(model, coeff, name, min_x, max_x) return curve end - def self.create_dx_cooling_coil(model, obj_name, speed_indices, eirs, cap_ft_spec, eir_ft_spec, closs_fplr_spec, cap_fflow_spec, eir_fflow_spec, shrs_rated_gross, capacity, crankcase_kw, crankcase_temp, fan_power_rated) - num_speeds = speed_indices.size + def self.create_dx_cooling_coil(model, obj_name, cooling_system) + clg_ap = cooling_system.additional_properties - if num_speeds > 1 + if cooling_system.is_a? HPXML::CoolingSystem + clg_type = cooling_system.cooling_system_type + elsif cooling_system.is_a? HPXML::HeatPump + clg_type = cooling_system.heat_pump_type + end + + if clg_ap.num_speeds > 1 constant_biquadratic = create_curve_biquadratic_constant(model) end clg_coil = nil - for speed_idx in speed_indices - speed = speed_idx + 1 - cap_ft_spec_si = convert_curve_biquadratic(cap_ft_spec[speed_idx]) - eir_ft_spec_si = convert_curve_biquadratic(eir_ft_spec[speed_idx]) - cap_ft_curve = create_curve_biquadratic(model, cap_ft_spec_si, "Cool-Cap-fT#{speed}", 13.88, 23.88, 18.33, 51.66) - eir_ft_curve = create_curve_biquadratic(model, eir_ft_spec_si, "Cool-eir-fT#{speed}", 13.88, 23.88, 18.33, 51.66) - plf_fplr_curve = create_curve_quadratic(model, closs_fplr_spec[speed_idx], "Cool-PLF-fPLR#{speed}", 0, 1, 0.7, 1) - cap_fff_curve = create_curve_quadratic(model, cap_fflow_spec[speed_idx], "Cool-Cap-fFF#{speed}", 0, 2, 0, 2) - eir_fff_curve = create_curve_quadratic(model, eir_fflow_spec[speed_idx], "Cool-eir-fFF#{speed}", 0, 2, 0, 2) - - if num_speeds == 1 + for i in 0..(clg_ap.num_speeds - 1) + cap_ft_spec_si = convert_curve_biquadratic(clg_ap.cool_cap_ft_spec[i]) + eir_ft_spec_si = convert_curve_biquadratic(clg_ap.cool_eir_ft_spec[i]) + cap_ft_curve = create_curve_biquadratic(model, cap_ft_spec_si, "Cool-CAP-fT#{i + 1}", 13.88, 23.88, 18.33, 51.66) + eir_ft_curve = create_curve_biquadratic(model, eir_ft_spec_si, "Cool-EIR-fT#{i + 1}", 13.88, 23.88, 18.33, 51.66) + plf_fplr_curve = create_curve_quadratic(model, clg_ap.cool_plf_fplr_spec[i], "Cool-PLF-fPLR#{i + 1}", 0, 1, 0.7, 1) + cap_fff_curve = create_curve_quadratic(model, clg_ap.cool_cap_fflow_spec[i], "Cool-CAP-fFF#{i + 1}", 0, 2, 0, 2) + eir_fff_curve = create_curve_quadratic(model, clg_ap.cool_eir_fflow_spec[i], "Cool-EIR-fFF#{i + 1}", 0, 2, 0, 2) + + if clg_ap.num_speeds == 1 clg_coil = OpenStudio::Model::CoilCoolingDXSingleSpeed.new(model, model.alwaysOnDiscreteSchedule, cap_ft_curve, cap_fff_curve, eir_ft_curve, eir_fff_curve, plf_fplr_curve) - clg_coil.setRatedEvaporatorFanPowerPerVolumeFlowRate(fan_power_rated / UnitConversions.convert(1.0, 'cfm', 'm^3/s')) - if not crankcase_temp.nil? - clg_coil.setMaximumOutdoorDryBulbTemperatureForCrankcaseHeaterOperation(UnitConversions.convert(crankcase_temp, 'F', 'C')) - end - clg_coil.setRatedCOP(1.0 / eirs[speed_idx]) - clg_coil.setRatedSensibleHeatRatio(shrs_rated_gross[speed_idx]) - if not capacity.nil? - clg_coil.setRatedTotalCoolingCapacity(UnitConversions.convert([capacity, Constants.small].max, 'Btu/hr', 'W')) # Used by HVACSizing measure + clg_coil.setRatedEvaporatorFanPowerPerVolumeFlowRate(clg_ap.fan_power_rated / UnitConversions.convert(1.0, 'cfm', 'm^3/s')) + if not clg_ap.crankcase_temp.nil? + clg_coil.setMaximumOutdoorDryBulbTemperatureForCrankcaseHeaterOperation(UnitConversions.convert(clg_ap.crankcase_temp, 'F', 'C')) end + clg_coil.setRatedCOP(1.0 / clg_ap.cool_rated_eirs[i]) + clg_coil.setRatedSensibleHeatRatio(clg_ap.cool_rated_shrs_gross[i]) clg_coil.setNominalTimeForCondensateRemovalToBegin(1000.0) clg_coil.setRatioOfInitialMoistureEvaporationRateAndSteadyStateLatentCapacity(1.5) clg_coil.setMaximumCyclingRate(3.0) clg_coil.setLatentCapacityTimeConstant(45.0) + clg_coil.setRatedTotalCoolingCapacity(UnitConversions.convert(cooling_system.cooling_capacity, 'Btu/hr', 'W')) + clg_coil.setRatedAirFlowRate(calc_rated_airflow(cooling_system.cooling_capacity, clg_ap.cool_rated_cfm_per_ton[0], 1.0)) else if clg_coil.nil? clg_coil = OpenStudio::Model::CoilCoolingDXMultiSpeed.new(model) @@ -3110,180 +2956,205 @@ def self.create_dx_cooling_coil(model, obj_name, speed_indices, eirs, cap_ft_spe clg_coil.setApplyLatentDegradationtoSpeedsGreaterthan1(false) clg_coil.setFuelType(EPlus::FuelTypeElectricity) clg_coil.setAvailabilitySchedule(model.alwaysOnDiscreteSchedule) - if not crankcase_temp.nil? - clg_coil.setMaximumOutdoorDryBulbTemperatureforCrankcaseHeaterOperation(UnitConversions.convert(crankcase_temp, 'F', 'C')) + if not clg_ap.crankcase_temp.nil? + clg_coil.setMaximumOutdoorDryBulbTemperatureforCrankcaseHeaterOperation(UnitConversions.convert(clg_ap.crankcase_temp, 'F', 'C')) end end stage = OpenStudio::Model::CoilCoolingDXMultiSpeedStageData.new(model, cap_ft_curve, cap_fff_curve, eir_ft_curve, eir_fff_curve, plf_fplr_curve, constant_biquadratic) - stage.setGrossRatedCoolingCOP(1.0 / eirs[speed_idx]) - stage.setGrossRatedSensibleHeatRatio(shrs_rated_gross[speed_idx]) - if not capacity.nil? - stage.setGrossRatedTotalCoolingCapacity(UnitConversions.convert([capacity, Constants.small].max, 'Btu/hr', 'W')) # Used by HVACSizing measure - end + stage.setGrossRatedCoolingCOP(1.0 / clg_ap.cool_rated_eirs[i]) + stage.setGrossRatedSensibleHeatRatio(clg_ap.cool_rated_shrs_gross[i]) stage.setNominalTimeforCondensateRemovaltoBegin(1000) stage.setRatioofInitialMoistureEvaporationRateandSteadyStateLatentCapacity(1.5) stage.setRatedWasteHeatFractionofPowerInput(0.2) stage.setMaximumCyclingRate(3.0) stage.setLatentCapacityTimeConstant(45.0) + stage.setGrossRatedTotalCoolingCapacity(UnitConversions.convert(cooling_system.cooling_capacity, 'Btu/hr', 'W') * clg_ap.cool_capacity_ratios[i]) + stage.setRatedAirFlowRate(calc_rated_airflow(cooling_system.cooling_capacity, clg_ap.cool_rated_cfm_per_ton[i], clg_ap.cool_capacity_ratios[i])) clg_coil.addStage(stage) end end clg_coil.setName(obj_name + ' clg coil') clg_coil.setCondenserType('AirCooled') - clg_coil.setCrankcaseHeaterCapacity(UnitConversions.convert(crankcase_kw, 'kW', 'W')) + clg_coil.setCrankcaseHeaterCapacity(UnitConversions.convert(clg_ap.crankcase_kw, 'kW', 'W')) return clg_coil end - def self.create_dx_heating_coil(model, obj_name, speed_indices, eirs, cap_ft_spec, eir_ft_spec, closs_fplr_spec, cap_fflow_spec, eir_fflow_spec, - capacity, crankcase_kw, crankcase_temp, fan_power_rated, hp_min_temp, fraction_heat_load_served) - num_speeds = speed_indices.size + def self.create_dx_heating_coil(model, obj_name, heating_system) + htg_ap = heating_system.additional_properties - if num_speeds > 1 + if heating_system.is_a? HPXML::HeatingSystem + htg_type = heating_system.heating_system_type + elsif heating_system.is_a? HPXML::HeatPump + htg_type = heating_system.heat_pump_type + end + + if htg_ap.num_speeds > 1 constant_biquadratic = create_curve_biquadratic_constant(model) end htg_coil = nil - for speed_idx in speed_indices - speed = speed_idx + 1 - cap_ft_spec_si = convert_curve_biquadratic(cap_ft_spec[speed_idx]) - eir_ft_spec_si = convert_curve_biquadratic(eir_ft_spec[speed_idx]) - cap_ft_curve = create_curve_biquadratic(model, cap_ft_spec_si, "HP_Heat-Cap-fT#{speed}", -100, 100, -100, 100) - eir_ft_curve = create_curve_biquadratic(model, eir_ft_spec_si, "HP_Heat-eir-fT#{speed}", -100, 100, -100, 100) - plf_fplr_curve = create_curve_quadratic(model, closs_fplr_spec[speed_idx], "HP_Heat-PLF-fPLR#{speed}", 0, 1, 0.7, 1) - cap_fff_curve = create_curve_quadratic(model, cap_fflow_spec[speed_idx], "HP_Heat-CAP-fFF#{speed}", 0, 2, 0, 2) - eir_fff_curve = create_curve_quadratic(model, eir_fflow_spec[speed_idx], "HP_Heat-eir-fFF#{speed}", 0, 2, 0, 2) - - if num_speeds == 1 + for i in 0..(htg_ap.num_speeds - 1) + cap_ft_spec_si = convert_curve_biquadratic(htg_ap.heat_cap_ft_spec[i]) + eir_ft_spec_si = convert_curve_biquadratic(htg_ap.heat_eir_ft_spec[i]) + cap_ft_curve = create_curve_biquadratic(model, cap_ft_spec_si, "Heat-CAP-fT#{i + 1}", -100, 100, -100, 100) + eir_ft_curve = create_curve_biquadratic(model, eir_ft_spec_si, "Heat-EIR-fT#{i + 1}", -100, 100, -100, 100) + plf_fplr_curve = create_curve_quadratic(model, htg_ap.heat_plf_fplr_spec[i], "Heat-PLF-fPLR#{i + 1}", 0, 1, 0.7, 1) + cap_fff_curve = create_curve_quadratic(model, htg_ap.heat_cap_fflow_spec[i], "Heat-CAP-fFF#{i + 1}", 0, 2, 0, 2) + eir_fff_curve = create_curve_quadratic(model, htg_ap.heat_eir_fflow_spec[i], "Heat-EIR-fFF#{i + 1}", 0, 2, 0, 2) + + if htg_ap.num_speeds == 1 htg_coil = OpenStudio::Model::CoilHeatingDXSingleSpeed.new(model, model.alwaysOnDiscreteSchedule, cap_ft_curve, cap_fff_curve, eir_ft_curve, eir_fff_curve, plf_fplr_curve) - htg_coil.setRatedSupplyFanPowerPerVolumeFlowRate(fan_power_rated / UnitConversions.convert(1.0, 'cfm', 'm^3/s')) - htg_coil.setRatedCOP(1.0 / eirs[speed_idx]) - if not capacity.nil? - htg_coil.setRatedTotalHeatingCapacity(UnitConversions.convert([capacity, Constants.small].max, 'Btu/hr', 'W')) # Used by HVACSizing measure - end - if not crankcase_temp.nil? - htg_coil.setMaximumOutdoorDryBulbTemperatureforCrankcaseHeaterOperation(UnitConversions.convert(crankcase_temp, 'F', 'C')) + htg_coil.setRatedSupplyFanPowerPerVolumeFlowRate(htg_ap.fan_power_rated / UnitConversions.convert(1.0, 'cfm', 'm^3/s')) + htg_coil.setRatedCOP(1.0 / htg_ap.heat_rated_eirs[i]) + if not htg_ap.crankcase_temp.nil? + htg_coil.setMaximumOutdoorDryBulbTemperatureforCrankcaseHeaterOperation(UnitConversions.convert(htg_ap.crankcase_temp, 'F', 'C')) end + htg_coil.setRatedTotalHeatingCapacity(UnitConversions.convert(heating_system.heating_capacity, 'Btu/hr', 'W')) + htg_coil.setRatedAirFlowRate(calc_rated_airflow(heating_system.heating_capacity, htg_ap.heat_rated_cfm_per_ton[0], 1.0)) else if htg_coil.nil? htg_coil = OpenStudio::Model::CoilHeatingDXMultiSpeed.new(model) htg_coil.setFuelType(EPlus::FuelTypeElectricity) htg_coil.setApplyPartLoadFractiontoSpeedsGreaterthan1(false) htg_coil.setAvailabilitySchedule(model.alwaysOnDiscreteSchedule) - if not crankcase_temp.nil? - htg_coil.setMaximumOutdoorDryBulbTemperatureforCrankcaseHeaterOperation(UnitConversions.convert(crankcase_temp, 'F', 'C')) + if not htg_ap.crankcase_temp.nil? + htg_coil.setMaximumOutdoorDryBulbTemperatureforCrankcaseHeaterOperation(UnitConversions.convert(htg_ap.crankcase_temp, 'F', 'C')) end end stage = OpenStudio::Model::CoilHeatingDXMultiSpeedStageData.new(model, cap_ft_curve, cap_fff_curve, eir_ft_curve, eir_fff_curve, plf_fplr_curve, constant_biquadratic) - stage.setGrossRatedHeatingCOP(1.0 / eirs[speed_idx]) - if not capacity.nil? - stage.setGrossRatedHeatingCapacity(UnitConversions.convert([capacity, Constants.small].max, 'Btu/hr', 'W')) # Used by HVACSizing measure - end + stage.setGrossRatedHeatingCOP(1.0 / htg_ap.heat_rated_eirs[i]) stage.setRatedWasteHeatFractionofPowerInput(0.2) + stage.setGrossRatedHeatingCapacity(UnitConversions.convert(heating_system.heating_capacity, 'Btu/hr', 'W') * htg_ap.heat_capacity_ratios[i]) + stage.setRatedAirFlowRate(calc_rated_airflow(heating_system.heating_capacity, htg_ap.heat_rated_cfm_per_ton[i], htg_ap.heat_capacity_ratios[i])) htg_coil.addStage(stage) end end htg_coil.setName(obj_name + ' htg coil') - htg_coil.setMinimumOutdoorDryBulbTemperatureforCompressorOperation(UnitConversions.convert(hp_min_temp, 'F', 'C')) + htg_coil.setMinimumOutdoorDryBulbTemperatureforCompressorOperation(UnitConversions.convert(htg_ap.hp_min_temp, 'F', 'C')) htg_coil.setMaximumOutdoorDryBulbTemperatureforDefrostOperation(UnitConversions.convert(40.0, 'F', 'C')) - if fraction_heat_load_served > 0 - defrost_eir_curve = create_curve_biquadratic(model, [0.1528, 0, 0, 0, 0, 0], 'Defrosteir', -100, 100, -100, 100) # Heating defrost curve for reverse cycle - htg_coil.setDefrostEnergyInputRatioFunctionofTemperatureCurve(defrost_eir_curve) - htg_coil.setDefrostStrategy('ReverseCycle') - htg_coil.setDefrostControl('Timed') - else - htg_coil.setDefrostTimePeriodFraction(0) + defrost_eir_curve = create_curve_biquadratic(model, [0.1528, 0, 0, 0, 0, 0], 'Defrosteir', -100, 100, -100, 100) # Heating defrost curve for reverse cycle + htg_coil.setDefrostEnergyInputRatioFunctionofTemperatureCurve(defrost_eir_curve) + htg_coil.setDefrostStrategy('ReverseCycle') + htg_coil.setDefrostControl('Timed') + if heating_system.fraction_heat_load_served == 0 + htg_coil.setResistiveDefrostHeaterCapacity(0) end - htg_coil.setCrankcaseHeaterCapacity(UnitConversions.convert(crankcase_kw, 'kW', 'W')) + htg_coil.setCrankcaseHeaterCapacity(UnitConversions.convert(htg_ap.crankcase_kw, 'kW', 'W')) return htg_coil end - def self.calc_cool_eirs(num_speeds, eers, fan_power_rated) - cool_eirs = [] - (0...num_speeds).to_a.each do |speed| - eir = calc_eir_from_eer(eers[speed], fan_power_rated) - cool_eirs << eir + def self.set_cool_rated_eirs(cooling_system) + clg_ap = cooling_system.additional_properties + + clg_ap.cool_rated_eirs = [] + (0...clg_ap.num_speeds).to_a.each do |speed| + clg_ap.cool_rated_eirs << calc_eir_from_eer(clg_ap.cool_eers[speed], clg_ap.fan_power_rated) end - return cool_eirs end - def self.calc_heat_eirs(num_speeds, cops, fan_power_rated) - heat_eirs = [] - (0...num_speeds).to_a.each do |speed| - eir = calc_eir_from_cop(cops[speed], fan_power_rated) - heat_eirs << eir + def self.set_heat_rated_eirs(heating_system) + htg_ap = heating_system.additional_properties + + htg_ap.heat_rated_eirs = [] + (0...htg_ap.num_speeds).to_a.each do |speed| + htg_ap.heat_rated_eirs << calc_eir_from_cop(htg_ap.heat_cops[speed], htg_ap.fan_power_rated) end - return heat_eirs end - def self.calc_shrs_rated_gross(num_speeds, shr_Rated_Net, fan_power_rated, cfms_ton_rated) - # Convert SHRs from net to gross - cool_shrs_rated_gross = [] - (0...num_speeds).to_a.each do |speed| - qtot_net_nominal = 12000.0 - qsens_net_nominal = qtot_net_nominal * shr_Rated_Net[speed] - qtot_gross_nominal = qtot_net_nominal + UnitConversions.convert(cfms_ton_rated[speed] * fan_power_rated, 'Wh', 'Btu') - qsens_gross_nominal = qsens_net_nominal + UnitConversions.convert(cfms_ton_rated[speed] * fan_power_rated, 'Wh', 'Btu') - cool_shrs_rated_gross << (qsens_gross_nominal / qtot_gross_nominal) - - # Make sure SHR's are in valid range based on E+ model limits. - # The following correlation was developed by Jon Winkler to test for maximum allowed SHR based on the 300 - 450 cfm/ton limits in E+ - maxSHR = 0.3821066 + 0.001050652 * cfms_ton_rated[speed] - 0.01 - cool_shrs_rated_gross[speed] = [cool_shrs_rated_gross[speed], maxSHR].min - minSHR = 0.60 # Approximate minimum SHR such that an ADP exists - cool_shrs_rated_gross[speed] = [cool_shrs_rated_gross[speed], minSHR].max - end - - return cool_shrs_rated_gross + def self.set_cool_rated_shrs_gross(cooling_system) + clg_ap = cooling_system.additional_properties + + # Convert SHRs from net to gross. + if cooling_system.is_a?(HPXML::CoolingSystem) && (cooling_system.cooling_system_type == HPXML::HVACTypeRoomAirConditioner) + clg_ap.cool_rated_shrs_gross = [cooling_system.cooling_shr] # We don't model the fan separately, so set gross == net + else + clg_ap.cool_rated_shrs_gross = [] + (0...clg_ap.num_speeds).to_a.each do |speed| + qtot_net_nominal = 12000.0 + qsens_net_nominal = qtot_net_nominal * clg_ap.cool_rated_shrs_net[speed] + qtot_gross_nominal = qtot_net_nominal + UnitConversions.convert(clg_ap.cool_rated_cfm_per_ton[speed] * clg_ap.fan_power_rated, 'Wh', 'Btu') + qsens_gross_nominal = qsens_net_nominal + UnitConversions.convert(clg_ap.cool_rated_cfm_per_ton[speed] * clg_ap.fan_power_rated, 'Wh', 'Btu') + clg_ap.cool_rated_shrs_gross << (qsens_gross_nominal / qtot_gross_nominal) + + # Make sure SHR's are in valid range based on E+ model limits. + # The following correlation was developed by Jon Winkler to test for maximum allowed SHR based on the 300 - 450 cfm/ton limits in E+ + max_shr = 0.3821066 + 0.001050652 * clg_ap.cool_rated_cfm_per_ton[speed] - 0.01 + clg_ap.cool_rated_shrs_gross[speed] = [clg_ap.cool_rated_shrs_gross[speed], max_shr].min + min_shr = 0.60 # Approximate minimum SHR such that an ADP exists + clg_ap.cool_rated_shrs_gross[speed] = [clg_ap.cool_rated_shrs_gross[speed], min_shr].max + end + end end def self.calc_plr_coefficients(c_d) return [(1.0 - c_d), c_d, 0.0] # Linear part load model end - def self.get_cool_c_d(num_speeds, seer) + def self.set_cool_c_d(cooling_system, num_speeds) + clg_ap = cooling_system.additional_properties + # Degradation coefficient for cooling - if num_speeds == 1 - if seer < 13.0 - return 0.20 + if cooling_system.is_a?(HPXML::CoolingSystem) && (cooling_system.cooling_system_type == HPXML::HVACTypeRoomAirConditioner) + clg_ap.cool_c_d = 0.22 + elsif num_speeds == 1 + if cooling_system.cooling_efficiency_seer < 13.0 + clg_ap.cool_c_d = 0.20 else - return 0.07 + clg_ap.cool_c_d = 0.07 end elsif num_speeds == 2 - return 0.11 - elsif num_speeds == 4 - return 0.25 - elsif num_speeds == 10 - return 0.25 + clg_ap.cool_c_d = 0.11 + elsif num_speeds >= 4 + clg_ap.cool_c_d = 0.25 end + + # PLF curve + clg_ap.cool_plf_fplr_spec = [calc_plr_coefficients(clg_ap.cool_c_d)] * num_speeds end - def self.get_heat_c_d(num_speeds, hspf) + def self.set_heat_c_d(heating_system, num_speeds) + htg_ap = heating_system.additional_properties + # Degradation coefficient for heating if num_speeds == 1 - if hspf < 7.0 - return 0.20 + if heating_system.heating_efficiency_hspf < 7.0 + htg_ap.heat_c_d = 0.20 else - return 0.11 + htg_ap.heat_c_d = 0.11 end elsif num_speeds == 2 - return 0.11 + htg_ap.heat_c_d = 0.11 elsif num_speeds == 4 - return 0.24 - elsif num_speeds == 10 - return 0.40 + htg_ap.heat_c_d = 0.24 + elsif num_speeds == 10 # mini-split heat pump + htg_ap.heat_c_d = 0.40 end + + htg_ap.heat_plf_fplr_spec = [calc_plr_coefficients(htg_ap.heat_c_d)] * num_speeds end - def self.get_fan_power_rated(seer) - if seer <= 15 - return 0.365 # W/cfm + def self.set_fan_power_rated(hvac_system) + hvac_ap = hvac_system.additional_properties + + if (hvac_system.is_a?(HPXML::CoolingSystem) && (hvac_system.cooling_system_type == HPXML::HVACTypeMiniSplitAirConditioner)) || + (hvac_system.is_a?(HPXML::HeatPump) && (hvac_system.heat_pump_type == HPXML::HVACTypeHeatPumpMiniSplit)) + if not hvac_system.distribution_system.nil? + # Ducted, installed fan power may differ from rated fan power + hvac_ap.fan_power_rated = 0.18 # W/cfm, ducted + else + # Ductless, installed and rated value should be equal + hvac_ap.fan_power_rated = 0.07 # W/cfm + hvac_system.fan_watts_per_cfm = hvac_ap.fan_power_rated # W/cfm + end + elsif hvac_system.cooling_efficiency_seer <= 15 + hvac_ap.fan_power_rated = 0.365 # W/cfm else - return 0.14 # W/cfm + hvac_ap.fan_power_rated = 0.14 # W/cfm end end @@ -3304,133 +3175,6 @@ def self.calc_pump_rated_flow_rate(pump_eff, pump_w, pump_head_pa) return pump_eff * pump_w / pump_head_pa # m3/s end - def self.existing_equipment(model, thermal_zone, runner) - # Returns a list of equipment objects - - equipment = [] - hvac_types = [] - - unitary_system_air_loops = get_unitary_system_air_loops(model, thermal_zone) - unitary_system_air_loops.each do |unitary_system_air_loop| - system, clg_coil, htg_coil, air_loop = unitary_system_air_loop - equipment << system - - hvac_type_cool = system.additionalProperties.getFeatureAsString(Constants.SizingInfoHVACCoolType) - hvac_types << hvac_type_cool.get if hvac_type_cool.is_initialized - - hvac_type_heat = system.additionalProperties.getFeatureAsString(Constants.SizingInfoHVACHeatType) - hvac_types << hvac_type_heat.get if hvac_type_heat.is_initialized - end - - ptacs = get_ptacs(model, thermal_zone) - ptacs.each do |ptac| - equipment << ptac - hvac_types << ptac.additionalProperties.getFeatureAsString(Constants.SizingInfoHVACCoolType).get - end - - evap_coolers = get_evap_coolers(model, thermal_zone) - evap_coolers.each do |evap_cooler| - equipment << evap_cooler - hvac_types << evap_cooler.additionalProperties.getFeatureAsString(Constants.SizingInfoHVACCoolType).get - end - - baseboards = get_baseboard_waters(model, thermal_zone) - baseboards.each do |baseboard| - equipment << baseboard - hvac_types << baseboard.additionalProperties.getFeatureAsString(Constants.SizingInfoHVACHeatType).get - end - - fancoils = get_fan_coils(model, thermal_zone) - fancoils.each do |fancoil| - equipment << fancoil - hvac_types << fancoil.additionalProperties.getFeatureAsString(Constants.SizingInfoHVACHeatType).get - end - - baseboards = get_baseboard_electrics(model, thermal_zone) - baseboards.each do |baseboard| - equipment << baseboard - hvac_types << baseboard.additionalProperties.getFeatureAsString(Constants.SizingInfoHVACHeatType).get - end - - unitary_system_hvac_map = get_unitary_system_hvac_map(model, thermal_zone) - unitary_system_hvac_map.each do |unitary_system_zone_hvac| - system, clg_coil, htg_coil = unitary_system_zone_hvac - next if htg_coil.nil? - - equipment << system - hvac_types << system.additionalProperties.getFeatureAsString(Constants.SizingInfoHVACHeatType).get - end - - ideal_air = get_ideal_air(model, thermal_zone) - if not ideal_air.nil? - equipment << ideal_air - hvac_types << ideal_air.additionalProperties.getFeatureAsString(Constants.SizingInfoHVACCoolType).get - hvac_types << ideal_air.additionalProperties.getFeatureAsString(Constants.SizingInfoHVACHeatType).get - end - return equipment - end - - def self.get_coils_from_hvac_equip(model, hvac_equip) - # Returns the clg coil, htg coil, and supp htg coil as applicable - clg_coil = nil - htg_coil = nil - supp_htg_coil = nil - if hvac_equip.is_a? OpenStudio::Model::AirLoopHVACUnitarySystem - htg_coil = get_coil_from_hvac_component(hvac_equip.heatingCoil) - clg_coil = get_coil_from_hvac_component(hvac_equip.coolingCoil) - supp_htg_coil = get_coil_from_hvac_component(hvac_equip.supplementalHeatingCoil) - elsif hvac_equip.is_a? OpenStudio::Model::ZoneHVACBaseboardConvectiveWater - htg_coil = get_coil_from_hvac_component(hvac_equip.heatingCoil) - elsif hvac_equip.is_a? OpenStudio::Model::ZoneHVACFourPipeFanCoil - htg_coil = get_coil_from_hvac_component(hvac_equip.heatingCoil) - elsif hvac_equip.is_a? OpenStudio::Model::ZoneHVACPackagedTerminalAirConditioner - htg_coil = get_coil_from_hvac_component(hvac_equip.heatingCoil) - if (not htg_coil.nil?) && (htg_coil.availabilitySchedule == model.alwaysOffDiscreteSchedule) - # Don't return coil if it is unused - htg_coil = nil - end - clg_coil = get_coil_from_hvac_component(hvac_equip.coolingCoil) - end - return clg_coil, htg_coil, supp_htg_coil - end - - def self.get_coil_from_hvac_component(hvac_component) - # Check for optional objects - if hvac_component.is_a? OpenStudio::Model::OptionalHVACComponent - return if not hvac_component.is_initialized - - hvac_component = hvac_component.get - end - - # Cooling coils - if hvac_component.to_CoilCoolingDXSingleSpeed.is_initialized - return hvac_component.to_CoilCoolingDXSingleSpeed.get - elsif hvac_component.to_CoilCoolingDXMultiSpeed.is_initialized - return hvac_component.to_CoilCoolingDXMultiSpeed.get - elsif hvac_component.to_CoilCoolingWaterToAirHeatPumpEquationFit.is_initialized - return hvac_component.to_CoilCoolingWaterToAirHeatPumpEquationFit.get - end - - # Heating coils - if hvac_component.to_CoilHeatingDXSingleSpeed.is_initialized - return hvac_component.to_CoilHeatingDXSingleSpeed.get - elsif hvac_component.to_CoilHeatingDXMultiSpeed.is_initialized - return hvac_component.to_CoilHeatingDXMultiSpeed.get - elsif hvac_component.to_CoilHeatingGas.is_initialized - return hvac_component.to_CoilHeatingGas.get - elsif hvac_component.to_CoilHeatingElectric.is_initialized - return hvac_component.to_CoilHeatingElectric.get - elsif hvac_component.to_CoilHeatingWaterBaseboard.is_initialized - return hvac_component.to_CoilHeatingWaterBaseboard.get - elsif hvac_component.to_CoilHeatingWater.is_initialized - return hvac_component.to_CoilHeatingWater.get - elsif hvac_component.to_CoilHeatingWaterToAirHeatPumpEquationFit.is_initialized - return hvac_component.to_CoilHeatingWaterToAirHeatPumpEquationFit.get - end - - return hvac_component - end - def self.get_unitary_system_from_air_loop_hvac(air_loop) # Returns the unitary system or nil air_loop.supplyComponents.each do |comp| @@ -3441,201 +3185,52 @@ def self.get_unitary_system_from_air_loop_hvac(air_loop) return end - def self.get_evap_cooler_from_air_loop_hvac(air_loop) - # Returns the evap cooler or nil - air_loop.supplyComponents.each do |comp| - next unless comp.to_EvaporativeCoolerDirectResearchSpecial.is_initialized - - return comp.to_EvaporativeCoolerDirectResearchSpecial.get - end - return - end - - def self.get_unitary_system_air_loops(model, thermal_zone) - # Returns the unitary system(s), cooling coil(s), heating coil(s), and air loops(s) if available - unitary_system_air_loops = [] - thermal_zone.airLoopHVACs.each do |air_loop| - system = get_unitary_system_from_air_loop_hvac(air_loop) - next if system.nil? - - clg_coil = nil - htg_coil = nil - if system.coolingCoil.is_initialized - clg_coil = system.coolingCoil.get - end - if system.heatingCoil.is_initialized - htg_coil = system.heatingCoil.get - end - unitary_system_air_loops << [system, clg_coil, htg_coil, air_loop] - end - return unitary_system_air_loops - end - - def self.get_unitary_system_hvac_map(model, thermal_zone) - # Returns the unitary system, cooling coil, and heating coil if available - unitary_system_hvac_map = [] - thermal_zone.equipment.each do |equipment| - next unless equipment.to_AirLoopHVACUnitarySystem.is_initialized - - system = equipment.to_AirLoopHVACUnitarySystem.get - clg_coil = nil - htg_coil = nil - if system.coolingCoil.is_initialized - clg_coil = system.coolingCoil.get - end - if system.heatingCoil.is_initialized - htg_coil = system.heatingCoil.get - end - unitary_system_hvac_map << [system, clg_coil, htg_coil] - end - return unitary_system_hvac_map - end - - def self.get_ptacs(model, thermal_zone) - # Returns the PTAC(s) if available - ptacs = [] - model.getZoneHVACPackagedTerminalAirConditioners.each do |ptac| - next unless thermal_zone.handle.to_s == ptac.thermalZone.get.handle.to_s - - ptacs << ptac - end - return ptacs - end - - def self.get_evap_coolers(model, thermal_zone) - # Returns the evaporative cooler if available - evap_coolers = [] - thermal_zone.airLoopHVACs.each do |air_loop| - evap_cooler = get_evap_cooler_from_air_loop_hvac(air_loop) - next if evap_cooler.nil? - - evap_coolers << evap_cooler - end - return evap_coolers - end - - def self.get_baseboard_waters(model, thermal_zone) - # Returns the water baseboard if available - baseboards = [] - model.getZoneHVACBaseboardConvectiveWaters.each do |baseboard| - next unless thermal_zone.handle.to_s == baseboard.thermalZone.get.handle.to_s - - baseboards << baseboard - end - return baseboards - end - - def self.get_fan_coils(model, thermal_zone) - # Returns the fan coil if available - fancoils = [] - model.getZoneHVACFourPipeFanCoils.each do |fancoil| - next unless thermal_zone.handle.to_s == fancoil.thermalZone.get.handle.to_s - - fancoils << fancoil - end - return fancoils - end - - def self.get_baseboard_electrics(model, thermal_zone) - # Returns the electric baseboard if available - baseboards = [] - model.getZoneHVACBaseboardConvectiveElectrics.each do |baseboard| - next unless thermal_zone.handle.to_s == baseboard.thermalZone.get.handle.to_s - - baseboards << baseboard - end - return baseboards - end - - def self.get_dehumidifiers(model, runner, thermal_zone) - # Returns the dehumidifier if available - dehums = [] - model.getZoneHVACDehumidifierDXs.each do |dehum| - next unless thermal_zone.handle.to_s == dehum.thermalZone.get.handle.to_s - - dehums << dehum - end - return dehums - end - - def self.get_ideal_air(model, thermal_zone) - # Returns the heating ideal air loads system if available - model.getZoneHVACIdealLoadsAirSystems.each do |ideal_air| - next unless thermal_zone.handle.to_s == ideal_air.thermalZone.get.handle.to_s - - return ideal_air - end - return - end - - def self.has_ducted_equipment(model, air_loop) - if air_loop.name.to_s.include? Constants.ObjectNameEvaporativeCooler - system = air_loop - else - system = get_unitary_system_from_air_loop_hvac(air_loop) - end - - hvac_type_cool = system.additionalProperties.getFeatureAsString(Constants.SizingInfoHVACCoolType) - hvac_type_cool = hvac_type_cool.get if hvac_type_cool.is_initialized - hvac_type_heat = system.additionalProperties.getFeatureAsString(Constants.SizingInfoHVACHeatType) - hvac_type_heat = hvac_type_heat.get if hvac_type_heat.is_initialized - - if [Constants.ObjectNameCentralAirConditioner, - Constants.ObjectNameAirSourceHeatPump, - Constants.ObjectNameGroundSourceHeatPump].include? hvac_type_cool - return true - elsif Constants.ObjectNameFurnace == hvac_type_heat - return true - elsif [Constants.ObjectNameMiniSplitHeatPump, Constants.ObjectNameEvaporativeCooler].include? hvac_type_cool - is_ducted = system.additionalProperties.getFeatureAsBoolean(Constants.SizingInfoHVACSystemIsDucted).get - if is_ducted - return true - end - end - - return false - end + def self.set_cool_rated_cfm_per_ton_mshp(heat_pump, num_speeds) + hp_ap = heat_pump.additional_properties - def self.calc_mshp_cfms_ton_cooling(cap_min_per, cap_max_per, cfm_ton_min, cfm_ton_max, num_speeds, dB_rated, wB_rated, shr) - cool_capacity_ratios = [0.0] * num_speeds - cool_cfms_ton_rated = [0.0] * num_speeds - cool_shrs_rated = [0.0] * num_speeds + dB_rated = 80.0 # deg-F + wB_rated = 67.0 # deg-F - cap_nom_per = 1.0 - cfm_ton_nom = ((cfm_ton_max - cfm_ton_min) / (cap_max_per - cap_min_per)) * (cap_nom_per - cap_min_per) + cfm_ton_min + cool_nominal_capacity_ratio = 1.0 + cool_nominal_cfm_per_ton = ((hp_ap.cool_max_cfm_per_ton * hp_ap.cool_max_capacity_ratio - hp_ap.cool_min_cfm_per_ton * hp_ap.cool_min_capacity_ratio) / + (hp_ap.cool_max_capacity_ratio - hp_ap.cool_min_capacity_ratio)) * + (cool_nominal_capacity_ratio - hp_ap.cool_min_capacity_ratio) + hp_ap.cool_min_cfm_per_ton * hp_ap.cool_min_capacity_ratio p_atm = 14.696 # standard atmospheric pressure (psia) - ao = Psychrometrics.CoilAoFactor(dB_rated, wB_rated, p_atm, UnitConversions.convert(1, 'ton', 'kBtu/hr'), cfm_ton_nom, shr) + ao = Psychrometrics.CoilAoFactor(dB_rated, wB_rated, p_atm, UnitConversions.convert(1, 'ton', 'kBtu/hr'), cool_nominal_cfm_per_ton, heat_pump.cooling_shr) + + hp_ap.cool_capacity_ratios = [] + hp_ap.cool_rated_cfm_per_ton = [] + hp_ap.cool_rated_shrs_gross = [] (0...num_speeds).each do |i| - cool_capacity_ratios[i] = cap_min_per + i * (cap_max_per - cap_min_per) / (num_speeds - 1) - cool_cfms_ton_rated[i] = cfm_ton_min + i * (cfm_ton_max - cfm_ton_min) / (num_speeds - 1) + hp_ap.cool_capacity_ratios << hp_ap.cool_min_capacity_ratio + i * (hp_ap.cool_max_capacity_ratio - hp_ap.cool_min_capacity_ratio) / (num_speeds - 1) + hp_ap.cool_rated_cfm_per_ton << (hp_ap.cool_min_cfm_per_ton * hp_ap.cool_min_capacity_ratio + i * (hp_ap.cool_max_cfm_per_ton * hp_ap.cool_max_capacity_ratio - hp_ap.cool_min_cfm_per_ton * hp_ap.cool_min_capacity_ratio) / (num_speeds - 1)) / hp_ap.cool_capacity_ratios[-1] # Calculate the SHR for each speed. Use minimum value of 0.98 to prevent E+ bypass factor calculation errors - cool_shrs_rated[i] = [Psychrometrics.CalculateSHR(dB_rated, wB_rated, p_atm, UnitConversions.convert(cool_capacity_ratios[i], 'ton', 'kBtu/hr'), cool_cfms_ton_rated[i], ao), 0.98].min + hp_ap.cool_rated_shrs_gross[i] = [Psychrometrics.CalculateSHR(dB_rated, wB_rated, p_atm, UnitConversions.convert(hp_ap.cool_capacity_ratios[i], 'ton', 'kBtu/hr'), hp_ap.cool_rated_cfm_per_ton[i] * hp_ap.cool_capacity_ratios[i], ao), 0.98].min end - - return cool_cfms_ton_rated, cool_capacity_ratios, cool_shrs_rated end - def self.calc_mshp_cool_eirs(runner, seer, fan_power, c_d, num_speeds, cool_capacity_ratios, cool_cfms_ton_rated, cool_eir_ft_spec, cool_cap_ft_spec) + def self.set_cool_rated_eirs_mshp(cooling_system, num_speeds) + clg_ap = cooling_system.additional_properties + cops_norm = [1.901, 1.859, 1.746, 1.609, 1.474, 1.353, 1.247, 1.156, 1.079, 1.0] fan_powers_norm = [0.604, 0.634, 0.670, 0.711, 0.754, 0.800, 0.848, 0.898, 0.948, 1.0] - cool_eirs = [0.0] * num_speeds - fan_powers_rated = [0.0] * num_speeds - eers_Rated = [0.0] * num_speeds + cop_max_speed = 3.5 # 3.5 is an initial guess, final value solved for below - cop_maxSpeed = 3.5 # 3.5 is an initial guess, final value solved for below + fan_powers_rated = [] + eers_rated = [] (0...num_speeds).each do |i| - fan_powers_rated[i] = fan_power * fan_powers_norm[i] - eers_Rated[i] = UnitConversions.convert(cop_maxSpeed, 'W', 'Btu/hr') * cops_norm[i] + fan_powers_rated << clg_ap.fan_power_rated * fan_powers_norm[i] + eers_rated << UnitConversions.convert(cop_max_speed, 'W', 'Btu/hr') * cops_norm[i] end - cop_maxSpeed_1 = cop_maxSpeed - cop_maxSpeed_2 = cop_maxSpeed - error = seer - calc_mshp_seer_4speed(eers_Rated, c_d, cool_capacity_ratios, cool_cfms_ton_rated, fan_powers_rated, true, cool_eir_ft_spec, cool_cap_ft_spec) + cop_max_speed_1 = cop_max_speed + cop_max_speed_2 = cop_max_speed + error = cooling_system.cooling_efficiency_seer - calc_mshp_seer(eers_rated, clg_ap.cool_c_d, clg_ap.cool_capacity_ratios, clg_ap.cool_rated_cfm_per_ton, fan_powers_rated, clg_ap.cool_eir_ft_spec, clg_ap.cool_cap_ft_spec) error1 = error error2 = error @@ -3646,12 +3241,12 @@ def self.calc_mshp_cool_eirs(runner, seer, fan_power, c_d, num_speeds, cool_capa (1...itmax + 1).each do |n| final_n = n (0...num_speeds).each do |i| - eers_Rated[i] = UnitConversions.convert(cop_maxSpeed, 'W', 'Btu/hr') * cops_norm[i] + eers_rated[i] = UnitConversions.convert(cop_max_speed, 'W', 'Btu/hr') * cops_norm[i] end - error = seer - calc_mshp_seer_4speed(eers_Rated, c_d, cool_capacity_ratios, cool_cfms_ton_rated, fan_powers_rated, true, cool_eir_ft_spec, cool_cap_ft_spec) + error = cooling_system.cooling_efficiency_seer - calc_mshp_seer(eers_rated, clg_ap.cool_c_d, clg_ap.cool_capacity_ratios, clg_ap.cool_rated_cfm_per_ton, fan_powers_rated, clg_ap.cool_eir_ft_spec, clg_ap.cool_cap_ft_spec) - cop_maxSpeed, cvg, cop_maxSpeed_1, error1, cop_maxSpeed_2, error2 = MathTools.Iterate(cop_maxSpeed, error, cop_maxSpeed_1, error1, cop_maxSpeed_2, error2, n, cvg) + cop_max_speed, cvg, cop_max_speed_1, error1, cop_max_speed_2, error2 = MathTools.Iterate(cop_max_speed, error, cop_max_speed_1, error1, cop_max_speed_2, error2, n, cvg) if cvg break @@ -3659,19 +3254,55 @@ def self.calc_mshp_cool_eirs(runner, seer, fan_power, c_d, num_speeds, cool_capa end if (not cvg) || (final_n > itmax) - cop_maxSpeed = UnitConversions.convert(0.547 * seer - 0.104, 'Btu/hr', 'W') # Correlation developed from JonW's MatLab scripts. Only used if an eer cannot be found. - runner.registerWarning('Mini-split heat pump cop iteration failed to converge. Setting to default value.') + cop_max_speed = UnitConversions.convert(0.547 * cooling_system.cooling_efficiency_seer - 0.104, 'Btu/hr', 'W') # Correlation developed from JonW's MatLab scripts. Only used if an eer cannot be found. end + clg_ap.cool_rated_eirs = [] + (0...num_speeds).each do |i| - cool_eirs[i] = calc_eir_from_eer(UnitConversions.convert(cop_maxSpeed, 'W', 'Btu/hr') * cops_norm[i], fan_powers_rated[i]) + clg_ap.cool_rated_eirs << calc_eir_from_eer(UnitConversions.convert(cop_max_speed, 'W', 'Btu/hr') * cops_norm[i], fan_powers_rated[i]) end + end - return cool_eirs + def self.set_mshp_downselected_speed_indices(heat_pump) + hp_ap = heat_pump.additional_properties + + # Down-select to speed indices + + # Cooling + hp_ap.cool_cap_ft_spec = hp_ap.cool_cap_ft_spec.select.with_index { |x, i| hp_ap.speed_indices.include? i } + hp_ap.cool_eir_ft_spec = hp_ap.cool_eir_ft_spec.select.with_index { |x, i| hp_ap.speed_indices.include? i } + hp_ap.cool_cap_fflow_spec = hp_ap.cool_cap_fflow_spec.select.with_index { |x, i| hp_ap.speed_indices.include? i } + hp_ap.cool_eir_fflow_spec = hp_ap.cool_eir_fflow_spec.select.with_index { |x, i| hp_ap.speed_indices.include? i } + hp_ap.cool_plf_fplr_spec = hp_ap.cool_plf_fplr_spec.select.with_index { |x, i| hp_ap.speed_indices.include? i } + hp_ap.cool_rated_cfm_per_ton = hp_ap.cool_rated_cfm_per_ton.select.with_index { |x, i| hp_ap.speed_indices.include? i } + hp_ap.cool_capacity_ratios = hp_ap.cool_capacity_ratios.select.with_index { |x, i| hp_ap.speed_indices.include? i } + hp_ap.cool_rated_shrs_gross = hp_ap.cool_rated_shrs_gross.select.with_index { |x, i| hp_ap.speed_indices.include? i } + hp_ap.cool_rated_eirs = hp_ap.cool_rated_eirs.select.with_index { |x, i| hp_ap.speed_indices.include? i } + hp_ap.cool_fan_speed_ratios = [] + for i in 0..(hp_ap.speed_indices.size - 1) + hp_ap.cool_fan_speed_ratios << hp_ap.cool_rated_cfm_per_ton[i] * hp_ap.cool_capacity_ratios[i] / (hp_ap.cool_rated_cfm_per_ton[-1] * hp_ap.cool_capacity_ratios[-1]) + end + + if heat_pump.is_a? HPXML::HeatPump # Skip for mini-split air conditioner + # Heating + hp_ap.heat_eir_ft_spec = hp_ap.heat_eir_ft_spec.select.with_index { |x, i| hp_ap.speed_indices.include? i } + hp_ap.heat_cap_fflow_spec = hp_ap.heat_cap_fflow_spec.select.with_index { |x, i| hp_ap.speed_indices.include? i } + hp_ap.heat_eir_fflow_spec = hp_ap.heat_eir_fflow_spec.select.with_index { |x, i| hp_ap.speed_indices.include? i } + hp_ap.heat_cap_ft_spec = hp_ap.heat_cap_ft_spec.select.with_index { |x, i| hp_ap.speed_indices.include? i } + hp_ap.heat_plf_fplr_spec = hp_ap.heat_plf_fplr_spec.select.with_index { |x, i| hp_ap.speed_indices.include? i } + hp_ap.heat_rated_cfm_per_ton = hp_ap.heat_rated_cfm_per_ton.select.with_index { |x, i| hp_ap.speed_indices.include? i } + hp_ap.heat_capacity_ratios = hp_ap.heat_capacity_ratios.select.with_index { |x, i| hp_ap.speed_indices.include? i } + hp_ap.heat_rated_eirs = hp_ap.heat_rated_eirs.select.with_index { |x, i| hp_ap.speed_indices.include? i } + hp_ap.heat_fan_speed_ratios = [] + for i in 0..(hp_ap.speed_indices.size - 1) + hp_ap.heat_fan_speed_ratios << hp_ap.heat_rated_cfm_per_ton[i] * hp_ap.heat_capacity_ratios[i] / (hp_ap.heat_rated_cfm_per_ton[-1] * hp_ap.heat_capacity_ratios[-1]) + end + end end - def self.calc_mshp_seer_4speed(eer_a, c_d, capacity_ratio, cfm_tons, fan_power_rated, is_heat_pump, cool_eir_ft_spec, cool_cap_ft_spec) - n_max = (eer_a.length - 1.0) - 3.0 # Don't use max speed; FIXME: this is different than calc_mshp_hspf_4speed? + def self.calc_mshp_seer(eer_a, c_d, capacity_ratio, cfm_tons, fan_power_rated, cool_eir_ft_spec, cool_cap_ft_spec) + n_max = (eer_a.length - 1.0) - 3.0 # Don't use max speed; FIXME: this is different than calc_mshp_hspf? n_min = 0 n_int = (n_min + (n_max - n_min) / 3.0).ceil.to_i @@ -3696,17 +3327,17 @@ def self.calc_mshp_seer_4speed(eer_a, c_d, capacity_ratio, cfm_tons, fan_power_r q_B1 = capacity_ratio[n_min] * MathTools.biquadratic(wBin, tout_B, cool_cap_ft_spec[n_min]) q_F1 = capacity_ratio[n_min] * MathTools.biquadratic(wBin, tout_F, cool_cap_ft_spec[n_min]) - q_A2_net = q_A2 - fan_power_rated[n_max] * UnitConversions.convert(1, 'W', 'Btu/hr') * cfm_tons[n_max] / UnitConversions.convert(1, 'ton', 'Btu/hr') - q_B2_net = q_B2 - fan_power_rated[n_max] * UnitConversions.convert(1, 'W', 'Btu/hr') * cfm_tons[n_max] / UnitConversions.convert(1, 'ton', 'Btu/hr') - q_Ev_net = q_Ev - fan_power_rated[n_int] * UnitConversions.convert(1, 'W', 'Btu/hr') * cfm_tons[n_int] / UnitConversions.convert(1, 'ton', 'Btu/hr') - q_B1_net = q_B1 - fan_power_rated[n_min] * UnitConversions.convert(1, 'W', 'Btu/hr') * cfm_tons[n_min] / UnitConversions.convert(1, 'ton', 'Btu/hr') - q_F1_net = q_F1 - fan_power_rated[n_min] * UnitConversions.convert(1, 'W', 'Btu/hr') * cfm_tons[n_min] / UnitConversions.convert(1, 'ton', 'Btu/hr') + q_A2_net = q_A2 - fan_power_rated[n_max] * UnitConversions.convert(1, 'W', 'Btu/hr') * (cfm_tons[n_max] * capacity_ratio[n_max]) / UnitConversions.convert(1, 'ton', 'Btu/hr') + q_B2_net = q_B2 - fan_power_rated[n_max] * UnitConversions.convert(1, 'W', 'Btu/hr') * (cfm_tons[n_max] * capacity_ratio[n_max]) / UnitConversions.convert(1, 'ton', 'Btu/hr') + q_Ev_net = q_Ev - fan_power_rated[n_int] * UnitConversions.convert(1, 'W', 'Btu/hr') * (cfm_tons[n_int] * capacity_ratio[n_int]) / UnitConversions.convert(1, 'ton', 'Btu/hr') + q_B1_net = q_B1 - fan_power_rated[n_min] * UnitConversions.convert(1, 'W', 'Btu/hr') * (cfm_tons[n_min] * capacity_ratio[n_min]) / UnitConversions.convert(1, 'ton', 'Btu/hr') + q_F1_net = q_F1 - fan_power_rated[n_min] * UnitConversions.convert(1, 'W', 'Btu/hr') * (cfm_tons[n_min] * capacity_ratio[n_min]) / UnitConversions.convert(1, 'ton', 'Btu/hr') - p_A2 = UnitConversions.convert(q_A2 * eir_A2, 'Btu', 'Wh') + fan_power_rated[n_max] * cfm_tons[n_max] / UnitConversions.convert(1, 'ton', 'Btu/hr') - p_B2 = UnitConversions.convert(q_B2 * eir_B2, 'Btu', 'Wh') + fan_power_rated[n_max] * cfm_tons[n_max] / UnitConversions.convert(1, 'ton', 'Btu/hr') - p_Ev = UnitConversions.convert(q_Ev * eir_Ev, 'Btu', 'Wh') + fan_power_rated[n_int] * cfm_tons[n_int] / UnitConversions.convert(1, 'ton', 'Btu/hr') - p_B1 = UnitConversions.convert(q_B1 * eir_B1, 'Btu', 'Wh') + fan_power_rated[n_min] * cfm_tons[n_min] / UnitConversions.convert(1, 'ton', 'Btu/hr') - p_F1 = UnitConversions.convert(q_F1 * eir_F1, 'Btu', 'Wh') + fan_power_rated[n_min] * cfm_tons[n_min] / UnitConversions.convert(1, 'ton', 'Btu/hr') + p_A2 = UnitConversions.convert(q_A2 * eir_A2, 'Btu', 'Wh') + fan_power_rated[n_max] * (cfm_tons[n_max] * capacity_ratio[n_max]) / UnitConversions.convert(1, 'ton', 'Btu/hr') + p_B2 = UnitConversions.convert(q_B2 * eir_B2, 'Btu', 'Wh') + fan_power_rated[n_max] * (cfm_tons[n_max] * capacity_ratio[n_max]) / UnitConversions.convert(1, 'ton', 'Btu/hr') + p_Ev = UnitConversions.convert(q_Ev * eir_Ev, 'Btu', 'Wh') + fan_power_rated[n_int] * (cfm_tons[n_int] * capacity_ratio[n_int]) / UnitConversions.convert(1, 'ton', 'Btu/hr') + p_B1 = UnitConversions.convert(q_B1 * eir_B1, 'Btu', 'Wh') + fan_power_rated[n_min] * (cfm_tons[n_min] * capacity_ratio[n_min]) / UnitConversions.convert(1, 'ton', 'Btu/hr') + p_F1 = UnitConversions.convert(q_F1 * eir_F1, 'Btu', 'Wh') + fan_power_rated[n_min] * (cfm_tons[n_min] * capacity_ratio[n_min]) / UnitConversions.convert(1, 'ton', 'Btu/hr') q_k1_87 = q_F1_net + (q_B1_net - q_F1_net) / (82.0 - 67.0) * (87 - 67.0) q_k2_87 = q_B2_net + (q_A2_net - q_B2_net) / (95.0 - 82.0) * (87.0 - 82.0) @@ -3776,36 +3407,37 @@ def self.calc_mshp_seer_4speed(eer_a, c_d, capacity_ratio, cfm_tons, fan_power_r return seer end - def self.calc_mshp_cfms_ton_heating(cap_min_per, cap_max_per, cfm_ton_min, cfm_ton_max, num_speeds) - heat_capacity_ratios = [0.0] * num_speeds - heat_cfms_ton_rated = [0.0] * num_speeds + def self.set_heat_rated_cfm_per_ton_mshp(heat_pump, num_speeds) + hp_ap = heat_pump.additional_properties + + hp_ap.heat_capacity_ratios = [] + hp_ap.heat_rated_cfm_per_ton = [] (0...num_speeds).each do |i| - heat_capacity_ratios[i] = cap_min_per + i * (cap_max_per - cap_min_per) / (num_speeds - 1) - heat_cfms_ton_rated[i] = cfm_ton_min + i * (cfm_ton_max - cfm_ton_min) / (num_speeds - 1) + hp_ap.heat_capacity_ratios << hp_ap.heat_min_capacity_ratio + i * (hp_ap.heat_max_capacity_ratio - hp_ap.heat_min_capacity_ratio) / (num_speeds - 1) + hp_ap.heat_rated_cfm_per_ton << (hp_ap.heat_min_cfm_per_ton * hp_ap.heat_min_capacity_ratio + i * (hp_ap.heat_max_cfm_per_ton * hp_ap.heat_max_capacity_ratio - hp_ap.heat_min_cfm_per_ton * hp_ap.heat_min_capacity_ratio) / (num_speeds - 1)) / hp_ap.heat_capacity_ratios[-1] end - - return heat_cfms_ton_rated, heat_capacity_ratios end - def self.calc_mshp_heat_eirs(runner, hspf, fan_power, hp_min_temp, c_d, cool_cfms_ton_rated, num_speeds, heat_capacity_ratios, heat_cfms_ton_rated, heat_eir_ft_spec, heat_cap_ft_spec) - cops_norm = [1.792, 1.502, 1.308, 1.207, 1.145, 1.105, 1.077, 1.056, 1.041, 1] - fan_powers_norm = [0.577, 0.625, 0.673, 0.720, 0.768, 0.814, 0.861, 0.907, 0.954, 1] + def self.set_heat_rated_eirs_mshp(heat_pump, num_speeds) + hp_ap = heat_pump.additional_properties + + cops_norm = [1.792, 1.502, 1.308, 1.207, 1.145, 1.105, 1.077, 1.056, 1.041, 1.0] + fan_powers_norm = [0.577, 0.625, 0.673, 0.720, 0.768, 0.814, 0.861, 0.907, 0.954, 1.0] - heat_eirs = [0.0] * num_speeds - fan_powers_rated = [0.0] * num_speeds - cops_rated = [0.0] * num_speeds + cop_max_speed = 3.25 # 3.35 is an initial guess, final value solved for below - cop_maxSpeed = 3.25 # 3.35 is an initial guess, final value solved for below + fan_powers_rated = [] + cops_rated = [] (0...num_speeds).each do |i| - fan_powers_rated[i] = fan_power * fan_powers_norm[i] - cops_rated[i] = cop_maxSpeed * cops_norm[i] + fan_powers_rated << hp_ap.fan_power_rated * fan_powers_norm[i] + cops_rated << cop_max_speed * cops_norm[i] end - cop_maxSpeed_1 = cop_maxSpeed - cop_maxSpeed_2 = cop_maxSpeed - error = hspf - calc_mshp_hspf_4speed(cops_rated, c_d, heat_capacity_ratios, heat_cfms_ton_rated, fan_powers_rated, hp_min_temp, heat_eir_ft_spec, heat_cap_ft_spec) + cop_max_speed_1 = cop_max_speed + cop_max_speed_2 = cop_max_speed + error = heat_pump.heating_efficiency_hspf - calc_mshp_hspf(cops_rated, hp_ap.heat_c_d, hp_ap.heat_capacity_ratios, hp_ap.heat_rated_cfm_per_ton, fan_powers_rated, hp_ap.hp_min_temp, hp_ap.heat_eir_ft_spec, hp_ap.heat_cap_ft_spec) error1 = error error2 = error @@ -3817,12 +3449,12 @@ def self.calc_mshp_heat_eirs(runner, hspf, fan_power, hp_min_temp, c_d, cool_cfm (1...itmax + 1).each do |n| final_n = n (0...num_speeds).each do |i| - cops_rated[i] = cop_maxSpeed * cops_norm[i] + cops_rated[i] = cop_max_speed * cops_norm[i] end - error = hspf - calc_mshp_hspf_4speed(cops_rated, c_d, heat_capacity_ratios, cool_cfms_ton_rated, fan_powers_rated, hp_min_temp, heat_eir_ft_spec, heat_cap_ft_spec) + error = heat_pump.heating_efficiency_hspf - calc_mshp_hspf(cops_rated, hp_ap.heat_c_d, hp_ap.heat_capacity_ratios, hp_ap.heat_rated_cfm_per_ton, fan_powers_rated, hp_ap.hp_min_temp, hp_ap.heat_eir_ft_spec, hp_ap.heat_cap_ft_spec) - cop_maxSpeed, cvg, cop_maxSpeed_1, error1, cop_maxSpeed_2, error2 = MathTools.Iterate(cop_maxSpeed, error, cop_maxSpeed_1, error1, cop_maxSpeed_2, error2, n, cvg) + cop_max_speed, cvg, cop_max_speed_1, error1, cop_max_speed_2, error2 = MathTools.Iterate(cop_max_speed, error, cop_max_speed_1, error1, cop_max_speed_2, error2, n, cvg) if cvg break @@ -3830,19 +3462,62 @@ def self.calc_mshp_heat_eirs(runner, hspf, fan_power, hp_min_temp, c_d, cool_cfm end if (not cvg) || (final_n > itmax) - cop_maxSpeed = UnitConversions.convert(0.4174 * hspf - 1.1134, 'Btu/hr', 'W') # Correlation developed from JonW's MatLab scripts. Only used if a cop cannot be found. - runner.registerWarning('Mini-split heat pump cop iteration failed to converge. Setting to default value.') + cop_max_speed = UnitConversions.convert(0.4174 * hspf - 1.1134, 'Btu/hr', 'W') # Correlation developed from JonW's MatLab scripts. Only used if a cop cannot be found. end + hp_ap.heat_rated_eirs = [] (0...num_speeds).each do |i| - heat_eirs[i] = calc_eir_from_cop(cop_maxSpeed * cops_norm[i], fan_powers_rated[i]) + hp_ap.heat_rated_eirs << calc_eir_from_cop(cop_max_speed * cops_norm[i], fan_powers_rated[i]) end + end + + def self.set_gshp_assumptions(heat_pump, weather) + hp_ap = heat_pump.additional_properties - return heat_eirs + hp_ap.design_chw = [85.0, weather.design.CoolingDrybulb - 15.0, weather.data.AnnualAvgDrybulb + 10.0].max # Temperature of water entering indoor coil,use 85F as lower bound + hp_ap.design_delta_t = 10.0 + hp_ap.fluid_type = Constants.FluidPropyleneGlycol + hp_ap.frac_glycol = 0.3 + if hp_ap.fluid_type == Constants.FluidWater + hp_ap.design_hw = [45.0, weather.design.HeatingDrybulb + 35.0, weather.data.AnnualAvgDrybulb - 10.0].max # Temperature of fluid entering indoor coil, use 45F as lower bound for water + else + hp_ap.design_hw = [35.0, weather.design.HeatingDrybulb + 35.0, weather.data.AnnualAvgDrybulb - 10.0].min # Temperature of fluid entering indoor coil, use 35F as upper bound + end + hp_ap.ground_conductivity = 0.6 # Btu/h-ft-R + hp_ap.ground_diffusivity = 0.0208 + hp_ap.grout_conductivity = 0.4 # Btu/h-ft-R + hp_ap.bore_diameter = 5.0 # in + hp_ap.pipe_size = 0.75 # in + # Pipe nominal size conversion to pipe outside diameter and inside diameter, + # only pipe sizes <= 2" are used here with DR11 (dimension ratio), + if hp_ap.pipe_size == 0.75 # 3/4" pipe + hp_ap.pipe_od = 1.050 # in + hp_ap.pipe_id = 0.859 # in + elsif hp_ap.pipe_size == 1.0 # 1" pipe + hp_ap.pipe_od = 1.315 # in + hp_ap.pipe_id = 1.076 # in + elsif hp_ap.pipe_size == 1.25 # 1-1/4" pipe + hp_ap.pipe_od = 1.660 # in + hp_ap.pipe_id = 1.358 # in + end + hp_ap.pipe_cond = 0.23 # Btu/h-ft-R; Pipe thermal conductivity, default to high density polyethylene + hp_ap.u_tube_spacing_type = 'b' + # Calculate distance between pipes + if hp_ap.u_tube_spacing_type == 'as' + # Two tubes, spaced 1/8” apart at the center of the borehole + hp_ap.u_tube_spacing = 0.125 + elsif hp_ap.u_tube_spacing_type == 'b' + # Two tubes equally spaced between the borehole edges + hp_ap.u_tube_spacing = 0.9661 + elsif hp_ap.u_tube_spacing_type == 'c' + # Both tubes placed against outer edge of borehole + hp_ap.u_tube_spacing = hp_ap.bore_diameter - 2 * hp_ap.pipe_od + end + hp_ap.shank_spacing = hp_ap.u_tube_spacing + hp_ap.pipe_od # Distance from center of pipe to center of pipe end - def self.calc_mshp_hspf_4speed(cop_47, c_d, capacity_ratio, cfm_tons, fan_power_rated, hp_min_temp, heat_eir_ft_spec, heat_cap_ft_spec) - n_max = (cop_47.length - 1.0) #-3 # Don't use max speed; FIXME: this is different than calc_mshp_seer_4speed? + def self.calc_mshp_hspf(cop_47, c_d, capacity_ratio, cfm_tons, fan_power_rated, hp_min_temp, heat_eir_ft_spec, heat_cap_ft_spec) + n_max = (cop_47.length - 1.0) #-3 # Don't use max speed; FIXME: this is different than calc_mshp_seer? n_min = 0 n_int = (n_min + (n_max - n_min) / 3.0).ceil.to_i @@ -3868,17 +3543,17 @@ def self.calc_mshp_hspf_4speed(cop_47, c_d, capacity_ratio, cfm_tons, fan_power_ q_H1_1 = capacity_ratio[n_min] q_H0_1 = q_H1_1 * MathTools.biquadratic(tin, tout_0, heat_cap_ft_spec[n_min]) - q_H1_2_net = q_H1_2 + fan_power_rated[n_max] * UnitConversions.convert(1, 'W', 'Btu/hr') * cfm_tons[n_max] / UnitConversions.convert(1, 'ton', 'Btu/hr') - q_H3_2_net = q_H3_2 + fan_power_rated[n_max] * UnitConversions.convert(1, 'W', 'Btu/hr') * cfm_tons[n_max] / UnitConversions.convert(1, 'ton', 'Btu/hr') - q_H2_v_net = q_H2_v + fan_power_rated[n_int] * UnitConversions.convert(1, 'W', 'Btu/hr') * cfm_tons[n_int] / UnitConversions.convert(1, 'ton', 'Btu/hr') - q_H1_1_net = q_H1_1 + fan_power_rated[n_min] * UnitConversions.convert(1, 'W', 'Btu/hr') * cfm_tons[n_min] / UnitConversions.convert(1, 'ton', 'Btu/hr') - q_H0_1_net = q_H0_1 + fan_power_rated[n_min] * UnitConversions.convert(1, 'W', 'Btu/hr') * cfm_tons[n_min] / UnitConversions.convert(1, 'ton', 'Btu/hr') + q_H1_2_net = q_H1_2 + fan_power_rated[n_max] * UnitConversions.convert(1, 'W', 'Btu/hr') * cfm_tons[n_max] * capacity_ratio[n_max] / UnitConversions.convert(1, 'ton', 'Btu/hr') + q_H3_2_net = q_H3_2 + fan_power_rated[n_max] * UnitConversions.convert(1, 'W', 'Btu/hr') * cfm_tons[n_max] * capacity_ratio[n_max] / UnitConversions.convert(1, 'ton', 'Btu/hr') + q_H2_v_net = q_H2_v + fan_power_rated[n_int] * UnitConversions.convert(1, 'W', 'Btu/hr') * cfm_tons[n_int] * capacity_ratio[n_int] / UnitConversions.convert(1, 'ton', 'Btu/hr') + q_H1_1_net = q_H1_1 + fan_power_rated[n_min] * UnitConversions.convert(1, 'W', 'Btu/hr') * cfm_tons[n_min] * capacity_ratio[n_min] / UnitConversions.convert(1, 'ton', 'Btu/hr') + q_H0_1_net = q_H0_1 + fan_power_rated[n_min] * UnitConversions.convert(1, 'W', 'Btu/hr') * cfm_tons[n_min] * capacity_ratio[n_min] / UnitConversions.convert(1, 'ton', 'Btu/hr') - p_H1_2 = q_H1_2 * eir_H1_2 + fan_power_rated[n_max] * UnitConversions.convert(1, 'W', 'Btu/hr') * cfm_tons[n_max] / UnitConversions.convert(1, 'ton', 'Btu/hr') - p_H3_2 = q_H3_2 * eir_H3_2 + fan_power_rated[n_max] * UnitConversions.convert(1, 'W', 'Btu/hr') * cfm_tons[n_max] / UnitConversions.convert(1, 'ton', 'Btu/hr') - p_H2_v = q_H2_v * eir_H2_v + fan_power_rated[n_int] * UnitConversions.convert(1, 'W', 'Btu/hr') * cfm_tons[n_int] / UnitConversions.convert(1, 'ton', 'Btu/hr') - p_H1_1 = q_H1_1 * eir_H1_1 + fan_power_rated[n_min] * UnitConversions.convert(1, 'W', 'Btu/hr') * cfm_tons[n_min] / UnitConversions.convert(1, 'ton', 'Btu/hr') - p_H0_1 = q_H0_1 * eir_H0_1 + fan_power_rated[n_min] * UnitConversions.convert(1, 'W', 'Btu/hr') * cfm_tons[n_min] / UnitConversions.convert(1, 'ton', 'Btu/hr') + p_H1_2 = q_H1_2 * eir_H1_2 + fan_power_rated[n_max] * UnitConversions.convert(1, 'W', 'Btu/hr') * cfm_tons[n_max] * capacity_ratio[n_max] / UnitConversions.convert(1, 'ton', 'Btu/hr') + p_H3_2 = q_H3_2 * eir_H3_2 + fan_power_rated[n_max] * UnitConversions.convert(1, 'W', 'Btu/hr') * cfm_tons[n_max] * capacity_ratio[n_max] / UnitConversions.convert(1, 'ton', 'Btu/hr') + p_H2_v = q_H2_v * eir_H2_v + fan_power_rated[n_int] * UnitConversions.convert(1, 'W', 'Btu/hr') * cfm_tons[n_int] * capacity_ratio[n_int] / UnitConversions.convert(1, 'ton', 'Btu/hr') + p_H1_1 = q_H1_1 * eir_H1_1 + fan_power_rated[n_min] * UnitConversions.convert(1, 'W', 'Btu/hr') * cfm_tons[n_min] * capacity_ratio[n_min] / UnitConversions.convert(1, 'ton', 'Btu/hr') + p_H0_1 = q_H0_1 * eir_H0_1 + fan_power_rated[n_min] * UnitConversions.convert(1, 'W', 'Btu/hr') * cfm_tons[n_min] * capacity_ratio[n_min] / UnitConversions.convert(1, 'ton', 'Btu/hr') q_H35_2 = 0.9 * (q_H3_2_net + 0.6 * (q_H1_2_net - q_H3_2_net)) p_H35_2 = 0.985 * (p_H3_2 + 0.6 * (p_H1_2 - p_H3_2)) @@ -3991,29 +3666,37 @@ def self.get_sequential_load_schedule(model, value) return s end - def self.get_crankcase_assumptions(fraction_cool_load_served) - crankcase_kw = 0.05 * fraction_cool_load_served # From RESNET Publication No. 002-2017 - crankcase_temp = 50.0 # From RESNET Publication No. 002-2017 - return crankcase_kw, crankcase_temp + def self.set_crankcase_assumptions(hvac_system) + hvac_ap = hvac_system.additional_properties + + if hvac_system.is_a?(HPXML::HeatPump) && (hvac_system.fraction_heat_load_served <= 0) + hvac_ap.crankcase_kw = 0.0 + hvac_ap.crankcase_temp = nil + elsif hvac_system.is_a?(HPXML::HeatPump) && (hvac_system.heat_pump_type == HPXML::HVACTypeHeatPumpMiniSplit) + hvac_ap.crankcase_kw = 0.0 + hvac_ap.crankcase_temp = nil + elsif hvac_system.is_a?(HPXML::CoolingSystem) && (hvac_system.cooling_system_type == HPXML::HVACTypeMiniSplitAirConditioner) + hvac_ap.crankcase_kw = 0.0 + hvac_ap.crankcase_temp = nil + else + hvac_ap.crankcase_kw = 0.05 * hvac_system.fraction_cool_load_served # From RESNET Publication No. 002-2017 + hvac_ap.crankcase_temp = 50.0 # From RESNET Publication No. 002-2017 + end end - def self.get_heat_pump_temp_assumptions(heat_pump) - # Calculates: - # 1. Minimum temperature for HP compressor operation - # 2. Maximum temperature for HP supplemental heating operation + def self.set_heat_pump_temperatures(heat_pump) + hp_ap = heat_pump.additional_properties + + # Sets: + # 1. Minimum temperature (deg-F) for HP compressor operation + # 2. Maximum temperature (deg-F) for HP supplemental heating operation if not heat_pump.backup_heating_switchover_temp.nil? - hp_min_temp = heat_pump.backup_heating_switchover_temp - supp_max_temp = heat_pump.backup_heating_switchover_temp + hp_ap.hp_min_temp = heat_pump.backup_heating_switchover_temp + hp_ap.supp_max_temp = heat_pump.backup_heating_switchover_temp else - supp_max_temp = 40.0 - # Minimum temperature for Heat Pump operation: - if heat_pump.heat_pump_type == HPXML::HVACTypeHeatPumpMiniSplit - hp_min_temp = -30.0 # deg-F - else - hp_min_temp = 0.0 # deg-F - end + hp_ap.supp_max_temp = 40.0 + hp_ap.hp_min_temp = -40.0 end - return hp_min_temp, supp_max_temp end def self.get_default_duct_surface_area(duct_type, ncfl_ag, cfa_served, n_returns) @@ -4053,14 +3736,266 @@ def self.get_default_duct_locations(hpxml) return primary_duct_location, secondary_duct_location end + def self.get_installation_quality_cooling_coeff(f_chg) + if f_chg <= 0 + qgr_values = [-9.46E-01, 4.93E-02, -1.18E-03, -1.15E+00] + p_values = [-3.13E-01, 1.15E-02, 2.66E-03, -1.16E-01] + else + qgr_values = [-1.63E-01, 1.14E-02, -2.10E-04, -1.40E-01] + p_values = [2.19E-01, -5.01E-03, 9.89E-04, 2.84E-01] + end + ff_chg_values = [26.67, 35.0] + return qgr_values, p_values, ff_chg_values + end + + def self.get_installation_quality_heating_coeff(f_chg) + if f_chg <= 0 + qgr_values = [-0.0338595, 0.0202827, -2.6226343] + p_values = [0.0615649, 0.0044554, -0.2598507] + else + qgr_values = [-0.0029514, 0.0007379, -0.0064112] + p_values = [-0.0594134, 0.0159205, 1.8872153] + end + ff_chg_values = [8.33] + return qgr_values, p_values, ff_chg_values + end + + def self.apply_installation_quality(model, heating_system, cooling_system, unitary_system, htg_coil, clg_coil, control_zone) + if not cooling_system.nil? + charge_defect_ratio = cooling_system.charge_defect_ratio + cool_airflow_defect_ratio = cooling_system.airflow_defect_ratio + end + if not heating_system.nil? + heat_airflow_defect_ratio = heating_system.airflow_defect_ratio + end + return if (charge_defect_ratio.to_f.abs < 0.001) && (cool_airflow_defect_ratio.to_f.abs < 0.001) && (heat_airflow_defect_ratio.to_f.abs < 0.001) + + cool_airflow_rated_defect_ratio = [] + if (not clg_coil.nil?) && (cooling_system.fraction_cool_load_served > 0) + clg_ap = cooling_system.additional_properties + clg_cfm = cooling_system.cooling_airflow_cfm + if clg_coil.to_CoilCoolingDXSingleSpeed.is_initialized + cool_airflow_rated_defect_ratio = [UnitConversions.convert(clg_cfm, 'cfm', 'm^3/s') / clg_coil.ratedAirFlowRate.get - 1.0] + elsif clg_coil.to_CoilCoolingDXMultiSpeed.is_initialized + cool_airflow_rated_defect_ratio = clg_coil.stages.zip(clg_ap.cool_fan_speed_ratios).map { |stage, speed_ratio| UnitConversions.convert(clg_cfm * speed_ratio, 'cfm', 'm^3/s') / stage.ratedAirFlowRate.get - 1.0 } + end + end + + heat_airflow_rated_defect_ratio = [] + if (not htg_coil.nil?) && (heating_system.fraction_heat_load_served > 0) + htg_ap = heating_system.additional_properties + htg_cfm = heating_system.heating_airflow_cfm + if htg_coil.to_CoilHeatingDXSingleSpeed.is_initialized + heat_airflow_rated_defect_ratio = [UnitConversions.convert(htg_cfm, 'cfm', 'm^3/s') / htg_coil.ratedAirFlowRate.get - 1.0] + elsif htg_coil.to_CoilHeatingDXMultiSpeed.is_initialized + heat_airflow_rated_defect_ratio = htg_coil.stages.zip(htg_ap.heat_fan_speed_ratios).map { |stage, speed_ratio| UnitConversions.convert(htg_cfm * speed_ratio, 'cfm', 'm^3/s') / stage.ratedAirFlowRate.get - 1.0 } + end + end + + return if cool_airflow_rated_defect_ratio.empty? && heat_airflow_rated_defect_ratio.empty? + + obj_name = "#{unitary_system.name} install quality" + + tin_sensor = OpenStudio::Model::EnergyManagementSystemSensor.new(model, 'Zone Mean Air Temperature') + tin_sensor.setName("#{obj_name} tin s") + tin_sensor.setKeyName(control_zone.name.to_s) + + tout_sensor = OpenStudio::Model::EnergyManagementSystemSensor.new(model, 'Zone Outdoor Air Drybulb Temperature') + tout_sensor.setName("#{obj_name} tt s") + tout_sensor.setKeyName(control_zone.name.to_s) + + fault_program = OpenStudio::Model::EnergyManagementSystemProgram.new(model) + fault_program.setName("#{obj_name} program") + + f_chg = charge_defect_ratio.to_f + fault_program.addLine("Set F_CH = #{f_chg.round(3)}") + + if not cool_airflow_rated_defect_ratio.empty? + if clg_coil.is_a? OpenStudio::Model::CoilCoolingDXSingleSpeed + num_speeds = 1 + cool_cap_fff_curves = [clg_coil.totalCoolingCapacityFunctionOfFlowFractionCurve.to_CurveQuadratic.get] + cool_eir_fff_curves = [clg_coil.energyInputRatioFunctionOfFlowFractionCurve.to_CurveQuadratic.get] + elsif clg_coil.is_a? OpenStudio::Model::CoilCoolingDXMultiSpeed + num_speeds = clg_coil.stages.size + cool_cap_fff_curves = clg_coil.stages.map { |stage| stage.totalCoolingCapacityFunctionofFlowFractionCurve.to_CurveQuadratic.get } + cool_eir_fff_curves = clg_coil.stages.map { |stage| stage.energyInputRatioFunctionofFlowFractionCurve.to_CurveQuadratic.get } + else + fail 'cooling coil not supported' + end + for speed in 0..(num_speeds - 1) + cool_cap_fff_curve = cool_cap_fff_curves[speed] + cool_cap_fff_act = OpenStudio::Model::EnergyManagementSystemActuator.new(cool_cap_fff_curve, 'Curve', 'Curve Result') + cool_cap_fff_act.setName("#{obj_name} cap clg act") + + cool_eir_fff_curve = cool_eir_fff_curves[speed] + cool_eir_fff_act = OpenStudio::Model::EnergyManagementSystemActuator.new(cool_eir_fff_curve, 'Curve', 'Curve Result') + cool_eir_fff_act.setName("#{obj_name} eir clg act") + + # NOTE: heat pump (cooling) curves don't exhibit expected trends at extreme faults; + fault_program.addLine("Set a1_AF_Qgr_c = #{cool_cap_fff_curve.coefficient1Constant}") + fault_program.addLine("Set a2_AF_Qgr_c = #{cool_cap_fff_curve.coefficient2x}") + fault_program.addLine("Set a3_AF_Qgr_c = #{cool_cap_fff_curve.coefficient3xPOW2}") + fault_program.addLine("Set a1_AF_EIR_c = #{cool_eir_fff_curve.coefficient1Constant}") + fault_program.addLine("Set a2_AF_EIR_c = #{cool_eir_fff_curve.coefficient2x}") + fault_program.addLine("Set a3_AF_EIR_c = #{cool_eir_fff_curve.coefficient3xPOW2}") + + qgr_values, p_values, ff_chg_values = get_installation_quality_cooling_coeff(f_chg) + + fault_program.addLine("Set a1_CH_Qgr_c = #{qgr_values[0]}") + fault_program.addLine("Set a2_CH_Qgr_c = #{qgr_values[1]}") + fault_program.addLine("Set a3_CH_Qgr_c = #{qgr_values[2]}") + fault_program.addLine("Set a4_CH_Qgr_c = #{qgr_values[3]}") + + fault_program.addLine("Set a1_CH_P_c = #{p_values[0]}") + fault_program.addLine("Set a2_CH_P_c = #{p_values[1]}") + fault_program.addLine("Set a3_CH_P_c = #{p_values[2]}") + fault_program.addLine("Set a4_CH_P_c = #{p_values[3]}") + + ff_ch_c = 1.0 / (1.0 + (qgr_values[0] + (qgr_values[1] * ff_chg_values[0]) + (qgr_values[2] * ff_chg_values[1]) + (qgr_values[3] * f_chg)) * f_chg) + fault_program.addLine("Set FF_CH_c = #{ff_ch_c.round(3)}") + + fault_program.addLine('Set q0_CH = a1_CH_Qgr_c') + fault_program.addLine("Set q1_CH = a2_CH_Qgr_c*#{tin_sensor.name}") + fault_program.addLine("Set q2_CH = a3_CH_Qgr_c*#{tout_sensor.name}") + fault_program.addLine('Set q3_CH = a4_CH_Qgr_c*F_CH') + fault_program.addLine('Set Y_CH_Q_c = 1 + ((q0_CH+(q1_CH)+(q2_CH)+(q3_CH))*F_CH)') + + fault_program.addLine('Set q0_AF_CH = a1_AF_Qgr_c') + fault_program.addLine('Set q1_AF_CH = a2_AF_Qgr_c*FF_CH_c') + fault_program.addLine('Set q2_AF_CH = a3_AF_Qgr_c*FF_CH_c*FF_CH_c') + fault_program.addLine('Set p_CH_Q_c = Y_CH_Q_c/(q0_AF_CH+(q1_AF_CH)+(q2_AF_CH))') + + fault_program.addLine('Set p1_CH = a1_CH_P_c') + fault_program.addLine("Set p2_CH = a2_CH_P_c*#{tin_sensor.name}") + fault_program.addLine("Set p3_CH = a3_CH_P_c*#{tout_sensor.name}") + fault_program.addLine('Set p4_CH = a4_CH_P_c*F_CH') + fault_program.addLine('Set Y_CH_COP_c = Y_CH_Q_c/(1 + (p1_CH+(p2_CH)+(p3_CH)+(p4_CH))*F_CH)') + + fault_program.addLine('Set eir0_AF_CH = a1_AF_EIR_c') + fault_program.addLine('Set eir1_AF_CH = a2_AF_EIR_c*FF_CH_c') + fault_program.addLine('Set eir2_AF_CH = a3_AF_EIR_c*FF_CH_c*FF_CH_c') + fault_program.addLine('Set p_CH_COP_c = Y_CH_COP_c*(eir0_AF_CH+(eir1_AF_CH)+(eir2_AF_CH))') + + fault_program.addLine("Set FF_AF_c = 1.0 + #{cool_airflow_rated_defect_ratio[speed].round(3)}") + fault_program.addLine('Set FF_AF_comb_c = FF_CH_c * FF_AF_c') + + fault_program.addLine('Set q0_AF_comb = a1_AF_Qgr_c') + fault_program.addLine('Set q1_AF_comb = a2_AF_Qgr_c*FF_AF_comb_c') + fault_program.addLine('Set q2_AF_comb = a3_AF_Qgr_c*FF_AF_comb_c*FF_AF_comb_c') + fault_program.addLine('Set p_AF_Q_c = q0_AF_comb+(q1_AF_comb)+(q2_AF_comb)') + + fault_program.addLine('Set eir0_AF_comb = a1_AF_EIR_c') + fault_program.addLine('Set eir1_AF_comb = a2_AF_EIR_c*FF_AF_comb_c') + fault_program.addLine('Set eir2_AF_comb = a3_AF_EIR_c*FF_AF_comb_c*FF_AF_comb_c') + fault_program.addLine('Set p_AF_COP_c = 1.0/(eir0_AF_comb+(eir1_AF_comb)+(eir2_AF_comb))') + + fault_program.addLine("Set #{cool_cap_fff_act.name} = (p_CH_Q_c * p_AF_Q_c)") + fault_program.addLine("Set #{cool_eir_fff_act.name} = (1.0 / (p_CH_COP_c * p_AF_COP_c))") + end + end + + if not heat_airflow_rated_defect_ratio.empty? + + if htg_coil.is_a? OpenStudio::Model::CoilHeatingDXSingleSpeed + num_speeds = 1 + heat_cap_fff_curves = [htg_coil.totalHeatingCapacityFunctionofFlowFractionCurve.to_CurveQuadratic.get] + heat_eir_fff_curves = [htg_coil.energyInputRatioFunctionofFlowFractionCurve.to_CurveQuadratic.get] + elsif htg_coil.is_a? OpenStudio::Model::CoilHeatingDXMultiSpeed + num_speeds = htg_coil.stages.size + heat_cap_fff_curves = htg_coil.stages.map { |stage| stage.heatingCapacityFunctionofFlowFractionCurve.to_CurveQuadratic.get } + heat_eir_fff_curves = htg_coil.stages.map { |stage| stage.energyInputRatioFunctionofFlowFractionCurve.to_CurveQuadratic.get } + else + fail 'heating coil not supported' + end + for speed in 0..(num_speeds - 1) + heat_cap_fff_curve = heat_cap_fff_curves[speed] + heat_cap_fff_act = OpenStudio::Model::EnergyManagementSystemActuator.new(heat_cap_fff_curve, 'Curve', 'Curve Result') + heat_cap_fff_act.setName("#{obj_name} cap htg act") + + heat_eir_fff_curve = heat_eir_fff_curves[speed] + heat_eir_fff_act = OpenStudio::Model::EnergyManagementSystemActuator.new(heat_eir_fff_curve, 'Curve', 'Curve Result') + heat_eir_fff_act.setName("#{obj_name} eir htg act") + + fault_program.addLine("Set a1_AF_Qgr_h = #{heat_cap_fff_curve.coefficient1Constant}") + fault_program.addLine("Set a2_AF_Qgr_h = #{heat_cap_fff_curve.coefficient2x}") + fault_program.addLine("Set a3_AF_Qgr_h = #{heat_cap_fff_curve.coefficient3xPOW2}") + fault_program.addLine("Set a1_AF_EIR_h = #{heat_eir_fff_curve.coefficient1Constant}") + fault_program.addLine("Set a2_AF_EIR_h = #{heat_eir_fff_curve.coefficient2x}") + fault_program.addLine("Set a3_AF_EIR_h = #{heat_eir_fff_curve.coefficient3xPOW2}") + + qgr_values, p_values, ff_chg_values = get_installation_quality_heating_coeff(f_chg) + + fault_program.addLine("Set a1_CH_Qgr_h = #{qgr_values[0]}") + fault_program.addLine("Set a2_CH_Qgr_h = #{qgr_values[1]}") + fault_program.addLine("Set a3_CH_Qgr_h = #{qgr_values[2]}") + + fault_program.addLine("Set a1_CH_P_h = #{p_values[0]}") + fault_program.addLine("Set a2_CH_P_h = #{p_values[1]}") + fault_program.addLine("Set a3_CH_P_h = #{p_values[2]}") + + ff_ch_h = 1 / (1 + (qgr_values[0] + qgr_values[1] * ff_chg_values[0] + qgr_values[2] * f_chg) * f_chg) + fault_program.addLine("Set FF_CH_h = #{ff_ch_h.round(3)}") + + fault_program.addLine('Set qh1_CH = a1_CH_Qgr_h') + fault_program.addLine("Set qh2_CH = a2_CH_Qgr_h*#{tout_sensor.name}") + fault_program.addLine('Set qh3_CH = a3_CH_Qgr_h*F_CH') + fault_program.addLine('Set Y_CH_Q_h = 1 + ((qh1_CH+(qh2_CH)+(qh3_CH))*F_CH)') + + fault_program.addLine('Set qh0_AF_CH = a1_AF_Qgr_h') + fault_program.addLine('Set qh1_AF_CH = a2_AF_Qgr_h*FF_CH_h') + fault_program.addLine('Set qh2_AF_CH = a3_AF_Qgr_h*FF_CH_h*FF_CH_h') + fault_program.addLine('Set p_CH_Q_h = Y_CH_Q_h/(qh0_AF_CH + (qh1_AF_CH) +(qh2_AF_CH))') + + fault_program.addLine('Set ph1_CH = a1_CH_P_h') + fault_program.addLine("Set ph2_CH = a2_CH_P_h*#{tout_sensor.name}") + fault_program.addLine('Set ph3_CH = a3_CH_P_h*F_CH') + fault_program.addLine('Set Y_CH_COP_h = Y_CH_Q_h/(1 + ((ph1_CH+(ph2_CH)+(ph3_CH))*F_CH))') + + fault_program.addLine('Set eirh0_AF_CH = a1_AF_EIR_h') + fault_program.addLine('Set eirh1_AF_CH = a2_AF_EIR_h*FF_CH_h') + fault_program.addLine('Set eirh2_AF_CH = a3_AF_EIR_h*FF_CH_h*FF_CH_h') + fault_program.addLine('Set p_CH_COP_h = Y_CH_COP_h*(eirh0_AF_CH + (eirh1_AF_CH) + (eirh2_AF_CH))') + + fault_program.addLine("Set FF_AF_h = 1.0 + #{heat_airflow_rated_defect_ratio[speed].round(3)}") + fault_program.addLine('Set FF_AF_comb_h = FF_CH_h * FF_AF_h') + + fault_program.addLine('Set qh0_AF_comb = a1_AF_Qgr_h') + fault_program.addLine('Set qh1_AF_comb = a2_AF_Qgr_h*FF_AF_comb_h') + fault_program.addLine('Set qh2_AF_comb = a3_AF_Qgr_h*FF_AF_comb_h*FF_AF_comb_h') + fault_program.addLine('Set p_AF_Q_h = qh0_AF_comb+(qh1_AF_comb)+(qh2_AF_comb)') + + fault_program.addLine('Set eirh0_AF_comb = a1_AF_EIR_h') + fault_program.addLine('Set eirh1_AF_comb = a2_AF_EIR_h*FF_AF_comb_h') + fault_program.addLine('Set eirh2_AF_comb = a3_AF_EIR_h*FF_AF_comb_h*FF_AF_comb_h') + fault_program.addLine('Set p_AF_COP_h = 1.0/(eirh0_AF_comb+(eirh1_AF_comb)+(eirh2_AF_comb))') + + fault_program.addLine("Set #{heat_cap_fff_act.name} = (p_CH_Q_h * p_AF_Q_h)") + fault_program.addLine("Set #{heat_eir_fff_act.name} = 1.0 / (p_CH_COP_h * p_AF_COP_h)") + end + end + program_calling_manager = OpenStudio::Model::EnergyManagementSystemProgramCallingManager.new(model) + program_calling_manager.setName("#{obj_name} program manager") + program_calling_manager.setCallingPoint('BeginTimestepBeforePredictor') + program_calling_manager.addProgram(fault_program) + end + def self.get_default_gshp_pump_power() return 30.0 # W/ton, per ANSI/RESNET/ICC 301-2019 Section 4.4.5 (closed loop) end def self.apply_shared_systems(hpxml) - apply_shared_cooling_systems(hpxml) - apply_shared_heating_systems(hpxml) - HPXMLDefaults.apply_hvac(hpxml) + applied_clg = apply_shared_cooling_systems(hpxml) + applied_htg = apply_shared_heating_systems(hpxml) + return unless (applied_clg || applied_htg) + + # Remove WLHP if not serving heating nor cooling + hpxml.heat_pumps.each do |hp| + next unless hp.heat_pump_type == HPXML::HVACTypeHeatPumpWaterLoopToAir + next if hp.fraction_heat_load_served > 0 + next if hp.fraction_cool_load_served > 0 + + hp.delete + end # Remove any orphaned HVAC distributions hpxml.hvac_distributions.each do |hvac_distribution| @@ -4078,12 +4013,14 @@ def self.apply_shared_systems(hpxml) end def self.apply_shared_cooling_systems(hpxml) + applied = false hpxml.cooling_systems.each do |cooling_system| next unless cooling_system.is_shared_system + applied = true + wlhp = nil distribution_system = cooling_system.distribution_system distribution_type = distribution_system.distribution_system_type - hydronic_and_air_type = distribution_system.hydronic_and_air_type # Calculate air conditioner SEER equivalent n_dweq = cooling_system.number_of_units_served.to_f @@ -4095,17 +4032,16 @@ def self.apply_shared_cooling_systems(hpxml) cap = cooling_system.cooling_capacity chiller_input = UnitConversions.convert(cooling_system.cooling_efficiency_kw_per_ton * UnitConversions.convert(cap, 'Btu/hr', 'ton'), 'kW', 'W') if distribution_type == HPXML::HVACDistributionTypeHydronic - aux_dweq = 0.0 - elsif distribution_type == HPXML::HVACDistributionTypeHydronicAndAir - if hydronic_and_air_type == HPXML::HydronicAndAirTypeFanCoil - aux_dweq = cooling_system.fan_coil_watts - elsif hydronic_and_air_type == HPXML::HydronicAndAirTypeWaterLoopHeatPump - aux_dweq = cooling_system.wlhp_cooling_capacity / cooling_system.wlhp_cooling_efficiency_eer + if distribution_system.hydronic_type == HPXML::HydronicTypeWaterLoop + wlhp = hpxml.heat_pumps.select { |hp| hp.heat_pump_type == HPXML::HVACTypeHeatPumpWaterLoopToAir }[0] + aux_dweq = wlhp.cooling_capacity / wlhp.cooling_efficiency_eer else - fail "Unexpected distribution type '#{hydronic_and_air_type}' for chiller." + aux_dweq = 0.0 + end + elsif distribution_type == HPXML::HVACDistributionTypeAir + if distribution_system.air_type == HPXML::AirTypeFanCoil + aux_dweq = cooling_system.fan_coil_watts end - else - fail "Unexpected distribution type '#{distribution_type}' for chiller." end # ANSI/RESNET/ICC 301-2019 Equation 4.4-2 seer_eq = (cap - 3.41 * aux - 3.41 * aux_dweq * n_dweq) / (chiller_input + aux + aux_dweq * n_dweq) @@ -4113,16 +4049,12 @@ def self.apply_shared_cooling_systems(hpxml) elsif cooling_system.cooling_system_type == HPXML::HVACTypeCoolingTower # Cooling tower w/ water loop heat pump - if distribution_type == HPXML::HVACDistributionTypeHydronicAndAir - hydronic_and_air_type = distribution_system.hydronic_and_air_type - if hydronic_and_air_type == HPXML::HydronicAndAirTypeWaterLoopHeatPump - wlhp_cap = cooling_system.wlhp_cooling_capacity - wlhp_input = wlhp_cap / cooling_system.wlhp_cooling_efficiency_eer - else - fail "Unexpected distribution type '#{hydronic_and_air_type}' for cooling tower." + if distribution_type == HPXML::HVACDistributionTypeHydronic + if distribution_system.hydronic_type == HPXML::HydronicTypeWaterLoop + wlhp = hpxml.heat_pumps.select { |hp| hp.heat_pump_type == HPXML::HVACTypeHeatPumpWaterLoopToAir }[0] + wlhp_cap = wlhp.cooling_capacity + wlhp_input = wlhp_cap / wlhp.cooling_efficiency_eer end - else - fail "Unexpected hydronic distribution type '#{distribution_type}' for cooling tower." end # ANSI/RESNET/ICC 301-2019 Equation 4.4-3 seer_eq = (wlhp_cap - 3.41 * aux / n_dweq) / (wlhp_input + aux / n_dweq) @@ -4133,34 +4065,43 @@ def self.apply_shared_cooling_systems(hpxml) cooling_system.cooling_system_type = HPXML::HVACTypeCentralAirConditioner cooling_system.cooling_efficiency_seer = seer_eq + cooling_system.cooling_efficiency_kw_per_ton = nil cooling_system.cooling_capacity = nil # Autosize the equipment + cooling_system.is_shared_system = false + cooling_system.number_of_units_served = nil # Assign new distribution system to air conditioner if distribution_type == HPXML::HVACDistributionTypeHydronic - # Assign DSE=1 - hpxml.hvac_distributions.add(id: "#{cooling_system.id}AirDistributionSystem", - distribution_system_type: HPXML::HVACDistributionTypeDSE, - annual_cooling_dse: 1) - cooling_system.distribution_system_idref = hpxml.hvac_distributions[-1].id - elsif distribution_type == HPXML::HVACDistributionTypeHydronicAndAir - # Assign AirDistribution - hpxml.hvac_distributions << distribution_system.dup - hpxml.hvac_distributions[-1].id = "#{cooling_system.id}AirDistributionSystem" - hpxml.hvac_distributions[-1].distribution_system_type = HPXML::HVACDistributionTypeAir - cooling_system.distribution_system_idref = hpxml.hvac_distributions[-1].id + if distribution_system.hydronic_type == HPXML::HydronicTypeWaterLoop + # Assign WLHP air distribution + cooling_system.distribution_system_idref = wlhp.distribution_system_idref + wlhp.fraction_cool_load_served = 0.0 + wlhp.fraction_heat_load_served = 0.0 + else + # Assign DSE=1 + hpxml.hvac_distributions.add(id: "#{cooling_system.id}AirDistributionSystem", + distribution_system_type: HPXML::HVACDistributionTypeDSE, + annual_cooling_dse: 1.0, + annual_heating_dse: 1.0) + cooling_system.distribution_system_idref = hpxml.hvac_distributions[-1].id + end end end + + return applied end def self.apply_shared_heating_systems(hpxml) + applied = false hpxml.heating_systems.each do |heating_system| next unless heating_system.is_shared_system + applied = true distribution_system = heating_system.distribution_system distribution_type = distribution_system.distribution_system_type - hydronic_and_air_type = distribution_system.hydronic_and_air_type + hydronic_type = distribution_system.hydronic_type - if heating_system.heating_system_type == HPXML::HVACTypeBoiler && hydronic_and_air_type.to_s == HPXML::HydronicAndAirTypeWaterLoopHeatPump + if heating_system.heating_system_type == HPXML::HVACTypeBoiler && hydronic_type.to_s == HPXML::HydronicTypeWaterLoop # Shared boiler w/ water loop heat pump # Per ANSI/RESNET/ICC 301-2019 Section 4.4.7.2, model as: @@ -4169,24 +4110,125 @@ def self.apply_shared_heating_systems(hpxml) fraction_heat_load_served = heating_system.fraction_heat_load_served # Heat pump - hpxml.heat_pumps.add(id: "#{heating_system.id}_WLHP", - distribution_system_idref: heating_system.distribution_system_idref, - heat_pump_type: HPXML::HVACTypeHeatPumpWaterLoopToAir, - heat_pump_fuel: HPXML::FuelTypeElectricity, - heating_efficiency_cop: heating_system.wlhp_heating_efficiency_cop, - fraction_heat_load_served: fraction_heat_load_served * (1.0 / heating_system.wlhp_heating_efficiency_cop), - fraction_cool_load_served: 0.0) + # If this approach is ever removed, also remove code in HVACSizing.apply_hvac_loads() + wlhp = hpxml.heat_pumps.select { |hp| hp.heat_pump_type == HPXML::HVACTypeHeatPumpWaterLoopToAir }[0] + wlhp.fraction_heat_load_served = fraction_heat_load_served * (1.0 / wlhp.heating_efficiency_cop) + wlhp.fraction_cool_load_served = 0.0 # Boiler - heating_system.electric_auxiliary_energy = get_default_boiler_eae(heating_system) - heating_system.fraction_heat_load_served = fraction_heat_load_served * (1.0 - 1.0 / heating_system.wlhp_heating_efficiency_cop) - heating_system.distribution_system_idref = "#{heating_system.id}_Baseboard" - hpxml.hvac_distributions.add(id: heating_system.distribution_system_idref, - distribution_system_type: HPXML::HVACDistributionTypeHydronic, - hydronic_type: HPXML::HydronicTypeBaseboard) + heating_system.fraction_heat_load_served = fraction_heat_load_served * (1.0 - 1.0 / wlhp.heating_efficiency_cop) end heating_system.heating_capacity = nil # Autosize the equipment end + + return applied + end + + def self.set_num_speeds(hvac_system) + hvac_ap = hvac_system.additional_properties + + if hvac_system.is_a?(HPXML::CoolingSystem) && (hvac_system.cooling_system_type == HPXML::HVACTypeRoomAirConditioner) + hvac_ap.num_speeds = 1 + elsif (hvac_system.is_a?(HPXML::CoolingSystem) && (hvac_system.cooling_system_type == HPXML::HVACTypeMiniSplitAirConditioner)) || + (hvac_system.is_a?(HPXML::HeatPump) && (hvac_system.heat_pump_type == HPXML::HVACTypeHeatPumpMiniSplit)) + hvac_ap.speed_indices = [1, 3, 5, 9] # Speeds we model + hvac_ap.num_speeds = hvac_ap.speed_indices.size + elsif hvac_system.compressor_type == HPXML::HVACCompressorTypeSingleStage + hvac_ap.num_speeds = 1 + elsif hvac_system.compressor_type == HPXML::HVACCompressorTypeTwoStage + hvac_ap.num_speeds = 2 + elsif hvac_system.compressor_type == HPXML::HVACCompressorTypeVariableSpeed + hvac_ap.num_speeds = 4 + end + end + + def self.calc_rated_airflow(capacity, rated_cfm_per_ton, capacity_ratio) + return UnitConversions.convert(capacity, 'Btu/hr', 'ton') * UnitConversions.convert(rated_cfm_per_ton, 'cfm', 'm^3/s') * capacity_ratio + end + + def self.is_central_air_conditioner_and_furnace(hpxml, heating_system, cooling_system) + if not (hpxml.heating_systems.include?(heating_system) && (heating_system.heating_system_type == HPXML::HVACTypeFurnace)) + return false + end + if not (hpxml.cooling_systems.include?(cooling_system) && (cooling_system.cooling_system_type == HPXML::HVACTypeCentralAirConditioner)) + return false + end + + return true + end + + def self.get_hpxml_hvac_systems(hpxml) + # Returns a list of heating/cooling systems, incorporating whether + # multiple systems are connected to the same distribution system + # (e.g., a furnace + central air conditioner w/ the same ducts). + hvac_systems = [] + + hpxml.cooling_systems.each do |cooling_system| + heating_system = nil + if is_central_air_conditioner_and_furnace(hpxml, cooling_system.attached_heating_system, cooling_system) + heating_system = cooling_system.attached_heating_system + end + hvac_systems << { cooling: cooling_system, + heating: heating_system } + end + + hpxml.heating_systems.each do |heating_system| + if is_central_air_conditioner_and_furnace(hpxml, heating_system, heating_system.attached_cooling_system) + next # Already processed combined AC+furnace + end + hvac_systems << { cooling: nil, + heating: heating_system } + end + + hpxml.heat_pumps.each do |heat_pump| + hvac_systems << { cooling: heat_pump, + heating: heat_pump } + end + + return hvac_systems + end + + def self.ensure_nonzero_sizing_values(hpxml) + min_capacity = 1.0 # Btuh + min_airflow = 3.0 # cfm; E+ min airflow is 0.001 m3/s + hpxml.heating_systems.each do |htg_sys| + htg_sys.heating_capacity = [htg_sys.heating_capacity, min_capacity].max + htg_sys.heating_airflow_cfm = [htg_sys.heating_airflow_cfm, min_airflow].max + end + hpxml.cooling_systems.each do |clg_sys| + clg_sys.cooling_capacity = [clg_sys.cooling_capacity, min_capacity].max + clg_sys.cooling_airflow_cfm = [clg_sys.cooling_airflow_cfm, min_airflow].max + end + hpxml.heat_pumps.each do |hp_sys| + hp_sys.cooling_capacity = [hp_sys.cooling_capacity, min_capacity].max + hp_sys.cooling_airflow_cfm = [hp_sys.cooling_airflow_cfm, min_airflow].max + hp_sys.additional_properties.cooling_capacity_sensible = [hp_sys.additional_properties.cooling_capacity_sensible, min_capacity].max + hp_sys.heating_capacity = [hp_sys.heating_capacity, min_capacity].max + hp_sys.heating_airflow_cfm = [hp_sys.heating_airflow_cfm, min_airflow].max + if not hp_sys.heating_capacity_17F.nil? + hp_sys.heating_capacity_17F = [hp_sys.heating_capacity_17F, min_capacity].max + end + if not hp_sys.backup_heating_capacity.nil? + hp_sys.backup_heating_capacity = [hp_sys.backup_heating_capacity, min_capacity].max + end + end + end + + def self.get_dehumidifier_default_values(capacity) + rh_setpoint = 0.6 + if capacity <= 25.0 + ief = 0.79 + elsif capacity <= 35.0 + ief = 0.95 + elsif capacity <= 54.0 + ief = 1.04 + elsif capacity < 75.0 + ief = 1.20 + else + ief = 1.82 + end + + return { rh_setpoint: rh_setpoint, ief: ief } end end diff --git a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/hvac_sizing.rb b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/hvac_sizing.rb index d6732868..abc38d65 100644 --- a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/hvac_sizing.rb +++ b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/hvac_sizing.rb @@ -1,64 +1,54 @@ # frozen_string_literal: true class HVACSizing - def self.apply(model, runner, weather, spaces, hpxml, infilvolume, nbeds, min_neighbor_distance, debug) - @runner = runner - @hpxml = hpxml - @spaces = spaces - @cond_zone = spaces[HPXML::LocationLivingSpace].thermalZone.get - - @conditioned_heat_design_temp = 70.0 # Indoor heating design temperature according to ACCA MANUAL J - @conditioned_cool_design_temp = 75.0 # Indoor cooling design temperature according to ACCA MANUAL J - - @min_cooling_capacity = 1.0 # Btu/hr - - # Based on EnergyPlus's model for calculating SHR at off-rated conditions. This curve fit - # avoids the iterations in the actual model. It does not account for altitude or variations - # in the SHRRated. It is a function of ODB (MJ design temp) and CFM/Ton (from MJ) - @shr_biquadratic = [1.08464364, 0.002096954, 0, -0.005766327, 0, -0.000011147] + def self.calculate(weather, hpxml, cfa, nbeds, hvac_systems) + # Calculates heating/cooling design loads, and selects equipment + # values (e.g., capacities, airflows) specific to each HVAC system. + # Calculations generally follow ACCA Manual J/S. - # Inside air density - @inside_air_dens = UnitConversions.convert(weather.header.LocalPressure, 'atm', 'Btu/ft^3') / (Gas.Air.r * (Constants.AssumedInsideTemp + 460.0)) + @hpxml = hpxml process_site_calcs_and_design_temps(weather) - # Get shelter class - @shelter_class = get_shelter_class(model, min_neighbor_distance) - # Calculate loads for the conditioned thermal zone - zone_loads = process_zone_loads(model, weather, nbeds, infilvolume) - - # Display debug info - display_zone_loads(zone_loads) if debug + bldg_design_loads = DesignLoads.new + process_load_windows_skylights(bldg_design_loads, weather) + process_load_doors(bldg_design_loads, weather) + process_load_walls(bldg_design_loads, weather) + process_load_roofs(bldg_design_loads, weather) + process_load_ceilings(bldg_design_loads, weather) + process_load_floors(bldg_design_loads, weather) + process_load_slabs(bldg_design_loads, weather) + process_load_infiltration_ventilation(bldg_design_loads, weather, cfa) + process_load_internal_gains(bldg_design_loads, nbeds) # Aggregate zone loads into initial loads - init_loads = aggregate_zone_loads(zone_loads) - - # Get HVAC system info - hvacs = get_hvacs(model) + aggregate_loads(bldg_design_loads) - hvacs.each do |hvac| - # Init - hvac_init_loads = init_loads.dup - calculate_hvac_temperatures(hvac_init_loads, hvac) - apply_hvac_load_fractions(hvac_init_loads, hvac) - apply_hp_sizing_logic(hvac_init_loads, hvac) + # Loop through each HVAC system + all_hvac_sizing_values = {} + hvac_systems.each do |hvac_system| + hvac = get_hvac_information(hvac_system) - # Calculate final HVAC capacity/airflow - hvac_final_values = FinalValues.new - process_duct_loads_heating(hvac_final_values, weather, hvac, hvac_init_loads.Heat) - process_duct_loads_cooling(hvac_final_values, weather, hvac, hvac_init_loads.Cool_Sens, hvac_init_loads.Cool_Lat) - process_equipment_adjustments(hvac_final_values, weather, hvac) - process_fixed_equipment(hvac_final_values, hvac) - process_ground_loop(hvac_final_values, weather, hvac) - process_finalize(hvac_final_values, zone_loads, weather, hvac) + # Add duct losses + apply_hvac_temperatures(hvac, bldg_design_loads) + apply_load_ducts_heating(bldg_design_loads, weather, hvac) + apply_load_ducts_cooling(bldg_design_loads, weather, hvac) - # Set OpenStudio object values - set_object_values(model, hvac, hvac_final_values) + # Calculate equipment values + hvac_sizing_values = HVACSizingValues.new + apply_hvac_loads(hvac, hvac_sizing_values, bldg_design_loads) + apply_hvac_heat_pump_logic(hvac_sizing_values, hvac) + apply_hvac_equipment_adjustments(hvac_sizing_values, weather, hvac, cfa) + apply_hvac_installation_quality(hvac_sizing_values, weather, hvac) + apply_hvac_fixed_capacities(hvac_sizing_values, hvac) + apply_hvac_ground_loop(hvac_sizing_values, weather, hvac) + apply_hvac_finalize_airflows(hvac_sizing_values, weather, hvac) - # Display debug info - display_hvac_final_values_results(hvac_final_values, hvac) if debug + all_hvac_sizing_values[hvac_system] = hvac_sizing_values end + + return bldg_design_loads, all_hvac_sizing_values end private @@ -72,8 +62,8 @@ def self.process_site_calcs_and_design_temps(weather) @daily_range_temp_adjust = [4, 0, -5] # Manual J inside conditions - @cool_setpoint = 75 - @heat_setpoint = 70 + @cool_setpoint = 75.0 + @heat_setpoint = 70.0 @cool_design_grains = UnitConversions.convert(weather.design.CoolingHumidityRatio, 'lbm/lbm', 'grains') @@ -110,31 +100,49 @@ def self.process_site_calcs_and_design_temps(weather) @enthalpy_indoor_cooling = (1.006 * db_indoor_degC + hr_indoor_cooling * (2501.0 + 1.86 * db_indoor_degC)) * UnitConversions.convert(1.0, 'kJ', 'Btu') * UnitConversions.convert(1.0, 'lbm', 'kg') @wetbulb_outdoor_cooling = weather.design.CoolingWetbulb + # Inside air density + avg_setpoint = (@cool_setpoint + @heat_setpoint) / 2.0 + @inside_air_dens = UnitConversions.convert(weather.header.LocalPressure, 'atm', 'Btu/ft^3') / (Gas.Air.r * (avg_setpoint + 460.0)) + # Design Temperatures @cool_design_temps = {} @heat_design_temps = {} - @cool_design_temps[HPXML::LocationOutside] = weather.design.CoolingDrybulb - @heat_design_temps[HPXML::LocationOutside] = weather.design.HeatingDrybulb - - [HPXML::LocationOtherHousingUnit, HPXML::LocationOtherHeatedSpace, HPXML::LocationOtherMultifamilyBufferSpace, - HPXML::LocationOtherNonFreezingSpace, HPXML::LocationExteriorWall, HPXML::LocationUnderSlab].each do |space_type| - @heat_design_temps[space_type] = calculate_scheduled_space_design_temps(space_type, @heat_setpoint, weather.design.HeatingDrybulb, weather.data.GroundMonthlyTemps.min) - @cool_design_temps[space_type] = calculate_scheduled_space_design_temps(space_type, @cool_setpoint, weather.design.CoolingDrybulb, weather.data.GroundMonthlyTemps.max) + space_types = [] + (@hpxml.roofs + @hpxml.rim_joists + @hpxml.walls + @hpxml.foundation_walls + @hpxml.frame_floors + @hpxml.slabs).each do |surface| + space_types << surface.interior_adjacent_to + space_types << surface.exterior_adjacent_to + end + @hpxml.hvac_distributions.each do |hvac_dist| + hvac_dist.ducts.each do |duct| + space_types << duct.duct_location + end end - @spaces.each do |space_type, space| - next unless space.is_a? OpenStudio::Model::Space + space_types.uniq.each do |space_type| + next if [HPXML::LocationGround].include? space_type - @cool_design_temps[space_type] = process_design_temp_cooling(weather, space_type) - @heat_design_temps[space_type] = process_design_temp_heating(weather, space_type) + if [HPXML::LocationOtherHousingUnit, HPXML::LocationOtherHeatedSpace, HPXML::LocationOtherMultifamilyBufferSpace, + HPXML::LocationOtherNonFreezingSpace, HPXML::LocationExteriorWall, HPXML::LocationUnderSlab].include? space_type + @cool_design_temps[space_type] = calculate_scheduled_space_design_temps(space_type, @cool_setpoint, weather.design.CoolingDrybulb, weather.data.GroundMonthlyTemps.max) + @heat_design_temps[space_type] = calculate_scheduled_space_design_temps(space_type, @heat_setpoint, weather.design.HeatingDrybulb, weather.data.GroundMonthlyTemps.min) + elsif [HPXML::LocationOutside, HPXML::LocationRoofDeck].include? space_type + @cool_design_temps[space_type] = weather.design.CoolingDrybulb + @heat_design_temps[space_type] = weather.design.HeatingDrybulb + elsif space_type == HPXML::LocationBasementConditioned + @cool_design_temps[space_type] = process_design_temp_cooling(weather, HPXML::LocationLivingSpace) + @heat_design_temps[space_type] = process_design_temp_heating(weather, HPXML::LocationLivingSpace) + else + @cool_design_temps[space_type] = process_design_temp_cooling(weather, space_type) + @heat_design_temps[space_type] = process_design_temp_heating(weather, space_type) + end end end def self.process_design_temp_heating(weather, space_type) if space_type == HPXML::LocationLivingSpace - heat_temp = @conditioned_heat_design_temp + heat_temp = @heat_setpoint elsif space_type == HPXML::LocationGarage heat_temp = weather.design.HeatingDrybulb + 13.0 @@ -153,14 +161,14 @@ def self.process_design_temp_heating(weather, space_type) if space_type == HPXML::LocationAtticVented heat_temp = weather.design.HeatingDrybulb else - heat_temp = calculate_space_design_temps(space_type, weather, @conditioned_heat_design_temp, weather.design.HeatingDrybulb, weather.data.GroundMonthlyTemps.min) + heat_temp = calculate_space_design_temps(space_type, weather, @heat_setpoint, weather.design.HeatingDrybulb, weather.data.GroundMonthlyTemps.min) end else heat_temp = weather.design.HeatingDrybulb end elsif [HPXML::LocationBasementUnconditioned, HPXML::LocationCrawlspaceUnvented, HPXML::LocationCrawlspaceVented].include? space_type - heat_temp = calculate_space_design_temps(space_type, weather, @conditioned_heat_design_temp, weather.design.HeatingDrybulb, weather.data.GroundMonthlyTemps.min) + heat_temp = calculate_space_design_temps(space_type, weather, @heat_setpoint, weather.design.HeatingDrybulb, weather.data.GroundMonthlyTemps.min) end @@ -171,7 +179,7 @@ def self.process_design_temp_heating(weather, space_type) def self.process_design_temp_cooling(weather, space_type) if space_type == HPXML::LocationLivingSpace - cool_temp = @conditioned_cool_design_temp + cool_temp = @cool_setpoint elsif space_type == HPXML::LocationGarage # Calculate fraction of garage under conditioned space @@ -188,7 +196,11 @@ def self.process_design_temp_cooling(weather, space_type) area_total += frame_floor.area area_conditioned += frame_floor.area if frame_floor.is_thermal_boundary end - garage_frac_under_conditioned = area_conditioned / area_total + if area_total == 0 + garage_frac_under_conditioned = 0.5 + else + garage_frac_under_conditioned = area_conditioned / area_total + end # Calculate the garage cooling design temperature based on Table 4C # Linearly interpolate between having living space over the garage and not having living space above the garage @@ -220,7 +232,7 @@ def self.process_design_temp_cooling(weather, space_type) if space_type == HPXML::LocationAtticVented cool_temp = weather.design.CoolingDrybulb + 40.0 # This is the number from a California study with dark shingle roof and similar ventilation. else - cool_temp = calculate_space_design_temps(space_type, weather, @conditioned_cool_design_temp, weather.design.CoolingDrybulb, weather.data.GroundMonthlyTemps.max, true) + cool_temp = calculate_space_design_temps(space_type, weather, @cool_setpoint, weather.design.CoolingDrybulb, weather.data.GroundMonthlyTemps.max, true) end else @@ -304,7 +316,7 @@ def self.process_design_temp_cooling(weather, space_type) end elsif [HPXML::LocationBasementUnconditioned, HPXML::LocationCrawlspaceUnvented, HPXML::LocationCrawlspaceVented].include? space_type - cool_temp = calculate_space_design_temps(space_type, weather, @conditioned_cool_design_temp, weather.design.CoolingDrybulb, weather.data.GroundMonthlyTemps.max) + cool_temp = calculate_space_design_temps(space_type, weather, @cool_setpoint, weather.design.CoolingDrybulb, weather.data.GroundMonthlyTemps.max) end @@ -313,20 +325,7 @@ def self.process_design_temp_cooling(weather, space_type) return cool_temp end - def self.process_zone_loads(model, weather, nbeds, infilvolume) - # Constant loads (no variation throughout day) - zone_loads = ZoneLoads.new - zone_loads = process_load_windows_skylights(zone_loads, weather) - zone_loads = process_load_doors(zone_loads, weather) - zone_loads = process_load_walls(zone_loads, weather) - zone_loads = process_load_roofs(zone_loads, weather) - zone_loads = process_load_floors(zone_loads, weather) - zone_loads = process_infiltration_ventilation(model, zone_loads, weather, infilvolume) - zone_loads = process_internal_gains(zone_loads, nbeds) - return zone_loads - end - - def self.process_load_windows_skylights(zone_loads, weather) + def self.process_load_windows_skylights(bldg_design_loads, weather) ''' Heating and Cooling Loads: Windows & Skylights ''' @@ -436,13 +435,11 @@ def self.process_load_windows_skylights(zone_loads, weather) if latitude < 20.0 psf_lat << psf[cnt][0] if cnt == 0 - @runner.registerWarning('Latitude of 20 was assumed for Manual J solar load calculations.') psf_lat_horiz = psf_horiz[0] end elsif latitude >= 64.0 psf_lat << psf[cnt][11] if cnt == 0 - @runner.registerWarning('Latitude of 64 was assumed for Manual J solar load calculations.') if latitude > 64.0 psf_lat_horiz = psf_horiz[11] end else @@ -458,17 +455,18 @@ def self.process_load_windows_skylights(zone_loads, weather) end # Windows - zone_loads.Heat_Windows = 0.0 + bldg_design_loads.Heat_Windows = 0.0 alp_load = 0.0 # Average Load Procedure (ALP) Load afl_hr = [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0] # Initialize Hourly Aggregate Fenestration Load (AFL) @hpxml.windows.each do |window| next unless window.wall.is_exterior_thermal_boundary + window_summer_sf = window.interior_shading_factor_summer * window.exterior_shading_factor_summer window_true_azimuth = get_true_azimuth(window.azimuth) cnt225 = (window_true_azimuth / 22.5).round.to_i - zone_loads.Heat_Windows += window.ufactor * window.area * @htd + bldg_design_loads.Heat_Windows += window.ufactor * window.area * @htd for hr in -1..12 @@ -478,7 +476,7 @@ def self.process_load_windows_skylights(zone_loads, weather) # clf_d: Average Cooling Load Factor for the given window direction # clf_n: Average Cooling Load Factor for a window facing North (fully shaded) if hr == -1 - if window.interior_shading_factor_summer < 1 + if window_summer_sf < 1 clf_d = clf_avg_is[cnt225] clf_n = clf_avg_is[8] else @@ -486,7 +484,7 @@ def self.process_load_windows_skylights(zone_loads, weather) clf_n = clf_avg_nois[8] end else - if window.interior_shading_factor_summer < 1 + if window_summer_sf < 1 clf_d = clf_hr_is[cnt225][hr] clf_n = clf_hr_is[8][hr] else @@ -502,10 +500,10 @@ def self.process_load_windows_skylights(zone_loads, weather) end # Hourly Heat Transfer Multiplier for the given window Direction - htm_d = psf_lat[cnt225] * clf_d * window.shgc * window.interior_shading_factor_summer / 0.87 + window.ufactor * ctd_adj + htm_d = psf_lat[cnt225] * clf_d * window.shgc * window_summer_sf / 0.87 + window.ufactor * ctd_adj # Hourly Heat Transfer Multiplier for a window facing North (fully shaded) - htm_n = psf_lat[8] * clf_n * window.shgc * window.interior_shading_factor_summer / 0.87 + window.ufactor * ctd_adj + htm_n = psf_lat[8] * clf_n * window.shgc * window_summer_sf / 0.87 + window.ufactor * ctd_adj if window_true_azimuth < 180 surf_azimuth = window_true_azimuth @@ -513,7 +511,7 @@ def self.process_load_windows_skylights(zone_loads, weather) surf_azimuth = window_true_azimuth - 360.0 end - if not window.overhangs_depth.nil? + if (not window.overhangs_depth.nil?) && (window.overhangs_depth > 0) if ((hr == -1) && (surf_azimuth.abs < 90.1)) || (hr > -1) if hr == -1 actual_hr = slm_alp_hr[cnt225] @@ -586,19 +584,20 @@ def self.process_load_windows_skylights(zone_loads, weather) eal = [0.0, pfl - ell].max # Window Cooling Load - zone_loads.Cool_Windows = alp_load + eal + bldg_design_loads.Cool_Windows = alp_load + eal # Skylights - zone_loads.Heat_Skylights = 0.0 + bldg_design_loads.Heat_Skylights = 0.0 alp_load = 0.0 # Average Load Procedure (ALP) Load afl_hr = [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0] # Initialize Hourly Aggregate Fenestration Load (AFL) @hpxml.skylights.each do |skylight| + skylight_summer_sf = skylight.interior_shading_factor_summer * skylight.exterior_shading_factor_summer skylight_true_azimuth = get_true_azimuth(skylight.azimuth) cnt225 = (skylight_true_azimuth / 22.5).round.to_i inclination_angle = UnitConversions.convert(Math.atan(skylight.roof.pitch / 12.0), 'rad', 'deg') - zone_loads.Heat_Skylights += skylight.ufactor * skylight.area * @htd + bldg_design_loads.Heat_Skylights += skylight.ufactor * skylight.area * @htd for hr in -1..12 @@ -608,7 +607,7 @@ def self.process_load_windows_skylights(zone_loads, weather) # clf_d: Average Cooling Load Factor for the given skylight direction # clf_d: Average Cooling Load Factor for horizontal if hr == -1 - if skylight.interior_shading_factor_summer < 1 + if skylight_summer_sf < 1 clf_d = clf_avg_is[cnt225] clf_horiz = clf_avg_is_horiz else @@ -616,7 +615,7 @@ def self.process_load_windows_skylights(zone_loads, weather) clf_horiz = clf_avg_nois_horiz end else - if skylight.interior_shading_factor_summer < 1 + if skylight_summer_sf < 1 clf_d = clf_hr_is[cnt225][hr] clf_horiz = clf_hr_is_horiz[hr] else @@ -638,7 +637,7 @@ def self.process_load_windows_skylights(zone_loads, weather) u_curb = 0.51 # default to wood (Table 2B-3) ar_curb = 0.35 # default to small (Table 2B-3) u_eff_skylight = skylight.ufactor + u_curb * ar_curb - htm = (sol_h + sol_v) * (skylight.shgc * skylight.interior_shading_factor_summer / 0.87) + u_eff_skylight * (ctd_adj + 15.0) + htm = (sol_h + sol_v) * (skylight.shgc * skylight_summer_sf / 0.87) + u_eff_skylight * (ctd_adj + 15.0) if hr == -1 alp_load += htm * skylight.area @@ -661,12 +660,10 @@ def self.process_load_windows_skylights(zone_loads, weather) eal = [0.0, pfl - ell].max # Skylight Cooling Load - zone_loads.Cool_Skylights = alp_load + eal - - return zone_loads + bldg_design_loads.Cool_Skylights = alp_load + eal end - def self.process_load_doors(zone_loads, weather) + def self.process_load_doors(bldg_design_loads, weather) ''' Heating and Cooling Loads: Doors ''' @@ -679,32 +676,30 @@ def self.process_load_doors(zone_loads, weather) cltd = @ctd + 6.0 end - zone_loads.Heat_Doors = 0.0 - zone_loads.Cool_Doors = 0.0 + bldg_design_loads.Heat_Doors = 0.0 + bldg_design_loads.Cool_Doors = 0.0 @hpxml.doors.each do |door| next unless door.is_thermal_boundary if door.wall.is_exterior - zone_loads.Heat_Doors += (1.0 / door.r_value) * door.area * @htd - zone_loads.Cool_Doors += (1.0 / door.r_value) * door.area * cltd - else + bldg_design_loads.Heat_Doors += (1.0 / door.r_value) * door.area * @htd + bldg_design_loads.Cool_Doors += (1.0 / door.r_value) * door.area * cltd + else # Partition door adjacent_space = door.wall.exterior_adjacent_to - zone_loads.Cool_Doors += (1.0 / door.r_value) * door.area * (@cool_design_temps[adjacent_space] - @cool_setpoint) - zone_loads.Heat_Doors += (1.0 / door.r_value) * door.area * (@heat_setpoint - @heat_design_temps[adjacent_space]) + bldg_design_loads.Cool_Doors += (1.0 / door.r_value) * door.area * (@cool_design_temps[adjacent_space] - @cool_setpoint) + bldg_design_loads.Heat_Doors += (1.0 / door.r_value) * door.area * (@heat_setpoint - @heat_design_temps[adjacent_space]) end end - - return zone_loads end - def self.process_load_walls(zone_loads, weather) + def self.process_load_walls(bldg_design_loads, weather) ''' Heating and Cooling Loads: Walls ''' - zone_loads.Heat_Walls = 0.0 - zone_loads.Cool_Walls = 0.0 + bldg_design_loads.Heat_Walls = 0.0 + bldg_design_loads.Cool_Walls = 0.0 # Above-Grade Walls (@hpxml.walls + @hpxml.rim_joists).each do |wall| @@ -762,12 +757,12 @@ def self.process_load_walls(zone_loads, weather) cltd = [cltd + cltd_corr, 0.0].max # Assume zero cooling load for negative CLTD's end - zone_loads.Cool_Walls += (1.0 / wall.insulation_assembly_r_value) * wall_area / azimuths.size * cltd - zone_loads.Heat_Walls += (1.0 / wall.insulation_assembly_r_value) * wall_area / azimuths.size * @htd - else + bldg_design_loads.Cool_Walls += (1.0 / wall.insulation_assembly_r_value) * wall_area / azimuths.size * cltd + bldg_design_loads.Heat_Walls += (1.0 / wall.insulation_assembly_r_value) * wall_area / azimuths.size * @htd + else # Partition wall adjacent_space = wall.exterior_adjacent_to - zone_loads.Cool_Walls += (1.0 / wall.insulation_assembly_r_value) * wall_area / azimuths.size * (@cool_design_temps[adjacent_space] - @cool_setpoint) - zone_loads.Heat_Walls += (1.0 / wall.insulation_assembly_r_value) * wall_area / azimuths.size * (@heat_setpoint - @heat_design_temps[adjacent_space]) + bldg_design_loads.Cool_Walls += (1.0 / wall.insulation_assembly_r_value) * wall_area / azimuths.size * (@cool_design_temps[adjacent_space] - @cool_setpoint) + bldg_design_loads.Heat_Walls += (1.0 / wall.insulation_assembly_r_value) * wall_area / azimuths.size * (@heat_setpoint - @heat_design_temps[adjacent_space]) end end end @@ -777,21 +772,17 @@ def self.process_load_walls(zone_loads, weather) next unless foundation_wall.is_exterior_thermal_boundary u_wall_with_soil, u_wall_without_soil = get_foundation_wall_properties(foundation_wall) - zone_loads.Heat_Walls += u_wall_with_soil * foundation_wall.net_area * @htd + bldg_design_loads.Heat_Walls += u_wall_with_soil * foundation_wall.net_area * @htd end - - return zone_loads end - def self.process_load_roofs(zone_loads, weather) + def self.process_load_roofs(bldg_design_loads, weather) ''' - Heating and Cooling Loads: Ceilings + Heating and Cooling Loads: Roofs ''' - cltd = 0.0 - - zone_loads.Heat_Roofs = 0.0 - zone_loads.Cool_Roofs = 0.0 + bldg_design_loads.Heat_Roofs = 0.0 + bldg_design_loads.Cool_Roofs = 0.0 # Roofs @hpxml.roofs.each do |roof| @@ -834,40 +825,108 @@ def self.process_load_roofs(zone_loads, weather) # Adjust base CLTD for different CTD or DR cltd += (weather.design.CoolingDrybulb - 95.0) + @daily_range_temp_adjust[@daily_range_num] - zone_loads.Cool_Roofs += (1.0 / roof.insulation_assembly_r_value) * roof.net_area * cltd - zone_loads.Heat_Roofs += (1.0 / roof.insulation_assembly_r_value) * roof.net_area * @htd + bldg_design_loads.Cool_Roofs += (1.0 / roof.insulation_assembly_r_value) * roof.net_area * cltd + bldg_design_loads.Heat_Roofs += (1.0 / roof.insulation_assembly_r_value) * roof.net_area * @htd end + end + + def self.process_load_ceilings(bldg_design_loads, weather) + ''' + Heating and Cooling Loads: Ceilings + ''' - return zone_loads + bldg_design_loads.Heat_Ceilings = 0.0 + bldg_design_loads.Cool_Ceilings = 0.0 + + @hpxml.frame_floors.each do |frame_floor| + next unless frame_floor.is_ceiling + next unless frame_floor.is_thermal_boundary + + if frame_floor.is_exterior + bldg_design_loads.Cool_Ceilings += (1.0 / frame_floor.insulation_assembly_r_value) * frame_floor.area * (@ctd - 5.0 + @daily_range_temp_adjust[@daily_range_num]) + bldg_design_loads.Heat_Ceilings += (1.0 / frame_floor.insulation_assembly_r_value) * frame_floor.area * @htd + else + adjacent_space = frame_floor.exterior_adjacent_to + bldg_design_loads.Cool_Ceilings += (1.0 / frame_floor.insulation_assembly_r_value) * frame_floor.area * (@cool_design_temps[adjacent_space] - @cool_setpoint) + bldg_design_loads.Heat_Ceilings += (1.0 / frame_floor.insulation_assembly_r_value) * frame_floor.area * (@heat_setpoint - @heat_design_temps[adjacent_space]) + end + end end - def self.process_load_floors(zone_loads, weather) + def self.process_load_floors(bldg_design_loads, weather) ''' Heating and Cooling Loads: Floors ''' - zone_loads.Heat_Floors = 0.0 - zone_loads.Cool_Floors = 0.0 + bldg_design_loads.Heat_Floors = 0.0 + bldg_design_loads.Cool_Floors = 0.0 @hpxml.frame_floors.each do |frame_floor| + next unless frame_floor.is_floor next unless frame_floor.is_thermal_boundary if frame_floor.is_exterior - zone_loads.Cool_Floors += (1.0 / frame_floor.insulation_assembly_r_value) * frame_floor.area * (@ctd - 5.0 + @daily_range_temp_adjust[@daily_range_num]) - zone_loads.Heat_Floors += (1.0 / frame_floor.insulation_assembly_r_value) * frame_floor.area * @htd - else + bldg_design_loads.Cool_Floors += (1.0 / frame_floor.insulation_assembly_r_value) * frame_floor.area * (@ctd - 5.0 + @daily_range_temp_adjust[@daily_range_num]) + bldg_design_loads.Heat_Floors += (1.0 / frame_floor.insulation_assembly_r_value) * frame_floor.area * @htd + else # Partition floor adjacent_space = frame_floor.exterior_adjacent_to - zone_loads.Cool_Floors += (1.0 / frame_floor.insulation_assembly_r_value) * frame_floor.area * (@cool_design_temps[adjacent_space] - @cool_setpoint) - zone_loads.Heat_Floors += (1.0 / frame_floor.insulation_assembly_r_value) * frame_floor.area * (@heat_setpoint - @heat_design_temps[adjacent_space]) + if frame_floor.is_floor && [HPXML::LocationCrawlspaceVented, HPXML::LocationCrawlspaceUnvented, HPXML::LocationBasementUnconditioned].include?(adjacent_space) + u_floor = 1.0 / frame_floor.insulation_assembly_r_value + + sum_ua_wall = 0.0 + sum_a_wall = 0.0 + @hpxml.foundation_walls.each do |foundation_wall| + next unless foundation_wall.is_exterior && foundation_wall.interior_adjacent_to == adjacent_space + + u_wall_with_soil, u_wall_without_soil = get_foundation_wall_properties(foundation_wall) + + sum_a_wall += foundation_wall.net_area + sum_ua_wall += (u_wall_without_soil * foundation_wall.net_area) + end + @hpxml.walls.each do |wall| + next unless wall.is_exterior && wall.interior_adjacent_to == adjacent_space + + sum_a_wall += wall.net_area + sum_ua_wall += (1.0 / wall.insulation_assembly_r_value * wall.net_area) + end + fail 'Could not find connected walls.' if sum_a_wall <= 0 + u_wall = sum_ua_wall / sum_a_wall + + # Calculate partition temperature different cooling (PTDC) per Manual J Figure A12-17 + # Calculate partition temperature different heating (PTDH) per Manual J Figure A12-6 + if [HPXML::LocationCrawlspaceVented].include? adjacent_space + # Vented or Leaky + ptdc_floor = @ctd / (1.0 + (4.0 * u_floor) / (u_wall + 0.11)) + ptdh_floor = @htd / (1.0 + (4.0 * u_floor) / (u_wall + 0.11)) + elsif [HPXML::LocationCrawlspaceUnvented, HPXML::LocationBasementUnconditioned].include? adjacent_space + # Sealed Tight + ptdc_floor = u_wall * @ctd / (4.0 * u_floor + u_wall) + ptdh_floor = u_wall * @htd / (4.0 * u_floor + u_wall) + end + + bldg_design_loads.Cool_Floors += (1.0 / frame_floor.insulation_assembly_r_value) * frame_floor.area * ptdc_floor + bldg_design_loads.Heat_Floors += (1.0 / frame_floor.insulation_assembly_r_value) * frame_floor.area * ptdh_floor + else # E.g., floor over garage + bldg_design_loads.Cool_Floors += (1.0 / frame_floor.insulation_assembly_r_value) * frame_floor.area * (@cool_design_temps[adjacent_space] - @cool_setpoint) + bldg_design_loads.Heat_Floors += (1.0 / frame_floor.insulation_assembly_r_value) * frame_floor.area * (@heat_setpoint - @heat_design_temps[adjacent_space]) + end end end + end + + def self.process_load_slabs(bldg_design_loads, weather) + ''' + Heating and Cooling Loads: Floors + ''' + + bldg_design_loads.Heat_Slabs = 0.0 @hpxml.slabs.each do |slab| next unless slab.is_thermal_boundary if slab.interior_adjacent_to == HPXML::LocationLivingSpace # Slab-on-grade f_value = calc_slab_f_value(slab) - zone_loads.Heat_Floors += f_value * slab.exposed_perimeter * @htd + bldg_design_loads.Heat_Slabs += f_value * slab.exposed_perimeter * @htd elsif slab.interior_adjacent_to == HPXML::LocationBasementConditioned # Based on MJ 8th Ed. A12-7 and ASHRAE HoF 2013 pg 18.31 Eq 40 # FIXME: Assumes slab is uninsulated? @@ -879,95 +938,120 @@ def self.process_load_floors(zone_loads, weather) length = slab.exposed_perimeter / 4.0 + Math.sqrt(sqrt_term) / 4.0 width = slab.exposed_perimeter / 4.0 - Math.sqrt(sqrt_term) / 4.0 w_b = [length, width].min + w_b = [w_b, 1.0].max # handle zero exposed perimeter u_avg_bf = (2.0 * k_soil / (Math::PI * w_b)) * (Math::log(w_b / 2.0 + z_f / 2.0 + (k_soil * r_other) / Math::PI) - Math::log(z_f / 2.0 + (k_soil * r_other) / Math::PI)) u_value_mj8 = 0.85 * u_avg_bf - zone_loads.Heat_Floors += u_value_mj8 * slab.area * @htd + bldg_design_loads.Heat_Slabs += u_value_mj8 * slab.area * @htd end end - - return zone_loads end - def self.process_infiltration_ventilation(model, zone_loads, weather, infilvolume) + def self.process_load_infiltration_ventilation(bldg_design_loads, weather, cfa) ''' Heating and Cooling Loads: Infiltration & Ventilation ''' - # Per ANSI/RESNET/ICC 301 - ach_nat = get_feature(@cond_zone, Constants.SizingInfoZoneInfiltrationACH, 'double') + # FUTURE: Consolidate code w/ airflow.rb + infil_volume = @hpxml.air_infiltration_measurements.select { |i| !i.infiltration_volume.nil? }[0].infiltration_volume + infil_height = @hpxml.inferred_infiltration_height(infil_volume) + sla = nil + @hpxml.air_infiltration_measurements.each do |measurement| + if [HPXML::UnitsACH, HPXML::UnitsCFM].include?(measurement.unit_of_measure) && !measurement.house_pressure.nil? + if measurement.unit_of_measure == HPXML::UnitsACH + ach50 = Airflow.calc_air_leakage_at_diff_pressure(0.65, measurement.air_leakage, measurement.house_pressure, 50.0) + elsif measurement.unit_of_measure == HPXML::UnitsCFM + achXX = measurement.air_leakage * 60.0 / infil_volume # Convert CFM to ACH + ach50 = Airflow.calc_air_leakage_at_diff_pressure(0.65, achXX, measurement.house_pressure, 50.0) + end + sla = Airflow.get_infiltration_SLA_from_ACH50(ach50, 0.65, cfa, infil_volume) + elsif measurement.unit_of_measure == HPXML::UnitsACHNatural + sla = Airflow.get_infiltration_SLA_from_ACH(measurement.air_leakage, infil_height, weather) + end + end + ela = sla * cfa + + ncfl_ag = @hpxml.building_construction.number_of_conditioned_floors_above_grade - ach_Cooling = 1.2 * ach_nat - ach_Heating = 1.6 * ach_nat + # Set stack/wind coefficients from Tables 5D/5E + c_s = 0.015 * ncfl_ag + c_w_base = [0.0133 * @hpxml.site.additional_properties.aim2_shelter_coeff - 0.0027, 0.0].max # Linear relationship between shelter coefficient and c_w coefficients by shielding class + c_w = c_w_base * ncfl_ag**0.4 - icfm_Cooling = ach_Cooling / UnitConversions.convert(1.0, 'hr', 'min') * infilvolume - icfm_Heating = ach_Heating / UnitConversions.convert(1.0, 'hr', 'min') * infilvolume + ela_in2 = UnitConversions.convert(ela, 'ft^2', 'in^2') + windspeed_cooling_mph = 7.5 # Table 5D/5E Wind Velocity Value footnote + windspeed_heating_mph = 15.0 # Table 5D/5E Wind Velocity Value footnote - q_unb_cfm, q_preheat, q_precool, q_recirc, q_bal_Sens, q_bal_Lat = get_ventilation_rates(model) + icfm_Cooling = ela_in2 * (c_s * @ctd + c_w * windspeed_cooling_mph**2)**0.5 + icfm_Heating = ela_in2 * (c_s * @htd + c_w * windspeed_heating_mph**2)**0.5 + + q_unb_cfm, q_preheat, q_precool, q_recirc, q_bal_Sens, q_bal_Lat = get_ventilation_rates() cfm_Heating = q_bal_Sens + (icfm_Heating**2.0 + q_unb_cfm**2.0)**0.5 - q_preheat - q_recirc cfm_Cool_Load_Sens = q_bal_Sens + (icfm_Cooling**2.0 + q_unb_cfm**2.0)**0.5 - q_precool - q_recirc cfm_Cool_Load_Lat = q_bal_Lat + (icfm_Cooling**2.0 + q_unb_cfm**2.0)**0.5 - q_recirc - zone_loads.Heat_Infil = 1.1 * @acf * cfm_Heating * @htd - - zone_loads.Cool_Infil_Sens = 1.1 * @acf * cfm_Cool_Load_Sens * @ctd - zone_loads.Cool_Infil_Lat = 0.68 * @acf * cfm_Cool_Load_Lat * (@cool_design_grains - @cool_indoor_grains) + bldg_design_loads.Heat_InfilVent = 1.1 * @acf * cfm_Heating * @htd - return zone_loads + bldg_design_loads.Cool_Infil_Sens = 1.1 * @acf * cfm_Cool_Load_Sens * @ctd + bldg_design_loads.Cool_Infil_Lat = 0.68 * @acf * cfm_Cool_Load_Lat * (@cool_design_grains - @cool_indoor_grains) end - def self.process_internal_gains(zone_loads, nbeds) + def self.process_load_internal_gains(bldg_design_loads, nbeds) ''' Cooling Load: Internal Gains ''' # Per ANSI/RESNET/ICC 301 n_occupants = nbeds + 1 - zone_loads.Cool_IntGains_Sens = 1600.0 + 230.0 * n_occupants - zone_loads.Cool_IntGains_Lat = 200.0 * n_occupants - - return zone_loads + bldg_design_loads.Cool_IntGains_Sens = 1600.0 + 230.0 * n_occupants + bldg_design_loads.Cool_IntGains_Lat = 200.0 * n_occupants end - def self.aggregate_zone_loads(zone_loads) + def self.aggregate_loads(bldg_design_loads) ''' - Intermediate Loads - (total loads excluding ducts) + Building Loads (excluding ducts) ''' - init_loads = InitialLoads.new # Heating - init_loads.Heat = [zone_loads.Heat_Windows + zone_loads.Heat_Skylights + - zone_loads.Heat_Doors + zone_loads.Heat_Walls + - zone_loads.Heat_Floors + zone_loads.Heat_Roofs, 0.0].max + - zone_loads.Heat_Infil + bldg_design_loads.Heat_Tot = [bldg_design_loads.Heat_Windows + bldg_design_loads.Heat_Skylights + + bldg_design_loads.Heat_Doors + bldg_design_loads.Heat_Walls + + bldg_design_loads.Heat_Floors + bldg_design_loads.Heat_Slabs + + bldg_design_loads.Heat_Ceilings + bldg_design_loads.Heat_Roofs, 0.0].max + + bldg_design_loads.Heat_InfilVent # Cooling - init_loads.Cool_Sens = zone_loads.Cool_Windows + zone_loads.Cool_Skylights + - zone_loads.Cool_Doors + zone_loads.Cool_Walls + - zone_loads.Cool_Floors + zone_loads.Cool_Roofs + - zone_loads.Cool_Infil_Sens + zone_loads.Cool_IntGains_Sens - init_loads.Cool_Lat = zone_loads.Cool_Infil_Lat + zone_loads.Cool_IntGains_Lat - - init_loads.Cool_Lat = [init_loads.Cool_Lat, 0.0].max - init_loads.Cool_Tot = init_loads.Cool_Sens + init_loads.Cool_Lat - - return init_loads - end - - def self.calculate_hvac_temperatures(hvac_init_loads, hvac) + bldg_design_loads.Cool_Sens = bldg_design_loads.Cool_Windows + bldg_design_loads.Cool_Skylights + + bldg_design_loads.Cool_Doors + bldg_design_loads.Cool_Walls + + bldg_design_loads.Cool_Floors + bldg_design_loads.Cool_Ceilings + + bldg_design_loads.Cool_Roofs + bldg_design_loads.Cool_Infil_Sens + + bldg_design_loads.Cool_IntGains_Sens + bldg_design_loads.Cool_Lat = bldg_design_loads.Cool_Infil_Lat + bldg_design_loads.Cool_IntGains_Lat + if bldg_design_loads.Cool_Lat < 0 # No latent loads; also zero out individual components + bldg_design_loads.Cool_Lat = 0.0 + bldg_design_loads.Cool_Infil_Lat = 0.0 + bldg_design_loads.Cool_IntGains_Lat = 0.0 + end + bldg_design_loads.Cool_Tot = bldg_design_loads.Cool_Sens + bldg_design_loads.Cool_Lat + + # Initialize ducts + bldg_design_loads.Heat_Ducts = 0.0 + bldg_design_loads.Cool_Ducts_Sens = 0.0 + bldg_design_loads.Cool_Ducts_Lat = 0.0 + end + + def self.apply_hvac_temperatures(hvac, bldg_design_loads) ''' HVAC Temperatures ''' - # evap cooler temperature calculation based on Mannual S Figure 4-7 - if hvac.has_type(Constants.ObjectNameEvaporativeCooler) + # Evaporative cooler temperature calculation based on Manual S Figure 4-7 + if hvac.CoolType == HPXML::HVACTypeEvaporativeCooler td_potential = @cool_design_temps[HPXML::LocationOutside] - @wetbulb_outdoor_cooling td = td_potential * hvac.EvapCoolerEffectiveness hvac.LeavingAirTemp = @cool_design_temps[HPXML::LocationOutside] - td else # Calculate Leaving Air Temperature - shr = [hvac_init_loads.Cool_Sens / hvac_init_loads.Cool_Tot, 1.0].min + shr = [bldg_design_loads.Cool_Sens / bldg_design_loads.Cool_Tot, 1.0].min # Determine the Leaving Air Temperature (LAT) based on Manual S Table 1-4 if shr < 0.80 hvac.LeavingAirTemp = 54.0 # F @@ -981,42 +1065,46 @@ def self.calculate_hvac_temperatures(hvac_init_loads, hvac) end # Calculate Supply Air Temperature - if hvac.has_type(Constants.ObjectNameFurnace) - hvac.SupplyAirTemp = 120.0 # F - else + if [HPXML::HVACTypeHeatPumpAirToAir, + HPXML::HVACTypeHeatPumpMiniSplit, + HPXML::HVACTypeHeatPumpGroundToAir, + HPXML::HVACTypeHeatPumpWaterLoopToAir].include? hvac.HeatType hvac.SupplyAirTemp = 105.0 # F + else + hvac.SupplyAirTemp = 120.0 # F end end - def self.apply_hvac_load_fractions(hvac_init_loads, hvac) - ''' - Intermediate Loads (HVAC-specific) - ''' - hvac_init_loads.Heat *= hvac.HeatingLoadFraction - hvac_init_loads.Cool_Sens *= hvac.CoolingLoadFraction - hvac_init_loads.Cool_Lat *= hvac.CoolingLoadFraction - hvac_init_loads.Cool_Tot *= hvac.CoolingLoadFraction + def self.apply_hvac_loads(hvac, hvac_sizing_values, bldg_design_loads) + # Calculate design loads that this HVAC system serves - # Prevent error for, e.g., an ASHP with CoolingLoadFraction == 0. - hvac_init_loads.Heat = [hvac_init_loads.Heat, 0.001].max - hvac_init_loads.Cool_Sens = [hvac_init_loads.Cool_Sens, 0.001].max - hvac_init_loads.Cool_Lat = [hvac_init_loads.Cool_Lat, 0.001].max - hvac_init_loads.Cool_Tot = [hvac_init_loads.Cool_Tot, 0.001].max + # Heating + hvac_sizing_values.Heat_Load = bldg_design_loads.Heat_Tot * hvac.HeatingLoadFraction + if hvac.HeatType == HPXML::HVACTypeHeatPumpWaterLoopToAir + # Size to meet original fraction load served (not adjusted value from HVAC.apply_shared_heating_systems() + # This ensures, e.g., that an appropriate heating airflow is used for duct losses. + hvac_sizing_values.Heat_Load = hvac_sizing_values.Heat_Load / (1.0 / hvac.HeatingCOP) + end + + # Cooling + hvac_sizing_values.Cool_Load_Tot = bldg_design_loads.Cool_Tot * hvac.CoolingLoadFraction + hvac_sizing_values.Cool_Load_Sens = bldg_design_loads.Cool_Sens * hvac.CoolingLoadFraction + hvac_sizing_values.Cool_Load_Lat = bldg_design_loads.Cool_Lat * hvac.CoolingLoadFraction end - def self.apply_hp_sizing_logic(hvac_init_loads, hvac) + def self.apply_hvac_heat_pump_logic(hvac_sizing_values, hvac) # If true, uses the larger of heating and cooling loads for heat pump capacity sizing (required for ERI). # Otherwise, uses standard Manual S oversize allowances. - if hvac.has_type([Constants.ObjectNameAirSourceHeatPump, - Constants.ObjectNameMiniSplitHeatPump, - Constants.ObjectNameGroundSourceHeatPump, - Constants.ObjectNameWaterLoopHeatPump]) - if @hpxml.header.use_max_load_for_heat_pumps - max_load = [hvac_init_loads.Heat, hvac_init_loads.Cool_Tot].max - hvac_init_loads.Heat = max_load - hvac_init_loads.Cool_Sens *= max_load / hvac_init_loads.Cool_Tot - hvac_init_loads.Cool_Lat *= max_load / hvac_init_loads.Cool_Tot - hvac_init_loads.Cool_Tot = max_load + if [HPXML::HVACTypeHeatPumpAirToAir, + HPXML::HVACTypeHeatPumpMiniSplit, + HPXML::HVACTypeHeatPumpGroundToAir, + HPXML::HVACTypeHeatPumpWaterLoopToAir].include? hvac.CoolType + if @hpxml.header.use_max_load_for_heat_pumps && (hvac.CoolingLoadFraction > 0) && (hvac.HeatingLoadFraction > 0) + max_load = [hvac_sizing_values.Heat_Load, hvac_sizing_values.Cool_Load_Tot].max + hvac_sizing_values.Heat_Load = max_load + hvac_sizing_values.Cool_Load_Sens *= max_load / hvac_sizing_values.Cool_Load_Tot + hvac_sizing_values.Cool_Load_Lat *= max_load / hvac_sizing_values.Cool_Load_Tot + hvac_sizing_values.Cool_Load_Tot = max_load # Override Manual S oversize allowances: hvac.OverSizeLimit = 1.0 @@ -1095,137 +1183,129 @@ def self.get_duct_regain_factor(duct) return dse_Fregain end - def self.process_duct_loads_heating(hvac_final_values, weather, hvac, init_heat_load) + def self.apply_load_ducts_heating(bldg_design_loads, weather, hvac) ''' Heating Duct Loads ''' - if (init_heat_load == 0) || (hvac.Ducts.size == 0) - hvac_final_values.Heat_Load_Ducts = 0.0 - hvac_final_values.Heat_Load = init_heat_load - else - # Distribution system efficiency (DSE) calculations based on ASHRAE Standard 152 - dse_As, dse_Ar = calc_ducts_areas(hvac.Ducts) - supply_r, return_r = calc_ducts_rvalues(hvac.Ducts) - design_temp_values = { HPXML::DuctTypeSupply => @heat_design_temps, HPXML::DuctTypeReturn => @heat_design_temps } - dse_Tamb_heating_s, dse_Tamb_heating_r = calc_ducts_area_weighted_average(hvac.Ducts, design_temp_values) + return if (bldg_design_loads.Heat_Tot == 0) || (hvac.HeatingLoadFraction == 0) || hvac.Ducts.empty? - # ASHRAE 152 6.5.2 - # For systems with ducts in several locations, Fregain shall be weighted by the fraction of exposed duct area - # in each space. Fregain shall be calculated separately for supply and return locations. - dse_Fregains = {} - hvac.Ducts.each do |duct| - dse_Fregains[duct.Location] = get_duct_regain_factor(duct) - end - fregain_values = { HPXML::DuctTypeSupply => dse_Fregains, HPXML::DuctTypeReturn => dse_Fregains } - dse_Fregain_s, dse_Fregain_r = calc_ducts_area_weighted_average(hvac.Ducts, fregain_values) + init_heat_load = bldg_design_loads.Heat_Tot * hvac.HeatingLoadFraction - # Initialize for the iteration - delta = 1 - heatingLoad_Prev = init_heat_load - heat_cfm = calc_airflow_rate(init_heat_load, (hvac.SupplyAirTemp - @heat_setpoint)) + # Distribution system efficiency (DSE) calculations based on ASHRAE Standard 152 + dse_As, dse_Ar = calc_ducts_areas(hvac.Ducts) + supply_r, return_r = calc_ducts_rvalues(hvac.Ducts) - for _iter in 0..19 - break if delta.abs <= 0.001 + design_temp_values = { HPXML::DuctTypeSupply => @heat_design_temps, HPXML::DuctTypeReturn => @heat_design_temps } + dse_Tamb_heating_s, dse_Tamb_heating_r = calc_ducts_area_weighted_average(hvac.Ducts, design_temp_values) - dse_Qs, dse_Qr = calc_ducts_leakages(hvac.Ducts, heat_cfm) + # ASHRAE 152 6.5.2 + # For systems with ducts in several locations, F_regain shall be weighted by the fraction of exposed duct area + # in each space. F_regain shall be calculated separately for supply and return locations. + dse_Fregains = {} + hvac.Ducts.each do |duct| + dse_Fregains[duct.Location] = get_duct_regain_factor(duct) + end + fregain_values = { HPXML::DuctTypeSupply => dse_Fregains, HPXML::DuctTypeReturn => dse_Fregains } + dse_Fregain_s, dse_Fregain_r = calc_ducts_area_weighted_average(hvac.Ducts, fregain_values) - dse_DE = calc_delivery_effectiveness_heating(dse_Qs, dse_Qr, heat_cfm, heatingLoad_Prev, dse_Tamb_heating_s, dse_Tamb_heating_r, dse_As, dse_Ar, @heat_setpoint, dse_Fregain_s, dse_Fregain_r, supply_r, return_r) + # Initialize for the iteration + delta = 1 + heat_load_next = init_heat_load - # Calculate the increase in heating load due to ducts (Approach: DE = Qload/Qequip -> Qducts = Qequip-Qload) - heatingLoad_Next = init_heat_load / dse_DE + for _iter in 0..19 + break if delta.abs <= 0.001 - # Calculate the change since the last iteration - delta = (heatingLoad_Next - heatingLoad_Prev) / heatingLoad_Prev + heat_load_prev = heat_load_next - # Update the flow rate for the next iteration - heatingLoad_Prev = heatingLoad_Next - heat_cfm = calc_airflow_rate(heatingLoad_Next, (hvac.SupplyAirTemp - @heat_setpoint)) + # Calculate the new heating air flow rate + heat_cfm = calc_airflow_rate(heat_load_next, (hvac.SupplyAirTemp - @heat_setpoint)) - end + dse_Qs, dse_Qr = calc_ducts_leakages(hvac.Ducts, heat_cfm) + + dse_DE = calc_delivery_effectiveness_heating(dse_Qs, dse_Qr, heat_cfm, heat_load_next, dse_Tamb_heating_s, dse_Tamb_heating_r, dse_As, dse_Ar, @heat_setpoint, dse_Fregain_s, dse_Fregain_r, supply_r, return_r) - hvac_final_values.Heat_Load_Ducts = heatingLoad_Next - init_heat_load - hvac_final_values.Heat_Load = init_heat_load + hvac_final_values.Heat_Load_Ducts + # Calculate the increase in heating load due to ducts (Approach: DE = Qload/Qequip -> Qducts = Qequip-Qload) + heat_load_next = init_heat_load / dse_DE + + # Calculate the change since the last iteration + delta = (heat_load_next - heat_load_prev) / heat_load_prev end + + ducts_heat_load = heat_load_next - init_heat_load + + bldg_design_loads.Heat_Ducts += ducts_heat_load + bldg_design_loads.Heat_Tot += ducts_heat_load end - def self.process_duct_loads_cooling(hvac_final_values, weather, hvac, init_cool_load_sens, init_cool_load_lat) + def self.apply_load_ducts_cooling(bldg_design_loads, weather, hvac) ''' Cooling Duct Loads ''' + return if (bldg_design_loads.Cool_Sens == 0) || (hvac.CoolingLoadFraction == 0) || hvac.Ducts.empty? - if (init_cool_load_sens == 0) || (hvac.Ducts.size == 0) - hvac_final_values.Cool_Load_Ducts_Sens = 0.0 - hvac_final_values.Cool_Load_Ducts_Tot = 0.0 - hvac_final_values.Cool_Load_Sens = init_cool_load_sens - hvac_final_values.Cool_Load_Lat = init_cool_load_lat - hvac_final_values.Cool_Load_Tot = hvac_final_values.Cool_Load_Sens + hvac_final_values.Cool_Load_Lat - else - # Distribution system efficiency (DSE) calculations based on ASHRAE Standard 152 - dse_As, dse_Ar = calc_ducts_areas(hvac.Ducts) - supply_r, return_r = calc_ducts_rvalues(hvac.Ducts) - - design_temp_values = { HPXML::DuctTypeSupply => @cool_design_temps, HPXML::DuctTypeReturn => @cool_design_temps } - dse_Tamb_cooling_s, dse_Tamb_cooling_r = calc_ducts_area_weighted_average(hvac.Ducts, design_temp_values) - - # ASHRAE 152 6.5.2 - # For systems with ducts in several locations, Fregain shall be weighted by the fraction of exposed duct area - # in each space. Fregain shall be calculated separately for supply and return locations. - dse_Fregains = {} - hvac.Ducts.each do |duct| - dse_Fregains[duct.Location] = get_duct_regain_factor(duct) - end - fregain_values = { HPXML::DuctTypeSupply => dse_Fregains, HPXML::DuctTypeReturn => dse_Fregains } - dse_Fregain_s, dse_Fregain_r = calc_ducts_area_weighted_average(hvac.Ducts, fregain_values) + init_cool_load_sens = bldg_design_loads.Cool_Sens * hvac.CoolingLoadFraction + init_cool_load_lat = bldg_design_loads.Cool_Lat * hvac.CoolingLoadFraction - # Calculate the air enthalpy in the return duct location for DSE calculations - dse_h_r = (1.006 * UnitConversions.convert(dse_Tamb_cooling_r, 'F', 'C') + weather.design.CoolingHumidityRatio * (2501.0 + 1.86 * UnitConversions.convert(dse_Tamb_cooling_r, 'F', 'C'))) * UnitConversions.convert(1.0, 'kJ', 'Btu') * UnitConversions.convert(1.0, 'lbm', 'kg') + # Distribution system efficiency (DSE) calculations based on ASHRAE Standard 152 + dse_As, dse_Ar = calc_ducts_areas(hvac.Ducts) + supply_r, return_r = calc_ducts_rvalues(hvac.Ducts) - # Initialize for the iteration - delta = 1 - coolingLoad_Tot_Prev = init_cool_load_sens + init_cool_load_lat - coolingLoad_Tot_Next = init_cool_load_sens + init_cool_load_lat - hvac_final_values.Cool_Load_Tot = init_cool_load_sens + init_cool_load_lat - hvac_final_values.Cool_Load_Sens = init_cool_load_sens + design_temp_values = { HPXML::DuctTypeSupply => @cool_design_temps, HPXML::DuctTypeReturn => @cool_design_temps } + dse_Tamb_cooling_s, dse_Tamb_cooling_r = calc_ducts_area_weighted_average(hvac.Ducts, design_temp_values) - initial_Cool_Airflow = calc_airflow_rate(init_cool_load_sens, (@cool_setpoint - hvac.LeavingAirTemp)) + # ASHRAE 152 6.5.2 + # For systems with ducts in several locations, F_regain shall be weighted by the fraction of exposed duct area + # in each space. F_regain shall be calculated separately for supply and return locations. + dse_Fregains = {} + hvac.Ducts.each do |duct| + dse_Fregains[duct.Location] = get_duct_regain_factor(duct) + end + fregain_values = { HPXML::DuctTypeSupply => dse_Fregains, HPXML::DuctTypeReturn => dse_Fregains } + dse_Fregain_s, dse_Fregain_r = calc_ducts_area_weighted_average(hvac.Ducts, fregain_values) - supply_leakage_cfm, return_leakage_cfm = calc_ducts_leakages(hvac.Ducts, initial_Cool_Airflow) + # Calculate the air enthalpy in the return duct location for DSE calculations + dse_h_r = (1.006 * UnitConversions.convert(dse_Tamb_cooling_r, 'F', 'C') + weather.design.CoolingHumidityRatio * (2501.0 + 1.86 * UnitConversions.convert(dse_Tamb_cooling_r, 'F', 'C'))) * UnitConversions.convert(1.0, 'kJ', 'Btu') * UnitConversions.convert(1.0, 'lbm', 'kg') - hvac_final_values.Cool_Load_Lat, hvac_final_values.Cool_Load_Sens = calculate_sensible_latent_split(return_leakage_cfm, coolingLoad_Tot_Next, init_cool_load_lat) + # Initialize for the iteration + delta = 1 + cool_load_tot_next = init_cool_load_sens + init_cool_load_lat - for _iter in 1..50 - break if delta.abs <= 0.001 + cool_cfm = calc_airflow_rate(init_cool_load_sens, (@cool_setpoint - hvac.LeavingAirTemp)) + dse_Qs, dse_Qr = calc_ducts_leakages(hvac.Ducts, cool_cfm) - coolingLoad_Tot_Prev = coolingLoad_Tot_Next + for _iter in 1..50 + break if delta.abs <= 0.001 - hvac_final_values.Cool_Load_Lat, hvac_final_values.Cool_Load_Sens = calculate_sensible_latent_split(return_leakage_cfm, coolingLoad_Tot_Next, init_cool_load_lat) - hvac_final_values.Cool_Load_Tot = hvac_final_values.Cool_Load_Lat + hvac_final_values.Cool_Load_Sens + cool_load_tot_prev = cool_load_tot_next - # Calculate the new cooling air flow rate - cool_Airflow = calc_airflow_rate(hvac_final_values.Cool_Load_Sens, (@cool_setpoint - hvac.LeavingAirTemp)) + cool_load_lat, cool_load_sens = calculate_sensible_latent_split(dse_Qr, cool_load_tot_next, init_cool_load_lat) + cool_load_tot = cool_load_lat + cool_load_sens - hvac_final_values.Cool_Load_Ducts_Sens = hvac_final_values.Cool_Load_Sens - init_cool_load_sens - hvac_final_values.Cool_Load_Ducts_Tot = coolingLoad_Tot_Next - (init_cool_load_sens + init_cool_load_lat) + # Calculate the new cooling air flow rate + cool_cfm = calc_airflow_rate(cool_load_sens, (@cool_setpoint - hvac.LeavingAirTemp)) - dse_Qs, dse_Qr = calc_ducts_leakages(hvac.Ducts, cool_Airflow) + dse_Qs, dse_Qr = calc_ducts_leakages(hvac.Ducts, cool_cfm) - dse_DE, dse_dTe_cooling, hvac_final_values.Cool_Load_Ducts_Sens = calc_delivery_effectiveness_cooling(dse_Qs, dse_Qr, hvac.LeavingAirTemp, cool_Airflow, hvac_final_values.Cool_Load_Sens, dse_Tamb_cooling_s, dse_Tamb_cooling_r, dse_As, dse_Ar, @cool_setpoint, dse_Fregain_s, dse_Fregain_r, hvac_final_values.Cool_Load_Tot, dse_h_r, supply_r, return_r) + dse_DE, dse_dTe_cooling, cool_duct_sens = calc_delivery_effectiveness_cooling(dse_Qs, dse_Qr, hvac.LeavingAirTemp, cool_cfm, cool_load_sens, dse_Tamb_cooling_s, dse_Tamb_cooling_r, dse_As, dse_Ar, @cool_setpoint, dse_Fregain_s, dse_Fregain_r, cool_load_tot, dse_h_r, supply_r, return_r) - coolingLoad_Tot_Next = (init_cool_load_sens + init_cool_load_lat) / dse_DE + cool_load_tot_next = (init_cool_load_sens + init_cool_load_lat) / dse_DE - # Calculate the change since the last iteration - delta = (coolingLoad_Tot_Next - coolingLoad_Tot_Prev) / coolingLoad_Tot_Prev - end + # Calculate the change since the last iteration + delta = (cool_load_tot_next - cool_load_tot_prev) / cool_load_tot_prev end - # Calculate the air flow rate required for design conditions - hvac_final_values.Cool_Airflow = calc_airflow_rate(hvac_final_values.Cool_Load_Sens, (@cool_setpoint - hvac.LeavingAirTemp)) + ducts_cool_load_sens = cool_load_sens - init_cool_load_sens + ducts_cool_load_lat = cool_load_lat - init_cool_load_lat - hvac_final_values.Cool_Load_Ducts_Lat = hvac_final_values.Cool_Load_Ducts_Tot - hvac_final_values.Cool_Load_Ducts_Sens + bldg_design_loads.Cool_Ducts_Sens += ducts_cool_load_sens + bldg_design_loads.Cool_Sens += ducts_cool_load_sens + bldg_design_loads.Cool_Ducts_Lat += ducts_cool_load_lat + bldg_design_loads.Cool_Lat += ducts_cool_load_lat + bldg_design_loads.Cool_Tot += ducts_cool_load_sens + ducts_cool_load_lat end - def self.process_equipment_adjustments(hvac_final_values, weather, hvac) + def self.apply_hvac_equipment_adjustments(hvac_sizing_values, weather, hvac, cfa) ''' Equipment Adjustments ''' @@ -1233,458 +1313,659 @@ def self.process_equipment_adjustments(hvac_final_values, weather, hvac) underSizeLimit = 0.9 # Cooling - if hvac.has_type([Constants.ObjectNameCentralAirConditioner, - Constants.ObjectNameAirSourceHeatPump, - Constants.ObjectNameMiniSplitHeatPump, - Constants.ObjectNameRoomAirConditioner, - Constants.ObjectNameGroundSourceHeatPump]) - if hvac_final_values.Cool_Load_Tot < 0 - hvac_final_values.Cool_Capacity = @min_cooling_capacity - hvac_final_values.Cool_Capacity_Sens = 0.78 * @min_cooling_capacity - hvac_final_values.Cool_Airflow = 400.0 * UnitConversions.convert(@min_cooling_capacity, 'Btu/hr', 'ton') - end + # Calculate the air flow rate required for design conditions + hvac_sizing_values.Cool_Airflow = calc_airflow_rate(hvac_sizing_values.Cool_Load_Sens, (@cool_setpoint - hvac.LeavingAirTemp)) - # Adjust the total cooling capacity to the rated conditions using performance curves - if not hvac.has_type(Constants.ObjectNameGroundSourceHeatPump) - enteringTemp = weather.design.CoolingDrybulb - else - enteringTemp = hvac.GSHP_HXCHWDesign - end + if hvac_sizing_values.Cool_Load_Tot <= 0 - if hvac.has_type([Constants.ObjectNameCentralAirConditioner, - Constants.ObjectNameAirSourceHeatPump]) + hvac_sizing_values.Cool_Capacity = 0.0 + hvac_sizing_values.Cool_Capacity_Sens = 0.0 + hvac_sizing_values.Cool_Airflow = 0.0 - hvac.SizingSpeed = get_sizing_speed(hvac) - coefficients = hvac.COOL_CAP_FT_SPEC[hvac.SizingSpeed] + elsif [HPXML::HVACTypeCentralAirConditioner, + HPXML::HVACTypeHeatPumpAirToAir].include? hvac.CoolType - totalCap_CurveValue = MathTools.biquadratic(@wetbulb_indoor_cooling, enteringTemp, coefficients) - coolCap_Rated = hvac_final_values.Cool_Load_Tot / totalCap_CurveValue + enteringTemp = weather.design.CoolingDrybulb + coefficients = hvac.COOL_CAP_FT_SPEC[hvac.SizingSpeed] - sensCap_Rated = coolCap_Rated * hvac.SHRRated[hvac.SizingSpeed] + totalCap_CurveValue = MathTools.biquadratic(@wetbulb_indoor_cooling, enteringTemp, coefficients) + coolCap_Rated = hvac_sizing_values.Cool_Load_Tot / totalCap_CurveValue - sensibleCap_CurveValue = process_curve_fit(hvac_final_values.Cool_Airflow, hvac_final_values.Cool_Load_Tot, enteringTemp) - sensCap_Design = sensCap_Rated * sensibleCap_CurveValue - latCap_Design = [hvac_final_values.Cool_Load_Tot - sensCap_Design, 1.0].max + sensCap_Rated = coolCap_Rated * hvac.SHRRated[hvac.SizingSpeed] - a_sens = @shr_biquadratic[0] - b_sens = @shr_biquadratic[1] - c_sens = @shr_biquadratic[3] - d_sens = @shr_biquadratic[5] + sensibleCap_CurveValue = process_curve_fit(hvac_sizing_values.Cool_Airflow, hvac_sizing_values.Cool_Load_Tot, enteringTemp) + sensCap_Design = sensCap_Rated * sensibleCap_CurveValue + latCap_Design = [hvac_sizing_values.Cool_Load_Tot - sensCap_Design, 1.0].max - # Adjust Sizing - if latCap_Design < hvac_final_values.Cool_Load_Lat - # Size by MJ8 Latent load, return to rated conditions + shr_biquadratic = get_shr_biquadratic + a_sens = shr_biquadratic[0] + b_sens = shr_biquadratic[1] + c_sens = shr_biquadratic[3] + d_sens = shr_biquadratic[5] - # Solve for the new sensible and total capacity at design conditions: - # CoolingLoad_Lat = cool_Capacity_Design - cool_Load_SensCap_Design - # solve the following for cool_Capacity_Design: SensCap_Design = SHRRated * cool_Capacity_Design / TotalCap_CurveValue * function(CFM/cool_Capacity_Design, ODB) - # substituting in CFM = cool_Load_SensCap_Design / (1.1 * ACF * (cool_setpoint - LAT)) + # Adjust Sizing + if latCap_Design < hvac_sizing_values.Cool_Load_Lat + # Size by MJ8 Latent load, return to rated conditions - cool_Load_SensCap_Design = hvac_final_values.Cool_Load_Lat / ((totalCap_CurveValue / hvac.SHRRated[hvac.SizingSpeed] - \ - (UnitConversions.convert(b_sens, 'ton', 'Btu/hr') + UnitConversions.convert(d_sens, 'ton', 'Btu/hr') * enteringTemp) / \ - (1.1 * @acf * (@cool_setpoint - hvac.LeavingAirTemp))) / \ - (a_sens + c_sens * enteringTemp) - 1.0) + # Solve for the new sensible and total capacity at design conditions: + # CoolingLoad_Lat = cool_Capacity_Design - cool_Load_SensCap_Design + # solve the following for cool_Capacity_Design: SensCap_Design = SHRRated * cool_Capacity_Design / TotalCap_CurveValue * function(CFM/cool_Capacity_Design, ODB) + # substituting in CFM = cool_Load_SensCap_Design / (1.1 * ACF * (cool_setpoint - LAT)) - cool_Capacity_Design = cool_Load_SensCap_Design + hvac_final_values.Cool_Load_Lat + cool_Load_SensCap_Design = hvac_sizing_values.Cool_Load_Lat / ((totalCap_CurveValue / hvac.SHRRated[hvac.SizingSpeed] - \ + (UnitConversions.convert(b_sens, 'ton', 'Btu/hr') + UnitConversions.convert(d_sens, 'ton', 'Btu/hr') * enteringTemp) / \ + (1.1 * @acf * (@cool_setpoint - hvac.LeavingAirTemp))) / \ + (a_sens + c_sens * enteringTemp) - 1.0) - # The SHR of the equipment at the design condition - sHR_design = cool_Load_SensCap_Design / cool_Capacity_Design + cool_Capacity_Design = cool_Load_SensCap_Design + hvac_sizing_values.Cool_Load_Lat - # If the adjusted equipment size is negative (occurs at altitude), use oversize limit (the adjustment - # almost always hits the oversize limit in this case, making this a safe assumption) - if (cool_Capacity_Design < 0) || (cool_Load_SensCap_Design < 0) - cool_Capacity_Design = hvac.OverSizeLimit * hvac_final_values.Cool_Load_Tot - end + # The SHR of the equipment at the design condition + sHR_design = cool_Load_SensCap_Design / cool_Capacity_Design - # Limit total capacity to oversize limit - cool_Capacity_Design = [cool_Capacity_Design, hvac.OverSizeLimit * hvac_final_values.Cool_Load_Tot].min + # If the adjusted equipment size is negative (occurs at altitude), use oversize limit (the adjustment + # almost always hits the oversize limit in this case, making this a safe assumption) + if (cool_Capacity_Design < 0) || (cool_Load_SensCap_Design < 0) + cool_Capacity_Design = hvac.OverSizeLimit * hvac_sizing_values.Cool_Load_Tot + end - # Determine the final sensible capacity at design using the SHR - cool_Load_SensCap_Design = sHR_design * cool_Capacity_Design + # Limit total capacity to oversize limit + cool_Capacity_Design = [cool_Capacity_Design, hvac.OverSizeLimit * hvac_sizing_values.Cool_Load_Tot].min - # Calculate the final air flow rate using final sensible capacity at design - hvac_final_values.Cool_Airflow = calc_airflow_rate(cool_Load_SensCap_Design, (@cool_setpoint - hvac.LeavingAirTemp)) + # Determine the final sensible capacity at design using the SHR + cool_Load_SensCap_Design = sHR_design * cool_Capacity_Design - # Determine rated capacities - hvac_final_values.Cool_Capacity = cool_Capacity_Design / totalCap_CurveValue - hvac_final_values.Cool_Capacity_Sens = hvac_final_values.Cool_Capacity * hvac.SHRRated[hvac.SizingSpeed] + # Calculate the final air flow rate using final sensible capacity at design + hvac_sizing_values.Cool_Airflow = calc_airflow_rate(cool_Load_SensCap_Design, (@cool_setpoint - hvac.LeavingAirTemp)) - elsif sensCap_Design < underSizeLimit * hvac_final_values.Cool_Load_Sens - # Size by MJ8 Sensible load, return to rated conditions, find Sens with SHRRated. Limit total - # capacity to oversizing limit + # Determine rated capacities + hvac_sizing_values.Cool_Capacity = cool_Capacity_Design / totalCap_CurveValue + hvac_sizing_values.Cool_Capacity_Sens = hvac_sizing_values.Cool_Capacity * hvac.SHRRated[hvac.SizingSpeed] - sensCap_Design = underSizeLimit * hvac_final_values.Cool_Load_Sens + elsif sensCap_Design < underSizeLimit * hvac_sizing_values.Cool_Load_Sens + # Size by MJ8 Sensible load, return to rated conditions, find Sens with SHRRated. Limit total + # capacity to oversizing limit - # Solve for the new total system capacity at design conditions: - # SensCap_Design = SensCap_Rated * SensibleCap_CurveValue - # = SHRRated * cool_Capacity_Design / TotalCap_CurveValue * SensibleCap_CurveValue - # = SHRRated * cool_Capacity_Design / TotalCap_CurveValue * function(CFM/cool_Capacity_Design, ODB) + sensCap_Design = underSizeLimit * hvac_sizing_values.Cool_Load_Sens - cool_Capacity_Design = (sensCap_Design / (hvac.SHRRated[hvac.SizingSpeed] / totalCap_CurveValue) - \ - (b_sens * UnitConversions.convert(hvac_final_values.Cool_Airflow, 'ton', 'Btu/hr') + \ - d_sens * UnitConversions.convert(hvac_final_values.Cool_Airflow, 'ton', 'Btu/hr') * enteringTemp)) / \ - (a_sens + c_sens * enteringTemp) + # Solve for the new total system capacity at design conditions: + # SensCap_Design = SensCap_Rated * SensibleCap_CurveValue + # = SHRRated * cool_Capacity_Design / TotalCap_CurveValue * SensibleCap_CurveValue + # = SHRRated * cool_Capacity_Design / TotalCap_CurveValue * function(CFM/cool_Capacity_Design, ODB) - # Limit total capacity to oversize limit - cool_Capacity_Design = [cool_Capacity_Design, hvac.OverSizeLimit * hvac_final_values.Cool_Load_Tot].min + cool_Capacity_Design = (sensCap_Design / (hvac.SHRRated[hvac.SizingSpeed] / totalCap_CurveValue) - \ + (b_sens * UnitConversions.convert(hvac_sizing_values.Cool_Airflow, 'ton', 'Btu/hr') + \ + d_sens * UnitConversions.convert(hvac_sizing_values.Cool_Airflow, 'ton', 'Btu/hr') * enteringTemp)) / \ + (a_sens + c_sens * enteringTemp) - hvac_final_values.Cool_Capacity = cool_Capacity_Design / totalCap_CurveValue - hvac_final_values.Cool_Capacity_Sens = hvac_final_values.Cool_Capacity * hvac.SHRRated[hvac.SizingSpeed] + # Limit total capacity to oversize limit + cool_Capacity_Design = [cool_Capacity_Design, hvac.OverSizeLimit * hvac_sizing_values.Cool_Load_Tot].min - # Recalculate the air flow rate in case the oversizing limit has been used - cool_Load_SensCap_Design = hvac_final_values.Cool_Capacity_Sens * sensibleCap_CurveValue - hvac_final_values.Cool_Airflow = calc_airflow_rate(cool_Load_SensCap_Design, (@cool_setpoint - hvac.LeavingAirTemp)) + hvac_sizing_values.Cool_Capacity = cool_Capacity_Design / totalCap_CurveValue + hvac_sizing_values.Cool_Capacity_Sens = hvac_sizing_values.Cool_Capacity * hvac.SHRRated[hvac.SizingSpeed] - else - hvac_final_values.Cool_Capacity = hvac_final_values.Cool_Load_Tot / totalCap_CurveValue - hvac_final_values.Cool_Capacity_Sens = hvac_final_values.Cool_Capacity * hvac.SHRRated[hvac.SizingSpeed] + # Recalculate the air flow rate in case the oversizing limit has been used + cool_Load_SensCap_Design = hvac_sizing_values.Cool_Capacity_Sens * sensibleCap_CurveValue + hvac_sizing_values.Cool_Airflow = calc_airflow_rate(cool_Load_SensCap_Design, (@cool_setpoint - hvac.LeavingAirTemp)) - cool_Load_SensCap_Design = hvac_final_values.Cool_Capacity_Sens * sensibleCap_CurveValue - hvac_final_values.Cool_Airflow = calc_airflow_rate(cool_Load_SensCap_Design, (@cool_setpoint - hvac.LeavingAirTemp)) - end + else + hvac_sizing_values.Cool_Capacity = hvac_sizing_values.Cool_Load_Tot / totalCap_CurveValue + hvac_sizing_values.Cool_Capacity_Sens = hvac_sizing_values.Cool_Capacity * hvac.SHRRated[hvac.SizingSpeed] - # Ensure the air flow rate is in between 200 and 500 cfm/ton. - # Reset the air flow rate (with a safety margin), if required. - if hvac_final_values.Cool_Airflow / UnitConversions.convert(hvac_final_values.Cool_Capacity, 'Btu/hr', 'ton') > 500 - hvac_final_values.Cool_Airflow = 499.0 * UnitConversions.convert(hvac_final_values.Cool_Capacity, 'Btu/hr', 'ton') # CFM - elsif hvac_final_values.Cool_Airflow / UnitConversions.convert(hvac_final_values.Cool_Capacity, 'Btu/hr', 'ton') < 200 - hvac_final_values.Cool_Airflow = 201.0 * UnitConversions.convert(hvac_final_values.Cool_Capacity, 'Btu/hr', 'ton') # CFM - end + cool_Load_SensCap_Design = hvac_sizing_values.Cool_Capacity_Sens * sensibleCap_CurveValue + hvac_sizing_values.Cool_Airflow = calc_airflow_rate(cool_Load_SensCap_Design, (@cool_setpoint - hvac.LeavingAirTemp)) + end - elsif hvac.has_type(Constants.ObjectNameMiniSplitHeatPump) + # Ensure the air flow rate is in between 200 and 500 cfm/ton. + # Reset the air flow rate (with a safety margin), if required. + if hvac_sizing_values.Cool_Airflow / UnitConversions.convert(hvac_sizing_values.Cool_Capacity, 'Btu/hr', 'ton') > 500 + hvac_sizing_values.Cool_Airflow = 499.0 * UnitConversions.convert(hvac_sizing_values.Cool_Capacity, 'Btu/hr', 'ton') # CFM + elsif hvac_sizing_values.Cool_Airflow / UnitConversions.convert(hvac_sizing_values.Cool_Capacity, 'Btu/hr', 'ton') < 200 + hvac_sizing_values.Cool_Airflow = 201.0 * UnitConversions.convert(hvac_sizing_values.Cool_Capacity, 'Btu/hr', 'ton') # CFM + end - hvac.SizingSpeed = get_sizing_speed(hvac) - coefficients = hvac.COOL_CAP_FT_SPEC[hvac.SizingSpeed] + elsif [HPXML::HVACTypeHeatPumpMiniSplit, + HPXML::HVACTypeMiniSplitAirConditioner].include? hvac.CoolType - totalCap_CurveValue = MathTools.biquadratic(@wetbulb_indoor_cooling, enteringTemp, coefficients) + enteringTemp = weather.design.CoolingDrybulb + coefficients = hvac.COOL_CAP_FT_SPEC[hvac.SizingSpeed] - hvac_final_values.Cool_Capacity = (hvac_final_values.Cool_Load_Tot / totalCap_CurveValue) - hvac_final_values.Cool_Capacity_Sens = hvac_final_values.Cool_Capacity * hvac.SHRRated[hvac.SizingSpeed] - hvac_final_values.Cool_Airflow = hvac.RatedCFMperTonCooling[-1] * UnitConversions.convert(hvac_final_values.Cool_Capacity, 'Btu/hr', 'ton') + totalCap_CurveValue = MathTools.biquadratic(@wetbulb_indoor_cooling, enteringTemp, coefficients) - elsif hvac.has_type(Constants.ObjectNameRoomAirConditioner) + hvac_sizing_values.Cool_Capacity = (hvac_sizing_values.Cool_Load_Tot / totalCap_CurveValue) + hvac_sizing_values.Cool_Capacity_Sens = hvac_sizing_values.Cool_Capacity * hvac.SHRRated[hvac.SizingSpeed] + # FIXME: Why not use calc_airflow_rate? + hvac_sizing_values.Cool_Airflow = hvac.RatedCFMperTonCooling[-1] * hvac.CapacityRatioCooling[-1] * UnitConversions.convert(hvac_sizing_values.Cool_Capacity, 'Btu/hr', 'ton') - hvac.SizingSpeed = 0 - totalCap_CurveValue = MathTools.biquadratic(@wetbulb_indoor_cooling, enteringTemp, hvac.COOL_CAP_FT_SPEC[hvac.SizingSpeed]) + elsif hvac.CoolType == HPXML::HVACTypeRoomAirConditioner - hvac_final_values.Cool_Capacity = hvac_final_values.Cool_Load_Tot / totalCap_CurveValue - hvac_final_values.Cool_Capacity_Sens = hvac_final_values.Cool_Capacity * hvac.SHRRated[hvac.SizingSpeed] - hvac_final_values.Cool_Airflow = hvac.RatedCFMperTonCooling[hvac.SizingSpeed] * UnitConversions.convert(hvac_final_values.Cool_Capacity, 'Btu/hr', 'ton') + enteringTemp = weather.design.CoolingDrybulb + totalCap_CurveValue = MathTools.biquadratic(@wetbulb_indoor_cooling, enteringTemp, hvac.COOL_CAP_FT_SPEC[hvac.SizingSpeed]) - elsif hvac.has_type(Constants.ObjectNameGroundSourceHeatPump) + hvac_sizing_values.Cool_Capacity = hvac_sizing_values.Cool_Load_Tot / totalCap_CurveValue + hvac_sizing_values.Cool_Capacity_Sens = hvac_sizing_values.Cool_Capacity * hvac.SHRRated[hvac.SizingSpeed] + # FIXME: Why not use calc_airflow_rate? + hvac_sizing_values.Cool_Airflow = hvac.RatedCFMperTonCooling[hvac.SizingSpeed] * UnitConversions.convert(hvac_sizing_values.Cool_Capacity, 'Btu/hr', 'ton') - # Single speed as current - hvac.SizingSpeed = 0 - totalCap_CurveValue = MathTools.biquadratic(@wetbulb_indoor_cooling, enteringTemp, hvac.COOL_CAP_FT_SPEC[hvac.SizingSpeed]) - sensibleCap_CurveValue = MathTools.biquadratic(@wetbulb_indoor_cooling, enteringTemp, hvac.COOL_SH_FT_SPEC[hvac.SizingSpeed]) - bypassFactor_CurveValue = MathTools.biquadratic(@wetbulb_indoor_cooling, @cool_setpoint, hvac.COIL_BF_FT_SPEC[hvac.SizingSpeed]) + elsif hvac.CoolType == HPXML::HVACTypeHeatPumpGroundToAir + coil_bf = gshp_coil_bf + enteringTemp = hvac.GSHP_design_chw - hvac_final_values.Cool_Capacity = hvac_final_values.Cool_Load_Tot / totalCap_CurveValue # Note: cool_Capacity_Design = hvac_final_values.Cool_Load_Tot - hvac_final_values.Cool_Capacity_Sens = hvac_final_values.Cool_Capacity * hvac.SHRRated[hvac.SizingSpeed] + # Neglecting the water flow rate for now because it's not available yet. Air flow rate is pre-adjusted values. + design_wb_temp = UnitConversions.convert(@wetbulb_indoor_cooling, 'f', 'k') + design_db_temp = UnitConversions.convert(@cool_setpoint, 'f', 'k') + design_w_temp = UnitConversions.convert(enteringTemp, 'f', 'k') + design_vfr_air = UnitConversions.convert(hvac_sizing_values.Cool_Airflow, 'cfm', 'm^3/s') - cool_Load_SensCap_Design = (hvac_final_values.Cool_Capacity_Sens * sensibleCap_CurveValue / - (1.0 + (1.0 - hvac.CoilBF * bypassFactor_CurveValue) * - (80.0 - @cool_setpoint) / (@cool_setpoint - hvac.LeavingAirTemp))) - cool_Load_LatCap_Design = hvac_final_values.Cool_Load_Tot - cool_Load_SensCap_Design + totalCap_CurveValue, sensibleCap_CurveValue = calc_gshp_clg_curve_value(hvac, design_wb_temp, design_db_temp, design_w_temp, design_vfr_air, nil) - # Adjust Sizing so that coil sensible at design >= CoolingLoad_MJ8_Sens, and coil latent at design >= CoolingLoad_MJ8_Lat, and equipment SHRRated is maintained. - cool_Load_SensCap_Design = [cool_Load_SensCap_Design, hvac_final_values.Cool_Load_Sens].max - cool_Load_LatCap_Design = [cool_Load_LatCap_Design, hvac_final_values.Cool_Load_Lat].max - cool_Capacity_Design = cool_Load_SensCap_Design + cool_Load_LatCap_Design + bypassFactor_CurveValue = MathTools.biquadratic(@wetbulb_indoor_cooling, @cool_setpoint, gshp_coil_bf_ft_spec) - # Limit total capacity via oversizing limit - cool_Capacity_Design = [cool_Capacity_Design, hvac.OverSizeLimit * hvac_final_values.Cool_Load_Tot].min - hvac_final_values.Cool_Capacity = cool_Capacity_Design / totalCap_CurveValue - hvac_final_values.Cool_Capacity_Sens = hvac_final_values.Cool_Capacity * hvac.SHRRated[hvac.SizingSpeed] + hvac_sizing_values.Cool_Capacity = hvac_sizing_values.Cool_Load_Tot / totalCap_CurveValue # Note: cool_Capacity_Design = hvac_sizing_values.Cool_Load_Tot + hvac_sizing_values.Cool_Capacity_Sens = hvac_sizing_values.Cool_Capacity * hvac.SHRRated[hvac.SizingSpeed] - # Recalculate the air flow rate in case the oversizing limit has been used - cool_Load_SensCap_Design = (hvac_final_values.Cool_Capacity_Sens * sensibleCap_CurveValue / - (1.0 + (1.0 - hvac.CoilBF * bypassFactor_CurveValue) * - (80.0 - @cool_setpoint) / (@cool_setpoint - hvac.LeavingAirTemp))) - hvac_final_values.Cool_Airflow = calc_airflow_rate(cool_Load_SensCap_Design, (@cool_setpoint - hvac.LeavingAirTemp)) - else + cool_Load_SensCap_Design = (hvac_sizing_values.Cool_Capacity_Sens * sensibleCap_CurveValue / + (1.0 + (1.0 - coil_bf * bypassFactor_CurveValue) * + (80.0 - @cool_setpoint) / (@cool_setpoint - hvac.LeavingAirTemp))) + cool_Load_LatCap_Design = hvac_sizing_values.Cool_Load_Tot - cool_Load_SensCap_Design - fail 'Unexpected cooling system.' - end + # Adjust Sizing so that coil sensible at design >= CoolingLoad_MJ8_Sens, and coil latent at design >= CoolingLoad_MJ8_Lat, and equipment SHRRated is maintained. + cool_Load_SensCap_Design = [cool_Load_SensCap_Design, hvac_sizing_values.Cool_Load_Sens].max + cool_Load_LatCap_Design = [cool_Load_LatCap_Design, hvac_sizing_values.Cool_Load_Lat].max + cool_Capacity_Design = cool_Load_SensCap_Design + cool_Load_LatCap_Design - elsif hvac.has_type(Constants.ObjectNameEvaporativeCooler) - hvac_final_values.Cool_Capacity = hvac_final_values.Cool_Load_Tot - hvac_final_values.Cool_Capacity_Sens = hvac_final_values.Cool_Load_Sens + # Limit total capacity via oversizing limit + cool_Capacity_Design = [cool_Capacity_Design, hvac.OverSizeLimit * hvac_sizing_values.Cool_Load_Tot].min + hvac_sizing_values.Cool_Capacity = cool_Capacity_Design / totalCap_CurveValue + hvac_sizing_values.Cool_Capacity_Sens = hvac_sizing_values.Cool_Capacity * hvac.SHRRated[hvac.SizingSpeed] + + # Recalculate the air flow rate in case the oversizing limit has been used + cool_Load_SensCap_Design = (hvac_sizing_values.Cool_Capacity_Sens * sensibleCap_CurveValue / + (1.0 + (1.0 - coil_bf * bypassFactor_CurveValue) * + (80.0 - @cool_setpoint) / (@cool_setpoint - hvac.LeavingAirTemp))) + hvac_sizing_values.Cool_Airflow = calc_airflow_rate(cool_Load_SensCap_Design, (@cool_setpoint - hvac.LeavingAirTemp)) + + elsif hvac.CoolType == HPXML::HVACTypeEvaporativeCooler + + hvac_sizing_values.Cool_Capacity = hvac_sizing_values.Cool_Load_Tot + hvac_sizing_values.Cool_Capacity_Sens = hvac_sizing_values.Cool_Load_Sens if @cool_setpoint - hvac.LeavingAirTemp > 0 - hvac_final_values.Cool_Airflow = calc_airflow_rate(hvac_final_values.Cool_Load_Sens, (@cool_setpoint - hvac.LeavingAirTemp)) + hvac_sizing_values.Cool_Airflow = calc_airflow_rate(hvac_sizing_values.Cool_Load_Sens, (@cool_setpoint - hvac.LeavingAirTemp)) else - cfa = UnitConversions.convert(@spaces[HPXML::LocationLivingSpace].floorArea, 'm^2', 'ft^2') - hvac_final_values.Cool_Airflow = cfa * 2.0 # Use industry rule of thumb sizing method adopted by HEScore + hvac_sizing_values.Cool_Airflow = cfa * 2.0 # Use industry rule of thumb sizing method adopted by HEScore end - elsif hvac.has_type(Constants.ObjectNameWaterLoopHeatPump) + elsif hvac.CoolType == HPXML::HVACTypeHeatPumpWaterLoopToAir + # Model only currently used for heating - hvac_final_values.Cool_Capacity = 0.0 - hvac_final_values.Cool_Capacity_Sens = 0.0 - hvac_final_values.Cool_Airflow = 0.0 + hvac_sizing_values.Cool_Capacity = 0.0 + hvac_sizing_values.Cool_Capacity_Sens = 0.0 + hvac_sizing_values.Cool_Airflow = 0.0 + + elsif hvac.CoolType.nil? + + hvac_sizing_values.Cool_Capacity = 0.0 + hvac_sizing_values.Cool_Capacity_Sens = 0.0 + hvac_sizing_values.Cool_Airflow = 0.0 else - hvac_final_values.Cool_Capacity = 0.0 - hvac_final_values.Cool_Capacity_Sens = 0.0 - hvac_final_values.Cool_Airflow = 0.0 + + fail "Unexpected cooling type: #{hvac.CoolType}." end # Heating - if hvac.has_type(Constants.ObjectNameAirSourceHeatPump) - hvac_final_values = process_heat_pump_adjustment(hvac_final_values, weather, hvac, totalCap_CurveValue) + if hvac_sizing_values.Heat_Load <= 0 - hvac_final_values.Heat_Capacity = hvac_final_values.Cool_Capacity - hvac_final_values.Heat_Capacity_Supp = hvac_final_values.Heat_Load + hvac_sizing_values.Heat_Capacity = 0.0 + hvac_sizing_values.Heat_Capacity_Supp = 0.0 + hvac_sizing_values.Heat_Airflow = 0.0 - if hvac_final_values.Cool_Capacity > @min_cooling_capacity - hvac_final_values.Heat_Airflow = calc_airflow_rate(hvac_final_values.Heat_Capacity, (hvac.SupplyAirTemp - @heat_setpoint)) + elsif hvac.HeatType == HPXML::HVACTypeHeatPumpAirToAir + + if hvac_sizing_values.Cool_Capacity > 0 + process_heat_pump_adjustment(hvac_sizing_values, weather, hvac, totalCap_CurveValue) + hvac_sizing_values.Heat_Capacity = hvac_sizing_values.Cool_Capacity + hvac_sizing_values.Heat_Capacity_Supp = hvac_sizing_values.Heat_Load else - hvac_final_values.Heat_Airflow = calc_airflow_rate(hvac_final_values.Heat_Capacity_Supp, (hvac.SupplyAirTemp - @heat_setpoint)) + hvac_sizing_values.Heat_Capacity = hvac_sizing_values.Heat_Load + hvac_sizing_values.Heat_Capacity_Supp = hvac_sizing_values.Heat_Load end + hvac_sizing_values.Heat_Airflow = calc_airflow_rate(hvac_sizing_values.Heat_Capacity, (hvac.SupplyAirTemp - @heat_setpoint)) - elsif hvac.has_type(Constants.ObjectNameMiniSplitHeatPump) - hvac_final_values = process_heat_pump_adjustment(hvac_final_values, weather, hvac, totalCap_CurveValue) + elsif hvac.HeatType == HPXML::HVACTypeHeatPumpMiniSplit - hvac_final_values.Heat_Capacity = [hvac_final_values.Cool_Capacity + hvac.HeatingCapacityOffset, Constants.small].max - hvac_final_values.Heat_Capacity_Supp = hvac_final_values.Heat_Load + if hvac_sizing_values.Cool_Capacity > 0 + process_heat_pump_adjustment(hvac_sizing_values, weather, hvac, totalCap_CurveValue) + hvac_sizing_values.Heat_Capacity = hvac_sizing_values.Cool_Capacity + hvac_sizing_values.Heat_Capacity_Supp = hvac_sizing_values.Heat_Load + else + hvac_sizing_values.Heat_Capacity = hvac_sizing_values.Heat_Load + hvac_sizing_values.Heat_Capacity_Supp = hvac_sizing_values.Heat_Load + end + # FIXME: Why not use calc_airflow_rate? + hvac_sizing_values.Heat_Airflow = hvac.RatedCFMperTonHeating[-1] * hvac.CapacityRatioHeating[-1] * UnitConversions.convert(hvac_sizing_values.Heat_Capacity, 'Btu/hr', 'ton') # Maximum air flow under heating operation - hvac_final_values.Heat_Airflow = hvac.RatedCFMperTonHeating[-1] * UnitConversions.convert(hvac_final_values.Heat_Capacity, 'Btu/hr', 'ton') # Maximum air flow under heating operation + elsif hvac.HeatType == HPXML::HVACTypeHeatPumpGroundToAir - elsif hvac.has_type(Constants.ObjectNameGroundSourceHeatPump) - hvac_final_values.Heat_Capacity = hvac_final_values.Heat_Load - hvac_final_values.Heat_Capacity_Supp = hvac_final_values.Heat_Load + if hvac_sizing_values.Cool_Capacity > 0 + coil_bf = gshp_coil_bf + hvac_sizing_values.Heat_Capacity = hvac_sizing_values.Heat_Load + hvac_sizing_values.Heat_Capacity_Supp = hvac_sizing_values.Heat_Load - # For single stage compressor, when heating capacity is much larger than cooling capacity, - # in order to avoid frequent cycling in cooling mode, heating capacity is derated to 75%. - if hvac_final_values.Heat_Capacity >= 1.5 * hvac_final_values.Cool_Capacity - hvac_final_values.Heat_Capacity = hvac_final_values.Heat_Load * 0.75 - elsif hvac_final_values.Heat_Capacity < hvac_final_values.Cool_Capacity - hvac_final_values.Heat_Capacity_Supp = hvac_final_values.Heat_Capacity + # For single stage compressor, when heating capacity is much larger than cooling capacity, + # in order to avoid frequent cycling in cooling mode, heating capacity is derated to 75%. + if hvac_sizing_values.Heat_Capacity >= 1.5 * hvac_sizing_values.Cool_Capacity + hvac_sizing_values.Heat_Capacity = hvac_sizing_values.Heat_Load * 0.75 + elsif hvac_sizing_values.Heat_Capacity < hvac_sizing_values.Cool_Capacity + hvac_sizing_values.Heat_Capacity_Supp = hvac_sizing_values.Heat_Capacity + end + + hvac_sizing_values.Cool_Capacity = [hvac_sizing_values.Cool_Capacity, hvac_sizing_values.Heat_Capacity].max + hvac_sizing_values.Heat_Capacity = hvac_sizing_values.Cool_Capacity + + hvac_sizing_values.Cool_Capacity_Sens = hvac_sizing_values.Cool_Capacity * hvac.SHRRated[hvac.SizingSpeed] + cool_Load_SensCap_Design = (hvac_sizing_values.Cool_Capacity_Sens * sensibleCap_CurveValue / + (1.0 + (1.0 - coil_bf * bypassFactor_CurveValue) * + (80.0 - @cool_setpoint) / (@cool_setpoint - hvac.LeavingAirTemp))) + hvac_sizing_values.Cool_Airflow = calc_airflow_rate(cool_Load_SensCap_Design, (@cool_setpoint - hvac.LeavingAirTemp)) + else + hvac_sizing_values.Heat_Capacity = hvac_sizing_values.Heat_Load + hvac_sizing_values.Heat_Capacity_Supp = hvac_sizing_values.Heat_Load end + hvac_sizing_values.Heat_Airflow = calc_airflow_rate(hvac_sizing_values.Heat_Capacity, (hvac.SupplyAirTemp - @heat_setpoint)) - hvac_final_values.Cool_Capacity = [hvac_final_values.Cool_Capacity, hvac_final_values.Heat_Capacity].max - hvac_final_values.Heat_Capacity = hvac_final_values.Cool_Capacity + elsif hvac.HeatType == HPXML::HVACTypeHeatPumpWaterLoopToAir - hvac_final_values.Cool_Capacity_Sens = hvac_final_values.Cool_Capacity * hvac.SHRRated[hvac.SizingSpeed] - cool_Load_SensCap_Design = (hvac_final_values.Cool_Capacity_Sens * sensibleCap_CurveValue / - (1.0 + (1.0 - hvac.CoilBF * bypassFactor_CurveValue) * - (80.0 - @cool_setpoint) / (@cool_setpoint - hvac.LeavingAirTemp))) - hvac_final_values.Cool_Airflow = calc_airflow_rate(cool_Load_SensCap_Design, (@cool_setpoint - hvac.LeavingAirTemp)) - hvac_final_values.Heat_Airflow = calc_airflow_rate(hvac_final_values.Heat_Capacity, (hvac.SupplyAirTemp - @heat_setpoint)) + hvac_sizing_values.Heat_Capacity = hvac_sizing_values.Heat_Load + hvac_sizing_values.Heat_Capacity_Supp = hvac_sizing_values.Heat_Load - elsif hvac.has_type(Constants.ObjectNameWaterLoopHeatPump) - hvac_final_values.Heat_Capacity = hvac_final_values.Heat_Load - hvac_final_values.Heat_Capacity_Supp = hvac_final_values.Heat_Load + hvac_sizing_values.Heat_Airflow = calc_airflow_rate(hvac_sizing_values.Heat_Capacity, (hvac.SupplyAirTemp - @heat_setpoint)) - hvac_final_values.Heat_Airflow = calc_airflow_rate(hvac_final_values.Heat_Capacity, (hvac.SupplyAirTemp - @heat_setpoint)) + elsif hvac.HeatType == HPXML::HVACTypeFurnace - elsif hvac.has_type(Constants.ObjectNameFurnace) - hvac_final_values.Heat_Capacity = hvac_final_values.Heat_Load - hvac_final_values.Heat_Capacity_Supp = 0.0 + hvac_sizing_values.Heat_Capacity = hvac_sizing_values.Heat_Load + hvac_sizing_values.Heat_Capacity_Supp = 0.0 - hvac_final_values.Heat_Airflow = calc_airflow_rate(hvac_final_values.Heat_Capacity, (hvac.SupplyAirTemp - @heat_setpoint)) + hvac_sizing_values.Heat_Airflow = calc_airflow_rate(hvac_sizing_values.Heat_Capacity, (hvac.SupplyAirTemp - @heat_setpoint)) - elsif hvac.has_type(Constants.ObjectNameUnitHeater) - hvac_final_values.Heat_Capacity = hvac_final_values.Heat_Load - hvac_final_values.Heat_Capacity_Supp = 0.0 + elsif [HPXML::HVACTypeStove, + HPXML::HVACTypePortableHeater, + HPXML::HVACTypeFixedHeater, + HPXML::HVACTypeWallFurnace, + HPXML::HVACTypeFloorFurnace, + HPXML::HVACTypeFireplace].include? hvac.HeatType + + hvac_sizing_values.Heat_Capacity = hvac_sizing_values.Heat_Load + hvac_sizing_values.Heat_Capacity_Supp = 0.0 if hvac.RatedCFMperTonHeating[0] > 0 # Fixed airflow rate - hvac_final_values.Heat_Airflow = UnitConversions.convert(hvac_final_values.Heat_Capacity, 'Btu/hr', 'ton') * hvac.RatedCFMperTonHeating[0] + # FIXME: Is this still needed? + hvac_sizing_values.Heat_Airflow = UnitConversions.convert(hvac_sizing_values.Heat_Capacity, 'Btu/hr', 'ton') * hvac.RatedCFMperTonHeating[0] else # Autosized airflow rate - hvac_final_values.Heat_Airflow = calc_airflow_rate(hvac_final_values.Heat_Capacity, (hvac.SupplyAirTemp - @heat_setpoint)) + hvac_sizing_values.Heat_Airflow = calc_airflow_rate(hvac_sizing_values.Heat_Capacity, (hvac.SupplyAirTemp - @heat_setpoint)) end - elsif hvac.has_type([Constants.ObjectNameBoiler, - Constants.ObjectNameElectricBaseboard]) - hvac_final_values.Heat_Capacity = hvac_final_values.Heat_Load - hvac_final_values.Heat_Capacity_Supp = 0.0 - hvac_final_values.Heat_Airflow = 0.0 + elsif [HPXML::HVACTypeBoiler, + HPXML::HVACTypeElectricResistance].include? hvac.HeatType + + hvac_sizing_values.Heat_Capacity = hvac_sizing_values.Heat_Load + hvac_sizing_values.Heat_Capacity_Supp = 0.0 + hvac_sizing_values.Heat_Airflow = 0.0 + + elsif hvac.HeatType.nil? + + hvac_sizing_values.Heat_Capacity = 0.0 + hvac_sizing_values.Heat_Capacity_Supp = 0.0 + hvac_sizing_values.Heat_Airflow = 0.0 else - hvac_final_values.Heat_Capacity = 0.0 - hvac_final_values.Heat_Capacity_Supp = 0.0 - hvac_final_values.Heat_Airflow = 0.0 + + fail "Unexpected heating type: #{hvac.HeatType}." end end - def self.process_fixed_equipment(hvac_final_values, hvac) + def self.apply_hvac_installation_quality(hvac_sizing_values, weather, hvac) + # Increases the autosized heating/cooling capacities to account for any reduction + # in capacity due to HVAC installation quality. This is done to prevent causing + # unmet loads. + + return unless [HPXML::HVACTypeCentralAirConditioner, + HPXML::HVACTypeHeatPumpAirToAir, + HPXML::HVACTypeHeatPumpMiniSplit, + HPXML::HVACTypeMiniSplitAirConditioner, + HPXML::HVACTypeHeatPumpGroundToAir].include? hvac.CoolType + return if (hvac.ChargeDefectRatio.to_f.abs < 0.001) && (hvac.AirflowDefectRatioCooling.to_f.abs < 0.001) && (hvac.AirflowDefectRatioHeating.to_f.abs < 0.001) + + tin_cool = UnitConversions.convert(@cool_setpoint, 'F', 'C') + tin_heat = UnitConversions.convert(@heat_setpoint, 'F', 'C') + + tout_cool = UnitConversions.convert(weather.design.CoolingDrybulb, 'F', 'C') + tout_heat = UnitConversions.convert(weather.design.HeatingDrybulb, 'F', 'C') + + if hvac.CoolType == HPXML::HVACTypeHeatPumpGroundToAir + if hvac.CoolingLoadFraction > 0 + # Cooling + coil_bf = gshp_coil_bf + # Calculate curve point w/ and w/o defect ratios + design_wb_temp = UnitConversions.convert(@wetbulb_indoor_cooling, 'f', 'k') + design_db_temp = UnitConversions.convert(@cool_setpoint, 'f', 'k') + design_w_temp = UnitConversions.convert(hvac.GSHP_design_chw, 'f', 'k') + design_vfr_air = UnitConversions.convert(hvac_sizing_values.Cool_Airflow, 'cfm', 'm^3/s') + design_vfr_air_defect = UnitConversions.convert(hvac_sizing_values.Cool_Airflow, 'cfm', 'm^3/s') * (1 + hvac.AirflowDefectRatioCooling) + # calculate water flow based on current capacity. + loop_flow = [1.0, UnitConversions.convert([hvac_sizing_values.Heat_Capacity, hvac_sizing_values.Cool_Capacity].max, 'Btu/hr', 'ton')].max.floor * 3.0 + loop_flow_m3s = UnitConversions.convert(loop_flow, 'gal/min', 'm^3/s') + + totalCap_CurveValue, sensibleCap_CurveValue = calc_gshp_clg_curve_value(hvac, design_wb_temp, design_db_temp, design_w_temp, design_vfr_air, loop_flow_m3s) + totalCap_CurveValue_d, sensibleCap_CurveValue_d = calc_gshp_clg_curve_value(hvac, design_wb_temp, design_db_temp, design_w_temp, design_vfr_air_defect, loop_flow_m3s) + + cap_clg_ratio = 1 / (totalCap_CurveValue_d / totalCap_CurveValue) + if cap_clg_ratio > 1 + hvac_sizing_values.Cool_Capacity *= cap_clg_ratio + hvac_sizing_values.Cool_Capacity_Sens = hvac_sizing_values.Cool_Capacity * hvac.SHRRated[hvac.SizingSpeed] + bypassFactor_CurveValue = MathTools.biquadratic(@wetbulb_indoor_cooling, @cool_setpoint, gshp_coil_bf_ft_spec) + + cool_Load_SensCap_Design = (hvac_sizing_values.Cool_Capacity_Sens * sensibleCap_CurveValue / + (1.0 + (1.0 - coil_bf * bypassFactor_CurveValue) * + (80.0 - @cool_setpoint) / (@cool_setpoint - hvac.LeavingAirTemp))) + hvac_sizing_values.Cool_Airflow = calc_airflow_rate(cool_Load_SensCap_Design, (@cool_setpoint - hvac.LeavingAirTemp)) + end + end + + # Heating + if hvac.HeatingLoadFraction > 0 + # Calculate curve point w/ and w/o defect ratios + design_db_temp = UnitConversions.convert(@heat_setpoint, 'f', 'k') + design_w_temp = UnitConversions.convert(hvac.GSHP_design_chw, 'f', 'k') + design_vfr_air = UnitConversions.convert(hvac_sizing_values.Heat_Airflow, 'cfm', 'm^3/s') + design_vfr_air_defect = UnitConversions.convert(hvac_sizing_values.Heat_Airflow, 'cfm', 'm^3/s') * (1 + hvac.AirflowDefectRatioHeating) + # calculate water flow based on current capacity. + loop_flow = [1.0, UnitConversions.convert([hvac_sizing_values.Heat_Capacity, hvac_sizing_values.Cool_Capacity].max, 'Btu/hr', 'ton')].max.floor * 3.0 + loop_flow_m3s = UnitConversions.convert(loop_flow, 'gal/min', 'm^3/s') + + totalCap_CurveValue = calc_gshp_htg_curve_value(hvac, design_db_temp, design_w_temp, design_vfr_air, loop_flow_m3s) + totalCap_CurveValue_d = calc_gshp_htg_curve_value(hvac, design_db_temp, design_w_temp, design_vfr_air_defect, loop_flow_m3s) + + cap_htg_ratio = 1 / (totalCap_CurveValue_d / totalCap_CurveValue) + if cap_htg_ratio > 1 + hvac_sizing_values.Heat_Capacity *= cap_htg_ratio + hvac_sizing_values.Heat_Airflow = calc_airflow_rate(hvac_sizing_values.Heat_Capacity, (hvac.SupplyAirTemp - @heat_setpoint)) + end + end + else + f_ch = hvac.ChargeDefectRatio.round(3) + + # Cooling + if [HPXML::HVACTypeHeatPumpAirToAir, + HPXML::HVACTypeCentralAirConditioner, + HPXML::HVACTypeHeatPumpMiniSplit, + HPXML::HVACTypeMiniSplitAirConditioner].include?(hvac.CoolType) && hvac.CoolingLoadFraction > 0 + cool_airflow_rated_defect_ratio = [] + cool_airflow_rated_ratio = [] + cool_cfm_m3s = UnitConversions.convert(hvac_sizing_values.Cool_Airflow, 'cfm', 'm^3/s') + for speed in 0..(hvac.NumSpeedsCooling - 1) + cool_airflow_rated_ratio << cool_cfm_m3s / HVAC.calc_rated_airflow(hvac_sizing_values.Cool_Capacity, hvac.RatedCFMperTonCooling[speed], hvac.CapacityRatioCooling[speed]) + cool_airflow_rated_defect_ratio << cool_cfm_m3s * (1 + hvac.AirflowDefectRatioCooling) / HVAC.calc_rated_airflow(hvac_sizing_values.Cool_Capacity, hvac.RatedCFMperTonCooling[speed], hvac.CapacityRatioCooling[speed]) + end + if not cool_airflow_rated_defect_ratio.empty? + cap_clg_ratios = [] + for speed in 0..(hvac.NumSpeedsCooling - 1) + # NOTE: heat pump (cooling) curves don't exhibit expected trends at extreme faults; + a1_AF_Qgr_c = hvac.COOL_CAP_FFLOW_SPEC[speed][0] + a2_AF_Qgr_c = hvac.COOL_CAP_FFLOW_SPEC[speed][1] + a3_AF_Qgr_c = hvac.COOL_CAP_FFLOW_SPEC[speed][2] + + p_values, qgr_values, ff_chg_values = HVAC.get_installation_quality_cooling_coeff(f_ch) + + a1_CH_Qgr_c = qgr_values[0] + a2_CH_Qgr_c = qgr_values[1] + a3_CH_Qgr_c = qgr_values[2] + a4_CH_Qgr_c = qgr_values[3] + + ff_ch_c = (1.0 / (1.0 + (qgr_values[0] + (qgr_values[1] * ff_chg_values[0]) + (qgr_values[2] * ff_chg_values[1]) + (qgr_values[3] * f_ch)) * f_ch)).round(3) + + q0_CH = a1_CH_Qgr_c + q1_CH = a2_CH_Qgr_c * tin_cool + q2_CH = a3_CH_Qgr_c * tout_cool + q3_CH = a4_CH_Qgr_c * f_ch + y_CH_Q_c = 1 + ((q0_CH + q1_CH + q2_CH + q3_CH) * f_ch) + + q0_AF_CH = a1_AF_Qgr_c + q1_AF_CH = a2_AF_Qgr_c * ff_ch_c + q2_AF_CH = a3_AF_Qgr_c * ff_ch_c * ff_ch_c + p_CH_Q_c = y_CH_Q_c / (q0_AF_CH + q1_AF_CH + q2_AF_CH) + + ff_AF_c = cool_airflow_rated_defect_ratio[speed].round(3) + ff_AF_c_nodefect = cool_airflow_rated_ratio[speed].round(3) + ff_AF_comb_c = ff_ch_c * ff_AF_c + + q0_AF_comb = a1_AF_Qgr_c + q1_AF_comb = a2_AF_Qgr_c * ff_AF_comb_c + q2_AF_comb = a3_AF_Qgr_c * ff_AF_comb_c * ff_AF_comb_c + p_AF_Q_c = q0_AF_comb + q1_AF_comb + q2_AF_comb + + cool_cap_fff = (p_CH_Q_c * p_AF_Q_c) + cool_cap_fff_nodefect = a1_AF_Qgr_c + a2_AF_Qgr_c * ff_AF_c_nodefect + a3_AF_Qgr_c * ff_AF_c_nodefect * ff_AF_c_nodefect + cap_clg_ratio = 1 / (cool_cap_fff / cool_cap_fff_nodefect) + cap_clg_ratios << cap_clg_ratio + end + prev_capacity = hvac_sizing_values.Cool_Capacity + hvac_sizing_values.Cool_Capacity *= cap_clg_ratios.max + hvac_sizing_values.Cool_Capacity_Sens = hvac_sizing_values.Cool_Capacity * hvac.SHRRated[hvac.SizingSpeed] + if prev_capacity > 0 # Preserve cfm/ton + hvac_sizing_values.Cool_Airflow = hvac_sizing_values.Cool_Airflow * hvac_sizing_values.Cool_Capacity / prev_capacity + else + hvac_sizing_values.Cool_Airflow = 0.0 + end + end + end + + # Heating + if [HPXML::HVACTypeHeatPumpAirToAir, + HPXML::HVACTypeHeatPumpMiniSplit].include?(hvac.HeatType) && hvac.HeatingLoadFraction > 0 + heat_airflow_rated_defect_ratio = [] + heat_airflow_rated_ratio = [] + heat_cfm_m3s = UnitConversions.convert(hvac_sizing_values.Heat_Airflow, 'cfm', 'm^3/s') + for speed in 0..(hvac.NumSpeedsHeating - 1) + heat_airflow_rated_ratio << heat_cfm_m3s / HVAC.calc_rated_airflow(hvac_sizing_values.Heat_Capacity, hvac.RatedCFMperTonHeating[speed], hvac.CapacityRatioHeating[speed]) + heat_airflow_rated_defect_ratio << heat_cfm_m3s * (1 + hvac.AirflowDefectRatioHeating) / HVAC.calc_rated_airflow(hvac_sizing_values.Heat_Capacity, hvac.RatedCFMperTonHeating[speed], hvac.CapacityRatioHeating[speed]) + end + if not heat_airflow_rated_defect_ratio.empty? + cap_htg_ratios = [] + for speed in 0..(hvac.NumSpeedsHeating - 1) + a1_AF_Qgr_h = hvac.HEAT_CAP_FFLOW_SPEC[speed][0] + a2_AF_Qgr_h = hvac.HEAT_CAP_FFLOW_SPEC[speed][1] + a3_AF_Qgr_h = hvac.HEAT_CAP_FFLOW_SPEC[speed][2] + + p_values, qgr_values, ff_chg_values = HVAC.get_installation_quality_heating_coeff(f_ch) + + a1_CH_Qgr_h = qgr_values[0] + a2_CH_Qgr_h = qgr_values[1] + a3_CH_Qgr_h = qgr_values[2] + + ff_ch_h = (1 / (1 + (qgr_values[0] + qgr_values[1] * ff_chg_values[0] + qgr_values[2] * f_ch) * f_ch)).round(3) + + qh1_CH = a1_CH_Qgr_h + qh2_CH = a2_CH_Qgr_h * tout_heat + qh3_CH = a3_CH_Qgr_h * f_ch + y_CH_Q_h = 1 + ((qh1_CH + qh2_CH + qh3_CH) * f_ch) + + qh0_AF_CH = a1_AF_Qgr_h + qh1_AF_CH = a2_AF_Qgr_h * ff_ch_h + qh2_AF_CH = a3_AF_Qgr_h * ff_ch_h * ff_ch_h + p_CH_Q_h = y_CH_Q_h / (qh0_AF_CH + qh1_AF_CH + qh2_AF_CH) + + ff_AF_h = heat_airflow_rated_defect_ratio[speed].round(3) + ff_AF_h_nodefect = heat_airflow_rated_ratio[speed].round(3) + ff_AF_comb_h = ff_ch_h * ff_AF_h + + qh0_AF_comb = a1_AF_Qgr_h + qh1_AF_comb = a2_AF_Qgr_h * ff_AF_comb_h + qh2_AF_comb = a3_AF_Qgr_h * ff_AF_comb_h * ff_AF_comb_h + p_AF_Q_h = qh0_AF_comb + qh1_AF_comb + qh2_AF_comb + + heat_cap_fff = (p_CH_Q_h * p_AF_Q_h) + heat_cap_fff_nodefect = a1_AF_Qgr_h + a2_AF_Qgr_h * ff_AF_h_nodefect + a3_AF_Qgr_h * ff_AF_h_nodefect * ff_AF_h_nodefect + cap_htg_ratio = 1 / (heat_cap_fff / heat_cap_fff_nodefect) + cap_htg_ratios << cap_htg_ratio + end + prev_capacity = hvac_sizing_values.Heat_Capacity + hvac_sizing_values.Heat_Capacity *= cap_htg_ratios.max + if prev_capacity > 0 # Preserve cfm/ton + hvac_sizing_values.Heat_Airflow = hvac_sizing_values.Heat_Airflow * hvac_sizing_values.Heat_Capacity / prev_capacity + else + hvac_sizing_values.Heat_Airflow = 0.0 + end + end + end + end + end + + def self.apply_hvac_fixed_capacities(hvac_sizing_values, hvac) ''' Fixed Sizing Equipment ''' # Override HVAC capacities if values are provided - if not hvac.FixedCoolingCapacity.nil? - prev_capacity = hvac_final_values.Cool_Capacity - hvac_final_values.Cool_Capacity = hvac.FixedCoolingCapacity + if (not hvac.FixedCoolingCapacity.nil?) && (hvac_sizing_values.Cool_Capacity > 0) + prev_capacity = hvac_sizing_values.Cool_Capacity + hvac_sizing_values.Cool_Capacity = hvac.FixedCoolingCapacity if @hpxml.header.allow_increased_fixed_capacities - hvac_final_values.Cool_Capacity = [hvac_final_values.Cool_Capacity, prev_capacity].max - end - hvac_final_values.Cool_Capacity_Sens = hvac_final_values.Cool_Capacity * hvac.SHRRated[hvac.SizingSpeed] - if prev_capacity > 0 # Preserve cfm/ton - hvac_final_values.Cool_Airflow = hvac_final_values.Cool_Airflow * hvac_final_values.Cool_Capacity / prev_capacity - else - hvac_final_values.Cool_Airflow = 0.0 + hvac_sizing_values.Cool_Capacity = [hvac_sizing_values.Cool_Capacity, prev_capacity].max end + hvac_sizing_values.Cool_Capacity_Sens = hvac_sizing_values.Cool_Capacity_Sens * hvac_sizing_values.Cool_Capacity / prev_capacity + hvac_sizing_values.Cool_Airflow = hvac_sizing_values.Cool_Airflow * hvac_sizing_values.Cool_Capacity / prev_capacity end - if not hvac.FixedHeatingCapacity.nil? - prev_capacity = hvac_final_values.Heat_Capacity - hvac_final_values.Heat_Capacity = hvac.FixedHeatingCapacity + if (not hvac.FixedHeatingCapacity.nil?) && (hvac_sizing_values.Heat_Capacity > 0) + prev_capacity = hvac_sizing_values.Heat_Capacity + hvac_sizing_values.Heat_Capacity = hvac.FixedHeatingCapacity if @hpxml.header.allow_increased_fixed_capacities - hvac_final_values.Heat_Capacity = [hvac_final_values.Heat_Capacity, prev_capacity].max - end - if prev_capacity > 0 # Preserve cfm/ton - hvac_final_values.Heat_Airflow = hvac_final_values.Heat_Airflow * hvac_final_values.Heat_Capacity / prev_capacity - else - hvac_final_values.Heat_Airflow = 0.0 + hvac_sizing_values.Heat_Capacity = [hvac_sizing_values.Heat_Capacity, prev_capacity].max end + hvac_sizing_values.Heat_Airflow = hvac_sizing_values.Heat_Airflow * hvac_sizing_values.Heat_Capacity / prev_capacity end - if not hvac.FixedSuppHeatingCapacity.nil? - prev_capacity = hvac_final_values.Heat_Capacity_Supp - hvac_final_values.Heat_Capacity_Supp = hvac.FixedSuppHeatingCapacity + if (not hvac.FixedSuppHeatingCapacity.nil?) && (hvac_sizing_values.Heat_Capacity_Supp > 0) + prev_capacity = hvac_sizing_values.Heat_Capacity_Supp + hvac_sizing_values.Heat_Capacity_Supp = hvac.FixedSuppHeatingCapacity if @hpxml.header.allow_increased_fixed_capacities - hvac_final_values.Heat_Capacity_Supp = [hvac_final_values.Heat_Capacity_Supp, prev_capacity].max + hvac_sizing_values.Heat_Capacity_Supp = [hvac_sizing_values.Heat_Capacity_Supp, prev_capacity].max end end end - def self.process_ground_loop(hvac_final_values, weather, hvac) + def self.apply_hvac_ground_loop(hvac_sizing_values, weather, hvac) ''' GSHP Ground Loop Sizing Calculations ''' - if hvac.has_type(Constants.ObjectNameGroundSourceHeatPump) - ground_conductivity = UnitConversions.convert(hvac.GSHP_HXVertical.groundThermalConductivity.get, 'W/(m*K)', 'Btu/(hr*ft*R)') - grout_conductivity = UnitConversions.convert(hvac.GSHP_HXVertical.groutThermalConductivity.get, 'W/(m*K)', 'Btu/(hr*ft*R)') - bore_diameter = UnitConversions.convert(hvac.GSHP_HXVertical.boreHoleRadius.get * 2.0, 'm', 'in') - pipe_od = UnitConversions.convert(hvac.GSHP_HXVertical.pipeOutDiameter.get, 'm', 'in') - pipe_id = pipe_od - UnitConversions.convert(hvac.GSHP_HXVertical.pipeThickness.get * 2.0, 'm', 'in') - pipe_cond = UnitConversions.convert(hvac.GSHP_HXVertical.pipeThermalConductivity.get, 'W/(m*K)', 'Btu/(hr*ft*R)') - pipe_r_value = gshp_hx_pipe_rvalue(pipe_od, pipe_id, pipe_cond) - - # Autosize ground loop heat exchanger length - nom_length_heat, nom_length_cool = gshp_hxbore_ft_per_ton(weather, hvac.GSHP_BoreSpacing, ground_conductivity, hvac.GSHP_SpacingType, grout_conductivity, bore_diameter, pipe_od, pipe_r_value, hvac.HeatingEIR, hvac.CoolingEIR, hvac.GSHP_HXCHWDesign, hvac.GSHP_HXHWDesign, hvac.GSHP_HXDTDesign) - - bore_length_heat = nom_length_heat * hvac_final_values.Heat_Capacity / UnitConversions.convert(1.0, 'ton', 'Btu/hr') - bore_length_cool = nom_length_cool * hvac_final_values.Cool_Capacity / UnitConversions.convert(1.0, 'ton', 'Btu/hr') - bore_length = [bore_length_heat, bore_length_cool].max - - loop_flow = [1.0, UnitConversions.convert([hvac_final_values.Heat_Capacity, hvac_final_values.Cool_Capacity].max, 'Btu/hr', 'ton')].max.floor * 3.0 - - if hvac.GSHP_BoreHoles.nil? && hvac.GSHP_BoreDepth.nil? - hvac.GSHP_BoreHoles = [1, (UnitConversions.convert(hvac_final_values.Cool_Capacity, 'Btu/hr', 'ton') + 0.5).floor].max - hvac.GSHP_BoreDepth = (bore_length / hvac.GSHP_BoreHoles).floor - min_bore_depth = 0.15 * hvac.GSHP_BoreSpacing # 0.15 is the maximum Spacing2DepthRatio defined for the G-function - - (0..4).to_a.each do |tmp| - if (hvac.GSHP_BoreDepth < min_bore_depth) && (hvac.GSHP_BoreHoles > 1) - hvac.GSHP_BoreHoles -= 1 - hvac.GSHP_BoreDepth = (bore_length / hvac.GSHP_BoreHoles).floor - elsif hvac.GSHP_BoreDepth > 345 - hvac.GSHP_BoreHoles += 1 - hvac.GSHP_BoreDepth = (bore_length / hvac.GSHP_BoreHoles).floor - end - end - - hvac.GSHP_BoreDepth = (bore_length / hvac.GSHP_BoreHoles).floor + 5 - - elsif hvac.GSHP_BoreHoles.nil? && (not hvac.GSHP_BoreDepth.nil?) - hvac.GSHP_BoreHoles = (bore_length / hvac.GSHP_BoreDepth.to_f + 0.5).floor - hvac.GSHP_BoreDepth = hvac.GSHP_BoreDepth.to_f - elsif (not hvac.GSHP_BoreHoles.nil?) && hvac.GSHP_BoreDepth.nil? - hvac.GSHP_BoreHoles = hvac.GSHP_BoreHoles.to_f - hvac.GSHP_BoreDepth = (bore_length / hvac.GSHP_BoreHoles).floor + 5 + return unless hvac.CoolType == HPXML::HVACTypeHeatPumpGroundToAir + + # Autosize ground loop heat exchanger length + bore_spacing = 20.0 # ft, distance between bores + pipe_r_value = gshp_hx_pipe_rvalue(hvac) + nom_length_heat, nom_length_cool = gshp_hxbore_ft_per_ton(weather, hvac, bore_spacing, pipe_r_value) + + bore_length_heat = nom_length_heat * hvac_sizing_values.Heat_Capacity / UnitConversions.convert(1.0, 'ton', 'Btu/hr') + bore_length_cool = nom_length_cool * hvac_sizing_values.Cool_Capacity / UnitConversions.convert(1.0, 'ton', 'Btu/hr') + bore_length = [bore_length_heat, bore_length_cool].max + + loop_flow = [1.0, UnitConversions.convert([hvac_sizing_values.Heat_Capacity, hvac_sizing_values.Cool_Capacity].max, 'Btu/hr', 'ton')].max.floor * 3.0 + + num_bore_holes = [1, (UnitConversions.convert(hvac_sizing_values.Cool_Capacity, 'Btu/hr', 'ton') + 0.5).floor].max + bore_depth = (bore_length / num_bore_holes).floor # ft + min_bore_depth = 0.15 * bore_spacing # 0.15 is the maximum Spacing2DepthRatio defined for the G-function + + (0..4).to_a.each do |tmp| + if (bore_depth < min_bore_depth) && (num_bore_holes > 1) + num_bore_holes -= 1 + bore_depth = (bore_length / num_bore_holes).floor + elsif bore_depth > 345 + num_bore_holes += 1 + bore_depth = (bore_length / num_bore_holes).floor + end + end + + bore_depth = (bore_length / num_bore_holes).floor + 5 + + bore_length = bore_depth * num_bore_holes + + if num_bore_holes == 1 + bore_config = 'single' + elsif num_bore_holes == 2 + bore_config = 'line' + elsif num_bore_holes == 3 + bore_config = 'line' + elsif num_bore_holes == 4 + bore_config = 'rectangle' + elsif num_bore_holes == 5 + bore_config = 'u-config' + elsif num_bore_holes > 5 + bore_config = 'line' + end + + # Test for valid GSHP bore field configurations + valid_configs = { 'single' => [1], + 'line' => [2, 3, 4, 5, 6, 7, 8, 9, 10], + 'l-config' => [3, 4, 5, 6], + 'rectangle' => [2, 4, 6, 8], + 'u-config' => [5, 7, 9], + 'l2-config' => [8], + 'open-rectangle' => [8] } + valid_num_bores = valid_configs[bore_config] + max_valid_configs = { 'line' => 10, 'l-config' => 6 } + unless valid_num_bores.include? num_bore_holes + # Any configuration with a max_valid_configs value can accept any number of bores up to the maximum + if max_valid_configs.keys.include? bore_config + max_num_bore_holes = max_valid_configs[bore_config] + num_bore_holes = max_num_bore_holes else - @runner.registerWarning('User is hard sizing the bore field, improper sizing may lead to unbalanced / unsteady ground loop temperature and erroneous prediction of system energy related cost.') - hvac.GSHP_BoreHoles = hvac.GSHP_BoreHoles.to_f - hvac.GSHP_BoreDepth = hvac.GSHP_BoreDepth.to_f - end - - bore_length = hvac.GSHP_BoreDepth * hvac.GSHP_BoreHoles - - if hvac.GSHP_BoreConfig.nil? - if hvac.GSHP_BoreHoles == 1 - hvac.GSHP_BoreConfig = Constants.BoreConfigSingle - elsif hvac.GSHP_BoreHoles == 2 - hvac.GSHP_BoreConfig = Constants.BoreConfigLine - elsif hvac.GSHP_BoreHoles == 3 - hvac.GSHP_BoreConfig = Constants.BoreConfigLine - elsif hvac.GSHP_BoreHoles == 4 - hvac.GSHP_BoreConfig = Constants.BoreConfigRectangle - elsif hvac.GSHP_BoreHoles == 5 - hvac.GSHP_BoreConfig = Constants.BoreConfigUconfig - elsif hvac.GSHP_BoreHoles > 5 - hvac.GSHP_BoreConfig = Constants.BoreConfigLine - end - end - - # Test for valid GSHP bore field configurations - valid_configs = { Constants.BoreConfigSingle => [1], - Constants.BoreConfigLine => [2, 3, 4, 5, 6, 7, 8, 9, 10], - Constants.BoreConfigLconfig => [3, 4, 5, 6], - Constants.BoreConfigRectangle => [2, 4, 6, 8], - Constants.BoreConfigUconfig => [5, 7, 9], - Constants.BoreConfigL2config => [8], - Constants.BoreConfigOpenRectangle => [8] } - valid_num_bores = valid_configs[hvac.GSHP_BoreConfig] - max_valid_configs = { Constants.BoreConfigLine => 10, Constants.BoreConfigLconfig => 6 } - unless valid_num_bores.include? hvac.GSHP_BoreHoles - # Any configuration with a max_valid_configs value can accept any number of bores up to the maximum - if max_valid_configs.keys.include? hvac.GSHP_BoreConfig - max_bore_holes = max_valid_configs[hvac.GSHP_BoreConfig] - @runner.registerWarning("Maximum number of bore holes for '#{hvac.GSHP_BoreConfig}' bore configuration is #{max_bore_holes}. Overriding value of #{hvac.GSHP_BoreHoles} bore holes to #{max_bore_holes}.") - hvac.GSHP_BoreHoles = max_bore_holes + # Search for first valid bore field + new_bore_config = nil + valid_field_found = false + valid_configs.keys.each do |bore_config| + next unless valid_configs[bore_config].include? num_bore_holes + + valid_field_found = true + new_bore_config = bore_config + break + end + if valid_field_found + bore_config = new_bore_config else - # Search for first valid bore field - new_bore_config = nil - valid_field_found = false - valid_configs.keys.each do |bore_config| - next unless valid_configs[bore_config].include? hvac.GSHP_BoreHoles - - valid_field_found = true - new_bore_config = bore_config - break - end - if valid_field_found - @runner.registerWarning("Bore field '#{hvac.GSHP_BoreConfig}' with #{hvac.GSHP_BoreHoles.to_i} bore holes is an invalid configuration. Changing layout to '#{new_bore_config}' configuration.") - hvac.GSHP_BoreConfig = new_bore_config - else - fail 'Could not construct a valid GSHP bore field configuration.' - end + fail 'Could not construct a valid GSHP bore field configuration.' end end + end - spacing_to_depth_ratio = hvac.GSHP_BoreSpacing / hvac.GSHP_BoreDepth + spacing_to_depth_ratio = bore_spacing / bore_depth - lntts = [-8.5, -7.8, -7.2, -6.5, -5.9, -5.2, -4.5, -3.963, -3.27, -2.864, -2.577, -2.171, -1.884, -1.191, -0.497, -0.274, -0.051, 0.196, 0.419, 0.642, 0.873, 1.112, 1.335, 1.679, 2.028, 2.275, 3.003] - gfnc_coeff = gshp_gfnc_coeff(hvac.GSHP_BoreConfig, hvac.GSHP_BoreHoles, spacing_to_depth_ratio) + lntts = [-8.5, -7.8, -7.2, -6.5, -5.9, -5.2, -4.5, -3.963, -3.27, -2.864, -2.577, -2.171, -1.884, -1.191, -0.497, -0.274, -0.051, 0.196, 0.419, 0.642, 0.873, 1.112, 1.335, 1.679, 2.028, 2.275, 3.003] + gfnc_coeff = gshp_gfnc_coeff(bore_config, num_bore_holes, spacing_to_depth_ratio) - hvac_final_values.GSHP_Loop_flow = loop_flow - hvac_final_values.GSHP_Bore_Depth = hvac.GSHP_BoreDepth - hvac_final_values.GSHP_Bore_Holes = hvac.GSHP_BoreHoles - hvac_final_values.GSHP_G_Functions = [lntts, gfnc_coeff] - end + hvac_sizing_values.GSHP_Loop_flow = loop_flow + hvac_sizing_values.GSHP_Bore_Depth = bore_depth + hvac_sizing_values.GSHP_Bore_Holes = num_bore_holes + hvac_sizing_values.GSHP_G_Functions = [lntts, gfnc_coeff] end - def self.process_finalize(hvac_final_values, zone_loads, weather, hvac) + def self.apply_hvac_finalize_airflows(hvac_sizing_values, weather, hvac) ''' Finalize Sizing Calculations ''' - # Prevent errors of "has no air flow" - min_air_flow = 3.0 # cfm; E+ minimum is 0.001 m^3/s" - if hvac_final_values.Heat_Airflow > 0 - hvac_final_values.Heat_Airflow = [hvac_final_values.Heat_Airflow, min_air_flow].max + if hvac_sizing_values.Heat_Airflow > 0 + hvac_sizing_values.Heat_Airflow *= (1.0 + hvac.AirflowDefectRatioHeating) end - if hvac_final_values.Cool_Airflow > 0 - hvac_final_values.Cool_Airflow = [hvac_final_values.Cool_Airflow, min_air_flow].max + + if hvac_sizing_values.Cool_Airflow > 0 + hvac_sizing_values.Cool_Airflow *= (1.0 + hvac.AirflowDefectRatioCooling) end end - def self.process_heat_pump_adjustment(hvac_final_values, weather, hvac, totalCap_CurveValue) + def self.process_heat_pump_adjustment(hvac_sizing_values, weather, hvac, totalCap_CurveValue) ''' Adjust heat pump sizing ''' @@ -1696,88 +1977,129 @@ def self.process_heat_pump_adjustment(hvac_final_values, weather, hvac, totalCap capacity_ratio = 1.0 end - heatCap_Rated = (hvac_final_values.Heat_Load / MathTools.biquadratic(@heat_setpoint, weather.design.HeatingDrybulb, coefficients)) / capacity_ratio + heatCap_Rated = (hvac_sizing_values.Heat_Load / MathTools.biquadratic(@heat_setpoint, weather.design.HeatingDrybulb, coefficients)) / capacity_ratio - if heatCap_Rated < hvac_final_values.Cool_Capacity - if hvac.has_type(Constants.ObjectNameAirSourceHeatPump) - hvac_final_values.Heat_Capacity = hvac_final_values.Cool_Capacity - elsif hvac.has_type(Constants.ObjectNameMiniSplitHeatPump) - hvac_final_values.Heat_Capacity = [hvac_final_values.Cool_Capacity + hvac.HeatingCapacityOffset, Constants.small].max - end - else - cfm_Btu = hvac_final_values.Cool_Airflow / hvac_final_values.Cool_Capacity - load_shr = hvac_final_values.Cool_Load_Sens / hvac_final_values.Cool_Load_Tot + if heatCap_Rated >= hvac_sizing_values.Cool_Capacity + cfm_per_btuh = hvac_sizing_values.Cool_Airflow / hvac_sizing_values.Cool_Capacity + load_shr = hvac_sizing_values.Cool_Load_Sens / hvac_sizing_values.Cool_Load_Tot if ((weather.data.HDD65F / weather.data.CDD50F) < 2.0) || (load_shr < 0.95) # Mild winter or has a latent cooling load - hvac_final_values.Cool_Capacity = [(hvac.OverSizeLimit * hvac_final_values.Cool_Load_Tot) / totalCap_CurveValue, heatCap_Rated].min + hvac_sizing_values.Cool_Capacity = [(hvac.OverSizeLimit * hvac_sizing_values.Cool_Load_Tot) / totalCap_CurveValue, heatCap_Rated].min else # Cold winter and no latent cooling load (add a ton rule applies) - hvac_final_values.Cool_Capacity = [(hvac_final_values.Cool_Load_Tot + hvac.OverSizeDelta) / totalCap_CurveValue, heatCap_Rated].min + hvac_sizing_values.Cool_Capacity = [(hvac_sizing_values.Cool_Load_Tot + hvac.OverSizeDelta) / totalCap_CurveValue, heatCap_Rated].min end - if hvac.has_type(Constants.ObjectNameAirSourceHeatPump) - hvac_final_values.Cool_Airflow = cfm_Btu * hvac_final_values.Cool_Capacity - hvac_final_values.Heat_Capacity = hvac_final_values.Cool_Capacity - elsif hvac.has_type(Constants.ObjectNameMiniSplitHeatPump) - hvac_final_values.Cool_Airflow = hvac.RatedCFMperTonCooling[-1] * UnitConversions.convert(hvac_final_values.Cool_Capacity, 'Btu/hr', 'ton') - hvac_final_values.Heat_Capacity = [hvac_final_values.Cool_Capacity + hvac.HeatingCapacityOffset, Constants.small].max + if hvac.HeatType == HPXML::HVACTypeHeatPumpAirToAir + hvac_sizing_values.Cool_Airflow = cfm_per_btuh * hvac_sizing_values.Cool_Capacity + elsif hvac.HeatType == HPXML::HVACTypeHeatPumpMiniSplit + hvac_sizing_values.Cool_Airflow = hvac.RatedCFMperTonCooling[-1] * hvac.CapacityRatioCooling[-1] * UnitConversions.convert(hvac_sizing_values.Cool_Capacity, 'Btu/hr', 'ton') end end - - return hvac_final_values end - def self.get_shelter_class(model, min_neighbor_distance) - height_ft = Geometry.get_height_of_spaces([@spaces[HPXML::LocationLivingSpace]]) - tot_cb_area, ext_cb_area = @hpxml.compartmentalization_boundary_areas() - exposed_wall_ratio = ext_cb_area / tot_cb_area - - if exposed_wall_ratio > 0.5 # 3 or 4 exposures; Table 5D - if min_neighbor_distance.nil? - shelter_class = 2 # Typical shelter for isolated rural house - elsif min_neighbor_distance > height_ft - shelter_class = 3 # Typical shelter caused by other buildings across the street - else - shelter_class = 4 # Typical shelter for urban buildings where sheltering obstacles are less than one building height away - end - else # 0, 1, or 2 exposures; Table 5E - if min_neighbor_distance.nil? - if exposed_wall_ratio > 0.25 # 2 exposures; Table 5E - shelter_class = 2 # Typical shelter for isolated rural house - else # 1 exposure; Table 5E - shelter_class = 3 # Typical shelter caused by other buildings across the street - end - elsif min_neighbor_distance > height_ft - shelter_class = 4 # Typical shelter for urban buildings where sheltering obstacles are less than one building height away - else - shelter_class = 5 # Typical shelter for urban buildings where sheltering obstacles are less than one building height away - end + def self.get_ventilation_rates() + vent_fans_mech = @hpxml.ventilation_fans.select { |f| f.used_for_whole_building_ventilation } + if vent_fans_mech.empty? + return [0.0, 0.0, 0.0, 0.0, 0.0, 0.0] end - return shelter_class - end + # Categorize fans into different types + vent_mech_preheat = vent_fans_mech.select { |vent_mech| (not vent_mech.preheating_efficiency_cop.nil?) } + vent_mech_precool = vent_fans_mech.select { |vent_mech| (not vent_mech.precooling_efficiency_cop.nil?) } + vent_mech_shared = vent_fans_mech.select { |vent_mech| vent_mech.is_shared_system } + + vent_mech_sup_tot = vent_fans_mech.select { |vent_mech| vent_mech.fan_type == HPXML::MechVentTypeSupply } + vent_mech_exh_tot = vent_fans_mech.select { |vent_mech| vent_mech.fan_type == HPXML::MechVentTypeExhaust } + vent_mech_cfis_tot = vent_fans_mech.select { |vent_mech| vent_mech.fan_type == HPXML::MechVentTypeCFIS } + vent_mech_bal_tot = vent_fans_mech.select { |vent_mech| vent_mech.fan_type == HPXML::MechVentTypeBalanced } + vent_mech_erv_hrv_tot = vent_fans_mech.select { |vent_mech| [HPXML::MechVentTypeERV, HPXML::MechVentTypeHRV].include? vent_mech.fan_type } + + # Average in-unit CFMs (include recirculation from in unit CFMs for shared systems) + sup_cfm_tot = vent_mech_sup_tot.map { |vent_mech| vent_mech.average_total_unit_flow_rate }.sum(0.0) + exh_cfm_tot = vent_mech_exh_tot.map { |vent_mech| vent_mech.average_total_unit_flow_rate }.sum(0.0) + bal_cfm_tot = vent_mech_bal_tot.map { |vent_mech| vent_mech.average_total_unit_flow_rate }.sum(0.0) + erv_hrv_cfm_tot = vent_mech_erv_hrv_tot.map { |vent_mech| vent_mech.average_total_unit_flow_rate }.sum(0.0) + cfis_cfm_tot = vent_mech_cfis_tot.map { |vent_mech| vent_mech.average_total_unit_flow_rate }.sum(0.0) + + # Average preconditioned OA air CFMs (only OA, recirculation will be addressed below for all shared systems) + oa_cfm_preheat = vent_mech_preheat.map { |vent_mech| vent_mech.average_oa_unit_flow_rate * vent_mech.preheating_fraction_load_served }.sum(0.0) + oa_cfm_precool = vent_mech_precool.map { |vent_mech| vent_mech.average_oa_unit_flow_rate * vent_mech.precooling_fraction_load_served }.sum(0.0) + recirc_cfm_shared = vent_mech_shared.map { |vent_mech| vent_mech.average_total_unit_flow_rate - vent_mech.average_oa_unit_flow_rate }.sum(0.0) + + # Total CFMS + tot_sup_cfm = sup_cfm_tot + bal_cfm_tot + erv_hrv_cfm_tot + cfis_cfm_tot + tot_exh_cfm = exh_cfm_tot + bal_cfm_tot + erv_hrv_cfm_tot + tot_unbal_cfm = (tot_sup_cfm - tot_exh_cfm).abs + tot_bal_cfm = [tot_exh_cfm, tot_sup_cfm].min - def self.get_ventilation_rates(model) - mechVentExist = get_feature(model.getBuilding, Constants.SizingInfoMechVentExist, 'boolean') - return [0.0, 0.0, 0.0, 0.0, 0.0, 0.0] unless mechVentExist + # Calculate effectivenesses for all ERV/HRV and store results in a hash + hrv_erv_effectiveness_map = Airflow.calc_hrv_erv_effectiveness(vent_mech_erv_hrv_tot) - q_unb_cfm = get_feature(model.getBuilding, Constants.SizingInfoMechVentWholeHouseRateUnbalanced, 'double') - q_b = get_feature(model.getBuilding, Constants.SizingInfoMechVentWholeHouseRateBalanced, 'double') - q_preheat = get_feature(model.getBuilding, Constants.SizingInfoMechVentWholeHouseRatePreHeated, 'double') - q_precool = get_feature(model.getBuilding, Constants.SizingInfoMechVentWholeHouseRatePreCooled, 'double') - q_recirc = get_feature(model.getBuilding, Constants.SizingInfoMechVentWholeHouseRateRecirculated, 'double') - apparentSensibleEffectiveness = get_feature(model.getBuilding, Constants.SizingInfoMechVentApparentSensibleEffectiveness, 'double') - latentEffectiveness = get_feature(model.getBuilding, Constants.SizingInfoMechVentLatentEffectiveness, 'double') + # Calculate cfm weighted average effectivenesses for the combined balanced airflow + weighted_vent_mech_lat_eff = 0.0 + weighted_vent_mech_apparent_sens_eff = 0.0 + vent_mech_erv_hrv_unprecond = vent_mech_erv_hrv_tot.select { |vent_mech| vent_mech.preheating_efficiency_cop.nil? && vent_mech.precooling_efficiency_cop.nil? } + vent_mech_erv_hrv_unprecond.each do |vent_mech| + weighted_vent_mech_lat_eff += vent_mech.average_oa_unit_flow_rate / tot_bal_cfm * hrv_erv_effectiveness_map[vent_mech][:vent_mech_lat_eff] + weighted_vent_mech_apparent_sens_eff += vent_mech.average_oa_unit_flow_rate / tot_bal_cfm * hrv_erv_effectiveness_map[vent_mech][:vent_mech_apparent_sens_eff] + end - q_bal_sens = q_b * (1.0 - apparentSensibleEffectiveness) - q_bal_lat = q_b * (1.0 - latentEffectiveness) + tot_bal_cfm_sens = tot_bal_cfm * (1.0 - weighted_vent_mech_apparent_sens_eff) + tot_bal_cfm_lat = tot_bal_cfm * (1.0 - weighted_vent_mech_lat_eff) - return [q_unb_cfm, q_preheat, q_precool, q_recirc, q_bal_sens, q_bal_lat] + return [tot_unbal_cfm, oa_cfm_preheat, oa_cfm_precool, recirc_cfm_shared, tot_bal_cfm_sens, tot_bal_cfm_lat] end def self.calc_airflow_rate(load_or_capacity, deltaT) return load_or_capacity / (1.1 * @acf * deltaT) end + def self.calc_gshp_clg_curve_value(hvac, wb_temp, db_temp, w_temp, vfr_air, loop_flow) + # Reference conditions in thesis with largest capacity: + # See Appendix B Figure B.3 of https://hvac.okstate.edu/sites/default/files/pubs/theses/MS/27-Tang_Thesis_05.pdf + ref_temp = 283 # K + ref_vfr_air = UnitConversions.convert(1200, 'cfm', 'm^3/s') + ref_vfr_water = 0.000284 + + a_1 = hvac.COOL_CAP_FT_SPEC[hvac.SizingSpeed][0] + a_2 = hvac.COOL_CAP_FT_SPEC[hvac.SizingSpeed][1] + a_3 = hvac.COOL_CAP_FT_SPEC[hvac.SizingSpeed][2] + a_4 = hvac.COOL_CAP_FT_SPEC[hvac.SizingSpeed][3] + a_5 = hvac.COOL_CAP_FT_SPEC[hvac.SizingSpeed][4] + b_1 = hvac.COOL_SH_FT_SPEC[hvac.SizingSpeed][0] + b_2 = hvac.COOL_SH_FT_SPEC[hvac.SizingSpeed][1] + b_3 = hvac.COOL_SH_FT_SPEC[hvac.SizingSpeed][2] + b_4 = hvac.COOL_SH_FT_SPEC[hvac.SizingSpeed][3] + b_5 = hvac.COOL_SH_FT_SPEC[hvac.SizingSpeed][4] + b_6 = hvac.COOL_SH_FT_SPEC[hvac.SizingSpeed][5] + + if not loop_flow.nil? + totalCap_CurveValue = a_1 + wb_temp / ref_temp * a_2 + w_temp / ref_temp * a_3 + vfr_air / ref_vfr_air * a_4 + loop_flow / ref_vfr_water * a_5 + sensibleCap_CurveValue = b_1 + db_temp / ref_temp * b_2 + wb_temp / ref_temp * b_3 + w_temp / ref_temp * b_4 + vfr_air / ref_vfr_air * b_5 + loop_flow / ref_vfr_water * b_6 + else + totalCap_CurveValue = a_1 + wb_temp / ref_temp * a_2 + w_temp / ref_temp * a_3 + vfr_air / ref_vfr_air * a_4 + sensibleCap_CurveValue = b_1 + db_temp / ref_temp * b_2 + wb_temp / ref_temp * b_3 + w_temp / ref_temp * b_4 + vfr_air / ref_vfr_air * b_5 + end + return totalCap_CurveValue, sensibleCap_CurveValue + end + + def self.calc_gshp_htg_curve_value(hvac, db_temp, w_temp, vfr_air, loop_flow) + # Reference conditions in thesis with largest capacity: + # See Appendix B Figure B.3 of https://hvac.okstate.edu/sites/default/files/pubs/theses/MS/27-Tang_Thesis_05.pdf + ref_temp = 283 # K + ref_vfr_air = UnitConversions.convert(1200, 'cfm', 'm^3/s') + ref_vfr_water = 0.000284 + + a_1 = hvac.HEAT_CAP_FT_SPEC[hvac.SizingSpeed][0] + a_2 = hvac.HEAT_CAP_FT_SPEC[hvac.SizingSpeed][1] + a_3 = hvac.HEAT_CAP_FT_SPEC[hvac.SizingSpeed][2] + a_4 = hvac.HEAT_CAP_FT_SPEC[hvac.SizingSpeed][3] + a_5 = hvac.HEAT_CAP_FT_SPEC[hvac.SizingSpeed][4] + + cap_CurveValue = a_1 + db_temp / ref_temp * a_2 + w_temp / ref_temp * a_3 + vfr_air / ref_vfr_air * a_4 + loop_flow / ref_vfr_water * a_5 + return cap_CurveValue + end + def self.calc_delivery_effectiveness_heating(dse_Qs, dse_Qr, system_cfm, load_sens, dse_Tamb_s, dse_Tamb_r, dse_As, dse_Ar, t_setpoint, dse_Fregain_s, dse_Fregain_r, supply_r, return_r, air_dens = @inside_air_dens, air_cp = Gas.Air.cp) ''' Calculate the Delivery Effectiveness for heating (using the method of ASHRAE Standard 152). @@ -1862,61 +2184,6 @@ def self.calculate_sensible_latent_split(return_leakage_cfm, cool_load_tot, cool return cool_Load_Lat, cool_Load_Sens end - def self.get_ducts_for_object(object) - ducts = [] - - # Ducted? - is_ducted = get_feature(object, Constants.SizingInfoHVACSystemIsDucted, 'boolean', false) - is_ducted = true if is_ducted.nil? - return ducts if not is_ducted - - # Has ducts? - has_ducts = get_feature(object, Constants.SizingInfoDuctExist, 'boolean', false) - return ducts if ducts.nil? - - # Leakage values - leakage_fracs = get_feature(object, Constants.SizingInfoDuctLeakageFracs, 'string', false) - leakage_cfm25s = get_feature(object, Constants.SizingInfoDuctLeakageCFM25s, 'string', false) - return ducts if leakage_fracs.nil? || leakage_cfm25s.nil? - - leakage_fracs = leakage_fracs.split(',').map(&:to_f) - leakage_cfm25s = leakage_cfm25s.split(',').map(&:to_f) - if leakage_fracs.sum(0.0) == 0.0 - leakage_fracs = [nil] * leakage_fracs.size - else - leakage_cfm25s = [nil] * leakage_cfm25s.size - end - - # Areas - areas = get_feature(object, Constants.SizingInfoDuctAreas, 'string') - areas = areas.split(',').map(&:to_f) - - # R-values - rvalues = get_feature(object, Constants.SizingInfoDuctRvalues, 'string') - rvalues = rvalues.split(',').map(&:to_f) - - # Locations - locations = get_feature(object, Constants.SizingInfoDuctLocations, 'string') - locations = locations.split(',') - - # Sides - sides = get_feature(object, Constants.SizingInfoDuctSides, 'string') - sides = sides.split(',') - - locations.each_with_index do |location, index| - d = DuctInfo.new - d.Location = location - d.LeakageFrac = leakage_fracs[index] - d.LeakageCFM25 = leakage_cfm25s[index] - d.Area = areas[index] - d.Rvalue = rvalues[index] - d.Side = sides[index] - ducts << d - end - - return ducts - end - def self.calc_ducts_area_weighted_average(ducts, values) ''' Calculate area-weighted average values for unconditioned duct(s) @@ -1966,9 +2233,9 @@ def self.calc_ducts_leakages(ducts, system_cfm) ducts.each do |duct| next if [HPXML::LocationLivingSpace, HPXML::LocationBasementConditioned].include? duct.Location - if not duct.LeakageFrac.nil? + if duct.LeakageFrac.to_f > 0 cfms[duct.Side] += duct.LeakageFrac * system_cfm - elsif not duct.LeakageCFM25.nil? + elsif duct.LeakageCFM25.to_f > 0 cfms[duct.Side] += duct.LeakageCFM25 end end @@ -1993,302 +2260,243 @@ def self.calc_ducts_rvalues(ducts) return 1.0 / supply_u, 1.0 / return_u end - def self.get_hvacs(model) - hvacs = [] - - # Get unique set of HVAC equipment - equips = [] + def self.get_hvac_information(hvac_system) + # FUTURE: Remove this method and use hvac_system objects directly. + hvac = HVACInfo.new - HVAC.existing_equipment(model, @cond_zone, @runner).each do |equip| - next if equips.include? equip - next if equip.is_a? OpenStudio::Model::ZoneHVACIdealLoadsAirSystem - - equips << equip + hpxml_hvacs = [] + if not hvac_system[:heating].nil? + hpxml_hvacs << hvac_system[:heating] + end + if not hvac_system[:cooling].nil? + hpxml_hvacs << hvac_system[:cooling] end - # Process each equipment - equips.each do |equip| - hvac = HVACInfo.new - hvacs << hvac - - hvac.Objects = [equip] - - clg_coil, htg_coil, supp_htg_coil = HVAC.get_coils_from_hvac_equip(model, equip) - - # Get type of heating/cooling system - hvac.CoolType = get_feature(equip, Constants.SizingInfoHVACCoolType, 'string', false) - hvac.HeatType = get_feature(equip, Constants.SizingInfoHVACHeatType, 'string', false) - - # Retrieve ducts if they exist - if equip.is_a? OpenStudio::Model::AirLoopHVACUnitarySystem - if equip.airLoopHVAC.is_initialized - hvac.Ducts = get_ducts_for_object(equip.airLoopHVAC.get) - end - elsif equip.is_a? OpenStudio::Model::ZoneHVACFourPipeFanCoil - hvac.Ducts = get_ducts_for_object(equip) - elsif equip.is_a? OpenStudio::Model::EvaporativeCoolerDirectResearchSpecial - hvac.Ducts = get_ducts_for_object(equip.airLoopHVAC.get) + # Get heating/cooling system info from HPXML objects + hpxml_hvacs.uniq.each do |hpxml_hvac| + hpxml_hvac_ap = hpxml_hvac.additional_properties - hvac.CoolingLoadFraction = get_feature(equip, Constants.SizingInfoHVACFracCoolLoadServed, 'double') - hvac.EvapCoolerEffectiveness = equip.coolerEffectiveness + # System type + if hpxml_hvac.respond_to? :heating_system_type + hvac.HeatType = hpxml_hvac.heating_system_type + elsif hpxml_hvac.respond_to? :cooling_system_type + hvac.CoolType = hpxml_hvac.cooling_system_type + elsif hpxml_hvac.respond_to? :heat_pump_type + hvac.HeatType = hpxml_hvac.heat_pump_type + hvac.CoolType = hpxml_hvac.heat_pump_type end - hvac.FanWatts = get_feature(equip, Constants.SizingInfoHVACFanWatts, 'double', false) - if not clg_coil.nil? - ratedCFMperTonCooling = get_feature(equip, Constants.SizingInfoHVACRatedCFMperTonCooling, 'string', false) - if not ratedCFMperTonCooling.nil? - hvac.RatedCFMperTonCooling = ratedCFMperTonCooling.split(',').map(&:to_f) - end - - hvac.CoolingLoadFraction = get_feature(equip, Constants.SizingInfoHVACFracCoolLoadServed, 'double') + # Load fractions + if hpxml_hvac.respond_to? :fraction_heat_load_served + hvac.HeatingLoadFraction = hpxml_hvac.fraction_heat_load_served + end + if hpxml_hvac.respond_to? :fraction_cool_load_served + hvac.CoolingLoadFraction = hpxml_hvac.fraction_cool_load_served end - if clg_coil.is_a? OpenStudio::Model::CoilCoolingDXSingleSpeed - hvac.NumSpeedsCooling = 1 - - if hvac.has_type(Constants.ObjectNameRoomAirConditioner) - ratedCFMperTonCooling = get_feature(equip, Constants.SizingInfoHVACRatedCFMperTonCooling, 'string') - - hvac.RatedCFMperTonCooling = ratedCFMperTonCooling.split(',').map(&:to_f) - end - - curves = [clg_coil.totalCoolingCapacityFunctionOfTemperatureCurve] - hvac.COOL_CAP_FT_SPEC = get_2d_vector_from_CAP_FT_SPEC_curves(curves, hvac.NumSpeedsCooling) - if not clg_coil.ratedSensibleHeatRatio.is_initialized - fail "SHR not set for #{clg_coil.name}." - end + # Capacities + if hpxml_hvac.respond_to? :heating_capacity + hvac.FixedHeatingCapacity = hpxml_hvac.heating_capacity + end + if hpxml_hvac.respond_to? :cooling_capacity + hvac.FixedCoolingCapacity = hpxml_hvac.cooling_capacity + end + if hpxml_hvac.respond_to? :backup_heating_capacity + hvac.FixedSuppHeatingCapacity = hpxml_hvac.backup_heating_capacity + end - hvac.SHRRated = [clg_coil.ratedSensibleHeatRatio.get] - if clg_coil.ratedTotalCoolingCapacity.is_initialized - hvac.FixedCoolingCapacity = UnitConversions.convert(clg_coil.ratedTotalCoolingCapacity.get, 'W', 'Btu/hr') + # Number of speeds + if hpxml_hvac.is_a?(HPXML::CoolingSystem) || hpxml_hvac.is_a?(HPXML::HeatPump) + # Cooling + if hpxml_hvac_ap.respond_to? :num_speeds + num_speeds = hpxml_hvac_ap.num_speeds end - - elsif clg_coil.is_a? OpenStudio::Model::CoilCoolingDXMultiSpeed - hvac.NumSpeedsCooling = clg_coil.stages.size + num_speeds = 1 if num_speeds.nil? + hvac.NumSpeedsCooling = num_speeds if hvac.NumSpeedsCooling == 2 hvac.OverSizeLimit = 1.2 - else + elsif hvac.NumSpeedsCooling > 2 hvac.OverSizeLimit = 1.3 end - - capacityRatioCooling = get_feature(equip, Constants.SizingInfoHVACCapacityRatioCooling, 'string') - - hvac.CapacityRatioCooling = capacityRatioCooling.split(',').map(&:to_f) - - if not equip.designSpecificationMultispeedObject.is_initialized - fail "DesignSpecificationMultispeedObject not set for #{equip.name}." + end + if hpxml_hvac.is_a?(HPXML::HeatingSystem) || hpxml_hvac.is_a?(HPXML::HeatPump) + # Heating + if hpxml_hvac_ap.respond_to? :num_speeds + num_speeds = hpxml_hvac_ap.num_speeds end + num_speeds = 1 if num_speeds.nil? + hvac.NumSpeedsHeating = num_speeds + end - perf = equip.designSpecificationMultispeedObject.get - hvac.FanspeedRatioCooling = [] - perf.supplyAirflowRatioFields.each do |airflowRatioField| - if not airflowRatioField.coolingRatio.is_initialized - fail "Cooling airflow ratio not set for #{perf.name}" - end - - hvac.FanspeedRatioCooling << airflowRatioField.coolingRatio.get + # HVAC installation quality + if hpxml_hvac.respond_to? :charge_defect_ratio + if [HPXML::HVACTypeCentralAirConditioner, + HPXML::HVACTypeMiniSplitAirConditioner, + HPXML::HVACTypeHeatPumpAirToAir, + HPXML::HVACTypeHeatPumpMiniSplit, + HPXML::HVACTypeHeatPumpGroundToAir].include? hvac.CoolType + hvac.ChargeDefectRatio = hpxml_hvac.charge_defect_ratio end - - curves = [] - hvac.SHRRated = [] - clg_coil.stages.each_with_index do |stage, speed| - curves << stage.totalCoolingCapacityFunctionofTemperatureCurve - if not stage.grossRatedSensibleHeatRatio.is_initialized - fail "SHR not set for #{clg_coil.name}." + end + if hpxml_hvac.respond_to? :airflow_defect_ratio + # Cooling + if [HPXML::HVACTypeCentralAirConditioner, + HPXML::HVACTypeMiniSplitAirConditioner, + HPXML::HVACTypeHeatPumpAirToAir, + HPXML::HVACTypeHeatPumpMiniSplit, + HPXML::HVACTypeHeatPumpGroundToAir].include? hvac.CoolType + if not hpxml_hvac.distribution_system.nil? # Exclude ductless + hvac.AirflowDefectRatioCooling = hpxml_hvac.airflow_defect_ratio end - - hvac.SHRRated << stage.grossRatedSensibleHeatRatio.get - next if !stage.grossRatedTotalCoolingCapacity.is_initialized - - hvac.FixedCoolingCapacity = UnitConversions.convert(stage.grossRatedTotalCoolingCapacity.get, 'W', 'Btu/hr') - end - hvac.COOL_CAP_FT_SPEC = get_2d_vector_from_CAP_FT_SPEC_curves(curves, hvac.NumSpeedsCooling) - - if hvac.CoolType == Constants.ObjectNameMiniSplitHeatPump - ratedCFMperTonCooling = get_feature(equip, Constants.SizingInfoHVACRatedCFMperTonCooling, 'string') - hvac.RatedCFMperTonCooling = ratedCFMperTonCooling.split(',').map(&:to_f) end - - elsif clg_coil.is_a? OpenStudio::Model::CoilCoolingWaterToAirHeatPumpEquationFit - hvac.NumSpeedsCooling = 1 - - cOOL_CAP_FT_SPEC = [clg_coil.totalCoolingCapacityCoefficient1, - clg_coil.totalCoolingCapacityCoefficient2, - clg_coil.totalCoolingCapacityCoefficient3, - clg_coil.totalCoolingCapacityCoefficient4, - clg_coil.totalCoolingCapacityCoefficient5] - hvac.COOL_CAP_FT_SPEC = [HVAC.convert_curve_gshp(cOOL_CAP_FT_SPEC, true)] - - cOOL_SH_FT_SPEC = [clg_coil.sensibleCoolingCapacityCoefficient1, - clg_coil.sensibleCoolingCapacityCoefficient3, - clg_coil.sensibleCoolingCapacityCoefficient4, - clg_coil.sensibleCoolingCapacityCoefficient5, - clg_coil.sensibleCoolingCapacityCoefficient6] - hvac.COOL_SH_FT_SPEC = [HVAC.convert_curve_gshp(cOOL_SH_FT_SPEC, true)] - - cOIL_BF_FT_SPEC = get_feature(equip, Constants.SizingInfoGSHPCoil_BF_FT_SPEC, 'string') - hvac.COIL_BF_FT_SPEC = [cOIL_BF_FT_SPEC.split(',').map(&:to_f)] - - shr_rated = get_feature(equip, Constants.SizingInfoHVACSHR, 'string') - hvac.SHRRated = shr_rated.split(',').map(&:to_f) - - hvac.CoilBF = get_feature(equip, Constants.SizingInfoGSHPCoilBF, 'double') - - if clg_coil.ratedTotalCoolingCapacity.is_initialized - hvac.FixedCoolingCapacity = UnitConversions.convert(clg_coil.ratedTotalCoolingCapacity.get, 'W', 'Btu/hr') + # Heating + if [HPXML::HVACTypeFurnace, + HPXML::HVACTypeHeatPumpAirToAir, + HPXML::HVACTypeHeatPumpMiniSplit, + HPXML::HVACTypeHeatPumpGroundToAir].include? hvac.HeatType + if not hpxml_hvac.distribution_system.nil? # Exclude ductless + hvac.AirflowDefectRatioHeating = hpxml_hvac.airflow_defect_ratio + end end - - hvac.CoolingEIR = 1.0 / clg_coil.ratedCoolingCoefficientofPerformance - - hvac.GSHP_BoreSpacing = get_feature(equip, Constants.SizingInfoGSHPBoreSpacing, 'double') - hvac.GSHP_BoreHoles = get_feature(equip, Constants.SizingInfoGSHPBoreHoles, 'string') - hvac.GSHP_BoreHoles = nil if hvac.GSHP_BoreHoles.empty? - hvac.GSHP_BoreDepth = get_feature(equip, Constants.SizingInfoGSHPBoreDepth, 'string') - hvac.GSHP_BoreDepth = nil if hvac.GSHP_BoreDepth.empty? - hvac.GSHP_BoreConfig = get_feature(equip, Constants.SizingInfoGSHPBoreConfig, 'string') - hvac.GSHP_BoreConfig = nil if hvac.GSHP_BoreConfig.empty? - hvac.GSHP_SpacingType = get_feature(equip, Constants.SizingInfoGSHPUTubeSpacingType, 'string') - elsif not clg_coil.nil? - fail "Unexpected cooling coil: #{clg_coil.name}." end - if not htg_coil.nil? - ratedCFMperTonHeating = get_feature(equip, Constants.SizingInfoHVACRatedCFMperTonHeating, 'string', false) - if not ratedCFMperTonHeating.nil? - hvac.RatedCFMperTonHeating = ratedCFMperTonHeating.split(',').map(&:to_f) - end + # Rated airflow rates + if hpxml_hvac_ap.respond_to? :cool_rated_cfm_per_ton + hvac.RatedCFMperTonCooling = hpxml_hvac_ap.cool_rated_cfm_per_ton end - - heatingLoadFraction = get_feature(equip, Constants.SizingInfoHVACFracHeatLoadServed, 'double', false) - if not heatingLoadFraction.nil? - hvac.HeatingLoadFraction = heatingLoadFraction + if hpxml_hvac_ap.respond_to? :heat_rated_cfm_per_ton + hvac.RatedCFMperTonHeating = hpxml_hvac_ap.heat_rated_cfm_per_ton end - if equip.is_a? OpenStudio::Model::ZoneHVACBaseboardConvectiveElectric - if equip.nominalCapacity.is_initialized - hvac.FixedHeatingCapacity = UnitConversions.convert(equip.nominalCapacity.get, 'W', 'Btu/hr') - end - - elsif htg_coil.is_a? OpenStudio::Model::CoilHeatingElectric - hvac.NumSpeedsHeating = 1 - if htg_coil.nominalCapacity.is_initialized - hvac.FixedHeatingCapacity = UnitConversions.convert(htg_coil.nominalCapacity.get, 'W', 'Btu/hr') - end - - elsif htg_coil.is_a? OpenStudio::Model::CoilHeatingGas - hvac.NumSpeedsHeating = 1 - if htg_coil.nominalCapacity.is_initialized - hvac.FixedHeatingCapacity = UnitConversions.convert(htg_coil.nominalCapacity.get, 'W', 'Btu/hr') - end - - elsif htg_coil.is_a? OpenStudio::Model::CoilHeatingWaterBaseboard - hvac.NumSpeedsHeating = 1 - if htg_coil.heatingDesignCapacity.is_initialized - hvac.FixedHeatingCapacity = UnitConversions.convert(htg_coil.heatingDesignCapacity.get, 'W', 'Btu/hr') - end - - hvac.BoilerDesignTemp = UnitConversions.convert(htg_coil.plantLoop.get.sizingPlant.designLoopExitTemperature, 'C', 'F') - - elsif htg_coil.is_a? OpenStudio::Model::CoilHeatingWater - hvac.NumSpeedsHeating = 1 - if htg_coil.ratedCapacity.is_initialized - hvac.FixedHeatingCapacity = UnitConversions.convert(htg_coil.ratedCapacity.get, 'W', 'Btu/hr') - end - - hvac.BoilerDesignTemp = UnitConversions.convert(htg_coil.plantLoop.get.sizingPlant.designLoopExitTemperature, 'C', 'F') - - elsif htg_coil.is_a? OpenStudio::Model::CoilHeatingDXSingleSpeed - hvac.NumSpeedsHeating = 1 - - curves = [htg_coil.totalHeatingCapacityFunctionofTemperatureCurve] - hvac.HEAT_CAP_FT_SPEC = get_2d_vector_from_CAP_FT_SPEC_curves(curves, hvac.NumSpeedsHeating) - - if htg_coil.ratedTotalHeatingCapacity.is_initialized - hvac.FixedHeatingCapacity = UnitConversions.convert(htg_coil.ratedTotalHeatingCapacity.get, 'W', 'Btu/hr') - end - - elsif htg_coil.is_a? OpenStudio::Model::CoilHeatingDXMultiSpeed - hvac.NumSpeedsHeating = htg_coil.stages.size - - capacityRatioHeating = get_feature(equip, Constants.SizingInfoHVACCapacityRatioHeating, 'string') - hvac.CapacityRatioHeating = capacityRatioHeating.split(',').map(&:to_f) - - curves = [] - htg_coil.stages.each_with_index do |stage, speed| - curves << stage.heatingCapacityFunctionofTemperatureCurve - next if !stage.grossRatedHeatingCapacity.is_initialized - - hvac.FixedHeatingCapacity = UnitConversions.convert(stage.grossRatedHeatingCapacity.get, 'W', 'Btu/hr') - end - hvac.HEAT_CAP_FT_SPEC = get_2d_vector_from_CAP_FT_SPEC_curves(curves, hvac.NumSpeedsHeating) + # Capacity ratios + if hpxml_hvac_ap.respond_to? :cool_capacity_ratios + hvac.CapacityRatioCooling = hpxml_hvac_ap.cool_capacity_ratios + end + if hpxml_hvac_ap.respond_to? :heat_capacity_ratios + hvac.CapacityRatioHeating = hpxml_hvac_ap.heat_capacity_ratios + end - if hvac.HeatType == Constants.ObjectNameMiniSplitHeatPump - ratedCFMperTonHeating = get_feature(equip, Constants.SizingInfoHVACRatedCFMperTonHeating, 'string') - hvac.RatedCFMperTonHeating = ratedCFMperTonHeating.split(',').map(&:to_f) + # Sizing speed + hvac.SizingSpeed = get_sizing_speed(hvac.NumSpeedsCooling, hvac.CapacityRatioCooling) - hvac.HeatingCapacityOffset = get_feature(equip, Constants.SizingInfoHVACHeatingCapacityOffset, 'double') - end + # Rated SHRs + if hpxml_hvac_ap.respond_to? :cool_rated_shrs_gross + hvac.SHRRated = hpxml_hvac_ap.cool_rated_shrs_gross + end - elsif htg_coil.is_a? OpenStudio::Model::CoilHeatingWaterToAirHeatPumpEquationFit - hvac.NumSpeedsHeating = 1 + # Performance curves + if hpxml_hvac_ap.respond_to? :cool_cap_ft_spec + hvac.COOL_CAP_FT_SPEC = hpxml_hvac_ap.cool_cap_ft_spec + end + if hpxml_hvac_ap.respond_to? :cool_sh_ft_spec + hvac.COOL_SH_FT_SPEC = hpxml_hvac_ap.cool_sh_ft_spec + end + if hpxml_hvac_ap.respond_to? :heat_cap_ft_spec + hvac.HEAT_CAP_FT_SPEC = hpxml_hvac_ap.heat_cap_ft_spec + end + if hpxml_hvac_ap.respond_to? :cool_cap_fflow_spec + hvac.COOL_CAP_FFLOW_SPEC = hpxml_hvac_ap.cool_cap_fflow_spec + end + if hpxml_hvac_ap.respond_to? :heat_cap_fflow_spec + hvac.HEAT_CAP_FFLOW_SPEC = hpxml_hvac_ap.heat_cap_fflow_spec + end - if htg_coil.ratedHeatingCapacity.is_initialized - hvac.FixedHeatingCapacity = UnitConversions.convert(htg_coil.ratedHeatingCapacity.get, 'W', 'Btu/hr') - end + # WLHP + if hpxml_hvac.respond_to? :heating_efficiency_cop + hvac.HeatingCOP = hpxml_hvac.heating_efficiency_cop + end - hvac.HeatingEIR = 1.0 / htg_coil.ratedHeatingCoefficientofPerformance + # GSHP + if hpxml_hvac_ap.respond_to? :u_tube_spacing_type + hvac.GSHP_SpacingType = hpxml_hvac_ap.u_tube_spacing_type + end + if hpxml_hvac_ap.respond_to? :cool_rated_eirs + hvac.CoolingEIR = hpxml_hvac_ap.cool_rated_eirs[0] + end + if hpxml_hvac_ap.respond_to? :heat_rated_eirs + hvac.HeatingEIR = hpxml_hvac_ap.heat_rated_eirs[0] + end + if hvac.HeatType == HPXML::HVACTypeHeatPumpGroundToAir + hvac.GSHP_design_chw = hpxml_hvac_ap.design_chw + hvac.GSHP_design_delta_t = hpxml_hvac_ap.design_delta_t + hvac.GSHP_design_hw = hpxml_hvac_ap.design_hw + hvac.GSHP_bore_d = hpxml_hvac_ap.bore_diameter + hvac.GSHP_pipe_od = hpxml_hvac_ap.pipe_od + hvac.GSHP_pipe_id = hpxml_hvac_ap.pipe_id + hvac.GSHP_pipe_cond = hpxml_hvac_ap.pipe_cond + hvac.GSHP_ground_k = hpxml_hvac_ap.ground_conductivity + hvac.GSHP_grout_k = hpxml_hvac_ap.grout_conductivity + end - plant_loop = htg_coil.plantLoop.get - plant_loop.supplyComponents.each do |plc| - next if !plc.to_GroundHeatExchangerVertical.is_initialized + # Evaporative cooler + if hpxml_hvac_ap.respond_to? :effectiveness + hvac.EvapCoolerEffectiveness = hpxml_hvac_ap.effectiveness + end - hvac.GSHP_HXVertical = plc.to_GroundHeatExchangerVertical.get - end - if hvac.GSHP_HXVertical.nil? - fail 'Could not find GroundHeatExchangerVertical object on GSHP plant loop.' - end + # Ducts + # FUTURE: Consolidate w/ ducts code in measure.rb + hvac.Ducts = [] + next unless not hpxml_hvac.distribution_system.nil? + lto = { supply_percent: nil, supply_cfm25: nil, return_percent: nil, return_cfm25: nil } + hpxml_hvac.distribution_system.duct_leakage_measurements.each do |m| + next unless m.duct_leakage_total_or_to_outside == 'to outside' - hvac.GSHP_HXDTDesign = UnitConversions.convert(plant_loop.sizingPlant.loopDesignTemperatureDifference, 'K', 'R') - hvac.GSHP_HXCHWDesign = UnitConversions.convert(plant_loop.sizingPlant.designLoopExitTemperature, 'C', 'F') - hvac.GSHP_HXHWDesign = UnitConversions.convert(plant_loop.minimumLoopTemperature, 'C', 'F') - if hvac.GSHP_HXDTDesign.nil? || hvac.GSHP_HXCHWDesign.nil? || hvac.GSHP_HXHWDesign.nil? - fail 'Could not find GSHP plant loop.' + if m.duct_leakage_units == HPXML::UnitsPercent && m.duct_type == HPXML::DuctTypeSupply + lto[:supply_percent] = m.duct_leakage_value + elsif m.duct_leakage_units == HPXML::UnitsCFM25 && m.duct_type == HPXML::DuctTypeSupply + lto[:supply_cfm25] = m.duct_leakage_value + elsif m.duct_leakage_units == HPXML::UnitsPercent && m.duct_type == HPXML::DuctTypeReturn + lto[:return_percent] = m.duct_leakage_value + elsif m.duct_leakage_units == HPXML::UnitsCFM25 && m.duct_type == HPXML::DuctTypeReturn + lto[:return_cfm25] = m.duct_leakage_value end + end + total_uncond_supply_area = hpxml_hvac.distribution_system.total_unconditioned_duct_areas[HPXML::DuctTypeSupply] + total_uncond_return_area = hpxml_hvac.distribution_system.total_unconditioned_duct_areas[HPXML::DuctTypeReturn] + hpxml_hvac.distribution_system.ducts.each do |duct| + next if [HPXML::LocationLivingSpace, HPXML::LocationBasementConditioned].include? duct.duct_location - hvac.GSHP_PumpWattsPerTon = get_feature(equip, Constants.SizingInfoHVACPumpPower, 'double') + d = DuctInfo.new + d.Side = duct.duct_type + d.Location = duct.duct_location + d.Area = duct.duct_surface_area - elsif not htg_coil.nil? - fail "Unexpected heating coil: #{htg_coil.name}." - end + # Calculate R-value w/ air film + d.Rvalue = Airflow.get_duct_insulation_rvalue(duct.duct_insulation_r_value, d.Side) - # Supplemental heating - if supp_htg_coil.is_a?(OpenStudio::Model::CoilHeatingElectric) || supp_htg_coil.is_a?(OpenStudio::Model::CoilHeatingGas) - if supp_htg_coil.nominalCapacity.is_initialized - hvac.FixedSuppHeatingCapacity = UnitConversions.convert(supp_htg_coil.nominalCapacity.get, 'W', 'Btu/hr') + # Leakage to Outside apportioned to this duct + if d.Side == HPXML::DuctTypeSupply + d.LeakageFrac = lto[:supply_percent].to_f * d.Area / total_uncond_supply_area + d.LeakageCFM25 = lto[:supply_cfm25].to_f * d.Area / total_uncond_supply_area + elsif d.Side == HPXML::DuctTypeReturn + d.LeakageFrac = lto[:return_percent].to_f * d.Area / total_uncond_return_area + d.LeakageCFM25 = lto[:return_cfm25].to_f * d.Area / total_uncond_return_area end - - elsif not supp_htg_coil.nil? - fail "Unexpected supplemental heating coil: #{supp_htg_coil.name}." + hvac.Ducts << d end + # If all ducts are in conditioned space, treat leakage as going to outside + if (lto[:supply_percent].to_f + lto[:supply_cfm25].to_f) > 0 && total_uncond_supply_area == 0 + d = DuctInfo.new + d.Side = HPXML::DuctTypeSupply + d.Location = HPXML::LocationOutside + d.Area = 0.0 + d.Rvalue = Airflow.get_duct_insulation_rvalue(0.0, d.Side) + d.LeakageFrac = lto[:supply_percent] + d.LeakageCFM25 = lto[:supply_cfm25] + hvac.Ducts << d + end + next unless (lto[:return_percent].to_f + lto[:return_cfm25].to_f) > 0 && total_uncond_return_area == 0 + d = DuctInfo.new + d.Side = HPXML::DuctTypeReturn + d.Location = HPXML::LocationOutside + d.Area = 0.0 + d.Rvalue = Airflow.get_duct_insulation_rvalue(0.0, d.Side) + d.LeakageFrac = lto[:return_percent] + d.LeakageCFM25 = lto[:return_cfm25] + hvac.Ducts << d end - return hvacs - end - - def self.get_2d_vector_from_CAP_FT_SPEC_curves(curves, num_speeds) - vector = [] - curves.each do |curve| - bi = curve.to_CurveBiquadratic.get - c_si = [bi.coefficient1Constant, bi.coefficient2x, bi.coefficient3xPOW2, bi.coefficient4y, bi.coefficient5yPOW2, bi.coefficient6xTIMESY] - vector << HVAC.convert_curve_biquadratic(c_si, curves_in_ip = false) - end - if (num_speeds > 1) && (vector.size == 1) - # Repeat coefficients for each speed - for i in 1..num_speeds - vector << vector[0] - end - end - return vector + return hvac end def self.process_curve_fit(airFlowRate, capacity, temp) @@ -2296,16 +2504,23 @@ def self.process_curve_fit(airFlowRate, capacity, temp) return 0 if capacity == 0 capacity_tons = UnitConversions.convert(capacity, 'Btu/hr', 'ton') - return MathTools.biquadratic(airFlowRate / capacity_tons, temp, @shr_biquadratic) + return MathTools.biquadratic(airFlowRate / capacity_tons, temp, get_shr_biquadratic) + end + + def self.get_shr_biquadratic + # Based on EnergyPlus's model for calculating SHR at off-rated conditions. This curve fit + # avoids the iterations in the actual model. It does not account for altitude or variations + # in the SHRRated. It is a function of ODB (MJ design temp) and CFM/Ton (from MJ) + return [1.08464364, 0.002096954, 0, -0.005766327, 0, -0.000011147] end - def self.get_sizing_speed(hvac) - if hvac.NumSpeedsCooling > 1 - sizingSpeed = hvac.NumSpeedsCooling # Default + def self.get_sizing_speed(num_speeds_cooling, capacity_ratios_cooling) + if num_speeds_cooling > 1 + sizingSpeed = num_speeds_cooling # Default sizingSpeed_Test = 10 # Initialize - for speed in 0..(hvac.NumSpeedsCooling - 1) + for speed in 0..(num_speeds_cooling - 1) # Select curves for sizing using the speed with the capacity ratio closest to 1 - temp = (hvac.CapacityRatioCooling[speed] - 1).abs + temp = (capacity_ratios_cooling[speed] - 1).abs if temp <= sizingSpeed_Test sizingSpeed = speed sizingSpeed_Test = temp @@ -2353,8 +2568,44 @@ def self.get_space_ua_values(space_type, weather) end # Infiltration UA - infiltration_cfm = get_feature(@spaces[space_type].thermalZone.get, Constants.SizingInfoZoneInfiltrationCFM, 'double', false) - infiltration_cfm = 0.0 if infiltration_cfm.nil? + infiltration_cfm = nil + ach = nil + if [HPXML::LocationCrawlspaceVented, HPXML::LocationAtticVented].include? space_type + # Vented space + if space_type == HPXML::LocationCrawlspaceVented + vented_crawl = @hpxml.foundations.select { |f| f.foundation_type == HPXML::FoundationTypeCrawlspaceVented }[0] + sla = vented_crawl.vented_crawlspace_sla + else + vented_attic = @hpxml.attics.select { |f| f.attic_type == HPXML::AtticTypeVented }[0] + if not vented_attic.vented_attic_sla.nil? + sla = vented_attic.vented_attic_sla + else + ach = vented_attic.vented_attic_ach + end + end + ach = Airflow.get_infiltration_ACH_from_SLA(sla, 8.202, weather) if ach.nil? + else # Unvented space + ach = 0.1 # Assumption + end + # FUTURE: Reuse code from measure.rb set_zone_volumes() + if [HPXML::LocationAtticVented, HPXML::LocationAtticUnvented].include? space_type + floor_area = @hpxml.frame_floors.select { |f| [f.interior_adjacent_to, f.exterior_adjacent_to].include? space_type }.map { |s| s.area }.sum(0.0) + roofs = @hpxml.roofs.select { |r| r.interior_adjacent_to == space_type } + avg_pitch = roofs.map { |r| r.pitch }.sum(0.0) / roofs.size + # Assume square hip roof for volume calculations; energy results are very insensitive to actual volume + length = floor_area**0.5 + height = 0.5 * Math.sin(Math.atan(avg_pitch / 12.0)) * length + volume = [floor_area * height / 3.0, 0.01].max + else # foundation/garage space + floor_area = @hpxml.slabs.select { |s| s.interior_adjacent_to == space_type }.map { |s| s.area }.sum(0.0) + if space_type == HPXML::LocationGarage + height = 8.0 + else + height = @hpxml.foundation_walls.select { |w| w.interior_adjacent_to == space_type }.map { |w| w.height }.max + end + volume = floor_area * height + end + infiltration_cfm = ach / UnitConversions.convert(1.0, 'hr', 'min') * volume outside_air_density = UnitConversions.convert(weather.header.LocalPressure, 'atm', 'Btu/ft^3') / (Gas.Air.r * (weather.data.AnnualAvgDrybulb + 460.0)) space_UAs['infil'] = infiltration_cfm * outside_air_density * Gas.Air.cp * UnitConversions.convert(1.0, 'hr', 'min') @@ -2404,8 +2655,8 @@ def self.calculate_space_design_temps(space_type, weather, conditioned_design_te # when the roof is insulated min_temp_rise = 5.0 - max_cooling_temp = @conditioned_cool_design_temp + max_temp_rise - min_cooling_temp = @conditioned_cool_design_temp + min_temp_rise + max_cooling_temp = @cool_setpoint + max_temp_rise + min_cooling_temp = @cool_setpoint + min_temp_rise ua_conditioned = 0.0 ua_outside = 0.0 @@ -2447,42 +2698,85 @@ def self.get_wall_group(wall) wall_ufactor = 1.0 / wall.insulation_assembly_r_value # The following correlations were estimated by analyzing MJ8 construction tables. - if [HPXML::WallTypeWoodStud, HPXML::WallTypeSteelStud].include? wall_type - if wall.insulation_cavity_r_value < 2 - wall_group = 1 # A - elsif wall.insulation_cavity_r_value <= 11 - wall_group = 2 # B - elsif wall.insulation_cavity_r_value <= 13 - wall_group = 3 # C - elsif wall.insulation_cavity_r_value <= 15 - wall_group = 4 # D - elsif wall.insulation_cavity_r_value <= 19 - wall_group = 5 # E - elsif wall.insulation_cavity_r_value <= 21 - wall_group = 6 # F - else - wall_group = 7 # G - end - # Adjust the wall group for rigid foam insulation - if (wall.insulation_continuous_r_value > 1) && (wall.insulation_continuous_r_value <= 7) - if wall.insulation_cavity_r_value < 2 - wall_group += 2 + if wall_type == HPXML::WallTypeWoodStud + if wall.siding == HPXML::SidingTypeBrick + if wall_ufactor <= 0.070 + wall_group = 11 # K + elsif wall_ufactor <= 0.083 + wall_group = 10 # J + elsif wall_ufactor <= 0.095 + wall_group = 9 # I + elsif wall_ufactor <= 0.100 + wall_group = 8 # H + elsif wall_ufactor <= 0.130 + wall_group = 7 # G + elsif wall_ufactor <= 0.175 + wall_group = 6 # F else - wall_group += 4 + wall_group = 5 # E end - elsif wall.insulation_continuous_r_value > 7 - if wall.insulation_cavity_r_value < 2 - wall_group += 4 + else + if wall_ufactor <= 0.048 + wall_group = 10 # J + elsif wall_ufactor <= 0.051 + wall_group = 9 # I + elsif wall_ufactor <= 0.059 + wall_group = 8 # H + elsif wall_ufactor <= 0.063 + wall_group = 7 # G + elsif wall_ufactor <= 0.067 + wall_group = 6 # F + elsif wall_ufactor <= 0.075 + wall_group = 5 # E + elsif wall_ufactor <= 0.086 + wall_group = 4 # D + elsif wall_ufactor <= 0.110 + wall_group = 3 # C + elsif wall_ufactor <= 0.170 + wall_group = 2 # B else - wall_group += 6 + wall_group = 1 # A end end - # Adjust the wall group for brick siding + + elsif wall_type == HPXML::WallTypeSteelStud if wall.siding == HPXML::SidingTypeBrick - if wall.insulation_cavity_r_value < 2 - wall_group += 4 + if wall_ufactor <= 0.090 + wall_group = 11 # K + elsif wall_ufactor <= 0.105 + wall_group = 10 # J + elsif wall_ufactor <= 0.118 + wall_group = 9 # I + elsif wall_ufactor <= 0.125 + wall_group = 8 # H + elsif wall_ufactor <= 0.145 + wall_group = 7 # G + elsif wall_ufactor <= 0.200 + wall_group = 6 # F + else + wall_group = 5 # E + end + else + if wall_ufactor <= 0.066 + wall_group = 10 # J + elsif wall_ufactor <= 0.070 + wall_group = 9 # I + elsif wall_ufactor <= 0.075 + wall_group = 8 # H + elsif wall_ufactor <= 0.081 + wall_group = 7 # G + elsif wall_ufactor <= 0.088 + wall_group = 6 # F + elsif wall_ufactor <= 0.100 + wall_group = 5 # E + elsif wall_ufactor <= 0.105 + wall_group = 4 # D + elsif wall_ufactor <= 0.120 + wall_group = 3 # C + elsif wall_ufactor <= 0.200 + wall_group = 2 # B else - wall_group += 6 + wall_group = 1 # A end end @@ -2511,24 +2805,20 @@ def self.get_wall_group(wall) end elsif wall_type == HPXML::WallTypeCMU - # Manual J uses the same wall group for filled or hollow block - if wall.insulation_cavity_r_value < 2 - wall_group = 5 # E - elsif wall.insulation_cavity_r_value <= 11 - wall_group = 8 # H - elsif wall.insulation_cavity_r_value <= 13 - wall_group = 9 # I - elsif wall.insulation_cavity_r_value <= 15 - wall_group = 9 # I - elsif wall.insulation_cavity_r_value <= 19 + # Table 4A - Construction Number 13 + if wall_ufactor <= 0.0575 wall_group = 10 # J - elsif wall.insulation_cavity_r_value <= 21 - wall_group = 11 # K + elsif wall_ufactor <= 0.067 + wall_group = 9 # I + elsif wall_ufactor <= 0.080 + wall_group = 8 # H + elsif wall_ufactor <= 0.108 + wall_group = 7 # G + elsif wall_ufactor <= 0.148 + wall_group = 6 # F else - wall_group = 11 # K + wall_group = 5 # E end - # This is an estimate based on Table 4A - Construction Number 13 - wall_group += (wall.insulation_continuous_r_value / 3.0).floor # Group is increased by approximately 1 letter for each R3 elsif [HPXML::WallTypeBrick, HPXML::WallTypeAdobe].include? wall_type # Two Courses Brick @@ -2569,32 +2859,40 @@ def self.get_wall_group(wall) return wall_group end - def self.gshp_hx_pipe_rvalue(pipe_od, pipe_id, pipe_cond) + def self.gshp_coil_bf + return 0.0806 + end + + def self.gshp_coil_bf_ft_spec + return [1.21005458, -0.00664200, 0.00000000, 0.00348246, 0.00000000, 0.00000000] + end + + def self.gshp_hx_pipe_rvalue(hvac) # Thermal Resistance of Pipe - return Math.log(pipe_od / pipe_id) / 2.0 / Math::PI / pipe_cond + return Math.log(hvac.GSHP_pipe_od / hvac.GSHP_pipe_id) / 2.0 / Math::PI / hvac.GSHP_pipe_cond end - def self.gshp_hxbore_ft_per_ton(weather, bore_spacing, ground_conductivity, spacing_type, grout_conductivity, bore_diameter, pipe_od, pipe_r_value, heating_eir, cooling_eir, chw_design, hw_design, design_delta_t) - if spacing_type == 'b' + def self.gshp_hxbore_ft_per_ton(weather, hvac, bore_spacing, pipe_r_value) + if hvac.GSHP_SpacingType == 'b' beta_0 = 17.4427 beta_1 = -0.6052 - elsif spacing_type == 'c' + elsif hvac.GSHP_SpacingType == 'c' beta_0 = 21.9059 beta_1 = -0.3796 - elsif spacing_type == 'as' + elsif hvac.GSHP_SpacingType == 'as' beta_0 = 20.1004 beta_1 = -0.94467 end - r_value_ground = Math.log(bore_spacing / bore_diameter * 12.0) / 2.0 / Math::PI / ground_conductivity - r_value_grout = 1.0 / grout_conductivity / beta_0 / ((bore_diameter / pipe_od)**beta_1) + r_value_ground = Math.log(bore_spacing / hvac.GSHP_bore_d * 12.0) / 2.0 / Math::PI / hvac.GSHP_ground_k + r_value_grout = 1.0 / hvac.GSHP_grout_k / beta_0 / ((hvac.GSHP_bore_d / hvac.GSHP_pipe_od)**beta_1) r_value_bore = r_value_grout + pipe_r_value / 2.0 # Note: Convection resistance is negligible when calculated against Glhepro (Jeffrey D. Spitler, 2000) rtf_DesignMon_Heat = [0.25, (71.0 - weather.data.MonthlyAvgDrybulbs[0]) / @htd].max rtf_DesignMon_Cool = [0.25, (weather.data.MonthlyAvgDrybulbs[6] - 76.0) / @ctd].max - nom_length_heat = (1.0 - heating_eir) * (r_value_bore + r_value_ground * rtf_DesignMon_Heat) / (weather.data.AnnualAvgDrybulb - (2.0 * hw_design - design_delta_t) / 2.0) * UnitConversions.convert(1.0, 'ton', 'Btu/hr') - nom_length_cool = (1.0 + cooling_eir) * (r_value_bore + r_value_ground * rtf_DesignMon_Cool) / ((2.0 * chw_design + design_delta_t) / 2.0 - weather.data.AnnualAvgDrybulb) * UnitConversions.convert(1.0, 'ton', 'Btu/hr') + nom_length_heat = (1.0 - hvac.HeatingEIR) * (r_value_bore + r_value_ground * rtf_DesignMon_Heat) / (weather.data.AnnualAvgDrybulb - (2.0 * hvac.GSHP_design_hw - hvac.GSHP_design_delta_t) / 2.0) * UnitConversions.convert(1.0, 'ton', 'Btu/hr') + nom_length_cool = (1.0 + hvac.CoolingEIR) * (r_value_bore + r_value_ground * rtf_DesignMon_Cool) / ((2.0 * hvac.GSHP_design_chw + hvac.GSHP_design_delta_t) / 2.0 - weather.data.AnnualAvgDrybulb) * UnitConversions.convert(1.0, 'ton', 'Btu/hr') return nom_length_heat, nom_length_cool end @@ -2602,9 +2900,9 @@ def self.gshp_hxbore_ft_per_ton(weather, bore_spacing, ground_conductivity, spac def self.gshp_gfnc_coeff(bore_config, num_bore_holes, spacing_to_depth_ratio) # Set GFNC coefficients gfnc_coeff = nil - if bore_config == Constants.BoreConfigSingle + if bore_config == 'single' gfnc_coeff = 2.681, 3.024, 3.320, 3.666, 3.963, 4.306, 4.645, 4.899, 5.222, 5.405, 5.531, 5.704, 5.821, 6.082, 6.304, 6.366, 6.422, 6.477, 6.520, 6.558, 6.591, 6.619, 6.640, 6.665, 6.893, 6.694, 6.715 - elsif bore_config == Constants.BoreConfigLine + elsif bore_config == 'line' if num_bore_holes == 2 if spacing_to_depth_ratio <= 0.02 gfnc_coeff = 2.681, 3.043, 3.397, 3.9, 4.387, 5.005, 5.644, 6.137, 6.77, 7.131, 7.381, 7.722, 7.953, 8.462, 8.9, 9.022, 9.13, 9.238, 9.323, 9.396, 9.46, 9.515, 9.556, 9.604, 9.636, 9.652, 9.678 @@ -2714,7 +3012,7 @@ def self.gshp_gfnc_coeff(bore_config, num_bore_holes, spacing_to_depth_ratio) gfnc_coeff = 2.679, 3.023, 3.318, 3.664, 3.961, 4.306, 4.65, 4.838, 5.275, 5.587, 5.837, 6.238, 6.552, 7.399, 8.347, 8.654, 8.956, 9.283, 9.549, 9.79, 10.014, 10.209, 10.36, 10.541, 10.669, 10.732, 10.837 end end - elsif bore_config == Constants.BoreConfigLconfig + elsif bore_config == 'l-config' if num_bore_holes == 3 if spacing_to_depth_ratio <= 0.02 gfnc_coeff = 2.682, 3.052, 3.435, 4.036, 4.668, 5.519, 6.435, 7.155, 8.091, 8.626, 8.997, 9.504, 9.847, 10.605, 11.256, 11.434, 11.596, 11.755, 11.88, 11.988, 12.083, 12.163, 12.224, 12.294, 12.342, 12.365, 12.405 @@ -2764,7 +3062,7 @@ def self.gshp_gfnc_coeff(bore_config, num_bore_holes, spacing_to_depth_ratio) gfnc_coeff = 2.679, 3.023, 3.318, 3.664, 3.961, 4.306, 4.65, 4.838, 5.27, 5.579, 5.828, 6.225, 6.535, 7.384, 8.244, 8.515, 8.768, 9.026, 9.244, 9.428, 9.595, 9.737, 9.845, 9.97, 10.057, 10.099, 10.168 end end - elsif bore_config == Constants.BoreConfigL2config + elsif bore_config == 'l2-config' if num_bore_holes == 8 if spacing_to_depth_ratio <= 0.02 gfnc_coeff = 2.685, 3.078, 3.547, 4.438, 5.521, 7.194, 9.237, 10.973, 13.311, 14.677, 15.634, 16.942, 17.831, 19.791, 21.462, 21.917, 22.329, 22.734, 23.052, 23.328, 23.568, 23.772, 23.925, 24.102, 24.224, 24.283, 24.384 @@ -2790,7 +3088,7 @@ def self.gshp_gfnc_coeff(bore_config, num_bore_holes, spacing_to_depth_ratio) gfnc_coeff = 2.679, 3.023, 3.318, 3.664, 3.961, 4.307, 4.653, 4.842, 5.331, 5.731, 6.083, 6.683, 7.178, 8.6, 10.054, 10.508, 10.929, 11.356, 11.711, 12.009, 12.275, 12.5, 12.671, 12.866, 13, 13.064, 13.17 end end - elsif bore_config == Constants.BoreConfigUconfig + elsif bore_config == 'u-config' if num_bore_holes == 5 if spacing_to_depth_ratio <= 0.02 gfnc_coeff = 2.683, 3.057, 3.46, 4.134, 4.902, 6.038, 7.383, 8.503, 9.995, 10.861, 11.467, 12.294, 12.857, 14.098, 15.16, 15.449, 15.712, 15.97, 16.173, 16.349, 16.503, 16.633, 16.731, 16.844, 16.922, 16.96, 17.024 @@ -2828,7 +3126,7 @@ def self.gshp_gfnc_coeff(bore_config, num_bore_holes, spacing_to_depth_ratio) gfnc_coeff = 2.679, 3.023, 3.318, 3.664, 3.961, 4.306, 4.65, 4.838, 5.277, 5.6, 5.87, 6.322, 6.698, 7.823, 9.044, 9.438, 9.809, 10.188, 10.506, 10.774, 11.015, 11.219, 11.374, 11.552, 11.674, 11.733, 11.83 end end - elsif bore_config == Constants.BoreConfigOpenRectangle + elsif bore_config == 'open-rectangle' if num_bore_holes == 8 if spacing_to_depth_ratio <= 0.02 gfnc_coeff = 2.684, 3.066, 3.497, 4.275, 5.229, 6.767, 8.724, 10.417, 12.723, 14.079, 15.03, 16.332, 17.217, 19.17, 20.835, 21.288, 21.698, 22.101, 22.417, 22.692, 22.931, 23.133, 23.286, 23.462, 23.583, 23.642, 23.742 @@ -2854,7 +3152,7 @@ def self.gshp_gfnc_coeff(bore_config, num_bore_holes, spacing_to_depth_ratio) gfnc_coeff = 2.679, 3.023, 3.318, 3.664, 3.961, 4.306, 4.651, 4.839, 5.292, 5.636, 5.928, 6.425, 6.841, 8.089, 9.44, 9.875, 10.284, 10.7, 11.05, 11.344, 11.608, 11.831, 12.001, 12.196, 12.329, 12.393, 12.499 end end - elsif bore_config == Constants.BoreConfigRectangle + elsif bore_config == 'rectangle' if num_bore_holes == 4 if spacing_to_depth_ratio <= 0.02 gfnc_coeff = 2.684, 3.066, 3.493, 4.223, 5.025, 6.131, 7.338, 8.291, 9.533, 10.244, 10.737, 11.409, 11.865, 12.869, 13.73, 13.965, 14.178, 14.388, 14.553, 14.696, 14.821, 14.927, 15.007, 15.099, 15.162, 15.193, 15.245 @@ -3043,388 +3341,24 @@ def self.calc_slab_f_value(slab) return f_values.sum() / f_values.size end - - def self.get_feature(obj, feature, datatype, fail_on_error = true) - val = nil - if datatype == 'string' - val = obj.additionalProperties.getFeatureAsString(feature) - elsif datatype == 'double' - val = obj.additionalProperties.getFeatureAsDouble(feature) - elsif datatype == 'boolean' - val = obj.additionalProperties.getFeatureAsBoolean(feature) - end - if not val.is_initialized - if fail_on_error - fail "Could not find additionalProperties value for '#{feature}' with datatype #{datatype} on object #{obj.name}." - end - - return - end - return val.get - end - - def self.set_object_values(model, hvac, hvac_final_values) - # Updates object properties in the model - - hvac.Objects.each do |object| - if object.is_a? OpenStudio::Model::AirLoopHVACUnitarySystem - - # Fan Airflow - if object.coolingCoil.is_initialized && object.heatingCoil.is_initialized - fan_airflow = [hvac_final_values.Heat_Airflow, hvac_final_values.Cool_Airflow].max - elsif object.coolingCoil.is_initialized - fan_airflow = hvac_final_values.Cool_Airflow - elsif object.heatingCoil.is_initialized - fan_airflow = hvac_final_values.Heat_Airflow - end - end - - if object.is_a?(OpenStudio::Model::AirLoopHVACUnitarySystem) && object.airLoopHVAC.is_initialized - - ## Air Loop HVAC Unitary System ## - - # Unitary System - object.setSupplyAirFlowRateMethodDuringCoolingOperation('SupplyAirFlowRate') - if object.coolingCoil.is_initialized - object.setSupplyAirFlowRateDuringCoolingOperation(UnitConversions.convert(hvac_final_values.Cool_Airflow, 'cfm', 'm^3/s')) - else - object.setSupplyAirFlowRateDuringCoolingOperation(0.0) - end - object.setSupplyAirFlowRateMethodDuringHeatingOperation('SupplyAirFlowRate') - if object.heatingCoil.is_initialized - object.setSupplyAirFlowRateDuringHeatingOperation(UnitConversions.convert(hvac_final_values.Heat_Airflow, 'cfm', 'm^3/s')) - else - object.setSupplyAirFlowRateDuringHeatingOperation(0.0) - end - - # Fan - fanonoff = object.supplyFan.get.to_FanOnOff.get - fanonoff.setMaximumFlowRate(hvac.FanspeedRatioCooling.max * UnitConversions.convert(fan_airflow + 0.01, 'cfm', 'm^3/s')) - - # Air Loop - air_loop = object.airLoopHVAC.get - air_loop.setDesignSupplyAirFlowRate(hvac.FanspeedRatioCooling.max * UnitConversions.convert(fan_airflow, 'cfm', 'm^3/s')) - - @cond_zone.airLoopHVACTerminals.each do |aterm| - next if air_loop != aterm.airLoopHVAC.get - next unless aterm.to_AirTerminalSingleDuctUncontrolled.is_initialized - - # Air Terminal - aterm = aterm.to_AirTerminalSingleDuctUncontrolled.get - aterm.setMaximumAirFlowRate(UnitConversions.convert(fan_airflow, 'cfm', 'm^3/s')) - end - - # Coils - setCoilsObjectValues(model, hvac, object, hvac_final_values) - - if hvac.has_type(Constants.ObjectNameGroundSourceHeatPump) - - clg_coil, htg_coil, supp_htg_coil = HVAC.get_coils_from_hvac_equip(model, object) - - if not htg_coil.nil? - plant_loop = htg_coil.plantLoop.get - elsif not clg_coil.nil? - plant_loop = clg_coil.plantLoop.get - end - - # Plant Loop - plant_loop.setMaximumLoopFlowRate(UnitConversions.convert(hvac_final_values.GSHP_Loop_flow, 'gal/min', 'm^3/s')) - - # Ground Heat Exchanger Vertical - hvac.GSHP_HXVertical.setDesignFlowRate(UnitConversions.convert(hvac_final_values.GSHP_Loop_flow, 'gal/min', 'm^3/s')) - hvac.GSHP_HXVertical.setNumberofBoreHoles(hvac_final_values.GSHP_Bore_Holes.to_i) - hvac.GSHP_HXVertical.setBoreHoleLength(UnitConversions.convert(hvac_final_values.GSHP_Bore_Depth, 'ft', 'm')) - hvac.GSHP_HXVertical.removeAllGFunctions - for i in 0..(hvac_final_values.GSHP_G_Functions[0].size - 1) - hvac.GSHP_HXVertical.addGFunction(hvac_final_values.GSHP_G_Functions[0][i], hvac_final_values.GSHP_G_Functions[1][i]) - end - - plant_loop.supplyComponents.each do |plc| - next unless plc.to_PumpVariableSpeed.is_initialized - - # Pump - pump_w = hvac.GSHP_PumpWattsPerTon * UnitConversions.convert(clg_coil.ratedTotalCoolingCapacity.get, 'W', 'ton') - pump = plc.to_PumpVariableSpeed.get - pump.setRatedPowerConsumption(pump_w) - pump.setRatedFlowRate(HVAC.calc_pump_rated_flow_rate(0.75, pump_w, pump.ratedPumpHead)) - HVAC.set_pump_power_ems_program(model, pump_w, pump, object) - end - end - - elsif object.is_a? OpenStudio::Model::AirLoopHVACUnitarySystem - - ## Zone HVAC Unitary System ## - - thermal_zone = object.thermalZone.get - - # Unitary System - object.setSupplyAirFlowRateMethodDuringCoolingOperation('SupplyAirFlowRate') - if object.coolingCoil.is_initialized - object.setSupplyAirFlowRateDuringCoolingOperation(UnitConversions.convert(hvac_final_values.Cool_Airflow, 'cfm', 'm^3/s')) - else - object.setSupplyAirFlowRateDuringCoolingOperation(0.0) - end - object.setSupplyAirFlowRateMethodDuringHeatingOperation('SupplyAirFlowRate') - if object.heatingCoil.is_initialized - object.setSupplyAirFlowRateDuringHeatingOperation(UnitConversions.convert(hvac_final_values.Heat_Airflow, 'cfm', 'm^3/s')) - else - object.setSupplyAirFlowRateDuringHeatingOperation(0.0) - end - - # Fan - fanonoff = object.supplyFan.get.to_FanOnOff.get - fanonoff.setMaximumFlowRate(UnitConversions.convert(fan_airflow + 0.01, 'cfm', 'm^3/s')) - fan_watts_per_cfm = hvac.FanWatts / fan_airflow - HVAC.set_fan_power(fanonoff, fan_watts_per_cfm) - - # Coils - setCoilsObjectValues(model, hvac, object, hvac_final_values) - - elsif object.is_a? OpenStudio::Model::EvaporativeCoolerDirectResearchSpecial - - ## Evaporative Cooler ## - - # Air Loop - vfr = UnitConversions.convert(hvac_final_values.Cool_Airflow, 'cfm', 'm^3/s') - # evap cooler design flow rate - object.setPrimaryAirDesignFlowRate(vfr) - # air loop object design flow rates - air_loop = object.airLoopHVAC.get - air_loop.setDesignSupplyAirFlowRate(vfr) - fan = air_loop.supplyFan.get.to_FanVariableVolume.get - fan.setMaximumFlowRate(vfr) - oa_system = air_loop.components.select { |comp| comp.to_AirLoopHVACOutdoorAirSystem.is_initialized }[0].to_AirLoopHVACOutdoorAirSystem.get - oa_controller = oa_system.getControllerOutdoorAir - oa_controller.setMaximumOutdoorAirFlowRate(vfr) - - # Fan power - if fan.fanEfficiency == 1 # Not user specified, so default here - fan_watts_per_cfm = [2.79 * hvac_final_values.Cool_Airflow**-0.29, 0.6].min # fit of efficacy to air flow from the CEC listed equipment W/cfm - HVAC.set_fan_power(fan, fan_watts_per_cfm) - end - - @cond_zone.airLoopHVACTerminals.each do |aterm| - next if air_loop != aterm.airLoopHVAC.get - next unless aterm.to_AirTerminalSingleDuctVAVNoReheat.is_initialized - - # Air Terminal - aterm = aterm.to_AirTerminalSingleDuctVAVNoReheat.get - aterm.setMaximumAirFlowRate(vfr) - end - - elsif object.is_a?(OpenStudio::Model::ZoneHVACBaseboardConvectiveWater) || object.is_a?(OpenStudio::Model::ZoneHVACFourPipeFanCoil) - - ## Hot Water Boiler ## - - plant_loop = object.heatingCoil.plantLoop.get - - max_water_flow = UnitConversions.convert(hvac_final_values.Heat_Capacity, 'Btu/hr', 'W') / UnitConversions.convert(20.0, 'R', 'K') / 4.186 / 998.2 / 1000.0 * 2.0 - bb_UA = UnitConversions.convert(hvac_final_values.Heat_Capacity, 'Btu/hr', 'W') / UnitConversions.convert(hvac.BoilerDesignTemp - 10.0 - 95.0, 'R', 'K') * 3.0 - if object.is_a? OpenStudio::Model::ZoneHVACBaseboardConvectiveWater - # Baseboard Coil - coil = object.heatingCoil.to_CoilHeatingWaterBaseboard.get - coil.setUFactorTimesAreaValue(bb_UA) - coil.setMaximumWaterFlowRate(max_water_flow) - coil.setHeatingDesignCapacityMethod('HeatingDesignCapacity') - elsif object.is_a? OpenStudio::Model::ZoneHVACFourPipeFanCoil - coil = object.heatingCoil.to_CoilHeatingWater.get - coil.setRatedCapacity(UnitConversions.convert(hvac_final_values.Heat_Capacity, 'Btu/hr', 'W')) - coil.setUFactorTimesAreaValue(bb_UA) - coil.setMaximumWaterFlowRate(max_water_flow) - coil.setPerformanceInputMethod('NominalCapacity') - - max_air_flow = UnitConversions.convert(400.0 * UnitConversions.convert(hvac_final_values.Heat_Capacity, 'Btu/hr', 'ton'), 'cfm', 'm^3/s') # Assumes 400 cfm/ton - object.setMaximumSupplyAirFlowRate(max_air_flow) - object.setMaximumHotWaterFlowRate(max_water_flow) - object.supplyAirFan.to_FanOnOff.get.setMaximumFlowRate(max_air_flow) - end - - plant_loop.components.each do |component| - # Boiler - if component.to_BoilerHotWater.is_initialized - boiler = component.to_BoilerHotWater.get - boiler.setNominalCapacity(UnitConversions.convert(hvac_final_values.Heat_Capacity, 'Btu/hr', 'W')) - end - end - - elsif object.is_a? OpenStudio::Model::ZoneHVACBaseboardConvectiveElectric - - ## Electric Baseboard ## - - thermal_zone = object.thermalZone.get - - # Baseboard - object.setNominalCapacity(UnitConversions.convert(hvac_final_values.Heat_Capacity, 'Btu/hr', 'W')) - - elsif object.is_a? OpenStudio::Model::ZoneHVACPackagedTerminalAirConditioner - - ## Window AC ## - - thermal_zone = object.thermalZone.get - - # PTAC - object.setSupplyAirFlowRateDuringCoolingOperation(UnitConversions.convert(hvac_final_values.Cool_Airflow, 'cfm', 'm^3/s')) - object.setSupplyAirFlowRateDuringHeatingOperation(0.00001) - object.setSupplyAirFlowRateWhenNoCoolingorHeatingisNeeded(0.0) - object.setOutdoorAirFlowRateDuringCoolingOperation(0.0) - object.setOutdoorAirFlowRateDuringHeatingOperation(0.0) - object.setOutdoorAirFlowRateWhenNoCoolingorHeatingisNeeded(0.0) - - # Fan - fanonoff = object.supplyAirFan.to_FanOnOff.get - fanonoff.setMaximumFlowRate(UnitConversions.convert(hvac_final_values.Cool_Airflow, 'cfm', 'm^3/s')) - - # Coils - setCoilsObjectValues(model, hvac, object, hvac_final_values) - - # Heating Coil override - ptac_htg_coil = object.heatingCoil.to_CoilHeatingElectric.get - ptac_htg_coil.setNominalCapacity(0.0) - - else - fail "Unexpected object type: #{object.class}." - - end # object type - end # hvac Object - end - - def self.setCoilsObjectValues(model, hvac, equip, hvac_final_values) - clg_coil, htg_coil, supp_htg_coil = HVAC.get_coils_from_hvac_equip(model, equip) - - # Cooling coil - if clg_coil.is_a? OpenStudio::Model::CoilCoolingDXSingleSpeed - clg_coil.setRatedTotalCoolingCapacity(UnitConversions.convert(hvac_final_values.Cool_Capacity, 'Btu/hr', 'W')) - clg_coil.setRatedAirFlowRate(UnitConversions.convert(hvac_final_values.Cool_Capacity, 'Btu/hr', 'ton') * UnitConversions.convert(hvac.RatedCFMperTonCooling[0], 'cfm', 'm^3/s')) - elsif clg_coil.is_a? OpenStudio::Model::CoilCoolingDXMultiSpeed - clg_coil.stages.each_with_index do |stage, speed| - stage.setGrossRatedTotalCoolingCapacity(UnitConversions.convert(hvac_final_values.Cool_Capacity, 'Btu/hr', 'W') * hvac.CapacityRatioCooling[speed]) - if clg_coil.name.to_s.start_with?(Constants.ObjectNameAirSourceHeatPump) || clg_coil.name.to_s.start_with?(Constants.ObjectNameCentralAirConditioner) - stage.setRatedAirFlowRate(UnitConversions.convert(hvac_final_values.Cool_Capacity, 'Btu/hr', 'ton') * UnitConversions.convert(hvac.RatedCFMperTonCooling[speed], 'cfm', 'm^3/s') * hvac.CapacityRatioCooling[speed]) - elsif clg_coil.name.to_s.start_with? Constants.ObjectNameMiniSplitHeatPump - stage.setRatedAirFlowRate(UnitConversions.convert(hvac_final_values.Cool_Capacity, 'Btu/hr', 'ton') * UnitConversions.convert(hvac.RatedCFMperTonCooling[speed], 'cfm', 'm^3/s')) - end - end - - elsif clg_coil.is_a? OpenStudio::Model::CoilCoolingWaterToAirHeatPumpEquationFit - clg_coil.setRatedAirFlowRate(UnitConversions.convert(hvac_final_values.Cool_Airflow, 'cfm', 'm^3/s')) - clg_coil.setRatedWaterFlowRate(UnitConversions.convert(hvac_final_values.GSHP_Loop_flow, 'gal/min', 'm^3/s')) - clg_coil.setRatedTotalCoolingCapacity(UnitConversions.convert(hvac_final_values.Cool_Capacity, 'Btu/hr', 'W')) - clg_coil.setRatedSensibleCoolingCapacity(UnitConversions.convert(hvac_final_values.Cool_Capacity_Sens, 'Btu/hr', 'W')) - - end - - # Heating coil - if htg_coil.is_a? OpenStudio::Model::CoilHeatingElectric - if not equip.is_a? OpenStudio::Model::ZoneHVACPackagedTerminalAirConditioner - htg_coil.setNominalCapacity(UnitConversions.convert(hvac_final_values.Heat_Capacity, 'Btu/hr', 'W')) - end - - elsif htg_coil.is_a? OpenStudio::Model::CoilHeatingGas - htg_coil.setNominalCapacity(UnitConversions.convert(hvac_final_values.Heat_Capacity, 'Btu/hr', 'W')) - - elsif htg_coil.is_a? OpenStudio::Model::CoilHeatingDXSingleSpeed - htg_coil.setRatedTotalHeatingCapacity(UnitConversions.convert(hvac_final_values.Heat_Capacity, 'Btu/hr', 'W')) - if htg_coil.name.to_s.start_with? Constants.ObjectNameWaterLoopHeatPump - htg_coil.setRatedAirFlowRate(UnitConversions.convert(hvac_final_values.Heat_Airflow, 'cfm', 'm^3/s')) - else - htg_coil.setRatedAirFlowRate(UnitConversions.convert(hvac_final_values.Heat_Capacity, 'Btu/hr', 'ton') * UnitConversions.convert(hvac.RatedCFMperTonHeating[0], 'cfm', 'm^3/s')) - end - - elsif htg_coil.is_a? OpenStudio::Model::CoilHeatingDXMultiSpeed - htg_coil.stages.each_with_index do |stage, speed| - stage.setGrossRatedHeatingCapacity(UnitConversions.convert(hvac_final_values.Heat_Capacity, 'Btu/hr', 'W') * hvac.CapacityRatioHeating[speed]) - if htg_coil.name.to_s.start_with? Constants.ObjectNameAirSourceHeatPump - stage.setRatedAirFlowRate(UnitConversions.convert(hvac_final_values.Heat_Capacity, 'Btu/hr', 'ton') * UnitConversions.convert(hvac.RatedCFMperTonHeating[speed], 'cfm', 'm^3/s') * hvac.CapacityRatioHeating[speed]) - elsif htg_coil.name.to_s.start_with? Constants.ObjectNameMiniSplitHeatPump - stage.setRatedAirFlowRate(UnitConversions.convert(hvac_final_values.Heat_Capacity, 'Btu/hr', 'ton') * UnitConversions.convert(hvac.RatedCFMperTonHeating[speed], 'cfm', 'm^3/s')) - end - end - - elsif htg_coil.is_a? OpenStudio::Model::CoilHeatingWaterToAirHeatPumpEquationFit - htg_coil.setRatedAirFlowRate(UnitConversions.convert(hvac_final_values.Heat_Airflow, 'cfm', 'm^3/s')) - htg_coil.setRatedWaterFlowRate(UnitConversions.convert(hvac_final_values.GSHP_Loop_flow, 'gal/min', 'm^3/s')) - htg_coil.setRatedHeatingCapacity(UnitConversions.convert(hvac_final_values.Heat_Capacity, 'Btu/hr', 'W')) - - end - - # Supplemental heating coil - if supp_htg_coil.is_a?(OpenStudio::Model::CoilHeatingElectric) || supp_htg_coil.is_a?(OpenStudio::Model::CoilHeatingGas) - supp_htg_coil.setNominalCapacity(UnitConversions.convert(hvac_final_values.Heat_Capacity_Supp, 'Btu/hr', 'W')) - end - end - - def self.display_zone_loads(zone_loads) - s = "Zone Loads for #{@cond_zone.name}:" - properties = [ - :Heat_Windows, :Heat_Skylights, - :Heat_Doors, :Heat_Walls, - :Heat_Roofs, :Heat_Floors, - :Heat_Infil, - :Cool_Windows, :Cool_Skylights, - :Cool_Doors, :Cool_Walls, - :Cool_Roofs, :Cool_Floors, - :Cool_Infil_Sens, :Cool_Infil_Lat, - :Cool_IntGains_Sens, :Cool_IntGains_Lat, - ] - properties.each do |property| - s += "\n#{property.to_s.gsub('_', ' ')} = #{zone_loads.send(property).round(0)} Btu/hr" - end - @runner.registerInfo("#{s}\n") - end - - def self.display_hvac_final_values_results(hvac_final_values, hvac) - s = "Final Results for #{hvac.Objects[0].name}:" - loads = [ - :Heat_Load, :Heat_Load_Ducts, - :Cool_Load_Lat, :Cool_Load_Sens, - :Cool_Load_Ducts_Lat, :Cool_Load_Ducts_Sens, - ] - caps = [ - :Cool_Capacity, :Cool_Capacity_Sens, - :Heat_Capacity, :Heat_Capacity_Supp, - ] - airflows = [ - :Cool_Airflow, :Heat_Airflow, - ] - loads.each do |load| - s += "\n#{load.to_s.gsub('_', ' ')} = #{hvac_final_values.send(load).round(0)} Btu/hr" - end - caps.each do |cap| - s += "\n#{cap.to_s.gsub('_', ' ')} = #{hvac_final_values.send(cap).round(0)} Btu/hr" - end - airflows.each do |airflow| - s += "\n#{airflow.to_s.gsub('_', ' ')} = #{hvac_final_values.send(airflow).round(0)} cfm" - end - @runner.registerInfo("#{s}\n") - end end -class ZoneLoads - # Thermal zone loads +class DesignLoads def initialize end - attr_accessor(:Cool_Windows, :Cool_Skylights, :Cool_Doors, :Cool_Walls, :Cool_Roofs, :Cool_Floors, - :Cool_Infil_Sens, :Cool_Infil_Lat, :Cool_IntGains_Sens, :Cool_IntGains_Lat, + attr_accessor(:Cool_Sens, :Cool_Lat, :Cool_Tot, :Heat_Tot, :Heat_Ducts, :Cool_Ducts_Sens, :Cool_Ducts_Lat, + :Cool_Windows, :Cool_Skylights, :Cool_Doors, :Cool_Walls, :Cool_Roofs, :Cool_Floors, + :Cool_Ceilings, :Cool_Infil_Sens, :Cool_Infil_Lat, :Cool_IntGains_Sens, :Cool_IntGains_Lat, :Heat_Windows, :Heat_Skylights, :Heat_Doors, :Heat_Walls, :Heat_Roofs, :Heat_Floors, - :Heat_Infil) -end - -class InitialLoads - # Initial loads (aggregated across thermal zones and excluding ducts) - def initialize - end - attr_accessor(:Cool_Sens, :Cool_Lat, :Cool_Tot, :Heat) + :Heat_Slabs, :Heat_Ceilings, :Heat_InfilVent) end -class FinalValues - # Final loads (including ducts), airflow rates, equipment capacities, etc. +class HVACSizingValues def initialize end attr_accessor(:Cool_Load_Sens, :Cool_Load_Lat, :Cool_Load_Tot, - :Cool_Load_Ducts_Sens, :Cool_Load_Ducts_Lat, :Cool_Load_Ducts_Tot, :Cool_Capacity, :Cool_Capacity_Sens, :Cool_Airflow, - :Heat_Load, :Heat_Load_Ducts, - :Heat_Capacity, :Heat_Capacity_Supp, :Heat_Airflow, + :Heat_Load, :Heat_Capacity, :Heat_Capacity_Supp, :Heat_Airflow, :GSHP_Loop_flow, :GSHP_Bore_Holes, :GSHP_Bore_Depth, :GSHP_G_Functions) end @@ -3439,37 +3373,29 @@ def initialize self.CapacityRatioHeating = [1.0] self.OverSizeLimit = 1.15 self.OverSizeDelta = 15000.0 - self.FanspeedRatioCooling = [1.0] self.Ducts = [] + self.AirflowDefectRatioCooling = 0.0 + self.AirflowDefectRatioHeating = 0.0 end - def has_type(name_or_names) - if not name_or_names.is_a? Array - name_or_names = [name_or_names] - end - name_or_names.each do |name| - next unless (self.HeatType == name) || (self.CoolType == name) - - return true - end - return false - end - - attr_accessor(:HeatType, :CoolType, :Handle, :Objects, :Ducts, :NumSpeedsCooling, :NumSpeedsHeating, + attr_accessor(:HeatType, :CoolType, :Ducts, :NumSpeedsCooling, :NumSpeedsHeating, :FixedCoolingCapacity, :FixedHeatingCapacity, :FixedSuppHeatingCapacity, - :RatedCFMperTonCooling, :RatedCFMperTonHeating, - :COOL_CAP_FT_SPEC, :HEAT_CAP_FT_SPEC, :COOL_SH_FT_SPEC, :COIL_BF_FT_SPEC, - :SHRRated, :CapacityRatioCooling, :CapacityRatioHeating, :FanWatts, - :HeatingCapacityOffset, :OverSizeLimit, :OverSizeDelta, :FanspeedRatioCooling, - :BoilerDesignTemp, :CoilBF, :HeatingEIR, :CoolingEIR, :SizingSpeed, - :GSHP_PumpWattsPerTon, :GSHP_HXVertical, :GSHP_HXDTDesign, :GSHP_HXCHWDesign, :GSHP_HXHWDesign, - :GSHP_BoreSpacing, :GSHP_BoreHoles, :GSHP_BoreDepth, :GSHP_BoreConfig, :GSHP_SpacingType, + :AirflowDefectRatioCooling, :AirflowDefectRatioHeating, + :RatedCFMperTonCooling, :RatedCFMperTonHeating, :ChargeDefectRatio, + :COOL_CAP_FT_SPEC, :HEAT_CAP_FT_SPEC, :COOL_SH_FT_SPEC, + :COOL_CAP_FFLOW_SPEC, :HEAT_CAP_FFLOW_SPEC, + :SHRRated, :CapacityRatioCooling, :CapacityRatioHeating, + :OverSizeLimit, :OverSizeDelta, + :HeatingEIR, :CoolingEIR, :SizingSpeed, :HeatingCOP, + :GSHP_SpacingType, :EvapCoolerEffectiveness, :HeatingLoadFraction, :CoolingLoadFraction, :SupplyAirTemp, :LeavingAirTemp, - :EvapCoolerEffectiveness) + :GSHP_design_chw, :GSHP_design_delta_t, :GSHP_design_hw, :GSHP_bore_d, + :GSHP_pipe_od, :GSHP_pipe_id, :GSHP_pipe_cond, :GSHP_ground_k, :GSHP_grout_k) end class DuctInfo # Model info for a duct + # FUTURE: Remove class; use either airflow.rb Duct class or HPXML Ducts class directly def initial end attr_accessor(:LeakageFrac, :LeakageCFM25, :Area, :Rvalue, :Location, :Side) diff --git a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/lighting.rb b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/lighting.rb index 931e907b..1e9b9d6f 100644 --- a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/lighting.rb +++ b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/lighting.rb @@ -8,7 +8,6 @@ def self.apply(runner, model, epw_file, spaces, lighting_groups, lighting, eri_v end if fractions[[HPXML::LocationInterior, HPXML::LightingTypeCFL]].nil? # Not the lighting group(s) we're interested in - runner.registerWarning('No lighting specified, the model will not include lighting energy use.') return end @@ -120,6 +119,7 @@ def self.apply(runner, model, epw_file, spaces, lighting_groups, lighting, eri_v ltg_def = OpenStudio::Model::ExteriorLightsDefinition.new(model) ltg = OpenStudio::Model::ExteriorLights.new(ltg_def) ltg.setName(Constants.ObjectNameExteriorLighting) + ltg.setEndUseSubcategory(Constants.ObjectNameExteriorLighting) ltg_def.setName(Constants.ObjectNameExteriorLighting) ltg_def.setDesignLevel(design_level) ltg.setSchedule(exterior_sch) @@ -139,6 +139,7 @@ def self.apply(runner, model, epw_file, spaces, lighting_groups, lighting, eri_v ltg_def = OpenStudio::Model::ExteriorLightsDefinition.new(model) ltg = OpenStudio::Model::ExteriorLights.new(ltg_def) ltg.setName(Constants.ObjectNameLightingExteriorHoliday) + ltg.setEndUseSubcategory(Constants.ObjectNameLightingExteriorHoliday) ltg_def.setName(Constants.ObjectNameLightingExteriorHoliday) ltg_def.setDesignLevel(design_level) ltg.setSchedule(exterior_holiday_sch) diff --git a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/location.rb b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/location.rb index ad564bac..05cebb70 100644 --- a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/location.rb +++ b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/location.rb @@ -78,21 +78,34 @@ def self.apply_ground_temps(model, weather) dgts.setAllMonthlyTemperatures([UnitConversions.convert(weather.data.AnnualAvgDrybulb, 'F', 'C')] * 12) end - def self.get_climate_zone_ba(wmo) - ba_zone = nil + def self.get_climate_zones zones_csv = File.join(File.dirname(__FILE__), 'data_climate_zones.csv') if not File.exist?(zones_csv) fail 'Could not find data_climate_zones.csv' end + return zones_csv + end + + def self.get_climate_zone_iecc(wmo) + zones_csv = get_climate_zones + + require 'csv' + CSV.foreach(zones_csv) do |row| + return row[6].to_s if row[0].to_s == wmo.to_s + end + + return + end + + def self.get_climate_zone_ba(wmo) + zones_csv = get_climate_zones + require 'csv' CSV.foreach(zones_csv) do |row| - if row[0].to_s == wmo.to_s - ba_zone = row[5].to_s - break - end + return row[5].to_s if row[0].to_s == wmo.to_s end - return ba_zone + return end end diff --git a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/meta_measure.rb b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/meta_measure.rb index 31d6e6ef..406727e4 100644 --- a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/meta_measure.rb +++ b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/meta_measure.rb @@ -2,7 +2,7 @@ require 'fileutils' -def run_hpxml_workflow(rundir, hpxml, measures, measures_dir, debug: false, output_vars: [], +def run_hpxml_workflow(rundir, measures, measures_dir, debug: false, output_vars: [], output_meters: [], run_measures_only: false, print_prefix: '') rm_path(rundir) FileUtils.mkdir_p(rundir) @@ -51,7 +51,13 @@ def run_hpxml_workflow(rundir, hpxml, measures, measures_dir, debug: false, outp forward_translator = OpenStudio::EnergyPlus::ForwardTranslator.new forward_translator.setExcludeLCCObjects(true) model_idf = forward_translator.translateModel(model) - report_ft_errors_warnings(forward_translator, rundir) + success = report_ft_errors_warnings(forward_translator, rundir) + + if not success + print "#{print_prefix}Creating input unsuccessful.\n" + print "#{print_prefix}See #{File.join(rundir, 'run.log')} for details.\n" + return { success: false, runner: runner } + end # Apply reporting measure output requests apply_energyplus_output_requests(measures_dir, measures, runner, model, model_idf) @@ -274,6 +280,19 @@ def get_argument_map(model, measure, provided_args, lookup_file, measure_name, r return argument_map end +def get_value_from_workflow_step_value(step_value) + variant_type = step_value.variantType + if variant_type == 'Boolean'.to_VariantType + return step_value.valueAsBoolean + elsif variant_type == 'Double'.to_VariantType + return step_value.valueAsDouble + elsif variant_type == 'Integer'.to_VariantType + return step_value.valueAsInteger + elsif variant_type == 'String'.to_VariantType + return step_value.valueAsString + end +end + def run_measure(model, measure, argument_map, runner) begin # run the measure @@ -298,6 +317,11 @@ def run_measure(model, measure, argument_map, runner) runner.registerFinalCondition(result_child.finalCondition.get.logMessage) end + # re-register runner child registered values on the parent runner + result_child.stepValues.each do |step_value| + runner.registerValue(step_value.name, get_value_from_workflow_step_value(step_value)) + end + # log messages result_child.warnings.each do |warning| runner.registerWarning(warning.logMessage) @@ -338,7 +362,7 @@ def hash_to_string(hash, delim = '=', separator = ',') def register_error(msg, runner = nil) if not runner.nil? runner.registerError(msg) - fail msg # OS 2.0 will handle this more gracefully + fail msg else raise "ERROR: #{msg}" end @@ -388,14 +412,17 @@ def report_measure_errors_warnings(runner, rundir, debug) def report_ft_errors_warnings(forward_translator, rundir) # Report warnings/errors + success = true File.open(File.join(rundir, 'run.log'), 'a') do |f| forward_translator.warnings.each do |s| f << "FT Warning: #{s.logMessage}\n" end forward_translator.errors.each do |s| f << "FT Error: #{s.logMessage}\n" + success = false end end + return success end def report_os_warnings(os_log, rundir) @@ -440,3 +467,37 @@ def is_integer? return true end end + +def get_argument_values(runner, arguments, user_arguments) + args = {} + arguments.each do |argument| + if argument.required + case argument.type + when 'Choice'.to_OSArgumentType + args[argument.name] = runner.getStringArgumentValue(argument.name, user_arguments) + when 'Boolean'.to_OSArgumentType + args[argument.name] = runner.getBoolArgumentValue(argument.name, user_arguments) + when 'Double'.to_OSArgumentType + args[argument.name] = runner.getDoubleArgumentValue(argument.name, user_arguments) + when 'Integer'.to_OSArgumentType + args[argument.name] = runner.getIntegerArgumentValue(argument.name, user_arguments) + when 'String'.to_OSArgumentType + args[argument.name] = runner.getStringArgumentValue(argument.name, user_arguments) + end + else + case argument.type + when 'Choice'.to_OSArgumentType + args[argument.name] = runner.getOptionalStringArgumentValue(argument.name, user_arguments) + when 'Boolean'.to_OSArgumentType + args[argument.name] = runner.getOptionalStringArgumentValue(argument.name, user_arguments) + when 'Double'.to_OSArgumentType + args[argument.name] = runner.getOptionalDoubleArgumentValue(argument.name, user_arguments) + when 'Integer'.to_OSArgumentType + args[argument.name] = runner.getOptionalIntegerArgumentValue(argument.name, user_arguments) + when 'String'.to_OSArgumentType + args[argument.name] = runner.getOptionalStringArgumentValue(argument.name, user_arguments) + end + end + end + return args +end diff --git a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/misc_loads.rb b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/misc_loads.rb index 6233ab3f..6b3f66b0 100644 --- a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/misc_loads.rb +++ b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/misc_loads.rb @@ -30,17 +30,6 @@ def self.apply_plug(model, plug_load, obj_name, living_space, apply_ashrae140_as sens_frac = plug_load.frac_sensible lat_frac = plug_load.frac_latent - # check for valid inputs - if (sens_frac < 0) || (sens_frac > 1) - fail 'Sensible fraction must be greater than or equal to 0 and less than or equal to 1.' - end - if (lat_frac < 0) || (lat_frac > 1) - fail 'Latent fraction must be greater than or equal to 0 and less than or equal to 1.' - end - if lat_frac + sens_frac > 1 - fail 'Sum of sensible and latent fractions must be less than or equal to 1.' - end - if apply_ashrae140_assumptions # ASHRAE 140, Table 7-9. Sensible loads are 70% radiative and 30% convective. rad_frac = 0.7 * sens_frac @@ -89,17 +78,6 @@ def self.apply_fuel(model, fuel_load, obj_name, living_space, schedules_file) sens_frac = fuel_load.frac_sensible lat_frac = fuel_load.frac_latent - # check for valid inputs - if (sens_frac < 0) || (sens_frac > 1) - fail 'Sensible fraction must be greater than or equal to 0 and less than or equal to 1.' - end - if (lat_frac < 0) || (lat_frac > 1) - fail 'Latent fraction must be greater than or equal to 0 and less than or equal to 1.' - end - if lat_frac + sens_frac > 1 - fail 'Sum of sensible and latent fractions must be less than or equal to 1.' - end - # Add other equipment for the mfl mfl_def = OpenStudio::Model::OtherEquipmentDefinition.new(model) mfl = OpenStudio::Model::OtherEquipment.new(mfl_def) @@ -116,6 +94,8 @@ def self.apply_fuel(model, fuel_load, obj_name, living_space, schedules_file) end def self.apply_pool_or_hot_tub_heater(model, pool_or_hot_tub, obj_name, living_space, schedules_file) + return if pool_or_hot_tub.heater_type == HPXML::TypeNone + heater_kwh = 0 heater_therm = 0 diff --git a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/pv.rb b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/pv.rb index 9db4d8ae..a38f0926 100644 --- a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/pv.rb +++ b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/pv.rb @@ -8,9 +8,7 @@ def self.apply(model, nbeds, pv_system) max_power = pv_system.max_power_output else # Apportion to single dwelling unit by # bedrooms - if pv_system.number_of_bedrooms_served.to_f <= nbeds.to_f - fail "Shared PV system number of bedrooms served (#{pv_system.number_of_bedrooms_served}) must be greater than the number of bedrooms in the dwelling unit (#{nbeds})." - end + fail if pv_system.number_of_bedrooms_served.to_f <= nbeds.to_f # EPvalidator.xml should prevent this max_power = pv_system.max_power_output * nbeds.to_f / pv_system.number_of_bedrooms_served.to_f end diff --git a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/schedules.rb b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/schedules.rb index 6162caa5..26d7e5bb 100644 --- a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/schedules.rb +++ b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/schedules.rb @@ -1203,17 +1203,21 @@ def get_external_file return external_file end - def set_vacancy(col_names:) + def set_vacancy return unless @schedules.keys.include? 'vacancy' return if @schedules['vacancy'].all? { |i| i == 0 } - @schedules[col_names[0]].each_with_index do |ts, i| - col_names.each do |col_name| + col_names = ScheduleGenerator.col_names + + @schedules[col_names.keys[0]].each_with_index do |ts, i| + col_names.keys.each do |col_name| + next unless col_names[col_name] # skip those unaffected by vacancy + @schedules[col_name][i] *= (1.0 - @schedules['vacancy'][i]) end end - update(col_names: col_names) + update(col_names: col_names.keys) end def import(col_names:) @@ -1248,9 +1252,14 @@ def update(col_names:) return false if @schedules_path.nil? # need to update schedules csv in generated_files folder (alongside run folder) since this is what the simulation points to - schedules_path = File.expand_path(File.join(File.dirname(@schedules_path), '../generated_files', File.basename(@schedules_path))) + begin + schedules_path = File.expand_path(File.join(File.dirname(@schedules_path), '../generated_files', File.basename(@schedules_path))) # called from cli + columns = CSV.read(schedules_path).transpose + rescue + schedules_path = File.expand_path(File.join(File.dirname(@schedules_path), '../../../files', File.basename(@schedules_path))) # testing + columns = CSV.read(schedules_path).transpose + end - columns = CSV.read(schedules_path).transpose col_names.each do |col_name| col_num = get_col_index(col_name: col_name) columns.each_with_index do |col, i| diff --git a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/simcontrols.rb b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/simcontrols.rb index f5c8520d..de938697 100644 --- a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/simcontrols.rb +++ b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/simcontrols.rb @@ -9,8 +9,14 @@ def self.apply(model, header) tstep.setNumberOfTimestepsPerHour(60 / header.timestep) shad = model.getShadowCalculation - shad.setShadingCalculationUpdateFrequency(20) shad.setMaximumFiguresInShadowOverlapCalculations(200) + # Detailed diffuse algorithm is required for window interior shading with varying + # transmittance schedules + shad.setSkyDiffuseModelingAlgorithm('DetailedSkyDiffuseModeling') + # Use EnergyPlus default of 20 days for update frequency; it is a reasonable balance + # between speed and accuracy (e.g., sun position, picking up any change in window + # interior shading transmittance, etc.). + shad.setShadingCalculationUpdateFrequency(20) outsurf = model.getOutsideSurfaceConvectionAlgorithm outsurf.setAlgorithm('DOE-2') diff --git a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/unit_conversions.rb b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/unit_conversions.rb index d824d715..002a1990 100644 --- a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/unit_conversions.rb +++ b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/unit_conversions.rb @@ -167,6 +167,8 @@ def self.convert(x, from, to) return x + 273.15 elsif key == ['f', 'c'] return (x - 32.0) / 1.8 + elsif key == ['f', 'k'] + return (x - 32.0) / 1.8 + 273.15 elsif key == ['f', 'r'] return x + 459.67 elsif key == ['k', 'c'] diff --git a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/version.rb b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/version.rb index 5f18566a..6b0bb01e 100644 --- a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/version.rb +++ b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/version.rb @@ -1,7 +1,7 @@ # frozen_string_literal: true class Version - OS_HPXML_Version = '1.0.0' # Version of the OS-HPXML workflow + OS_HPXML_Version = '1.1.0' # Version of the OS-HPXML workflow OS_Version = '3.1.0' # Required version of OpenStudio (can be 'X.X' or 'X.X.X') HPXML_Version = '3.0' # HPXML schemaVersion diff --git a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/waterheater.rb b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/waterheater.rb index b14463b8..fa44ad73 100644 --- a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/waterheater.rb +++ b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/waterheater.rb @@ -1192,10 +1192,11 @@ def self.get_default_recovery_efficiency(water_heating_system) ef = calc_ef_from_uef(water_heating_system) end if ef >= 0.75 - return 0.778114 * ef + 0.276679 + re = 0.561 * ef + 0.439 else - return 0.252117 * ef + 0.607997 + re = 0.252 * ef + 0.608 end + return re end end @@ -1398,8 +1399,6 @@ def self.get_default_location(hpxml, iecc_zone) location_hierarchy = [HPXML::LocationBasementConditioned, HPXML::LocationBasementUnconditioned, HPXML::LocationLivingSpace] - else - fail "Unexpected IECC climate zone: '#{iecc_zone}'." end location_hierarchy.each do |space_type| if hpxml.has_space_type(space_type) diff --git a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/xmlhelper.rb b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/xmlhelper.rb index 2bedd0cb..7ba0d132 100644 --- a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/xmlhelper.rb +++ b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/xmlhelper.rb @@ -8,11 +8,11 @@ def self.add_element(parent, element_name, value = nil, datatype = nil, defaulte parent.children << added if not value.nil? if datatype == :integer - value = to_integer(value) + value = to_integer(value, parent, element_name) elsif datatype == :float - value = to_float(value) + value = to_float(value, parent, element_name) elsif datatype == :boolean - value = to_boolean(value) + value = to_boolean(value, parent, element_name) elsif datatype != :string # If value provided, datatype required fail 'Unexpected datatype.' @@ -58,11 +58,6 @@ def self.delete_element(parent, element_name) # Returns the value of 'element_name' in the parent element or nil. def self.get_value(parent, element_name, datatype) - value, isdefaulted = get_value_and_defaulted(parent, element_name, datatype) - return value - end - - def self.get_value_and_defaulted(parent, element_name, datatype) element = parent.at_xpath(element_name) if element.nil? return @@ -70,18 +65,16 @@ def self.get_value_and_defaulted(parent, element_name, datatype) value = element.text if datatype == :integer - value = to_integer_or_nil(value) + value = to_integer_or_nil(value, parent, element_name) elsif datatype == :float - value = to_float_or_nil(value) + value = to_float_or_nil(value, parent, element_name) elsif datatype == :boolean - value = to_boolean_or_nil(value) + value = to_boolean_or_nil(value, parent, element_name) elsif datatype != :string fail 'Unexpected datatype.' end - isdefaulted = get_attribute_value(element, 'dataSource') == 'software' - - return value, isdefaulted + return value end # Returns the value(s) of 'element_name' in the parent element or []. @@ -91,11 +84,11 @@ def self.get_values(parent, element_name, datatype) value = value.text if datatype == :integer - value = to_integer_or_nil(value) + value = to_integer_or_nil(value, parent, element_name) elsif datatype == :float - value = to_float_or_nil(value) + value = to_float_or_nil(value, parent, element_name) elsif datatype == :boolean - value = to_boolean_or_nil(value) + value = to_boolean_or_nil(value, parent, element_name) elsif datatype != :string fail 'Unexpected datatype.' end @@ -148,6 +141,12 @@ def self.get_attribute_value(element, attr_name) return element.get(attr_name) end + def self.delete_attribute(element, attr_name) + return if element.nil? + + element.unset(attr_name) + end + def self.validate(doc, xsd_path, runner = nil) if Gem::Specification::find_all_by_name('nokogiri').any? require 'nokogiri' @@ -222,28 +221,28 @@ def self.write_file(doc, out_path) end end -def to_float(value) +def to_float(value, parent, element_name) begin return Float(value) rescue - fail "Cannot convert '#{value}' to float." + fail "Cannot convert '#{value}' to float for #{parent.name}/#{element_name}." end end -def to_integer(value) +def to_integer(value, parent, element_name) begin value = Float(value) rescue - fail "Cannot convert '#{value}' to integer." + fail "Cannot convert '#{value}' to integer for #{parent.name}/#{element_name}." end if value % 1 == 0 return Integer(value) else - fail "Cannot convert '#{value}' to integer." + fail "Cannot convert '#{value}' to integer for #{parent.name}/#{element_name}." end end -def to_boolean(value) +def to_boolean(value, parent = nil, element_name = nil) if value.is_a? TrueClass return true elsif value.is_a? FalseClass @@ -254,23 +253,25 @@ def to_boolean(value) return false end - fail "Cannot convert '#{value}' to boolean." + if (not parent.nil?) && (not element_name.nil?) + fail "Cannot convert '#{value}' to boolean for #{parent.name}/#{element_name}." + end end -def to_float_or_nil(value) +def to_float_or_nil(value, parent, element_name) return if value.nil? - return to_float(value) + return to_float(value, parent, element_name) end -def to_integer_or_nil(value) +def to_integer_or_nil(value, parent, element_name) return if value.nil? - return to_integer(value) + return to_integer(value, parent, element_name) end -def to_boolean_or_nil(value) +def to_boolean_or_nil(value, parent, element_name) return if value.nil? - return to_boolean(value) + return to_boolean(value, parent, element_name) end diff --git a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_airflow.rb b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_airflow.rb index 09e8fd76..73d50fea 100644 --- a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_airflow.rb +++ b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_airflow.rb @@ -92,7 +92,7 @@ def test_infiltration_ach50_flue # Check infiltration/ventilation program program_values = get_ems_values(model.getEnergyManagementSystemPrograms, "#{Constants.ObjectNameInfiltration} program") assert_in_epsilon(0.0436, program_values['c'].sum, 0.01) - assert_in_epsilon(0.0818, program_values['Cs'].sum, 0.01) + assert_in_epsilon(0.0661, program_values['Cs'].sum, 0.01) assert_in_epsilon(0.1323, program_values['Cw'].sum, 0.01) end @@ -599,6 +599,7 @@ def _test_measure(args_hash) model = OpenStudio::Model::Model.new # get arguments + args_hash['output_dir'] = 'tests' arguments = measure.arguments(model) argument_map = OpenStudio::Measure.convertOSArgumentVectorToMap(arguments) @@ -623,6 +624,8 @@ def _test_measure(args_hash) hpxml = HPXML.new(hpxml_path: args_hash['hpxml_path']) + File.delete(File.join(File.dirname(__FILE__), 'in.xml')) + return model, hpxml end end diff --git a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_constructions.rb b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_constructions.rb index 68ea3541..147501c1 100644 --- a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_constructions.rb +++ b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_constructions.rb @@ -28,32 +28,39 @@ def test_windows end end - def test_windows_interior_shading + def test_windows_shading args_hash = {} - args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base-enclosure-windows-interior-shading.xml')) + args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base-enclosure-windows-shading.xml')) model, hpxml = _test_measure(args_hash) summer_date = OpenStudio::Date.new(OpenStudio::MonthOfYear.new('June'), 1, model.yearDescription.get.assumedYear) + summer_length = 6 # 6 months for Denver winter_date = OpenStudio::Date.new(OpenStudio::MonthOfYear.new('January'), 1, model.yearDescription.get.assumedYear) + winter_length = 12 - summer_length # months - # Check window shading properties hpxml.windows.each do |window| os_window = model.getSubSurfaces.select { |w| w.name.to_s == window.id }[0] - os_summer_control = os_window.shadingControls.select { |sc| sc.schedule.get.to_ScheduleRuleset.get.getDaySchedules(summer_date, summer_date).map { |ds| ds.values.sum }.sum == 1 }[0] - os_winter_control = os_window.shadingControls.select { |sc| sc.schedule.get.to_ScheduleRuleset.get.getDaySchedules(winter_date, winter_date).map { |ds| ds.values.sum }.sum == 1 }[0] - - if window.interior_shading_factor_summer == 1 - assert_nil(os_summer_control) # No shading - else - refute_nil(os_summer_control) - assert_equal(window.interior_shading_factor_summer, os_summer_control.shadingMaterial.get.to_Shade.get.solarTransmittance) - end - if window.interior_shading_factor_winter == 1 - assert_nil(os_winter_control) # No shading + sf_summer = window.interior_shading_factor_summer + sf_winter = window.interior_shading_factor_winter + sf_summer *= window.exterior_shading_factor_summer unless window.exterior_shading_factor_summer.nil? + sf_winter *= window.exterior_shading_factor_winter unless window.exterior_shading_factor_winter.nil? + + # Check shading transmittance for sky beam and sky diffuse + os_shading_surface = model.getShadingSurfaces.select { |ss| ss.name.to_s.start_with? window.id }[0] + if (sf_summer == 1) && (sf_winter == 1) + assert_nil(os_shading_surface) # No shading else - refute_nil(os_winter_control) - assert_equal(window.interior_shading_factor_winter, os_winter_control.shadingMaterial.get.to_Shade.get.solarTransmittance) + refute_nil(os_shading_surface) # Shading + summer_transmittance = os_shading_surface.transmittanceSchedule.get.to_ScheduleRuleset.get.getDaySchedules(summer_date, summer_date).map { |ds| ds.values.sum }.sum + winter_transmittance = os_shading_surface.transmittanceSchedule.get.to_ScheduleRuleset.get.getDaySchedules(winter_date, winter_date).map { |ds| ds.values.sum }.sum + assert_equal(sf_summer, summer_transmittance) + assert_equal(sf_winter, winter_transmittance) end + + # Check view factor for ground diffuse + default_view_factor = 0.5 # Default for vertical wall + view_factor = default_view_factor * (sf_summer * summer_length + sf_winter * winter_length) / 12.0 + assert_in_delta(view_factor, os_window.viewFactortoGround.get, 0.001) end end @@ -72,6 +79,42 @@ def test_skylights end end + def test_skylights_shading + args_hash = {} + args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base-enclosure-skylights-shading.xml')) + model, hpxml = _test_measure(args_hash) + + summer_date = OpenStudio::Date.new(OpenStudio::MonthOfYear.new('June'), 1, model.yearDescription.get.assumedYear) + summer_length = 6 # 6 months for Denver + winter_date = OpenStudio::Date.new(OpenStudio::MonthOfYear.new('January'), 1, model.yearDescription.get.assumedYear) + winter_length = 12 - summer_length # months + + hpxml.skylights.each do |skylight| + os_window = model.getSubSurfaces.select { |w| w.name.to_s == skylight.id }[0] + sf_summer = skylight.interior_shading_factor_summer + sf_winter = skylight.interior_shading_factor_winter + sf_summer *= skylight.exterior_shading_factor_summer unless skylight.exterior_shading_factor_summer.nil? + sf_winter *= skylight.exterior_shading_factor_winter unless skylight.exterior_shading_factor_winter.nil? + + # Check shading transmittance for sky beam and sky diffuse + os_shading_surface = model.getShadingSurfaces.select { |ss| ss.name.to_s.start_with? skylight.id }[0] + if (sf_summer == 1) && (sf_winter == 1) + assert_nil(os_shading_surface) # No shading + else + refute_nil(os_shading_surface) # Shading + summer_transmittance = os_shading_surface.transmittanceSchedule.get.to_ScheduleRuleset.get.getDaySchedules(summer_date, summer_date).map { |ds| ds.values.sum }.sum + winter_transmittance = os_shading_surface.transmittanceSchedule.get.to_ScheduleRuleset.get.getDaySchedules(winter_date, winter_date).map { |ds| ds.values.sum }.sum + assert_equal(sf_summer, summer_transmittance) + assert_equal(sf_winter, winter_transmittance) + end + + # Check view factor for ground diffuse + default_view_factor = 0.05 # Based on 6:12 pitch in HPXML + view_factor = default_view_factor * (sf_summer * summer_length + sf_winter * winter_length) / 12.0 + assert_in_delta(view_factor, os_window.viewFactortoGround.get, 0.001) + end + end + def _test_measure(args_hash) # create an instance of the measure measure = HPXMLtoOpenStudio.new @@ -80,6 +123,7 @@ def _test_measure(args_hash) model = OpenStudio::Model::Model.new # get arguments + args_hash['output_dir'] = 'tests' arguments = measure.arguments(model) argument_map = OpenStudio::Measure.convertOSArgumentVectorToMap(arguments) @@ -104,6 +148,8 @@ def _test_measure(args_hash) hpxml = HPXML.new(hpxml_path: args_hash['hpxml_path']) + File.delete(File.join(File.dirname(__FILE__), 'in.xml')) + return model, hpxml end end diff --git a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_defaults.rb b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_defaults.rb index 83e2e51b..d4337606 100644 --- a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_defaults.rb +++ b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_defaults.rb @@ -48,7 +48,7 @@ def test_header hpxml.header.allow_increased_fixed_capacities = true XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) hpxml_default = _test_measure() - _test_default_header_values(hpxml_default, false, 30, 2, 2, 11, 11, 2008, false, 3, 3, 10, 10, false, true) + _test_default_header_values(hpxml_default, 30, 2, 2, 11, 11, 2008, false, 3, 3, 10, 10, false, true) # Test defaults - DST not in weather file hpxml.header.timestep = nil @@ -66,7 +66,7 @@ def test_header hpxml.header.allow_increased_fixed_capacities = nil XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) hpxml_default = _test_measure() - _test_default_header_values(hpxml_default, true, 60, 1, 1, 12, 31, 2007, true, 3, 12, 11, 5, true, false) + _test_default_header_values(hpxml_default, 60, 1, 1, 12, 31, 2007, true, 3, 12, 11, 5, true, false) # Test defaults - DST in weather file hpxml = _create_hpxml('base-location-AMY-2012.xml') @@ -85,24 +85,24 @@ def test_header hpxml.header.allow_increased_fixed_capacities = nil XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) hpxml_default = _test_measure() - _test_default_header_values(hpxml_default, true, 60, 1, 1, 12, 31, 2012, true, 3, 11, 11, 4, true, false) + _test_default_header_values(hpxml_default, 60, 1, 1, 12, 31, 2012, true, 3, 11, 11, 4, true, false) end def test_site # Test inputs not overridden by defaults hpxml = _create_hpxml('base.xml') hpxml.site.site_type = HPXML::SiteTypeRural - hpxml.site.shelter_coefficient = 0.3 + hpxml.site.shielding_of_home = HPXML::ShieldingExposed XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) hpxml_default = _test_measure() - _test_default_site_values(hpxml_default, false, HPXML::SiteTypeRural, 0.3) + _test_default_site_values(hpxml_default, HPXML::SiteTypeRural, HPXML::ShieldingExposed) # Test defaults hpxml.site.site_type = nil - hpxml.site.shelter_coefficient = nil + hpxml.site.shielding_of_home = nil XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) hpxml_default = _test_measure() - _test_default_site_values(hpxml_default, true, HPXML::SiteTypeSuburban, 0.5) + _test_default_site_values(hpxml_default, HPXML::SiteTypeSuburban, HPXML::ShieldingNormal) end def test_occupancy @@ -111,13 +111,13 @@ def test_occupancy hpxml.building_occupancy.number_of_residents = 1 XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) hpxml_default = _test_measure() - _test_default_occupancy_values(hpxml_default, false, 1) + _test_default_occupancy_values(hpxml_default, 1) # Test defaults hpxml.building_occupancy.number_of_residents = nil XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) hpxml_default = _test_measure() - _test_default_occupancy_values(hpxml_default, true, 3) + _test_default_occupancy_values(hpxml_default, 3) end def test_building_construction @@ -128,7 +128,7 @@ def test_building_construction hpxml.building_construction.average_ceiling_height = 7 XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) hpxml_default = _test_measure() - _test_default_building_construction_values(hpxml_default, false, 20000, 7, true, 4) + _test_default_building_construction_values(hpxml_default, 20000, 7, true, 4) # Test defaults hpxml.building_construction.conditioned_building_volume = nil @@ -137,21 +137,21 @@ def test_building_construction hpxml.building_construction.number_of_bathrooms = nil XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) hpxml_default = _test_measure() - _test_default_building_construction_values(hpxml_default, true, 21600, 8, false, 2) + _test_default_building_construction_values(hpxml_default, 21600, 8, false, 2) # Test defaults w/ average ceiling height hpxml.building_construction.conditioned_building_volume = nil hpxml.building_construction.average_ceiling_height = 10 XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) hpxml_default = _test_measure() - _test_default_building_construction_values(hpxml_default, true, 27000, 10, false, 2) + _test_default_building_construction_values(hpxml_default, 27000, 10, false, 2) # Test defaults w/ average ceiling height - hpxml.building_construction.conditioned_building_volume = 27000 + hpxml.building_construction.conditioned_building_volume = 20000 hpxml.building_construction.average_ceiling_height = nil XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) hpxml_default = _test_measure() - _test_default_building_construction_values(hpxml_default, true, 27000, 10, false, 2) + _test_default_building_construction_values(hpxml_default, 20000, 7.4, false, 2) end def test_infiltration @@ -160,20 +160,20 @@ def test_infiltration hpxml.air_infiltration_measurements[0].infiltration_volume = 25000 XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) hpxml_default = _test_measure() - _test_default_infiltration_values(hpxml_default, false, 25000) + _test_default_infiltration_values(hpxml_default, 25000) # Test defaults w/ conditioned basement hpxml.air_infiltration_measurements[0].infiltration_volume = nil XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) hpxml_default = _test_measure() - _test_default_infiltration_values(hpxml_default, true, 2700 * 8) + _test_default_infiltration_values(hpxml_default, 2700 * 8) # Test defaults w/o conditioned basement hpxml = _create_hpxml('base-foundation-slab.xml') hpxml.air_infiltration_measurements[0].infiltration_volume = nil XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) hpxml_default = _test_measure() - _test_default_infiltration_values(hpxml_default, true, 1350 * 8) + _test_default_infiltration_values(hpxml_default, 1350 * 8) end def test_attics @@ -182,13 +182,13 @@ def test_attics hpxml.attics[0].vented_attic_sla = 0.001 XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) hpxml_default = _test_measure() - _test_default_attic_values(hpxml_default, false, 0.001) + _test_default_attic_values(hpxml_default, 0.001) # Test defaults hpxml.attics[0].vented_attic_sla = nil XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) hpxml_default = _test_measure() - _test_default_attic_values(hpxml_default, true, 1.0 / 300.0) + _test_default_attic_values(hpxml_default, 1.0 / 300.0) end def test_foundations @@ -197,13 +197,13 @@ def test_foundations hpxml.foundations[0].vented_crawlspace_sla = 0.001 XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) hpxml_default = _test_measure() - _test_default_foundation_values(hpxml_default, false, 0.001) + _test_default_foundation_values(hpxml_default, 0.001) # Test defaults hpxml.foundations[0].vented_crawlspace_sla = nil XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) hpxml_default = _test_measure() - _test_default_foundation_values(hpxml_default, true, 1.0 / 150.0) + _test_default_foundation_values(hpxml_default, 1.0 / 150.0) end def test_roofs @@ -215,7 +215,7 @@ def test_roofs hpxml.roofs[0].emittance = 0.88 XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) hpxml_default = _test_measure() - _test_default_roof_values(hpxml_default, false, HPXML::RoofTypeMetal, 0.77, HPXML::ColorDark, 0.88, true) + _test_default_roof_values(hpxml_default, HPXML::RoofTypeMetal, 0.77, HPXML::ColorDark, 0.88, true) # Test defaults w/ RoofColor hpxml.roofs[0].roof_type = nil @@ -225,14 +225,14 @@ def test_roofs hpxml.roofs[0].radiant_barrier = nil XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) hpxml_default = _test_measure() - _test_default_roof_values(hpxml_default, true, HPXML::RoofTypeAsphaltShingles, 0.75, HPXML::ColorLight, 0.90, false) + _test_default_roof_values(hpxml_default, HPXML::RoofTypeAsphaltShingles, 0.75, HPXML::ColorLight, 0.90, false) # Test defaults w/ SolarAbsorptance hpxml.roofs[0].solar_absorptance = 0.99 hpxml.roofs[0].roof_color = nil XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) hpxml_default = _test_measure() - _test_default_roof_values(hpxml_default, true, HPXML::RoofTypeAsphaltShingles, 0.99, HPXML::ColorDark, 0.90, false) + _test_default_roof_values(hpxml_default, HPXML::RoofTypeAsphaltShingles, 0.99, HPXML::ColorDark, 0.90, false) end def test_rim_joists @@ -244,7 +244,7 @@ def test_rim_joists hpxml.rim_joists[0].emittance = 0.88 XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) hpxml_default = _test_measure() - _test_default_rim_joist_values(hpxml_default, false, HPXML::SidingTypeBrick, 0.55, HPXML::ColorLight, 0.88) + _test_default_rim_joist_values(hpxml_default, HPXML::SidingTypeBrick, 0.55, HPXML::ColorLight, 0.88) # Test defaults w/ Color hpxml.rim_joists[0].siding = nil @@ -253,14 +253,14 @@ def test_rim_joists hpxml.rim_joists[0].emittance = nil XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) hpxml_default = _test_measure() - _test_default_rim_joist_values(hpxml_default, true, HPXML::SidingTypeWood, 0.95, HPXML::ColorDark, 0.90) + _test_default_rim_joist_values(hpxml_default, HPXML::SidingTypeWood, 0.95, HPXML::ColorDark, 0.90) # Test defaults w/ SolarAbsorptance hpxml.rim_joists[0].solar_absorptance = 0.99 hpxml.rim_joists[0].color = nil XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) hpxml_default = _test_measure() - _test_default_rim_joist_values(hpxml_default, true, HPXML::SidingTypeWood, 0.99, HPXML::ColorDark, 0.90) + _test_default_rim_joist_values(hpxml_default, HPXML::SidingTypeWood, 0.99, HPXML::ColorDark, 0.90) end def test_walls @@ -272,7 +272,7 @@ def test_walls hpxml.walls[0].emittance = 0.88 XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) hpxml_default = _test_measure() - _test_default_wall_values(hpxml_default, false, HPXML::SidingTypeFiberCement, 0.66, HPXML::ColorDark, 0.88) + _test_default_wall_values(hpxml_default, HPXML::SidingTypeFiberCement, 0.66, HPXML::ColorDark, 0.88) # Test defaults W/ Color hpxml.walls[0].siding = nil @@ -281,14 +281,14 @@ def test_walls hpxml.walls[0].emittance = nil XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) hpxml_default = _test_measure() - _test_default_wall_values(hpxml_default, true, HPXML::SidingTypeWood, 0.5, HPXML::ColorLight, 0.90) + _test_default_wall_values(hpxml_default, HPXML::SidingTypeWood, 0.5, HPXML::ColorLight, 0.90) # Test defaults W/ SolarAbsorptance hpxml.walls[0].solar_absorptance = 0.99 hpxml.walls[0].color = nil XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) hpxml_default = _test_measure() - _test_default_wall_values(hpxml_default, true, HPXML::SidingTypeWood, 0.99, HPXML::ColorDark, 0.90) + _test_default_wall_values(hpxml_default, HPXML::SidingTypeWood, 0.99, HPXML::ColorDark, 0.90) end def test_foundation_walls @@ -297,13 +297,13 @@ def test_foundation_walls hpxml.foundation_walls[0].thickness = 7.0 XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) hpxml_default = _test_measure() - _test_default_foundation_wall_values(hpxml_default, false, 7.0) + _test_default_foundation_wall_values(hpxml_default, 7.0) # Test defaults hpxml.foundation_walls[0].thickness = nil XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) hpxml_default = _test_measure() - _test_default_foundation_wall_values(hpxml_default, true, 8.0) + _test_default_foundation_wall_values(hpxml_default, 8.0) end def test_slabs @@ -314,7 +314,7 @@ def test_slabs hpxml.slabs[0].carpet_fraction = 0.5 XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) hpxml_default = _test_measure() - _test_default_slab_values(hpxml_default, false, 7.0, 1.1, 0.5) + _test_default_slab_values(hpxml_default, 7.0, 1.1, 0.5) # Test defaults w/ conditioned basement hpxml.slabs[0].thickness = nil @@ -322,7 +322,7 @@ def test_slabs hpxml.slabs[0].carpet_fraction = nil XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) hpxml_default = _test_measure() - _test_default_slab_values(hpxml_default, true, 4.0, 2.0, 0.8) + _test_default_slab_values(hpxml_default, 4.0, 2.0, 0.8) # Test defaults w/ crawlspace hpxml = _create_hpxml('base-foundation-unvented-crawlspace.xml') @@ -331,55 +331,63 @@ def test_slabs hpxml.slabs[0].carpet_fraction = nil XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) hpxml_default = _test_measure() - _test_default_slab_values(hpxml_default, true, 0.0, 0.0, 0.0) + _test_default_slab_values(hpxml_default, 0.0, 0.0, 0.0) end def test_windows # Test inputs not overridden by defaults - hpxml = _create_hpxml('base-enclosure-windows-interior-shading.xml') + hpxml = _create_hpxml('base-enclosure-windows-shading.xml') hpxml.windows.each do |window| window.fraction_operable = 0.5 + window.exterior_shading_factor_summer = 0.44 + window.exterior_shading_factor_winter = 0.55 window.interior_shading_factor_summer = 0.66 window.interior_shading_factor_winter = 0.77 end XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) hpxml_default = _test_measure() n_windows = hpxml_default.windows.size - _test_default_window_values(hpxml_default, false, [0.66] * n_windows, [0.77] * n_windows, [0.5] * n_windows) + _test_default_window_values(hpxml_default, [0.44] * n_windows, [0.55] * n_windows, [0.66] * n_windows, [0.77] * n_windows, [0.5] * n_windows) # Test defaults hpxml.windows.each do |window| window.fraction_operable = nil + window.exterior_shading_factor_summer = nil + window.exterior_shading_factor_winter = nil window.interior_shading_factor_summer = nil window.interior_shading_factor_winter = nil end XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) hpxml_default = _test_measure() n_windows = hpxml_default.windows.size - _test_default_window_values(hpxml_default, true, [0.7] * n_windows, [0.85] * n_windows, [0.67] * n_windows) + _test_default_window_values(hpxml_default, [1.0] * n_windows, [1.0] * n_windows, [0.7] * n_windows, [0.85] * n_windows, [0.67] * n_windows) end def test_skylights # Test inputs not overridden by defaults hpxml = _create_hpxml('base-enclosure-skylights.xml') hpxml.skylights.each do |skylight| + skylight.exterior_shading_factor_summer = 0.44 + skylight.exterior_shading_factor_winter = 0.55 skylight.interior_shading_factor_summer = 0.66 skylight.interior_shading_factor_winter = 0.77 end XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) hpxml_default = _test_measure() n_skylights = hpxml_default.skylights.size - _test_default_skylight_values(hpxml_default, false, [0.66] * n_skylights, [0.77] * n_skylights) + _test_default_skylight_values(hpxml_default, [0.44] * n_skylights, [0.55] * n_skylights, [0.66] * n_skylights, [0.77] * n_skylights) # Test defaults hpxml.skylights.each do |skylight| + skylight.exterior_shading_factor_summer = nil + skylight.exterior_shading_factor_winter = nil skylight.interior_shading_factor_summer = nil skylight.interior_shading_factor_winter = nil end XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) hpxml_default = _test_measure() n_skylights = hpxml_default.skylights.size - _test_default_skylight_values(hpxml_default, true, [1.0] * n_skylights, [1.0] * n_skylights) + _test_default_skylight_values(hpxml_default, [1.0] * n_skylights, [1.0] * n_skylights, [1.0] * n_skylights, [1.0] * n_skylights) end def test_central_air_conditioners @@ -388,32 +396,55 @@ def test_central_air_conditioners hpxml.cooling_systems[0].cooling_shr = 0.88 hpxml.cooling_systems[0].compressor_type = HPXML::HVACCompressorTypeVariableSpeed hpxml.cooling_systems[0].fan_watts_per_cfm = 0.66 + hpxml.cooling_systems[0].charge_defect_ratio = -0.11 + hpxml.cooling_systems[0].airflow_defect_ratio = -0.22 + hpxml.cooling_systems[0].cooling_capacity = 12345 XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) hpxml_default = _test_measure() - _test_default_central_air_conditioner_values(hpxml_default, false, 0.88, HPXML::HVACCompressorTypeVariableSpeed, 0.66) + _test_default_central_air_conditioner_values(hpxml_default, 0.88, HPXML::HVACCompressorTypeVariableSpeed, 0.66, -0.11, -0.22, 12345) # Test defaults hpxml.cooling_systems[0].cooling_shr = nil hpxml.cooling_systems[0].compressor_type = nil hpxml.cooling_systems[0].fan_watts_per_cfm = nil + hpxml.cooling_systems[0].charge_defect_ratio = nil + hpxml.cooling_systems[0].airflow_defect_ratio = nil + hpxml.cooling_systems[0].cooling_capacity = nil XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) hpxml_default = _test_measure() - _test_default_central_air_conditioner_values(hpxml_default, true, 0.73, HPXML::HVACCompressorTypeSingleStage, 0.5) + _test_default_central_air_conditioner_values(hpxml_default, 0.73, HPXML::HVACCompressorTypeSingleStage, 0.5, 0, 0, nil) end def test_room_air_conditioners # Test inputs not overridden by defaults hpxml = _create_hpxml('base-hvac-room-ac-only.xml') hpxml.cooling_systems[0].cooling_shr = 0.88 + hpxml.cooling_systems[0].cooling_capacity = 12345 XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) hpxml_default = _test_measure() - _test_default_room_air_conditioner_values(hpxml_default, false, 0.88) + _test_default_room_air_conditioner_values(hpxml_default, 0.88, 12345) # Test defaults hpxml.cooling_systems[0].cooling_shr = nil + hpxml.cooling_systems[0].cooling_capacity = nil XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) hpxml_default = _test_measure() - _test_default_room_air_conditioner_values(hpxml_default, true, 0.65) + _test_default_room_air_conditioner_values(hpxml_default, 0.65, nil) + end + + def test_evaporative_coolers + # Test inputs not overridden by defaults + hpxml = _create_hpxml('base-hvac-evap-cooler-only.xml') + hpxml.cooling_systems[0].cooling_capacity = 12345 + XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) + hpxml_default = _test_measure() + _test_default_evap_cooler_values(hpxml_default, 12345) + + # Test defaults + hpxml.cooling_systems[0].cooling_capacity = nil + XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) + hpxml_default = _test_measure() + _test_default_evap_cooler_values(hpxml_default, nil) end def test_mini_split_air_conditioners @@ -421,76 +452,91 @@ def test_mini_split_air_conditioners hpxml = _create_hpxml('base-hvac-mini-split-air-conditioner-only-ducted.xml') hpxml.cooling_systems[0].cooling_shr = 0.78 hpxml.cooling_systems[0].fan_watts_per_cfm = 0.66 + hpxml.cooling_systems[0].charge_defect_ratio = -0.11 + hpxml.cooling_systems[0].airflow_defect_ratio = -0.22 + hpxml.cooling_systems[0].cooling_capacity = 12345 XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) hpxml_default = _test_measure() - _test_default_mini_split_air_conditioner_values(hpxml_default, false, 0.78, 0.66) + _test_default_mini_split_air_conditioner_values(hpxml_default, 0.78, 0.66, -0.11, -0.22, 12345) # Test defaults hpxml.cooling_systems[0].cooling_shr = nil hpxml.cooling_systems[0].fan_watts_per_cfm = nil + hpxml.cooling_systems[0].charge_defect_ratio = nil + hpxml.cooling_systems[0].airflow_defect_ratio = nil + hpxml.cooling_systems[0].cooling_capacity = nil XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) hpxml_default = _test_measure() - _test_default_mini_split_air_conditioner_values(hpxml_default, true, 0.73, 0.18) + _test_default_mini_split_air_conditioner_values(hpxml_default, 0.73, 0.18, 0, 0, nil) end def test_furnaces # Test inputs not overridden by defaults hpxml = _create_hpxml('base.xml') hpxml.heating_systems[0].fan_watts_per_cfm = 0.66 + hpxml.heating_systems[0].airflow_defect_ratio = -0.22 + hpxml.heating_systems[0].heating_capacity = 12345 XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) hpxml_default = _test_measure() - _test_default_furnace_values(hpxml_default, false, 0.66) + _test_default_furnace_values(hpxml_default, 0.66, -0.22, 12345) # Test defaults hpxml.heating_systems[0].fan_watts_per_cfm = nil + hpxml.heating_systems[0].airflow_defect_ratio = nil + hpxml.heating_systems[0].heating_capacity = nil XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) hpxml_default = _test_measure() - _test_default_furnace_values(hpxml_default, true, 0.375) + _test_default_furnace_values(hpxml_default, 0.375, 0, nil) end def test_wall_furnaces # Test inputs not overridden by defaults hpxml = _create_hpxml('base-hvac-wall-furnace-elec-only.xml') hpxml.heating_systems[0].fan_watts = 22 + hpxml.heating_systems[0].heating_capacity = 12345 XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) hpxml_default = _test_measure() - _test_default_wall_furnace_values(hpxml_default, false, 22) + _test_default_wall_furnace_values(hpxml_default, 22, 12345) # Test defaults hpxml.heating_systems[0].fan_watts = nil + hpxml.heating_systems[0].heating_capacity = nil XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) hpxml_default = _test_measure() - _test_default_wall_furnace_values(hpxml_default, true, 0) + _test_default_wall_furnace_values(hpxml_default, 0, nil) end def test_floor_furnaces # Test inputs not overridden by defaults hpxml = _create_hpxml('base-hvac-floor-furnace-propane-only.xml') hpxml.heating_systems[0].fan_watts = 22 + hpxml.heating_systems[0].heating_capacity = 12345 XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) hpxml_default = _test_measure() - _test_default_floor_furnace_values(hpxml_default, false, 22) + _test_default_floor_furnace_values(hpxml_default, 22, 12345) # Test defaults hpxml.heating_systems[0].fan_watts = nil XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) hpxml_default = _test_measure() - _test_default_floor_furnace_values(hpxml_default, true, 0) + _test_default_floor_furnace_values(hpxml_default, 0, nil) end def test_boilers # Test inputs not overridden by defaults (in-unit boiler) hpxml = _create_hpxml('base-hvac-boiler-gas-only.xml') hpxml.heating_systems[0].electric_auxiliary_energy = 99.9 + hpxml.heating_systems[0].heating_capacity = 12345 XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) hpxml_default = _test_measure() - _test_default_boiler_values(hpxml_default, false, 99.9) + _test_default_boiler_values(hpxml_default, 99.9, 12345) # Test defaults w/ in-unit boiler hpxml.heating_systems[0].electric_auxiliary_energy = nil + hpxml.heating_systems[0].heating_capacity = nil XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) hpxml_default = _test_measure() - _test_default_boiler_values(hpxml_default, true, 170.0) + _test_default_boiler_values(hpxml_default, 170.0, nil) # Test inputs not overridden by defaults (shared boiler) hpxml = _create_hpxml('base-bldgtype-multifamily-shared-boiler-only-baseboard.xml') @@ -498,73 +544,81 @@ def test_boilers hpxml.heating_systems[0].electric_auxiliary_energy = 99.9 XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) hpxml_default = _test_measure() - _test_default_boiler_values(hpxml_default, false, 99.9) + _test_default_boiler_values(hpxml_default, 99.9, nil) # Test defaults w/ shared boiler hpxml.heating_systems[0].electric_auxiliary_energy = nil XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) hpxml_default = _test_measure() - _test_default_boiler_values(hpxml_default, true, 220.0) + _test_default_boiler_values(hpxml_default, 220.0, nil) end def test_stoves # Test inputs not overridden by defaults hpxml = _create_hpxml('base-hvac-stove-oil-only.xml') hpxml.heating_systems[0].fan_watts = 22 + hpxml.heating_systems[0].heating_capacity = 12345 XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) hpxml_default = _test_measure() - _test_default_stove_values(hpxml_default, false, 22) + _test_default_stove_values(hpxml_default, 22, 12345) # Test defaults hpxml.heating_systems[0].fan_watts = nil + hpxml.heating_systems[0].heating_capacity = nil XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) hpxml_default = _test_measure() - _test_default_stove_values(hpxml_default, true, 40) + _test_default_stove_values(hpxml_default, 40, nil) end def test_portable_heaters # Test inputs not overridden by defaults hpxml = _create_hpxml('base-hvac-portable-heater-gas-only.xml') hpxml.heating_systems[0].fan_watts = 22 + hpxml.heating_systems[0].heating_capacity = 12345 XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) hpxml_default = _test_measure() - _test_default_portable_heater_values(hpxml_default, false, 22) + _test_default_portable_heater_values(hpxml_default, 22, 12345) # Test defaults hpxml.heating_systems[0].fan_watts = nil + hpxml.heating_systems[0].heating_capacity = nil XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) hpxml_default = _test_measure() - _test_default_portable_heater_values(hpxml_default, true, 0) + _test_default_portable_heater_values(hpxml_default, 0, nil) end def test_fixed_heaters # Test inputs not overridden by defaults hpxml = _create_hpxml('base-hvac-fixed-heater-gas-only.xml') hpxml.heating_systems[0].fan_watts = 22 + hpxml.heating_systems[0].heating_capacity = 12345 XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) hpxml_default = _test_measure() - _test_default_fixed_heater_values(hpxml_default, false, 22) + _test_default_fixed_heater_values(hpxml_default, 22, 12345) # Test defaults hpxml.heating_systems[0].fan_watts = nil + hpxml.heating_systems[0].heating_capacity = nil XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) hpxml_default = _test_measure() - _test_default_fixed_heater_values(hpxml_default, true, 0) + _test_default_fixed_heater_values(hpxml_default, 0, nil) end def test_fireplaces # Test inputs not overridden by defaults hpxml = _create_hpxml('base-hvac-fireplace-wood-only.xml') hpxml.heating_systems[0].fan_watts = 22 + hpxml.heating_systems[0].heating_capacity = 12345 XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) hpxml_default = _test_measure() - _test_default_fireplace_values(hpxml_default, false, 22) + _test_default_fireplace_values(hpxml_default, 22, 12345) # Test defaults hpxml.heating_systems[0].fan_watts = nil + hpxml.heating_systems[0].heating_capacity = nil XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) hpxml_default = _test_measure() - _test_default_fireplace_values(hpxml_default, true, 0) + _test_default_fireplace_values(hpxml_default, 0, nil) end def test_air_source_heat_pumps @@ -573,17 +627,29 @@ def test_air_source_heat_pumps hpxml.heat_pumps[0].cooling_shr = 0.88 hpxml.heat_pumps[0].compressor_type = HPXML::HVACCompressorTypeVariableSpeed hpxml.heat_pumps[0].fan_watts_per_cfm = 0.66 + hpxml.heat_pumps[0].charge_defect_ratio = -0.11 + hpxml.heat_pumps[0].airflow_defect_ratio = -0.22 + hpxml.heat_pumps[0].cooling_capacity = 12345 + hpxml.heat_pumps[0].heating_capacity = 23456 + hpxml.heat_pumps[0].heating_capacity_17F = 9876 + hpxml.heat_pumps[0].backup_heating_capacity = 34567 XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) hpxml_default = _test_measure() - _test_default_air_to_air_heat_pump_values(hpxml_default, false, 0.88, HPXML::HVACCompressorTypeVariableSpeed, 0.66) + _test_default_air_to_air_heat_pump_values(hpxml_default, 0.88, HPXML::HVACCompressorTypeVariableSpeed, 0.66, -0.11, -0.22, 12345, 23456, 9876, 34567) # Test defaults hpxml.heat_pumps[0].cooling_shr = nil hpxml.heat_pumps[0].compressor_type = nil hpxml.heat_pumps[0].fan_watts_per_cfm = nil + hpxml.heat_pumps[0].charge_defect_ratio = nil + hpxml.heat_pumps[0].airflow_defect_ratio = nil + hpxml.heat_pumps[0].cooling_capacity = nil + hpxml.heat_pumps[0].heating_capacity = nil + hpxml.heat_pumps[0].heating_capacity_17F = nil + hpxml.heat_pumps[0].backup_heating_capacity = nil XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) hpxml_default = _test_measure() - _test_default_air_to_air_heat_pump_values(hpxml_default, true, 0.73, HPXML::HVACCompressorTypeSingleStage, 0.5) + _test_default_air_to_air_heat_pump_values(hpxml_default, 0.73, HPXML::HVACCompressorTypeSingleStage, 0.5, 0, 0, nil, nil, nil, nil) end def test_mini_split_heat_pumps @@ -591,33 +657,82 @@ def test_mini_split_heat_pumps hpxml = _create_hpxml('base-hvac-mini-split-heat-pump-ducted.xml') hpxml.heat_pumps[0].cooling_shr = 0.78 hpxml.heat_pumps[0].fan_watts_per_cfm = 0.66 + hpxml.heat_pumps[0].charge_defect_ratio = -0.11 + hpxml.heat_pumps[0].airflow_defect_ratio = -0.22 + hpxml.heat_pumps[0].cooling_capacity = 12345 + hpxml.heat_pumps[0].heating_capacity = 23456 + hpxml.heat_pumps[0].heating_capacity_17F = 9876 + hpxml.heat_pumps[0].backup_heating_capacity = 34567 XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) hpxml_default = _test_measure() - _test_default_mini_split_heat_pump_values(hpxml_default, false, 0.78, 0.66) + _test_default_mini_split_heat_pump_values(hpxml_default, 0.78, 0.66, -0.11, -0.22, 12345, 23456, 9876, 34567) # Test defaults hpxml.heat_pumps[0].cooling_shr = nil hpxml.heat_pumps[0].fan_watts_per_cfm = nil + hpxml.heat_pumps[0].charge_defect_ratio = nil + hpxml.heat_pumps[0].airflow_defect_ratio = nil + hpxml.heat_pumps[0].cooling_capacity = nil + hpxml.heat_pumps[0].heating_capacity = nil + hpxml.heat_pumps[0].heating_capacity_17F = nil + hpxml.heat_pumps[0].backup_heating_capacity = nil XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) hpxml_default = _test_measure() - _test_default_mini_split_heat_pump_values(hpxml_default, true, 0.73, 0.18) + _test_default_mini_split_heat_pump_values(hpxml_default, 0.73, 0.18, 0, 0, nil, nil, nil, nil) end - def test_ground_to_air_heat_pumps + def test_ground_source_heat_pumps # Test inputs not overridden by defaults hpxml = _create_hpxml('base-hvac-ground-to-air-heat-pump.xml') hpxml.heat_pumps[0].pump_watts_per_ton = 9.9 - hpxml.heat_pumps[0].fan_watts_per_cfm = 0.99 + hpxml.heat_pumps[0].fan_watts_per_cfm = 0.66 + hpxml.heat_pumps[0].airflow_defect_ratio = -0.22 + hpxml.heat_pumps[0].cooling_capacity = 12345 + hpxml.heat_pumps[0].heating_capacity = 23456 + hpxml.heat_pumps[0].backup_heating_capacity = 34567 XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) hpxml_default = _test_measure() - _test_default_ground_to_air_heat_pump_values(hpxml_default, false, 9.9, 0.99) + _test_default_ground_to_air_heat_pump_values(hpxml_default, 9.9, 0.66, -0.22, 12345, 23456, 34567) # Test defaults hpxml.heat_pumps[0].pump_watts_per_ton = nil hpxml.heat_pumps[0].fan_watts_per_cfm = nil + hpxml.heat_pumps[0].airflow_defect_ratio = nil + hpxml.heat_pumps[0].cooling_capacity = nil + hpxml.heat_pumps[0].heating_capacity = nil + hpxml.heat_pumps[0].backup_heating_capacity = nil + XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) + hpxml_default = _test_measure() + _test_default_ground_to_air_heat_pump_values(hpxml_default, 30.0, 0.375, 0, nil, nil, nil) + end + + def test_hvac_increased_hardsized_equipment + # Test hard-sized capacities are increased for air conditioner + furnace + hpxml = _create_hpxml('base-hvac-undersized-allow-increased-fixed-capacities.xml') + htg_cap = hpxml.heating_systems[0].heating_capacity + clg_cap = hpxml.cooling_systems[0].cooling_capacity XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) hpxml_default = _test_measure() - _test_default_ground_to_air_heat_pump_values(hpxml_default, true, 30.0, 0.375) + assert(hpxml_default.heating_systems[0].heating_capacity > htg_cap) + assert(hpxml_default.cooling_systems[0].cooling_capacity > clg_cap) + + # Test hard-sized capacities are increased for heat pump + hpxml = _create_hpxml('base-hvac-air-to-air-heat-pump-1-speed.xml') + hpxml.header.allow_increased_fixed_capacities = true + hpxml.heat_pumps[0].heating_capacity /= 10.0 + hpxml.heat_pumps[0].heating_capacity_17F /= 10.0 + hpxml.heat_pumps[0].backup_heating_capacity /= 10.0 + hpxml.heat_pumps[0].cooling_capacity /= 10.0 + htg_cap = hpxml.heat_pumps[0].heating_capacity + htg_17f_cap = hpxml.heat_pumps[0].heating_capacity_17F + htg_bak_cap = hpxml.heat_pumps[0].backup_heating_capacity + clg_cap = hpxml.heat_pumps[0].cooling_capacity + XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) + hpxml_default = _test_measure() + assert(hpxml_default.heat_pumps[0].heating_capacity > htg_cap) + assert(hpxml_default.heat_pumps[0].heating_capacity_17F > htg_17f_cap) + assert(hpxml_default.heat_pumps[0].backup_heating_capacity > htg_bak_cap) + assert(hpxml_default.heat_pumps[0].cooling_capacity > clg_cap) end def test_hvac_controls @@ -627,20 +742,19 @@ def test_hvac_controls hpxml.hvac_controls[0].cooling_setup_start_hour = 12 XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) hpxml_default = _test_measure() - _test_default_hvac_control_values(hpxml_default, false, 12, 12) + _test_default_hvac_control_values(hpxml_default, 12, 12) # Test defaults hpxml.hvac_controls[0].heating_setback_start_hour = nil hpxml.hvac_controls[0].cooling_setup_start_hour = nil XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) hpxml_default = _test_measure() - _test_default_hvac_control_values(hpxml_default, true, 23, 9) + _test_default_hvac_control_values(hpxml_default, 23, 9) end def test_hvac_distribution # Test inputs not overridden by defaults hpxml = _create_hpxml('base.xml') - hpxml.hvac_distributions[0].number_of_return_registers = hpxml.building_construction.number_of_conditioned_floors XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) hpxml_default = _test_measure() expected_supply_locations = ['attic - unvented'] @@ -648,7 +762,7 @@ def test_hvac_distribution expected_supply_areas = [150.0] expected_return_areas = [50.0] expected_n_return_registers = hpxml_default.building_construction.number_of_conditioned_floors - _test_default_duct_values(hpxml_default, false, expected_supply_locations, expected_return_locations, expected_supply_areas, expected_return_areas, expected_n_return_registers) + _test_default_duct_values(hpxml_default, expected_supply_locations, expected_return_locations, expected_supply_areas, expected_return_areas, expected_n_return_registers) # Test defaults w/ conditioned basement hpxml.hvac_distributions[0].number_of_return_registers = nil @@ -665,7 +779,7 @@ def test_hvac_distribution expected_supply_areas = [729.0] expected_return_areas = [270.0] expected_n_return_registers = hpxml_default.building_construction.number_of_conditioned_floors - _test_default_duct_values(hpxml_default, true, expected_supply_locations, expected_return_locations, expected_supply_areas, expected_return_areas, expected_n_return_registers) + _test_default_duct_values(hpxml_default, expected_supply_locations, expected_return_locations, expected_supply_areas, expected_return_areas, expected_n_return_registers) # Test defaults w/ multiple foundations hpxml = _create_hpxml('base-foundation-multiple.xml') @@ -682,7 +796,7 @@ def test_hvac_distribution expected_supply_areas = [364.5] expected_return_areas = [67.5] expected_n_return_registers = hpxml_default.building_construction.number_of_conditioned_floors - _test_default_duct_values(hpxml_default, true, expected_supply_locations, expected_return_locations, expected_supply_areas, expected_return_areas, expected_n_return_registers) + _test_default_duct_values(hpxml_default, expected_supply_locations, expected_return_locations, expected_supply_areas, expected_return_areas, expected_n_return_registers) # Test defaults w/ foundation exposed to ambient hpxml = _create_hpxml('base-foundation-ambient.xml') @@ -699,7 +813,7 @@ def test_hvac_distribution expected_supply_areas = [364.5] expected_return_areas = [67.5] expected_n_return_registers = hpxml_default.building_construction.number_of_conditioned_floors - _test_default_duct_values(hpxml_default, true, expected_supply_locations, expected_return_locations, expected_supply_areas, expected_return_areas, expected_n_return_registers) + _test_default_duct_values(hpxml_default, expected_supply_locations, expected_return_locations, expected_supply_areas, expected_return_areas, expected_n_return_registers) # Test defaults w/ building/unit adjacent to other housing unit hpxml = _create_hpxml('base-bldgtype-multifamily-adjacent-to-other-housing-unit.xml') @@ -716,7 +830,7 @@ def test_hvac_distribution expected_supply_areas = [243.0] expected_return_areas = [45.0] expected_n_return_registers = hpxml_default.building_construction.number_of_conditioned_floors - _test_default_duct_values(hpxml_default, true, expected_supply_locations, expected_return_locations, expected_supply_areas, expected_return_areas, expected_n_return_registers) + _test_default_duct_values(hpxml_default, expected_supply_locations, expected_return_locations, expected_supply_areas, expected_return_areas, expected_n_return_registers) # Test defaults w/ 2-story building hpxml = _create_hpxml('base-enclosure-2stories.xml') @@ -733,7 +847,7 @@ def test_hvac_distribution expected_supply_areas = [820.13, 273.38] expected_return_areas = [455.63, 151.88] expected_n_return_registers = hpxml_default.building_construction.number_of_conditioned_floors - _test_default_duct_values(hpxml_default, true, expected_supply_locations, expected_return_locations, expected_supply_areas, expected_return_areas, expected_n_return_registers) + _test_default_duct_values(hpxml_default, expected_supply_locations, expected_return_locations, expected_supply_areas, expected_return_areas, expected_n_return_registers) # Test defaults w/ 1-story building & multiple HVAC systems hpxml = _create_hpxml('base-hvac-multiple.xml') @@ -750,7 +864,7 @@ def test_hvac_distribution expected_supply_areas = [91.125, 91.125] * hpxml_default.hvac_distributions.size expected_return_areas = [33.75, 33.75] * hpxml_default.hvac_distributions.size expected_n_return_registers = hpxml_default.building_construction.number_of_conditioned_floors - _test_default_duct_values(hpxml_default, true, expected_supply_locations, expected_return_locations, expected_supply_areas, expected_return_areas, expected_n_return_registers) + _test_default_duct_values(hpxml_default, expected_supply_locations, expected_return_locations, expected_supply_areas, expected_return_areas, expected_n_return_registers) # Test defaults w/ 2-story building & multiple HVAC systems hpxml = _create_hpxml('base-hvac-multiple.xml') @@ -768,7 +882,7 @@ def test_hvac_distribution expected_supply_areas = [68.34, 68.34, 22.78, 22.78] * hpxml_default.hvac_distributions.size expected_return_areas = [25.31, 25.31, 8.44, 8.44] * hpxml_default.hvac_distributions.size expected_n_return_registers = hpxml_default.building_construction.number_of_conditioned_floors - _test_default_duct_values(hpxml_default, true, expected_supply_locations, expected_return_locations, expected_supply_areas, expected_return_areas, expected_n_return_registers) + _test_default_duct_values(hpxml_default, expected_supply_locations, expected_return_locations, expected_supply_areas, expected_return_areas, expected_n_return_registers) end def test_mech_ventilation_fans @@ -782,7 +896,7 @@ def test_mech_ventilation_fans vent_fan.hours_in_operation = 22.0 XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) hpxml_default = _test_measure() - _test_default_mech_vent_values(hpxml_default, false, true, 22.0) + _test_default_mech_vent_values(hpxml_default, true, 22.0) # Test defaults vent_fan.rated_flow_rate = nil @@ -794,7 +908,7 @@ def test_mech_ventilation_fans vent_fan.hours_in_operation = nil XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) hpxml_default = _test_measure() - _test_default_mech_vent_values(hpxml_default, true, false, 24.0) + _test_default_mech_vent_values(hpxml_default, false, 24.0) # Test inputs not overridden by defaults w/ CFIS hpxml = _create_hpxml('base-mechvent-cfis.xml') @@ -803,14 +917,14 @@ def test_mech_ventilation_fans vent_fan.hours_in_operation = 12.0 XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) hpxml_default = _test_measure() - _test_default_mech_vent_values(hpxml_default, false, false, 12.0) + _test_default_mech_vent_values(hpxml_default, false, 12.0) # Test defaults w/ CFIS vent_fan.is_shared_system = nil vent_fan.hours_in_operation = nil XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) hpxml_default = _test_measure() - _test_default_mech_vent_values(hpxml_default, true, false, 8.0) + _test_default_mech_vent_values(hpxml_default, false, 8.0) end def test_local_ventilation_fans @@ -830,8 +944,8 @@ def test_local_ventilation_fans bath_fan.hours_in_operation = 3 XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) hpxml_default = _test_measure() - _test_default_kitchen_fan_values(hpxml_default, false, 2, 300, 2, 20, 12) - _test_default_bath_fan_values(hpxml_default, false, 3, 80, 3, 33, 6) + _test_default_kitchen_fan_values(hpxml_default, 2, 300, 2, 20, 12) + _test_default_bath_fan_values(hpxml_default, 3, 80, 3, 33, 6) # Test defaults kitchen_fan.rated_flow_rate = nil @@ -846,8 +960,8 @@ def test_local_ventilation_fans bath_fan.hours_in_operation = nil XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) hpxml_default = _test_measure() - _test_default_kitchen_fan_values(hpxml_default, true, 1, 100, 1, 30, 18) - _test_default_bath_fan_values(hpxml_default, true, 2, 50, 1, 15, 7) + _test_default_kitchen_fan_values(hpxml_default, 1, 100, 1, 30, 18) + _test_default_bath_fan_values(hpxml_default, 2, 50, 1, 15, 7) end def test_storage_water_heaters @@ -865,7 +979,7 @@ def test_storage_water_heaters end XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) hpxml_default = _test_measure() - _test_default_storage_water_heater_values(hpxml_default, false, + _test_default_storage_water_heater_values(hpxml_default, [true, 15000.0, 40.0, 0.95, HPXML::LocationLivingSpace, 111]) # Test defaults w/ 3-bedroom house & electric storage water heater @@ -879,7 +993,7 @@ def test_storage_water_heaters end XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) hpxml_default = _test_measure() - _test_default_storage_water_heater_values(hpxml_default, true, + _test_default_storage_water_heater_values(hpxml_default, [false, 18766.7, 50.0, 0.98, HPXML::LocationBasementConditioned, 125]) # Test defaults w/ 5-bedroom house & electric storage water heater @@ -894,7 +1008,7 @@ def test_storage_water_heaters end XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) hpxml_default = _test_measure() - _test_default_storage_water_heater_values(hpxml_default, true, + _test_default_storage_water_heater_values(hpxml_default, [false, 18766.7, 66.0, 0.98, HPXML::LocationBasementConditioned, 125]) # Test defaults w/ 3-bedroom house & 2 storage water heaters (1 electric and 1 natural gas) @@ -911,7 +1025,7 @@ def test_storage_water_heaters end XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) hpxml_default = _test_measure() - _test_default_storage_water_heater_values(hpxml_default, true, + _test_default_storage_water_heater_values(hpxml_default, [false, 15354.6, 50.0, 0.98, HPXML::LocationBasementConditioned, 125], [false, 36000.0, 40.0, 0.756, HPXML::LocationBasementConditioned, 125]) end @@ -922,13 +1036,13 @@ def test_tankless_water_heaters hpxml.water_heating_systems[0].performance_adjustment = 0.88 XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) hpxml_default = _test_measure() - _test_default_tankless_water_heater_values(hpxml_default, false, [0.88]) + _test_default_tankless_water_heater_values(hpxml_default, [0.88]) # Test defaults w/ EF hpxml.water_heating_systems[0].performance_adjustment = nil XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) hpxml_default = _test_measure() - _test_default_tankless_water_heater_values(hpxml_default, true, [0.92]) + _test_default_tankless_water_heater_values(hpxml_default, [0.92]) # Test defaults w/ UEF hpxml.water_heating_systems[0].energy_factor = nil @@ -936,7 +1050,7 @@ def test_tankless_water_heaters hpxml.water_heating_systems[0].first_hour_rating = 5.7 XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) hpxml_default = _test_measure() - _test_default_tankless_water_heater_values(hpxml_default, true, [0.94]) + _test_default_tankless_water_heater_values(hpxml_default, [0.94]) end def test_hot_water_distribution @@ -945,7 +1059,7 @@ def test_hot_water_distribution hpxml.hot_water_distributions[0].pipe_r_value = 2.5 XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) hpxml_default = _test_measure() - _test_default_standard_distribution_values(hpxml_default, false, 50.0, 2.5) + _test_default_standard_distribution_values(hpxml_default, 50.0, 2.5) # Test inputs not overridden by defaults -- recirculation hpxml = _create_hpxml('base-dhw-recirc-demand.xml') @@ -953,14 +1067,14 @@ def test_hot_water_distribution hpxml.hot_water_distributions[0].pipe_r_value = 2.5 XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) hpxml_default = _test_measure() - _test_default_recirc_distribution_values(hpxml_default, false, 50.0, 50.0, 65.0, 2.5) + _test_default_recirc_distribution_values(hpxml_default, 50.0, 50.0, 65.0, 2.5) # Test inputs not overridden by defaults -- shared recirculation hpxml = _create_hpxml('base-bldgtype-multifamily-shared-water-heater-recirc.xml') hpxml.hot_water_distributions[0].shared_recirculation_pump_power = 333.0 XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) hpxml_default = _test_measure() - _test_default_shared_recirc_distribution_values(hpxml_default, false, 333.0) + _test_default_shared_recirc_distribution_values(hpxml_default, 333.0) # Test defaults w/ conditioned basement hpxml = _create_hpxml('base.xml') @@ -968,7 +1082,7 @@ def test_hot_water_distribution hpxml.hot_water_distributions[0].pipe_r_value = nil XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) hpxml_default = _test_measure() - _test_default_standard_distribution_values(hpxml_default, true, 93.48, 0.0) + _test_default_standard_distribution_values(hpxml_default, 93.48, 0.0) # Test defaults w/ unconditioned basement hpxml = _create_hpxml('base-foundation-unconditioned-basement.xml') @@ -976,7 +1090,7 @@ def test_hot_water_distribution hpxml.hot_water_distributions[0].pipe_r_value = nil XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) hpxml_default = _test_measure() - _test_default_standard_distribution_values(hpxml_default, true, 88.48, 0.0) + _test_default_standard_distribution_values(hpxml_default, 88.48, 0.0) # Test defaults w/ 2-story building hpxml = _create_hpxml('base-enclosure-2stories.xml') @@ -984,7 +1098,7 @@ def test_hot_water_distribution hpxml.hot_water_distributions[0].pipe_r_value = nil XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) hpxml_default = _test_measure() - _test_default_standard_distribution_values(hpxml_default, true, 103.48, 0.0) + _test_default_standard_distribution_values(hpxml_default, 103.48, 0.0) # Test defaults w/ recirculation & conditioned basement hpxml = _create_hpxml('base-dhw-recirc-demand.xml') @@ -994,7 +1108,7 @@ def test_hot_water_distribution hpxml.hot_water_distributions[0].pipe_r_value = nil XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) hpxml_default = _test_measure() - _test_default_recirc_distribution_values(hpxml_default, true, 166.96, 10.0, 50.0, 0.0) + _test_default_recirc_distribution_values(hpxml_default, 166.96, 10.0, 50.0, 0.0) # Test defaults w/ recirculation & unconditioned basement hpxml = _create_hpxml('base-foundation-unconditioned-basement.xml') @@ -1004,7 +1118,7 @@ def test_hot_water_distribution recirculation_control_type: HPXML::DHWRecirControlTypeSensor) XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) hpxml_default = _test_measure() - _test_default_recirc_distribution_values(hpxml_default, true, 156.96, 10.0, 50.0, 0.0) + _test_default_recirc_distribution_values(hpxml_default, 156.96, 10.0, 50.0, 0.0) # Test defaults w/ recirculation & 2-story building hpxml = _create_hpxml('base-enclosure-2stories.xml') @@ -1014,14 +1128,14 @@ def test_hot_water_distribution recirculation_control_type: HPXML::DHWRecirControlTypeSensor) XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) hpxml_default = _test_measure() - _test_default_recirc_distribution_values(hpxml_default, true, 186.96, 10.0, 50.0, 0.0) + _test_default_recirc_distribution_values(hpxml_default, 186.96, 10.0, 50.0, 0.0) # Test defaults w/ shared recirculation hpxml = _create_hpxml('base-bldgtype-multifamily-shared-water-heater-recirc.xml') hpxml.hot_water_distributions[0].shared_recirculation_pump_power = nil XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) hpxml_default = _test_measure() - _test_default_shared_recirc_distribution_values(hpxml_default, true, 220.0) + _test_default_shared_recirc_distribution_values(hpxml_default, 220.0) end def test_water_fixtures @@ -1030,13 +1144,13 @@ def test_water_fixtures hpxml.water_heating.water_fixtures_usage_multiplier = 2.0 XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) hpxml_default = _test_measure() - _test_default_water_fixture_values(hpxml_default, false, 2.0) + _test_default_water_fixture_values(hpxml_default, 2.0) # Test defaults hpxml.water_heating.water_fixtures_usage_multiplier = nil XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) hpxml_default = _test_measure() - _test_default_water_fixture_values(hpxml_default, true, 1.0) + _test_default_water_fixture_values(hpxml_default, 1.0) end def test_solar_thermal_systems @@ -1045,20 +1159,20 @@ def test_solar_thermal_systems hpxml.solar_thermal_systems[0].storage_volume = 55.0 XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) hpxml_default = _test_measure() - _test_default_solar_thermal_values(hpxml_default, false, 55.0) + _test_default_solar_thermal_values(hpxml_default, 55.0) # Test defaults w/ collector area of 40 sqft hpxml.solar_thermal_systems[0].storage_volume = nil XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) hpxml_default = _test_measure() - _test_default_solar_thermal_values(hpxml_default, true, 60.0) + _test_default_solar_thermal_values(hpxml_default, 60.0) # Test defaults w/ collector area of 100 sqft hpxml.solar_thermal_systems[0].collector_area = 100.0 hpxml.solar_thermal_systems[0].storage_volume = nil XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) hpxml_default = _test_measure() - _test_default_solar_thermal_values(hpxml_default, true, 150.0) + _test_default_solar_thermal_values(hpxml_default, 150.0) end def test_pv_systems @@ -1076,7 +1190,7 @@ def test_pv_systems end XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) hpxml_default = _test_measure() - _test_default_pv_system_values(hpxml_default, false, 0.90, 0.20, true, HPXML::LocationGround, HPXML::PVTrackingType1Axis, HPXML::PVModuleTypePremium) + _test_default_pv_system_values(hpxml_default, 0.90, 0.20, true, HPXML::LocationGround, HPXML::PVTrackingType1Axis, HPXML::PVModuleTypePremium) # Test defaults w/o year modules manufactured hpxml.pv_systems.each do |pv| @@ -1089,7 +1203,7 @@ def test_pv_systems end XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) hpxml_default = _test_measure() - _test_default_pv_system_values(hpxml_default, true, 0.96, 0.14, false, HPXML::LocationRoof, HPXML::PVTrackingTypeFixed, HPXML::PVModuleTypeStandard) + _test_default_pv_system_values(hpxml_default, 0.96, 0.14, false, HPXML::LocationRoof, HPXML::PVTrackingTypeFixed, HPXML::PVModuleTypeStandard) # Test defaults w/ year modules manufactured hpxml.pv_systems.each do |pv| @@ -1097,7 +1211,7 @@ def test_pv_systems end XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) hpxml_default = _test_measure() - _test_default_pv_system_values(hpxml_default, true, 0.96, 0.182, false, HPXML::LocationRoof, HPXML::PVTrackingTypeFixed, HPXML::PVModuleTypeStandard) + _test_default_pv_system_values(hpxml_default, 0.96, 0.186, false, HPXML::LocationRoof, HPXML::PVTrackingTypeFixed, HPXML::PVModuleTypeStandard) end def test_generators @@ -1110,7 +1224,7 @@ def test_generators end XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) hpxml_default = _test_measure() - _test_default_generator_values(hpxml_default, false, true) + _test_default_generator_values(hpxml_default, true) # Test defaults hpxml.generators.each do |generator| @@ -1118,7 +1232,7 @@ def test_generators end XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) hpxml_default = _test_measure() - _test_default_generator_values(hpxml_default, true, false) + _test_default_generator_values(hpxml_default, false) end def test_clothes_washers @@ -1134,7 +1248,7 @@ def test_clothes_washers hpxml.clothes_washers[0].water_heating_system_idref = hpxml.water_heating_systems[0].id XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) hpxml_default = _test_measure() - _test_default_clothes_washer_values(hpxml_default, false, true, HPXML::LocationBasementConditioned, 1.21, 380.0, 0.12, 1.09, 27.0, 3.2, 6.0, 1.5) + _test_default_clothes_washer_values(hpxml_default, true, HPXML::LocationBasementConditioned, 1.21, 380.0, 0.12, 1.09, 27.0, 3.2, 6.0, 1.5) # Test defaults hpxml.clothes_washers[0].is_shared_appliance = nil @@ -1149,7 +1263,7 @@ def test_clothes_washers hpxml.clothes_washers[0].usage_multiplier = nil XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) hpxml_default = _test_measure() - _test_default_clothes_washer_values(hpxml_default, true, false, HPXML::LocationLivingSpace, 1.0, 400.0, 0.12, 1.09, 27.0, 3.0, 6.0, 1.0) + _test_default_clothes_washer_values(hpxml_default, false, HPXML::LocationLivingSpace, 1.0, 400.0, 0.12, 1.09, 27.0, 3.0, 6.0, 1.0) # Test defaults before 301-2019 Addendum A hpxml = _create_hpxml('base.xml') @@ -1166,7 +1280,7 @@ def test_clothes_washers hpxml.clothes_washers[0].usage_multiplier = nil XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) hpxml_default = _test_measure() - _test_default_clothes_washer_values(hpxml_default, true, false, HPXML::LocationLivingSpace, 0.331, 704.0, 0.08, 0.58, 23.0, 2.874, 999, 1.0) + _test_default_clothes_washer_values(hpxml_default, false, HPXML::LocationLivingSpace, 0.331, 704.0, 0.08, 0.58, 23.0, 2.874, 999, 1.0) end def test_clothes_dryers @@ -1178,41 +1292,39 @@ def test_clothes_dryers hpxml.water_heating_systems[0].fraction_dhw_load_served = 0 hpxml.clothes_dryers[0].location = HPXML::LocationBasementConditioned hpxml.clothes_dryers[0].is_shared_appliance = true - hpxml.clothes_dryers[0].control_type = HPXML::ClothesDryerControlTypeMoisture hpxml.clothes_dryers[0].combined_energy_factor = 3.33 hpxml.clothes_dryers[0].usage_multiplier = 1.1 XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) hpxml_default = _test_measure() - _test_default_clothes_dryer_values(hpxml_default, false, true, HPXML::LocationBasementConditioned, HPXML::ClothesDryerControlTypeMoisture, 3.33, 1.1) + _test_default_clothes_dryer_values(hpxml_default, true, HPXML::LocationBasementConditioned, 3.33, 1.1) # Test defaults w/ electric clothes dryer hpxml.clothes_dryers[0].location = nil hpxml.clothes_dryers[0].is_shared_appliance = nil - hpxml.clothes_dryers[0].control_type = nil hpxml.clothes_dryers[0].combined_energy_factor = nil hpxml.clothes_dryers[0].usage_multiplier = nil XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) hpxml_default = _test_measure() - _test_default_clothes_dryer_values(hpxml_default, true, false, HPXML::LocationLivingSpace, HPXML::ClothesDryerControlTypeTimer, 3.01, 1.0) + _test_default_clothes_dryer_values(hpxml_default, false, HPXML::LocationLivingSpace, 3.01, 1.0) # Test defaults w/ gas clothes dryer hpxml.clothes_dryers[0].fuel_type = HPXML::FuelTypeNaturalGas XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) hpxml_default = _test_measure() - _test_default_clothes_dryer_values(hpxml_default, true, false, HPXML::LocationLivingSpace, HPXML::ClothesDryerControlTypeTimer, 3.01, 1.0) + _test_default_clothes_dryer_values(hpxml_default, false, HPXML::LocationLivingSpace, 3.01, 1.0) # Test defaults w/ electric clothes dryer before 301-2019 Addendum A hpxml.header.eri_calculation_version = '2019' hpxml.clothes_dryers[0].fuel_type = HPXML::FuelTypeElectricity XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) hpxml_default = _test_measure() - _test_default_clothes_dryer_values(hpxml_default, true, false, HPXML::LocationLivingSpace, HPXML::ClothesDryerControlTypeTimer, 2.62, 1.0) + _test_default_clothes_dryer_values(hpxml_default, false, HPXML::LocationLivingSpace, 2.62, 1.0) # Test defaults w/ gas clothes dryer before 301-2019 Addendum A hpxml.clothes_dryers[0].fuel_type = HPXML::FuelTypeNaturalGas XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) hpxml_default = _test_measure() - _test_default_clothes_dryer_values(hpxml_default, true, false, HPXML::LocationLivingSpace, HPXML::ClothesDryerControlTypeTimer, 2.32, 1.0) + _test_default_clothes_dryer_values(hpxml_default, false, HPXML::LocationLivingSpace, 2.32, 1.0) end def test_clothes_dryer_exhaust @@ -1224,21 +1336,21 @@ def test_clothes_dryer_exhaust clothes_dryer.vented_flow_rate = 200 XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) hpxml_default = _test_measure() - _test_default_clothes_dryer_exhaust_values(hpxml_default, false, true, 200) + _test_default_clothes_dryer_exhaust_values(hpxml_default, true, 200) # Test inputs not overridden by defaults w/ unvented dryer clothes_dryer.is_vented = false clothes_dryer.vented_flow_rate = nil XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) hpxml_default = _test_measure() - _test_default_clothes_dryer_exhaust_values(hpxml_default, false, false, nil) + _test_default_clothes_dryer_exhaust_values(hpxml_default, false, nil) # Test defaults clothes_dryer.is_vented = nil clothes_dryer.vented_flow_rate = nil XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) hpxml_default = _test_measure() - _test_default_clothes_dryer_exhaust_values(hpxml_default, true, true, 100) + _test_default_clothes_dryer_exhaust_values(hpxml_default, true, 100) end def test_dishwashers @@ -1254,7 +1366,7 @@ def test_dishwashers hpxml.dishwashers[0].water_heating_system_idref = hpxml.water_heating_systems[0].id XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) hpxml_default = _test_measure() - _test_default_dishwasher_values(hpxml_default, false, true, HPXML::LocationBasementConditioned, 307.0, 0.12, 1.09, 22.32, 4.0, 12, 1.3) + _test_default_dishwasher_values(hpxml_default, true, HPXML::LocationBasementConditioned, 307.0, 0.12, 1.09, 22.32, 4.0, 12, 1.3) # Test defaults hpxml.dishwashers[0].is_shared_appliance = nil @@ -1268,13 +1380,13 @@ def test_dishwashers hpxml.dishwashers[0].usage_multiplier = nil XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) hpxml_default = _test_measure() - _test_default_dishwasher_values(hpxml_default, true, false, HPXML::LocationLivingSpace, 467.0, 0.12, 1.09, 33.12, 4.0, 12, 1.0) + _test_default_dishwasher_values(hpxml_default, false, HPXML::LocationLivingSpace, 467.0, 0.12, 1.09, 33.12, 4.0, 12, 1.0) # Test defaults before 301-2019 Addendum A hpxml.header.eri_calculation_version = '2019' XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) hpxml_default = _test_measure() - _test_default_dishwasher_values(hpxml_default, true, false, HPXML::LocationLivingSpace, 467.0, 999, 999, 999, 999, 12, 1.0) + _test_default_dishwasher_values(hpxml_default, false, HPXML::LocationLivingSpace, 467.0, 999, 999, 999, 999, 12, 1.0) end def test_refrigerators @@ -1287,7 +1399,7 @@ def test_refrigerators hpxml.refrigerators[0].monthly_multipliers = ConstantMonthSchedule XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) hpxml_default = _test_measure() - _test_default_refrigerator_values(hpxml_default, false, HPXML::LocationBasementConditioned, 650.0, 1.2, ConstantDaySchedule, ConstantDaySchedule, ConstantMonthSchedule) + _test_default_refrigerator_values(hpxml_default, HPXML::LocationBasementConditioned, 650.0, 1.2, ConstantDaySchedule, ConstantDaySchedule, ConstantMonthSchedule) # Test defaults hpxml.refrigerators[0].location = nil @@ -1298,20 +1410,20 @@ def test_refrigerators hpxml.refrigerators[0].monthly_multipliers = nil XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) hpxml_default = _test_measure() - _test_default_refrigerator_values(hpxml_default, true, HPXML::LocationLivingSpace, 691.0, 1.0, '0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041', '0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041', '0.837, 0.835, 1.084, 1.084, 1.084, 1.096, 1.096, 1.096, 1.096, 0.931, 0.925, 0.837') + _test_default_refrigerator_values(hpxml_default, HPXML::LocationLivingSpace, 691.0, 1.0, '0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041', '0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041', '0.837, 0.835, 1.084, 1.084, 1.084, 1.096, 1.096, 1.096, 1.096, 0.931, 0.925, 0.837') # Test defaults w/ refrigerator in 5-bedroom house hpxml.building_construction.number_of_bedrooms = 5 XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) hpxml_default = _test_measure() - _test_default_refrigerator_values(hpxml_default, true, HPXML::LocationLivingSpace, 727.0, 1.0, '0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041', '0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041', '0.837, 0.835, 1.084, 1.084, 1.084, 1.096, 1.096, 1.096, 1.096, 0.931, 0.925, 0.837') + _test_default_refrigerator_values(hpxml_default, HPXML::LocationLivingSpace, 727.0, 1.0, '0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041', '0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041', '0.837, 0.835, 1.084, 1.084, 1.084, 1.096, 1.096, 1.096, 1.096, 0.931, 0.925, 0.837') # Test defaults before 301-2019 Addendum A hpxml.header.eri_calculation_version = '2019' hpxml.building_construction.number_of_bedrooms = 3 XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) hpxml_default = _test_measure() - _test_default_refrigerator_values(hpxml_default, true, HPXML::LocationLivingSpace, 691.0, 1.0, '0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041', '0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041', '0.837, 0.835, 1.084, 1.084, 1.084, 1.096, 1.096, 1.096, 1.096, 0.931, 0.925, 0.837') + _test_default_refrigerator_values(hpxml_default, HPXML::LocationLivingSpace, 691.0, 1.0, '0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041', '0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041', '0.837, 0.835, 1.084, 1.084, 1.084, 1.096, 1.096, 1.096, 1.096, 0.931, 0.925, 0.837') end def test_extra_refrigerators @@ -1327,7 +1439,7 @@ def test_extra_refrigerators end XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) hpxml_default = _test_measure() - _test_default_extra_refrigerators_values(hpxml_default, false, HPXML::LocationLivingSpace, 333.0, 1.5, ConstantDaySchedule, ConstantDaySchedule, ConstantMonthSchedule) + _test_default_extra_refrigerators_values(hpxml_default, HPXML::LocationLivingSpace, 333.0, 1.5, ConstantDaySchedule, ConstantDaySchedule, ConstantMonthSchedule) # Test defaults hpxml.refrigerators.each do |refrigerator| @@ -1340,7 +1452,7 @@ def test_extra_refrigerators end XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) hpxml_default = _test_measure() - _test_default_extra_refrigerators_values(hpxml_default, true, HPXML::LocationBasementConditioned, 244.0, 1.0, '0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041', '0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041', '0.837, 0.835, 1.084, 1.084, 1.084, 1.096, 1.096, 1.096, 1.096, 0.931, 0.925, 0.837') + _test_default_extra_refrigerators_values(hpxml_default, HPXML::LocationBasementConditioned, 244.0, 1.0, '0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041', '0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041', '0.837, 0.835, 1.084, 1.084, 1.084, 1.096, 1.096, 1.096, 1.096, 0.931, 0.925, 0.837') end def test_freezers @@ -1356,7 +1468,7 @@ def test_freezers end XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) hpxml_default = _test_measure() - _test_default_freezers_values(hpxml_default, false, HPXML::LocationLivingSpace, 333.0, 1.5, ConstantDaySchedule, ConstantDaySchedule, ConstantMonthSchedule) + _test_default_freezers_values(hpxml_default, HPXML::LocationLivingSpace, 333.0, 1.5, ConstantDaySchedule, ConstantDaySchedule, ConstantMonthSchedule) # Test defaults hpxml.freezers.each do |freezer| @@ -1369,7 +1481,7 @@ def test_freezers end XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) hpxml_default = _test_measure() - _test_default_freezers_values(hpxml_default, true, HPXML::LocationBasementConditioned, 320.0, 1.0, '0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041', '0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041', '0.837, 0.835, 1.084, 1.084, 1.084, 1.096, 1.096, 1.096, 1.096, 0.931, 0.925, 0.837') + _test_default_freezers_values(hpxml_default, HPXML::LocationBasementConditioned, 320.0, 1.0, '0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041', '0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041', '0.837, 0.835, 1.084, 1.084, 1.084, 1.096, 1.096, 1.096, 1.096, 0.931, 0.925, 0.837') end def test_cooking_ranges @@ -1383,7 +1495,7 @@ def test_cooking_ranges hpxml.cooking_ranges[0].monthly_multipliers = ConstantMonthSchedule XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) hpxml_default = _test_measure() - _test_default_cooking_range_values(hpxml_default, false, HPXML::LocationBasementConditioned, true, 1.1, ConstantDaySchedule, ConstantDaySchedule, ConstantMonthSchedule) + _test_default_cooking_range_values(hpxml_default, HPXML::LocationBasementConditioned, true, 1.1, ConstantDaySchedule, ConstantDaySchedule, ConstantMonthSchedule) # Test defaults hpxml.cooking_ranges[0].location = nil @@ -1394,13 +1506,13 @@ def test_cooking_ranges hpxml.cooking_ranges[0].monthly_multipliers = nil XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) hpxml_default = _test_measure() - _test_default_cooking_range_values(hpxml_default, true, HPXML::LocationLivingSpace, false, 1.0, '0.007, 0.007, 0.004, 0.004, 0.007, 0.011, 0.025, 0.042, 0.046, 0.048, 0.042, 0.050, 0.057, 0.046, 0.057, 0.044, 0.092, 0.150, 0.117, 0.060, 0.035, 0.025, 0.016, 0.011', '0.007, 0.007, 0.004, 0.004, 0.007, 0.011, 0.025, 0.042, 0.046, 0.048, 0.042, 0.050, 0.057, 0.046, 0.057, 0.044, 0.092, 0.150, 0.117, 0.060, 0.035, 0.025, 0.016, 0.011', '1.097, 1.097, 0.991, 0.987, 0.991, 0.890, 0.896, 0.896, 0.890, 1.085, 1.085, 1.097') + _test_default_cooking_range_values(hpxml_default, HPXML::LocationLivingSpace, false, 1.0, '0.007, 0.007, 0.004, 0.004, 0.007, 0.011, 0.025, 0.042, 0.046, 0.048, 0.042, 0.050, 0.057, 0.046, 0.057, 0.044, 0.092, 0.150, 0.117, 0.060, 0.035, 0.025, 0.016, 0.011', '0.007, 0.007, 0.004, 0.004, 0.007, 0.011, 0.025, 0.042, 0.046, 0.048, 0.042, 0.050, 0.057, 0.046, 0.057, 0.044, 0.092, 0.150, 0.117, 0.060, 0.035, 0.025, 0.016, 0.011', '1.097, 1.097, 0.991, 0.987, 0.991, 0.890, 0.896, 0.896, 0.890, 1.085, 1.085, 1.097') # Test defaults before 301-2019 Addendum A hpxml.header.eri_calculation_version = '2019' XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) hpxml_default = _test_measure() - _test_default_cooking_range_values(hpxml_default, true, HPXML::LocationLivingSpace, false, 1.0, '0.007, 0.007, 0.004, 0.004, 0.007, 0.011, 0.025, 0.042, 0.046, 0.048, 0.042, 0.050, 0.057, 0.046, 0.057, 0.044, 0.092, 0.150, 0.117, 0.060, 0.035, 0.025, 0.016, 0.011', '0.007, 0.007, 0.004, 0.004, 0.007, 0.011, 0.025, 0.042, 0.046, 0.048, 0.042, 0.050, 0.057, 0.046, 0.057, 0.044, 0.092, 0.150, 0.117, 0.060, 0.035, 0.025, 0.016, 0.011', '1.097, 1.097, 0.991, 0.987, 0.991, 0.890, 0.896, 0.896, 0.890, 1.085, 1.085, 1.097') + _test_default_cooking_range_values(hpxml_default, HPXML::LocationLivingSpace, false, 1.0, '0.007, 0.007, 0.004, 0.004, 0.007, 0.011, 0.025, 0.042, 0.046, 0.048, 0.042, 0.050, 0.057, 0.046, 0.057, 0.044, 0.092, 0.150, 0.117, 0.060, 0.035, 0.025, 0.016, 0.011', '0.007, 0.007, 0.004, 0.004, 0.007, 0.011, 0.025, 0.042, 0.046, 0.048, 0.042, 0.050, 0.057, 0.046, 0.057, 0.044, 0.092, 0.150, 0.117, 0.060, 0.035, 0.025, 0.016, 0.011', '1.097, 1.097, 0.991, 0.987, 0.991, 0.890, 0.896, 0.896, 0.890, 1.085, 1.085, 1.097') end def test_ovens @@ -1409,19 +1521,19 @@ def test_ovens hpxml.ovens[0].is_convection = true XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) hpxml_default = _test_measure() - _test_default_oven_values(hpxml_default, false, true) + _test_default_oven_values(hpxml_default, true) # Test defaults hpxml.ovens[0].is_convection = nil XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) hpxml_default = _test_measure() - _test_default_oven_values(hpxml_default, true, false) + _test_default_oven_values(hpxml_default, false) # Test defaults before 301-2019 Addendum A hpxml.header.eri_calculation_version = '2019' XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) hpxml_default = _test_measure() - _test_default_oven_values(hpxml_default, true, false) + _test_default_oven_values(hpxml_default, false) end def test_lighting @@ -1449,7 +1561,7 @@ def test_lighting hpxml.lighting.holiday_weekend_fractions = ConstantDaySchedule XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) hpxml_default = _test_measure() - _test_default_lighting_values(hpxml_default, false, 2.0, 2.0, 2.0, + _test_default_lighting_values(hpxml_default, 2.0, 2.0, 2.0, { int_wk_sch: ConstantDaySchedule, int_wknd_sch: ConstantDaySchedule, int_month_mult: ConstantMonthSchedule, @@ -1483,7 +1595,7 @@ def test_lighting hpxml.lighting.holiday_exists = nil XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) hpxml_default = _test_measure() - _test_default_lighting_values(hpxml_default, true, 1.0, 1.0, 1.0, + _test_default_lighting_values(hpxml_default, 1.0, 1.0, 1.0, { ext_wk_sch: '0.046, 0.046, 0.046, 0.046, 0.046, 0.037, 0.035, 0.034, 0.033, 0.028, 0.022, 0.015, 0.012, 0.011, 0.011, 0.012, 0.019, 0.037, 0.049, 0.065, 0.091, 0.105, 0.091, 0.063', ext_wknd_sch: '0.046, 0.046, 0.045, 0.045, 0.046, 0.045, 0.044, 0.041, 0.036, 0.03, 0.024, 0.016, 0.012, 0.011, 0.011, 0.012, 0.019, 0.038, 0.048, 0.06, 0.083, 0.098, 0.085, 0.059', ext_month_mult: '1.248, 1.257, 0.993, 0.989, 0.993, 0.827, 0.821, 0.821, 0.827, 0.99, 0.987, 1.248' }) @@ -1495,7 +1607,7 @@ def test_lighting hpxml.lighting.exterior_usage_multiplier = nil XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) hpxml_default = _test_measure() - _test_default_lighting_values(hpxml_default, true, 1.0, 1.0, 1.0, + _test_default_lighting_values(hpxml_default, 1.0, 1.0, 1.0, { ext_wk_sch: '0.046, 0.046, 0.046, 0.046, 0.046, 0.037, 0.035, 0.034, 0.033, 0.028, 0.022, 0.015, 0.012, 0.011, 0.011, 0.012, 0.019, 0.037, 0.049, 0.065, 0.091, 0.105, 0.091, 0.063', ext_wknd_sch: '0.046, 0.046, 0.045, 0.045, 0.046, 0.045, 0.044, 0.041, 0.036, 0.03, 0.024, 0.016, 0.012, 0.011, 0.011, 0.012, 0.019, 0.038, 0.048, 0.06, 0.083, 0.098, 0.085, 0.059', ext_month_mult: '1.248, 1.257, 0.993, 0.989, 0.993, 0.827, 0.821, 0.821, 0.827, 0.99, 0.987, 1.248', @@ -1511,7 +1623,7 @@ def test_ceiling_fans hpxml.ceiling_fans[0].efficiency = 100 XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) hpxml_default = _test_measure() - _test_default_ceiling_fan_values(hpxml_default, false, 2, 100) + _test_default_ceiling_fan_values(hpxml_default, 2, 100) # Test defaults hpxml.ceiling_fans.each do |ceiling_fan| @@ -1520,7 +1632,7 @@ def test_ceiling_fans end XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) hpxml_default = _test_measure() - _test_default_ceiling_fan_values(hpxml_default, true, 4, 70.4) + _test_default_ceiling_fan_values(hpxml_default, 4, 70.4) end def test_pools @@ -1540,8 +1652,8 @@ def test_pools pool.pump_monthly_multipliers = ConstantMonthSchedule XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) hpxml_default = _test_measure() - _test_default_pool_heater_values(hpxml_default, false, HPXML::UnitsKwhPerYear, 1000, 1.4, ConstantDaySchedule, ConstantDaySchedule, ConstantMonthSchedule) - _test_default_pool_pump_values(hpxml_default, false, 3000, 1.3, ConstantDaySchedule, ConstantDaySchedule, ConstantMonthSchedule) + _test_default_pool_heater_values(hpxml_default, HPXML::UnitsKwhPerYear, 1000, 1.4, ConstantDaySchedule, ConstantDaySchedule, ConstantMonthSchedule) + _test_default_pool_pump_values(hpxml_default, 3000, 1.3, ConstantDaySchedule, ConstantDaySchedule, ConstantMonthSchedule) # Test defaults pool = hpxml.pools[0] @@ -1558,8 +1670,8 @@ def test_pools pool.pump_monthly_multipliers = nil XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) hpxml_default = _test_measure() - _test_default_pool_heater_values(hpxml_default, true, HPXML::UnitsThermPerYear, 236, 1.0, '0.003, 0.003, 0.003, 0.004, 0.008, 0.015, 0.026, 0.044, 0.084, 0.121, 0.127, 0.121, 0.120, 0.090, 0.075, 0.061, 0.037, 0.023, 0.013, 0.008, 0.004, 0.003, 0.003, 0.003', '0.003, 0.003, 0.003, 0.004, 0.008, 0.015, 0.026, 0.044, 0.084, 0.121, 0.127, 0.121, 0.120, 0.090, 0.075, 0.061, 0.037, 0.023, 0.013, 0.008, 0.004, 0.003, 0.003, 0.003', '1.154, 1.161, 1.013, 1.010, 1.013, 0.888, 0.883, 0.883, 0.888, 0.978, 0.974, 1.154') - _test_default_pool_pump_values(hpxml_default, true, 2496, 1.0, '0.003, 0.003, 0.003, 0.004, 0.008, 0.015, 0.026, 0.044, 0.084, 0.121, 0.127, 0.121, 0.120, 0.090, 0.075, 0.061, 0.037, 0.023, 0.013, 0.008, 0.004, 0.003, 0.003, 0.003', '0.003, 0.003, 0.003, 0.004, 0.008, 0.015, 0.026, 0.044, 0.084, 0.121, 0.127, 0.121, 0.120, 0.090, 0.075, 0.061, 0.037, 0.023, 0.013, 0.008, 0.004, 0.003, 0.003, 0.003', '1.154, 1.161, 1.013, 1.010, 1.013, 0.888, 0.883, 0.883, 0.888, 0.978, 0.974, 1.154') + _test_default_pool_heater_values(hpxml_default, HPXML::UnitsThermPerYear, 236, 1.0, '0.003, 0.003, 0.003, 0.004, 0.008, 0.015, 0.026, 0.044, 0.084, 0.121, 0.127, 0.121, 0.120, 0.090, 0.075, 0.061, 0.037, 0.023, 0.013, 0.008, 0.004, 0.003, 0.003, 0.003', '0.003, 0.003, 0.003, 0.004, 0.008, 0.015, 0.026, 0.044, 0.084, 0.121, 0.127, 0.121, 0.120, 0.090, 0.075, 0.061, 0.037, 0.023, 0.013, 0.008, 0.004, 0.003, 0.003, 0.003', '1.154, 1.161, 1.013, 1.010, 1.013, 0.888, 0.883, 0.883, 0.888, 0.978, 0.974, 1.154') + _test_default_pool_pump_values(hpxml_default, 2496, 1.0, '0.003, 0.003, 0.003, 0.004, 0.008, 0.015, 0.026, 0.044, 0.084, 0.121, 0.127, 0.121, 0.120, 0.090, 0.075, 0.061, 0.037, 0.023, 0.013, 0.008, 0.004, 0.003, 0.003, 0.003', '0.003, 0.003, 0.003, 0.004, 0.008, 0.015, 0.026, 0.044, 0.084, 0.121, 0.127, 0.121, 0.120, 0.090, 0.075, 0.061, 0.037, 0.023, 0.013, 0.008, 0.004, 0.003, 0.003, 0.003', '1.154, 1.161, 1.013, 1.010, 1.013, 0.888, 0.883, 0.883, 0.888, 0.978, 0.974, 1.154') # Test defaults 2 hpxml = _create_hpxml('base-misc-loads-large-uncommon2.xml') @@ -1577,8 +1689,8 @@ def test_pools pool.pump_monthly_multipliers = nil XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) hpxml_default = _test_measure() - _test_default_pool_heater_values(hpxml_default, true, nil, nil, nil, nil, nil, nil) - _test_default_pool_pump_values(hpxml_default, true, 2496, 1.0, '0.003, 0.003, 0.003, 0.004, 0.008, 0.015, 0.026, 0.044, 0.084, 0.121, 0.127, 0.121, 0.120, 0.090, 0.075, 0.061, 0.037, 0.023, 0.013, 0.008, 0.004, 0.003, 0.003, 0.003', '0.003, 0.003, 0.003, 0.004, 0.008, 0.015, 0.026, 0.044, 0.084, 0.121, 0.127, 0.121, 0.120, 0.090, 0.075, 0.061, 0.037, 0.023, 0.013, 0.008, 0.004, 0.003, 0.003, 0.003', '1.154, 1.161, 1.013, 1.010, 1.013, 0.888, 0.883, 0.883, 0.888, 0.978, 0.974, 1.154') + _test_default_pool_heater_values(hpxml_default, nil, nil, nil, nil, nil, nil) + _test_default_pool_pump_values(hpxml_default, 2496, 1.0, '0.003, 0.003, 0.003, 0.004, 0.008, 0.015, 0.026, 0.044, 0.084, 0.121, 0.127, 0.121, 0.120, 0.090, 0.075, 0.061, 0.037, 0.023, 0.013, 0.008, 0.004, 0.003, 0.003, 0.003', '0.003, 0.003, 0.003, 0.004, 0.008, 0.015, 0.026, 0.044, 0.084, 0.121, 0.127, 0.121, 0.120, 0.090, 0.075, 0.061, 0.037, 0.023, 0.013, 0.008, 0.004, 0.003, 0.003, 0.003', '1.154, 1.161, 1.013, 1.010, 1.013, 0.888, 0.883, 0.883, 0.888, 0.978, 0.974, 1.154') end def test_hot_tubs @@ -1598,8 +1710,8 @@ def test_hot_tubs hot_tub.pump_monthly_multipliers = ConstantMonthSchedule XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) hpxml_default = _test_measure() - _test_default_hot_tub_heater_values(hpxml_default, false, HPXML::UnitsThermPerYear, 1000, 0.8, ConstantDaySchedule, ConstantDaySchedule, ConstantMonthSchedule) - _test_default_hot_tub_pump_values(hpxml_default, false, 3000, 0.7, ConstantDaySchedule, ConstantDaySchedule, ConstantMonthSchedule) + _test_default_hot_tub_heater_values(hpxml_default, HPXML::UnitsThermPerYear, 1000, 0.8, ConstantDaySchedule, ConstantDaySchedule, ConstantMonthSchedule) + _test_default_hot_tub_pump_values(hpxml_default, 3000, 0.7, ConstantDaySchedule, ConstantDaySchedule, ConstantMonthSchedule) # Test defaults hot_tub = hpxml.hot_tubs[0] @@ -1616,8 +1728,8 @@ def test_hot_tubs hot_tub.pump_monthly_multipliers = nil XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) hpxml_default = _test_measure() - _test_default_hot_tub_heater_values(hpxml_default, true, HPXML::UnitsKwhPerYear, 1125, 1.0, '0.024, 0.029, 0.024, 0.029, 0.047, 0.067, 0.057, 0.024, 0.024, 0.019, 0.015, 0.014, 0.014, 0.014, 0.024, 0.058, 0.126, 0.122, 0.068, 0.061, 0.051, 0.043, 0.024, 0.024', '0.024, 0.029, 0.024, 0.029, 0.047, 0.067, 0.057, 0.024, 0.024, 0.019, 0.015, 0.014, 0.014, 0.014, 0.024, 0.058, 0.126, 0.122, 0.068, 0.061, 0.051, 0.043, 0.024, 0.024', '0.837, 0.835, 1.084, 1.084, 1.084, 1.096, 1.096, 1.096, 1.096, 0.931, 0.925, 0.837') - _test_default_hot_tub_pump_values(hpxml_default, true, 1111, 1.0, '0.024, 0.029, 0.024, 0.029, 0.047, 0.067, 0.057, 0.024, 0.024, 0.019, 0.015, 0.014, 0.014, 0.014, 0.024, 0.058, 0.126, 0.122, 0.068, 0.061, 0.051, 0.043, 0.024, 0.024', '0.024, 0.029, 0.024, 0.029, 0.047, 0.067, 0.057, 0.024, 0.024, 0.019, 0.015, 0.014, 0.014, 0.014, 0.024, 0.058, 0.126, 0.122, 0.068, 0.061, 0.051, 0.043, 0.024, 0.024', '0.921, 0.928, 0.921, 0.915, 0.921, 1.160, 1.158, 1.158, 1.160, 0.921, 0.915, 0.921') + _test_default_hot_tub_heater_values(hpxml_default, HPXML::UnitsKwhPerYear, 1125, 1.0, '0.024, 0.029, 0.024, 0.029, 0.047, 0.067, 0.057, 0.024, 0.024, 0.019, 0.015, 0.014, 0.014, 0.014, 0.024, 0.058, 0.126, 0.122, 0.068, 0.061, 0.051, 0.043, 0.024, 0.024', '0.024, 0.029, 0.024, 0.029, 0.047, 0.067, 0.057, 0.024, 0.024, 0.019, 0.015, 0.014, 0.014, 0.014, 0.024, 0.058, 0.126, 0.122, 0.068, 0.061, 0.051, 0.043, 0.024, 0.024', '0.837, 0.835, 1.084, 1.084, 1.084, 1.096, 1.096, 1.096, 1.096, 0.931, 0.925, 0.837') + _test_default_hot_tub_pump_values(hpxml_default, 1111, 1.0, '0.024, 0.029, 0.024, 0.029, 0.047, 0.067, 0.057, 0.024, 0.024, 0.019, 0.015, 0.014, 0.014, 0.014, 0.024, 0.058, 0.126, 0.122, 0.068, 0.061, 0.051, 0.043, 0.024, 0.024', '0.024, 0.029, 0.024, 0.029, 0.047, 0.067, 0.057, 0.024, 0.024, 0.019, 0.015, 0.014, 0.014, 0.014, 0.024, 0.058, 0.126, 0.122, 0.068, 0.061, 0.051, 0.043, 0.024, 0.024', '0.921, 0.928, 0.921, 0.915, 0.921, 1.160, 1.158, 1.158, 1.160, 0.921, 0.915, 0.921') # Test defaults 2 hpxml = _create_hpxml('base-misc-loads-large-uncommon2.xml') @@ -1635,8 +1747,8 @@ def test_hot_tubs hot_tub.pump_monthly_multipliers = nil XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) hpxml_default = _test_measure() - _test_default_hot_tub_heater_values(hpxml_default, true, HPXML::UnitsKwhPerYear, 225, 1.0, '0.024, 0.029, 0.024, 0.029, 0.047, 0.067, 0.057, 0.024, 0.024, 0.019, 0.015, 0.014, 0.014, 0.014, 0.024, 0.058, 0.126, 0.122, 0.068, 0.061, 0.051, 0.043, 0.024, 0.024', '0.024, 0.029, 0.024, 0.029, 0.047, 0.067, 0.057, 0.024, 0.024, 0.019, 0.015, 0.014, 0.014, 0.014, 0.024, 0.058, 0.126, 0.122, 0.068, 0.061, 0.051, 0.043, 0.024, 0.024', '0.837, 0.835, 1.084, 1.084, 1.084, 1.096, 1.096, 1.096, 1.096, 0.931, 0.925, 0.837') - _test_default_hot_tub_pump_values(hpxml_default, true, 1111, 1.0, '0.024, 0.029, 0.024, 0.029, 0.047, 0.067, 0.057, 0.024, 0.024, 0.019, 0.015, 0.014, 0.014, 0.014, 0.024, 0.058, 0.126, 0.122, 0.068, 0.061, 0.051, 0.043, 0.024, 0.024', '0.024, 0.029, 0.024, 0.029, 0.047, 0.067, 0.057, 0.024, 0.024, 0.019, 0.015, 0.014, 0.014, 0.014, 0.024, 0.058, 0.126, 0.122, 0.068, 0.061, 0.051, 0.043, 0.024, 0.024', '0.921, 0.928, 0.921, 0.915, 0.921, 1.160, 1.158, 1.158, 1.160, 0.921, 0.915, 0.921') + _test_default_hot_tub_heater_values(hpxml_default, HPXML::UnitsKwhPerYear, 225, 1.0, '0.024, 0.029, 0.024, 0.029, 0.047, 0.067, 0.057, 0.024, 0.024, 0.019, 0.015, 0.014, 0.014, 0.014, 0.024, 0.058, 0.126, 0.122, 0.068, 0.061, 0.051, 0.043, 0.024, 0.024', '0.024, 0.029, 0.024, 0.029, 0.047, 0.067, 0.057, 0.024, 0.024, 0.019, 0.015, 0.014, 0.014, 0.014, 0.024, 0.058, 0.126, 0.122, 0.068, 0.061, 0.051, 0.043, 0.024, 0.024', '0.837, 0.835, 1.084, 1.084, 1.084, 1.096, 1.096, 1.096, 1.096, 0.931, 0.925, 0.837') + _test_default_hot_tub_pump_values(hpxml_default, 1111, 1.0, '0.024, 0.029, 0.024, 0.029, 0.047, 0.067, 0.057, 0.024, 0.024, 0.019, 0.015, 0.014, 0.014, 0.014, 0.024, 0.058, 0.126, 0.122, 0.068, 0.061, 0.051, 0.043, 0.024, 0.024', '0.024, 0.029, 0.024, 0.029, 0.047, 0.067, 0.057, 0.024, 0.024, 0.019, 0.015, 0.014, 0.014, 0.014, 0.024, 0.058, 0.126, 0.122, 0.068, 0.061, 0.051, 0.043, 0.024, 0.024', '0.921, 0.928, 0.921, 0.915, 0.921, 1.160, 1.158, 1.158, 1.160, 0.921, 0.915, 0.921') end def test_plug_loads @@ -1676,10 +1788,10 @@ def test_plug_loads wellpump_pl.monthly_multipliers = ConstantMonthSchedule XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) hpxml_default = _test_measure() - _test_default_plug_load_values(hpxml_default, false, HPXML::PlugLoadTypeTelevision, 1000, 0.6, 0.3, 1.1, ConstantDaySchedule, ConstantDaySchedule, ConstantMonthSchedule) - _test_default_plug_load_values(hpxml_default, false, HPXML::PlugLoadTypeOther, 2000, 0.5, 0.4, 1.2, ConstantDaySchedule, ConstantDaySchedule, ConstantMonthSchedule) - _test_default_plug_load_values(hpxml_default, false, HPXML::PlugLoadTypeElectricVehicleCharging, 4000, 0.4, 0.5, 1.3, ConstantDaySchedule, ConstantDaySchedule, ConstantMonthSchedule) - _test_default_plug_load_values(hpxml_default, false, HPXML::PlugLoadTypeWellPump, 3000, 0.3, 0.6, 1.4, ConstantDaySchedule, ConstantDaySchedule, ConstantMonthSchedule) + _test_default_plug_load_values(hpxml_default, HPXML::PlugLoadTypeTelevision, 1000, 0.6, 0.3, 1.1, ConstantDaySchedule, ConstantDaySchedule, ConstantMonthSchedule) + _test_default_plug_load_values(hpxml_default, HPXML::PlugLoadTypeOther, 2000, 0.5, 0.4, 1.2, ConstantDaySchedule, ConstantDaySchedule, ConstantMonthSchedule) + _test_default_plug_load_values(hpxml_default, HPXML::PlugLoadTypeElectricVehicleCharging, 4000, 0.4, 0.5, 1.3, ConstantDaySchedule, ConstantDaySchedule, ConstantMonthSchedule) + _test_default_plug_load_values(hpxml_default, HPXML::PlugLoadTypeWellPump, 3000, 0.3, 0.6, 1.4, ConstantDaySchedule, ConstantDaySchedule, ConstantMonthSchedule) # Test defaults hpxml.plug_loads.each do |plug_load| @@ -1693,10 +1805,10 @@ def test_plug_loads end XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) hpxml_default = _test_measure() - _test_default_plug_load_values(hpxml_default, true, HPXML::PlugLoadTypeTelevision, 620, 1.0, 0.0, 1.0, '0.037, 0.018, 0.009, 0.007, 0.011, 0.018, 0.029, 0.040, 0.049, 0.058, 0.065, 0.072, 0.076, 0.086, 0.091, 0.102, 0.127, 0.156, 0.210, 0.294, 0.363, 0.344, 0.208, 0.090', '0.044, 0.022, 0.012, 0.008, 0.011, 0.014, 0.024, 0.043, 0.071, 0.094, 0.112, 0.123, 0.132, 0.156, 0.178, 0.196, 0.206, 0.213, 0.251, 0.330, 0.388, 0.358, 0.226, 0.103', '1.137, 1.129, 0.961, 0.969, 0.961, 0.993, 0.996, 0.96, 0.993, 0.867, 0.86, 1.137') - _test_default_plug_load_values(hpxml_default, true, HPXML::PlugLoadTypeOther, 2457, 0.855, 0.045, 1.0, '0.035, 0.033, 0.032, 0.031, 0.032, 0.033, 0.037, 0.042, 0.043, 0.043, 0.043, 0.044, 0.045, 0.045, 0.044, 0.046, 0.048, 0.052, 0.053, 0.05, 0.047, 0.045, 0.04, 0.036', '0.035, 0.033, 0.032, 0.031, 0.032, 0.033, 0.037, 0.042, 0.043, 0.043, 0.043, 0.044, 0.045, 0.045, 0.044, 0.046, 0.048, 0.052, 0.053, 0.05, 0.047, 0.045, 0.04, 0.036', '1.248, 1.257, 0.993, 0.989, 0.993, 0.827, 0.821, 0.821, 0.827, 0.99, 0.987, 1.248') - _test_default_plug_load_values(hpxml_default, true, HPXML::PlugLoadTypeElectricVehicleCharging, 1667, 0.0, 0.0, 1.0, '0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042', '0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042', '1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1') - _test_default_plug_load_values(hpxml_default, true, HPXML::PlugLoadTypeWellPump, 441, 0.0, 0.0, 1.0, '0.044, 0.023, 0.019, 0.015, 0.016, 0.018, 0.026, 0.033, 0.033, 0.032, 0.033, 0.033, 0.032, 0.032, 0.032, 0.033, 0.045, 0.057, 0.066, 0.076, 0.081, 0.086, 0.075, 0.065', '0.044, 0.023, 0.019, 0.015, 0.016, 0.018, 0.026, 0.033, 0.033, 0.032, 0.033, 0.033, 0.032, 0.032, 0.032, 0.033, 0.045, 0.057, 0.066, 0.076, 0.081, 0.086, 0.075, 0.065', '1.154, 1.161, 1.013, 1.010, 1.013, 0.888, 0.883, 0.883, 0.888, 0.978, 0.974, 1.154') + _test_default_plug_load_values(hpxml_default, HPXML::PlugLoadTypeTelevision, 620, 1.0, 0.0, 1.0, '0.037, 0.018, 0.009, 0.007, 0.011, 0.018, 0.029, 0.040, 0.049, 0.058, 0.065, 0.072, 0.076, 0.086, 0.091, 0.102, 0.127, 0.156, 0.210, 0.294, 0.363, 0.344, 0.208, 0.090', '0.044, 0.022, 0.012, 0.008, 0.011, 0.014, 0.024, 0.043, 0.071, 0.094, 0.112, 0.123, 0.132, 0.156, 0.178, 0.196, 0.206, 0.213, 0.251, 0.330, 0.388, 0.358, 0.226, 0.103', '1.137, 1.129, 0.961, 0.969, 0.961, 0.993, 0.996, 0.96, 0.993, 0.867, 0.86, 1.137') + _test_default_plug_load_values(hpxml_default, HPXML::PlugLoadTypeOther, 2457, 0.855, 0.045, 1.0, '0.035, 0.033, 0.032, 0.031, 0.032, 0.033, 0.037, 0.042, 0.043, 0.043, 0.043, 0.044, 0.045, 0.045, 0.044, 0.046, 0.048, 0.052, 0.053, 0.05, 0.047, 0.045, 0.04, 0.036', '0.035, 0.033, 0.032, 0.031, 0.032, 0.033, 0.037, 0.042, 0.043, 0.043, 0.043, 0.044, 0.045, 0.045, 0.044, 0.046, 0.048, 0.052, 0.053, 0.05, 0.047, 0.045, 0.04, 0.036', '1.248, 1.257, 0.993, 0.989, 0.993, 0.827, 0.821, 0.821, 0.827, 0.99, 0.987, 1.248') + _test_default_plug_load_values(hpxml_default, HPXML::PlugLoadTypeElectricVehicleCharging, 1667, 0.0, 0.0, 1.0, '0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042', '0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042', '1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1') + _test_default_plug_load_values(hpxml_default, HPXML::PlugLoadTypeWellPump, 441, 0.0, 0.0, 1.0, '0.044, 0.023, 0.019, 0.015, 0.016, 0.018, 0.026, 0.033, 0.033, 0.032, 0.033, 0.033, 0.032, 0.032, 0.032, 0.033, 0.045, 0.057, 0.066, 0.076, 0.081, 0.086, 0.075, 0.065', '0.044, 0.023, 0.019, 0.015, 0.016, 0.018, 0.026, 0.033, 0.033, 0.032, 0.033, 0.033, 0.032, 0.032, 0.032, 0.033, 0.045, 0.057, 0.066, 0.076, 0.081, 0.086, 0.075, 0.065', '1.154, 1.161, 1.013, 1.010, 1.013, 0.888, 0.883, 0.883, 0.888, 0.978, 0.974, 1.154') end def test_fuel_loads @@ -1728,9 +1840,9 @@ def test_fuel_loads gf_fl.monthly_multipliers = ConstantMonthSchedule XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) hpxml_default = _test_measure() - _test_default_fuel_load_values(hpxml_default, false, HPXML::FuelLoadTypeGrill, 1000, 0.6, 0.3, 0.9, ConstantDaySchedule, ConstantDaySchedule, ConstantMonthSchedule) - _test_default_fuel_load_values(hpxml_default, false, HPXML::FuelLoadTypeLighting, 2000, 0.5, 0.4, 0.8, ConstantDaySchedule, ConstantDaySchedule, ConstantMonthSchedule) - _test_default_fuel_load_values(hpxml_default, false, HPXML::FuelLoadTypeFireplace, 3000, 0.4, 0.5, 0.7, ConstantDaySchedule, ConstantDaySchedule, ConstantMonthSchedule) + _test_default_fuel_load_values(hpxml_default, HPXML::FuelLoadTypeGrill, 1000, 0.6, 0.3, 0.9, ConstantDaySchedule, ConstantDaySchedule, ConstantMonthSchedule) + _test_default_fuel_load_values(hpxml_default, HPXML::FuelLoadTypeLighting, 2000, 0.5, 0.4, 0.8, ConstantDaySchedule, ConstantDaySchedule, ConstantMonthSchedule) + _test_default_fuel_load_values(hpxml_default, HPXML::FuelLoadTypeFireplace, 3000, 0.4, 0.5, 0.7, ConstantDaySchedule, ConstantDaySchedule, ConstantMonthSchedule) # Test defaults hpxml.fuel_loads.each do |fuel_load| @@ -1744,9 +1856,9 @@ def test_fuel_loads end XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) hpxml_default = _test_measure() - _test_default_fuel_load_values(hpxml_default, true, HPXML::FuelLoadTypeGrill, 33, 0.0, 0.0, 1.0, '0.004, 0.001, 0.001, 0.002, 0.007, 0.012, 0.029, 0.046, 0.044, 0.041, 0.044, 0.046, 0.042, 0.038, 0.049, 0.059, 0.110, 0.161, 0.115, 0.070, 0.044, 0.019, 0.013, 0.007', '0.004, 0.001, 0.001, 0.002, 0.007, 0.012, 0.029, 0.046, 0.044, 0.041, 0.044, 0.046, 0.042, 0.038, 0.049, 0.059, 0.110, 0.161, 0.115, 0.070, 0.044, 0.019, 0.013, 0.007', '1.097, 1.097, 0.991, 0.987, 0.991, 0.890, 0.896, 0.896, 0.890, 1.085, 1.085, 1.097') - _test_default_fuel_load_values(hpxml_default, true, HPXML::FuelLoadTypeLighting, 20, 0.0, 0.0, 1.0, '0.044, 0.023, 0.019, 0.015, 0.016, 0.018, 0.026, 0.033, 0.033, 0.032, 0.033, 0.033, 0.032, 0.032, 0.032, 0.033, 0.045, 0.057, 0.066, 0.076, 0.081, 0.086, 0.075, 0.065', '0.044, 0.023, 0.019, 0.015, 0.016, 0.018, 0.026, 0.033, 0.033, 0.032, 0.033, 0.033, 0.032, 0.032, 0.032, 0.033, 0.045, 0.057, 0.066, 0.076, 0.081, 0.086, 0.075, 0.065', '1.154, 1.161, 1.013, 1.010, 1.013, 0.888, 0.883, 0.883, 0.888, 0.978, 0.974, 1.154') - _test_default_fuel_load_values(hpxml_default, true, HPXML::FuelLoadTypeFireplace, 67, 0.5, 0.1, 1.0, '0.044, 0.023, 0.019, 0.015, 0.016, 0.018, 0.026, 0.033, 0.033, 0.032, 0.033, 0.033, 0.032, 0.032, 0.032, 0.033, 0.045, 0.057, 0.066, 0.076, 0.081, 0.086, 0.075, 0.065', '0.044, 0.023, 0.019, 0.015, 0.016, 0.018, 0.026, 0.033, 0.033, 0.032, 0.033, 0.033, 0.032, 0.032, 0.032, 0.033, 0.045, 0.057, 0.066, 0.076, 0.081, 0.086, 0.075, 0.065', '1.154, 1.161, 1.013, 1.010, 1.013, 0.888, 0.883, 0.883, 0.888, 0.978, 0.974, 1.154') + _test_default_fuel_load_values(hpxml_default, HPXML::FuelLoadTypeGrill, 33, 0.0, 0.0, 1.0, '0.004, 0.001, 0.001, 0.002, 0.007, 0.012, 0.029, 0.046, 0.044, 0.041, 0.044, 0.046, 0.042, 0.038, 0.049, 0.059, 0.110, 0.161, 0.115, 0.070, 0.044, 0.019, 0.013, 0.007', '0.004, 0.001, 0.001, 0.002, 0.007, 0.012, 0.029, 0.046, 0.044, 0.041, 0.044, 0.046, 0.042, 0.038, 0.049, 0.059, 0.110, 0.161, 0.115, 0.070, 0.044, 0.019, 0.013, 0.007', '1.097, 1.097, 0.991, 0.987, 0.991, 0.890, 0.896, 0.896, 0.890, 1.085, 1.085, 1.097') + _test_default_fuel_load_values(hpxml_default, HPXML::FuelLoadTypeLighting, 20, 0.0, 0.0, 1.0, '0.044, 0.023, 0.019, 0.015, 0.016, 0.018, 0.026, 0.033, 0.033, 0.032, 0.033, 0.033, 0.032, 0.032, 0.032, 0.033, 0.045, 0.057, 0.066, 0.076, 0.081, 0.086, 0.075, 0.065', '0.044, 0.023, 0.019, 0.015, 0.016, 0.018, 0.026, 0.033, 0.033, 0.032, 0.033, 0.033, 0.032, 0.032, 0.032, 0.033, 0.045, 0.057, 0.066, 0.076, 0.081, 0.086, 0.075, 0.065', '1.154, 1.161, 1.013, 1.010, 1.013, 0.888, 0.883, 0.883, 0.888, 0.978, 0.974, 1.154') + _test_default_fuel_load_values(hpxml_default, HPXML::FuelLoadTypeFireplace, 67, 0.5, 0.1, 1.0, '0.044, 0.023, 0.019, 0.015, 0.016, 0.018, 0.026, 0.033, 0.033, 0.032, 0.033, 0.033, 0.032, 0.032, 0.032, 0.033, 0.045, 0.057, 0.066, 0.076, 0.081, 0.086, 0.075, 0.065', '0.044, 0.023, 0.019, 0.015, 0.016, 0.018, 0.026, 0.033, 0.033, 0.032, 0.033, 0.033, 0.032, 0.032, 0.032, 0.033, 0.045, 0.057, 0.066, 0.076, 0.081, 0.086, 0.075, 0.065', '1.154, 1.161, 1.013, 1.010, 1.013, 0.888, 0.883, 0.883, 0.888, 0.978, 0.974, 1.154') end def _test_measure() @@ -1784,879 +1896,710 @@ def _test_measure() return hpxml_default end - def _test_default_header_values(hpxml, isdefaulted, tstep, sim_begin_month, sim_begin_day, sim_end_month, sim_end_day, sim_calendar_year, + def _test_default_header_values(hpxml, tstep, sim_begin_month, sim_begin_day, sim_end_month, sim_end_day, sim_calendar_year, dst_enabled, dst_begin_month, dst_begin_day, dst_end_month, dst_end_day, use_max_load_for_heat_pumps, allow_increased_fixed_capacities) assert_equal(tstep, hpxml.header.timestep) - assert_equal(isdefaulted, hpxml.header.timestep_isdefaulted) - assert_equal(sim_begin_month, hpxml.header.sim_begin_month) - assert_equal(isdefaulted, hpxml.header.sim_begin_month_isdefaulted) - assert_equal(sim_begin_day, hpxml.header.sim_begin_day) - assert_equal(isdefaulted, hpxml.header.sim_begin_day_isdefaulted) - assert_equal(sim_end_month, hpxml.header.sim_end_month) - assert_equal(isdefaulted, hpxml.header.sim_end_month_isdefaulted) - assert_equal(sim_end_day, hpxml.header.sim_end_day) - assert_equal(isdefaulted, hpxml.header.sim_end_day_isdefaulted) - assert_equal(sim_calendar_year, hpxml.header.sim_calendar_year) - assert_equal(isdefaulted, hpxml.header.sim_calendar_year_isdefaulted) - assert_equal(dst_enabled, hpxml.header.dst_enabled) - assert_equal(isdefaulted, hpxml.header.dst_enabled_isdefaulted) - assert_equal(dst_begin_month, hpxml.header.dst_begin_month) - assert_equal(isdefaulted, hpxml.header.dst_begin_month_isdefaulted) - assert_equal(dst_begin_day, hpxml.header.dst_begin_day) - assert_equal(isdefaulted, hpxml.header.dst_begin_day_isdefaulted) - assert_equal(dst_end_month, hpxml.header.dst_end_month) - assert_equal(isdefaulted, hpxml.header.dst_end_month_isdefaulted) - assert_equal(dst_end_day, hpxml.header.dst_end_day) - assert_equal(isdefaulted, hpxml.header.dst_end_day_isdefaulted) - assert_equal(use_max_load_for_heat_pumps, hpxml.header.use_max_load_for_heat_pumps) - assert_equal(isdefaulted, hpxml.header.use_max_load_for_heat_pumps_isdefaulted) - assert_equal(allow_increased_fixed_capacities, hpxml.header.allow_increased_fixed_capacities) - assert_equal(isdefaulted, hpxml.header.allow_increased_fixed_capacities_isdefaulted) end - def _test_default_site_values(hpxml, isdefaulted, site_type, shelter_coefficient) + def _test_default_site_values(hpxml, site_type, shielding_of_home) assert_equal(site_type, hpxml.site.site_type) - assert_equal(isdefaulted, hpxml.site.site_type_isdefaulted) - - assert_equal(shelter_coefficient, hpxml.site.shelter_coefficient) - assert_equal(isdefaulted, hpxml.site.shelter_coefficient_isdefaulted) + assert_equal(shielding_of_home, hpxml.site.shielding_of_home) end - def _test_default_occupancy_values(hpxml, isdefaulted, num_occupants) + def _test_default_occupancy_values(hpxml, num_occupants) assert_equal(num_occupants, hpxml.building_occupancy.number_of_residents) - assert_equal(isdefaulted, hpxml.building_occupancy.number_of_residents_isdefaulted) end - def _test_default_building_construction_values(hpxml, isdefaulted, building_volume, average_ceiling_height, has_flue_or_chimney, n_bathrooms) + def _test_default_building_construction_values(hpxml, building_volume, average_ceiling_height, has_flue_or_chimney, n_bathrooms) assert_equal(building_volume, hpxml.building_construction.conditioned_building_volume) - assert_equal(average_ceiling_height, hpxml.building_construction.average_ceiling_height) - if isdefaulted - assert_equal(isdefaulted, hpxml.building_construction.conditioned_building_volume_isdefaulted || hpxml.building_construction.average_ceiling_height_isdefaulted) - else - assert_equal(isdefaulted, hpxml.building_construction.conditioned_building_volume_isdefaulted) - assert_equal(isdefaulted, hpxml.building_construction.average_ceiling_height_isdefaulted) - end - + assert_in_epsilon(average_ceiling_height, hpxml.building_construction.average_ceiling_height, 0.01) assert_equal(has_flue_or_chimney, hpxml.building_construction.has_flue_or_chimney) - assert_equal(isdefaulted, hpxml.building_construction.has_flue_or_chimney_isdefaulted) - assert_equal(n_bathrooms, hpxml.building_construction.number_of_bathrooms) - assert_equal(isdefaulted, hpxml.building_construction.number_of_bathrooms_isdefaulted) end - def _test_default_infiltration_values(hpxml, isdefaulted, volume) + def _test_default_infiltration_values(hpxml, volume) air_infiltration_measurement = hpxml.air_infiltration_measurements[0] assert_equal(volume, air_infiltration_measurement.infiltration_volume) - assert_equal(isdefaulted, air_infiltration_measurement.infiltration_volume_isdefaulted) end - def _test_default_attic_values(hpxml, isdefaulted, sla) + def _test_default_attic_values(hpxml, sla) attic = hpxml.attics[0] - assert_equal(sla, attic.vented_attic_sla) - assert_equal(isdefaulted, attic.vented_attic_sla_isdefaulted) + assert_in_epsilon(sla, attic.vented_attic_sla, 0.001) end - def _test_default_foundation_values(hpxml, isdefaulted, sla) + def _test_default_foundation_values(hpxml, sla) foundation = hpxml.foundations[0] - assert_equal(sla, foundation.vented_crawlspace_sla) - assert_equal(isdefaulted, foundation.vented_crawlspace_sla_isdefaulted) + assert_in_epsilon(sla, foundation.vented_crawlspace_sla, 0.001) end - def _test_default_roof_values(hpxml, isdefaulted, roof_type, solar_absorptance, roof_color, emittance, radiant_barrier) + def _test_default_roof_values(hpxml, roof_type, solar_absorptance, roof_color, emittance, radiant_barrier) roof = hpxml.roofs[0] assert_equal(roof_type, roof.roof_type) - assert_equal(isdefaulted, roof.roof_type_isdefaulted) - assert_equal(solar_absorptance, roof.solar_absorptance) assert_equal(roof_color, roof.roof_color) - if isdefaulted - assert_equal(isdefaulted, roof.solar_absorptance_isdefaulted || roof.roof_color_isdefaulted) - else - assert_equal(isdefaulted, roof.solar_absorptance_isdefaulted) - assert_equal(isdefaulted, roof.roof_color_isdefaulted) - end - assert_equal(emittance, roof.emittance) - assert_equal(isdefaulted, roof.emittance_isdefaulted) - assert_equal(radiant_barrier, roof.radiant_barrier) - assert_equal(isdefaulted, roof.radiant_barrier_isdefaulted) end - def _test_default_rim_joist_values(hpxml, isdefaulted, siding, solar_absorptance, color, emittance) + def _test_default_rim_joist_values(hpxml, siding, solar_absorptance, color, emittance) rim_joist = hpxml.rim_joists[0] assert_equal(siding, rim_joist.siding) - assert_equal(isdefaulted, rim_joist.siding_isdefaulted) - assert_equal(solar_absorptance, rim_joist.solar_absorptance) assert_equal(color, rim_joist.color) - if isdefaulted - assert_equal(isdefaulted, rim_joist.solar_absorptance_isdefaulted || rim_joist.color_isdefaulted) - else - assert_equal(isdefaulted, rim_joist.solar_absorptance_isdefaulted) - assert_equal(isdefaulted, rim_joist.color_isdefaulted) - end - assert_equal(emittance, rim_joist.emittance) - assert_equal(isdefaulted, rim_joist.emittance_isdefaulted) end - def _test_default_wall_values(hpxml, isdefaulted, siding, solar_absorptance, color, emittance) + def _test_default_wall_values(hpxml, siding, solar_absorptance, color, emittance) wall = hpxml.walls[0] assert_equal(siding, wall.siding) - assert_equal(isdefaulted, wall.siding_isdefaulted) - assert_equal(solar_absorptance, wall.solar_absorptance) assert_equal(color, wall.color) - if isdefaulted - assert_equal(isdefaulted, wall.solar_absorptance_isdefaulted || wall.color_isdefaulted) - else - assert_equal(isdefaulted, wall.solar_absorptance_isdefaulted) - assert_equal(isdefaulted, wall.color_isdefaulted) - end - assert_equal(emittance, wall.emittance) - assert_equal(isdefaulted, wall.emittance_isdefaulted) end - def _test_default_foundation_wall_values(hpxml, isdefaulted, thickness) + def _test_default_foundation_wall_values(hpxml, thickness) foundation_wall = hpxml.foundation_walls[0] assert_equal(thickness, foundation_wall.thickness) - assert_equal(isdefaulted, foundation_wall.thickness_isdefaulted) end - def _test_default_slab_values(hpxml, isdefaulted, thickness, carpet_r_value, carpet_fraction) + def _test_default_slab_values(hpxml, thickness, carpet_r_value, carpet_fraction) slab = hpxml.slabs[0] assert_equal(thickness, slab.thickness) - assert_equal(isdefaulted, slab.thickness_isdefaulted) - assert_equal(carpet_r_value, slab.carpet_r_value) - assert_equal(isdefaulted, slab.carpet_r_value_isdefaulted) - assert_equal(carpet_fraction, slab.carpet_fraction) - assert_equal(isdefaulted, slab.carpet_fraction_isdefaulted) end - def _test_default_window_values(hpxml, isdefaulted, summer_shade_coeffs, winter_shade_coeffs, fraction_operable) - assert_equal(summer_shade_coeffs.size, hpxml.windows.size) + def _test_default_window_values(hpxml, ext_summer_sfs, ext_winter_sfs, int_summer_sfs, int_winter_sfs, fraction_operable) + assert_equal(ext_summer_sfs.size, hpxml.windows.size) hpxml.windows.each_with_index do |window, idx| - assert_equal(summer_shade_coeffs[idx], window.interior_shading_factor_summer) - assert_equal(isdefaulted, window.interior_shading_factor_summer_isdefaulted) - - assert_equal(winter_shade_coeffs[idx], window.interior_shading_factor_winter) - assert_equal(isdefaulted, window.interior_shading_factor_winter_isdefaulted) - + assert_equal(ext_summer_sfs[idx], window.exterior_shading_factor_summer) + assert_equal(ext_winter_sfs[idx], window.exterior_shading_factor_winter) + assert_equal(int_summer_sfs[idx], window.interior_shading_factor_summer) + assert_equal(int_winter_sfs[idx], window.interior_shading_factor_winter) assert_equal(fraction_operable[idx], window.fraction_operable) - assert_equal(isdefaulted, window.fraction_operable_isdefaulted) end end - def _test_default_skylight_values(hpxml, isdefaulted, summer_shade_coeffs, winter_shade_coeffs) - assert_equal(summer_shade_coeffs.size, hpxml.skylights.size) + def _test_default_skylight_values(hpxml, ext_summer_sfs, ext_winter_sfs, int_summer_sfs, int_winter_sfs) + assert_equal(ext_summer_sfs.size, hpxml.skylights.size) hpxml.skylights.each_with_index do |skylight, idx| - assert_equal(summer_shade_coeffs[idx], skylight.interior_shading_factor_summer) - assert_equal(isdefaulted, skylight.interior_shading_factor_summer_isdefaulted) - - assert_equal(winter_shade_coeffs[idx], skylight.interior_shading_factor_winter) - assert_equal(isdefaulted, skylight.interior_shading_factor_winter_isdefaulted) + assert_equal(ext_summer_sfs[idx], skylight.exterior_shading_factor_summer) + assert_equal(ext_winter_sfs[idx], skylight.exterior_shading_factor_winter) + assert_equal(int_summer_sfs[idx], skylight.interior_shading_factor_summer) + assert_equal(int_winter_sfs[idx], skylight.interior_shading_factor_winter) end end - def _test_default_central_air_conditioner_values(hpxml, isdefaulted, shr, compressor_type, fan_watts_per_cfm) + def _test_default_central_air_conditioner_values(hpxml, shr, compressor_type, fan_watts_per_cfm, charge_defect_ratio, + airflow_defect_ratio, cooling_capacity) cooling_system = hpxml.cooling_systems[0] assert_equal(shr, cooling_system.cooling_shr) - assert_equal(isdefaulted, cooling_system.cooling_shr_isdefaulted) - assert_equal(compressor_type, cooling_system.compressor_type) - assert_equal(isdefaulted, cooling_system.compressor_type_isdefaulted) - assert_equal(fan_watts_per_cfm, cooling_system.fan_watts_per_cfm) - assert_equal(isdefaulted, cooling_system.fan_watts_per_cfm_isdefaulted) + assert_equal(charge_defect_ratio, cooling_system.charge_defect_ratio) + assert_equal(airflow_defect_ratio, cooling_system.airflow_defect_ratio) + if cooling_capacity.nil? + assert(cooling_system.cooling_capacity > 0) + else + assert_equal(cooling_system.cooling_capacity, cooling_capacity) + end end - def _test_default_room_air_conditioner_values(hpxml, isdefaulted, shr) + def _test_default_room_air_conditioner_values(hpxml, shr, cooling_capacity) cooling_system = hpxml.cooling_systems[0] assert_equal(shr, cooling_system.cooling_shr) - assert_equal(isdefaulted, cooling_system.cooling_shr_isdefaulted) + if cooling_capacity.nil? + assert(cooling_system.cooling_capacity > 0) + else + assert_equal(cooling_system.cooling_capacity, cooling_capacity) + end end - def _test_default_mini_split_air_conditioner_values(hpxml, isdefaulted, shr, fan_watts_per_cfm) + def _test_default_evap_cooler_values(hpxml, cooling_capacity) cooling_system = hpxml.cooling_systems[0] - assert_equal(shr, cooling_system.cooling_shr) - assert_equal(isdefaulted, cooling_system.cooling_shr_isdefaulted) + if cooling_capacity.nil? + assert(cooling_system.cooling_capacity > 0) + else + assert_equal(cooling_system.cooling_capacity, cooling_capacity) + end + end + + def _test_default_mini_split_air_conditioner_values(hpxml, shr, fan_watts_per_cfm, charge_defect_ratio, + airflow_defect_ratio, cooling_capacity) + cooling_system = hpxml.cooling_systems[0] + assert_equal(shr, cooling_system.cooling_shr) assert_equal(fan_watts_per_cfm, cooling_system.fan_watts_per_cfm) - assert_equal(isdefaulted, cooling_system.fan_watts_per_cfm_isdefaulted) + assert_equal(charge_defect_ratio, cooling_system.charge_defect_ratio) + assert_equal(airflow_defect_ratio, cooling_system.airflow_defect_ratio) + if cooling_capacity.nil? + assert(cooling_system.cooling_capacity > 0) + else + assert_equal(cooling_system.cooling_capacity, cooling_capacity) + end end - def _test_default_furnace_values(hpxml, isdefaulted, fan_watts_per_cfm) + def _test_default_furnace_values(hpxml, fan_watts_per_cfm, airflow_defect_ratio, + heating_capacity) heating_system = hpxml.heating_systems[0] assert_equal(fan_watts_per_cfm, heating_system.fan_watts_per_cfm) - assert_equal(isdefaulted, heating_system.fan_watts_per_cfm_isdefaulted) + assert_equal(airflow_defect_ratio, heating_system.airflow_defect_ratio) + if heating_capacity.nil? + assert(heating_system.heating_capacity > 0) + else + assert_equal(heating_system.heating_capacity, heating_capacity) + end end - def _test_default_wall_furnace_values(hpxml, isdefaulted, fan_watts) + def _test_default_wall_furnace_values(hpxml, fan_watts, heating_capacity) heating_system = hpxml.heating_systems[0] assert_equal(fan_watts, heating_system.fan_watts) - assert_equal(isdefaulted, heating_system.fan_watts_isdefaulted) + if heating_capacity.nil? + assert(heating_system.heating_capacity > 0) + else + assert_equal(heating_system.heating_capacity, heating_capacity) + end end - def _test_default_floor_furnace_values(hpxml, isdefaulted, fan_watts) + def _test_default_floor_furnace_values(hpxml, fan_watts, heating_capacity) heating_system = hpxml.heating_systems[0] assert_equal(fan_watts, heating_system.fan_watts) - assert_equal(isdefaulted, heating_system.fan_watts_isdefaulted) + if heating_capacity.nil? + assert(heating_system.heating_capacity > 0) + else + assert_equal(heating_system.heating_capacity, heating_capacity) + end end - def _test_default_stove_values(hpxml, isdefaulted, fan_watts) + def _test_default_boiler_values(hpxml, eae, heating_capacity) heating_system = hpxml.heating_systems[0] - assert_equal(fan_watts, heating_system.fan_watts) - assert_equal(isdefaulted, heating_system.fan_watts_isdefaulted) + assert_equal(eae, heating_system.electric_auxiliary_energy) + if heating_capacity.nil? + assert(heating_system.heating_capacity > 0) + else + assert_equal(heating_system.heating_capacity, heating_capacity) + end end - def _test_default_portable_heater_values(hpxml, isdefaulted, fan_watts) + def _test_default_stove_values(hpxml, fan_watts, heating_capacity) heating_system = hpxml.heating_systems[0] assert_equal(fan_watts, heating_system.fan_watts) - assert_equal(isdefaulted, heating_system.fan_watts_isdefaulted) + if heating_capacity.nil? + assert(heating_system.heating_capacity > 0) + else + assert_equal(heating_system.heating_capacity, heating_capacity) + end end - def _test_default_fixed_heater_values(hpxml, isdefaulted, fan_watts) + def _test_default_portable_heater_values(hpxml, fan_watts, heating_capacity) heating_system = hpxml.heating_systems[0] assert_equal(fan_watts, heating_system.fan_watts) - assert_equal(isdefaulted, heating_system.fan_watts_isdefaulted) + if heating_capacity.nil? + assert(heating_system.heating_capacity > 0) + else + assert_equal(heating_system.heating_capacity, heating_capacity) + end end - def _test_default_fireplace_values(hpxml, isdefaulted, fan_watts) + def _test_default_fixed_heater_values(hpxml, fan_watts, heating_capacity) heating_system = hpxml.heating_systems[0] assert_equal(fan_watts, heating_system.fan_watts) - assert_equal(isdefaulted, heating_system.fan_watts_isdefaulted) + if heating_capacity.nil? + assert(heating_system.heating_capacity > 0) + else + assert_equal(heating_system.heating_capacity, heating_capacity) + end end - def _test_default_boiler_values(hpxml, isdefaulted, eae) + def _test_default_fireplace_values(hpxml, fan_watts, heating_capacity) heating_system = hpxml.heating_systems[0] - assert_equal(eae, heating_system.electric_auxiliary_energy) - assert_equal(isdefaulted, heating_system.electric_auxiliary_energy_isdefaulted) + assert_equal(fan_watts, heating_system.fan_watts) + if heating_capacity.nil? + assert(heating_system.heating_capacity > 0) + else + assert_equal(heating_system.heating_capacity, heating_capacity) + end end - def _test_default_air_to_air_heat_pump_values(hpxml, isdefaulted, shr, compressor_type, fan_watts_per_cfm) + def _test_default_air_to_air_heat_pump_values(hpxml, shr, compressor_type, fan_watts_per_cfm, charge_defect_ratio, + airflow_defect_ratio, cooling_capacity, heating_capacity, + heating_capacity_17F, backup_heating_capacity) heat_pump = hpxml.heat_pumps[0] assert_equal(shr, heat_pump.cooling_shr) - assert_equal(isdefaulted, heat_pump.cooling_shr_isdefaulted) - assert_equal(compressor_type, heat_pump.compressor_type) - assert_equal(isdefaulted, heat_pump.compressor_type_isdefaulted) - assert_equal(fan_watts_per_cfm, heat_pump.fan_watts_per_cfm) - assert_equal(isdefaulted, heat_pump.fan_watts_per_cfm_isdefaulted) + assert_equal(charge_defect_ratio, heat_pump.charge_defect_ratio) + assert_equal(airflow_defect_ratio, heat_pump.airflow_defect_ratio) + if cooling_capacity.nil? + assert(heat_pump.cooling_capacity > 0) + else + assert_equal(heat_pump.cooling_capacity, cooling_capacity) + end + if heating_capacity.nil? + assert(heat_pump.heating_capacity > 0) + else + assert_equal(heat_pump.heating_capacity, heating_capacity) + end + if heating_capacity_17F.nil? + # assert(heat_pump.heating_capacity_17F > 0) # FUTURE + else + assert_equal(heat_pump.heating_capacity_17F, heating_capacity_17F) + end + if backup_heating_capacity.nil? + assert(heat_pump.backup_heating_capacity > 0) + else + assert_equal(heat_pump.backup_heating_capacity, backup_heating_capacity) + end end - def _test_default_mini_split_heat_pump_values(hpxml, isdefaulted, shr, fan_watts_per_cfm) + def _test_default_mini_split_heat_pump_values(hpxml, shr, fan_watts_per_cfm, charge_defect_ratio, + airflow_defect_ratio, cooling_capacity, heating_capacity, + heating_capacity_17F, backup_heating_capacity) heat_pump = hpxml.heat_pumps[0] assert_equal(shr, heat_pump.cooling_shr) - assert_equal(isdefaulted, heat_pump.cooling_shr_isdefaulted) - assert_equal(fan_watts_per_cfm, heat_pump.fan_watts_per_cfm) - assert_equal(isdefaulted, heat_pump.fan_watts_per_cfm_isdefaulted) + assert_equal(charge_defect_ratio, heat_pump.charge_defect_ratio) + assert_equal(airflow_defect_ratio, heat_pump.airflow_defect_ratio) + if cooling_capacity.nil? + assert(heat_pump.cooling_capacity > 0) + else + assert_equal(heat_pump.cooling_capacity, cooling_capacity) + end + if heating_capacity.nil? + assert(heat_pump.heating_capacity > 0) + else + assert_equal(heat_pump.heating_capacity, heating_capacity) + end + if heating_capacity_17F.nil? + # assert(heat_pump.heating_capacity_17F > 0) # FUTURE + else + assert_equal(heat_pump.heating_capacity_17F, heating_capacity_17F) + end + if backup_heating_capacity.nil? + assert(heat_pump.backup_heating_capacity > 0) + else + assert_equal(heat_pump.backup_heating_capacity, backup_heating_capacity) + end end - def _test_default_ground_to_air_heat_pump_values(hpxml, isdefaulted, pump_watts_per_ton, fan_watts_per_cfm) + def _test_default_ground_to_air_heat_pump_values(hpxml, pump_watts_per_ton, fan_watts_per_cfm, + airflow_defect_ratio, cooling_capacity, heating_capacity, + backup_heating_capacity) + heat_pump = hpxml.heat_pumps[0] assert_equal(pump_watts_per_ton, heat_pump.pump_watts_per_ton) - assert_equal(isdefaulted, heat_pump.pump_watts_per_ton_isdefaulted) - assert_equal(fan_watts_per_cfm, heat_pump.fan_watts_per_cfm) - assert_equal(isdefaulted, heat_pump.fan_watts_per_cfm_isdefaulted) + assert_equal(airflow_defect_ratio, heat_pump.airflow_defect_ratio) + if cooling_capacity.nil? + assert(heat_pump.cooling_capacity > 0) + else + assert_equal(heat_pump.cooling_capacity, cooling_capacity) + end + if heating_capacity.nil? + assert(heat_pump.heating_capacity > 0) + else + assert_equal(heat_pump.heating_capacity, heating_capacity) + end + if backup_heating_capacity.nil? + assert(heat_pump.backup_heating_capacity > 0) + else + assert_equal(heat_pump.backup_heating_capacity, backup_heating_capacity) + end end - def _test_default_hvac_control_values(hpxml, isdefaulted, htg_setback_start_hr, clg_setup_start_hr) + def _test_default_hvac_control_values(hpxml, htg_setback_start_hr, clg_setup_start_hr) hvac_control = hpxml.hvac_controls[0] assert_equal(htg_setback_start_hr, hvac_control.heating_setback_start_hour) - assert_equal(isdefaulted, hvac_control.heating_setback_start_hour_isdefaulted) - assert_equal(clg_setup_start_hr, hvac_control.cooling_setup_start_hour) - assert_equal(isdefaulted, hvac_control.cooling_setup_start_hour_isdefaulted) end - def _test_default_duct_values(hpxml, isdefaulted, supply_locations, return_locations, supply_areas, return_areas, n_return_registers) + def _test_default_duct_values(hpxml, supply_locations, return_locations, supply_areas, return_areas, n_return_registers) supply_duct_idx = 0 return_duct_idx = 0 hpxml.hvac_distributions.each do |hvac_distribution| - next unless [HPXML::HVACDistributionTypeAir, HPXML::HVACDistributionTypeHydronicAndAir].include? hvac_distribution.distribution_system_type + next unless [HPXML::HVACDistributionTypeAir].include? hvac_distribution.distribution_system_type assert_equal(n_return_registers, hvac_distribution.number_of_return_registers) - assert_equal(isdefaulted, hvac_distribution.number_of_return_registers_isdefaulted) - hvac_distribution.ducts.each do |duct| if duct.duct_type == HPXML::DuctTypeSupply assert_equal(supply_locations[supply_duct_idx], duct.duct_location) - assert_equal(isdefaulted, duct.duct_location_isdefaulted) - assert_in_epsilon(supply_areas[supply_duct_idx], duct.duct_surface_area, 0.01) - assert_equal(isdefaulted, duct.duct_surface_area_isdefaulted) - supply_duct_idx += 1 elsif duct.duct_type == HPXML::DuctTypeReturn assert_equal(return_locations[return_duct_idx], duct.duct_location) - assert_equal(isdefaulted, duct.duct_location_isdefaulted) - assert_in_epsilon(return_areas[return_duct_idx], duct.duct_surface_area, 0.01) - assert_equal(isdefaulted, duct.duct_surface_area_isdefaulted) - return_duct_idx += 1 end end end end - def _test_default_mech_vent_values(hpxml, isdefaulted, is_shared_system, hours_in_operation) + def _test_default_mech_vent_values(hpxml, is_shared_system, hours_in_operation) vent_fan = hpxml.ventilation_fans.select { |f| f.used_for_whole_building_ventilation }[0] assert_equal(is_shared_system, vent_fan.is_shared_system) - assert_equal(isdefaulted, vent_fan.is_shared_system_isdefaulted) - assert_equal(hours_in_operation, vent_fan.hours_in_operation) - assert_equal(isdefaulted, vent_fan.hours_in_operation_isdefaulted) end - def _test_default_kitchen_fan_values(hpxml, isdefaulted, quantity, rated_flow_rate, hours_in_operation, fan_power, start_hour) + def _test_default_kitchen_fan_values(hpxml, quantity, rated_flow_rate, hours_in_operation, fan_power, start_hour) kitchen_fan = hpxml.ventilation_fans.select { |f| f.used_for_local_ventilation && f.fan_location == HPXML::LocationKitchen }[0] assert_equal(quantity, kitchen_fan.quantity) - assert_equal(isdefaulted, kitchen_fan.quantity_isdefaulted) - assert_equal(rated_flow_rate, kitchen_fan.rated_flow_rate) - assert_equal(isdefaulted, kitchen_fan.rated_flow_rate_isdefaulted) - assert_equal(hours_in_operation, kitchen_fan.hours_in_operation) - assert_equal(isdefaulted, kitchen_fan.hours_in_operation_isdefaulted) - assert_equal(fan_power, kitchen_fan.fan_power) - assert_equal(isdefaulted, kitchen_fan.fan_power_isdefaulted) - assert_equal(start_hour, kitchen_fan.start_hour) - assert_equal(isdefaulted, kitchen_fan.start_hour_isdefaulted) end - def _test_default_bath_fan_values(hpxml, isdefaulted, quantity, rated_flow_rate, hours_in_operation, fan_power, start_hour) + def _test_default_bath_fan_values(hpxml, quantity, rated_flow_rate, hours_in_operation, fan_power, start_hour) bath_fan = hpxml.ventilation_fans.select { |f| f.used_for_local_ventilation && f.fan_location == HPXML::LocationBath }[0] assert_equal(quantity, bath_fan.quantity) - assert_equal(isdefaulted, bath_fan.quantity_isdefaulted) - assert_equal(rated_flow_rate, bath_fan.rated_flow_rate) - assert_equal(isdefaulted, bath_fan.rated_flow_rate_isdefaulted) - assert_equal(hours_in_operation, bath_fan.hours_in_operation) - assert_equal(isdefaulted, bath_fan.hours_in_operation_isdefaulted) - assert_equal(fan_power, bath_fan.fan_power) - assert_equal(isdefaulted, bath_fan.fan_power_isdefaulted) - assert_equal(start_hour, bath_fan.start_hour) - assert_equal(isdefaulted, bath_fan.start_hour_isdefaulted) end - def _test_default_storage_water_heater_values(hpxml, isdefaulted, *expected_wh_values) + def _test_default_storage_water_heater_values(hpxml, *expected_wh_values) storage_water_heaters = hpxml.water_heating_systems.select { |w| w.water_heater_type == HPXML::WaterHeaterTypeStorage } assert_equal(expected_wh_values.size, storage_water_heaters.size) storage_water_heaters.each_with_index do |wh_system, idx| is_shared, heating_capacity, tank_volume, recovery_efficiency, location = expected_wh_values[idx] assert_equal(is_shared, wh_system.is_shared_system) - assert_equal(isdefaulted, wh_system.is_shared_system_isdefaulted) - assert_in_epsilon(heating_capacity, wh_system.heating_capacity, 0.01) - assert_equal(isdefaulted, wh_system.heating_capacity_isdefaulted) - assert_equal(tank_volume, wh_system.tank_volume) - assert_equal(isdefaulted, wh_system.tank_volume_isdefaulted) - assert_in_epsilon(recovery_efficiency, wh_system.recovery_efficiency, 0.01) - assert_equal(isdefaulted, wh_system.recovery_efficiency_isdefaulted) - assert_equal(location, wh_system.location) - assert_equal(isdefaulted, wh_system.location_isdefaulted) end end - def _test_default_tankless_water_heater_values(hpxml, isdefaulted, *expected_wh_values) + def _test_default_tankless_water_heater_values(hpxml, *expected_wh_values) tankless_water_heaters = hpxml.water_heating_systems.select { |w| w.water_heater_type == HPXML::WaterHeaterTypeTankless } assert_equal(expected_wh_values.size, tankless_water_heaters.size) tankless_water_heaters.each_with_index do |wh_system, idx| performance_adjustment, = expected_wh_values[idx] assert_equal(performance_adjustment, wh_system.performance_adjustment) - assert_equal(isdefaulted, wh_system.performance_adjustment_isdefaulted) end end - def _test_default_standard_distribution_values(hpxml, isdefaulted, piping_length, pipe_r_value) + def _test_default_standard_distribution_values(hpxml, piping_length, pipe_r_value) hot_water_distribution = hpxml.hot_water_distributions[0] assert_in_epsilon(piping_length, hot_water_distribution.standard_piping_length, 0.01) - assert_equal(isdefaulted, hot_water_distribution.standard_piping_length_isdefaulted) - assert_equal(pipe_r_value, hot_water_distribution.pipe_r_value) - assert_equal(isdefaulted, hot_water_distribution.pipe_r_value_isdefaulted) end - def _test_default_recirc_distribution_values(hpxml, isdefaulted, piping_length, branch_piping_length, pump_power, pipe_r_value) + def _test_default_recirc_distribution_values(hpxml, piping_length, branch_piping_length, pump_power, pipe_r_value) hot_water_distribution = hpxml.hot_water_distributions[0] assert_in_epsilon(piping_length, hot_water_distribution.recirculation_piping_length, 0.01) - assert_equal(isdefaulted, hot_water_distribution.recirculation_piping_length_isdefaulted) - assert_in_epsilon(branch_piping_length, hot_water_distribution.recirculation_branch_piping_length, 0.01) - assert_equal(isdefaulted, hot_water_distribution.recirculation_branch_piping_length_isdefaulted) - assert_in_epsilon(pump_power, hot_water_distribution.recirculation_pump_power, 0.01) - assert_equal(isdefaulted, hot_water_distribution.recirculation_pump_power_isdefaulted) - assert_equal(pipe_r_value, hot_water_distribution.pipe_r_value) - assert_equal(isdefaulted, hot_water_distribution.pipe_r_value_isdefaulted) end - def _test_default_shared_recirc_distribution_values(hpxml, isdefaulted, pump_power) + def _test_default_shared_recirc_distribution_values(hpxml, pump_power) hot_water_distribution = hpxml.hot_water_distributions[0] assert_in_epsilon(pump_power, hot_water_distribution.shared_recirculation_pump_power, 0.01) - assert_equal(isdefaulted, hot_water_distribution.shared_recirculation_pump_power_isdefaulted) end - def _test_default_water_fixture_values(hpxml, isdefaulted, usage_multiplier) + def _test_default_water_fixture_values(hpxml, usage_multiplier) assert_equal(usage_multiplier, hpxml.water_heating.water_fixtures_usage_multiplier) - assert_equal(isdefaulted, hpxml.water_heating.water_fixtures_usage_multiplier_isdefaulted) end - def _test_default_solar_thermal_values(hpxml, isdefaulted, storage_volume) + def _test_default_solar_thermal_values(hpxml, storage_volume) solar_thermal_system = hpxml.solar_thermal_systems[0] assert_equal(storage_volume, solar_thermal_system.storage_volume) - assert_equal(isdefaulted, solar_thermal_system.storage_volume_isdefaulted) end - def _test_default_pv_system_values(hpxml, isdefaulted, interver_efficiency, system_loss_frac, is_shared_system, location, tracking, module_type) + def _test_default_pv_system_values(hpxml, interver_efficiency, system_loss_frac, is_shared_system, location, tracking, module_type) hpxml.pv_systems.each_with_index do |pv, idx| assert_equal(is_shared_system, pv.is_shared_system) - assert_equal(isdefaulted, pv.is_shared_system_isdefaulted) - assert_equal(interver_efficiency, pv.inverter_efficiency) - assert_equal(isdefaulted, pv.inverter_efficiency_isdefaulted) - assert_in_epsilon(system_loss_frac, pv.system_losses_fraction, 0.01) - assert_equal(isdefaulted, pv.system_losses_fraction_isdefaulted) - assert_equal(location, pv.location) - assert_equal(isdefaulted, pv.location_isdefaulted) - assert_equal(tracking, pv.tracking) - assert_equal(isdefaulted, pv.tracking_isdefaulted) - assert_equal(module_type, pv.module_type) - assert_equal(isdefaulted, pv.module_type_isdefaulted) end end - def _test_default_generator_values(hpxml, isdefaulted, is_shared_system) + def _test_default_generator_values(hpxml, is_shared_system) hpxml.generators.each_with_index do |generator, idx| assert_equal(is_shared_system, generator.is_shared_system) - assert_equal(isdefaulted, generator.is_shared_system_isdefaulted) end end - def _test_default_clothes_washer_values(hpxml, isdefaulted, is_shared, location, imef, rated_annual_kwh, label_electric_rate, label_gas_rate, label_annual_gas_cost, capacity, label_usage, usage_multiplier) + def _test_default_clothes_washer_values(hpxml, is_shared, location, imef, rated_annual_kwh, label_electric_rate, label_gas_rate, label_annual_gas_cost, capacity, label_usage, usage_multiplier) clothes_washer = hpxml.clothes_washers[0] assert_equal(is_shared, clothes_washer.is_shared_appliance) - assert_equal(isdefaulted, clothes_washer.is_shared_appliance_isdefaulted) - assert_equal(location, clothes_washer.location) - assert_equal(isdefaulted, clothes_washer.location_isdefaulted) - assert_equal(imef, clothes_washer.integrated_modified_energy_factor) - assert_equal(isdefaulted, clothes_washer.integrated_modified_energy_factor_isdefaulted) - assert_equal(rated_annual_kwh, clothes_washer.rated_annual_kwh) - assert_equal(isdefaulted, clothes_washer.rated_annual_kwh_isdefaulted) - assert_equal(label_electric_rate, clothes_washer.label_electric_rate) - assert_equal(isdefaulted, clothes_washer.label_electric_rate_isdefaulted) - assert_equal(label_gas_rate, clothes_washer.label_gas_rate) - assert_equal(isdefaulted, clothes_washer.label_gas_rate_isdefaulted) - assert_equal(label_annual_gas_cost, clothes_washer.label_annual_gas_cost) - assert_equal(isdefaulted, clothes_washer.label_annual_gas_cost_isdefaulted) - assert_equal(capacity, clothes_washer.capacity) - assert_equal(isdefaulted, clothes_washer.capacity_isdefaulted) - assert_equal(label_usage, clothes_washer.label_usage) - assert_equal(isdefaulted, clothes_washer.label_usage_isdefaulted) - assert_equal(usage_multiplier, clothes_washer.usage_multiplier) - assert_equal(isdefaulted, clothes_washer.usage_multiplier_isdefaulted) end - def _test_default_clothes_dryer_values(hpxml, isdefaulted, is_shared, location, control_type, cef, usage_multiplier) + def _test_default_clothes_dryer_values(hpxml, is_shared, location, cef, usage_multiplier) clothes_dryer = hpxml.clothes_dryers[0] assert_equal(is_shared, clothes_dryer.is_shared_appliance) - assert_equal(isdefaulted, clothes_dryer.is_shared_appliance_isdefaulted) - assert_equal(location, clothes_dryer.location) - assert_equal(isdefaulted, clothes_dryer.location_isdefaulted) - - assert_equal(control_type, clothes_dryer.control_type) - assert_equal(isdefaulted, clothes_dryer.control_type_isdefaulted) - assert_equal(cef, clothes_dryer.combined_energy_factor) - assert_equal(isdefaulted, clothes_dryer.combined_energy_factor_isdefaulted) - assert_equal(usage_multiplier, clothes_dryer.usage_multiplier) - assert_equal(isdefaulted, clothes_dryer.usage_multiplier_isdefaulted) end - def _test_default_clothes_dryer_exhaust_values(hpxml, isdefaulted, is_vented, vented_flow_rate) + def _test_default_clothes_dryer_exhaust_values(hpxml, is_vented, vented_flow_rate) clothes_dryer = hpxml.clothes_dryers[0] assert_equal(is_vented, clothes_dryer.is_vented) - assert_equal(isdefaulted, clothes_dryer.is_vented_isdefaulted) - if vented_flow_rate.nil? assert_nil(clothes_dryer.vented_flow_rate) else assert_equal(vented_flow_rate, clothes_dryer.vented_flow_rate) - assert_equal(isdefaulted, clothes_dryer.vented_flow_rate_isdefaulted) end end - def _test_default_dishwasher_values(hpxml, isdefaulted, is_shared, location, rated_annual_kwh, label_electric_rate, label_gas_rate, label_annual_gas_cost, label_usage, place_setting_capacity, usage_multiplier) + def _test_default_dishwasher_values(hpxml, is_shared, location, rated_annual_kwh, label_electric_rate, label_gas_rate, label_annual_gas_cost, label_usage, place_setting_capacity, usage_multiplier) dishwasher = hpxml.dishwashers[0] assert_equal(is_shared, dishwasher.is_shared_appliance) - assert_equal(isdefaulted, dishwasher.is_shared_appliance_isdefaulted) - assert_equal(location, dishwasher.location) - assert_equal(isdefaulted, dishwasher.location_isdefaulted) - assert_equal(rated_annual_kwh, dishwasher.rated_annual_kwh) - assert_equal(isdefaulted, dishwasher.rated_annual_kwh_isdefaulted) - assert_equal(label_electric_rate, dishwasher.label_electric_rate) - assert_equal(isdefaulted, dishwasher.label_electric_rate_isdefaulted) - assert_equal(label_gas_rate, dishwasher.label_gas_rate) - assert_equal(isdefaulted, dishwasher.label_gas_rate_isdefaulted) - assert_equal(label_annual_gas_cost, dishwasher.label_annual_gas_cost) - assert_equal(isdefaulted, dishwasher.label_annual_gas_cost_isdefaulted) - assert_equal(label_usage, dishwasher.label_usage) - assert_equal(isdefaulted, dishwasher.label_usage_isdefaulted) - assert_equal(place_setting_capacity, dishwasher.place_setting_capacity) - assert_equal(isdefaulted, dishwasher.place_setting_capacity_isdefaulted) - assert_equal(usage_multiplier, dishwasher.usage_multiplier) - assert_equal(isdefaulted, dishwasher.usage_multiplier_isdefaulted) end - def _test_default_refrigerator_values(hpxml, isdefaulted, location, rated_annual_kwh, usage_multiplier, weekday_sch, weekend_sch, monthly_mults) + def _test_default_refrigerator_values(hpxml, location, rated_annual_kwh, usage_multiplier, weekday_sch, weekend_sch, monthly_mults) hpxml.refrigerators.each do |refrigerator| next unless refrigerator.primary_indicator assert_equal(location, refrigerator.location) - assert_equal(isdefaulted, refrigerator.location_isdefaulted) - assert_equal(rated_annual_kwh, refrigerator.rated_annual_kwh) - assert_equal(isdefaulted, refrigerator.rated_annual_kwh_isdefaulted) - assert_equal(usage_multiplier, refrigerator.usage_multiplier) - assert_equal(isdefaulted, refrigerator.usage_multiplier_isdefaulted) - if weekday_sch.nil? assert_nil(refrigerator.weekday_fractions) else assert_equal(weekday_sch, refrigerator.weekday_fractions) - assert_equal(isdefaulted, refrigerator.weekday_fractions_isdefaulted) end - if weekend_sch.nil? assert_nil(refrigerator.weekend_fractions) else assert_equal(weekend_sch, refrigerator.weekend_fractions) - assert_equal(isdefaulted, refrigerator.weekend_fractions_isdefaulted) end - if monthly_mults.nil? assert_nil(refrigerator.monthly_multipliers) else assert_equal(monthly_mults, refrigerator.monthly_multipliers) - assert_equal(isdefaulted, refrigerator.monthly_multipliers_isdefaulted) end end end - def _test_default_extra_refrigerators_values(hpxml, isdefaulted, location, rated_annual_kwh, usage_multiplier, weekday_sch, weekend_sch, monthly_mults) + def _test_default_extra_refrigerators_values(hpxml, location, rated_annual_kwh, usage_multiplier, weekday_sch, weekend_sch, monthly_mults) hpxml.refrigerators.each do |refrigerator| next if refrigerator.primary_indicator assert_equal(location, refrigerator.location) - assert_equal(isdefaulted, refrigerator.location_isdefaulted) - assert_in_epsilon(rated_annual_kwh, refrigerator.rated_annual_kwh, 0.01) - assert_equal(isdefaulted, refrigerator.rated_annual_kwh_isdefaulted) - assert_equal(usage_multiplier, refrigerator.usage_multiplier) - assert_equal(isdefaulted, refrigerator.usage_multiplier_isdefaulted) - if weekday_sch.nil? assert_nil(refrigerator.weekday_fractions) else assert_equal(weekday_sch, refrigerator.weekday_fractions) - assert_equal(isdefaulted, refrigerator.weekday_fractions_isdefaulted) end - if weekend_sch.nil? assert_nil(refrigerator.weekend_fractions) else assert_equal(weekend_sch, refrigerator.weekend_fractions) - assert_equal(isdefaulted, refrigerator.weekend_fractions_isdefaulted) end - if monthly_mults.nil? assert_nil(refrigerator.monthly_multipliers) else assert_equal(monthly_mults, refrigerator.monthly_multipliers) - assert_equal(isdefaulted, refrigerator.monthly_multipliers_isdefaulted) end end end - def _test_default_freezers_values(hpxml, isdefaulted, location, rated_annual_kwh, usage_multiplier, weekday_sch, weekend_sch, monthly_mults) + def _test_default_freezers_values(hpxml, location, rated_annual_kwh, usage_multiplier, weekday_sch, weekend_sch, monthly_mults) hpxml.freezers.each do |freezer| assert_equal(location, freezer.location) - assert_equal(isdefaulted, freezer.location_isdefaulted) - assert_in_epsilon(rated_annual_kwh, freezer.rated_annual_kwh, 0.01) - assert_equal(isdefaulted, freezer.rated_annual_kwh_isdefaulted) - assert_equal(usage_multiplier, freezer.usage_multiplier) - assert_equal(isdefaulted, freezer.usage_multiplier_isdefaulted) - if weekday_sch.nil? assert_nil(freezer.weekday_fractions) else assert_equal(weekday_sch, freezer.weekday_fractions) - assert_equal(isdefaulted, freezer.weekday_fractions_isdefaulted) end - if weekend_sch.nil? assert_nil(freezer.weekend_fractions) else assert_equal(weekend_sch, freezer.weekend_fractions) - assert_equal(isdefaulted, freezer.weekend_fractions_isdefaulted) end - if monthly_mults.nil? assert_nil(freezer.monthly_multipliers) else assert_equal(monthly_mults, freezer.monthly_multipliers) - assert_equal(isdefaulted, freezer.monthly_multipliers_isdefaulted) end end end - def _test_default_cooking_range_values(hpxml, isdefaulted, location, is_induction, usage_multiplier, weekday_sch, weekend_sch, monthly_mults) + def _test_default_cooking_range_values(hpxml, location, is_induction, usage_multiplier, weekday_sch, weekend_sch, monthly_mults) cooking_range = hpxml.cooking_ranges[0] assert_equal(location, cooking_range.location) - assert_equal(isdefaulted, cooking_range.location_isdefaulted) - assert_equal(is_induction, cooking_range.is_induction) - assert_equal(isdefaulted, cooking_range.is_induction_isdefaulted) - assert_equal(usage_multiplier, cooking_range.usage_multiplier) - assert_equal(isdefaulted, cooking_range.usage_multiplier_isdefaulted) - if weekday_sch.nil? assert_nil(cooking_range.weekday_fractions) else assert_equal(weekday_sch, cooking_range.weekday_fractions) - assert_equal(isdefaulted, cooking_range.weekday_fractions_isdefaulted) end - if weekend_sch.nil? assert_nil(cooking_range.weekend_fractions) else assert_equal(weekend_sch, cooking_range.weekend_fractions) - assert_equal(isdefaulted, cooking_range.weekend_fractions_isdefaulted) end - if monthly_mults.nil? assert_nil(cooking_range.monthly_multipliers) else assert_equal(monthly_mults, cooking_range.monthly_multipliers) - assert_equal(isdefaulted, cooking_range.monthly_multipliers_isdefaulted) end end - def _test_default_oven_values(hpxml, isdefaulted, is_convection) + def _test_default_oven_values(hpxml, is_convection) oven = hpxml.ovens[0] assert_equal(is_convection, oven.is_convection) - assert_equal(isdefaulted, oven.is_convection_isdefaulted) end - def _test_default_lighting_values(hpxml, isdefaulted, interior_usage_multiplier, garage_usage_multiplier, exterior_usage_multiplier, schedules = {}) + def _test_default_lighting_values(hpxml, interior_usage_multiplier, garage_usage_multiplier, exterior_usage_multiplier, schedules = {}) assert_equal(interior_usage_multiplier, hpxml.lighting.interior_usage_multiplier) - assert_equal(isdefaulted, hpxml.lighting.interior_usage_multiplier_isdefaulted) - assert_equal(garage_usage_multiplier, hpxml.lighting.garage_usage_multiplier) - assert_equal(isdefaulted, hpxml.lighting.garage_usage_multiplier_isdefaulted) - assert_equal(exterior_usage_multiplier, hpxml.lighting.exterior_usage_multiplier) - assert_equal(isdefaulted, hpxml.lighting.exterior_usage_multiplier_isdefaulted) - if not schedules[:grg_wk_sch].nil? assert_equal(schedules[:grg_wk_sch], hpxml.lighting.garage_weekday_fractions) - assert_equal(isdefaulted, hpxml.lighting.garage_weekday_fractions_isdefaulted) else assert_nil(hpxml.lighting.garage_weekday_fractions) end - if not schedules[:grg_wknd_sch].nil? assert_equal(schedules[:grg_wknd_sch], hpxml.lighting.garage_weekend_fractions) - assert_equal(isdefaulted, hpxml.lighting.garage_weekend_fractions_isdefaulted) else assert_nil(hpxml.lighting.garage_weekend_fractions) end - if not schedules[:grg_month_mult].nil? assert_equal(schedules[:grg_month_mult], hpxml.lighting.garage_monthly_multipliers) - assert_equal(isdefaulted, hpxml.lighting.garage_monthly_multipliers_isdefaulted) else assert_nil(hpxml.lighting.garage_monthly_multipliers) end - if not schedules[:ext_wk_sch].nil? assert_equal(schedules[:ext_wk_sch], hpxml.lighting.exterior_weekday_fractions) - assert_equal(isdefaulted, hpxml.lighting.exterior_weekday_fractions_isdefaulted) else assert_nil(hpxml.lighting.exterior_weekday_fractions) end - if not schedules[:ext_wknd_sch].nil? assert_equal(schedules[:ext_wknd_sch], hpxml.lighting.exterior_weekend_fractions) - assert_equal(isdefaulted, hpxml.lighting.exterior_weekend_fractions_isdefaulted) else assert_nil(hpxml.lighting.exterior_weekday_fractions) end - if not schedules[:ext_month_mult].nil? assert_equal(schedules[:ext_month_mult], hpxml.lighting.exterior_monthly_multipliers) - assert_equal(isdefaulted, hpxml.lighting.exterior_monthly_multipliers_isdefaulted) else assert_nil(hpxml.lighting.exterior_monthly_multipliers) end - if not schedules[:hol_kwh_per_day].nil? assert_equal(schedules[:hol_kwh_per_day], hpxml.lighting.holiday_kwh_per_day) - assert_equal(isdefaulted, hpxml.lighting.holiday_kwh_per_day_isdefaulted) else assert_nil(hpxml.lighting.holiday_kwh_per_day) end - if not schedules[:hol_begin_month].nil? assert_equal(schedules[:hol_begin_month], hpxml.lighting.holiday_period_begin_month) - assert_equal(isdefaulted, hpxml.lighting.holiday_period_begin_month_isdefaulted) else assert_nil(hpxml.lighting.holiday_period_begin_month) end - if not schedules[:hol_begin_day].nil? assert_equal(schedules[:hol_begin_day], hpxml.lighting.holiday_period_begin_day) - assert_equal(isdefaulted, hpxml.lighting.holiday_period_begin_day_isdefaulted) else assert_nil(hpxml.lighting.holiday_period_begin_day) end - if not schedules[:hol_end_month].nil? assert_equal(schedules[:hol_end_month], hpxml.lighting.holiday_period_end_month) - assert_equal(isdefaulted, hpxml.lighting.holiday_period_end_month_isdefaulted) else assert_nil(hpxml.lighting.holiday_period_end_month) end - if not schedules[:hol_end_day].nil? assert_equal(schedules[:hol_end_day], hpxml.lighting.holiday_period_end_day) - assert_equal(isdefaulted, hpxml.lighting.holiday_period_end_day_isdefaulted) else assert_nil(hpxml.lighting.holiday_period_end_day) end - if not schedules[:hol_wk_sch].nil? assert_equal(schedules[:hol_wk_sch], hpxml.lighting.holiday_weekday_fractions) - assert_equal(isdefaulted, hpxml.lighting.holiday_weekday_fractions_isdefaulted) else assert_nil(hpxml.lighting.holiday_weekday_fractions) end - if not schedules[:hol_wknd_sch].nil? assert_equal(schedules[:hol_wknd_sch], hpxml.lighting.holiday_weekend_fractions) - assert_equal(isdefaulted, hpxml.lighting.holiday_weekend_fractions_isdefaulted) else assert_nil(hpxml.lighting.holiday_weekend_fractions) end end - def _test_default_ceiling_fan_values(hpxml, isdefaulted, quantity, efficiency) + def _test_default_ceiling_fan_values(hpxml, quantity, efficiency) ceiling_fan = hpxml.ceiling_fans[0] assert_equal(quantity, ceiling_fan.quantity) - assert_equal(isdefaulted, ceiling_fan.quantity_isdefaulted) - assert_in_epsilon(efficiency, ceiling_fan.efficiency, 0.01) - assert_equal(isdefaulted, ceiling_fan.efficiency_isdefaulted) end - def _test_default_pool_heater_values(hpxml, isdefaulted, load_units, load_value, usage_multiplier, weekday_sch, weekend_sch, monthly_mults) + def _test_default_pool_heater_values(hpxml, load_units, load_value, usage_multiplier, weekday_sch, weekend_sch, monthly_mults) pool = hpxml.pools[0] if load_units.nil? @@ -2664,63 +2607,44 @@ def _test_default_pool_heater_values(hpxml, isdefaulted, load_units, load_value, else assert_equal(load_units, pool.heater_load_units) end - if load_value.nil? assert_nil(pool.heater_load_value) else assert_in_epsilon(load_value, pool.heater_load_value, 0.01) - assert_equal(isdefaulted, pool.heater_load_value_isdefaulted) end - if usage_multiplier.nil? assert_nil(pool.heater_usage_multiplier) else assert_equal(usage_multiplier, pool.heater_usage_multiplier) - assert_equal(isdefaulted, pool.heater_usage_multiplier_isdefaulted) end - if weekday_sch.nil? assert_nil(pool.heater_weekday_fractions) else assert_equal(weekday_sch, pool.heater_weekday_fractions) - assert_equal(isdefaulted, pool.heater_weekday_fractions_isdefaulted) end - if weekend_sch.nil? assert_nil(pool.heater_weekend_fractions) else assert_equal(weekend_sch, pool.heater_weekend_fractions) - assert_equal(isdefaulted, pool.heater_weekend_fractions_isdefaulted) end - if monthly_mults.nil? assert_nil(pool.heater_monthly_multipliers) else assert_equal(monthly_mults, pool.heater_monthly_multipliers) - assert_equal(isdefaulted, pool.heater_monthly_multipliers_isdefaulted) end end - def _test_default_pool_pump_values(hpxml, isdefaulted, kWh_per_year, usage_multiplier, weekday_sch, weekend_sch, monthly_mults) + def _test_default_pool_pump_values(hpxml, kWh_per_year, usage_multiplier, weekday_sch, weekend_sch, monthly_mults) pool = hpxml.pools[0] assert_in_epsilon(kWh_per_year, pool.pump_kwh_per_year, 0.01) - assert_equal(isdefaulted, pool.pump_kwh_per_year_isdefaulted) - assert_equal(usage_multiplier, pool.pump_usage_multiplier) - assert_equal(isdefaulted, pool.pump_usage_multiplier_isdefaulted) - assert_equal(weekday_sch, pool.pump_weekday_fractions) - assert_equal(isdefaulted, pool.pump_weekday_fractions_isdefaulted) - assert_equal(weekend_sch, pool.pump_weekend_fractions) - assert_equal(isdefaulted, pool.pump_weekend_fractions_isdefaulted) - assert_equal(monthly_mults, pool.pump_monthly_multipliers) - assert_equal(isdefaulted, pool.pump_monthly_multipliers_isdefaulted) end - def _test_default_hot_tub_heater_values(hpxml, isdefaulted, load_units, load_value, usage_multiplier, weekday_sch, weekend_sch, monthly_mults) + def _test_default_hot_tub_heater_values(hpxml, load_units, load_value, usage_multiplier, weekday_sch, weekend_sch, monthly_mults) hot_tub = hpxml.hot_tubs[0] if load_units.nil? @@ -2728,110 +2652,65 @@ def _test_default_hot_tub_heater_values(hpxml, isdefaulted, load_units, load_val else assert_equal(load_units, hot_tub.heater_load_units) end - if load_value.nil? assert_nil(hot_tub.heater_load_value) else assert_in_epsilon(load_value, hot_tub.heater_load_value, 0.01) - assert_equal(isdefaulted, hot_tub.heater_load_value_isdefaulted) end - if usage_multiplier.nil? assert_nil(hot_tub.heater_usage_multiplier) else assert_equal(usage_multiplier, hot_tub.heater_usage_multiplier) - assert_equal(isdefaulted, hot_tub.heater_usage_multiplier_isdefaulted) end - if weekday_sch.nil? assert_nil(hot_tub.heater_weekday_fractions) else assert_equal(weekday_sch, hot_tub.heater_weekday_fractions) - assert_equal(isdefaulted, hot_tub.heater_weekday_fractions_isdefaulted) end - if weekend_sch.nil? assert_nil(hot_tub.heater_weekend_fractions) else assert_equal(weekend_sch, hot_tub.heater_weekend_fractions) - assert_equal(isdefaulted, hot_tub.heater_weekend_fractions_isdefaulted) end - if monthly_mults.nil? assert_nil(hot_tub.heater_monthly_multipliers) else assert_equal(monthly_mults, hot_tub.heater_monthly_multipliers) - assert_equal(isdefaulted, hot_tub.heater_monthly_multipliers_isdefaulted) end end - def _test_default_hot_tub_pump_values(hpxml, isdefaulted, kWh_per_year, usage_multiplier, weekday_sch, weekend_sch, monthly_mults) + def _test_default_hot_tub_pump_values(hpxml, kWh_per_year, usage_multiplier, weekday_sch, weekend_sch, monthly_mults) hot_tub = hpxml.hot_tubs[0] assert_in_epsilon(kWh_per_year, hot_tub.pump_kwh_per_year, 0.01) - assert_equal(isdefaulted, hot_tub.pump_kwh_per_year_isdefaulted) - assert_equal(usage_multiplier, hot_tub.pump_usage_multiplier) - assert_equal(isdefaulted, hot_tub.pump_usage_multiplier_isdefaulted) - assert_equal(weekday_sch, hot_tub.pump_weekday_fractions) - assert_equal(isdefaulted, hot_tub.pump_weekday_fractions_isdefaulted) - assert_equal(weekend_sch, hot_tub.pump_weekend_fractions) - assert_equal(isdefaulted, hot_tub.pump_weekend_fractions_isdefaulted) - assert_equal(monthly_mults, hot_tub.pump_monthly_multipliers) - assert_equal(isdefaulted, hot_tub.pump_monthly_multipliers_isdefaulted) end - def _test_default_plug_load_values(hpxml, isdefaulted, load_type, kWh_per_year, frac_sensible, frac_latent, usage_multiplier, weekday_sch, weekend_sch, monthly_mults) + def _test_default_plug_load_values(hpxml, load_type, kWh_per_year, frac_sensible, frac_latent, usage_multiplier, weekday_sch, weekend_sch, monthly_mults) pl = hpxml.plug_loads.select { |pl| pl.plug_load_type == load_type }[0] assert_in_epsilon(kWh_per_year, pl.kWh_per_year, 0.01) - assert_equal(isdefaulted, pl.kWh_per_year_isdefaulted) - assert_equal(usage_multiplier, pl.usage_multiplier) - assert_equal(isdefaulted, pl.usage_multiplier_isdefaulted) - assert_in_epsilon(frac_sensible, pl.frac_sensible, 0.01) - assert_equal(isdefaulted, pl.frac_sensible_isdefaulted) - assert_in_epsilon(frac_latent, pl.frac_latent, 0.01) - assert_equal(isdefaulted, pl.frac_latent_isdefaulted) - assert_equal(weekday_sch, pl.weekday_fractions) - assert_equal(isdefaulted, pl.weekday_fractions_isdefaulted) - assert_equal(weekend_sch, pl.weekend_fractions) - assert_equal(isdefaulted, pl.weekend_fractions_isdefaulted) - assert_equal(monthly_mults, pl.monthly_multipliers) - assert_equal(isdefaulted, pl.monthly_multipliers_isdefaulted) end - def _test_default_fuel_load_values(hpxml, isdefaulted, load_type, therm_per_year, frac_sensible, frac_latent, usage_multiplier, weekday_sch, weekend_sch, monthly_mults) + def _test_default_fuel_load_values(hpxml, load_type, therm_per_year, frac_sensible, frac_latent, usage_multiplier, weekday_sch, weekend_sch, monthly_mults) fl = hpxml.fuel_loads.select { |fl| fl.fuel_load_type == load_type }[0] assert_in_epsilon(therm_per_year, fl.therm_per_year, 0.01) - assert_equal(isdefaulted, fl.therm_per_year_isdefaulted) - assert_equal(usage_multiplier, fl.usage_multiplier) - assert_equal(isdefaulted, fl.usage_multiplier_isdefaulted) - assert_in_epsilon(frac_sensible, fl.frac_sensible, 0.01) - assert_equal(isdefaulted, fl.frac_sensible_isdefaulted) - assert_in_epsilon(frac_latent, fl.frac_latent, 0.01) - assert_equal(isdefaulted, fl.frac_latent_isdefaulted) - assert_equal(weekday_sch, fl.weekday_fractions) - assert_equal(isdefaulted, fl.weekday_fractions_isdefaulted) - assert_equal(weekend_sch, fl.weekend_fractions) - assert_equal(isdefaulted, fl.weekend_fractions_isdefaulted) - assert_equal(monthly_mults, fl.monthly_multipliers) - assert_equal(isdefaulted, fl.monthly_multipliers_isdefaulted) end def _create_hpxml(hpxml_name) diff --git a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_generator.rb b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_generator.rb index db1110f7..053a4c1e 100644 --- a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_generator.rb +++ b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_generator.rb @@ -70,6 +70,7 @@ def _test_measure(args_hash) model = OpenStudio::Model::Model.new # get arguments + args_hash['output_dir'] = 'tests' arguments = measure.arguments(model) argument_map = OpenStudio::Measure.convertOSArgumentVectorToMap(arguments) @@ -94,6 +95,8 @@ def _test_measure(args_hash) hpxml = HPXML.new(hpxml_path: args_hash['hpxml_path']) + File.delete(File.join(File.dirname(__FILE__), 'in.xml')) + return model, hpxml end end diff --git a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_hotwater_appliance.rb b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_hotwater_appliance.rb index 91b2f992..d446c82f 100644 --- a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_hotwater_appliance.rb +++ b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_hotwater_appliance.rb @@ -69,7 +69,7 @@ def get_oe_fuel(model, name) if fuel.empty? return elsif fuel.uniq.size != 1 - fail 'different fuels' + flunk 'different fuels' else return fuel[0] end @@ -972,6 +972,7 @@ def _test_measure(args_hash) model = OpenStudio::Model::Model.new # get arguments + args_hash['output_dir'] = 'tests' arguments = measure.arguments(model) argument_map = OpenStudio::Measure.convertOSArgumentVectorToMap(arguments) @@ -996,6 +997,8 @@ def _test_measure(args_hash) hpxml = HPXML.new(hpxml_path: args_hash['hpxml_path']) + File.delete(File.join(File.dirname(__FILE__), 'in.xml')) + return model, hpxml end end diff --git a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_hvac.rb b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_hvac.rb index 6a06553f..f7338848 100644 --- a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_hvac.rb +++ b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_hvac.rb @@ -28,6 +28,12 @@ def test_central_air_conditioner_1_speed cop = 4.0 # Expected value assert_in_epsilon(cop, clg_coil.ratedCOP.get, 0.01) assert_in_epsilon(capacity, clg_coil.ratedTotalCoolingCapacity.get, 0.01) + + # Check EMS + assert_equal(1, model.getAirLoopHVACUnitarySystems.size) + unitary_system = model.getAirLoopHVACUnitarySystems[0] + program_values = _get_ems_values(model.getEnergyManagementSystemPrograms, "#{unitary_system.name} install quality") + assert(program_values.empty?) # Check no EMS program end def test_central_air_conditioner_2_speed @@ -47,6 +53,12 @@ def test_central_air_conditioner_2_speed assert_in_epsilon(cop, clg_coil.stages[i].grossRatedCoolingCOP, 0.01) end assert_in_epsilon(capacity, clg_coil.stages[-1].grossRatedTotalCoolingCapacity.get, 0.01) + + # Check EMS + assert_equal(1, model.getAirLoopHVACUnitarySystems.size) + unitary_system = model.getAirLoopHVACUnitarySystems[0] + program_values = _get_ems_values(model.getEnergyManagementSystemPrograms, "#{unitary_system.name} install quality") + assert(program_values.empty?) # Check no EMS program end def test_central_air_conditioner_var_speed @@ -66,6 +78,12 @@ def test_central_air_conditioner_var_speed assert_in_epsilon(cop, clg_coil.stages[i].grossRatedCoolingCOP, 0.01) end assert_in_epsilon(capacity, clg_coil.stages[-1].grossRatedTotalCoolingCapacity.get, 0.01) + + # Check EMS + assert_equal(1, model.getAirLoopHVACUnitarySystems.size) + unitary_system = model.getAirLoopHVACUnitarySystems[0] + program_values = _get_ems_values(model.getEnergyManagementSystemPrograms, "#{unitary_system.name} install quality") + assert(program_values.empty?) # Check no EMS program end def test_room_air_conditioner @@ -86,6 +104,10 @@ def test_room_air_conditioner assert_in_epsilon(capacity, clg_coil.ratedTotalCoolingCapacity.get, 0.01) end + def test_evap_cooler + # TODO + end + def test_furnace_gas args_hash = {} args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base-hvac-furnace-gas-only.xml')) @@ -215,7 +237,7 @@ def test_stove_oil assert_equal(EPlus.fuel_type(fuel), htg_coil.fuelType) end - def test_central_air_to_air_heat_pump_1_speed + def test_air_to_air_heat_pump_1_speed args_hash = {} args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base-hvac-air-to-air-heat-pump-1-speed.xml')) model, hpxml = _test_measure(args_hash) @@ -246,9 +268,15 @@ def test_central_air_to_air_heat_pump_1_speed supp_htg_coil = model.getCoilHeatingElectrics[0] assert_in_epsilon(backup_efficiency, supp_htg_coil.efficiency, 0.01) assert_in_epsilon(supp_htg_capacity, supp_htg_coil.nominalCapacity.get, 0.01) + + # Check EMS + assert_equal(1, model.getAirLoopHVACUnitarySystems.size) + unitary_system = model.getAirLoopHVACUnitarySystems[0] + program_values = _get_ems_values(model.getEnergyManagementSystemPrograms, "#{unitary_system.name} install quality") + assert(program_values.empty?) # Check no EMS program end - def test_central_air_to_air_heat_pump_2_speed + def test_air_to_air_heat_pump_2_speed args_hash = {} args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base-hvac-air-to-air-heat-pump-2-speed.xml')) model, hpxml = _test_measure(args_hash) @@ -283,9 +311,15 @@ def test_central_air_to_air_heat_pump_2_speed supp_htg_coil = model.getCoilHeatingElectrics[0] assert_in_epsilon(backup_efficiency, supp_htg_coil.efficiency, 0.01) assert_in_epsilon(supp_htg_capacity, supp_htg_coil.nominalCapacity.get, 0.01) + + # Check EMS + assert_equal(1, model.getAirLoopHVACUnitarySystems.size) + unitary_system = model.getAirLoopHVACUnitarySystems[0] + program_values = _get_ems_values(model.getEnergyManagementSystemPrograms, "#{unitary_system.name} install quality") + assert(program_values.empty?) # Check no EMS program end - def test_central_air_to_air_heat_pump_var_speed + def test_air_to_air_heat_pump_var_speed args_hash = {} args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base-hvac-air-to-air-heat-pump-var-speed.xml')) model, hpxml = _test_measure(args_hash) @@ -320,6 +354,12 @@ def test_central_air_to_air_heat_pump_var_speed supp_htg_coil = model.getCoilHeatingElectrics[0] assert_in_epsilon(backup_efficiency, supp_htg_coil.efficiency, 0.01) assert_in_epsilon(supp_htg_capacity, supp_htg_coil.nominalCapacity.get, 0.01) + + # Check EMS + assert_equal(1, model.getAirLoopHVACUnitarySystems.size) + unitary_system = model.getAirLoopHVACUnitarySystems[0] + program_values = _get_ems_values(model.getEnergyManagementSystemPrograms, "#{unitary_system.name} install quality") + assert(program_values.empty?) # Check no EMS program end def test_mini_split_heat_pump @@ -335,7 +375,7 @@ def test_mini_split_heat_pump # Check cooling coil assert_equal(1, model.getCoilCoolingDXMultiSpeeds.size) clg_coil = model.getCoilCoolingDXMultiSpeeds[0] - cops = [6.22, 5.38, 4.52, 3.33] # Expected values + cops = [5.76, 4.99, 4.19, 3.10] # Expected values cops.each_with_index do |cop, i| assert_in_epsilon(cop, clg_coil.stages[i].grossRatedCoolingCOP, 0.01) end @@ -344,7 +384,7 @@ def test_mini_split_heat_pump # Check heating coil assert_equal(1, model.getCoilHeatingDXMultiSpeeds.size) htg_coil = model.getCoilHeatingDXMultiSpeeds[0] - cops = [5.80, 4.62, 4.23, 3.85] # Expected values + cops = [5.54, 4.44, 4.06, 3.68] # Expected values cops.each_with_index do |cop, i| assert_in_epsilon(cop, htg_coil.stages[i].grossRatedHeatingCOP, 0.01) end @@ -354,6 +394,37 @@ def test_mini_split_heat_pump assert_equal(1, model.getCoilHeatingElectrics.size) supp_htg_coil = model.getCoilHeatingElectrics[0] assert_in_delta(0, supp_htg_coil.nominalCapacity.get, 0.01) + + # Check EMS + assert_equal(1, model.getAirLoopHVACUnitarySystems.size) + unitary_system = model.getAirLoopHVACUnitarySystems[0] + program_values = _get_ems_values(model.getEnergyManagementSystemPrograms, "#{unitary_system.name} install quality") + assert(program_values.empty?) # Check no EMS program + end + + def test_mini_split_air_conditioner + args_hash = {} + args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base-hvac-mini-split-air-conditioner-only-ductless.xml')) + model, hpxml = _test_measure(args_hash) + + # Get HPXML values + cooling_system = hpxml.cooling_systems[0] + clg_capacity = UnitConversions.convert(cooling_system.cooling_capacity, 'Btu/hr', 'W') + + # Check cooling coil + assert_equal(1, model.getCoilCoolingDXMultiSpeeds.size) + clg_coil = model.getCoilCoolingDXMultiSpeeds[0] + cops = [5.76, 4.99, 4.19, 3.10] # Expected values + cops.each_with_index do |cop, i| + assert_in_epsilon(cop, clg_coil.stages[i].grossRatedCoolingCOP, 0.01) + end + assert_in_epsilon(clg_capacity * 1.2, clg_coil.stages[-1].grossRatedTotalCoolingCapacity.get, 0.01) + + # Check EMS + assert_equal(1, model.getAirLoopHVACUnitarySystems.size) + unitary_system = model.getAirLoopHVACUnitarySystems[0] + program_values = _get_ems_values(model.getEnergyManagementSystemPrograms, "#{unitary_system.name} install quality") + assert(program_values.empty?) # Check no EMS program end def test_ground_to_air_heat_pump @@ -387,6 +458,12 @@ def test_ground_to_air_heat_pump supp_htg_coil = model.getCoilHeatingElectrics[0] assert_in_epsilon(backup_efficiency, supp_htg_coil.efficiency, 0.01) assert_in_epsilon(supp_htg_capacity, supp_htg_coil.nominalCapacity.get, 0.01) + + # Check EMS + assert_equal(1, model.getAirLoopHVACUnitarySystems.size) + unitary_system = model.getAirLoopHVACUnitarySystems[0] + program_values = _get_ems_values(model.getEnergyManagementSystemPrograms, "#{unitary_system.name} install quality") + assert(program_values.empty?) # Check no EMS program end def test_shared_chiller_baseboard @@ -505,7 +582,8 @@ def test_shared_boiler_water_loop_heat_pump afue = heating_system.heating_efficiency_afue capacity = UnitConversions.convert(heating_system.heating_capacity.to_f, 'Btu/hr', 'W') fuel = heating_system.heating_system_fuel - wlhp_cop = heating_system.wlhp_heating_efficiency_cop + heat_pump = hpxml.heat_pumps[0] + wlhp_cop = heat_pump.heating_efficiency_cop # Check boiler assert_equal(1, model.getBoilerHotWaters.size) @@ -563,6 +641,168 @@ def test_shared_ground_loop_ground_to_air_heat_pump assert_in_epsilon(supp_htg_capacity, supp_htg_coil.nominalCapacity.get, 0.01) end + def test_install_quality_air_to_air_heat_pump_1_speed_ratio + args_hash = {} + args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base-hvac-install-quality-all-air-to-air-heat-pump-1-speed.xml')) + model, hpxml = _test_measure(args_hash) + + # Get HPXML values + heat_pump = hpxml.heat_pumps[0] + airflow_defect = heat_pump.airflow_defect_ratio + charge_defect = heat_pump.charge_defect_ratio + fan_watts_cfm = heat_pump.fan_watts_per_cfm + + # model objects: + # Unitary system + assert_equal(1, model.getAirLoopHVACUnitarySystems.size) + unitary_system = model.getAirLoopHVACUnitarySystems[0] + cooling_cfm = UnitConversions.convert(unitary_system.supplyAirFlowRateDuringCoolingOperation.get, 'm^3/s', 'cfm') + heating_cfm = UnitConversions.convert(unitary_system.supplyAirFlowRateDuringHeatingOperation.get, 'm^3/s', 'cfm') + + # Cooling coil + assert_equal(1, model.getCoilCoolingDXSingleSpeeds.size) + clg_coil = model.getCoilCoolingDXSingleSpeeds[0] + rated_airflow_cfm_clg = UnitConversions.convert(clg_coil.ratedAirFlowRate.get, 'm^3/s', 'cfm') + + # Heating coil + assert_equal(1, model.getCoilHeatingDXSingleSpeeds.size) + htg_coil = model.getCoilHeatingDXSingleSpeeds[0] + rated_airflow_cfm_htg = UnitConversions.convert(htg_coil.ratedAirFlowRate.get, 'm^3/s', 'cfm') + + # Fan + fanonoff = unitary_system.supplyFan.get.to_FanOnOff.get + assert_in_epsilon(fan_watts_cfm, fanonoff.pressureRise / fanonoff.fanEfficiency * UnitConversions.convert(1.0, 'cfm', 'm^3/s'), 0.01) + + # Check installation quality EMS + program_values = _get_ems_values(model.getEnergyManagementSystemPrograms, "#{unitary_system.name} install quality") + + # defect ratios in EMS is calculated correctly + assert_in_epsilon(program_values['F_CH'].sum, charge_defect, 0.01) + assert_in_epsilon(program_values['FF_AF_c'].sum, cooling_cfm / rated_airflow_cfm_clg, 0.01) + assert_in_epsilon(program_values['FF_AF_h'].sum, heating_cfm / rated_airflow_cfm_htg, 0.01) + end + + def test_install_quality_air_to_air_heat_pump_2_speed_ratio + args_hash = {} + args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base-hvac-install-quality-all-air-to-air-heat-pump-2-speed.xml')) + model, hpxml = _test_measure(args_hash) + + # Get HPXML values + heat_pump = hpxml.heat_pumps[0] + _check_install_quality_multispeed_ratio(heat_pump, model, heat_pump) + end + + def test_install_quality_air_to_air_heat_pump_var_speed_ratio + args_hash = {} + args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base-hvac-install-quality-all-air-to-air-heat-pump-var-speed.xml')) + model, hpxml = _test_measure(args_hash) + + # Get HPXML values + heat_pump = hpxml.heat_pumps[0] + _check_install_quality_multispeed_ratio(heat_pump, model, heat_pump) + end + + def test_install_quality_furnace_central_air_conditioner_1_speed_ratio + args_hash = {} + args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base-hvac-install-quality-all-furnace-gas-central-ac-1-speed.xml')) + model, hpxml = _test_measure(args_hash) + + # Get HPXML values + cooling_system = hpxml.cooling_systems[0] + heating_system = hpxml.heating_systems[0] + airflow_defect_clg = cooling_system.airflow_defect_ratio + charge_defect = cooling_system.charge_defect_ratio + fan_watts_cfm = cooling_system.fan_watts_per_cfm + fan_watts_cfm2 = heating_system.fan_watts_per_cfm + + # model objects: + # Unitary system + assert_equal(1, model.getAirLoopHVACUnitarySystems.size) + unitary_system = model.getAirLoopHVACUnitarySystems[0] + cooling_cfm = UnitConversions.convert(unitary_system.supplyAirFlowRateDuringCoolingOperation.get, 'm^3/s', 'cfm') + + # Cooling coil + assert_equal(1, model.getCoilCoolingDXSingleSpeeds.size) + clg_coil = model.getCoilCoolingDXSingleSpeeds[0] + rated_airflow_cfm = UnitConversions.convert(clg_coil.ratedAirFlowRate.get, 'm^3/s', 'cfm') + + # Fan + fanonoff = unitary_system.supplyFan.get.to_FanOnOff.get + assert_in_epsilon(fan_watts_cfm, fanonoff.pressureRise / fanonoff.fanEfficiency * UnitConversions.convert(1.0, 'cfm', 'm^3/s'), 0.01) + assert_in_epsilon(fan_watts_cfm2, fanonoff.pressureRise / fanonoff.fanEfficiency * UnitConversions.convert(1.0, 'cfm', 'm^3/s'), 0.01) + + # Check installation quality EMS + program_values = _get_ems_values(model.getEnergyManagementSystemPrograms, "#{unitary_system.name} install quality") + + # defect ratios in EMS is calculated correctly + assert_in_epsilon(program_values['F_CH'].sum, charge_defect, 0.01) + + # Fan air flow has already applied air flow defect ratio + assert_in_epsilon(program_values['FF_AF_c'].sum, cooling_cfm / rated_airflow_cfm, 0.01) + end + + def test_install_quality_furnace_central_air_conditioner_2_speed_ratio + args_hash = {} + args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base-hvac-install-quality-all-furnace-gas-central-ac-2-speed.xml')) + model, hpxml = _test_measure(args_hash) + + # Get HPXML values + cooling_system = hpxml.cooling_systems[0] + _check_install_quality_multispeed_ratio(cooling_system, model) + end + + def test_install_quality_furnace_central_air_conditioner_var_speed_ratio + args_hash = {} + args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base-hvac-install-quality-all-furnace-gas-central-ac-var-speed.xml')) + model, hpxml = _test_measure(args_hash) + + # Get HPXML values + cooling_system = hpxml.cooling_systems[0] + _check_install_quality_multispeed_ratio(cooling_system, model) + end + + def test_install_quality_furnace_gas_ratio + args_hash = {} + args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base-hvac-install-quality-all-furnace-gas-only.xml')) + model, hpxml = _test_measure(args_hash) + + # Get HPXML values + heating_system = hpxml.heating_systems[0] + airflow_defect_htg = heating_system.airflow_defect_ratio + fan_watts_cfm = heating_system.fan_watts_per_cfm + + assert_equal(1, model.getAirLoopHVACUnitarySystems.size) + unitary_system = model.getAirLoopHVACUnitarySystems[0] + + # Fan + fanonoff = unitary_system.supplyFan.get.to_FanOnOff.get + assert_in_epsilon(fan_watts_cfm, fanonoff.pressureRise / fanonoff.fanEfficiency * UnitConversions.convert(1.0, 'cfm', 'm^3/s'), 0.01) + end + + def test_install_quality_ground_to_air_heat_pump_ratio + # TODO + end + + def test_install_quality_mini_split_air_conditioner_ratio + args_hash = {} + args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base-hvac-install-quality-all-mini-split-air-conditioner-only-ducted.xml')) + model, hpxml = _test_measure(args_hash) + + # Get HPXML values + cooling_system = hpxml.cooling_systems[0] + _check_install_quality_multispeed_ratio(cooling_system, model) + end + + def test_install_quality_mini_split_heat_pump_ratio + args_hash = {} + args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base-hvac-install-quality-all-mini-split-heat-pump-ducted.xml')) + model, hpxml = _test_measure(args_hash) + + # Get HPXML values + heat_pump = hpxml.heat_pumps[0] + _check_install_quality_multispeed_ratio(heat_pump, model, heat_pump) + end + def _test_measure(args_hash) # create an instance of the measure measure = HPXMLtoOpenStudio.new @@ -571,6 +811,7 @@ def _test_measure(args_hash) model = OpenStudio::Model::Model.new # get arguments + args_hash['output_dir'] = 'tests' arguments = measure.arguments(model) argument_map = OpenStudio::Measure.convertOSArgumentVectorToMap(arguments) @@ -595,6 +836,80 @@ def _test_measure(args_hash) hpxml = HPXML.new(hpxml_path: args_hash['hpxml_path']) + File.delete(File.join(File.dirname(__FILE__), 'in.xml')) + return model, hpxml end + + def _get_ems_values(ems_objects, name) + values = {} + ems_objects.each do |ems_object| + next unless ems_object.name.to_s.include? name.gsub(' ', '_') + + ems_object.lines.each do |line| + next unless line.downcase.start_with? 'set' + + lhs, rhs = line.split('=') + lhs = lhs.gsub('Set', '').gsub('set', '').strip + rhs = rhs.gsub(',', '').gsub(';', '').strip + values[lhs] = [] if values[lhs].nil? + # eg. "Q = Q + 1.5" + if rhs.include? '+' + rhs_els = rhs.split('+') + rhs = rhs_els.map { |s| s.to_f }.sum(0.0) + else + rhs = rhs.to_f + end + values[lhs] << rhs + end + end + return values + end + + def _check_install_quality_multispeed_ratio(hpxml_clg_sys, model, hpxml_htg_sys = nil) + airflow_defect = hpxml_clg_sys.airflow_defect_ratio + charge_defect = hpxml_clg_sys.charge_defect_ratio + fan_watts_cfm = hpxml_clg_sys.fan_watts_per_cfm + + # model objects: + # Unitary system + assert_equal(1, model.getAirLoopHVACUnitarySystems.size) + unitary_system = model.getAirLoopHVACUnitarySystems[0] + perf = unitary_system.designSpecificationMultispeedObject.get.to_UnitarySystemPerformanceMultispeed.get + clg_ratios = perf.supplyAirflowRatioFields.map { |field| field.coolingRatio.get } + cooling_cfm = UnitConversions.convert(unitary_system.supplyAirFlowRateDuringCoolingOperation.get, 'm^3/s', 'cfm') + + # Cooling coil + assert_equal(1, model.getCoilCoolingDXMultiSpeeds.size) + clg_coil = model.getCoilCoolingDXMultiSpeeds[0] + rated_airflow_cfm_clg = [] + clg_coil.stages.each do |stage| + rated_airflow_cfm_clg << UnitConversions.convert(stage.ratedAirFlowRate.get, 'm^3/s', 'cfm') + end + + # Fan + fanonoff = unitary_system.supplyFan.get.to_FanOnOff.get + assert_in_epsilon(fan_watts_cfm, fanonoff.pressureRise / fanonoff.fanEfficiency * UnitConversions.convert(1.0, 'cfm', 'm^3/s'), 0.01) + + # Check installation quality EMS + program_values = _get_ems_values(model.getEnergyManagementSystemPrograms, "#{unitary_system.name} install quality") + clg_speed_cfms = clg_ratios.map { |ratio| cooling_cfm * ratio } + assert_in_epsilon(program_values['F_CH'].sum, charge_defect, 0.01) + assert_in_epsilon(program_values['FF_AF_c'].sum, clg_speed_cfms.zip(rated_airflow_cfm_clg).map { |cfm, rated_cfm| cfm / rated_cfm }.sum, 0.01) + if not hpxml_htg_sys.nil? + heating_cfm = UnitConversions.convert(unitary_system.supplyAirFlowRateDuringHeatingOperation.get, 'm^3/s', 'cfm') + htg_ratios = perf.supplyAirflowRatioFields.map { |field| field.heatingRatio.get } + + # Heating coil + assert_equal(1, model.getCoilHeatingDXMultiSpeeds.size) + htg_coil = model.getCoilHeatingDXMultiSpeeds[0] + rated_airflow_cfm_htg = [] + htg_coil.stages.each do |stage| + rated_airflow_cfm_htg << UnitConversions.convert(stage.ratedAirFlowRate.get, 'm^3/s', 'cfm') + end + + htg_speed_cfms = htg_ratios.map { |ratio| heating_cfm * ratio } + assert_in_epsilon(program_values['FF_AF_h'].sum, htg_speed_cfms.zip(rated_airflow_cfm_htg).map { |cfm, rated_cfm| cfm / rated_cfm }.sum, 0.01) + end + end end diff --git a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_lighting.rb b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_lighting.rb index 672cc59a..2e83b6cd 100644 --- a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_lighting.rb +++ b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_lighting.rb @@ -89,6 +89,7 @@ def _test_measure(args_hash) model = OpenStudio::Model::Model.new # get arguments + args_hash['output_dir'] = 'tests' arguments = measure.arguments(model) argument_map = OpenStudio::Measure.convertOSArgumentVectorToMap(arguments) @@ -113,6 +114,8 @@ def _test_measure(args_hash) hpxml = HPXML.new(hpxml_path: args_hash['hpxml_path']) + File.delete(File.join(File.dirname(__FILE__), 'in.xml')) + return model, hpxml end end diff --git a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_location.rb b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_location.rb index b77a3db3..2b098ecd 100644 --- a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_location.rb +++ b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_location.rb @@ -66,6 +66,7 @@ def _test_measure(args_hash) model = OpenStudio::Model::Model.new # get arguments + args_hash['output_dir'] = 'tests' arguments = measure.arguments(model) argument_map = OpenStudio::Measure.convertOSArgumentVectorToMap(arguments) @@ -90,6 +91,8 @@ def _test_measure(args_hash) hpxml = HPXML.new(hpxml_path: args_hash['hpxml_path']) + File.delete(File.join(File.dirname(__FILE__), 'in.xml')) + return model, hpxml end end diff --git a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_miscloads.rb b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_miscloads.rb index f7bbfccd..5f9c9458 100644 --- a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_miscloads.rb +++ b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_miscloads.rb @@ -199,6 +199,7 @@ def _test_measure(args_hash) model = OpenStudio::Model::Model.new # get arguments + args_hash['output_dir'] = 'tests' arguments = measure.arguments(model) argument_map = OpenStudio::Measure.convertOSArgumentVectorToMap(arguments) @@ -223,6 +224,8 @@ def _test_measure(args_hash) hpxml = HPXML.new(hpxml_path: args_hash['hpxml_path']) + File.delete(File.join(File.dirname(__FILE__), 'in.xml')) + return model, hpxml end end diff --git a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_pv.rb b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_pv.rb index b323bbe9..645d1086 100644 --- a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_pv.rb +++ b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_pv.rb @@ -80,6 +80,7 @@ def _test_measure(args_hash) model = OpenStudio::Model::Model.new # get arguments + args_hash['output_dir'] = 'tests' arguments = measure.arguments(model) argument_map = OpenStudio::Measure.convertOSArgumentVectorToMap(arguments) @@ -104,6 +105,8 @@ def _test_measure(args_hash) hpxml = HPXML.new(hpxml_path: args_hash['hpxml_path']) + File.delete(File.join(File.dirname(__FILE__), 'in.xml')) + return model, hpxml end end diff --git a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_simcontrols.rb b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_simcontrols.rb index 3bc52f8c..86ad37a8 100644 --- a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_simcontrols.rb +++ b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_simcontrols.rb @@ -70,6 +70,7 @@ def _test_measure(args_hash) model = OpenStudio::Model::Model.new # get arguments + args_hash['output_dir'] = 'tests' arguments = measure.arguments(model) argument_map = OpenStudio::Measure.convertOSArgumentVectorToMap(arguments) @@ -94,6 +95,8 @@ def _test_measure(args_hash) hpxml = HPXML.new(hpxml_path: args_hash['hpxml_path']) + File.delete(File.join(File.dirname(__FILE__), 'in.xml')) + return model, hpxml end end diff --git a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_validation.rb b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_validation.rb index 930d7755..89779ad3 100644 --- a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_validation.rb +++ b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_validation.rb @@ -22,7 +22,7 @@ def before_setup @hpxml_docs = {} hpxml_file_dirs.each do |hpxml_file_dir| Dir["#{hpxml_file_dir}/*.xml"].sort.each do |xml| - @hpxml_docs[File.basename(xml)] = HPXML.new(hpxml_path: File.join(hpxml_file_dir, File.basename(xml))).to_oga() + @hpxml_docs[File.basename(xml)] = HPXML.new(hpxml_path: File.join(hpxml_file_dir, File.basename(xml)), building_id: 'MyBuilding').to_oga() end end @@ -48,6 +48,8 @@ def before_setup @expected_assertions_by_addition[key] = _get_expected_error_msg(context_xpath, assertion_message, 'addition') elsif assertion_message.include?("Expected #{element_name} to be") @expected_assertions_by_alteration[key] = _get_expected_error_msg(context_xpath, assertion_message, 'alteration') + elsif assertion_message.include?('There must be at least one') || assertion_message.include?('A location is specified as') || assertion_message.include?('sum of') + # Skip these complex rules else fail "Unexpected assertion: '#{assertion_message}'." end @@ -160,6 +162,24 @@ def test_schematron_asserts_by_alteration puts end + def test_schematron_validation + # Check that the schematron file is valid + + hpxml_stron_path = File.join(@root_path, 'HPXMLtoOpenStudio', 'resources', 'HPXMLvalidator.xml') + + begin + require 'schematron-nokogiri' + + [@stron_path, hpxml_stron_path].each do |s_path| + xml_doc = Nokogiri::XML(File.open(s_path)) do |config| + config.options = Nokogiri::XML::ParseOptions::STRICT + end + stron_doc = SchematronNokogiri::Schema.new(xml_doc) + end + rescue LoadError + end + end + private def _test_schematron_validation(hpxml_doc, expected_error_msg = nil) @@ -191,6 +211,10 @@ def _get_hpxml_doc_and_parent_element(key) # Find a HPXML file that contains the specified elements. @hpxml_docs.each do |xml, hpxml_doc| + if context_xpath.include? 'HeatPump[HeatPumpType="water-loop-to-air"]' + next unless xml.include? 'boiler-only' + end + parent_elements = XMLHelper.get_elements(hpxml_doc, context_xpath) next if parent_elements.nil? diff --git a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_water_heater.rb b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_water_heater.rb index 6d44a717..5154a66a 100644 --- a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_water_heater.rb +++ b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_water_heater.rb @@ -1142,6 +1142,7 @@ def _test_measure(args_hash) model = OpenStudio::Model::Model.new # get arguments + args_hash['output_dir'] = 'tests' arguments = measure.arguments(model) argument_map = OpenStudio::Measure.convertOSArgumentVectorToMap(arguments) @@ -1166,6 +1167,8 @@ def _test_measure(args_hash) hpxml = HPXML.new(hpxml_path: args_hash['hpxml_path']) + File.delete(File.join(File.dirname(__FILE__), 'in.xml')) + return model, hpxml end end diff --git a/example_files/resources/hpxml-measures/README.md b/example_files/resources/hpxml-measures/README.md index 3d904b1b..78e71981 100644 --- a/example_files/resources/hpxml-measures/README.md +++ b/example_files/resources/hpxml-measures/README.md @@ -1,7 +1,7 @@ # OpenStudio-HPXML [![GitHub release (latest by date including pre-releases)](https://img.shields.io/github/v/release/NREL/OpenStudio-HPXML?include_prereleases)](https://github.com/NREL/OpenStudio-HPXML/releases) -[![CircleCI](https://circleci.com/gh/NREL/OpenStudio-HPXML.svg?style=shield)](https://circleci.com/gh/NREL/OpenStudio-HPXML) +[![ci](https://github.com/NREL/OpenStudio-HPXML/workflows/ci/badge.svg)](https://github.com/NREL/OpenStudio-HPXML/actions) [![Documentation Status](https://readthedocs.org/projects/openstudio-hpxml/badge/?version=latest)](https://openstudio-hpxml.readthedocs.io/en/latest/?badge=latest) [![codecov](https://codecov.io/gh/NREL/OpenStudio-HPXML/branch/master/graph/badge.svg)](https://codecov.io/gh/NREL/OpenStudio-HPXML) @@ -31,10 +31,10 @@ This repository contains three OpenStudio measures: The OpenStudio-HPXML workflow is used by a number of other residential projects, including: - [Energy Rating Index (ERI)](https://github.com/NREL/OpenStudio-ERI) -- Home Energy Score (private repository) -- Weatherization Assistant (private repository) +- Home Energy Score (pending) +- Weatherization Assistant (pending) - ResStock (pending) -- UrbanOpt (pending) +- [UrbanOpt](https://www.nrel.gov/buildings/urbanopt.html) ## License diff --git a/example_files/resources/hpxml-measures/SimulationOutputReport/measure.rb b/example_files/resources/hpxml-measures/SimulationOutputReport/measure.rb index 58bc9f3d..6720f349 100644 --- a/example_files/resources/hpxml-measures/SimulationOutputReport/measure.rb +++ b/example_files/resources/hpxml-measures/SimulationOutputReport/measure.rb @@ -23,13 +23,22 @@ def description # human readable description of modeling approach def modeler_description - return 'Processes EnergyPlus simulation outputs in order to generate an annual output CSV file and an optional timeseries output CSV file.' + return 'Processes EnergyPlus simulation outputs in order to generate an annual output file and an optional timeseries output file.' end # define the arguments that the user will input def arguments(model) args = OpenStudio::Measure::OSArgumentVector.new + format_chs = OpenStudio::StringVector.new + format_chs << 'csv' + format_chs << 'json' + arg = OpenStudio::Measure::OSArgument::makeChoiceArgument('output_format', format_chs, false) + arg.setDisplayName('Output Format') + arg.setDescription('The file format of the annual (and timeseries, if requested) outputs.') + arg.setDefaultValue('csv') + args << arg + timeseries_frequency_chs = OpenStudio::StringVector.new timeseries_frequency_chs << 'none' reporting_frequency_map.keys.each do |freq| @@ -61,13 +70,19 @@ def arguments(model) arg = OpenStudio::Measure::OSArgument::makeBoolArgument('include_timeseries_total_loads', true) arg.setDisplayName('Generate Timeseries Output: Total Loads') - arg.setDescription('Generates timeseries heating/cooling loads.') + arg.setDescription('Generates timeseries total heating, cooling, and hot water loads.') arg.setDefaultValue(false) args << arg arg = OpenStudio::Measure::OSArgument::makeBoolArgument('include_timeseries_component_loads', true) arg.setDisplayName('Generate Timeseries Output: Component Loads') - arg.setDescription('Generates timeseries heating/cooling loads disaggregated by component type.') + arg.setDescription('Generates timeseries heating and cooling loads disaggregated by component type.') + arg.setDefaultValue(false) + args << arg + + arg = OpenStudio::Measure::OSArgument::makeBoolArgument('include_timeseries_unmet_loads', true) + arg.setDisplayName('Generate Timeseries Output: Unmet Loads') + arg.setDescription('Generates timeseries unmet heating and cooling loads.') arg.setDefaultValue(false) args << arg @@ -211,6 +226,7 @@ def energyPlusOutputRequests(runner, user_arguments) include_timeseries_hot_water_uses = runner.getBoolArgumentValue('include_timeseries_hot_water_uses', user_arguments) include_timeseries_total_loads = runner.getBoolArgumentValue('include_timeseries_total_loads', user_arguments) include_timeseries_component_loads = runner.getBoolArgumentValue('include_timeseries_component_loads', user_arguments) + include_timeseries_unmet_loads = runner.getBoolArgumentValue('include_timeseries_unmet_loads', user_arguments) include_timeseries_zone_temperatures = runner.getBoolArgumentValue('include_timeseries_zone_temperatures', user_arguments) include_timeseries_airflows = runner.getBoolArgumentValue('include_timeseries_airflows', user_arguments) include_timeseries_weather = runner.getBoolArgumentValue('include_timeseries_weather', user_arguments) @@ -293,6 +309,12 @@ def energyPlusOutputRequests(runner, user_arguments) end end + if include_timeseries_unmet_loads + @unmet_loads.each do |load_type, unmet_load| + result << OpenStudio::IdfObject.load("Output:Variable,#{unmet_load.key},#{unmet_load.variable},#{timeseries_frequency};").get + end + end + return result end @@ -312,6 +334,7 @@ def run(runner, user_arguments) return false end + output_format = runner.getStringArgumentValue('output_format', user_arguments) timeseries_frequency = runner.getStringArgumentValue('timeseries_frequency', user_arguments) if timeseries_frequency != 'none' include_timeseries_fuel_consumptions = runner.getBoolArgumentValue('include_timeseries_fuel_consumptions', user_arguments) @@ -319,6 +342,7 @@ def run(runner, user_arguments) include_timeseries_hot_water_uses = runner.getBoolArgumentValue('include_timeseries_hot_water_uses', user_arguments) include_timeseries_total_loads = runner.getBoolArgumentValue('include_timeseries_total_loads', user_arguments) include_timeseries_component_loads = runner.getBoolArgumentValue('include_timeseries_component_loads', user_arguments) + include_timeseries_unmet_loads = runner.getBoolArgumentValue('include_timeseries_unmet_loads', user_arguments) include_timeseries_zone_temperatures = runner.getBoolArgumentValue('include_timeseries_zone_temperatures', user_arguments) include_timeseries_airflows = runner.getBoolArgumentValue('include_timeseries_airflows', user_arguments) include_timeseries_weather = runner.getBoolArgumentValue('include_timeseries_weather', user_arguments) @@ -337,8 +361,9 @@ def run(runner, user_arguments) @model.setSqlFile(@sqlFile) hpxml_path = @model.getBuilding.additionalProperties.getFeatureAsString('hpxml_path').get - @hpxml = HPXML.new(hpxml_path: hpxml_path) - HVAC.apply_shared_systems(@hpxml) + building_id = @model.getBuilding.additionalProperties.getFeatureAsString('building_id').get + @hpxml = HPXML.new(hpxml_path: hpxml_path, building_id: building_id) + HVAC.apply_shared_systems(@hpxml) # Needed for ERI shared HVAC systems get_object_maps() @eri_design = @hpxml.header.eri_design @@ -349,14 +374,14 @@ def run(runner, user_arguments) # ERI run, store files in a particular location output_dir = File.dirname(hpxml_path) design_name = @eri_design.gsub(' ', '') - annual_output_csv_path = File.join(output_dir, "#{design_name}.csv") - eri_output_csv_path = File.join(output_dir, "#{design_name}_ERI.csv") - timeseries_output_csv_path = File.join(output_dir, "#{design_name}_#{timeseries_frequency.capitalize}.csv") + annual_output_path = File.join(output_dir, "#{design_name}.#{output_format}") + eri_output_path = File.join(output_dir, "#{design_name}_ERI.csv") + timeseries_output_path = File.join(output_dir, "#{design_name}_#{timeseries_frequency.capitalize}.#{output_format}") else output_dir = File.dirname(@sqlFile.path.to_s) - annual_output_csv_path = File.join(output_dir, 'results_annual.csv') - eri_output_csv_path = nil - timeseries_output_csv_path = File.join(output_dir, 'results_timeseries.csv') + annual_output_path = File.join(output_dir, "results_annual.#{output_format}") + eri_output_path = nil + timeseries_output_path = File.join(output_dir, "results_timeseries.#{output_format}") end @timestamps = get_timestamps(timeseries_frequency) @@ -368,6 +393,7 @@ def run(runner, user_arguments) include_timeseries_hot_water_uses, include_timeseries_total_loads, include_timeseries_component_loads, + include_timeseries_unmet_loads, include_timeseries_zone_temperatures, include_timeseries_airflows, include_timeseries_weather) @@ -383,15 +409,18 @@ def run(runner, user_arguments) end # Write/report results - write_annual_output_results(runner, outputs, annual_output_csv_path) + write_annual_output_results(runner, outputs, output_format, annual_output_path) report_sim_outputs(outputs, runner) - write_eri_output_results(outputs, eri_output_csv_path) - write_timeseries_output_results(runner, timeseries_output_csv_path, timeseries_frequency, + write_eri_output_results(outputs, eri_output_path) + write_timeseries_output_results(runner, output_format, + timeseries_output_path, + timeseries_frequency, include_timeseries_fuel_consumptions, include_timeseries_end_use_consumptions, include_timeseries_hot_water_uses, include_timeseries_total_loads, include_timeseries_component_loads, + include_timeseries_unmet_loads, include_timeseries_zone_temperatures, include_timeseries_airflows, include_timeseries_weather) @@ -430,6 +459,7 @@ def get_outputs(timeseries_frequency, include_timeseries_hot_water_uses, include_timeseries_total_loads, include_timeseries_component_loads, + include_timeseries_unmet_loads, include_timeseries_zone_temperatures, include_timeseries_airflows, include_timeseries_weather) @@ -504,9 +534,12 @@ def get_outputs(timeseries_frequency, # Unmet loads (heating/cooling energy delivered by backup ideal air system) @unmet_loads.each do |load_type, unmet_load| unmet_load.annual_output = get_report_variable_data_annual([unmet_load.key.upcase], [unmet_load.variable]) + if include_timeseries_unmet_loads + unmet_load.timeseries_output = get_report_variable_data_timeseries([unmet_load.key.upcase], [unmet_load.variable], UnitConversions.convert(1.0, 'J', unmet_load.timeseries_units), 0, timeseries_frequency) + end end - # Ideal system loads (expected fraction of loads that are not met by HVAC) + # Ideal system loads (expected fraction of loads that are not met by partial HVAC (e.g., room AC that meets 30% of load)) @ideal_system_loads.each do |load_type, ideal_load| ideal_load.annual_output = get_report_variable_data_annual([ideal_load.key.upcase], [ideal_load.variable]) end @@ -865,7 +898,8 @@ def check_for_errors(runner, outputs) { @end_uses => 'End Use', @fuels => 'Fuel', @loads => 'Load', - @component_loads => 'Component Load' }.each do |outputs, output_type| + @component_loads => 'Component Load', + @unmet_loads => 'Unmet Load' }.each do |outputs, output_type| outputs.each do |key, obj| next if obj.timeseries_output.empty? @@ -881,7 +915,7 @@ def check_for_errors(runner, outputs) return true end - def write_annual_output_results(runner, outputs, csv_path) + def write_annual_output_results(runner, outputs, output_format, annual_output_path) line_break = nil elec_pv_produced = @end_uses[[FT::Elec, EUT::PV]] elec_generator_produced = @end_uses[[FT::Elec, EUT::Generator]] @@ -890,7 +924,7 @@ def write_annual_output_results(runner, outputs, csv_path) @fuels.each do |fuel_type, fuel| results_out << ["#{fuel.name} (#{fuel.annual_units})", fuel.annual_output.round(2)] if fuel_type == FT::Elec - results_out << ['Electricity: Net (MBtu)', (fuel.annual_output + elec_pv_produced.annual_output + elec_generator_produced.annual_output).round(2)] + results_out << ['Fuel Use: Electricity: Net (MBtu)', (fuel.annual_output + elec_pv_produced.annual_output + elec_generator_produced.annual_output).round(2)] end end results_out << [line_break] @@ -922,8 +956,22 @@ def write_annual_output_results(runner, outputs, csv_path) results_out << ["#{hot_water.name} (#{hot_water.annual_units})", hot_water.annual_output.round(0)] end - CSV.open(csv_path, 'wb') { |csv| results_out.to_a.each { |elem| csv << elem } } - runner.registerInfo("Wrote annual output results to #{csv_path}.") + if output_format == 'csv' + CSV.open(annual_output_path, 'wb') { |csv| results_out.to_a.each { |elem| csv << elem } } + elsif output_format == 'json' + h = {} + results_out.each do |out| + next if out == [line_break] + + grp, name = out[0].split(':', 2) + h[grp] = {} if h[grp].nil? + h[grp][name.strip] = out[1] + end + + require 'json' + File.open(annual_output_path, 'w') { |json| json.write(JSON.pretty_generate(h)) } + end + runner.registerInfo("Wrote annual output results to #{annual_output_path}.") end def report_sim_outputs(outputs, runner) @@ -1050,12 +1098,15 @@ def get_sys_ids(type, heat_sys_ids, cool_sys_ids, dhw_sys_ids, vent_preheat_sys_ CSV.open(csv_path, 'wb') { |csv| results_out.to_a.each { |elem| csv << elem } } end - def write_timeseries_output_results(runner, csv_path, timeseries_frequency, + def write_timeseries_output_results(runner, output_format, + timeseries_output_path, + timeseries_frequency, include_timeseries_fuel_consumptions, include_timeseries_end_use_consumptions, include_timeseries_hot_water_uses, include_timeseries_total_loads, include_timeseries_component_loads, + include_timeseries_unmet_loads, include_timeseries_zone_temperatures, include_timeseries_airflows, include_timeseries_weather) @@ -1096,6 +1147,11 @@ def write_timeseries_output_results(runner, csv_path, timeseries_frequency, else comp_loads_data = [] end + if include_timeseries_unmet_loads + unmet_loads_data = @unmet_loads.values.select { |x| !x.timeseries_output.empty? }.map { |x| [x.name, x.timeseries_units] + x.timeseries_output.map { |v| v.round(2) } } + else + unmet_loads_data = [] + end if include_timeseries_zone_temperatures zone_temps_data = @zone_temps.values.select { |x| !x.timeseries_output.empty? }.map { |x| [x.name, x.timeseries_units] + x.timeseries_output.map { |v| v.round(2) } } else @@ -1112,25 +1168,42 @@ def write_timeseries_output_results(runner, csv_path, timeseries_frequency, weather_data = [] end - return if fuel_data.size + end_use_data.size + hot_water_use_data.size + total_loads_data.size + comp_loads_data.size + zone_temps_data.size + airflows_data.size + weather_data.size == 0 + return if fuel_data.size + end_use_data.size + hot_water_use_data.size + total_loads_data.size + comp_loads_data.size + unmet_loads_data.size + zone_temps_data.size + airflows_data.size + weather_data.size == 0 fail 'Unable to obtain timestamps.' if @timestamps.empty? - # Assemble data - data = data.zip(*fuel_data, *end_use_data, *hot_water_use_data, *total_loads_data, *comp_loads_data, *zone_temps_data, *airflows_data, *weather_data) + if output_format == 'csv' + # Assemble data + data = data.zip(*fuel_data, *end_use_data, *hot_water_use_data, *total_loads_data, *comp_loads_data, *unmet_loads_data, *zone_temps_data, *airflows_data, *weather_data) + + # Error-check + n_elements = [] + data.each do |data_array| + n_elements << data_array.size + end + if n_elements.uniq.size > 1 + fail "Inconsistent number of array elements: #{n_elements.uniq}." + end + + # Write file + CSV.open(timeseries_output_path, 'wb') { |csv| data.to_a.each { |elem| csv << elem } } + elsif output_format == 'json' + # Assemble data + h = {} + h['Time'] = data[2..-1] + [fuel_data, end_use_data, hot_water_use_data, total_loads_data, comp_loads_data, unmet_loads_data, zone_temps_data, airflows_data, weather_data].each do |d| + d.each do |o| + grp, name = o[0].split(':', 2) + h[grp] = {} if h[grp].nil? + h[grp]["#{name.strip} (#{o[1]})"] = o[2..-1] + end + end - # Error-check - n_elements = [] - data.each do |data_array| - n_elements << data_array.size + # Write file + require 'json' + File.open(timeseries_output_path, 'w') { |json| json.write(JSON.pretty_generate(h)) } end - if n_elements.uniq.size > 1 - fail "Inconsistent number of array elements: #{n_elements.uniq}." - end - - # Write file - CSV.open(csv_path, 'wb') { |csv| data.to_a.each { |elem| csv << elem } } - runner.registerInfo("Wrote timeseries output results to #{csv_path}.") + runner.registerInfo("Wrote timeseries output results to #{timeseries_output_path}.") end def get_hpxml_dse_heats(heat_sys_ids) @@ -1989,7 +2062,7 @@ def get_timeseries_units_from_fuel_type(fuel_type) @fuels[FT::Coal] = Fuel.new(meters: ["#{EPlus::FuelTypeCoal}:Facility"]) @fuels.each do |fuel_type, fuel| - fuel.name = "#{fuel_type}: Total" + fuel.name = "Fuel Use: #{fuel_type}: Total" fuel.annual_units = 'MBtu' fuel.timeseries_units = get_timeseries_units_from_fuel_type(fuel_type) end @@ -2102,7 +2175,7 @@ def get_timeseries_units_from_fuel_type(fuel_type) @end_uses.each do |key, end_use| fuel_type, end_use_type = key - end_use.name = "#{fuel_type}: #{end_use_type}" + end_use.name = "End Use: #{fuel_type}: #{end_use_type}" end_use.annual_units = 'MBtu' end_use.timeseries_units = get_timeseries_units_from_fuel_type(fuel_type) end @@ -2201,6 +2274,7 @@ def get_timeseries_units_from_fuel_type(fuel_type) @unmet_loads.each do |load_type, unmet_load| unmet_load.name = "Unmet Load: #{load_type}" unmet_load.annual_units = 'MBtu' + unmet_load.timeseries_units = 'kBtu' end # Ideal System Loads (expected load that is not met by HVAC) diff --git a/example_files/resources/hpxml-measures/SimulationOutputReport/measure.xml b/example_files/resources/hpxml-measures/SimulationOutputReport/measure.xml index 0d1acab2..a59ff556 100644 --- a/example_files/resources/hpxml-measures/SimulationOutputReport/measure.xml +++ b/example_files/resources/hpxml-measures/SimulationOutputReport/measure.xml @@ -3,20 +3,38 @@ 3.0 simulation_output_report df9d170c-c21a-4130-866d-0d46b06073fd - 7680ed1f-ed1e-4fde-8308-6c565f4a83ef - 20201209T161002Z + 3b09cd0b-92a2-41c6-b70e-c41c938ff1d2 + 20210309T001238Z 9BF1E6AC SimulationOutputReport HPXML Simulation Output Report Reports simulation outputs for residential HPXML-based models. - Processes EnergyPlus simulation outputs in order to generate an annual output CSV file and an optional timeseries output CSV file. + Processes EnergyPlus simulation outputs in order to generate an annual output file and an optional timeseries output file. + + output_format + Output Format + The file format of the annual (and timeseries, if requested) outputs. + Choice + false + false + csv + + + csv + csv + + + json + json + + + timeseries_frequency Timeseries Reporting Frequency The frequency at which to report timeseries output data. Using 'none' will disable timeseries outputs. Choice - true false none @@ -42,15 +60,12 @@ monthly - - include_timeseries_fuel_consumptions Generate Timeseries Output: Fuel Consumptions Generates timeseries energy consumptions for each fuel type. Boolean - true false false @@ -64,15 +79,12 @@ false - - include_timeseries_end_use_consumptions Generate Timeseries Output: End Use Consumptions Generates timeseries energy consumptions for each end use. Boolean - true false false @@ -86,15 +98,12 @@ false - - include_timeseries_hot_water_uses Generate Timeseries Output: Hot Water Uses Generates timeseries hot water usages for each end use. Boolean - true false false @@ -108,15 +117,12 @@ false - - include_timeseries_total_loads Generate Timeseries Output: Total Loads - Generates timeseries heating/cooling loads. + Generates timeseries total heating, cooling, and hot water loads. Boolean - true false false @@ -130,15 +136,31 @@ false - - include_timeseries_component_loads Generate Timeseries Output: Component Loads - Generates timeseries heating/cooling loads disaggregated by component type. + Generates timeseries heating and cooling loads disaggregated by component type. + Boolean + true + false + false + + + true + true + + + false + false + + + + + include_timeseries_unmet_loads + Generate Timeseries Output: Unmet Loads + Generates timeseries unmet heating and cooling loads. Boolean - true false false @@ -152,15 +174,12 @@ false - - include_timeseries_zone_temperatures Generate Timeseries Output: Zone Temperatures Generates timeseries temperatures for each thermal zone. Boolean - true false false @@ -174,15 +193,12 @@ false - - include_timeseries_airflows Generate Timeseries Output: Airflows Generates timeseries airflows. Boolean - true false false @@ -196,15 +212,12 @@ false - - include_timeseries_weather Generate Timeseries Output: Weather Generates timeseries weather data. Boolean - true false false @@ -218,828 +231,644 @@ false - - - Electricity: Total MBtu - Electricity: Total MBtu - Electricity: Total MBtu - + Fuel Use: Electricity: Total MBtu + Fuel Use: Electricity: Total MBtu + Fuel Use: Electricity: Total MBtu Double - false - Natural Gas: Total MBtu - Natural Gas: Total MBtu - Natural Gas: Total MBtu - + Fuel Use: Natural Gas: Total MBtu + Fuel Use: Natural Gas: Total MBtu + Fuel Use: Natural Gas: Total MBtu Double - false - Fuel Oil: Total MBtu - Fuel Oil: Total MBtu - Fuel Oil: Total MBtu - + Fuel Use: Fuel Oil: Total MBtu + Fuel Use: Fuel Oil: Total MBtu + Fuel Use: Fuel Oil: Total MBtu Double - false - Propane: Total MBtu - Propane: Total MBtu - Propane: Total MBtu - + Fuel Use: Propane: Total MBtu + Fuel Use: Propane: Total MBtu + Fuel Use: Propane: Total MBtu Double - false - Wood Cord: Total MBtu - Wood Cord: Total MBtu - Wood Cord: Total MBtu - + Fuel Use: Wood Cord: Total MBtu + Fuel Use: Wood Cord: Total MBtu + Fuel Use: Wood Cord: Total MBtu Double - false - Wood Pellets: Total MBtu - Wood Pellets: Total MBtu - Wood Pellets: Total MBtu - + Fuel Use: Wood Pellets: Total MBtu + Fuel Use: Wood Pellets: Total MBtu + Fuel Use: Wood Pellets: Total MBtu Double - false - Coal: Total MBtu - Coal: Total MBtu - Coal: Total MBtu - + Fuel Use: Coal: Total MBtu + Fuel Use: Coal: Total MBtu + Fuel Use: Coal: Total MBtu Double - false - Electricity: Heating MBtu - Electricity: Heating MBtu - Electricity: Heating MBtu - + End Use: Electricity: Heating MBtu + End Use: Electricity: Heating MBtu + End Use: Electricity: Heating MBtu Double - false - Electricity: Heating Fans/Pumps MBtu - Electricity: Heating Fans/Pumps MBtu - Electricity: Heating Fans/Pumps MBtu - + End Use: Electricity: Heating Fans/Pumps MBtu + End Use: Electricity: Heating Fans/Pumps MBtu + End Use: Electricity: Heating Fans/Pumps MBtu Double - false - Electricity: Cooling MBtu - Electricity: Cooling MBtu - Electricity: Cooling MBtu - + End Use: Electricity: Cooling MBtu + End Use: Electricity: Cooling MBtu + End Use: Electricity: Cooling MBtu Double - false - Electricity: Cooling Fans/Pumps MBtu - Electricity: Cooling Fans/Pumps MBtu - Electricity: Cooling Fans/Pumps MBtu - + End Use: Electricity: Cooling Fans/Pumps MBtu + End Use: Electricity: Cooling Fans/Pumps MBtu + End Use: Electricity: Cooling Fans/Pumps MBtu Double - false - Electricity: Hot Water MBtu - Electricity: Hot Water MBtu - Electricity: Hot Water MBtu - + End Use: Electricity: Hot Water MBtu + End Use: Electricity: Hot Water MBtu + End Use: Electricity: Hot Water MBtu Double - false - Electricity: Hot Water Recirc Pump MBtu - Electricity: Hot Water Recirc Pump MBtu - Electricity: Hot Water Recirc Pump MBtu - + End Use: Electricity: Hot Water Recirc Pump MBtu + End Use: Electricity: Hot Water Recirc Pump MBtu + End Use: Electricity: Hot Water Recirc Pump MBtu Double - false - Electricity: Hot Water Solar Thermal Pump MBtu - Electricity: Hot Water Solar Thermal Pump MBtu - Electricity: Hot Water Solar Thermal Pump MBtu - + End Use: Electricity: Hot Water Solar Thermal Pump MBtu + End Use: Electricity: Hot Water Solar Thermal Pump MBtu + End Use: Electricity: Hot Water Solar Thermal Pump MBtu Double - false - Electricity: Lighting Interior MBtu - Electricity: Lighting Interior MBtu - Electricity: Lighting Interior MBtu - + End Use: Electricity: Lighting Interior MBtu + End Use: Electricity: Lighting Interior MBtu + End Use: Electricity: Lighting Interior MBtu Double - false - Electricity: Lighting Garage MBtu - Electricity: Lighting Garage MBtu - Electricity: Lighting Garage MBtu - + End Use: Electricity: Lighting Garage MBtu + End Use: Electricity: Lighting Garage MBtu + End Use: Electricity: Lighting Garage MBtu Double - false - Electricity: Lighting Exterior MBtu - Electricity: Lighting Exterior MBtu - Electricity: Lighting Exterior MBtu - + End Use: Electricity: Lighting Exterior MBtu + End Use: Electricity: Lighting Exterior MBtu + End Use: Electricity: Lighting Exterior MBtu Double - false - Electricity: Mech Vent MBtu - Electricity: Mech Vent MBtu - Electricity: Mech Vent MBtu - + End Use: Electricity: Mech Vent MBtu + End Use: Electricity: Mech Vent MBtu + End Use: Electricity: Mech Vent MBtu Double - false - Electricity: Mech Vent Preheating MBtu - Electricity: Mech Vent Preheating MBtu - Electricity: Mech Vent Preheating MBtu - + End Use: Electricity: Mech Vent Preheating MBtu + End Use: Electricity: Mech Vent Preheating MBtu + End Use: Electricity: Mech Vent Preheating MBtu Double - false - Electricity: Mech Vent Precooling MBtu - Electricity: Mech Vent Precooling MBtu - Electricity: Mech Vent Precooling MBtu - + End Use: Electricity: Mech Vent Precooling MBtu + End Use: Electricity: Mech Vent Precooling MBtu + End Use: Electricity: Mech Vent Precooling MBtu Double - false - Electricity: Whole House Fan MBtu - Electricity: Whole House Fan MBtu - Electricity: Whole House Fan MBtu - + End Use: Electricity: Whole House Fan MBtu + End Use: Electricity: Whole House Fan MBtu + End Use: Electricity: Whole House Fan MBtu Double - false - Electricity: Refrigerator MBtu - Electricity: Refrigerator MBtu - Electricity: Refrigerator MBtu - + End Use: Electricity: Refrigerator MBtu + End Use: Electricity: Refrigerator MBtu + End Use: Electricity: Refrigerator MBtu Double - false - Electricity: Freezer MBtu - Electricity: Freezer MBtu - Electricity: Freezer MBtu - + End Use: Electricity: Freezer MBtu + End Use: Electricity: Freezer MBtu + End Use: Electricity: Freezer MBtu Double - false - Electricity: Dehumidifier MBtu - Electricity: Dehumidifier MBtu - Electricity: Dehumidifier MBtu - + End Use: Electricity: Dehumidifier MBtu + End Use: Electricity: Dehumidifier MBtu + End Use: Electricity: Dehumidifier MBtu Double - false - Electricity: Dishwasher MBtu - Electricity: Dishwasher MBtu - Electricity: Dishwasher MBtu - + End Use: Electricity: Dishwasher MBtu + End Use: Electricity: Dishwasher MBtu + End Use: Electricity: Dishwasher MBtu Double - false - Electricity: Clothes Washer MBtu - Electricity: Clothes Washer MBtu - Electricity: Clothes Washer MBtu - + End Use: Electricity: Clothes Washer MBtu + End Use: Electricity: Clothes Washer MBtu + End Use: Electricity: Clothes Washer MBtu Double - false - Electricity: Clothes Dryer MBtu - Electricity: Clothes Dryer MBtu - Electricity: Clothes Dryer MBtu - + End Use: Electricity: Clothes Dryer MBtu + End Use: Electricity: Clothes Dryer MBtu + End Use: Electricity: Clothes Dryer MBtu Double - false - Electricity: Range/Oven MBtu - Electricity: Range/Oven MBtu - Electricity: Range/Oven MBtu - + End Use: Electricity: Range/Oven MBtu + End Use: Electricity: Range/Oven MBtu + End Use: Electricity: Range/Oven MBtu Double - false - Electricity: Ceiling Fan MBtu - Electricity: Ceiling Fan MBtu - Electricity: Ceiling Fan MBtu - + End Use: Electricity: Ceiling Fan MBtu + End Use: Electricity: Ceiling Fan MBtu + End Use: Electricity: Ceiling Fan MBtu Double - false - Electricity: Television MBtu - Electricity: Television MBtu - Electricity: Television MBtu - + End Use: Electricity: Television MBtu + End Use: Electricity: Television MBtu + End Use: Electricity: Television MBtu Double - false - Electricity: Plug Loads MBtu - Electricity: Plug Loads MBtu - Electricity: Plug Loads MBtu - + End Use: Electricity: Plug Loads MBtu + End Use: Electricity: Plug Loads MBtu + End Use: Electricity: Plug Loads MBtu Double - false - Electricity: Electric Vehicle Charging MBtu - Electricity: Electric Vehicle Charging MBtu - Electricity: Electric Vehicle Charging MBtu - + End Use: Electricity: Electric Vehicle Charging MBtu + End Use: Electricity: Electric Vehicle Charging MBtu + End Use: Electricity: Electric Vehicle Charging MBtu Double - false - Electricity: Well Pump MBtu - Electricity: Well Pump MBtu - Electricity: Well Pump MBtu - + End Use: Electricity: Well Pump MBtu + End Use: Electricity: Well Pump MBtu + End Use: Electricity: Well Pump MBtu Double - false - Electricity: Pool Heater MBtu - Electricity: Pool Heater MBtu - Electricity: Pool Heater MBtu - + End Use: Electricity: Pool Heater MBtu + End Use: Electricity: Pool Heater MBtu + End Use: Electricity: Pool Heater MBtu Double - false - Electricity: Pool Pump MBtu - Electricity: Pool Pump MBtu - Electricity: Pool Pump MBtu - + End Use: Electricity: Pool Pump MBtu + End Use: Electricity: Pool Pump MBtu + End Use: Electricity: Pool Pump MBtu Double - false - Electricity: Hot Tub Heater MBtu - Electricity: Hot Tub Heater MBtu - Electricity: Hot Tub Heater MBtu - + End Use: Electricity: Hot Tub Heater MBtu + End Use: Electricity: Hot Tub Heater MBtu + End Use: Electricity: Hot Tub Heater MBtu Double - false - Electricity: Hot Tub Pump MBtu - Electricity: Hot Tub Pump MBtu - Electricity: Hot Tub Pump MBtu - + End Use: Electricity: Hot Tub Pump MBtu + End Use: Electricity: Hot Tub Pump MBtu + End Use: Electricity: Hot Tub Pump MBtu Double - false - Electricity: PV MBtu - Electricity: PV MBtu - Electricity: PV MBtu - + End Use: Electricity: PV MBtu + End Use: Electricity: PV MBtu + End Use: Electricity: PV MBtu Double - false - Electricity: Generator MBtu - Electricity: Generator MBtu - Electricity: Generator MBtu - + End Use: Electricity: Generator MBtu + End Use: Electricity: Generator MBtu + End Use: Electricity: Generator MBtu Double - false - Natural Gas: Heating MBtu - Natural Gas: Heating MBtu - Natural Gas: Heating MBtu - + End Use: Natural Gas: Heating MBtu + End Use: Natural Gas: Heating MBtu + End Use: Natural Gas: Heating MBtu Double - false - Natural Gas: Hot Water MBtu - Natural Gas: Hot Water MBtu - Natural Gas: Hot Water MBtu - + End Use: Natural Gas: Hot Water MBtu + End Use: Natural Gas: Hot Water MBtu + End Use: Natural Gas: Hot Water MBtu Double - false - Natural Gas: Clothes Dryer MBtu - Natural Gas: Clothes Dryer MBtu - Natural Gas: Clothes Dryer MBtu - + End Use: Natural Gas: Clothes Dryer MBtu + End Use: Natural Gas: Clothes Dryer MBtu + End Use: Natural Gas: Clothes Dryer MBtu Double - false - Natural Gas: Range/Oven MBtu - Natural Gas: Range/Oven MBtu - Natural Gas: Range/Oven MBtu - + End Use: Natural Gas: Range/Oven MBtu + End Use: Natural Gas: Range/Oven MBtu + End Use: Natural Gas: Range/Oven MBtu Double - false - Natural Gas: Mech Vent Preheating MBtu - Natural Gas: Mech Vent Preheating MBtu - Natural Gas: Mech Vent Preheating MBtu - + End Use: Natural Gas: Mech Vent Preheating MBtu + End Use: Natural Gas: Mech Vent Preheating MBtu + End Use: Natural Gas: Mech Vent Preheating MBtu Double - false - Natural Gas: Pool Heater MBtu - Natural Gas: Pool Heater MBtu - Natural Gas: Pool Heater MBtu - + End Use: Natural Gas: Pool Heater MBtu + End Use: Natural Gas: Pool Heater MBtu + End Use: Natural Gas: Pool Heater MBtu Double - false - Natural Gas: Hot Tub Heater MBtu - Natural Gas: Hot Tub Heater MBtu - Natural Gas: Hot Tub Heater MBtu - + End Use: Natural Gas: Hot Tub Heater MBtu + End Use: Natural Gas: Hot Tub Heater MBtu + End Use: Natural Gas: Hot Tub Heater MBtu Double - false - Natural Gas: Grill MBtu - Natural Gas: Grill MBtu - Natural Gas: Grill MBtu - + End Use: Natural Gas: Grill MBtu + End Use: Natural Gas: Grill MBtu + End Use: Natural Gas: Grill MBtu Double - false - Natural Gas: Lighting MBtu - Natural Gas: Lighting MBtu - Natural Gas: Lighting MBtu - + End Use: Natural Gas: Lighting MBtu + End Use: Natural Gas: Lighting MBtu + End Use: Natural Gas: Lighting MBtu Double - false - Natural Gas: Fireplace MBtu - Natural Gas: Fireplace MBtu - Natural Gas: Fireplace MBtu - + End Use: Natural Gas: Fireplace MBtu + End Use: Natural Gas: Fireplace MBtu + End Use: Natural Gas: Fireplace MBtu Double - false - Natural Gas: Generator MBtu - Natural Gas: Generator MBtu - Natural Gas: Generator MBtu - + End Use: Natural Gas: Generator MBtu + End Use: Natural Gas: Generator MBtu + End Use: Natural Gas: Generator MBtu Double - false - Fuel Oil: Heating MBtu - Fuel Oil: Heating MBtu - Fuel Oil: Heating MBtu - + End Use: Fuel Oil: Heating MBtu + End Use: Fuel Oil: Heating MBtu + End Use: Fuel Oil: Heating MBtu Double - false - Fuel Oil: Hot Water MBtu - Fuel Oil: Hot Water MBtu - Fuel Oil: Hot Water MBtu - + End Use: Fuel Oil: Hot Water MBtu + End Use: Fuel Oil: Hot Water MBtu + End Use: Fuel Oil: Hot Water MBtu Double - false - Fuel Oil: Clothes Dryer MBtu - Fuel Oil: Clothes Dryer MBtu - Fuel Oil: Clothes Dryer MBtu - + End Use: Fuel Oil: Clothes Dryer MBtu + End Use: Fuel Oil: Clothes Dryer MBtu + End Use: Fuel Oil: Clothes Dryer MBtu Double - false - Fuel Oil: Range/Oven MBtu - Fuel Oil: Range/Oven MBtu - Fuel Oil: Range/Oven MBtu - + End Use: Fuel Oil: Range/Oven MBtu + End Use: Fuel Oil: Range/Oven MBtu + End Use: Fuel Oil: Range/Oven MBtu Double - false - Fuel Oil: Mech Vent Preheating MBtu - Fuel Oil: Mech Vent Preheating MBtu - Fuel Oil: Mech Vent Preheating MBtu - + End Use: Fuel Oil: Mech Vent Preheating MBtu + End Use: Fuel Oil: Mech Vent Preheating MBtu + End Use: Fuel Oil: Mech Vent Preheating MBtu Double - false - Fuel Oil: Grill MBtu - Fuel Oil: Grill MBtu - Fuel Oil: Grill MBtu - + End Use: Fuel Oil: Grill MBtu + End Use: Fuel Oil: Grill MBtu + End Use: Fuel Oil: Grill MBtu Double - false - Fuel Oil: Lighting MBtu - Fuel Oil: Lighting MBtu - Fuel Oil: Lighting MBtu - + End Use: Fuel Oil: Lighting MBtu + End Use: Fuel Oil: Lighting MBtu + End Use: Fuel Oil: Lighting MBtu Double - false - Fuel Oil: Fireplace MBtu - Fuel Oil: Fireplace MBtu - Fuel Oil: Fireplace MBtu - + End Use: Fuel Oil: Fireplace MBtu + End Use: Fuel Oil: Fireplace MBtu + End Use: Fuel Oil: Fireplace MBtu Double - false - Propane: Heating MBtu - Propane: Heating MBtu - Propane: Heating MBtu - + End Use: Propane: Heating MBtu + End Use: Propane: Heating MBtu + End Use: Propane: Heating MBtu Double - false - Propane: Hot Water MBtu - Propane: Hot Water MBtu - Propane: Hot Water MBtu - + End Use: Propane: Hot Water MBtu + End Use: Propane: Hot Water MBtu + End Use: Propane: Hot Water MBtu Double - false - Propane: Clothes Dryer MBtu - Propane: Clothes Dryer MBtu - Propane: Clothes Dryer MBtu - + End Use: Propane: Clothes Dryer MBtu + End Use: Propane: Clothes Dryer MBtu + End Use: Propane: Clothes Dryer MBtu Double - false - Propane: Range/Oven MBtu - Propane: Range/Oven MBtu - Propane: Range/Oven MBtu - + End Use: Propane: Range/Oven MBtu + End Use: Propane: Range/Oven MBtu + End Use: Propane: Range/Oven MBtu Double - false - Propane: Mech Vent Preheating MBtu - Propane: Mech Vent Preheating MBtu - Propane: Mech Vent Preheating MBtu - + End Use: Propane: Mech Vent Preheating MBtu + End Use: Propane: Mech Vent Preheating MBtu + End Use: Propane: Mech Vent Preheating MBtu Double - false - Propane: Grill MBtu - Propane: Grill MBtu - Propane: Grill MBtu - + End Use: Propane: Grill MBtu + End Use: Propane: Grill MBtu + End Use: Propane: Grill MBtu Double - false - Propane: Lighting MBtu - Propane: Lighting MBtu - Propane: Lighting MBtu - + End Use: Propane: Lighting MBtu + End Use: Propane: Lighting MBtu + End Use: Propane: Lighting MBtu Double - false - Propane: Fireplace MBtu - Propane: Fireplace MBtu - Propane: Fireplace MBtu - + End Use: Propane: Fireplace MBtu + End Use: Propane: Fireplace MBtu + End Use: Propane: Fireplace MBtu Double - false - Propane: Generator MBtu - Propane: Generator MBtu - Propane: Generator MBtu - + End Use: Propane: Generator MBtu + End Use: Propane: Generator MBtu + End Use: Propane: Generator MBtu Double - false - Wood Cord: Heating MBtu - Wood Cord: Heating MBtu - Wood Cord: Heating MBtu - + End Use: Wood Cord: Heating MBtu + End Use: Wood Cord: Heating MBtu + End Use: Wood Cord: Heating MBtu Double - false - Wood Cord: Hot Water MBtu - Wood Cord: Hot Water MBtu - Wood Cord: Hot Water MBtu - + End Use: Wood Cord: Hot Water MBtu + End Use: Wood Cord: Hot Water MBtu + End Use: Wood Cord: Hot Water MBtu Double - false - Wood Cord: Clothes Dryer MBtu - Wood Cord: Clothes Dryer MBtu - Wood Cord: Clothes Dryer MBtu - + End Use: Wood Cord: Clothes Dryer MBtu + End Use: Wood Cord: Clothes Dryer MBtu + End Use: Wood Cord: Clothes Dryer MBtu Double - false - Wood Cord: Range/Oven MBtu - Wood Cord: Range/Oven MBtu - Wood Cord: Range/Oven MBtu - + End Use: Wood Cord: Range/Oven MBtu + End Use: Wood Cord: Range/Oven MBtu + End Use: Wood Cord: Range/Oven MBtu Double - false - Wood Cord: Mech Vent Preheating MBtu - Wood Cord: Mech Vent Preheating MBtu - Wood Cord: Mech Vent Preheating MBtu - + End Use: Wood Cord: Mech Vent Preheating MBtu + End Use: Wood Cord: Mech Vent Preheating MBtu + End Use: Wood Cord: Mech Vent Preheating MBtu Double - false - Wood Cord: Grill MBtu - Wood Cord: Grill MBtu - Wood Cord: Grill MBtu - + End Use: Wood Cord: Grill MBtu + End Use: Wood Cord: Grill MBtu + End Use: Wood Cord: Grill MBtu Double - false - Wood Cord: Lighting MBtu - Wood Cord: Lighting MBtu - Wood Cord: Lighting MBtu - + End Use: Wood Cord: Lighting MBtu + End Use: Wood Cord: Lighting MBtu + End Use: Wood Cord: Lighting MBtu Double - false - Wood Cord: Fireplace MBtu - Wood Cord: Fireplace MBtu - Wood Cord: Fireplace MBtu - + End Use: Wood Cord: Fireplace MBtu + End Use: Wood Cord: Fireplace MBtu + End Use: Wood Cord: Fireplace MBtu Double - false - Wood Pellets: Heating MBtu - Wood Pellets: Heating MBtu - Wood Pellets: Heating MBtu - + End Use: Wood Pellets: Heating MBtu + End Use: Wood Pellets: Heating MBtu + End Use: Wood Pellets: Heating MBtu Double - false - Wood Pellets: Hot Water MBtu - Wood Pellets: Hot Water MBtu - Wood Pellets: Hot Water MBtu - + End Use: Wood Pellets: Hot Water MBtu + End Use: Wood Pellets: Hot Water MBtu + End Use: Wood Pellets: Hot Water MBtu Double - false - Wood Pellets: Clothes Dryer MBtu - Wood Pellets: Clothes Dryer MBtu - Wood Pellets: Clothes Dryer MBtu - + End Use: Wood Pellets: Clothes Dryer MBtu + End Use: Wood Pellets: Clothes Dryer MBtu + End Use: Wood Pellets: Clothes Dryer MBtu Double - false - Wood Pellets: Range/Oven MBtu - Wood Pellets: Range/Oven MBtu - Wood Pellets: Range/Oven MBtu - + End Use: Wood Pellets: Range/Oven MBtu + End Use: Wood Pellets: Range/Oven MBtu + End Use: Wood Pellets: Range/Oven MBtu Double - false - Wood Pellets: Mech Vent Preheating MBtu - Wood Pellets: Mech Vent Preheating MBtu - Wood Pellets: Mech Vent Preheating MBtu - + End Use: Wood Pellets: Mech Vent Preheating MBtu + End Use: Wood Pellets: Mech Vent Preheating MBtu + End Use: Wood Pellets: Mech Vent Preheating MBtu Double - false - Wood Pellets: Grill MBtu - Wood Pellets: Grill MBtu - Wood Pellets: Grill MBtu - + End Use: Wood Pellets: Grill MBtu + End Use: Wood Pellets: Grill MBtu + End Use: Wood Pellets: Grill MBtu Double - false - Wood Pellets: Lighting MBtu - Wood Pellets: Lighting MBtu - Wood Pellets: Lighting MBtu - + End Use: Wood Pellets: Lighting MBtu + End Use: Wood Pellets: Lighting MBtu + End Use: Wood Pellets: Lighting MBtu Double - false - Wood Pellets: Fireplace MBtu - Wood Pellets: Fireplace MBtu - Wood Pellets: Fireplace MBtu - + End Use: Wood Pellets: Fireplace MBtu + End Use: Wood Pellets: Fireplace MBtu + End Use: Wood Pellets: Fireplace MBtu Double - false - Coal: Heating MBtu - Coal: Heating MBtu - Coal: Heating MBtu - + End Use: Coal: Heating MBtu + End Use: Coal: Heating MBtu + End Use: Coal: Heating MBtu Double - false - Coal: Hot Water MBtu - Coal: Hot Water MBtu - Coal: Hot Water MBtu - + End Use: Coal: Hot Water MBtu + End Use: Coal: Hot Water MBtu + End Use: Coal: Hot Water MBtu Double - false - Coal: Clothes Dryer MBtu - Coal: Clothes Dryer MBtu - Coal: Clothes Dryer MBtu - + End Use: Coal: Clothes Dryer MBtu + End Use: Coal: Clothes Dryer MBtu + End Use: Coal: Clothes Dryer MBtu Double - false - Coal: Range/Oven MBtu - Coal: Range/Oven MBtu - Coal: Range/Oven MBtu - + End Use: Coal: Range/Oven MBtu + End Use: Coal: Range/Oven MBtu + End Use: Coal: Range/Oven MBtu Double - false - Coal: Mech Vent Preheating MBtu - Coal: Mech Vent Preheating MBtu - Coal: Mech Vent Preheating MBtu - + End Use: Coal: Mech Vent Preheating MBtu + End Use: Coal: Mech Vent Preheating MBtu + End Use: Coal: Mech Vent Preheating MBtu Double - false - Coal: Grill MBtu - Coal: Grill MBtu - Coal: Grill MBtu - + End Use: Coal: Grill MBtu + End Use: Coal: Grill MBtu + End Use: Coal: Grill MBtu Double - false - Coal: Lighting MBtu - Coal: Lighting MBtu - Coal: Lighting MBtu - + End Use: Coal: Lighting MBtu + End Use: Coal: Lighting MBtu + End Use: Coal: Lighting MBtu Double - false - Coal: Fireplace MBtu - Coal: Fireplace MBtu - Coal: Fireplace MBtu - + End Use: Coal: Fireplace MBtu + End Use: Coal: Fireplace MBtu + End Use: Coal: Fireplace MBtu Double - false @@ -1075,7 +904,7 @@ output_report_test.rb rb test - D21E96E6 + 4CF3D80C @@ -1086,8 +915,7 @@ measure.rb rb script - 14FA021B + F29271E9 -uninitialized constant SimulationOutputReport::EPlus diff --git a/example_files/resources/hpxml-measures/SimulationOutputReport/tests/output_report_test.rb b/example_files/resources/hpxml-measures/SimulationOutputReport/tests/output_report_test.rb index 2c161ba8..984784cf 100644 --- a/example_files/resources/hpxml-measures/SimulationOutputReport/tests/output_report_test.rb +++ b/example_files/resources/hpxml-measures/SimulationOutputReport/tests/output_report_test.rb @@ -10,98 +10,98 @@ class SimulationOutputReportTest < MiniTest::Test AnnualRows = [ - 'Electricity: Total (MBtu)', - 'Electricity: Net (MBtu)', - 'Natural Gas: Total (MBtu)', - 'Fuel Oil: Total (MBtu)', - 'Propane: Total (MBtu)', - 'Wood Cord: Total (MBtu)', - 'Wood Pellets: Total (MBtu)', - 'Coal: Total (MBtu)', - 'Electricity: Heating (MBtu)', - 'Electricity: Heating Fans/Pumps (MBtu)', - 'Electricity: Cooling (MBtu)', - 'Electricity: Cooling Fans/Pumps (MBtu)', - 'Electricity: Hot Water (MBtu)', - 'Electricity: Hot Water Recirc Pump (MBtu)', - 'Electricity: Hot Water Solar Thermal Pump (MBtu)', - 'Electricity: Lighting Interior (MBtu)', - 'Electricity: Lighting Garage (MBtu)', - 'Electricity: Lighting Exterior (MBtu)', - 'Electricity: Mech Vent (MBtu)', - 'Electricity: Mech Vent Preheating (MBtu)', - 'Electricity: Mech Vent Precooling (MBtu)', - 'Electricity: Whole House Fan (MBtu)', - 'Electricity: Refrigerator (MBtu)', - 'Electricity: Freezer (MBtu)', - 'Electricity: Dehumidifier (MBtu)', - 'Electricity: Dishwasher (MBtu)', - 'Electricity: Clothes Washer (MBtu)', - 'Electricity: Clothes Dryer (MBtu)', - 'Electricity: Range/Oven (MBtu)', - 'Electricity: Ceiling Fan (MBtu)', - 'Electricity: Television (MBtu)', - 'Electricity: Plug Loads (MBtu)', - 'Electricity: Electric Vehicle Charging (MBtu)', - 'Electricity: Well Pump (MBtu)', - 'Electricity: Pool Heater (MBtu)', - 'Electricity: Pool Pump (MBtu)', - 'Electricity: Hot Tub Heater (MBtu)', - 'Electricity: Hot Tub Pump (MBtu)', - 'Electricity: PV (MBtu)', - 'Electricity: Generator (MBtu)', - 'Natural Gas: Heating (MBtu)', - 'Natural Gas: Hot Water (MBtu)', - 'Natural Gas: Clothes Dryer (MBtu)', - 'Natural Gas: Range/Oven (MBtu)', - 'Natural Gas: Pool Heater (MBtu)', - 'Natural Gas: Hot Tub Heater (MBtu)', - 'Natural Gas: Grill (MBtu)', - 'Natural Gas: Lighting (MBtu)', - 'Natural Gas: Fireplace (MBtu)', - 'Natural Gas: Mech Vent Preheating (MBtu)', - 'Natural Gas: Generator (MBtu)', - 'Fuel Oil: Heating (MBtu)', - 'Fuel Oil: Hot Water (MBtu)', - 'Fuel Oil: Clothes Dryer (MBtu)', - 'Fuel Oil: Range/Oven (MBtu)', - 'Fuel Oil: Grill (MBtu)', - 'Fuel Oil: Lighting (MBtu)', - 'Fuel Oil: Fireplace (MBtu)', - 'Fuel Oil: Mech Vent Preheating (MBtu)', - 'Propane: Heating (MBtu)', - 'Propane: Hot Water (MBtu)', - 'Propane: Clothes Dryer (MBtu)', - 'Propane: Range/Oven (MBtu)', - 'Propane: Grill (MBtu)', - 'Propane: Lighting (MBtu)', - 'Propane: Fireplace (MBtu)', - 'Propane: Mech Vent Preheating (MBtu)', - 'Propane: Generator (MBtu)', - 'Wood Cord: Heating (MBtu)', - 'Wood Cord: Hot Water (MBtu)', - 'Wood Cord: Clothes Dryer (MBtu)', - 'Wood Cord: Range/Oven (MBtu)', - 'Wood Cord: Grill (MBtu)', - 'Wood Cord: Lighting (MBtu)', - 'Wood Cord: Fireplace (MBtu)', - 'Wood Cord: Mech Vent Preheating (MBtu)', - 'Wood Pellets: Heating (MBtu)', - 'Wood Pellets: Hot Water (MBtu)', - 'Wood Pellets: Clothes Dryer (MBtu)', - 'Wood Pellets: Range/Oven (MBtu)', - 'Wood Pellets: Grill (MBtu)', - 'Wood Pellets: Lighting (MBtu)', - 'Wood Pellets: Fireplace (MBtu)', - 'Wood Pellets: Mech Vent Preheating (MBtu)', - 'Coal: Heating (MBtu)', - 'Coal: Hot Water (MBtu)', - 'Coal: Clothes Dryer (MBtu)', - 'Coal: Range/Oven (MBtu)', - 'Coal: Grill (MBtu)', - 'Coal: Lighting (MBtu)', - 'Coal: Fireplace (MBtu)', - 'Coal: Mech Vent Preheating (MBtu)', + 'Fuel Use: Electricity: Total (MBtu)', + 'Fuel Use: Electricity: Net (MBtu)', + 'Fuel Use: Natural Gas: Total (MBtu)', + 'Fuel Use: Fuel Oil: Total (MBtu)', + 'Fuel Use: Propane: Total (MBtu)', + 'Fuel Use: Wood Cord: Total (MBtu)', + 'Fuel Use: Wood Pellets: Total (MBtu)', + 'Fuel Use: Coal: Total (MBtu)', + 'End Use: Electricity: Heating (MBtu)', + 'End Use: Electricity: Heating Fans/Pumps (MBtu)', + 'End Use: Electricity: Cooling (MBtu)', + 'End Use: Electricity: Cooling Fans/Pumps (MBtu)', + 'End Use: Electricity: Hot Water (MBtu)', + 'End Use: Electricity: Hot Water Recirc Pump (MBtu)', + 'End Use: Electricity: Hot Water Solar Thermal Pump (MBtu)', + 'End Use: Electricity: Lighting Interior (MBtu)', + 'End Use: Electricity: Lighting Garage (MBtu)', + 'End Use: Electricity: Lighting Exterior (MBtu)', + 'End Use: Electricity: Mech Vent (MBtu)', + 'End Use: Electricity: Mech Vent Preheating (MBtu)', + 'End Use: Electricity: Mech Vent Precooling (MBtu)', + 'End Use: Electricity: Whole House Fan (MBtu)', + 'End Use: Electricity: Refrigerator (MBtu)', + 'End Use: Electricity: Freezer (MBtu)', + 'End Use: Electricity: Dehumidifier (MBtu)', + 'End Use: Electricity: Dishwasher (MBtu)', + 'End Use: Electricity: Clothes Washer (MBtu)', + 'End Use: Electricity: Clothes Dryer (MBtu)', + 'End Use: Electricity: Range/Oven (MBtu)', + 'End Use: Electricity: Ceiling Fan (MBtu)', + 'End Use: Electricity: Television (MBtu)', + 'End Use: Electricity: Plug Loads (MBtu)', + 'End Use: Electricity: Electric Vehicle Charging (MBtu)', + 'End Use: Electricity: Well Pump (MBtu)', + 'End Use: Electricity: Pool Heater (MBtu)', + 'End Use: Electricity: Pool Pump (MBtu)', + 'End Use: Electricity: Hot Tub Heater (MBtu)', + 'End Use: Electricity: Hot Tub Pump (MBtu)', + 'End Use: Electricity: PV (MBtu)', + 'End Use: Electricity: Generator (MBtu)', + 'End Use: Natural Gas: Heating (MBtu)', + 'End Use: Natural Gas: Hot Water (MBtu)', + 'End Use: Natural Gas: Clothes Dryer (MBtu)', + 'End Use: Natural Gas: Range/Oven (MBtu)', + 'End Use: Natural Gas: Pool Heater (MBtu)', + 'End Use: Natural Gas: Hot Tub Heater (MBtu)', + 'End Use: Natural Gas: Grill (MBtu)', + 'End Use: Natural Gas: Lighting (MBtu)', + 'End Use: Natural Gas: Fireplace (MBtu)', + 'End Use: Natural Gas: Mech Vent Preheating (MBtu)', + 'End Use: Natural Gas: Generator (MBtu)', + 'End Use: Fuel Oil: Heating (MBtu)', + 'End Use: Fuel Oil: Hot Water (MBtu)', + 'End Use: Fuel Oil: Clothes Dryer (MBtu)', + 'End Use: Fuel Oil: Range/Oven (MBtu)', + 'End Use: Fuel Oil: Grill (MBtu)', + 'End Use: Fuel Oil: Lighting (MBtu)', + 'End Use: Fuel Oil: Fireplace (MBtu)', + 'End Use: Fuel Oil: Mech Vent Preheating (MBtu)', + 'End Use: Propane: Heating (MBtu)', + 'End Use: Propane: Hot Water (MBtu)', + 'End Use: Propane: Clothes Dryer (MBtu)', + 'End Use: Propane: Range/Oven (MBtu)', + 'End Use: Propane: Grill (MBtu)', + 'End Use: Propane: Lighting (MBtu)', + 'End Use: Propane: Fireplace (MBtu)', + 'End Use: Propane: Mech Vent Preheating (MBtu)', + 'End Use: Propane: Generator (MBtu)', + 'End Use: Wood Cord: Heating (MBtu)', + 'End Use: Wood Cord: Hot Water (MBtu)', + 'End Use: Wood Cord: Clothes Dryer (MBtu)', + 'End Use: Wood Cord: Range/Oven (MBtu)', + 'End Use: Wood Cord: Grill (MBtu)', + 'End Use: Wood Cord: Lighting (MBtu)', + 'End Use: Wood Cord: Fireplace (MBtu)', + 'End Use: Wood Cord: Mech Vent Preheating (MBtu)', + 'End Use: Wood Pellets: Heating (MBtu)', + 'End Use: Wood Pellets: Hot Water (MBtu)', + 'End Use: Wood Pellets: Clothes Dryer (MBtu)', + 'End Use: Wood Pellets: Range/Oven (MBtu)', + 'End Use: Wood Pellets: Grill (MBtu)', + 'End Use: Wood Pellets: Lighting (MBtu)', + 'End Use: Wood Pellets: Fireplace (MBtu)', + 'End Use: Wood Pellets: Mech Vent Preheating (MBtu)', + 'End Use: Coal: Heating (MBtu)', + 'End Use: Coal: Hot Water (MBtu)', + 'End Use: Coal: Clothes Dryer (MBtu)', + 'End Use: Coal: Range/Oven (MBtu)', + 'End Use: Coal: Grill (MBtu)', + 'End Use: Coal: Lighting (MBtu)', + 'End Use: Coal: Fireplace (MBtu)', + 'End Use: Coal: Mech Vent Preheating (MBtu)', 'Load: Heating (MBtu)', 'Load: Cooling (MBtu)', 'Load: Hot Water: Delivered (MBtu)', @@ -155,92 +155,92 @@ class SimulationOutputReportTest < MiniTest::Test ] TimeseriesColsFuels = [ - 'Electricity: Total', - 'Natural Gas: Total', - 'Fuel Oil: Total', - 'Propane: Total', - 'Wood Cord: Total', - 'Wood Pellets: Total', - 'Coal: Total', + 'Fuel Use: Electricity: Total', + 'Fuel Use: Natural Gas: Total', + 'Fuel Use: Fuel Oil: Total', + 'Fuel Use: Propane: Total', + 'Fuel Use: Wood Cord: Total', + 'Fuel Use: Wood Pellets: Total', + 'Fuel Use: Coal: Total', ] TimeseriesColsEndUses = [ - 'Electricity: Heating', - 'Electricity: Heating Fans/Pumps', - 'Electricity: Cooling', - 'Electricity: Cooling Fans/Pumps', - 'Electricity: Hot Water', - 'Electricity: Hot Water Recirc Pump', - 'Electricity: Hot Water Solar Thermal Pump', - 'Electricity: Lighting Interior', - 'Electricity: Lighting Garage', - 'Electricity: Lighting Exterior', - 'Electricity: Mech Vent', - 'Electricity: Whole House Fan', - 'Electricity: Refrigerator', - 'Electricity: Freezer', - 'Electricity: Dehumidifier', - 'Electricity: Dishwasher', - 'Electricity: Clothes Washer', - 'Electricity: Clothes Dryer', - 'Electricity: Range/Oven', - 'Electricity: Ceiling Fan', - 'Electricity: Television', - 'Electricity: Plug Loads', - 'Electricity: Electric Vehicle Charging', - 'Electricity: Well Pump', - 'Electricity: Pool Heater', - 'Electricity: Pool Pump', - 'Electricity: Hot Tub Heater', - 'Electricity: Hot Tub Pump', - 'Electricity: PV', - 'Electricity: Generator', - 'Natural Gas: Heating', - 'Natural Gas: Hot Water', - 'Natural Gas: Clothes Dryer', - 'Natural Gas: Range/Oven', - 'Natural Gas: Pool Heater', - 'Natural Gas: Hot Tub Heater', - 'Natural Gas: Grill', - 'Natural Gas: Lighting', - 'Natural Gas: Fireplace', - 'Natural Gas: Generator', - 'Fuel Oil: Heating', - 'Fuel Oil: Hot Water', - 'Fuel Oil: Clothes Dryer', - 'Fuel Oil: Range/Oven', - 'Fuel Oil: Grill', - 'Fuel Oil: Lighting', - 'Fuel Oil: Fireplace', - 'Propane: Heating', - 'Propane: Hot Water', - 'Propane: Clothes Dryer', - 'Propane: Range/Oven', - 'Propane: Grill', - 'Propane: Lighting', - 'Propane: Fireplace', - 'Propane: Generator', - 'Wood Cord: Heating', - 'Wood Cord: Hot Water', - 'Wood Cord: Clothes Dryer', - 'Wood Cord: Range/Oven', - 'Wood Cord: Grill', - 'Wood Cord: Lighting', - 'Wood Cord: Fireplace', - 'Wood Pellets: Heating', - 'Wood Pellets: Hot Water', - 'Wood Pellets: Clothes Dryer', - 'Wood Pellets: Range/Oven', - 'Wood Pellets: Grill', - 'Wood Pellets: Lighting', - 'Wood Pellets: Fireplace', - 'Coal: Heating', - 'Coal: Hot Water', - 'Coal: Clothes Dryer', - 'Coal: Range/Oven', - 'Coal: Grill', - 'Coal: Lighting', - 'Coal: Fireplace', + 'End Use: Electricity: Heating', + 'End Use: Electricity: Heating Fans/Pumps', + 'End Use: Electricity: Cooling', + 'End Use: Electricity: Cooling Fans/Pumps', + 'End Use: Electricity: Hot Water', + 'End Use: Electricity: Hot Water Recirc Pump', + 'End Use: Electricity: Hot Water Solar Thermal Pump', + 'End Use: Electricity: Lighting Interior', + 'End Use: Electricity: Lighting Garage', + 'End Use: Electricity: Lighting Exterior', + 'End Use: Electricity: Mech Vent', + 'End Use: Electricity: Whole House Fan', + 'End Use: Electricity: Refrigerator', + 'End Use: Electricity: Freezer', + 'End Use: Electricity: Dehumidifier', + 'End Use: Electricity: Dishwasher', + 'End Use: Electricity: Clothes Washer', + 'End Use: Electricity: Clothes Dryer', + 'End Use: Electricity: Range/Oven', + 'End Use: Electricity: Ceiling Fan', + 'End Use: Electricity: Television', + 'End Use: Electricity: Plug Loads', + 'End Use: Electricity: Electric Vehicle Charging', + 'End Use: Electricity: Well Pump', + 'End Use: Electricity: Pool Heater', + 'End Use: Electricity: Pool Pump', + 'End Use: Electricity: Hot Tub Heater', + 'End Use: Electricity: Hot Tub Pump', + 'End Use: Electricity: PV', + 'End Use: Electricity: Generator', + 'End Use: Natural Gas: Heating', + 'End Use: Natural Gas: Hot Water', + 'End Use: Natural Gas: Clothes Dryer', + 'End Use: Natural Gas: Range/Oven', + 'End Use: Natural Gas: Pool Heater', + 'End Use: Natural Gas: Hot Tub Heater', + 'End Use: Natural Gas: Grill', + 'End Use: Natural Gas: Lighting', + 'End Use: Natural Gas: Fireplace', + 'End Use: Natural Gas: Generator', + 'End Use: Fuel Oil: Heating', + 'End Use: Fuel Oil: Hot Water', + 'End Use: Fuel Oil: Clothes Dryer', + 'End Use: Fuel Oil: Range/Oven', + 'End Use: Fuel Oil: Grill', + 'End Use: Fuel Oil: Lighting', + 'End Use: Fuel Oil: Fireplace', + 'End Use: Propane: Heating', + 'End Use: Propane: Hot Water', + 'End Use: Propane: Clothes Dryer', + 'End Use: Propane: Range/Oven', + 'End Use: Propane: Grill', + 'End Use: Propane: Lighting', + 'End Use: Propane: Fireplace', + 'End Use: Propane: Generator', + 'End Use: Wood Cord: Heating', + 'End Use: Wood Cord: Hot Water', + 'End Use: Wood Cord: Clothes Dryer', + 'End Use: Wood Cord: Range/Oven', + 'End Use: Wood Cord: Grill', + 'End Use: Wood Cord: Lighting', + 'End Use: Wood Cord: Fireplace', + 'End Use: Wood Pellets: Heating', + 'End Use: Wood Pellets: Hot Water', + 'End Use: Wood Pellets: Clothes Dryer', + 'End Use: Wood Pellets: Range/Oven', + 'End Use: Wood Pellets: Grill', + 'End Use: Wood Pellets: Lighting', + 'End Use: Wood Pellets: Fireplace', + 'End Use: Coal: Heating', + 'End Use: Coal: Hot Water', + 'End Use: Coal: Clothes Dryer', + 'End Use: Coal: Range/Oven', + 'End Use: Coal: Grill', + 'End Use: Coal: Lighting', + 'End Use: Coal: Fireplace', ] TimeseriesColsWaterUses = [ @@ -293,6 +293,11 @@ class SimulationOutputReportTest < MiniTest::Test 'Component Load: Cooling: Internal Gains', ] + TimeseriesColsUnmetLoads = [ + 'Unmet Load: Heating', + 'Unmet Load: Cooling', + ] + TimeseriesColsZoneTemps = [ 'Temperature: Attic - Unvented', 'Temperature: Living Space', @@ -413,6 +418,7 @@ def all_timeseries_cols TimeseriesColsWaterUses + TimeseriesColsTotalLoads + TimeseriesColsComponentLoads + + TimeseriesColsUnmetLoads + TimeseriesColsZoneTemps + TimeseriesColsAirflows + TimeseriesColsWeather) @@ -426,6 +432,7 @@ def test_annual_only 'include_timeseries_hot_water_uses' => false, 'include_timeseries_total_loads' => false, 'include_timeseries_component_loads' => false, + 'include_timeseries_unmet_loads' => false, 'include_timeseries_zone_temperatures' => false, 'include_timeseries_airflows' => false, 'include_timeseries_weather' => false } @@ -445,6 +452,7 @@ def test_annual_only2 'include_timeseries_hot_water_uses' => true, 'include_timeseries_total_loads' => true, 'include_timeseries_component_loads' => true, + 'include_timeseries_unmet_loads' => true, 'include_timeseries_zone_temperatures' => true, 'include_timeseries_airflows' => true, 'include_timeseries_weather' => true } @@ -464,6 +472,7 @@ def test_timeseries_hourly_fuels 'include_timeseries_hot_water_uses' => false, 'include_timeseries_total_loads' => false, 'include_timeseries_component_loads' => false, + 'include_timeseries_unmet_loads' => false, 'include_timeseries_zone_temperatures' => false, 'include_timeseries_airflows' => false, 'include_timeseries_weather' => false } @@ -474,7 +483,7 @@ def test_timeseries_hourly_fuels actual_timeseries_cols = File.readlines(timeseries_csv)[0].strip.split(',') assert_equal(expected_timeseries_cols.sort, actual_timeseries_cols.sort) assert_equal(8760, File.readlines(timeseries_csv).size - 2) - _check_for_nonzero_timeseries_value(timeseries_csv, ['Electricity: Total']) + _check_for_nonzero_timeseries_value(timeseries_csv, ['Fuel Use: Electricity: Total']) end def test_timeseries_hourly_enduses @@ -485,6 +494,7 @@ def test_timeseries_hourly_enduses 'include_timeseries_hot_water_uses' => false, 'include_timeseries_total_loads' => false, 'include_timeseries_component_loads' => false, + 'include_timeseries_unmet_loads' => false, 'include_timeseries_zone_temperatures' => false, 'include_timeseries_airflows' => false, 'include_timeseries_weather' => false } @@ -495,7 +505,7 @@ def test_timeseries_hourly_enduses actual_timeseries_cols = File.readlines(timeseries_csv)[0].strip.split(',') assert_equal(expected_timeseries_cols.sort, actual_timeseries_cols.sort) assert_equal(8760, File.readlines(timeseries_csv).size - 2) - _check_for_nonzero_timeseries_value(timeseries_csv, ['Electricity: Plug Loads']) + _check_for_nonzero_timeseries_value(timeseries_csv, ['End Use: Electricity: Plug Loads']) end def test_timeseries_hourly_hotwateruses @@ -506,6 +516,7 @@ def test_timeseries_hourly_hotwateruses 'include_timeseries_hot_water_uses' => true, 'include_timeseries_total_loads' => false, 'include_timeseries_component_loads' => false, + 'include_timeseries_unmet_loads' => false, 'include_timeseries_zone_temperatures' => false, 'include_timeseries_airflows' => false, 'include_timeseries_weather' => false } @@ -519,7 +530,7 @@ def test_timeseries_hourly_hotwateruses _check_for_nonzero_timeseries_value(timeseries_csv, TimeseriesColsWaterUses) end - def test_timeseries_hourly_loads + def test_timeseries_hourly_total_loads args_hash = { 'hpxml_path' => '../workflow/sample_files/base.xml', 'timeseries_frequency' => 'hourly', 'include_timeseries_fuel_consumptions' => false, @@ -527,6 +538,7 @@ def test_timeseries_hourly_loads 'include_timeseries_hot_water_uses' => false, 'include_timeseries_total_loads' => true, 'include_timeseries_component_loads' => false, + 'include_timeseries_unmet_loads' => false, 'include_timeseries_zone_temperatures' => false, 'include_timeseries_airflows' => false, 'include_timeseries_weather' => false } @@ -540,7 +552,7 @@ def test_timeseries_hourly_loads _check_for_nonzero_timeseries_value(timeseries_csv, TimeseriesColsTotalLoads) end - def test_timeseries_hourly_componentloads + def test_timeseries_hourly_component_loads args_hash = { 'hpxml_path' => '../workflow/sample_files/base.xml', 'timeseries_frequency' => 'hourly', 'include_timeseries_fuel_consumptions' => false, @@ -548,6 +560,7 @@ def test_timeseries_hourly_componentloads 'include_timeseries_hot_water_uses' => false, 'include_timeseries_total_loads' => false, 'include_timeseries_component_loads' => true, + 'include_timeseries_unmet_loads' => false, 'include_timeseries_zone_temperatures' => false, 'include_timeseries_airflows' => false, 'include_timeseries_weather' => false } @@ -561,6 +574,28 @@ def test_timeseries_hourly_componentloads _check_for_nonzero_timeseries_value(timeseries_csv, ['Component Load: Heating: Internal Gains', 'Component Load: Cooling: Internal Gains']) end + def test_timeseries_hourly_unmet_loads + args_hash = { 'hpxml_path' => '../workflow/sample_files/base-hvac-undersized.xml', + 'timeseries_frequency' => 'hourly', + 'include_timeseries_fuel_consumptions' => false, + 'include_timeseries_end_use_consumptions' => false, + 'include_timeseries_hot_water_uses' => false, + 'include_timeseries_total_loads' => false, + 'include_timeseries_component_loads' => false, + 'include_timeseries_unmet_loads' => true, + 'include_timeseries_zone_temperatures' => false, + 'include_timeseries_airflows' => false, + 'include_timeseries_weather' => false } + annual_csv, timeseries_csv, eri_csv = _test_measure(args_hash) + assert(File.exist?(annual_csv)) + assert(File.exist?(timeseries_csv)) + expected_timeseries_cols = ['Time'] + TimeseriesColsUnmetLoads + actual_timeseries_cols = File.readlines(timeseries_csv)[0].strip.split(',') + assert_equal(expected_timeseries_cols.sort, actual_timeseries_cols.sort) + assert_equal(8760, File.readlines(timeseries_csv).size - 2) + _check_for_nonzero_timeseries_value(timeseries_csv, TimeseriesColsUnmetLoads) + end + def test_timeseries_hourly_zone_temperatures args_hash = { 'hpxml_path' => '../workflow/sample_files/base.xml', 'timeseries_frequency' => 'hourly', @@ -569,6 +604,7 @@ def test_timeseries_hourly_zone_temperatures 'include_timeseries_hot_water_uses' => false, 'include_timeseries_total_loads' => false, 'include_timeseries_component_loads' => false, + 'include_timeseries_unmet_loads' => false, 'include_timeseries_zone_temperatures' => true, 'include_timeseries_airflows' => false, 'include_timeseries_weather' => false } @@ -590,6 +626,7 @@ def test_timeseries_hourly_zone_temperatures_mf_space 'include_timeseries_hot_water_uses' => false, 'include_timeseries_total_loads' => false, 'include_timeseries_component_loads' => false, + 'include_timeseries_unmet_loads' => false, 'include_timeseries_zone_temperatures' => true, 'include_timeseries_airflows' => false, 'include_timeseries_weather' => false } @@ -612,6 +649,7 @@ def test_timeseries_hourly_airflows_with_exhaust_mechvent 'include_timeseries_hot_water_uses' => false, 'include_timeseries_total_loads' => false, 'include_timeseries_component_loads' => false, + 'include_timeseries_unmet_loads' => false, 'include_timeseries_zone_temperatures' => false, 'include_timeseries_airflows' => true, 'include_timeseries_weather' => false } @@ -633,6 +671,7 @@ def test_timeseries_hourly_airflows_with_whf 'include_timeseries_hot_water_uses' => false, 'include_timeseries_total_loads' => false, 'include_timeseries_component_loads' => false, + 'include_timeseries_unmet_loads' => false, 'include_timeseries_zone_temperatures' => false, 'include_timeseries_airflows' => true, 'include_timeseries_weather' => false } @@ -654,6 +693,7 @@ def test_timeseries_hourly_airflows_with_clothes_dryer_exhaust 'include_timeseries_hot_water_uses' => false, 'include_timeseries_total_loads' => false, 'include_timeseries_component_loads' => false, + 'include_timeseries_unmet_loads' => false, 'include_timeseries_zone_temperatures' => false, 'include_timeseries_airflows' => true, 'include_timeseries_weather' => false } @@ -675,6 +715,7 @@ def test_timeseries_hourly_airflows_with_balanced_mechvent 'include_timeseries_hot_water_uses' => false, 'include_timeseries_total_loads' => false, 'include_timeseries_component_loads' => false, + 'include_timeseries_unmet_loads' => false, 'include_timeseries_zone_temperatures' => false, 'include_timeseries_airflows' => true, 'include_timeseries_weather' => false } @@ -696,6 +737,7 @@ def test_timeseries_hourly_airflows_with_cfis 'include_timeseries_hot_water_uses' => false, 'include_timeseries_total_loads' => false, 'include_timeseries_component_loads' => false, + 'include_timeseries_unmet_loads' => false, 'include_timeseries_zone_temperatures' => false, 'include_timeseries_airflows' => true, 'include_timeseries_weather' => false } @@ -717,6 +759,7 @@ def test_timeseries_hourly_weather 'include_timeseries_hot_water_uses' => false, 'include_timeseries_total_loads' => false, 'include_timeseries_component_loads' => false, + 'include_timeseries_unmet_loads' => false, 'include_timeseries_zone_temperatures' => false, 'include_timeseries_airflows' => false, 'include_timeseries_weather' => true } @@ -738,6 +781,7 @@ def test_timeseries_hourly_ALL 'include_timeseries_hot_water_uses' => true, 'include_timeseries_total_loads' => true, 'include_timeseries_component_loads' => true, + 'include_timeseries_unmet_loads' => true, 'include_timeseries_zone_temperatures' => true, 'include_timeseries_airflows' => true, 'include_timeseries_weather' => true } @@ -748,7 +792,7 @@ def test_timeseries_hourly_ALL actual_timeseries_cols = File.readlines(timeseries_csv)[0].strip.split(',') assert_equal(expected_timeseries_cols.sort, actual_timeseries_cols.sort) assert_equal(8760, File.readlines(timeseries_csv).size - 2) - _check_for_zero_baseload_timeseries_value(timeseries_csv, ['Electricity: Refrigerator']) + _check_for_zero_baseload_timeseries_value(timeseries_csv, ['End Use: Electricity: Refrigerator']) end def test_timeseries_daily_ALL @@ -759,6 +803,7 @@ def test_timeseries_daily_ALL 'include_timeseries_hot_water_uses' => true, 'include_timeseries_total_loads' => true, 'include_timeseries_component_loads' => true, + 'include_timeseries_unmet_loads' => true, 'include_timeseries_zone_temperatures' => true, 'include_timeseries_airflows' => true, 'include_timeseries_weather' => true } @@ -769,7 +814,7 @@ def test_timeseries_daily_ALL actual_timeseries_cols = File.readlines(timeseries_csv)[0].strip.split(',') assert_equal(expected_timeseries_cols.sort, actual_timeseries_cols.sort) assert_equal(365, File.readlines(timeseries_csv).size - 2) - _check_for_zero_baseload_timeseries_value(timeseries_csv, ['Electricity: Refrigerator']) + _check_for_zero_baseload_timeseries_value(timeseries_csv, ['End Use: Electricity: Refrigerator']) end def test_timeseries_monthly_ALL @@ -780,6 +825,7 @@ def test_timeseries_monthly_ALL 'include_timeseries_hot_water_uses' => true, 'include_timeseries_total_loads' => true, 'include_timeseries_component_loads' => true, + 'include_timeseries_unmet_loads' => true, 'include_timeseries_zone_temperatures' => true, 'include_timeseries_airflows' => true, 'include_timeseries_weather' => true } @@ -790,7 +836,7 @@ def test_timeseries_monthly_ALL actual_timeseries_cols = File.readlines(timeseries_csv)[0].strip.split(',') assert_equal(expected_timeseries_cols.sort, actual_timeseries_cols.sort) assert_equal(12, File.readlines(timeseries_csv).size - 2) - _check_for_zero_baseload_timeseries_value(timeseries_csv, ['Electricity: Refrigerator']) + _check_for_zero_baseload_timeseries_value(timeseries_csv, ['End Use: Electricity: Refrigerator']) end def test_timeseries_timestep @@ -801,6 +847,7 @@ def test_timeseries_timestep 'include_timeseries_hot_water_uses' => false, 'include_timeseries_total_loads' => false, 'include_timeseries_component_loads' => false, + 'include_timeseries_unmet_loads' => false, 'include_timeseries_zone_temperatures' => false, 'include_timeseries_airflows' => false, 'include_timeseries_weather' => false } @@ -818,6 +865,7 @@ def test_timeseries_timestep_10min 'include_timeseries_hot_water_uses' => false, 'include_timeseries_total_loads' => false, 'include_timeseries_component_loads' => false, + 'include_timeseries_unmet_loads' => false, 'include_timeseries_zone_temperatures' => false, 'include_timeseries_airflows' => false, 'include_timeseries_weather' => false } @@ -835,6 +883,7 @@ def test_timeseries_hourly_runperiod_Jan 'include_timeseries_hot_water_uses' => false, 'include_timeseries_total_loads' => false, 'include_timeseries_component_loads' => false, + 'include_timeseries_unmet_loads' => false, 'include_timeseries_zone_temperatures' => false, 'include_timeseries_airflows' => false, 'include_timeseries_weather' => false } @@ -852,6 +901,7 @@ def test_timeseries_daily_runperiod_Jan 'include_timeseries_hot_water_uses' => false, 'include_timeseries_total_loads' => false, 'include_timeseries_component_loads' => false, + 'include_timeseries_unmet_loads' => false, 'include_timeseries_zone_temperatures' => false, 'include_timeseries_airflows' => false, 'include_timeseries_weather' => false } @@ -869,6 +919,7 @@ def test_timeseries_monthly_runperiod_Jan 'include_timeseries_hot_water_uses' => false, 'include_timeseries_total_loads' => false, 'include_timeseries_component_loads' => false, + 'include_timeseries_unmet_loads' => false, 'include_timeseries_zone_temperatures' => false, 'include_timeseries_airflows' => false, 'include_timeseries_weather' => false } @@ -886,6 +937,7 @@ def test_timeseries_timestep_runperiod_Jan 'include_timeseries_hot_water_uses' => false, 'include_timeseries_total_loads' => false, 'include_timeseries_component_loads' => false, + 'include_timeseries_unmet_loads' => false, 'include_timeseries_zone_temperatures' => false, 'include_timeseries_airflows' => false, 'include_timeseries_weather' => false } @@ -903,6 +955,7 @@ def test_timeseries_hourly_AMY_2012 'include_timeseries_hot_water_uses' => false, 'include_timeseries_total_loads' => false, 'include_timeseries_component_loads' => false, + 'include_timeseries_unmet_loads' => false, 'include_timeseries_zone_temperatures' => false, 'include_timeseries_airflows' => false, 'include_timeseries_weather' => false } @@ -934,6 +987,7 @@ def test_eri_designs 'include_timeseries_hot_water_uses' => true, 'include_timeseries_total_loads' => true, 'include_timeseries_component_loads' => true, + 'include_timeseries_unmet_loads' => true, 'include_timeseries_zone_temperatures' => true, 'include_timeseries_airflows' => true, 'include_timeseries_weather' => true } @@ -978,7 +1032,7 @@ def _test_measure(args_hash, eri_design = nil) workflow.setWorkflowSteps(steps) osw_path = File.join(File.dirname(template_osw), 'test.osw') workflow.saveAs(osw_path) - assert_equal(10, found_args.size) + assert_equal(11, found_args.size) # Run OSW success = system("#{OpenStudio.getOpenStudioCLI} run -w #{osw_path}") diff --git a/example_files/resources/hpxml-measures/docs/source/conf.py b/example_files/resources/hpxml-measures/docs/source/conf.py index 1c35a600..c92d1913 100644 --- a/example_files/resources/hpxml-measures/docs/source/conf.py +++ b/example_files/resources/hpxml-measures/docs/source/conf.py @@ -90,7 +90,10 @@ html_static_path = ['nstatic/'] def setup(app): - app.add_css_file("stylesheet.css") + try: + app.add_css_file("stylesheet.css") + except: + app.add_stylesheet("stylesheet.css") # Custom sidebar templates, must be a dictionary that maps document names # to template names. diff --git a/example_files/resources/hpxml-measures/docs/source/getting_started.rst b/example_files/resources/hpxml-measures/docs/source/getting_started.rst index a5af571d..d59433bb 100644 --- a/example_files/resources/hpxml-measures/docs/source/getting_started.rst +++ b/example_files/resources/hpxml-measures/docs/source/getting_started.rst @@ -49,9 +49,9 @@ By default it will be found at the same location as the OSW file. Outputs ~~~~~~~ -In addition to the standard EnergyPlus outputs found in the run directory, a variety of high-level annual outputs are conveniently reported in the resulting ``run/results_annual.csv`` file. +In addition to the standard EnergyPlus outputs found in the run directory, a variety of high-level annual outputs are conveniently reported in the resulting ``run/results_annual.csv`` (or ``run/results_annual.json``) file. Timeseries outputs can also be requested using either the Basic or Advanced approaches. -When requested, timeseries outputs will be found in the ``run/results_timeseries.csv`` file. +When requested, timeseries outputs will be found in the ``run/results_timeseries.csv`` (or ``run/results_timeseries.json``) file. See :ref:`workflow_outputs` for a description of all available outputs available. diff --git a/example_files/resources/hpxml-measures/docs/source/intro.rst b/example_files/resources/hpxml-measures/docs/source/intro.rst index 8b31f7b5..1c3b5fba 100644 --- a/example_files/resources/hpxml-measures/docs/source/intro.rst +++ b/example_files/resources/hpxml-measures/docs/source/intro.rst @@ -10,109 +10,6 @@ The three OpenStudio measures used by the workflow are: #. ``HPXMLtoOpenStudio``: A measure that translates an HPXML file to an OpenStudio model. #. ``SimulationOutputReport``: A reporting measure that generates a variety of annual/timeseries outputs for a residential HPXML-based model. -Modeling Capabilities ---------------------- -The OpenStudio-HPXML workflow can accommodate the following building features/technologies: - -- Enclosure - - - Attics - - - Vented - - Unvented - - Conditioned - - Radiant Barriers - - - Foundations - - - Slab - - Unconditioned Basement - - Conditioned Basement - - Vented Crawlspace - - Unvented Crawlspace - - Ambient - - - Garages - - Windows & Overhangs - - Skylights - - Doors - -- HVAC - - - Heating Systems - - - Electric Resistance - - Central/Wall/Floor Furnaces - - Stoves, Portable/Fixed Heaters - - Boilers - - Fireplaces - - - Cooling Systems - - - Central/Room Air Conditioners - - Evaporative Coolers - - Mini Split Air Conditioners - - Chillers - - Cooling Towers - - - Heat Pumps - - - Air Source Heat Pumps - - Mini Split Heat Pumps - - Ground Source Heat Pumps - - Dual-Fuel Heat Pumps - - Water Loop Heat Pumps - - - Thermostat Setpoints - - Ducts - -- Water Heating - - - Water Heaters - - - Storage Tank - - Instantaneous Tankless - - Heat Pump Water Heater - - Indirect Water Heater (Combination Boiler) - - Tankless Coil (Combination Boiler) - - - Solar Hot Water - - Desuperheaters - - Hot Water Distribution - - - Recirculation - - - Drain Water Heat Recovery - - Hot Water Fixtures - -- Mechanical Ventilation - - - Exhaust Only - - Supply Only - - Balanced - - Energy Recovery Ventilator - - Heat Recovery Ventilator - - Central Fan Integrated Supply - - Shared Systems w/ Recirculation and/or Preconditioning - -- Kitchen/Bath Fans -- Whole House Fan -- Photovoltaics -- Generators -- Appliances - - - Clothes Washer - - Clothes Dryer - - Dishwasher - - Refrigerator - - Cooking Range/Oven - -- Dehumidifiers -- Lighting -- Ceiling Fans -- Pool/Hot Tub -- Plug/Fuel Loads - Scope (Dwelling Units) ---------------------- @@ -147,9 +44,10 @@ End-to-end simulations typically run in 3-10 seconds, depending on complexity, c There are additional ways that software developers using this workflow can reduce runtime: -- Run on Linux/Mac platform, which is significantly faster by taking advantage of the POSIX fork call. -- Do not use the ``--hourly`` flag unless hourly output is required. If required, limit requests to hourly variables of interest. +- Run on Linux/Mac platform, which is significantly faster than Windows. - Run on computing environments with 1) fast CPUs, 2) sufficient memory, and 3) enough processors to allow all simulations to run in parallel. +- Limit requests for timeseries output (e.g., ``--hourly``, ``--daily``, ``--timestep`` arguments) and limit the number of output variables requested. +- Use the ``--skip-validation`` argument if the HPXML input file has already been validated against the Schema & Schematron documents. License ------- diff --git a/example_files/resources/hpxml-measures/docs/source/workflow_inputs.rst b/example_files/resources/hpxml-measures/docs/source/workflow_inputs.rst index 44fef7aa..dd5bc4e5 100644 --- a/example_files/resources/hpxml-measures/docs/source/workflow_inputs.rst +++ b/example_files/resources/hpxml-measures/docs/source/workflow_inputs.rst @@ -43,11 +43,10 @@ HPXML files submitted to OpenStudio-HPXML should undergo a two step validation p Input Defaults ************** -An increasing number of elements in the HPXML file are being made optional with "smart" defaults. +A large number of elements in the HPXML file are optional and can be defaulted. Default values, equations, and logic are described throughout this documentation. -Most defaults can also be seen by using the ``debug`` argument/flag when running the workflow on an actual HPXML file. -This will create a new HPXML file (``in.xml`` in the run directory) where additional fields are populated for inspection. +Defaults can also be seen in the ``in.xml`` file generated in the run directory, where additional fields are populated for inspection. For example, suppose a HPXML file has a window defined as follows: @@ -74,18 +73,18 @@ In the ``in.xml`` file, the window would have additional elements like so: 0.45 - 0.7 - 0.85 + 0.7 + 0.85 - 0.67 + 0.67 .. note:: - The OpenStudio-HPXML workflow generally treats missing HPXML objects differently than missing properties. - For example, if there is a ``Window`` with no ``Overhangs`` object defined, the window will be interpreted as having no overhangs and modeled this way. - On the other hand, if there is a ``Window`` element with no ``FractionOperable`` property defined, it is assumed that the operable property of the window is unknown and will be defaulted in the model according to :ref:`windowinputs`. + The OpenStudio-HPXML workflow generally treats missing elements differently than missing values. + For example, if there is a ``Window`` with no ``Overhangs`` element defined, the window will be interpreted as having no overhangs and modeled this way. + On the other hand, if there is a ``Window`` with no ``FractionOperable`` value defined, it is assumed that the operable property of the window is unknown and will be defaulted in the model according to :ref:`windowinputs`. HPXML Software Info ------------------- @@ -101,10 +100,10 @@ EnergyPlus simulation controls are entered in ``/HPXML/SoftwareInfo/extension/Si Element Type Units Constraints Required Default Description ================================== ======== ======= ============= ======== =========================== ===================================== ``Timestep`` integer minutes Divisor of 60 No 60 (1 hour) Timestep - ``BeginMonth`` integer 1-12 [#]_ No 1 (January) Run period start date - ``BeginDayOfMonth`` integer 1-31 No 1 Run period start date - ``EndMonth`` integer 1-12 No 12 (December) Run period end date - ``EndDayOfMonth`` integer 1-31 No Run period end date + ``BeginMonth`` integer 1 - 12 [#]_ No 1 (January) Run period start date + ``BeginDayOfMonth`` integer 1 - 31 No 1 Run period start date + ``EndMonth`` integer 1 - 12 No 12 (December) Run period end date + ``EndDayOfMonth`` integer 1 - 31 No Run period end date ``CalendarYear`` integer > 1600 No 2007 (for TMY weather) [#]_ Calendar year (for start day of week) ``DaylightSaving/Enabled`` boolean No true Daylight savings enabled? ================================== ======== ======= ============= ======== =========================== ===================================== @@ -114,12 +113,12 @@ EnergyPlus simulation controls are entered in ``/HPXML/SoftwareInfo/extension/Si If daylight saving is enabled, additional information is specified in ``DaylightSaving``. - ====================================== ======== ===== ============= ======== ============================= =========== - Element Type Units Constraints Required Default Description - ====================================== ======== ===== ============= ======== ============================= =========== - ``BeginMonth`` and ``BeginDayOfMonth`` integer 1-12 and 1-31 No EPW else 3/12 (March 12) [#]_ Start date - ``EndMonth`` and ``EndDayOfMonth`` integer 1-12 and 1-31 No EPW else 11/5 (November 5) End date - ====================================== ======== ===== ============= ======== ============================= =========== + ====================================== ======== ===== ================= ======== ============================= =========== + Element Type Units Constraints Required Default Description + ====================================== ======== ===== ================= ======== ============================= =========== + ``BeginMonth`` and ``BeginDayOfMonth`` integer 1 - 12 and 1 - 31 No EPW else 3/12 (March 12) [#]_ Start date + ``EndMonth`` and ``EndDayOfMonth`` integer 1 - 12 and 1 - 31 No EPW else 11/5 (November 5) End date + ====================================== ======== ===== ================= ======== ============================= =========== .. [#] Daylight savings dates will be defined according to the EPW weather file header; if not available, fallback default values listed above will be used. @@ -152,25 +151,19 @@ Building site information is entered in ``/HPXML/Building/BuildingDetails/Buildi Element Type Units Constraints Required Default Notes ================================ ======== ===== =========== ======== ======== ============================================================ ``SiteType`` string See [#]_ No suburban Terrain type for infiltration model - ``extension/ShelterCoefficient`` double 0-1 No 0.5 [#]_ Nearby buildings, trees, obstructions for infiltration model + ``ShieldingofHome`` string See [#]_ No normal Presence of nearby buildings, trees, obstructions for infiltration model ``extension/Neighbors`` element >= 0 No Presence of neighboring buildings for solar shading ================================ ======== ===== =========== ======== ======== ============================================================ .. [#] SiteType choices are "rural", "suburban", or "urban". - .. [#] ShelterCoefficient values are described as follows: - - - **1.0**: No obstructions or local shielding; - - **0.9**: Light local shielding with few obstructions within two building heights; - - **0.7**: Local shielding with many large obstructions within two building heights; - - **0.5**: Heavily shielded, many large obstructions within one building height; - - **0.3**: Complete shielding with large buildings immediately adjacent. + .. [#] ShieldingofHome choices are "normal", "exposed", or "well-shielded". For each neighboring building defined, additional information is entered in a ``extension/Neighbors/NeighborBuilding``. ============ ======== ======= =========== ======== ======== ============================================= Element Type Units Constraints Required Default Notes ============ ======== ======= =========== ======== ======== ============================================= - ``Azimuth`` integer deg 0-359 Yes Direction of neighbors (clockwise from North) + ``Azimuth`` integer deg 0 - 359 Yes Direction of neighbors (clockwise from North) ``Distance`` double ft > 0 Yes Distance of neighbor from the dwelling unit ``Height`` double ft > 0 No See [#]_ Height of neighbor ============ ======== ======= =========== ======== ======== ============================================= @@ -196,20 +189,21 @@ HPXML Building Construction Building construction is entered in ``/HPXML/Building/BuildingDetails/BuildingSummary/BuildingConstruction``. - ========================================================= ======== ========= =========== ======== ======== ======================================================================= - Element Type Units Constraints Required Default Notes - ========================================================= ======== ========= =========== ======== ======== ======================================================================= - ``ResidentialFacilityType`` string See [#]_ Yes Type of dwelling unit - ``NumberofConditionedFloors`` double > 0 Yes Number of conditioned floors (including a basement) - ``NumberofConditionedFloorsAboveGrade`` double > 0 Yes Number of conditioned floors above grade (including a walkout basement) - ``NumberofBedrooms`` integer > 0 Yes Number of bedrooms [#]_ - ``NumberofBathrooms`` integer > 0 No See [#]_ Number of bathrooms - ``ConditionedFloorArea`` double ft2 > 0 Yes Floor area within conditioned space boundary - ``ConditionedBuildingVolume`` or ``AverageCeilingHeight`` double ft3 or ft > 0 No See [#]_ Volume/ceiling height within conditioned space boundary - ``extension/HasFlueOrChimney`` boolean No See [#]_ Presence of flue or chimney for infiltration model - ========================================================= ======== ========= =========== ======== ======== ======================================================================= + ========================================================= ======== ========= ================================= ======== ======== ======================================================================= + Element Type Units Constraints Required Default Notes + ========================================================= ======== ========= ================================= ======== ======== ======================================================================= + ``ResidentialFacilityType`` string See [#]_ Yes Type of dwelling unit + ``NumberofConditionedFloors`` double > 0 Yes Number of conditioned floors (including a basement) + ``NumberofConditionedFloorsAboveGrade`` double > 0, <= NumberofConditionedFloors Yes Number of conditioned floors above grade (including a walkout basement) + ``NumberofBedrooms`` integer > 0 [#]_ Yes Number of bedrooms [#]_ + ``NumberofBathrooms`` integer > 0 No See [#]_ Number of bathrooms + ``ConditionedFloorArea`` double ft2 > 0 Yes Floor area within conditioned space boundary + ``ConditionedBuildingVolume`` or ``AverageCeilingHeight`` double ft3 or ft > 0 No See [#]_ Volume/ceiling height within conditioned space boundary + ``extension/HasFlueOrChimney`` boolean No See [#]_ Presence of flue or chimney for infiltration model + ========================================================= ======== ========= ================================= ======== ======== ======================================================================= .. [#] ResidentialFacilityType choices are "single-family detached", "single-family attached", "apartment unit", or "manufactured home". + .. [#] NumberofBedrooms must also be <= (ConditionedFloorArea-120)/70. .. [#] NumberofBedrooms is currently used to determine usage of plug loads, appliances, hot water, etc. .. [#] If NumberofBathrooms not provided, calculated as NumberofBedrooms/2 + 0.5 based on the `2010 BAHSP `_. .. [#] If neither ConditionedBuildingVolume nor AverageCeilingHeight provided, AverageCeilingHeight defaults to 8.0. @@ -263,18 +257,19 @@ HPXML Air Infiltration Building air leakage is entered in ``/HPXML/Building/BuildingDetails/Enclosure/AirInfiltration/AirInfiltrationMeasurement``. - ==================================== ====== ===== =========== ========= ================= ======================================================== - Element Type Units Constraints Required Default Notes - ==================================== ====== ===== =========== ========= ================= ======================================================== - ``SystemIdentifier`` id Yes Unique identifier - ``BuildingAirLeakage/UnitofMeasure`` string See [#]_ Yes Units for air leakage - ``HousePressure`` double Pa > 0 See [#]_ House pressure with respect to outside, typically ~50 Pa - ``BuildingAirLeakage/AirLeakage`` double > 0 Yes Value for air leakage - ``InfiltrationVolume`` double ft3 > 0 No ConditionedVolume Volume associated with the air leakage measurement - ==================================== ====== ===== =========== ========= ================= ======================================================== + ==================================== ====== ===== ================================= ========= ========================= =============================================== + Element Type Units Constraints Required Default Notes + ==================================== ====== ===== ================================= ========= ========================= =============================================== + ``SystemIdentifier`` id Yes Unique identifier + ``BuildingAirLeakage/UnitofMeasure`` string See [#]_ Yes Units for air leakage + ``HousePressure`` double Pa > 0 See [#]_ House pressure with respect to outside [#]_ + ``BuildingAirLeakage/AirLeakage`` double > 0 Yes Value for air leakage + ``InfiltrationVolume`` double ft3 > 0, >= ConditionedBuildingVolume No ConditionedBuildingVolume Volume associated with infiltration measurement + ==================================== ====== ===== ================================= ========= ========================= =============================================== .. [#] UnitofMeasure choices are "ACH" (air changes per hour at user-specified pressure), "CFM" (cubic feet per minute at user-specified pressure), or "ACHnatural" (natural air changes per hour). .. [#] HousePressure only required if BuildingAirLeakage/UnitofMeasure is not "ACHnatural". + .. [#] HousePressure typical value is 50 Pa. HPXML Attics ************ @@ -313,22 +308,22 @@ Each pitched or flat roof surface that is exposed to ambient conditions is enter For a multifamily building where the dwelling unit has another dwelling unit above it, the surface between the two dwelling units should be considered a ``FrameFloor`` and not a ``Roof``. - ====================================== ================ ============ =============== ========= ============================== ================================== - Element Type Units Constraints Required Default Notes - ====================================== ================ ============ =============== ========= ============================== ================================== - ``SystemIdentifier`` id Yes Unique identifier - ``InteriorAdjacentTo`` string See [#]_ Yes Interior adjacent space type - ``Area`` double ft2 > 0 Yes Gross area (including skylights) - ``Azimuth`` integer deg 0-359 No See [#]_ Azimuth (clockwise from North) - ``RoofType`` string See [#]_ No asphalt or fiberglass shingles Roof type - ``SolarAbsorptance`` or ``RoofColor`` double or string 0-1 or See [#]_ Yes See [#]_ Solar absorptance or color - ``Emittance`` double 0-1 No 0.90 Emittance - ``Pitch`` integer ?:12 >= 0 Yes Pitch - ``RadiantBarrier`` boolean No false Presence of radiant barrier - ``RadiantBarrier/RadiantBarrierGrade`` integer 1-3 See [#]_ Radiant barrier installation grade - ``Insulation/SystemIdentifier`` id Yes Unique identifier - ``Insulation/AssemblyEffectiveRValue`` double F-ft2-hr/Btu > 0 Yes Assembly R-value [#]_ - ====================================== ================ ============ =============== ========= ============================== ================================== + ====================================== ================ ============ ================= ========= ============================== ================================== + Element Type Units Constraints Required Default Notes + ====================================== ================ ============ ================= ========= ============================== ================================== + ``SystemIdentifier`` id Yes Unique identifier + ``InteriorAdjacentTo`` string See [#]_ Yes Interior adjacent space type + ``Area`` double ft2 > 0 Yes Gross area (including skylights) + ``Azimuth`` integer deg 0 - 359 No See [#]_ Azimuth (clockwise from North) + ``RoofType`` string See [#]_ No asphalt or fiberglass shingles Roof type + ``SolarAbsorptance`` or ``RoofColor`` double or string 0 - 1 or See [#]_ Yes See [#]_ Solar absorptance or color + ``Emittance`` double 0 - 1 No 0.90 Emittance + ``Pitch`` integer ?:12 >= 0 Yes Pitch + ``RadiantBarrier`` boolean No false Presence of radiant barrier + ``RadiantBarrierGrade`` integer 1 - 3 See [#]_ Radiant barrier installation grade + ``Insulation/SystemIdentifier`` id Yes Unique identifier + ``Insulation/AssemblyEffectiveRValue`` double F-ft2-hr/Btu > 0 Yes Assembly R-value [#]_ + ====================================== ================ ============ ================= ========= ============================== ================================== .. [#] InteriorAdjacentTo choices are "attic - vented", "attic - unvented", "living space", or "garage". See :ref:`hpxmllocations` for descriptions. @@ -350,20 +345,20 @@ HPXML Rim Joists Each rim joist surface (i.e., the perimeter of floor joists typically found between stories of a building or on top of a foundation wall) is entered as an ``/HPXML/Building/BuildingDetails/Enclosure/RimJoists/RimJoist``. - ====================================== ================ ============ =============== ======== =========== ============================== - Element Type Units Constraints Required Default Notes - ====================================== ================ ============ =============== ======== =========== ============================== - ``SystemIdentifier`` id Yes Unique identifier - ``ExteriorAdjacentTo`` string See [#]_ Yes Exterior adjacent space type - ``InteriorAdjacentTo`` string See [#]_ Yes Interior adjacent space type - ``Area`` double ft2 > 0 Yes Gross area - ``Azimuth`` integer deg 0-359 No See [#]_ Azimuth (clockwise from North) - ``Siding`` string See [#]_ No wood siding Siding material - ``SolarAbsorptance`` or ``Color`` double or string 0-1 or See [#]_ Yes See [#]_ Solar absorptance or color - ``Emittance`` double 0-1 No 0.90 Emittance - ``Insulation/SystemIdentifier`` id Yes Unique identifier - ``Insulation/AssemblyEffectiveRValue`` double F-ft2-hr/Btu > 0 Yes Assembly R-value [#]_ - ====================================== ================ ============ =============== ======== =========== ============================== + ====================================== ================ ============ ================= ======== =========== ============================== + Element Type Units Constraints Required Default Notes + ====================================== ================ ============ ================= ======== =========== ============================== + ``SystemIdentifier`` id Yes Unique identifier + ``ExteriorAdjacentTo`` string See [#]_ Yes Exterior adjacent space type + ``InteriorAdjacentTo`` string See [#]_ Yes Interior adjacent space type + ``Area`` double ft2 > 0 Yes Gross area + ``Azimuth`` integer deg 0 - 359 No See [#]_ Azimuth (clockwise from North) + ``Siding`` string See [#]_ No wood siding Siding material + ``SolarAbsorptance`` or ``Color`` double or string 0 - 1 or See [#]_ Yes See [#]_ Solar absorptance or color + ``Emittance`` double 0 - 1 No 0.90 Emittance + ``Insulation/SystemIdentifier`` id Yes Unique identifier + ``Insulation/AssemblyEffectiveRValue`` double F-ft2-hr/Btu > 0 Yes Assembly R-value [#]_ + ====================================== ================ ============ ================= ======== =========== ============================== .. [#] ExteriorAdjacentTo choices are "outside", "attic - vented", "attic - unvented", "basement - conditioned", "basement - unconditioned", "crawlspace - vented", "crawlspace - unvented", "garage", "other housing unit", "other heated space", "other multifamily buffer space", or "other non-freezing space". See :ref:`hpxmllocations` for descriptions. @@ -387,21 +382,21 @@ HPXML Walls Each wall that has no contact with the ground and bounds a space type is entered as an ``/HPXML/Building/BuildingDetails/Enclosure/Walls/Wall``. - ====================================== ================ ============ =============== ============= =========== ==================================== - Element Type Units Constraints Required Default Notes - ====================================== ================ ============ =============== ============= =========== ==================================== - ``SystemIdentifier`` id Yes Unique identifier - ``ExteriorAdjacentTo`` string See [#]_ Yes Exterior adjacent space type - ``InteriorAdjacentTo`` string See [#]_ Yes Interior adjacent space type - ``WallType`` element 1 [#]_ Yes Wall type (for thermal mass) - ``Area`` double ft2 > 0 Yes Gross area (including doors/windows) - ``Azimuth`` integer deg 0-359 No See [#]_ Azimuth (clockwise from North) - ``Siding`` string See [#]_ No wood siding Siding material - ``SolarAbsorptance`` or ``Color`` double or string 0-1 or See [#]_ Yes See [#]_ Solar absorptance or color - ``Emittance`` double 0-1 No 0.90 Emittance - ``Insulation/SystemIdentifier`` id Yes Unique identifier - ``Insulation/AssemblyEffectiveRValue`` double F-ft2-hr/Btu > 0 Yes Assembly R-value [#]_ - ====================================== ================ ============ =============== ============= =========== ==================================== + ====================================== ================ ============ ================= ============= =========== ==================================== + Element Type Units Constraints Required Default Notes + ====================================== ================ ============ ================= ============= =========== ==================================== + ``SystemIdentifier`` id Yes Unique identifier + ``ExteriorAdjacentTo`` string See [#]_ Yes Exterior adjacent space type + ``InteriorAdjacentTo`` string See [#]_ Yes Interior adjacent space type + ``WallType`` element 1 [#]_ Yes Wall type (for thermal mass) + ``Area`` double ft2 > 0 Yes Gross area (including doors/windows) + ``Azimuth`` integer deg 0 - 359 No See [#]_ Azimuth (clockwise from North) + ``Siding`` string See [#]_ No wood siding Siding material + ``SolarAbsorptance`` or ``Color`` double or string 0 - 1 or See [#]_ Yes See [#]_ Solar absorptance or color + ``Emittance`` double 0 - 1 No 0.90 Emittance + ``Insulation/SystemIdentifier`` id Yes Unique identifier + ``Insulation/AssemblyEffectiveRValue`` double F-ft2-hr/Btu > 0 Yes Assembly R-value [#]_ + ====================================== ================ ============ ================= ============= =========== ==================================== .. [#] ExteriorAdjacentTo choices are "outside", "attic - vented", "attic - unvented", "basement - conditioned", "basement - unconditioned", "crawlspace - vented", "crawlspace - unvented", "garage", "other housing unit", "other heated space", "other multifamily buffer space", or "other non-freezing space". See :ref:`hpxmllocations` for descriptions. @@ -436,12 +431,12 @@ Other walls (e.g., wood framed walls) that are connected to a below-grade space ``InteriorAdjacentTo`` string See [#]_ Yes Interior adjacent space type ``Height`` double ft > 0 Yes Total height ``Area`` double ft2 > 0 Yes Gross area (including doors/windows) - ``Azimuth`` integer deg 0-359 No See [#]_ Azimuth (clockwise from North) + ``Azimuth`` integer deg 0 - 359 No See [#]_ Azimuth (clockwise from North) ``Thickness`` double inches > 0 No 8.0 Thickness excluding interior framing - ``DepthBelowGrade`` double ft >= 0 Yes Depth below grade [#]_ + ``DepthBelowGrade`` double ft 0 - Height Yes Depth below grade [#]_ ``Insulation/SystemIdentifier`` id Yes Unique identifier - ``Insulation/Layer[InstallationType="continuous - interior"]`` element 0-1 See [#]_ Interior insulation layer - ``Insulation/Layer[InstallationType="continuous - exterior"]`` element 0-1 See [#]_ Exterior insulation layer + ``Insulation/Layer[InstallationType="continuous - interior"]`` element 0 - 1 See [#]_ Interior insulation layer + ``Insulation/Layer[InstallationType="continuous - exterior"]`` element 0 - 1 See [#]_ Exterior insulation layer ``Insulation/AssemblyEffectiveRValue`` double F-ft2-hr/Btu > 0 See [#]_ Assembly R-value [#]_ ============================================================== ======== ============ =========== ========= ======== ==================================== @@ -463,13 +458,13 @@ Other walls (e.g., wood framed walls) that are connected to a below-grade space If insulation layers are provided, additional information is entered in each ``FoundationWall/Insulation/Layer``. - ========================================== ======== ============ =========== ======== ======= ====================================================================== - Element Type Units Constraints Required Default Notes - ========================================== ======== ============ =========== ======== ======= ====================================================================== - ``NominalRValue`` double F-ft2-hr/Btu >= 0 Yes R-value of the foundation wall insulation; use zero if no insulation - ``extension/DistanceToTopOfInsulation`` double ft >= 0 Yes Vertical distance from top of foundation wall to top of insulation - ``extension/DistanceToBottomOfInsulation`` double ft >= 0 Yes Vertical distance from top of foundation wall to bottom of insulation - ========================================== ======== ============ =========== ======== ======= ====================================================================== + ========================================== ======== ============ ================================== ======== ======= ===================================================================== + Element Type Units Constraints Required Default Notes + ========================================== ======== ============ ================================== ======== ======= ===================================================================== + ``NominalRValue`` double F-ft2-hr/Btu >= 0 Yes R-value of the foundation wall insulation; use zero if no insulation + ``extension/DistanceToTopOfInsulation`` double ft >= 0 Yes Vertical distance from top of foundation wall to top of insulation + ``extension/DistanceToBottomOfInsulation`` double ft DistanceToTopOfInsulation - Height Yes Vertical distance from top of foundation wall to bottom of insulation + ========================================== ======== ============ ================================== ======== ======= ===================================================================== HPXML Frame Floors ****************** @@ -515,7 +510,7 @@ Each space type that borders the ground (i.e., basements, crawlspaces, garages, ``InteriorAdjacentTo`` string See [#]_ Yes Interior adjacent space type ``Area`` double ft2 > 0 Yes Gross area ``Thickness`` double inches >= 0 No See [#]_ Thickness [#]_ - ``ExposedPerimeter`` double ft > 0 Yes Perimeter exposed to ambient conditions [#]_ + ``ExposedPerimeter`` double ft >= 0 Yes Perimeter exposed to ambient conditions [#]_ ``PerimeterInsulationDepth`` double ft >= 0 Yes Depth from grade to bottom of vertical insulation ``UnderSlabInsulationWidth`` double ft >= 0 See [#]_ Width from slab edge inward of horizontal insulation ``UnderSlabInsulationSpansEntireSlab`` boolean See [#]_ Whether horizontal insulation spans entire slab @@ -524,7 +519,7 @@ Each space type that borders the ground (i.e., basements, crawlspaces, garages, ``PerimeterInsulation/Layer/NominalRValue`` double F-ft2-hr/Btu >= 0 Yes R-value of vertical insulation ``UnderSlabInsulation/SystemIdentifier`` id Yes Unique identifier ``UnderSlabInsulation/Layer/NominalRValue`` double F-ft2-hr/Btu >= 0 Yes R-value of horizontal insulation - ``extension/CarpetFraction`` double frac 0-1 No See [#]_ Fraction of slab covered by carpet + ``extension/CarpetFraction`` double frac 0 - 1 No See [#]_ Fraction of slab covered by carpet ``extension/CarpetRValue`` double F-ft2-hr/Btu >= 0 No See [#]_ Carpet R-value =========================================== ======== ============ =========== ========= ======== ==================================================== @@ -548,23 +543,25 @@ HPXML Windows Each window or glass door area is entered as an ``/HPXML/Building/BuildingDetails/Enclosure/Windows/Window``. - ============================================ ======== ============ =========== ======== ========= ============================================== + ============================================ ======== ============ =========== ======== ========= ============================================================= Element Type Units Constraints Required Default Notes - ============================================ ======== ============ =========== ======== ========= ============================================== + ============================================ ======== ============ =========== ======== ========= ============================================================= ``SystemIdentifier`` id Yes Unique identifier ``Area`` double ft2 > 0 Yes Total area - ``Azimuth`` integer deg 0-359 Yes Azimuth (clockwise from North) + ``Azimuth`` integer deg 0 - 359 Yes Azimuth (clockwise from North) ``UFactor`` double Btu/F-ft2-hr > 0 Yes Full-assembly NFRC U-factor - ``SHGC`` double 0-1 Yes Full-assembly NFRC solar heat gain coefficient - ``InteriorShading/SummerShadingCoefficient`` double frac 0-1 No 0.70 [#]_ Summer interior shading coefficient - ``InteriorShading/WinterShadingCoefficient`` double frac 0-1 No 0.85 [#]_ Winter interior shading coefficient - ``Overhangs`` element 0-1 No Presence of overhangs (including roof eaves) - ``FractionOperable`` double frac 0-1 No 0.67 Operable fraction [#]_ + ``SHGC`` double 0 - 1 Yes Full-assembly NFRC solar heat gain coefficient + ``ExteriorShading/SummerShadingCoefficient`` double frac 0 - 1 No 1.00 Exterior summer shading coefficient (1=transparent, 0=opaque) + ``ExteriorShading/WinterShadingCoefficient`` double frac 0 - 1 No 1.00 Exterior winter shading coefficient (1=transparent, 0=opaque) + ``InteriorShading/SummerShadingCoefficient`` double frac 0 - 1 No 0.70 [#]_ Interior summer shading coefficient (1=transparent, 0=opaque) + ``InteriorShading/WinterShadingCoefficient`` double frac 0 - 1 No 0.85 [#]_ Interior winter shading coefficient (1=transparent, 0=opaque) + ``Overhangs`` element 0 - 1 No Presence of overhangs (including roof eaves) + ``FractionOperable`` double frac 0 - 1 No 0.67 Operable fraction [#]_ ``AttachedToWall`` idref See [#]_ Yes ID of attached wall - ============================================ ======== ============ =========== ======== ========= ============================================== + ============================================ ======== ============ =========== ======== ========= ============================================================= - .. [#] SummerShadingCoefficient default value indicates 30% reduction in solar heat gain, based on `ANSI/RESNET/ICC 301-2019 `_. - .. [#] WinterShadingCoefficient default value indicates 15% reduction in solar heat gain, based on `ANSI/RESNET/ICC 301-2019 `_. + .. [#] InteriorShading/SummerShadingCoefficient default value indicates 30% reduction in solar heat gain, based on `ANSI/RESNET/ICC 301-2019 `_. + .. [#] InteriorShading/WinterShadingCoefficient default value indicates 15% reduction in solar heat gain, based on `ANSI/RESNET/ICC 301-2019 `_. .. [#] FractionOperable reflects whether the windows are operable (can be opened), not how they are used by the occupants. If a ``Window`` represents a single window, the value should be 0 or 1. If a ``Window`` represents multiple windows (e.g., 4), the value should be between 0 and 1 (e.g., 0, 0.25, 0.5, 0.75, or 1). @@ -573,13 +570,13 @@ Each window or glass door area is entered as an ``/HPXML/Building/BuildingDetail If overhangs are specified, additional information is entered in ``Overhangs``. - ============================ ======== ====== =========== ======== ======= ======================================================== - Element Type Units Constraints Required Default Notes - ============================ ======== ====== =========== ======== ======= ======================================================== - ``Depth`` double inches > 0 Yes Depth of overhang - ``DistanceToTopOfWindow`` double ft >= 0 Yes Vertical distance from overhang to top of window - ``DistanceToBottomOfWindow`` double ft >= 0 Yes Vertical distance from overhang to bottom of window [#]_ - ============================ ======== ====== =========== ======== ======= ======================================================== + ============================ ======== ====== ======================= ======== ======= ======================================================== + Element Type Units Constraints Required Default Notes + ============================ ======== ====== ======================= ======== ======= ======================================================== + ``Depth`` double inches >= 0 Yes Depth of overhang + ``DistanceToTopOfWindow`` double ft >= 0 Yes Vertical distance from overhang to top of window + ``DistanceToBottomOfWindow`` double ft > DistanceToTopOfWindow Yes Vertical distance from overhang to bottom of window [#]_ + ============================ ======== ====== ======================= ======== ======= ======================================================== .. [#] The difference between DistanceToBottomOfWindow and DistanceToTopOfWindow defines the height of the window. @@ -588,21 +585,21 @@ HPXML Skylights Each skylight is entered as an ``/HPXML/Building/BuildingDetails/Enclosure/Skylights/Skylight``. - ============================================ ======== ============ =========== ======== ========= ============================================== - Element Type Units Constraints Required Default Notes - ============================================ ======== ============ =========== ======== ========= ============================================== - ``SystemIdentifier`` id Yes Unique identifier - ``Area`` double ft2 > 0 Yes Total area - ``Azimuth`` integer deg 0-359 Yes Azimuth (clockwise from North) - ``UFactor`` double Btu/F-ft2-hr > 0 Yes Full-assembly NFRC U-factor - ``SHGC`` double 0-1 Yes Full-assembly NFRC solar heat gain coefficient - ``InteriorShading/SummerShadingCoefficient`` double frac 0-1 No 1.0 [#]_ Summer interior shading coefficient - ``InteriorShading/WinterShadingCoefficient`` double frac 0-1 No 1.0 [#]_ Winter interior shading coefficient - ``AttachedToRoof`` idref See [#]_ Yes ID of attached roof - ============================================ ======== ============ =========== ======== ========= ============================================== - - .. [#] SummerShadingCoefficient default value indicates 0% reduction in solar heat gain. - .. [#] WinterShadingCoefficient default value indicates 0% reduction in solar heat gain. + ============================================ ======== ============ =========== ======== ========== ============================================================= + Element Type Units Constraints Required Default Notes + ============================================ ======== ============ =========== ======== ========== ============================================================= + ``SystemIdentifier`` id Yes Unique identifier + ``Area`` double ft2 > 0 Yes Total area + ``Azimuth`` integer deg 0 - 359 Yes Azimuth (clockwise from North) + ``UFactor`` double Btu/F-ft2-hr > 0 Yes Full-assembly NFRC U-factor + ``SHGC`` double 0 - 1 Yes Full-assembly NFRC solar heat gain coefficient + ``ExteriorShading/SummerShadingCoefficient`` double frac 0 - 1 No 1.00 Exterior summer shading coefficient (1=transparent, 0=opaque) + ``ExteriorShading/WinterShadingCoefficient`` double frac 0 - 1 No 1.00 Exterior winter shading coefficient (1=transparent, 0=opaque) + ``InteriorShading/SummerShadingCoefficient`` double frac 0 - 1 No 1.00 Interior summer shading coefficient (1=transparent, 0=opaque) + ``InteriorShading/WinterShadingCoefficient`` double frac 0 - 1 No 1.00 Interior winter shading coefficient (1=transparent, 0=opaque) + ``AttachedToRoof`` idref See [#]_ Yes ID of attached roof + ============================================ ======== ============ =========== ======== ========== ============================================================= + .. [#] AttachedToRoof must reference a ``Roof``. HPXML Doors @@ -616,7 +613,7 @@ Each opaque door is entered as an ``/HPXML/Building/BuildingDetails/Enclosure/Do ``SystemIdentifier`` id Yes Unique identifier ``AttachedToWall`` idref See [#]_ Yes ID of attached wall ``Area`` double ft2 > 0 Yes Total area - ``Azimuth`` integer deg 0-359 Yes Azimuth (clockwise from North) + ``Azimuth`` integer deg 0 - 359 Yes Azimuth (clockwise from North) ``RValue`` double F-ft2-hr/Btu > 0 Yes R-value ============================================ ======== ============ =========== ======== ========= ============================== @@ -632,21 +629,20 @@ The dwelling unit's systems are entered in ``/HPXML/Building/BuildingDetails/Sys HPXML Heating Systems ********************* -Each heating system (other than heat pumps) is entered as an ``/HPXML/Building/BuildingDetails/Systems/HVAC/HVACPlant/HeatingSystem``. +Each heating system (other than a heat pump) is entered as an ``/HPXML/Building/BuildingDetails/Systems/HVAC/HVACPlant/HeatingSystem``. ================================= ======== ====== =========== ======== ========= =============================== Element Type Units Constraints Required Default Notes ================================= ======== ====== =========== ======== ========= =============================== ``SystemIdentifier`` id Yes Unique identifier ``HeatingSystemType`` element 1 [#]_ Yes Type of heating system - ``FractionHeatLoadServed`` double frac 0-1 [#]_ Yes Fraction of heating load served + ``FractionHeatLoadServed`` double frac 0 - 1 [#]_ Yes Fraction of heating load served ``HeatingSystemFuel`` string See [#]_ Yes Fuel type ``HeatingCapacity`` double Btu/hr >= 0 No autosized Input heating capacity ================================= ======== ====== =========== ======== ========= =============================== .. [#] HeatingSystemType child element choices are ``ElectricResistance``, ``Furnace``, ``WallFurnace``, ``FloorFurnace``, ``Boiler``, ``Stove``, ``PortableHeater``, ``FixedHeater``, or ``Fireplace``. .. [#] The sum of all ``FractionHeatLoadServed`` (across both HeatingSystems and HeatPumps) must be less than or equal to 1. - For example, the dwelling unit could have a boiler heating system and a heat pump with values of 0.4 (40%) and 0.6 (60%), respectively. .. [#] HeatingSystemFuel choices are "electricity", "natural gas", "fuel oil", "fuel oil 1", "fuel oil 2", "fuel oil 4", "fuel oil 5/6", "diesel", "propane", "kerosene", "coal", "coke", "bituminous coal", "wood", or "wood pellets". For ``ElectricResistance``, "electricity" is required. @@ -658,7 +654,7 @@ If electric resistance heating is specified, additional information is entered i ================================================== ====== ===== =========== ======== ======= ========== Element Type Units Constraints Required Default Notes ================================================== ====== ===== =========== ======== ======= ========== - ``AnnualHeatingEfficiency[Units="Percent"]/Value`` double frac 0-1 Yes Efficiency + ``AnnualHeatingEfficiency[Units="Percent"]/Value`` double frac 0 - 1 Yes Efficiency ================================================== ====== ===== =========== ======== ======= ========== Furnace @@ -666,16 +662,20 @@ Furnace If a furnace is specified, additional information is entered in ``HeatingSystem``. - =============================================== ====== ===== =========== ======== ========= ================================== + =============================================== ====== ===== =========== ======== ========= ================================================ Element Type Units Constraints Required Default Notes - =============================================== ====== ===== =========== ======== ========= ================================== + =============================================== ====== ===== =========== ======== ========= ================================================ ``DistributionSystem`` idref See [#]_ Yes ID of attached distribution system - ``AnnualHeatingEfficiency[Units="AFUE"]/Value`` double frac 0-1 Yes Rated efficiency - ``extension/FanPowerWattsPerCFM`` double W/cfm >= 0 No See [#]_ Installed fan efficiency - =============================================== ====== ===== =========== ======== ========= ================================== + ``AnnualHeatingEfficiency[Units="AFUE"]/Value`` double frac 0 - 1 Yes Rated efficiency + ``extension/FanPowerWattsPerCFM`` double W/cfm >= 0 No See [#]_ Fan power [#]_ + ``extension/AirflowDefectRatio`` double frac > -1 No 0.0 Deviation between design/installed airflows [#]_ + =============================================== ====== ===== =========== ======== ========= ================================================ .. [#] HVACDistribution type must be AirDistribution or DSE. .. [#] If FanPowerWattsPerCFM not provided, defaulted to 0.5 W/cfm if AFUE <= 0.9, else 0.375 W/cfm. + .. [#] If there is a cooling system attached to the DistributionSystem, the heating and cooling systems cannot have different values for FanPowerWattsPerCFM. + .. [#] AirflowDefectRatio is defined as (InstalledAirflow - DesignAirflow) / DesignAirflow; a value of zero means no airflow defect. + See ANSI/RESNET/ACCA 310-2020 Standard for Grading the Installation of HVAC Systems for more information. Wall/Floor Furnace ~~~~~~~~~~~~~~~~~~ @@ -685,10 +685,12 @@ If a wall furnace or floor furnace is specified, additional information is enter =============================================== ====== ===== =========== ======== ======= =================== Element Type Units Constraints Required Default Notes =============================================== ====== ===== =========== ======== ======= =================== - ``AnnualHeatingEfficiency[Units="AFUE"]/Value`` double frac 0-1 Yes Rated efficiency - ``extension/FanPowerWatts`` double W >= 0 No 0 Installed fan power + ``AnnualHeatingEfficiency[Units="AFUE"]/Value`` double frac 0 - 1 Yes Rated efficiency + ``extension/FanPowerWatts`` double W >= 0 No 0 Fan power =============================================== ====== ===== =========== ======== ======= =================== +.. _hvac_heating_boiler: + Boiler ~~~~~~ @@ -699,12 +701,13 @@ If a boiler is specified, additional information is entered in ``HeatingSystem`` ========================================================================== ======== ====== =========== ======== ======== ========================================= ``IsSharedSystem`` boolean No false Whether it serves multiple dwelling units ``DistributionSystem`` idref See [#]_ Yes ID of attached distribution system - ``AnnualHeatingEfficiency[Units="AFUE"]/Value`` double frac 0-1 Yes Rated efficiency + ``AnnualHeatingEfficiency[Units="AFUE"]/Value`` double frac 0 - 1 Yes Rated efficiency ``ElectricAuxiliaryEnergy`` double kWh/yr >= 0 No [#]_ See [#]_ Electric auxiliary energy - ``extension/WaterLoopHeatPump/AnnualHeatingEfficiency[Units="COP"]/Value`` double W/W > 0 See [#]_ COP of the attached water loop heat pump ========================================================================== ======== ====== =========== ======== ======== ========================================= - .. [#] HVACDistribution type must be HydronicDistribution (type: "radiator", "baseboard", "radiant floor", or "radiant ceiling") or DSE for in-unit boilers, and HydronicDistribution (type: "radiator", "baseboard", "radiant floor", or "radiant ceiling") or HydronicAndAirDistribution (type: "fan coil" or "water loop heat pump") for shared boilers. + .. [#] For in-unit boilers, HVACDistribution type must be HydronicDistribution (type: "radiator", "baseboard", "radiant floor", "radiant ceiling", or "water loop") or DSE. + For shared boilers, HVACDistribution type must be HydronicDistribution (type: "radiator", "baseboard", "radiant floor", "radiant ceiling", or "water loop") or AirDistribution (type: "fan coil"). + If the shared boiler has "water loop" distribution, a :ref:`hvac_heatpump_wlhp` must also be specified. .. [#] | For shared boilers, ElectricAuxiliaryEnergy can alternatively be calculated as follows per `ANSI/RESNET/ICC 301-2019 `_: | EAE = (SP / N_dweq + aux_in) * HLH | where @@ -720,8 +723,6 @@ If a boiler is specified, additional information is entered in ``HeatingSystem`` - **Gas boiler (shared, w/ water loop heat pump)**: 265 - **Gas boiler (shared, w/ fan coil)**: 438 - .. [#] Water loop heat pump (WLHP) heating COP only required if a shared boiler connected to a water loop heat pump. - Stove ~~~~~ @@ -730,8 +731,8 @@ If a stove is specified, additional information is entered in ``HeatingSystem``. ================================================== ====== ===== =========== ======== ========= =================== Element Type Units Constraints Required Default Notes ================================================== ====== ===== =========== ======== ========= =================== - ``AnnualHeatingEfficiency[Units="Percent"]/Value`` double frac 0-1 Yes Efficiency - ``extension/FanPowerWatts`` double W >= 0 No 40 Installed fan power + ``AnnualHeatingEfficiency[Units="Percent"]/Value`` double frac 0 - 1 Yes Efficiency + ``extension/FanPowerWatts`` double W >= 0 No 40 Fan power ================================================== ====== ===== =========== ======== ========= =================== Portable/Fixed Heater @@ -742,8 +743,8 @@ If a portable heater or fixed heater is specified, additional information is ent ================================================== ====== ===== =========== ======== ========= =================== Element Type Units Constraints Required Default Notes ================================================== ====== ===== =========== ======== ========= =================== - ``AnnualHeatingEfficiency[Units="Percent"]/Value`` double frac 0-1 Yes Efficiency - ``extension/FanPowerWatts`` double W >= 0 No 0 Installed fan power + ``AnnualHeatingEfficiency[Units="Percent"]/Value`` double frac 0 - 1 Yes Efficiency + ``extension/FanPowerWatts`` double W >= 0 No 0 Fan power ================================================== ====== ===== =========== ======== ========= =================== Fireplace @@ -754,8 +755,8 @@ If a fireplace is specified, additional information is entered in ``HeatingSyste ================================================== ====== ===== =========== ======== ========= =================== Element Type Units Constraints Required Default Notes ================================================== ====== ===== =========== ======== ========= =================== - ``AnnualHeatingEfficiency[Units="Percent"]/Value`` double frac 0-1 Yes Efficiency - ``extension/FanPowerWatts`` double W >= 0 No 0 Installed fan power + ``AnnualHeatingEfficiency[Units="Percent"]/Value`` double frac 0 - 1 Yes Efficiency + ``extension/FanPowerWatts`` double W >= 0 No 0 Fan power ================================================== ====== ===== =========== ======== ========= =================== .. _hvac_cooling: @@ -763,7 +764,7 @@ If a fireplace is specified, additional information is entered in ``HeatingSyste HPXML Cooling Systems ********************* -Each cooling system (other than heat pumps) is entered as an ``/HPXML/Building/BuildingDetails/Systems/HVAC/HVACPlant/CoolingSystem``. +Each cooling system (other than a heat pump) is entered as an ``/HPXML/Building/BuildingDetails/Systems/HVAC/HVACPlant/CoolingSystem``. ========================== ======== ====== =========== ======== ======= =============================== Element Type Units Constraints Required Default Notes @@ -771,34 +772,40 @@ Each cooling system (other than heat pumps) is entered as an ``/HPXML/Building/B ``SystemIdentifier`` id Yes Unique identifier ``CoolingSystemType`` string See [#]_ Yes Type of cooling system ``CoolingSystemFuel`` string See [#]_ Yes Fuel type - ``FractionCoolLoadServed`` double frac 0-1 [#]_ Yes Fraction of cooling load served + ``FractionCoolLoadServed`` double frac 0 - 1 [#]_ Yes Fraction of cooling load served ========================== ======== ====== =========== ======== ======= =============================== .. [#] CoolingSystemType choices are "central air conditioner", "room air conditioner", "evaporative cooler", "mini-split", "chiller", or "cooling tower". .. [#] CoolingSystemFuel only choice is "electricity". .. [#] The sum of all ``FractionCoolLoadServed`` (across both CoolingSystems and HeatPumps) must be less than or equal to 1. - For example, the dwelling unit could have two room air conditioners with values of 0.1 (10%) and 0.2 (20%), respectively, with the rest of the home (70%) uncooled. Central Air Conditioner ~~~~~~~~~~~~~~~~~~~~~~~ If a central air conditioner is specified, additional information is entered in ``CoolingSystem``. - =============================================== ======== ====== =========== ======== ========= ================================== + =============================================== ======== ====== =========== ======== ========= ================================================ Element Type Units Constraints Required Default Notes - =============================================== ======== ====== =========== ======== ========= ================================== + =============================================== ======== ====== =========== ======== ========= ================================================ ``DistributionSystem`` idref See [#]_ Yes ID of attached distribution system ``AnnualCoolingEfficiency[Units="SEER"]/Value`` double Btu/Wh > 0 Yes Rated efficiency ``CoolingCapacity`` double Btu/hr >= 0 No autosized Cooling capacity - ``SensibleHeatFraction`` double frac 0-1 No Sensible heat fraction + ``SensibleHeatFraction`` double frac 0 - 1 No Sensible heat fraction ``CompressorType`` string See [#]_ No See [#]_ Type of compressor - ``extension/FanPowerWattsPerCFM`` double W/cfm >= 0 No See [#]_ Installed fan efficiency - =============================================== ======== ====== =========== ======== ========= ================================== + ``extension/FanPowerWattsPerCFM`` double W/cfm >= 0 No See [#]_ Fan power [#]_ + ``extension/AirflowDefectRatio`` double frac > -1 No 0.0 Deviation between design/installed airflows [#]_ + ``extension/ChargeDefectRatio`` double frac > -1 No 0.0 Deviation between design/installed charges [#]_ + =============================================== ======== ====== =========== ======== ========= ================================================ .. [#] HVACDistribution type must be AirDistribution or DSE. .. [#] CompressorType choices are "single stage", "two stage", or "variable speed". .. [#] If CompressorType not provided, defaults to "single stage" if SEER <= 15, else "two stage" if SEER <= 21, else "variable speed". .. [#] If FanPowerWattsPerCFM not provided, defaults to using attached furnace W/cfm if available, else 0.5 W/cfm if SEER <= 13.5, else 0.375 W/cfm. + .. [#] If there is a heating system attached to the DistributionSystem, the heating and cooling systems cannot have different values for FanPowerWattsPerCFM. + .. [#] AirflowDefectRatio is defined as (InstalledAirflow - DesignAirflow) / DesignAirflow; a value of zero means no airflow defect. + See ANSI/RESNET/ACCA 310-2020 Standard for Grading the Installation of HVAC Systems for more information. + .. [#] ChargeDefectRatio is defined as (InstalledCharge - DesignCharge) / DesignCharge; a value of zero means no refrigerant charge defect. + See ANSI/RESNET/ACCA 310-2020 Standard for Grading the Installation of HVAC Systems for more information. Room Air Conditioner ~~~~~~~~~~~~~~~~~~~~ @@ -810,7 +817,7 @@ If a room air conditioner is specified, additional information is entered in ``C ============================================== ======== ====== =========== ======== ========= ====================== ``AnnualCoolingEfficiency[Units="EER"]/Value`` double Btu/Wh > 0 Yes Rated efficiency ``CoolingCapacity`` double Btu/hr >= 0 No autosized Cooling capacity - ``SensibleHeatFraction`` double frac 0-1 No Sensible heat fraction + ``SensibleHeatFraction`` double frac 0 - 1 No Sensible heat fraction ============================================== ======== ====== =========== ======== ========= ====================== Evaporative Cooler @@ -822,28 +829,43 @@ If an evaporative cooler is specified, additional information is entered in ``Co Element Type Units Constraints Required Default Notes ================================= ======== ====== =========== ======== ========= ================================== ``DistributionSystem`` idref See [#]_ No ID of attached distribution system - ``extension/FanPowerWattsPerCFM`` double W/cfm >= 0 No See [#]_ Installed fan efficiency + ``CoolingCapacity`` double Btu/hr >= 0 No autosized Cooling capacity ================================= ======== ====== =========== ======== ========= ================================== - .. [#] HVACDistribution type must be AirDistribution or DSE. - .. [#] If FanPowerWattsPerCFM not provided, defaults to MIN(2.79 * cfm^-0.29, 0.6) W/cfm. + .. [#] If provided, HVACDistribution type must be AirDistribution or DSE. Mini-Split ~~~~~~~~~~ If a mini-split is specified, additional information is entered in ``CoolingSystem``. - ================================= ======== ====== =========== ======== ========= ================================== + =============================================== ======== ====== =========== ======== ========= =============================================== + Element Type Units Constraints Required Default Notes + =============================================== ======== ====== =========== ======== ========= =============================================== + ``DistributionSystem`` idref See [#]_ No ID of attached distribution system + ``AnnualCoolingEfficiency[Units="SEER"]/Value`` double Btu/Wh > 0 Yes Rated cooling efficiency + ``CoolingCapacity`` double Btu/hr >= 0 No autosized Cooling capacity + ``SensibleHeatFraction`` double frac 0 - 1 No Sensible heat fraction + ``extension/ChargeDefectRatio`` double frac > -1 No 0.0 Deviation between design/installed charges [#]_ + =============================================== ======== ====== =========== ======== ========= =============================================== + + .. [#] If provided, HVACDistribution type must be AirDistribution or DSE. + .. [#] ChargeDefectRatio is defined as (InstalledCharge - DesignCharge) / DesignCharge; a value of zero means no refrigerant charge defect. + See ANSI/RESNET/ACCA 310-2020 Standard for Grading the Installation of HVAC Systems for more information. + +If a ducted mini-split is specified (i.e., a ``DistributionSystem`` has been entered), additional information is entered in ``CoolingSystem``. + + ================================= ======== ====== =========== ======== ========= =============================================== Element Type Units Constraints Required Default Notes - ================================= ======== ====== =========== ======== ========= ================================== - ``DistributionSystem`` idref See [#]_ No ID of attached distribution system - ``CoolingCapacity`` double Btu/hr >= 0 No autosized Cooling capacity - ``SensibleHeatFraction`` double frac 0-1 No Sensible heat fraction - ``extension/FanPowerWattsPerCFM`` double W/cfm >= 0 No See [#]_ Installed fan efficiency - ================================= ======== ====== =========== ======== ========= ================================== + ================================= ======== ====== =========== ======== ========= =============================================== + ``extension/FanPowerWattsPerCFM`` double W/cfm >= 0 No 0.18 Fan power + ``extension/AirflowDefectRatio`` double frac > -1 No 0.0 Deviation between design/installed airflows [#]_ + ================================= ======== ====== =========== ======== ========= =============================================== - .. [#] HVACDistribution type must be AirDistribution or DSE. - .. [#] If FanPowerWattsPerCFM not provided, defaults to 0.07 W/cfm if ductless, else 0.18 W/cfm. + .. [#] AirflowDefectRatio is defined as (InstalledAirflow - DesignAirflow) / DesignAirflow; a value of zero means no airflow defect. + See ANSI/RESNET/ACCA 310-2020 Standard for Grading the Installation of HVAC Systems for more information. + +.. _hvac_cooling_chiller: Chiller ~~~~~~~ @@ -860,23 +882,22 @@ If a chiller is specified, additional information is entered in ``CoolingSystem` ``AnnualCoolingEfficiency[Units="kW/ton"]/Value`` double kW/ton > 0 Yes Rated efficiency ``extension/SharedLoopWatts`` double W >= 0 Yes Pumping and fan power serving the system ``extension/FanCoilWatts`` double W >= 0 See [#]_ Fan coil power - ``extension/WaterLoopHeatPump/CoolingCapacity`` double Btu/hr > 0 See [#]_ Water loop heat pump cooling capacity - ``extension/WaterLoopHeatPump/AnnualCoolingEfficiency[Units="EER"]/Value`` double Btu/Wh > 0 See [#]_ Water loop heat pump efficiency ========================================================================== ======== ====== =========== ======== ========= ========================================= - .. [#] HVACDistribution type must be HydronicDistribution (type: "radiator", "baseboard", "radiant floor", or "radiant ceiling") or HydronicAndAirDistribution (type: "fan coil" or "water loop heat pump"). + .. [#] HVACDistribution type must be HydronicDistribution (type: "radiator", "baseboard", "radiant floor", "radiant ceiling", or "water loop") or AirDistribution (type: "fan coil"). + If the chiller has "water loop" distribution, a :ref:`hvac_heatpump_wlhp` must also be specified. .. [#] FanCoilWatts only required if chiller connected to a fan coil. - .. [#] WLHP CoolingCapacity only required if chiller connected to a water loop heat pump. - .. [#] WLHP Cooling EER only required if chiller connected to a water loop heat pump. - .. note:: - - Chillers are modeled as central air conditioners with a SEER equivalent using the equation from `ANSI/RESNET/ICC 301-2019 `_. +.. note:: -Cooling Tower w/ WLHP -~~~~~~~~~~~~~~~~~~~~~ + Chillers are modeled as central air conditioners with a SEER equivalent using the equation from `ANSI/RESNET/ICC 301-2019 `_. -If a cooling tower w/ water loop heat pump (WLHP) is specified, additional information is entered in ``CoolingSystem``. +.. _hvac_cooling_tower: + +Cooling Tower +~~~~~~~~~~~~~ + +If a cooling tower is specified, additional information is entered in ``CoolingSystem``. ========================================================================== ======== ====== =========== ======== ========= ========================================= Element Type Units Constraints Required Default Notes @@ -885,15 +906,14 @@ If a cooling tower w/ water loop heat pump (WLHP) is specified, additional infor ``DistributionSystem`` idref See [#]_ Yes ID of attached distribution system ``NumberofUnitsServed`` integer > 1 Yes Number of dwelling units served ``extension/SharedLoopWatts`` double W >= 0 Yes Pumping and fan power serving the system - ``extension/WaterLoopHeatPump/CoolingCapacity`` double Btu/hr > 0 Yes Water loop heat pump cooling capacity - ``extension/WaterLoopHeatPump/AnnualCoolingEfficiency[Units="EER"]/Value`` double Btu/Wh > 0 Yes Water loop heat pump efficiency ========================================================================== ======== ====== =========== ======== ========= ========================================= - .. [#] HVACDistribution type must be HydronicAndAirDistribution (type: "water loop heat pump"). - - .. note:: + .. [#] HVACDistribution type must be HydronicDistribution (type: "water loop"). + A :ref:`hvac_heatpump_wlhp` must also be specified. - Cooling towers w/ WLHPs are modeled as central air conditioners with a SEER equivalent using the equation from `ANSI/RESNET/ICC 301-2019 `_. +.. note:: + + Cooling towers w/ water loop heat pumps are modeled as central air conditioners with a SEER equivalent using the equation from `ANSI/RESNET/ICC 301-2019 `_. .. _hvac_heatpump: @@ -908,28 +928,19 @@ Each heat pump is entered as an ``/HPXML/Building/BuildingDetails/Systems/HVAC/H ``SystemIdentifier`` id Yes Unique identifier ``HeatPumpType`` string See [#]_ Yes Type of heat pump ``HeatPumpFuel`` string See [#]_ Yes Fuel type - ``HeatingCapacity`` double Btu/hr >= 0 No autosized Heating capacity (excluding any backup heating) - ``CoolingCapacity`` double Btu/hr >= 0 No autosized Cooling capacity - ``CoolingSensibleHeatFraction`` double frac 0-1 No Sensible heat fraction ``BackupSystemFuel`` string See [#]_ No Fuel type of backup heating, if present - ``FractionHeatLoadServed`` double frac 0-1 [#]_ Yes Fraction of heating load served - ``FractionCoolLoadServed`` double frac 0-1 [#]_ Yes Fraction of cooling load served ================================= ======== ====== =========== ======== ========= =============================================== - .. [#] HeatPumpType choices are "air-to-air", "mini-split", or "ground-to-air". + .. [#] HeatPumpType choices are "air-to-air", "mini-split", "ground-to-air", or "water-loop-to-air". .. [#] HeatPumpFuel only choice is "electricity". .. [#] BackupSystemFuel choices are "electricity", "natural gas", "fuel oil", "fuel oil 1", "fuel oil 2", "fuel oil 4", "fuel oil 5/6", "diesel", "propane", "kerosene", "coal", "coke", "bituminous coal", "wood", or "wood pellets". - .. [#] The sum of all ``FractionHeatLoadServed`` (across both HeatingSystems and HeatPumps) must be less than or equal to 1. - For example, the dwelling unit could have a heat pump and a boiler heating system with values of 0.4 (40%) and 0.6 (60%), respectively. - .. [#] The sum of all ``FractionCoolLoadServed`` (across both CoolingSystems and HeatPumps) must be less than or equal to 1. - For example, the dwelling unit could have two mini-split heat pumps with values of 0.1 (10%) and 0.2 (20%), respectively, with the rest of the home (70%) uncooled. If a backup system fuel is provided, additional information is entered in ``HeatPump``. ======================================================================== ======== ====== =========== ======== ========= ========================================== Element Type Units Constraints Required Default Notes ======================================================================== ======== ====== =========== ======== ========= ========================================== - ``BackupAnnualHeatingEfficiency[Units="Percent" or Units="AFUE"]/Value`` double frac 0-1 Yes Backup heating efficiency + ``BackupAnnualHeatingEfficiency[Units="Percent" or Units="AFUE"]/Value`` double frac 0 - 1 Yes Backup heating efficiency ``BackupHeatingCapacity`` double Btu/hr >= 0 No autosized Backup heating capacity ``BackupHeatingSwitchoverTemperature`` double F No Backup heating switchover temperature [#]_ ======================================================================== ======== ====== =========== ======== ========= ========================================== @@ -937,31 +948,39 @@ If a backup system fuel is provided, additional information is entered in ``Heat .. [#] Provide BackupHeatingSwitchoverTemperature for, e.g., a dual-fuel heat pump, in which there is a discrete outdoor temperature when the heat pump stops operating and the backup heating system starts operating. If not provided, the backup heating system will operate as needed when the heat pump has insufficient capacity. -.. note:: - - Water loop heat pumps in multifamily buildings should not be entered as a HeatPump. - Rather, enter them as a :ref:`hvac_heating` (shared boiler) and/or :ref:`hvac_cooling` (shared chiller or cooling tower). - Air-to-Air Heat Pump ~~~~~~~~~~~~~~~~~~~~ If an air-to-air heat pump is specified, additional information is entered in ``HeatPump``. - =============================================== ======== ====== =========== ======== ========= ===================================== + =============================================== ======== ====== =========== ======== ========= ================================================ Element Type Units Constraints Required Default Notes - =============================================== ======== ====== =========== ======== ========= ===================================== + =============================================== ======== ====== =========== ======== ========= ================================================ ``DistributionSystem`` idref See [#]_ Yes ID of attached distribution system ``CompressorType`` string See [#]_ No See [#]_ Type of compressor + ``HeatingCapacity`` double Btu/hr >= 0 No autosized Heating capacity (excluding any backup heating) + ``HeatingCapacity17F`` double Btu/hr >= 0 No Heating capacity at 17F, if available + ``CoolingCapacity`` double Btu/hr >= 0 No autosized Cooling capacity + ``CoolingSensibleHeatFraction`` double frac 0 - 1 No Sensible heat fraction + ``FractionHeatLoadServed`` double frac 0 - 1 [#]_ Yes Fraction of heating load served + ``FractionCoolLoadServed`` double frac 0 - 1 [#]_ Yes Fraction of cooling load served ``AnnualCoolingEfficiency[Units="SEER"]/Value`` double Btu/Wh > 0 Yes Rated cooling efficiency ``AnnualHeatingEfficiency[Units="HSPF"]/Value`` double Btu/Wh > 0 Yes Rated heating efficiency - ``HeatingCapacity17F`` double Btu/hr >= 0 No Heating capacity at 17F, if available - ``extension/FanPowerWattsPerCFM`` double W/cfm >= 0 No See [#]_ Installed fan efficiency - =============================================== ======== ====== =========== ======== ========= ===================================== + ``extension/FanPowerWattsPerCFM`` double W/cfm >= 0 No See [#]_ Fan power + ``extension/AirflowDefectRatio`` double frac > -1 No 0.0 Deviation between design/installed airflows [#]_ + ``extension/ChargeDefectRatio`` double frac > -1 No 0.0 Deviation between design/installed charges [#]_ + =============================================== ======== ====== =========== ======== ========= ================================================ .. [#] HVACDistribution type must be AirDistribution or DSE. .. [#] CompressorType choices are "single stage", "two stage", or "variable speed". .. [#] If CompressorType not provided, defaults to "single stage" if SEER <= 15, else "two stage" if SEER <= 21, else "variable speed". + .. [#] The sum of all ``FractionHeatLoadServed`` (across both HeatingSystems and HeatPumps) must be less than or equal to 1. + .. [#] The sum of all ``FractionCoolLoadServed`` (across both CoolingSystems and HeatPumps) must be less than or equal to 1. .. [#] If FanPowerWattsPerCFM not provided, defaulted to 0.5 W/cfm if HSPF <= 8.75, else 0.375 W/cfm. + .. [#] AirflowDefectRatio is defined as (InstalledAirflow - DesignAirflow) / DesignAirflow; a value of zero means no airflow defect. + See ANSI/RESNET/ACCA 310-2020 Standard for Grading the Installation of HVAC Systems for more information. + .. [#] ChargeDefectRatio is defined as (InstalledCharge - DesignCharge) / DesignCharge; a value of zero means no refrigerant charge defect. + See ANSI/RESNET/ACCA 310-2020 Standard for Grading the Installation of HVAC Systems for more information. Mini-Split Heat Pump ~~~~~~~~~~~~~~~~~~~~ @@ -972,14 +991,34 @@ If a mini-split heat pump is specified, additional information is entered in ``H Element Type Units Constraints Required Default Notes =============================================== ======== ====== =========== ======== ========= ============================================== ``DistributionSystem`` idref See [#]_ No ID of attached distribution system, if present + ``HeatingCapacity`` double Btu/hr >= 0 No autosized Heating capacity (excluding any backup heating) + ``HeatingCapacity17F`` double Btu/hr >= 0 No Heating capacity at 17F, if available + ``CoolingCapacity`` double Btu/hr >= 0 No autosized Cooling capacity + ``CoolingSensibleHeatFraction`` double frac 0 - 1 No Sensible heat fraction + ``FractionHeatLoadServed`` double frac 0 - 1 [#]_ Yes Fraction of heating load served + ``FractionCoolLoadServed`` double frac 0 - 1 [#]_ Yes Fraction of cooling load served ``AnnualCoolingEfficiency[Units="SEER"]/Value`` double Btu/Wh > 0 Yes Rated cooling efficiency ``AnnualHeatingEfficiency[Units="HSPF"]/Value`` double Btu/Wh > 0 Yes Rated heating efficiency - ``HeatingCapacity17F`` double Btu/hr >= 0 No Heating capacity at 17F, if available - ``extension/FanPowerWattsPerCFM`` double W/cfm >= 0 No See [#]_ Installed fan efficiency + ``extension/ChargeDefectRatio`` double frac > -1 No 0.0 Deviation between design/installed charges [#]_ =============================================== ======== ====== =========== ======== ========= ============================================== - .. [#] HVACDistribution type must be AirDistribution or DSE. - .. [#] If FanPowerWattsPerCFM not provided, defaulted to 0.07 W/cfm if ductless, else 0.18 W/cfm. + .. [#] If provided, HVACDistribution type must be AirDistribution or DSE. + .. [#] The sum of all ``FractionHeatLoadServed`` (across both HeatingSystems and HeatPumps) must be less than or equal to 1. + .. [#] The sum of all ``FractionCoolLoadServed`` (across both CoolingSystems and HeatPumps) must be less than or equal to 1. + .. [#] ChargeDefectRatio is defined as (InstalledCharge - DesignCharge) / DesignCharge; a value of zero means no refrigerant charge defect. + See ANSI/RESNET/ACCA 310-2020 Standard for Grading the Installation of HVAC Systems for more information. + +If a ducted mini-split is specified (i.e., a ``DistributionSystem`` has been entered), additional information is entered in ``HeatPump``. + + ================================= ======== ====== =========== ======== ========= =============================================== + Element Type Units Constraints Required Default Notes + ================================= ======== ====== =========== ======== ========= =============================================== + ``extension/FanPowerWattsPerCFM`` double W/cfm >= 0 No 0.18 Fan power + ``extension/AirflowDefectRatio`` double frac > -1 No 0.0 Deviation between design/installed airflows [#]_ + ================================= ======== ====== =========== ======== ========= =============================================== + + .. [#] AirflowDefectRatio is defined as (InstalledAirflow - DesignAirflow) / DesignAirflow; a value of zero means no airflow defect. + See ANSI/RESNET/ACCA 310-2020 Standard for Grading the Installation of HVAC Systems for more information. Ground-to-Air Heat Pump ~~~~~~~~~~~~~~~~~~~~~~~ @@ -991,21 +1030,63 @@ If a ground-to-air heat pump is specified, additional information is entered in =============================================== ======== ====== =========== ======== ========= ============================================== ``IsSharedSystem`` boolean No false Whether it serves multiple dwelling units [#]_ ``DistributionSystem`` idref See [#]_ Yes ID of attached distribution system + ``HeatingCapacity`` double Btu/hr >= 0 No autosized Heating capacity (excluding any backup heating) + ``CoolingCapacity`` double Btu/hr >= 0 No autosized Cooling capacity + ``CoolingSensibleHeatFraction`` double frac 0 - 1 No Sensible heat fraction + ``FractionHeatLoadServed`` double frac 0 - 1 [#]_ Yes Fraction of heating load served + ``FractionCoolLoadServed`` double frac 0 - 1 [#]_ Yes Fraction of cooling load served ``AnnualCoolingEfficiency[Units="EER"]/Value`` double Btu/Wh > 0 Yes Rated cooling efficiency ``AnnualHeatingEfficiency[Units="COP"]/Value`` double W/W > 0 Yes Rated heating efficiency - ``extension/PumpPowerWattsPerTon`` double W/ton >= 0 No See [#]_ Installed pump efficiency - ``extension/FanPowerWattsPerCFM`` double W/cfm >= 0 No See [#]_ Installed fan efficiency - ``NumberofUnitsServed`` integer > 1 See [#]_ Number of dwelling units served + ``NumberofUnitsServed`` integer > 0 See [#]_ Number of dwelling units served + ``extension/PumpPowerWattsPerTon`` double W/ton >= 0 No See [#]_ Pump power [#]_ ``extension/SharedLoopWatts`` double W >= 0 See [#]_ Shared pump power [#]_ + ``extension/FanPowerWattsPerCFM`` double W/cfm >= 0 No See [#]_ Fan power + ``extension/AirflowDefectRatio`` double frac > -1 No 0.0 Deviation between design/installed airflows [#]_ + ``extension/ChargeDefectRatio`` double frac 0.0 [#]_ No 0.0 Deviation between design/installed charges [#]_ =============================================== ======== ====== =========== ======== ========= ============================================== .. [#] IsSharedSystem should be true if the SFA/MF building has multiple ground source heat pumps connected to a shared hydronic circulation loop. .. [#] HVACDistribution type must be AirDistribution or DSE. - .. [#] If PumpPowerWattsPerTon not provided, defaults to 30 W/ton of cooling capacity per `ANSI/RESNET/ICC 301-2019 `_ for a closed loop system. - .. [#] If FanPowerWattsPerCFM not provided, defaulted to 0.5 W/cfm if COP <= 8.75/3.2, else 0.375 W/cfm. - .. [#] NumberofUnitsServed only required if IsSharedSystem is true. + .. [#] The sum of all ``FractionHeatLoadServed`` (across both HeatingSystems and HeatPumps) must be less than or equal to 1. + .. [#] The sum of all ``FractionCoolLoadServed`` (across both CoolingSystems and HeatPumps) must be less than or equal to 1. + .. [#] NumberofUnitsServed only required if IsSharedSystem is true, in which case it must be > 1. + .. [#] If PumpPowerWattsPerTon not provided, defaults to 30 W/ton per `ANSI/RESNET/ICC 301-2019 `_ for a closed loop system. + .. [#] Pump power is calculated using PumpPowerWattsPerTon and the cooling capacity in tons, unless the system only provides heating, in which case the heating capacity in tons is used instead. + Any pump power that is shared by multiple dwelling units should be included in SharedLoopWatts, *not* PumpPowerWattsPerTon, so that shared loop pump power attributed to the dwelling unit is calculated. .. [#] SharedLoopWatts only required if IsSharedSystem is true. .. [#] Shared loop pump power attributed to the dwelling unit is calculated as SharedLoopWatts / NumberofUnitsServed. + .. [#] If FanPowerWattsPerCFM not provided, defaulted to 0.5 W/cfm if COP <= 8.75/3.2, else 0.375 W/cfm. + .. [#] AirflowDefectRatio is defined as (InstalledAirflow - DesignAirflow) / DesignAirflow; a value of zero means no airflow defect. + See ANSI/RESNET/ACCA 310-2020 Standard for Grading the Installation of HVAC Systems for more information. + .. [#] ChargeDefectRatio currently constrained to zero for ground-to-air heat pumps due to an EnergyPlus limitation; this constraint will be relaxed in the future. + .. [#] ChargeDefectRatio is defined as (InstalledCharge - DesignCharge) / DesignCharge; a value of zero means no refrigerant charge defect. + See ANSI/RESNET/ACCA 310-2020 Standard for Grading the Installation of HVAC Systems for more information. + +.. _hvac_heatpump_wlhp: + +Water-Loop-to-Air Heat Pump +~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +If a water-loop-to-air heat pump is specified, additional information is entered in ``HeatPump``. + + =============================================== ======== ====== =========== ======== ========= ============================================== + Element Type Units Constraints Required Default Notes + =============================================== ======== ====== =========== ======== ========= ============================================== + ``DistributionSystem`` idref See [#]_ Yes ID of attached distribution system + ``HeatingCapacity`` double Btu/hr > 0 No autosized Heating capacity + ``CoolingCapacity`` double Btu/hr > 0 See [#]_ Cooling capacity + ``AnnualCoolingEfficiency[Units="EER"]/Value`` double Btu/Wh > 0 See [#]_ Rated cooling efficiency + ``AnnualHeatingEfficiency[Units="COP"]/Value`` double W/W > 0 See [#]_ Rated heating efficiency + =============================================== ======== ====== =========== ======== ========= ============================================== + + .. [#] HVACDistribution type must be AirDistribution or DSE. + .. [#] CoolingCapacity required if there is a shared chiller or cooling tower with water loop distribution. + .. [#] AnnualCoolingEfficiency required if there is a shared chiller or cooling tower with water loop distribution. + .. [#] AnnualHeatingEfficiency required if there is a shared boiler with water loop distribution. + +.. note:: + + If a water loop heat pump is specified, there must be at least one shared heating system (i.e., :ref:`hvac_heating_boiler`) and/or one shared cooling system (i.e., :ref:`hvac_cooling_chiller` or :ref:`hvac_cooling_tower`) specified with water loop distribution. .. _hvac_control: @@ -1044,7 +1125,7 @@ If there is a heating temperature setback, additional information is entered in ===================================== ======== ======== =========== ======== ========= ========================================= ``SetbackTempHeatingSeason`` double F Yes Heating setback temperature ``TotalSetbackHoursperWeekHeating`` integer hrs/week > 0 Yes Hours/week of heating temperature setback - ``extension/SetbackStartHourHeating`` integer 0-23 No 23 (11pm) Daily setback start hour + ``extension/SetbackStartHourHeating`` integer 0 - 23 No 23 (11pm) Daily setback start hour ===================================== ======== ======== =========== ======== ========= ========================================= If there is a cooling temperature setup, additional information is entered in ``HVACControl``. @@ -1054,7 +1135,7 @@ If there is a cooling temperature setup, additional information is entered in `` ===================================== ======== ======== =========== ======== ========= ========================================= ``SetupTempCoolingSeason`` double F Yes Cooling setup temperature ``TotalSetupHoursperWeekCooling`` integer hrs/week > 0 Yes Hours/week of cooling temperature setup - ``extension/SetupStartHourCooling`` integer 0-23 No 9 (9am) Daily setup start hour + ``extension/SetupStartHourCooling`` integer 0 - 23 No 9 (9am) Daily setup start hour ===================================== ======== ======== =========== ======== ========= ========================================= Detailed Inputs @@ -1084,8 +1165,8 @@ Each separate HVAC distribution system is entered as a ``/HPXML/Building/Buildin ``ConditionedFloorAreaServed`` double ft2 > 0 See [#]_ Conditioned floor area served ============================== ======= ======= =========== ======== ========= ============================= - .. [#] DistributionSystemType child element choices are ``AirDistribution``, ``HydronicDistribution``, ``HydronicAndAirDistribution``, or ``Other=DSE``. - .. [#] ConditionedFloorAreaServed is required for AirDistribution and HydronicAndAir types. + .. [#] DistributionSystemType child element choices are ``AirDistribution``, ``HydronicDistribution``, or ``Other=DSE``. + .. [#] ConditionedFloorAreaServed is required for AirDistribution type. .. note:: @@ -1100,34 +1181,37 @@ Air Distribution To define an air distribution system, additional information is entered in ``HVACDistribution/DistributionSystemType/AirDistribution``. - =========================== ======= ======= =========== ======== ========= =========================================== - Element Type Units Constraints Required Default Notes - =========================== ======= ======= =========== ======== ========= =========================================== - ``DuctLeakageMeasurement`` element >= 0 No Presence of supply/return duct leakage [#]_ - ``Ducts`` element >= 0 No Presence of supply/return ducts [#]_ - ``NumberofReturnRegisters`` integer >= 0 No See [#]_ Number of return registers - =========================== ======= ======= =========== ======== ========= =========================================== + ============================================= ======= ======= =========== ======== ========= ========================== + Element Type Units Constraints Required Default Notes + ============================================= ======= ======= =========== ======== ========= ========================== + ``AirDistributionType`` string See [#]_ See [#]_ Type of air distribution + ``DuctLeakageMeasurement[DuctType="supply"]`` element 1 Yes Supply duct leakage value + ``DuctLeakageMeasurement[DuctType="return"]`` element 1 Yes Return duct leakage value + ``Ducts`` element >= 0 No Supply/return ducts [#]_ + ``NumberofReturnRegisters`` integer >= 0 No See [#]_ Number of return registers + ============================================= ======= ======= =========== ======== ========= ========================== - .. [#] Provide one DuctLeakageMeasurement element for any supply ducts and one for any return ducts. - .. [#] Provide one or more Ducts elements for any supply ducts and one or more for any return ducts. + .. [#] AirDistributionType choices are "gravity", "high velocity", "regular velocity", or "fan coil". + .. [#] AirDistributionType only required if the distribution system is for shared boilers/chillers with fan coils, in which case value must be "fan coil". + .. [#] Provide a Ducts element for each supply duct and each return duct. .. [#] If NumberofReturnRegisters not provided, defaults to one return register per conditioned floor per `ASHRAE Standard 152 `_, rounded up to the nearest integer if needed. -If there is supply or return duct leakage, additional information is entered in a ``DuctLeakageMeasurement``. +Additional information is entered in each ``DuctLeakageMeasurement``. ================================ ======= ======= =========== ======== ========= ========================================================= Element Type Units Constraints Required Default Notes ================================ ======= ======= =========== ======== ========= ========================================================= - ``DuctType`` string See [#]_ Yes Supply or return ducts ``DuctLeakage/Units`` string See [#]_ Yes Duct leakage units - ``DuctLeakage/Value`` double >= 0 Yes Duct leakage value + ``DuctLeakage/Value`` double >= 0 [#]_ Yes Duct leakage value [#]_ ``DuctLeakage/TotalOrToOutside`` string See [#]_ Yes Type of duct leakage (outside conditioned space vs total) ================================ ======= ======= =========== ======== ========= ========================================================= - .. [#] DuctType choices are "supply" or "return". .. [#] Units choices are "CFM25" or "Percent". + .. [#] Value also must be < 1 if Units is Percent. + .. [#] If the HVAC system has no return ducts (e.g., a ducted evaporative cooler), use zero for the Value. .. [#] TotalOrToOutside only choice is "to outside". -If there are supply or return ducts, additional information is entered in a ``Ducts``. +Additional information is entered in each ``Ducts``. ======================== ======= ============ =========== ======== ========= =============================== Element Type Units Constraints Required Default Notes @@ -1166,21 +1250,6 @@ To define a hydronic distribution system, additional information is entered in ` .. [#] HydronicDistributionType choices are "radiator", "baseboard", "radiant floor", or "radiant ceiling". -Hydronic And Air Distribution -~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - -To define an air and hydronic distribution system, additional information is entered in ``HVACDistribution/DistributionSystemType/HydronicAndAirDistribution``. - - ================================== ======= ======= =========== ======== ========= ============================================ - Element Type Units Constraints Required Default Notes - ================================== ======= ======= =========== ======== ========= ============================================ - ``HydronicAndAirDistributionType`` string See [#]_ Yes Type of hydronic and air distribution system - ================================== ======= ======= =========== ======== ========= ============================================ - - .. [#] HydronicAndAirDistributionType choices are "fan coil" or "water loop heat pump". - -In addition, if the system is ducted, all of the elements from the :ref:`air_distribution` Section can be entered in this ``HydronicAndAirDistribution`` element too (e.g., ``DuctLeakageMeasurement`` and ``Ducts``). - Distribution System Efficiency (DSE) ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ @@ -1194,8 +1263,8 @@ To define a DSE system, additional information is entered in ``HVACDistribution` ============================================= ======= ======= =========== ======== ========= =================================================== Element Type Units Constraints Required Default Notes ============================================= ======= ======= =========== ======== ========= =================================================== - ``AnnualHeatingDistributionSystemEfficiency`` double frac 0-1 Yes Seasonal distribution system efficiency for heating - ``AnnualCoolingDistributionSystemEfficiency`` double frac 0-1 Yes Seasonal distribution system efficiency for cooling + ``AnnualHeatingDistributionSystemEfficiency`` double frac 0 - 1 Yes Seasonal distribution system efficiency for heating + ``AnnualCoolingDistributionSystemEfficiency`` double frac 0 - 1 Yes Seasonal distribution system efficiency for cooling ============================================= ======= ======= =========== ======== ========= =================================================== DSE values can be calculated from `ASHRAE Standard 152 `_. @@ -1203,7 +1272,8 @@ To define a DSE system, additional information is entered in ``HVACDistribution` HPXML Whole Ventilation Fan *************************** -Each mechanical ventilation systems that provide ventilation to the whole dwelling unit is entered as a ``/HPXML/Building/BuildingDetails/Systems/MechanicalVentilation/VentilationFans/VentilationFan``. +Each mechanical ventilation system that provides ventilation to the whole dwelling unit is entered as a ``/HPXML/Building/BuildingDetails/Systems/MechanicalVentilation/VentilationFans/VentilationFan``. +If not entered, the simulation will not include mechanical ventilation. ======================================= ======== ======= =========== ======== ========= ========================================= Element Type Units Constraints Required Default Notes @@ -1213,7 +1283,7 @@ Each mechanical ventilation systems that provide ventilation to the whole dwelli ``IsSharedSystem`` boolean See [#]_ No false Whether it serves multiple dwelling units ``FanType`` string See [#]_ Yes Type of ventilation system ``TestedFlowRate`` or ``RatedFlowRate`` double cfm >= 0 Yes Flow rate [#]_ - ``HoursInOperation`` double hrs/day 0-24 No See [#]_ Hours per day of operation + ``HoursInOperation`` double hrs/day 0 - 24 No See [#]_ Hours per day of operation ``FanPower`` double W >= 0 Yes Fan power ======================================= ======== ======= =========== ======== ========= ========================================= @@ -1237,23 +1307,23 @@ Heat Recovery Ventilator If a heat recovery ventilator system is specified, additional information is entered in ``VentilationFan``. - ======================================================================== ====== ===== =========== ======== ======= ============================ + ======================================================================== ====== ===== =========== ======== ======= ======================================= Element Type Units Constraints Required Default Notes - ======================================================================== ====== ===== =========== ======== ======= ============================ - ``SensibleRecoveryEfficiency`` or ``AdjustedSensibleRecoveryEfficiency`` double frac 0-1 Yes Sensible recovery efficiency - ======================================================================== ====== ===== =========== ======== ======= ============================ + ======================================================================== ====== ===== =========== ======== ======= ======================================= + ``SensibleRecoveryEfficiency`` or ``AdjustedSensibleRecoveryEfficiency`` double frac 0 - 1 Yes (Adjusted) Sensible recovery efficiency + ======================================================================== ====== ===== =========== ======== ======= ======================================= Energy Recovery Ventilator ~~~~~~~~~~~~~~~~~~~~~~~~~~ If an energy recovery ventilator system is specified, additional information is entered in ``VentilationFan``. - ======================================================================== ====== ===== =========== ======== ======= ============================ + ======================================================================== ====== ===== =========== ======== ======= ======================================= Element Type Units Constraints Required Default Notes - ======================================================================== ====== ===== =========== ======== ======= ============================ - ``TotalRecoveryEfficiency`` or ``AdjustedTotalRecoveryEfficiency`` double frac 0-1 Yes Total recovery efficiency - ``SensibleRecoveryEfficiency`` or ``AdjustedSensibleRecoveryEfficiency`` double frac 0-1 Yes Sensible recovery efficiency - ======================================================================== ====== ===== =========== ======== ======= ============================ + ======================================================================== ====== ===== =========== ======== ======= ======================================= + ``TotalRecoveryEfficiency`` or ``AdjustedTotalRecoveryEfficiency`` double frac 0 - 1 Yes (Adjusted) Total recovery efficiency + ``SensibleRecoveryEfficiency`` or ``AdjustedSensibleRecoveryEfficiency`` double frac 0 - 1 Yes (Adjusted) Sensible recovery efficiency + ======================================================================== ====== ===== =========== ======== ======= ======================================= Central Fan Integrated Supply ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ @@ -1276,14 +1346,15 @@ If the specified system is a shared system (i.e., serving multiple dwelling unit ============================ ======= ===== =========== ======== ======= ==================================================== Element Type Units Constraints Required Default Notes ============================ ======= ===== =========== ======== ======= ==================================================== - ``FractionRecirculation`` double frac 0-1 Yes Fraction of supply air that is recirculated [#]_ - ``extension/InUnitFlowRate`` double cfm >= 0 Yes Flow rate delivered to the dwelling unit - ``extension/PreHeating`` element 0-1 No Supply air preconditioned by heating equipment? [#]_ - ``extension/PreCooling`` element 0-1 No Supply air preconditioned by cooling equipment? [#]_ + ``FractionRecirculation`` double frac 0 - 1 Yes Fraction of supply air that is recirculated [#]_ + ``extension/InUnitFlowRate`` double cfm >= 0 [#]_ Yes Flow rate delivered to the dwelling unit + ``extension/PreHeating`` element 0 - 1 No Supply air preconditioned by heating equipment? [#]_ + ``extension/PreCooling`` element 0 - 1 No Supply air preconditioned by cooling equipment? [#]_ ============================ ======= ===== =========== ======== ======= ==================================================== .. [#] 1-FractionRecirculation is assumed to be the fraction of supply air that is provided from outside. The value must be 0 for exhaust only systems. + .. [#] InUnitFlowRate must also be < TestedFlowRate (or RatedFlowRate). .. [#] PreHeating not allowed for exhaust only systems. .. [#] PreCooling not allowed for exhaust only systems. @@ -1294,7 +1365,7 @@ If pre-heating is specified, additional information is entered in ``extension/Pr ============================================== ======= ===== =========== ======== ======= ==================================================================== ``Fuel`` string See [#]_ Yes Pre-heating equipment fuel type ``AnnualHeatingEfficiency[Units="COP"]/Value`` double W/W > 0 Yes Pre-heating equipment annual COP - ``FractionVentilationHeatLoadServed`` double frac 0-1 Yes Fraction of ventilation heating load served by pre-heating equipment + ``FractionVentilationHeatLoadServed`` double frac 0 - 1 Yes Fraction of ventilation heating load served by pre-heating equipment ============================================== ======= ===== =========== ======== ======= ==================================================================== .. [#] Fuel choices are "natural gas", "fuel oil", "fuel oil 1", "fuel oil 2", "fuel oil 4", "fuel oil 5/6", "diesel", "propane", "kerosene", "coal", "coke", "bituminous coal", "anthracite coal", "electricity", "wood", or "wood pellets". @@ -1306,7 +1377,7 @@ If pre-cooling is specified, additional information is entered in ``extension/Pr ============================================== ======= ===== =========== ======== ======= ==================================================================== ``Fuel`` string See [#]_ Yes Pre-cooling equipment fuel type ``AnnualCoolingEfficiency[Units="COP"]/Value`` double W/W > 0 Yes Pre-cooling equipment annual COP - ``FractionVentilationCoolLoadServed`` double frac 0-1 Yes Fraction of ventilation cooling load served by pre-cooling equipment + ``FractionVentilationCoolLoadServed`` double frac 0 - 1 Yes Fraction of ventilation cooling load served by pre-cooling equipment ============================================== ======= ===== =========== ======== ======= ==================================================================== .. [#] Fuel only choice is "electricity". @@ -1315,6 +1386,7 @@ HPXML Local Ventilation Fan *************************** Each kitchen range fan or bathroom fan that provides local ventilation is entered as a ``/HPXML/Building/BuildingDetails/Systems/MechanicalVentilation/VentilationFans/VentilationFan``. +If not entered, the simulation will not include kitchen/bathroom fans. =========================== ======= ======= =========== ======== ======== ============================= Element Type Units Constraints Required Default Notes @@ -1323,10 +1395,10 @@ Each kitchen range fan or bathroom fan that provides local ventilation is entere ``UsedForLocalVentilation`` boolean true Yes Must be set to true ``Quantity`` integer >= 0 No See [#]_ Number of identical fans ``RatedFlowRate`` double cfm >= 0 No See [#]_ Flow rate - ``HoursInOperation`` double hrs/day 0-24 No See [#]_ Hours per day of operation + ``HoursInOperation`` double hrs/day 0 - 24 No See [#]_ Hours per day of operation ``FanLocation`` string See [#]_ Yes Location of the fan ``FanPower`` double W >= 0 No See [#]_ Fan power - ``extension/StartHour`` integer 0-23 No See [#]_ Daily start hour of operation + ``extension/StartHour`` integer 0 - 23 No See [#]_ Daily start hour of operation =========================== ======= ======= =========== ======== ======== ============================= .. [#] If Quantity not provided, defaults to 1 for kitchen fans and NumberofBathrooms for bath fans based on the `2010 BAHSP `_. @@ -1339,7 +1411,8 @@ Each kitchen range fan or bathroom fan that provides local ventilation is entere HPXML Whole House Fan ********************* -Each whole house fans that provides cooling load reduction is entered as a ``/HPXML/Building/BuildingDetails/Systems/MechanicalVentilation/VentilationFans/VentilationFan``. +Each whole house fan that provides cooling load reduction is entered as a ``/HPXML/Building/BuildingDetails/Systems/MechanicalVentilation/VentilationFans/VentilationFan``. +If not entered, the simulation will not include whole house fans. ======================================= ======= ======= =========== ======== ======== ========================== Element Type Units Constraints Required Default Notes @@ -1358,6 +1431,7 @@ HPXML Water Heating Systems *************************** Each water heater is entered as a ``/HPXML/Building/BuildingDetails/Systems/WaterHeating/WaterHeatingSystem``. +If not entered, the simulation will not include water heating. ========================= ======= ======= =========== ======== ======== ================================================================ Element Type Units Constraints Required Default Notes @@ -1366,10 +1440,10 @@ Each water heater is entered as a ``/HPXML/Building/BuildingDetails/Systems/Wate ``IsSharedSystem`` boolean No false Whether it serves multiple dwelling units or shared laundry room ``WaterHeaterType`` string See [#]_ Yes Type of water heater ``Location`` string See [#]_ No See [#]_ Water heater location - ``FractionDHWLoadServed`` double frac 0-1 [#]_ Yes Fraction of hot water load served [#]_ + ``FractionDHWLoadServed`` double frac 0 - 1 [#]_ Yes Fraction of hot water load served [#]_ ``HotWaterTemperature`` double F > 0 No 125 Water heater setpoint ``UsesDesuperheater`` boolean No false Presence of desuperheater? - ``NumberofUnitsServed`` integer > 1 See [#]_ Number of dwelling units served directly or indirectly + ``NumberofUnitsServed`` integer > 0 See [#]_ Number of dwelling units served directly or indirectly ========================= ======= ======= =========== ======== ======== ================================================================ .. [#] WaterHeaterType choices are "storage water heater", "instantaneous water heater", "heat pump water heater", "space-heating boiler with storage tank", or "space-heating boiler with tankless coil". @@ -1383,7 +1457,7 @@ Each water heater is entered as a ``/HPXML/Building/BuildingDetails/Systems/Wate .. [#] The sum of all ``FractionDHWLoadServed`` (across all WaterHeatingSystems) must equal to 1. .. [#] FractionDHWLoadServed represents only the fraction of the hot water load associated with the hot water **fixtures**. Additional hot water load from clothes washers/dishwashers will be automatically assigned to the appropriate water heater(s). - .. [#] NumberofUnitsServed only required if IsSharedSystem is true. + .. [#] NumberofUnitsServed only required if IsSharedSystem is true, in which case it must be > 1. Conventional Storage ~~~~~~~~~~~~~~~~~~~~ @@ -1398,7 +1472,7 @@ If a conventional storage water heater is specified, additional information is e ``HeatingCapacity`` double Btuh > 0 No See [#]_ Heating capacity ``UniformEnergyFactor`` or ``EnergyFactor`` double frac < 1 Yes EnergyGuide label rated efficiency ``FirstHourRating`` double gal/hr > 0 See [#]_ EnergyGuide label first hour rating - ``RecoveryEfficiency`` double frac 0-1 No See [#]_ Recovery efficiency + ``RecoveryEfficiency`` double frac 0 - 1 No See [#]_ Recovery efficiency ``WaterHeaterInsulation/Jacket/JacketRValue`` double F-ft2-hr/Btu >= 0 No 0 R-value of additional tank insulation wrap ============================================= ======= ============ =========== ======== ======== ========================================== @@ -1409,8 +1483,8 @@ If a conventional storage water heater is specified, additional information is e .. [#] If RecoveryEfficiency not provided, defaults as follows based on a regression analysis of `AHRI certified water heaters `_: - **Electric**: 0.98 - - **Non-electric, EnergyFactor <= 0.75**: 0.778114 * EnergyFactor + 0.276679 - - **Non-electric, EnergyFactor > 0.75**: 0.252117 * EnergyFactor + 0.607997 + - **Non-electric, EnergyFactor < 0.75**: 0.252 * EnergyFactor + 0.608 + - **Non-electric, EnergyFactor >= 0.75**: 0.561 * EnergyFactor + 0.439 Tankless ~~~~~~~~ @@ -1500,8 +1574,8 @@ If any water heating systems are provided, a single hot water distribution syste ``SystemIdentifier`` id Yes Unique identifier ``SystemType`` element 1 [#]_ Yes Type of in-unit distribution system serving the dwelling unit ``PipeInsulation/PipeRValue`` double F-ft2-hr/Btu >= 0 No 0.0 Pipe insulation R-value - ``DrainWaterHeatRecovery`` element 0-1 No Presence of drain water heat recovery device - ``extension/SharedRecirculation`` element 0-1 [#]_ No Presence of shared recirculation system serving multiple dwelling units + ``DrainWaterHeatRecovery`` element 0 - 1 No Presence of drain water heat recovery device + ``extension/SharedRecirculation`` element 0 - 1 [#]_ No Presence of shared recirculation system serving multiple dwelling units ================================= ======= ============ =========== ======== ======== ======================================================================= .. [#] SystemType child element choices are ``Standard`` and ``Recirculation``. @@ -1583,7 +1657,7 @@ If a drain water heat recovery (DWHR) device is specified, additional informatio ======================= ======= ===== =========== ======== ======== ========================================= ``FacilitiesConnected`` string See [#]_ Yes Specifies which facilities are connected ``EqualFlow`` boolean Yes Specifies how the DHWR is configured [#]_ - ``Efficiency`` double frac 0-1 Yes Efficiency according to CSA 55.1 + ``Efficiency`` double frac 0 - 1 Yes Efficiency according to CSA 55.1 ======================= ======= ===== =========== ======== ======== ========================================= .. [#] FacilitiesConnected choices are "one" or "all". @@ -1614,6 +1688,7 @@ HPXML Solar Thermal ******************* A single solar hot water system can be entered as a ``/HPXML/Building/BuildingDetails/Systems/SolarThermal/SolarThermalSystem``. +If not entered, the simulation will not include solar hot water. ==================== ======= ===== =========== ======== ======== ============================ Element Type Units Constraints Required Default Notes @@ -1634,7 +1709,7 @@ To define a simple solar hot water system, additional information is entered in ================= ======= ===== =========== ======== ======== ====================== Element Type Units Constraints Required Default Notes ================= ======= ===== =========== ======== ======== ====================== - ``SolarFraction`` double frac 0-1 Yes Solar fraction [#]_ + ``SolarFraction`` double frac 0 - 1 Yes Solar fraction [#]_ ``ConnectedTo`` idref See [#]_ No [#]_ Connected water heater ================= ======= ===== =========== ======== ======== ====================== @@ -1655,9 +1730,9 @@ To define a detailed solar hot water system, additional information is entered i ``CollectorArea`` double ft2 > 0 Yes Area ``CollectorLoopType`` string See [#]_ Yes Loop type ``CollectorType`` string See [#]_ Yes System type - ``CollectorAzimuth`` integer deg 0-359 Yes Azimuth (clockwise from North) - ``CollectorTilt`` double deg 0-90 Yes Tilt relative to horizontal - ``CollectorRatedOpticalEfficiency`` double frac 0-1 Yes Rated optical efficiency [#]_ + ``CollectorAzimuth`` integer deg 0 - 359 Yes Azimuth (clockwise from North) + ``CollectorTilt`` double deg 0 - 90 Yes Tilt relative to horizontal + ``CollectorRatedOpticalEfficiency`` double frac 0 - 1 Yes Rated optical efficiency [#]_ ``CollectorRatedThermalLosses`` double Btu/hr-ft2-R > 0 Yes Rated thermal losses [#]_ ``StorageVolume`` double gal > 0 No See [#]_ Hot water storage volume ``ConnectedTo`` idref See [#]_ Yes Connected water heater @@ -1674,24 +1749,25 @@ HPXML Photovoltaics ******************* Each solar electric photovoltaic (PV) system is entered as a ``/HPXML/Building/BuildingDetails/Systems/Photovoltaics/PVSystem``. +If not entered, the simulation will not include photovoltaics. Many of the inputs are adopted from the `PVWatts model `_. - ======================================================= ================= ========= ============= ======== ======== ============================================ - Element Type Units Constraints Required Default Notes - ======================================================= ================= ========= ============= ======== ======== ============================================ - ``SystemIdentifier`` id Yes Unique identifier - ``IsSharedSystem`` boolean No false Whether it serves multiple dwelling units - ``Location`` string See [#]_ No roof Mounting location - ``ModuleType`` string See [#]_ No standard Type of module - ``Tracking`` string See [#]_ No fixed Type of tracking - ``ArrayAzimuth`` integer deg 0-359 Yes Direction panels face (clockwise from North) - ``ArrayTilt`` double deg 0-90 Yes Tilt relative to horizontal - ``MaxPowerOutput`` double W >= 0 Yes Peak power - ``InverterEfficiency`` double frac 0-1 No 0.96 Inverter efficiency - ``SystemLossesFraction`` or ``YearModulesManufactured`` double or integer frac or # 0-1 or > 1600 No 0.14 System losses [#]_ - ``extension/NumberofBedroomsServed`` integer > 1 See [#]_ Number of bedrooms served - ======================================================= ================= ========= ============= ======== ======== ============================================ + ======================================================= ================= ========= =============== ======== ======== ============================================ + Element Type Units Constraints Required Default Notes + ======================================================= ================= ========= =============== ======== ======== ============================================ + ``SystemIdentifier`` id Yes Unique identifier + ``IsSharedSystem`` boolean No false Whether it serves multiple dwelling units + ``Location`` string See [#]_ No roof Mounting location + ``ModuleType`` string See [#]_ No standard Type of module + ``Tracking`` string See [#]_ No fixed Type of tracking + ``ArrayAzimuth`` integer deg 0 - 359 Yes Direction panels face (clockwise from North) + ``ArrayTilt`` double deg 0 - 90 Yes Tilt relative to horizontal + ``MaxPowerOutput`` double W >= 0 Yes Peak power + ``InverterEfficiency`` double frac 0 - 1 No 0.96 Inverter efficiency + ``SystemLossesFraction`` or ``YearModulesManufactured`` double or integer frac or # 0 - 1 or > 1600 No 0.14 System losses [#]_ + ``extension/NumberofBedroomsServed`` integer > 1 See [#]_ Number of bedrooms served + ======================================================= ================= ========= =============== ======== ======== ============================================ .. [#] Location choices are "ground" or "roof" mounted. .. [#] ModuleType choices are "standard", "premium", or "thin film". @@ -1699,13 +1775,14 @@ Many of the inputs are adopted from the `PVWatts model NumberofBedrooms. PV generation will be apportioned to the dwelling unit using its number of bedrooms divided by the total number of bedrooms served by the PV system. HPXML Generators **************** Each generator that provides on-site power is entered as a ``/HPXML/Building/BuildingDetails/Systems/extension/Generators/Generator``. +If not entered, the simulation will not include generators. ========================== ======= ======= =========== ======== ======= ============================================ Element Type Units Constraints Required Default Notes @@ -1714,12 +1791,13 @@ Each generator that provides on-site power is entered as a ``/HPXML/Building/Bui ``IsSharedSystem`` boolean No false Whether it serves multiple dwelling units ``FuelType`` string See [#]_ Yes Fuel type ``AnnualConsumptionkBtu`` double kBtu/yr > 0 Yes Annual fuel consumed - ``AnnualOutputkWh`` double kWh/yr > 0 Yes Annual electricity produced + ``AnnualOutputkWh`` double kWh/yr > 0 [#]_ Yes Annual electricity produced ``NumberofBedroomsServed`` integer > 1 See [#]_ Number of bedrooms served ========================== ======= ======= =========== ======== ======= ============================================ .. [#] FuelType choices are "natural gas" or "propane". - .. [#] NumberofBedroomsServed only required if IsSharedSystem is true. + .. [#] AnnualOutputkWh must also be < AnnualConsumptionkBtu*3.412 (i.e., the generator must consume more energy than it produces). + .. [#] NumberofBedroomsServed only required if IsSharedSystem is true, in which case it must be > NumberofBedrooms. Annual consumption and annual production will be apportioned to the dwelling unit using its number of bedrooms divided by the total number of bedrooms served by the generator. .. note:: @@ -1735,6 +1813,7 @@ HPXML Clothes Washer ******************** A single clothes washer can be entered as a ``/HPXML/Building/BuildingDetails/Appliances/ClothesWasher``. +If not entered, the simulation will not include a clothes washer. ============================================================== ======= =========== =========== ======== ============ ============================================== Element Type Units Constraints Required Default Notes @@ -1775,11 +1854,14 @@ If IntegratedModifiedEnergyFactor or ModifiedEnergyFactor is provided, a complet ``LabelUsage`` double cyc/wk > 0 Yes EnergyGuide label number of cycles ``Capacity`` double ft3 > 0 Yes Clothes dryer volume ================================ ======= ======= =========== ============ ======= ==================================== - + +Clothes washer energy use and hot water use is calculated per the Energy Rating Rated Home in `ANSI/RESNET/ICC 301-2019 Addendum A `_. + HPXML Clothes Dryer ******************* A single clothes dryer can be entered as a ``/HPXML/Building/BuildingDetails/Appliances/ClothesDryer``. +If not entered, the simulation will not include a clothes dryer. ============================================ ======= ====== =========== ======== ============ ============================================== Element Type Units Constraints Required Default Notes @@ -1799,27 +1881,19 @@ A single clothes dryer can be entered as a ``/HPXML/Building/BuildingDetails/App See :ref:`hpxmllocations` for descriptions. .. [#] FuelType choices are "natural gas", "fuel oil", "fuel oil 1", "fuel oil 2", "fuel oil 4", "fuel oil 5/6", "diesel", "propane", "kerosene", "coal", "coke", "bituminous coal", "anthracite coal", "electricity", "wood", or "wood pellets". .. [#] If neither CombinedEnergyFactor nor EnergyFactor provided, the following default values representing a standard clothes dryer from 2006 will be used: - CombinedEnergyFactor = 3.01, - ControlType = timer. + CombinedEnergyFactor = 3.01. .. [#] If EnergyFactor (EF) provided instead of CombinedEnergyFactor (CEF), it will be converted using the following equation based on the `Interpretation on ANSI/RESNET/ICC 301-2014 Clothes Dryer CEF `_: CEF = EF / 1.15. .. [#] VentedFlowRate only required if IsVented is true. .. [#] VentedFlowRate default based on the `2010 BAHSP `_. -If the CombinedEnergyFactor or EnergyFactor is provided, a complete set of EnergyGuide label information is entered in ``ClothesDryer``. - - =============== ======= ======= =========== ======== ======= ================ - Element Type Units Constraints Required Default Notes - =============== ======= ======= =========== ======== ======= ================ - ``ControlType`` string See [#]_ Yes Type of controls - =============== ======= ======= =========== ======== ======= ================ - - .. [#] ControlType choices are "timer" or "moisture". +Clothes dryer energy use is calculated per the Energy Rating Rated Home in `ANSI/RESNET/ICC 301-2019 Addendum A `_. HPXML Dishwasher **************** A single dishwasher can be entered as a ``/HPXML/Building/BuildingDetails/Appliances/Dishwasher``. +If not entered, the simulation will not include a dishwasher. ============================================ ======= =========== =========== ======== ============ ============================================== Element Type Units Constraints Required Default Notes @@ -1859,10 +1933,13 @@ If the RatedAnnualkWh or EnergyFactor is provided, a complete set of EnergyGuide ``PlaceSettingCapacity`` integer # > 0 Yes Number of place settings ======================== ======= ======= =========== ======== ======= ================================== +Dishwasher energy use and hot water use is calculated per the Energy Rating Rated Home in `ANSI/RESNET/ICC 301-2019 Addendum A `_. + HPXML Refrigerators ******************* Each refrigerator can be entered as a ``/HPXML/Building/BuildingDetails/Appliances/Refrigerator``. +If not entered, the simulation will not include a refrigerator. ===================================================== ======= ====== =========== ======== ======== ====================================== Element Type Units Constraints Required Default Notes @@ -1891,6 +1968,7 @@ HPXML Freezers ************** Each standalone freezer can be entered as a ``/HPXML/Building/BuildingDetails/Appliances/Freezer``. +If not entered, the simulation will not include a standalone freezer. ===================================================== ====== ====== =========== ======== ========== ====================================== Element Type Units Constraints Required Default Notes @@ -1914,25 +1992,36 @@ Each standalone freezer can be entered as a ``/HPXML/Building/BuildingDetails/Ap HPXML Dehumidifier ****************** -A single dehumidifier can be entered as a ``/HPXML/Building/BuildingDetails/Appliances/Dehumidifier``. +Each dehumidifier can be entered as a ``/HPXML/Building/BuildingDetails/Appliances/Dehumidifier``. +If not entered, the simulation will not include a dehumidifier. ============================================== ========== ========== =========== ======== ======= ======================================== Element Type Units Constraints Required Default Notes ============================================== ========== ========== =========== ======== ======= ======================================== ``SystemIdentifier`` id Yes Unique identifier ``Type`` string See [#]_ Yes Type of dehumidifier + ``Location`` string See [#]_ Yes Location of dehumidifier ``Capacity`` double pints/day > 0 Yes Dehumidification capacity ``IntegratedEnergyFactor`` or ``EnergyFactor`` double liters/kWh > 0 Yes Rated efficiency - ``DehumidistatSetpoint`` double frac 0-1 Yes Relative humidity setpoint - ``FractionDehumidificationLoadServed`` double frac 0-1 Yes Fraction of dehumidification load served + ``DehumidistatSetpoint`` double frac 0 - 1 [#]_ Yes Relative humidity setpoint + ``FractionDehumidificationLoadServed`` double frac 0 - 1 [#]_ Yes Fraction of dehumidification load served ============================================== ========== ========== =========== ======== ======= ======================================== .. [#] Type choices are "portable" or "whole-home". + .. [#] Location only choice is "living space". + .. [#] If multiple dehumidifiers are entered, they must all have the same setpoint or an error will be generated. + .. [#] The sum of all ``FractionDehumidificationLoadServed`` (across all Dehumidifiers) must be less than or equal to 1. + +.. note:: + + Dehumidifiers are currently modeled as located within conditioned space; the model is not suited for a dehumidifier in, e.g., a wet unconditioned basement or crawlspace. + Therefore the dehumidifier Location is currently restricted to "living space". HPXML Cooking Range/Oven ************************ A single cooking range can be entered as a ``/HPXML/Building/BuildingDetails/Appliances/CookingRange``. +If not entered, the simulation will not include a cooking range/oven. ======================================== ======= ====== =========== ======== ============ ====================================== Element Type Units Constraints Required Default Notes @@ -1962,6 +2051,8 @@ If a cooking range is specified, a single oven is also entered as a ``/HPXML/Bui ``IsConvection`` boolean No false Convection oven? ==================== ======= ====== =========== ======== ======= ================ +Cooking range/oven energy use is calculated per the Energy Rating Rated Home in `ANSI/RESNET/ICC 301-2019 `_. + HPXML Lighting & Ceiling Fans ----------------------------- @@ -1970,7 +2061,7 @@ Lighting and ceiling fans are entered in ``/HPXML/Building/BuildingDetails/Light HPXML Lighting ************** -If the building has lighting, nine ``/HPXML/Building/BuildingDetails/Lighting/LightingGroup`` elements must be provided, each of which is the combination of: +Nine ``/HPXML/Building/BuildingDetails/Lighting/LightingGroup`` elements must be provided, each of which is the combination of: - ``LightingType``: 'LightEmittingDiode', 'CompactFluorescent', and 'FluorescentTube' - ``Location``: 'interior', 'garage', and 'exterior' @@ -1983,7 +2074,7 @@ Information is entered in each ``LightingGroup``. ``SystemIdentifier`` id Yes Unique identifier ``LightingType`` element 1 [#]_ Yes Lighting type ``Location`` string See [#]_ Yes See [#]_ - ``FractionofUnitsInLocation`` double frac 0-1 [#]_ Yes Fraction of light fixtures in the location with the specified lighting type + ``FractionofUnitsInLocation`` double frac 0 - 1 [#]_ Yes Fraction of light fixtures in the location with the specified lighting type ============================= ======= ====== =========== ======== ======= =========================================================================== .. [#] LightingType child element choices are ``LightEmittingDiode``, ``CompactFluorescent``, or ``FluorescentTube``. @@ -2009,7 +2100,7 @@ Additional information is entered in ``Lighting``. ``extension/ExteriorWeekdayScheduleFractions`` array No See [#]_ 24 comma-separated exterior weekday fractions ``extension/ExteriorWeekendScheduleFractions`` array No 24 comma-separated exterior weekend fractions ``extension/ExteriorMonthlyScheduleMultipliers`` array No 12 comma-separated exterior monthly multipliers - ``extension/ExteriorHolidayLighting`` element 0-1 No Presence of additional holiday lighting? + ``extension/ExteriorHolidayLighting`` element 0 - 1 No Presence of additional holiday lighting? ================================================ ======= ====== =========== ======== ======== =============================================== .. [#] If *interior* schedule values not provided, they will be calculated using Lighting Calculation Option 2 (location-dependent lighting profile) of the `2010 BAHSP `_. @@ -2022,10 +2113,10 @@ If exterior holiday lighting is specified, additional information is entered in Element Type Units Constraints Required Default Notes =============================== ======= ======= =========== ======== ============= ============================================ ``Load[Units="kWh/day"]/Value`` double kWh/day >= 0 No See [#]_ Holiday lighting energy use per day - ``PeriodBeginMonth`` integer 1-12 No 11 (November) Holiday lighting start date - ``PeriodBeginDayOfMonth`` integer 1-31 No 24 Holiday lighting start date - ``PeriodEndMonth`` integer 1-12 No 1 (January) Holiday lighting end date - ``PeriodEndDayOfMonth`` integer 1-31 No 6 Holiday lighting end date + ``PeriodBeginMonth`` integer 1 - 12 No 11 (November) Holiday lighting start date + ``PeriodBeginDayOfMonth`` integer 1 - 31 No 24 Holiday lighting start date + ``PeriodEndMonth`` integer 1 - 12 No 1 (January) Holiday lighting end date + ``PeriodEndDayOfMonth`` integer 1 - 31 No 6 Holiday lighting end date ``WeekdayScheduleFractions`` array No See [#]_ 24 comma-separated holiday weekday fractions ``WeekendScheduleFractions`` array No 24 comma-separated holiday weekend fractions =============================== ======= ======= =========== ======== ============= ============================================ @@ -2033,10 +2124,13 @@ If exterior holiday lighting is specified, additional information is entered in .. [#] If Value not provided, defaults to 1.1 for single-family detached and 0.55 for others. .. [#] If WeekdayScheduleFractions not provided, defaults to "0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.008, 0.098, 0.168, 0.194, 0.284, 0.192, 0.037, 0.019". +Interior, exterior, and garage lighting energy use is calculated per the Energy Rating Rated Home in `ANSI/RESNET/ICC 301-2019 `_. + HPXML Ceiling Fans ****************** Each ceiling fan is entered as a ``/HPXML/Building/BuildingDetails/Lighting/CeilingFan``. +If not entered, the simulation will not include a ceiling fan. ========================================= ======= ======= =========== ======== ======== ============================== Element Type Units Constraints Required Default Notes @@ -2049,6 +2143,8 @@ Each ceiling fan is entered as a ``/HPXML/Building/BuildingDetails/Lighting/Ceil .. [#] If Efficiency not provided, defaults to 3000 / 42.6 based on `ANSI/RESNET/ICC 301-2019 `_. .. [#] If Quantity not provided, defaults to NumberofBedrooms + 1 based on `ANSI/RESNET/ICC 301-2019 `_. +Ceiling fan energy use is calculated per the Energy Rating Rated Home in `ANSI/RESNET/ICC 301-2019 `_. + .. note:: A reduced cooling setpoint can be specified for summer months when ceiling fans are operating. @@ -2061,22 +2157,29 @@ HPXML Pools *********** A single pool can be entered as a ``/HPXML/Building/BuildingDetails/Pools/Pool``. +If not entered, the simulation will not include a pool. ==================== ======= ====== =========== ======== ============ ================= Element Type Units Constraints Required Default Notes ==================== ======= ====== =========== ======== ============ ================= ``SystemIdentifier`` id Yes Unique identifier + ``Type`` string See [#]_ Yes Pool type ==================== ======= ====== =========== ======== ============ ================= + .. [#] Type choices are "in ground", "on ground", "above ground", "other", "unknown", or "none". + If "none" is entered, the simulation will not include a pool. + Pool Pump ~~~~~~~~~ -If a pool is specified, a single pool pump must be entered as a ``Pool/PoolPumps/PoolPump``. +If a pool is specified, a single pool pump can be entered as a ``Pool/PoolPumps/PoolPump``. +If not entered, the simulation will not include a pool heater. ======================================== ======= ====== =========== ======== ============ ====================================== Element Type Units Constraints Required Default Notes ======================================== ======= ====== =========== ======== ============ ====================================== ``SystemIdentifier`` id Yes Unique identifier + ``Type`` string See [#]_ Yes Pool pump type ``Load[Units="kWh/year"]/Value`` double kWh/yr >= 0 No See [#]_ Pool pump energy use ``extension/UsageMultiplier`` double >= 0 No 1.0 Multiplier on pool pump energy use ``extension/WeekdayScheduleFractions`` array No See [#]_ 24 comma-separated weekday fractions @@ -2084,6 +2187,8 @@ If a pool is specified, a single pool pump must be entered as a ``Pool/PoolPumps ``extension/MonthlyScheduleMultipliers`` array No See [#]_ 12 comma-separated monthly multipliers ======================================== ======= ====== =========== ======== ============ ====================================== + .. [#] Type choices are "single speed", "multi speed", "variable speed", "variable flow", "other", "unknown", or "none". + If "none" is entered, the simulation will not include a pool pump. .. [#] If Value not provided, defaults based on the `2010 BAHSP `_: 158.5 / 0.070 * (0.5 + 0.25 * NumberofBedrooms / 3 + 0.35 * ConditionedFloorArea / 1920). .. [#] If WeekdayScheduleFractions or WeekendScheduleFractions not provided, default values from Figure 23 of the `2010 BAHSP `_ are used: "0.003, 0.003, 0.003, 0.004, 0.008, 0.015, 0.026, 0.044, 0.084, 0.121, 0.127, 0.121, 0.120, 0.090, 0.075, 0.061, 0.037, 0.023, 0.013, 0.008, 0.004, 0.003, 0.003, 0.003". .. [#] If MonthlyScheduleMultipliers not provided, default values from Figure 24 of the `2010 BAHSP `_ are used: "1.154, 1.161, 1.013, 1.010, 1.013, 0.888, 0.883, 0.883, 0.888, 0.978, 0.974, 1.154". @@ -2092,6 +2197,7 @@ Pool Heater ~~~~~~~~~~~ If a pool is specified, a pool heater can be entered as a ``Pool/Heater``. +If not entered, the simulation will not include a pool heater. ====================================================== ======= ================== =========== ======== ======== ====================================== Element Type Units Constraints Required Default Notes @@ -2105,7 +2211,8 @@ If a pool is specified, a pool heater can be entered as a ``Pool/Heater``. ``extension/MonthlyScheduleMultipliers`` array No See [#]_ 12 comma-separated monthly multipliers ====================================================== ======= ================== =========== ======== ======== ====================================== - .. [#] Type choices are "gas fired", "electric resistance", or "heat pump". + .. [#] Type choices are "none, "gas fired", "electric resistance", or "heat pump". + If "none" is entered, the simulation will not include a pool heater. .. [#] If Value not provided, defaults as follows: - **gas fired**: 3.0 / 0.014 * (0.5 + 0.25 * NumberofBedrooms / 3 + 0.35 * ConditionedFloorArea / 1920) (based on the `2010 BAHSP `_) @@ -2119,22 +2226,29 @@ HPXML Hot Tubs ************** A single hot tub can be entered as a ``/HPXML/Building/BuildingDetails/HotTubs/HotTub``. +If not entered, the simulation will not include a hot tub. ==================== ======= ====== =========== ======== ============ ================= Element Type Units Constraints Required Default Notes ==================== ======= ====== =========== ======== ============ ================= ``SystemIdentifier`` id Yes Unique identifier + ``Type`` string See [#]_ Yes Hot tub type ==================== ======= ====== =========== ======== ============ ================= + .. [#] Type choices are "in ground", "on ground", "above ground", "other", "unknown", or "none". + If "none" is entered, the simulation will not include a hot tub. + Hot Tub Pump ~~~~~~~~~~~~ -If a hot tub is specified, a single hot tub pump must be entered as a ``HotTub/HotTubPumps/HotTubPump``. +If a hot tub is specified, a single hot tub pump can be entered as a ``HotTub/HotTubPumps/HotTubPump``. +If not entered, the simulation will not include a hot tub pump. ======================================== ======= ====== =========== ======== ============ ====================================== Element Type Units Constraints Required Default Notes ======================================== ======= ====== =========== ======== ============ ====================================== ``SystemIdentifier`` id Yes Unique identifier + ``Type`` string See [#]_ Yes Hot tub pump type ``Load[Units="kWh/year"]/Value`` double kWh/yr >= 0 No See [#]_ Hot tub pump energy use ``extension/UsageMultiplier`` double >= 0 No 1.0 Multiplier on hot tub pump energy use ``extension/WeekdayScheduleFractions`` array No See [#]_ 24 comma-separated weekday fractions @@ -2142,6 +2256,8 @@ If a hot tub is specified, a single hot tub pump must be entered as a ``HotTub/H ``extension/MonthlyScheduleMultipliers`` array No See [#]_ 12 comma-separated monthly multipliers ======================================== ======= ====== =========== ======== ============ ====================================== + .. [#] Type choices are "single speed", "multi speed", "variable speed", "variable flow", "other", "unknown", or "none". + If "none" is entered, the simulation will not include a hot tub pump. .. [#] If Value not provided, defaults based on the `2010 BAHSP `_: 59.5 / 0.059 * (0.5 + 0.25 * NumberofBedrooms / 3 + 0.35 * ConditionedFloorArea / 1920). .. [#] If WeekdayScheduleFractions or WeekendScheduleFractions not provided, default values from Figure 23 of the `2010 BAHSP `_ are used: "0.024, 0.029, 0.024, 0.029, 0.047, 0.067, 0.057, 0.024, 0.024, 0.019, 0.015, 0.014, 0.014, 0.014, 0.024, 0.058, 0.126, 0.122, 0.068, 0.061, 0.051, 0.043, 0.024, 0.024". .. [#] If MonthlyScheduleMultipliers not provided, default values from Figure 24 of the `2010 BAHSP `_ are used: "0.921, 0.928, 0.921, 0.915, 0.921, 1.160, 1.158, 1.158, 1.160, 0.921, 0.915, 0.921". @@ -2150,6 +2266,7 @@ Hot Tub Heater ~~~~~~~~~~~~~~ If a hot tub is specified, a hot tub heater can be entered as a ``HotTub/Heater``. +If not entered, the simulation will not include a hot tub heater. ====================================================== ======= ================== =========== ======== ======== ======================================= Element Type Units Constraints Required Default Notes @@ -2163,7 +2280,8 @@ If a hot tub is specified, a hot tub heater can be entered as a ``HotTub/Heater` ``extension/MonthlyScheduleMultipliers`` array No See [#]_ 12 comma-separated monthly multipliers ====================================================== ======= ================== =========== ======== ======== ======================================= - .. [#] Type choices are "gas fired", "electric resistance", or "heat pump". + .. [#] Type choices are "none, "gas fired", "electric resistance", or "heat pump". + If "none" is entered, the simulation will not include a hot tub heater. .. [#] If Value not provided, defaults as follows: - **gas fired [therm/year]**: 0.87 / 0.011 * (0.5 + 0.25 * NumberofBedrooms / 3 + 0.35 * ConditionedFloorArea / 1920) (based on the `2010 BAHSP `_) @@ -2182,7 +2300,11 @@ HPXML Plug Loads **************** Each type of plug load can be entered as a ``/HPXML/Building/BuildingDetails/MiscLoads/PlugLoad``. -It is required that at least a miscellaneous plug load (PlugLoadType="other") is specified to represent all residual plug loads not explicitly captured elsewhere. + +It is required to include miscellaneous plug loads (PlugLoadType="other"), which represents all residual plug loads not explicitly captured elsewhere. +It is common to include television plug loads (PlugLoadType="TV other"), which represents all television energy use in the home. +It is less common to include the other plug load types, as they are less frequently found in homes. +If not entered, the simulation will not include that type of plug load. ======================================== ======= ====== =========== ======== ======== ============================================================= Element Type Units Constraints Required Default Notes @@ -2190,8 +2312,8 @@ It is required that at least a miscellaneous plug load (PlugLoadType="other") is ``SystemIdentifier`` id Yes Unique identifier ``PlugLoadType`` string See [#]_ Yes Type of plug load ``Load[Units="kWh/year"]/Value`` double kWh/yr >= 0 No See [#]_ Annual electricity consumption - ``extension/FracSensible`` double 0-1 No See [#]_ Fraction that is sensible heat gain to conditioned space [#]_ - ``extension/FracLatent`` double 0-1 No See [#]_ Fraction that is latent heat gain to conditioned space + ``extension/FracSensible`` double 0 - 1 No See [#]_ Fraction that is sensible heat gain to conditioned space [#]_ + ``extension/FracLatent`` double 0 - 1 No See [#]_ Fraction that is latent heat gain to conditioned space ``extension/UsageMultiplier`` double >= 0 No 1.0 Multiplier on electricity use ``extension/WeekdayScheduleFractions`` array No See [#]_ 24 comma-separated weekday fractions ``extension/WeekendScheduleFractions`` array No See [#]_ 24 comma-separated weekend fractions @@ -2213,7 +2335,7 @@ It is required that at least a miscellaneous plug load (PlugLoadType="other") is - **well pump**: 0.0 - **electric vehicle charging**: 0.0 - .. [#] The remaining fraction (i.e., 1.0 - FracSensible - FracLatent) is assumed to be heat gain outside conditioned space and thus lost. + .. [#] The remaining fraction (i.e., 1.0 - FracSensible - FracLatent) must be > 0 and is assumed to be heat gain outside conditioned space and thus lost. .. [#] If FracLatent not provided, defaults as: - **other**: 0.045 @@ -2247,6 +2369,9 @@ HPXML Fuel Loads Each fuel load can be entered as a ``/HPXML/Building/BuildingDetails/MiscLoads/FuelLoad``. +It is less common to include fuel load types, as they are less frequently found in homes. +If not entered, the simulation will not include that type of fuel load. + ======================================== ======= ======== =========== ======== ======== ============================================================= Element Type Units Constraints Required Default Notes ======================================== ======= ======== =========== ======== ======== ============================================================= @@ -2254,8 +2379,8 @@ Each fuel load can be entered as a ``/HPXML/Building/BuildingDetails/MiscLoads/F ``FuelLoadType`` string See [#]_ Yes Type of fuel load ``Load[Units="therm/year"]/Value`` double therm/yr >= 0 No See [#]_ Annual fuel consumption ``FuelType`` string See [#]_ Yes Fuel type - ``extension/FracSensible`` double 0-1 No See [#]_ Fraction that is sensible heat gain to conditioned space [#]_ - ``extension/FracLatent`` double 0-1 No See [#]_ Fraction that is latent heat gain to conditioned space + ``extension/FracSensible`` double 0 - 1 No See [#]_ Fraction that is sensible heat gain to conditioned space [#]_ + ``extension/FracLatent`` double 0 - 1 No See [#]_ Fraction that is latent heat gain to conditioned space ``extension/UsageMultiplier`` double >= 0 No 1.0 Multiplier on fuel use ``extension/WeekdayScheduleFractions`` array No See [#]_ 24 comma-separated weekday fractions ``extension/WeekendScheduleFractions`` array No 24 comma-separated weekend fractions @@ -2271,7 +2396,7 @@ Each fuel load can be entered as a ``/HPXML/Building/BuildingDetails/MiscLoads/F .. [#] FuelType choices are "natural gas", "fuel oil", "fuel oil 1", "fuel oil 2", "fuel oil 4", "fuel oil 5/6", "diesel", "propane", "kerosene", "coal", "coke", "bituminous coal", "anthracite coal", "wood", or "wood pellets". .. [#] If FracSensible not provided, defaults to 0.5 for fireplace and 0.0 for all other types. - .. [#] The remaining fraction (i.e., 1.0 - FracSensible - FracLatent) is assumed to be heat gain outside conditioned space and thus lost. + .. [#] The remaining fraction (i.e., 1.0 - FracSensible - FracLatent) must be > 0 and is assumed to be heat gain outside conditioned space and thus lost. .. [#] If FracLatent not provided, defaults to 0.1 for fireplace and 0.0 for all other types. .. [#] If WeekdayScheduleFractions or WeekendScheduleFractions not provided, default values from Figure 23 of the `2010 BAHSP `_ are used: diff --git a/example_files/resources/hpxml-measures/docs/source/workflow_outputs.rst b/example_files/resources/hpxml-measures/docs/source/workflow_outputs.rst index 60b649e3..1f08a35f 100644 --- a/example_files/resources/hpxml-measures/docs/source/workflow_outputs.rst +++ b/example_files/resources/hpxml-measures/docs/source/workflow_outputs.rst @@ -3,136 +3,153 @@ Workflow Outputs ================ -OpenStudio-HPXML generates a variety of annual (and optionally, timeseries) outputs for a residential HPXML-based model. +OpenStudio-HPXML generates a number of workflow outputs: + + ================================= ====================================== + File Notes + ================================= ====================================== + results_annual.csv (or .json) Summary annual outputs in either CSV or JSON formats. See :ref:`annual_outputs`. + results_timeseries.csv (or .json) Timeseries outputs in either CSV or JSON formats. See :ref:`timeseries_outputs`. Only generated if requested. + in.idf The EnergyPlus input file. + in.xml HPXML file populated with defaulted values (e.g., autosized HVAC capacities); defaults use the ``dataSource='software'`` attribute. + in.osm The OpenStudio model file. Only generated if the ``debug`` argument is used. + run.log Errors/warnings generated by the OpenStudio-HPXML workflow. + eplusout.* Minimal E+ files (e.g., sql output, error file, etc.). ALL output files can be generated using the ``debug`` argument. + ================================= ====================================== + +.. _annual_outputs: Annual Outputs -------------- -OpenStudio-HPXML will always generate an annual CSV output file called results_annual.csv, co-located with the EnergyPlus output. -The CSV file includes the following sections of output: - -Annual Energy Consumption by Fuel Type -~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - -Current fuel types are: - - ========================== =========================== - Type Notes - ========================== =========================== - Electricity: Total (MBtu) - Electricity: Net (MBtu) Excludes any power produced by PV or generators. - Natural Gas: Total (MBtu) - Fuel Oil: Total (MBtu) Includes "fuel oil", "fuel oil 1", "fuel oil 2", "fuel oil 4", "fuel oil 5/6", "kerosene", and "diesel" - Propane: Total (MBtu) - Wood: Total (MBtu) - Wood Pellets: Total (MBtu) - Coal: Total (MBtu) Includes "coal", "anthracite coal", "bituminous coal", and "coke". - ========================== =========================== - -Annual Energy Consumption By Fuel Type and End Use -~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - -Current end use/fuel type combinations are: - - ========================================================== ==================================================== - Type Notes - ========================================================== ==================================================== - Electricity: Heating (MBtu) - Electricity: Heating Fans/Pumps (MBtu) - Electricity: Cooling (MBtu) - Electricity: Cooling Fans/Pumps (MBtu) - Electricity: Hot Water (MBtu) - Electricity: Hot Water Recirc Pump (MBtu) - Electricity: Hot Water Solar Thermal Pump (MBtu) - Electricity: Lighting Interior (MBtu) - Electricity: Lighting Garage (MBtu) - Electricity: Lighting Exterior (MBtu) - Electricity: Mech Vent (MBtu) - Electricity: Mech Vent Preheating (MBtu) - Electricity: Mech Vent Precooling (MBtu) - Electricity: Whole House Fan (MBtu) - Electricity: Refrigerator (MBtu) - Electricity: Freezer (MBtu) - Electricity: Dehumidifier (MBtu) - Electricity: Dishwasher (MBtu) - Electricity: Clothes Washer (MBtu) - Electricity: Clothes Dryer (MBtu) - Electricity: Range/Oven (MBtu) - Electricity: Ceiling Fan (MBtu) - Electricity: Television (MBtu) - Electricity: Plug Loads (MBtu) - Electricity: Electric Vehicle Charging (MBtu) - Electricity: Well Pump (MBtu) - Electricity: Pool Heater (MBtu) - Electricity: Pool Pump (MBtu) - Electricity: Hot Tub Heater (MBtu) - Electricity: Hot Tub Pump (MBtu) - Electricity: PV (MBtu) Negative value for any power produced - Electricity: Generator (MBtu) Negative value for power produced - Natural Gas: Heating (MBtu) - Natural Gas: Hot Water (MBtu) - Natural Gas: Clothes Dryer (MBtu) - Natural Gas: Range/Oven (MBtu) - Natural Gas: Mech Vent Preheating (MBtu) - Natural Gas: Mech Vent Precooling (MBtu) - Natural Gas: Pool Heater (MBtu) - Natural Gas: Hot Tub Heater (MBtu) - Natural Gas: Grill (MBtu) - Natural Gas: Lighting (MBtu) - Natural Gas: Fireplace (MBtu) - Natural Gas: Generator (MBtu) Positive value for any fuel consumed - Fuel Oil: Heating (MBtu) - Fuel Oil: Hot Water (MBtu) - Fuel Oil: Clothes Dryer (MBtu) - Fuel Oil: Range/Oven (MBtu) - Fuel Oil: Mech Vent Preheating (MBtu) - Fuel Oil: Mech Vent Precooling (MBtu) - Fuel Oil: Grill (MBtu) - Fuel Oil: Lighting (MBtu) - Fuel Oil: Fireplace (MBtu) - Propane: Heating (MBtu) - Propane: Hot Water (MBtu) - Propane: Clothes Dryer (MBtu) - Propane: Range/Oven (MBtu) - Propane: Mech Vent Preheating (MBtu) - Propane: Mech Vent Precooling (MBtu) - Propane: Grill (MBtu) - Propane: Lighting (MBtu) - Propane: Fireplace (MBtu) - Propane: Generator (MBtu) Positive value for any fuel consumed - Wood Cord: Heating (MBtu) - Wood Cord: Hot Water (MBtu) - Wood Cord: Clothes Dryer (MBtu) - Wood Cord: Range/Oven (MBtu) - Wood Cord: Mech Vent Preheating (MBtu) - Wood Cord: Mech Vent Precooling (MBtu) - Wood Cord: Grill (MBtu) - Wood Cord: Lighting (MBtu) - Wood Cord: Fireplace (MBtu) - Wood Pellets: Heating (MBtu) - Wood Pellets: Hot Water (MBtu) - Wood Pellets: Clothes Dryer (MBtu) - Wood Pellets: Range/Oven (MBtu) - Wood Pellets: Mech Vent Preheating (MBtu) - Wood Pellets: Mech Vent Precooling (MBtu) - Wood Pellets: Grill (MBtu) - Wood Pellets: Lighting (MBtu) - Wood Pellets: Fireplace (MBtu) - Coal: Heating (MBtu) - Coal: Hot Water (MBtu) - Coal: Clothes Dryer (MBtu) - Coal: Range/Oven (MBtu) - Coal: Mech Vent Preheating (MBtu) - Coal: Mech Vent Precooling (MBtu) - Coal: Grill (MBtu) - Coal: Lighting (MBtu) - Coal: Fireplace (MBtu) - ========================================================== ==================================================== +OpenStudio-HPXML will always generate an annual output file called results_annual.csv (or results_annual.json), co-located with the EnergyPlus output. +The file includes the following sections of output: + +Annual Energy Consumption by Fuel Use +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +Current fuel uses are listed below. + + ==================================== =========================== + Type Notes + ==================================== =========================== + Fuel Use: Electricity: Total (MBtu) + Fuel Use: Electricity: Net (MBtu) Subtracts any power produced by PV or generators. + Fuel Use: Natural Gas: Total (MBtu) + Fuel Use: Fuel Oil: Total (MBtu) Includes "fuel oil", "fuel oil 1", "fuel oil 2", "fuel oil 4", "fuel oil 5/6", "kerosene", and "diesel" + Fuel Use: Propane: Total (MBtu) + Fuel Use: Wood: Total (MBtu) + Fuel Use: Wood Pellets: Total (MBtu) + Fuel Use: Coal: Total (MBtu) Includes "coal", "anthracite coal", "bituminous coal", and "coke". + ==================================== =========================== + +Annual Energy Consumption By End Use +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +Current end uses are listed below. + +Note that all end uses are mutually exclusive -- the "Electricity: Heating" end use, for example, excludes energy reported in the "Electricity: Heating Fans/Pumps" end use. +So the sum of all end uses for a given fuel (e.g., sum of all "End Use: Natural Gas: \*") equal the above reported fuel use (e.g., "Fuel Use: Natural Gas: Total"). + + =================================================================== ==================================================== + Type Notes + =================================================================== ==================================================== + End Use: Electricity: Heating (MBtu) Excludes fans/pumps + End Use: Electricity: Heating Fans/Pumps (MBtu) + End Use: Electricity: Cooling (MBtu) Excludes fans/pumps + End Use: Electricity: Cooling Fans/Pumps (MBtu) + End Use: Electricity: Hot Water (MBtu) Excludes recirc pump and solar thermal pump + End Use: Electricity: Hot Water Recirc Pump (MBtu) + End Use: Electricity: Hot Water Solar Thermal Pump (MBtu) + End Use: Electricity: Lighting Interior (MBtu) + End Use: Electricity: Lighting Garage (MBtu) + End Use: Electricity: Lighting Exterior (MBtu) + End Use: Electricity: Mech Vent (MBtu) Excludes preheating/precooling + End Use: Electricity: Mech Vent Preheating (MBtu) + End Use: Electricity: Mech Vent Precooling (MBtu) + End Use: Electricity: Whole House Fan (MBtu) + End Use: Electricity: Refrigerator (MBtu) + End Use: Electricity: Freezer (MBtu) + End Use: Electricity: Dehumidifier (MBtu) + End Use: Electricity: Dishwasher (MBtu) + End Use: Electricity: Clothes Washer (MBtu) + End Use: Electricity: Clothes Dryer (MBtu) + End Use: Electricity: Range/Oven (MBtu) + End Use: Electricity: Ceiling Fan (MBtu) + End Use: Electricity: Television (MBtu) + End Use: Electricity: Plug Loads (MBtu) Excludes independently reported plug loads (e.g., well pump) + End Use: Electricity: Electric Vehicle Charging (MBtu) + End Use: Electricity: Well Pump (MBtu) + End Use: Electricity: Pool Heater (MBtu) + End Use: Electricity: Pool Pump (MBtu) + End Use: Electricity: Hot Tub Heater (MBtu) + End Use: Electricity: Hot Tub Pump (MBtu) + End Use: Electricity: PV (MBtu) Negative value for any power produced + End Use: Electricity: Generator (MBtu) Negative value for any power produced + End Use: Natural Gas: Heating (MBtu) + End Use: Natural Gas: Hot Water (MBtu) + End Use: Natural Gas: Clothes Dryer (MBtu) + End Use: Natural Gas: Range/Oven (MBtu) + End Use: Natural Gas: Mech Vent Preheating (MBtu) + End Use: Natural Gas: Mech Vent Precooling (MBtu) + End Use: Natural Gas: Pool Heater (MBtu) + End Use: Natural Gas: Hot Tub Heater (MBtu) + End Use: Natural Gas: Grill (MBtu) + End Use: Natural Gas: Lighting (MBtu) + End Use: Natural Gas: Fireplace (MBtu) + End Use: Natural Gas: Generator (MBtu) Positive value for any fuel consumed + End Use: Fuel Oil: Heating (MBtu) + End Use: Fuel Oil: Hot Water (MBtu) + End Use: Fuel Oil: Clothes Dryer (MBtu) + End Use: Fuel Oil: Range/Oven (MBtu) + End Use: Fuel Oil: Mech Vent Preheating (MBtu) + End Use: Fuel Oil: Mech Vent Precooling (MBtu) + End Use: Fuel Oil: Grill (MBtu) + End Use: Fuel Oil: Lighting (MBtu) + End Use: Fuel Oil: Fireplace (MBtu) + End Use: Propane: Heating (MBtu) + End Use: Propane: Hot Water (MBtu) + End Use: Propane: Clothes Dryer (MBtu) + End Use: Propane: Range/Oven (MBtu) + End Use: Propane: Mech Vent Preheating (MBtu) + End Use: Propane: Mech Vent Precooling (MBtu) + End Use: Propane: Grill (MBtu) + End Use: Propane: Lighting (MBtu) + End Use: Propane: Fireplace (MBtu) + End Use: Propane: Generator (MBtu) Positive value for any fuel consumed + End Use: Wood Cord: Heating (MBtu) + End Use: Wood Cord: Hot Water (MBtu) + End Use: Wood Cord: Clothes Dryer (MBtu) + End Use: Wood Cord: Range/Oven (MBtu) + End Use: Wood Cord: Mech Vent Preheating (MBtu) + End Use: Wood Cord: Mech Vent Precooling (MBtu) + End Use: Wood Cord: Grill (MBtu) + End Use: Wood Cord: Lighting (MBtu) + End Use: Wood Cord: Fireplace (MBtu) + End Use: Wood Pellets: Heating (MBtu) + End Use: Wood Pellets: Hot Water (MBtu) + End Use: Wood Pellets: Clothes Dryer (MBtu) + End Use: Wood Pellets: Range/Oven (MBtu) + End Use: Wood Pellets: Mech Vent Preheating (MBtu) + End Use: Wood Pellets: Mech Vent Precooling (MBtu) + End Use: Wood Pellets: Grill (MBtu) + End Use: Wood Pellets: Lighting (MBtu) + End Use: Wood Pellets: Fireplace (MBtu) + End Use: Coal: Heating (MBtu) + End Use: Coal: Hot Water (MBtu) + End Use: Coal: Clothes Dryer (MBtu) + End Use: Coal: Range/Oven (MBtu) + End Use: Coal: Mech Vent Preheating (MBtu) + End Use: Coal: Mech Vent Precooling (MBtu) + End Use: Coal: Grill (MBtu) + End Use: Coal: Lighting (MBtu) + End Use: Coal: Fireplace (MBtu) + =================================================================== ==================================================== Annual Building Loads ~~~~~~~~~~~~~~~~~~~~~ -Current annual building loads are: +Current annual building loads are listed below. ===================================== ================================================================== Type Notes @@ -148,7 +165,7 @@ Current annual building loads are: Annual Unmet Building Loads ~~~~~~~~~~~~~~~~~~~~~~~~~~~ -Current annual unmet building loads are: +Current annual unmet building loads are listed below. ========================== ===== Type Notes @@ -167,7 +184,7 @@ Rather, the unmet load is only the amount of load that the room AC *should* be s Peak Building Electricity ~~~~~~~~~~~~~~~~~~~~~~~~~ -Current peak building electricity outputs are: +Current peak building electricity outputs are listed below. ================================== ========================================================= Type Notes @@ -179,7 +196,7 @@ Current peak building electricity outputs are: Peak Building Loads ~~~~~~~~~~~~~~~~~~~ -Current peak building loads are: +Current peak building loads are listed below. ========================== ================================== Type Notes @@ -193,7 +210,7 @@ Annual Component Building Loads Component loads represent the estimated contribution of different building components to the annual heating/cooling building loads. The sum of component loads for heating (or cooling) will roughly equal the annual heating (or cooling) building load reported above. -Current component loads disaggregated by Heating/Cooling are: +Current component loads disaggregated by Heating/Cooling are listed below. ================================================= ========================================================================================================= Type Notes @@ -220,7 +237,7 @@ Current component loads disaggregated by Heating/Cooling are: Annual Hot Water Uses ~~~~~~~~~~~~~~~~~~~~~ -Current annual hot water uses are: +Current annual hot water uses are listed below. =================================== ==================== Type Notes @@ -231,14 +248,15 @@ Current annual hot water uses are: Hot Water: Distribution Waste (gal) =================================== ==================== +.. _timeseries_outputs: Timeseries Outputs ------------------ -OpenStudio-HPXML can optionally generate a timeseries CSV output file. -The timeseries output file is called results_timeseries.csv and co-located with the EnergyPlus output. +OpenStudio-HPXML can optionally generate a timeseries output file. +The timeseries output file is called results_timeseries.csv (or results_timeseries.json) and co-located with the EnergyPlus output. -Depending on the outputs requested, CSV files may include: +Depending on the outputs requested, the file may include: =================================== ================================================================================================================================== Type Notes @@ -248,7 +266,13 @@ Depending on the outputs requested, CSV files may include: Hot Water Uses Water use for each end use type (in gallons). Total Loads Heating, cooling, and hot water loads (in kBtu) for the building. Component Loads Heating and cooling loads (in kBtu) disaggregated by component (e.g., Walls, Windows, Infiltration, Ducts, etc.). + Unmet Loads Unmet heating and cooling loads (in kBtu) for the building. Zone Temperatures Average temperatures (in deg-F) for each space modeled (e.g., living space, attic, garage, basement, crawlspace, etc.). Airflows Airflow rates (in cfm) for infiltration, mechanical ventilation (including clothes dryer exhaust), natural ventilation, whole house fans. Weather Weather file data including outdoor temperatures, relative humidity, wind speed, and solar. =================================== ================================================================================================================================== + +Timeseries outputs can be one of the following frequencies: hourly, daily, monthly, or timestep (i.e., equal to the simulation timestep, which defaults to an hour but can be sub-hourly). + +Timestamps in the output use the end-of-hour (or end-of-day for daily frequency, etc.) convention. +Most outputs will be summed over the hour (e.g., energy) but some will be averaged over the hour (e.g., temperatures, airflows). \ No newline at end of file diff --git a/example_files/resources/hpxml-measures/tasks.rb b/example_files/resources/hpxml-measures/tasks.rb index 7fa7df3b..ecb89d5c 100644 --- a/example_files/resources/hpxml-measures/tasks.rb +++ b/example_files/resources/hpxml-measures/tasks.rb @@ -17,6 +17,7 @@ def create_osws 'base-appliances-dehumidifier-ief-portable.osw' => 'base-appliances-dehumidifier.osw', 'base-appliances-dehumidifier-ief-whole-home.osw' => 'base-appliances-dehumidifier-ief-portable.osw', 'base-appliances-dehumidifier-50percent.osw' => 'base-appliances-dehumidifier.osw', + # 'base-appliances-dehumidifier-multiple.osw' => 'base-appliances-dehumidifier-50percent.osw', 'base-appliances-gas.osw' => 'base.osw', 'base-appliances-modified.osw' => 'base.osw', 'base-appliances-none.osw' => 'base.osw', @@ -29,20 +30,37 @@ def create_osws 'base-atticroof-radiant-barrier.osw' => 'base-location-dallas-tx.osw', 'base-atticroof-unvented-insulated-roof.osw' => 'base.osw', 'base-atticroof-vented.osw' => 'base.osw', + 'base-bldgtype-single-family-attached.osw' => 'base.osw', 'base-bldgtype-multifamily.osw' => 'base.osw', # 'base-bldgtype-multifamily-adjacent-to-multifamily-buffer-space.osw' => 'base.osw', # Not supporting units adjacent to other MF spaces for now # 'base-bldgtype-multifamily-adjacent-to-multiple.osw' => 'base.osw', # Not supporting units adjacent to other MF spaces for now # 'base-bldgtype-multifamily-adjacent-to-non-freezing-space.osw' => 'base.osw', # Not supporting units adjacent to other MF spaces for now # 'base-bldgtype-multifamily-adjacent-to-other-heated-space.osw' => 'base.osw', # Not supporting units adjacent to other MF spaces for now # 'base-bldgtype-multifamily-adjacent-to-other-housing-unit.osw' => 'base.osw', # Not supporting units adjacent to other MF spaces for now - # 'base-bldgtype-multifamily-shared-laundry-room.osw' => 'base.osw', # Not going to support shared laundry room + # 'base-bldgtype-multifamily-shared-boiler-chiller-baseboard.osw' => 'base-bldgtype-multifamily.osw', + # 'base-bldgtype-multifamily-shared-boiler-chiller-fan-coil.osw' => 'base-bldgtype-multifamily-shared-boiler-chiller-baseboard.osw', + # 'base-bldgtype-multifamily-shared-boiler-chiller-fan-coil-ducted.osw' => 'base-bldgtype-multifamily-shared-boiler-chiller-fan-coil.osw', + # 'base-bldgtype-multifamily-shared-boiler-chiller-water-loop-heat-pump.osw' => 'base-bldgtype-multifamily-shared-boiler-chiller-baseboard.osw', + # 'base-bldgtype-multifamily-shared-boiler-cooling-tower-water-loop-heat-pump.osw' => 'base-bldgtype-multifamily-shared-boiler-chiller-water-loop-heat-pump.osw', + # 'base-bldgtype-multifamily-shared-boiler-only-baseboard.osw' => 'base-bldgtype-multifamily.osw', + # 'base-bldgtype-multifamily-shared-boiler-only-fan-coil.osw' => 'base-bldgtype-multifamily-shared-boiler-only-baseboard.osw', + # 'base-bldgtype-multifamily-shared-boiler-only-fan-coil-ducted.osw' => 'base-bldgtype-multifamily-shared-boiler-only-fan-coil.osw', + # 'base-bldgtype-multifamily-shared-boiler-only-fan-coil-eae.osw' => 'base-bldgtype-multifamily-shared-boiler-only-fan-coil.osw', + # 'base-bldgtype-multifamily-shared-boiler-only-water-loop-heat-pump.osw' => 'base-bldgtype-multifamily-shared-boiler-only-baseboard.osw', + # 'base-bldgtype-multifamily-shared-chiller-only-baseboard.osw' => 'base-bldgtype-multifamily.osw', + # 'base-bldgtype-multifamily-shared-chiller-only-fan-coil.osw' => 'base-bldgtype-multifamily-shared-chiller-only-baseboard.osw', + # 'base-bldgtype-multifamily-shared-chiller-only-fan-coil-ducted.osw' => 'base-bldgtype-multifamily-shared-chiller-only-fan-coil.osw', + # 'base-bldgtype-multifamily-shared-chiller-only-water-loop-heat-pump.osw' => 'base-bldgtype-multifamily-shared-chiller-only-baseboard.osw', + # 'base-bldgtype-multifamily-shared-cooling-tower-only-water-loop-heat-pump.osw' => 'base-bldgtype-multifamily-shared-chiller-only-water-loop-heat-pump.osw', + # 'base-bldgtype-multifamily-shared-generator.osw' => 'base-bldgtype-multifamily.osw', + # 'base-bldgtype-multifamily-shared-ground-loop-ground-to-air-heat-pump.osw' => 'base-bldgtype-multifamily.osw', + # 'base-bldgtype-multifamily-shared-laundry-room.osw' => 'base-bldgtype-multifamily.osw', # Not going to support shared laundry room 'base-bldgtype-multifamily-shared-mechvent.osw' => 'base-bldgtype-multifamily.osw', # 'base-bldgtype-multifamily-shared-mechvent-multiple.osw' => 'base.osw', # Not going to support > 2 MV systems 'base-bldgtype-multifamily-shared-mechvent-preconditioning.osw' => 'base-bldgtype-multifamily-shared-mechvent.osw', 'base-bldgtype-multifamily-shared-pv.osw' => 'base-bldgtype-multifamily.osw', 'base-bldgtype-multifamily-shared-water-heater.osw' => 'base-bldgtype-multifamily.osw', # 'base-bldgtype-multifamily-shared-water-heater-recirc.osw' => 'base.osw', $ Not supporting shared recirculation for now - 'base-bldgtype-single-family-attached.osw' => 'base.osw', 'base-dhw-combi-tankless.osw' => 'base-dhw-indirect.osw', 'base-dhw-combi-tankless-outside.osw' => 'base-dhw-combi-tankless.osw', # 'base-dhw-desuperheater.osw' => 'base.osw', # Not supporting desuperheater for now @@ -96,7 +114,7 @@ def create_osws 'base-dhw-tank-oil.osw' => 'base.osw', 'base-dhw-tank-wood.osw' => 'base.osw', 'base-enclosure-2stories.osw' => 'base.osw', - 'base-enclosure-2stories-garage.osw' => 'base.osw', + 'base-enclosure-2stories-garage.osw' => 'base-enclosure-2stories.osw', 'base-enclosure-beds-1.osw' => 'base.osw', 'base-enclosure-beds-2.osw' => 'base.osw', 'base-enclosure-beds-4.osw' => 'base.osw', @@ -110,11 +128,14 @@ def create_osws 'base-enclosure-overhangs.osw' => 'base.osw', # 'base-enclosure-rooftypes.osw' => 'base.osw', # 'base-enclosure-skylights.osw' => 'base.osw', # There are no front roof surfaces, but 15.0 ft^2 of skylights were specified. + # 'base-enclosure-skylights-shading.osw' => 'base-enclosure-skylights.osw", # Not going to support interior/exterior shading by facade # 'base-enclosure-split-surfaces.osw' => 'base.osw', + # 'base-enclosure-split-surfaces2.osw' => 'base.osw', # 'base-enclosure-walltypes.osw' => 'base.osw', - # 'base-enclosure-windows-interior-shading.osw' => 'base.osw', # Not going to support interior shading by facade + # 'base-enclosure-windows-shading.osw' => 'base.osw', # Not going to support interior/exterior shading by facade 'base-enclosure-windows-none.osw' => 'base.osw', 'base-foundation-ambient.osw' => 'base.osw', + # 'base-foundation-basement-garage.osw' => 'base.osw', # 'base-foundation-complex.osw' => 'base.osw', # Not going to support multiple foundation types 'base-foundation-conditioned-basement-slab-insulation.osw' => 'base.osw', # 'base-foundation-conditioned-basement-wall-interior-insulation.osw' => 'base.osw', @@ -128,6 +149,8 @@ def create_osws 'base-foundation-vented-crawlspace.osw' => 'base.osw', # 'base-foundation-walkout-basement.osw' => 'base.osw', # 1 kiva object instead of 4 'base-hvac-air-to-air-heat-pump-1-speed.osw' => 'base.osw', + 'base-hvac-air-to-air-heat-pump-1-speed-cooling-only.osw' => 'base-hvac-air-to-air-heat-pump-1-speed.osw', + 'base-hvac-air-to-air-heat-pump-1-speed-heating-only.osw' => 'base-hvac-air-to-air-heat-pump-1-speed.osw', 'base-hvac-air-to-air-heat-pump-2-speed.osw' => 'base.osw', 'base-hvac-air-to-air-heat-pump-var-speed.osw' => 'base.osw', 'base-hvac-boiler-coal-only.osw' => 'base.osw', @@ -155,6 +178,7 @@ def create_osws 'base-hvac-fireplace-wood-only.osw' => 'base.osw', 'base-hvac-fixed-heater-gas-only.osw' => 'base.osw', 'base-hvac-floor-furnace-propane-only.osw' => 'base.osw', + 'base-hvac-furnace-coal-only.osw' => 'base.osw', 'base-hvac-furnace-elec-central-ac-1-speed.osw' => 'base.osw', 'base-hvac-furnace-elec-only.osw' => 'base.osw', 'base-hvac-furnace-gas-central-ac-2-speed.osw' => 'base.osw', @@ -166,7 +190,23 @@ def create_osws 'base-hvac-furnace-wood-only.osw' => 'base.osw', # 'base-hvac-furnace-x3-dse.osw' => 'base.osw', # Not going to support DSE 'base-hvac-ground-to-air-heat-pump.osw' => 'base.osw', + 'base-hvac-ground-to-air-heat-pump-cooling-only.osw' => 'base-hvac-ground-to-air-heat-pump.osw', + 'base-hvac-ground-to-air-heat-pump-heating-only.osw' => 'base-hvac-ground-to-air-heat-pump.osw', # 'base-hvac-ideal-air.osw' => 'base.osw', + 'base-hvac-install-quality-none-furnace-gas-central-ac-1-speed.osw' => 'base.osw', + 'base-hvac-install-quality-airflow-defect-furnace-gas-central-ac-1-speed.osw' => 'base.osw', + 'base-hvac-install-quality-charge-defect-furnace-gas-central-ac-1-speed.osw' => 'base.osw', + # 'base-hvac-install-quality-blower-efficiency-furnace-gas-central-ac-1-speed.osw' => 'base.osw', + 'base-hvac-install-quality-all-air-to-air-heat-pump-1-speed.osw' => 'base-hvac-air-to-air-heat-pump-1-speed.osw', + 'base-hvac-install-quality-all-air-to-air-heat-pump-2-speed.osw' => 'base-hvac-air-to-air-heat-pump-2-speed.osw', + 'base-hvac-install-quality-all-air-to-air-heat-pump-var-speed.osw' => 'base-hvac-air-to-air-heat-pump-var-speed.osw', + 'base-hvac-install-quality-all-furnace-gas-central-ac-1-speed.osw' => 'base.osw', + 'base-hvac-install-quality-all-furnace-gas-central-ac-2-speed.osw' => 'base-hvac-furnace-gas-central-ac-2-speed.osw', + 'base-hvac-install-quality-all-furnace-gas-central-ac-var-speed.osw' => 'base-hvac-furnace-gas-central-ac-var-speed.osw', + 'base-hvac-install-quality-all-furnace-gas-only.osw' => 'base-hvac-furnace-gas-only.osw', + 'base-hvac-install-quality-all-ground-to-air-heat-pump.osw' => 'base-hvac-ground-to-air-heat-pump.osw', + 'base-hvac-install-quality-all-mini-split-heat-pump-ducted.osw' => 'base-hvac-mini-split-heat-pump-ducted.osw', + 'base-hvac-install-quality-all-mini-split-air-conditioner-only-ducted.osw' => 'base-hvac-mini-split-air-conditioner-only-ducted.osw', 'base-hvac-mini-split-air-conditioner-only-ducted.osw' => 'base.osw', 'base-hvac-mini-split-air-conditioner-only-ductless.osw' => 'base-hvac-mini-split-air-conditioner-only-ducted.osw', 'base-hvac-mini-split-heat-pump-ducted.osw' => 'base.osw', @@ -178,7 +218,7 @@ def create_osws 'base-hvac-none.osw' => 'base.osw', 'base-hvac-portable-heater-gas-only.osw' => 'base.osw', # 'base-hvac-programmable-thermostat.osw' => 'base.osw', - # 'base-hvac-programmable-thermostat-detailed.osw' => 'base.osw', + 'base-hvac-programmable-thermostat-detailed.osw' => 'base.osw', 'base-hvac-room-ac-only.osw' => 'base.osw', 'base-hvac-room-ac-only-33percent.osw' => 'base.osw', 'base-hvac-setpoints.osw' => 'base.osw', @@ -191,10 +231,14 @@ def create_osws 'base-lighting-detailed.osw' => 'base.osw', # 'base-lighting-none.osw' => 'base.osw', 'base-location-AMY-2012.osw' => 'base.osw', - 'base-location-baltimore-md.osw' => 'base.osw', + 'base-location-baltimore-md.osw' => 'base-foundation-unvented-crawlspace.osw', 'base-location-dallas-tx.osw' => 'base-foundation-slab.osw', - 'base-location-duluth-mn.osw' => 'base.osw', + 'base-location-duluth-mn.osw' => 'base-foundation-unconditioned-basement.osw', + 'base-location-helena-mt.osw' => 'base.osw', + 'base-location-honolulu-hi.osw' => 'base-foundation-slab.osw', 'base-location-miami-fl.osw' => 'base-foundation-slab.osw', + 'base-location-phoenix-az.osw' => 'base-foundation-slab.osw', + 'base-location-portland-or.osw' => 'base-foundation-vented-crawlspace.osw', 'base-mechvent-balanced.osw' => 'base.osw', 'base-mechvent-bath-kitchen-fans.osw' => 'base.osw', 'base-mechvent-cfis.osw' => 'base.osw', @@ -203,17 +247,21 @@ def create_osws 'base-mechvent-erv.osw' => 'base.osw', 'base-mechvent-erv-atre-asre.osw' => 'base.osw', 'base-mechvent-exhaust.osw' => 'base.osw', + 'base-mechvent-exhaust-rated-flow-rate.osw' => 'base.osw', 'base-mechvent-hrv.osw' => 'base.osw', 'base-mechvent-hrv-asre.osw' => 'base.osw', # 'base-mechvent-multiple.osw' => 'base.osw', # Not going to support > 2 MV systems 'base-mechvent-supply.osw' => 'base.osw', 'base-mechvent-whole-house-fan.osw' => 'base.osw', 'base-misc-defaults.osw' => 'base.osw', + # 'base-misc-generators.osw' => 'base.osw', 'base-misc-loads-large-uncommon.osw' => 'base.osw', 'base-misc-loads-large-uncommon2.osw' => 'base-misc-loads-large-uncommon.osw', # 'base-misc-loads-none.osw' => 'base.osw', 'base-misc-neighbor-shading.osw' => 'base.osw', + 'base-misc-shielding-of-home.osw' => 'base.osw', 'base-misc-usage-multiplier.osw' => 'base.osw', + # 'base-multiple-buildings.osw' => 'base.osw', 'base-pv.osw' => 'base.osw', 'base-simcontrol-calendar-year-custom.osw' => 'base.osw', 'base-simcontrol-daylight-saving-custom.osw' => 'base.osw', @@ -221,6 +269,7 @@ def create_osws 'base-simcontrol-runperiod-1-month.osw' => 'base.osw', 'base-simcontrol-timestep-10-mins.osw' => 'base.osw', 'base-schedules-stochastic.osw' => 'base.osw', + 'base-schedules-stochastic-vacant.osw' => 'base-schedules-stochastic.osw', 'base-schedules-user-specified.osw' => 'base.osw', # Extra test files that don't correspond with sample files @@ -228,13 +277,112 @@ def create_osws 'extra-pv-roofpitch.osw' => 'base.osw', 'extra-dhw-solar-latitude.osw' => 'base.osw', 'extra-second-refrigerator.osw' => 'base.osw', - 'extra-second-heating-system-portable-heater.osw' => 'base.osw', - 'extra-second-heating-system-fireplace.osw' => 'base.osw', + 'extra-second-heating-system-portable-heater-to-heating-system.osw' => 'base.osw', + 'extra-second-heating-system-fireplace-to-heating-system.osw' => 'base-hvac-elec-resistance-only.osw', + 'extra-second-heating-system-boiler-to-heating-system.osw' => 'base-hvac-boiler-gas-central-ac-1-speed.osw', + 'extra-second-heating-system-portable-heater-to-heat-pump.osw' => 'base-hvac-air-to-air-heat-pump-1-speed.osw', + 'extra-second-heating-system-fireplace-to-heat-pump.osw' => 'base-hvac-mini-split-heat-pump-ducted.osw', + 'extra-second-heating-system-boiler-to-heat-pump.osw' => 'base-hvac-ground-to-air-heat-pump.osw', + 'extra-enclosure-windows-shading.osw' => 'base.osw', 'extra-enclosure-garage-partially-protruded.osw' => 'base.osw', - 'extra-vacancy-6-months.osw' => 'base-schedules-stochastic.osw', + 'extra-enclosure-garage-atticroof-conditioned.osw' => 'base-enclosure-garage.osw', + 'extra-enclosure-atticroof-conditioned-eaves-gable.osw' => 'base-foundation-slab.osw', + 'extra-enclosure-atticroof-conditioned-eaves-hip.osw' => 'extra-enclosure-atticroof-conditioned-eaves-gable.osw', 'extra-schedules-random-seed.osw' => 'base-schedules-stochastic.osw', - 'extra-hvac-programmable-thermostat.osw' => 'base.osw', - 'extra-plug-loads-additional-multipliers.osw' => 'base.osw', + 'extra-zero-refrigerator-kwh.osw' => 'base.osw', + 'extra-zero-extra-refrigerator-kwh.osw' => 'base.osw', + 'extra-zero-freezer-kwh.osw' => 'base.osw', + 'extra-zero-clothes-washer-kwh.osw' => 'base.osw', + 'extra-zero-dishwasher-kwh.osw' => 'base.osw', + + 'extra-bldgtype-single-family-attached-atticroof-conditioned-eaves-gable.osw' => 'extra-bldgtype-single-family-attached-slab.osw', + 'extra-bldgtype-single-family-attached-atticroof-conditioned-eaves-hip.osw' => 'extra-bldgtype-single-family-attached-atticroof-conditioned-eaves-gable.osw', + 'extra-bldgtype-multifamily-eaves.osw' => 'extra-bldgtype-multifamily-slab.osw', + + 'extra-bldgtype-single-family-attached-slab.osw' => 'base-bldgtype-single-family-attached.osw', + 'extra-bldgtype-single-family-attached-vented-crawlspace.osw' => 'base-bldgtype-single-family-attached.osw', + 'extra-bldgtype-single-family-attached-unvented-crawlspace.osw' => 'base-bldgtype-single-family-attached.osw', + 'extra-bldgtype-single-family-attached-unconditioned-basement.osw' => 'base-bldgtype-single-family-attached.osw', + + 'extra-bldgtype-single-family-attached-double-loaded-interior.osw' => 'base-bldgtype-single-family-attached.osw', + 'extra-bldgtype-single-family-attached-single-exterior-front.osw' => 'base-bldgtype-single-family-attached.osw', + 'extra-bldgtype-single-family-attached-double-exterior.osw' => 'base-bldgtype-single-family-attached.osw', + + 'extra-bldgtype-single-family-attached-slab-middle.osw' => 'extra-bldgtype-single-family-attached-slab.osw', + 'extra-bldgtype-single-family-attached-slab-right.osw' => 'extra-bldgtype-single-family-attached-slab.osw', + 'extra-bldgtype-single-family-attached-vented-crawlspace-middle.osw' => 'extra-bldgtype-single-family-attached-vented-crawlspace.osw', + 'extra-bldgtype-single-family-attached-vented-crawlspace-right.osw' => 'extra-bldgtype-single-family-attached-vented-crawlspace.osw', + 'extra-bldgtype-single-family-attached-unvented-crawlspace-middle.osw' => 'extra-bldgtype-single-family-attached-unvented-crawlspace.osw', + 'extra-bldgtype-single-family-attached-unvented-crawlspace-right.osw' => 'extra-bldgtype-single-family-attached-unvented-crawlspace.osw', + 'extra-bldgtype-single-family-attached-unconditioned-basement-middle.osw' => 'extra-bldgtype-single-family-attached-unconditioned-basement.osw', + 'extra-bldgtype-single-family-attached-unconditioned-basement-right.osw' => 'extra-bldgtype-single-family-attached-unconditioned-basement.osw', + + 'extra-bldgtype-multifamily-slab.osw' => 'base-bldgtype-multifamily.osw', + 'extra-bldgtype-multifamily-vented-crawlspace.osw' => 'base-bldgtype-multifamily.osw', + 'extra-bldgtype-multifamily-unvented-crawlspace.osw' => 'base-bldgtype-multifamily.osw', + + 'extra-bldgtype-multifamily-double-loaded-interior.osw' => 'base-bldgtype-multifamily.osw', + 'extra-bldgtype-multifamily-single-exterior-front.osw' => 'base-bldgtype-multifamily.osw', + 'extra-bldgtype-multifamily-double-exterior.osw' => 'base-bldgtype-multifamily.osw', + + 'extra-bldgtype-multifamily-slab-left-bottom.osw' => 'extra-bldgtype-multifamily-slab.osw', + 'extra-bldgtype-multifamily-slab-left-middle.osw' => 'extra-bldgtype-multifamily-slab.osw', + 'extra-bldgtype-multifamily-slab-left-top.osw' => 'extra-bldgtype-multifamily-slab.osw', + 'extra-bldgtype-multifamily-slab-middle-bottom.osw' => 'extra-bldgtype-multifamily-slab.osw', + 'extra-bldgtype-multifamily-slab-middle-middle.osw' => 'extra-bldgtype-multifamily-slab.osw', + 'extra-bldgtype-multifamily-slab-middle-top.osw' => 'extra-bldgtype-multifamily-slab.osw', + 'extra-bldgtype-multifamily-slab-right-bottom.osw' => 'extra-bldgtype-multifamily-slab.osw', + 'extra-bldgtype-multifamily-slab-right-middle.osw' => 'extra-bldgtype-multifamily-slab.osw', + 'extra-bldgtype-multifamily-slab-right-top.osw' => 'extra-bldgtype-multifamily-slab.osw', + 'extra-bldgtype-multifamily-vented-crawlspace-left-bottom.osw' => 'extra-bldgtype-multifamily-vented-crawlspace.osw', + 'extra-bldgtype-multifamily-vented-crawlspace-left-middle.osw' => 'extra-bldgtype-multifamily-vented-crawlspace.osw', + 'extra-bldgtype-multifamily-vented-crawlspace-left-top.osw' => 'extra-bldgtype-multifamily-vented-crawlspace.osw', + 'extra-bldgtype-multifamily-vented-crawlspace-middle-bottom.osw' => 'extra-bldgtype-multifamily-vented-crawlspace.osw', + 'extra-bldgtype-multifamily-vented-crawlspace-middle-middle.osw' => 'extra-bldgtype-multifamily-vented-crawlspace.osw', + 'extra-bldgtype-multifamily-vented-crawlspace-middle-top.osw' => 'extra-bldgtype-multifamily-vented-crawlspace.osw', + 'extra-bldgtype-multifamily-vented-crawlspace-right-bottom.osw' => 'extra-bldgtype-multifamily-vented-crawlspace.osw', + 'extra-bldgtype-multifamily-vented-crawlspace-right-middle.osw' => 'extra-bldgtype-multifamily-vented-crawlspace.osw', + 'extra-bldgtype-multifamily-vented-crawlspace-right-top.osw' => 'extra-bldgtype-multifamily-vented-crawlspace.osw', + 'extra-bldgtype-multifamily-unvented-crawlspace-left-bottom.osw' => 'extra-bldgtype-multifamily-unvented-crawlspace.osw', + 'extra-bldgtype-multifamily-unvented-crawlspace-left-middle.osw' => 'extra-bldgtype-multifamily-unvented-crawlspace.osw', + 'extra-bldgtype-multifamily-unvented-crawlspace-left-top.osw' => 'extra-bldgtype-multifamily-unvented-crawlspace.osw', + 'extra-bldgtype-multifamily-unvented-crawlspace-middle-bottom.osw' => 'extra-bldgtype-multifamily-unvented-crawlspace.osw', + 'extra-bldgtype-multifamily-unvented-crawlspace-middle-middle.osw' => 'extra-bldgtype-multifamily-unvented-crawlspace.osw', + 'extra-bldgtype-multifamily-unvented-crawlspace-middle-top.osw' => 'extra-bldgtype-multifamily-unvented-crawlspace.osw', + 'extra-bldgtype-multifamily-unvented-crawlspace-right-bottom.osw' => 'extra-bldgtype-multifamily-unvented-crawlspace.osw', + 'extra-bldgtype-multifamily-unvented-crawlspace-right-middle.osw' => 'extra-bldgtype-multifamily-unvented-crawlspace.osw', + 'extra-bldgtype-multifamily-unvented-crawlspace-right-top.osw' => 'extra-bldgtype-multifamily-unvented-crawlspace.osw', + + 'extra-bldgtype-multifamily-slab-double-loaded-interior.osw' => 'extra-bldgtype-multifamily-slab.osw', + 'extra-bldgtype-multifamily-vented-crawlspace-double-loaded-interior.osw' => 'extra-bldgtype-multifamily-vented-crawlspace.osw', + 'extra-bldgtype-multifamily-unvented-crawlspace-double-loaded-interior.osw' => 'extra-bldgtype-multifamily-unvented-crawlspace.osw', + 'extra-bldgtype-multifamily-slab-left-bottom-double-loaded-interior.osw' => 'extra-bldgtype-multifamily-slab-left-bottom.osw', + 'extra-bldgtype-multifamily-slab-left-middle-double-loaded-interior.osw' => 'extra-bldgtype-multifamily-slab-left-middle.osw', + 'extra-bldgtype-multifamily-slab-left-top-double-loaded-interior.osw' => 'extra-bldgtype-multifamily-slab-left-top.osw', + 'extra-bldgtype-multifamily-slab-middle-bottom-double-loaded-interior.osw' => 'extra-bldgtype-multifamily-slab-middle-bottom.osw', + 'extra-bldgtype-multifamily-slab-middle-middle-double-loaded-interior.osw' => 'extra-bldgtype-multifamily-slab-middle-middle.osw', + 'extra-bldgtype-multifamily-slab-middle-top-double-loaded-interior.osw' => 'extra-bldgtype-multifamily-slab-middle-top.osw', + 'extra-bldgtype-multifamily-slab-right-bottom-double-loaded-interior.osw' => 'extra-bldgtype-multifamily-slab-right-bottom.osw', + 'extra-bldgtype-multifamily-slab-right-middle-double-loaded-interior.osw' => 'extra-bldgtype-multifamily-slab-right-middle.osw', + 'extra-bldgtype-multifamily-slab-right-top-double-loaded-interior.osw' => 'extra-bldgtype-multifamily-slab-right-top.osw', + 'extra-bldgtype-multifamily-vented-crawlspace-left-bottom-double-loaded-interior.osw' => 'extra-bldgtype-multifamily-vented-crawlspace-left-bottom.osw', + 'extra-bldgtype-multifamily-vented-crawlspace-left-middle-double-loaded-interior.osw' => 'extra-bldgtype-multifamily-vented-crawlspace-left-middle.osw', + 'extra-bldgtype-multifamily-vented-crawlspace-left-top-double-loaded-interior.osw' => 'extra-bldgtype-multifamily-vented-crawlspace-left-top.osw', + 'extra-bldgtype-multifamily-vented-crawlspace-middle-bottom-double-loaded-interior.osw' => 'extra-bldgtype-multifamily-vented-crawlspace-middle-bottom.osw', + 'extra-bldgtype-multifamily-vented-crawlspace-middle-middle-double-loaded-interior.osw' => 'extra-bldgtype-multifamily-vented-crawlspace-middle-middle.osw', + 'extra-bldgtype-multifamily-vented-crawlspace-middle-top-double-loaded-interior.osw' => 'extra-bldgtype-multifamily-vented-crawlspace-middle-top.osw', + 'extra-bldgtype-multifamily-vented-crawlspace-right-bottom-double-loaded-interior.osw' => 'extra-bldgtype-multifamily-vented-crawlspace-right-bottom.osw', + 'extra-bldgtype-multifamily-vented-crawlspace-right-middle-double-loaded-interior.osw' => 'extra-bldgtype-multifamily-vented-crawlspace-right-middle.osw', + 'extra-bldgtype-multifamily-vented-crawlspace-right-top-double-loaded-interior.osw' => 'extra-bldgtype-multifamily-vented-crawlspace-right-top.osw', + 'extra-bldgtype-multifamily-unvented-crawlspace-left-bottom-double-loaded-interior.osw' => 'extra-bldgtype-multifamily-unvented-crawlspace-left-bottom.osw', + 'extra-bldgtype-multifamily-unvented-crawlspace-left-middle-double-loaded-interior.osw' => 'extra-bldgtype-multifamily-unvented-crawlspace-left-middle.osw', + 'extra-bldgtype-multifamily-unvented-crawlspace-left-top-double-loaded-interior.osw' => 'extra-bldgtype-multifamily-unvented-crawlspace-left-top.osw', + 'extra-bldgtype-multifamily-unvented-crawlspace-middle-bottom-double-loaded-interior.osw' => 'extra-bldgtype-multifamily-unvented-crawlspace-middle-bottom.osw', + 'extra-bldgtype-multifamily-unvented-crawlspace-middle-middle-double-loaded-interior.osw' => 'extra-bldgtype-multifamily-unvented-crawlspace-middle-middle.osw', + 'extra-bldgtype-multifamily-unvented-crawlspace-middle-top-double-loaded-interior.osw' => 'extra-bldgtype-multifamily-unvented-crawlspace-middle-top.osw', + 'extra-bldgtype-multifamily-unvented-crawlspace-right-bottom-double-loaded-interior.osw' => 'extra-bldgtype-multifamily-unvented-crawlspace-right-bottom.osw', + 'extra-bldgtype-multifamily-unvented-crawlspace-right-middle-double-loaded-interior.osw' => 'extra-bldgtype-multifamily-unvented-crawlspace-right-middle.osw', + 'extra-bldgtype-multifamily-unvented-crawlspace-right-top-double-loaded-interior.osw' => 'extra-bldgtype-multifamily-unvented-crawlspace-right-top.osw', 'invalid_files/non-electric-heat-pump-water-heater.osw' => 'base.osw', 'invalid_files/heating-system-and-heat-pump.osw' => 'base.osw', @@ -249,6 +397,8 @@ def create_osws 'invalid_files/slab-non-zero-foundation-height-above-grade.osw' => 'base.osw', 'invalid_files/ducts-location-and-areas-not-same-type.osw' => 'base.osw', 'invalid_files/second-heating-system-serves-majority-heat.osw' => 'base.osw', + 'invalid_files/second-heating-system-serves-total-heat-load.osw' => 'base.osw', + 'invalid_files/second-heating-system-but-no-primary-heating.osw' => 'base.osw', 'invalid_files/single-family-attached-no-building-orientation.osw' => 'base-bldgtype-single-family-attached.osw', 'invalid_files/multifamily-no-building-orientation.osw' => 'base-bldgtype-multifamily.osw', 'invalid_files/vented-crawlspace-with-wall-and-ceiling-insulation.osw' => 'base.osw', @@ -259,8 +409,14 @@ def create_osws 'invalid_files/conditioned-basement-with-ceiling-insulation.osw' => 'base.osw', 'invalid_files/conditioned-attic-with-floor-insulation.osw' => 'base.osw', 'invalid_files/dhw-indirect-without-boiler.osw' => 'base.osw', - 'invalid_files/multipliers-without-plug-loads.osw' => 'base.osw', - 'invalid_files/multipliers-without-fuel-loads.osw' => 'base.osw' + 'invalid_files/multipliers-without-tv-plug-loads.osw' => 'base.osw', + 'invalid_files/multipliers-without-other-plug-loads.osw' => 'base.osw', + 'invalid_files/multipliers-without-well-pump-plug-loads.osw' => 'base.osw', + 'invalid_files/multipliers-without-vehicle-plug-loads.osw' => 'base.osw', + 'invalid_files/multipliers-without-fuel-loads.osw' => 'base.osw', + 'invalid_files/foundation-wall-insulation-greater-than-height.osw' => 'base-foundation-vented-crawlspace.osw', + 'invalid_files/conditioned-attic-with-one-floor-above-grade.osw' => 'base.osw', + 'invalid_files/zero-number-of-bedrooms.osw' => 'base.osw' } puts "Generating #{osws_files.size} OSW files..." @@ -359,6 +515,7 @@ def get_values(osw_file, step) step.setArgument('geometry_foundation_type', HPXML::FoundationTypeBasementConditioned) step.setArgument('geometry_foundation_height', 8.0) step.setArgument('geometry_foundation_height_above_grade', 1.0) + step.setArgument('geometry_rim_joist_height', 9.25) step.setArgument('geometry_roof_type', 'gable') step.setArgument('geometry_roof_pitch', '6:12') step.setArgument('geometry_attic_type', HPXML::AtticTypeUnvented) @@ -366,11 +523,13 @@ def get_values(osw_file, step) step.setArgument('geometry_num_bedrooms', 3) step.setArgument('geometry_num_bathrooms', '2') step.setArgument('geometry_num_occupants', '3') + step.setArgument('geometry_has_flue_or_chimney', Constants.Auto) step.setArgument('floor_assembly_r', 0) step.setArgument('foundation_wall_insulation_r', 8.9) step.setArgument('foundation_wall_insulation_distance_to_top', 0.0) - step.setArgument('foundation_wall_insulation_distance_to_bottom', 8.0) + step.setArgument('foundation_wall_insulation_distance_to_bottom', Constants.Auto) step.setArgument('foundation_wall_thickness', '8.0') + step.setArgument('rim_joist_assembly_r', 23.0) step.setArgument('slab_perimeter_insulation_r', 0) step.setArgument('slab_perimeter_depth', 0) step.setArgument('slab_under_insulation_r', 0) @@ -380,11 +539,9 @@ def get_values(osw_file, step) step.setArgument('slab_carpet_r', '0.0') step.setArgument('ceiling_assembly_r', 39.3) step.setArgument('roof_material_type', HPXML::RoofTypeAsphaltShingles) - step.setArgument('roof_color', Constants.Auto) + step.setArgument('roof_color', HPXML::ColorMedium) step.setArgument('roof_assembly_r', 2.3) - step.setArgument('roof_solar_absorptance', Constants.Auto) - step.setArgument('roof_emittance', '0.92') - step.setArgument('roof_radiant_barrier', 'false') + step.setArgument('roof_radiant_barrier', false) step.setArgument('roof_radiant_barrier_grade', '1') step.setArgument('neighbor_front_distance', 0) step.setArgument('neighbor_back_distance', 0) @@ -396,10 +553,8 @@ def get_values(osw_file, step) step.setArgument('neighbor_right_height', Constants.Auto) step.setArgument('wall_type', HPXML::WallTypeWoodStud) step.setArgument('wall_siding_type', HPXML::SidingTypeWood) - step.setArgument('wall_color', Constants.Auto) + step.setArgument('wall_color', HPXML::ColorMedium) step.setArgument('wall_assembly_r', 23) - step.setArgument('wall_solar_absorptance', Constants.Auto) - step.setArgument('wall_emittance', '0.92') step.setArgument('window_front_wwr', 0) step.setArgument('window_back_wwr', 0) step.setArgument('window_left_wwr', 0) @@ -433,40 +588,39 @@ def get_values(osw_file, step) step.setArgument('air_leakage_units', HPXML::UnitsACH) step.setArgument('air_leakage_house_pressure', 50) step.setArgument('air_leakage_value', 3) - step.setArgument('air_leakage_shelter_coefficient', Constants.Auto) + step.setArgument('air_leakage_shielding_of_home', Constants.Auto) step.setArgument('heating_system_type', HPXML::HVACTypeFurnace) step.setArgument('heating_system_fuel', HPXML::FuelTypeNaturalGas) step.setArgument('heating_system_heating_efficiency', 0.92) step.setArgument('heating_system_heating_capacity', '64000.0') step.setArgument('heating_system_fraction_heat_load_served', 1) - step.setArgument('heating_system_has_flue_or_chimney', false) step.setArgument('cooling_system_type', HPXML::HVACTypeCentralAirConditioner) - step.setArgument('cooling_system_cooling_efficiency_seer', 13.0) - step.setArgument('cooling_system_cooling_efficiency_eer', 8.5) + step.setArgument('cooling_system_cooling_efficiency_type', HPXML::UnitsSEER) + step.setArgument('cooling_system_cooling_efficiency', 13.0) step.setArgument('cooling_system_cooling_compressor_type', HPXML::HVACCompressorTypeSingleStage) step.setArgument('cooling_system_cooling_sensible_heat_fraction', 0.73) step.setArgument('cooling_system_cooling_capacity', '48000.0') step.setArgument('cooling_system_fraction_cool_load_served', 1) step.setArgument('cooling_system_is_ducted', false) step.setArgument('heat_pump_type', 'none') - step.setArgument('heat_pump_heating_efficiency_hspf', 7.7) - step.setArgument('heat_pump_heating_efficiency_cop', 3.6) - step.setArgument('heat_pump_cooling_efficiency_seer', 13.0) - step.setArgument('heat_pump_cooling_efficiency_eer', 16.6) + step.setArgument('heat_pump_heating_efficiency_type', HPXML::UnitsHSPF) + step.setArgument('heat_pump_heating_efficiency', 7.7) + step.setArgument('heat_pump_cooling_efficiency_type', HPXML::UnitsSEER) + step.setArgument('heat_pump_cooling_efficiency', 13.0) step.setArgument('heat_pump_cooling_compressor_type', HPXML::HVACCompressorTypeSingleStage) step.setArgument('heat_pump_cooling_sensible_heat_fraction', 0.73) step.setArgument('heat_pump_heating_capacity', '64000.0') - step.setArgument('heat_pump_heating_capacity_17F', Constants.Auto) + step.setArgument('heat_pump_heating_capacity_17_f', Constants.Auto) step.setArgument('heat_pump_cooling_capacity', '48000.0') step.setArgument('heat_pump_fraction_heat_load_served', 1) step.setArgument('heat_pump_fraction_cool_load_served', 1) step.setArgument('heat_pump_backup_fuel', 'none') step.setArgument('heat_pump_backup_heating_efficiency', 1) step.setArgument('heat_pump_backup_heating_capacity', '34121.0') - step.setArgument('setpoint_heating_weekday_temp', 68) - step.setArgument('setpoint_heating_weekend_temp', 68) - step.setArgument('setpoint_cooling_weekday_temp', 78) - step.setArgument('setpoint_cooling_weekend_temp', 78) + step.setArgument('setpoint_heating_weekday', '68') + step.setArgument('setpoint_heating_weekend', '68') + step.setArgument('setpoint_cooling_weekday', '78') + step.setArgument('setpoint_cooling_weekend', '78') step.setArgument('ducts_supply_leakage_units', HPXML::UnitsCFM25) step.setArgument('ducts_return_leakage_units', HPXML::UnitsCFM25) step.setArgument('ducts_supply_leakage_value', 75.0) @@ -477,32 +631,29 @@ def get_values(osw_file, step) step.setArgument('ducts_return_location', HPXML::LocationAtticUnvented) step.setArgument('ducts_supply_surface_area', '150.0') step.setArgument('ducts_return_surface_area', '50.0') - step.setArgument('ducts_number_of_return_registers', Constants.Auto) + step.setArgument('ducts_number_of_return_registers', '2') step.setArgument('heating_system_type_2', 'none') step.setArgument('heating_system_fuel_2', HPXML::FuelTypeElectricity) step.setArgument('heating_system_heating_efficiency_2', 1.0) step.setArgument('heating_system_heating_capacity_2', Constants.Auto) step.setArgument('heating_system_fraction_heat_load_served_2', 0.25) - step.setArgument('heating_system_has_flue_or_chimney_2', false) step.setArgument('mech_vent_fan_type', 'none') step.setArgument('mech_vent_flow_rate', 110) step.setArgument('mech_vent_hours_in_operation', 24) - step.setArgument('mech_vent_total_recovery_efficiency_type', 'Unadjusted') + step.setArgument('mech_vent_recovery_efficiency_type', 'Unadjusted') step.setArgument('mech_vent_total_recovery_efficiency', 0.48) - step.setArgument('mech_vent_sensible_recovery_efficiency_type', 'Unadjusted') step.setArgument('mech_vent_sensible_recovery_efficiency', 0.72) step.setArgument('mech_vent_fan_power', 30) step.setArgument('mech_vent_num_units_served', 1) step.setArgument('mech_vent_fan_type_2', 'none') step.setArgument('mech_vent_flow_rate_2', 110) step.setArgument('mech_vent_hours_in_operation_2', 24) - step.setArgument('mech_vent_total_recovery_efficiency_type_2', 'Unadjusted') + step.setArgument('mech_vent_recovery_efficiency_type_2', 'Unadjusted') step.setArgument('mech_vent_total_recovery_efficiency_2', 0.48) - step.setArgument('mech_vent_sensible_recovery_efficiency_type_2', 'Unadjusted') step.setArgument('mech_vent_sensible_recovery_efficiency_2', 0.72) step.setArgument('mech_vent_fan_power_2', 30) - step.setArgument('kitchen_fans_present', false) - step.setArgument('bathroom_fans_present', false) + step.setArgument('kitchen_fans_quantity', '0') + step.setArgument('bathroom_fans_quantity', '0') step.setArgument('whole_house_fan_present', false) step.setArgument('whole_house_fan_flow_rate', 4500) step.setArgument('whole_house_fan_power', 300) @@ -510,14 +661,12 @@ def get_values(osw_file, step) step.setArgument('water_heater_fuel_type', HPXML::FuelTypeElectricity) step.setArgument('water_heater_location', HPXML::LocationLivingSpace) step.setArgument('water_heater_tank_volume', '40') - step.setArgument('water_heater_heating_capacity', '18767') step.setArgument('water_heater_efficiency_type', 'EnergyFactor') step.setArgument('water_heater_efficiency', 0.95) step.setArgument('water_heater_recovery_efficiency', '0.76') step.setArgument('water_heater_standby_loss', 0) step.setArgument('water_heater_jacket_rvalue', 0) step.setArgument('water_heater_setpoint_temperature', '125') - step.setArgument('water_heater_has_flue_or_chimney', false) step.setArgument('water_heater_num_units_served', 1) step.setArgument('dhw_distribution_system_type', HPXML::DHWDistTypeStandard) step.setArgument('dhw_distribution_standard_piping_length', '50') @@ -578,19 +727,15 @@ def get_values(osw_file, step) step.setArgument('holiday_lighting_period_begin_day_of_month', Constants.Auto) step.setArgument('holiday_lighting_period_end_month', Constants.Auto) step.setArgument('holiday_lighting_period_end_day_of_month', Constants.Auto) - step.setArgument('dehumidifier_present', false) - step.setArgument('dehumidifier_type', HPXML::DehumidifierTypePortable) + step.setArgument('dehumidifier_type', 'none') step.setArgument('dehumidifier_efficiency_type', 'EnergyFactor') - step.setArgument('dehumidifier_efficiency_ef', 1.8) - step.setArgument('dehumidifier_efficiency_ief', 1.5) + step.setArgument('dehumidifier_efficiency', 1.8) step.setArgument('dehumidifier_capacity', 40) step.setArgument('dehumidifier_rh_setpoint', 0.5) step.setArgument('dehumidifier_fraction_dehumidification_load_served', 1) - step.setArgument('clothes_washer_present', true) step.setArgument('clothes_washer_location', HPXML::LocationLivingSpace) step.setArgument('clothes_washer_efficiency_type', 'IntegratedModifiedEnergyFactor') - step.setArgument('clothes_washer_efficiency_mef', '1.453') - step.setArgument('clothes_washer_efficiency_imef', '1.21') + step.setArgument('clothes_washer_efficiency', '1.21') step.setArgument('clothes_washer_rated_annual_kwh', '380.0') step.setArgument('clothes_washer_label_electric_rate', '0.12') step.setArgument('clothes_washer_label_gas_rate', '1.09') @@ -598,39 +743,30 @@ def get_values(osw_file, step) step.setArgument('clothes_washer_label_usage', '6.0') step.setArgument('clothes_washer_capacity', '3.2') step.setArgument('clothes_washer_usage_multiplier', 1.0) - step.setArgument('clothes_dryer_present', true) step.setArgument('clothes_dryer_location', HPXML::LocationLivingSpace) step.setArgument('clothes_dryer_fuel_type', HPXML::FuelTypeElectricity) step.setArgument('clothes_dryer_efficiency_type', 'CombinedEnergyFactor') - step.setArgument('clothes_dryer_efficiency_ef', 3.4615) - step.setArgument('clothes_dryer_efficiency_cef', '3.73') - step.setArgument('clothes_dryer_control_type', HPXML::ClothesDryerControlTypeTimer) + step.setArgument('clothes_dryer_efficiency', '3.73') step.setArgument('clothes_dryer_vented_flow_rate', '150.0') step.setArgument('clothes_dryer_usage_multiplier', 1.0) - step.setArgument('dishwasher_present', true) step.setArgument('dishwasher_location', HPXML::LocationLivingSpace) step.setArgument('dishwasher_efficiency_type', 'RatedAnnualkWh') - step.setArgument('dishwasher_efficiency_kwh', '307') - step.setArgument('dishwasher_efficiency_ef', 0.46) + step.setArgument('dishwasher_efficiency', '307') step.setArgument('dishwasher_label_electric_rate', '0.12') step.setArgument('dishwasher_label_gas_rate', '1.09') step.setArgument('dishwasher_label_annual_gas_cost', '22.32') step.setArgument('dishwasher_label_usage', '4.0') step.setArgument('dishwasher_place_setting_capacity', '12') step.setArgument('dishwasher_usage_multiplier', 1.0) - step.setArgument('refrigerator_present', true) step.setArgument('refrigerator_location', HPXML::LocationLivingSpace) step.setArgument('refrigerator_rated_annual_kwh', '650.0') step.setArgument('refrigerator_usage_multiplier', 1.0) - step.setArgument('extra_refrigerator_present', false) - step.setArgument('extra_refrigerator_location', Constants.Auto) + step.setArgument('extra_refrigerator_location', 'none') step.setArgument('extra_refrigerator_rated_annual_kwh', Constants.Auto) step.setArgument('extra_refrigerator_usage_multiplier', 1.0) - step.setArgument('freezer_present', false) - step.setArgument('freezer_location', Constants.Auto) + step.setArgument('freezer_location', 'none') step.setArgument('freezer_rated_annual_kwh', Constants.Auto) step.setArgument('freezer_usage_multiplier', 1.0) - step.setArgument('cooking_range_oven_present', true) step.setArgument('cooking_range_oven_location', HPXML::LocationLivingSpace) step.setArgument('cooking_range_oven_fuel_type', HPXML::FuelTypeElectricity) step.setArgument('cooking_range_oven_is_induction', false) @@ -642,20 +778,16 @@ def get_values(osw_file, step) step.setArgument('ceiling_fan_cooling_setpoint_temp_offset', 0) step.setArgument('plug_loads_television_annual_kwh', '620.0') step.setArgument('plug_loads_television_usage_multiplier', 1.0) - step.setArgument('plug_loads_television_usage_multiplier_2', 1.0) step.setArgument('plug_loads_other_annual_kwh', '2457.0') step.setArgument('plug_loads_other_frac_sensible', '0.855') step.setArgument('plug_loads_other_frac_latent', '0.045') step.setArgument('plug_loads_other_usage_multiplier', 1.0) - step.setArgument('plug_loads_other_usage_multiplier_2', 1.0) step.setArgument('plug_loads_well_pump_present', false) step.setArgument('plug_loads_well_pump_annual_kwh', Constants.Auto) step.setArgument('plug_loads_well_pump_usage_multiplier', 0.0) - step.setArgument('plug_loads_well_pump_usage_multiplier_2', 0.0) step.setArgument('plug_loads_vehicle_present', false) step.setArgument('plug_loads_vehicle_annual_kwh', Constants.Auto) step.setArgument('plug_loads_vehicle_usage_multiplier', 0.0) - step.setArgument('plug_loads_vehicle_usage_multiplier_2', 0.0) step.setArgument('fuel_loads_grill_present', false) step.setArgument('fuel_loads_grill_fuel_type', HPXML::FuelTypeNaturalGas) step.setArgument('fuel_loads_grill_annual_therm', Constants.Auto) @@ -684,121 +816,55 @@ def get_values(osw_file, step) step.setArgument('hot_tub_heater_annual_kwh', Constants.Auto) step.setArgument('hot_tub_heater_annual_therm', Constants.Auto) step.setArgument('hot_tub_heater_usage_multiplier', 1.0) - elsif ['base-bldgtype-single-family-attached.osw'].include? osw_file - step.setArgument('geometry_unit_type', HPXML::ResidentialTypeSFA) - step.setArgument('geometry_cfa', 1800.0) - step.setArgument('geometry_corridor_position', 'None') - step.setArgument('geometry_building_num_units', 3) - step.setArgument('geometry_horizontal_location', 'Left') - step.setArgument('window_front_wwr', 0.18) - step.setArgument('window_back_wwr', 0.18) - step.setArgument('window_left_wwr', 0.18) - step.setArgument('window_right_wwr', 0.18) - step.setArgument('window_area_front', 0) - step.setArgument('window_area_back', 0) - step.setArgument('window_area_left', 0) - step.setArgument('window_area_right', 0) - step.setArgument('plug_loads_other_annual_kwh', '1638.0') - elsif ['base-bldgtype-multifamily.osw'].include? osw_file - step.setArgument('geometry_unit_type', HPXML::ResidentialTypeApartment) - step.setArgument('geometry_cfa', 900.0) - step.setArgument('geometry_corridor_position', 'None') - step.setArgument('geometry_foundation_type', HPXML::FoundationTypeBasementUnconditioned) - step.setArgument('geometry_level', 'Middle') - step.setArgument('geometry_horizontal_location', 'Left') - step.setArgument('geometry_building_num_units', 50) - step.setArgument('geometry_building_num_bedrooms', 50 * 3) - step.setArgument('geometry_num_floors_above_grade', 5) - step.setArgument('window_front_wwr', 0.18) - step.setArgument('window_back_wwr', 0.18) - step.setArgument('window_left_wwr', 0.18) - step.setArgument('window_right_wwr', 0.18) - step.setArgument('window_area_front', 0) - step.setArgument('window_area_back', 0) - step.setArgument('window_area_left', 0) - step.setArgument('window_area_right', 0) - step.setArgument('ducts_supply_leakage_value', 0.0) - step.setArgument('ducts_return_leakage_value', 0.0) - step.setArgument('ducts_supply_location', HPXML::LocationLivingSpace) - step.setArgument('ducts_return_location', HPXML::LocationLivingSpace) - step.setArgument('ducts_supply_insulation_r', 0.0) - step.setArgument('ducts_return_insulation_r', 0.0) - step.setArgument('door_area', 20.0) - step.setArgument('plug_loads_other_annual_kwh', '819.0') elsif ['base-appliances-coal.osw'].include? osw_file step.setArgument('clothes_dryer_fuel_type', HPXML::FuelTypeCoal) - step.setArgument('clothes_dryer_efficiency_cef', '3.3') - step.setArgument('clothes_dryer_control_type', HPXML::ClothesDryerControlTypeMoisture) + step.setArgument('clothes_dryer_efficiency', '3.3') step.setArgument('clothes_dryer_vented_flow_rate', Constants.Auto) step.setArgument('cooking_range_oven_fuel_type', HPXML::FuelTypeCoal) elsif ['base-appliances-dehumidifier.osw'].include? osw_file - step.setArgument('dehumidifier_present', true) + step.setArgument('dehumidifier_type', HPXML::DehumidifierTypePortable) elsif ['base-appliances-dehumidifier-50percent.osw'].include? osw_file step.setArgument('dehumidifier_fraction_dehumidification_load_served', 0.5) elsif ['base-appliances-dehumidifier-ief-portable.osw'].include? osw_file step.setArgument('dehumidifier_efficiency_type', 'IntegratedEnergyFactor') + step.setArgument('dehumidifier_efficiency', '1.5') elsif ['base-appliances-dehumidifier-ief-whole-home.osw'].include? osw_file step.setArgument('dehumidifier_type', HPXML::DehumidifierTypeWholeHome) elsif ['base-appliances-gas.osw'].include? osw_file step.setArgument('clothes_dryer_fuel_type', HPXML::FuelTypeNaturalGas) - step.setArgument('clothes_dryer_efficiency_cef', '3.3') - step.setArgument('clothes_dryer_control_type', HPXML::ClothesDryerControlTypeMoisture) + step.setArgument('clothes_dryer_efficiency', '3.3') step.setArgument('clothes_dryer_vented_flow_rate', Constants.Auto) step.setArgument('cooking_range_oven_fuel_type', HPXML::FuelTypeNaturalGas) elsif ['base-appliances-modified.osw'].include? osw_file step.setArgument('clothes_washer_efficiency_type', 'ModifiedEnergyFactor') - step.setArgument('clothes_washer_efficiency_mef', '1.65') + step.setArgument('clothes_washer_efficiency', '1.65') step.setArgument('clothes_dryer_efficiency_type', 'EnergyFactor') - step.setArgument('clothes_dryer_efficiency_ef', 4.29) - step.setArgument('clothes_dryer_control_type', HPXML::ClothesDryerControlTypeMoisture) + step.setArgument('clothes_dryer_efficiency', '4.29') step.setArgument('clothes_dryer_vented_flow_rate', '0.0') step.setArgument('dishwasher_efficiency_type', 'EnergyFactor') - step.setArgument('dishwasher_efficiency_ef', 0.7) + step.setArgument('dishwasher_efficiency', 0.7) step.setArgument('dishwasher_place_setting_capacity', '6') elsif ['base-appliances-none.osw'].include? osw_file - step.setArgument('clothes_washer_present', false) - step.setArgument('clothes_dryer_present', false) - step.setArgument('dishwasher_present', false) - step.setArgument('refrigerator_present', false) - step.setArgument('cooking_range_oven_present', false) + step.setArgument('clothes_washer_location', 'none') + step.setArgument('clothes_dryer_location', 'none') + step.setArgument('dishwasher_location', 'none') + step.setArgument('refrigerator_location', 'none') + step.setArgument('cooking_range_oven_location', 'none') elsif ['base-appliances-oil.osw'].include? osw_file step.setArgument('clothes_dryer_fuel_type', HPXML::FuelTypeOil) - step.setArgument('clothes_dryer_efficiency_cef', '3.3') - step.setArgument('clothes_dryer_control_type', HPXML::ClothesDryerControlTypeMoisture) + step.setArgument('clothes_dryer_efficiency', '3.3') step.setArgument('clothes_dryer_vented_flow_rate', Constants.Auto) step.setArgument('cooking_range_oven_fuel_type', HPXML::FuelTypeOil) elsif ['base-appliances-propane.osw'].include? osw_file step.setArgument('clothes_dryer_fuel_type', HPXML::FuelTypePropane) - step.setArgument('clothes_dryer_efficiency_cef', '3.3') - step.setArgument('clothes_dryer_control_type', HPXML::ClothesDryerControlTypeMoisture) + step.setArgument('clothes_dryer_efficiency', '3.3') step.setArgument('clothes_dryer_vented_flow_rate', Constants.Auto) step.setArgument('cooking_range_oven_fuel_type', HPXML::FuelTypePropane) elsif ['base-appliances-wood.osw'].include? osw_file step.setArgument('clothes_dryer_fuel_type', HPXML::FuelTypeWoodCord) - step.setArgument('clothes_dryer_efficiency_cef', '3.3') - step.setArgument('clothes_dryer_control_type', HPXML::ClothesDryerControlTypeMoisture) + step.setArgument('clothes_dryer_efficiency', '3.3') step.setArgument('clothes_dryer_vented_flow_rate', Constants.Auto) step.setArgument('cooking_range_oven_fuel_type', HPXML::FuelTypeWoodCord) - elsif ['base-atticroof-cathedral.osw'].include? osw_file - step.setArgument('geometry_attic_type', HPXML::AtticTypeConditioned) - step.setArgument('roof_assembly_r', 25.8) - step.setArgument('ducts_supply_location', HPXML::LocationLivingSpace) - step.setArgument('ducts_return_location', HPXML::LocationLivingSpace) - step.setArgument('ducts_supply_leakage_value', 0.0) - step.setArgument('ducts_return_leakage_value', 0.0) - elsif ['base-atticroof-conditioned.osw'].include? osw_file - step.setArgument('geometry_cfa', 3600.0) - step.setArgument('geometry_num_floors_above_grade', 2) - step.setArgument('geometry_attic_type', HPXML::AtticTypeConditioned) - step.setArgument('roof_assembly_r', 25.8) - step.setArgument('ducts_supply_location', HPXML::LocationLivingSpace) - step.setArgument('ducts_return_location', HPXML::LocationLivingSpace) - step.setArgument('ducts_supply_leakage_value', 0.0) - step.setArgument('ducts_return_leakage_value', 0.0) - step.setArgument('water_heater_location', HPXML::LocationBasementConditioned) - step.setArgument('clothes_washer_location', HPXML::LocationBasementConditioned) - step.setArgument('clothes_dryer_location', HPXML::LocationBasementConditioned) - step.setArgument('refrigerator_location', HPXML::LocationBasementConditioned) elsif ['base-atticroof-flat.osw'].include? osw_file step.setArgument('geometry_roof_type', 'flat') step.setArgument('roof_assembly_r', 25.8) @@ -807,7 +873,7 @@ def get_values(osw_file, step) step.setArgument('ducts_supply_location', HPXML::LocationBasementConditioned) step.setArgument('ducts_return_location', HPXML::LocationBasementConditioned) elsif ['base-atticroof-radiant-barrier.osw'].include? osw_file - step.setArgument('roof_radiant_barrier', 'true') + step.setArgument('roof_radiant_barrier', true) step.setArgument('roof_radiant_barrier_grade', '2') elsif ['base-atticroof-unvented-insulated-roof.osw'].include? osw_file step.setArgument('ceiling_assembly_r', 2.1) @@ -817,6 +883,80 @@ def get_values(osw_file, step) step.setArgument('water_heater_location', HPXML::LocationAtticVented) step.setArgument('ducts_supply_location', HPXML::LocationAtticVented) step.setArgument('ducts_return_location', HPXML::LocationAtticVented) + elsif ['base-bldgtype-single-family-attached.osw'].include? osw_file + step.setArgument('geometry_unit_type', HPXML::ResidentialTypeSFA) + step.setArgument('geometry_cfa', 1800.0) + step.setArgument('geometry_corridor_position', 'None') + step.setArgument('geometry_building_num_units', 3) + step.setArgument('geometry_horizontal_location', 'Left') + step.setArgument('window_front_wwr', 0.18) + step.setArgument('window_back_wwr', 0.18) + step.setArgument('window_left_wwr', 0.18) + step.setArgument('window_right_wwr', 0.18) + step.setArgument('window_area_front', 0) + step.setArgument('window_area_back', 0) + step.setArgument('window_area_left', 0) + step.setArgument('window_area_right', 0) + step.setArgument('plug_loads_other_annual_kwh', '1638.0') + elsif ['base-bldgtype-multifamily.osw'].include? osw_file + step.setArgument('geometry_unit_type', HPXML::ResidentialTypeApartment) + step.setArgument('geometry_cfa', 900.0) + step.setArgument('geometry_corridor_position', 'None') + step.setArgument('geometry_foundation_type', HPXML::FoundationTypeBasementUnconditioned) + step.setArgument('geometry_level', 'Middle') + step.setArgument('geometry_horizontal_location', 'Left') + step.setArgument('geometry_building_num_units', 50) + step.setArgument('geometry_building_num_bedrooms', 50 * 3) + step.setArgument('geometry_num_floors_above_grade', 5) + step.setArgument('window_front_wwr', 0.18) + step.setArgument('window_back_wwr', 0.18) + step.setArgument('window_left_wwr', 0.18) + step.setArgument('window_right_wwr', 0.18) + step.setArgument('window_area_front', 0) + step.setArgument('window_area_back', 0) + step.setArgument('window_area_left', 0) + step.setArgument('window_area_right', 0) + step.setArgument('ducts_supply_leakage_value', 0.0) + step.setArgument('ducts_return_leakage_value', 0.0) + step.setArgument('ducts_supply_location', HPXML::LocationLivingSpace) + step.setArgument('ducts_return_location', HPXML::LocationLivingSpace) + step.setArgument('ducts_supply_insulation_r', 0.0) + step.setArgument('ducts_return_insulation_r', 0.0) + step.setArgument('ducts_number_of_return_registers', '1') + step.setArgument('door_area', 20.0) + step.setArgument('plug_loads_other_annual_kwh', '819.0') + elsif ['base-bldgtype-multifamily-shared-mechvent.osw'].include? osw_file + step.setArgument('mech_vent_fan_type', HPXML::MechVentTypeSupply) + step.setArgument('mech_vent_flow_rate', 800) + step.setArgument('mech_vent_fan_power', 240) + step.setArgument('mech_vent_num_units_served', 10) + step.setArgument('shared_mech_vent_frac_recirculation', 0.5) + step.setArgument('mech_vent_fan_type_2', HPXML::MechVentTypeExhaust) + step.setArgument('mech_vent_flow_rate_2', 72) + step.setArgument('mech_vent_fan_power_2', 26) + elsif ['base-bldgtype-multifamily-shared-mechvent-preconditioning.osw'].include? osw_file + step.setArgument('shared_mech_vent_preheating_fuel', HPXML::FuelTypeNaturalGas) + step.setArgument('shared_mech_vent_preheating_efficiency', 0.92) + step.setArgument('shared_mech_vent_preheating_fraction_heat_load_served', 0.7) + step.setArgument('shared_mech_vent_precooling_fuel', HPXML::FuelTypeElectricity) + step.setArgument('shared_mech_vent_precooling_efficiency', 4.0) + step.setArgument('shared_mech_vent_precooling_fraction_cool_load_served', 0.8) + elsif ['base-bldgtype-multifamily-shared-pv.osw'].include? osw_file + step.setArgument('pv_system_num_units_served_1', 6) + step.setArgument('pv_system_location_1', HPXML::LocationGround) + step.setArgument('pv_system_module_type_1', HPXML::PVModuleTypeStandard) + step.setArgument('pv_system_tracking_1', HPXML::PVTrackingTypeFixed) + step.setArgument('pv_system_array_azimuth_1', 225) + step.setArgument('pv_system_array_tilt_1', '30') + step.setArgument('pv_system_max_power_output_1', 30000) + step.setArgument('pv_system_inverter_efficiency_1', 0.96) + step.setArgument('pv_system_system_losses_fraction_1', 0.14) + elsif ['base-bldgtype-multifamily-shared-water-heater.osw'].include? osw_file + step.setArgument('water_heater_fuel_type', HPXML::FuelTypeNaturalGas) + step.setArgument('water_heater_num_units_served', 6) + step.setArgument('water_heater_tank_volume', '120') + step.setArgument('water_heater_efficiency', 0.59) + step.setArgument('water_heater_recovery_efficiency', '0.76') elsif ['base-dhw-combi-tankless.osw'].include? osw_file step.setArgument('water_heater_type', HPXML::WaterHeaterTypeCombiTankless) step.setArgument('water_heater_tank_volume', Constants.Auto) @@ -846,7 +986,7 @@ def get_values(osw_file, step) step.setArgument('water_fixtures_sink_low_flow', true) elsif ['base-dhw-none.osw'].include? osw_file step.setArgument('water_heater_type', 'none') - step.setArgument('dishwasher_present', false) + step.setArgument('dishwasher_location', 'none') elsif ['base-dhw-recirc-demand.osw'].include? osw_file step.setArgument('dhw_distribution_system_type', HPXML::DHWDistTypeRecirc) step.setArgument('dhw_distribution_recirc_control_type', HPXML::DHWRecirControlTypeSensor) @@ -863,13 +1003,6 @@ def get_values(osw_file, step) elsif ['base-dhw-recirc-timer.osw'].include? osw_file step.setArgument('dhw_distribution_system_type', HPXML::DHWDistTypeRecirc) step.setArgument('dhw_distribution_recirc_control_type', HPXML::DHWRecirControlTypeTimer) - elsif ['base-bldgtype-multifamily-shared-water-heater.osw'].include? osw_file - step.setArgument('water_heater_fuel_type', HPXML::FuelTypeNaturalGas) - step.setArgument('water_heater_num_units_served', 6) - step.setArgument('water_heater_tank_volume', '120') - step.setArgument('water_heater_heating_capacity', '40000') - step.setArgument('water_heater_efficiency', 0.59) - step.setArgument('water_heater_recovery_efficiency', '0.76') elsif ['base-dhw-solar-direct-evacuated-tube.osw'].include? osw_file step.setArgument('solar_thermal_system_type', 'hot water') step.setArgument('solar_thermal_storage_volume', '60') @@ -905,11 +1038,9 @@ def get_values(osw_file, step) elsif ['base-dhw-tank-coal.osw'].include? osw_file step.setArgument('water_heater_fuel_type', HPXML::FuelTypeCoal) step.setArgument('water_heater_tank_volume', '50') - step.setArgument('water_heater_heating_capacity', '40000') step.setArgument('water_heater_efficiency', 0.59) elsif ['base-dhw-tank-elec-uef.osw'].include? osw_file step.setArgument('water_heater_tank_volume', '30') - step.setArgument('water_heater_heating_capacity', '15354') step.setArgument('water_heater_efficiency_type', 'UniformEnergyFactor') step.setArgument('water_heater_efficiency', 0.93) step.setArgument('water_heater_first_hour_rating', 46) @@ -917,11 +1048,9 @@ def get_values(osw_file, step) elsif ['base-dhw-tank-gas.osw'].include? osw_file step.setArgument('water_heater_fuel_type', HPXML::FuelTypeNaturalGas) step.setArgument('water_heater_tank_volume', '50') - step.setArgument('water_heater_heating_capacity', '40000') step.setArgument('water_heater_efficiency', 0.59) elsif ['base-dhw-tank-gas-uef.osw'].include? osw_file step.setArgument('water_heater_tank_volume', '30') - step.setArgument('water_heater_heating_capacity', '30000') step.setArgument('water_heater_efficiency_type', 'UniformEnergyFactor') step.setArgument('water_heater_efficiency', 0.59) step.setArgument('water_heater_first_hour_rating', 56) @@ -930,29 +1059,24 @@ def get_values(osw_file, step) step.setArgument('water_heater_fuel_type', HPXML::FuelTypeNaturalGas) step.setArgument('water_heater_location', HPXML::LocationOtherExterior) step.setArgument('water_heater_tank_volume', '50') - step.setArgument('water_heater_heating_capacity', '40000') step.setArgument('water_heater_efficiency', 0.59) elsif ['base-dhw-tank-heat-pump.osw'].include? osw_file step.setArgument('water_heater_type', HPXML::WaterHeaterTypeHeatPump) step.setArgument('water_heater_tank_volume', '80') - step.setArgument('water_heater_heating_capacity', Constants.Auto) step.setArgument('water_heater_efficiency', 2.3) elsif ['base-dhw-tank-heat-pump-outside.osw'].include? osw_file step.setArgument('water_heater_type', HPXML::WaterHeaterTypeHeatPump) step.setArgument('water_heater_location', HPXML::LocationOtherExterior) step.setArgument('water_heater_tank_volume', '80') - step.setArgument('water_heater_heating_capacity', Constants.Auto) step.setArgument('water_heater_efficiency', 2.3) elsif ['base-dhw-tank-heat-pump-uef.osw'].include? osw_file step.setArgument('water_heater_tank_volume', '50') - step.setArgument('water_heater_heating_capacity', '18767') step.setArgument('water_heater_efficiency_type', 'UniformEnergyFactor') step.setArgument('water_heater_efficiency', 3.75) step.setArgument('water_heater_first_hour_rating', 60) elsif ['base-dhw-tank-heat-pump-with-solar.osw'].include? osw_file step.setArgument('water_heater_type', HPXML::WaterHeaterTypeHeatPump) step.setArgument('water_heater_tank_volume', '80') - step.setArgument('water_heater_heating_capacity', Constants.Auto) step.setArgument('water_heater_efficiency', 2.3) step.setArgument('solar_thermal_system_type', 'hot water') step.setArgument('solar_thermal_collector_loop_type', HPXML::SolarThermalLoopTypeIndirect) @@ -963,7 +1087,6 @@ def get_values(osw_file, step) elsif ['base-dhw-tank-heat-pump-with-solar-fraction.osw'].include? osw_file step.setArgument('water_heater_type', HPXML::WaterHeaterTypeHeatPump) step.setArgument('water_heater_tank_volume', '80') - step.setArgument('water_heater_heating_capacity', Constants.Auto) step.setArgument('water_heater_efficiency', 2.3) step.setArgument('solar_thermal_system_type', 'hot water') step.setArgument('solar_thermal_solar_fraction', 0.65) @@ -1013,12 +1136,10 @@ def get_values(osw_file, step) elsif ['base-dhw-tank-oil.osw'].include? osw_file step.setArgument('water_heater_fuel_type', HPXML::FuelTypeOil) step.setArgument('water_heater_tank_volume', '50') - step.setArgument('water_heater_heating_capacity', '40000') step.setArgument('water_heater_efficiency', 0.59) elsif ['base-dhw-tank-wood.osw'].include? osw_file step.setArgument('water_heater_fuel_type', HPXML::FuelTypeWoodCord) step.setArgument('water_heater_tank_volume', '50') - step.setArgument('water_heater_heating_capacity', '40000') step.setArgument('water_heater_efficiency', 0.59) elsif ['base-enclosure-2stories.osw'].include? osw_file step.setArgument('geometry_cfa', 4050.0) @@ -1027,15 +1148,11 @@ def get_values(osw_file, step) step.setArgument('window_area_back', 216.0) step.setArgument('window_area_left', 144.0) step.setArgument('window_area_right', 144.0) + step.setArgument('ducts_number_of_return_registers', '3') step.setArgument('plug_loads_other_annual_kwh', '3685.5') elsif ['base-enclosure-2stories-garage.osw'].include? osw_file step.setArgument('geometry_cfa', 3250.0) - step.setArgument('geometry_num_floors_above_grade', 2) step.setArgument('geometry_garage_width', 20.0) - step.setArgument('window_area_front', 216.0) - step.setArgument('window_area_back', 216.0) - step.setArgument('window_area_left', 144.0) - step.setArgument('window_area_right', 144.0) step.setArgument('ducts_supply_surface_area', '112.5') step.setArgument('ducts_return_surface_area', '37.5') step.setArgument('plug_loads_other_annual_kwh', '2957.5') @@ -1043,13 +1160,11 @@ def get_values(osw_file, step) step.setArgument('geometry_num_bedrooms', 1) step.setArgument('geometry_num_bathrooms', '1') step.setArgument('geometry_num_occupants', '1') - step.setArgument('water_heater_heating_capacity', '18767') step.setArgument('plug_loads_television_annual_kwh', '482.0') elsif ['base-enclosure-beds-2.osw'].include? osw_file step.setArgument('geometry_num_bedrooms', 2) step.setArgument('geometry_num_bathrooms', '1') step.setArgument('geometry_num_occupants', '2') - step.setArgument('water_heater_heating_capacity', '18767') step.setArgument('plug_loads_television_annual_kwh', '551.0') elsif ['base-enclosure-beds-4.osw'].include? osw_file step.setArgument('geometry_num_bedrooms', 4) @@ -1082,7 +1197,7 @@ def get_values(osw_file, step) step.setArgument('air_leakage_units', HPXML::UnitsCFM) step.setArgument('air_leakage_value', 1080) elsif ['base-enclosure-infil-flue.osw'].include? osw_file - step.setArgument('heating_system_has_flue_or_chimney', true) + step.setArgument('geometry_has_flue_or_chimney', 'true') elsif ['base-enclosure-infil-natural-ach.osw'].include? osw_file step.setArgument('air_leakage_units', HPXML::UnitsACHNatural) step.setArgument('air_leakage_value', 0.67) @@ -1127,14 +1242,12 @@ def get_values(osw_file, step) step.setArgument('refrigerator_location', HPXML::LocationOtherNonFreezingSpace) step.setArgument('cooking_range_oven_location', HPXML::LocationOtherNonFreezingSpace) elsif ['base-enclosure-overhangs.osw'].include? osw_file + step.setArgument('overhangs_front_distance_to_top_of_window', 1.0) step.setArgument('overhangs_back_depth', 2.5) step.setArgument('overhangs_left_depth', 1.5) step.setArgument('overhangs_left_distance_to_top_of_window', 2.0) step.setArgument('overhangs_right_depth', 1.5) step.setArgument('overhangs_right_distance_to_top_of_window', 2.0) - elsif ['base-enclosure-skylights.osw'].include? osw_file - step.setArgument('skylight_area_front', 15) - step.setArgument('skylight_area_back', 15) elsif ['base-enclosure-windows-none.osw'].include? osw_file step.setArgument('window_area_front', 0) step.setArgument('window_area_back', 0) @@ -1143,7 +1256,9 @@ def get_values(osw_file, step) elsif ['base-foundation-ambient.osw'].include? osw_file step.setArgument('geometry_cfa', 1350.0) step.setArgument('geometry_foundation_type', HPXML::FoundationTypeAmbient) + step.setArgument('geometry_rim_joist_height', 0) step.setArgument('floor_assembly_r', 18.7) + step.setArgument('ducts_number_of_return_registers', '1') step.setArgument('plug_loads_other_annual_kwh', '1228.5') elsif ['base-foundation-conditioned-basement-slab-insulation.osw'].include? osw_file step.setArgument('slab_under_insulation_r', 10) @@ -1162,6 +1277,7 @@ def get_values(osw_file, step) step.setArgument('slab_carpet_r', '2.5') step.setArgument('ducts_supply_location', HPXML::LocationUnderSlab) step.setArgument('ducts_return_location', HPXML::LocationUnderSlab) + step.setArgument('ducts_number_of_return_registers', '1') step.setArgument('plug_loads_other_annual_kwh', '1228.5') elsif ['base-foundation-unconditioned-basement.osw'].include? osw_file step.setArgument('geometry_cfa', 1350.0) @@ -1169,8 +1285,10 @@ def get_values(osw_file, step) step.setArgument('floor_assembly_r', 18.7) step.setArgument('foundation_wall_insulation_r', 0) step.setArgument('foundation_wall_insulation_distance_to_bottom', 0) + step.setArgument('rim_joist_assembly_r', 4.0) step.setArgument('ducts_supply_location', HPXML::LocationBasementUnconditioned) step.setArgument('ducts_return_location', HPXML::LocationBasementUnconditioned) + step.setArgument('ducts_number_of_return_registers', '1') step.setArgument('water_heater_location', HPXML::LocationBasementUnconditioned) step.setArgument('clothes_washer_location', HPXML::LocationBasementUnconditioned) step.setArgument('clothes_dryer_location', HPXML::LocationBasementUnconditioned) @@ -1199,28 +1317,29 @@ def get_values(osw_file, step) step.setArgument('floor_assembly_r', 2.1) step.setArgument('foundation_wall_insulation_r', 8.9) step.setArgument('foundation_wall_insulation_distance_to_bottom', 4) + step.setArgument('rim_joist_assembly_r', 23.0) elsif ['base-foundation-unvented-crawlspace.osw'].include? osw_file step.setArgument('geometry_cfa', 1350.0) step.setArgument('geometry_foundation_type', HPXML::FoundationTypeCrawlspaceUnvented) step.setArgument('geometry_foundation_height', 4.0) - step.setArgument('geometry_foundation_height_above_grade', 1.0) step.setArgument('floor_assembly_r', 18.7) step.setArgument('foundation_wall_insulation_distance_to_bottom', 4.0) step.setArgument('slab_carpet_r', '2.5') step.setArgument('ducts_supply_location', HPXML::LocationCrawlspaceUnvented) step.setArgument('ducts_return_location', HPXML::LocationCrawlspaceUnvented) + step.setArgument('ducts_number_of_return_registers', '1') step.setArgument('water_heater_location', HPXML::LocationCrawlspaceUnvented) step.setArgument('plug_loads_other_annual_kwh', '1228.5') elsif ['base-foundation-vented-crawlspace.osw'].include? osw_file step.setArgument('geometry_cfa', 1350.0) step.setArgument('geometry_foundation_type', HPXML::FoundationTypeCrawlspaceVented) step.setArgument('geometry_foundation_height', 4.0) - step.setArgument('geometry_foundation_height_above_grade', 1.0) step.setArgument('floor_assembly_r', 18.7) step.setArgument('foundation_wall_insulation_distance_to_bottom', 4.0) step.setArgument('slab_carpet_r', '2.5') step.setArgument('ducts_supply_location', HPXML::LocationCrawlspaceVented) step.setArgument('ducts_return_location', HPXML::LocationCrawlspaceVented) + step.setArgument('ducts_number_of_return_registers', '1') step.setArgument('water_heater_location', HPXML::LocationCrawlspaceVented) step.setArgument('plug_loads_other_annual_kwh', '1228.5') elsif ['base-foundation-walkout-basement.osw'].include? osw_file @@ -1231,29 +1350,36 @@ def get_values(osw_file, step) step.setArgument('cooling_system_type', 'none') step.setArgument('heat_pump_type', HPXML::HVACTypeHeatPumpAirToAir) step.setArgument('heat_pump_heating_capacity', '42000.0') - step.setArgument('heat_pump_heating_capacity_17F', '26460.0') + step.setArgument('heat_pump_heating_capacity_17_f', '26460.0') step.setArgument('heat_pump_backup_fuel', HPXML::FuelTypeElectricity) - step.setArgument('heat_pump_fan_power_watts_per_cfm', 0.45) + elsif ['base-hvac-air-to-air-heat-pump-1-speed-cooling-only.osw'].include? osw_file + step.setArgument('heat_pump_heating_capacity', '0.0') + step.setArgument('heat_pump_heating_capacity_17_f', '0.0') + step.setArgument('heat_pump_fraction_heat_load_served', 0) + step.setArgument('heat_pump_backup_fuel', 'none') + elsif ['base-hvac-air-to-air-heat-pump-1-speed-heating-only.osw'].include? osw_file + step.setArgument('heat_pump_cooling_capacity', '0.0') + step.setArgument('heat_pump_fraction_cool_load_served', 0) elsif ['base-hvac-air-to-air-heat-pump-2-speed.osw'].include? osw_file step.setArgument('heating_system_type', 'none') step.setArgument('cooling_system_type', 'none') step.setArgument('heat_pump_type', HPXML::HVACTypeHeatPumpAirToAir) - step.setArgument('heat_pump_heating_efficiency_hspf', 9.3) + step.setArgument('heat_pump_heating_efficiency', 9.3) step.setArgument('heat_pump_cooling_compressor_type', HPXML::HVACCompressorTypeTwoStage) step.setArgument('heat_pump_heating_capacity', '42000.0') - step.setArgument('heat_pump_heating_capacity_17F', '24780.0') - step.setArgument('heat_pump_cooling_efficiency_seer', 18.0) + step.setArgument('heat_pump_heating_capacity_17_f', '24780.0') + step.setArgument('heat_pump_cooling_efficiency', 18.0) step.setArgument('heat_pump_backup_fuel', HPXML::FuelTypeElectricity) elsif ['base-hvac-air-to-air-heat-pump-var-speed.osw'].include? osw_file step.setArgument('heating_system_type', 'none') step.setArgument('cooling_system_type', 'none') step.setArgument('heat_pump_type', HPXML::HVACTypeHeatPumpAirToAir) - step.setArgument('heat_pump_heating_efficiency_hspf', 10.0) + step.setArgument('heat_pump_heating_efficiency', 10.0) step.setArgument('heat_pump_cooling_compressor_type', HPXML::HVACCompressorTypeVariableSpeed) step.setArgument('heat_pump_cooling_sensible_heat_fraction', 0.78) step.setArgument('heat_pump_heating_capacity', '42000.0') - step.setArgument('heat_pump_heating_capacity_17F', '26880.0') - step.setArgument('heat_pump_cooling_efficiency_seer', 22.0) + step.setArgument('heat_pump_heating_capacity_17_f', '26880.0') + step.setArgument('heat_pump_cooling_efficiency', 22.0) step.setArgument('heat_pump_backup_fuel', HPXML::FuelTypeElectricity) elsif ['base-hvac-boiler-coal-only.osw'].include? osw_file step.setArgument('heating_system_type', HPXML::HVACTypeBoiler) @@ -1266,11 +1392,8 @@ def get_values(osw_file, step) step.setArgument('cooling_system_type', 'none') elsif ['base-hvac-boiler-gas-central-ac-1-speed.osw'].include? osw_file step.setArgument('heating_system_type', HPXML::HVACTypeBoiler) - step.setArgument('heating_system_electric_auxiliary_energy', 200.0) - step.setArgument('ducts_number_of_return_registers', '3') elsif ['base-hvac-boiler-gas-only.osw'].include? osw_file step.setArgument('heating_system_type', HPXML::HVACTypeBoiler) - step.setArgument('heating_system_electric_auxiliary_energy', 200.0) step.setArgument('cooling_system_type', 'none') elsif ['base-hvac-boiler-oil-only.osw'].include? osw_file step.setArgument('heating_system_type', HPXML::HVACTypeBoiler) @@ -1286,29 +1409,27 @@ def get_values(osw_file, step) step.setArgument('cooling_system_type', 'none') elsif ['base-hvac-central-ac-only-1-speed.osw'].include? osw_file step.setArgument('heating_system_type', 'none') - step.setArgument('cooling_system_fan_power_watts_per_cfm', 0.45) elsif ['base-hvac-central-ac-only-2-speed.osw'].include? osw_file step.setArgument('heating_system_type', 'none') - step.setArgument('cooling_system_cooling_efficiency_seer', 18.0) + step.setArgument('cooling_system_cooling_efficiency', 18.0) step.setArgument('cooling_system_cooling_compressor_type', HPXML::HVACCompressorTypeTwoStage) elsif ['base-hvac-central-ac-only-var-speed.osw'].include? osw_file step.setArgument('heating_system_type', 'none') - step.setArgument('cooling_system_cooling_efficiency_seer', 24.0) + step.setArgument('cooling_system_cooling_efficiency', 24.0) step.setArgument('cooling_system_cooling_compressor_type', HPXML::HVACCompressorTypeVariableSpeed) step.setArgument('cooling_system_cooling_sensible_heat_fraction', 0.78) elsif ['base-hvac-central-ac-plus-air-to-air-heat-pump-heating.osw'].include? osw_file step.setArgument('heat_pump_type', HPXML::HVACTypeHeatPumpAirToAir) - step.setArgument('heat_pump_heating_efficiency_hspf', 7.7) + step.setArgument('heat_pump_heating_efficiency', 7.7) step.setArgument('heat_pump_heating_capacity', '42000.0') - step.setArgument('heat_pump_heating_capacity_17F', '26460.0') + step.setArgument('heat_pump_heating_capacity_17_f', '26460.0') step.setArgument('heat_pump_fraction_cool_load_served', 0) step.setArgument('heat_pump_backup_fuel', HPXML::FuelTypeElectricity) - step.setArgument('heat_pump_fan_power_watts_per_cfm', 0.45) elsif ['base-hvac-dual-fuel-air-to-air-heat-pump-1-speed.osw'].include? osw_file step.setArgument('cooling_system_type', 'none') - step.setArgument('heat_pump_heating_efficiency_hspf', 7.7) + step.setArgument('heat_pump_heating_efficiency', 7.7) step.setArgument('heat_pump_heating_capacity', '42000.0') - step.setArgument('heat_pump_heating_capacity_17F', '26460.0') + step.setArgument('heat_pump_heating_capacity_17_f', '26460.0') step.setArgument('heat_pump_backup_fuel', HPXML::FuelTypeNaturalGas) step.setArgument('heat_pump_backup_heating_efficiency', 0.95) step.setArgument('heat_pump_backup_heating_capacity', '36000.0') @@ -1331,7 +1452,6 @@ def get_values(osw_file, step) step.setArgument('heat_pump_backup_heating_efficiency', 0.95) step.setArgument('heat_pump_backup_heating_capacity', '36000.0') step.setArgument('heat_pump_backup_heating_switchover_temp', 25) - step.setArgument('heat_pump_fan_power_watts_per_cfm', 0.2) elsif ['base-hvac-ducts-leakage-percent.osw'].include? osw_file step.setArgument('ducts_supply_leakage_units', HPXML::UnitsPercent) step.setArgument('ducts_return_leakage_units', HPXML::UnitsPercent) @@ -1351,28 +1471,28 @@ def get_values(osw_file, step) step.setArgument('cooling_system_type', HPXML::HVACTypeEvaporativeCooler) step.removeArgument('cooling_system_cooling_compressor_type') step.removeArgument('cooling_system_cooling_sensible_heat_fraction') - step.setArgument('cooling_system_fan_power_watts_per_cfm', 0.3) elsif ['base-hvac-evap-cooler-only-ducted.osw'].include? osw_file step.setArgument('heating_system_type', 'none') step.setArgument('cooling_system_type', HPXML::HVACTypeEvaporativeCooler) step.removeArgument('cooling_system_cooling_compressor_type') step.removeArgument('cooling_system_cooling_sensible_heat_fraction') step.setArgument('cooling_system_is_ducted', true) + step.setArgument('ducts_return_leakage_value', 0.0) elsif ['base-hvac-fireplace-wood-only.osw'].include? osw_file step.setArgument('heating_system_type', HPXML::HVACTypeFireplace) step.setArgument('heating_system_fuel', HPXML::FuelTypeWoodCord) step.setArgument('heating_system_heating_efficiency', 0.8) - step.setArgument('heating_system_fan_power_watts', 0.0) step.setArgument('cooling_system_type', 'none') elsif ['base-hvac-fixed-heater-gas-only.osw'].include? osw_file step.setArgument('heating_system_type', HPXML::HVACTypeFixedHeater) step.setArgument('heating_system_heating_efficiency', 1.0) - step.setArgument('heating_system_fan_power_watts', 0.0) elsif ['base-hvac-floor-furnace-propane-only.osw'].include? osw_file step.setArgument('heating_system_type', HPXML::HVACTypeFloorFurnace) step.setArgument('heating_system_fuel', HPXML::FuelTypePropane) step.setArgument('heating_system_heating_efficiency', 0.8) - step.setArgument('heating_system_fan_power_watts', 0.0) + step.setArgument('cooling_system_type', 'none') + elsif ['base-hvac-furnace-coal-only.osw'].include? osw_file + step.setArgument('heating_system_fuel', HPXML::FuelTypeCoal) step.setArgument('cooling_system_type', 'none') elsif ['base-hvac-furnace-elec-central-ac-1-speed.osw'].include? osw_file step.setArgument('heating_system_fuel', HPXML::FuelTypeElectricity) @@ -1382,17 +1502,18 @@ def get_values(osw_file, step) step.setArgument('heating_system_heating_efficiency', 1.0) step.setArgument('cooling_system_type', 'none') elsif ['base-hvac-furnace-gas-central-ac-2-speed.osw'].include? osw_file - step.setArgument('cooling_system_cooling_efficiency_seer', 18.0) + step.setArgument('cooling_system_cooling_efficiency', 18.0) step.setArgument('cooling_system_cooling_compressor_type', HPXML::HVACCompressorTypeTwoStage) elsif ['base-hvac-furnace-gas-central-ac-var-speed.osw'].include? osw_file - step.setArgument('cooling_system_cooling_efficiency_seer', 24.0) + step.setArgument('cooling_system_cooling_efficiency', 24.0) step.setArgument('cooling_system_cooling_compressor_type', HPXML::HVACCompressorTypeVariableSpeed) step.setArgument('cooling_system_cooling_sensible_heat_fraction', 0.78) elsif ['base-hvac-furnace-gas-only.osw'].include? osw_file - step.setArgument('heating_system_fan_power_watts_per_cfm', 0.45) step.setArgument('cooling_system_type', 'none') elsif ['base-hvac-furnace-gas-room-ac.osw'].include? osw_file step.setArgument('cooling_system_type', HPXML::HVACTypeRoomAirConditioner) + step.setArgument('cooling_system_cooling_efficiency_type', HPXML::UnitsEER) + step.setArgument('cooling_system_cooling_efficiency', 8.5) step.removeArgument('cooling_system_cooling_compressor_type') step.setArgument('cooling_system_cooling_sensible_heat_fraction', 0.65) elsif ['base-hvac-furnace-oil-only.osw'].include? osw_file @@ -1407,10 +1528,9 @@ def get_values(osw_file, step) elsif ['base-hvac-mini-split-air-conditioner-only-ducted.osw'].include? osw_file step.setArgument('heating_system_type', 'none') step.setArgument('cooling_system_type', HPXML::HVACTypeMiniSplitAirConditioner) - step.setArgument('cooling_system_cooling_efficiency_seer', 19.0) + step.setArgument('cooling_system_cooling_efficiency', 19.0) step.removeArgument('cooling_system_cooling_compressor_type') step.setArgument('cooling_system_is_ducted', true) - step.setArgument('cooling_system_fan_power_watts_per_cfm', 0.2) step.setArgument('ducts_supply_leakage_value', 15.0) step.setArgument('ducts_return_leakage_value', 5.0) step.setArgument('ducts_supply_insulation_r', 0.0) @@ -1422,25 +1542,72 @@ def get_values(osw_file, step) step.setArgument('heating_system_type', 'none') step.setArgument('cooling_system_type', 'none') step.setArgument('heat_pump_type', HPXML::HVACTypeHeatPumpGroundToAir) - step.setArgument('heat_pump_heating_efficiency_cop', 3.6) - step.setArgument('heat_pump_cooling_efficiency_eer', 16.6) + step.setArgument('heat_pump_heating_efficiency_type', HPXML::UnitsCOP) + step.setArgument('heat_pump_heating_efficiency', 3.6) + step.setArgument('heat_pump_cooling_efficiency_type', HPXML::UnitsEER) + step.setArgument('heat_pump_cooling_efficiency', 16.6) step.removeArgument('heat_pump_cooling_compressor_type') step.setArgument('heat_pump_heating_capacity', '42000.0') step.setArgument('heat_pump_backup_fuel', HPXML::FuelTypeElectricity) - step.setArgument('heat_pump_pump_power_watts_per_ton', 30.0) - step.setArgument('heat_pump_fan_power_watts_per_cfm', 0.45) + elsif ['base-hvac-ground-to-air-heat-pump-cooling-only.osw'].include? osw_file + step.setArgument('heat_pump_heating_capacity', '0.0') + step.setArgument('heat_pump_fraction_heat_load_served', 0) + step.setArgument('heat_pump_backup_fuel', 'none') + elsif ['base-hvac-ground-to-air-heat-pump-heating-only.osw'].include? osw_file + step.setArgument('heat_pump_cooling_capacity', '0.0') + step.setArgument('heat_pump_fraction_cool_load_served', 0) + elsif ['base-hvac-install-quality-none-furnace-gas-central-ac-1-speed.osw'].include? osw_file + step.setArgument('heating_system_airflow_defect_ratio', 0.0) + step.setArgument('cooling_system_airflow_defect_ratio', 0.0) + step.setArgument('cooling_system_charge_defect_ratio', 0.0) + elsif ['base-hvac-install-quality-airflow-defect-furnace-gas-central-ac-1-speed.osw'].include? osw_file + step.setArgument('heating_system_airflow_defect_ratio', -0.25) + step.setArgument('cooling_system_airflow_defect_ratio', -0.25) + elsif ['base-hvac-install-quality-charge-defect-furnace-gas-central-ac-1-speed.osw'].include? osw_file + step.setArgument('cooling_system_charge_defect_ratio', -0.25) + elsif ['base-hvac-install-quality-all-air-to-air-heat-pump-1-speed.osw'].include? osw_file + step.setArgument('heat_pump_airflow_defect_ratio', -0.25) + step.setArgument('heat_pump_charge_defect_ratio', -0.25) + elsif ['base-hvac-install-quality-all-air-to-air-heat-pump-2-speed.osw'].include? osw_file + step.setArgument('heat_pump_airflow_defect_ratio', -0.25) + step.setArgument('heat_pump_charge_defect_ratio', -0.25) + elsif ['base-hvac-install-quality-all-air-to-air-heat-pump-var-speed.osw'].include? osw_file + step.setArgument('heat_pump_airflow_defect_ratio', -0.25) + step.setArgument('heat_pump_charge_defect_ratio', -0.25) + elsif ['base-hvac-install-quality-all-furnace-gas-central-ac-1-speed.osw'].include? osw_file + step.setArgument('heating_system_airflow_defect_ratio', -0.25) + step.setArgument('cooling_system_airflow_defect_ratio', -0.25) + step.setArgument('cooling_system_charge_defect_ratio', -0.25) + elsif ['base-hvac-install-quality-all-furnace-gas-central-ac-2-speed.osw'].include? osw_file + step.setArgument('heating_system_airflow_defect_ratio', -0.25) + step.setArgument('cooling_system_airflow_defect_ratio', -0.25) + step.setArgument('cooling_system_charge_defect_ratio', -0.25) + elsif ['base-hvac-install-quality-all-furnace-gas-central-ac-var-speed.osw'].include? osw_file + step.setArgument('heating_system_airflow_defect_ratio', -0.25) + step.setArgument('cooling_system_airflow_defect_ratio', -0.25) + step.setArgument('cooling_system_charge_defect_ratio', -0.25) + elsif ['base-hvac-install-quality-all-furnace-gas-only.osw'].include? osw_file + step.setArgument('heating_system_airflow_defect_ratio', -0.25) + elsif ['base-hvac-install-quality-all-ground-to-air-heat-pump.osw'].include? osw_file + step.setArgument('heat_pump_airflow_defect_ratio', -0.25) + step.setArgument('heat_pump_charge_defect_ratio', 0.0) + elsif ['base-hvac-install-quality-all-mini-split-heat-pump-ducted.osw'].include? osw_file + step.setArgument('heat_pump_airflow_defect_ratio', -0.25) + step.setArgument('heat_pump_charge_defect_ratio', -0.25) + elsif ['base-hvac-install-quality-all-mini-split-air-conditioner-only-ducted.osw'].include? osw_file + step.setArgument('cooling_system_airflow_defect_ratio', -0.25) + step.setArgument('cooling_system_charge_defect_ratio', -0.25) elsif ['base-hvac-mini-split-heat-pump-ducted.osw'].include? osw_file step.setArgument('heating_system_type', 'none') step.setArgument('cooling_system_type', 'none') step.setArgument('heat_pump_type', HPXML::HVACTypeHeatPumpMiniSplit) step.setArgument('heat_pump_heating_capacity', '52000.0') - step.setArgument('heat_pump_heating_capacity_17F', '29500.0') - step.setArgument('heat_pump_heating_efficiency_hspf', 10.0) - step.setArgument('heat_pump_cooling_efficiency_seer', 19.0) + step.setArgument('heat_pump_heating_capacity_17_f', '29500.0') + step.setArgument('heat_pump_heating_efficiency', 10.0) + step.setArgument('heat_pump_cooling_efficiency', 19.0) step.removeArgument('heat_pump_cooling_compressor_type') step.setArgument('heat_pump_backup_fuel', HPXML::FuelTypeElectricity) - step.setArgument('heat_pump_mini_split_is_ducted', true) - step.setArgument('heat_pump_fan_power_watts_per_cfm', 0.2) + step.setArgument('heat_pump_is_ducted', true) step.setArgument('ducts_supply_leakage_value', 15.0) step.setArgument('ducts_return_leakage_value', 5.0) step.setArgument('ducts_supply_insulation_r', 0.0) @@ -1448,52 +1615,56 @@ def get_values(osw_file, step) step.setArgument('ducts_return_surface_area', '10.0') elsif ['base-hvac-mini-split-heat-pump-ducted-cooling-only.osw'].include? osw_file step.setArgument('heat_pump_heating_capacity', '0') - step.setArgument('heat_pump_heating_capacity_17F', '0') + step.setArgument('heat_pump_heating_capacity_17_f', '0') step.setArgument('heat_pump_fraction_heat_load_served', 0) step.setArgument('heat_pump_backup_fuel', 'none') - step.setArgument('heat_pump_fan_power_watts_per_cfm', 0.2) elsif ['base-hvac-mini-split-heat-pump-ducted-heating-only.osw'].include? osw_file step.setArgument('heat_pump_cooling_capacity', '0') step.setArgument('heat_pump_fraction_cool_load_served', 0) step.setArgument('heat_pump_backup_fuel', HPXML::FuelTypeElectricity) - step.setArgument('heat_pump_fan_power_watts_per_cfm', 0.2) elsif ['base-hvac-mini-split-heat-pump-ductless.osw'].include? osw_file step.setArgument('heat_pump_backup_fuel', 'none') - step.setArgument('heat_pump_mini_split_is_ducted', false) + step.setArgument('heat_pump_is_ducted', false) elsif ['base-hvac-none.osw'].include? osw_file step.setArgument('heating_system_type', 'none') step.setArgument('cooling_system_type', 'none') elsif ['base-hvac-portable-heater-gas-only.osw'].include? osw_file step.setArgument('heating_system_type', HPXML::HVACTypePortableHeater) step.setArgument('heating_system_heating_efficiency', 1.0) - step.setArgument('heating_system_fan_power_watts', 0.0) + elsif ['base-hvac-programmable-thermostat-detailed.osw'].include? osw_file + step.setArgument('setpoint_heating_weekday', '64, 64, 64, 64, 64, 64, 64, 74, 74, 66, 66, 66, 66, 66, 66, 66, 66, 68, 68, 68, 68, 68, 64, 64') + step.setArgument('setpoint_heating_weekend', '74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74') + step.setArgument('setpoint_cooling_weekday', '82, 82, 82, 82, 82, 82, 82, 72, 72, 80, 80, 80, 80, 80, 80, 80, 80, 78, 78, 78, 78, 78, 82, 82') + step.setArgument('setpoint_cooling_weekend', '78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78') elsif ['base-hvac-room-ac-only.osw'].include? osw_file step.setArgument('heating_system_type', 'none') step.setArgument('cooling_system_type', HPXML::HVACTypeRoomAirConditioner) + step.setArgument('cooling_system_cooling_efficiency_type', HPXML::UnitsEER) + step.setArgument('cooling_system_cooling_efficiency', 8.5) step.removeArgument('cooling_system_cooling_compressor_type') step.setArgument('cooling_system_cooling_sensible_heat_fraction', 0.65) elsif ['base-hvac-room-ac-only-33percent.osw'].include? osw_file step.setArgument('heating_system_type', 'none') step.setArgument('cooling_system_type', HPXML::HVACTypeRoomAirConditioner) + step.setArgument('cooling_system_cooling_efficiency_type', HPXML::UnitsEER) + step.setArgument('cooling_system_cooling_efficiency', 8.5) step.removeArgument('cooling_system_cooling_compressor_type') step.setArgument('cooling_system_cooling_sensible_heat_fraction', 0.65) step.setArgument('cooling_system_fraction_cool_load_served', 0.33) elsif ['base-hvac-setpoints.osw'].include? osw_file - step.setArgument('setpoint_heating_weekday_temp', 60.0) - step.setArgument('setpoint_heating_weekend_temp', 60.0) - step.setArgument('setpoint_cooling_weekday_temp', 80.0) - step.setArgument('setpoint_cooling_weekend_temp', 80.0) + step.setArgument('setpoint_heating_weekday', '60') + step.setArgument('setpoint_heating_weekend', '60') + step.setArgument('setpoint_cooling_weekday', '80') + step.setArgument('setpoint_cooling_weekend', '80') elsif ['base-hvac-stove-oil-only.osw'].include? osw_file step.setArgument('heating_system_type', HPXML::HVACTypeStove) step.setArgument('heating_system_fuel', HPXML::FuelTypeOil) step.setArgument('heating_system_heating_efficiency', 0.8) - step.setArgument('heating_system_fan_power_watts', 40.0) step.setArgument('cooling_system_type', 'none') elsif ['base-hvac-stove-wood-pellets-only.osw'].include? osw_file step.setArgument('heating_system_type', HPXML::HVACTypeStove) step.setArgument('heating_system_fuel', HPXML::FuelTypeWoodPellets) step.setArgument('heating_system_heating_efficiency', 0.8) - step.setArgument('heating_system_fan_power_watts', 40.0) step.setArgument('cooling_system_type', 'none') elsif ['base-hvac-undersized.osw'].include? osw_file step.setArgument('heating_system_heating_capacity', '6400.0') @@ -1504,7 +1675,6 @@ def get_values(osw_file, step) step.setArgument('heating_system_type', HPXML::HVACTypeWallFurnace) step.setArgument('heating_system_fuel', HPXML::FuelTypeElectricity) step.setArgument('heating_system_heating_efficiency', 1.0) - step.setArgument('heating_system_fan_power_watts', 0.0) step.setArgument('cooling_system_type', 'none') elsif ['base-lighting-ceiling-fans.osw'].include? osw_file step.setArgument('ceiling_fan_present', true) @@ -1526,24 +1696,30 @@ def get_values(osw_file, step) step.setArgument('weather_station_epw_filepath', 'USA_TX_Dallas-Fort.Worth.Intl.AP.722590_TMY3.epw') elsif ['base-location-duluth-mn.osw'].include? osw_file step.setArgument('weather_station_epw_filepath', 'USA_MN_Duluth.Intl.AP.727450_TMY3.epw') + elsif ['base-location-helena-mt.osw'].include? osw_file + step.setArgument('weather_station_epw_filepath', 'USA_MT_Helena.Rgnl.AP.727720_TMY3.epw') + elsif ['base-location-honolulu-hi.osw'].include? osw_file + step.setArgument('weather_station_epw_filepath', 'USA_HI_Honolulu.Intl.AP.911820_TMY3.epw') elsif ['base-location-miami-fl.osw'].include? osw_file step.setArgument('weather_station_epw_filepath', 'USA_FL_Miami.Intl.AP.722020_TMY3.epw') + elsif ['base-location-phoenix-az.osw'].include? osw_file + step.setArgument('weather_station_epw_filepath', 'USA_AZ_Phoenix-Sky.Harbor.Intl.AP.722780_TMY3.epw') + elsif ['base-location-portland-or.osw'].include? osw_file + step.setArgument('weather_station_epw_filepath', 'USA_OR_Portland.Intl.AP.726980_TMY3.epw') elsif ['base-mechvent-balanced.osw'].include? osw_file step.setArgument('mech_vent_fan_type', HPXML::MechVentTypeBalanced) step.setArgument('mech_vent_fan_power', 60) elsif ['base-mechvent-bath-kitchen-fans.osw'].include? osw_file - step.setArgument('kitchen_fans_present', true) - step.setArgument('kitchen_fans_quantity', 1) - step.setArgument('kitchen_fans_flow_rate', 100.0) - step.setArgument('kitchen_fans_hours_in_operation', 1.5) - step.setArgument('kitchen_fans_power', 30.0) - step.setArgument('kitchen_fans_start_hour', 18) - step.setArgument('bathroom_fans_present', true) - step.setArgument('bathroom_fans_quantity', 2) - step.setArgument('bathroom_fans_flow_rate', 50.0) - step.setArgument('bathroom_fans_hours_in_operation', 1.5) - step.setArgument('bathroom_fans_power', 15.0) - step.setArgument('bathroom_fans_start_hour', 7) + step.setArgument('kitchen_fans_quantity', '1') + step.setArgument('kitchen_fans_flow_rate', '100.0') + step.setArgument('kitchen_fans_hours_in_operation', '1.5') + step.setArgument('kitchen_fans_power', '30.0') + step.setArgument('kitchen_fans_start_hour', '18') + step.setArgument('bathroom_fans_quantity', '2') + step.setArgument('bathroom_fans_flow_rate', '50.0') + step.setArgument('bathroom_fans_hours_in_operation', '1.5') + step.setArgument('bathroom_fans_power', '15.0') + step.setArgument('bathroom_fans_start_hour', '7') elsif ['base-mechvent-cfis.osw'].include? osw_file step.setArgument('mech_vent_fan_type', HPXML::MechVentTypeCFIS) step.setArgument('mech_vent_flow_rate', 330) @@ -1559,37 +1735,22 @@ def get_values(osw_file, step) step.setArgument('mech_vent_fan_power', 60) elsif ['base-mechvent-erv-atre-asre.osw'].include? osw_file step.setArgument('mech_vent_fan_type', HPXML::MechVentTypeERV) - step.setArgument('mech_vent_total_recovery_efficiency_type', 'Adjusted') + step.setArgument('mech_vent_recovery_efficiency_type', 'Adjusted') step.setArgument('mech_vent_total_recovery_efficiency', 0.526) - step.setArgument('mech_vent_sensible_recovery_efficiency_type', 'Adjusted') step.setArgument('mech_vent_sensible_recovery_efficiency', 0.79) step.setArgument('mech_vent_fan_power', 60) elsif ['base-mechvent-exhaust.osw'].include? osw_file step.setArgument('mech_vent_fan_type', HPXML::MechVentTypeExhaust) + elsif ['base-mechvent-exhaust-rated-flow-rate.osw'].include? osw_file + step.setArgument('mech_vent_fan_type', HPXML::MechVentTypeExhaust) elsif ['base-mechvent-hrv.osw'].include? osw_file step.setArgument('mech_vent_fan_type', HPXML::MechVentTypeHRV) step.setArgument('mech_vent_fan_power', 60) elsif ['base-mechvent-hrv-asre.osw'].include? osw_file step.setArgument('mech_vent_fan_type', HPXML::MechVentTypeHRV) - step.setArgument('mech_vent_sensible_recovery_efficiency_type', 'Adjusted') + step.setArgument('mech_vent_recovery_efficiency_type', 'Adjusted') step.setArgument('mech_vent_sensible_recovery_efficiency', 0.79) step.setArgument('mech_vent_fan_power', 60) - elsif ['base-bldgtype-multifamily-shared-mechvent.osw'].include? osw_file - step.setArgument('mech_vent_fan_type', HPXML::MechVentTypeSupply) - step.setArgument('mech_vent_flow_rate', 800) - step.setArgument('mech_vent_fan_power', 240) - step.setArgument('mech_vent_num_units_served', 10) - step.setArgument('shared_mech_vent_frac_recirculation', 0.5) - step.setArgument('mech_vent_fan_type_2', HPXML::MechVentTypeExhaust) - step.setArgument('mech_vent_flow_rate_2', 72) - step.setArgument('mech_vent_fan_power_2', 26) - elsif ['base-bldgtype-multifamily-shared-mechvent-preconditioning.osw'].include? osw_file - step.setArgument('shared_mech_vent_preheating_fuel', HPXML::FuelTypeNaturalGas) - step.setArgument('shared_mech_vent_preheating_efficiency', 0.92) - step.setArgument('shared_mech_vent_preheating_fraction_heat_load_served', 0.7) - step.setArgument('shared_mech_vent_precooling_fuel', HPXML::FuelTypeElectricity) - step.setArgument('shared_mech_vent_precooling_efficiency', 4.0) - step.setArgument('shared_mech_vent_precooling_fraction_cool_load_served', 0.8) elsif ['base-mechvent-supply.osw'].include? osw_file step.setArgument('mech_vent_fan_type', HPXML::MechVentTypeSupply) elsif ['base-mechvent-whole-house-fan.osw'].include? osw_file @@ -1605,11 +1766,9 @@ def get_values(osw_file, step) step.removeArgument('roof_material_type') step.setArgument('roof_color', HPXML::ColorLight) step.removeArgument('roof_material_type') - step.setArgument('roof_emittance', Constants.Auto) - step.setArgument('roof_radiant_barrier', Constants.Auto) + step.setArgument('roof_radiant_barrier', false) step.removeArgument('wall_siding_type') step.setArgument('wall_color', HPXML::ColorMedium) - step.setArgument('wall_emittance', Constants.Auto) step.removeArgument('window_fraction_operable') step.removeArgument('window_interior_shading_winter') step.removeArgument('window_interior_shading_summer') @@ -1619,11 +1778,10 @@ def get_values(osw_file, step) step.setArgument('ducts_return_location', Constants.Auto) step.setArgument('ducts_supply_surface_area', Constants.Auto) step.setArgument('ducts_return_surface_area', Constants.Auto) - step.setArgument('kitchen_fans_present', true) - step.setArgument('bathroom_fans_present', true) + step.setArgument('kitchen_fans_quantity', Constants.Auto) + step.setArgument('bathroom_fans_quantity', Constants.Auto) step.setArgument('water_heater_location', Constants.Auto) step.setArgument('water_heater_tank_volume', Constants.Auto) - step.setArgument('water_heater_heating_capacity', Constants.Auto) step.setArgument('water_heater_setpoint_temperature', Constants.Auto) step.setArgument('dhw_distribution_standard_piping_length', Constants.Auto) step.setArgument('dhw_distribution_pipe_r', Constants.Auto) @@ -1635,8 +1793,7 @@ def get_values(osw_file, step) step.removeArgument('pv_system_inverter_efficiency_1') step.removeArgument('pv_system_system_losses_fraction_1') step.setArgument('clothes_washer_location', Constants.Auto) - step.setArgument('clothes_washer_efficiency_mef', Constants.Auto) - step.setArgument('clothes_washer_efficiency_imef', Constants.Auto) + step.setArgument('clothes_washer_efficiency', Constants.Auto) step.setArgument('clothes_washer_rated_annual_kwh', Constants.Auto) step.setArgument('clothes_washer_label_electric_rate', Constants.Auto) step.setArgument('clothes_washer_label_gas_rate', Constants.Auto) @@ -1644,11 +1801,10 @@ def get_values(osw_file, step) step.setArgument('clothes_washer_label_usage', Constants.Auto) step.setArgument('clothes_washer_capacity', Constants.Auto) step.setArgument('clothes_dryer_location', Constants.Auto) - step.setArgument('clothes_dryer_efficiency_cef', Constants.Auto) - step.setArgument('clothes_dryer_control_type', Constants.Auto) + step.setArgument('clothes_dryer_efficiency', Constants.Auto) step.setArgument('clothes_dryer_vented_flow_rate', Constants.Auto) step.setArgument('dishwasher_location', Constants.Auto) - step.setArgument('dishwasher_efficiency_kwh', Constants.Auto) + step.setArgument('dishwasher_efficiency', Constants.Auto) step.setArgument('dishwasher_label_electric_rate', Constants.Auto) step.setArgument('dishwasher_label_gas_rate', Constants.Auto) step.setArgument('dishwasher_label_annual_gas_cost', Constants.Auto) @@ -1665,19 +1821,16 @@ def get_values(osw_file, step) step.setArgument('plug_loads_other_frac_sensible', Constants.Auto) step.setArgument('plug_loads_other_frac_latent', Constants.Auto) elsif ['base-misc-loads-large-uncommon.osw'].include? osw_file - step.setArgument('extra_refrigerator_present', true) + step.setArgument('extra_refrigerator_location', Constants.Auto) step.setArgument('extra_refrigerator_rated_annual_kwh', '700.0') - step.setArgument('freezer_present', true) step.setArgument('freezer_location', HPXML::LocationLivingSpace) step.setArgument('freezer_rated_annual_kwh', '300.0') step.setArgument('plug_loads_well_pump_present', true) step.setArgument('plug_loads_well_pump_annual_kwh', '475.0') step.setArgument('plug_loads_well_pump_usage_multiplier', 1.0) - step.setArgument('plug_loads_well_pump_usage_multiplier_2', 1.0) step.setArgument('plug_loads_vehicle_present', true) step.setArgument('plug_loads_vehicle_annual_kwh', '1500.0') step.setArgument('plug_loads_vehicle_usage_multiplier', 1.0) - step.setArgument('plug_loads_vehicle_usage_multiplier_2', 1.0) step.setArgument('fuel_loads_grill_present', true) step.setArgument('fuel_loads_grill_fuel_type', HPXML::FuelTypePropane) step.setArgument('fuel_loads_grill_annual_therm', '25.0') @@ -1699,11 +1852,17 @@ def get_values(osw_file, step) step.setArgument('hot_tub_pump_annual_kwh', '1000.0') step.setArgument('hot_tub_heater_annual_kwh', '1300.0') elsif ['base-misc-loads-large-uncommon2.osw'].include? osw_file - step.setArgument('pool_heater_type', 'none') + step.setArgument('pool_heater_type', HPXML::TypeNone) step.setArgument('hot_tub_heater_type', HPXML::HeaterTypeHeatPump) step.setArgument('hot_tub_heater_annual_kwh', '260.0') step.setArgument('fuel_loads_grill_fuel_type', HPXML::FuelTypeOil) step.setArgument('fuel_loads_fireplace_fuel_type', HPXML::FuelTypeWoodPellets) + elsif ['base-misc-neighbor-shading.osw'].include? osw_file + step.setArgument('neighbor_back_distance', 10) + step.setArgument('neighbor_front_distance', 15) + step.setArgument('neighbor_front_height', '12') + elsif ['base-misc-shielding-of-home.osw'].include? osw_file + step.setArgument('air_leakage_shielding_of_home', HPXML::ShieldingWellShielded) elsif ['base-misc-usage-multiplier.osw'].include? osw_file step.setArgument('water_fixtures_usage_multiplier', 0.9) step.setArgument('lighting_usage_multiplier_interior', 0.9) @@ -1713,7 +1872,6 @@ def get_values(osw_file, step) step.setArgument('clothes_dryer_usage_multiplier', 0.9) step.setArgument('dishwasher_usage_multiplier', 0.9) step.setArgument('refrigerator_usage_multiplier', 0.9) - step.setArgument('freezer_present', true) step.setArgument('freezer_location', HPXML::LocationLivingSpace) step.setArgument('freezer_rated_annual_kwh', '300.0') step.setArgument('freezer_usage_multiplier', 0.9) @@ -1745,10 +1903,6 @@ def get_values(osw_file, step) step.setArgument('fuel_loads_fireplace_frac_sensible', '0.5') step.setArgument('fuel_loads_fireplace_frac_latent', '0.1') step.setArgument('fuel_loads_fireplace_usage_multiplier', 0.9) - elsif ['base-misc-neighbor-shading.osw'].include? osw_file - step.setArgument('neighbor_back_distance', 10) - step.setArgument('neighbor_front_distance', 15) - step.setArgument('neighbor_front_height', '12') elsif ['base-pv.osw'].include? osw_file step.setArgument('pv_system_module_type_1', HPXML::PVModuleTypeStandard) step.setArgument('pv_system_location_1', HPXML::LocationRoof) @@ -1758,16 +1912,6 @@ def get_values(osw_file, step) step.setArgument('pv_system_tracking_2', HPXML::PVTrackingTypeFixed) step.setArgument('pv_system_array_azimuth_2', 90) step.setArgument('pv_system_max_power_output_2', 1500) - elsif ['base-bldgtype-multifamily-shared-pv.osw'].include? osw_file - step.setArgument('pv_system_num_units_served_1', 6) - step.setArgument('pv_system_location_1', HPXML::LocationGround) - step.setArgument('pv_system_module_type_1', HPXML::PVModuleTypeStandard) - step.setArgument('pv_system_tracking_1', HPXML::PVTrackingTypeFixed) - step.setArgument('pv_system_array_azimuth_1', 225) - step.setArgument('pv_system_array_tilt_1', '30') - step.setArgument('pv_system_max_power_output_1', 30000) - step.setArgument('pv_system_inverter_efficiency_1', 0.96) - step.setArgument('pv_system_system_losses_fraction_1', 0.14) elsif ['base-simcontrol-calendar-year-custom.osw'].include? osw_file step.setArgument('simulation_control_run_period_calendar_year', 2008) elsif ['base-simcontrol-daylight-saving-custom.osw'].include? osw_file @@ -1780,6 +1924,11 @@ def get_values(osw_file, step) step.setArgument('simulation_control_daylight_saving_enabled', false) elsif ['base-schedules-stochastic.osw'].include? osw_file step.setArgument('schedules_type', 'stochastic') + elsif ['base-schedules-stochastic-vacant.osw'].include? osw_file + step.setArgument('schedules_vacancy_begin_month', 1) + step.setArgument('schedules_vacancy_begin_day_of_month', 1) + step.setArgument('schedules_vacancy_end_month', 12) + step.setArgument('schedules_vacancy_end_day_of_month', 31) elsif ['base-schedules-user-specified.osw'].include? osw_file step.setArgument('schedules_type', 'user-specified') step.setArgument('schedules_path', 'BuildResidentialHPXML/tests/schedules/user-specified.csv') @@ -1814,8 +1963,8 @@ def get_values(osw_file, step) step.setArgument('solar_thermal_system_type', 'hot water') step.setArgument('solar_thermal_collector_tilt', 'latitude-15') elsif ['extra-second-refrigerator.osw'].include? osw_file - step.setArgument('extra_refrigerator_present', true) - elsif ['extra-second-heating-system-portable-heater.osw'].include? osw_file + step.setArgument('extra_refrigerator_location', HPXML::LocationLivingSpace) + elsif ['extra-second-heating-system-portable-heater-to-heating-system.osw'].include? osw_file step.setArgument('heating_system_fuel', HPXML::FuelTypeElectricity) step.setArgument('heating_system_heating_capacity', '48000.0') step.setArgument('heating_system_fraction_heat_load_served', 0.75) @@ -1825,39 +1974,284 @@ def get_values(osw_file, step) step.setArgument('ducts_return_location', HPXML::LocationLivingSpace) step.setArgument('heating_system_type_2', HPXML::HVACTypePortableHeater) step.setArgument('heating_system_heating_capacity_2', '16000.0') - elsif ['extra-second-heating-system-fireplace.osw'].include? osw_file - step.setArgument('heating_system_type', HPXML::HVACTypeElectricResistance) - step.setArgument('heating_system_fuel', HPXML::FuelTypeElectricity) + elsif ['extra-second-heating-system-fireplace-to-heating-system.osw'].include? osw_file step.setArgument('heating_system_heating_capacity', '48000.0') step.setArgument('heating_system_fraction_heat_load_served', 0.75) step.setArgument('heating_system_type_2', HPXML::HVACTypeFireplace) step.setArgument('heating_system_heating_capacity_2', '16000.0') + elsif ['extra-second-heating-system-boiler-to-heating-system.osw'].include? osw_file + step.setArgument('heating_system_fraction_heat_load_served', 0.75) + step.setArgument('heating_system_type_2', HPXML::HVACTypeBoiler) + elsif ['extra-second-heating-system-portable-heater-to-heat-pump.osw'].include? osw_file + step.setArgument('heat_pump_heating_capacity', '48000.0') + step.setArgument('heat_pump_fraction_heat_load_served', 0.75) + step.setArgument('ducts_supply_leakage_value', 0.0) + step.setArgument('ducts_return_leakage_value', 0.0) + step.setArgument('ducts_supply_location', HPXML::LocationLivingSpace) + step.setArgument('ducts_return_location', HPXML::LocationLivingSpace) + step.setArgument('heating_system_type_2', HPXML::HVACTypePortableHeater) + step.setArgument('heating_system_heating_capacity_2', '16000.0') + elsif ['extra-second-heating-system-fireplace-to-heat-pump.osw'].include? osw_file + step.setArgument('heat_pump_heating_capacity', '48000.0') + step.setArgument('heat_pump_fraction_heat_load_served', 0.75) + step.setArgument('heating_system_type_2', HPXML::HVACTypeFireplace) + step.setArgument('heating_system_heating_capacity_2', '16000.0') + elsif ['extra-second-heating-system-boiler-to-heat-pump.osw'].include? osw_file + step.setArgument('heat_pump_fraction_heat_load_served', 0.75) + step.setArgument('heating_system_type_2', HPXML::HVACTypeBoiler) + elsif ['extra-enclosure-windows-shading.osw'].include? osw_file + step.setArgument('window_interior_shading_winter', 0.99) + step.setArgument('window_interior_shading_summer', 0.01) + step.setArgument('window_exterior_shading_winter', 0.9) + step.setArgument('window_exterior_shading_summer', 0.1) elsif ['extra-enclosure-garage-partially-protruded.osw'].include? osw_file step.setArgument('geometry_garage_width', 12) step.setArgument('geometry_garage_protrusion', 0.5) - elsif ['extra-vacancy-6-months.osw'].include? osw_file - step.setArgument('schedules_vacancy_begin_month', 1) - step.setArgument('schedules_vacancy_begin_day_of_month', 1) - step.setArgument('schedules_vacancy_end_month', 6) - step.setArgument('schedules_vacancy_end_day_of_month', 30) + elsif ['extra-enclosure-garage-atticroof-conditioned.osw'].include? osw_file + step.setArgument('geometry_cfa', 4500.0) + step.setArgument('geometry_num_floors_above_grade', 2) + step.setArgument('geometry_attic_type', HPXML::AtticTypeConditioned) + elsif ['extra-enclosure-atticroof-conditioned-eaves-gable.osw'].include? osw_file + step.setArgument('geometry_num_floors_above_grade', 2) + step.setArgument('geometry_attic_type', HPXML::AtticTypeConditioned) + step.setArgument('geometry_eaves_depth', 2) + elsif ['extra-enclosure-atticroof-conditioned-eaves-hip.osw'].include? osw_file + step.setArgument('geometry_roof_type', 'hip') elsif ['extra-schedules-random-seed.osw'].include? osw_file step.setArgument('schedules_random_seed', 123) - elsif ['extra-hvac-programmable-thermostat.osw'].include? osw_file - step.setArgument('setpoint_heating_weekday_offset_magnitude', 4) - step.setArgument('setpoint_heating_weekend_offset_magnitude', 4) - step.setArgument('setpoint_heating_weekday_schedule', '-1, -1, -1, -1, -1, -1, 0, 0, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1') - step.setArgument('setpoint_heating_weekend_schedule', '-1, -1, -1, -1, -1, -1, 0, 0, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1') - step.setArgument('setpoint_cooling_weekday_offset_magnitude', 4) - step.setArgument('setpoint_cooling_weekend_offset_magnitude', 4) - step.setArgument('setpoint_cooling_weekday_schedule', '0, 0, 0, 0, 1, 1, 0, 0, 0, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0') - step.setArgument('setpoint_cooling_weekend_schedule', '0, 0, 0, 0, 1, 1, 0, 0, 0, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0') - elsif ['extra-plug-loads-additional-multipliers.osw'].include? osw_file - step.setArgument('plug_loads_television_usage_multiplier_2', 1.5) - step.setArgument('plug_loads_other_usage_multiplier_2', 1.5) - step.setArgument('plug_loads_well_pump_present', true) - step.setArgument('plug_loads_well_pump_usage_multiplier_2', 1.5) - step.setArgument('plug_loads_vehicle_present', true) - step.setArgument('plug_loads_vehicle_usage_multiplier_2', 1.5) + elsif ['extra-zero-refrigerator-kwh.osw'].include? osw_file + step.setArgument('refrigerator_rated_annual_kwh', '0') + elsif ['extra-zero-extra-refrigerator-kwh.osw'].include? osw_file + step.setArgument('extra_refrigerator_rated_annual_kwh', '0') + elsif ['extra-zero-freezer-kwh.osw'].include? osw_file + step.setArgument('freezer_rated_annual_kwh', '0') + elsif ['extra-zero-clothes-washer-kwh.osw'].include? osw_file + step.setArgument('clothes_washer_rated_annual_kwh', '0') + step.setArgument('clothes_dryer_location', 'none') + elsif ['extra-zero-dishwasher-kwh.osw'].include? osw_file + step.setArgument('dishwasher_efficiency', '0') + + elsif ['extra-bldgtype-single-family-attached-atticroof-conditioned-eaves-gable.osw'].include? osw_file + step.setArgument('geometry_num_floors_above_grade', 2) + step.setArgument('geometry_attic_type', HPXML::AtticTypeConditioned) + step.setArgument('geometry_eaves_depth', 2) + step.setArgument('ducts_supply_location', HPXML::LocationLivingSpace) + step.setArgument('ducts_return_location', HPXML::LocationLivingSpace) + elsif ['extra-bldgtype-single-family-attached-atticroof-conditioned-eaves-hip.osw'].include? osw_file + step.setArgument('geometry_roof_type', 'hip') + elsif ['extra-bldgtype-multifamily-eaves.osw'].include? osw_file + step.setArgument('geometry_eaves_depth', 2) + + elsif ['extra-bldgtype-single-family-attached-slab.osw'].include? osw_file + step.setArgument('geometry_foundation_type', HPXML::FoundationTypeSlab) + step.setArgument('geometry_foundation_height', 0.0) + step.setArgument('geometry_foundation_height_above_grade', 0.0) + elsif ['extra-bldgtype-single-family-attached-vented-crawlspace.osw'].include? osw_file + step.setArgument('geometry_foundation_type', HPXML::FoundationTypeCrawlspaceVented) + step.setArgument('geometry_foundation_height', 4.0) + step.setArgument('floor_assembly_r', 18.7) + step.setArgument('foundation_wall_insulation_distance_to_bottom', 4.0) + elsif ['extra-bldgtype-single-family-attached-unvented-crawlspace.osw'].include? osw_file + step.setArgument('geometry_foundation_type', HPXML::FoundationTypeCrawlspaceUnvented) + step.setArgument('geometry_foundation_height', 4.0) + step.setArgument('floor_assembly_r', 18.7) + step.setArgument('foundation_wall_insulation_distance_to_bottom', 4.0) + elsif ['extra-bldgtype-single-family-attached-unconditioned-basement.osw'].include? osw_file + step.setArgument('geometry_foundation_type', HPXML::FoundationTypeBasementUnconditioned) + step.setArgument('floor_assembly_r', 18.7) + step.setArgument('foundation_wall_insulation_r', 0) + step.setArgument('foundation_wall_insulation_distance_to_bottom', 0) + + elsif ['extra-bldgtype-single-family-attached-double-loaded-interior.osw'].include? osw_file + step.setArgument('geometry_building_num_units', 4) + step.setArgument('geometry_corridor_position', 'Double-Loaded Interior') + elsif ['extra-bldgtype-single-family-attached-single-exterior-front.osw'].include? osw_file + step.setArgument('geometry_corridor_position', 'Single Exterior (Front)') + elsif ['extra-bldgtype-single-family-attached-double-exterior.osw'].include? osw_file + step.setArgument('geometry_building_num_units', 4) + step.setArgument('geometry_corridor_position', 'Double Exterior') + + elsif ['extra-bldgtype-single-family-attached-slab-middle.osw'].include? osw_file + step.setArgument('geometry_horizontal_location', 'Middle') + elsif ['extra-bldgtype-single-family-attached-slab-right.osw'].include? osw_file + step.setArgument('geometry_horizontal_location', 'Right') + elsif ['extra-bldgtype-single-family-attached-vented-crawlspace-middle.osw'].include? osw_file + step.setArgument('geometry_horizontal_location', 'Middle') + elsif ['extra-bldgtype-single-family-attached-vented-crawlspace-right.osw'].include? osw_file + step.setArgument('geometry_horizontal_location', 'Right') + elsif ['extra-bldgtype-single-family-attached-unvented-crawlspace-middle.osw'].include? osw_file + step.setArgument('geometry_horizontal_location', 'Middle') + elsif ['extra-bldgtype-single-family-attached-unvented-crawlspace-right.osw'].include? osw_file + step.setArgument('geometry_horizontal_location', 'Right') + elsif ['extra-bldgtype-single-family-attached-unconditioned-basement-middle.osw'].include? osw_file + step.setArgument('geometry_horizontal_location', 'Middle') + elsif ['extra-bldgtype-single-family-attached-unconditioned-basement-right.osw'].include? osw_file + step.setArgument('geometry_horizontal_location', 'Right') + + elsif ['extra-bldgtype-multifamily-slab.osw'].include? osw_file + step.setArgument('geometry_foundation_type', HPXML::FoundationTypeSlab) + step.setArgument('geometry_foundation_height', 0.0) + step.setArgument('geometry_foundation_height_above_grade', 0.0) + elsif ['extra-bldgtype-multifamily-vented-crawlspace.osw'].include? osw_file + step.setArgument('geometry_foundation_type', HPXML::FoundationTypeCrawlspaceVented) + step.setArgument('geometry_foundation_height', 4.0) + step.setArgument('floor_assembly_r', 18.7) + step.setArgument('foundation_wall_insulation_distance_to_bottom', 4.0) + elsif ['extra-bldgtype-multifamily-unvented-crawlspace.osw'].include? osw_file + step.setArgument('geometry_foundation_type', HPXML::FoundationTypeCrawlspaceUnvented) + step.setArgument('geometry_foundation_height', 4.0) + step.setArgument('floor_assembly_r', 18.7) + step.setArgument('foundation_wall_insulation_distance_to_bottom', 4.0) + + elsif ['extra-bldgtype-multifamily-double-loaded-interior.osw'].include? osw_file + step.setArgument('geometry_corridor_position', 'Double-Loaded Interior') + elsif ['extra-bldgtype-multifamily-single-exterior-front.osw'].include? osw_file + step.setArgument('geometry_corridor_position', 'Single Exterior (Front)') + elsif ['extra-bldgtype-multifamily-double-exterior.osw'].include? osw_file + step.setArgument('geometry_corridor_position', 'Double Exterior') + + elsif ['extra-bldgtype-multifamily-slab-left-bottom.osw'].include? osw_file + step.setArgument('geometry_horizontal_location', 'Left') + step.setArgument('geometry_level', 'Bottom') + elsif ['extra-bldgtype-multifamily-slab-left-middle.osw'].include? osw_file + step.setArgument('geometry_horizontal_location', 'Left') + step.setArgument('geometry_level', 'Middle') + elsif ['extra-bldgtype-multifamily-slab-left-top.osw'].include? osw_file + step.setArgument('geometry_horizontal_location', 'Left') + step.setArgument('geometry_level', 'Top') + elsif ['extra-bldgtype-multifamily-slab-middle-bottom.osw'].include? osw_file + step.setArgument('geometry_horizontal_location', 'Middle') + step.setArgument('geometry_level', 'Bottom') + elsif ['extra-bldgtype-multifamily-slab-middle-middle.osw'].include? osw_file + step.setArgument('geometry_horizontal_location', 'Middle') + step.setArgument('geometry_level', 'Middle') + elsif ['extra-bldgtype-multifamily-slab-middle-top.osw'].include? osw_file + step.setArgument('geometry_horizontal_location', 'Middle') + step.setArgument('geometry_level', 'Top') + elsif ['extra-bldgtype-multifamily-slab-right-bottom.osw'].include? osw_file + step.setArgument('geometry_horizontal_location', 'Right') + step.setArgument('geometry_level', 'Bottom') + elsif ['extra-bldgtype-multifamily-slab-right-middle.osw'].include? osw_file + step.setArgument('geometry_horizontal_location', 'Right') + step.setArgument('geometry_level', 'Middle') + elsif ['extra-bldgtype-multifamily-slab-right-top.osw'].include? osw_file + step.setArgument('geometry_horizontal_location', 'Right') + step.setArgument('geometry_level', 'Top') + elsif ['extra-bldgtype-multifamily-vented-crawlspace-left-bottom.osw'].include? osw_file + step.setArgument('geometry_horizontal_location', 'Left') + step.setArgument('geometry_level', 'Bottom') + elsif ['extra-bldgtype-multifamily-vented-crawlspace-left-middle.osw'].include? osw_file + step.setArgument('geometry_horizontal_location', 'Left') + step.setArgument('geometry_level', 'Middle') + elsif ['extra-bldgtype-multifamily-vented-crawlspace-left-top.osw'].include? osw_file + step.setArgument('geometry_horizontal_location', 'Left') + step.setArgument('geometry_level', 'Top') + elsif ['extra-bldgtype-multifamily-vented-crawlspace-middle-bottom.osw'].include? osw_file + step.setArgument('geometry_horizontal_location', 'Middle') + step.setArgument('geometry_level', 'Bottom') + elsif ['extra-bldgtype-multifamily-vented-crawlspace-middle-middle.osw'].include? osw_file + step.setArgument('geometry_horizontal_location', 'Middle') + step.setArgument('geometry_level', 'Middle') + elsif ['extra-bldgtype-multifamily-vented-crawlspace-middle-top.osw'].include? osw_file + step.setArgument('geometry_horizontal_location', 'Middle') + step.setArgument('geometry_level', 'Top') + elsif ['extra-bldgtype-multifamily-vented-crawlspace-right-bottom.osw'].include? osw_file + step.setArgument('geometry_horizontal_location', 'Right') + step.setArgument('geometry_level', 'Bottom') + elsif ['extra-bldgtype-multifamily-vented-crawlspace-right-middle.osw'].include? osw_file + step.setArgument('geometry_horizontal_location', 'Right') + step.setArgument('geometry_level', 'Middle') + elsif ['extra-bldgtype-multifamily-vented-crawlspace-right-top.osw'].include? osw_file + step.setArgument('geometry_horizontal_location', 'Right') + step.setArgument('geometry_level', 'Top') + elsif ['extra-bldgtype-multifamily-unvented-crawlspace-left-bottom.osw'].include? osw_file + step.setArgument('geometry_horizontal_location', 'Left') + step.setArgument('geometry_level', 'Bottom') + elsif ['extra-bldgtype-multifamily-unvented-crawlspace-left-middle.osw'].include? osw_file + step.setArgument('geometry_horizontal_location', 'Left') + step.setArgument('geometry_level', 'Middle') + elsif ['extra-bldgtype-multifamily-unvented-crawlspace-left-top.osw'].include? osw_file + step.setArgument('geometry_horizontal_location', 'Left') + step.setArgument('geometry_level', 'Top') + elsif ['extra-bldgtype-multifamily-unvented-crawlspace-middle-bottom.osw'].include? osw_file + step.setArgument('geometry_horizontal_location', 'Middle') + step.setArgument('geometry_level', 'Bottom') + elsif ['extra-bldgtype-multifamily-unvented-crawlspace-middle-middle.osw'].include? osw_file + step.setArgument('geometry_horizontal_location', 'Middle') + step.setArgument('geometry_level', 'Middle') + elsif ['extra-bldgtype-multifamily-unvented-crawlspace-middle-top.osw'].include? osw_file + step.setArgument('geometry_horizontal_location', 'Middle') + step.setArgument('geometry_level', 'Top') + elsif ['extra-bldgtype-multifamily-unvented-crawlspace-right-bottom.osw'].include? osw_file + step.setArgument('geometry_horizontal_location', 'Right') + step.setArgument('geometry_level', 'Bottom') + elsif ['extra-bldgtype-multifamily-unvented-crawlspace-right-middle.osw'].include? osw_file + step.setArgument('geometry_horizontal_location', 'Right') + step.setArgument('geometry_level', 'Middle') + elsif ['extra-bldgtype-multifamily-unvented-crawlspace-right-top.osw'].include? osw_file + step.setArgument('geometry_horizontal_location', 'Right') + step.setArgument('geometry_level', 'Top') + + elsif ['extra-bldgtype-multifamily-slab-double-loaded-interior.osw'].include? osw_file + step.setArgument('geometry_corridor_position', 'Double-Loaded Interior') + elsif ['extra-bldgtype-multifamily-vented-crawlspace-double-loaded-interior.osw'].include? osw_file + step.setArgument('geometry_corridor_position', 'Double-Loaded Interior') + elsif ['extra-bldgtype-multifamily-unvented-crawlspace-double-loaded-interior.osw'].include? osw_file + step.setArgument('geometry_corridor_position', 'Double-Loaded Interior') + elsif ['extra-bldgtype-multifamily-slab-left-bottom-double-loaded-interior.osw'].include? osw_file + step.setArgument('geometry_corridor_position', 'Double-Loaded Interior') + elsif ['extra-bldgtype-multifamily-slab-left-middle-double-loaded-interior.osw'].include? osw_file + step.setArgument('geometry_corridor_position', 'Double-Loaded Interior') + elsif ['extra-bldgtype-multifamily-slab-left-top-double-loaded-interior.osw'].include? osw_file + step.setArgument('geometry_corridor_position', 'Double-Loaded Interior') + elsif ['extra-bldgtype-multifamily-slab-middle-bottom-double-loaded-interior.osw'].include? osw_file + step.setArgument('geometry_corridor_position', 'Double-Loaded Interior') + elsif ['extra-bldgtype-multifamily-slab-middle-middle-double-loaded-interior.osw'].include? osw_file + step.setArgument('geometry_corridor_position', 'Double-Loaded Interior') + elsif ['extra-bldgtype-multifamily-slab-middle-top-double-loaded-interior.osw'].include? osw_file + step.setArgument('geometry_corridor_position', 'Double-Loaded Interior') + elsif ['extra-bldgtype-multifamily-slab-right-bottom-double-loaded-interior.osw'].include? osw_file + step.setArgument('geometry_corridor_position', 'Double-Loaded Interior') + elsif ['extra-bldgtype-multifamily-slab-right-middle-double-loaded-interior.osw'].include? osw_file + step.setArgument('geometry_corridor_position', 'Double-Loaded Interior') + elsif ['extra-bldgtype-multifamily-slab-right-top-double-loaded-interior.osw'].include? osw_file + step.setArgument('geometry_corridor_position', 'Double-Loaded Interior') + elsif ['extra-bldgtype-multifamily-vented-crawlspace-left-bottom-double-loaded-interior.osw'].include? osw_file + step.setArgument('geometry_corridor_position', 'Double-Loaded Interior') + elsif ['extra-bldgtype-multifamily-vented-crawlspace-left-middle-double-loaded-interior.osw'].include? osw_file + step.setArgument('geometry_corridor_position', 'Double-Loaded Interior') + elsif ['extra-bldgtype-multifamily-vented-crawlspace-left-top-double-loaded-interior.osw'].include? osw_file + step.setArgument('geometry_corridor_position', 'Double-Loaded Interior') + elsif ['extra-bldgtype-multifamily-vented-crawlspace-middle-bottom-double-loaded-interior.osw'].include? osw_file + step.setArgument('geometry_corridor_position', 'Double-Loaded Interior') + elsif ['extra-bldgtype-multifamily-vented-crawlspace-middle-middle-double-loaded-interior.osw'].include? osw_file + step.setArgument('geometry_corridor_position', 'Double-Loaded Interior') + elsif ['extra-bldgtype-multifamily-vented-crawlspace-middle-top-double-loaded-interior.osw'].include? osw_file + step.setArgument('geometry_corridor_position', 'Double-Loaded Interior') + elsif ['extra-bldgtype-multifamily-vented-crawlspace-right-bottom-double-loaded-interior.osw'].include? osw_file + step.setArgument('geometry_corridor_position', 'Double-Loaded Interior') + elsif ['extra-bldgtype-multifamily-vented-crawlspace-right-middle-double-loaded-interior.osw'].include? osw_file + step.setArgument('geometry_corridor_position', 'Double-Loaded Interior') + elsif ['extra-bldgtype-multifamily-vented-crawlspace-right-top-double-loaded-interior.osw'].include? osw_file + step.setArgument('geometry_corridor_position', 'Double-Loaded Interior') + elsif ['extra-bldgtype-multifamily-unvented-crawlspace-left-bottom-double-loaded-interior.osw'].include? osw_file + step.setArgument('geometry_corridor_position', 'Double-Loaded Interior') + elsif ['extra-bldgtype-multifamily-unvented-crawlspace-left-middle-double-loaded-interior.osw'].include? osw_file + step.setArgument('geometry_corridor_position', 'Double-Loaded Interior') + elsif ['extra-bldgtype-multifamily-unvented-crawlspace-left-top-double-loaded-interior.osw'].include? osw_file + step.setArgument('geometry_corridor_position', 'Double-Loaded Interior') + elsif ['extra-bldgtype-multifamily-unvented-crawlspace-middle-bottom-double-loaded-interior.osw'].include? osw_file + step.setArgument('geometry_corridor_position', 'Double-Loaded Interior') + elsif ['extra-bldgtype-multifamily-unvented-crawlspace-middle-middle-double-loaded-interior.osw'].include? osw_file + step.setArgument('geometry_corridor_position', 'Double-Loaded Interior') + elsif ['extra-bldgtype-multifamily-unvented-crawlspace-middle-top-double-loaded-interior.osw'].include? osw_file + step.setArgument('geometry_corridor_position', 'Double-Loaded Interior') + elsif ['extra-bldgtype-multifamily-unvented-crawlspace-right-bottom-double-loaded-interior.osw'].include? osw_file + step.setArgument('geometry_corridor_position', 'Double-Loaded Interior') + elsif ['extra-bldgtype-multifamily-unvented-crawlspace-right-middle-double-loaded-interior.osw'].include? osw_file + step.setArgument('geometry_corridor_position', 'Double-Loaded Interior') + elsif ['extra-bldgtype-multifamily-unvented-crawlspace-right-top-double-loaded-interior.osw'].include? osw_file + step.setArgument('geometry_corridor_position', 'Double-Loaded Interior') end # Warnings/Errors @@ -1882,6 +2276,7 @@ def get_values(osw_file, step) step.setArgument('geometry_foundation_height', 0.0) elsif ['invalid_files/single-family-attached-ambient.osw'].include? osw_file step.setArgument('geometry_foundation_type', HPXML::FoundationTypeAmbient) + step.setArgument('geometry_rim_joist_height', 0) elsif ['invalid_files/multifamily-bottom-slab-non-zero-foundation-height.osw'].include? osw_file step.setArgument('geometry_foundation_type', HPXML::FoundationTypeSlab) step.setArgument('geometry_foundation_height_above_grade', 0.0) @@ -1899,6 +2294,12 @@ def get_values(osw_file, step) step.setArgument('heating_system_fraction_heat_load_served', 0.4) step.setArgument('heating_system_type_2', HPXML::HVACTypeFireplace) step.setArgument('heating_system_fraction_heat_load_served_2', 0.6) + elsif ['invalid_files/second-heating-system-serves-total-heat-load.osw'].include? osw_file + step.setArgument('heating_system_type_2', HPXML::HVACTypeFireplace) + step.setArgument('heating_system_fraction_heat_load_served_2', 1.0) + elsif ['invalid_files/second-heating-system-but-no-primary-heating.osw'].include? osw_file + step.setArgument('heating_system_type', 'none') + step.setArgument('heating_system_type_2', HPXML::HVACTypeFireplace) elsif ['invalid_files/single-family-attached-no-building-orientation.osw'].include? osw_file step.removeArgument('geometry_building_num_units') step.removeArgument('geometry_horizontal_location') @@ -1910,16 +2311,20 @@ def get_values(osw_file, step) step.setArgument('geometry_foundation_type', HPXML::FoundationTypeCrawlspaceVented) step.setArgument('geometry_foundation_height', 3.0) step.setArgument('floor_assembly_r', 10) + step.setArgument('foundation_wall_insulation_distance_to_bottom', 0.0) elsif ['invalid_files/unvented-crawlspace-with-wall-and-ceiling-insulation.osw'].include? osw_file step.setArgument('geometry_foundation_type', HPXML::FoundationTypeCrawlspaceUnvented) step.setArgument('geometry_foundation_height', 3.0) step.setArgument('floor_assembly_r', 10) + step.setArgument('foundation_wall_insulation_distance_to_bottom', 0.0) elsif ['invalid_files/unconditioned-basement-with-wall-and-ceiling-insulation.osw'].include? osw_file step.setArgument('geometry_foundation_type', HPXML::FoundationTypeBasementUnconditioned) step.setArgument('floor_assembly_r', 10) elsif ['invalid_files/vented-attic-with-floor-and-roof-insulation.osw'].include? osw_file step.setArgument('geometry_attic_type', HPXML::AtticTypeVented) step.setArgument('roof_assembly_r', 10) + step.setArgument('ducts_supply_location', HPXML::LocationAtticVented) + step.setArgument('ducts_return_location', HPXML::LocationAtticVented) elsif ['invalid_files/unvented-attic-with-floor-and-roof-insulation.osw'].include? osw_file step.setArgument('geometry_attic_type', HPXML::AtticTypeUnvented) step.setArgument('roof_assembly_r', 10) @@ -1927,20 +2332,34 @@ def get_values(osw_file, step) step.setArgument('geometry_foundation_type', HPXML::FoundationTypeBasementConditioned) step.setArgument('floor_assembly_r', 10) elsif ['invalid_files/conditioned-attic-with-floor-insulation.osw'].include? osw_file + step.setArgument('geometry_num_floors_above_grade', 2) step.setArgument('geometry_attic_type', HPXML::AtticTypeConditioned) + step.setArgument('ducts_supply_location', HPXML::LocationLivingSpace) + step.setArgument('ducts_return_location', HPXML::LocationLivingSpace) elsif ['invalid_files/dhw-indirect-without-boiler.osw'].include? osw_file step.setArgument('water_heater_type', HPXML::WaterHeaterTypeCombiStorage) - elsif ['invalid_files/multipliers-without-plug-loads.osw'].include? osw_file + elsif ['invalid_files/multipliers-without-tv-plug-loads.osw'].include? osw_file step.setArgument('plug_loads_television_annual_kwh', '0.0') + elsif ['invalid_files/multipliers-without-other-plug-loads.osw'].include? osw_file step.setArgument('plug_loads_other_annual_kwh', '0.0') + elsif ['invalid_files/multipliers-without-well-pump-plug-loads.osw'].include? osw_file + step.setArgument('plug_loads_well_pump_annual_kwh', '0.0') step.setArgument('plug_loads_well_pump_usage_multiplier', 1.0) - step.setArgument('plug_loads_well_pump_usage_multiplier_2', 1.0) + elsif ['invalid_files/multipliers-without-vehicle-plug-loads.osw'].include? osw_file + step.setArgument('plug_loads_vehicle_annual_kwh', '0.0') step.setArgument('plug_loads_vehicle_usage_multiplier', 1.0) - step.setArgument('plug_loads_vehicle_usage_multiplier_2', 1.0) elsif ['invalid_files/multipliers-without-fuel-loads.osw'].include? osw_file step.setArgument('fuel_loads_grill_usage_multiplier', 1.0) step.setArgument('fuel_loads_lighting_usage_multiplier', 1.0) step.setArgument('fuel_loads_fireplace_usage_multiplier', 1.0) + elsif ['invalid_files/foundation-wall-insulation-greater-than-height.osw'].include? osw_file + step.setArgument('floor_assembly_r', 0) + step.setArgument('foundation_wall_insulation_distance_to_bottom', 6.0) + elsif ['invalid_files/conditioned-attic-with-one-floor-above-grade.osw'].include? osw_file + step.setArgument('geometry_attic_type', HPXML::AtticTypeConditioned) + step.setArgument('ceiling_assembly_r', 0.0) + elsif ['invalid_files/zero-number-of-bedrooms.osw'].include? osw_file + step.setArgument('geometry_num_bedrooms', 0) end return step end @@ -1950,6 +2369,7 @@ def create_hpxmls require_relative 'HPXMLtoOpenStudio/resources/constants' require_relative 'HPXMLtoOpenStudio/resources/hotwater_appliances' require_relative 'HPXMLtoOpenStudio/resources/hpxml' + require_relative 'HPXMLtoOpenStudio/resources/location' require_relative 'HPXMLtoOpenStudio/resources/misc_loads' require_relative 'HPXMLtoOpenStudio/resources/waterheater' require_relative 'HPXMLtoOpenStudio/resources/xmlhelper' @@ -1989,14 +2409,19 @@ def create_hpxmls 'ASHRAE_Standard_140/L304XC.xml' => 'ASHRAE_Standard_140/L302XC.xml', 'ASHRAE_Standard_140/L324XC.xml' => 'ASHRAE_Standard_140/L322XC.xml', + 'invalid_files/boiler-invalid-afue.xml' => 'base-hvac-boiler-oil-only.xml', 'invalid_files/cfis-with-hydronic-distribution.xml' => 'base-hvac-boiler-gas-only.xml', 'invalid_files/clothes-washer-location.xml' => 'base.xml', 'invalid_files/clothes-dryer-location.xml' => 'base.xml', 'invalid_files/cooking-range-location.xml' => 'base.xml', + 'invalid_files/dehumidifier-fraction-served.xml' => 'base-appliances-dehumidifier-multiple.xml', + 'invalid_files/dehumidifier-setpoints.xml' => 'base-appliances-dehumidifier-multiple.xml', 'invalid_files/dhw-frac-load-served.xml' => 'base-dhw-multiple.xml', 'invalid_files/dhw-invalid-ef-tank.xml' => 'base.xml', 'invalid_files/dhw-invalid-uef-tank-heat-pump.xml' => 'base-dhw-tank-heat-pump-uef.xml', 'invalid_files/dishwasher-location.xml' => 'base.xml', + 'invalid_files/duct-leakage-cfm25.xml' => 'base.xml', + 'invalid_files/duct-leakage-percent.xml' => 'base.xml', 'invalid_files/duct-location.xml' => 'base.xml', 'invalid_files/duct-location-unconditioned-space.xml' => 'base.xml', 'invalid_files/duplicate-id.xml' => 'base.xml', @@ -2004,14 +2429,19 @@ def create_hpxmls 'invalid_files/enclosure-basement-missing-exterior-foundation-wall.xml' => 'base-foundation-unconditioned-basement.xml', 'invalid_files/enclosure-basement-missing-slab.xml' => 'base-foundation-unconditioned-basement.xml', 'invalid_files/enclosure-floor-area-exceeds-cfa.xml' => 'base.xml', + 'invalid_files/enclosure-floor-area-exceeds-cfa2.xml' => 'base-bldgtype-multifamily.xml', 'invalid_files/enclosure-garage-missing-exterior-wall.xml' => 'base-enclosure-garage.xml', 'invalid_files/enclosure-garage-missing-roof-ceiling.xml' => 'base-enclosure-garage.xml', 'invalid_files/enclosure-garage-missing-slab.xml' => 'base-enclosure-garage.xml', 'invalid_files/enclosure-living-missing-ceiling-roof.xml' => 'base.xml', 'invalid_files/enclosure-living-missing-exterior-wall.xml' => 'base.xml', - 'invalid_files/enclosure-living-missing-floor-slab.xml' => 'base.xml', + 'invalid_files/enclosure-living-missing-floor-slab.xml' => 'base-foundation-slab.xml', + 'invalid_files/frac-sensible-fuel-load.xml' => 'base-misc-loads-large-uncommon.xml', + 'invalid_files/frac-sensible-plug-load.xml' => 'base-misc-loads-large-uncommon.xml', + 'invalid_files/frac-total-fuel-load.xml' => 'base-misc-loads-large-uncommon.xml', + 'invalid_files/frac-total-plug-load.xml' => 'base-misc-loads-large-uncommon.xml', + 'invalid_files/furnace-invalid-afue.xml' => 'base.xml', 'invalid_files/heat-pump-mixed-fixed-and-autosize-capacities.xml' => 'base-hvac-air-to-air-heat-pump-1-speed.xml', - 'invalid_files/heat-pump-mixed-fixed-and-autosize-capacities2.xml' => 'base-hvac-air-to-air-heat-pump-1-speed.xml', 'invalid_files/hvac-invalid-distribution-system-type.xml' => 'base.xml', 'invalid_files/hvac-distribution-multiple-attached-cooling.xml' => 'base-hvac-multiple.xml', 'invalid_files/hvac-distribution-multiple-attached-heating.xml' => 'base-hvac-multiple.xml', @@ -2020,6 +2450,9 @@ def create_hpxmls 'invalid_files/hvac-dse-multiple-attached-heating.xml' => 'base-hvac-dse.xml', 'invalid_files/hvac-frac-load-served.xml' => 'base-hvac-multiple.xml', 'invalid_files/hvac-inconsistent-fan-powers.xml' => 'base.xml', + 'invalid_files/generator-number-of-bedrooms-served.xml' => 'base-bldgtype-multifamily-shared-generator.xml', + 'invalid_files/generator-output-greater-than-consumption.xml' => 'base-misc-generators.xml', + 'invalid_files/invalid-assembly-effective-rvalue.xml' => 'base.xml', 'invalid_files/invalid-datatype-boolean.xml' => 'base.xml', 'invalid_files/invalid-datatype-float.xml' => 'base.xml', 'invalid_files/invalid-datatype-integer.xml' => 'base.xml', @@ -2027,12 +2460,20 @@ def create_hpxmls 'invalid_files/invalid-epw-filepath.xml' => 'base.xml', 'invalid_files/invalid-facility-type-equipment.xml' => 'base-bldgtype-multifamily-shared-laundry-room.xml', 'invalid_files/invalid-facility-type-surfaces.xml' => 'base.xml', + 'invalid_files/invalid-foundation-wall-properties.xml' => 'base-foundation-unconditioned-basement-wall-insulation.xml', + 'invalid_files/invalid-id.xml' => 'base-enclosure-skylights.xml', + 'invalid_files/invalid-id2.xml' => 'base-enclosure-skylights.xml', + 'invalid_files/invalid-infiltration-volume.xml' => 'base.xml', 'invalid_files/invalid-input-parameters.xml' => 'base.xml', 'invalid_files/invalid-neighbor-shading-azimuth.xml' => 'base-misc-neighbor-shading.xml', + 'invalid_files/invalid-number-of-bedrooms-served.xml' => 'base-bldgtype-multifamily-shared-pv.xml', + 'invalid_files/invalid-number-of-conditioned-floors.xml' => 'base.xml', + 'invalid_files/invalid-number-of-units-served.xml' => 'base-bldgtype-multifamily-shared-water-heater.xml', 'invalid_files/invalid-relatedhvac-dhw-indirect.xml' => 'base-dhw-indirect.xml', 'invalid_files/invalid-relatedhvac-desuperheater.xml' => 'base-hvac-central-ac-only-1-speed.xml', 'invalid_files/invalid-runperiod.xml' => 'base.xml', 'invalid_files/invalid-schema-version.xml' => 'base.xml', + 'invalid_files/invalid-shared-vent-in-unit-flowrate.xml' => 'base-bldgtype-multifamily-shared-mechvent.xml', 'invalid_files/invalid-timestep.xml' => 'base.xml', 'invalid_files/invalid-window-height.xml' => 'base-enclosure-overhangs.xml', 'invalid_files/lighting-fractions.xml' => 'base.xml', @@ -2041,6 +2482,10 @@ def create_hpxmls 'invalid_files/multifamily-reference-duct.xml' => 'base.xml', 'invalid_files/multifamily-reference-surface.xml' => 'base.xml', 'invalid_files/multifamily-reference-water-heater.xml' => 'base.xml', + 'invalid_files/multiple-buildings-without-building-id.xml' => 'base.xml', + 'invalid_files/multiple-buildings-wrong-building-id.xml' => 'base.xml', + 'invalid_files/multiple-shared-cooling-systems.xml' => 'base-bldgtype-multifamily-shared-chiller-only-baseboard.xml', + 'invalid_files/multiple-shared-heating-systems.xml' => 'base-bldgtype-multifamily-shared-boiler-only-baseboard.xml', 'invalid_files/net-area-negative-roof.xml' => 'base-enclosure-skylights.xml', 'invalid_files/net-area-negative-wall.xml' => 'base.xml', 'invalid_files/num-bedrooms-exceeds-limit.xml' => 'base.xml', @@ -2048,7 +2493,6 @@ def create_hpxmls 'invalid_files/refrigerator-location.xml' => 'base.xml', 'invalid_files/repeated-relatedhvac-dhw-indirect.xml' => 'base-dhw-indirect.xml', 'invalid_files/repeated-relatedhvac-desuperheater.xml' => 'base-hvac-central-ac-only-1-speed.xml', - 'invalid_files/slab-zero-exposed-perimeter.xml' => 'base.xml', 'invalid_files/solar-thermal-system-with-combi-tankless.xml' => 'base-dhw-combi-tankless.xml', 'invalid_files/solar-thermal-system-with-desuperheater.xml' => 'base-dhw-desuperheater.xml', 'invalid_files/solar-thermal-system-with-dhw-indirect.xml' => 'base-dhw-combi-tankless.xml', @@ -2071,6 +2515,7 @@ def create_hpxmls 'base-appliances-dehumidifier-50percent.xml' => 'base-appliances-dehumidifier.xml', 'base-appliances-dehumidifier-ief-portable.xml' => 'base-appliances-dehumidifier.xml', 'base-appliances-dehumidifier-ief-whole-home.xml' => 'base-appliances-dehumidifier-ief-portable.xml', + 'base-appliances-dehumidifier-multiple.xml' => 'base-appliances-dehumidifier-50percent.xml', 'base-appliances-gas.xml' => 'base.xml', 'base-appliances-modified.xml' => 'base.xml', 'base-appliances-none.xml' => 'base.xml', @@ -2181,10 +2626,12 @@ def create_hpxmls 'base-enclosure-overhangs.xml' => 'base.xml', 'base-enclosure-rooftypes.xml' => 'base.xml', 'base-enclosure-skylights.xml' => 'base.xml', + 'base-enclosure-skylights-shading.xml' => 'base-enclosure-skylights.xml', 'base-enclosure-split-level.xml' => 'base-foundation-slab.xml', - 'base-enclosure-split-surfaces.xml' => 'base-enclosure-skylights.xml', + 'base-enclosure-split-surfaces.xml' => 'base-enclosure-skylights.xml', # Surfaces should collapse via HPXML.collapse_enclosure_surfaces() + 'base-enclosure-split-surfaces2.xml' => 'base-enclosure-skylights.xml', # Surfaces should NOT collapse via HPXML.collapse_enclosure_surfaces() 'base-enclosure-walltypes.xml' => 'base.xml', - 'base-enclosure-windows-interior-shading.xml' => 'base.xml', + 'base-enclosure-windows-shading.xml' => 'base.xml', 'base-enclosure-windows-none.xml' => 'base.xml', 'base-foundation-multiple.xml' => 'base-foundation-unconditioned-basement.xml', 'base-foundation-ambient.xml' => 'base.xml', @@ -2199,9 +2646,50 @@ def create_hpxmls 'base-foundation-vented-crawlspace.xml' => 'base.xml', 'base-foundation-walkout-basement.xml' => 'base.xml', 'base-foundation-complex.xml' => 'base.xml', + 'base-foundation-basement-garage.xml' => 'base.xml', 'base-hvac-air-to-air-heat-pump-1-speed.xml' => 'base.xml', + 'base-hvac-air-to-air-heat-pump-1-speed-cooling-only.xml' => 'base-hvac-air-to-air-heat-pump-1-speed.xml', + 'base-hvac-air-to-air-heat-pump-1-speed-heating-only.xml' => 'base-hvac-air-to-air-heat-pump-1-speed.xml', 'base-hvac-air-to-air-heat-pump-2-speed.xml' => 'base.xml', 'base-hvac-air-to-air-heat-pump-var-speed.xml' => 'base.xml', + 'base-hvac-autosize.xml' => 'base.xml', + 'base-hvac-autosize-air-to-air-heat-pump-1-speed.xml' => 'base-hvac-air-to-air-heat-pump-1-speed.xml', + 'base-hvac-autosize-air-to-air-heat-pump-1-speed-cooling-only.xml' => 'base-hvac-air-to-air-heat-pump-1-speed-cooling-only.xml', + 'base-hvac-autosize-air-to-air-heat-pump-1-speed-heating-only.xml' => 'base-hvac-air-to-air-heat-pump-1-speed-heating-only.xml', + 'base-hvac-autosize-air-to-air-heat-pump-1-speed-manual-s-oversize-allowances.xml' => 'base-hvac-autosize-air-to-air-heat-pump-1-speed.xml', + 'base-hvac-autosize-air-to-air-heat-pump-2-speed.xml' => 'base-hvac-air-to-air-heat-pump-2-speed.xml', + 'base-hvac-autosize-air-to-air-heat-pump-2-speed-manual-s-oversize-allowances.xml' => 'base-hvac-autosize-air-to-air-heat-pump-2-speed.xml', + 'base-hvac-autosize-air-to-air-heat-pump-var-speed.xml' => 'base-hvac-air-to-air-heat-pump-var-speed.xml', + 'base-hvac-autosize-air-to-air-heat-pump-var-speed-manual-s-oversize-allowances.xml' => 'base-hvac-autosize-air-to-air-heat-pump-var-speed.xml', + 'base-hvac-autosize-boiler-elec-only.xml' => 'base-hvac-boiler-elec-only.xml', + 'base-hvac-autosize-boiler-gas-central-ac-1-speed.xml' => 'base-hvac-boiler-gas-central-ac-1-speed.xml', + 'base-hvac-autosize-boiler-gas-only.xml' => 'base-hvac-boiler-gas-only.xml', + 'base-hvac-autosize-central-ac-only-1-speed.xml' => 'base-hvac-central-ac-only-1-speed.xml', + 'base-hvac-autosize-central-ac-only-2-speed.xml' => 'base-hvac-central-ac-only-2-speed.xml', + 'base-hvac-autosize-central-ac-only-var-speed.xml' => 'base-hvac-central-ac-only-var-speed.xml', + 'base-hvac-autosize-central-ac-plus-air-to-air-heat-pump-heating.xml' => 'base-hvac-central-ac-plus-air-to-air-heat-pump-heating.xml', + 'base-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed.xml' => 'base-hvac-dual-fuel-air-to-air-heat-pump-1-speed.xml', + 'base-hvac-autosize-dual-fuel-mini-split-heat-pump-ducted.xml' => 'base-hvac-dual-fuel-mini-split-heat-pump-ducted.xml', + 'base-hvac-autosize-elec-resistance-only.xml' => 'base-hvac-elec-resistance-only.xml', + 'base-hvac-autosize-evap-cooler-furnace-gas.xml' => 'base-hvac-evap-cooler-furnace-gas.xml', + 'base-hvac-autosize-floor-furnace-propane-only.xml' => 'base-hvac-floor-furnace-propane-only.xml', + 'base-hvac-autosize-furnace-elec-only.xml' => 'base-hvac-furnace-elec-only.xml', + 'base-hvac-autosize-furnace-gas-central-ac-2-speed.xml' => 'base-hvac-furnace-gas-central-ac-2-speed.xml', + 'base-hvac-autosize-furnace-gas-central-ac-var-speed.xml' => 'base-hvac-furnace-gas-central-ac-var-speed.xml', + 'base-hvac-autosize-furnace-gas-only.xml' => 'base-hvac-furnace-gas-only.xml', + 'base-hvac-autosize-furnace-gas-room-ac.xml' => 'base-hvac-furnace-gas-room-ac.xml', + 'base-hvac-autosize-ground-to-air-heat-pump.xml' => 'base-hvac-ground-to-air-heat-pump.xml', + 'base-hvac-autosize-ground-to-air-heat-pump-cooling-only.xml' => 'base-hvac-ground-to-air-heat-pump-cooling-only.xml', + 'base-hvac-autosize-ground-to-air-heat-pump-heating-only.xml' => 'base-hvac-ground-to-air-heat-pump-heating-only.xml', + 'base-hvac-autosize-ground-to-air-heat-pump-manual-s-oversize-allowances.xml' => 'base-hvac-autosize-ground-to-air-heat-pump.xml', + 'base-hvac-autosize-mini-split-heat-pump-ducted.xml' => 'base-hvac-mini-split-heat-pump-ducted.xml', + 'base-hvac-autosize-mini-split-heat-pump-ducted-cooling-only.xml' => 'base-hvac-mini-split-heat-pump-ducted-cooling-only.xml', + 'base-hvac-autosize-mini-split-heat-pump-ducted-heating-only.xml' => 'base-hvac-mini-split-heat-pump-ducted-heating-only.xml', + 'base-hvac-autosize-mini-split-heat-pump-ducted-manual-s-oversize-allowances.xml' => 'base-hvac-autosize-mini-split-heat-pump-ducted.xml', + 'base-hvac-autosize-mini-split-air-conditioner-only-ducted.xml' => 'base-hvac-mini-split-air-conditioner-only-ducted.xml', + 'base-hvac-autosize-room-ac-only.xml' => 'base-hvac-room-ac-only.xml', + 'base-hvac-autosize-stove-oil-only.xml' => 'base-hvac-stove-oil-only.xml', + 'base-hvac-autosize-wall-furnace-elec-only.xml' => 'base-hvac-wall-furnace-elec-only.xml', 'base-hvac-boiler-coal-only.xml' => 'base.xml', 'base-hvac-boiler-elec-only.xml' => 'base.xml', 'base-hvac-boiler-gas-central-ac-1-speed.xml' => 'base.xml', @@ -2239,12 +2727,27 @@ def create_hpxmls 'base-hvac-furnace-wood-only.xml' => 'base.xml', 'base-hvac-furnace-x3-dse.xml' => 'base.xml', 'base-hvac-ground-to-air-heat-pump.xml' => 'base.xml', - 'base-hvac-ideal-air.xml' => 'base.xml', + 'base-hvac-ground-to-air-heat-pump-cooling-only.xml' => 'base-hvac-ground-to-air-heat-pump.xml', + 'base-hvac-ground-to-air-heat-pump-heating-only.xml' => 'base-hvac-ground-to-air-heat-pump.xml', + 'base-hvac-install-quality-none-furnace-gas-central-ac-1-speed.xml' => 'base.xml', + 'base-hvac-install-quality-airflow-defect-furnace-gas-central-ac-1-speed.xml' => 'base.xml', + 'base-hvac-install-quality-charge-defect-furnace-gas-central-ac-1-speed.xml' => 'base.xml', + 'base-hvac-install-quality-blower-efficiency-furnace-gas-central-ac-1-speed.xml' => 'base.xml', + 'base-hvac-install-quality-all-air-to-air-heat-pump-1-speed.xml' => 'base-hvac-air-to-air-heat-pump-1-speed.xml', + 'base-hvac-install-quality-all-air-to-air-heat-pump-2-speed.xml' => 'base-hvac-air-to-air-heat-pump-2-speed.xml', + 'base-hvac-install-quality-all-air-to-air-heat-pump-var-speed.xml' => 'base-hvac-air-to-air-heat-pump-var-speed.xml', + 'base-hvac-install-quality-all-furnace-gas-central-ac-1-speed.xml' => 'base.xml', + 'base-hvac-install-quality-all-furnace-gas-central-ac-2-speed.xml' => 'base-hvac-furnace-gas-central-ac-2-speed.xml', + 'base-hvac-install-quality-all-furnace-gas-central-ac-var-speed.xml' => 'base-hvac-furnace-gas-central-ac-var-speed.xml', + 'base-hvac-install-quality-all-furnace-gas-only.xml' => 'base-hvac-furnace-gas-only.xml', + 'base-hvac-install-quality-all-ground-to-air-heat-pump.xml' => 'base-hvac-ground-to-air-heat-pump.xml', + 'base-hvac-install-quality-all-mini-split-heat-pump-ducted.xml' => 'base-hvac-mini-split-heat-pump-ducted.xml', + 'base-hvac-install-quality-all-mini-split-air-conditioner-only-ducted.xml' => 'base-hvac-mini-split-air-conditioner-only-ducted.xml', 'base-hvac-mini-split-air-conditioner-only-ducted.xml' => 'base.xml', 'base-hvac-mini-split-air-conditioner-only-ductless.xml' => 'base-hvac-mini-split-air-conditioner-only-ducted.xml', 'base-hvac-mini-split-heat-pump-ducted.xml' => 'base.xml', - 'base-hvac-mini-split-heat-pump-ducted-heating-only.xml' => 'base-hvac-mini-split-heat-pump-ducted.xml', 'base-hvac-mini-split-heat-pump-ducted-cooling-only.xml' => 'base-hvac-mini-split-heat-pump-ducted.xml', + 'base-hvac-mini-split-heat-pump-ducted-heating-only.xml' => 'base-hvac-mini-split-heat-pump-ducted.xml', 'base-hvac-mini-split-heat-pump-ductless.xml' => 'base-hvac-mini-split-heat-pump-ducted.xml', 'base-hvac-multiple.xml' => 'base.xml', 'base-hvac-multiple2.xml' => 'base.xml', @@ -2264,10 +2767,14 @@ def create_hpxmls 'base-lighting-detailed.xml' => 'base.xml', 'base-lighting-none.xml' => 'base.xml', 'base-location-AMY-2012.xml' => 'base.xml', - 'base-location-baltimore-md.xml' => 'base.xml', + 'base-location-baltimore-md.xml' => 'base-foundation-unvented-crawlspace.xml', 'base-location-dallas-tx.xml' => 'base-foundation-slab.xml', - 'base-location-duluth-mn.xml' => 'base.xml', + 'base-location-duluth-mn.xml' => 'base-foundation-unconditioned-basement.xml', + 'base-location-helena-mt.xml' => 'base.xml', + 'base-location-honolulu-hi.xml' => 'base-foundation-slab.xml', 'base-location-miami-fl.xml' => 'base-foundation-slab.xml', + 'base-location-phoenix-az.xml' => 'base-foundation-slab.xml', + 'base-location-portland-or.xml' => 'base-foundation-vented-crawlspace.xml', 'base-mechvent-balanced.xml' => 'base.xml', 'base-mechvent-bath-kitchen-fans.xml' => 'base.xml', 'base-mechvent-cfis.xml' => 'base.xml', @@ -2288,8 +2795,9 @@ def create_hpxmls 'base-misc-loads-large-uncommon2.xml' => 'base-misc-loads-large-uncommon.xml', 'base-misc-loads-none.xml' => 'base.xml', 'base-misc-neighbor-shading.xml' => 'base.xml', - 'base-misc-shelter-coefficient.xml' => 'base.xml', + 'base-misc-shielding-of-home.xml' => 'base.xml', 'base-misc-usage-multiplier.xml' => 'base.xml', + 'base-multiple-buildings.xml' => 'base.xml', 'base-pv.xml' => 'base.xml', 'base-simcontrol-calendar-year-custom.xml' => 'base.xml', 'base-simcontrol-daylight-saving-custom.xml' => 'base.xml', @@ -2297,42 +2805,8 @@ def create_hpxmls 'base-simcontrol-runperiod-1-month.xml' => 'base.xml', 'base-simcontrol-timestep-10-mins.xml' => 'base.xml', 'base-schedules-stochastic.xml' => 'base.xml', + 'base-schedules-stochastic-vacant.xml' => 'base-schedules-stochastic.xml', 'base-schedules-user-specified.xml' => 'base.xml', - - 'hvac_autosizing/base-autosize.xml' => 'base.xml', - 'hvac_autosizing/base-hvac-air-to-air-heat-pump-1-speed-autosize.xml' => 'base-hvac-air-to-air-heat-pump-1-speed.xml', - 'hvac_autosizing/base-hvac-air-to-air-heat-pump-1-speed-autosize-manual-s-oversize-allowances.xml' => 'hvac_autosizing/base-hvac-air-to-air-heat-pump-1-speed-autosize.xml', - 'hvac_autosizing/base-hvac-air-to-air-heat-pump-2-speed-autosize.xml' => 'base-hvac-air-to-air-heat-pump-2-speed.xml', - 'hvac_autosizing/base-hvac-air-to-air-heat-pump-2-speed-autosize-manual-s-oversize-allowances.xml' => 'hvac_autosizing/base-hvac-air-to-air-heat-pump-2-speed-autosize.xml', - 'hvac_autosizing/base-hvac-air-to-air-heat-pump-var-speed-autosize.xml' => 'base-hvac-air-to-air-heat-pump-var-speed.xml', - 'hvac_autosizing/base-hvac-air-to-air-heat-pump-var-speed-autosize-manual-s-oversize-allowances.xml' => 'hvac_autosizing/base-hvac-air-to-air-heat-pump-var-speed-autosize.xml', - 'hvac_autosizing/base-hvac-boiler-elec-only-autosize.xml' => 'base-hvac-boiler-elec-only.xml', - 'hvac_autosizing/base-hvac-boiler-gas-central-ac-1-speed-autosize.xml' => 'base-hvac-boiler-gas-central-ac-1-speed.xml', - 'hvac_autosizing/base-hvac-boiler-gas-only-autosize.xml' => 'base-hvac-boiler-gas-only.xml', - 'hvac_autosizing/base-hvac-central-ac-only-1-speed-autosize.xml' => 'base-hvac-central-ac-only-1-speed.xml', - 'hvac_autosizing/base-hvac-central-ac-only-2-speed-autosize.xml' => 'base-hvac-central-ac-only-2-speed.xml', - 'hvac_autosizing/base-hvac-central-ac-only-var-speed-autosize.xml' => 'base-hvac-central-ac-only-var-speed.xml', - 'hvac_autosizing/base-hvac-central-ac-plus-air-to-air-heat-pump-heating-autosize.xml' => 'base-hvac-central-ac-plus-air-to-air-heat-pump-heating.xml', - 'hvac_autosizing/base-hvac-dual-fuel-air-to-air-heat-pump-1-speed-autosize.xml' => 'base-hvac-dual-fuel-air-to-air-heat-pump-1-speed.xml', - 'hvac_autosizing/base-hvac-dual-fuel-mini-split-heat-pump-ducted-autosize.xml' => 'base-hvac-dual-fuel-mini-split-heat-pump-ducted.xml', - 'hvac_autosizing/base-hvac-elec-resistance-only-autosize.xml' => 'base-hvac-elec-resistance-only.xml', - 'hvac_autosizing/base-hvac-evap-cooler-furnace-gas-autosize.xml' => 'base-hvac-evap-cooler-furnace-gas.xml', - 'hvac_autosizing/base-hvac-floor-furnace-propane-only-autosize.xml' => 'base-hvac-floor-furnace-propane-only.xml', - 'hvac_autosizing/base-hvac-furnace-elec-only-autosize.xml' => 'base-hvac-furnace-elec-only.xml', - 'hvac_autosizing/base-hvac-furnace-gas-central-ac-2-speed-autosize.xml' => 'base-hvac-furnace-gas-central-ac-2-speed.xml', - 'hvac_autosizing/base-hvac-furnace-gas-central-ac-var-speed-autosize.xml' => 'base-hvac-furnace-gas-central-ac-var-speed.xml', - 'hvac_autosizing/base-hvac-furnace-gas-only-autosize.xml' => 'base-hvac-furnace-gas-only.xml', - 'hvac_autosizing/base-hvac-furnace-gas-room-ac-autosize.xml' => 'base-hvac-furnace-gas-room-ac.xml', - 'hvac_autosizing/base-hvac-ground-to-air-heat-pump-autosize.xml' => 'base-hvac-ground-to-air-heat-pump.xml', - 'hvac_autosizing/base-hvac-ground-to-air-heat-pump-autosize-manual-s-oversize-allowances.xml' => 'hvac_autosizing/base-hvac-ground-to-air-heat-pump-autosize.xml', - 'hvac_autosizing/base-hvac-mini-split-heat-pump-ducted-autosize.xml' => 'base-hvac-mini-split-heat-pump-ducted.xml', - 'hvac_autosizing/base-hvac-mini-split-heat-pump-ducted-autosize-manual-s-oversize-allowances.xml' => 'hvac_autosizing/base-hvac-mini-split-heat-pump-ducted-autosize.xml', - 'hvac_autosizing/base-hvac-mini-split-heat-pump-ducted-heating-only-autosize.xml' => 'base-hvac-mini-split-heat-pump-ducted-heating-only.xml', - 'hvac_autosizing/base-hvac-mini-split-heat-pump-ducted-cooling-only-autosize.xml' => 'base-hvac-mini-split-heat-pump-ducted-cooling-only.xml', - 'hvac_autosizing/base-hvac-mini-split-air-conditioner-only-ducted-autosize.xml' => 'base-hvac-mini-split-air-conditioner-only-ducted.xml', - 'hvac_autosizing/base-hvac-room-ac-only-autosize.xml' => 'base-hvac-room-ac-only.xml', - 'hvac_autosizing/base-hvac-stove-oil-only-autosize.xml' => 'base-hvac-stove-oil-only.xml', - 'hvac_autosizing/base-hvac-wall-furnace-elec-only-autosize.xml' => 'base-hvac-wall-furnace-elec-only.xml', } puts "Generating #{hpxmls_files.size} HPXML files..." @@ -2418,6 +2892,9 @@ def create_hpxmls elsif ['invalid_files/invalid-schema-version.xml'].include? derivative root = XMLHelper.get_element(hpxml_doc, '/HPXML') XMLHelper.add_attribute(root, 'schemaVersion', '2.3') + elsif ['invalid_files/invalid-id2.xml'].include? derivative + element = XMLHelper.get_element(hpxml_doc, '/HPXML/Building/BuildingDetails/Enclosure/Skylights/Skylight/SystemIdentifier') + XMLHelper.delete_attribute(element, 'id') end if derivative.include? 'ASHRAE_Standard_140' @@ -2428,6 +2905,20 @@ def create_hpxmls XMLHelper.write_file(hpxml_doc, hpxml_path) + if ['base-multiple-buildings.xml', + 'invalid_files/multiple-buildings-without-building-id.xml', + 'invalid_files/multiple-buildings-wrong-building-id.xml'].include? derivative + # HPXML class doesn't support multiple buildings, so we'll stitch together manually. + hpxml_element = XMLHelper.get_element(hpxml_doc, '/HPXML') + building_element = XMLHelper.get_element(hpxml_element, 'Building') + for i in 2..3 + new_building_element = Marshal.load(Marshal.dump(building_element)) + XMLHelper.add_attribute(XMLHelper.get_element(new_building_element, 'BuildingID'), 'id', "MyBuilding#{i}") + hpxml_element.children << new_building_element + end + XMLHelper.write_file(hpxml_doc, hpxml_path) + end + if not hpxml_path.include? 'invalid_files' # Validate file against HPXML schema schemas_dir = File.absolute_path(File.join(File.dirname(__FILE__), 'HPXMLtoOpenStudio/resources')) @@ -2518,6 +3009,8 @@ def set_hpxml_header(hpxml_file, hpxml) hpxml.header.timestep = nil elsif ['base-schedules-stochastic.xml'].include? hpxml_file hpxml.header.schedules_path = 'BuildResidentialHPXML/tests/schedules/stochastic.csv' + elsif ['base-schedules-stochastic-vacant.xml'].include? hpxml_file + hpxml.header.schedules_path = 'BuildResidentialHPXML/tests/schedules/vacant.csv' elsif ['base-schedules-user-specified.xml'].include? hpxml_file hpxml.header.schedules_path = 'BuildResidentialHPXML/tests/schedules/user-specified.csv' elsif ['invalid_files/invalid-input-parameters.xml'].include? hpxml_file @@ -2529,8 +3022,8 @@ def set_hpxml_site(hpxml_file, hpxml) if ['base.xml'].include? hpxml_file hpxml.site.fuels = [HPXML::FuelTypeElectricity, HPXML::FuelTypeNaturalGas] hpxml.site.site_type = HPXML::SiteTypeSuburban - elsif ['base-misc-shelter-coefficient.xml'].include? hpxml_file - hpxml.site.shelter_coefficient = 0.8 + elsif ['base-misc-shielding-of-home.xml'].include? hpxml_file + hpxml.site.shielding_of_home = HPXML::ShieldingWellShielded elsif ['base-misc-defaults.xml'].include? hpxml_file hpxml.site.site_type = nil elsif ['invalid_files/invalid-input-parameters.xml'].include? hpxml_file @@ -2559,7 +3052,6 @@ def set_hpxml_building_construction(hpxml_file, hpxml) hpxml.building_construction.conditioned_floor_area = 1539 hpxml.building_construction.conditioned_building_volume = 12312 hpxml.building_construction.residential_facility_type = HPXML::ResidentialTypeSFD - hpxml.building_construction.use_only_ideal_air_system = true elsif ['ASHRAE_Standard_140/L322XC.xml'].include? hpxml_file hpxml.building_construction.number_of_conditioned_floors = 2 hpxml.building_construction.conditioned_floor_area = 3078 @@ -2601,8 +3093,6 @@ def set_hpxml_building_construction(hpxml_file, hpxml) hpxml.building_construction.number_of_conditioned_floors -= 1 hpxml.building_construction.conditioned_floor_area -= 1350 hpxml.building_construction.conditioned_building_volume -= 1350 * 8 - elsif ['base-hvac-ideal-air.xml'].include? hpxml_file - hpxml.building_construction.use_only_ideal_air_system = true elsif ['base-atticroof-conditioned.xml'].include? hpxml_file hpxml.building_construction.number_of_conditioned_floors += 1 hpxml.building_construction.number_of_conditioned_floors_above_grade += 1 @@ -2615,7 +3105,8 @@ def set_hpxml_building_construction(hpxml_file, hpxml) hpxml.building_construction.number_of_conditioned_floors_above_grade += 1 hpxml.building_construction.conditioned_floor_area += 1350 hpxml.building_construction.conditioned_building_volume += 1350 * 8 - elsif ['base-enclosure-2stories-garage.xml'].include? hpxml_file + elsif ['base-enclosure-2stories-garage.xml', + 'base-foundation-basement-garage.xml'].include? hpxml_file hpxml.building_construction.conditioned_floor_area -= 400 * 2 hpxml.building_construction.conditioned_building_volume -= 400 * 2 * 8 elsif ['base-misc-defaults.xml'].include? hpxml_file @@ -2628,12 +3119,16 @@ def set_hpxml_building_construction(hpxml_file, hpxml) hpxml.building_construction.number_of_conditioned_floors = 1.5 hpxml.building_construction.number_of_conditioned_floors_above_grade = 1.5 elsif ['invalid_files/enclosure-floor-area-exceeds-cfa.xml'].include? hpxml_file - hpxml.building_construction.conditioned_floor_area /= 5.0 + hpxml.building_construction.conditioned_floor_area = 1348.8 + elsif ['invalid_files/enclosure-floor-area-exceeds-cfa2.xml'].include? hpxml_file + hpxml.building_construction.conditioned_floor_area = 898.8 elsif ['invalid_files/num-bedrooms-exceeds-limit.xml'].include? hpxml_file hpxml.building_construction.number_of_bedrooms = 40 elsif ['invalid_files/invalid-facility-type-equipment.xml', 'invalid_files/invalid-facility-type-surfaces.xml'].include? hpxml_file hpxml.building_construction.residential_facility_type = HPXML::ResidentialTypeSFD + elsif ['invalid_files/invalid-number-of-conditioned-floors.xml'].include? hpxml_file + hpxml.building_construction.number_of_conditioned_floors_above_grade = hpxml.building_construction.number_of_conditioned_floors + 1 end end @@ -2657,30 +3152,50 @@ def set_hpxml_climate_and_risk_zones(hpxml_file, hpxml) hpxml.climate_and_risk_zones.weather_station_name = 'Las Vegas, NV' hpxml.climate_and_risk_zones.weather_station_epw_filepath = 'USA_NV_Las.Vegas-McCarran.Intl.AP.723860_TMY3.epw' elsif ['base.xml'].include? hpxml_file - hpxml.climate_and_risk_zones.iecc_zone = '5B' + hpxml.climate_and_risk_zones.iecc_zone = Location.get_climate_zone_iecc(725650) hpxml.climate_and_risk_zones.weather_station_name = 'Denver, CO' hpxml.climate_and_risk_zones.weather_station_epw_filepath = 'USA_CO_Denver.Intl.AP.725650_TMY3.epw' hpxml.header.state_code = 'CO' elsif ['base-location-baltimore-md.xml'].include? hpxml_file - hpxml.climate_and_risk_zones.iecc_zone = '4A' + hpxml.climate_and_risk_zones.iecc_zone = Location.get_climate_zone_iecc(724060) hpxml.climate_and_risk_zones.weather_station_name = 'Baltimore, MD' hpxml.climate_and_risk_zones.weather_station_epw_filepath = 'USA_MD_Baltimore-Washington.Intl.AP.724060_TMY3.epw' hpxml.header.state_code = 'MD' elsif ['base-location-dallas-tx.xml'].include? hpxml_file - hpxml.climate_and_risk_zones.iecc_zone = '3A' + hpxml.climate_and_risk_zones.iecc_zone = Location.get_climate_zone_iecc(722590) hpxml.climate_and_risk_zones.weather_station_name = 'Dallas, TX' hpxml.climate_and_risk_zones.weather_station_epw_filepath = 'USA_TX_Dallas-Fort.Worth.Intl.AP.722590_TMY3.epw' hpxml.header.state_code = 'TX' elsif ['base-location-duluth-mn.xml'].include? hpxml_file - hpxml.climate_and_risk_zones.iecc_zone = '7' + hpxml.climate_and_risk_zones.iecc_zone = Location.get_climate_zone_iecc(727450) hpxml.climate_and_risk_zones.weather_station_name = 'Duluth, MN' hpxml.climate_and_risk_zones.weather_station_epw_filepath = 'USA_MN_Duluth.Intl.AP.727450_TMY3.epw' hpxml.header.state_code = 'MN' + elsif ['base-location-helena-mt.xml'].include? hpxml_file + hpxml.climate_and_risk_zones.iecc_zone = Location.get_climate_zone_iecc(727720) + hpxml.climate_and_risk_zones.weather_station_name = 'Helena, MT' + hpxml.climate_and_risk_zones.weather_station_epw_filepath = 'USA_MT_Helena.Rgnl.AP.727720_TMY3.epw' + hpxml.header.state_code = 'MT' + elsif ['base-location-honolulu-hi.xml'].include? hpxml_file + hpxml.climate_and_risk_zones.iecc_zone = Location.get_climate_zone_iecc(911820) + hpxml.climate_and_risk_zones.weather_station_name = 'Honolulu, HI' + hpxml.climate_and_risk_zones.weather_station_epw_filepath = 'USA_HI_Honolulu.Intl.AP.911820_TMY3.epw' + hpxml.header.state_code = 'HI' elsif ['base-location-miami-fl.xml'].include? hpxml_file - hpxml.climate_and_risk_zones.iecc_zone = '1A' + hpxml.climate_and_risk_zones.iecc_zone = Location.get_climate_zone_iecc(722020) hpxml.climate_and_risk_zones.weather_station_name = 'Miami, FL' hpxml.climate_and_risk_zones.weather_station_epw_filepath = 'USA_FL_Miami.Intl.AP.722020_TMY3.epw' hpxml.header.state_code = 'FL' + elsif ['base-location-phoenix-az.xml'].include? hpxml_file + hpxml.climate_and_risk_zones.iecc_zone = Location.get_climate_zone_iecc(722780) + hpxml.climate_and_risk_zones.weather_station_name = 'Phoenix, AZ' + hpxml.climate_and_risk_zones.weather_station_epw_filepath = 'USA_AZ_Phoenix-Sky.Harbor.Intl.AP.722780_TMY3.epw' + hpxml.header.state_code = 'AZ' + elsif ['base-location-portland-or.xml'].include? hpxml_file + hpxml.climate_and_risk_zones.iecc_zone = Location.get_climate_zone_iecc(726980) + hpxml.climate_and_risk_zones.weather_station_name = 'Portland, OR' + hpxml.climate_and_risk_zones.weather_station_epw_filepath = 'USA_OR_Portland.Intl.AP.726980_TMY3.epw' + hpxml.header.state_code = 'OR' elsif ['base-location-AMY-2012.xml'].include? hpxml_file hpxml.climate_and_risk_zones.weather_station_name = 'Boulder, CO' hpxml.climate_and_risk_zones.weather_station_epw_filepath = 'US_CO_Boulder_AMY_2012.epw' @@ -2729,6 +3244,8 @@ def set_hpxml_air_infiltration_measurements(hpxml_file, hpxml) end if ['base-misc-defaults.xml'].include? hpxml_file hpxml.air_infiltration_measurements[0].infiltration_volume = nil + elsif ['invalid_files/invalid-infiltration-volume.xml'].include? hpxml_file + hpxml.air_infiltration_measurements[0].infiltration_volume = infil_volume * 0.25 else hpxml.air_infiltration_measurements[0].infiltration_volume = infil_volume end @@ -2899,16 +3416,21 @@ def set_hpxml_roofs(hpxml_file, hpxml) elsif ['base-atticroof-cathedral.xml'].include? hpxml_file hpxml.roofs[0].interior_adjacent_to = HPXML::LocationLivingSpace hpxml.roofs[0].insulation_assembly_r_value = 25.8 - elsif ['base-enclosure-garage.xml'].include? hpxml_file + elsif ['base-enclosure-garage.xml', + 'base-foundation-basement-garage.xml'].include? hpxml_file hpxml.roofs[0].area += 670 elsif ['base-atticroof-unvented-insulated-roof.xml'].include? hpxml_file hpxml.roofs[0].insulation_assembly_r_value = 25.8 - elsif ['base-enclosure-split-surfaces.xml'].include? hpxml_file + elsif ['base-enclosure-split-surfaces.xml', + 'base-enclosure-split-surfaces2.xml'].include? hpxml_file for n in 1..hpxml.roofs.size hpxml.roofs[n - 1].area /= 9.0 for i in 2..9 hpxml.roofs << hpxml.roofs[n - 1].dup hpxml.roofs[-1].id += i.to_s + if hpxml_file == 'base-enclosure-split-surfaces2.xml' + hpxml.roofs[-1].insulation_assembly_r_value += 0.01 * i + end end end hpxml.roofs << hpxml.roofs[-1].dup @@ -2986,6 +3508,15 @@ def set_hpxml_rim_joists(hpxml_file, hpxml) solar_absorptance: 0.7, emittance: 0.92, insulation_assembly_r_value: 23.0) + elsif ['base-bldgtype-single-family-attached.xml'].include? hpxml_file + hpxml.rim_joists[-1].area = 66 + hpxml.rim_joists.add(id: 'RimJoistOther', + exterior_adjacent_to: HPXML::LocationBasementConditioned, + interior_adjacent_to: HPXML::LocationBasementConditioned, + area: 28, + solar_absorptance: 0.7, + emittance: 0.92, + insulation_assembly_r_value: 4.0) elsif ['base-bldgtype-multifamily.xml'].include? hpxml_file hpxml.rim_joists.clear elsif ['base-enclosure-walltypes.xml'].include? hpxml_file @@ -3011,7 +3542,7 @@ def set_hpxml_rim_joists(hpxml_file, hpxml) elsif ['base-foundation-unconditioned-basement.xml'].include? hpxml_file for i in 0..hpxml.rim_joists.size - 1 hpxml.rim_joists[i].interior_adjacent_to = HPXML::LocationBasementUnconditioned - hpxml.rim_joists[i].insulation_assembly_r_value = 2.3 + hpxml.rim_joists[i].insulation_assembly_r_value = 4.0 end elsif ['base-foundation-unconditioned-basement-wall-insulation.xml'].include? hpxml_file for i in 0..hpxml.rim_joists.size - 1 @@ -3035,7 +3566,9 @@ def set_hpxml_rim_joists(hpxml_file, hpxml) area: 81, solar_absorptance: 0.7, emittance: 0.92, - insulation_assembly_r_value: 2.3) + insulation_assembly_r_value: 4.0) + elsif ['base-enclosure-garage.xml'].include? hpxml_file + hpxml.rim_joists[-1].area = 116 elsif ['base-enclosure-2stories.xml'].include? hpxml_file hpxml.rim_joists.add(id: 'RimJoist2ndStory', exterior_adjacent_to: HPXML::LocationOutside, @@ -3045,12 +3578,16 @@ def set_hpxml_rim_joists(hpxml_file, hpxml) solar_absorptance: 0.7, emittance: 0.92, insulation_assembly_r_value: 23.0) - elsif ['base-enclosure-split-surfaces.xml'].include? hpxml_file + elsif ['base-enclosure-split-surfaces.xml', + 'base-enclosure-split-surfaces2.xml'].include? hpxml_file for n in 1..hpxml.rim_joists.size hpxml.rim_joists[n - 1].area /= 9.0 for i in 2..9 hpxml.rim_joists << hpxml.rim_joists[n - 1].dup hpxml.rim_joists[-1].id += i.to_s + if hpxml_file == 'base-enclosure-split-surfaces2.xml' + hpxml.rim_joists[-1].insulation_assembly_r_value += 0.01 * i + end end end hpxml.rim_joists << hpxml.rim_joists[-1].dup @@ -3421,12 +3958,16 @@ def set_hpxml_walls(hpxml_file, hpxml) elsif ['base-bldgtype-multifamily-adjacent-to-non-freezing-space.xml'].include? hpxml_file hpxml.walls[-1].exterior_adjacent_to = HPXML::LocationOtherNonFreezingSpace hpxml.walls[-1].insulation_assembly_r_value = 23 - elsif ['base-enclosure-split-surfaces.xml'].include? hpxml_file + elsif ['base-enclosure-split-surfaces.xml', + 'base-enclosure-split-surfaces2.xml'].include? hpxml_file for n in 1..hpxml.walls.size hpxml.walls[n - 1].area /= 9.0 for i in 2..9 hpxml.walls << hpxml.walls[n - 1].dup hpxml.walls[-1].id += i.to_s + if hpxml_file == 'base-enclosure-split-surfaces2.xml' + hpxml.walls[-1].insulation_assembly_r_value += 0.01 * i + end end end hpxml.walls << hpxml.walls[-1].dup @@ -3445,6 +3986,8 @@ def set_hpxml_walls(hpxml_file, hpxml) solar_absorptance: 0.7, emittance: 0.92, insulation_assembly_r_value: 4.0) + elsif ['invalid_files/invalid-assembly-effective-rvalue.xml'].include? hpxml_file + hpxml.walls[0].insulation_assembly_r_value = 0 elsif ['base-misc-defaults.xml'].include? hpxml_file hpxml.walls.each do |wall| wall.siding = nil @@ -3452,6 +3995,24 @@ def set_hpxml_walls(hpxml_file, hpxml) wall.color = HPXML::ColorMedium wall.emittance = nil end + elsif ['base-foundation-basement-garage.xml'].include? hpxml_file + hpxml.walls.add(id: 'WallGarageBasement', + exterior_adjacent_to: HPXML::LocationGarage, + interior_adjacent_to: HPXML::LocationBasementConditioned, + wall_type: HPXML::WallTypeWoodStud, + area: 320, + solar_absorptance: 0.7, + emittance: 0.92, + insulation_assembly_r_value: 23) + hpxml.walls.add(id: 'WallGarageExterior', + exterior_adjacent_to: HPXML::LocationOutside, + interior_adjacent_to: HPXML::LocationGarage, + wall_type: HPXML::WallTypeWoodStud, + siding: HPXML::SidingTypeWood, + area: 320, + solar_absorptance: 0.7, + emittance: 0.92, + insulation_assembly_r_value: 4) end hpxml.walls.each do |wall| next unless wall.is_interior @@ -3741,19 +4302,21 @@ def set_hpxml_foundation_walls(hpxml_file, hpxml) insulation_exterior_distance_to_top: 0, insulation_exterior_distance_to_bottom: 4, insulation_exterior_r_value: 8.9) - elsif ['base-enclosure-split-surfaces.xml'].include? hpxml_file + elsif ['base-enclosure-split-surfaces.xml', + 'base-enclosure-split-surfaces2.xml'].include? hpxml_file for n in 1..hpxml.foundation_walls.size hpxml.foundation_walls[n - 1].area /= 9.0 for i in 2..9 hpxml.foundation_walls << hpxml.foundation_walls[n - 1].dup hpxml.foundation_walls[-1].id += i.to_s + if hpxml_file == 'base-enclosure-split-surfaces2.xml' + hpxml.foundation_walls[-1].insulation_exterior_r_value += 0.01 * i + end end end hpxml.foundation_walls << hpxml.foundation_walls[-1].dup hpxml.foundation_walls[-1].id = 'TinyFoundationWall' hpxml.foundation_walls[-1].area = 0.05 - elsif ['base-enclosure-2stories-garage.xml'].include? hpxml_file - hpxml.foundation_walls[-1].area = 880 elsif ['base-misc-defaults.xml'].include? hpxml_file hpxml.foundation_walls.each do |fwall| fwall.thickness = nil @@ -3774,6 +4337,10 @@ def set_hpxml_foundation_walls(hpxml_file, hpxml) insulation_exterior_r_value: 0) elsif ['invalid_files/enclosure-basement-missing-exterior-foundation-wall.xml'].include? hpxml_file hpxml.foundation_walls[0].delete + elsif ['invalid_files/invalid-foundation-wall-properties.xml'].include? hpxml_file + hpxml.foundation_walls[0].insulation_interior_distance_to_top = 12 + hpxml.foundation_walls[0].insulation_interior_distance_to_bottom = 10 + hpxml.foundation_walls[0].depth_below_grade = 9 end end @@ -3893,6 +4460,12 @@ def set_hpxml_frame_floors(hpxml_file, hpxml) interior_adjacent_to: HPXML::LocationLivingSpace, area: 400, insulation_assembly_r_value: 39.3) + elsif ['base-foundation-basement-garage.xml'].include? hpxml_file + hpxml.frame_floors.add(id: 'FloorAbovegarage', + exterior_adjacent_to: HPXML::LocationGarage, + interior_adjacent_to: HPXML::LocationLivingSpace, + area: 400, + insulation_assembly_r_value: 39.3) elsif ['base-atticroof-unvented-insulated-roof.xml'].include? hpxml_file hpxml.frame_floors[0].insulation_assembly_r_value = 2.1 elsif ['base-bldgtype-multifamily-adjacent-to-multiple.xml'].include? hpxml_file @@ -3915,12 +4488,16 @@ def set_hpxml_frame_floors(hpxml_file, hpxml) area: 150, insulation_assembly_r_value: 2.1, other_space_above_or_below: HPXML::FrameFloorOtherSpaceBelow) - elsif ['base-enclosure-split-surfaces.xml'].include? hpxml_file + elsif ['base-enclosure-split-surfaces.xml', + 'base-enclosure-split-surfaces2.xml'].include? hpxml_file for n in 1..hpxml.frame_floors.size hpxml.frame_floors[n - 1].area /= 9.0 for i in 2..9 hpxml.frame_floors << hpxml.frame_floors[n - 1].dup hpxml.frame_floors[-1].id += i.to_s + if hpxml_file == 'base-enclosure-split-surfaces2.xml' + hpxml.frame_floors[-1].insulation_assembly_r_value += 0.01 * i + end end end hpxml.frame_floors << hpxml.frame_floors[-1].dup @@ -3938,8 +4515,10 @@ def set_hpxml_frame_floors(hpxml_file, hpxml) 'invalid_files/enclosure-garage-missing-roof-ceiling.xml'].include? hpxml_file hpxml.frame_floors[1].delete elsif ['invalid_files/multifamily-reference-surface.xml'].include? hpxml_file - hpxml.frame_floors[0].exterior_adjacent_to = HPXML::LocationOtherHeatedSpace - hpxml.frame_floors[0].other_space_above_or_below = HPXML::FrameFloorOtherSpaceAbove + hpxml.frame_floors << hpxml.frame_floors[0].dup + hpxml.frame_floors[1].id += '2' + hpxml.frame_floors[1].exterior_adjacent_to = HPXML::LocationOtherHeatedSpace + hpxml.frame_floors[1].other_space_above_or_below = HPXML::FrameFloorOtherSpaceAbove elsif ['invalid_files/invalid-facility-type-surfaces.xml'].include? hpxml_file hpxml.frame_floors.add(id: 'FloorOther', exterior_adjacent_to: HPXML::LocationOtherHousingUnit, @@ -4042,7 +4621,8 @@ def set_hpxml_slabs(hpxml_file, hpxml) carpet_r_value: 0) elsif ['base-foundation-ambient.xml'].include? hpxml_file hpxml.slabs.clear - elsif ['base-enclosure-2stories-garage.xml'].include? hpxml_file + elsif ['base-enclosure-2stories-garage.xml', + 'base-foundation-basement-garage.xml'].include? hpxml_file hpxml.slabs[0].area -= 400 hpxml.slabs[0].exposed_perimeter -= 40 hpxml.slabs.add(id: 'SlabUnderGarage', @@ -4106,13 +4686,18 @@ def set_hpxml_slabs(hpxml_file, hpxml) under_slab_insulation_r_value: 0, carpet_fraction: 0, carpet_r_value: 0) - elsif ['base-enclosure-split-surfaces.xml'].include? hpxml_file + elsif ['base-enclosure-split-surfaces.xml', + 'base-enclosure-split-surfaces2.xml'].include? hpxml_file for n in 1..hpxml.slabs.size hpxml.slabs[n - 1].area /= 9.0 hpxml.slabs[n - 1].exposed_perimeter /= 9.0 for i in 2..9 hpxml.slabs << hpxml.slabs[n - 1].dup hpxml.slabs[-1].id += i.to_s + if hpxml_file == 'base-enclosure-split-surfaces2.xml' + hpxml.slabs[-1].perimeter_insulation_depth += 0.01 * i + hpxml.slabs[-1].perimeter_insulation_r_value += 0.01 * i + end end end hpxml.slabs << hpxml.slabs[-1].dup @@ -4124,11 +4709,6 @@ def set_hpxml_slabs(hpxml_file, hpxml) slab.carpet_fraction = nil slab.carpet_fraction = nil end - elsif ['invalid_files/mismatched-slab-and-foundation-wall.xml'].include? hpxml_file - hpxml.slabs[0].interior_adjacent_to = HPXML::LocationBasementUnconditioned - hpxml.slabs[0].depth_below_grade = 7.0 - elsif ['invalid_files/slab-zero-exposed-perimeter.xml'].include? hpxml_file - hpxml.slabs[0].exposed_perimeter = 0 elsif ['invalid_files/enclosure-living-missing-floor-slab.xml', 'invalid_files/enclosure-basement-missing-slab.xml'].include? hpxml_file hpxml.slabs[0].delete @@ -4298,17 +4878,26 @@ def set_hpxml_windows(hpxml_file, hpxml) hpxml.windows[0].overhangs_depth = 2.5 hpxml.windows[0].overhangs_distance_to_top_of_window = 0 hpxml.windows[0].overhangs_distance_to_bottom_of_window = 4 + hpxml.windows[1].overhangs_depth = 0 + hpxml.windows[1].overhangs_distance_to_top_of_window = 1 + hpxml.windows[1].overhangs_distance_to_bottom_of_window = 5 hpxml.windows[2].overhangs_depth = 1.5 hpxml.windows[2].overhangs_distance_to_top_of_window = 2 hpxml.windows[2].overhangs_distance_to_bottom_of_window = 6 hpxml.windows[3].overhangs_depth = 1.5 hpxml.windows[3].overhangs_distance_to_top_of_window = 2 hpxml.windows[3].overhangs_distance_to_bottom_of_window = 7 - elsif ['base-enclosure-windows-interior-shading.xml'].include? hpxml_file + elsif ['base-enclosure-windows-shading.xml'].include? hpxml_file + hpxml.windows[1].exterior_shading_factor_summer = 0.1 + hpxml.windows[1].exterior_shading_factor_winter = 0.9 hpxml.windows[1].interior_shading_factor_summer = 0.01 hpxml.windows[1].interior_shading_factor_winter = 0.99 + hpxml.windows[2].exterior_shading_factor_summer = 0.5 + hpxml.windows[2].exterior_shading_factor_winter = 0.5 hpxml.windows[2].interior_shading_factor_summer = 0.5 hpxml.windows[2].interior_shading_factor_winter = 0.5 + hpxml.windows[3].exterior_shading_factor_summer = 0.0 + hpxml.windows[3].exterior_shading_factor_winter = 1.0 hpxml.windows[3].interior_shading_factor_summer = 0.0 hpxml.windows[3].interior_shading_factor_winter = 1.0 elsif ['base-enclosure-windows-none.xml'].include? hpxml_file @@ -4403,7 +4992,8 @@ def set_hpxml_windows(hpxml_file, hpxml) end elsif ['invalid_files/unattached-window.xml'].include? hpxml_file hpxml.windows[0].wall_idref = 'foobar' - elsif ['base-enclosure-split-surfaces.xml'].include? hpxml_file + elsif ['base-enclosure-split-surfaces.xml', + 'base-enclosure-split-surfaces2.xml'].include? hpxml_file area_adjustments = [] for n in 1..hpxml.windows.size hpxml.windows[n - 1].area /= 9.0 @@ -4415,6 +5005,10 @@ def set_hpxml_windows(hpxml_file, hpxml) if i >= 4 hpxml.windows[-1].fraction_operable = 1.0 end + next unless hpxml_file == 'base-enclosure-split-surfaces2.xml' + hpxml.windows[-1].ufactor += 0.01 * i + hpxml.windows[-1].interior_shading_factor_summer -= 0.02 * i + hpxml.windows[-1].interior_shading_factor_winter -= 0.01 * i end end hpxml.windows << hpxml.windows[-1].dup @@ -4497,17 +5091,33 @@ def set_hpxml_skylights(hpxml_file, hpxml) interior_shading_factor_summer: 1.0, interior_shading_factor_winter: 1.0, roof_idref: 'Roof') + elsif ['base-enclosure-skylights-shading.xml'].include? hpxml_file + hpxml.skylights[0].exterior_shading_factor_summer = 0.1 + hpxml.skylights[0].exterior_shading_factor_winter = 0.9 + hpxml.skylights[0].interior_shading_factor_summer = 0.01 + hpxml.skylights[0].interior_shading_factor_winter = 0.99 + hpxml.skylights[1].exterior_shading_factor_summer = 0.5 + hpxml.skylights[1].exterior_shading_factor_winter = 0.0 + hpxml.skylights[1].interior_shading_factor_summer = 0.5 + hpxml.skylights[1].interior_shading_factor_winter = 1.0 elsif ['invalid_files/net-area-negative-roof.xml'].include? hpxml_file hpxml.skylights[0].area = 4000 elsif ['invalid_files/unattached-skylight.xml'].include? hpxml_file hpxml.skylights[0].roof_idref = 'foobar' - elsif ['base-enclosure-split-surfaces.xml'].include? hpxml_file + elsif ['invalid_files/invalid-id.xml'].include? hpxml_file + hpxml.skylights[0].id = '' + elsif ['base-enclosure-split-surfaces.xml', + 'base-enclosure-split-surfaces2.xml'].include? hpxml_file for n in 1..hpxml.skylights.size hpxml.skylights[n - 1].area /= 9.0 for i in 2..9 hpxml.skylights << hpxml.skylights[n - 1].dup hpxml.skylights[-1].id += i.to_s hpxml.skylights[-1].roof_idref += i.to_s if i % 2 == 0 + next unless hpxml_file == 'base-enclosure-split-surfaces2.xml' + hpxml.skylights[-1].ufactor += 0.01 * i + hpxml.skylights[-1].interior_shading_factor_summer -= 0.02 * i + hpxml.skylights[-1].interior_shading_factor_winter -= 0.01 * i end end hpxml.skylights << hpxml.skylights[-1].dup @@ -4554,6 +5164,17 @@ def set_hpxml_doors(hpxml_file, hpxml) area: 70, azimuth: 180, r_value: 4.4) + elsif ['base-foundation-basement-garage.xml'].include? hpxml_file + hpxml.doors.add(id: 'GarageDoorSouth', + wall_idref: 'WallGarageExterior', + area: 70, + azimuth: 180, + r_value: 4.4) + hpxml.doors.add(id: 'GarageDoorBasement', + wall_idref: 'WallGarageBasement', + area: 4, + azimuth: 0, + r_value: 4.4) elsif ['base-bldgtype-multifamily-adjacent-to-multiple.xml'].include? hpxml_file hpxml.doors.add(id: 'DoorOtherHeatedSpace', wall_idref: 'WallOtherHeatedSpace', @@ -4576,7 +5197,8 @@ def set_hpxml_doors(hpxml_file, hpxml) r_value: 4.4) elsif ['invalid_files/unattached-door.xml'].include? hpxml_file hpxml.doors[0].wall_idref = 'foobar' - elsif ['base-enclosure-split-surfaces.xml'].include? hpxml_file + elsif ['base-enclosure-split-surfaces.xml', + 'base-enclosure-split-surfaces2.xml'].include? hpxml_file area_adjustments = [] for n in 1..hpxml.doors.size hpxml.doors[n - 1].area /= 9.0 @@ -4584,6 +5206,9 @@ def set_hpxml_doors(hpxml_file, hpxml) hpxml.doors << hpxml.doors[n - 1].dup hpxml.doors[-1].id += i.to_s hpxml.doors[-1].wall_idref += i.to_s + if hpxml_file == 'base-enclosure-split-surfaces2.xml' + hpxml.doors[-1].r_value += 0.01 * i + end end end hpxml.doors << hpxml.doors[-1].dup @@ -4624,19 +5249,16 @@ def set_hpxml_heating_systems(hpxml_file, hpxml) 'base-hvac-ground-to-air-heat-pump.xml', 'base-hvac-mini-split-heat-pump-ducted.xml', 'base-hvac-mini-split-air-conditioner-only-ducted.xml', - 'base-hvac-ideal-air.xml', 'base-hvac-none.xml', 'base-hvac-room-ac-only.xml', 'base-bldgtype-multifamily-shared-chiller-only-baseboard.xml', 'base-bldgtype-multifamily-shared-ground-loop-ground-to-air-heat-pump.xml', 'invalid_files/orphaned-hvac-distribution.xml'].include? hpxml_file hpxml.heating_systems.clear - elsif ['base-hvac-furnace-gas-only.xml'].include? hpxml_file - hpxml.heating_systems[0].fan_watts_per_cfm = 0.45 elsif ['base-hvac-boiler-elec-only.xml'].include? hpxml_file hpxml.heating_systems[0].heating_system_type = HPXML::HVACTypeBoiler hpxml.heating_systems[0].heating_system_fuel = HPXML::FuelTypeElectricity - hpxml.heating_systems[0].heating_efficiency_afue = 1 + hpxml.heating_systems[0].heating_efficiency_afue = 1.0 elsif ['base-hvac-boiler-gas-central-ac-1-speed.xml', 'base-hvac-boiler-gas-only.xml'].include? hpxml_file hpxml.heating_systems[0].heating_system_type = HPXML::HVACTypeBoiler @@ -4845,14 +5467,31 @@ def set_hpxml_heating_systems(hpxml_file, hpxml) elsif ['base-bldgtype-multifamily-shared-boiler-only-fan-coil.xml', 'base-bldgtype-multifamily-shared-boiler-chiller-fan-coil.xml'].include? hpxml_file hpxml.heating_systems[0].fan_coil_watts = 150 - elsif ['base-bldgtype-multifamily-shared-boiler-only-water-loop-heat-pump.xml', - 'base-bldgtype-multifamily-shared-boiler-chiller-water-loop-heat-pump.xml'].include? hpxml_file - hpxml.heating_systems[0].wlhp_heating_efficiency_cop = 4.4 elsif ['base-bldgtype-multifamily-shared-boiler-only-fan-coil-eae.xml'].include? hpxml_file hpxml.heating_systems[0].fan_coil_watts = nil hpxml.heating_systems[0].shared_loop_watts = nil hpxml.heating_systems[0].electric_auxiliary_energy = 500.0 - elsif hpxml_file.include?('hvac_autosizing') && (not hpxml.heating_systems.nil?) && (hpxml.heating_systems.size > 0) + elsif ['base-hvac-install-quality-none-furnace-gas-central-ac-1-speed.xml'].include? hpxml_file + hpxml.heating_systems[0].airflow_defect_ratio = 0.0 + elsif ['base-hvac-install-quality-airflow-defect-furnace-gas-central-ac-1-speed.xml'].include? hpxml_file + hpxml.heating_systems[0].airflow_defect_ratio = -0.25 + elsif ['base-hvac-install-quality-blower-efficiency-furnace-gas-central-ac-1-speed.xml'].include? hpxml_file + hpxml.heating_systems[0].fan_watts_per_cfm = 0.365 + elsif ['base-hvac-install-quality-all-furnace-gas-only.xml', + 'base-hvac-install-quality-all-furnace-gas-central-ac-1-speed.xml', + 'base-hvac-install-quality-all-furnace-gas-central-ac-2-speed.xml', + 'base-hvac-install-quality-all-furnace-gas-central-ac-var-speed.xml'].include? hpxml_file + hpxml.heating_systems[0].fan_watts_per_cfm = 0.365 + hpxml.heating_systems[0].airflow_defect_ratio = -0.25 + elsif ['invalid_files/multiple-shared-heating-systems.xml'].include? hpxml_file + hpxml.heating_systems[0].fraction_heat_load_served = 0.5 + hpxml.heating_systems << hpxml.heating_systems[0].dup + hpxml.heating_systems[1].id += '2' + hpxml.heating_systems[1].distribution_system_idref += '2' + elsif ['invalid_files/boiler-invalid-afue.xml', + 'invalid_files/furnace-invalid-afue.xml'].include? hpxml_file + hpxml.heating_systems[0].heating_efficiency_afue *= 100.0 + elsif hpxml_file.include?('base-hvac-autosize') && (not hpxml.heating_systems.nil?) && (hpxml.heating_systems.size > 0) hpxml.heating_systems[0].heating_capacity = nil end end @@ -4888,7 +5527,6 @@ def set_hpxml_cooling_systems(hpxml_file, hpxml) 'base-hvac-furnace-wood-only.xml', 'base-hvac-ground-to-air-heat-pump.xml', 'base-hvac-mini-split-heat-pump-ducted.xml', - 'base-hvac-ideal-air.xml', 'base-hvac-none.xml', 'base-hvac-stove-oil-only.xml', 'base-hvac-stove-wood-pellets-only.xml', @@ -4896,8 +5534,6 @@ def set_hpxml_cooling_systems(hpxml_file, hpxml) 'base-bldgtype-multifamily-shared-boiler-only-baseboard.xml', 'base-bldgtype-multifamily-shared-ground-loop-ground-to-air-heat-pump.xml'].include? hpxml_file hpxml.cooling_systems.clear - elsif ['base-hvac-central-ac-only-1-speed.xml'].include? hpxml_file - hpxml.cooling_systems[0].fan_watts_per_cfm = 0.45 elsif ['base-hvac-boiler-gas-central-ac-1-speed.xml'].include? hpxml_file hpxml.cooling_systems[0].distribution_system_idref = 'HVACDistribution2' elsif ['base-hvac-furnace-gas-central-ac-2-speed.xml', @@ -4915,7 +5551,6 @@ def set_hpxml_cooling_systems(hpxml_file, hpxml) hpxml.cooling_systems[0].cooling_efficiency_seer = 19 hpxml.cooling_systems[0].cooling_shr = 0.73 hpxml.cooling_systems[0].compressor_type = nil - hpxml.cooling_systems[0].fan_watts_per_cfm = 0.2 elsif ['base-hvac-mini-split-air-conditioner-only-ductless.xml'].include? hpxml_file hpxml.cooling_systems[0].distribution_system_idref = nil elsif ['base-hvac-furnace-gas-room-ac.xml', @@ -4930,22 +5565,16 @@ def set_hpxml_cooling_systems(hpxml_file, hpxml) hpxml.cooling_systems[0].fraction_cool_load_served = 0.33 elsif ['base-hvac-evap-cooler-only-ducted.xml', 'base-hvac-evap-cooler-furnace-gas.xml', - 'base-hvac-evap-cooler-only.xml', - 'hvac_autosizing/base-hvac-evap-cooler-furnace-gas-autosize.xml'].include? hpxml_file + 'base-hvac-evap-cooler-only.xml'].include? hpxml_file hpxml.cooling_systems[0].cooling_system_type = HPXML::HVACTypeEvaporativeCooler hpxml.cooling_systems[0].cooling_efficiency_seer = nil hpxml.cooling_systems[0].cooling_efficiency_eer = nil - hpxml.cooling_systems[0].cooling_capacity = nil hpxml.cooling_systems[0].cooling_shr = nil hpxml.cooling_systems[0].compressor_type = nil if ['base-hvac-evap-cooler-furnace-gas.xml', - 'hvac_autosizing/base-hvac-evap-cooler-furnace-gas-autosize.xml', 'base-hvac-evap-cooler-only.xml'].include? hpxml_file hpxml.cooling_systems[0].distribution_system_idref = nil end - if ['base-hvac-evap-cooler-only.xml'].include? hpxml_file - hpxml.cooling_systems[0].fan_watts_per_cfm = 0.3 - end elsif ['base-hvac-multiple.xml'].include? hpxml_file hpxml.cooling_systems[0].distribution_system_idref = 'HVACDistribution2' hpxml.cooling_systems[0].fraction_cool_load_served = 0.2 @@ -4986,8 +5615,22 @@ def set_hpxml_cooling_systems(hpxml_file, hpxml) hpxml.cooling_systems[0].fan_watts_per_cfm = 0.55 elsif ['base-hvac-undersized.xml'].include? hpxml_file hpxml.cooling_systems[0].cooling_capacity /= 10.0 - elsif ['base-hvac-flowrate.xml'].include? hpxml_file - hpxml.cooling_systems[0].cooling_cfm = hpxml.cooling_systems[0].cooling_capacity * 360.0 / 12000.0 + elsif ['base-hvac-install-quality-none-furnace-gas-central-ac-1-speed.xml'].include? hpxml_file + hpxml.cooling_systems[0].airflow_defect_ratio = 0.0 + hpxml.cooling_systems[0].charge_defect_ratio = 0.0 + elsif ['base-hvac-install-quality-airflow-defect-furnace-gas-central-ac-1-speed.xml'].include? hpxml_file + hpxml.cooling_systems[0].airflow_defect_ratio = -0.25 + elsif ['base-hvac-install-quality-charge-defect-furnace-gas-central-ac-1-speed.xml'].include? hpxml_file + hpxml.cooling_systems[0].charge_defect_ratio = -0.25 + elsif ['base-hvac-install-quality-blower-efficiency-furnace-gas-central-ac-1-speed.xml'].include? hpxml_file + hpxml.cooling_systems[0].fan_watts_per_cfm = 0.365 + elsif ['base-hvac-install-quality-all-mini-split-air-conditioner-only-ducted.xml', + 'base-hvac-install-quality-all-furnace-gas-central-ac-1-speed.xml', + 'base-hvac-install-quality-all-furnace-gas-central-ac-2-speed.xml', + 'base-hvac-install-quality-all-furnace-gas-central-ac-var-speed.xml'].include? hpxml_file + hpxml.cooling_systems[0].charge_defect_ratio = -0.25 + hpxml.cooling_systems[0].fan_watts_per_cfm = 0.365 + hpxml.cooling_systems[0].airflow_defect_ratio = -0.25 elsif ['base-misc-defaults.xml'].include? hpxml_file hpxml.cooling_systems[0].cooling_shr = nil hpxml.cooling_systems[0].compressor_type = nil @@ -5003,10 +5646,6 @@ def set_hpxml_cooling_systems(hpxml_file, hpxml) hpxml.cooling_systems[0].cooling_efficiency_kw_per_ton = 0.9 hpxml.cooling_systems[0].cooling_shr = nil hpxml.cooling_systems[0].shared_loop_watts = 600 - if hpxml_file.include? 'water-loop-heat-pump' - hpxml.cooling_systems[0].wlhp_cooling_capacity = 24000 - hpxml.cooling_systems[0].wlhp_cooling_efficiency_eer = 12.8 - end elsif ['base-bldgtype-multifamily-shared-cooling-tower-only-water-loop-heat-pump.xml', 'base-bldgtype-multifamily-shared-boiler-cooling-tower-water-loop-heat-pump.xml'].include? hpxml_file hpxml.cooling_systems[0].cooling_system_type = HPXML::HVACTypeCoolingTower @@ -5015,7 +5654,12 @@ def set_hpxml_cooling_systems(hpxml_file, hpxml) elsif ['base-bldgtype-multifamily-shared-chiller-only-fan-coil.xml', 'base-bldgtype-multifamily-shared-boiler-chiller-fan-coil.xml'].include? hpxml_file hpxml.cooling_systems[0].fan_coil_watts = 150 - elsif hpxml_file.include?('hvac_autosizing') && (not hpxml.cooling_systems.nil?) && (hpxml.cooling_systems.size > 0) + elsif ['invalid_files/multiple-shared-cooling-systems.xml'].include? hpxml_file + hpxml.cooling_systems[0].fraction_cool_load_served = 0.5 + hpxml.cooling_systems << hpxml.cooling_systems[0].dup + hpxml.cooling_systems[1].id += '2' + hpxml.cooling_systems[1].distribution_system_idref += '2' + elsif hpxml_file.include?('base-hvac-autosize') && (not hpxml.cooling_systems.nil?) && (hpxml.cooling_systems.size > 0) hpxml.cooling_systems[0].cooling_capacity = nil end end @@ -5038,8 +5682,7 @@ def set_hpxml_heat_pumps(hpxml_file, hpxml) cooling_efficiency_seer: 13, heating_capacity_17F: 42000 * 0.630, # Based on OAT slope of default curves cooling_shr: 0.73, - compressor_type: HPXML::HVACCompressorTypeSingleStage, - fan_watts_per_cfm: 0.45) + compressor_type: HPXML::HVACCompressorTypeSingleStage) if hpxml_file == 'base-hvac-central-ac-plus-air-to-air-heat-pump-heating.xml' hpxml.heat_pumps[0].fraction_cool_load_served = 0 end @@ -5093,12 +5736,12 @@ def set_hpxml_heat_pumps(hpxml_file, hpxml) heating_efficiency_cop: 3.6, cooling_efficiency_eer: 16.6, cooling_shr: 0.73, - pump_watts_per_ton: 30.0, - fan_watts_per_cfm: 0.45) + pump_watts_per_ton: 30.0) if hpxml_file == 'base-bldgtype-multifamily-shared-ground-loop-ground-to-air-heat-pump.xml' hpxml.heat_pumps[-1].is_shared_system = true hpxml.heat_pumps[-1].number_of_units_served = 6 hpxml.heat_pumps[-1].shared_loop_watts = 600 + hpxml.heat_pumps[-1].pump_watts_per_ton = 0.0 end elsif ['base-hvac-mini-split-heat-pump-ducted.xml'].include? hpxml_file f = 1.0 - (1.0 - 0.25) / (47.0 + 5.0) * (47.0 - 17.0) @@ -5116,25 +5759,32 @@ def set_hpxml_heat_pumps(hpxml_file, hpxml) heating_efficiency_hspf: 10, cooling_efficiency_seer: 19, heating_capacity_17F: 52000 * f, - cooling_shr: 0.73, - fan_watts_per_cfm: 0.2) - elsif ['base-hvac-mini-split-heat-pump-ducted-heating-only.xml'].include? hpxml_file + cooling_shr: 0.73) + elsif ['base-hvac-air-to-air-heat-pump-1-speed-heating-only.xml', + 'base-hvac-ground-to-air-heat-pump-heating-only.xml', + 'base-hvac-mini-split-heat-pump-ducted-heating-only.xml'].include? hpxml_file hpxml.heat_pumps[0].cooling_capacity = 0 hpxml.heat_pumps[0].fraction_cool_load_served = 0 - elsif ['base-hvac-mini-split-heat-pump-ducted-cooling-only.xml'].include? hpxml_file + elsif ['base-hvac-air-to-air-heat-pump-1-speed-cooling-only.xml', + 'base-hvac-ground-to-air-heat-pump-cooling-only.xml', + 'base-hvac-mini-split-heat-pump-ducted-cooling-only.xml'].include? hpxml_file hpxml.heat_pumps[0].heating_capacity = 0 - hpxml.heat_pumps[0].heating_capacity_17F = 0 + if not ['base-hvac-ground-to-air-heat-pump-cooling-only.xml'].include? hpxml_file + hpxml.heat_pumps[0].heating_capacity_17F = 0 + end hpxml.heat_pumps[0].fraction_heat_load_served = 0 hpxml.heat_pumps[0].backup_heating_fuel = nil + hpxml.heat_pumps[0].backup_heating_capacity = nil + hpxml.heat_pumps[0].backup_heating_efficiency_percent = nil elsif ['base-hvac-mini-split-heat-pump-ductless.xml'].include? hpxml_file hpxml.heat_pumps[0].distribution_system_idref = nil hpxml.heat_pumps[0].backup_heating_fuel = nil + hpxml.heat_pumps[0].backup_heating_capacity = nil + hpxml.heat_pumps[0].backup_heating_efficiency_percent = nil elsif ['invalid_files/heat-pump-mixed-fixed-and-autosize-capacities.xml'].include? hpxml_file hpxml.heat_pumps[0].cooling_capacity = nil hpxml.heat_pumps[0].heating_capacity = nil hpxml.heat_pumps[0].heating_capacity_17F = 25000 - elsif ['invalid_files/heat-pump-mixed-fixed-and-autosize-capacities2.xml'].include? hpxml_file - hpxml.heat_pumps[0].backup_heating_capacity = nil elsif ['base-hvac-multiple.xml'].include? hpxml_file hpxml.heat_pumps.add(id: 'HeatPump', distribution_system_idref: 'HVACDistribution5', @@ -5214,6 +5864,21 @@ def set_hpxml_heat_pumps(hpxml_file, hpxml) cooling_efficiency_eer: 16.6, cooling_shr: 0.73, pump_watts_per_ton: 30.0) + elsif ['base-bldgtype-multifamily-shared-boiler-only-water-loop-heat-pump.xml', + 'base-bldgtype-multifamily-shared-chiller-only-water-loop-heat-pump.xml', + 'base-bldgtype-multifamily-shared-boiler-chiller-water-loop-heat-pump.xml'].include? hpxml_file + hpxml.heat_pumps.add(id: 'WLHP', + distribution_system_idref: 'HVACDistributionWLHP', + heat_pump_type: HPXML::HVACTypeHeatPumpWaterLoopToAir, + heat_pump_fuel: HPXML::FuelTypeElectricity) + if hpxml_file.include? 'boiler' + hpxml.heat_pumps[-1].heating_capacity = 24000 + hpxml.heat_pumps[-1].heating_efficiency_cop = 4.4 + end + if hpxml_file.include? 'chiller' + hpxml.heat_pumps[-1].cooling_capacity = 24000 + hpxml.heat_pumps[-1].cooling_efficiency_eer = 12.8 + end elsif ['invalid_files/hvac-distribution-multiple-attached-heating.xml'].include? hpxml_file hpxml.heat_pumps[0].distribution_system_idref = 'HVACDistribution' elsif ['invalid_files/hvac-distribution-multiple-attached-cooling.xml'].include? hpxml_file @@ -5230,7 +5895,19 @@ def set_hpxml_heat_pumps(hpxml_file, hpxml) elsif ['base-hvac-dual-fuel-air-to-air-heat-pump-1-speed-electric.xml'].include? hpxml_file hpxml.heat_pumps[0].backup_heating_fuel = HPXML::FuelTypeElectricity hpxml.heat_pumps[0].backup_heating_efficiency_afue = 1.0 - elsif hpxml_file.include?('hvac_autosizing') && (not hpxml.heat_pumps.nil?) && (hpxml.heat_pumps.size > 0) + elsif ['base-hvac-install-quality-all-air-to-air-heat-pump-1-speed.xml', + 'base-hvac-install-quality-all-air-to-air-heat-pump-2-speed.xml', + 'base-hvac-install-quality-all-air-to-air-heat-pump-var-speed.xml', + 'base-hvac-install-quality-all-mini-split-heat-pump-ducted.xml', + 'base-hvac-install-quality-all-ground-to-air-heat-pump.xml'].include? hpxml_file + hpxml.heat_pumps[0].airflow_defect_ratio = -0.25 + hpxml.heat_pumps[0].fan_watts_per_cfm = 0.365 + if hpxml_file != 'base-hvac-install-quality-all-ground-to-air-heat-pump.xml' + hpxml.heat_pumps[0].charge_defect_ratio = -0.25 + else + hpxml.heat_pumps[0].charge_defect_ratio = 0.0 + end + elsif hpxml_file.include?('base-hvac-autosize') && (not hpxml.heat_pumps.nil?) && (hpxml.heat_pumps.size > 0) hpxml.heat_pumps[0].cooling_capacity = nil hpxml.heat_pumps[0].heating_capacity = nil hpxml.heat_pumps[0].heating_capacity_17F = nil @@ -5321,16 +5998,23 @@ def set_hpxml_hvac_distributions(hpxml_file, hpxml) elsif ['base-bldgtype-multifamily-shared-boiler-only-fan-coil.xml', 'base-bldgtype-multifamily-shared-chiller-only-fan-coil.xml', 'base-bldgtype-multifamily-shared-boiler-chiller-fan-coil.xml'].include? hpxml_file - hpxml.hvac_distributions[0].distribution_system_type = HPXML::HVACDistributionTypeHydronicAndAir - hpxml.hvac_distributions[0].hydronic_and_air_type = HPXML::HydronicAndAirTypeFanCoil + hpxml.hvac_distributions[0].distribution_system_type = HPXML::HVACDistributionTypeAir + hpxml.hvac_distributions[0].air_type = HPXML::AirTypeFanCoil + hpxml.hvac_distributions[0].duct_leakage_measurements.add(duct_type: HPXML::DuctTypeSupply, + duct_leakage_units: HPXML::UnitsCFM25, + duct_leakage_value: 0, + duct_leakage_total_or_to_outside: HPXML::DuctLeakageToOutside) + hpxml.hvac_distributions[0].duct_leakage_measurements.add(duct_type: HPXML::DuctTypeReturn, + duct_leakage_units: HPXML::UnitsCFM25, + duct_leakage_value: 0, + duct_leakage_total_or_to_outside: HPXML::DuctLeakageToOutside) elsif ['base-hvac-boiler-gas-central-ac-1-speed.xml'].include? hpxml_file hpxml.hvac_distributions[0].distribution_system_type = HPXML::HVACDistributionTypeHydronic hpxml.hvac_distributions[0].hydronic_type = HPXML::HydronicTypeBaseboard hpxml.hvac_distributions[0].duct_leakage_measurements.clear hpxml.hvac_distributions[0].ducts.clear hpxml.hvac_distributions.add(id: 'HVACDistribution2', - distribution_system_type: HPXML::HVACDistributionTypeAir, - number_of_return_registers: 3) + distribution_system_type: HPXML::HVACDistributionTypeAir) hpxml.hvac_distributions[-1].duct_leakage_measurements.add(duct_type: HPXML::DuctTypeSupply, duct_leakage_units: HPXML::UnitsCFM25, duct_leakage_value: 75, @@ -5352,7 +6036,6 @@ def set_hpxml_hvac_distributions(hpxml_file, hpxml) 'base-hvac-evap-cooler-only.xml', 'base-hvac-fireplace-wood-only.xml', 'base-hvac-floor-furnace-propane-only.xml', - 'base-hvac-ideal-air.xml', 'base-hvac-mini-split-heat-pump-ductless.xml', 'base-hvac-mini-split-air-conditioner-only-ductless.xml', 'base-hvac-room-ac-only.xml', @@ -5464,8 +6147,10 @@ def set_hpxml_hvac_distributions(hpxml_file, hpxml) hpxml.hvac_distributions[0].ducts[0].duct_surface_area = 30 hpxml.hvac_distributions[0].ducts[1].duct_surface_area = 10 elsif ['base-hvac-evap-cooler-only-ducted.xml'].include? hpxml_file - hpxml.hvac_distributions[0].duct_leakage_measurements.pop + hpxml.hvac_distributions[0].duct_leakage_measurements[-1].duct_leakage_value = 0.0 hpxml.hvac_distributions[0].ducts.pop + elsif ['invalid_files/hvac-distribution-return-duct-leakage-missing.xml'].include? hpxml_file + hpxml.hvac_distributions[0].duct_leakage_measurements.pop elsif ['base-hvac-ducts-leakage-percent.xml'].include? hpxml_file hpxml.hvac_distributions[0].duct_leakage_measurements.clear hpxml.hvac_distributions[0].duct_leakage_measurements.add(duct_type: HPXML::DuctTypeSupply, @@ -5539,8 +6224,8 @@ def set_hpxml_hvac_distributions(hpxml_file, hpxml) if hpxml_file == 'base-atticroof-conditioned.xml' # Test leakage to outside when all ducts in conditioned space # (e.g., ducts may be in floor cavities which have leaky rims) - hpxml.hvac_distributions[0].duct_leakage_measurements[0].duct_leakage_value = 1.5 - hpxml.hvac_distributions[0].duct_leakage_measurements[1].duct_leakage_value = 1.5 + hpxml.hvac_distributions[0].duct_leakage_measurements[0].duct_leakage_value = 50.0 + hpxml.hvac_distributions[0].duct_leakage_measurements[1].duct_leakage_value = 100.0 end elsif ['base-bldgtype-multifamily-adjacent-to-other-housing-unit.xml'].include? hpxml_file hpxml.hvac_distributions[0].ducts[0].duct_location = HPXML::LocationOtherHousingUnit @@ -5560,29 +6245,33 @@ def set_hpxml_hvac_distributions(hpxml_file, hpxml) 'base-bldgtype-multifamily-shared-boiler-chiller-fan-coil-ducted.xml', 'base-bldgtype-multifamily-shared-boiler-only-fan-coil-ducted.xml', 'base-bldgtype-multifamily-shared-chiller-only-fan-coil-ducted.xml'].include? hpxml_file - hpxml.hvac_distributions[0].distribution_system_type = HPXML::HVACDistributionTypeHydronicAndAir if hpxml_file.include? 'fan-coil' - hpxml.hvac_distributions[0].hydronic_and_air_type = HPXML::HydronicAndAirTypeFanCoil + hpxml.hvac_distributions[0].distribution_system_type = HPXML::HVACDistributionTypeAir + hpxml.hvac_distributions[0].air_type = HPXML::AirTypeFanCoil + hpxml.hvac_distributions[0].duct_leakage_measurements[0].duct_leakage_value = 15 + hpxml.hvac_distributions[0].duct_leakage_measurements[1].duct_leakage_value = 10 elsif hpxml_file.include? 'water-loop-heat-pump' - hpxml.hvac_distributions[0].hydronic_and_air_type = HPXML::HydronicAndAirTypeWaterLoopHeatPump - hpxml.hvac_distributions[0].number_of_return_registers = 3 + hpxml.hvac_distributions[0].distribution_system_type = HPXML::HVACDistributionTypeHydronic + hpxml.hvac_distributions[0].hydronic_type = HPXML::HydronicTypeWaterLoop + hpxml.hvac_distributions.add(id: 'HVACDistributionWLHP', + distribution_system_type: HPXML::HVACDistributionTypeAir) + hpxml.hvac_distributions[-1].duct_leakage_measurements.add(duct_type: HPXML::DuctTypeSupply, + duct_leakage_units: HPXML::UnitsCFM25, + duct_leakage_value: 15, + duct_leakage_total_or_to_outside: HPXML::DuctLeakageToOutside) + hpxml.hvac_distributions[-1].duct_leakage_measurements.add(duct_type: HPXML::DuctTypeReturn, + duct_leakage_units: HPXML::UnitsCFM25, + duct_leakage_value: 10, + duct_leakage_total_or_to_outside: HPXML::DuctLeakageToOutside) end - hpxml.hvac_distributions[0].duct_leakage_measurements.add(duct_type: HPXML::DuctTypeSupply, - duct_leakage_units: HPXML::UnitsCFM25, - duct_leakage_value: 15, - duct_leakage_total_or_to_outside: HPXML::DuctLeakageToOutside) - hpxml.hvac_distributions[0].duct_leakage_measurements.add(duct_type: HPXML::DuctTypeReturn, - duct_leakage_units: HPXML::UnitsCFM25, - duct_leakage_value: 10, - duct_leakage_total_or_to_outside: HPXML::DuctLeakageToOutside) - hpxml.hvac_distributions[0].ducts.add(duct_type: HPXML::DuctTypeSupply, - duct_insulation_r_value: 0, - duct_location: HPXML::LocationOtherMultifamilyBufferSpace, - duct_surface_area: 50) - hpxml.hvac_distributions[0].ducts.add(duct_type: HPXML::DuctTypeReturn, - duct_insulation_r_value: 0, - duct_location: HPXML::LocationOtherMultifamilyBufferSpace, - duct_surface_area: 20) + hpxml.hvac_distributions[-1].ducts.add(duct_type: HPXML::DuctTypeSupply, + duct_insulation_r_value: 0, + duct_location: HPXML::LocationOtherMultifamilyBufferSpace, + duct_surface_area: 50) + hpxml.hvac_distributions[-1].ducts.add(duct_type: HPXML::DuctTypeReturn, + duct_insulation_r_value: 0, + duct_location: HPXML::LocationOtherMultifamilyBufferSpace, + duct_surface_area: 20) elsif ['invalid_files/hvac-invalid-distribution-system-type.xml'].include? hpxml_file hpxml.hvac_distributions.add(id: 'HVACDistribution2', distribution_system_type: HPXML::HVACDistributionTypeHydronic, @@ -5601,13 +6290,6 @@ def set_hpxml_hvac_distributions(hpxml_file, hpxml) duct.duct_location = nil end end - elsif ['invalid_files/missing-duct-location-and-surface-area.xml'].include? hpxml_file - hpxml.hvac_distributions.each do |hvac_distribution| - next unless hvac_distribution.distribution_system_type == HPXML::HVACDistributionTypeAir - - hvac_distribution.ducts[1].duct_surface_area = nil - hvac_distribution.ducts[1].duct_location = nil - end elsif ['invalid_files/missing-duct-location.xml'].include? hpxml_file hpxml.hvac_distributions.each do |hvac_distribution| next unless hvac_distribution.distribution_system_type == HPXML::HVACDistributionTypeAir @@ -5616,20 +6298,39 @@ def set_hpxml_hvac_distributions(hpxml_file, hpxml) end elsif ['invalid_files/multifamily-reference-duct.xml'].include? hpxml_file hpxml.hvac_distributions[0].ducts[0].duct_location = HPXML::LocationOtherMultifamilyBufferSpace + elsif ['invalid_files/multiple-shared-cooling-systems.xml', + 'invalid_files/multiple-shared-heating-systems.xml'].include? hpxml_file + hpxml.hvac_distributions << hpxml.hvac_distributions[0].dup + hpxml.hvac_distributions[-1].id += '2' + elsif ['invalid_files/duct-leakage-cfm25.xml'].include? hpxml_file + hpxml.hvac_distributions[0].duct_leakage_measurements[0].duct_leakage_value = -2.0 + hpxml.hvac_distributions[0].duct_leakage_measurements[1].duct_leakage_value = -2.0 + elsif ['invalid_files/duct-leakage-percent.xml'].include? hpxml_file + hpxml.hvac_distributions[0].duct_leakage_measurements[0].duct_leakage_units = HPXML::UnitsPercent + hpxml.hvac_distributions[0].duct_leakage_measurements[1].duct_leakage_units = HPXML::UnitsPercent end # Set ConditionedFloorAreaServed - n_air_dists = hpxml.hvac_distributions.select { |d| [HPXML::HVACDistributionTypeAir, HPXML::HVACDistributionTypeHydronicAndAir].include? d.distribution_system_type }.size + n_air_dists = hpxml.hvac_distributions.select { |d| [HPXML::HVACDistributionTypeAir].include? d.distribution_system_type }.size hpxml.hvac_distributions.each do |hvac_distribution| - if [HPXML::HVACDistributionTypeAir, HPXML::HVACDistributionTypeHydronicAndAir].include? hvac_distribution.distribution_system_type - + if [HPXML::HVACDistributionTypeAir].include? hvac_distribution.distribution_system_type hvac_distribution.conditioned_floor_area_served = hpxml.building_construction.conditioned_floor_area / n_air_dists else hvac_distribution.conditioned_floor_area_served = nil end end if ['invalid_files/invalid-distribution-cfa-served.xml'].include? hpxml_file - hpxml.hvac_distributions[0].conditioned_floor_area_served = hpxml.building_construction.conditioned_floor_area + 0.1 + hpxml.hvac_distributions[0].conditioned_floor_area_served = hpxml.building_construction.conditioned_floor_area + 1.1 + end + + # Set number of return registers + if not ['base-misc-defaults.xml'].include? hpxml_file + hpxml.hvac_distributions.each do |hvac_distribution| + next unless hvac_distribution.distribution_system_type == HPXML::HVACDistributionTypeAir + next unless hvac_distribution.ducts.select { |d| d.duct_type == HPXML::DuctTypeReturn }.size > 0 + + hvac_distribution.number_of_return_registers = hpxml.building_construction.number_of_conditioned_floors.ceil + end end end @@ -5757,6 +6458,9 @@ def set_hpxml_ventilation_fans(hpxml_file, hpxml) hours_in_operation: 24, fan_power: 26, used_for_whole_building_ventilation: true) + elsif ['invalid_files/invalid-shared-vent-in-unit-flowrate.xml'].include? hpxml_file + hpxml.ventilation_fans[0].in_unit_flow_rate = 80 + hpxml.ventilation_fans[0].rated_flow_rate = 80 elsif ['base-bldgtype-multifamily-shared-mechvent-preconditioning.xml'].include? hpxml_file hpxml.ventilation_fans[0].preheating_fuel = HPXML::FuelTypeNaturalGas hpxml.ventilation_fans[0].preheating_efficiency_cop = 0.92 @@ -6175,6 +6879,8 @@ def set_hpxml_water_heating_systems(hpxml_file, hpxml) hpxml.water_heating_systems[0].energy_factor = 1.0 elsif ['invalid_files/dhw-invalid-uef-tank-heat-pump.xml'].include? hpxml_file hpxml.water_heating_systems[0].uniform_energy_factor = 1.0 + elsif ['invalid_files/invalid-number-of-units-served.xml'].include? hpxml_file + hpxml.water_heating_systems[0].number_of_units_served = 1 end end @@ -6366,6 +7072,8 @@ def set_hpxml_pv_systems(hpxml_file, hpxml) inverter_efficiency: 0.96, system_losses_fraction: 0.14, number_of_bedrooms_served: 18) + elsif ['invalid_files/invalid-number-of-bedrooms-served.xml'].include? hpxml_file + hpxml.pv_systems[0].number_of_bedrooms_served = hpxml.building_construction.number_of_bedrooms end end @@ -6386,6 +7094,10 @@ def set_hpxml_generators(hpxml_file, hpxml) annual_consumption_kbtu: 85000, annual_output_kwh: 5000, number_of_bedrooms_served: 18) + elsif ['invalid_files/generator-output-greater-than-consumption.xml'].include? hpxml_file + hpxml.generators[0].annual_consumption_kbtu = 1500 + elsif ['invalid_files/generator-number-of-bedrooms-served.xml'].include? hpxml_file + hpxml.generators[0].number_of_bedrooms_served = hpxml.building_construction.number_of_bedrooms end end @@ -6454,7 +7166,6 @@ def set_hpxml_clothes_dryer(hpxml_file, hpxml) location: HPXML::LocationLivingSpace, fuel_type: HPXML::FuelTypeElectricity, combined_energy_factor: 3.73, - control_type: HPXML::ClothesDryerControlTypeTimer, is_vented: true, vented_flow_rate: 150) elsif ['base-appliances-none.xml', @@ -6477,7 +7188,6 @@ def set_hpxml_clothes_dryer(hpxml_file, hpxml) location: HPXML::LocationLivingSpace, fuel_type: HPXML::FuelTypeElectricity, energy_factor: HotWaterAndAppliances.calc_clothes_dryer_ef_from_cef(cef).round(2), - control_type: HPXML::ClothesDryerControlTypeMoisture, is_vented: false) elsif ['base-appliances-coal.xml', 'base-appliances-gas.xml', @@ -6487,8 +7197,7 @@ def set_hpxml_clothes_dryer(hpxml_file, hpxml) hpxml.clothes_dryers.clear hpxml.clothes_dryers.add(id: 'ClothesDryer', location: HPXML::LocationLivingSpace, - combined_energy_factor: 3.30, - control_type: HPXML::ClothesDryerControlTypeMoisture) + combined_energy_factor: 3.30) if hpxml_file == 'base-appliances-coal.xml' hpxml.clothes_dryers[0].fuel_type = HPXML::FuelTypeCoal elsif hpxml_file == 'base-appliances-gas.xml' @@ -6511,7 +7220,6 @@ def set_hpxml_clothes_dryer(hpxml_file, hpxml) hpxml.clothes_dryers[0].location = nil hpxml.clothes_dryers[0].energy_factor = nil hpxml.clothes_dryers[0].combined_energy_factor = nil - hpxml.clothes_dryers[0].control_type = nil hpxml.clothes_dryers[0].is_vented = nil hpxml.clothes_dryers[0].vented_flow_rate = nil elsif ['base-bldgtype-multifamily-shared-laundry-room.xml'].include? hpxml_file @@ -6675,7 +7383,8 @@ def set_hpxml_dehumidifier(hpxml_file, hpxml) capacity: 40, energy_factor: 1.8, rh_setpoint: 0.5, - fraction_served: 1.0) + fraction_served: 1.0, + location: HPXML::LocationLivingSpace) elsif ['base-appliances-dehumidifier-50percent.xml'].include? hpxml_file hpxml.dehumidifiers[0].fraction_served = 0.5 elsif ['base-appliances-dehumidifier-ief-portable.xml'].include? hpxml_file @@ -6683,6 +7392,18 @@ def set_hpxml_dehumidifier(hpxml_file, hpxml) hpxml.dehumidifiers[0].integrated_energy_factor = 1.5 elsif ['base-appliances-dehumidifier-ief-whole-home.xml'].include? hpxml_file hpxml.dehumidifiers[0].type = HPXML::DehumidifierTypeWholeHome + elsif ['base-appliances-dehumidifier-multiple.xml'].include? hpxml_file + hpxml.dehumidifiers.add(id: 'Dehumidifier2', + type: HPXML::DehumidifierTypePortable, + capacity: 30, + energy_factor: 1.6, + rh_setpoint: 0.5, + fraction_served: 0.25, + location: HPXML::LocationLivingSpace) + elsif ['invalid_files/dehumidifier-setpoints.xml'].include? hpxml_file + hpxml.dehumidifiers[1].rh_setpoint = 0.55 + elsif ['invalid_files/dehumidifier-fraction-served.xml'].include? hpxml_file + hpxml.dehumidifiers[1].fraction_served = 0.6 end end @@ -6812,16 +7533,18 @@ def set_hpxml_pools(hpxml_file, hpxml) if ['base-misc-loads-large-uncommon.xml', 'base-misc-usage-multiplier.xml'].include? hpxml_file hpxml.pools.add(id: 'Pool', + type: HPXML::TypeUnknown, + pump_type: HPXML::TypeUnknown, + pump_kwh_per_year: 2700, + pump_weekday_fractions: '0.003, 0.003, 0.003, 0.004, 0.008, 0.015, 0.026, 0.044, 0.084, 0.121, 0.127, 0.121, 0.120, 0.090, 0.075, 0.061, 0.037, 0.023, 0.013, 0.008, 0.004, 0.003, 0.003, 0.003', + pump_weekend_fractions: '0.003, 0.003, 0.003, 0.004, 0.008, 0.015, 0.026, 0.044, 0.084, 0.121, 0.127, 0.121, 0.120, 0.090, 0.075, 0.061, 0.037, 0.023, 0.013, 0.008, 0.004, 0.003, 0.003, 0.003', + pump_monthly_multipliers: '1.154, 1.161, 1.013, 1.010, 1.013, 0.888, 0.883, 0.883, 0.888, 0.978, 0.974, 1.154', heater_type: HPXML::HeaterTypeGas, heater_load_units: HPXML::UnitsThermPerYear, heater_load_value: 500, - pump_kwh_per_year: 2700, heater_weekday_fractions: '0.003, 0.003, 0.003, 0.004, 0.008, 0.015, 0.026, 0.044, 0.084, 0.121, 0.127, 0.121, 0.120, 0.090, 0.075, 0.061, 0.037, 0.023, 0.013, 0.008, 0.004, 0.003, 0.003, 0.003', heater_weekend_fractions: '0.003, 0.003, 0.003, 0.004, 0.008, 0.015, 0.026, 0.044, 0.084, 0.121, 0.127, 0.121, 0.120, 0.090, 0.075, 0.061, 0.037, 0.023, 0.013, 0.008, 0.004, 0.003, 0.003, 0.003', - heater_monthly_multipliers: '1.154, 1.161, 1.013, 1.010, 1.013, 0.888, 0.883, 0.883, 0.888, 0.978, 0.974, 1.154', - pump_weekday_fractions: '0.003, 0.003, 0.003, 0.004, 0.008, 0.015, 0.026, 0.044, 0.084, 0.121, 0.127, 0.121, 0.120, 0.090, 0.075, 0.061, 0.037, 0.023, 0.013, 0.008, 0.004, 0.003, 0.003, 0.003', - pump_weekend_fractions: '0.003, 0.003, 0.003, 0.004, 0.008, 0.015, 0.026, 0.044, 0.084, 0.121, 0.127, 0.121, 0.120, 0.090, 0.075, 0.061, 0.037, 0.023, 0.013, 0.008, 0.004, 0.003, 0.003, 0.003', - pump_monthly_multipliers: '1.154, 1.161, 1.013, 1.010, 1.013, 0.888, 0.883, 0.883, 0.888, 0.978, 0.974, 1.154') + heater_monthly_multipliers: '1.154, 1.161, 1.013, 1.010, 1.013, 0.888, 0.883, 0.883, 0.888, 0.978, 0.974, 1.154') if hpxml_file == 'base-misc-usage-multiplier.xml' hpxml.pools.each do |pool| pool.pump_usage_multiplier = 0.9 @@ -6829,11 +7552,7 @@ def set_hpxml_pools(hpxml_file, hpxml) end end elsif ['base-misc-loads-large-uncommon2.xml'].include? hpxml_file - hpxml.pools[0].heater_type = nil - hpxml.pools[0].heater_load_value = nil - hpxml.pools[0].heater_weekday_fractions = nil - hpxml.pools[0].heater_weekend_fractions = nil - hpxml.pools[0].heater_monthly_multipliers = nil + hpxml.pools[0].heater_type = HPXML::TypeNone end end @@ -6841,16 +7560,18 @@ def set_hpxml_hot_tubs(hpxml_file, hpxml) if ['base-misc-loads-large-uncommon.xml', 'base-misc-usage-multiplier.xml'].include? hpxml_file hpxml.hot_tubs.add(id: 'HotTub', + type: HPXML::TypeUnknown, + pump_type: HPXML::TypeUnknown, + pump_kwh_per_year: 1000, + pump_weekday_fractions: '0.024, 0.029, 0.024, 0.029, 0.047, 0.067, 0.057, 0.024, 0.024, 0.019, 0.015, 0.014, 0.014, 0.014, 0.024, 0.058, 0.126, 0.122, 0.068, 0.061, 0.051, 0.043, 0.024, 0.024', + pump_weekend_fractions: '0.024, 0.029, 0.024, 0.029, 0.047, 0.067, 0.057, 0.024, 0.024, 0.019, 0.015, 0.014, 0.014, 0.014, 0.024, 0.058, 0.126, 0.122, 0.068, 0.061, 0.051, 0.043, 0.024, 0.024', + pump_monthly_multipliers: '0.837, 0.835, 1.084, 1.084, 1.084, 1.096, 1.096, 1.096, 1.096, 0.931, 0.925, 0.837', heater_type: HPXML::HeaterTypeElectricResistance, heater_load_units: HPXML::UnitsKwhPerYear, heater_load_value: 1300, - pump_kwh_per_year: 1000, heater_weekday_fractions: '0.024, 0.029, 0.024, 0.029, 0.047, 0.067, 0.057, 0.024, 0.024, 0.019, 0.015, 0.014, 0.014, 0.014, 0.024, 0.058, 0.126, 0.122, 0.068, 0.061, 0.051, 0.043, 0.024, 0.024', heater_weekend_fractions: '0.024, 0.029, 0.024, 0.029, 0.047, 0.067, 0.057, 0.024, 0.024, 0.019, 0.015, 0.014, 0.014, 0.014, 0.024, 0.058, 0.126, 0.122, 0.068, 0.061, 0.051, 0.043, 0.024, 0.024', - heater_monthly_multipliers: '0.921, 0.928, 0.921, 0.915, 0.921, 1.160, 1.158, 1.158, 1.160, 0.921, 0.915, 0.921', - pump_weekday_fractions: '0.024, 0.029, 0.024, 0.029, 0.047, 0.067, 0.057, 0.024, 0.024, 0.019, 0.015, 0.014, 0.014, 0.014, 0.024, 0.058, 0.126, 0.122, 0.068, 0.061, 0.051, 0.043, 0.024, 0.024', - pump_weekend_fractions: '0.024, 0.029, 0.024, 0.029, 0.047, 0.067, 0.057, 0.024, 0.024, 0.019, 0.015, 0.014, 0.014, 0.014, 0.024, 0.058, 0.126, 0.122, 0.068, 0.061, 0.051, 0.043, 0.024, 0.024', - pump_monthly_multipliers: '0.837, 0.835, 1.084, 1.084, 1.084, 1.096, 1.096, 1.096, 1.096, 0.931, 0.925, 0.837') + heater_monthly_multipliers: '0.921, 0.928, 0.921, 0.915, 0.921, 1.160, 1.158, 1.158, 1.160, 0.921, 0.915, 0.921') if hpxml_file == 'base-misc-usage-multiplier.xml' hpxml.hot_tubs.each do |hot_tub| hot_tub.pump_usage_multiplier = 0.9 @@ -6937,6 +7658,10 @@ def set_hpxml_plug_loads(hpxml_file, hpxml) weekday_fractions: '0.044, 0.023, 0.019, 0.015, 0.016, 0.018, 0.026, 0.033, 0.033, 0.032, 0.033, 0.033, 0.032, 0.032, 0.032, 0.033, 0.045, 0.057, 0.066, 0.076, 0.081, 0.086, 0.075, 0.065', weekend_fractions: '0.044, 0.023, 0.019, 0.015, 0.016, 0.018, 0.026, 0.033, 0.033, 0.032, 0.033, 0.033, 0.032, 0.032, 0.032, 0.033, 0.045, 0.057, 0.066, 0.076, 0.081, 0.086, 0.075, 0.065', monthly_multipliers: '1.154, 1.161, 1.013, 1.010, 1.013, 0.888, 0.883, 0.883, 0.888, 0.978, 0.974, 1.154') + elsif ['invalid_files/frac-sensible-plug-load.xml'].include? hpxml_file + hpxml.plug_loads[0].frac_sensible = -0.1 + elsif ['invalid_files/frac-total-plug-load.xml'].include? hpxml_file + hpxml.plug_loads[0].frac_latent = 1.0 - hpxml.plug_loads[0].frac_sensible + 0.1 else cfa = hpxml.building_construction.conditioned_floor_area nbeds = hpxml.building_construction.number_of_bedrooms @@ -6995,6 +7720,11 @@ def set_hpxml_fuel_loads(hpxml_file, hpxml) elsif ['base-misc-loads-large-uncommon2.xml'].include? hpxml_file hpxml.fuel_loads[0].fuel_type = HPXML::FuelTypeOil hpxml.fuel_loads[2].fuel_type = HPXML::FuelTypeWoodPellets + elsif ['invalid_files/frac-sensible-fuel-load.xml'].include? hpxml_file + hpxml.fuel_loads[0].frac_sensible = -0.1 + elsif ['invalid_files/frac-total-fuel-load.xml'].include? hpxml_file + hpxml.fuel_loads[0].frac_sensible = 0.8 + hpxml.fuel_loads[0].frac_latent = 1.0 - hpxml.fuel_loads[0].frac_sensible + 0.1 end end @@ -7190,12 +7920,53 @@ def create_schematron_hpxml_validator(hpxml_docs) end end + # Add ID/IDref checks + # TODO: Dynamically obtain these lists + id_names = ['SystemIdentifier', + 'BuildingID'] + idref_names = ['AttachedToRoof', + 'AttachedToFrameFloor', + 'AttachedToSlab', + 'AttachedToFoundationWall', + 'AttachedToWall', + 'DistributionSystem', + 'AttachedToHVACDistributionSystem', + 'RelatedHVACSystem', + 'ConnectedTo'] + elements_in_sample_files.each do |element_xpath| + element_name = element_xpath.split('/')[-1].gsub('h:', '') + context_xpath = "/#{element_xpath.split('/')[0..-2].join('/')}" + if id_names.include? element_name + rule = rules[context_xpath] + if rule.nil? + # Need new rule + rule = XMLHelper.add_element(pattern, 'sch:rule') + XMLHelper.add_attribute(rule, 'context', context_xpath) + rules[context_xpath] = rule + end + assertion = XMLHelper.add_element(rule, 'sch:assert', "Expected id attribute for #{element_name}", :string) + XMLHelper.add_attribute(assertion, 'role', 'ERROR') + XMLHelper.add_attribute(assertion, 'test', "count(h:#{element_name}[@id]) = 1 or not (h:#{element_name})") + elsif idref_names.include? element_name + rule = rules[context_xpath] + if rule.nil? + # Need new rule + rule = XMLHelper.add_element(pattern, 'sch:rule') + XMLHelper.add_attribute(rule, 'context', context_xpath) + rules[context_xpath] = rule + end + assertion = XMLHelper.add_element(rule, 'sch:assert', "Expected idref attribute for #{element_name}", :string) + XMLHelper.add_attribute(assertion, 'role', 'ERROR') + XMLHelper.add_attribute(assertion, 'test', "count(h:#{element_name}[@idref]) = 1 or not(h:#{element_name})") + end + end + XMLHelper.write_file(hpxml_validator, File.join(File.dirname(__FILE__), 'HPXMLtoOpenStudio', 'resources', 'HPXMLvalidator.xml')) end def get_element_full_xpaths(element_xpaths, complex_type_or_group_dict, element_xpath, element_type) if not complex_type_or_group_dict.keys.include? element_type - return element_xpaths[element_xpath] = element_type + element_xpaths[element_xpath] = element_type else complex_type_or_group = deep_copy_object(complex_type_or_group_dict[element_type]) complex_type_or_group.each do |k, v| @@ -7316,13 +8087,18 @@ def display_usage(command_list) File.delete(zip_path) if File.exist? zip_path end - # Only include files under git version control - command = 'git ls-files' - begin - git_files = `#{command}` - rescue - puts "Command failed: '#{command}'. Perhaps git needs to be installed?" - exit! + if ENV['CI'] + # CI doesn't have git, so default to everything + git_files = Dir['**/*.*'] + else + # Only include files under git version control + command = 'git ls-files' + begin + git_files = `#{command}` + rescue + puts "Command failed: '#{command}'. Perhaps git needs to be installed?" + exit! + end end files = ['HPXMLtoOpenStudio/measure.*', diff --git a/example_files/resources/hpxml-measures/weather/USA_AZ_Phoenix-Sky.Harbor.Intl.AP.722780_TMY3-cache.csv b/example_files/resources/hpxml-measures/weather/USA_AZ_Phoenix-Sky.Harbor.Intl.AP.722780_TMY3-cache.csv new file mode 100644 index 00000000..b18b7577 --- /dev/null +++ b/example_files/resources/hpxml-measures/weather/USA_AZ_Phoenix-Sky.Harbor.Intl.AP.722780_TMY3-cache.csv @@ -0,0 +1,35 @@ +WeatherHeader.City,String,Phoenix Sky Harbor Intl Ap +WeatherHeader.State,String,AZ +WeatherHeader.Country,String,USA +WeatherHeader.DataSource,String,TMY3 +WeatherHeader.Station,String,722780 +WeatherHeader.Latitude,Float,33.45 +WeatherHeader.Longitude,Float,-111.98 +WeatherHeader.Timezone,Float,-7.0 +WeatherHeader.Altitude,Float,1105.6430446194224 +WeatherHeader.LocalPressure,Float,0.960128965920963 +WeatherHeader.RecordsPerHour,Fixnum,1 +WeatherData.AnnualAvgDrybulb,Float,74.84486986301377 +WeatherData.AnnualMinDrybulb,Float,35.96 +WeatherData.AnnualMaxDrybulb,Float,111.92 +WeatherData.CDD50F,Float,9119.197499999998 +WeatherData.CDD65F,Float,4643.43 +WeatherData.HDD50F,Float,50.820000000000014 +WeatherData.HDD65F,Float,1050.0524999999993 +WeatherData.AnnualAvgWindspeed,Float,2.758493150684718 +WeatherData.MonthlyAvgDrybulbs,Array,55.416693548387116,60.20267857142858,63.21088709677421,74.58124999999995,81.12088709677417,93.18425000000002,96.00959677419353,92.87677419354854,86.69175000000001,76.65693548387097,64.30999999999999,53.085161290322574 +WeatherData.GroundMonthlyTemps,Array,67.11766137331284,63.83469578991236,63.57178413257856,65.12971904962632,71.38395959199164,77.60906522872205,83.0058991196725,86.42466065716513,86.71510322769751,83.93451533233741,78.67530387416701,72.64115912307051 +WeatherData.WSF,Float,0.43 +WeatherData.MonthlyAvgDailyHighDrybulbs,Array,66.42064516129032,71.22071428571428,72.97032258064516,87.524,93.37999999999998,104.906,106.90322580645159,102.84451612903224,98.07800000000002,89.01935483870966,75.782,63.34903225806451 +WeatherData.MonthlyAvgDailyLowDrybulbs,Array,45.77870967741936,50.17999999999999,52.99612903225807,59.804,67.34387096774194,80.37200000000001,85.05354838709678,81.94129032258064,75.434,65.4741935483871,53.995999999999995,44.042580645161294 +WeatherDesign.HeatingDrybulb,Float,41.36 +WeatherDesign.HeatingWindspeed,Float,7.3 +WeatherDesign.CoolingDrybulb,Float,108.14 +WeatherDesign.CoolingWetbulb,Float,69.80000000000001 +WeatherDesign.CoolingHumidityRatio,Float,0.007144926870632435 +WeatherDesign.CoolingWindspeed,Float,4.1 +WeatherDesign.DailyTemperatureRange,Float,21.6 +WeatherDesign.DehumidDrybulb,Float,86.36 +WeatherDesign.DehumidHumidityRatio,Float,0.015313056552963082 +WeatherDesign.CoolingDirectNormal,Float,752.0 +WeatherDesign.CoolingDiffuseHorizontal,Float,408.0 diff --git a/example_files/resources/hpxml-measures/weather/USA_AZ_Phoenix-Sky.Harbor.Intl.AP.722780_TMY3.epw b/example_files/resources/hpxml-measures/weather/USA_AZ_Phoenix-Sky.Harbor.Intl.AP.722780_TMY3.epw new file mode 100644 index 00000000..e7790e3d --- /dev/null +++ b/example_files/resources/hpxml-measures/weather/USA_AZ_Phoenix-Sky.Harbor.Intl.AP.722780_TMY3.epw @@ -0,0 +1,8768 @@ +LOCATION,Phoenix Sky Harbor Intl Ap,AZ,USA,TMY3,722780,33.45,-111.98,-7.0,337.0 +DESIGN CONDITIONS,1,Climate Design Data 2009 ASHRAE Handbook,,Heating,12,3.7,5.2,-14.5,1.1,15.4,-11.9,1.4,17,8.2,14.8,7.3,15.1,1.7,100,Cooling,7,12,43.4,21.1,42.3,21,41.2,20.9,24.5,35.8,24,35.4,23.5,35.1,4.1,260,21.8,17.2,28.1,21,16.3,29.1,20,15.3,30.2,75.6,35.3,73.5,35.4,71.8,35.2,749,Extremes,8.2,7.1,5.8,27.7,1.3,45.8,1.5,1.5,0.3,46.9,-0.6,47.8,-1.4,48.7,-2.5,49.8 +TYPICAL/EXTREME PERIODS,6,Summer - Week Nearest Max Temperature For Period,Extreme,8/ 3,8/ 9,Summer - Week Nearest Average Temperature For Period,Typical,7/27,8/ 2,Winter - Week Nearest Min Temperature For Period,Extreme,12/ 8,12/14,Winter - Week Nearest Average Temperature For Period,Typical,12/ 1,12/ 7,Autumn - Week Nearest Average Temperature For Period,Typical,10/20,10/26,Spring - Week Nearest Average Temperature For Period,Typical,5/ 3,5/ 9 +GROUND TEMPERATURES,3,.5,,,,13.01,15.04,18.98,22.72,29.80,33.52,34.55,32.66,28.30,22.86,17.51,13.97,2,,,,15.80,16.30,18.55,21.06,26.49,29.97,31.70,31.31,28.82,25.07,20.85,17.52,4,,,,18.70,18.34,19.33,20.75,24.35,27.04,28.78,29.21,28.12,25.91,23.04,20.46 +HOLIDAYS/DAYLIGHT SAVINGS,No,0,0,0 +COMMENTS 1,Custom/User Format -- WMO#722780; NREL TMY Data Set (2008); Period of Record 1973-2005 (Generally) +COMMENTS 2, -- Ground temps produced with a standard soil diffusivity of 2.3225760E-03 {m**2/day} +DATA PERIODS,1,1,Data,Sunday, 1/ 1,12/31 +2002,1,1,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,5.6,74,97700,0,0,292,0,0,0,0,0,0,0,110,1.5,0,0,16.0,77777,9,999999999,150,0.0470,0,88,0.200,0.0,1.0 +2002,1,1,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,5.6,80,97700,0,0,288,0,0,0,0,0,0,0,200,2.1,0,0,16.0,77777,9,999999999,140,0.0470,0,88,0.200,0.0,1.0 +2002,1,1,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,5.6,80,97700,0,0,288,0,0,0,0,0,0,0,120,1.5,0,0,16.0,77777,9,999999999,140,0.0470,0,88,0.200,0.0,1.0 +2002,1,1,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,5.0,77,97700,0,0,287,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,140,0.0470,0,88,0.200,0.0,1.0 +2002,1,1,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,5.0,80,97800,0,0,285,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,130,0.0470,0,88,0.200,0.0,1.0 +2002,1,1,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,4.4,79,97800,0,0,282,0,0,0,0,0,0,0,60,1.5,0,0,16.0,77777,9,999999999,130,0.0470,0,88,0.200,0.0,1.0 +2002,1,1,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,4.4,82,97800,0,0,280,0,0,0,0,0,0,0,90,2.6,0,0,16.0,77777,9,999999999,130,0.0470,0,88,0.200,0.0,1.0 +2002,1,1,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,4.4,79,97900,24,625,282,0,0,0,0,0,0,0,90,2.1,0,0,16.0,77777,9,999999999,140,0.0470,0,88,0.200,0.0,1.0 +2002,1,1,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,4.4,76,98000,234,1415,284,119,561,26,12606,43345,5412,609,0,0.0,0,0,16.0,77777,9,999999999,140,0.0470,0,88,0.200,0.0,1.0 +2002,1,1,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,3.9,59,98000,458,1415,298,301,782,47,31716,71426,8497,1058,40,1.5,0,0,16.0,77777,9,999999999,140,0.0470,0,88,0.200,0.0,1.0 +2002,1,1,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,2.2,42,98100,631,1415,310,434,832,61,45508,80020,9659,1378,70,4.6,0,0,16.0,77777,9,999999999,140,0.0470,0,88,0.200,0.0,1.0 +2002,1,1,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,2.2,38,98000,741,1415,317,537,867,81,56965,85838,11818,1838,90,2.1,0,0,16.0,77777,9,999999999,140,0.0470,0,88,0.200,0.0,1.0 +2002,1,1,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,2.2,38,97900,780,1415,317,584,909,81,60881,89278,11462,1731,0,0.0,0,0,16.0,77777,9,999999999,150,0.0470,0,88,0.200,0.0,1.0 +2002,1,1,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,2.8,37,97800,745,1415,323,552,904,74,57677,88479,10884,1632,360,2.1,0,0,16.0,77777,9,999999999,150,0.0470,0,88,0.200,0.0,1.0 +2002,1,1,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,2.8,37,97800,639,1415,323,485,702,167,50653,69011,19349,3426,360,2.1,0,0,16.0,77777,9,999999999,140,0.0470,0,88,0.200,0.0,1.0 +2002,1,1,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,2.2,34,97800,469,1415,324,225,221,151,24239,20691,17348,3425,0,0.0,0,0,16.0,77777,9,999999999,140,0.0470,0,88,0.200,0.0,1.0 +2002,1,1,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,2.2,33,97800,247,1415,333,188,439,111,18198,30296,12877,2232,240,2.6,2,1,16.0,77777,9,999999999,140,0.0470,0,88,0.200,0.0,1.0 +2002,1,1,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,2.2,36,97900,30,696,326,0,0,0,0,0,0,0,240,2.1,2,1,16.0,77777,9,999999999,140,0.0470,0,88,0.200,0.0,1.0 +2002,1,1,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,3.3,45,97900,0,0,311,0,0,0,0,0,0,0,220,1.5,1,0,16.0,77777,9,999999999,140,0.0470,0,88,0.200,0.0,1.0 +2002,1,1,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,2.8,44,97900,0,0,317,0,0,0,0,0,0,0,230,2.1,1,1,16.0,7620,9,999999999,140,0.0470,0,88,0.200,0.0,1.0 +2002,1,1,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,2.8,46,97900,0,0,308,0,0,0,0,0,0,0,0,0.0,1,0,16.0,7620,9,999999999,140,0.0470,0,88,0.200,0.0,1.0 +2002,1,1,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,2.8,49,98000,0,0,303,0,0,0,0,0,0,0,90,2.6,0,0,16.0,77777,9,999999999,150,0.0470,0,88,0.200,0.0,1.0 +2002,1,1,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,1.1,42,98000,0,0,304,0,0,0,0,0,0,0,60,4.6,1,0,16.0,77777,9,999999999,150,0.0470,0,88,0.200,0.0,1.0 +2002,1,1,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,0.6,43,97900,0,0,305,0,0,0,0,0,0,0,80,4.6,1,1,16.0,77777,9,999999999,150,0.0470,0,88,0.200,0.0,1.0 +2002,1,2,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,0.6,42,97900,0,0,314,0,0,0,0,0,0,0,90,4.1,6,3,16.0,7620,9,999999999,150,0.0470,0,88,0.200,0.0,1.0 +2002,1,2,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,0.0,41,97900,0,0,311,0,0,0,0,0,0,0,90,3.6,7,3,16.0,7620,9,999999999,150,0.0470,0,88,0.200,0.0,1.0 +2002,1,2,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,-0.6,39,98000,0,0,313,0,0,0,0,0,0,0,80,4.1,8,4,16.0,7620,9,999999999,150,0.0470,0,88,0.200,0.0,1.0 +2002,1,2,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,-1.1,38,98000,0,0,307,0,0,0,0,0,0,0,70,3.6,5,2,16.0,7620,9,999999999,150,0.0470,0,88,0.200,0.0,1.0 +2002,1,2,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,-1.1,42,98000,0,0,300,0,0,0,0,0,0,0,80,1.5,4,2,16.0,7620,9,999999999,150,0.0470,0,88,0.200,0.0,1.0 +2002,1,2,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,-1.1,42,97900,0,0,296,0,0,0,0,0,0,0,50,3.6,2,1,16.0,7620,9,999999999,150,0.0470,0,88,0.200,0.0,1.0 +2002,1,2,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,-2.2,34,98000,0,0,302,0,0,0,0,0,0,0,60,3.1,2,1,16.0,7620,9,999999999,150,0.0470,0,88,0.200,0.0,1.0 +2002,1,2,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,-2.2,36,98100,23,625,303,0,0,0,0,0,0,0,80,5.2,3,2,16.0,7620,9,999999999,150,0.0470,0,88,0.200,0.0,1.0 +2002,1,2,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,-2.2,34,98200,233,1415,306,58,53,49,6400,3800,5700,10400,80,2.6,3,2,16.0,7620,9,999999999,140,0.0470,0,88,0.200,0.0,1.0 +2002,1,2,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,-2.2,30,98200,458,1415,318,269,480,113,28000,43500,13900,21500,70,6.2,6,3,16.0,7620,9,999999999,140,0.0470,0,88,0.200,0.0,1.0 +2002,1,2,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,-2.2,28,98200,632,1415,320,391,646,102,41000,62700,12900,20900,60,6.7,3,2,16.0,7620,9,999999999,140,0.0470,0,88,0.200,0.0,1.0 +2002,1,2,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,-2.8,25,98100,742,1415,328,457,469,210,47500,47200,22700,46300,70,6.2,6,3,16.0,7620,9,999999999,140,0.0470,0,88,0.200,0.0,1.0 +2002,1,2,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,-3.9,22,98100,782,1415,329,292,48,265,32000,4800,29300,80600,70,7.2,7,4,16.0,7620,9,999999999,130,0.0470,0,88,0.200,0.0,1.0 +2002,1,2,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,-2.8,25,98000,748,1415,330,292,55,263,32100,5500,29100,77700,60,4.6,9,4,16.0,6096,9,999999999,130,0.0470,0,88,0.200,0.0,1.0 +2002,1,2,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,-2.8,23,98000,642,1415,335,278,125,221,30000,12600,24300,53500,70,5.7,9,4,16.0,6096,9,999999999,130,0.0470,0,88,0.200,0.0,1.0 +2002,1,2,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,-2.8,23,97900,472,1415,335,129,0,129,14500,0,14500,46900,60,5.2,8,4,16.0,6096,9,999999999,120,0.0470,0,88,0.200,0.0,1.0 +2002,1,2,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,-2.2,25,98000,250,1415,331,184,379,116,18500,26300,13800,25700,60,5.2,8,3,16.0,6096,9,999999999,120,0.0470,0,88,0.200,0.0,1.0 +2002,1,2,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,-1.7,28,98000,32,719,319,0,61,0,0,0,0,0,60,3.6,2,1,16.0,6096,9,999999999,120,0.0470,0,88,0.200,0.0,1.0 +2002,1,2,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,-1.1,30,98000,0,0,317,0,0,0,0,0,0,0,60,5.2,2,1,16.0,6096,9,999999999,120,0.0470,0,88,0.200,0.0,1.0 +2002,1,2,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,-1.1,34,98000,0,0,314,0,0,0,0,0,0,0,80,4.1,3,2,16.0,7620,9,999999999,120,0.0470,0,88,0.200,0.0,1.0 +2002,1,2,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,-1.1,35,97900,0,0,308,0,0,0,0,0,0,0,80,4.1,3,1,16.0,7620,9,999999999,120,0.0470,0,88,0.200,0.0,1.0 +2002,1,2,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,-1.1,39,97900,0,0,300,0,0,0,0,0,0,0,90,3.1,1,1,16.0,7620,9,999999999,120,0.0470,0,88,0.200,0.0,1.0 +2002,1,2,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,-1.1,39,97900,0,0,300,0,0,0,0,0,0,0,90,2.1,1,1,16.0,7620,9,999999999,130,0.0470,0,88,0.200,0.0,1.0 +2002,1,2,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,0.0,44,97800,0,0,299,0,0,0,0,0,0,0,80,2.6,1,1,16.0,7620,9,999999999,130,0.0470,0,88,0.200,0.0,1.0 +2002,1,3,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,-1.1,41,97800,0,0,298,0,0,0,0,0,0,0,100,2.1,1,1,16.0,7620,9,999999999,130,0.0470,0,88,0.200,0.0,1.0 +2002,1,3,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,-0.6,44,97800,0,0,291,0,0,0,0,0,0,0,100,1.5,0,0,16.0,7620,9,999999999,130,0.0470,0,88,0.200,0.0,1.0 +2002,1,3,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,-1.1,42,97800,0,0,300,0,0,0,0,0,0,0,90,2.6,5,2,16.0,7620,9,999999999,130,0.0470,0,88,0.200,0.0,1.0 +2002,1,3,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,-1.1,42,97800,0,0,303,0,0,0,0,0,0,0,0,0.0,5,3,16.0,7620,9,999999999,120,0.0470,0,88,0.200,0.0,1.0 +2002,1,3,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,0.0,50,97900,0,0,299,0,0,0,0,0,0,0,0,0.0,5,3,16.0,7620,9,999999999,120,0.0470,0,88,0.200,0.0,1.0 +2002,1,3,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,0.0,50,97800,0,0,296,0,0,0,0,0,0,0,0,0.0,4,2,16.0,6096,9,999999999,120,0.0470,0,88,0.200,0.0,1.0 +2002,1,3,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,-0.6,47,97800,0,0,292,0,0,0,0,0,0,0,90,1.5,1,1,16.0,6096,9,999999999,120,0.0470,0,88,0.200,0.0,1.0 +2002,1,3,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,-0.6,46,97900,23,625,294,0,0,0,0,0,0,0,0,0.0,2,1,16.0,7010,9,999999999,120,0.0470,0,88,0.200,0.0,1.0 +2002,1,3,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,-0.6,41,98000,233,1415,305,93,212,58,9800,14300,7500,10900,100,1.5,3,2,16.0,7620,9,999999999,120,0.0470,0,88,0.200,0.0,1.0 +2002,1,3,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,-1.1,33,98100,458,1415,317,315,715,82,32500,64300,11500,15400,80,5.2,4,2,16.0,7620,9,999999999,130,0.0470,0,88,0.200,0.0,1.0 +2002,1,3,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,-1.1,30,98100,633,1415,342,412,565,159,43200,55500,18300,32400,70,4.6,8,8,16.0,7620,9,999999999,130,0.0470,0,88,0.200,0.0,1.0 +2002,1,3,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,-1.1,28,97900,744,1415,326,194,12,188,22400,1000,21800,78400,90,4.6,2,2,16.0,4572,9,999999999,140,0.0470,0,88,0.200,0.0,1.0 +2002,1,3,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,-1.1,28,97800,784,1415,338,243,12,236,27600,1100,27000,94500,50,2.6,7,6,16.0,4572,9,999999999,140,0.0470,0,88,0.200,0.0,1.0 +2002,1,3,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,-1.1,27,97700,750,1415,344,272,31,256,30600,2800,29100,96400,70,3.6,9,7,16.0,4572,9,999999999,150,0.0470,0,88,0.200,0.0,1.0 +2002,1,3,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,-0.6,28,97700,645,1415,347,228,31,213,25400,2700,24200,77800,80,3.1,9,7,16.0,4572,9,999999999,140,0.0470,0,88,0.200,0.0,1.0 +2002,1,3,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,-0.6,28,97700,475,1415,338,163,33,152,17900,3100,16800,39700,0,0.0,7,4,16.0,4572,9,999999999,130,0.0470,0,88,0.200,0.0,1.0 +2002,1,3,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,-0.6,28,97700,254,1415,343,197,430,120,19900,30000,14400,26800,320,2.1,8,6,16.0,4572,9,999999999,130,0.0470,0,88,0.200,0.0,1.0 +2002,1,3,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,0.0,31,97700,33,743,339,1,73,0,0,0,0,0,280,3.1,8,6,16.0,4572,9,999999999,130,0.0470,0,88,0.200,0.0,1.0 +2002,1,3,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,0.0,31,97700,0,0,333,0,0,0,0,0,0,0,290,3.1,6,4,16.0,4572,9,999999999,130,0.0470,0,88,0.200,0.0,1.0 +2002,1,3,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,1.1,37,97700,0,0,337,0,0,0,0,0,0,0,260,2.1,7,7,16.0,4572,9,999999999,130,0.0470,0,88,0.200,0.0,1.0 +2002,1,3,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,1.7,44,97700,0,0,326,0,0,0,0,0,0,0,230,2.1,6,6,16.0,4572,9,999999999,130,0.0470,0,88,0.200,0.0,1.0 +2002,1,3,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,0.6,39,97800,0,0,312,0,0,0,0,0,0,0,300,2.1,1,1,16.0,77777,9,999999999,130,0.0470,0,88,0.200,0.0,1.0 +2002,1,3,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,2.2,52,97800,0,0,296,0,0,0,0,0,0,0,210,2.1,0,0,16.0,77777,9,999999999,130,0.0470,0,88,0.200,0.0,1.0 +2002,1,3,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,0.6,45,97700,0,0,296,0,0,0,0,0,0,0,260,1.5,0,0,16.0,77777,9,999999999,130,0.0470,0,88,0.200,0.0,1.0 +2002,1,4,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,1.1,50,97700,0,0,292,0,0,0,0,0,0,0,310,1.5,0,0,16.0,77777,9,999999999,140,0.0470,0,88,0.200,0.0,1.0 +2002,1,4,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,0.6,50,97800,0,0,290,0,0,0,0,0,0,0,270,1.5,0,0,16.0,77777,9,999999999,140,0.0470,0,88,0.200,0.0,1.0 +2002,1,4,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,1.1,54,97800,0,0,288,0,0,0,0,0,0,0,0,0.0,1,0,16.0,77777,9,999999999,130,0.0470,0,88,0.200,0.0,1.0 +2002,1,4,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,1.7,61,97700,0,0,284,0,0,0,0,0,0,0,120,1.5,0,0,16.0,77777,9,999999999,130,0.0470,0,88,0.200,0.0,1.0 +2002,1,4,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,1.7,65,97800,0,0,285,0,0,0,0,0,0,0,110,3.1,1,1,16.0,77777,9,999999999,120,0.0470,0,88,0.200,0.0,1.0 +2002,1,4,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,1.7,65,97700,0,0,280,0,0,0,0,0,0,0,80,2.6,0,0,16.0,77777,9,999999999,120,0.0470,0,88,0.200,0.0,1.0 +2002,1,4,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,1.7,68,97700,0,0,277,0,0,0,0,0,0,0,80,2.6,0,0,16.0,77777,9,999999999,110,0.0470,0,88,0.200,0.0,1.0 +2002,1,4,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,1.1,65,97800,23,601,277,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,110,0.0470,0,88,0.200,0.0,1.0 +2002,1,4,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,2.2,63,97900,233,1415,285,118,560,26,12500,43200,5400,6100,0,0.0,0,0,16.0,77777,9,999999999,110,0.0470,0,88,0.200,0.0,1.0 +2002,1,4,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,2.2,54,98000,458,1415,294,301,776,48,31600,70900,8600,10600,260,2.1,0,0,16.0,77777,9,999999999,110,0.0470,0,88,0.200,0.0,1.0 +2002,1,4,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,2.2,50,98100,633,1415,298,444,867,54,46700,83500,9200,13200,10,1.5,0,0,16.0,77777,9,999999999,100,0.0470,0,88,0.200,0.0,1.0 +2002,1,4,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,2.2,45,98000,745,1415,305,542,872,81,57600,86400,11900,18400,230,1.5,0,0,16.0,77777,9,999999999,100,0.0470,0,88,0.200,0.0,1.0 +2002,1,4,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,2.2,39,97900,786,1415,315,583,884,90,61600,87900,12600,20600,250,2.1,0,0,16.0,77777,9,999999999,100,0.0470,0,88,0.200,0.0,1.0 +2002,1,4,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,2.2,36,97900,753,1415,320,545,849,91,57200,83800,12400,20000,260,3.6,0,0,16.0,77777,9,999999999,100,0.0470,0,88,0.200,0.0,1.0 +2002,1,4,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,1.7,33,97900,648,1415,324,483,895,71,50400,86300,10800,14500,260,6.7,0,0,16.0,77777,9,999999999,100,0.0470,0,88,0.200,0.0,1.0 +2002,1,4,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,1.7,32,97900,479,1415,327,342,807,67,35000,73800,9900,12800,260,5.7,0,0,16.0,77777,9,999999999,110,0.0470,0,88,0.200,0.0,1.0 +2002,1,4,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,1.1,30,97900,258,1415,340,193,660,72,19100,46900,10500,11600,250,5.2,3,3,16.0,77777,9,999999999,110,0.0470,0,88,0.200,0.0,1.0 +2002,1,4,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,1.1,34,97900,35,766,332,1,120,0,0,0,0,0,240,3.6,3,3,16.0,77777,9,999999999,100,0.0470,0,88,0.200,0.0,1.0 +2002,1,4,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,1.1,36,98000,0,0,327,0,0,0,0,0,0,0,0,0.0,3,3,16.0,77777,9,999999999,100,0.0470,0,88,0.200,0.0,1.0 +2002,1,4,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,1.1,39,98100,0,0,309,0,0,0,0,0,0,0,110,1.5,0,0,16.0,77777,9,999999999,100,0.0470,0,88,0.200,0.0,1.0 +2002,1,4,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,2.2,44,98200,0,0,307,0,0,0,0,0,0,0,60,2.6,0,0,16.0,77777,9,999999999,100,0.0470,0,88,0.200,0.0,1.0 +2002,1,4,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,2.2,50,98200,0,0,298,0,0,0,0,0,0,0,80,4.6,0,0,16.0,77777,9,999999999,90,0.0470,0,88,0.200,0.0,1.0 +2002,1,4,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,2.8,57,98400,0,0,294,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,90,0.0470,0,88,0.200,0.0,1.0 +2002,1,4,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,2.8,63,98300,0,0,287,0,0,0,0,0,0,0,210,2.6,0,0,16.0,77777,9,999999999,90,0.0470,0,88,0.200,0.0,1.0 +2002,1,5,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,2.2,58,98300,0,0,289,0,0,0,0,0,0,0,120,1.5,0,0,16.0,77777,9,999999999,80,0.0470,0,88,0.200,0.0,1.0 +2002,1,5,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,2.2,61,98400,0,0,287,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,80,0.0470,0,88,0.200,0.0,1.0 +2002,1,5,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,2.2,65,98400,0,0,282,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,70,0.0470,0,88,0.200,0.0,1.0 +2002,1,5,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,0.6,63,98500,0,0,276,0,0,0,0,0,0,0,150,2.1,0,0,16.0,77777,9,999999999,70,0.0470,0,88,0.200,0.0,1.0 +2002,1,5,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,-1.7,50,98600,0,0,282,0,0,0,0,0,0,0,100,2.6,1,1,16.0,77777,9,999999999,70,0.0470,0,88,0.200,0.0,1.0 +2002,1,5,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,-1.1,57,98600,0,0,278,0,0,0,0,0,0,0,0,0.0,3,1,16.0,7620,9,999999999,70,0.0470,0,88,0.200,0.0,1.0 +2002,1,5,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,-1.7,54,98700,0,0,284,0,0,0,0,0,0,0,0,0.0,3,3,16.0,77777,9,999999999,70,0.0470,0,88,0.200,0.0,1.0 +2002,1,5,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,-0.6,62,98700,23,601,271,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,70,0.0470,0,88,0.200,0.0,1.0 +2002,1,5,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,-5.0,31,98800,233,1415,290,115,516,30,11800,38600,5500,6000,70,4.6,2,1,16.0,7620,9,999999999,70,0.0470,0,88,0.200,0.0,1.0 +2002,1,5,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,-4.4,31,98900,459,1415,289,296,748,52,31000,68400,8700,10900,0,0.0,0,0,16.0,77777,9,999999999,70,0.0470,0,88,0.200,0.0,1.0 +2002,1,5,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,-4.4,27,98900,635,1415,298,438,844,58,46000,81300,9400,13600,260,2.1,0,0,16.0,77777,9,999999999,60,0.0470,0,88,0.200,0.0,1.0 +2002,1,5,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,-5.6,22,98800,747,1415,304,542,849,92,56800,83700,12400,20000,250,2.1,0,0,16.0,77777,9,999999999,70,0.0470,0,88,0.200,0.0,1.0 +2002,1,5,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,-8.3,16,98700,788,1415,306,552,752,132,58100,75100,16100,29700,0,0.0,0,0,16.0,77777,9,999999999,70,0.0470,0,88,0.200,0.0,1.0 +2002,1,5,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,-8.3,15,98600,756,1415,316,583,910,95,60900,89700,12800,20600,280,1.5,3,1,16.0,7620,9,999999999,70,0.0470,0,88,0.200,0.0,1.0 +2002,1,5,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,-7.8,16,98600,651,1415,314,483,876,78,50600,85100,11200,16500,0,0.0,1,1,16.0,7620,9,999999999,70,0.0470,0,88,0.200,0.0,1.0 +2002,1,5,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,-7.8,16,98700,482,1415,318,332,713,88,34300,65000,12000,16600,250,3.6,4,2,16.0,7620,9,999999999,70,0.0470,0,88,0.200,0.0,1.0 +2002,1,5,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,-7.2,17,98600,261,1415,319,188,627,72,18700,44900,10400,11600,270,3.6,4,2,16.0,7620,9,999999999,70,0.0470,0,88,0.200,0.0,1.0 +2002,1,5,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,-6.1,21,98600,37,766,313,2,120,1,800,6800,500,400,220,2.1,3,2,16.0,7620,9,999999999,70,0.0470,0,88,0.200,0.0,1.0 +2002,1,5,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,-6.1,22,98600,0,0,316,0,0,0,0,0,0,0,260,2.1,5,5,16.0,77777,9,999999999,80,0.0470,0,88,0.200,0.0,1.0 +2002,1,5,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,-3.3,31,98700,0,0,295,0,0,0,0,0,0,0,270,2.1,0,0,16.0,77777,9,999999999,80,0.0470,0,88,0.200,0.0,1.0 +2002,1,5,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,-4.4,30,98700,0,0,291,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,80,0.0470,0,88,0.200,0.0,1.0 +2002,1,5,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,-4.4,30,98600,0,0,291,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,90,0.0470,0,88,0.200,0.0,1.0 +2002,1,5,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,-2.8,39,98700,0,0,284,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,90,0.0470,0,88,0.200,0.0,1.0 +2002,1,5,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,-3.3,39,98600,0,0,286,0,0,0,0,0,0,0,110,3.1,1,1,16.0,77777,9,999999999,90,0.0470,0,88,0.200,0.0,1.0 +2002,1,6,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,-3.3,42,98500,0,0,277,0,0,0,0,0,0,0,110,1.5,0,0,16.0,77777,9,999999999,90,0.0460,0,88,0.200,0.0,1.0 +2002,1,6,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,-4.4,40,98500,0,0,274,0,0,0,0,0,0,0,100,3.1,0,0,16.0,77777,9,999999999,90,0.0460,0,88,0.200,0.0,1.0 +2002,1,6,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,-3.3,46,98500,0,0,272,0,0,0,0,0,0,0,130,1.5,0,0,16.0,77777,9,999999999,90,0.0460,0,88,0.200,0.0,1.0 +2002,1,6,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,-5.0,38,98600,0,0,273,0,0,0,0,0,0,0,360,1.5,0,0,16.0,77777,9,999999999,90,0.0460,0,88,0.200,0.0,1.0 +2002,1,6,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,-3.9,47,98600,0,0,268,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,90,0.0460,0,88,0.200,0.0,1.0 +2002,1,6,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,-3.9,49,98500,0,0,266,0,0,0,0,0,0,0,90,3.1,0,0,16.0,77777,9,999999999,90,0.0460,0,88,0.200,0.0,1.0 +2002,1,6,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,-3.9,49,98500,0,0,266,0,0,0,0,0,0,0,120,2.1,0,0,16.0,77777,9,999999999,100,0.0460,0,88,0.200,0.0,1.0 +2002,1,6,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,-3.9,47,98600,23,601,273,0,0,0,0,0,0,0,70,2.1,1,1,16.0,7620,9,999999999,100,0.0460,0,88,0.200,0.0,1.0 +2002,1,6,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,-3.9,45,98700,233,1415,284,64,48,56,7000,3700,6400,13900,60,2.1,6,4,16.0,7620,9,999999999,100,0.0460,0,88,0.200,0.0,1.0 +2002,1,6,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,-3.3,41,98700,459,1415,291,314,642,105,31900,56900,13300,18700,120,1.5,6,3,16.0,7620,9,999999999,100,0.0460,0,88,0.200,0.0,1.0 +2002,1,6,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,-4.4,30,98800,636,1415,297,412,605,139,42200,57800,16100,26900,130,2.6,1,1,16.0,7620,9,999999999,110,0.0460,0,88,0.200,0.0,1.0 +2002,1,6,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,-5.0,24,98700,749,1415,305,559,843,111,57400,82400,13600,22200,130,1.5,2,1,16.0,7620,9,999999999,110,0.0460,0,88,0.200,0.0,1.0 +2002,1,6,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,-4.4,24,98500,791,1415,311,546,722,141,57100,71900,16800,31500,120,1.5,2,1,16.0,7620,9,999999999,110,0.0460,0,88,0.200,0.0,1.0 +2002,1,6,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,-5.0,21,98500,758,1415,320,544,842,90,57100,83300,12300,20000,0,0.0,3,2,16.0,7620,9,999999999,110,0.0460,0,88,0.200,0.0,1.0 +2002,1,6,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,-6.1,17,98500,655,1415,315,446,744,101,47000,72800,13200,21000,0,0.0,1,0,16.0,7620,9,999999999,110,0.0460,0,88,0.200,0.0,1.0 +2002,1,6,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,-6.1,17,98500,486,1415,315,339,745,82,35200,68300,11600,15700,290,2.1,0,0,16.0,7620,9,999999999,110,0.0460,0,88,0.200,0.0,1.0 +2002,1,6,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,-6.1,17,98500,265,1415,317,201,567,94,19900,40800,12300,18100,230,2.6,0,0,16.0,7620,9,999999999,110,0.0460,0,88,0.200,0.0,1.0 +2002,1,6,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,-5.6,19,98500,39,790,311,2,115,1,800,6600,500,400,270,2.1,1,0,16.0,7620,9,999999999,120,0.0460,0,88,0.200,0.0,1.0 +2002,1,6,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,-4.4,24,98500,0,0,305,0,0,0,0,0,0,0,250,2.1,0,0,16.0,7620,9,999999999,120,0.0460,0,88,0.200,0.0,1.0 +2002,1,6,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,-2.8,30,98500,0,0,300,0,0,0,0,0,0,0,0,0.0,0,0,16.0,7620,9,999999999,120,0.0460,0,88,0.200,0.0,1.0 +2002,1,6,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,-1.1,38,98500,0,0,303,0,0,0,0,0,0,0,0,0.0,1,1,16.0,7620,9,999999999,120,0.0460,0,88,0.200,0.0,1.0 +2002,1,6,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,-1.1,41,98600,0,0,293,0,0,0,0,0,0,0,230,1.5,0,0,16.0,77777,9,999999999,130,0.0460,0,88,0.200,0.0,1.0 +2002,1,6,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,-1.7,40,98600,0,0,290,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,130,0.0460,0,88,0.200,0.0,1.0 +2002,1,6,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,-1.1,45,98500,0,0,286,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,130,0.0460,0,88,0.200,0.0,1.0 +2002,1,7,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,-1.7,45,98500,0,0,283,0,0,0,0,0,0,0,90,2.6,0,0,16.0,77777,9,999999999,130,0.0460,0,88,0.200,0.0,1.0 +2002,1,7,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,-1.1,47,98500,0,0,283,0,0,0,0,0,0,0,70,2.6,0,0,16.0,77777,9,999999999,130,0.0460,0,88,0.200,0.0,1.0 +2002,1,7,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,-1.1,49,98500,0,0,281,0,0,0,0,0,0,0,100,2.1,0,0,16.0,77777,9,999999999,130,0.0460,0,88,0.200,0.0,1.0 +2002,1,7,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,-2.2,46,98500,0,0,278,0,0,0,0,0,0,0,100,1.5,0,0,16.0,77777,9,999999999,140,0.0460,0,88,0.200,0.0,1.0 +2002,1,7,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,-1.1,55,98500,0,0,280,0,0,0,0,0,0,0,100,2.6,1,1,16.0,77777,9,999999999,140,0.0460,0,88,0.200,0.0,1.0 +2002,1,7,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,-1.1,55,98500,0,0,275,0,0,0,0,0,0,0,90,1.5,1,0,16.0,77777,9,999999999,140,0.0460,0,88,0.200,0.0,1.0 +2002,1,7,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,-0.6,57,98500,0,0,284,0,0,0,0,0,0,0,110,3.6,3,2,16.0,7620,9,999999999,140,0.0460,0,88,0.200,0.0,1.0 +2002,1,7,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,-0.6,59,98500,23,601,278,0,0,0,0,0,0,0,80,3.6,3,1,16.0,7620,9,999999999,140,0.0460,0,88,0.200,0.0,1.0 +2002,1,7,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,-1.1,51,98600,233,1415,279,112,381,49,11300,26600,6900,8500,90,3.1,0,0,16.0,7620,9,999999999,140,0.0460,0,88,0.200,0.0,1.0 +2002,1,7,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,-2.2,37,98600,460,1415,297,245,368,125,25300,33300,14400,24100,110,2.6,2,1,16.0,7620,9,999999999,140,0.0460,0,88,0.200,0.0,1.0 +2002,1,7,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,-2.2,32,98700,637,1415,306,385,518,151,40600,51000,17600,30600,70,2.1,2,1,16.0,7620,9,999999999,140,0.0460,0,88,0.200,0.0,1.0 +2002,1,7,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,-1.1,29,98600,751,1415,320,405,273,259,42800,28500,27600,62400,0,0.0,3,1,16.0,7620,9,999999999,140,0.0460,0,88,0.200,0.0,1.0 +2002,1,7,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,-1.1,27,98400,793,1415,331,594,740,178,61200,72800,20200,38300,0,0.0,5,2,16.0,6096,9,999999999,140,0.0460,0,88,0.200,0.0,1.0 +2002,1,7,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,-1.1,24,98300,762,1415,339,466,445,225,48200,44900,24000,50500,0,0.0,4,2,16.0,6096,9,999999999,140,0.0460,0,88,0.200,0.0,1.0 +2002,1,7,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,-0.6,23,98300,658,1415,345,368,344,207,39000,35100,22600,46500,290,1.5,3,2,16.0,7620,9,999999999,130,0.0460,0,88,0.200,0.0,1.0 +2002,1,7,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,0.0,23,98200,490,1415,346,363,717,114,36800,64600,14400,20400,260,2.1,2,1,16.0,7620,9,999999999,130,0.0460,0,88,0.200,0.0,1.0 +2002,1,7,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,0.6,25,98100,269,1415,349,196,720,59,19900,53300,9700,10200,250,1.5,4,2,16.0,7620,9,999999999,120,0.0460,0,88,0.200,0.0,1.0 +2002,1,7,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,0.6,27,98100,41,814,337,3,154,1,1100,8900,600,400,0,0.0,3,1,16.0,7620,9,999999999,120,0.0460,0,88,0.200,0.0,1.0 +2002,1,7,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,1.1,30,98200,0,0,332,0,0,0,0,0,0,0,0,0.0,1,1,16.0,7620,9,999999999,120,0.0460,0,88,0.200,0.0,1.0 +2002,1,7,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,2.2,36,98200,0,0,330,0,0,0,0,0,0,0,0,0.0,4,2,16.0,7620,9,999999999,120,0.0460,0,88,0.200,0.0,1.0 +2002,1,7,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,2.2,38,98200,0,0,328,0,0,0,0,0,0,0,270,1.5,3,2,16.0,7620,9,999999999,120,0.0460,0,88,0.200,0.0,1.0 +2002,1,7,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,2.2,44,98200,0,0,318,0,0,0,0,0,0,0,0,0.0,5,2,16.0,7620,9,999999999,130,0.0460,0,88,0.200,0.0,1.0 +2002,1,7,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,2.2,42,98300,0,0,320,0,0,0,0,0,0,0,0,0.0,6,2,16.0,7620,9,999999999,130,0.0460,0,88,0.200,0.0,1.0 +2002,1,7,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,2.8,49,98100,0,0,317,0,0,0,0,0,0,0,100,2.1,6,3,16.0,7620,9,999999999,130,0.0460,0,88,0.200,0.0,1.0 +2002,1,8,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,2.2,48,98100,0,0,311,0,0,0,0,0,0,0,100,2.6,4,2,16.0,77777,9,999999999,130,0.0460,0,88,0.200,0.0,1.0 +2002,1,8,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,1.7,50,98000,0,0,301,0,0,0,0,0,0,0,130,1.5,2,1,16.0,77777,9,999999999,130,0.0460,0,88,0.200,0.0,1.0 +2002,1,8,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,2.2,50,98000,0,0,304,0,0,0,0,0,0,0,0,0.0,1,1,16.0,77777,9,999999999,130,0.0460,0,88,0.200,0.0,1.0 +2002,1,8,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,1.7,54,98000,0,0,291,0,0,0,0,0,0,0,0,0.0,1,0,16.0,77777,9,999999999,130,0.0460,0,88,0.200,0.0,1.0 +2002,1,8,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,2.2,58,98000,0,0,289,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,130,0.0460,0,88,0.200,0.0,1.0 +2002,1,8,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,2.2,61,97900,0,0,287,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,130,0.0460,0,88,0.200,0.0,1.0 +2002,1,8,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,2.2,63,97900,0,0,285,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,120,0.0460,0,88,0.200,0.0,1.0 +2002,1,8,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,1.7,61,98000,23,601,284,0,0,0,0,0,0,0,70,2.6,0,0,16.0,7620,9,999999999,120,0.0460,0,88,0.200,0.0,1.0 +2002,1,8,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,2.2,50,98000,233,1415,298,125,613,23,13200,47400,5400,5900,90,2.1,0,0,16.0,7620,9,999999999,120,0.0460,0,88,0.200,0.0,1.0 +2002,1,8,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,2.2,42,98100,461,1415,310,310,821,41,32800,75200,8100,10200,90,3.1,0,0,16.0,7620,9,999999999,130,0.0460,0,88,0.200,0.0,1.0 +2002,1,8,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,2.2,33,98100,639,1415,327,449,873,53,47300,84200,9100,13200,120,2.1,1,0,16.0,7620,9,999999999,130,0.0460,0,88,0.200,0.0,1.0 +2002,1,8,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,2.2,28,98100,753,1415,381,559,914,71,58500,89600,10700,16300,0,0.0,10,9,16.0,7620,9,999999999,130,0.0460,0,88,0.200,0.0,1.0 +2002,1,8,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,2.2,25,97900,796,1415,347,600,914,84,62500,89900,11700,17800,70,1.5,1,0,16.0,7620,9,999999999,130,0.0460,0,88,0.200,0.0,1.0 +2002,1,8,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,1.7,20,97800,765,1415,360,556,811,116,58800,81100,14800,26000,0,0.0,0,0,16.0,77777,9,999999999,130,0.0460,0,88,0.200,0.0,1.0 +2002,1,8,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,1.7,19,97800,662,1415,372,502,912,73,52300,88100,11000,14800,0,0.0,1,1,16.0,7620,9,999999999,130,0.0460,0,88,0.200,0.0,1.0 +2002,1,8,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,1.1,19,97700,494,1415,369,362,849,64,37400,78400,9900,12700,360,1.5,1,1,16.0,7620,9,999999999,120,0.0460,0,88,0.200,0.0,1.0 +2002,1,8,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,1.1,19,97600,273,1415,362,208,757,62,21000,56200,10100,10600,0,0.0,0,0,16.0,77777,9,999999999,120,0.0460,0,88,0.200,0.0,1.0 +2002,1,8,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,3.9,28,97600,43,837,349,4,171,1,1200,9900,700,400,230,1.5,0,0,16.0,77777,9,999999999,120,0.0460,0,88,0.200,0.0,1.0 +2002,1,8,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,3.9,31,97600,0,0,342,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,120,0.0460,0,88,0.200,0.0,1.0 +2002,1,8,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,3.9,33,97600,0,0,337,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,120,0.0460,0,88,0.200,0.0,1.0 +2002,1,8,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,5.6,48,97600,0,0,321,0,0,0,0,0,0,0,170,1.5,0,0,16.0,77777,9,999999999,120,0.0460,0,88,0.200,0.0,1.0 +2002,1,8,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,3.9,42,97600,0,0,319,0,0,0,0,0,0,0,120,2.1,0,0,16.0,77777,9,999999999,120,0.0460,0,88,0.200,0.0,1.0 +2002,1,8,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,3.3,44,97700,0,0,320,0,0,0,0,0,0,0,90,3.1,1,1,16.0,77777,9,999999999,120,0.0460,0,88,0.200,0.0,1.0 +2002,1,8,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,2.8,46,97500,0,0,314,0,0,0,0,0,0,0,90,3.6,2,1,16.0,77777,9,999999999,120,0.0460,0,88,0.200,0.0,1.0 +2002,1,9,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,2.8,47,97500,0,0,312,0,0,0,0,0,0,0,100,3.6,2,1,16.0,77777,9,999999999,120,0.0460,0,88,0.200,0.0,1.0 +2002,1,9,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,3.3,49,97500,0,0,312,0,0,0,0,0,0,0,100,4.1,2,1,16.0,77777,9,999999999,130,0.0460,0,88,0.200,0.0,1.0 +2002,1,9,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,2.8,49,97500,0,0,309,0,0,0,0,0,0,0,110,3.6,1,1,16.0,77777,9,999999999,130,0.0460,0,88,0.200,0.0,1.0 +2002,1,9,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,2.8,53,97500,0,0,304,0,0,0,0,0,0,0,80,3.6,2,1,16.0,77777,9,999999999,130,0.0460,0,88,0.200,0.0,1.0 +2002,1,9,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,2.2,52,97600,0,0,306,0,0,0,0,0,0,0,130,3.6,4,2,16.0,77777,9,999999999,130,0.0460,0,88,0.200,0.0,1.0 +2002,1,9,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,1.7,44,97500,0,0,318,0,0,0,0,0,0,0,130,3.6,4,3,16.0,6096,9,999999999,140,0.0460,0,88,0.200,0.0,1.0 +2002,1,9,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,1.7,49,97600,0,0,310,0,0,0,0,0,0,0,110,3.6,5,3,16.0,6096,9,999999999,140,0.0460,0,88,0.200,0.0,1.0 +2002,1,9,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,2.2,52,97600,23,601,302,0,0,0,0,0,0,0,90,3.1,3,1,16.0,6096,9,999999999,150,0.0460,0,88,0.200,0.0,1.0 +2002,1,9,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,2.2,45,97600,234,1415,315,86,227,49,9100,15600,6500,8800,90,3.6,4,2,16.0,6096,9,999999999,150,0.0460,0,88,0.200,0.0,1.0 +2002,1,9,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,2.2,39,97700,462,1415,325,250,424,110,26000,38500,13400,20800,90,4.1,5,2,16.0,6096,9,999999999,160,0.0460,0,88,0.200,0.0,1.0 +2002,1,9,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,1.7,34,97700,640,1415,332,401,617,121,41600,59500,14500,24200,100,3.6,5,2,16.0,6096,9,999999999,160,0.0460,0,88,0.200,0.0,1.0 +2002,1,9,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,1.7,30,97600,755,1415,342,450,415,228,48200,43400,24900,53500,120,3.1,5,2,16.0,6096,9,999999999,160,0.0460,0,88,0.200,0.0,1.0 +2002,1,9,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,1.7,28,97500,799,1415,351,412,186,306,44300,19200,33400,80200,110,2.6,6,3,16.0,6096,9,999999999,160,0.0460,0,88,0.200,0.0,1.0 +2002,1,9,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,2.2,28,97400,768,1415,355,407,189,304,43700,19400,33100,78300,0,0.0,8,3,16.0,6096,9,999999999,160,0.0460,0,88,0.200,0.0,1.0 +2002,1,9,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,2.2,27,97300,665,1415,360,367,368,193,39100,37700,21300,42700,260,2.1,8,4,16.0,6096,9,999999999,150,0.0460,0,88,0.200,0.0,1.0 +2002,1,9,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,2.2,27,97400,497,1415,357,251,245,165,26300,23300,18100,35300,290,2.1,7,3,16.0,6096,9,999999999,150,0.0460,0,88,0.200,0.0,1.0 +2002,1,9,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,4.4,32,97300,277,1415,357,204,431,119,19800,31500,13600,23800,230,1.5,7,3,16.0,6096,9,999999999,140,0.0460,0,88,0.200,0.0,1.0 +2002,1,9,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,5.6,40,97300,46,861,350,4,102,3,1000,5900,600,1100,220,2.1,8,4,16.0,6096,9,999999999,140,0.0460,0,88,0.200,0.0,1.0 +2002,1,9,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,4.4,37,97300,0,0,346,0,0,0,0,0,0,0,290,1.5,7,3,16.0,6096,9,999999999,140,0.0460,0,88,0.200,0.0,1.0 +2002,1,9,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,5.0,43,97400,0,0,339,0,0,0,0,0,0,0,0,0.0,7,3,16.0,6096,9,999999999,140,0.0460,0,88,0.200,0.0,1.0 +2002,1,9,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,5.6,48,97400,0,0,340,0,0,0,0,0,0,0,0,0.0,6,5,16.0,3658,9,999999999,140,0.0460,0,88,0.200,0.0,1.0 +2002,1,9,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,5.0,49,97400,0,0,334,0,0,0,0,0,0,0,220,1.5,6,5,16.0,6096,9,999999999,150,0.0460,0,88,0.200,0.0,1.0 +2002,1,9,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,3.3,42,97500,0,0,342,0,0,0,0,0,0,0,0,0.0,8,7,16.0,6096,9,999999999,150,0.0460,0,88,0.200,0.0,1.0 +2002,1,9,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,5.0,49,97400,0,0,341,0,0,0,0,0,0,0,80,2.6,8,7,16.0,6096,9,999999999,150,0.0460,0,88,0.200,0.0,1.0 +2002,1,10,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,4.4,46,97400,0,0,343,0,0,0,0,0,0,0,0,0.0,8,7,16.0,6096,9,999999999,160,0.0460,0,88,0.200,0.0,1.0 +2002,1,10,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,4.4,47,97400,0,0,337,0,0,0,0,0,0,0,220,2.6,8,6,16.0,6096,9,999999999,160,0.0460,0,88,0.200,0.0,1.0 +2002,1,10,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,4.4,49,97400,0,0,334,0,0,0,0,0,0,0,90,2.1,8,6,16.0,6096,9,999999999,170,0.0460,0,88,0.200,0.0,1.0 +2002,1,10,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,4.4,51,97400,0,0,326,0,0,0,0,0,0,0,110,1.5,6,4,16.0,6096,9,999999999,170,0.0460,0,88,0.200,0.0,1.0 +2002,1,10,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,3.9,51,97500,0,0,320,0,0,0,0,0,0,0,100,4.1,5,3,16.0,6096,9,999999999,170,0.0460,0,88,0.200,0.0,1.0 +2002,1,10,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,3.9,53,97400,0,0,323,0,0,0,0,0,0,0,0,0.0,6,5,16.0,6096,9,999999999,170,0.0460,0,88,0.200,0.0,1.0 +2002,1,10,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,3.9,51,97500,0,0,332,0,0,0,0,0,0,0,350,4.1,7,7,16.0,4267,9,999999999,170,0.0460,0,88,0.200,0.0,1.0 +2002,1,10,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,4.4,55,97500,23,601,330,0,0,0,0,0,0,0,230,2.1,8,7,16.0,6096,9,999999999,170,0.0460,0,88,0.200,0.0,1.0 +2002,1,10,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,4.4,51,97600,234,1415,331,19,0,19,2300,0,2300,7800,270,2.1,7,6,16.0,6096,9,999999999,170,0.0460,0,88,0.200,0.0,1.0 +2002,1,10,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,4.4,46,97700,463,1415,366,125,11,121,14000,700,13800,44500,240,2.1,10,10,16.0,2896,9,999999999,160,0.0460,0,88,0.200,0.0,1.0 +2002,1,10,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,3.9,41,97800,642,1415,371,206,41,187,22600,4000,20700,54400,210,2.1,10,10,16.0,2743,9,999999999,160,0.0460,0,88,0.200,0.0,1.0 +2002,1,10,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,4.4,38,97700,757,1415,356,541,670,181,55300,65300,20300,37300,210,2.6,8,7,16.0,4267,9,999999999,160,0.0460,0,88,0.200,0.0,1.0 +2002,1,10,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,3.3,33,97600,801,1415,344,606,920,82,63100,90600,11600,17800,220,2.1,2,2,16.0,7620,9,999999999,160,0.0460,0,88,0.200,0.0,1.0 +2002,1,10,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,2.8,28,97600,771,1415,343,581,927,73,60700,91000,10800,16700,230,2.1,0,0,16.0,7620,9,999999999,150,0.0460,0,88,0.200,0.0,1.0 +2002,1,10,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,2.8,28,97600,669,1415,343,465,524,216,47500,51700,22900,46300,0,0.0,0,0,16.0,77777,9,999999999,150,0.0460,0,88,0.200,0.0,1.0 +2002,1,10,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,3.9,28,97600,501,1415,370,58,0,58,7000,0,7000,25600,0,0.0,5,5,16.0,77777,9,999999999,150,0.0460,0,88,0.200,0.0,1.0 +2002,1,10,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,6.7,44,97700,281,1415,362,31,0,31,3700,0,3700,12600,30,12.9,7,7,11.2,4267,9,999999999,140,0.0460,0,88,0.200,0.0,1.0 +2002,1,10,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,9.4,60,97900,48,884,378,1,0,1,100,0,100,400,70,7.7,10,10,16.0,2286,9,999999999,130,0.0460,0,88,0.200,0.0,1.0 +2002,1,10,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,7.8,54,97900,0,0,352,0,0,0,0,0,0,0,140,4.6,8,7,16.0,77777,9,999999999,120,0.0460,0,88,0.200,0.0,1.0 +2002,1,10,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,8.3,60,97900,0,0,338,0,0,0,0,0,0,0,40,1.5,4,4,16.0,77777,9,999999999,110,0.0460,0,88,0.200,0.0,1.0 +2002,1,10,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,6.7,50,98000,0,0,325,0,0,0,0,0,0,0,360,2.6,0,0,16.0,77777,9,999999999,110,0.0460,0,88,0.200,0.0,1.0 +2002,1,10,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,7.8,67,98000,0,0,311,0,0,0,0,0,0,0,210,2.1,0,0,16.0,77777,9,999999999,100,0.0460,0,88,0.200,0.0,1.0 +2002,1,10,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,0.6,35,98100,0,0,313,0,0,0,0,0,0,0,40,3.1,0,0,16.0,77777,9,999999999,90,0.0460,0,88,0.200,0.0,1.0 +2002,1,10,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,0.6,36,98100,0,0,311,0,0,0,0,0,0,0,20,1.5,0,0,16.0,77777,9,999999999,90,0.0460,0,88,0.200,0.0,1.0 +2002,1,11,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,2.2,48,98100,0,0,301,0,0,0,0,0,0,0,270,3.1,0,0,16.0,77777,9,999999999,90,0.0460,0,88,0.200,0.0,1.0 +2002,1,11,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,-1.1,35,98100,0,0,302,0,0,0,0,0,0,0,280,3.6,0,0,16.0,77777,9,999999999,100,0.0460,0,88,0.200,0.0,1.0 +2002,1,11,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,1.1,50,98100,0,0,292,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,90,0.0460,0,88,0.200,0.0,1.0 +2002,1,11,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,-1.1,38,98200,0,0,297,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,90,0.0460,0,88,0.200,0.0,1.0 +2002,1,11,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,-0.6,41,98300,0,0,295,0,0,0,0,0,0,0,50,2.1,0,0,16.0,77777,9,999999999,90,0.0460,0,88,0.200,0.0,1.0 +2002,1,11,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,0.6,42,98200,0,0,301,0,0,0,0,0,0,0,40,1.5,0,0,16.0,77777,9,999999999,90,0.0460,0,88,0.200,0.0,1.0 +2002,1,11,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,0.6,46,98300,0,0,294,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,90,0.0460,0,88,0.200,0.0,1.0 +2002,1,11,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,0.6,40,98400,23,601,304,0,0,0,0,0,0,0,60,5.2,0,0,16.0,77777,9,999999999,90,0.0460,0,88,0.200,0.0,1.0 +2002,1,11,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,-0.6,31,98500,235,1414,314,125,604,24,13300,46800,5400,6000,50,7.7,0,0,16.0,77777,9,999999999,90,0.0460,0,88,0.200,0.0,1.0 +2002,1,11,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,0.0,31,98500,465,1414,317,310,793,48,32600,72600,8600,10700,50,6.7,0,0,16.0,77777,9,999999999,90,0.0460,0,88,0.200,0.0,1.0 +2002,1,11,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,-0.6,26,98600,644,1414,326,459,896,49,48400,86500,8900,12800,60,8.8,0,0,16.0,77777,9,999999999,90,0.0460,0,88,0.200,0.0,1.0 +2002,1,11,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,0.0,24,98500,760,1414,335,564,914,71,59000,89700,10600,16400,50,5.2,0,0,16.0,77777,9,999999999,90,0.0460,0,88,0.200,0.0,1.0 +2002,1,11,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,-0.6,22,98400,805,1414,337,605,944,66,63500,93100,10300,16600,40,5.7,0,0,16.0,77777,9,999999999,80,0.0460,0,88,0.200,0.0,1.0 +2002,1,11,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,-2.2,18,98300,775,1414,340,574,915,71,60100,89900,10600,16600,80,5.2,0,0,16.0,77777,9,999999999,80,0.0460,0,88,0.200,0.0,1.0 +2002,1,11,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,-1.1,19,98200,673,1414,346,492,861,81,51600,84000,11500,17200,110,2.6,0,0,16.0,77777,9,999999999,80,0.0460,0,88,0.200,0.0,1.0 +2002,1,11,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,-1.1,19,98200,506,1414,343,374,865,64,38800,80400,10000,12800,80,1.5,0,0,16.0,77777,9,999999999,80,0.0460,0,88,0.200,0.0,1.0 +2002,1,11,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,-1.1,19,98100,285,1414,346,211,761,57,20700,58900,8700,8500,0,0.0,0,0,16.0,77777,9,999999999,80,0.0460,0,88,0.200,0.0,1.0 +2002,1,11,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,0.0,24,98200,50,908,335,6,199,2,1600,11700,900,800,220,2.1,0,0,16.0,77777,9,999999999,80,0.0460,0,88,0.200,0.0,1.0 +2002,1,11,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,0.0,27,98200,0,0,327,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,80,0.0460,0,88,0.200,0.0,1.0 +2002,1,11,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,0.0,29,98200,0,0,322,0,0,0,0,0,0,0,240,1.5,0,0,16.0,77777,9,999999999,80,0.0460,0,88,0.200,0.0,1.0 +2002,1,11,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,0.6,35,98300,0,0,313,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,90,0.0460,0,88,0.200,0.0,1.0 +2002,1,11,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,1.1,40,98200,0,0,306,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,90,0.0460,0,88,0.200,0.0,1.0 +2002,1,11,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,2.8,47,98300,0,0,306,0,0,0,0,0,0,0,80,3.1,0,0,16.0,77777,9,999999999,90,0.0460,0,88,0.200,0.0,1.0 +2002,1,11,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,2.8,53,98300,0,0,299,0,0,0,0,0,0,0,90,2.6,0,0,16.0,77777,9,999999999,90,0.0460,0,88,0.200,0.0,1.0 +2002,1,12,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,2.2,50,98300,0,0,298,0,0,0,0,0,0,0,140,2.6,0,0,16.0,77777,9,999999999,90,0.0450,0,88,0.200,0.0,1.0 +2002,1,12,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,1.1,47,98300,0,0,297,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,90,0.0450,0,88,0.200,0.0,1.0 +2002,1,12,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,0.6,45,98300,0,0,296,0,0,0,0,0,0,0,70,4.6,0,0,16.0,77777,9,999999999,90,0.0450,0,88,0.200,0.0,1.0 +2002,1,12,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,-0.6,42,98300,0,0,293,0,0,0,0,0,0,0,110,1.5,0,0,16.0,77777,9,999999999,90,0.0450,0,88,0.200,0.0,1.0 +2002,1,12,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,0.0,48,98400,0,0,289,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,90,0.0450,0,88,0.200,0.0,1.0 +2002,1,12,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,0.0,52,98300,0,0,284,0,0,0,0,0,0,0,100,2.6,0,0,16.0,77777,9,999999999,90,0.0450,0,88,0.200,0.0,1.0 +2002,1,12,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,-1.1,45,98300,0,0,286,0,0,0,0,0,0,0,30,1.5,0,0,16.0,77777,9,999999999,90,0.0450,0,88,0.200,0.0,1.0 +2002,1,12,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,1.1,56,98400,23,625,286,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,90,0.0450,0,88,0.200,0.0,1.0 +2002,1,12,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,2.2,54,98400,236,1414,294,119,551,26,12500,42700,5400,6100,90,3.1,0,0,16.0,77777,9,999999999,90,0.0450,0,88,0.200,0.0,1.0 +2002,1,12,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,1.1,39,98400,466,1414,309,296,709,61,30500,64700,9100,12000,120,3.1,0,0,16.0,77777,9,999999999,100,0.0450,0,88,0.200,0.0,1.0 +2002,1,12,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,1.1,35,98400,646,1414,316,454,850,64,47600,82000,10000,14200,120,4.6,0,0,16.0,77777,9,999999999,100,0.0450,0,88,0.200,0.0,1.0 +2002,1,12,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,0.0,28,98400,763,1414,325,552,866,84,58600,86000,12100,19200,0,0.0,0,0,16.0,77777,9,999999999,100,0.0450,0,88,0.200,0.0,1.0 +2002,1,12,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,-1.1,24,98200,808,1414,328,605,908,85,63000,89400,11800,18100,0,0.0,0,0,16.0,7620,9,999999999,100,0.0450,0,88,0.200,0.0,1.0 +2002,1,12,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,-2.2,20,98100,778,1414,335,574,890,82,59800,87400,11500,17300,360,1.5,0,0,16.0,7620,9,999999999,100,0.0450,0,88,0.200,0.0,1.0 +2002,1,12,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,-2.8,17,98000,677,1414,341,478,792,97,49100,76700,12300,19100,0,0.0,0,0,16.0,7620,9,999999999,110,0.0450,0,88,0.200,0.0,1.0 +2002,1,12,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,-3.3,17,98000,510,1414,336,348,705,93,36000,65100,12400,17700,280,1.5,0,0,16.0,77777,9,999999999,110,0.0450,0,88,0.200,0.0,1.0 +2002,1,12,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,-2.2,18,97900,289,1414,342,207,528,98,20600,39700,12500,18800,0,0.0,0,0,16.0,77777,9,999999999,110,0.0450,0,88,0.200,0.0,1.0 +2002,1,12,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,-1.1,22,97900,53,908,333,7,145,3,1300,8600,800,1100,240,1.5,0,0,16.0,7620,9,999999999,110,0.0450,0,88,0.200,0.0,1.0 +2002,1,12,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,0.0,28,97700,0,0,331,0,0,0,0,0,0,0,0,0.0,1,1,16.0,7620,9,999999999,110,0.0450,0,88,0.200,0.0,1.0 +2002,1,12,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,0.0,29,97800,0,0,328,0,0,0,0,0,0,0,0,0.0,2,1,16.0,7620,9,999999999,110,0.0450,0,88,0.200,0.0,1.0 +2002,1,12,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,2.2,40,97700,0,0,319,0,0,0,0,0,0,0,210,1.5,2,1,16.0,77777,9,999999999,110,0.0450,0,88,0.200,0.0,1.0 +2002,1,12,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,0.6,37,97700,0,0,308,0,0,0,0,0,0,0,0,0.0,1,0,16.0,77777,9,999999999,110,0.0450,0,88,0.200,0.0,1.0 +2002,1,12,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,1.1,42,97700,0,0,304,0,0,0,0,0,0,0,130,2.1,0,0,16.0,77777,9,999999999,100,0.0450,0,88,0.200,0.0,1.0 +2002,1,12,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,1.1,47,97600,0,0,297,0,0,0,0,0,0,0,100,2.6,0,0,16.0,77777,9,999999999,100,0.0450,0,88,0.200,0.0,1.0 +2002,1,13,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,0.0,44,97500,0,0,294,0,0,0,0,0,0,0,100,2.1,0,0,16.0,77777,9,999999999,90,0.0450,0,88,0.200,0.0,1.0 +2002,1,13,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,1.1,54,97500,0,0,288,0,0,0,0,0,0,0,100,3.1,0,0,16.0,77777,9,999999999,90,0.0450,0,88,0.200,0.0,1.0 +2002,1,13,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,1.7,56,97500,0,0,289,0,0,0,0,0,0,0,80,4.1,0,0,16.0,77777,9,999999999,80,0.0450,0,88,0.200,0.0,1.0 +2002,1,13,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,0.6,54,97400,0,0,285,0,0,0,0,0,0,0,80,3.1,0,0,16.0,77777,9,999999999,70,0.0450,0,88,0.200,0.0,1.0 +2002,1,13,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,1.1,60,97500,0,0,281,0,0,0,0,0,0,0,120,3.1,0,0,16.0,77777,9,999999999,70,0.0450,0,88,0.200,0.0,1.0 +2002,1,13,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,0.0,56,97400,0,0,280,0,0,0,0,0,0,0,90,3.1,0,0,16.0,77777,9,999999999,70,0.0450,0,88,0.200,0.0,1.0 +2002,1,13,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,0.6,60,97400,0,0,279,0,0,0,0,0,0,0,90,2.6,0,0,16.0,77777,9,999999999,70,0.0450,0,88,0.200,0.0,1.0 +2002,1,13,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,0.6,60,97500,24,625,279,0,0,0,0,0,0,0,120,2.1,0,0,16.0,77777,9,999999999,70,0.0450,0,88,0.200,0.0,1.0 +2002,1,13,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,0.6,52,97500,237,1414,287,122,571,26,13000,44300,5500,6200,110,2.1,0,0,16.0,77777,9,999999999,70,0.0450,0,88,0.200,0.0,1.0 +2002,1,13,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,-0.6,37,97600,468,1414,302,310,793,46,32600,72800,8400,10700,120,2.6,0,0,16.0,77777,9,999999999,60,0.0450,0,88,0.200,0.0,1.0 +2002,1,13,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,-1.1,29,97600,648,1414,314,448,844,60,47100,81500,9600,13900,110,2.6,0,0,16.0,77777,9,999999999,60,0.0450,0,88,0.200,0.0,1.0 +2002,1,13,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,-0.6,29,97600,765,1414,319,552,854,88,58300,84700,12300,19900,120,2.1,0,0,16.0,77777,9,999999999,60,0.0450,0,88,0.200,0.0,1.0 +2002,1,13,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,-0.6,26,97500,811,1414,326,581,829,103,60700,82200,13400,23000,120,2.1,0,0,16.0,77777,9,999999999,60,0.0450,0,88,0.200,0.0,1.0 +2002,1,13,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,-1.1,24,97400,782,1414,328,567,859,90,59900,85300,12500,20500,290,2.1,0,0,16.0,77777,9,999999999,60,0.0450,0,88,0.200,0.0,1.0 +2002,1,13,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,-0.6,23,97400,681,1414,334,498,866,79,52400,84700,11400,17100,270,2.1,0,0,16.0,77777,9,999999999,60,0.0450,0,88,0.200,0.0,1.0 +2002,1,13,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,-3.3,19,97400,514,1414,331,363,803,70,37300,74600,10100,13600,290,2.6,0,0,16.0,77777,9,999999999,60,0.0450,0,88,0.200,0.0,1.0 +2002,1,13,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,-2.8,19,97300,293,1414,334,217,707,70,21800,53800,10600,11900,330,2.1,0,0,16.0,77777,9,999999999,60,0.0450,0,88,0.200,0.0,1.0 +2002,1,13,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,-1.7,24,97300,55,931,325,8,203,3,1800,12100,1000,1100,0,0.0,0,0,16.0,77777,9,999999999,70,0.0450,0,88,0.200,0.0,1.0 +2002,1,13,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,-1.7,27,97300,0,0,315,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,70,0.0450,0,88,0.200,0.0,1.0 +2002,1,13,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,-1.1,33,97300,0,0,306,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,70,0.0450,0,88,0.200,0.0,1.0 +2002,1,13,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,2.2,47,97300,0,0,303,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,70,0.0450,0,88,0.200,0.0,1.0 +2002,1,13,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,0.6,43,97300,0,0,299,0,0,0,0,0,0,0,80,3.1,0,0,16.0,77777,9,999999999,70,0.0450,0,88,0.200,0.0,1.0 +2002,1,13,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,-1.1,41,97400,0,0,293,0,0,0,0,0,0,0,100,3.1,0,0,16.0,77777,9,999999999,70,0.0450,0,88,0.200,0.0,1.0 +2002,1,13,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,-1.1,42,97400,0,0,290,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,70,0.0450,0,88,0.200,0.0,1.0 +2002,1,14,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,0.0,50,97400,0,0,287,0,0,0,0,0,0,0,110,2.6,0,0,16.0,77777,9,999999999,70,0.0450,0,88,0.200,0.0,1.0 +2002,1,14,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,-0.6,49,97400,0,0,284,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,70,0.0450,0,88,0.200,0.0,1.0 +2002,1,14,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,-0.6,51,97400,0,0,282,0,0,0,0,0,0,0,90,2.6,0,0,16.0,77777,9,999999999,60,0.0450,0,88,0.200,0.0,1.0 +2002,1,14,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,-1.7,47,97300,0,0,281,0,0,0,0,0,0,0,90,3.6,0,0,16.0,77777,9,999999999,60,0.0450,0,88,0.200,0.0,1.0 +2002,1,14,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,-2.2,48,97500,0,0,276,0,0,0,0,0,0,0,100,4.6,0,0,16.0,77777,9,999999999,60,0.0450,0,88,0.200,0.0,1.0 +2002,1,14,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,-2.2,50,97400,0,0,273,0,0,0,0,0,0,0,100,4.6,0,0,16.0,77777,9,999999999,60,0.0450,0,88,0.200,0.0,1.0 +2002,1,14,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,-2.2,48,97400,0,0,276,0,0,0,0,0,0,0,100,2.6,0,0,16.0,77777,9,999999999,60,0.0450,0,88,0.200,0.0,1.0 +2002,1,14,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,-2.8,44,97500,24,625,277,0,0,0,0,0,0,0,110,1.5,0,0,16.0,77777,9,999999999,70,0.0450,0,88,0.200,0.0,1.0 +2002,1,14,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,-3.3,35,97600,239,1414,288,125,596,24,13300,46400,5400,6000,120,3.1,0,0,16.0,77777,9,999999999,70,0.0450,0,88,0.200,0.0,1.0 +2002,1,14,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,-3.9,28,97600,470,1414,299,315,816,42,33200,75000,8200,10400,100,3.1,0,0,16.0,77777,9,999999999,70,0.0450,0,88,0.200,0.0,1.0 +2002,1,14,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,-5.6,21,97600,651,1414,306,454,856,58,47700,82700,9500,13800,90,4.6,0,0,16.0,77777,9,999999999,70,0.0450,0,88,0.200,0.0,1.0 +2002,1,14,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,-3.9,20,97600,768,1414,320,564,890,78,58800,87300,11200,17000,110,2.1,0,0,16.0,77777,9,999999999,90,0.0450,0,88,0.200,0.0,1.0 +2002,1,14,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,-3.9,19,97400,814,1414,325,623,932,84,64900,91800,11800,18200,60,1.5,1,0,16.0,77777,9,999999999,120,0.0450,0,88,0.200,0.0,1.0 +2002,1,14,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,-2.8,20,97300,786,1414,329,579,890,83,60400,87500,11600,17500,0,0.0,1,0,16.0,77777,9,999999999,140,0.0450,0,88,0.200,0.0,1.0 +2002,1,14,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,-2.8,19,97300,685,1414,334,497,847,85,51900,82700,11700,17900,90,2.1,0,0,16.0,77777,9,999999999,130,0.0450,0,88,0.200,0.0,1.0 +2002,1,14,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,-2.8,17,97300,518,1414,339,346,552,142,35600,51700,16600,27800,170,2.1,0,0,16.0,77777,9,999999999,120,0.0450,0,88,0.200,0.0,1.0 +2002,1,14,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,-2.8,18,97200,298,1414,336,213,536,100,21400,40900,12700,19200,0,0.0,0,0,16.0,77777,9,999999999,100,0.0450,0,88,0.200,0.0,1.0 +2002,1,14,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,-0.6,24,97200,58,955,332,9,161,4,1600,9600,1000,1500,0,0.0,0,0,16.0,7620,9,999999999,100,0.0450,0,88,0.200,0.0,1.0 +2002,1,14,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,-1.1,27,97200,0,0,325,0,0,0,0,0,0,0,230,2.1,1,1,16.0,77777,9,999999999,90,0.0450,0,88,0.200,0.0,1.0 +2002,1,14,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,1.7,39,97200,0,0,318,0,0,0,0,0,0,0,240,2.1,1,1,16.0,77777,9,999999999,80,0.0450,0,88,0.200,0.0,1.0 +2002,1,14,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,0.0,34,97200,0,0,316,0,0,0,0,0,0,0,280,1.5,3,1,16.0,7620,9,999999999,80,0.0450,0,88,0.200,0.0,1.0 +2002,1,14,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,0.0,38,97200,0,0,309,0,0,0,0,0,0,0,80,3.1,2,1,16.0,7620,9,999999999,80,0.0450,0,88,0.200,0.0,1.0 +2002,1,14,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,-1.1,37,97300,0,0,305,0,0,0,0,0,0,0,90,2.6,2,1,16.0,7620,9,999999999,80,0.0450,0,88,0.200,0.0,1.0 +2002,1,14,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,-1.1,39,97300,0,0,307,0,0,0,0,0,0,0,90,2.6,4,3,16.0,77777,9,999999999,80,0.0450,0,88,0.200,0.0,1.0 +2002,1,15,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,0.0,44,97200,0,0,309,0,0,0,0,0,0,0,80,4.1,6,4,16.0,7620,9,999999999,90,0.0450,0,88,0.200,0.0,1.0 +2002,1,15,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,-1.1,42,97200,0,0,307,0,0,0,0,0,0,0,80,4.6,8,5,16.0,7620,9,999999999,90,0.0450,0,88,0.200,0.0,1.0 +2002,1,15,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,-1.1,44,97200,0,0,294,0,0,0,0,0,0,0,80,4.1,2,1,16.0,7620,9,999999999,110,0.0450,0,88,0.200,0.0,1.0 +2002,1,15,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,-2.2,41,97200,0,0,290,0,0,0,0,0,0,0,80,3.6,2,1,16.0,77777,9,999999999,130,0.0450,0,88,0.200,0.0,1.0 +2002,1,15,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,-2.2,41,97300,0,0,294,0,0,0,0,0,0,0,80,4.1,4,2,16.0,7620,9,999999999,150,0.0450,0,88,0.200,0.0,1.0 +2002,1,15,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,-2.8,41,97200,0,0,294,0,0,0,0,0,0,0,80,4.1,7,3,16.0,7620,9,999999999,130,0.0450,0,88,0.200,0.0,1.0 +2002,1,15,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,-2.8,39,97200,0,0,296,0,0,0,0,0,0,0,80,3.6,8,3,16.0,7620,9,999999999,110,0.0450,0,88,0.200,0.0,1.0 +2002,1,15,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,-2.8,39,97300,24,624,296,0,0,0,0,0,0,0,100,1.5,6,3,16.0,7620,9,999999999,90,0.0450,0,88,0.200,0.0,1.0 +2002,1,15,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,-3.3,35,97300,240,1414,303,19,0,19,2300,0,2300,7900,70,3.6,8,4,16.0,7620,9,999999999,90,0.0450,0,88,0.200,0.0,1.0 +2002,1,15,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,-2.2,33,97400,472,1414,311,79,0,79,9200,0,9200,32600,90,2.1,8,3,16.0,7620,9,999999999,90,0.0450,0,88,0.200,0.0,1.0 +2002,1,15,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,-2.8,30,97500,653,1414,312,74,0,74,9000,0,9000,34700,100,2.6,6,2,16.0,4572,9,999999999,100,0.0450,0,88,0.200,0.0,1.0 +2002,1,15,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,-1.1,33,97400,771,1414,322,159,0,159,18600,0,18600,70500,90,2.1,9,4,16.0,4572,9,999999999,100,0.0450,0,88,0.200,0.0,1.0 +2002,1,15,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,-0.6,31,97300,818,1414,333,387,192,275,42000,20000,30400,73000,70,2.6,9,5,16.0,4572,9,999999999,110,0.0450,0,88,0.200,0.0,1.0 +2002,1,15,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,-0.6,27,97200,790,1414,341,251,24,237,28500,2100,27300,95300,40,1.5,8,4,16.0,4572,9,999999999,110,0.0450,0,88,0.200,0.0,1.0 +2002,1,15,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,0.6,28,97300,689,1414,344,392,249,270,42000,25200,29700,66800,0,0.0,8,4,16.0,4572,9,999999999,110,0.0450,0,88,0.200,0.0,1.0 +2002,1,15,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,-0.6,25,97200,523,1414,346,123,0,123,14000,0,14000,47900,0,0.0,8,4,16.0,4572,9,999999999,120,0.0450,0,88,0.200,0.0,1.0 +2002,1,15,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,-1.1,23,97200,302,1414,348,223,433,130,22600,33300,15500,28400,0,0.0,9,4,16.0,4572,9,999999999,120,0.0450,0,88,0.200,0.0,1.0 +2002,1,15,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,2.8,38,97300,61,978,326,11,136,6,1700,7700,1200,1500,220,2.1,1,1,16.0,7620,9,999999999,130,0.0450,0,88,0.200,0.0,1.0 +2002,1,15,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,1.7,36,97300,0,0,333,0,0,0,0,0,0,0,260,1.5,5,4,16.0,7620,9,999999999,140,0.0450,0,88,0.200,0.0,1.0 +2002,1,15,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,1.1,36,97300,0,0,330,0,0,0,0,0,0,0,270,2.6,9,4,16.0,7620,9,999999999,150,0.0450,0,88,0.200,0.0,1.0 +2002,1,15,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,0.6,35,97400,0,0,327,0,0,0,0,0,0,0,240,1.5,7,3,16.0,4572,9,999999999,160,0.0450,0,88,0.200,0.0,1.0 +2002,1,15,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,0.6,36,97400,0,0,329,0,0,0,0,0,0,0,0,0.0,7,5,16.0,7620,9,999999999,170,0.0450,0,88,0.200,0.0,1.0 +2002,1,15,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,1.1,42,97500,0,0,320,0,0,0,0,0,0,0,110,2.6,7,4,16.0,7620,9,999999999,180,0.0450,0,88,0.200,0.0,1.0 +2002,1,15,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,1.1,40,97500,0,0,331,0,0,0,0,0,0,0,70,2.6,9,7,16.0,4572,9,999999999,190,0.0450,0,88,0.200,0.0,1.0 +2002,1,16,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,2.2,45,97400,0,0,323,0,0,0,0,0,0,0,0,0.0,8,5,16.0,4572,9,999999999,200,0.0450,0,88,0.200,0.0,1.0 +2002,1,16,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,2.2,48,97400,0,0,325,0,0,0,0,0,0,0,100,2.1,9,7,16.0,4572,9,999999999,209,0.0450,0,88,0.200,0.0,1.0 +2002,1,16,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,3.3,52,97500,0,0,320,0,0,0,0,0,0,0,110,2.1,6,5,16.0,4572,9,999999999,190,0.0450,0,88,0.200,0.0,1.0 +2002,1,16,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,3.9,55,97400,0,0,323,0,0,0,0,0,0,0,70,1.5,9,6,16.0,4572,9,999999999,170,0.0450,0,88,0.200,0.0,1.0 +2002,1,16,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,3.3,54,97500,0,0,324,0,0,0,0,0,0,0,90,2.6,8,7,16.0,4572,9,999999999,150,0.0450,0,88,0.200,0.0,1.0 +2002,1,16,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,3.3,54,97400,0,0,324,0,0,0,0,0,0,0,0,0.0,8,7,16.0,4572,9,999999999,150,0.0450,0,88,0.200,0.0,1.0 +2002,1,16,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,3.9,57,97500,0,0,329,0,0,0,0,0,0,0,0,0.0,8,8,16.0,4572,9,999999999,150,0.0450,0,88,0.200,0.0,1.0 +2002,1,16,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,3.3,54,97500,25,624,324,0,0,0,0,0,0,0,0,0.0,7,7,16.0,4572,9,999999999,160,0.0450,0,88,0.200,0.0,1.0 +2002,1,16,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,2.8,49,97600,242,1414,328,32,0,32,3700,0,3700,12500,90,2.6,8,7,16.0,4572,9,999999999,170,0.0450,0,88,0.200,0.0,1.0 +2002,1,16,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,3.3,51,97600,474,1414,322,79,0,79,9200,0,9200,32700,90,2.1,5,5,16.0,4572,9,999999999,180,0.0450,0,88,0.200,0.0,1.0 +2002,1,16,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,3.9,47,97800,656,1414,330,79,0,79,9600,0,9600,36800,110,2.1,5,5,16.0,4572,9,999999999,190,0.0450,0,88,0.200,0.0,1.0 +2002,1,16,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,4.4,46,97700,774,1414,336,262,47,236,28800,4700,26200,73300,170,1.5,5,5,16.0,4572,9,999999999,190,0.0450,0,88,0.200,0.0,1.0 +2002,1,16,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,4.4,43,97600,822,1414,354,441,312,259,47200,33000,27900,64100,0,0.0,9,8,16.0,4572,9,999999999,200,0.0450,0,88,0.200,0.0,1.0 +2002,1,16,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,6.7,50,97600,794,1414,357,257,30,240,29200,2600,27700,96400,290,4.6,9,8,16.0,4572,9,999999999,209,0.0450,0,88,0.200,0.0,1.0 +2002,1,16,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,8.9,58,97500,694,1414,359,119,0,119,14100,0,14100,53300,300,4.1,8,8,16.0,4572,9,999999999,190,0.0450,0,88,0.200,0.0,1.0 +2002,1,16,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,9.4,60,97600,527,1414,368,163,13,158,18200,1000,17800,56900,290,5.7,10,9,16.0,3048,9,999999999,180,0.0450,0,88,0.200,0.0,1.0 +2002,1,16,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,8.9,60,97600,307,1414,364,192,300,126,19500,23300,14400,27200,290,4.6,9,9,16.0,3048,9,999999999,160,0.0450,0,88,0.200,0.0,1.0 +2002,1,16,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,8.9,62,97600,64,1001,339,11,98,7,1500,4900,1200,1400,290,4.1,4,4,16.0,6096,9,999999999,170,0.0450,0,88,0.200,0.0,1.0 +2002,1,16,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,8.9,64,97600,0,0,334,0,0,0,0,0,0,0,280,3.6,4,3,16.0,77777,9,999999999,170,0.0450,0,88,0.200,0.0,1.0 +2002,1,16,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,8.9,70,97700,0,0,328,0,0,0,0,0,0,0,240,1.5,4,3,16.0,77777,9,999999999,170,0.0450,0,88,0.200,0.0,1.0 +2002,1,16,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,8.9,70,97700,0,0,336,0,0,0,0,0,0,0,0,0.0,7,6,16.0,3658,9,999999999,170,0.0450,0,88,0.200,0.0,1.0 +2002,1,16,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,8.3,69,97700,0,0,333,0,0,0,0,0,0,0,0,0.0,9,6,16.0,3658,9,999999999,160,0.0450,0,88,0.200,0.0,1.0 +2002,1,16,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,7.2,64,97800,0,0,336,0,0,0,0,0,0,0,240,2.1,7,7,16.0,4267,9,999999999,160,0.0450,0,88,0.200,0.0,1.0 +2002,1,16,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,6.1,66,97700,0,0,320,0,0,0,0,0,0,0,230,2.6,5,5,16.0,77777,9,999999999,160,0.0450,0,88,0.200,0.0,1.0 +2002,1,17,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,-0.6,42,97800,0,0,311,0,0,0,0,0,0,0,250,3.1,5,5,16.0,77777,9,999999999,160,0.0450,0,88,0.200,0.0,1.0 +2002,1,17,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,-2.8,37,97800,0,0,288,0,0,0,0,0,0,0,240,3.1,0,0,16.0,77777,9,999999999,150,0.0450,0,88,0.200,0.0,1.0 +2002,1,17,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,-2.2,41,97800,0,0,294,0,0,0,0,0,0,0,240,2.1,4,2,16.0,7620,9,999999999,150,0.0450,0,88,0.200,0.0,1.0 +2002,1,17,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,-2.8,39,97800,0,0,293,0,0,0,0,0,0,0,270,2.6,3,2,16.0,7620,9,999999999,140,0.0450,0,88,0.200,0.0,1.0 +2002,1,17,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,-1.7,47,97900,0,0,297,0,0,0,0,0,0,0,300,2.6,5,5,16.0,7620,9,999999999,130,0.0450,0,88,0.200,0.0,1.0 +2002,1,17,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,-1.7,50,97800,0,0,282,0,0,0,0,0,0,0,0,0.0,2,1,16.0,7620,9,999999999,120,0.0450,0,88,0.200,0.0,1.0 +2002,1,17,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,-3.3,41,97800,0,0,284,0,0,0,0,0,0,0,280,2.6,2,1,16.0,7620,9,999999999,120,0.0450,0,88,0.200,0.0,1.0 +2002,1,17,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,-2.8,44,97900,26,648,277,0,0,0,0,0,0,0,0,0.0,0,0,16.0,7620,9,999999999,110,0.0450,0,88,0.200,0.0,1.0 +2002,1,17,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,-2.2,45,98000,243,1414,280,133,593,30,13700,45100,5900,6100,300,1.5,0,0,16.0,7620,9,999999999,110,0.0450,0,88,0.200,0.0,1.0 +2002,1,17,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,-2.8,39,98000,476,1414,284,320,805,47,33600,74100,8600,10800,0,0.0,0,0,16.0,7620,9,999999999,110,0.0450,0,88,0.200,0.0,1.0 +2002,1,17,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,-2.2,36,98100,659,1414,299,459,856,59,48300,82800,9500,14000,240,2.1,1,1,16.0,7620,9,999999999,110,0.0450,0,88,0.200,0.0,1.0 +2002,1,17,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,-2.2,33,98000,778,1414,304,575,878,90,60700,87100,12600,20400,250,2.1,1,1,16.0,7620,9,999999999,110,0.0450,0,88,0.200,0.0,1.0 +2002,1,17,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,-0.6,35,97900,825,1414,304,634,937,85,66000,92400,11800,18500,260,2.1,0,0,16.0,7620,9,999999999,110,0.0450,0,88,0.200,0.0,1.0 +2002,1,17,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,-0.6,33,97800,798,1414,310,610,938,78,63600,92300,11300,17500,0,0.0,1,0,16.0,7620,9,999999999,110,0.0450,0,88,0.200,0.0,1.0 +2002,1,17,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,-1.7,28,97800,698,1414,319,530,915,77,55300,88900,11300,15500,210,2.6,2,1,12.8,7620,9,999999999,100,0.0450,0,88,0.200,0.0,1.0 +2002,1,17,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,-2.8,25,97800,532,1414,318,383,792,83,38700,73500,11000,15000,0,0.0,2,1,16.0,7620,9,999999999,90,0.0450,0,88,0.200,0.0,1.0 +2002,1,17,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,-2.8,26,97800,311,1414,309,229,724,69,23200,56700,10600,12000,240,2.6,1,0,16.0,7620,9,999999999,90,0.0450,0,88,0.200,0.0,1.0 +2002,1,17,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,-2.2,30,97800,67,1025,305,14,245,4,2300,14900,1300,1500,210,2.6,0,0,16.0,7620,9,999999999,80,0.0450,0,88,0.200,0.0,1.0 +2002,1,17,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,-0.6,38,97800,0,0,300,0,0,0,0,0,0,0,0,0.0,0,0,16.0,7620,9,999999999,80,0.0450,0,88,0.200,0.0,1.0 +2002,1,17,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,0.6,48,97800,0,0,292,0,0,0,0,0,0,0,220,1.5,1,0,16.0,7620,9,999999999,80,0.0450,0,88,0.200,0.0,1.0 +2002,1,17,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,-1.7,42,97800,0,0,293,0,0,0,0,0,0,0,0,0.0,1,1,16.0,7620,9,999999999,80,0.0450,0,88,0.200,0.0,1.0 +2002,1,17,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,-2.2,40,97800,0,0,287,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,90,0.0450,0,88,0.200,0.0,1.0 +2002,1,17,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,-1.7,48,97900,0,0,278,0,0,0,0,0,0,0,90,3.1,0,0,16.0,77777,9,999999999,90,0.0450,0,88,0.200,0.0,1.0 +2002,1,17,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,-0.6,53,97800,0,0,279,0,0,0,0,0,0,0,80,1.5,0,0,16.0,77777,9,999999999,80,0.0450,0,88,0.200,0.0,1.0 +2002,1,18,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,0.0,60,97800,0,0,276,0,0,0,0,0,0,0,90,2.6,0,0,16.0,77777,9,999999999,80,0.0450,0,88,0.200,0.0,1.0 +2002,1,18,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,0.0,62,97800,0,0,274,0,0,0,0,0,0,0,110,1.5,0,0,16.0,7620,9,999999999,80,0.0450,0,88,0.200,0.0,1.0 +2002,1,18,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,0.0,65,97700,0,0,271,0,0,0,0,0,0,0,90,2.1,0,0,16.0,7620,9,999999999,80,0.0450,0,88,0.200,0.0,1.0 +2002,1,18,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,-0.6,70,97700,0,0,264,0,0,0,0,0,0,0,120,2.6,0,0,16.0,7620,9,999999999,70,0.0450,0,88,0.200,0.0,1.0 +2002,1,18,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,-0.6,70,97900,0,0,264,0,0,0,0,0,0,0,100,2.1,0,0,16.0,7620,9,999999999,70,0.0450,0,88,0.200,0.0,1.0 +2002,1,18,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,0.0,70,97800,0,0,267,0,0,0,0,0,0,0,0,0.0,0,0,16.0,7620,9,999999999,70,0.0450,0,88,0.200,0.0,1.0 +2002,1,18,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.9,0.0,76,97800,0,0,263,0,0,0,0,0,0,0,90,2.6,0,0,16.0,77777,9,999999999,70,0.0450,0,88,0.200,0.0,1.0 +2002,1,18,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.9,0.0,76,97900,26,648,263,0,0,0,0,0,0,0,90,2.6,0,0,16.0,77777,9,999999999,70,0.0450,0,88,0.200,0.0,1.0 +2002,1,18,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,0.0,62,98000,245,1413,279,98,229,58,10200,16000,7400,10500,100,2.1,1,1,16.0,7620,9,999999999,70,0.0450,0,88,0.200,0.0,1.0 +2002,1,18,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,0.0,60,98100,478,1413,295,246,319,137,26000,30000,15800,28100,70,1.5,7,6,16.0,5486,9,999999999,70,0.0450,0,88,0.200,0.0,1.0 +2002,1,18,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,-1.7,43,98200,661,1413,302,480,780,114,50100,76000,14400,23500,0,0.0,6,5,16.0,5486,9,999999999,70,0.0450,0,88,0.200,0.0,1.0 +2002,1,18,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,-2.8,37,98100,781,1413,288,592,943,68,61900,92800,10500,16500,0,0.0,1,0,16.0,77777,9,999999999,70,0.0450,0,88,0.200,0.0,1.0 +2002,1,18,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,-3.9,30,98000,829,1413,294,640,895,113,66500,88700,14300,24900,250,1.5,0,0,16.0,77777,9,999999999,60,0.0450,0,88,0.200,0.0,1.0 +2002,1,18,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,-7.2,19,98000,802,1413,310,571,761,137,59900,76100,16600,31200,230,2.6,3,2,16.0,77777,9,999999999,60,0.0450,0,88,0.200,0.0,1.0 +2002,1,18,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,-11.1,12,97900,703,1413,302,515,815,109,54300,80500,14100,23400,230,4.1,0,0,16.0,77777,9,999999999,60,0.0450,0,88,0.200,0.0,1.0 +2002,1,18,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,-8.3,16,97900,536,1413,303,365,699,98,37700,65300,12800,18800,280,2.1,0,0,16.0,7620,9,999999999,50,0.0450,0,88,0.200,0.0,1.0 +2002,1,18,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,-10.0,14,97900,316,1413,304,225,551,101,22600,43200,12900,19300,250,3.6,0,0,16.0,77777,9,999999999,50,0.0450,0,88,0.200,0.0,1.0 +2002,1,18,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,-8.9,17,97900,70,1048,295,15,194,7,2300,11800,1400,2300,220,2.6,0,0,16.0,77777,9,999999999,50,0.0450,0,88,0.200,0.0,1.0 +2002,1,18,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,-7.8,21,98000,0,0,290,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,50,0.0450,0,88,0.200,0.0,1.0 +2002,1,18,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,-7.2,22,98000,0,0,291,0,0,0,0,0,0,0,130,2.1,0,0,16.0,77777,9,999999999,50,0.0450,0,88,0.200,0.0,1.0 +2002,1,18,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,-7.8,25,98100,0,0,281,0,0,0,0,0,0,0,200,1.5,0,0,16.0,77777,9,999999999,50,0.0450,0,88,0.200,0.0,1.0 +2002,1,18,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,-7.8,26,98200,0,0,279,0,0,0,0,0,0,0,110,1.5,0,0,16.0,77777,9,999999999,50,0.0450,0,88,0.200,0.0,1.0 +2002,1,18,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,-6.1,33,98300,0,0,274,0,0,0,0,0,0,0,120,1.5,0,0,16.0,77777,9,999999999,50,0.0450,0,88,0.200,0.0,1.0 +2002,1,18,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,-5.0,38,98200,0,0,273,0,0,0,0,0,0,0,80,3.1,0,0,16.0,77777,9,999999999,50,0.0450,0,88,0.200,0.0,1.0 +2002,1,19,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,-6.1,39,98200,0,0,265,0,0,0,0,0,0,0,110,2.1,0,0,16.0,77777,9,999999999,40,0.0450,0,88,0.200,0.0,1.0 +2002,1,19,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,-6.1,39,98200,0,0,265,0,0,0,0,0,0,0,110,2.1,0,0,16.0,77777,9,999999999,40,0.0450,0,88,0.200,0.0,1.0 +2002,1,19,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,-6.1,39,98200,0,0,265,0,0,0,0,0,0,0,100,3.1,0,0,16.0,77777,9,999999999,40,0.0450,0,88,0.200,0.0,1.0 +2002,1,19,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,-7.2,37,98100,0,0,262,0,0,0,0,0,0,0,90,1.5,0,0,16.0,77777,9,999999999,40,0.0450,0,88,0.200,0.0,1.0 +2002,1,19,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,-6.7,40,98300,0,0,261,0,0,0,0,0,0,0,190,1.5,0,0,16.0,7620,9,999999999,30,0.0450,0,88,0.200,0.0,1.0 +2002,1,19,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,-5.6,46,98100,0,0,264,0,0,0,0,0,0,0,0,0.0,2,1,16.0,7620,9,999999999,30,0.0450,0,88,0.200,0.0,1.0 +2002,1,19,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.9,-6.1,45,98100,0,0,266,0,0,0,0,0,0,0,0,0.0,5,2,16.0,7620,9,999999999,30,0.0450,0,88,0.200,0.0,1.0 +2002,1,19,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,-6.7,40,98100,27,648,274,0,0,0,0,0,0,0,0,0.0,6,4,16.0,7620,9,999999999,30,0.0450,0,88,0.200,0.0,1.0 +2002,1,19,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,-6.7,35,98100,247,1413,276,127,556,30,13200,42600,5700,6200,0,0.0,3,2,16.0,7620,9,999999999,30,0.0450,0,88,0.200,0.0,1.0 +2002,1,19,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,-8.9,24,98100,481,1413,281,302,571,107,30700,51400,13200,19300,70,3.1,2,1,16.0,7620,9,999999999,30,0.0450,0,88,0.200,0.0,1.0 +2002,1,19,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,-12.8,14,98100,664,1413,291,285,134,222,30900,13600,24500,54300,80,5.7,3,2,16.0,6096,9,999999999,30,0.0450,0,88,0.200,0.0,1.0 +2002,1,19,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,-13.3,13,97900,785,1413,293,370,178,271,40100,18400,29900,70500,60,3.6,5,2,16.0,6096,9,999999999,40,0.0450,0,88,0.200,0.0,1.0 +2002,1,19,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,-13.3,12,97800,833,1413,294,616,721,189,63400,71200,21300,42100,0,0.0,3,1,16.0,7620,9,999999999,40,0.0450,0,88,0.200,0.0,1.0 +2002,1,19,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,-12.2,13,97700,807,1413,300,378,158,288,41000,16400,31600,75900,50,1.5,1,1,16.0,7620,9,999999999,40,0.0450,0,88,0.200,0.0,1.0 +2002,1,19,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,-12.8,11,97600,707,1413,332,494,597,194,51400,59700,21500,41600,100,1.5,10,9,16.0,7620,9,999999999,40,0.0450,0,88,0.200,0.0,1.0 +2002,1,19,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,-13.3,11,97600,541,1413,308,218,104,178,23900,10000,20000,47700,0,0.0,3,3,16.0,5486,9,999999999,50,0.0450,0,88,0.200,0.0,1.0 +2002,1,19,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,-13.3,11,97500,321,1413,313,209,349,129,21300,27700,15000,27800,290,2.1,5,5,16.0,5486,9,999999999,50,0.0450,0,88,0.200,0.0,1.0 +2002,1,19,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,-11.7,13,97400,73,1072,310,15,127,9,2000,6500,1500,1800,40,3.1,5,4,16.0,5486,9,999999999,50,0.0450,0,88,0.200,0.0,1.0 +2002,1,19,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,-11.1,14,97400,0,0,308,0,0,0,0,0,0,0,0,0.0,4,4,16.0,5486,9,999999999,50,0.0450,0,88,0.200,0.0,1.0 +2002,1,19,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,-10.0,17,97400,0,0,307,0,0,0,0,0,0,0,0,0.0,5,5,16.0,5486,9,999999999,50,0.0450,0,88,0.200,0.0,1.0 +2002,1,19,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,-8.3,22,97300,0,0,302,0,0,0,0,0,0,0,200,1.5,6,5,16.0,5486,9,999999999,50,0.0450,0,88,0.200,0.0,1.0 +2002,1,19,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,-8.9,22,97400,0,0,291,0,0,0,0,0,0,0,0,0.0,3,2,16.0,7620,9,999999999,50,0.0450,0,88,0.200,0.0,1.0 +2002,1,19,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,-7.8,27,97400,0,0,282,0,0,0,0,0,0,0,100,2.1,1,1,16.0,77777,9,999999999,50,0.0450,0,88,0.200,0.0,1.0 +2002,1,19,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,-6.1,33,97400,0,0,274,0,0,0,0,0,0,0,80,2.6,0,0,16.0,77777,9,999999999,50,0.0450,0,88,0.200,0.0,1.0 +2002,1,20,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,-5.6,39,97400,0,0,268,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,50,0.0440,0,88,0.200,0.0,1.0 +2002,1,20,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,-7.2,34,97400,0,0,267,0,0,0,0,0,0,0,80,1.5,0,0,16.0,77777,9,999999999,50,0.0440,0,88,0.200,0.0,1.0 +2002,1,20,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,-6.1,42,97400,0,0,261,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,50,0.0440,0,88,0.200,0.0,1.0 +2002,1,20,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,-7.8,36,97500,0,0,260,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,50,0.0440,0,88,0.200,0.0,1.0 +2002,1,20,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,-8.3,36,97600,0,0,257,0,0,0,0,0,0,0,100,1.5,0,0,16.0,77777,9,999999999,40,0.0440,0,88,0.200,0.0,1.0 +2002,1,20,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.3,-7.8,41,97600,0,0,253,0,0,0,0,0,0,0,90,2.6,0,0,16.0,77777,9,999999999,40,0.0440,0,88,0.200,0.0,1.0 +2002,1,20,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.8,-8.3,40,97700,0,0,251,0,0,0,0,0,0,0,90,3.6,0,0,16.0,77777,9,999999999,40,0.0440,0,88,0.200,0.0,1.0 +2002,1,20,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.8,-7.2,44,97700,28,671,252,0,0,0,0,0,0,0,120,1.5,0,0,16.0,77777,9,999999999,40,0.0440,0,88,0.200,0.0,1.0 +2002,1,20,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,-7.2,38,97800,249,1413,260,128,562,28,13500,44200,5700,6500,110,2.1,0,0,16.0,77777,9,999999999,40,0.0440,0,88,0.200,0.0,1.0 +2002,1,20,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,-7.8,29,98000,484,1413,272,316,762,54,33200,70600,8900,11400,110,2.1,0,0,16.0,77777,9,999999999,40,0.0440,0,88,0.200,0.0,1.0 +2002,1,20,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,-8.3,24,98100,668,1413,281,475,868,64,49900,84100,10000,14500,190,1.5,0,0,16.0,77777,9,999999999,40,0.0440,0,88,0.200,0.0,1.0 +2002,1,20,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,-10.0,20,98000,788,1413,281,586,914,74,61200,89900,10900,17100,270,2.1,0,0,16.0,77777,9,999999999,40,0.0440,0,88,0.200,0.0,1.0 +2002,1,20,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,-11.1,17,98000,837,1413,284,634,949,69,66400,93900,10500,17500,300,2.1,0,0,16.0,77777,9,999999999,40,0.0440,0,88,0.200,0.0,1.0 +2002,1,20,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,-11.1,15,97900,811,1413,291,615,925,82,64100,91200,11600,18000,330,1.5,0,0,16.0,77777,9,999999999,40,0.0440,0,88,0.200,0.0,1.0 +2002,1,20,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,-11.7,13,97900,712,1413,297,535,926,67,56100,90300,10400,15400,0,0.0,0,0,16.0,77777,9,999999999,40,0.0440,0,88,0.200,0.0,1.0 +2002,1,20,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,-11.7,12,97900,546,1413,299,403,847,74,41500,79600,10600,14400,300,2.1,0,0,16.0,77777,9,999999999,50,0.0440,0,88,0.200,0.0,1.0 +2002,1,20,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,-10.6,13,97900,325,1413,300,231,709,67,23500,56700,10400,11800,290,2.6,0,0,16.0,77777,9,999999999,50,0.0440,0,88,0.200,0.0,1.0 +2002,1,20,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,-8.3,18,97900,77,1095,296,18,267,5,2700,16500,1500,1800,210,2.6,0,0,16.0,77777,9,999999999,50,0.0440,0,88,0.200,0.0,1.0 +2002,1,20,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,-7.8,21,97900,0,0,290,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,50,0.0440,0,88,0.200,0.0,1.0 +2002,1,20,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,-8.9,20,98000,0,0,286,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,50,0.0440,0,88,0.200,0.0,1.0 +2002,1,20,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,-9.4,20,98000,0,0,284,0,0,0,0,0,0,0,310,1.5,0,0,16.0,77777,9,999999999,50,0.0440,0,88,0.200,0.0,1.0 +2002,1,20,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,-7.8,26,98000,0,0,279,0,0,0,0,0,0,0,20,1.5,0,0,16.0,77777,9,999999999,60,0.0440,0,88,0.200,0.0,1.0 +2002,1,20,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,-7.2,30,98100,0,0,273,0,0,0,0,0,0,0,80,2.6,0,0,16.0,77777,9,999999999,60,0.0440,0,88,0.200,0.0,1.0 +2002,1,20,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,-7.2,30,97900,0,0,273,0,0,0,0,0,0,0,110,1.5,0,0,16.0,77777,9,999999999,60,0.0440,0,88,0.200,0.0,1.0 +2002,1,21,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,-7.2,34,97900,0,0,267,0,0,0,0,0,0,0,120,1.5,0,0,16.0,77777,9,999999999,60,0.0440,0,88,0.200,0.0,1.0 +2002,1,21,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,-8.9,30,97900,0,0,263,0,0,0,0,0,0,0,100,3.1,0,0,16.0,77777,9,999999999,70,0.0440,0,88,0.200,0.0,1.0 +2002,1,21,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,-7.2,35,97900,0,0,264,0,0,0,0,0,0,0,100,2.6,0,0,16.0,77777,9,999999999,70,0.0440,0,88,0.200,0.0,1.0 +2002,1,21,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,-7.2,37,97800,0,0,262,0,0,0,0,0,0,0,70,2.6,0,0,16.0,77777,9,999999999,70,0.0440,0,88,0.200,0.0,1.0 +2002,1,21,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,-6.1,44,97900,0,0,259,0,0,0,0,0,0,0,110,2.1,0,0,16.0,77777,9,999999999,70,0.0440,0,88,0.200,0.0,1.0 +2002,1,21,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,-7.8,38,97800,0,0,257,0,0,0,0,0,0,0,110,2.6,0,0,16.0,77777,9,999999999,70,0.0440,0,88,0.200,0.0,1.0 +2002,1,21,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.9,-7.8,39,97800,0,0,255,0,0,0,0,0,0,0,120,2.1,0,0,16.0,77777,9,999999999,70,0.0440,0,88,0.200,0.0,1.0 +2002,1,21,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.9,-7.8,39,97800,28,671,255,0,0,0,0,0,0,0,100,3.6,0,0,16.0,77777,9,999999999,70,0.0440,0,88,0.200,0.0,1.0 +2002,1,21,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,-7.8,35,97900,252,1413,262,132,583,27,13900,46000,5700,6400,90,3.1,0,0,16.0,77777,9,999999999,70,0.0440,0,88,0.200,0.0,1.0 +2002,1,21,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,-7.8,30,98000,486,1413,270,321,779,52,33800,71900,8900,11200,60,2.1,0,0,16.0,77777,9,999999999,70,0.0440,0,88,0.200,0.0,1.0 +2002,1,21,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,-8.3,23,98000,671,1413,283,486,885,64,51000,85800,10100,14600,360,2.1,0,0,16.0,77777,9,999999999,70,0.0440,0,88,0.200,0.0,1.0 +2002,1,21,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,-9.4,18,97900,792,1413,290,597,937,70,62500,92300,10600,16800,300,2.1,0,0,16.0,77777,9,999999999,70,0.0440,0,88,0.200,0.0,1.0 +2002,1,21,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,-9.4,16,97700,841,1413,297,627,919,78,65500,90900,11200,18400,0,0.0,0,0,16.0,77777,9,999999999,70,0.0440,0,88,0.200,0.0,1.0 +2002,1,21,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,-9.4,14,97600,816,1413,306,621,955,68,65100,94300,10500,17000,220,3.1,0,0,16.0,77777,9,999999999,70,0.0440,0,88,0.200,0.0,1.0 +2002,1,21,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,-10.0,13,97600,716,1413,308,541,931,67,56700,90800,10400,15400,300,2.6,0,0,16.0,77777,9,999999999,70,0.0440,0,88,0.200,0.0,1.0 +2002,1,21,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,-10.0,12,97500,551,1413,313,409,859,73,42300,80900,10600,14400,260,2.6,0,0,16.0,77777,9,999999999,70,0.0440,0,88,0.200,0.0,1.0 +2002,1,21,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,-10.0,12,97400,330,1413,310,240,751,64,24500,60700,10300,11500,0,0.0,0,0,16.0,77777,9,999999999,70,0.0440,0,88,0.200,0.0,1.0 +2002,1,21,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,-10.0,13,97400,80,1118,306,21,292,5,3000,18200,1600,1800,260,2.1,0,0,16.0,77777,9,999999999,70,0.0440,0,88,0.200,0.0,1.0 +2002,1,21,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,-5.6,22,97500,0,0,301,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,70,0.0440,0,88,0.200,0.0,1.0 +2002,1,21,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,-7.2,21,97500,0,0,295,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,70,0.0440,0,88,0.200,0.0,1.0 +2002,1,21,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,-7.2,22,97500,0,0,291,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,70,0.0440,0,88,0.200,0.0,1.0 +2002,1,21,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,-7.8,23,97500,0,0,286,0,0,0,0,0,0,0,110,2.1,0,0,16.0,77777,9,999999999,70,0.0440,0,88,0.200,0.0,1.0 +2002,1,21,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,-6.1,29,97500,0,0,283,0,0,0,0,0,0,0,90,4.6,0,0,16.0,77777,9,999999999,70,0.0440,0,88,0.200,0.0,1.0 +2002,1,21,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,-4.4,36,97400,0,0,280,0,0,0,0,0,0,0,70,4.1,1,0,16.0,77777,9,999999999,70,0.0440,0,88,0.200,0.0,1.0 +2002,1,22,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,-3.9,42,97400,0,0,274,0,0,0,0,0,0,0,90,4.6,0,0,16.0,77777,9,999999999,70,0.0440,0,88,0.200,0.0,1.0 +2002,1,22,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,-6.1,33,97300,0,0,286,0,0,0,0,0,0,0,80,4.1,3,3,16.0,77777,9,999999999,70,0.0440,0,88,0.200,0.0,1.0 +2002,1,22,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,-5.0,41,97300,0,0,269,0,0,0,0,0,0,0,90,4.6,0,0,16.0,77777,9,999999999,70,0.0440,0,88,0.200,0.0,1.0 +2002,1,22,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,-6.7,35,97300,0,0,267,0,0,0,0,0,0,0,100,2.6,0,0,16.0,77777,9,999999999,70,0.0440,0,88,0.200,0.0,1.0 +2002,1,22,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,-6.7,35,97400,0,0,267,0,0,0,0,0,0,0,100,1.5,0,0,16.0,77777,9,999999999,70,0.0440,0,88,0.200,0.0,1.0 +2002,1,22,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,-6.1,40,97300,0,0,263,0,0,0,0,0,0,0,90,5.2,0,0,16.0,77777,9,999999999,70,0.0440,0,88,0.200,0.0,1.0 +2002,1,22,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,-6.1,42,97300,0,0,261,0,0,0,0,0,0,0,90,4.6,0,0,16.0,77777,9,999999999,70,0.0440,0,88,0.200,0.0,1.0 +2002,1,22,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,-5.6,44,97300,29,671,262,0,0,0,0,0,0,0,90,5.2,0,0,16.0,77777,9,999999999,70,0.0440,0,88,0.200,0.0,1.0 +2002,1,22,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,-6.7,34,97400,254,1412,269,129,525,34,13200,40300,5900,6700,80,5.2,0,0,16.0,77777,9,999999999,70,0.0440,0,88,0.200,0.0,1.0 +2002,1,22,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,-7.2,27,97500,489,1412,279,326,790,51,34300,73100,8800,11200,100,3.6,0,0,16.0,77777,9,999999999,70,0.0440,0,88,0.200,0.0,1.0 +2002,1,22,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,-7.2,22,97500,674,1412,293,491,891,64,51500,86400,10100,14600,120,2.6,0,0,16.0,77777,9,999999999,70,0.0440,0,88,0.200,0.0,1.0 +2002,1,22,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,-7.8,18,97400,796,1412,299,609,955,68,63700,94100,10500,16700,100,3.1,0,0,16.0,77777,9,999999999,70,0.0440,0,88,0.200,0.0,1.0 +2002,1,22,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,-7.8,17,97300,846,1412,304,651,943,84,67800,93200,11800,18900,50,1.5,0,0,16.0,77777,9,999999999,70,0.0440,0,88,0.200,0.0,1.0 +2002,1,22,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,-7.8,17,97200,820,1412,306,627,937,81,65400,92400,11500,18200,0,0.0,0,0,16.0,77777,9,999999999,70,0.0440,0,88,0.200,0.0,1.0 +2002,1,22,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,-8.3,14,97200,721,1412,312,527,850,91,55000,83400,12200,19400,0,0.0,0,0,16.0,77777,9,999999999,70,0.0440,0,88,0.200,0.0,1.0 +2002,1,22,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,-7.8,14,97100,556,1412,315,416,871,72,43100,82300,10600,14400,0,0.0,0,0,16.0,77777,9,999999999,70,0.0440,0,88,0.200,0.0,1.0 +2002,1,22,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,-7.8,15,97100,335,1412,313,237,793,48,24100,66100,8400,9000,330,1.5,0,0,16.0,77777,9,999999999,60,0.0440,0,88,0.200,0.0,1.0 +2002,1,22,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,-7.8,15,97100,84,1142,311,22,318,4,3200,20000,1600,1500,290,4.1,0,0,16.0,77777,9,999999999,70,0.0440,0,88,0.200,0.0,1.0 +2002,1,22,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,-6.7,19,97100,0,0,311,0,0,0,0,0,0,0,320,3.6,2,1,16.0,77777,9,999999999,70,0.0440,0,88,0.200,0.0,1.0 +2002,1,22,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,-6.7,21,97100,0,0,308,0,0,0,0,0,0,0,260,2.6,3,2,16.0,7620,9,999999999,80,0.0440,0,88,0.200,0.0,1.0 +2002,1,22,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,-5.6,26,97100,0,0,302,0,0,0,0,0,0,0,230,2.6,3,2,16.0,7620,9,999999999,80,0.0440,0,88,0.200,0.0,1.0 +2002,1,22,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,-5.6,24,97100,0,0,303,0,0,0,0,0,0,0,0,0.0,1,1,16.0,7620,9,999999999,90,0.0440,0,88,0.200,0.0,1.0 +2002,1,22,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,-4.4,27,97200,0,0,298,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,100,0.0440,0,88,0.200,0.0,1.0 +2002,1,22,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,-2.2,33,97200,0,0,304,0,0,0,0,0,0,0,0,0.0,2,1,16.0,77777,9,999999999,100,0.0440,0,88,0.200,0.0,1.0 +2002,1,23,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,-2.2,39,97100,0,0,313,0,0,0,0,0,0,0,40,1.5,8,7,16.0,7620,9,999999999,110,0.0440,0,88,0.200,0.0,1.0 +2002,1,23,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,-1.7,40,97100,0,0,307,0,0,0,0,0,0,0,130,2.6,8,5,16.0,7620,9,999999999,110,0.0440,0,88,0.200,0.0,1.0 +2002,1,23,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,-3.3,36,97200,0,0,303,0,0,0,0,0,0,0,90,1.5,7,5,16.0,7620,9,999999999,110,0.0440,0,88,0.200,0.0,1.0 +2002,1,23,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,-2.2,41,97100,0,0,308,0,0,0,0,0,0,0,0,0.0,7,7,16.0,7620,9,999999999,100,0.0440,0,88,0.200,0.0,1.0 +2002,1,23,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,0.0,48,97200,0,0,318,0,0,0,0,0,0,0,0,0.0,8,8,16.0,4572,9,999999999,100,0.0440,0,88,0.200,0.0,1.0 +2002,1,23,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,-1.7,42,97200,0,0,323,0,0,0,0,0,0,0,250,3.6,9,9,16.0,4572,9,999999999,100,0.0440,0,88,0.200,0.0,1.0 +2002,1,23,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,-2.8,38,97200,0,0,321,0,0,0,0,0,0,0,300,2.1,9,9,16.0,4572,9,999999999,100,0.0440,0,88,0.200,0.0,1.0 +2002,1,23,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,-2.2,41,97200,30,694,319,0,0,0,0,0,0,0,280,5.2,9,9,16.0,4572,9,999999999,100,0.0440,0,88,0.200,0.0,1.0 +2002,1,23,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,-4.4,34,97300,256,1412,317,80,84,65,8800,6300,7600,13900,280,5.2,9,9,16.0,4572,9,999999999,100,0.0440,0,88,0.200,0.0,1.0 +2002,1,23,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,-4.4,32,97400,492,1412,322,261,353,137,27600,33600,15900,28100,260,5.2,9,9,16.0,4572,9,999999999,100,0.0440,0,88,0.200,0.0,1.0 +2002,1,23,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,-4.4,30,97500,678,1412,320,328,204,229,35400,20700,25400,56300,270,7.2,8,8,16.0,4572,9,999999999,100,0.0440,0,88,0.200,0.0,1.0 +2002,1,23,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,-5.0,28,97500,800,1412,326,353,125,282,38800,12700,31500,86000,260,6.2,9,9,16.0,4572,9,999999999,90,0.0440,0,88,0.200,0.0,1.0 +2002,1,23,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,-5.0,25,97400,850,1412,334,344,102,282,37800,10400,31500,90000,250,5.2,9,9,16.0,4572,9,999999999,90,0.0440,0,88,0.200,0.0,1.0 +2002,1,23,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,-6.7,20,97400,825,1412,313,633,773,180,65400,76500,20600,40100,250,6.7,3,3,16.0,4572,9,999999999,90,0.0440,0,88,0.200,0.0,1.0 +2002,1,23,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,-7.8,18,97400,726,1412,299,547,906,79,57000,88400,11400,16200,270,7.2,0,0,16.0,77777,9,999999999,90,0.0440,0,88,0.200,0.0,1.0 +2002,1,23,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,-11.7,13,97400,560,1412,295,399,746,101,41300,70400,13200,19600,270,7.7,0,0,16.0,77777,9,999999999,80,0.0440,0,88,0.200,0.0,1.0 +2002,1,23,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,-11.7,14,97400,340,1412,292,245,641,91,24500,51000,12200,15000,250,5.7,0,0,16.0,77777,9,999999999,80,0.0440,0,88,0.200,0.0,1.0 +2002,1,23,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,-11.7,15,97500,87,1165,288,24,265,9,3200,16600,1900,2800,240,4.1,0,0,16.0,77777,9,999999999,80,0.0440,0,88,0.200,0.0,1.0 +2002,1,23,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,-10.6,18,97600,0,0,295,0,0,0,0,0,0,0,230,3.6,3,3,16.0,77777,9,999999999,70,0.0440,0,88,0.200,0.0,1.0 +2002,1,23,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,-11.7,16,97700,0,0,309,0,0,0,0,0,0,0,230,2.1,8,8,16.0,3048,9,999999999,70,0.0440,0,88,0.200,0.0,1.0 +2002,1,23,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,-3.9,32,97800,0,0,302,0,0,0,0,0,0,0,50,6.2,3,3,16.0,77777,9,999999999,70,0.0440,0,88,0.200,0.0,1.0 +2002,1,23,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,-2.8,38,97900,0,0,299,0,0,0,0,0,0,0,60,4.1,3,3,16.0,77777,9,999999999,60,0.0440,0,88,0.200,0.0,1.0 +2002,1,23,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,-6.1,31,98100,0,0,290,0,0,0,0,0,0,0,50,2.6,3,3,16.0,77777,9,999999999,60,0.0440,0,88,0.200,0.0,1.0 +2002,1,23,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,-14.4,14,98100,0,0,272,0,0,0,0,0,0,0,350,2.6,0,0,16.0,77777,9,999999999,50,0.0440,0,88,0.200,0.0,1.0 +2002,1,24,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,-15.6,14,98100,0,0,266,0,0,0,0,0,0,0,10,3.6,0,0,16.0,77777,9,999999999,50,0.0440,0,88,0.200,0.0,1.0 +2002,1,24,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,-16.1,14,98200,0,0,263,0,0,0,0,0,0,0,350,2.6,0,0,16.0,77777,9,999999999,40,0.0440,0,88,0.200,0.0,1.0 +2002,1,24,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,-12.8,22,98200,0,0,257,0,0,0,0,0,0,0,340,1.5,0,0,16.0,77777,9,999999999,40,0.0440,0,88,0.200,0.0,1.0 +2002,1,24,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,-15.6,17,98300,0,0,256,0,0,0,0,0,0,0,330,3.6,0,0,16.0,77777,9,999999999,30,0.0440,0,88,0.200,0.0,1.0 +2002,1,24,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,-16.7,14,98400,0,0,257,0,0,0,0,0,0,0,340,2.6,0,0,16.0,77777,9,999999999,30,0.0440,0,88,0.200,0.0,1.0 +2002,1,24,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,-16.1,17,98400,0,0,251,0,0,0,0,0,0,0,240,2.1,0,0,16.0,77777,9,999999999,30,0.0440,0,88,0.200,0.0,1.0 +2002,1,24,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.9,-15.0,20,98500,0,0,248,0,0,0,0,0,0,0,240,3.6,0,0,16.0,77777,9,999999999,30,0.0440,0,88,0.200,0.0,1.0 +2002,1,24,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,-15.6,18,98600,31,694,252,0,0,0,0,0,0,0,270,2.6,0,0,16.0,77777,9,999999999,30,0.0440,0,88,0.200,0.0,1.0 +2002,1,24,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,-14.4,17,98700,259,1412,263,134,542,34,13800,42000,6000,6800,250,2.6,0,0,16.0,77777,9,999999999,30,0.0440,0,88,0.200,0.0,1.0 +2002,1,24,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,-16.7,11,98800,495,1412,269,327,780,52,34400,72300,8900,11400,340,1.5,0,0,16.0,77777,9,999999999,30,0.0440,0,88,0.200,0.0,1.0 +2002,1,24,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,-15.6,11,98800,681,1412,279,476,839,69,49800,81400,10300,15000,60,5.7,0,0,16.0,77777,9,999999999,30,0.0440,0,88,0.200,0.0,1.0 +2002,1,24,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,-13.9,12,98800,804,1412,285,603,925,74,63000,91200,10900,17400,20,5.7,0,0,16.0,77777,9,999999999,30,0.0440,0,88,0.200,0.0,1.0 +2002,1,24,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,-12.2,13,98600,855,1412,292,645,943,72,67500,93400,10700,18100,10,5.7,0,0,16.0,77777,9,999999999,30,0.0440,0,88,0.200,0.0,1.0 +2002,1,24,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,-10.6,14,98500,830,1412,298,627,912,88,65100,90000,12000,18700,20,3.6,0,0,16.0,77777,9,999999999,30,0.0440,0,88,0.200,0.0,1.0 +2002,1,24,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,-10.0,14,98500,731,1412,301,525,825,96,54600,80900,12500,20200,10,3.1,0,0,16.0,77777,9,999999999,30,0.0440,0,88,0.200,0.0,1.0 +2002,1,24,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,-9.4,14,98400,565,1412,304,405,765,98,42200,72500,13000,19200,0,0.0,0,0,16.0,77777,9,999999999,40,0.0440,0,88,0.200,0.0,1.0 +2002,1,24,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,-8.9,15,98400,344,1412,307,254,683,87,25500,55000,12000,14600,240,2.1,0,0,16.0,77777,9,999999999,40,0.0440,0,88,0.200,0.0,1.0 +2002,1,24,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,-10.0,15,98500,91,1188,299,27,291,9,3500,18400,2000,2800,240,3.1,0,0,16.0,77777,9,999999999,40,0.0440,0,88,0.200,0.0,1.0 +2002,1,24,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,-10.6,16,98500,0,0,291,0,0,0,0,0,0,0,220,2.1,0,0,16.0,77777,9,999999999,40,0.0440,0,88,0.200,0.0,1.0 +2002,1,24,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,-10.6,17,98500,0,0,287,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,40,0.0440,0,88,0.200,0.0,1.0 +2002,1,24,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,-12.8,15,98500,0,0,280,0,0,0,0,0,0,0,280,1.5,0,0,16.0,77777,9,999999999,40,0.0440,0,88,0.200,0.0,1.0 +2002,1,24,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,-11.1,18,98500,0,0,278,0,0,0,0,0,0,0,70,3.1,0,0,16.0,77777,9,999999999,40,0.0440,0,88,0.200,0.0,1.0 +2002,1,24,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,-10.0,23,98600,0,0,272,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,40,0.0440,0,88,0.200,0.0,1.0 +2002,1,24,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,-12.8,15,98500,0,0,278,0,0,0,0,0,0,0,40,2.1,0,0,16.0,77777,9,999999999,40,0.0440,0,88,0.200,0.0,1.0 +2002,1,25,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,-12.8,16,98500,0,0,273,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,40,0.0440,0,88,0.200,0.0,1.0 +2002,1,25,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,-11.7,21,98500,0,0,266,0,0,0,0,0,0,0,270,1.5,0,0,16.0,77777,9,999999999,40,0.0440,0,88,0.200,0.0,1.0 +2002,1,25,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,-12.8,17,98500,0,0,271,0,0,0,0,0,0,0,60,3.6,0,0,16.0,77777,9,999999999,40,0.0440,0,88,0.200,0.0,1.0 +2002,1,25,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,-12.2,19,98400,0,0,270,0,0,0,0,0,0,0,80,2.1,0,0,16.0,77777,9,999999999,40,0.0440,0,88,0.200,0.0,1.0 +2002,1,25,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,-12.2,19,98500,0,0,268,0,0,0,0,0,0,0,80,3.1,0,0,16.0,77777,9,999999999,40,0.0440,0,88,0.200,0.0,1.0 +2002,1,25,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,-9.4,30,98300,0,0,260,0,0,0,0,0,0,0,130,2.6,0,0,16.0,77777,9,999999999,40,0.0440,0,88,0.200,0.0,1.0 +2002,1,25,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,-11.7,21,98300,0,0,266,0,0,0,0,0,0,0,100,4.6,0,0,16.0,77777,9,999999999,50,0.0440,0,88,0.200,0.0,1.0 +2002,1,25,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,-12.2,19,98400,33,717,268,0,117,0,0,0,0,0,100,3.1,0,0,16.0,77777,9,999999999,50,0.0440,0,88,0.200,0.0,1.0 +2002,1,25,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,-10.6,19,98500,262,1411,278,148,642,28,15600,51300,6100,6700,100,3.6,0,0,16.0,77777,9,999999999,50,0.0440,0,88,0.200,0.0,1.0 +2002,1,25,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,-10.0,16,98500,499,1411,294,337,809,50,35500,75100,8800,11300,90,5.2,0,0,16.0,77777,9,999999999,50,0.0440,0,88,0.200,0.0,1.0 +2002,1,25,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,-10.0,14,98500,685,1411,301,497,886,65,52100,86100,10100,14800,70,6.2,0,0,16.0,77777,9,999999999,50,0.0440,0,88,0.200,0.0,1.0 +2002,1,25,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,-9.4,13,98300,808,1411,309,586,837,105,61200,83000,13500,23200,70,6.2,0,0,16.0,77777,9,999999999,50,0.0440,0,88,0.200,0.0,1.0 +2002,1,25,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,-7.8,13,98200,859,1411,320,645,931,76,67400,92200,11000,18600,90,3.6,0,0,16.0,77777,9,999999999,50,0.0440,0,88,0.200,0.0,1.0 +2002,1,25,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,-5.0,17,98100,834,1411,326,639,967,65,67100,95700,10300,16900,90,3.6,0,0,16.0,77777,9,999999999,50,0.0440,0,88,0.200,0.0,1.0 +2002,1,25,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,-3.9,17,98000,736,1411,333,538,855,91,56400,84200,12300,19700,160,2.6,0,0,16.0,77777,9,999999999,50,0.0440,0,88,0.200,0.0,1.0 +2002,1,25,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,-3.9,18,97900,570,1411,330,396,693,115,40700,65300,14300,22000,90,3.1,0,0,16.0,77777,9,999999999,50,0.0440,0,88,0.200,0.0,1.0 +2002,1,25,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,-3.3,18,97800,349,1411,333,251,648,90,25100,52300,12100,15100,130,2.6,0,0,16.0,77777,9,999999999,50,0.0440,0,88,0.200,0.0,1.0 +2002,1,25,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,-4.4,19,97800,95,1211,322,28,284,10,3600,18000,2100,3000,0,0.0,0,0,16.0,77777,9,999999999,50,0.0440,0,88,0.200,0.0,1.0 +2002,1,25,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,-7.2,16,97800,0,0,314,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,50,0.0440,0,88,0.200,0.0,1.0 +2002,1,25,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,-6.7,19,97700,0,0,305,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,50,0.0440,0,88,0.200,0.0,1.0 +2002,1,25,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,-4.4,29,97700,0,0,294,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,50,0.0440,0,88,0.200,0.0,1.0 +2002,1,25,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,-6.1,27,97700,0,0,287,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,50,0.0440,0,88,0.200,0.0,1.0 +2002,1,25,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,-5.6,29,97800,0,0,285,0,0,0,0,0,0,0,170,1.5,1,0,16.0,77777,9,999999999,50,0.0440,0,88,0.200,0.0,1.0 +2002,1,25,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,-6.7,28,97700,0,0,280,0,0,0,0,0,0,0,90,3.1,0,0,16.0,77777,9,999999999,50,0.0440,0,88,0.200,0.0,1.0 +2002,1,26,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,-7.2,27,97700,0,0,279,0,0,0,0,0,0,0,100,3.1,0,0,16.0,77777,9,999999999,50,0.0440,0,88,0.200,0.0,1.0 +2002,1,26,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,-7.2,25,97700,0,0,284,0,0,0,0,0,0,0,90,3.6,0,0,16.0,77777,9,999999999,50,0.0440,0,88,0.200,0.0,1.0 +2002,1,26,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,-6.7,30,97600,0,0,276,0,0,0,0,0,0,0,120,2.6,0,0,16.0,77777,9,999999999,50,0.0440,0,88,0.200,0.0,1.0 +2002,1,26,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,-6.1,35,97600,0,0,272,0,0,0,0,0,0,0,80,3.1,0,0,16.0,77777,9,999999999,50,0.0440,0,88,0.200,0.0,1.0 +2002,1,26,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,-6.7,33,97700,0,0,271,0,0,0,0,0,0,0,140,2.1,0,0,16.0,77777,9,999999999,50,0.0440,0,88,0.200,0.0,1.0 +2002,1,26,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,-7.8,27,97600,0,0,276,0,0,0,0,0,0,0,120,2.6,0,0,16.0,77777,9,999999999,50,0.0440,0,88,0.200,0.0,1.0 +2002,1,26,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,-7.2,28,97600,0,0,277,0,0,0,0,0,0,0,110,1.5,0,0,16.0,77777,9,999999999,50,0.0440,0,88,0.200,0.0,1.0 +2002,1,26,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,-7.8,25,97700,34,717,281,0,99,0,0,0,0,0,120,3.1,0,0,16.0,77777,9,999999999,50,0.0440,0,88,0.200,0.0,1.0 +2002,1,26,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,-6.7,25,97800,265,1411,287,142,604,28,15000,48400,5900,6700,110,4.1,0,0,16.0,77777,9,999999999,50,0.0440,0,88,0.200,0.0,1.0 +2002,1,26,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,-6.1,21,97900,502,1411,301,342,837,43,36200,77900,8300,10800,110,2.6,0,0,16.0,77777,9,999999999,50,0.0440,0,88,0.200,0.0,1.0 +2002,1,26,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,-6.7,18,97900,689,1411,307,492,892,55,51900,86800,9300,13900,120,2.6,0,0,16.0,77777,9,999999999,50,0.0440,0,88,0.200,0.0,1.0 +2002,1,26,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,-5.6,17,97800,813,1411,318,592,866,91,62700,86400,12800,21400,110,3.1,0,0,16.0,77777,9,999999999,50,0.0440,0,88,0.200,0.0,1.0 +2002,1,26,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,-4.4,17,97700,864,1411,327,645,847,124,66700,84000,15100,27500,110,3.1,0,0,16.0,7620,9,999999999,50,0.0440,0,88,0.200,0.0,1.0 +2002,1,26,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,-2.8,18,97600,839,1411,336,568,620,198,60500,63500,22600,46400,110,4.6,0,0,16.0,7620,9,999999999,50,0.0440,0,88,0.200,0.0,1.0 +2002,1,26,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,-1.1,19,97500,741,1411,350,545,818,113,57500,81500,14600,24900,180,2.6,2,1,16.0,7620,9,999999999,50,0.0440,0,88,0.200,0.0,1.0 +2002,1,26,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,0.0,21,97500,575,1411,351,427,867,72,44400,82500,10600,14700,160,1.5,2,1,16.0,7620,9,999999999,50,0.0440,0,88,0.200,0.0,1.0 +2002,1,26,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,0.0,21,97400,354,1411,345,236,751,46,24200,64000,8100,9100,140,1.5,1,0,16.0,7620,9,999999999,50,0.0440,0,88,0.200,0.0,1.0 +2002,1,26,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,-0.6,23,97400,99,1235,340,28,337,6,3800,21600,1900,2100,0,0.0,2,1,16.0,7620,9,999999999,50,0.0440,0,88,0.200,0.0,1.0 +2002,1,26,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,0.0,24,97500,0,0,341,0,0,0,0,0,0,0,340,1.5,1,1,16.0,7620,9,999999999,50,0.0440,0,88,0.200,0.0,1.0 +2002,1,26,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,-2.8,25,97400,0,0,322,0,0,0,0,0,0,0,0,0.0,3,2,16.0,7620,9,999999999,50,0.0440,0,88,0.200,0.0,1.0 +2002,1,26,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,-2.8,27,97400,0,0,313,0,0,0,0,0,0,0,0,0.0,3,1,16.0,7620,9,999999999,50,0.0440,0,88,0.200,0.0,1.0 +2002,1,26,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,-3.9,27,97400,0,0,311,0,0,0,0,0,0,0,0,0.0,3,2,16.0,7620,9,999999999,60,0.0440,0,88,0.200,0.0,1.0 +2002,1,26,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,-2.8,32,97400,0,0,307,0,0,0,0,0,0,0,0,0.0,5,2,16.0,7620,9,999999999,60,0.0440,0,88,0.200,0.0,1.0 +2002,1,26,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,-2.2,36,97400,0,0,303,0,0,0,0,0,0,0,130,2.1,6,2,16.0,7620,9,999999999,60,0.0440,0,88,0.200,0.0,1.0 +2002,1,27,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,-2.8,33,97300,0,0,305,0,0,0,0,0,0,0,100,3.6,5,2,16.0,7620,9,999999999,60,0.0440,0,88,0.200,0.0,1.0 +2002,1,27,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,-2.2,37,97300,0,0,304,0,0,0,0,0,0,0,50,2.1,7,3,16.0,7620,9,999999999,60,0.0440,0,88,0.200,0.0,1.0 +2002,1,27,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,-2.2,37,97300,0,0,301,0,0,0,0,0,0,0,110,1.5,5,2,16.0,7620,9,999999999,60,0.0440,0,88,0.200,0.0,1.0 +2002,1,27,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,-2.2,39,97200,0,0,299,0,0,0,0,0,0,0,100,4.1,3,2,16.0,7620,9,999999999,70,0.0440,0,88,0.200,0.0,1.0 +2002,1,27,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,-2.2,40,97300,0,0,299,0,0,0,0,0,0,0,80,4.1,7,3,16.0,7620,9,999999999,80,0.0440,0,88,0.200,0.0,1.0 +2002,1,27,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,-2.2,40,97200,0,0,287,0,0,0,0,0,0,0,110,3.6,0,0,16.0,7620,9,999999999,80,0.0440,0,88,0.200,0.0,1.0 +2002,1,27,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,-2.2,41,97300,0,0,285,0,0,0,0,0,0,0,100,2.6,0,0,16.0,7620,9,999999999,80,0.0440,0,88,0.200,0.0,1.0 +2002,1,27,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,-2.2,45,97300,35,741,280,1,78,0,0,0,0,0,70,4.1,0,0,16.0,7010,9,999999999,80,0.0440,0,88,0.200,0.0,1.0 +2002,1,27,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,-2.2,39,97400,268,1411,295,98,159,68,10400,11600,8200,12900,70,4.6,1,1,16.0,7010,9,999999999,80,0.0440,0,88,0.200,0.0,1.0 +2002,1,27,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,-2.2,32,97500,506,1411,310,202,96,167,22100,9100,18800,43900,100,3.1,3,2,16.0,7620,9,999999999,80,0.0440,0,88,0.200,0.0,1.0 +2002,1,27,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,-1.7,30,97600,693,1411,318,328,157,251,35400,16000,27500,62200,120,1.5,5,2,16.0,7620,9,999999999,90,0.0440,0,88,0.200,0.0,1.0 +2002,1,27,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,-0.6,29,97600,817,1411,333,347,119,278,38100,12100,31100,86500,120,2.1,7,3,16.0,7620,9,999999999,90,0.0440,0,88,0.200,0.0,1.0 +2002,1,27,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,-0.6,28,97500,869,1411,338,572,546,235,60200,56000,25600,57500,0,0.0,8,4,16.0,4572,9,999999999,90,0.0440,0,88,0.200,0.0,1.0 +2002,1,27,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,0.0,27,97400,844,1411,344,383,122,310,42100,12400,34600,96300,0,0.0,7,4,16.0,4572,9,999999999,90,0.0440,0,88,0.200,0.0,1.0 +2002,1,27,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,0.6,27,97400,746,1411,357,317,111,258,34800,11200,28800,76600,0,0.0,9,7,16.0,4572,9,999999999,90,0.0440,0,88,0.200,0.0,1.0 +2002,1,27,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,0.6,28,97400,581,1411,354,79,0,79,9400,0,9400,35200,0,0.0,9,7,16.0,4572,9,999999999,100,0.0440,0,88,0.200,0.0,1.0 +2002,1,27,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,0.6,28,97400,359,1411,344,140,90,116,15000,7700,13000,25500,360,2.6,10,4,16.0,4572,9,999999999,100,0.0440,0,88,0.200,0.0,1.0 +2002,1,27,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,0.6,29,97400,103,1258,345,18,42,15,2100,1800,1900,2500,10,2.6,9,5,16.0,4572,9,999999999,110,0.0440,0,88,0.200,0.0,1.0 +2002,1,27,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,0.6,30,97300,0,0,339,0,0,0,0,0,0,0,300,2.6,9,4,16.0,4572,9,999999999,110,0.0440,0,88,0.200,0.0,1.0 +2002,1,27,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,2.2,40,97400,0,0,329,0,0,0,0,0,0,0,220,3.1,7,4,16.0,4572,9,999999999,120,0.0440,0,88,0.200,0.0,1.0 +2002,1,27,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,2.2,39,97400,0,0,331,0,0,0,0,0,0,0,0,0.0,9,4,16.0,4572,9,999999999,130,0.0440,0,88,0.200,0.0,1.0 +2002,1,27,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,1.7,39,97400,0,0,328,0,0,0,0,0,0,0,0,0.0,9,4,16.0,4572,9,999999999,130,0.0440,0,88,0.200,0.0,1.0 +2002,1,27,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,1.7,42,97400,0,0,323,0,0,0,0,0,0,0,0,0.0,9,4,16.0,4572,9,999999999,140,0.0440,0,88,0.200,0.0,1.0 +2002,1,27,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,1.1,40,97400,0,0,322,0,0,0,0,0,0,0,0,0.0,9,4,16.0,4572,9,999999999,140,0.0440,0,88,0.200,0.0,1.0 +2002,1,28,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,1.7,45,97300,0,0,318,0,0,0,0,0,0,0,80,2.6,9,4,16.0,4572,9,999999999,140,0.0440,0,88,0.200,0.0,1.0 +2002,1,28,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,1.1,42,97300,0,0,317,0,0,0,0,0,0,0,70,1.5,7,3,16.0,4572,9,999999999,150,0.0440,0,88,0.200,0.0,1.0 +2002,1,28,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,2.2,48,97300,0,0,321,0,0,0,0,0,0,0,150,1.5,7,6,16.0,4572,9,999999999,130,0.0440,0,88,0.200,0.0,1.0 +2002,1,28,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,2.2,50,97300,0,0,316,0,0,0,0,0,0,0,0,0.0,9,5,16.0,4572,9,999999999,120,0.0440,0,88,0.200,0.0,1.0 +2002,1,28,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,2.8,54,97400,0,0,312,0,0,0,0,0,0,0,110,2.1,8,4,16.0,4572,9,999999999,110,0.0440,0,88,0.200,0.0,1.0 +2002,1,28,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,3.3,56,97300,0,0,315,0,0,0,0,0,0,0,80,3.6,8,5,16.0,4572,9,999999999,110,0.0440,0,88,0.200,0.0,1.0 +2002,1,28,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,2.2,52,97300,0,0,314,0,0,0,0,0,0,0,100,3.6,9,5,16.0,4572,9,999999999,110,0.0440,0,88,0.200,0.0,1.0 +2002,1,28,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,2.2,54,97400,37,764,311,1,5,1,200,200,200,200,90,3.6,7,5,16.0,4572,9,999999999,120,0.0440,0,88,0.200,0.0,1.0 +2002,1,28,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,1.7,47,97400,271,1410,318,55,0,55,6200,0,6200,20000,90,3.1,8,5,16.0,4572,9,999999999,130,0.0440,0,88,0.200,0.0,1.0 +2002,1,28,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,1.1,42,97500,509,1410,322,122,0,122,13900,0,13900,47100,100,3.6,8,5,16.0,6096,9,999999999,140,0.0440,0,88,0.200,0.0,1.0 +2002,1,28,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,-3.3,28,97500,697,1410,317,233,23,221,26200,2000,25200,84100,0,0.0,8,4,16.0,6096,9,999999999,150,0.0440,0,88,0.200,0.0,1.0 +2002,1,28,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,-2.8,24,97500,821,1410,333,245,18,234,28000,1600,27100,96900,200,3.1,8,4,16.0,6096,9,999999999,150,0.0440,0,88,0.200,0.0,1.0 +2002,1,28,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,-2.8,23,97400,873,1410,335,434,222,295,47100,23300,32700,81300,270,3.1,8,4,16.0,6096,9,999999999,150,0.0440,0,88,0.200,0.0,1.0 +2002,1,28,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,-3.6,22,97300,849,1410,334,249,24,234,28600,2100,27400,98900,280,3.1,8,4,16.0,4267,9,999999999,160,0.0440,0,88,0.200,0.0,1.0 +2002,1,28,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,-2.8,24,97300,751,1410,333,337,124,271,37000,12500,30300,79800,270,3.6,9,4,16.0,5182,9,999999999,150,0.0440,0,88,0.200,0.0,1.0 +2002,1,28,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,-2.2,25,97300,586,1410,334,228,71,198,24900,6900,22000,54000,290,4.6,8,4,16.0,4267,9,999999999,140,0.0440,0,88,0.200,0.0,1.0 +2002,1,28,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,-0.6,30,97300,364,1410,335,207,360,114,21700,30500,13700,23100,280,5.7,9,5,16.0,4572,9,999999999,130,0.0440,0,88,0.200,0.0,1.0 +2002,1,28,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,-0.6,32,97300,107,1281,328,28,170,15,3200,9300,2300,2900,280,5.2,9,4,16.0,5182,9,999999999,140,0.0440,0,88,0.200,0.0,1.0 +2002,1,28,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,0.0,34,97300,0,0,326,0,0,0,0,0,0,0,300,3.1,9,4,16.0,5182,9,999999999,140,0.0440,0,88,0.200,0.0,1.0 +2002,1,28,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,0.0,37,97400,0,0,321,0,0,0,0,0,0,0,0,0.0,9,4,16.0,5182,9,999999999,150,0.0440,0,88,0.200,0.0,1.0 +2002,1,28,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,0.6,40,97300,0,0,319,0,0,0,0,0,0,0,0,0.0,9,4,16.0,5182,9,999999999,150,0.0440,0,88,0.200,0.0,1.0 +2002,1,28,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,0.6,42,97300,0,0,317,0,0,0,0,0,0,0,0,0.0,10,4,16.0,5182,9,999999999,160,0.0440,0,88,0.200,0.0,1.0 +2002,1,28,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,0.0,40,97400,0,0,316,0,0,0,0,0,0,0,0,0.0,9,4,16.0,5182,9,999999999,160,0.0440,0,88,0.200,0.0,1.0 +2002,1,28,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,0.6,45,97300,0,0,312,0,0,0,0,0,0,0,0,0.0,9,4,16.0,5182,9,999999999,150,0.0440,0,88,0.200,0.0,1.0 +2002,1,29,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,0.6,48,97300,0,0,307,0,0,0,0,0,0,0,100,1.5,9,4,16.0,5182,9,999999999,150,0.0430,0,88,0.200,0.0,1.0 +2002,1,29,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,1.7,52,97200,0,0,308,0,0,0,0,0,0,0,90,2.1,9,4,16.0,5182,9,999999999,140,0.0430,0,88,0.200,0.0,1.0 +2002,1,29,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,1.7,52,97200,0,0,308,0,0,0,0,0,0,0,0,0.0,9,4,16.0,5182,9,999999999,130,0.0430,0,88,0.200,0.0,1.0 +2002,1,29,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,2.2,58,97200,0,0,304,0,0,0,0,0,0,0,0,0.0,9,4,16.0,5182,9,999999999,120,0.0430,0,88,0.200,0.0,1.0 +2002,1,29,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,0.0,46,97300,0,0,306,0,0,0,0,0,0,0,250,2.6,10,4,16.0,5182,9,999999999,100,0.0430,0,88,0.200,0.0,1.0 +2002,1,29,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,-1.1,44,97300,0,0,303,0,0,0,0,0,0,0,240,2.6,9,4,16.0,5182,9,999999999,100,0.0430,0,88,0.200,0.0,1.0 +2002,1,29,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,-1.7,42,97300,0,0,302,0,0,0,0,0,0,0,250,3.1,9,4,16.0,5182,9,999999999,100,0.0430,0,88,0.200,0.0,1.0 +2002,1,29,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,0.0,50,97300,38,764,302,0,0,0,0,0,0,0,0,0.0,9,4,16.0,5182,9,999999999,100,0.0430,0,88,0.200,0.0,1.0 +2002,1,29,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,0.6,50,97300,275,1410,305,45,0,45,5200,0,5200,17200,0,0.0,9,4,16.0,5182,9,999999999,100,0.0430,0,88,0.200,0.0,1.0 +2002,1,29,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,-1.1,42,97400,513,1410,305,127,6,125,14400,400,14300,48100,310,2.6,10,4,16.0,5486,9,999999999,100,0.0430,0,88,0.200,0.0,1.0 +2002,1,29,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,-0.6,41,97500,702,1410,313,207,23,195,23500,1900,22600,77900,240,1.5,9,5,16.0,5486,9,999999999,100,0.0430,0,88,0.200,0.0,1.0 +2002,1,29,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,-2.8,33,97400,826,1410,316,484,344,281,51400,36400,30000,71000,290,4.1,10,6,16.0,5486,9,999999999,100,0.0430,0,88,0.200,0.0,1.0 +2002,1,29,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,-2.8,33,97300,878,1410,319,644,775,160,67600,77900,18900,38900,300,3.6,9,7,16.0,5486,9,999999999,110,0.0430,0,88,0.200,0.0,1.0 +2002,1,29,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,-2.8,28,97300,854,1410,329,663,911,109,69500,90800,14300,25200,260,4.6,7,7,16.0,6096,9,999999999,110,0.0430,0,88,0.200,0.0,1.0 +2002,1,29,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,-3.9,27,97200,756,1410,314,536,743,136,56000,73600,16400,29600,270,1.5,3,3,16.0,6096,9,999999999,100,0.0430,0,88,0.200,0.0,1.0 +2002,1,29,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,-5.6,24,97200,591,1410,310,439,825,92,44600,78000,11800,16800,270,4.6,3,3,16.0,77777,9,999999999,100,0.0430,0,88,0.200,0.0,1.0 +2002,1,29,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,-5.0,24,97200,369,1410,315,273,813,59,27500,69300,9200,10400,260,6.7,3,3,16.0,77777,9,999999999,100,0.0430,0,88,0.200,0.0,1.0 +2002,1,29,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,-5.6,25,97200,111,1304,307,39,393,8,4700,25600,2400,2600,260,3.6,3,3,16.0,77777,9,999999999,100,0.0430,0,88,0.200,0.0,1.0 +2002,1,29,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,-5.6,25,97200,0,0,307,0,0,0,0,0,0,0,280,4.1,3,3,16.0,4877,9,999999999,100,0.0430,0,88,0.200,0.0,1.0 +2002,1,29,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,-5.0,28,97200,0,0,303,0,0,0,0,0,0,0,270,5.7,3,3,16.0,4877,9,999999999,100,0.0430,0,88,0.200,0.0,1.0 +2002,1,29,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,-4.4,30,97200,0,0,320,0,0,0,0,0,0,0,270,3.1,8,8,16.0,3048,9,999999999,100,0.0430,0,88,0.200,0.0,1.0 +2002,1,29,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,-3.9,32,97200,0,0,318,0,0,0,0,0,0,0,220,2.6,8,8,16.0,2743,9,999999999,100,0.0430,0,88,0.200,0.0,1.0 +2002,1,29,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,-5.0,29,97300,0,0,317,0,0,0,0,0,0,0,270,3.1,8,8,16.0,2591,9,999999999,110,0.0430,0,88,0.200,0.0,1.0 +2002,1,29,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,-5.0,29,97200,0,0,324,0,0,0,0,0,0,0,290,3.1,9,9,16.0,2591,9,999999999,100,0.0430,0,88,0.200,0.0,1.0 +2002,1,30,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,-2.8,37,97200,0,0,333,0,0,0,0,0,0,0,180,1.5,10,10,16.0,2591,9,999999999,100,0.0430,0,88,0.200,0.0,1.0 +2002,1,30,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,-2.2,41,97100,0,0,319,0,0,0,0,0,0,0,200,2.1,10,9,16.0,2591,9,999999999,100,0.0430,0,88,0.200,0.0,1.0 +2002,1,30,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,-1.7,42,97100,0,0,323,0,0,0,0,0,0,0,230,1.5,9,9,16.0,2134,9,999999999,100,0.0430,0,88,0.200,0.0,1.0 +2002,1,30,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,-2.2,46,97200,0,0,321,0,0,0,0,0,0,0,250,5.7,10,10,16.0,1676,9,999999999,90,0.0430,0,88,0.200,0.0,1.0 +2002,1,30,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,0.6,60,97300,0,0,313,0,0,0,0,0,0,0,290,6.2,9,9,16.0,1676,9,999999999,90,0.0430,0,88,0.200,0.0,1.0 +2002,1,30,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,1.7,68,97200,0,0,320,0,0,0,0,0,0,0,290,5.7,10,10,16.0,1676,9,999999999,90,0.0430,0,88,0.200,0.0,1.0 +2002,1,30,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,2.8,76,97200,0,0,319,0,0,0,0,0,0,0,290,4.6,10,10,16.0,1524,9,999999999,90,0.0430,0,88,0.200,0.0,1.0 +2002,1,30,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,3.3,85,97300,40,787,315,2,90,1,700,5200,400,400,300,5.2,10,10,16.0,853,9,999999999,90,0.0430,0,88,0.200,0.0,1.0 +2002,1,30,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,2.8,82,97300,278,1410,314,66,20,62,7200,1600,6900,15900,310,5.2,10,10,16.0,853,9,999999999,90,0.0430,0,88,0.200,0.0,1.0 +2002,1,30,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,3.3,82,97400,517,1410,317,56,0,56,6800,0,6800,25100,320,5.7,10,10,16.0,853,9,999999999,90,0.0430,0,88,0.200,0.0,1.0 +2002,1,30,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,2.8,76,97500,706,1410,319,223,35,205,24500,3500,22700,61900,330,5.7,10,10,16.0,853,9,999999999,90,0.0430,0,88,0.200,0.0,1.0 +2002,1,30,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,2.2,70,97400,831,1410,321,114,0,114,13800,0,13800,55300,290,5.7,10,10,16.0,1036,9,999999999,90,0.0430,0,88,0.200,0.0,1.0 +2002,1,30,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,3.3,76,97400,883,1410,322,361,102,297,39700,10400,33200,96700,260,5.2,10,10,16.0,1036,9,999999999,90,0.0430,0,88,0.200,0.0,1.0 +2002,1,30,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,0.6,54,97400,860,1410,329,637,717,198,65600,71000,22200,45300,250,6.7,10,10,16.0,1036,9,999999999,90,0.0430,0,88,0.200,0.0,1.0 +2002,1,30,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,-2.2,37,97400,762,1410,315,549,823,103,57000,81000,13100,21800,250,5.7,7,7,16.0,7620,9,999999999,80,0.0430,0,88,0.200,0.0,1.0 +2002,1,30,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,-3.3,35,97400,596,1410,316,406,567,166,42100,54900,18800,33600,270,4.6,9,8,16.0,1981,9,999999999,80,0.0430,0,88,0.200,0.0,1.0 +2002,1,30,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,-0.6,47,97500,374,1410,321,292,764,88,29400,63600,12500,15200,340,4.1,9,9,16.0,1981,9,999999999,80,0.0430,0,88,0.200,0.0,1.0 +2002,1,30,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,-0.6,49,97500,115,1327,318,44,377,13,5100,24600,2800,3500,70,6.2,10,9,16.0,1372,9,999999999,70,0.0430,0,88,0.200,0.0,1.0 +2002,1,30,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,1.7,63,97500,0,0,316,0,0,0,0,0,0,0,110,2.1,9,9,16.0,6096,9,999999999,70,0.0430,0,88,0.200,0.0,1.0 +2002,1,30,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,2.8,71,97600,0,0,304,0,0,0,0,0,0,0,0,0.0,7,7,16.0,6096,9,999999999,70,0.0430,0,88,0.200,0.0,1.0 +2002,1,30,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,-7.2,30,97700,0,0,300,0,0,0,0,0,0,0,310,3.6,8,8,16.0,3048,9,999999999,70,0.0430,0,88,0.200,0.0,1.0 +2002,1,30,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,-7.8,31,97800,0,0,284,0,0,0,0,0,0,0,280,3.6,5,5,16.0,77777,9,999999999,70,0.0430,0,88,0.200,0.0,1.0 +2002,1,30,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,-8.9,29,98000,0,0,276,0,0,0,0,0,0,0,270,1.5,3,3,16.0,77777,9,999999999,60,0.0430,0,88,0.200,0.0,1.0 +2002,1,30,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,-8.9,29,97900,0,0,276,0,0,0,0,0,0,0,330,1.5,3,3,16.0,77777,9,999999999,60,0.0430,0,88,0.200,0.0,1.0 +2002,1,31,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,-3.9,51,98000,0,0,263,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,60,0.0430,0,88,0.200,0.0,1.0 +2002,1,31,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,-5.0,46,98000,0,0,262,0,0,0,0,0,0,0,360,2.1,0,0,16.0,77777,9,999999999,50,0.0430,0,88,0.200,0.0,1.0 +2002,1,31,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,1.1,79,98000,0,0,266,0,0,0,0,0,0,0,80,2.1,0,0,16.0,77777,9,999999999,50,0.0430,0,88,0.200,0.0,1.0 +2002,1,31,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.8,-0.6,78,98100,0,0,258,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,50,0.0430,0,88,0.200,0.0,1.0 +2002,1,31,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.8,-0.6,78,98300,0,0,258,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,50,0.0430,0,88,0.200,0.0,1.0 +2002,1,31,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.8,0.6,85,98200,0,0,259,0,0,0,0,0,0,0,110,2.6,0,0,16.0,77777,9,999999999,50,0.0430,0,88,0.200,0.0,1.0 +2002,1,31,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.8,-0.6,78,98300,0,0,258,0,0,0,0,0,0,0,150,3.1,0,0,16.0,77777,9,999999999,50,0.0430,0,88,0.200,0.0,1.0 +2002,1,31,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.8,-1.1,75,98400,42,787,258,2,147,1,1100,8500,600,400,100,3.1,0,0,16.0,77777,9,999999999,50,0.0430,0,88,0.200,0.0,1.0 +2002,1,31,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,-3.3,55,98500,282,1409,262,160,647,30,16900,52700,6300,7100,100,2.6,0,0,16.0,77777,9,999999999,50,0.0430,0,88,0.200,0.0,1.0 +2002,1,31,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,-2.8,49,98600,521,1409,271,349,789,56,36900,74300,9300,12000,90,3.1,0,0,16.0,77777,9,999999999,50,0.0430,0,88,0.200,0.0,1.0 +2002,1,31,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,-2.8,46,98700,710,1409,275,520,899,65,54500,87700,10100,15200,90,2.6,0,0,16.0,77777,9,999999999,50,0.0430,0,88,0.200,0.0,1.0 +2002,1,31,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,-1.7,45,98600,835,1409,283,632,920,84,65800,90900,11700,18700,90,4.1,0,0,16.0,77777,9,999999999,50,0.0430,0,88,0.200,0.0,1.0 +2002,1,31,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,-2.8,39,98600,888,1409,296,674,949,74,70500,94200,10900,19000,70,1.5,3,3,16.0,77777,9,999999999,50,0.0430,0,88,0.200,0.0,1.0 +2002,1,31,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,-2.8,38,98600,865,1409,299,650,899,96,67400,88900,12600,19900,40,2.6,3,3,16.0,77777,9,999999999,50,0.0430,0,88,0.200,0.0,1.0 +2002,1,31,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,-6.1,26,98500,767,1409,302,569,884,86,60300,87800,12300,19700,120,2.6,3,3,16.0,77777,9,999999999,50,0.0430,0,88,0.200,0.0,1.0 +2002,1,31,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,-6.1,26,98500,601,1409,302,459,920,66,48100,87900,10500,13600,100,2.1,3,3,16.0,77777,9,999999999,50,0.0430,0,88,0.200,0.0,1.0 +2002,1,31,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,-6.7,25,98500,379,1409,287,278,739,78,28300,62400,11400,13900,40,3.1,0,0,16.0,77777,9,999999999,50,0.0430,0,88,0.200,0.0,1.0 +2002,1,31,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,-6.1,27,98500,120,1351,287,44,372,12,5000,24400,2700,3400,0,0.0,0,0,16.0,77777,9,999999999,50,0.0430,0,88,0.200,0.0,1.0 +2002,1,31,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,-6.1,28,98500,0,0,285,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,50,0.0430,0,88,0.200,0.0,1.0 +2002,1,31,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,-3.3,39,98500,0,0,298,0,0,0,0,0,0,0,230,2.6,5,5,16.0,77777,9,999999999,50,0.0430,0,88,0.200,0.0,1.0 +2002,1,31,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,-3.9,40,98500,0,0,276,0,0,0,0,0,0,0,240,1.5,0,0,16.0,77777,9,999999999,50,0.0430,0,88,0.200,0.0,1.0 +2002,1,31,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.1,-1.7,46,98500,0,0,281,0,0,0,0,0,0,0,230,1.7,0,0,16.0,77777,9,999999999,50,0.0430,0,88,0.200,0.0,1.0 +2002,1,31,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.9,0.4,43,98600,0,0,287,0,0,0,0,0,0,0,0,2.0,0,0,16.0,77777,9,999999999,50,0.0430,0,88,0.200,0.0,1.0 +2002,1,31,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.7,2.5,45,98500,0,0,292,0,0,0,0,0,0,0,80,2.2,0,0,16.0,77777,9,999999999,50,0.0430,0,88,0.200,0.0,1.0 +1986,2,1,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.5,4.7,93,97600,0,0,344,0,0,0,0,0,0,0,90,2.4,10,10,8.0,460,9,999999999,200,0.0700,0,88,999.000,999.0,99.0 +1986,2,1,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.3,6.8,87,97500,0,0,350,0,0,0,0,0,0,0,140,2.6,10,10,48.3,1220,9,999999999,190,0.0700,0,88,999.000,999.0,99.0 +1986,2,1,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.1,9.0,84,97500,0,0,357,0,0,0,0,0,0,0,80,2.9,10,10,56.3,2740,9,999999999,180,0.0700,0,88,999.000,999.0,99.0 +1986,2,1,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,11.1,84,97500,0,0,346,0,0,0,0,0,0,0,60,3.1,10,8,56.3,2740,9,999999999,180,0.0700,0,88,999.000,999.0,99.0 +1986,2,1,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,11.1,87,97500,0,0,343,0,0,0,0,0,0,0,40,3.1,10,8,56.3,2740,9,999999999,180,0.0700,0,88,999.000,999.0,99.0 +1986,2,1,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,11.1,87,97600,0,0,360,0,0,0,0,0,0,0,60,1.5,10,10,56.3,2740,9,999999999,180,0.0700,0,88,999.000,999.0,99.0 +1986,2,1,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,11.7,93,97700,0,0,336,0,0,0,0,0,0,0,330,1.5,10,7,64.4,2740,9,999999999,190,0.0700,0,88,999.000,999.0,99.0 +1986,2,1,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,11.1,87,97700,43,810,343,10,1,10,1200,0,1200,370,0,0.0,9,8,72.4,2740,9,999999999,180,0.0610,0,88,999.000,999.0,99.0 +1986,2,1,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,11.7,87,97700,285,1409,341,128,247,78,13500,18600,9700,1510,80,2.6,8,7,72.4,2740,9,999999999,190,0.0610,0,88,999.000,999.0,99.0 +1986,2,1,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,11.7,75,97800,525,1409,339,346,679,94,36000,63300,12400,1800,170,2.1,5,3,72.4,77777,9,999999999,190,0.0610,0,88,999.000,999.0,99.0 +1986,2,1,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,11.1,65,97800,714,1409,343,487,714,126,51100,70300,15300,2670,60,2.1,4,2,72.4,77777,9,999999999,180,0.0610,0,88,999.000,999.0,99.0 +1986,2,1,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,9.4,56,97700,840,1409,344,592,760,140,62700,76400,17000,3310,110,1.5,6,2,72.4,77777,9,999999999,160,0.0610,0,88,999.000,999.0,99.0 +1986,2,1,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,8.9,49,97700,893,1409,354,623,636,221,66400,65500,24800,5510,160,2.6,7,3,72.4,77777,9,999999999,160,0.0610,0,88,999.000,999.0,99.0 +1986,2,1,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,8.9,47,97600,869,1409,357,596,621,215,63600,63800,24100,5220,170,2.1,9,3,72.4,77777,9,999999999,160,0.0610,0,88,999.000,999.0,99.0 +1986,2,1,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,9.4,47,97600,772,1409,360,491,532,202,51900,53900,22300,4520,120,2.6,8,3,72.4,77777,9,999999999,160,0.0610,0,88,999.000,999.0,99.0 +1986,2,1,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,8.9,46,97600,606,1409,363,344,426,163,36000,41400,18200,3300,130,2.1,8,4,64.4,77777,9,999999999,160,0.0610,0,88,999.000,999.0,99.0 +1986,2,1,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,8.3,44,97600,384,1409,359,164,256,95,17600,22300,11500,1840,240,2.1,7,3,64.4,77777,9,999999999,150,0.0610,0,88,999.000,999.0,99.0 +1986,2,1,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,8.9,49,97600,124,1374,351,40,85,31,4200,4000,3800,560,240,2.6,4,2,64.4,77777,9,999999999,160,0.0610,0,88,999.000,999.0,99.0 +1986,2,1,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,10.6,61,97700,0,0,348,0,0,0,0,0,0,0,260,2.1,4,3,56.3,77777,9,999999999,170,0.0700,0,88,999.000,999.0,99.0 +1986,2,1,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,10.0,61,97700,0,0,342,0,0,0,0,0,0,0,0,0.0,6,2,56.3,77777,9,999999999,170,0.0700,0,88,999.000,999.0,99.0 +1986,2,1,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,10.6,67,97800,0,0,333,0,0,0,0,0,0,0,0,0.0,4,1,56.3,77777,9,999999999,170,0.0700,0,88,999.000,999.0,99.0 +1986,2,1,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,10.6,70,97900,0,0,324,0,0,0,0,0,0,0,0,0.0,3,0,56.3,77777,9,999999999,170,0.0700,0,88,999.000,999.0,99.0 +1986,2,1,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,10.6,75,97900,0,0,319,0,0,0,0,0,0,0,0,0.0,2,0,56.3,77777,9,999999999,170,0.0700,0,88,999.000,999.0,99.0 +1986,2,1,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,10.6,75,98000,0,0,319,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,170,0.0700,0,88,999.000,999.0,99.0 +1986,2,2,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,11.1,84,98000,0,0,315,0,0,0,0,0,0,0,70,3.1,0,0,56.3,77777,9,999999999,180,0.0700,0,88,999.000,999.0,99.0 +1986,2,2,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,11.1,87,98000,0,0,312,0,0,0,0,0,0,0,80,3.1,0,0,56.3,77777,9,999999999,180,0.0700,0,88,999.000,999.0,99.0 +1986,2,2,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,11.1,90,97900,0,0,316,0,0,0,0,0,0,0,70,3.1,1,1,56.3,77777,9,999999999,180,0.0700,0,88,999.000,999.0,99.0 +1986,2,2,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,10.6,90,97900,0,0,313,0,0,0,0,0,0,0,80,2.6,3,1,56.3,77777,9,999999999,170,0.0700,0,88,999.000,999.0,99.0 +1986,2,2,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,10.6,90,98000,0,0,307,0,0,0,0,0,0,0,90,3.1,0,0,56.3,77777,9,999999999,170,0.0700,0,88,999.000,999.0,99.0 +1986,2,2,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,9.4,86,98000,0,0,303,0,0,0,0,0,0,0,100,3.6,0,0,56.3,77777,9,999999999,160,0.0700,0,88,999.000,999.0,99.0 +1986,2,2,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,10.0,90,98000,0,0,304,0,0,0,0,0,0,0,90,3.6,0,0,64.4,77777,9,999999999,170,0.0700,0,88,999.000,999.0,99.0 +1986,2,2,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,10.0,90,98100,45,833,304,27,97,16,2300,3600,2100,280,90,2.6,0,0,48.3,77777,9,999999999,170,0.0720,0,88,999.000,999.0,99.0 +1986,2,2,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,10.0,80,98100,289,1408,311,154,547,42,15700,43600,6700,790,90,3.1,0,0,48.3,77777,9,999999999,170,0.0720,0,88,999.000,999.0,99.0 +1986,2,2,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,11.1,78,98200,529,1408,320,342,747,63,36000,70300,9500,1300,170,2.1,0,0,40.2,77777,9,999999999,180,0.0720,0,88,999.000,999.0,99.0 +1986,2,2,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,10.6,67,98200,719,1408,327,506,838,79,53900,82700,11500,1780,160,1.5,0,0,32.2,77777,9,999999999,170,0.0720,0,88,999.000,999.0,99.0 +1986,2,2,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,11.1,63,98100,845,1408,334,619,874,95,65900,87500,13300,2280,210,1.5,1,0,32.2,77777,9,999999999,180,0.0720,0,88,999.000,999.0,99.0 +1986,2,2,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,11.1,59,98000,898,1408,339,665,900,93,69500,89300,12400,2080,0,0.0,0,0,32.2,77777,9,999999999,180,0.0720,0,88,999.000,999.0,99.0 +1986,2,2,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,10.6,51,97900,875,1408,358,638,841,117,66900,83700,14700,2700,260,3.6,2,2,32.2,77777,9,999999999,170,0.0720,0,88,999.000,999.0,99.0 +1986,2,2,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,10.0,48,97900,777,1408,367,585,802,144,61300,79600,17300,3170,270,5.7,4,4,32.2,77777,9,999999999,170,0.0720,0,88,999.000,999.0,99.0 +1986,2,2,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,9.4,46,97800,611,1408,360,394,683,100,41600,65900,12900,2020,250,4.1,2,2,64.4,77777,9,999999999,160,0.0720,0,88,999.000,999.0,99.0 +1986,2,2,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,8.9,46,97800,389,1408,345,228,653,51,23900,57100,8100,1000,270,3.6,0,0,64.4,77777,9,999999999,160,0.0720,0,88,999.000,999.0,99.0 +1986,2,2,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,7.8,45,97700,128,1373,339,56,279,26,5400,15500,3900,460,270,3.1,0,0,64.4,77777,9,999999999,150,0.0720,0,88,999.000,999.0,99.0 +1986,2,2,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,8.3,52,97800,0,0,331,0,0,0,0,0,0,0,270,2.6,0,0,56.3,77777,9,999999999,150,0.0700,0,88,999.000,999.0,99.0 +1986,2,2,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,8.9,60,97800,0,0,325,0,0,0,0,0,0,0,190,1.5,0,0,56.3,77777,9,999999999,160,0.0700,0,88,999.000,999.0,99.0 +1986,2,2,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,8.9,63,97800,0,0,322,0,0,0,0,0,0,0,230,1.0,0,0,56.3,77777,9,999999999,160,0.0700,0,88,999.000,999.0,99.0 +1986,2,2,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,8.3,62,97800,0,0,319,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,150,0.0700,0,88,999.000,999.0,99.0 +1986,2,2,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,8.9,67,97900,0,0,317,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,160,0.0700,0,88,999.000,999.0,99.0 +1986,2,2,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,8.3,69,97800,0,0,312,0,0,0,0,0,0,0,100,2.1,0,0,56.3,77777,9,999999999,150,0.0700,0,88,999.000,999.0,99.0 +1986,2,3,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,8.3,72,97800,0,0,309,0,0,0,0,0,0,0,90,2.1,0,0,56.3,77777,9,999999999,150,0.0710,0,88,999.000,999.0,99.0 +1986,2,3,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,8.9,80,97800,0,0,305,0,0,0,0,0,0,0,90,2.1,0,0,56.3,77777,9,999999999,160,0.0710,0,88,999.000,999.0,99.0 +1986,2,3,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,8.9,80,97800,0,0,305,0,0,0,0,0,0,0,90,3.1,0,0,56.3,77777,9,999999999,160,0.0710,0,88,999.000,999.0,99.0 +1986,2,3,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,8.3,80,97800,0,0,302,0,0,0,0,0,0,0,110,3.1,0,0,56.3,77777,9,999999999,150,0.0710,0,88,999.000,999.0,99.0 +1986,2,3,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,8.3,86,97800,0,0,298,0,0,0,0,0,0,0,60,2.6,0,0,56.3,77777,9,999999999,150,0.0710,0,88,999.000,999.0,99.0 +1986,2,3,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,7.8,86,97700,0,0,295,0,0,0,0,0,0,0,70,3.1,0,0,56.3,77777,9,999999999,150,0.0710,0,88,999.000,999.0,99.0 +1986,2,3,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,7.8,86,97800,0,0,295,0,0,0,0,0,0,0,100,3.1,0,0,72.4,77777,9,999999999,150,0.0710,0,88,999.000,999.0,99.0 +1986,2,3,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,7.8,86,97800,47,833,295,26,94,16,2300,3600,2100,280,80,3.6,0,0,72.4,77777,9,999999999,150,0.0780,0,88,999.000,999.0,99.0 +1986,2,3,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,8.3,80,97800,293,1408,302,156,542,44,16300,42600,7500,820,70,4.1,0,0,64.4,77777,9,999999999,150,0.0780,0,88,999.000,999.0,99.0 +1986,2,3,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,8.3,69,97800,533,1408,312,348,747,66,36400,70300,9700,1340,100,3.6,0,0,48.3,77777,9,999999999,150,0.0780,0,88,999.000,999.0,99.0 +1986,2,3,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,6.1,56,97700,723,1408,314,518,848,83,54900,83600,11800,1840,160,2.1,0,0,24.1,77777,9,999999999,130,0.0780,0,88,999.000,999.0,99.0 +1986,2,3,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,7.8,54,97700,850,1408,326,625,885,93,65300,87400,12400,1950,130,1.5,0,0,24.1,77777,9,999999999,150,0.0780,0,88,999.000,999.0,99.0 +1986,2,3,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,8.3,51,97600,903,1408,334,673,902,97,70300,89500,12700,2120,80,1.5,0,0,32.2,77777,9,999999999,150,0.0780,0,88,999.000,999.0,99.0 +1986,2,3,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,4.4,35,97400,880,1408,337,658,904,95,68700,89500,12600,2040,180,2.6,0,0,32.2,77777,9,999999999,120,0.0780,0,88,999.000,999.0,99.0 +1986,2,3,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,2.8,30,97300,782,1408,338,570,874,87,60900,87000,12400,2010,260,4.6,0,0,48.3,77777,9,999999999,110,0.0780,0,88,999.000,999.0,99.0 +1986,2,3,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,0.6,26,97200,616,1408,335,426,812,73,45000,78400,10600,1540,330,1.5,0,0,48.3,77777,9,999999999,90,0.0780,0,88,999.000,999.0,99.0 +1986,2,3,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,1.1,28,97100,394,1408,334,235,659,53,24400,57700,8200,1030,270,3.1,0,0,48.3,77777,9,999999999,100,0.0780,0,88,999.000,999.0,99.0 +1986,2,3,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,2.8,33,97000,133,1396,330,56,278,27,5600,15500,4000,480,280,2.1,0,0,48.3,77777,9,999999999,100,0.0780,0,88,999.000,999.0,99.0 +1986,2,3,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,2.8,37,97000,0,0,329,0,0,0,0,0,0,0,290,1.5,1,1,48.3,77777,9,999999999,110,0.0710,0,88,999.000,999.0,99.0 +1986,2,3,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,3.3,41,97000,0,0,329,0,0,0,0,0,0,0,0,0.0,2,2,48.3,77777,9,999999999,110,0.0710,0,88,999.000,999.0,99.0 +1986,2,3,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,4.4,48,97000,0,0,329,0,0,0,0,0,0,0,0,0.0,4,3,48.3,77777,9,999999999,120,0.0710,0,88,999.000,999.0,99.0 +1986,2,3,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,4.4,48,96900,0,0,334,0,0,0,0,0,0,0,140,2.1,6,5,48.3,3660,9,999999999,120,0.0710,0,88,999.000,999.0,99.0 +1986,2,3,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,-0.6,35,96900,0,0,328,0,0,0,0,0,0,0,130,2.6,8,6,48.3,3660,9,999999999,90,0.0710,0,88,999.000,999.0,99.0 +1986,2,3,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,0.0,39,96900,0,0,328,0,0,0,0,0,0,0,60,2.6,9,7,48.3,3660,9,999999999,90,0.0710,0,88,999.000,999.0,99.0 +1986,2,4,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,0.0,36,96800,0,0,345,0,0,0,0,0,0,0,290,2.1,10,9,48.3,3660,9,999999999,90,0.0710,0,88,999.000,999.0,99.0 +1986,2,4,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,6.1,60,96800,0,0,357,0,0,0,0,0,0,0,270,2.1,10,10,32.2,3660,9,999999999,130,0.0710,0,88,999.000,999.0,99.0 +1986,2,4,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,4.4,55,96800,0,0,330,0,0,0,0,0,0,0,240,3.1,8,7,40.2,3660,9,999999999,120,0.0710,0,88,999.000,999.0,99.0 +1986,2,4,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,5.0,60,96800,0,0,341,0,0,0,0,0,0,0,180,3.1,10,9,40.2,1830,9,999999999,120,0.0710,0,88,999.000,999.0,99.0 +1986,2,4,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,5.0,64,96800,0,0,328,0,0,0,0,0,0,0,0,0.0,8,8,40.2,1830,9,999999999,120,0.0710,0,88,999.000,999.0,99.0 +1986,2,4,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,4.4,62,96800,0,0,328,0,0,0,0,0,0,0,220,3.1,10,8,40.2,1830,9,999999999,120,0.0710,0,88,999.000,999.0,99.0 +1986,2,4,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,6.1,77,96900,0,0,322,0,0,0,0,0,0,0,220,5.7,8,8,32.2,1830,9,999999999,130,0.0710,0,88,999.000,999.0,99.0 +1986,2,4,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,7.2,83,97000,49,856,323,18,10,17,1900,500,1900,420,240,3.6,8,8,40.2,1830,9,999999999,140,0.1360,0,88,999.000,999.0,99.0 +1986,2,4,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,6.1,74,97000,297,1408,319,121,125,95,13100,9900,11000,2050,240,3.1,7,7,40.2,1830,9,999999999,130,0.1360,0,88,999.000,999.0,99.0 +1986,2,4,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,6.1,67,97100,538,1408,312,317,506,124,33500,48000,15100,2400,240,1.5,6,2,32.2,77777,9,999999999,130,0.1360,0,88,999.000,999.0,99.0 +1986,2,4,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,5.6,58,97100,728,1408,325,449,478,203,47000,48000,22100,4430,170,2.1,8,4,32.2,77777,9,999999999,130,0.1360,0,88,999.000,999.0,99.0 +1986,2,4,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,5.0,53,97200,855,1408,341,368,208,242,40600,21900,27200,6590,320,1.5,9,8,32.2,3660,9,999999999,120,0.1360,0,88,999.000,999.0,99.0 +1986,2,4,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,5.6,56,97200,908,1408,359,245,4,243,28500,300,28200,10560,190,1.5,10,10,32.2,1220,9,999999999,130,0.1360,0,88,999.000,999.0,99.0 +1986,2,4,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,6.1,58,97100,885,1408,350,333,83,281,36700,8400,31300,9290,260,4.6,10,9,32.2,1220,9,999999999,130,0.1360,0,88,999.000,999.0,99.0 +1986,2,4,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,6.7,56,97100,788,1408,334,541,638,185,57800,64900,21300,4150,280,3.6,5,4,24.1,77777,9,999999999,140,0.1360,0,88,999.000,999.0,99.0 +1986,2,4,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,5.0,48,97100,622,1408,332,354,411,174,36900,40200,19100,3570,300,2.1,4,3,32.2,77777,9,999999999,120,0.1360,0,88,999.000,999.0,99.0 +1986,2,4,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,5.0,48,97200,399,1408,334,216,392,106,22400,33900,12800,2000,240,4.1,4,4,32.2,77777,9,999999999,120,0.1360,0,88,999.000,999.0,99.0 +1986,2,4,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,5.6,56,97200,137,1408,325,43,65,37,4700,3500,4400,770,240,3.1,7,3,32.2,77777,9,999999999,130,0.1360,0,88,999.000,999.0,99.0 +1986,2,4,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,6.1,60,97200,0,12,323,0,0,0,0,0,0,0,180,2.1,4,3,32.2,77777,9,999999999,130,0.0710,0,88,999.000,999.0,99.0 +1986,2,4,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,5.6,60,97300,0,0,316,0,0,0,0,0,0,0,0,0.0,2,2,32.2,77777,9,999999999,130,0.0710,0,88,999.000,999.0,99.0 +1986,2,4,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,5.6,60,97400,0,0,312,0,0,0,0,0,0,0,140,2.1,1,1,32.2,77777,9,999999999,130,0.0710,0,88,999.000,999.0,99.0 +1986,2,4,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,6.7,69,97400,0,0,303,0,0,0,0,0,0,0,120,3.1,0,0,32.2,77777,9,999999999,140,0.0710,0,88,999.000,999.0,99.0 +1986,2,4,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,7.2,77,97500,0,0,299,0,0,0,0,0,0,0,90,4.1,0,0,32.2,77777,9,999999999,140,0.0710,0,88,999.000,999.0,99.0 +1986,2,4,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,6.7,80,97500,0,0,294,0,0,0,0,0,0,0,80,3.6,0,0,32.2,77777,9,999999999,140,0.0710,0,88,999.000,999.0,99.0 +1986,2,5,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,6.7,86,97600,0,0,289,0,0,0,0,0,0,0,60,3.1,0,0,40.2,77777,9,999999999,140,0.0710,0,88,999.000,999.0,99.0 +1986,2,5,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,6.1,83,97600,0,0,288,0,0,0,0,0,0,0,80,3.6,0,0,40.2,77777,9,999999999,130,0.0710,0,88,999.000,999.0,99.0 +1986,2,5,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,5.6,83,97600,0,0,286,0,0,0,0,0,0,0,90,3.1,0,0,40.2,77777,9,999999999,130,0.0710,0,88,999.000,999.0,99.0 +1986,2,5,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,5.0,83,97600,0,0,283,0,0,0,0,0,0,0,80,4.1,0,0,40.2,77777,9,999999999,120,0.0710,0,88,999.000,999.0,99.0 +1986,2,5,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,4.4,83,97600,0,0,280,0,0,0,0,0,0,0,90,3.6,0,0,40.2,77777,9,999999999,120,0.0710,0,88,999.000,999.0,99.0 +1986,2,5,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,4.4,83,97700,0,0,280,0,0,0,0,0,0,0,100,2.6,0,0,40.2,77777,9,999999999,120,0.0710,0,88,999.000,999.0,99.0 +1986,2,5,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,4.4,86,97700,0,0,278,0,0,0,0,0,0,0,110,2.6,0,0,48.3,77777,9,999999999,120,0.0710,0,88,999.000,999.0,99.0 +1986,2,5,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,4.4,86,97700,52,879,278,37,216,13,2700,11500,2000,270,70,3.6,0,0,32.2,77777,9,999999999,120,0.0280,0,88,999.000,999.0,99.0 +1986,2,5,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,4.4,71,97800,301,1407,289,178,701,29,19000,58200,6500,730,90,4.1,0,0,32.2,77777,9,999999999,120,0.0280,0,88,999.000,999.0,99.0 +1986,2,5,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,7.8,83,97800,542,1407,297,370,853,43,39500,80500,8300,1120,130,3.1,0,0,16.1,77777,9,999999999,150,0.0280,0,88,999.000,999.0,99.0 +1986,2,5,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,5.0,62,97900,733,1407,301,539,933,55,57200,91400,9400,1440,110,4.1,0,0,24.1,77777,9,999999999,120,0.0280,0,88,999.000,999.0,99.0 +1986,2,5,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,5.6,58,97800,860,1407,309,647,961,62,68500,95300,10000,1690,90,2.6,0,0,24.1,77777,9,999999999,130,0.0280,0,88,999.000,999.0,99.0 +1986,2,5,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,5.0,48,97700,914,1407,318,702,983,65,74100,97900,10300,1820,160,3.1,0,0,32.2,77777,9,999999999,120,0.0280,0,88,999.000,999.0,99.0 +1986,2,5,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,5.0,48,97600,891,1407,328,656,849,121,68800,84600,15100,2820,300,1.5,2,2,32.2,77777,9,999999999,120,0.0280,0,88,999.000,999.0,99.0 +1986,2,5,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,2.2,37,97600,793,1407,330,551,718,148,57800,71400,17400,3310,270,3.1,4,2,32.2,77777,9,999999999,100,0.0280,0,88,999.000,999.0,99.0 +1986,2,5,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,2.8,38,97600,627,1407,331,406,718,88,43300,70100,12000,1840,270,3.1,4,2,32.2,77777,9,999999999,110,0.0280,0,88,999.000,999.0,99.0 +1986,2,5,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,-0.6,30,97500,404,1407,323,242,689,47,25600,61200,8000,970,260,5.7,4,1,32.2,77777,9,999999999,90,0.0280,0,88,999.000,999.0,99.0 +1986,2,5,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,0.0,33,97500,142,1407,315,67,472,19,7000,31400,3900,410,260,3.1,0,0,32.2,77777,9,999999999,90,0.0280,0,88,999.000,999.0,99.0 +1986,2,5,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,0.6,38,97500,0,35,308,0,0,0,0,0,0,0,220,2.1,0,0,32.2,77777,9,999999999,90,0.0710,0,88,999.000,999.0,99.0 +1986,2,5,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,0.6,40,97500,0,0,304,0,0,0,0,0,0,0,160,2.6,0,0,32.2,77777,9,999999999,90,0.0710,0,88,999.000,999.0,99.0 +1986,2,5,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,-0.6,39,97400,0,0,300,0,0,0,0,0,0,0,110,2.1,0,0,32.2,77777,9,999999999,90,0.0710,0,88,999.000,999.0,99.0 +1986,2,5,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,-0.6,39,97400,0,0,306,0,0,0,0,0,0,0,110,2.1,3,1,32.2,77777,9,999999999,90,0.0710,0,88,999.000,999.0,99.0 +1986,2,5,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,0.0,43,97400,0,0,306,0,0,0,0,0,0,0,90,3.6,5,2,32.2,77777,9,999999999,90,0.0710,0,88,999.000,999.0,99.0 +1986,2,5,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,0.6,49,97300,0,0,302,0,0,0,0,0,0,0,90,3.6,5,2,32.2,77777,9,999999999,90,0.0710,0,88,999.000,999.0,99.0 +1986,2,6,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,-1.1,43,97300,0,0,300,0,0,0,0,0,0,0,90,3.1,3,2,32.2,77777,9,999999999,80,0.0710,0,88,999.000,999.0,99.0 +1986,2,6,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,1.1,54,97300,0,0,308,0,0,0,0,0,0,0,80,3.6,7,6,32.2,3660,9,999999999,90,0.0710,0,88,999.000,999.0,99.0 +1986,2,6,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,2.2,61,97200,0,0,315,0,0,0,0,0,0,0,70,3.6,8,8,32.2,3660,9,999999999,100,0.0710,0,88,999.000,999.0,99.0 +1986,2,6,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,2.2,61,97200,0,0,322,0,0,0,0,0,0,0,80,4.1,10,9,32.2,3660,9,999999999,100,0.0710,0,88,999.000,999.0,99.0 +1986,2,6,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,1.7,59,97100,0,0,330,0,0,0,0,0,0,0,90,4.1,10,10,32.2,3660,9,999999999,100,0.0710,0,88,999.000,999.0,99.0 +1986,2,6,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,1.7,59,97100,0,0,330,0,0,0,0,0,0,0,90,4.1,10,10,32.2,3660,9,999999999,100,0.0710,0,88,999.000,999.0,99.0 +1986,2,6,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,1.7,59,97100,0,0,314,0,0,0,0,0,0,0,90,3.6,9,8,32.2,3050,9,999999999,100,0.0710,0,88,999.000,999.0,99.0 +1986,2,6,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,1.7,59,97100,54,903,321,18,7,17,1900,400,1900,420,70,4.1,9,9,64.4,3660,9,999999999,100,0.0600,0,88,999.000,999.0,99.0 +1986,2,6,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,1.7,55,97100,305,1407,320,132,74,116,14400,6300,13000,2630,120,4.1,8,8,64.4,4270,9,999999999,100,0.0600,0,88,999.000,999.0,99.0 +1986,2,6,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,1.7,47,97100,547,1407,321,236,148,179,25600,14400,20000,4170,200,2.6,7,6,64.4,4270,9,999999999,100,0.0600,0,88,999.000,999.0,99.0 +1986,2,6,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,3.3,44,97100,738,1407,332,420,390,216,45200,40700,23700,4990,240,7.2,5,5,72.4,77777,9,999999999,110,0.0600,0,88,999.000,999.0,99.0 +1986,2,6,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,1.1,38,97100,865,1407,330,652,775,177,68100,77300,20400,4170,260,7.2,5,5,64.4,77777,9,999999999,100,0.0600,0,88,999.000,999.0,99.0 +1986,2,6,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,0.6,34,97000,919,1407,334,589,508,258,62100,52300,27800,6720,260,7.7,5,5,64.4,77777,9,999999999,90,0.0600,0,88,999.000,999.0,99.0 +1986,2,6,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,0.6,36,96900,896,1407,349,449,177,336,48600,18500,36800,9440,260,7.7,9,9,56.3,3660,9,999999999,90,0.0600,0,88,999.000,999.0,99.0 +1986,2,6,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,0.0,38,96900,798,1407,342,216,86,168,24300,9000,19100,4410,260,8.2,9,9,56.3,3660,9,999999999,90,0.0600,0,88,999.000,999.0,99.0 +1986,2,6,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,0.0,40,97000,632,1407,337,245,70,214,26900,6900,23800,6000,300,7.2,9,9,56.3,3660,9,999999999,90,0.0600,0,88,999.000,999.0,99.0 +1986,2,6,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,-1.1,40,97000,409,1407,331,125,89,100,13800,8100,11500,2230,280,5.7,9,9,56.3,1520,9,999999999,80,0.0600,0,88,999.000,999.0,99.0 +1986,2,6,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,-1.7,40,97000,147,1407,328,38,25,35,4100,1600,3900,840,270,4.1,9,9,56.3,1520,9,999999999,80,0.0600,0,88,999.000,999.0,99.0 +1986,2,6,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,-2.8,37,97000,0,59,326,0,0,0,0,0,0,0,270,4.6,9,9,32.2,1520,9,999999999,70,0.0710,0,88,999.000,999.0,99.0 +1986,2,6,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,-4.4,34,97100,0,0,322,0,0,0,0,0,0,0,260,5.2,9,9,32.2,1520,9,999999999,70,0.0710,0,88,999.000,999.0,99.0 +1986,2,6,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,-4.4,35,97100,0,0,329,0,0,0,0,0,0,0,270,6.2,10,10,32.2,1520,9,999999999,70,0.0710,0,88,999.000,999.0,99.0 +1986,2,6,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,-3.3,39,97200,0,0,318,0,0,0,0,0,0,0,260,6.2,9,9,32.2,1520,9,999999999,70,0.0710,0,88,999.000,999.0,99.0 +1986,2,6,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,-7.2,30,97200,0,0,291,0,0,0,0,0,0,0,270,4.1,4,4,32.2,77777,9,999999999,60,0.0710,0,88,999.000,999.0,99.0 +1986,2,6,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,-8.3,31,97300,0,0,279,0,0,0,0,0,0,0,270,3.1,2,2,32.2,77777,9,999999999,50,0.0710,0,88,999.000,999.0,99.0 +1986,2,7,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,-3.9,51,97300,0,0,266,0,0,0,0,0,0,0,240,1.5,0,0,48.3,77777,9,999999999,70,0.0720,0,88,999.000,999.0,99.0 +1986,2,7,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,-7.2,41,97400,0,0,260,0,0,0,0,0,0,0,240,2.6,0,0,48.3,77777,9,999999999,60,0.0720,0,88,999.000,999.0,99.0 +1986,2,7,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,-6.7,43,97400,0,0,261,0,0,0,0,0,0,0,230,1.5,0,0,48.3,77777,9,999999999,60,0.0720,0,88,999.000,999.0,99.0 +1986,2,7,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,-6.7,45,97400,0,0,258,0,0,0,0,0,0,0,80,1.5,0,0,48.3,77777,9,999999999,60,0.0720,0,88,999.000,999.0,99.0 +1986,2,7,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,-3.9,55,97500,0,0,261,0,0,0,0,0,0,0,90,3.6,0,0,48.3,77777,9,999999999,70,0.0720,0,88,999.000,999.0,99.0 +1986,2,7,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,0.0,76,97500,0,0,263,0,0,0,0,0,0,0,60,4.1,0,0,48.3,77777,9,999999999,90,0.0720,0,88,999.000,999.0,99.0 +1986,2,7,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,0.0,79,97600,0,0,261,0,0,0,0,0,0,0,100,3.6,0,0,64.4,77777,9,999999999,90,0.0720,0,88,999.000,999.0,99.0 +1986,2,7,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,0.0,79,97700,56,926,261,36,196,15,2900,9200,2300,280,80,4.1,0,0,80.5,77777,9,999999999,90,0.0410,0,88,999.000,999.0,99.0 +1986,2,7,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,-3.9,47,97700,310,1406,270,178,659,34,19000,55100,6800,770,100,3.6,0,0,80.5,77777,9,999999999,70,0.0410,0,88,999.000,999.0,99.0 +1986,2,7,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,-2.2,50,97800,552,1406,276,382,849,50,40500,80300,8900,1200,90,4.6,0,0,80.5,77777,9,999999999,80,0.0410,0,88,999.000,999.0,99.0 +1986,2,7,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,-1.1,48,97800,743,1406,283,552,927,63,58200,90900,10000,1550,120,4.1,0,0,80.5,77777,9,999999999,80,0.0410,0,88,999.000,999.0,99.0 +1986,2,7,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,-2.2,38,97700,870,1406,291,666,964,71,70100,95600,10700,1830,140,4.6,0,0,112.7,77777,9,999999999,80,0.0410,0,88,999.000,999.0,99.0 +1986,2,7,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,-3.9,34,97700,924,1406,290,715,978,75,75300,97300,11100,1990,140,3.1,0,0,96.6,77777,9,999999999,70,0.0410,0,88,999.000,999.0,99.0 +1986,2,7,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,-4.4,28,97600,902,1406,304,652,893,82,68500,88700,11400,2020,140,3.6,3,1,112.7,77777,9,999999999,70,0.0410,0,88,999.000,999.0,99.0 +1986,2,7,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,-5.6,25,97500,804,1406,309,604,820,137,63800,82000,16800,3130,90,3.1,7,2,96.6,77777,9,999999999,60,0.0410,0,88,999.000,999.0,99.0 +1986,2,7,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,-6.1,26,97400,637,1406,309,367,393,190,39200,40000,21100,4180,120,2.1,8,4,80.5,5180,9,999999999,60,0.0410,0,88,999.000,999.0,99.0 +1986,2,7,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,-5.6,26,97400,414,1406,303,248,672,52,26000,59800,8300,1040,0,0.0,3,1,80.5,77777,9,999999999,60,0.0410,0,88,999.000,999.0,99.0 +1986,2,7,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,-5.6,28,97400,151,1406,321,45,35,41,4900,2300,4600,960,150,1.5,9,8,80.5,5180,9,999999999,60,0.0410,0,88,999.000,999.0,99.0 +1986,2,7,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,-5.0,30,97400,0,82,319,0,0,0,0,0,0,0,110,2.6,9,8,56.3,5180,9,999999999,60,0.0720,0,88,999.000,999.0,99.0 +1986,2,7,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,-5.6,29,97400,0,0,325,0,0,0,0,0,0,0,70,2.1,9,9,56.3,5180,9,999999999,60,0.0720,0,88,999.000,999.0,99.0 +1986,2,7,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,-4.4,32,97400,0,0,324,0,0,0,0,0,0,0,20,2.1,10,9,56.3,4570,9,999999999,70,0.0720,0,88,999.000,999.0,99.0 +1986,2,7,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,-3.9,35,97400,0,0,322,0,0,0,0,0,0,0,50,2.1,10,9,56.3,4570,9,999999999,70,0.0720,0,88,999.000,999.0,99.0 +1986,2,7,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,-3.3,37,97300,0,0,323,0,0,0,0,0,0,0,0,0.0,10,9,56.3,4570,9,999999999,70,0.0720,0,88,999.000,999.0,99.0 +1986,2,7,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,-2.8,40,97300,0,0,330,0,0,0,0,0,0,0,100,2.1,10,10,56.3,4570,9,999999999,80,0.0720,0,88,999.000,999.0,99.0 +1986,2,8,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,-2.8,43,97300,0,0,325,0,0,0,0,0,0,0,130,1.5,10,10,56.3,4570,9,999999999,70,0.0720,0,88,999.000,999.0,99.0 +1986,2,8,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,-2.8,43,97300,0,0,309,0,0,0,0,0,0,0,100,2.6,9,8,56.3,3660,9,999999999,70,0.0720,0,88,999.000,999.0,99.0 +1986,2,8,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,-3.3,42,97200,0,0,322,0,0,0,0,0,0,0,90,2.6,10,10,56.3,3050,9,999999999,70,0.0720,0,88,999.000,999.0,99.0 +1986,2,8,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,-2.2,46,97200,0,0,323,0,0,0,0,0,0,0,120,2.1,10,10,56.3,3050,9,999999999,80,0.0720,0,88,999.000,999.0,99.0 +1986,2,8,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,-1.1,52,97100,0,0,322,0,0,0,0,0,0,0,80,2.6,10,10,56.3,3050,9,999999999,80,0.0720,0,88,999.000,999.0,99.0 +1986,2,8,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,-2.2,48,97100,0,0,321,0,0,0,0,0,0,0,90,3.1,10,10,56.3,3050,9,999999999,80,0.0720,0,88,999.000,999.0,99.0 +1986,2,8,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,-1.1,52,97100,0,0,313,0,0,0,0,0,0,0,100,2.6,10,9,56.3,3050,9,999999999,80,0.0720,0,88,999.000,999.0,99.0 +1986,2,8,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,-1.1,52,97100,59,949,313,34,11,33,3700,600,3600,720,80,2.6,10,9,56.3,3660,9,999999999,80,0.0310,0,88,999.000,999.0,99.0 +1986,2,8,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,0.0,54,97200,314,1406,326,121,11,118,13000,600,12900,3430,90,3.1,10,10,64.4,3660,9,999999999,90,0.0310,0,88,999.000,999.0,99.0 +1986,2,8,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,0.0,52,97200,557,1406,328,242,46,224,26500,4500,24700,5720,110,3.6,10,10,64.4,3660,9,999999999,90,0.0310,0,88,999.000,999.0,99.0 +1986,2,8,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,-0.6,48,97200,748,1406,330,221,11,215,25200,900,24700,8670,90,2.6,10,10,72.4,3350,9,999999999,90,0.0310,0,88,999.000,999.0,99.0 +1986,2,8,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,-1.1,46,97300,876,1406,330,166,6,162,19700,500,19400,7600,120,4.1,10,10,32.2,1520,9,999999999,80,0.0310,0,88,999.000,999.0,99.0 +1986,2,8,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,0.0,58,97300,930,1406,321,183,4,181,21900,300,21700,8540,140,5.2,10,10,11.3,1370,9,999999999,90,0.0310,0,88,999.000,999.0,99.0 +1986,2,8,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,0.0,61,97200,907,1406,318,177,4,174,21000,300,20800,8180,90,4.1,10,10,9.7,1220,9,999999999,90,0.0310,0,88,999.000,999.0,99.0 +1986,2,8,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,0.0,63,97100,809,1406,316,174,3,172,20400,200,20200,7690,80,4.6,10,10,11.3,1220,9,999999999,90,0.0310,0,88,999.000,999.0,99.0 +1986,2,8,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,0.0,63,97100,643,1406,316,215,2,214,24000,200,23900,7810,80,4.6,10,10,16.1,1220,9,999999999,90,0.0310,0,88,999.000,999.0,99.0 +1986,2,8,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,0.0,61,97000,419,1406,318,84,0,84,9600,0,9600,3270,70,4.1,10,10,12.9,1220,9,999999999,90,0.0310,0,88,999.000,999.0,99.0 +1986,2,8,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,-0.6,58,97000,156,1406,317,31,1,31,3500,0,3500,1080,30,2.1,10,10,16.1,1220,9,999999999,90,0.0310,0,88,999.000,999.0,99.0 +1986,2,8,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,-0.6,58,97000,1,105,317,1,0,1,0,0,0,0,30,2.1,10,10,8.0,1220,9,999999999,90,0.0310,0,88,999.000,999.0,99.0 +1986,2,8,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,-0.6,56,97000,0,0,320,0,0,0,0,0,0,0,10,1.5,10,10,6.4,460,9,999999999,90,0.0720,0,88,999.000,999.0,99.0 +1986,2,8,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,5.6,93,97000,0,0,322,0,0,0,0,0,0,0,80,3.1,10,10,6.4,460,9,999999999,130,0.0720,0,88,999.000,999.0,99.0 +1986,2,8,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,5.6,93,97000,0,0,322,0,0,0,0,0,0,0,30,1.5,10,10,24.1,610,9,999999999,130,0.0720,0,88,999.000,999.0,99.0 +1986,2,8,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,6.7,96,96900,0,0,326,0,0,0,0,0,0,0,280,2.1,10,10,6.4,460,9,999999999,130,0.0720,0,88,999.000,999.0,99.0 +1986,2,8,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,6.7,93,96900,0,0,328,0,0,0,0,0,0,0,0,0.0,10,10,8.0,460,9,999999999,140,0.0720,0,88,999.000,999.0,99.0 +1986,2,9,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,5.6,89,96900,0,0,324,0,0,0,0,0,0,0,90,3.6,10,10,8.0,460,9,999999999,130,0.0720,0,88,999.000,999.0,99.0 +1986,2,9,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,5.6,93,96800,0,0,322,0,0,0,0,0,0,0,70,3.1,10,10,11.3,460,9,999999999,130,0.0720,0,88,999.000,999.0,99.0 +1986,2,9,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,4.4,86,96800,0,0,321,0,0,0,0,0,0,0,90,3.1,10,10,11.3,460,9,999999999,120,0.0720,0,88,999.000,999.0,99.0 +1986,2,9,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,4.4,86,96900,0,0,321,0,0,0,0,0,0,0,110,2.1,10,10,11.3,460,9,999999999,120,0.0720,0,88,999.000,999.0,99.0 +1986,2,9,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,5.0,89,96900,0,0,321,0,0,0,0,0,0,0,270,3.1,10,10,8.0,460,9,999999999,120,0.0720,0,88,999.000,999.0,99.0 +1986,2,9,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,5.6,96,96900,0,0,319,0,0,0,0,0,0,0,260,4.6,10,10,6.4,460,9,999999999,130,0.0720,0,88,999.000,999.0,99.0 +1986,2,9,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,5.0,89,97000,0,0,321,0,0,0,0,0,0,0,260,3.6,10,10,11.3,610,9,999999999,120,0.0720,0,88,999.000,999.0,99.0 +1986,2,9,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,5.6,93,97100,62,949,322,15,0,15,1700,0,1700,540,250,4.1,10,10,8.0,1220,9,999999999,130,0.1020,0,88,999.000,999.0,99.0 +1986,2,9,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,5.6,93,97100,319,1405,322,56,1,56,6500,0,6500,2150,240,3.6,10,10,12.9,1220,9,999999999,130,0.1020,0,88,999.000,999.0,99.0 +1986,2,9,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,4.4,86,97200,562,1405,321,118,1,118,13700,100,13600,4830,270,3.6,10,10,16.1,1220,9,999999999,120,0.1020,0,88,999.000,999.0,99.0 +1986,2,9,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,5.0,83,97200,754,1405,326,292,0,292,32500,0,32500,10430,260,4.1,10,10,16.1,700,9,999999999,120,0.1020,0,88,999.000,999.0,99.0 +1986,2,9,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,5.0,83,97300,881,1405,326,194,1,193,22800,100,22700,8770,240,4.1,10,10,24.1,760,9,999999999,120,0.1020,0,88,999.000,999.0,99.0 +1986,2,9,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,4.4,77,97200,935,1405,328,342,1,342,38800,100,38800,13430,260,5.2,10,10,24.1,1370,9,999999999,120,0.1020,0,88,999.000,999.0,99.0 +1986,2,9,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,3.9,69,97200,913,1405,324,386,169,277,42500,17800,30900,7890,260,5.2,10,9,32.2,1370,9,999999999,110,0.1020,0,88,999.000,999.0,99.0 +1986,2,9,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,3.9,66,97200,815,1405,319,403,234,268,44000,24400,29800,7120,220,4.1,9,8,48.3,1370,9,999999999,110,0.1020,0,88,999.000,999.0,99.0 +1986,2,9,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,2.8,55,97200,648,1405,326,259,119,204,28200,12000,22600,4960,250,4.6,8,8,40.2,1370,9,999999999,110,0.1020,0,88,999.000,999.0,99.0 +1986,2,9,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,2.2,55,97200,424,1405,317,182,144,139,19700,13100,15700,3110,240,2.6,7,7,40.2,1830,9,999999999,100,0.1020,0,88,999.000,999.0,99.0 +1986,2,9,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,0.6,49,97300,160,1405,316,36,43,31,4000,2600,3700,650,240,3.6,7,7,48.3,1830,9,999999999,90,0.1020,0,88,999.000,999.0,99.0 +1986,2,9,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,1.1,52,97300,1,129,314,0,0,0,0,0,0,0,220,1.0,7,7,48.3,1830,9,999999999,100,0.1020,0,88,999.000,999.0,99.0 +1986,2,9,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,3.3,74,97400,0,0,301,0,0,0,0,0,0,0,80,3.1,6,6,48.3,1830,9,999999999,110,0.0720,0,88,999.000,999.0,99.0 +1986,2,9,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,3.3,71,97500,0,0,306,0,0,0,0,0,0,0,100,3.1,7,7,48.3,1830,9,999999999,110,0.0720,0,88,999.000,999.0,99.0 +1986,2,9,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,3.9,80,97500,0,0,279,0,0,0,0,0,0,0,90,3.1,0,0,48.3,77777,9,999999999,110,0.0720,0,88,999.000,999.0,99.0 +1986,2,9,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,3.9,83,97600,0,0,277,0,0,0,0,0,0,0,110,4.1,0,0,48.3,77777,9,999999999,110,0.0720,0,88,999.000,999.0,99.0 +1986,2,9,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,3.9,86,97600,0,0,275,0,0,0,0,0,0,0,80,3.1,0,0,40.2,77777,9,999999999,110,0.0720,0,88,999.000,999.0,99.0 +1986,2,10,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,3.3,86,97700,0,0,273,0,0,0,0,0,0,0,70,3.1,0,0,40.2,77777,9,999999999,110,0.0720,0,88,999.000,999.0,99.0 +1986,2,10,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,3.3,89,97700,0,0,282,0,0,0,0,0,0,0,90,2.1,3,3,40.2,77777,9,999999999,110,0.0720,0,88,999.000,999.0,99.0 +1986,2,10,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,2.8,89,97700,0,0,276,0,0,0,0,0,0,0,90,2.1,2,2,40.2,77777,9,999999999,110,0.0720,0,88,999.000,999.0,99.0 +1986,2,10,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,2.2,89,97700,0,0,265,0,0,0,0,0,0,0,70,2.6,0,0,40.2,77777,9,999999999,100,0.0720,0,88,999.000,999.0,99.0 +1986,2,10,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,2.2,89,97800,0,0,265,0,0,0,0,0,0,0,80,2.1,0,0,40.2,77777,9,999999999,100,0.0720,0,88,999.000,999.0,99.0 +1986,2,10,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,2.2,93,97800,0,0,263,0,0,0,0,0,0,0,120,2.1,0,0,40.2,77777,9,999999999,100,0.0720,0,88,999.000,999.0,99.0 +1986,2,10,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,1.7,93,97800,0,0,260,0,0,0,0,0,0,0,90,2.6,0,0,40.2,77777,9,999999999,100,0.0720,0,88,999.000,999.0,99.0 +1986,2,10,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,0.6,82,97900,65,972,261,39,193,18,3200,9300,2600,330,80,3.1,0,0,40.2,77777,9,999999999,90,0.0510,0,88,999.000,999.0,99.0 +1986,2,10,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,0.6,73,97900,324,1405,268,187,643,40,19500,53600,7100,810,110,4.1,1,0,24.1,77777,9,999999999,90,0.0510,0,88,999.000,999.0,99.0 +1986,2,10,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,-1.1,58,98100,567,1405,273,392,801,71,41100,76100,10300,1450,110,3.1,3,0,24.1,77777,9,999999999,80,0.0510,0,88,999.000,999.0,99.0 +1986,2,10,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,-1.7,50,98100,759,1405,278,565,898,82,59300,88000,11500,1700,70,3.1,2,0,40.2,77777,9,999999999,80,0.0510,0,88,999.000,999.0,99.0 +1986,2,10,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,-2.2,41,98000,887,1405,287,677,950,79,71000,94300,11300,1960,90,3.1,0,0,32.2,77777,9,999999999,80,0.0510,0,88,999.000,999.0,99.0 +1986,2,10,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,-2.2,38,97900,941,1405,291,726,964,82,76100,96000,11600,2120,260,1.5,0,0,40.2,77777,9,999999999,80,0.0510,0,88,999.000,999.0,99.0 +1986,2,10,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,-2.2,37,97900,918,1405,294,708,962,81,74300,95700,11500,2050,160,1.5,0,0,56.3,77777,9,999999999,80,0.0510,0,88,999.000,999.0,99.0 +1986,2,10,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,-3.9,31,97700,820,1405,294,626,908,98,66400,90500,13400,2270,240,4.1,3,0,56.3,77777,9,999999999,70,0.0510,0,88,999.000,999.0,99.0 +1986,2,10,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,-2.8,34,97800,653,1405,295,469,870,67,49500,84000,10300,1450,290,2.6,1,0,56.3,77777,9,999999999,70,0.0510,0,88,999.000,999.0,99.0 +1986,2,10,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,-2.2,36,97900,429,1405,302,243,425,114,25200,37700,13700,2170,230,2.6,6,1,48.3,77777,9,999999999,80,0.0510,0,88,999.000,999.0,99.0 +1986,2,10,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,-3.9,35,97900,165,1405,297,72,267,41,7500,15100,5700,740,240,2.6,7,2,48.3,77777,9,999999999,70,0.0510,0,88,999.000,999.0,99.0 +1986,2,10,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,-3.9,38,97900,2,152,288,4,7,2,0,0,0,0,250,2.6,6,1,32.2,77777,9,999999999,70,0.0510,0,88,999.000,999.0,99.0 +1986,2,10,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,-3.9,39,97900,0,0,290,0,0,0,0,0,0,0,290,1.0,7,2,32.2,77777,9,999999999,70,0.0720,0,88,999.000,999.0,99.0 +1986,2,10,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,-1.7,48,97900,0,0,286,0,0,0,0,0,0,0,0,0.0,7,1,32.2,77777,9,999999999,80,0.0720,0,88,999.000,999.0,99.0 +1986,2,10,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,-1.1,54,98000,0,0,277,0,0,0,0,0,0,0,0,0.0,4,0,32.2,77777,9,999999999,80,0.0720,0,88,999.000,999.0,99.0 +1986,2,10,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,-0.6,58,98000,0,0,275,0,0,0,0,0,0,0,0,0.0,3,0,32.2,77777,9,999999999,90,0.0720,0,88,999.000,999.0,99.0 +1986,2,10,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,0.0,63,98000,0,0,274,0,0,0,0,0,0,0,0,0.0,1,0,32.2,77777,9,999999999,90,0.0720,0,88,999.000,999.0,99.0 +1986,2,11,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,0.6,71,98000,0,0,270,0,0,0,0,0,0,0,100,1.5,0,0,32.2,77777,9,999999999,90,0.0730,0,88,999.000,999.0,99.0 +1986,2,11,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,1.1,79,98000,0,0,266,0,0,0,0,0,0,0,110,1.5,0,0,32.2,77777,9,999999999,100,0.0730,0,88,999.000,999.0,99.0 +1986,2,11,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,0.0,76,98000,0,0,263,0,0,0,0,0,0,0,120,2.6,0,0,32.2,77777,9,999999999,90,0.0730,0,88,999.000,999.0,99.0 +1986,2,11,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,0.0,79,97900,0,0,261,0,0,0,0,0,0,0,120,2.6,0,0,32.2,77777,9,999999999,90,0.0730,0,88,999.000,999.0,99.0 +1986,2,11,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,-0.6,76,98000,0,0,260,0,0,0,0,0,0,0,110,2.1,0,0,32.2,77777,9,999999999,90,0.0730,0,88,999.000,999.0,99.0 +1986,2,11,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,-1.7,70,98000,0,0,259,0,0,0,0,0,0,0,60,1.5,0,0,32.2,77777,9,999999999,80,0.0730,0,88,999.000,999.0,99.0 +1986,2,11,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,-1.1,76,98000,0,0,258,0,0,0,0,0,0,0,60,2.1,0,0,32.2,77777,9,999999999,80,0.0730,0,88,999.000,999.0,99.0 +1986,2,11,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,-1.1,73,98000,68,995,260,42,251,15,3400,14000,2400,300,70,1.5,0,0,48.3,77777,9,999999999,80,0.0330,0,88,999.000,999.0,99.0 +1986,2,11,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,-1.7,58,98100,328,1404,270,200,723,32,21400,61500,6900,790,60,2.6,0,0,48.3,77777,9,999999999,80,0.0330,0,88,999.000,999.0,99.0 +1986,2,11,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,-1.1,54,98100,572,1404,277,402,875,47,42800,83200,8700,1190,80,2.6,0,0,48.3,77777,9,999999999,80,0.0330,0,88,999.000,999.0,99.0 +1986,2,11,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,-1.1,45,98100,764,1404,288,570,942,59,60300,92600,9700,1530,100,3.6,0,0,64.4,77777,9,999999999,80,0.0330,0,88,999.000,999.0,99.0 +1986,2,11,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,-2.8,35,98100,892,1404,293,691,946,93,72300,93800,12500,2070,90,2.6,3,0,64.4,77777,9,999999999,70,0.0330,0,88,999.000,999.0,99.0 +1986,2,11,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,-2.2,33,98000,946,1404,301,744,959,100,77600,95400,13100,2280,120,1.5,3,0,72.4,77777,9,999999999,80,0.0330,0,88,999.000,999.0,99.0 +1986,2,11,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,-2.8,31,97900,924,1404,302,737,909,141,76300,90200,16800,3250,120,2.1,7,0,72.4,77777,9,999999999,80,0.0330,0,88,999.000,999.0,99.0 +1986,2,11,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,-4.4,25,97800,825,1404,305,648,874,136,68700,87800,16900,3190,90,1.5,8,0,72.4,77777,9,999999999,70,0.0330,0,88,999.000,999.0,99.0 +1986,2,11,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,-5.6,23,97800,658,1404,304,497,821,114,52200,80100,14600,2350,120,2.1,8,0,64.4,77777,9,999999999,60,0.0330,0,88,999.000,999.0,99.0 +1986,2,11,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,-4.4,25,97800,434,1404,311,264,581,86,27300,51300,11400,1570,250,2.1,8,1,64.4,77777,9,999999999,70,0.0330,0,88,999.000,999.0,99.0 +1986,2,11,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,-3.3,30,97900,170,1404,317,64,146,46,6700,8000,5700,860,240,1.5,8,5,48.3,4270,9,999999999,70,0.0330,0,88,999.000,999.0,99.0 +1986,2,11,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,-3.3,32,97900,2,176,317,2,3,1,0,0,0,0,160,2.1,8,6,40.2,4270,9,999999999,70,0.0330,0,88,999.000,999.0,99.0 +1986,2,11,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,-3.3,33,97900,0,0,315,0,0,0,0,0,0,0,0,0.0,8,6,40.2,4270,9,999999999,70,0.0730,0,88,999.000,999.0,99.0 +1986,2,11,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,-1.1,40,98000,0,0,315,0,0,0,0,0,0,0,0,0.0,10,6,40.2,4270,9,999999999,80,0.0730,0,88,999.000,999.0,99.0 +1986,2,11,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,1.7,53,98000,0,0,303,0,0,0,0,0,0,0,0,0.0,6,2,40.2,77777,9,999999999,100,0.0730,0,88,999.000,999.0,99.0 +1986,2,11,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,0.0,47,97900,0,0,315,0,0,0,0,0,0,0,0,0.0,9,7,40.2,7620,9,999999999,90,0.0730,0,88,999.000,999.0,99.0 +1986,2,11,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,0.6,52,98000,0,0,307,0,0,0,0,0,0,0,120,2.1,8,6,40.2,7620,9,999999999,90,0.0730,0,88,999.000,999.0,99.0 +1986,2,12,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,2.2,61,97900,0,0,306,0,0,0,0,0,0,0,130,2.1,8,6,40.2,7620,9,999999999,100,0.0730,0,88,999.000,999.0,99.0 +1986,2,12,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,0.6,52,98000,0,0,323,0,0,0,0,0,0,0,90,1.5,10,9,40.2,7620,9,999999999,90,0.0730,0,88,999.000,999.0,99.0 +1986,2,12,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,1.1,59,97900,0,0,300,0,0,0,0,0,0,0,0,0.0,10,5,40.2,77777,9,999999999,100,0.0730,0,88,999.000,999.0,99.0 +1986,2,12,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,1.7,66,97900,0,0,292,0,0,0,0,0,0,0,0,0.0,8,3,40.2,77777,9,999999999,100,0.0730,0,88,999.000,999.0,99.0 +1986,2,12,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,1.7,68,97900,0,0,283,0,0,0,0,0,0,0,0,0.0,6,1,40.2,77777,9,999999999,100,0.0730,0,88,999.000,999.0,99.0 +1986,2,12,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,1.7,71,98000,0,0,281,0,0,0,0,0,0,0,100,2.1,4,1,40.2,77777,9,999999999,100,0.0730,0,88,999.000,999.0,99.0 +1986,2,12,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,1.7,74,98000,0,0,273,0,0,0,0,0,0,0,0,0.0,4,0,40.2,77777,9,999999999,100,0.0730,0,88,999.000,999.0,99.0 +1986,2,12,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,1.1,68,98000,71,1018,275,42,227,18,3600,11200,2800,330,160,2.6,2,0,40.2,77777,9,999999999,100,0.0380,0,88,999.000,999.0,99.0 +1986,2,12,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,0.6,58,98000,333,1404,281,199,677,40,20900,57100,7300,820,60,2.6,2,0,48.3,77777,9,999999999,90,0.0380,0,88,999.000,999.0,99.0 +1986,2,12,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,0.0,48,98100,577,1404,295,386,754,78,40200,71600,10600,1540,60,2.6,5,1,48.3,77777,9,999999999,90,0.0380,0,88,999.000,999.0,99.0 +1986,2,12,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,0.6,40,98100,770,1404,309,548,786,119,58300,78600,15000,2690,60,4.6,6,1,64.4,77777,9,999999999,90,0.0380,0,88,999.000,999.0,99.0 +1986,2,12,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,-1.1,32,98000,898,1404,309,702,905,126,73400,90100,15600,2930,130,1.5,6,0,72.4,77777,9,999999999,80,0.0380,0,88,999.000,999.0,99.0 +1986,2,12,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,-1.1,28,98000,952,1404,318,760,895,155,78200,88700,17900,3590,100,2.1,8,0,72.4,77777,9,999999999,80,0.0380,0,88,999.000,999.0,99.0 +1986,2,12,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,-2.8,24,97900,929,1404,325,697,832,149,74500,84500,18400,3920,230,1.5,8,1,72.4,77777,9,999999999,80,0.0380,0,88,999.000,999.0,99.0 +1986,2,12,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,-2.2,25,97800,831,1404,319,641,865,132,66000,85100,15500,2720,20,1.5,8,0,72.4,77777,9,999999999,80,0.0380,0,88,999.000,999.0,99.0 +1986,2,12,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,-2.8,23,97800,664,1404,335,435,608,149,46500,60400,17800,3050,20,1.5,8,3,64.4,77777,9,999999999,70,0.0380,0,88,999.000,999.0,99.0 +1986,2,12,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,-2.8,22,97800,439,1404,338,244,489,92,26000,43900,12200,1710,240,1.5,8,3,64.4,77777,9,999999999,70,0.0380,0,88,999.000,999.0,99.0 +1986,2,12,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,-2.2,26,97800,174,1404,331,70,216,43,7200,12600,5600,780,0,0.0,7,3,64.4,77777,9,999999999,80,0.0380,0,88,999.000,999.0,99.0 +1986,2,12,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,-2.2,28,97800,3,199,323,6,11,3,0,0,0,0,0,0.0,7,2,56.3,77777,9,999999999,80,0.0380,0,88,999.000,999.0,99.0 +1986,2,12,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,1.1,38,97800,0,0,322,0,0,0,0,0,0,0,0,0.0,6,2,56.3,77777,9,999999999,100,0.0730,0,88,999.000,999.0,99.0 +1986,2,12,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,2.8,47,97900,0,0,319,0,0,0,0,0,0,0,0,0.0,4,3,56.3,77777,9,999999999,110,0.0730,0,88,999.000,999.0,99.0 +1986,2,12,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,3.3,53,97900,0,0,312,0,0,0,0,0,0,0,200,1.5,3,2,56.3,77777,9,999999999,110,0.0730,0,88,999.000,999.0,99.0 +1986,2,12,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,2.8,53,98000,0,0,312,0,0,0,0,0,0,0,0,0.0,8,3,56.3,77777,9,999999999,110,0.0730,0,88,999.000,999.0,99.0 +1986,2,12,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,3.3,57,98000,0,0,310,0,0,0,0,0,0,0,110,2.6,8,3,56.3,77777,9,999999999,110,0.0730,0,88,999.000,999.0,99.0 +1986,2,13,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,3.3,59,98000,0,0,319,0,0,0,0,0,0,0,90,3.1,9,7,56.3,7620,9,999999999,110,0.0730,0,88,999.000,999.0,99.0 +1986,2,13,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,2.2,55,98000,0,0,309,0,0,0,0,0,0,0,80,3.1,10,4,56.3,77777,9,999999999,100,0.0730,0,88,999.000,999.0,99.0 +1986,2,13,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,3.3,61,98000,0,0,316,0,0,0,0,0,0,0,70,4.1,10,7,56.3,7620,9,999999999,110,0.0730,0,88,999.000,999.0,99.0 +1986,2,13,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,2.8,59,98000,0,0,312,0,0,0,0,0,0,0,90,4.1,10,6,56.3,7620,9,999999999,110,0.0730,0,88,999.000,999.0,99.0 +1986,2,13,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,2.8,59,97900,0,0,316,0,0,0,0,0,0,0,90,3.6,10,7,56.3,7620,9,999999999,110,0.0730,0,88,999.000,999.0,99.0 +1986,2,13,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,2.2,57,98000,0,0,315,0,0,0,0,0,0,0,100,3.1,10,7,56.3,7620,9,999999999,100,0.0730,0,88,999.000,999.0,99.0 +1986,2,13,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,2.2,57,98000,0,0,309,0,0,0,0,0,0,0,90,4.1,8,5,56.3,7620,9,999999999,100,0.0730,0,88,999.000,999.0,99.0 +1986,2,13,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,2.2,55,98000,75,1041,322,35,15,34,3800,900,3800,760,110,3.1,9,8,56.3,3660,9,999999999,100,0.0300,0,88,999.000,999.0,99.0 +1986,2,13,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,2.2,53,98000,338,1403,342,112,128,82,12400,10900,9800,1790,90,4.6,10,10,56.3,3660,9,999999999,100,0.0300,0,88,999.000,999.0,99.0 +1986,2,13,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,2.8,51,98100,582,1403,348,179,1,178,20000,100,20000,6560,100,4.1,10,10,40.2,4270,9,999999999,110,0.0300,0,88,999.000,999.0,99.0 +1986,2,13,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,2.2,44,98100,775,1403,355,221,7,217,25300,600,25000,8920,90,2.1,10,10,40.2,4270,9,999999999,100,0.0300,0,88,999.000,999.0,99.0 +1986,2,13,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,2.2,42,98100,903,1403,358,269,10,263,31000,900,30500,11140,70,2.1,10,10,40.2,4270,9,999999999,100,0.0300,0,88,999.000,999.0,99.0 +1986,2,13,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,2.2,36,98000,958,1403,362,385,106,313,42400,10800,35000,10840,120,2.6,9,9,40.2,4270,9,999999999,100,0.0300,0,88,999.000,999.0,99.0 +1986,2,13,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,1.1,32,97900,935,1403,363,471,181,351,51100,19000,38400,10200,140,2.1,9,9,40.2,4270,9,999999999,100,0.0300,0,88,999.000,999.0,99.0 +1986,2,13,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,0.6,27,97900,836,1403,353,492,426,240,51700,43500,25600,5750,10,1.5,8,6,40.2,4270,9,999999999,90,0.0300,0,88,999.000,999.0,99.0 +1986,2,13,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,0.6,27,97800,669,1403,347,420,567,152,44900,56400,17900,3130,280,1.5,8,3,40.2,77777,9,999999999,90,0.0300,0,88,999.000,999.0,99.0 +1986,2,13,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,-0.6,26,97800,444,1403,343,223,312,125,23700,28700,14600,2530,250,2.1,10,4,40.2,77777,9,999999999,90,0.0300,0,88,999.000,999.0,99.0 +1986,2,13,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,1.1,32,97800,179,1403,349,62,39,57,6800,2800,6400,1290,240,1.5,10,7,48.3,6100,9,999999999,100,0.0300,0,88,999.000,999.0,99.0 +1986,2,13,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,1.1,34,97800,3,222,335,6,10,4,0,0,0,0,200,1.5,10,4,48.3,77777,9,999999999,100,0.0300,0,88,999.000,999.0,99.0 +1986,2,13,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,2.2,41,97800,0,0,331,0,0,0,0,0,0,0,0,0.0,9,5,48.3,6100,9,999999999,100,0.0730,0,88,999.000,999.0,99.0 +1986,2,13,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,3.3,48,97900,0,0,334,0,0,0,0,0,0,0,280,1.5,9,7,32.2,6100,9,999999999,110,0.0730,0,88,999.000,999.0,99.0 +1986,2,13,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,4.4,53,97900,0,0,318,0,0,0,0,0,0,0,0,0.0,6,2,32.2,77777,9,999999999,120,0.0730,0,88,999.000,999.0,99.0 +1986,2,13,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,4.4,57,98000,0,0,316,0,0,0,0,0,0,0,270,1.5,7,3,32.2,77777,9,999999999,120,0.0730,0,88,999.000,999.0,99.0 +1986,2,13,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,4.4,53,98000,0,0,323,0,0,0,0,0,0,0,130,2.1,5,4,32.2,77777,9,999999999,120,0.0730,0,88,999.000,999.0,99.0 +1986,2,14,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,3.3,53,98000,0,0,312,0,0,0,0,0,0,0,90,4.1,3,2,40.2,77777,9,999999999,110,0.0740,0,88,999.000,999.0,99.0 +1986,2,14,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,3.3,57,98000,0,0,307,0,0,0,0,0,0,0,100,3.1,3,2,56.3,77777,9,999999999,110,0.0740,0,88,999.000,999.0,99.0 +1986,2,14,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,3.3,57,98000,0,0,310,0,0,0,0,0,0,0,90,3.1,7,3,56.3,77777,9,999999999,110,0.0740,0,88,999.000,999.0,99.0 +1986,2,14,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,3.9,61,98000,0,0,301,0,0,0,0,0,0,0,90,2.6,4,1,56.3,77777,9,999999999,110,0.0740,0,88,999.000,999.0,99.0 +1986,2,14,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,3.9,64,98000,0,0,299,0,0,0,0,0,0,0,80,3.6,4,1,56.3,77777,9,999999999,120,0.0740,0,88,999.000,999.0,99.0 +1986,2,14,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,3.3,61,98000,0,0,298,0,0,0,0,0,0,0,100,3.1,3,1,56.3,77777,9,999999999,110,0.0740,0,88,999.000,999.0,99.0 +1986,2,14,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,3.3,64,98000,0,0,303,0,0,0,0,0,0,0,100,1.5,4,3,72.4,77777,9,999999999,110,0.0740,0,88,999.000,999.0,99.0 +1986,2,14,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,2.8,55,98000,78,1064,306,39,139,24,3600,6100,3200,430,90,3.6,6,2,64.4,77777,9,999999999,110,0.0340,0,88,999.000,999.0,99.0 +1986,2,14,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,3.9,55,98000,344,1403,327,167,82,147,18200,7300,16400,3260,70,2.6,9,7,64.4,4570,9,999999999,110,0.0340,0,88,999.000,999.0,99.0 +1986,2,14,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,3.9,48,98100,588,1403,333,263,187,185,28600,18600,20800,4380,110,4.1,10,6,72.4,5490,9,999999999,120,0.0340,0,88,999.000,999.0,99.0 +1986,2,14,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,3.3,40,98100,781,1403,327,537,737,129,56900,73600,15800,2910,50,3.1,10,1,64.4,77777,9,999999999,110,0.0340,0,88,999.000,999.0,99.0 +1986,2,14,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,4.4,37,98100,909,1403,343,662,856,110,70400,85900,14600,2740,90,4.1,7,2,64.4,77777,9,999999999,120,0.0340,0,88,999.000,999.0,99.0 +1986,2,14,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,2.8,29,98000,963,1403,347,675,802,126,71200,80400,15800,3250,120,3.1,8,1,72.4,77777,9,999999999,110,0.0340,0,88,999.000,999.0,99.0 +1986,2,14,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,3.3,27,97900,940,1403,373,453,269,274,49300,28900,29900,7460,120,3.1,10,6,64.4,6100,9,999999999,110,0.0340,0,88,999.000,999.0,99.0 +1986,2,14,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,2.8,26,97900,842,1403,372,376,269,215,41100,28600,23800,5220,170,1.5,10,6,64.4,6100,9,999999999,110,0.0340,0,88,999.000,999.0,99.0 +1986,2,14,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,2.8,26,97800,674,1403,391,274,86,232,30000,8600,25900,6640,190,1.5,10,9,64.4,3660,9,999999999,110,0.0340,0,88,999.000,999.0,99.0 +1986,2,14,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,2.2,26,97800,449,1403,387,192,157,142,20800,14600,16100,3200,190,2.1,10,9,64.4,3660,9,999999999,100,0.0340,0,88,999.000,999.0,99.0 +1986,2,14,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,2.8,29,97700,184,1403,382,55,20,53,6100,1400,5900,1240,190,1.5,10,9,64.4,3660,9,999999999,110,0.0340,0,88,999.000,999.0,99.0 +1986,2,14,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,3.9,34,97600,4,245,348,8,8,7,0,0,0,0,140,2.1,10,2,56.3,77777,9,999999999,120,0.0340,0,88,999.000,999.0,99.0 +1986,2,14,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,4.4,36,97600,0,0,349,0,0,0,0,0,0,0,100,2.1,8,3,56.3,77777,9,999999999,120,0.0740,0,88,999.000,999.0,99.0 +1986,2,14,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,5.6,42,97500,0,0,371,0,0,0,0,0,0,0,70,2.6,10,9,56.3,3660,9,999999999,130,0.0740,0,88,999.000,999.0,99.0 +1986,2,14,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,6.7,48,97500,0,0,367,0,0,0,0,0,0,0,70,3.1,10,9,56.3,3660,9,999999999,140,0.0740,0,88,999.000,999.0,99.0 +1986,2,14,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,7.2,52,97500,0,0,365,0,0,0,0,0,0,0,40,1.5,10,9,56.3,3660,9,999999999,140,0.0740,0,88,999.000,999.0,99.0 +1986,2,14,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,7.8,56,97500,0,0,350,0,0,0,0,0,0,0,0,0.0,10,7,56.3,3660,9,999999999,150,0.0740,0,88,999.000,999.0,99.0 +1986,2,15,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,7.2,54,97500,0,0,373,0,0,0,0,0,0,0,0,0.0,10,10,56.3,3660,9,999999999,140,0.0740,0,88,999.000,999.0,99.0 +1986,2,15,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,8.3,62,97600,0,0,368,0,0,0,0,0,0,0,190,2.1,10,10,56.3,3660,9,999999999,150,0.0740,0,88,999.000,999.0,99.0 +1986,2,15,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,7.8,60,97500,0,0,350,0,0,0,0,0,0,0,140,2.6,10,8,56.3,3660,9,999999999,150,0.0740,0,88,999.000,999.0,99.0 +1986,2,15,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,8.9,67,97500,0,0,366,0,0,0,0,0,0,0,90,4.6,10,10,56.3,3660,9,999999999,160,0.0740,0,88,999.000,999.0,99.0 +1986,2,15,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,8.9,70,97400,0,0,363,0,0,0,0,0,0,0,60,3.6,10,10,56.3,3660,9,999999999,160,0.0740,0,88,999.000,999.0,99.0 +1986,2,15,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,8.9,70,97400,0,0,363,0,0,0,0,0,0,0,100,4.1,10,10,56.3,3350,9,999999999,160,0.0740,0,88,999.000,999.0,99.0 +1986,2,15,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,6.7,58,97400,0,0,363,0,0,0,0,0,0,0,90,2.6,10,10,64.4,3350,9,999999999,140,0.0740,0,88,999.000,999.0,99.0 +1986,2,15,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,5.0,48,97400,82,1086,367,21,12,20,2300,700,2200,500,80,3.1,10,10,64.4,3350,9,999999999,120,0.1040,0,88,999.000,999.0,99.0 +1986,2,15,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,6.7,54,97500,349,1402,369,82,5,81,9300,200,9200,2940,90,3.1,10,10,64.4,3350,9,999999999,140,0.1040,0,88,999.000,999.0,99.0 +1986,2,15,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,4.4,43,97500,593,1402,372,162,6,160,18400,500,18200,6190,90,3.1,10,10,64.4,3350,9,999999999,120,0.1040,0,88,999.000,999.0,99.0 +1986,2,15,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,5.6,45,97500,786,1402,376,223,8,219,25600,700,25200,9060,120,3.6,10,10,64.4,3350,9,999999999,130,0.1040,0,88,999.000,999.0,99.0 +1986,2,15,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,3.9,37,97500,914,1402,380,247,1,247,28700,100,28700,10750,90,2.6,10,10,64.4,3350,9,999999999,110,0.1040,0,88,999.000,999.0,99.0 +1986,2,15,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,7.2,47,97500,969,1402,384,341,4,338,38900,400,38600,13690,160,2.6,10,10,32.2,3350,9,999999999,140,0.1040,0,88,999.000,999.0,99.0 +1986,2,15,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,5.6,40,97300,946,1402,385,290,7,285,33400,600,33000,12100,190,2.1,10,10,32.2,2130,9,999999999,130,0.1040,0,88,999.000,999.0,99.0 +1986,2,15,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,10.0,61,97300,847,1402,382,163,2,162,19400,200,19300,7500,280,3.1,10,10,32.2,2130,9,999999999,170,0.1040,0,88,999.000,999.0,99.0 +1986,2,15,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,8.3,60,97500,679,1402,371,129,1,128,15100,100,15000,5620,320,3.1,10,10,12.9,2130,9,999999999,150,0.1040,0,88,999.000,999.0,99.0 +1986,2,15,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,7.2,58,97400,454,1402,367,81,0,81,9400,0,9400,3290,10,2.1,10,10,24.1,2130,9,999999999,140,0.1040,0,88,999.000,999.0,99.0 +1986,2,15,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,10.0,75,97500,188,1402,364,28,0,28,3200,0,3200,1050,150,1.5,10,10,24.1,2130,9,999999999,170,0.1040,0,88,999.000,999.0,99.0 +1986,2,15,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,8.9,72,97500,4,269,351,1,0,1,0,0,0,0,10,2.6,9,9,32.2,2130,9,999999999,160,0.1040,0,88,999.000,999.0,99.0 +1986,2,15,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,10.6,87,97600,0,0,357,0,0,0,0,0,0,0,90,2.1,10,10,24.1,2440,9,999999999,180,0.0740,0,88,999.000,999.0,99.0 +1986,2,15,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,10.6,83,97500,0,0,350,0,0,0,0,0,0,0,110,2.1,10,9,24.1,2440,9,999999999,170,0.0740,0,88,999.000,999.0,99.0 +1986,2,15,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,10.6,90,97600,0,0,344,0,0,0,0,0,0,0,140,2.1,9,9,24.1,2440,9,999999999,170,0.0740,0,88,999.000,999.0,99.0 +1986,2,15,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,11.1,93,97600,0,0,355,0,0,0,0,0,0,0,10,1.5,10,10,9.7,2440,9,999999999,180,0.0740,0,88,999.000,999.0,99.0 +1986,2,15,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,11.1,93,97600,0,0,355,0,0,0,0,0,0,0,210,2.1,10,10,8.0,910,9,999999999,180,0.0740,0,88,999.000,999.0,99.0 +1986,2,16,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,11.7,96,97600,0,0,355,0,0,0,0,0,0,0,330,1.5,10,10,16.1,910,9,999999999,190,0.0740,0,88,999.000,999.0,99.0 +1986,2,16,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,11.1,93,97700,0,0,355,0,0,0,0,0,0,0,0,0.0,10,10,8.0,910,9,999999999,180,0.0740,0,88,999.000,999.0,99.0 +1986,2,16,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,11.7,96,97600,0,0,355,0,0,0,0,0,0,0,0,0.0,10,10,8.0,910,9,999999999,190,0.0740,0,88,999.000,999.0,99.0 +1986,2,16,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,11.7,96,97600,0,0,355,0,0,0,0,0,0,0,0,0.0,10,10,9.7,910,9,999999999,190,0.0740,0,88,999.000,999.0,99.0 +1986,2,16,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,11.1,93,97600,0,0,355,0,0,0,0,0,0,0,100,2.1,10,10,16.1,910,9,999999999,180,0.0740,0,88,999.000,999.0,99.0 +1986,2,16,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,11.1,93,97700,0,0,355,0,0,0,0,0,0,0,320,1.5,10,10,16.1,910,9,999999999,180,0.0740,0,88,999.000,999.0,99.0 +1986,2,16,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,11.1,96,97800,0,0,342,0,0,0,0,0,0,0,0,0.0,9,9,32.2,910,9,999999999,180,0.0740,0,88,999.000,999.0,99.0 +1986,2,16,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,11.1,93,97900,86,1109,338,27,2,27,3000,0,3000,890,0,0.0,9,8,11.3,910,9,999999999,180,0.0800,0,88,999.000,999.0,99.0 +1986,2,16,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,11.7,96,97900,354,1401,333,160,102,135,17600,9000,15300,3150,190,1.5,8,7,4.8,910,9,999999999,190,0.0800,0,88,999.000,999.0,99.0 +1986,2,16,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,12.2,87,97900,599,1401,349,267,136,210,28900,13500,23100,5000,0,0.0,9,8,9.7,2740,9,999999999,190,0.0800,0,88,999.000,999.0,99.0 +1986,2,16,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,12.2,75,98000,792,1401,379,290,48,263,31900,4900,29100,8140,20,2.1,10,10,8.0,6710,9,999999999,190,0.0800,0,88,999.000,999.0,99.0 +1986,2,16,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,11.7,70,97900,920,1401,381,280,7,276,32300,600,31900,11650,0,0.0,10,10,8.0,6100,9,999999999,190,0.0800,0,88,999.000,999.0,99.0 +1986,2,16,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,10.6,63,97900,975,1401,383,350,15,339,39900,1500,38900,13770,220,2.6,10,10,16.1,910,9,999999999,180,0.0800,0,88,999.000,999.0,99.0 +1986,2,16,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,9.4,56,97800,952,1401,365,489,220,341,53400,23200,37600,10060,240,4.1,9,8,24.1,6100,9,999999999,160,0.0800,0,88,999.000,999.0,99.0 +1986,2,16,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,8.9,54,97800,853,1401,365,483,204,359,51900,21200,38900,9800,270,4.6,9,8,32.2,3660,9,999999999,160,0.0800,0,88,999.000,999.0,99.0 +1986,2,16,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,8.3,51,97800,685,1401,351,493,662,171,52100,66000,19800,3590,280,3.1,7,4,48.3,3660,9,999999999,150,0.0800,0,88,999.000,999.0,99.0 +1986,2,16,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,9.4,55,97700,459,1401,346,249,493,89,25800,44300,11200,1650,240,2.6,5,2,56.3,77777,9,999999999,160,0.0800,0,88,999.000,999.0,99.0 +1986,2,16,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,9.4,56,97800,193,1401,339,85,299,45,9000,18500,6400,810,280,3.1,3,1,56.3,77777,9,999999999,160,0.0800,0,88,999.000,999.0,99.0 +1986,2,16,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,9.4,63,97900,5,292,332,4,9,2,0,0,0,0,320,1.5,2,1,56.3,77777,9,999999999,160,0.0800,0,88,999.000,999.0,99.0 +1986,2,16,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,9.4,65,97900,0,0,329,0,0,0,0,0,0,0,0,0.0,1,1,56.3,77777,9,999999999,160,0.0740,0,88,999.000,999.0,99.0 +1986,2,16,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,10.6,75,97900,0,0,319,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,170,0.0740,0,88,999.000,999.0,99.0 +1986,2,16,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,9.4,70,97900,0,0,318,0,0,0,0,0,0,0,90,2.6,0,0,56.3,77777,9,999999999,160,0.0740,0,88,999.000,999.0,99.0 +1986,2,16,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,10.0,78,98000,0,0,320,0,0,0,0,0,0,0,100,1.5,1,1,48.3,77777,9,999999999,170,0.0740,0,88,999.000,999.0,99.0 +1986,2,16,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,9.4,70,98000,0,0,318,0,0,0,0,0,0,0,80,4.1,0,0,56.3,77777,9,999999999,160,0.0740,0,88,999.000,999.0,99.0 +1986,2,17,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,9.4,78,98000,0,0,310,0,0,0,0,0,0,0,70,3.1,0,0,56.3,77777,9,999999999,160,0.0750,0,88,999.000,999.0,99.0 +1986,2,17,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,9.4,80,98000,0,0,308,0,0,0,0,0,0,0,90,3.6,0,0,56.3,77777,9,999999999,160,0.0750,0,88,999.000,999.0,99.0 +1986,2,17,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,9.4,86,98000,0,0,303,0,0,0,0,0,0,0,60,4.1,0,0,56.3,77777,9,999999999,160,0.0750,0,88,999.000,999.0,99.0 +1986,2,17,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,8.9,86,97900,0,0,300,0,0,0,0,0,0,0,80,4.1,0,0,56.3,77777,9,999999999,160,0.0750,0,88,999.000,999.0,99.0 +1986,2,17,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,8.3,86,97900,0,0,298,0,0,0,0,0,0,0,80,3.6,0,0,56.3,77777,9,999999999,150,0.0750,0,88,999.000,999.0,99.0 +1986,2,17,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,8.3,86,97900,0,0,298,0,0,0,0,0,0,0,90,2.1,0,0,56.3,77777,9,999999999,150,0.0750,0,88,999.000,999.0,99.0 +1986,2,17,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,8.3,90,98000,0,0,295,0,0,0,0,0,0,0,100,2.1,0,0,72.4,77777,9,999999999,150,0.0750,0,88,999.000,999.0,99.0 +1986,2,17,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,7.8,86,98100,90,1132,300,40,113,28,4000,4700,3600,500,120,2.1,1,1,72.4,77777,9,999999999,150,0.0920,0,88,999.000,999.0,99.0 +1986,2,17,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,8.3,75,98100,360,1401,307,199,563,57,21000,47500,8700,1070,80,3.6,1,0,72.4,77777,9,999999999,150,0.0920,0,88,999.000,999.0,99.0 +1986,2,17,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,8.9,67,98100,604,1401,323,383,624,116,39900,59700,14100,2280,80,3.6,7,1,72.4,77777,9,999999999,160,0.0920,0,88,999.000,999.0,99.0 +1986,2,17,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,9.4,63,98200,798,1401,336,553,644,188,59200,65700,21600,4260,60,2.6,7,2,48.3,77777,9,999999999,160,0.0920,0,88,999.000,999.0,99.0 +1986,2,17,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,10.6,59,98100,926,1401,337,692,861,125,72700,86000,15600,3050,120,2.1,2,0,56.3,77777,9,999999999,180,0.0920,0,88,999.000,999.0,99.0 +1986,2,17,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,10.0,51,98000,980,1401,344,744,863,142,77700,86200,17100,3610,90,2.6,3,0,56.3,77777,9,999999999,170,0.0920,0,88,999.000,999.0,99.0 +1986,2,17,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,7.8,41,98000,957,1401,353,707,807,158,75400,82000,19200,4310,180,3.1,7,1,56.3,77777,9,999999999,150,0.0920,0,88,999.000,999.0,99.0 +1986,2,17,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,8.3,43,97900,858,1401,359,557,580,204,59700,59600,23100,4900,210,1.5,7,2,56.3,77777,9,999999999,150,0.0920,0,88,999.000,999.0,99.0 +1986,2,17,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,9.4,43,97900,690,1401,369,391,484,154,41900,48400,17900,3200,120,1.5,5,3,56.3,77777,9,999999999,160,0.0920,0,88,999.000,999.0,99.0 +1986,2,17,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,9.4,44,97900,464,1401,357,257,509,89,26600,45900,11300,1650,270,1.5,4,1,56.3,77777,9,999999999,160,0.0920,0,88,999.000,999.0,99.0 +1986,2,17,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,10.0,49,97800,197,1401,358,72,228,41,7700,14300,5700,730,0,0.0,2,2,56.3,77777,9,999999999,170,0.0920,0,88,999.000,999.0,99.0 +1986,2,17,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,10.0,55,97800,6,315,345,4,7,3,0,0,0,0,0,0.0,2,1,56.3,77777,9,999999999,170,0.0920,0,88,999.000,999.0,99.0 +1986,2,17,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,10.0,55,97900,0,0,338,0,0,0,0,0,0,0,110,1.5,1,0,56.3,77777,9,999999999,170,0.0750,0,88,999.000,999.0,99.0 +1986,2,17,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,10.6,63,97900,0,0,332,0,0,0,0,0,0,0,0,0.0,3,0,56.3,77777,9,999999999,180,0.0750,0,88,999.000,999.0,99.0 +1986,2,17,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,10.6,67,98000,0,0,327,0,0,0,0,0,0,0,0,0.0,3,0,56.3,77777,9,999999999,170,0.0750,0,88,999.000,999.0,99.0 +1986,2,17,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,11.1,72,98000,0,0,324,0,0,0,0,0,0,0,0,0.0,3,0,56.3,77777,9,999999999,180,0.0750,0,88,999.000,999.0,99.0 +1986,2,17,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,10.6,72,97900,0,0,322,0,0,0,0,0,0,0,70,2.6,1,0,56.3,77777,9,999999999,170,0.0750,0,88,999.000,999.0,99.0 +1986,2,18,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,10.6,78,97900,0,0,316,0,0,0,0,0,0,0,120,2.1,1,0,48.3,77777,9,999999999,170,0.0750,0,88,999.000,999.0,99.0 +1986,2,18,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,10.0,78,97900,0,0,314,0,0,0,0,0,0,0,100,2.6,4,0,48.3,77777,9,999999999,170,0.0750,0,88,999.000,999.0,99.0 +1986,2,18,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,10.0,78,97900,0,0,314,0,0,0,0,0,0,0,140,2.1,2,0,48.3,77777,9,999999999,170,0.0750,0,88,999.000,999.0,99.0 +1986,2,18,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,10.0,80,97900,0,0,317,0,0,0,0,0,0,0,90,3.1,6,1,48.3,77777,9,999999999,170,0.0750,0,88,999.000,999.0,99.0 +1986,2,18,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,10.0,83,97900,0,0,309,0,0,0,0,0,0,0,50,3.6,2,0,48.3,77777,9,999999999,170,0.0750,0,88,999.000,999.0,99.0 +1986,2,18,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,9.4,80,97900,0,0,318,0,0,0,0,0,0,0,70,3.6,6,2,48.3,77777,9,999999999,160,0.0750,0,88,999.000,999.0,99.0 +1986,2,18,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,9.4,80,97900,0,0,329,0,0,0,0,0,0,0,80,5.2,8,6,48.3,4570,9,999999999,160,0.0750,0,88,999.000,999.0,99.0 +1986,2,18,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,9.4,83,98000,94,1155,324,41,92,31,4100,3900,3800,570,90,4.1,6,5,64.4,7620,9,999999999,160,0.0370,0,88,999.000,999.0,99.0 +1986,2,18,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,9.4,78,98000,365,1400,316,207,546,67,21600,46000,9500,1220,70,3.1,7,1,40.2,77777,9,999999999,160,0.0370,0,88,999.000,999.0,99.0 +1986,2,18,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,9.4,65,98000,610,1400,329,408,680,114,42600,65300,14100,2260,100,2.6,7,1,32.2,77777,9,999999999,160,0.0370,0,88,999.000,999.0,99.0 +1986,2,18,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,10.0,57,98000,803,1400,342,557,835,80,58500,82300,11100,1790,80,2.6,3,1,32.2,77777,9,999999999,170,0.0370,0,88,999.000,999.0,99.0 +1986,2,18,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,10.0,49,98000,932,1400,358,649,769,139,69600,78300,17300,3710,70,2.1,4,2,32.2,77777,9,999999999,170,0.0370,0,88,999.000,999.0,99.0 +1986,2,18,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,10.0,46,97900,986,1400,367,691,764,154,74000,77900,18900,4400,200,1.5,7,3,32.2,77777,9,999999999,170,0.0370,0,88,999.000,999.0,99.0 +1986,2,18,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,8.9,40,97800,963,1400,374,695,630,262,73600,65200,28600,7230,120,2.1,9,4,48.3,77777,9,999999999,160,0.0370,0,88,999.000,999.0,99.0 +1986,2,18,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,8.3,37,97700,863,1400,379,456,368,230,49800,39300,25500,5730,110,3.1,9,5,64.4,7620,9,999999999,150,0.0370,0,88,999.000,999.0,99.0 +1986,2,18,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,8.9,39,97600,695,1400,383,274,151,200,30100,15500,22400,4970,110,3.1,9,6,64.4,7620,9,999999999,160,0.0370,0,88,999.000,999.0,99.0 +1986,2,18,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,8.9,40,97600,469,1400,376,215,298,116,23100,28000,13700,2300,190,2.1,8,5,64.4,7620,9,999999999,160,0.0370,0,88,999.000,999.0,99.0 +1986,2,18,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,8.9,40,97600,202,1400,371,77,233,44,8100,14800,6000,790,140,1.5,7,3,64.4,77777,9,999999999,160,0.0370,0,88,999.000,999.0,99.0 +1986,2,18,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,8.9,44,97600,7,315,363,8,12,7,0,0,0,0,0,0.0,7,3,56.3,77777,9,999999999,160,0.0370,0,88,999.000,999.0,99.0 +1986,2,18,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,10.0,51,97600,0,0,359,0,0,0,0,0,0,0,20,2.1,7,3,56.3,77777,9,999999999,170,0.0750,0,88,999.000,999.0,99.0 +1986,2,18,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,9.4,53,97600,0,0,349,0,0,0,0,0,0,0,40,1.5,8,2,56.3,77777,9,999999999,160,0.0750,0,88,999.000,999.0,99.0 +1986,2,18,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,10.6,61,97700,0,0,348,0,0,0,0,0,0,0,120,1.5,8,3,56.3,77777,9,999999999,170,0.0750,0,88,999.000,999.0,99.0 +1986,2,18,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,10.0,61,97700,0,0,345,0,0,0,0,0,0,0,80,2.1,8,3,56.3,77777,9,999999999,170,0.0750,0,88,999.000,999.0,99.0 +1986,2,18,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,16.1,97,97700,0,0,332,0,0,0,0,0,0,0,130,2.6,8,0,48.3,77777,9,999999999,250,0.0750,0,88,999.000,999.0,99.0 +1986,2,19,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,10.6,70,97700,0,0,324,0,0,0,0,0,0,0,160,1.5,8,0,48.3,77777,9,999999999,170,0.0750,0,88,999.000,999.0,99.0 +1986,2,19,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,10.6,72,97700,0,0,332,0,0,0,0,0,0,0,110,2.6,8,2,48.3,77777,9,999999999,170,0.0750,0,88,999.000,999.0,99.0 +1986,2,19,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,10.0,75,97600,0,0,322,0,0,0,0,0,0,0,110,3.1,7,1,48.3,77777,9,999999999,170,0.0750,0,88,999.000,999.0,99.0 +1986,2,19,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,10.0,75,97600,0,0,316,0,0,0,0,0,0,0,110,2.6,2,0,48.3,77777,9,999999999,170,0.0750,0,88,999.000,999.0,99.0 +1986,2,19,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,10.0,78,97600,0,0,320,0,0,0,0,0,0,0,60,3.1,3,1,48.3,77777,9,999999999,170,0.0750,0,88,999.000,999.0,99.0 +1986,2,19,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,9.4,72,97600,0,0,321,0,0,0,0,0,0,0,60,3.1,4,1,48.3,77777,9,999999999,160,0.0750,0,88,999.000,999.0,99.0 +1986,2,19,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,9.4,72,97600,0,0,331,0,0,0,0,0,0,0,110,4.1,9,4,48.3,77777,9,999999999,160,0.0750,0,88,999.000,999.0,99.0 +1986,2,19,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,9.4,72,97700,98,1178,346,32,13,30,3400,800,3300,710,90,5.2,10,8,96.6,4270,9,999999999,160,0.0580,0,88,999.000,999.0,99.0 +1986,2,19,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,9.4,67,97700,371,1400,346,178,304,98,18900,26100,12000,1920,100,5.2,10,7,96.6,4270,9,999999999,160,0.0580,0,88,999.000,999.0,99.0 +1986,2,19,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,10.0,63,97700,616,1400,345,433,623,162,45600,60900,18700,3290,90,3.1,10,4,48.3,77777,9,999999999,170,0.0580,0,88,999.000,999.0,99.0 +1986,2,19,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,9.4,55,97700,809,1400,350,513,543,201,54600,55400,22500,4630,110,3.1,10,3,48.3,77777,9,999999999,160,0.0580,0,88,999.000,999.0,99.0 +1986,2,19,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,8.9,44,97600,937,1400,363,637,643,208,66400,64300,23200,5300,120,3.1,10,3,48.3,77777,9,999999999,160,0.0580,0,88,999.000,999.0,99.0 +1986,2,19,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,9.4,43,97600,992,1400,378,688,618,251,73600,64100,28000,7190,110,3.1,10,6,56.3,6100,9,999999999,160,0.0580,0,88,999.000,999.0,99.0 +1986,2,19,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,9.4,41,97400,968,1400,385,449,267,265,49100,28800,29200,7380,140,2.1,10,7,56.3,7620,9,999999999,160,0.0580,0,88,999.000,999.0,99.0 +1986,2,19,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,9.4,40,97400,869,1400,394,434,245,283,47500,25700,31500,7810,0,0.0,10,8,56.3,4880,9,999999999,160,0.0580,0,88,999.000,999.0,99.0 +1986,2,19,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,8.9,39,97300,700,1400,402,330,128,267,36300,12900,29800,7550,0,0.0,10,9,56.3,4880,9,999999999,160,0.0580,0,88,999.000,999.0,99.0 +1986,2,19,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,9.4,40,97300,474,1400,403,184,49,167,20100,4600,18500,4260,270,2.1,10,9,56.3,4880,9,999999999,160,0.0580,0,88,999.000,999.0,99.0 +1986,2,19,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,10.0,45,97300,206,1400,398,73,19,70,7900,1400,7700,1580,280,1.5,10,9,56.3,4880,9,999999999,170,0.0580,0,88,999.000,999.0,99.0 +1986,2,19,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,10.6,49,97300,8,338,404,3,0,3,0,0,0,0,290,1.5,10,10,48.3,4880,9,999999999,170,0.0580,0,88,999.000,999.0,99.0 +1986,2,19,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,12.2,59,97300,0,0,400,0,0,0,0,0,0,0,200,1.5,10,10,48.3,4880,9,999999999,190,0.0750,0,88,999.000,999.0,99.0 +1986,2,19,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,11.7,59,97300,0,0,396,0,0,0,0,0,0,0,0,0.0,10,10,48.3,4880,9,999999999,190,0.0750,0,88,999.000,999.0,99.0 +1986,2,19,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,12.2,63,97400,0,0,393,0,0,0,0,0,0,0,0,0.0,10,10,48.3,4880,9,999999999,190,0.0750,0,88,999.000,999.0,99.0 +1986,2,19,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,11.1,59,97400,0,0,392,0,0,0,0,0,0,0,100,1.5,10,10,48.3,6710,9,999999999,180,0.0750,0,88,999.000,999.0,99.0 +1986,2,19,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,11.7,63,97300,0,0,379,0,0,0,0,0,0,0,70,2.1,10,9,56.3,4880,9,999999999,190,0.0750,0,88,999.000,999.0,99.0 +1986,2,20,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,11.7,65,97400,0,0,387,0,0,0,0,0,0,0,70,2.1,10,10,56.3,4880,9,999999999,190,0.0760,0,88,999.000,999.0,99.0 +1986,2,20,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,12.2,70,97300,0,0,374,0,0,0,0,0,0,0,100,1.5,10,9,56.3,4880,9,999999999,190,0.0760,0,88,999.000,999.0,99.0 +1986,2,20,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,11.1,65,97300,0,0,373,0,0,0,0,0,0,0,270,2.1,10,9,56.3,4880,9,999999999,180,0.0760,0,88,999.000,999.0,99.0 +1986,2,20,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,11.7,70,97300,0,0,370,0,0,0,0,0,0,0,240,2.1,10,9,56.3,4880,9,999999999,190,0.0760,0,88,999.000,999.0,99.0 +1986,2,20,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,11.1,70,97400,0,0,344,0,0,0,0,0,0,0,280,2.1,7,4,56.3,7620,9,999999999,180,0.0760,0,88,999.000,999.0,99.0 +1986,2,20,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,10.0,72,97400,0,0,332,0,0,0,0,0,0,0,260,3.1,5,3,56.3,77777,9,999999999,170,0.0760,0,88,999.000,999.0,99.0 +1986,2,20,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,10.0,72,97500,0,0,324,0,0,0,0,0,0,0,290,3.1,3,1,64.4,77777,9,999999999,170,0.0760,0,88,999.000,999.0,99.0 +1986,2,20,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,10.0,70,97600,103,1201,321,45,178,26,4400,8500,3600,460,220,2.6,0,0,104.6,77777,9,999999999,170,0.0920,0,88,999.000,999.0,99.0 +1986,2,20,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,10.0,63,97600,376,1399,328,211,588,56,22400,50600,8800,1060,200,2.6,0,0,96.6,77777,9,999999999,170,0.0920,0,88,999.000,999.0,99.0 +1986,2,20,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,7.2,47,97700,621,1399,333,418,766,80,43800,73800,10900,1640,240,4.1,0,0,96.6,77777,9,999999999,140,0.0920,0,88,999.000,999.0,99.0 +1986,2,20,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,5.0,36,97700,815,1399,338,593,854,98,62900,85100,13200,2270,290,4.1,0,0,96.6,77777,9,999999999,120,0.0920,0,88,999.000,999.0,99.0 +1986,2,20,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,1.7,26,97700,943,1399,342,715,901,110,76400,90700,15000,2890,260,3.6,0,0,96.6,77777,9,999999999,100,0.0920,0,88,999.000,999.0,99.0 +1986,2,20,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,0.6,22,97600,997,1399,345,769,895,133,81100,89800,16800,3580,240,6.2,2,0,104.6,77777,9,999999999,90,0.0920,0,88,999.000,999.0,99.0 +1986,2,20,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,0.0,21,97500,974,1399,345,749,892,129,78800,89500,16400,3370,270,4.1,2,0,104.6,77777,9,999999999,90,0.0920,0,88,999.000,999.0,99.0 +1986,2,20,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,0.0,21,97500,874,1399,347,657,863,120,68800,85900,15000,2760,260,5.7,2,0,104.6,77777,9,999999999,90,0.0920,0,88,999.000,999.0,99.0 +1986,2,20,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,-4.4,15,97500,705,1399,357,455,579,165,48500,58100,19200,3490,250,6.2,7,3,104.6,77777,9,999999999,70,0.0920,0,88,999.000,999.0,99.0 +1986,2,20,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,-3.3,17,97500,479,1399,352,239,360,117,25100,33100,13700,2230,260,3.1,8,2,104.6,77777,9,999999999,70,0.0920,0,88,999.000,999.0,99.0 +1986,2,20,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,-6.1,15,97500,211,1399,341,77,123,59,8100,7800,6900,1130,270,6.7,8,2,104.6,77777,9,999999999,60,0.0920,0,88,999.000,999.0,99.0 +1986,2,20,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,-6.7,16,97500,9,361,335,5,5,5,0,0,0,0,260,3.6,8,3,56.3,77777,9,999999999,60,0.0920,0,88,999.000,999.0,99.0 +1986,2,20,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,-3.9,23,97600,0,0,326,0,0,0,0,0,0,0,260,2.1,7,2,56.3,77777,9,999999999,70,0.0760,0,88,999.000,999.0,99.0 +1986,2,20,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,-2.8,27,97600,0,0,322,0,0,0,0,0,0,0,240,2.6,7,2,56.3,77777,9,999999999,80,0.0760,0,88,999.000,999.0,99.0 +1986,2,20,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,-0.6,34,97700,0,0,310,0,0,0,0,0,0,0,230,1.5,5,0,56.3,77777,9,999999999,90,0.0760,0,88,999.000,999.0,99.0 +1986,2,20,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,0.6,39,97700,0,0,306,0,0,0,0,0,0,0,240,2.1,5,0,56.3,77777,9,999999999,90,0.0760,0,88,999.000,999.0,99.0 +1986,2,20,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,1.1,44,97700,0,0,312,0,0,0,0,0,0,0,250,2.1,7,2,56.3,77777,9,999999999,100,0.0760,0,88,999.000,999.0,99.0 +1986,2,21,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,1.1,45,97700,0,0,309,0,0,0,0,0,0,0,0,0.0,7,2,56.3,77777,9,999999999,100,0.0760,0,88,999.000,999.0,99.0 +1986,2,21,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,2.2,51,97700,0,0,308,0,0,0,0,0,0,0,20,2.1,8,2,56.3,77777,9,999999999,100,0.0760,0,88,999.000,999.0,99.0 +1986,2,21,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,1.1,51,97700,0,0,292,0,0,0,0,0,0,0,330,1.5,6,0,56.3,77777,9,999999999,100,0.0760,0,88,999.000,999.0,99.0 +1986,2,21,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,2.8,59,97700,0,0,298,0,0,0,0,0,0,0,0,0.0,4,1,56.3,77777,9,999999999,110,0.0760,0,88,999.000,999.0,99.0 +1986,2,21,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,3.3,64,97700,0,0,296,0,0,0,0,0,0,0,0,0.0,4,1,56.3,77777,9,999999999,110,0.0760,0,88,999.000,999.0,99.0 +1986,2,21,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,3.3,66,97800,0,0,288,0,0,0,0,0,0,0,90,2.1,2,0,56.3,77777,9,999999999,110,0.0760,0,88,999.000,999.0,99.0 +1986,2,21,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,2.8,66,97800,0,0,285,0,0,0,0,0,0,0,110,2.1,0,0,80.5,77777,9,999999999,110,0.0760,0,88,999.000,999.0,99.0 +1986,2,21,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,2.8,61,98000,107,1224,290,47,201,25,4400,10700,3400,440,90,2.1,0,0,96.6,77777,9,999999999,110,0.0800,0,88,999.000,999.0,99.0 +1986,2,21,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,1.7,49,98000,382,1398,298,225,639,53,23400,55500,8100,1020,60,2.6,0,0,96.6,77777,9,999999999,100,0.0800,0,88,999.000,999.0,99.0 +1986,2,21,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,1.7,44,98100,627,1398,305,429,794,75,45300,76900,10700,1590,70,2.1,0,0,96.6,77777,9,999999999,100,0.0800,0,88,999.000,999.0,99.0 +1986,2,21,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,0.6,34,98100,821,1398,316,606,880,92,64800,88000,13000,2190,0,0.0,0,0,96.6,77777,9,999999999,90,0.0800,0,88,999.000,999.0,99.0 +1986,2,21,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,1.7,33,98100,949,1398,324,718,910,102,74700,90500,13100,2320,280,2.1,0,0,64.4,77777,9,999999999,100,0.0800,0,88,999.000,999.0,99.0 +1986,2,21,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,1.7,29,98000,1003,1398,334,775,934,107,80600,93100,13600,2580,220,3.1,0,0,32.2,77777,9,999999999,100,0.0800,0,88,999.000,999.0,99.0 +1986,2,21,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,0.6,25,97900,979,1398,338,755,932,105,78600,92800,13400,2460,250,4.1,0,0,56.3,77777,9,999999999,90,0.0800,0,88,999.000,999.0,99.0 +1986,2,21,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,-0.6,22,97900,879,1398,339,664,903,97,69200,89400,12700,2060,120,1.5,0,0,96.6,77777,9,999999999,90,0.0800,0,88,999.000,999.0,99.0 +1986,2,21,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,-0.6,21,97800,710,1398,344,510,846,83,54200,83300,11700,1830,220,2.6,0,0,96.6,77777,9,999999999,90,0.0800,0,88,999.000,999.0,99.0 +1986,2,21,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,-1.7,19,97800,483,1398,343,312,728,62,32600,67200,9300,1240,220,3.6,0,0,96.6,77777,9,999999999,80,0.0800,0,88,999.000,999.0,99.0 +1986,2,21,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,-2.2,20,97900,215,1398,337,104,438,37,10800,30200,6100,670,270,3.6,0,0,96.6,77777,9,999999999,80,0.0800,0,88,999.000,999.0,99.0 +1986,2,21,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,0.0,27,98000,10,385,327,9,21,6,0,0,0,0,250,2.6,0,0,56.3,77777,9,999999999,90,0.0800,0,88,999.000,999.0,99.0 +1986,2,21,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,0.6,29,98000,0,0,325,0,0,0,0,0,0,0,130,1.5,0,0,56.3,77777,9,999999999,90,0.0760,0,88,999.000,999.0,99.0 +1986,2,21,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,1.1,33,98000,0,0,321,0,0,0,0,0,0,0,310,1.5,0,0,56.3,77777,9,999999999,100,0.0760,0,88,999.000,999.0,99.0 +1986,2,21,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,1.7,37,98100,0,0,317,0,0,0,0,0,0,0,30,1.5,0,0,56.3,77777,9,999999999,100,0.0760,0,88,999.000,999.0,99.0 +1986,2,21,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,2.2,41,98100,0,0,313,0,0,0,0,0,0,0,110,2.1,0,0,56.3,77777,9,999999999,100,0.0760,0,88,999.000,999.0,99.0 +1986,2,21,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,2.8,46,98100,0,0,308,0,0,0,0,0,0,0,90,3.1,0,0,56.3,77777,9,999999999,110,0.0760,0,88,999.000,999.0,99.0 +1986,2,22,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,3.3,49,98200,0,0,306,0,0,0,0,0,0,0,120,3.1,0,0,56.3,77777,9,999999999,110,0.0760,0,88,999.000,999.0,99.0 +1986,2,22,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,2.8,53,98200,0,0,299,0,0,0,0,0,0,0,100,3.1,0,0,56.3,77777,9,999999999,110,0.0760,0,88,999.000,999.0,99.0 +1986,2,22,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,1.1,49,98200,0,0,295,0,0,0,0,0,0,0,90,3.1,0,0,56.3,77777,9,999999999,100,0.0760,0,88,999.000,999.0,99.0 +1986,2,22,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,2.8,59,98200,0,0,292,0,0,0,0,0,0,0,10,1.5,0,0,56.3,77777,9,999999999,110,0.0760,0,88,999.000,999.0,99.0 +1986,2,22,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,3.3,69,98200,0,0,286,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,110,0.0760,0,88,999.000,999.0,99.0 +1986,2,22,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,3.3,66,98200,0,0,288,0,0,0,0,0,0,0,20,2.1,0,0,56.3,77777,9,999999999,110,0.0760,0,88,999.000,999.0,99.0 +1986,2,22,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,3.9,71,98200,0,0,286,0,0,0,0,0,0,0,0,0.0,0,0,80.5,77777,9,999999999,110,0.0760,0,88,999.000,999.0,99.0 +1986,2,22,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,3.9,66,98200,112,1270,291,48,186,28,4800,9200,3900,500,0,0.0,0,0,80.5,77777,9,999999999,110,0.1000,0,88,999.000,999.0,99.0 +1986,2,22,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,3.3,51,98300,388,1398,304,222,597,59,23500,51800,9100,1120,0,0.0,0,0,80.5,77777,9,999999999,110,0.1000,0,88,999.000,999.0,99.0 +1986,2,22,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,2.8,41,98300,633,1398,315,431,770,85,45000,74300,11300,1710,300,1.5,0,0,48.3,77777,9,999999999,110,0.1000,0,88,999.000,999.0,99.0 +1986,2,22,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,0.6,30,98300,827,1398,323,608,857,104,64300,85300,13700,2390,260,1.5,0,0,48.3,77777,9,999999999,90,0.1000,0,88,999.000,999.0,99.0 +1986,2,22,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,-1.1,23,98200,955,1398,333,730,891,124,77200,89400,15900,3190,60,2.1,1,0,48.3,77777,9,999999999,80,0.1000,0,88,999.000,999.0,99.0 +1986,2,22,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,-4.4,16,98100,1009,1398,337,784,910,129,83000,91600,16700,3590,340,2.1,1,0,64.4,77777,9,999999999,70,0.1000,0,88,999.000,999.0,99.0 +1986,2,22,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,-4.4,15,98000,985,1398,342,766,895,137,80300,89600,17000,3580,280,2.1,2,0,64.4,77777,9,999999999,70,0.1000,0,88,999.000,999.0,99.0 +1986,2,22,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,-4.4,14,97900,885,1398,351,540,612,154,57200,61700,18000,3830,330,2.1,2,1,64.4,77777,9,999999999,70,0.1000,0,88,999.000,999.0,99.0 +1986,2,22,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,-3.3,15,97800,715,1398,348,511,809,98,53200,79100,12500,2020,310,2.6,1,0,72.4,77777,9,999999999,70,0.1000,0,88,999.000,999.0,99.0 +1986,2,22,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,-2.8,17,97800,488,1398,351,300,600,92,31200,54900,11900,1730,260,2.6,4,1,72.4,77777,9,999999999,70,0.1000,0,88,999.000,999.0,99.0 +1986,2,22,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,-3.9,17,97800,220,1398,344,97,331,46,10000,22700,6400,800,280,3.1,3,1,64.4,77777,9,999999999,70,0.1000,0,88,999.000,999.0,99.0 +1986,2,22,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,-2.8,21,97800,11,408,329,8,13,7,0,0,0,0,230,2.1,2,0,56.3,77777,9,999999999,80,0.1000,0,88,999.000,999.0,99.0 +1986,2,22,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,-1.7,24,97800,0,0,325,0,0,0,0,0,0,0,250,2.1,1,0,56.3,77777,9,999999999,80,0.0760,0,88,999.000,999.0,99.0 +1986,2,22,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,-1.1,28,97800,0,0,318,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,80,0.0760,0,88,999.000,999.0,99.0 +1986,2,22,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,-0.6,30,97800,0,0,316,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,90,0.0760,0,88,999.000,999.0,99.0 +1986,2,22,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,-0.6,32,97800,0,0,312,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,90,0.0760,0,88,999.000,999.0,99.0 +1986,2,22,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,0.6,38,97800,0,0,308,0,0,0,0,0,0,0,160,1.5,0,0,56.3,77777,9,999999999,90,0.0760,0,88,999.000,999.0,99.0 +1986,2,23,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,1.1,41,97800,0,0,306,0,0,0,0,0,0,0,60,2.1,0,0,56.3,77777,9,999999999,100,0.0770,0,88,999.000,999.0,99.0 +1986,2,23,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,0.6,42,97800,0,0,301,0,0,0,0,0,0,0,130,1.5,0,0,56.3,77777,9,999999999,90,0.0770,0,88,999.000,999.0,99.0 +1986,2,23,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,2.2,53,97800,0,0,296,0,0,0,0,0,0,0,280,1.5,0,0,56.3,77777,9,999999999,100,0.0770,0,88,999.000,999.0,99.0 +1986,2,23,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,2.2,55,97700,0,0,294,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,100,0.0770,0,88,999.000,999.0,99.0 +1986,2,23,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,2.2,57,97700,0,0,292,0,0,0,0,0,0,0,140,1.5,0,0,56.3,77777,9,999999999,100,0.0770,0,88,999.000,999.0,99.0 +1986,2,23,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,2.8,61,97800,0,0,290,0,0,0,0,0,0,0,110,2.1,0,0,56.3,77777,9,999999999,110,0.0770,0,88,999.000,999.0,99.0 +1986,2,23,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,1.7,57,97800,0,0,289,0,0,0,0,0,0,0,90,3.1,0,0,80.5,77777,9,999999999,100,0.0770,0,88,999.000,999.0,99.0 +1986,2,23,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,1.1,51,97900,117,1292,292,50,182,30,4900,9100,4100,530,90,1.5,2,0,80.5,77777,9,999999999,100,0.0970,0,88,999.000,999.0,99.0 +1986,2,23,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,1.1,44,98000,393,1397,302,231,580,70,24100,50200,10000,1300,100,2.1,3,0,80.5,77777,9,999999999,100,0.0970,0,88,999.000,999.0,99.0 +1986,2,23,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,1.7,39,98000,639,1397,318,419,701,101,44400,68400,13000,2090,80,2.6,3,1,80.5,77777,9,999999999,100,0.0970,0,88,999.000,999.0,99.0 +1986,2,23,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,1.1,31,98000,833,1397,332,580,791,111,60900,78600,13900,2500,10,1.5,3,1,80.5,77777,9,999999999,100,0.0970,0,88,999.000,999.0,99.0 +1986,2,23,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,0.6,24,97900,961,1397,347,704,795,159,75000,80800,19300,4370,340,1.5,4,1,64.4,77777,9,999999999,90,0.0970,0,88,999.000,999.0,99.0 +1986,2,23,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,0.6,22,97800,1014,1397,352,733,801,154,76300,79900,18100,4070,260,2.1,5,1,64.4,77777,9,999999999,90,0.0970,0,88,999.000,999.0,99.0 +1986,2,23,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,0.0,18,97700,990,1397,365,714,836,123,75800,84200,16000,3370,300,2.1,3,1,64.4,77777,9,999999999,90,0.0970,0,88,999.000,999.0,99.0 +1986,2,23,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,-2.8,15,97700,890,1397,354,669,876,113,70700,87600,14700,2730,290,3.1,1,0,64.4,77777,9,999999999,80,0.0970,0,88,999.000,999.0,99.0 +1986,2,23,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,-1.1,16,97600,720,1397,362,515,823,92,54100,80800,12200,1960,250,2.6,0,0,64.4,77777,9,999999999,80,0.0970,0,88,999.000,999.0,99.0 +1986,2,23,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,-0.6,16,97600,493,1397,362,314,697,69,32400,64300,9600,1320,280,2.6,0,0,64.4,77777,9,999999999,80,0.0970,0,88,999.000,999.0,99.0 +1986,2,23,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,1.7,21,97600,224,1397,358,105,405,41,10900,28300,6300,740,280,3.6,0,0,64.4,77777,9,999999999,100,0.0970,0,88,999.000,999.0,99.0 +1986,2,23,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,2.2,25,97600,12,431,347,10,18,7,0,0,0,0,240,2.1,0,0,56.3,77777,9,999999999,100,0.0970,0,88,999.000,999.0,99.0 +1986,2,23,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,2.8,28,97600,0,0,343,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,110,0.0770,0,88,999.000,999.0,99.0 +1986,2,23,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,3.9,35,97700,0,0,334,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,120,0.0770,0,88,999.000,999.0,99.0 +1986,2,23,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,3.9,37,97700,0,0,329,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,110,0.0770,0,88,999.000,999.0,99.0 +1986,2,23,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,4.4,39,97700,0,0,330,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,120,0.0770,0,88,999.000,999.0,99.0 +1986,2,23,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,4.4,42,97800,0,0,325,0,0,0,0,0,0,0,100,2.1,0,0,56.3,77777,9,999999999,120,0.0770,0,88,999.000,999.0,99.0 +1986,2,24,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,4.4,45,97800,0,0,320,0,0,0,0,0,0,0,0,0.0,1,0,56.3,77777,9,999999999,120,0.0770,0,88,999.000,999.0,99.0 +1986,2,24,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,5.0,50,97800,0,0,316,0,0,0,0,0,0,0,100,2.1,2,0,56.3,77777,9,999999999,120,0.0770,0,88,999.000,999.0,99.0 +1986,2,24,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,4.4,50,97800,0,0,312,0,0,0,0,0,0,0,90,3.6,3,0,56.3,77777,9,999999999,120,0.0770,0,88,999.000,999.0,99.0 +1986,2,24,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,4.4,51,97800,0,0,310,0,0,0,0,0,0,0,80,2.6,4,0,56.3,77777,9,999999999,120,0.0770,0,88,999.000,999.0,99.0 +1986,2,24,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,4.4,53,97800,0,0,308,0,0,0,0,0,0,0,80,3.6,4,0,56.3,77777,9,999999999,120,0.0770,0,88,999.000,999.0,99.0 +1986,2,24,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,4.4,57,97900,0,0,303,0,0,0,0,0,0,0,0,0.0,4,0,56.3,77777,9,999999999,120,0.0770,0,88,999.000,999.0,99.0 +1986,2,24,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,5.0,62,97900,0,0,301,0,0,0,0,0,0,0,0,0.0,4,0,56.3,77777,9,999999999,120,0.0770,0,88,999.000,999.0,99.0 +1986,2,24,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,5.0,57,98000,122,1315,306,49,163,31,4900,8200,4100,550,100,1.0,0,0,96.6,77777,9,999999999,120,0.1220,0,88,999.000,999.0,99.0 +1986,2,24,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,4.4,46,98100,399,1396,317,225,562,67,23700,49000,9600,1260,110,2.1,0,0,48.3,77777,9,999999999,120,0.1220,0,88,999.000,999.0,99.0 +1986,2,24,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,3.9,37,98100,645,1396,329,434,738,96,46200,72300,12700,2010,130,2.1,0,0,48.3,77777,9,999999999,110,0.1220,0,88,999.000,999.0,99.0 +1986,2,24,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,4.4,33,98100,839,1396,342,609,823,117,63600,81600,14400,2600,90,1.0,0,0,40.2,77777,9,999999999,120,0.1220,0,88,999.000,999.0,99.0 +1986,2,24,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,3.3,25,98100,967,1396,357,728,866,130,76600,86800,16300,3360,140,3.1,0,0,40.2,77777,9,999999999,110,0.1220,0,88,999.000,999.0,99.0 +1986,2,24,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,3.9,22,98000,1020,1396,368,778,883,135,82200,88700,17100,3790,120,2.1,0,0,40.2,77777,9,999999999,110,0.1220,0,88,999.000,999.0,99.0 +1986,2,24,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,3.9,20,97900,996,1396,379,755,874,133,79500,87700,16800,3580,0,0.0,0,0,48.3,77777,9,999999999,120,0.1220,0,88,999.000,999.0,99.0 +1986,2,24,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,3.9,18,97900,895,1396,385,664,846,123,69500,84300,15300,2900,0,0.0,0,0,64.4,77777,9,999999999,110,0.1220,0,88,999.000,999.0,99.0 +1986,2,24,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,2.8,16,97800,725,1396,389,509,780,105,52700,76200,13000,2120,70,3.1,0,0,72.4,77777,9,999999999,110,0.1220,0,88,999.000,999.0,99.0 +1986,2,24,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,1.7,15,97800,498,1396,388,310,652,79,32600,60500,11000,1540,80,2.6,0,0,72.4,77777,9,999999999,100,0.1220,0,88,999.000,999.0,99.0 +1986,2,24,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,1.1,15,97800,229,1396,381,104,357,46,10600,25000,6500,810,160,2.1,0,0,80.5,77777,9,999999999,90,0.1220,0,88,999.000,999.0,99.0 +1986,2,24,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,5.0,25,97800,13,454,367,8,11,7,0,0,0,0,250,2.1,0,0,64.4,77777,9,999999999,120,0.1220,0,88,999.000,999.0,99.0 +1986,2,24,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,5.6,28,97800,0,0,362,0,0,0,0,0,0,0,240,2.1,0,0,56.3,77777,9,999999999,130,0.0770,0,88,999.000,999.0,99.0 +1986,2,24,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,5.6,31,97900,0,0,354,0,0,0,0,0,0,0,240,2.1,0,0,56.3,77777,9,999999999,130,0.0770,0,88,999.000,999.0,99.0 +1986,2,24,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,5.0,33,97900,0,0,346,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,120,0.0770,0,88,999.000,999.0,99.0 +1986,2,24,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,5.6,36,97900,0,0,341,0,0,0,0,0,0,0,70,1.5,0,0,56.3,77777,9,999999999,130,0.0770,0,88,999.000,999.0,99.0 +1986,2,24,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,6.7,41,97900,0,0,340,0,0,0,0,0,0,0,110,2.1,0,0,56.3,77777,9,999999999,140,0.0770,0,88,999.000,999.0,99.0 +1986,2,25,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,6.7,44,97900,0,0,335,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,140,0.0770,0,88,999.000,999.0,99.0 +1986,2,25,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,7.2,50,97900,0,0,328,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,140,0.0770,0,88,999.000,999.0,99.0 +1986,2,25,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,7.8,58,97900,0,0,321,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,150,0.0770,0,88,999.000,999.0,99.0 +1986,2,25,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,7.2,56,97900,0,0,320,0,0,0,0,0,0,0,100,1.5,0,0,56.3,77777,9,999999999,140,0.0770,0,88,999.000,999.0,99.0 +1986,2,25,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,7.2,58,97900,0,0,318,0,0,0,0,0,0,0,100,2.6,0,0,56.3,77777,9,999999999,140,0.0770,0,88,999.000,999.0,99.0 +1986,2,25,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,6.1,58,97900,0,0,312,0,0,0,0,0,0,0,80,1.5,0,0,56.3,77777,9,999999999,130,0.0770,0,88,999.000,999.0,99.0 +1986,2,25,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,6.1,58,98000,0,0,312,0,0,0,0,0,0,0,80,1.5,0,0,56.3,77777,9,999999999,130,0.0770,0,88,999.000,999.0,99.0 +1986,2,25,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,5.0,48,98000,127,1338,318,46,116,33,4700,5600,4200,600,90,2.6,0,0,96.6,77777,9,999999999,120,0.1600,0,88,999.000,999.0,99.0 +1986,2,25,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,4.4,39,98100,405,1396,330,219,495,78,22800,43000,10300,1430,100,3.6,0,0,96.6,77777,9,999999999,120,0.1600,0,88,999.000,999.0,99.0 +1986,2,25,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,3.9,32,98100,651,1396,339,429,682,113,45100,66400,14000,2320,90,3.6,0,0,96.6,77777,9,999999999,110,0.1600,0,88,999.000,999.0,99.0 +1986,2,25,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,5.0,31,98100,844,1396,351,603,772,138,64100,77800,16900,3320,110,2.6,0,0,96.6,77777,9,999999999,120,0.1600,0,88,999.000,999.0,99.0 +1986,2,25,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,3.3,24,98100,972,1396,360,724,821,154,77500,83700,19000,4330,80,2.6,0,0,72.4,77777,9,999999999,110,0.1600,0,88,999.000,999.0,99.0 +1986,2,25,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,4.4,22,98000,1026,1396,374,773,837,160,80200,83500,18700,4260,90,1.5,0,0,72.4,77777,9,999999999,120,0.1600,0,88,999.000,999.0,99.0 +1986,2,25,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,3.9,18,97900,1001,1396,385,751,830,157,77800,82700,18300,4010,180,2.6,0,0,72.4,77777,9,999999999,110,0.1600,0,88,999.000,999.0,99.0 +1986,2,25,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,3.9,17,97800,900,1396,391,659,798,145,70100,80900,17800,3710,190,2.1,0,0,72.4,77777,9,999999999,110,0.1600,0,88,999.000,999.0,99.0 +1986,2,25,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,2.8,16,97700,730,1396,389,503,727,124,53000,72100,15200,2690,300,1.5,0,0,72.4,77777,9,999999999,110,0.1600,0,88,999.000,999.0,99.0 +1986,2,25,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,2.2,15,97700,502,1396,388,303,589,92,31500,54400,11900,1750,220,3.6,0,0,56.3,77777,9,999999999,100,0.1600,0,88,999.000,999.0,99.0 +1986,2,25,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,3.3,18,97600,233,1396,384,100,287,52,10500,19700,7200,940,260,2.6,0,0,56.3,77777,9,999999999,110,0.1600,0,88,999.000,999.0,99.0 +1986,2,25,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,3.3,21,97600,15,454,370,9,6,8,0,0,0,0,270,1.5,0,0,56.3,77777,9,999999999,110,0.1600,0,88,999.000,999.0,99.0 +1986,2,25,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,5.0,27,97700,0,0,362,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,120,0.0770,0,88,999.000,999.0,99.0 +1986,2,25,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,6.1,32,97700,0,0,355,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,130,0.0770,0,88,999.000,999.0,99.0 +1986,2,25,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,6.7,36,97700,0,0,350,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,140,0.0770,0,88,999.000,999.0,99.0 +1986,2,25,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,7.2,41,97700,0,0,343,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,140,0.0770,0,88,999.000,999.0,99.0 +1986,2,25,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,7.2,42,97700,0,0,341,0,0,0,0,0,0,0,110,2.6,0,0,56.3,77777,9,999999999,140,0.0770,0,88,999.000,999.0,99.0 +1986,2,26,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,7.2,44,97700,0,0,338,0,0,0,0,0,0,0,90,2.1,0,0,56.3,77777,9,999999999,140,0.0780,0,88,999.000,999.0,99.0 +1986,2,26,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,7.8,50,97700,0,0,331,0,0,0,0,0,0,0,140,2.6,0,0,56.3,77777,9,999999999,150,0.0780,0,88,999.000,999.0,99.0 +1986,2,26,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,8.3,56,97600,0,0,326,0,0,0,0,0,0,0,80,2.1,0,0,56.3,77777,9,999999999,150,0.0780,0,88,999.000,999.0,99.0 +1986,2,26,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,8.3,58,97600,0,0,324,0,0,0,0,0,0,0,70,3.1,0,0,56.3,77777,9,999999999,150,0.0780,0,88,999.000,999.0,99.0 +1986,2,26,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,7.8,58,97600,0,0,321,0,0,0,0,0,0,0,110,3.1,0,0,56.3,77777,9,999999999,150,0.0780,0,88,999.000,999.0,99.0 +1986,2,26,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,6.7,54,97600,0,0,320,0,0,0,0,0,0,0,100,1.5,0,0,56.3,77777,9,999999999,140,0.0780,0,88,999.000,999.0,99.0 +1986,2,26,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,6.7,56,97600,0,0,317,0,0,0,0,0,0,0,110,1.5,0,0,56.3,77777,9,999999999,140,0.0780,0,88,999.000,999.0,99.0 +1986,2,26,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,7.2,58,97700,133,1360,318,53,229,29,5300,12800,4000,510,40,2.6,0,0,56.3,77777,9,999999999,140,0.0940,0,88,999.000,999.0,99.0 +1986,2,26,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,7.2,47,97800,411,1395,333,241,625,60,25700,55300,9300,1150,80,4.1,0,0,56.3,77777,9,999999999,140,0.0940,0,88,999.000,999.0,99.0 +1986,2,26,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,6.7,37,97700,657,1395,348,450,783,84,47300,76100,11300,1750,120,2.6,0,0,64.4,77777,9,999999999,140,0.0940,0,88,999.000,999.0,99.0 +1986,2,26,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,6.1,29,97700,850,1395,363,625,861,103,66400,86000,13800,2450,120,3.6,0,0,72.4,77777,9,999999999,130,0.0940,0,88,999.000,999.0,99.0 +1986,2,26,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,6.1,25,97600,978,1395,374,741,899,114,77000,89500,14100,2500,120,2.6,0,0,72.4,77777,9,999999999,130,0.0940,0,88,999.000,999.0,99.0 +1986,2,26,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,5.0,21,97500,1031,1395,380,792,915,118,82200,91200,14500,2800,140,2.6,0,0,72.4,77777,9,999999999,120,0.0940,0,88,999.000,999.0,99.0 +1986,2,26,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,4.4,19,97400,1007,1395,388,771,910,116,79900,90700,14300,2650,80,2.6,0,0,72.4,77777,9,999999999,120,0.0940,0,88,999.000,999.0,99.0 +1986,2,26,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,4.4,18,97300,906,1395,391,679,883,108,72300,88700,14600,2710,100,1.5,0,0,72.4,77777,9,999999999,120,0.0940,0,88,999.000,999.0,99.0 +1986,2,26,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,4.4,17,97200,735,1395,394,526,827,92,55400,81500,12300,2000,260,3.6,0,0,72.4,77777,9,999999999,110,0.0940,0,88,999.000,999.0,99.0 +1986,2,26,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,3.3,16,97200,507,1395,392,326,708,70,33700,65700,9800,1360,240,3.6,0,0,72.4,77777,9,999999999,110,0.0940,0,88,999.000,999.0,99.0 +1986,2,26,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,4.4,19,97200,237,1395,386,115,430,43,11900,30800,6700,770,280,3.1,0,0,72.4,77777,9,999999999,120,0.0940,0,88,999.000,999.0,99.0 +1986,2,26,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,6.1,25,97200,16,477,374,13,25,10,0,0,0,0,290,2.1,0,0,72.4,77777,9,999999999,130,0.0940,0,88,999.000,999.0,99.0 +1986,2,26,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,6.1,28,97200,0,0,365,0,0,0,0,0,0,0,210,1.5,0,0,56.3,77777,9,999999999,130,0.0780,0,88,999.000,999.0,99.0 +1986,2,26,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,7.2,33,97200,0,0,359,0,0,0,0,0,0,0,10,1.5,0,0,56.3,77777,9,999999999,140,0.0780,0,88,999.000,999.0,99.0 +1986,2,26,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,7.8,38,97200,0,0,352,0,0,0,0,0,0,0,40,1.5,0,0,56.3,77777,9,999999999,140,0.0780,0,88,999.000,999.0,99.0 +1986,2,26,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,8.3,43,97300,0,0,347,0,0,0,0,0,0,0,140,1.5,0,0,56.3,77777,9,999999999,150,0.0780,0,88,999.000,999.0,99.0 +1986,2,26,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,7.8,42,97300,0,0,344,0,0,0,0,0,0,0,140,2.1,0,0,56.3,77777,9,999999999,140,0.0780,0,88,999.000,999.0,99.0 +1986,2,27,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,8.3,49,97300,0,0,336,0,0,0,0,0,0,0,80,2.6,0,0,56.3,77777,9,999999999,150,0.0780,0,88,999.000,999.0,99.0 +1986,2,27,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,8.3,51,97300,0,0,334,0,0,0,0,0,0,0,120,2.1,0,0,56.3,77777,9,999999999,150,0.0780,0,88,999.000,999.0,99.0 +1986,2,27,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,8.3,52,97300,0,0,331,0,0,0,0,0,0,0,70,3.1,0,0,56.3,77777,9,999999999,150,0.0780,0,88,999.000,999.0,99.0 +1986,2,27,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,8.3,56,97300,0,0,326,0,0,0,0,0,0,0,90,3.1,0,0,56.3,77777,9,999999999,150,0.0780,0,88,999.000,999.0,99.0 +1986,2,27,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,7.8,54,97300,0,0,326,0,0,0,0,0,0,0,100,2.6,0,0,56.3,77777,9,999999999,150,0.0780,0,88,999.000,999.0,99.0 +1986,2,27,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,7.2,54,97300,0,0,323,0,0,0,0,0,0,0,110,2.6,0,0,56.3,77777,9,999999999,140,0.0780,0,88,999.000,999.0,99.0 +1986,2,27,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,6.7,52,97400,0,0,322,0,0,0,0,0,0,0,90,3.1,0,0,56.3,77777,9,999999999,140,0.0780,0,88,999.000,999.0,99.0 +1986,2,27,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,7.2,52,97400,139,1383,325,63,358,24,6300,20600,4200,440,100,3.1,0,0,64.4,77777,9,999999999,140,0.0530,0,88,999.000,999.0,99.0 +1986,2,27,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,6.7,44,97500,417,1394,335,259,724,46,27700,65100,8100,980,120,3.6,0,0,64.4,77777,9,999999999,140,0.0530,0,88,999.000,999.0,99.0 +1986,2,27,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,6.7,36,97500,663,1394,350,468,857,64,49600,83000,10000,1460,90,3.1,0,0,64.4,77777,9,999999999,140,0.0530,0,88,999.000,999.0,99.0 +1986,2,27,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,6.1,30,97500,856,1394,360,642,924,78,67600,91500,11200,1890,100,3.1,0,0,72.4,77777,9,999999999,130,0.0530,0,88,999.000,999.0,99.0 +1986,2,27,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,5.6,24,97400,984,1394,373,757,954,86,79300,95200,11900,2310,120,2.6,0,0,56.3,77777,9,999999999,130,0.0530,0,88,999.000,999.0,99.0 +1986,2,27,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,5.6,23,97400,1037,1394,379,812,946,110,84300,94400,13900,2780,40,2.1,2,0,56.3,77777,9,999999999,130,0.0530,0,88,999.000,999.0,99.0 +1986,2,27,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,5.0,20,97200,1012,1394,387,792,945,108,82300,94200,13700,2640,100,2.1,2,0,64.4,77777,9,999999999,120,0.0530,0,88,999.000,999.0,99.0 +1986,2,27,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,3.3,17,97200,911,1394,397,591,722,120,62100,72200,14800,2930,110,2.1,4,1,72.4,77777,9,999999999,110,0.0530,0,88,999.000,999.0,99.0 +1986,2,27,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,2.8,15,97100,740,1394,395,531,824,94,55700,81200,12500,2040,90,1.5,4,0,72.4,77777,9,999999999,110,0.0530,0,88,999.000,999.0,99.0 +1986,2,27,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,2.8,15,97100,511,1394,395,342,757,66,35700,70600,9700,1320,200,1.5,3,0,72.4,77777,9,999999999,110,0.0530,0,88,999.000,999.0,99.0 +1986,2,27,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,1.7,15,97100,242,1394,385,126,522,37,12900,39300,6100,690,190,2.1,2,0,72.4,77777,9,999999999,100,0.0530,0,88,999.000,999.0,99.0 +1986,2,27,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,5.0,23,97100,17,500,375,16,56,9,0,0,0,0,250,2.1,1,0,72.4,77777,9,999999999,120,0.0530,0,88,999.000,999.0,99.0 +1986,2,27,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,6.7,28,97200,0,0,369,0,0,0,0,0,0,0,240,1.5,1,0,56.3,77777,9,999999999,140,0.0780,0,88,999.000,999.0,99.0 +1986,2,27,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,7.2,32,97200,0,0,361,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,140,0.0780,0,88,999.000,999.0,99.0 +1986,2,27,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,6.7,34,97300,0,0,353,0,0,0,0,0,0,0,120,1.5,0,0,56.3,77777,9,999999999,130,0.0780,0,88,999.000,999.0,99.0 +1986,2,27,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,6.7,36,97300,0,0,350,0,0,0,0,0,0,0,200,1.5,0,0,56.3,77777,9,999999999,140,0.0780,0,88,999.000,999.0,99.0 +1986,2,27,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,6.7,38,97300,0,0,345,0,0,0,0,0,0,0,120,1.5,0,0,56.3,77777,9,999999999,140,0.0780,0,88,999.000,999.0,99.0 +1986,2,28,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,6.7,42,97300,0,0,337,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,140,0.0790,0,88,999.000,999.0,99.0 +1986,2,28,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,7.2,47,97400,0,0,333,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,140,0.0790,0,88,999.000,999.0,99.0 +1986,2,28,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,5.6,43,97400,0,0,328,0,0,0,0,0,0,0,50,2.1,0,0,56.3,77777,9,999999999,130,0.0790,0,88,999.000,999.0,99.0 +1986,2,28,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,4.4,43,97400,0,0,322,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,120,0.0790,0,88,999.000,999.0,99.0 +1986,2,28,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,1.7,35,97400,0,0,319,0,0,0,0,0,0,0,10,2.1,0,0,56.3,77777,9,999999999,100,0.0790,0,88,999.000,999.0,99.0 +1986,2,28,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,-0.6,31,97400,0,0,314,0,0,0,0,0,0,0,80,1.5,0,0,56.3,77777,9,999999999,90,0.0790,0,88,999.000,999.0,99.0 +1986,2,28,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,-1.1,30,97500,0,35,314,0,0,0,0,0,0,0,0,0.0,0,0,80.5,77777,9,999999999,80,0.0790,0,88,999.000,999.0,99.0 +1986,2,28,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,-3.9,18,97600,144,1394,330,56,228,32,5800,12000,4600,570,80,4.1,0,0,104.6,77777,9,999999999,70,0.1070,0,88,999.000,999.0,99.0 +1986,2,28,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,-3.3,18,97600,423,1394,336,252,624,65,26600,55600,9700,1240,100,4.6,0,0,104.6,77777,9,999999999,70,0.1070,0,88,999.000,999.0,99.0 +1986,2,28,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,-2.8,16,97700,669,1394,346,466,786,92,48700,76300,11900,1860,90,4.1,0,0,104.6,77777,9,999999999,70,0.1070,0,88,999.000,999.0,99.0 +1986,2,28,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,-2.2,14,97600,862,1394,360,642,862,111,67700,86000,14300,2610,80,5.7,0,0,96.6,77777,9,999999999,70,0.1070,0,88,999.000,999.0,99.0 +1986,2,28,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,-0.6,15,97600,990,1394,368,759,899,123,80700,90500,16200,3380,70,5.7,0,0,96.6,77777,9,999999999,80,0.1070,0,88,999.000,999.0,99.0 +1986,2,28,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,0.6,16,97500,1043,1394,372,807,911,128,86100,92000,17000,3820,80,4.1,0,0,96.6,77777,9,999999999,90,0.1070,0,88,999.000,999.0,99.0 +1986,2,28,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,0.0,14,97400,1017,1394,380,785,905,125,83400,91300,16600,3590,120,4.1,0,0,96.6,77777,9,999999999,90,0.1070,0,88,999.000,999.0,99.0 +1986,2,28,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,0.0,13,97400,916,1394,382,692,878,116,73100,88000,15100,2890,70,4.6,0,0,96.6,77777,9,999999999,90,0.1070,0,88,999.000,999.0,99.0 +1986,2,28,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,0.0,13,97300,745,1394,385,535,817,100,55900,80400,12800,2120,60,4.1,0,0,80.5,77777,9,999999999,90,0.1070,0,88,999.000,999.0,99.0 +1986,2,28,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,1.1,15,97300,516,1394,384,331,693,76,35000,65100,10900,1510,80,3.6,0,0,80.5,77777,9,999999999,100,0.1070,0,88,999.000,999.0,99.0 +1986,2,28,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,1.1,16,97300,246,1394,378,119,416,46,12200,30200,6900,820,60,3.6,0,0,80.5,77777,9,999999999,100,0.1070,0,88,999.000,999.0,99.0 +1986,2,28,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,0.6,17,97300,19,523,369,14,24,11,0,0,0,0,70,3.1,0,0,56.3,77777,9,999999999,90,0.1070,0,88,999.000,999.0,99.0 +1986,2,28,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,1.7,21,97300,0,0,358,0,0,0,0,0,0,0,80,3.1,0,0,56.3,77777,9,999999999,100,0.0790,0,88,999.000,999.0,99.0 +1986,2,28,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,1.1,21,97400,0,0,354,0,0,0,0,0,0,0,90,3.1,0,0,56.3,77777,9,999999999,100,0.0790,0,88,999.000,999.0,99.0 +1986,2,28,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.2,0.8,23,97400,0,0,345,0,0,0,0,0,0,0,80,3.0,0,0,56.3,77777,9,999999999,100,0.0790,0,88,999.000,999.0,99.0 +1986,2,28,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.3,0.5,26,97400,0,0,336,0,0,0,0,0,0,0,80,3.0,0,0,56.3,77777,9,999999999,100,0.0790,0,88,999.000,999.0,99.0 +1986,2,28,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.5,0.2,26,97400,0,0,328,0,0,0,0,0,0,0,90,2.9,0,0,56.3,77777,9,999999999,100,0.0790,0,88,999.000,999.0,99.0 +2000,3,1,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.7,-0.1,34,97500,0,0,336,0,0,0,0,0,0,0,90,2.8,7,4,16.0,6706,9,999999999,180,0.0610,0,88,0.170,0.0,1.0 +2000,3,1,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.9,-0.4,32,97500,0,0,321,0,0,0,0,0,0,0,100,2.7,4,2,16.0,6706,9,999999999,180,0.0610,0,88,0.170,0.0,1.0 +2000,3,1,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.0,-0.7,36,97400,0,0,340,0,0,0,0,0,0,0,60,2.7,9,9,16.0,6706,9,999999999,170,0.0610,0,88,0.170,0.0,1.0 +2000,3,1,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,-1.1,39,97400,0,0,331,0,0,0,0,0,0,0,100,2.6,9,9,16.0,3658,9,999999999,160,0.0610,0,88,0.170,0.0,1.0 +2000,3,1,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,-2.8,33,97500,0,0,331,0,0,0,0,0,0,0,100,3.1,10,9,16.0,3353,9,999999999,160,0.0610,0,88,0.170,0.0,1.0 +2000,3,1,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,-3.3,31,97400,0,0,331,0,0,0,0,0,0,0,100,3.6,10,9,16.0,2743,9,999999999,150,0.0610,0,88,0.170,0.0,1.0 +2000,3,1,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,-3.9,31,97400,0,81,327,0,0,0,0,0,0,0,90,2.6,10,9,16.0,2591,9,999999999,140,0.0610,0,88,0.170,0.0,1.0 +2000,3,1,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,-3.3,31,97500,154,1392,331,11,0,11,1300,0,1300,440,70,2.1,10,9,16.0,2438,9,999999999,140,0.0610,0,88,0.170,0.0,1.0 +2000,3,1,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,-1.1,37,97600,433,1392,336,42,0,42,5100,0,5100,1850,80,2.6,10,9,16.0,2438,9,999999999,130,0.0610,0,88,0.170,0.0,1.0 +2000,3,1,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,0.0,37,97600,679,1392,330,489,581,205,50500,57800,22200,4390,140,4.1,9,7,16.0,3658,9,999999999,120,0.0610,0,88,0.170,0.0,1.0 +2000,3,1,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,-2.2,27,97700,872,1392,329,445,235,298,48500,24600,33000,8270,120,3.6,5,4,16.0,7620,9,999999999,120,0.0610,0,88,0.170,0.0,1.0 +2000,3,1,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,-2.8,24,97600,999,1392,335,781,667,302,81900,69100,32200,8950,180,4.1,5,5,16.0,3962,9,999999999,120,0.0610,0,88,0.170,0.0,1.0 +2000,3,1,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,-0.6,28,97600,1051,1392,353,157,0,157,19300,0,19300,7960,300,3.6,8,8,16.0,2438,9,999999999,120,0.0610,0,88,0.170,0.0,1.0 +2000,3,1,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,2.2,32,97500,1026,1392,349,556,266,359,59700,28700,38500,11260,270,4.6,5,5,16.0,3658,9,999999999,130,0.0610,0,88,0.170,0.0,1.0 +2000,3,1,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,1.7,31,97500,924,1392,346,696,754,194,72500,75600,22200,4940,250,4.1,4,4,16.0,77777,9,999999999,130,0.0610,0,88,0.170,0.0,1.0 +2000,3,1,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,-1.7,23,97500,752,1392,342,566,855,102,58700,84200,13100,2160,250,7.2,3,3,16.0,77777,9,999999999,130,0.0610,0,88,0.170,0.0,1.0 +2000,3,1,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,-1.1,24,97500,523,1392,342,378,736,101,39000,68400,13200,1920,270,4.1,3,3,16.0,77777,9,999999999,140,0.0610,0,88,0.170,0.0,1.0 +2000,3,1,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,-2.8,21,97500,253,1392,338,189,480,102,18600,33900,12400,2010,270,5.2,3,3,16.0,77777,9,999999999,140,0.0610,0,88,0.170,0.0,1.0 +2000,3,1,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,-1.7,25,97600,21,545,334,0,0,0,0,0,0,0,270,5.2,3,3,16.0,77777,9,999999999,140,0.0610,0,88,0.170,0.0,1.0 +2000,3,1,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,0.0,30,97700,0,0,320,0,0,0,0,0,0,0,260,3.6,0,0,16.0,77777,9,999999999,140,0.0610,0,88,0.170,0.0,1.0 +2000,3,1,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,0.0,32,97700,0,0,315,0,0,0,0,0,0,0,270,1.5,0,0,16.0,77777,9,999999999,150,0.0610,0,88,0.170,0.0,1.0 +2000,3,1,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,0.0,36,97700,0,0,308,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,150,0.0610,0,88,0.170,0.0,1.0 +2000,3,1,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,0.6,40,97800,0,0,304,0,0,0,0,0,0,0,300,2.1,0,0,16.0,77777,9,999999999,150,0.0610,0,88,0.170,0.0,1.0 +2000,3,1,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,1.1,43,97700,0,0,302,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,150,0.0610,0,88,0.170,0.0,1.0 +2000,3,2,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,1.1,48,97700,0,0,295,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,140,0.0630,0,88,0.170,0.0,1.0 +2000,3,2,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,1.7,52,97700,0,0,293,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,140,0.0630,0,88,0.170,0.0,1.0 +2000,3,2,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,1.1,50,97700,0,0,292,0,0,0,0,0,0,0,170,1.5,0,0,16.0,77777,9,999999999,130,0.0630,0,88,0.170,0.0,1.0 +2000,3,2,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,1.1,54,97600,0,0,288,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,120,0.0630,0,88,0.170,0.0,1.0 +2000,3,2,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,1.1,56,97800,0,0,286,0,0,0,0,0,0,0,120,2.1,0,0,16.0,77777,9,999999999,120,0.0630,0,88,0.170,0.0,1.0 +2000,3,2,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,2.2,61,97700,0,0,287,0,0,0,0,0,0,0,140,2.6,0,0,16.0,77777,9,999999999,110,0.0630,0,88,0.170,0.0,1.0 +2000,3,2,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,0.0,52,97700,1,104,284,0,0,0,0,0,0,0,190,3.6,0,0,16.0,77777,9,999999999,110,0.0630,0,88,0.170,0.0,1.0 +2000,3,2,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,0.6,50,97800,160,1392,290,61,305,26,6300,18500,4200,480,90,4.1,0,0,16.0,77777,9,999999999,100,0.0630,0,88,0.170,0.0,1.0 +2000,3,2,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,1.7,44,97900,439,1392,305,278,680,62,28400,61200,9000,1180,60,4.1,0,0,16.0,7620,9,999999999,100,0.0630,0,88,0.170,0.0,1.0 +2000,3,2,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,0.6,36,98000,685,1392,311,480,801,85,50300,78400,11600,1810,100,4.1,0,0,16.0,7620,9,999999999,90,0.0630,0,88,0.170,0.0,1.0 +2000,3,2,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,0.6,33,98000,878,1392,318,669,877,114,70100,87600,14700,2710,130,2.6,0,0,16.0,77777,9,999999999,80,0.0630,0,88,0.170,0.0,1.0 +2000,3,2,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,1.1,30,97900,1005,1392,326,765,911,105,79200,90800,13300,2590,160,2.6,0,0,16.0,77777,9,999999999,90,0.0630,0,88,0.170,0.0,1.0 +2000,3,2,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,0.6,28,97800,1057,1392,328,813,901,127,83700,89900,15200,3020,180,1.5,0,0,16.0,77777,9,999999999,90,0.0630,0,88,0.170,0.0,1.0 +2000,3,2,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,-0.6,25,97700,1031,1392,329,770,805,172,81900,82100,20900,5300,210,2.1,0,0,16.0,77777,9,999999999,100,0.0630,0,88,0.170,0.0,1.0 +2000,3,2,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,-0.6,23,97600,929,1392,334,709,895,110,75200,90000,14900,2850,0,0.0,0,0,16.0,77777,9,999999999,100,0.0630,0,88,0.170,0.0,1.0 +2000,3,2,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,-1.1,22,97600,757,1392,333,572,867,99,59700,85600,13000,2140,360,2.1,0,0,16.0,77777,9,999999999,110,0.0630,0,88,0.170,0.0,1.0 +2000,3,2,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,-1.1,21,97500,527,1392,336,395,755,108,40600,70100,13900,2030,0,0.0,0,0,16.0,77777,9,999999999,110,0.0630,0,88,0.170,0.0,1.0 +2000,3,2,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,-0.6,23,97500,257,1392,334,183,433,103,18000,30800,12300,2020,0,0.0,0,0,16.0,77777,9,999999999,120,0.0630,0,88,0.170,0.0,1.0 +2000,3,2,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,-0.6,25,97400,23,568,329,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,120,0.0630,0,88,0.170,0.0,1.0 +2000,3,2,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,0.0,29,97400,0,0,322,0,0,0,0,0,0,0,20,1.5,0,0,16.0,77777,9,999999999,120,0.0630,0,88,0.170,0.0,1.0 +2000,3,2,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,0.0,30,97400,0,0,320,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,130,0.0630,0,88,0.170,0.0,1.0 +2000,3,2,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,-0.6,33,97400,0,0,310,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,130,0.0630,0,88,0.170,0.0,1.0 +2000,3,2,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,0.6,37,97400,0,0,308,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,140,0.0630,0,88,0.170,0.0,1.0 +2000,3,2,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,-0.6,37,97400,0,0,302,0,0,0,0,0,0,0,150,1.5,0,0,16.0,77777,9,999999999,140,0.0630,0,88,0.170,0.0,1.0 +2000,3,3,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,0.6,42,97400,0,0,301,0,0,0,0,0,0,0,120,2.1,0,0,16.0,77777,9,999999999,130,0.0640,0,88,0.170,0.0,1.0 +2000,3,3,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,0.6,48,97300,0,0,292,0,0,0,0,0,0,0,120,2.1,0,0,16.0,77777,9,999999999,130,0.0640,0,88,0.170,0.0,1.0 +2000,3,3,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,0.6,50,97300,0,0,290,0,0,0,0,0,0,0,110,1.5,0,0,16.0,77777,9,999999999,130,0.0640,0,88,0.170,0.0,1.0 +2000,3,3,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,0.6,52,97300,0,0,287,0,0,0,0,0,0,0,120,2.1,0,0,16.0,77777,9,999999999,130,0.0640,0,88,0.170,0.0,1.0 +2000,3,3,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,-0.6,47,97400,0,0,286,0,0,0,0,0,0,0,110,2.6,0,0,16.0,77777,9,999999999,120,0.0640,0,88,0.170,0.0,1.0 +2000,3,3,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,-0.6,41,97300,0,0,295,0,0,0,0,0,0,0,80,3.1,0,0,16.0,77777,9,999999999,120,0.0640,0,88,0.170,0.0,1.0 +2000,3,3,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,-1.1,45,97400,1,127,286,0,0,0,0,0,0,0,110,2.1,0,0,16.0,77777,9,999999999,120,0.0640,0,88,0.170,0.0,1.0 +2000,3,3,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,-1.1,41,97500,166,1391,293,70,397,22,7100,26500,4000,450,110,3.1,0,0,16.0,77777,9,999999999,120,0.0640,0,88,0.170,0.0,1.0 +2000,3,3,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,0.0,36,97500,446,1391,308,284,692,61,29100,62600,9000,1180,100,3.6,0,0,16.0,77777,9,999999999,120,0.0640,0,88,0.170,0.0,1.0 +2000,3,3,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,-0.6,30,97500,691,1391,316,481,807,79,50800,79300,11300,1740,100,3.1,0,0,16.0,77777,9,999999999,110,0.0640,0,88,0.170,0.0,1.0 +2000,3,3,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,-1.1,24,97500,884,1391,328,653,848,113,68600,84800,14600,2720,110,4.6,0,0,16.0,77777,9,999999999,110,0.0640,0,88,0.170,0.0,1.0 +2000,3,3,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,-1.1,21,97400,1011,1391,338,736,816,142,76900,81800,17300,3870,110,4.1,0,0,16.0,77777,9,999999999,110,0.0640,0,88,0.170,0.0,1.0 +2000,3,3,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,-1.1,19,97300,1063,1391,355,795,865,132,84200,87300,17300,4090,150,3.1,3,2,16.0,77777,9,999999999,120,0.0640,0,88,0.170,0.0,1.0 +2000,3,3,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,-0.6,18,97200,1036,1391,373,789,872,137,83000,87700,17400,3980,190,3.1,5,5,16.0,77777,9,999999999,120,0.0640,0,88,0.170,0.0,1.0 +2000,3,3,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,-1.7,16,97200,934,1391,360,689,809,144,71000,80400,16800,3390,200,2.1,1,1,16.0,77777,9,999999999,130,0.0640,0,88,0.170,0.0,1.0 +2000,3,3,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,-1.1,16,97100,761,1391,356,557,785,125,58600,78300,15500,2800,210,3.1,0,0,16.0,77777,9,999999999,130,0.0640,0,88,0.170,0.0,1.0 +2000,3,3,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,-1.1,16,96900,532,1391,356,393,746,107,40400,69500,13800,2020,220,3.1,0,0,16.0,77777,9,999999999,130,0.0640,0,88,0.170,0.0,1.0 +2000,3,3,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,-0.6,17,97000,261,1391,357,199,476,109,19400,34100,13000,2160,0,0.0,0,0,16.0,77777,9,999999999,140,0.0640,0,88,0.170,0.0,1.0 +2000,3,3,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,-1.1,19,97000,24,591,346,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,140,0.0640,0,88,0.170,0.0,1.0 +2000,3,3,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,-1.1,21,97100,0,0,338,0,0,0,0,0,0,0,270,3.1,0,0,16.0,77777,9,999999999,140,0.0640,0,88,0.170,0.0,1.0 +2000,3,3,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,-1.1,22,97100,0,0,333,0,0,0,0,0,0,0,270,2.6,0,0,16.0,77777,9,999999999,150,0.0640,0,88,0.170,0.0,1.0 +2000,3,3,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,-0.6,24,97200,0,0,332,0,0,0,0,0,0,0,270,3.1,0,0,16.0,77777,9,999999999,150,0.0640,0,88,0.170,0.0,1.0 +2000,3,3,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,0.0,28,97200,0,0,325,0,0,0,0,0,0,0,290,3.6,0,0,16.0,77777,9,999999999,160,0.0640,0,88,0.170,0.0,1.0 +2000,3,3,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,0.0,32,97200,0,0,315,0,0,0,0,0,0,0,310,2.6,0,0,16.0,77777,9,999999999,150,0.0640,0,88,0.170,0.0,1.0 +2000,3,4,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,0.6,35,97200,0,0,313,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,150,0.0650,0,88,0.170,0.0,1.0 +2000,3,4,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,0.6,37,97200,0,0,308,0,0,0,0,0,0,0,100,2.1,0,0,16.0,77777,9,999999999,150,0.0650,0,88,0.170,0.0,1.0 +2000,3,4,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,1.1,42,97100,0,0,304,0,0,0,0,0,0,0,120,1.5,0,0,16.0,77777,9,999999999,150,0.0650,0,88,0.170,0.0,1.0 +2000,3,4,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,1.7,45,97100,0,0,302,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,150,0.0650,0,88,0.170,0.0,1.0 +2000,3,4,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,1.7,49,97000,0,0,298,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,150,0.0650,0,88,0.170,0.0,1.0 +2000,3,4,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,1.7,50,97000,0,0,296,0,0,0,0,0,0,0,10,2.1,0,0,16.0,77777,9,999999999,150,0.0650,0,88,0.170,0.0,1.0 +2000,3,4,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,0.6,45,97000,2,151,296,0,0,0,0,0,0,0,110,2.6,0,0,16.0,77777,9,999999999,140,0.0650,0,88,0.170,0.0,1.0 +2000,3,4,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,-0.6,38,97100,172,1390,300,74,415,22,7600,28100,4100,450,100,3.1,0,0,16.0,77777,9,999999999,140,0.0650,0,88,0.170,0.0,1.0 +2000,3,4,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,0.0,34,97100,452,1390,310,294,727,57,30500,66200,8900,1150,110,4.6,0,0,16.0,77777,9,999999999,140,0.0650,0,88,0.170,0.0,1.0 +2000,3,4,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,0.6,31,97100,697,1390,320,502,825,87,52600,80900,11800,1860,140,2.6,0,0,16.0,77777,9,999999999,140,0.0650,0,88,0.170,0.0,1.0 +2000,3,4,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,1.1,28,97000,890,1390,331,654,836,117,68500,83500,14800,2810,70,2.1,0,0,16.0,77777,9,999999999,140,0.0650,0,88,0.170,0.0,1.0 +2000,3,4,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,1.1,25,97000,1016,1390,339,765,881,119,81500,89000,16200,3470,160,1.5,1,0,16.0,7620,9,999999999,130,0.0650,0,88,0.170,0.0,1.0 +2000,3,4,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,2.2,27,96900,1068,1390,349,819,769,227,85800,77600,26000,7290,240,4.1,3,1,16.0,6096,9,999999999,130,0.0650,0,88,0.170,0.0,1.0 +2000,3,4,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,2.8,28,96800,1041,1390,354,454,115,368,50000,11800,41100,13540,260,5.2,3,2,16.0,6096,9,999999999,130,0.0650,0,88,0.170,0.0,1.0 +2000,3,4,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,3.3,31,96700,938,1390,356,522,282,331,55800,30200,35300,9380,280,6.2,6,4,16.0,6096,9,999999999,120,0.0650,0,88,0.170,0.0,1.0 +2000,3,4,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,3.9,32,96700,766,1390,359,337,113,274,36900,11400,30600,8240,270,6.7,8,5,16.0,6096,9,999999999,120,0.0650,0,88,0.170,0.0,1.0 +2000,3,4,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,5.0,39,96700,536,1390,356,62,0,62,7500,0,7500,2790,290,7.2,9,6,14.4,4267,9,999999999,120,0.0650,0,88,0.170,0.0,1.0 +2000,3,4,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,5.0,41,96800,265,1390,350,193,254,144,20000,18900,16400,3100,290,4.1,10,6,16.0,4267,9,999999999,110,0.0650,0,88,0.170,0.0,1.0 +2000,3,4,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,5.0,43,96800,26,614,352,0,0,0,0,0,0,0,290,4.6,9,7,16.0,4267,9,999999999,110,0.0650,0,88,0.170,0.0,1.0 +2000,3,4,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,6.1,48,96800,0,0,350,0,0,0,0,0,0,0,290,3.6,10,7,16.0,4267,9,999999999,100,0.0650,0,88,0.170,0.0,1.0 +2000,3,4,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,5.6,46,96900,0,0,363,0,0,0,0,0,0,0,290,1.5,10,9,16.0,3353,9,999999999,100,0.0650,0,88,0.170,0.0,1.0 +2000,3,4,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,4.4,43,96900,0,0,372,0,0,0,0,0,0,0,180,3.6,10,10,16.0,2134,9,999999999,100,0.0650,0,88,0.170,0.0,1.0 +2000,3,4,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,7.2,62,96900,0,0,361,0,0,0,0,0,0,0,180,3.1,10,10,14.4,1981,9,999999999,90,0.0650,0,88,0.170,0.0,1.0 +2000,3,4,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,8.3,67,96900,0,0,362,0,0,0,0,0,0,0,0,0.0,10,10,16.0,1676,9,999999999,100,0.0650,0,88,0.170,0.0,1.0 +2000,3,5,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,1.1,42,96900,0,0,334,0,0,0,0,0,0,0,250,4.1,9,8,16.0,3048,9,999999999,100,0.0660,0,88,0.170,0.0,1.0 +2000,3,5,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,1.7,47,96800,0,0,337,0,0,0,0,0,0,0,0,0.0,9,9,16.0,3048,9,999999999,100,0.0660,0,88,0.170,0.0,1.0 +2000,3,5,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,7.2,74,96800,0,0,338,0,0,0,0,0,0,0,50,1.5,9,9,16.0,3048,9,999999999,110,0.0660,0,88,0.170,0.0,1.0 +2000,3,5,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,7.8,80,96800,0,0,336,0,0,0,0,0,0,0,90,3.6,9,9,16.0,3048,9,999999999,110,0.0660,0,88,0.170,0.0,1.0 +2000,3,5,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,6.7,80,96900,0,0,339,0,0,0,0,0,0,0,100,1.5,10,10,16.0,1524,9,999999999,110,0.0660,0,88,0.170,0.0,1.0 +2000,3,5,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,7.8,86,96900,0,0,324,0,0,0,0,0,0,0,100,2.1,8,8,16.0,3048,9,999999999,110,0.0660,0,88,0.170,0.0,1.0 +2000,3,5,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,8.3,89,96900,2,197,324,0,0,0,0,0,0,0,130,4.1,8,8,16.0,3048,9,999999999,120,0.0660,0,88,0.170,0.0,1.0 +2000,3,5,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,7.2,79,97000,178,1389,342,17,0,17,2000,0,2000,680,140,4.6,10,10,16.0,1524,9,999999999,120,0.0660,0,88,0.170,0.0,1.0 +2000,3,5,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,7.2,77,97000,458,1389,345,158,60,138,17300,5600,15400,3650,140,5.2,10,10,16.0,1524,9,999999999,120,0.0660,0,88,0.170,0.0,1.0 +2000,3,5,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,7.2,71,97100,703,1389,350,246,46,223,27100,4600,24700,6660,150,5.7,10,10,16.0,2743,9,999999999,130,0.0660,0,88,0.170,0.0,1.0 +2000,3,5,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,8.9,80,97200,896,1389,335,109,0,109,13400,0,13400,5490,150,6.7,8,8,14.4,1524,9,999999999,130,0.0660,0,88,0.170,0.0,1.0 +2000,3,5,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,7.8,80,97100,1022,1389,345,178,0,178,21500,0,21500,8790,240,6.7,10,10,8.0,1219,9,999999999,130,0.0660,0,88,0.170,7.0,1.0 +2000,3,5,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,7.8,72,97000,1073,1389,354,187,0,187,22700,0,22700,9300,280,2.6,10,10,16.0,1829,9,999999999,130,0.0660,0,88,0.170,0.0,1.0 +2000,3,5,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,8.3,77,97000,1047,1389,351,410,85,346,45200,8700,38600,12960,300,2.1,10,10,14.4,1676,9,999999999,120,0.0660,0,88,0.170,0.0,1.0 +2000,3,5,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,9.4,80,96900,943,1389,356,114,0,114,14100,0,14100,5810,20,3.6,10,10,16.0,1524,9,999999999,120,0.0660,0,88,0.170,0.0,1.0 +2000,3,5,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,8.3,69,96900,771,1389,360,132,0,132,15700,0,15700,6110,190,6.2,10,10,12.8,1676,9,999999999,120,0.0660,0,88,0.170,0.0,1.0 +2000,3,5,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,6.7,62,96900,541,1389,358,89,0,89,10500,0,10500,3810,160,4.6,10,10,16.0,1676,9,999999999,120,0.0660,0,88,0.170,0.0,1.0 +2000,3,5,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,8.3,72,96900,269,1389,357,208,299,150,20700,21700,16500,3540,100,4.1,10,10,16.0,1676,9,999999999,120,0.0660,0,88,0.170,0.0,1.0 +2000,3,5,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,8.9,80,96900,28,637,352,0,0,0,0,0,0,0,70,2.6,10,10,12.8,1676,9,999999999,110,0.0660,0,88,0.170,0.0,1.0 +2000,3,5,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,10.0,93,96900,0,0,348,0,0,0,0,0,0,0,80,2.1,10,10,9.6,1524,9,999999999,110,0.0660,0,88,0.170,3.0,1.0 +2000,3,5,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,10.0,93,96800,0,0,348,0,0,0,0,0,0,0,80,2.1,10,10,9.6,1341,9,999999999,110,0.0660,0,88,0.170,2.0,1.0 +2000,3,5,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,10.0,93,96900,0,0,348,0,0,0,0,0,0,0,90,4.6,10,10,8.0,1676,9,999999999,110,0.0660,0,88,0.170,2.0,1.0 +2000,3,5,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,10.0,93,96900,0,0,348,0,0,0,0,0,0,0,80,4.1,10,10,11.2,1676,9,999999999,110,0.0660,0,88,0.170,2.0,1.0 +2000,3,5,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,10.0,93,96800,0,0,348,0,0,0,0,0,0,0,100,5.2,10,10,9.6,1433,9,999999999,100,0.0660,0,88,0.170,2.0,1.0 +2000,3,6,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,10.0,100,96900,0,0,343,0,0,0,0,0,0,0,260,5.2,10,10,8.0,1219,9,999999999,100,0.0670,0,88,0.170,3.0,1.0 +2000,3,6,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,8.3,96,96900,0,0,335,0,0,0,0,0,0,0,270,4.6,10,10,6.4,853,9,999999999,100,0.0670,0,88,0.170,8.0,1.0 +2000,3,6,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,7.2,89,96900,0,0,334,0,0,0,0,0,0,0,260,4.6,10,10,16.0,1524,9,999999999,100,0.0670,0,88,0.170,1.0,1.0 +2000,3,6,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,7.2,93,96900,0,0,331,0,0,0,0,0,0,0,270,2.1,10,10,9.6,1676,9,999999999,100,0.0670,0,88,0.170,1.0,1.0 +2000,3,6,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,7.2,96,97100,0,0,329,0,0,0,0,0,0,0,0,0.0,10,10,9.6,1676,9,999999999,100,0.0670,0,88,0.170,2.0,1.0 +2000,3,6,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,6.7,93,97000,0,0,328,0,0,0,0,0,0,0,80,3.1,10,10,16.0,1006,9,999999999,90,0.0670,0,88,0.170,1.0,1.0 +2000,3,6,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,6.7,97,97100,3,220,326,0,0,0,0,0,0,0,80,4.6,10,10,16.0,1067,9,999999999,90,0.0670,0,88,0.170,1.0,1.0 +2000,3,6,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,6.1,93,97200,185,1389,325,12,0,12,1500,0,1500,490,90,5.7,10,10,16.0,1158,9,999999999,90,0.0670,0,88,0.170,1.0,1.0 +2000,3,6,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,6.1,93,97300,464,1389,325,47,0,47,5700,0,5700,2090,100,4.6,10,10,9.6,1006,9,999999999,90,0.0670,0,88,0.170,1.0,1.0 +2000,3,6,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,6.1,93,97300,710,1389,325,81,0,81,9900,0,9900,3890,90,3.1,10,10,9.6,1006,9,999999999,90,0.0670,0,88,0.170,1.0,1.0 +2000,3,6,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,6.1,93,97400,902,1389,325,109,0,109,13400,0,13400,5500,90,5.2,10,10,9.6,1006,9,999999999,90,0.0670,0,88,0.170,1.0,1.0 +2000,3,6,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,5.0,86,97300,1028,1389,324,127,0,127,15800,0,15800,6570,80,3.6,10,10,14.4,1006,9,999999999,90,0.0670,0,88,0.170,1.0,1.0 +2000,3,6,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,6.1,89,97200,1079,1389,328,133,0,133,16600,0,16600,6940,110,3.1,10,10,9.6,914,9,999999999,90,0.0670,0,88,0.170,1.0,1.0 +2000,3,6,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,5.6,86,97200,1052,1389,327,133,0,133,16500,0,16500,6890,140,2.6,10,10,11.2,853,9,999999999,90,0.0670,0,88,0.170,1.0,1.0 +2000,3,6,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,5.0,86,97100,948,1389,324,114,0,114,14100,0,14100,5820,120,1.5,10,10,9.6,1006,9,999999999,90,0.0670,0,88,0.170,1.0,1.0 +2000,3,6,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,6.1,93,97100,775,1389,325,95,0,95,11600,0,11600,4620,0,0.0,10,10,8.0,1067,9,999999999,90,0.0670,0,88,0.170,0.0,1.0 +2000,3,6,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,6.1,93,97200,545,1389,325,88,0,88,10400,0,10400,3790,0,0.0,10,10,9.6,945,9,999999999,90,0.0670,0,88,0.170,1.0,1.0 +2000,3,6,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,6.7,93,97100,273,1389,328,101,0,101,10900,0,10900,2930,0,0.0,10,10,12.8,884,9,999999999,90,0.0670,0,88,0.170,1.0,1.0 +2000,3,6,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,6.7,93,97000,29,636,328,0,0,0,0,0,0,0,60,2.1,10,10,14.4,1219,9,999999999,90,0.0670,0,88,0.170,1.0,1.0 +2000,3,6,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,6.1,93,97000,0,0,325,0,0,0,0,0,0,0,60,1.5,10,10,16.0,1280,9,999999999,90,0.0670,0,88,0.170,0.0,1.0 +2000,3,6,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,6.7,97,97000,0,0,326,0,0,0,0,0,0,0,300,1.5,10,10,11.2,823,9,999999999,90,0.0670,0,88,0.170,0.0,1.0 +2000,3,6,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,6.7,97,97000,0,0,310,0,0,0,0,0,0,0,290,1.5,10,8,12.8,640,9,999999999,90,0.0670,0,88,0.170,1.0,1.0 +2000,3,6,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,6.7,97,97100,0,0,326,0,0,0,0,0,0,0,310,2.6,10,10,9.6,640,9,999999999,100,0.0670,0,88,0.170,0.0,1.0 +2000,3,6,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,6.7,100,97000,0,0,323,0,0,0,0,0,0,0,310,2.1,10,10,8.0,549,9,999999999,90,0.0670,0,88,0.170,0.0,1.0 +2000,3,7,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,6.1,96,97100,0,0,323,0,0,0,0,0,0,0,260,3.6,10,10,8.0,914,9,999999999,90,0.0690,0,88,0.170,1.0,1.0 +2000,3,7,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,5.6,97,97100,0,0,319,0,0,0,0,0,0,0,260,3.1,10,10,9.6,914,9,999999999,90,0.0690,0,88,0.170,0.0,1.0 +2000,3,7,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,5.6,97,97100,0,0,319,0,0,0,0,0,0,0,270,3.6,10,10,12.8,1036,9,999999999,90,0.0690,0,88,0.170,1.0,1.0 +2000,3,7,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,5.0,93,97200,0,0,319,0,0,0,0,0,0,0,250,4.1,10,10,14.4,1280,9,999999999,90,0.0690,0,88,0.170,0.0,1.0 +2000,3,7,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,5.6,97,97400,0,0,319,0,0,0,0,0,0,0,230,3.1,10,10,9.6,1006,9,999999999,80,0.0690,0,88,0.170,1.0,1.0 +2000,3,7,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,5.6,97,97400,0,0,319,0,0,0,0,0,0,0,260,2.6,10,10,14.4,1341,9,999999999,80,0.0690,0,88,0.170,1.0,1.0 +2000,3,7,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,5.0,93,97400,4,243,319,0,0,0,0,0,0,0,0,0.0,10,10,16.0,1219,9,999999999,80,0.0690,0,88,0.170,0.0,1.0 +2000,3,7,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,5.0,89,97500,191,1388,321,53,57,45,5800,3700,5300,950,0,0.0,10,10,16.0,1067,9,999999999,80,0.0690,0,88,0.170,0.0,1.0 +2000,3,7,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,5.6,93,97600,471,1388,322,194,143,146,21100,13500,16500,3320,70,2.6,10,10,16.0,1219,9,999999999,80,0.0690,0,88,0.170,0.0,1.0 +2000,3,7,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,5.6,90,97700,716,1388,324,121,0,121,14400,0,14400,5510,90,2.1,10,10,16.0,1219,9,999999999,80,0.0690,0,88,0.170,0.0,1.0 +2000,3,7,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,5.6,86,97900,908,1388,327,202,6,198,23800,500,23500,9120,30,1.5,10,10,16.0,1219,9,999999999,70,0.0690,0,88,0.170,0.0,1.0 +2000,3,7,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,5.6,83,97900,1033,1388,329,236,6,232,28100,500,27700,10940,290,3.6,10,10,16.0,1067,9,999999999,80,0.0690,0,88,0.170,0.0,1.0 +2000,3,7,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,5.6,77,98000,1084,1388,335,452,102,372,49800,10500,41600,14350,330,2.1,10,10,16.0,610,9,999999999,90,0.0690,0,88,0.170,0.0,1.0 +2000,3,7,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,6.1,74,98000,1057,1388,325,599,279,387,64400,30100,41400,12840,0,0.0,8,8,16.0,1067,9,999999999,90,0.0690,0,88,0.170,0.0,1.0 +2000,3,7,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,5.0,63,98000,953,1388,328,541,294,338,57800,31600,36100,9750,0,0.0,8,8,16.0,1219,9,999999999,100,0.0690,0,88,0.170,0.0,1.0 +2000,3,7,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,5.6,62,98100,780,1388,334,554,627,201,58500,63800,22500,4550,40,2.6,8,8,16.0,1219,9,999999999,110,0.0690,0,88,0.170,0.0,1.0 +2000,3,7,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,6.1,64,98100,549,1388,320,405,748,108,41700,70300,13800,2070,80,3.1,4,4,16.0,7620,9,999999999,110,0.0690,0,88,0.170,0.0,1.0 +2000,3,7,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,5.6,64,98100,277,1388,320,196,480,100,19500,35600,12400,1930,60,2.1,5,5,16.0,7620,9,999999999,120,0.0690,0,88,0.170,0.0,1.0 +2000,3,7,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,5.6,69,98100,31,659,315,0,0,0,0,0,0,0,80,2.6,5,5,16.0,77777,9,999999999,130,0.0690,0,88,0.170,0.0,1.0 +2000,3,7,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,5.6,71,98100,0,0,308,0,0,0,0,0,0,0,80,2.1,3,3,16.0,77777,9,999999999,130,0.0690,0,88,0.170,0.0,1.0 +2000,3,7,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,5.0,71,98200,0,0,304,0,0,0,0,0,0,0,70,2.6,3,3,16.0,77777,9,999999999,140,0.0690,0,88,0.170,0.0,1.0 +2000,3,7,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,5.0,74,98200,0,0,302,0,0,0,0,0,0,0,0,0.0,3,3,16.0,77777,9,999999999,150,0.0690,0,88,0.170,0.0,1.0 +2000,3,7,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,5.0,74,98300,0,0,302,0,0,0,0,0,0,0,90,3.1,3,3,16.0,77777,9,999999999,150,0.0690,0,88,0.170,0.0,1.0 +2000,3,7,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,5.6,83,98200,0,0,298,0,0,0,0,0,0,0,120,2.6,4,3,16.0,77777,9,999999999,150,0.0690,0,88,0.170,0.0,1.0 +2000,3,8,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,4.4,76,98100,0,0,290,0,0,0,0,0,0,0,100,3.6,2,1,16.0,77777,9,999999999,140,0.0700,0,88,0.170,0.0,1.0 +2000,3,8,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,4.4,79,98100,0,0,292,0,0,0,0,0,0,0,100,2.6,3,2,16.0,7620,9,999999999,140,0.0700,0,88,0.170,0.0,1.0 +2000,3,8,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,4.4,79,98100,0,0,292,0,0,0,0,0,0,0,100,2.6,6,2,16.0,77777,9,999999999,130,0.0700,0,88,0.170,0.0,1.0 +2000,3,8,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,4.4,85,98000,0,0,278,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,130,0.0700,0,88,0.170,0.0,1.0 +2000,3,8,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,4.4,85,98100,0,0,278,0,0,0,0,0,0,0,130,2.1,0,0,16.0,77777,9,999999999,120,0.0700,0,88,0.170,0.0,1.0 +2000,3,8,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,4.4,85,98000,0,0,278,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,120,0.0700,0,88,0.170,0.0,1.0 +2000,3,8,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,3.9,86,98100,5,266,275,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,110,0.0700,0,88,0.170,0.0,1.0 +2000,3,8,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,4.4,76,98100,197,1387,284,93,453,28,9400,32000,4900,550,0,0.0,0,0,16.0,77777,9,999999999,110,0.0700,0,88,0.170,0.0,1.0 +2000,3,8,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,4.4,65,98200,477,1387,294,312,721,64,32300,66300,9400,1260,70,3.1,0,0,16.0,77777,9,999999999,100,0.0700,0,88,0.170,0.0,1.0 +2000,3,8,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,4.4,59,98200,722,1387,300,526,873,70,55000,85400,10400,1590,80,2.6,0,0,16.0,77777,9,999999999,90,0.0700,0,88,0.170,0.0,1.0 +2000,3,8,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,5.0,55,98200,914,1387,308,689,884,105,73300,89000,14500,2710,70,3.1,0,0,16.0,77777,9,999999999,90,0.0700,0,88,0.170,0.0,1.0 +2000,3,8,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,5.0,51,98100,1039,1387,313,813,959,92,84400,95900,12400,2630,40,3.1,0,0,16.0,77777,9,999999999,90,0.0700,0,88,0.170,0.0,1.0 +2000,3,8,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,3.9,44,98000,1089,1387,330,862,967,100,89300,96800,13100,3010,0,0.0,3,3,16.0,77777,9,999999999,90,0.0700,0,88,0.170,0.0,1.0 +2000,3,8,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,2.8,38,97900,1062,1387,334,826,896,139,87200,90300,17900,4250,120,4.1,3,3,16.0,77777,9,999999999,90,0.0700,0,88,0.170,0.0,1.0 +2000,3,8,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,2.8,38,97800,957,1387,334,721,790,174,76000,80000,20600,4750,150,3.1,3,3,16.0,7620,9,999999999,90,0.0700,0,88,0.170,0.0,1.0 +2000,3,8,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,3.3,39,97800,784,1387,337,539,577,212,56600,58700,23300,4840,240,2.1,6,4,16.0,7620,9,999999999,100,0.0700,0,88,0.170,0.0,1.0 +2000,3,8,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,3.9,41,97800,553,1387,341,280,187,206,30100,18300,22800,4830,270,2.1,5,5,16.0,3658,9,999999999,100,0.0700,0,88,0.170,0.0,1.0 +2000,3,8,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,4.4,44,97800,281,1387,351,115,28,109,12500,2300,12000,2440,0,0.0,8,8,16.0,3658,9,999999999,100,0.0700,0,88,0.170,0.0,1.0 +2000,3,8,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,5.0,46,97800,33,682,352,0,0,0,0,0,0,0,0,0.0,9,8,16.0,3658,9,999999999,100,0.0700,0,88,0.170,0.0,1.0 +2000,3,8,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,5.0,49,97800,0,0,334,0,0,0,0,0,0,0,0,0.0,5,5,16.0,77777,9,999999999,100,0.0700,0,88,0.170,0.0,1.0 +2000,3,8,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,5.6,55,97900,0,0,311,0,0,0,0,0,0,0,320,1.5,0,0,16.0,77777,9,999999999,100,0.0700,0,88,0.170,0.0,1.0 +2000,3,8,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,6.1,62,97900,0,0,307,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,100,0.0700,0,88,0.170,0.0,1.0 +2000,3,8,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,6.1,62,98000,0,0,307,0,0,0,0,0,0,0,250,1.5,0,0,16.0,77777,9,999999999,110,0.0700,0,88,0.170,0.0,1.0 +2000,3,8,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,6.1,64,97900,0,0,318,0,0,0,0,0,0,0,0,0.0,4,3,16.0,77777,9,999999999,100,0.0700,0,88,0.170,0.0,1.0 +2000,3,9,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,6.7,74,97900,0,0,308,0,0,0,0,0,0,0,0,0.0,4,2,16.0,6096,9,999999999,100,0.0710,0,88,0.170,0.0,1.0 +2000,3,9,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,7.2,79,97900,0,0,309,0,0,0,0,0,0,0,60,1.5,4,3,16.0,77777,9,999999999,100,0.0710,0,88,0.170,0.0,1.0 +2000,3,9,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,7.2,83,97900,0,0,330,0,0,0,0,0,0,0,100,1.5,9,9,16.0,6096,9,999999999,100,0.0710,0,88,0.170,0.0,1.0 +2000,3,9,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,6.7,80,97900,0,0,339,0,0,0,0,0,0,0,80,1.5,10,10,16.0,6096,9,999999999,90,0.0710,0,88,0.170,0.0,1.0 +2000,3,9,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,7.2,83,98000,0,0,312,0,0,0,0,0,0,0,70,1.5,7,5,16.0,6096,9,999999999,90,0.0710,0,88,0.170,0.0,1.0 +2000,3,9,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,7.2,86,98000,0,0,304,0,0,0,0,0,0,0,0,0.0,5,3,16.0,6096,9,999999999,90,0.0710,0,88,0.170,0.0,1.0 +2000,3,9,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,7.2,86,98000,6,312,304,0,0,0,0,0,0,0,0,0.0,5,3,16.0,3962,9,999999999,90,0.0710,0,88,0.170,0.0,1.0 +2000,3,9,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,7.2,79,98100,204,1386,309,97,471,28,9900,33700,5000,560,90,2.1,4,3,14.4,3962,9,999999999,80,0.0710,0,88,0.170,0.0,1.0 +2000,3,9,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,7.2,69,98100,483,1386,324,314,711,65,32400,65600,9400,1280,50,2.1,5,5,11.2,77777,9,999999999,80,0.0710,0,88,0.170,0.0,1.0 +2000,3,9,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,6.7,60,98100,728,1386,326,532,845,87,56000,83400,12100,1930,0,0.0,3,3,14.4,77777,9,999999999,80,0.0710,0,88,0.170,0.0,1.0 +2000,3,9,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,6.1,51,98200,919,1386,333,700,873,120,73500,87400,15400,2990,0,0.0,3,3,16.0,77777,9,999999999,80,0.0710,0,88,0.170,0.0,1.0 +2000,3,9,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,6.1,48,98100,1044,1386,343,761,739,203,80200,74900,23600,6340,310,3.1,5,5,16.0,77777,9,999999999,80,0.0710,0,88,0.170,0.0,1.0 +2000,3,9,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,5.0,43,98100,1095,1386,342,844,901,131,86800,90000,15500,3380,270,2.1,4,4,16.0,77777,9,999999999,80,0.0710,0,88,0.170,0.0,1.0 +2000,3,9,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,4.4,38,98000,1067,1386,349,845,926,131,86900,92400,15600,3140,220,3.6,5,5,16.0,7620,9,999999999,90,0.0710,0,88,0.170,0.0,1.0 +2000,3,9,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,4.4,38,98000,962,1386,349,707,735,196,74000,74000,22500,5310,310,3.6,5,5,16.0,7620,9,999999999,90,0.0710,0,88,0.170,0.0,1.0 +2000,3,9,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,3.3,35,97900,788,1386,343,560,677,174,57800,66800,19700,3800,310,1.5,3,3,16.0,7620,9,999999999,90,0.0710,0,88,0.170,0.0,1.0 +2000,3,9,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,3.9,37,97900,557,1386,346,349,506,145,36400,48500,16800,2870,300,3.1,6,4,16.0,7620,9,999999999,90,0.0710,0,88,0.170,0.0,1.0 +2000,3,9,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,3.3,37,97900,285,1386,342,186,386,107,18500,29000,12500,2090,290,3.1,6,4,16.0,7620,9,999999999,100,0.0710,0,88,0.170,0.0,1.0 +2000,3,9,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,3.9,41,97900,35,705,328,0,56,0,0,0,0,0,280,3.1,2,1,16.0,7620,9,999999999,100,0.0710,0,88,0.170,0.0,1.0 +2000,3,9,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,5.0,46,97900,0,0,331,0,0,0,0,0,0,0,290,2.6,2,2,16.0,77777,9,999999999,100,0.0710,0,88,0.170,0.0,1.0 +2000,3,9,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,5.0,49,97900,0,0,316,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,110,0.0710,0,88,0.170,0.0,1.0 +2000,3,9,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,5.6,57,98000,0,0,309,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,110,0.0710,0,88,0.170,0.0,1.0 +2000,3,9,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,6.7,66,98000,0,0,305,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,110,0.0710,0,88,0.170,0.0,1.0 +2000,3,9,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,6.7,69,97900,0,0,303,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,110,0.0710,0,88,0.170,0.0,1.0 +2000,3,10,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,6.7,71,97900,0,0,301,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,100,0.0720,0,88,0.170,0.0,1.0 +2000,3,10,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,7.2,79,97900,0,0,297,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,100,0.0720,0,88,0.170,0.0,1.0 +2000,3,10,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,7.8,86,97900,0,0,295,0,0,0,0,0,0,0,120,1.5,0,0,16.0,77777,9,999999999,100,0.0720,0,88,0.170,0.0,1.0 +2000,3,10,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,7.2,83,97900,0,0,294,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,90,0.0720,0,88,0.170,0.0,1.0 +2000,3,10,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,7.2,86,98000,0,0,292,0,0,0,0,0,0,0,110,2.1,0,0,16.0,77777,9,999999999,90,0.0720,0,88,0.170,0.0,1.0 +2000,3,10,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,6.7,83,98000,0,0,291,0,0,0,0,0,0,0,130,1.5,0,0,16.0,77777,9,999999999,90,0.0720,0,88,0.170,0.0,1.0 +2000,3,10,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,6.7,86,98000,8,335,289,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,80,0.0720,0,88,0.170,0.0,1.0 +2000,3,10,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,5.6,71,98100,210,1386,295,97,417,34,10100,28600,5700,620,0,0.0,0,0,16.0,7620,9,999999999,80,0.0720,0,88,0.170,0.0,1.0 +2000,3,10,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,6.1,66,98200,490,1386,302,311,663,76,32500,61500,10800,1480,0,0.0,0,0,16.0,7620,9,999999999,80,0.0720,0,88,0.170,0.0,1.0 +2000,3,10,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,6.1,57,98300,734,1386,312,523,799,98,54400,78600,12600,2080,300,2.6,0,0,16.0,7620,9,999999999,70,0.0720,0,88,0.170,0.0,1.0 +2000,3,10,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,5.0,48,98300,925,1386,318,706,908,98,73200,90300,12800,2240,300,2.6,0,0,16.0,77777,9,999999999,70,0.0720,0,88,0.170,0.0,1.0 +2000,3,10,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,3.9,40,98300,1050,1386,324,813,935,102,84200,93400,13100,2810,260,3.6,0,0,16.0,77777,9,999999999,70,0.0720,0,88,0.170,0.0,1.0 +2000,3,10,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,2.2,33,98200,1100,1386,327,874,943,124,90100,94200,15000,3380,240,2.6,0,0,16.0,77777,9,999999999,80,0.0720,0,88,0.170,0.0,1.0 +2000,3,10,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,2.8,32,98100,1071,1386,333,833,890,142,87700,89600,18100,4420,230,3.6,1,0,16.0,77777,9,999999999,90,0.0720,0,88,0.170,0.0,1.0 +2000,3,10,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,0.0,24,98100,967,1386,335,734,870,125,77200,87400,16100,3310,230,1.5,0,0,16.0,77777,9,999999999,90,0.0720,0,88,0.170,0.0,1.0 +2000,3,10,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,1.1,26,98000,793,1386,336,588,827,114,60900,81600,14000,2430,220,4.6,0,0,16.0,77777,9,999999999,100,0.0720,0,88,0.170,0.0,1.0 +2000,3,10,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,0.6,25,98000,561,1386,338,418,732,120,42800,68800,14800,2270,240,4.6,0,0,16.0,77777,9,999999999,100,0.0720,0,88,0.170,0.0,1.0 +2000,3,10,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,0.6,26,98000,289,1386,335,218,518,110,21600,39200,13400,2150,270,2.6,0,0,16.0,77777,9,999999999,110,0.0720,0,88,0.170,0.0,1.0 +2000,3,10,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,1.7,30,98000,37,727,332,1,81,0,0,0,0,0,290,3.1,0,0,16.0,77777,9,999999999,110,0.0720,0,88,0.170,0.0,1.0 +2000,3,10,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,2.8,36,98100,0,0,325,0,0,0,0,0,0,0,300,1.5,0,0,16.0,77777,9,999999999,120,0.0720,0,88,0.170,0.0,1.0 +2000,3,10,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,3.3,39,98100,0,0,321,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,120,0.0720,0,88,0.170,0.0,1.0 +2000,3,10,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,3.9,44,98100,0,0,317,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,130,0.0720,0,88,0.170,0.0,1.0 +2000,3,10,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,4.4,47,98200,0,0,315,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,130,0.0720,0,88,0.170,0.0,1.0 +2000,3,10,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,5.6,55,98100,0,0,311,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,130,0.0720,0,88,0.170,0.0,1.0 +2000,3,11,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,5.0,57,98100,0,0,306,0,0,0,0,0,0,0,90,2.1,0,0,16.0,77777,9,999999999,120,0.0730,0,88,0.170,0.0,1.0 +2000,3,11,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,5.0,59,98100,0,0,304,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,120,0.0730,0,88,0.170,0.0,1.0 +2000,3,11,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,5.6,71,98100,0,0,295,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,120,0.0730,0,88,0.170,0.0,1.0 +2000,3,11,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,5.6,71,98100,0,0,295,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,110,0.0730,0,88,0.170,0.0,1.0 +2000,3,11,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,5.6,74,98200,0,0,292,0,0,0,0,0,0,0,100,2.6,0,0,16.0,77777,9,999999999,110,0.0730,0,88,0.170,0.0,1.0 +2000,3,11,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,2.2,56,98100,0,0,292,0,0,0,0,0,0,0,80,2.1,0,0,16.0,77777,9,999999999,110,0.0730,0,88,0.170,0.0,1.0 +2000,3,11,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,0.6,46,98200,9,358,294,0,0,0,0,0,0,0,10,2.6,0,0,16.0,77777,9,999999999,100,0.0730,0,88,0.170,0.0,1.0 +2000,3,11,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,4.4,59,98200,216,1385,300,107,490,31,11000,35800,5400,600,0,0.0,0,0,16.0,77777,9,999999999,100,0.0730,0,88,0.170,0.0,1.0 +2000,3,11,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,2.2,40,98300,496,1385,313,326,719,67,33600,66700,9600,1310,10,1.5,0,0,16.0,77777,9,999999999,100,0.0730,0,88,0.170,0.0,1.0 +2000,3,11,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,1.1,31,98300,740,1385,323,529,822,88,55700,81300,12100,1970,20,1.5,0,0,16.0,77777,9,999999999,90,0.0730,0,88,0.170,0.0,1.0 +2000,3,11,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,-1.7,22,98300,931,1385,330,701,879,109,74600,88500,14900,2860,30,2.6,0,0,16.0,7620,9,999999999,90,0.0730,0,88,0.170,0.0,1.0 +2000,3,11,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,-3.9,16,98200,1056,1385,335,814,894,130,86300,90300,17300,4020,20,2.6,0,0,16.0,77777,9,999999999,90,0.0730,0,88,0.170,0.0,1.0 +2000,3,11,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,-3.9,16,98100,1105,1385,338,832,847,155,87300,85200,19100,5090,20,1.5,0,0,16.0,77777,9,999999999,90,0.0730,0,88,0.170,0.0,1.0 +2000,3,11,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,-2.2,16,98000,1076,1385,350,839,896,141,88500,90300,18100,4450,10,3.1,0,0,16.0,7620,9,999999999,90,0.0730,0,88,0.170,0.0,1.0 +2000,3,11,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,-2.2,16,97900,971,1385,353,727,814,154,77400,83000,19000,4370,10,1.5,1,0,16.0,77777,9,999999999,100,0.0730,0,88,0.170,0.0,1.0 +2000,3,11,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,-2.8,15,97800,797,1385,359,580,770,136,61100,77100,16600,3130,0,0.0,1,1,16.0,7620,9,999999999,100,0.0730,0,88,0.170,0.0,1.0 +2000,3,11,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,-1.1,17,97700,565,1385,361,416,611,166,42900,58700,18800,3350,250,3.1,1,1,16.0,7620,9,999999999,100,0.0730,0,88,0.170,0.0,1.0 +2000,3,11,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,-0.6,19,97700,293,1385,356,142,126,116,15200,10000,13000,2510,260,3.1,1,1,16.0,7620,9,999999999,100,0.0730,0,88,0.170,0.0,1.0 +2000,3,11,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,-1.1,20,97700,39,727,341,1,21,0,0,0,0,0,270,3.1,1,0,16.0,7620,9,999999999,100,0.0730,0,88,0.170,0.0,1.0 +2000,3,11,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,0.6,26,97700,0,0,335,0,0,0,0,0,0,0,280,2.1,0,0,16.0,77777,9,999999999,100,0.0730,0,88,0.170,0.0,1.0 +2000,3,11,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,2.2,33,97700,0,0,327,0,0,0,0,0,0,0,290,1.5,0,0,16.0,77777,9,999999999,110,0.0730,0,88,0.170,0.0,1.0 +2000,3,11,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,2.8,38,97700,0,0,320,0,0,0,0,0,0,0,290,2.1,0,0,16.0,77777,9,999999999,110,0.0730,0,88,0.170,0.0,1.0 +2000,3,11,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,1.7,35,97700,0,0,319,0,0,0,0,0,0,0,360,1.5,0,0,16.0,77777,9,999999999,110,0.0730,0,88,0.170,0.0,1.0 +2000,3,11,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,3.9,46,97600,0,0,314,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,110,0.0730,0,88,0.170,0.0,1.0 +2000,3,12,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,3.9,47,97500,0,0,312,0,0,0,0,0,0,0,0,0.0,1,0,16.0,77777,9,999999999,100,0.0740,0,88,0.170,0.0,1.0 +2000,3,12,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,2.8,42,97500,0,0,313,0,0,0,0,0,0,0,80,2.6,1,0,16.0,77777,9,999999999,100,0.0740,0,88,0.170,0.0,1.0 +2000,3,12,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,4.4,59,97400,0,0,300,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,100,0.0740,0,88,0.170,0.0,1.0 +2000,3,12,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,4.4,57,97400,0,0,303,0,0,0,0,0,0,0,140,2.1,0,0,16.0,77777,9,999999999,100,0.0740,0,88,0.170,0.0,1.0 +2000,3,12,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,4.4,59,97500,0,0,300,0,0,0,0,0,0,0,140,1.5,0,0,16.0,77777,9,999999999,90,0.0740,0,88,0.170,0.0,1.0 +2000,3,12,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,3.3,56,97400,0,0,297,0,0,0,0,0,0,0,110,2.6,0,0,16.0,77777,9,999999999,90,0.0740,0,88,0.170,0.0,1.0 +2000,3,12,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,3.9,61,97500,11,404,295,0,0,0,0,0,0,0,100,1.5,0,0,16.0,77777,9,999999999,90,0.0740,0,88,0.170,0.0,1.0 +2000,3,12,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,3.3,51,97600,223,1384,304,110,485,31,11200,35800,5400,610,110,1.5,0,0,16.0,77777,9,999999999,80,0.0740,0,88,0.170,0.0,1.0 +2000,3,12,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,2.8,38,97700,502,1384,320,323,676,76,33800,63100,10800,1500,110,3.1,0,0,16.0,77777,9,999999999,80,0.0740,0,88,0.170,0.0,1.0 +2000,3,12,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,0.6,28,97700,746,1384,328,535,811,96,55900,80000,12600,2090,100,3.6,0,0,16.0,77777,9,999999999,80,0.0740,0,88,0.170,0.0,1.0 +2000,3,12,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,1.1,26,97700,937,1384,336,686,796,145,73100,81100,18000,3940,50,2.1,0,0,16.0,7620,9,999999999,80,0.0740,0,88,0.170,0.0,1.0 +2000,3,12,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,1.1,24,97600,1061,1384,344,808,870,139,85200,87700,17800,4270,0,0.0,0,0,16.0,7620,9,999999999,80,0.0740,0,88,0.170,0.0,1.0 +2000,3,12,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,0.0,20,97500,1110,1384,350,869,925,125,89400,92500,15100,3490,100,2.1,1,0,16.0,7620,9,999999999,80,0.0740,0,88,0.170,0.0,1.0 +2000,3,12,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,-1.1,17,97400,1081,1384,354,814,775,207,86000,78700,24300,6970,0,0.0,1,0,16.0,7620,9,999999999,80,0.0740,0,88,0.170,0.0,1.0 +2000,3,12,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,0.0,18,97400,976,1384,370,686,637,236,73600,66100,26800,6670,240,2.6,3,2,16.0,7620,9,999999999,80,0.0740,0,88,0.170,0.0,1.0 +2000,3,12,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,1.1,20,97400,801,1384,371,449,282,286,47700,29800,30400,7220,240,2.1,4,2,16.0,7620,9,999999999,80,0.0740,0,88,0.170,0.0,1.0 +2000,3,12,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,-1.1,16,97300,569,1384,368,328,385,170,34900,38300,19100,3630,230,3.1,6,2,16.0,7620,9,999999999,80,0.0740,0,88,0.170,0.0,1.0 +2000,3,12,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,1.7,21,97400,297,1384,369,191,401,105,19100,30800,12500,2030,270,3.1,6,2,16.0,7620,9,999999999,90,0.0740,0,88,0.170,0.0,1.0 +2000,3,12,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,2.8,25,97400,41,750,362,1,71,1,600,4100,300,40,280,2.1,5,2,16.0,7620,9,999999999,90,0.0740,0,88,0.170,0.0,1.0 +2000,3,12,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,2.8,28,97400,0,0,358,0,0,0,0,0,0,0,0,0.0,6,3,16.0,7620,9,999999999,90,0.0740,0,88,0.170,0.0,1.0 +2000,3,12,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,5.0,36,97400,0,0,353,0,0,0,0,0,0,0,0,0.0,6,3,16.0,7620,9,999999999,90,0.0740,0,88,0.170,0.0,1.0 +2000,3,12,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,5.0,39,97400,0,0,347,0,0,0,0,0,0,0,40,1.5,5,3,16.0,7620,9,999999999,90,0.0740,0,88,0.170,0.0,1.0 +2000,3,12,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,5.0,40,97500,0,0,345,0,0,0,0,0,0,0,0,0.0,6,3,16.0,7620,9,999999999,90,0.0740,0,88,0.170,0.0,1.0 +2000,3,12,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,6.7,47,97400,0,0,347,0,0,0,0,0,0,0,90,1.5,7,4,16.0,7620,9,999999999,90,0.0740,0,88,0.170,0.0,1.0 +2000,3,13,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,7.2,52,97400,0,0,339,0,0,0,0,0,0,0,110,2.6,6,3,16.0,7620,9,999999999,90,0.0750,0,88,0.170,0.0,1.0 +2000,3,13,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,6.1,48,97400,0,0,374,0,0,0,0,0,0,0,90,2.6,10,10,16.0,7620,9,999999999,90,0.0750,0,88,0.170,0.0,1.0 +2000,3,13,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,4.4,44,97400,0,0,369,0,0,0,0,0,0,0,100,3.1,10,10,16.0,7620,9,999999999,90,0.0750,0,88,0.170,0.0,1.0 +2000,3,13,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,5.0,48,97300,0,0,367,0,0,0,0,0,0,0,100,2.1,10,10,16.0,7620,9,999999999,90,0.0750,0,88,0.170,0.0,1.0 +2000,3,13,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,3.9,44,97400,0,0,333,0,0,0,0,0,0,0,70,3.1,8,4,16.0,7620,9,999999999,90,0.0750,0,88,0.170,0.0,1.0 +2000,3,13,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,3.9,44,97400,0,0,333,0,0,0,0,0,0,0,100,3.1,9,4,16.0,7620,9,999999999,80,0.0750,0,88,0.170,0.0,1.0 +2000,3,13,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,3.9,46,97400,13,427,331,0,0,0,0,0,0,0,90,2.6,8,4,16.0,6096,9,999999999,80,0.0750,0,88,0.170,0.0,1.0 +2000,3,13,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,5.0,48,97500,229,1383,334,43,0,43,4900,0,4900,1570,100,2.1,8,4,16.0,6096,9,999999999,80,0.0750,0,88,0.170,0.0,1.0 +2000,3,13,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,3.9,40,97500,509,1383,343,222,155,165,24000,14900,18500,3810,100,2.1,8,5,16.0,6096,9,999999999,80,0.0750,0,88,0.170,0.0,1.0 +2000,3,13,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,3.9,33,97600,752,1383,348,505,603,176,53700,61200,20400,3870,110,3.6,4,2,16.0,6096,9,999999999,80,0.0750,0,88,0.170,0.0,1.0 +2000,3,13,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,2.8,28,97600,943,1383,354,714,820,153,75800,83400,18800,4170,140,2.6,3,2,16.0,6096,9,999999999,80,0.0750,0,88,0.170,0.0,1.0 +2000,3,13,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,2.2,24,97500,1066,1383,357,809,888,122,83300,88700,14700,3110,100,1.5,2,1,16.0,7620,9,999999999,80,0.0750,0,88,0.170,0.0,1.0 +2000,3,13,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,2.2,23,97500,1115,1383,362,839,859,144,88700,86700,18600,4970,0,0.0,1,1,16.0,7620,9,999999999,90,0.0750,0,88,0.170,0.0,1.0 +2000,3,13,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,1.7,20,97400,1086,1383,360,820,817,177,84500,81500,20400,5320,320,1.5,1,0,16.0,7620,9,999999999,90,0.0750,0,88,0.170,0.0,1.0 +2000,3,13,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,2.2,21,97300,980,1383,368,706,722,193,74100,72900,22300,5420,270,3.1,3,1,16.0,7620,9,999999999,90,0.0750,0,88,0.170,0.0,1.0 +2000,3,13,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,1.7,19,97300,805,1383,372,572,713,156,59700,71100,18200,3550,220,3.6,3,1,16.0,7620,9,999999999,100,0.0750,0,88,0.170,0.0,1.0 +2000,3,13,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,2.2,20,97200,573,1383,370,413,683,130,42300,64200,15600,2450,250,3.6,1,1,16.0,7620,9,999999999,100,0.0750,0,88,0.170,0.0,1.0 +2000,3,13,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,1.7,20,97300,301,1383,367,221,530,106,22100,40900,13200,2050,260,3.6,1,1,16.0,7620,9,999999999,110,0.0750,0,88,0.170,0.0,1.0 +2000,3,13,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,2.8,23,97300,42,772,366,2,99,1,800,5800,400,40,270,2.6,1,1,16.0,77777,9,999999999,110,0.0750,0,88,0.170,0.0,1.0 +2000,3,13,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,3.3,25,97300,0,0,354,0,0,0,0,0,0,0,260,2.1,1,0,16.0,77777,9,999999999,110,0.0750,0,88,0.170,0.0,1.0 +2000,3,13,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,5.0,35,97400,0,0,340,0,0,0,0,0,0,0,30,1.5,0,0,16.0,77777,9,999999999,120,0.0750,0,88,0.170,0.0,1.0 +2000,3,13,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,5.6,36,97400,0,0,341,0,0,0,0,0,0,0,90,2.1,0,0,16.0,77777,9,999999999,120,0.0750,0,88,0.170,0.0,1.0 +2000,3,13,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,6.1,45,97400,0,0,329,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,120,0.0750,0,88,0.170,0.0,1.0 +2000,3,13,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,6.7,47,97400,0,0,330,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,120,0.0750,0,88,0.170,0.0,1.0 +2000,3,14,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,6.7,47,97400,0,0,330,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,120,0.0760,0,88,0.170,0.0,1.0 +2000,3,14,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,6.1,48,97400,0,0,324,0,0,0,0,0,0,0,70,1.5,0,0,16.0,77777,9,999999999,120,0.0760,0,88,0.170,0.0,1.0 +2000,3,14,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,7.8,60,97300,0,0,319,0,0,0,0,0,0,0,130,2.6,0,0,16.0,77777,9,999999999,120,0.0760,0,88,0.170,0.0,1.0 +2000,3,14,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,7.2,60,97300,0,0,315,0,0,0,0,0,0,0,90,2.6,0,0,16.0,77777,9,999999999,110,0.0760,0,88,0.170,0.0,1.0 +2000,3,14,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,5.6,55,97400,0,0,311,0,0,0,0,0,0,0,110,1.5,0,0,16.0,77777,9,999999999,110,0.0760,0,88,0.170,0.0,1.0 +2000,3,14,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,5.0,53,97400,0,0,310,0,0,0,0,0,0,0,70,2.1,0,0,16.0,77777,9,999999999,110,0.0760,0,88,0.170,0.0,1.0 +2000,3,14,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,5.6,57,97400,14,449,309,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,110,0.0760,0,88,0.170,0.0,1.0 +2000,3,14,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,5.6,53,97500,236,1383,314,120,484,37,12400,35000,6400,680,100,1.5,0,0,16.0,77777,9,999999999,110,0.0760,0,88,0.170,0.0,1.0 +2000,3,14,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,5.0,41,97600,515,1383,328,330,628,95,34100,58500,12300,1820,80,2.1,0,0,16.0,77777,9,999999999,110,0.0760,0,88,0.170,0.0,1.0 +2000,3,14,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,5.0,36,97600,758,1383,338,547,818,97,57300,80900,12800,2130,40,1.5,0,0,16.0,77777,9,999999999,100,0.0760,0,88,0.170,0.0,1.0 +2000,3,14,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,4.4,31,97600,948,1383,345,714,879,109,76000,88700,15000,2940,0,0.0,0,0,16.0,77777,9,999999999,100,0.0760,0,88,0.170,0.0,1.0 +2000,3,14,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,3.9,27,97500,1072,1383,352,838,912,129,86200,91000,15400,3200,0,0.0,0,0,16.0,77777,9,999999999,100,0.0760,0,88,0.170,0.0,1.0 +2000,3,14,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,2.8,23,97400,1120,1383,359,899,967,113,92800,96800,14100,3450,0,0.0,0,0,16.0,77777,9,999999999,110,0.0760,0,88,0.170,0.0,1.0 +2000,3,14,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,3.3,21,97300,1090,1383,367,877,914,154,91800,91800,19200,4910,360,1.5,1,0,16.0,7620,9,999999999,110,0.0760,0,88,0.170,0.0,1.0 +2000,3,14,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,2.8,19,97200,984,1383,379,719,716,208,75100,72100,23700,5820,0,0.0,2,1,16.0,7620,9,999999999,110,0.0760,0,88,0.170,0.0,1.0 +2000,3,14,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.9,2.8,19,97200,809,1383,382,586,757,142,61600,75900,17100,3300,270,4.1,1,1,16.0,77777,9,999999999,110,0.0760,0,88,0.170,0.0,1.0 +2000,3,14,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,2.8,19,97000,577,1383,372,438,801,103,45600,76500,13600,2040,240,4.1,0,0,16.0,77777,9,999999999,110,0.0760,0,88,0.170,0.0,1.0 +2000,3,14,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,2.2,19,97100,305,1383,369,217,551,95,21900,42900,12400,1800,250,3.6,0,0,16.0,77777,9,999999999,120,0.0760,0,88,0.170,0.0,1.0 +2000,3,14,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,3.3,22,97100,45,795,365,2,109,1,900,6400,500,40,260,3.1,0,0,16.0,77777,9,999999999,120,0.0760,0,88,0.170,0.0,1.0 +2000,3,14,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,3.3,24,97100,0,0,357,0,0,0,0,0,0,0,270,1.5,0,0,16.0,77777,9,999999999,120,0.0760,0,88,0.170,0.0,1.0 +2000,3,14,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,3.9,29,97100,0,0,347,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,120,0.0760,0,88,0.170,0.0,1.0 +2000,3,14,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,5.6,39,97100,0,0,336,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,120,0.0760,0,88,0.170,0.0,1.0 +2000,3,14,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,5.0,37,97100,0,0,335,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,130,0.0760,0,88,0.170,0.0,1.0 +2000,3,14,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,5.6,39,97100,0,0,336,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,120,0.0760,0,88,0.170,0.0,1.0 +2000,3,15,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,6.7,48,97000,0,0,327,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,120,0.0770,0,88,0.170,0.0,1.0 +2000,3,15,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,7.2,53,97000,0,0,334,0,0,0,0,0,0,0,60,1.5,2,2,16.0,77777,9,999999999,120,0.0770,0,88,0.170,0.0,1.0 +2000,3,15,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,6.7,54,96900,0,0,334,0,0,0,0,0,0,0,100,2.1,3,3,16.0,77777,9,999999999,120,0.0770,0,88,0.170,0.0,1.0 +2000,3,15,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,7.2,60,96900,0,0,326,0,0,0,0,0,0,0,110,2.1,2,2,16.0,77777,9,999999999,120,0.0770,0,88,0.170,0.0,1.0 +2000,3,15,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,6.1,57,97000,0,0,312,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,120,0.0770,0,88,0.170,0.0,1.0 +2000,3,15,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,6.1,59,97000,0,0,309,0,0,0,0,0,0,0,90,1.5,1,0,16.0,7620,9,999999999,120,0.0770,0,88,0.170,0.0,1.0 +2000,3,15,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,5.0,53,97000,16,472,316,0,0,0,0,0,0,0,100,2.6,1,1,16.0,7620,9,999999999,120,0.0770,0,88,0.170,0.0,1.0 +2000,3,15,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,6.1,53,97100,242,1382,323,110,374,44,11200,27100,6500,790,110,3.1,2,1,16.0,7620,9,999999999,120,0.0770,0,88,0.170,0.0,1.0 +2000,3,15,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,5.6,45,97200,521,1382,332,322,579,103,33200,53800,12800,1950,70,2.1,1,1,16.0,77777,9,999999999,120,0.0770,0,88,0.170,0.0,1.0 +2000,3,15,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,4.4,36,97200,765,1382,341,553,783,118,58500,78500,15000,2680,120,2.6,3,1,16.0,77777,9,999999999,120,0.0770,0,88,0.170,0.0,1.0 +2000,3,15,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,4.4,31,97100,954,1382,345,715,838,134,74500,83800,16400,3400,160,2.1,0,0,16.0,77777,9,999999999,110,0.0770,0,88,0.170,0.0,1.0 +2000,3,15,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,3.9,25,97100,1077,1382,357,769,668,247,80200,67200,27700,8100,210,1.5,0,0,16.0,7620,9,999999999,110,0.0770,0,88,0.170,0.0,1.0 +2000,3,15,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,2.2,21,97100,1125,1382,373,736,559,280,79300,58400,31600,10610,250,2.6,4,2,16.0,7620,9,999999999,110,0.0770,0,88,0.170,0.0,1.0 +2000,3,15,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,1.1,18,97000,1095,1382,380,700,466,330,73800,48500,35300,11820,230,4.6,7,3,16.0,7620,9,999999999,110,0.0770,0,88,0.170,0.0,1.0 +2000,3,15,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,3.3,20,96900,988,1382,389,739,734,212,77100,73800,24100,5970,270,4.6,7,3,16.0,7620,9,999999999,110,0.0770,0,88,0.170,0.0,1.0 +2000,3,15,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,2.2,19,96900,813,1382,384,513,412,270,54800,43600,29000,6780,260,3.6,4,2,16.0,7620,9,999999999,110,0.0770,0,88,0.170,0.0,1.0 +2000,3,15,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,1.7,18,96800,581,1382,378,428,727,121,44000,68900,14900,2330,260,4.1,3,1,16.0,7620,9,999999999,110,0.0770,0,88,0.170,0.0,1.0 +2000,3,15,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,2.2,19,96800,309,1382,378,213,520,96,21500,40800,12400,1820,240,4.6,2,1,16.0,7620,9,999999999,110,0.0770,0,88,0.170,0.0,1.0 +2000,3,15,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,2.8,21,96800,47,795,374,3,109,1,900,6500,500,40,230,3.6,3,1,16.0,77777,9,999999999,110,0.0770,0,88,0.170,0.0,1.0 +2000,3,15,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,2.8,21,96900,0,0,371,0,0,0,0,0,0,0,210,2.6,2,1,16.0,77777,9,999999999,110,0.0770,0,88,0.170,0.0,1.0 +2000,3,15,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,2.8,24,96900,0,0,353,0,0,0,0,0,0,0,300,1.5,0,0,16.0,77777,9,999999999,110,0.0770,0,88,0.170,0.0,1.0 +2000,3,15,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,2.8,25,97000,0,0,351,0,0,0,0,0,0,0,260,2.6,0,0,16.0,77777,9,999999999,100,0.0770,0,88,0.170,0.0,1.0 +2000,3,15,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,3.9,31,97000,0,0,342,0,0,0,0,0,0,0,320,2.1,0,0,16.0,77777,9,999999999,100,0.0770,0,88,0.170,0.0,1.0 +2000,3,15,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,3.9,32,97000,0,0,354,0,0,0,0,0,0,0,320,2.1,3,3,16.0,77777,9,999999999,110,0.0770,0,88,0.170,0.0,1.0 +2000,3,16,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,4.4,37,97000,0,0,332,0,0,0,0,0,0,0,330,1.5,0,0,16.0,77777,9,999999999,110,0.0780,0,88,0.170,0.0,1.0 +2000,3,16,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,3.3,34,97100,0,0,331,0,0,0,0,0,0,0,330,2.1,1,0,16.0,77777,9,999999999,110,0.0780,0,88,0.170,0.0,1.0 +2000,3,16,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,2.8,36,97100,0,0,325,0,0,0,0,0,0,0,330,2.1,1,0,16.0,77777,9,999999999,120,0.0780,0,88,0.170,0.0,1.0 +2000,3,16,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,3.3,38,97100,0,0,323,0,0,0,0,0,0,0,150,2.6,1,0,16.0,77777,9,999999999,120,0.0780,0,88,0.170,0.0,1.0 +2000,3,16,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,5.6,50,97200,0,0,318,0,0,0,0,0,0,0,120,2.1,0,0,16.0,77777,9,999999999,120,0.0780,0,88,0.170,0.0,1.0 +2000,3,16,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,5.6,51,97200,0,0,316,0,0,0,0,0,0,0,120,2.1,0,0,16.0,77777,9,999999999,130,0.0780,0,88,0.170,0.0,1.0 +2000,3,16,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,3.9,42,97300,19,518,319,0,0,0,0,0,0,0,160,2.1,0,0,16.0,77777,9,999999999,130,0.0780,0,88,0.170,0.0,1.0 +2000,3,16,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,3.3,39,97400,249,1381,321,130,535,34,13400,41100,6000,670,0,0.0,0,0,16.0,77777,9,999999999,130,0.0780,0,88,0.170,0.0,1.0 +2000,3,16,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,-0.6,24,97500,528,1381,332,360,764,67,37400,71900,9800,1360,70,3.1,0,0,16.0,77777,9,999999999,140,0.0780,0,88,0.170,0.0,1.0 +2000,3,16,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,-1.1,21,97500,771,1381,338,559,853,81,58200,83900,11300,1750,70,4.6,0,0,16.0,77777,9,999999999,140,0.0780,0,88,0.170,0.0,1.0 +2000,3,16,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,-1.1,19,97500,960,1381,343,726,886,109,75100,88200,13600,2440,80,2.6,0,0,16.0,77777,9,999999999,140,0.0780,0,88,0.170,0.0,1.0 +2000,3,16,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,-1.1,18,97500,1082,1381,348,850,918,128,87400,91700,15300,3290,140,3.1,0,0,16.0,77777,9,999999999,140,0.0780,0,88,0.170,0.0,1.0 +2000,3,16,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,-1.1,18,97500,1130,1381,348,875,931,111,90400,93200,13900,3520,190,3.1,0,0,16.0,77777,9,999999999,140,0.0780,0,88,0.170,0.0,1.0 +2000,3,16,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,0.0,18,97400,1099,1381,358,851,902,131,87500,90100,15500,3460,240,1.5,0,0,16.0,77777,9,999999999,130,0.0780,0,88,0.170,0.0,1.0 +2000,3,16,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,0.0,17,97400,993,1381,361,765,906,112,79000,90300,13900,2610,280,3.1,0,0,16.0,77777,9,999999999,130,0.0780,0,88,0.170,0.0,1.0 +2000,3,16,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,0.6,18,97400,817,1381,364,621,856,113,64600,84900,14200,2510,290,2.1,0,0,16.0,77777,9,999999999,130,0.0780,0,88,0.170,0.0,1.0 +2000,3,16,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,0.6,18,97300,585,1381,361,427,746,110,44200,71200,14000,2160,290,3.6,0,0,16.0,77777,9,999999999,130,0.0780,0,88,0.170,0.0,1.0 +2000,3,16,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,0.6,18,97400,312,1381,361,225,533,104,22600,41900,13100,1990,250,4.6,0,0,16.0,77777,9,999999999,120,0.0780,0,88,0.170,0.0,1.0 +2000,3,16,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,0.6,19,97400,49,817,356,4,118,2,1100,7000,600,80,250,3.6,0,0,16.0,77777,9,999999999,120,0.0780,0,88,0.170,0.0,1.0 +2000,3,16,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,2.2,23,97400,0,0,352,0,0,0,0,0,0,0,290,1.5,0,0,16.0,77777,9,999999999,120,0.0780,0,88,0.170,0.0,1.0 +2000,3,16,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,1.7,26,97400,0,0,342,0,0,0,0,0,0,0,320,1.5,0,0,16.0,77777,9,999999999,110,0.0780,0,88,0.170,0.0,1.0 +2000,3,16,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,1.7,28,97400,0,0,337,0,0,0,0,0,0,0,0,0.0,1,0,16.0,77777,9,999999999,110,0.0780,0,88,0.170,0.0,1.0 +2000,3,16,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,3.3,31,97500,0,0,338,0,0,0,0,0,0,0,110,1.5,0,0,16.0,77777,9,999999999,110,0.0780,0,88,0.170,0.0,1.0 +2000,3,16,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,4.4,38,97400,0,0,330,0,0,0,0,0,0,0,80,1.5,0,0,16.0,77777,9,999999999,110,0.0780,0,88,0.170,0.0,1.0 +2000,3,17,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,5.0,43,97400,0,0,325,0,0,0,0,0,0,0,100,2.1,0,0,16.0,77777,9,999999999,110,0.0790,0,88,0.170,0.0,1.0 +2000,3,17,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,5.0,46,97400,0,0,320,0,0,0,0,0,0,0,60,2.6,0,0,16.0,77777,9,999999999,110,0.0790,0,88,0.170,0.0,1.0 +2000,3,17,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,4.4,46,97400,0,0,317,0,0,0,0,0,0,0,70,2.1,0,0,16.0,77777,9,999999999,110,0.0790,0,88,0.170,0.0,1.0 +2000,3,17,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,3.9,46,97400,0,0,314,0,0,0,0,0,0,0,70,2.6,0,0,16.0,77777,9,999999999,110,0.0790,0,88,0.170,0.0,1.0 +2000,3,17,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,3.3,44,97500,0,0,314,0,0,0,0,0,0,0,100,2.1,0,0,16.0,77777,9,999999999,110,0.0790,0,88,0.170,0.0,1.0 +2000,3,17,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,3.3,49,97500,0,0,306,0,0,0,0,0,0,0,50,1.5,0,0,16.0,77777,9,999999999,110,0.0790,0,88,0.170,0.0,1.0 +2000,3,17,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,3.3,47,97500,21,541,309,0,0,0,0,0,0,0,110,2.6,0,0,16.0,77777,9,999999999,110,0.0790,0,88,0.170,0.0,1.0 +2000,3,17,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,3.3,41,97600,255,1380,319,126,457,42,13100,34100,6800,770,90,3.6,1,0,16.0,77777,9,999999999,110,0.0790,0,88,0.170,0.0,1.0 +2000,3,17,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,3.9,38,97700,534,1380,333,338,631,94,35200,59400,12200,1830,60,2.6,2,1,16.0,6096,9,999999999,110,0.0790,0,88,0.170,0.0,1.0 +2000,3,17,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,4.4,34,97800,776,1380,337,549,778,110,56900,76700,13600,2340,150,1.5,0,0,16.0,6096,9,999999999,110,0.0790,0,88,0.170,0.0,1.0 +2000,3,17,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,5.0,31,97800,965,1380,348,727,845,134,75900,84600,16600,3480,0,0.0,0,0,16.0,77777,9,999999999,110,0.0790,0,88,0.170,0.0,1.0 +2000,3,17,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,2.2,23,97800,1088,1380,352,839,888,137,88900,89700,18000,4510,270,4.1,0,0,16.0,77777,9,999999999,110,0.0790,0,88,0.170,0.0,1.0 +2000,3,17,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,2.8,24,97700,1135,1380,356,905,949,123,93200,94900,14900,3740,260,3.6,0,0,16.0,77777,9,999999999,110,0.0790,0,88,0.170,0.0,1.0 +2000,3,17,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,2.2,21,97600,1104,1380,361,883,932,135,90600,93100,16000,3530,290,3.6,0,0,16.0,77777,9,999999999,110,0.0790,0,88,0.170,0.0,1.0 +2000,3,17,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,2.2,20,97500,997,1380,364,752,789,180,79400,80100,21400,5260,250,3.6,0,0,16.0,77777,9,999999999,110,0.0790,0,88,0.170,0.0,1.0 +2000,3,17,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,2.2,20,97500,821,1380,366,584,681,178,60500,67600,20200,4040,270,5.7,0,0,16.0,77777,9,999999999,120,0.0790,0,88,0.170,0.0,1.0 +2000,3,17,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,1.7,19,97300,589,1380,365,434,765,107,45100,73300,13800,2120,260,5.2,0,0,16.0,77777,9,999999999,120,0.0790,0,88,0.170,0.0,1.0 +2000,3,17,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,1.1,18,97400,316,1380,365,221,555,94,22500,44000,12400,1770,250,5.2,0,0,16.0,77777,9,999999999,120,0.0790,0,88,0.170,0.0,1.0 +2000,3,17,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,1.7,20,97400,51,840,363,4,128,2,1200,7700,700,80,230,4.1,0,0,16.0,77777,9,999999999,120,0.0790,0,88,0.170,0.0,1.0 +2000,3,17,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,1.7,22,97500,0,0,355,0,0,0,0,0,0,0,240,3.6,0,0,16.0,77777,9,999999999,120,0.0790,0,88,0.170,0.0,1.0 +2000,3,17,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,0.0,21,97500,0,0,347,0,0,0,0,0,0,0,250,3.6,0,0,16.0,77777,9,999999999,130,0.0790,0,88,0.170,0.0,1.0 +2000,3,17,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,-3.3,17,97500,0,0,342,0,0,0,0,0,0,0,250,4.1,1,1,16.0,77777,9,999999999,130,0.0790,0,88,0.170,0.0,1.0 +2000,3,17,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,-4.4,17,97500,0,0,327,0,0,0,0,0,0,0,270,3.6,0,0,16.0,77777,9,999999999,130,0.0790,0,88,0.170,0.0,1.0 +2000,3,17,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,-5.6,17,97500,0,0,320,0,0,0,0,0,0,0,280,3.1,0,0,16.0,77777,9,999999999,130,0.0790,0,88,0.170,0.0,1.0 +2000,3,18,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,-5.0,20,97500,0,0,314,0,0,0,0,0,0,0,270,1.5,0,0,16.0,77777,9,999999999,120,0.0800,0,88,0.170,0.0,1.0 +2000,3,18,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,-4.4,22,97500,0,0,312,0,0,0,0,0,0,0,250,3.6,0,0,16.0,77777,9,999999999,120,0.0800,0,88,0.170,0.0,1.0 +2000,3,18,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,-3.9,24,97500,0,0,308,0,0,0,0,0,0,0,280,1.5,0,0,16.0,77777,9,999999999,110,0.0800,0,88,0.170,0.0,1.0 +2000,3,18,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,-4.4,24,97500,0,0,305,0,0,0,0,0,0,0,270,2.6,0,0,16.0,77777,9,999999999,110,0.0800,0,88,0.170,0.0,1.0 +2000,3,18,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,-4.4,26,97700,0,0,313,0,0,0,0,0,0,0,280,1.5,3,3,16.0,77777,9,999999999,110,0.0800,0,88,0.170,0.0,1.0 +2000,3,18,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,-3.3,30,97600,0,0,297,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,100,0.0800,0,88,0.170,0.0,1.0 +2000,3,18,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,-1.7,36,97700,24,563,297,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,100,0.0800,0,88,0.170,0.0,1.0 +2000,3,18,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,-2.2,29,97800,262,1379,308,135,504,39,14000,38200,6800,730,0,0.0,0,0,16.0,77777,9,999999999,90,0.0800,0,88,0.170,0.0,1.0 +2000,3,18,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,-2.2,23,97900,540,1379,322,362,727,77,37200,68400,10400,1480,0,0.0,0,0,16.0,77777,9,999999999,90,0.0800,0,88,0.170,0.0,1.0 +2000,3,18,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,-3.9,18,98000,782,1379,330,555,785,109,57700,77600,13600,2350,310,1.5,0,0,16.0,77777,9,999999999,90,0.0800,0,88,0.170,0.0,1.0 +2000,3,18,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,-2.8,17,97900,971,1379,339,749,886,124,79000,89100,16100,3340,250,3.1,0,0,16.0,77777,9,999999999,80,0.0800,0,88,0.170,0.0,1.0 +2000,3,18,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,-2.2,17,97900,1093,1379,345,839,912,114,86500,91200,14100,3260,230,1.5,0,0,16.0,77777,9,999999999,80,0.0800,0,88,0.170,0.0,1.0 +2000,3,18,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,-1.7,16,97900,1139,1379,356,881,931,110,91000,93200,13800,3600,280,4.6,0,0,16.0,77777,9,999999999,90,0.0800,0,88,0.170,0.0,1.0 +2000,3,18,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,-1.1,15,97800,1108,1379,362,870,932,119,89700,93200,14600,3440,260,5.2,0,0,16.0,77777,9,999999999,90,0.0800,0,88,0.170,0.0,1.0 +2000,3,18,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,0.0,16,97700,1001,1379,366,778,918,110,80400,91500,13800,2650,300,4.1,0,0,16.0,77777,9,999999999,90,0.0800,0,88,0.170,0.0,1.0 +2000,3,18,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,0.6,17,97700,825,1379,369,634,862,117,65800,85400,14500,2590,300,4.6,0,0,16.0,77777,9,999999999,90,0.0800,0,88,0.170,0.0,1.0 +2000,3,18,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,0.6,17,97600,592,1379,369,416,639,141,42400,60300,16400,2650,260,4.6,0,0,16.0,77777,9,999999999,90,0.0800,0,88,0.170,0.0,1.0 +2000,3,18,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,1.1,18,97700,320,1379,367,233,432,132,23700,34600,15700,2850,260,5.2,0,0,16.0,77777,9,999999999,90,0.0800,0,88,0.170,0.0,1.0 +2000,3,18,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,1.1,19,97700,53,862,362,5,105,3,1100,6300,700,120,210,3.1,0,0,16.0,77777,9,999999999,90,0.0800,0,88,0.170,0.0,1.0 +2000,3,18,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,0.0,20,97700,0,0,350,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,90,0.0800,0,88,0.170,0.0,1.0 +2000,3,18,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,-1.1,19,97700,0,0,343,0,0,0,0,0,0,0,70,3.1,0,0,16.0,77777,9,999999999,90,0.0800,0,88,0.170,0.0,1.0 +2000,3,18,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,-3.3,17,97700,0,0,336,0,0,0,0,0,0,0,40,2.6,0,0,16.0,77777,9,999999999,90,0.0800,0,88,0.170,0.0,1.0 +2000,3,18,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,-3.9,19,97700,0,0,325,0,0,0,0,0,0,0,110,3.1,0,0,16.0,77777,9,999999999,100,0.0800,0,88,0.170,0.0,1.0 +2000,3,18,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,-4.4,19,97700,0,0,322,0,0,0,0,0,0,0,110,3.1,0,0,16.0,77777,9,999999999,100,0.0800,0,88,0.170,0.0,1.0 +2000,3,19,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,-5.0,18,97800,0,0,319,0,0,0,0,0,0,0,120,3.1,0,0,16.0,77777,9,999999999,100,0.0810,0,88,0.170,0.0,1.0 +2000,3,19,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,-4.4,21,97700,0,0,315,0,0,0,0,0,0,0,110,2.1,0,0,16.0,77777,9,999999999,100,0.0810,0,88,0.170,0.0,1.0 +2000,3,19,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,-6.7,17,97700,0,0,314,0,0,0,0,0,0,0,100,3.6,0,0,16.0,77777,9,999999999,100,0.0810,0,88,0.170,0.0,1.0 +2000,3,19,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,-4.4,22,97700,0,0,310,0,0,0,0,0,0,0,120,2.1,0,0,16.0,77777,9,999999999,100,0.0810,0,88,0.170,0.0,1.0 +2000,3,19,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,-6.1,21,97800,0,0,303,0,0,0,0,0,0,0,100,3.6,0,0,16.0,77777,9,999999999,100,0.0810,0,88,0.170,0.0,1.0 +2000,3,19,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,-5.6,22,97700,0,0,301,0,0,0,0,0,0,0,130,1.5,0,0,16.0,77777,9,999999999,100,0.0810,0,88,0.170,0.0,1.0 +2000,3,19,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,-5.6,23,97700,26,609,299,0,0,0,0,0,0,0,100,2.1,0,0,16.0,77777,9,999999999,100,0.0810,0,88,0.170,0.0,1.0 +2000,3,19,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,-5.0,22,97700,268,1379,307,143,546,37,14700,43000,6300,720,90,3.1,0,0,16.0,77777,9,999999999,100,0.0810,0,88,0.170,0.0,1.0 +2000,3,19,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,-6.1,16,97700,547,1379,320,377,784,66,39500,74500,9900,1370,100,2.1,0,0,16.0,77777,9,999999999,100,0.0810,0,88,0.170,0.0,1.0 +2000,3,19,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,-6.1,15,97700,788,1379,327,572,849,85,61000,84900,12400,2030,110,3.1,0,0,16.0,77777,9,999999999,100,0.0810,0,88,0.170,0.0,1.0 +2000,3,19,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,-5.0,15,97600,976,1379,333,750,910,104,77700,90700,13300,2500,110,2.1,0,0,16.0,77777,9,999999999,100,0.0810,0,88,0.170,0.0,1.0 +2000,3,19,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,-3.3,16,97500,1098,1379,343,851,930,108,87900,93100,13600,3230,100,3.1,0,0,16.0,77777,9,999999999,110,0.0810,0,88,0.170,0.0,1.0 +2000,3,19,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,-1.7,17,97400,1144,1379,350,900,925,130,92500,92500,15500,3940,100,3.1,0,0,16.0,77777,9,999999999,120,0.0810,0,88,0.170,0.0,1.0 +2000,3,19,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,0.6,19,97200,1112,1379,359,851,841,170,88400,84200,20200,5610,150,2.1,0,0,16.0,77777,9,999999999,120,0.0810,0,88,0.170,0.0,1.0 +2000,3,19,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,1.1,19,97100,1005,1379,362,751,820,152,77900,81900,18000,4060,190,1.5,0,0,16.0,77777,9,999999999,130,0.0810,0,88,0.170,0.0,1.0 +2000,3,19,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,1.1,18,97000,829,1379,365,619,799,137,65400,80500,16800,3280,240,1.5,0,0,16.0,77777,9,999999999,140,0.0810,0,88,0.170,0.0,1.0 +2000,3,19,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,1.7,19,96800,596,1379,365,448,803,100,46900,77400,13300,2020,280,2.1,0,0,16.0,77777,9,999999999,140,0.0810,0,88,0.170,0.0,1.0 +2000,3,19,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,1.1,18,96800,323,1379,365,229,572,94,23300,45900,12500,1770,260,2.1,0,0,16.0,77777,9,999999999,150,0.0810,0,88,0.170,0.0,1.0 +2000,3,19,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,0.0,19,96700,55,862,353,6,145,3,1400,8800,800,120,0,0.0,1,0,16.0,77777,9,999999999,150,0.0810,0,88,0.170,0.0,1.0 +2000,3,19,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,-1.1,19,96600,0,0,355,0,0,0,0,0,0,0,0,0.0,4,2,16.0,7620,9,999999999,160,0.0810,0,88,0.170,0.0,1.0 +2000,3,19,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,-2.2,18,96600,0,0,348,0,0,0,0,0,0,0,0,0.0,3,1,16.0,7620,9,999999999,170,0.0810,0,88,0.170,0.0,1.0 +2000,3,19,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,0.0,24,96500,0,0,335,0,0,0,0,0,0,0,80,1.5,0,0,16.0,7620,9,999999999,170,0.0810,0,88,0.170,0.0,1.0 +2000,3,19,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,0.0,25,96400,0,0,339,0,0,0,0,0,0,0,110,3.1,1,1,16.0,77777,9,999999999,180,0.0810,0,88,0.170,0.0,1.0 +2000,3,19,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,0.0,27,96300,0,0,333,0,0,0,0,0,0,0,110,3.1,2,1,16.0,7620,9,999999999,170,0.0810,0,88,0.170,0.0,1.0 +2000,3,20,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,-0.6,27,96200,0,0,341,0,0,0,0,0,0,0,80,2.6,9,4,16.0,7620,9,999999999,170,0.0810,0,88,0.170,0.0,1.0 +2000,3,20,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,1.1,34,96200,0,0,357,0,0,0,0,0,0,0,40,2.1,10,9,16.0,7620,9,999999999,160,0.0810,0,88,0.170,0.0,1.0 +2000,3,20,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,0.6,34,96100,0,0,334,0,0,0,0,0,0,0,20,1.5,7,5,16.0,77777,9,999999999,150,0.0810,0,88,0.170,0.0,1.0 +2000,3,20,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,0.0,33,95900,0,0,331,0,0,0,0,0,0,0,120,1.5,8,5,16.0,77777,9,999999999,150,0.0810,0,88,0.170,0.0,1.0 +2000,3,20,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,0.6,36,96000,0,0,317,0,0,0,0,0,0,0,130,1.5,2,1,16.0,77777,9,999999999,140,0.0810,0,88,0.170,0.0,1.0 +2000,3,20,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,0.6,36,95900,0,0,317,0,0,0,0,0,0,0,130,3.1,1,1,16.0,77777,9,999999999,130,0.0810,0,88,0.170,0.0,1.0 +2000,3,20,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,0.0,34,95900,29,631,310,0,0,0,0,0,0,0,10,2.1,0,0,16.0,77777,9,999999999,130,0.0810,0,88,0.170,0.0,1.0 +2000,3,20,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,0.0,30,95900,275,1378,320,139,343,70,14300,25600,9200,1290,0,0.0,1,0,16.0,77777,9,999999999,120,0.0810,0,88,0.170,0.0,1.0 +2000,3,20,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,1.7,28,96000,553,1378,349,132,11,128,15200,800,14900,5140,250,7.7,3,3,14.4,77777,9,999999999,120,0.0810,0,88,0.170,0.0,1.0 +2000,3,20,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,3.3,33,96000,794,1378,356,356,145,272,38700,15100,30000,7200,250,8.8,6,6,14.4,7500,9,999999999,110,0.0810,0,88,0.170,0.0,1.0 +2000,3,20,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,1.1,29,96000,982,1378,355,293,18,280,34100,1600,32900,12320,250,8.2,7,7,16.0,7620,9,999999999,100,0.0810,0,88,0.170,0.0,1.0 +2000,3,20,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,1.7,31,96000,1103,1378,361,463,95,387,51100,9800,43200,15290,310,9.3,8,8,8.0,7500,9,999999999,100,0.0810,0,88,0.170,0.0,1.0 +2000,3,20,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,-3.9,21,96100,1149,1378,356,447,42,412,49300,4300,45700,17100,290,8.8,9,9,16.0,7620,9,999999999,100,0.0810,0,88,0.170,0.0,1.0 +2000,3,20,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,-5.6,19,96000,1117,1378,362,340,18,326,39900,1600,38600,14550,260,7.7,10,10,16.0,3000,9,999999999,100,0.0810,0,88,0.170,0.0,1.0 +2000,3,20,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,-8.9,15,96000,1009,1378,344,259,12,250,30500,1000,29700,11500,270,7.2,9,9,16.0,7500,9,999999999,100,0.0810,0,88,0.170,0.0,1.0 +2000,3,20,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,-10.6,12,96000,832,1378,332,539,424,282,57500,45000,30200,7220,250,10.3,7,7,16.0,7500,9,999999999,90,0.0810,0,88,0.170,0.0,1.0 +2000,3,20,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,-10.0,14,96100,600,1378,324,413,519,187,42400,50500,20400,3870,270,7.2,7,6,16.0,7620,9,999999999,90,0.0810,0,88,0.170,0.0,1.0 +2000,3,20,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,-9.4,15,96100,327,1378,320,240,459,131,23700,36700,14900,2600,270,7.2,5,5,16.0,77777,9,999999999,90,0.0810,0,88,0.170,0.0,1.0 +2000,3,20,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,-10.0,15,96200,57,884,314,7,121,4,1400,7300,900,150,250,7.2,5,5,16.0,3658,9,999999999,90,0.0810,0,88,0.170,0.0,1.0 +2000,3,20,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,-3.9,29,96300,0,0,325,0,0,0,0,0,0,0,320,3.6,8,8,16.0,3048,9,999999999,90,0.0810,0,88,0.170,0.0,1.0 +2000,3,20,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,-4.4,28,96400,0,0,332,0,0,0,0,0,0,0,270,3.6,9,9,16.0,2743,9,999999999,90,0.0810,0,88,0.170,0.0,1.0 +2000,3,20,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,-3.9,31,96400,0,0,312,0,0,0,0,0,0,0,320,2.1,7,6,16.0,7620,9,999999999,90,0.0810,0,88,0.170,0.0,1.0 +2000,3,20,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,-2.8,34,96500,0,0,329,0,0,0,0,0,0,0,240,1.5,9,9,16.0,2591,9,999999999,80,0.0810,0,88,0.170,0.0,1.0 +2000,3,20,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,-4.4,30,96400,0,0,311,0,0,0,0,0,0,0,230,3.1,6,6,16.0,3658,9,999999999,90,0.0810,0,88,0.170,0.0,1.0 +2000,3,21,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,-1.1,42,96500,0,0,303,0,0,0,0,0,0,0,330,2.1,4,3,16.0,77777,9,999999999,90,0.0820,0,88,0.170,0.0,1.0 +2000,3,21,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,-0.6,47,96500,0,0,296,0,0,0,0,0,0,0,320,1.5,7,2,16.0,77777,9,999999999,90,0.0820,0,88,0.170,0.0,1.0 +2000,3,21,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,0.0,52,96500,0,0,297,0,0,0,0,0,0,0,0,0.0,8,3,16.0,77777,9,999999999,90,0.0820,0,88,0.170,0.0,1.0 +2000,3,21,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,-0.6,49,96500,0,0,301,0,0,0,0,0,0,0,340,2.1,10,5,16.0,77777,9,999999999,90,0.0820,0,88,0.170,0.0,1.0 +2000,3,21,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,0.6,54,96700,0,0,313,0,0,0,0,0,0,0,320,5.7,8,8,16.0,2591,9,999999999,90,0.0820,0,88,0.170,0.0,1.0 +2000,3,21,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,1.1,58,96700,0,0,327,0,0,0,0,0,0,0,10,4.6,10,10,16.0,3353,9,999999999,100,0.0820,0,88,0.170,0.0,1.0 +2000,3,21,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,1.7,63,96800,32,677,305,0,0,0,0,0,0,0,20,3.1,7,7,16.0,3658,9,999999999,100,0.0820,0,88,0.170,0.0,1.0 +2000,3,21,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,1.7,61,96900,281,1377,328,111,168,77,11700,12700,9100,1480,40,1.5,10,10,16.0,2896,9,999999999,100,0.0820,0,88,0.170,0.0,1.0 +2000,3,21,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,2.2,56,97000,559,1377,315,238,118,190,25700,11600,21000,4470,60,2.6,7,7,16.0,3658,9,999999999,100,0.0820,0,88,0.170,0.0,1.0 +2000,3,21,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,-3.9,32,97100,800,1377,310,305,64,267,33400,6500,29700,8400,80,3.1,6,6,16.0,3658,9,999999999,100,0.0820,0,88,0.170,0.0,1.0 +2000,3,21,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,-5.0,28,97200,987,1377,335,447,142,345,48800,15000,38000,10710,110,1.5,10,10,16.0,3353,9,999999999,100,0.0820,0,88,0.170,0.0,1.0 +2000,3,21,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,-5.6,24,97200,1108,1377,343,666,376,363,72400,40700,39600,13070,150,2.1,10,10,16.0,2896,9,999999999,100,0.0820,0,88,0.170,0.0,1.0 +2000,3,21,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,-4.4,26,97300,1153,1377,330,815,607,306,87400,63400,34200,12630,180,4.1,8,8,16.0,3658,9,999999999,100,0.0820,0,88,0.170,0.0,1.0 +2000,3,21,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,-3.3,28,97300,1121,1377,331,693,399,367,75400,43200,40100,13550,200,2.1,8,8,16.0,3048,9,999999999,100,0.0820,0,88,0.170,0.0,1.0 +2000,3,21,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,-2.8,30,97300,1013,1377,332,737,697,223,76900,70100,25200,6550,210,2.6,8,8,16.0,2896,9,999999999,90,0.0820,0,88,0.170,0.0,1.0 +2000,3,21,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,-2.2,30,97300,836,1377,335,604,717,167,62900,71600,19300,3920,230,3.1,8,8,16.0,3048,9,999999999,90,0.0820,0,88,0.170,0.0,1.0 +2000,3,21,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,-3.3,27,97300,603,1377,325,454,762,120,47000,73000,14900,2360,300,1.5,6,6,16.0,7620,9,999999999,90,0.0820,0,88,0.170,0.0,1.0 +2000,3,21,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,-3.9,26,97300,330,1377,321,236,597,93,23600,47300,12200,1520,0,0.0,5,5,16.0,77777,9,999999999,90,0.0820,0,88,0.170,0.0,1.0 +2000,3,21,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,-4.4,25,97400,60,907,316,8,165,3,1600,10100,900,120,360,1.5,3,3,16.0,77777,9,999999999,80,0.0820,0,88,0.170,0.0,1.0 +2000,3,21,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,-3.9,28,97400,0,0,312,0,0,0,0,0,0,0,320,2.1,3,3,16.0,77777,9,999999999,80,0.0820,0,88,0.170,0.0,1.0 +2000,3,21,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,-2.8,32,97400,0,0,303,0,0,0,0,0,0,0,310,2.1,1,1,16.0,77777,9,999999999,80,0.0820,0,88,0.170,0.0,1.0 +2000,3,21,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,-1.7,37,97400,0,0,294,0,0,0,0,0,0,0,330,1.5,0,0,16.0,77777,9,999999999,80,0.0820,0,88,0.170,0.0,1.0 +2000,3,21,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,-1.1,41,97400,0,0,293,0,0,0,0,0,0,0,310,2.1,0,0,16.0,77777,9,999999999,70,0.0820,0,88,0.170,0.0,1.0 +2000,3,21,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,-1.1,42,97300,0,0,290,0,0,0,0,0,0,0,330,2.1,0,0,16.0,77777,9,999999999,80,0.0820,0,88,0.170,0.0,1.0 +2000,3,22,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,-1.1,42,97300,0,0,290,0,0,0,0,0,0,0,280,2.1,0,0,16.0,77777,9,999999999,80,0.0830,0,88,0.170,0.0,1.0 +2000,3,22,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,-1.1,42,97300,0,0,307,0,0,0,0,0,0,0,260,2.6,5,5,16.0,77777,9,999999999,80,0.0830,0,88,0.170,0.0,1.0 +2000,3,22,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,-0.6,46,97300,0,0,333,0,0,0,0,0,0,0,230,3.6,10,10,16.0,4572,9,999999999,80,0.0830,0,88,0.170,0.0,1.0 +2000,3,22,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,-0.6,47,97300,0,0,303,0,0,0,0,0,0,0,230,2.1,5,5,16.0,77777,9,999999999,90,0.0830,0,88,0.170,0.0,1.0 +2000,3,22,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,-1.1,45,97400,0,0,286,0,0,0,0,0,0,0,230,3.6,0,0,16.0,4572,9,999999999,90,0.0830,0,88,0.170,0.0,1.0 +2000,3,22,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,-2.2,45,97400,0,0,286,0,0,0,0,0,0,0,0,0.0,1,1,16.0,77777,9,999999999,90,0.0830,0,88,0.170,0.0,1.0 +2000,3,22,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,-1.1,45,97400,35,700,286,0,75,0,0,0,0,0,310,1.5,0,0,16.0,77777,9,999999999,90,0.0830,0,88,0.170,0.0,1.0 +2000,3,22,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,-2.8,35,97500,287,1376,291,149,501,44,15500,39400,7200,820,260,2.6,0,0,16.0,77777,9,999999999,100,0.0830,0,88,0.170,0.0,1.0 +2000,3,22,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,-2.2,34,97600,565,1376,296,372,680,92,38900,65000,12200,1840,300,1.5,0,0,16.0,77777,9,999999999,100,0.0830,0,88,0.170,0.0,1.0 +2000,3,22,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,-1.1,34,97600,806,1376,304,574,780,116,59400,77100,14100,2510,130,1.5,0,0,16.0,77777,9,999999999,100,0.0830,0,88,0.170,0.0,1.0 +2000,3,22,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,-1.1,29,97700,993,1376,314,763,875,130,80300,88000,16700,3600,210,1.5,0,0,16.0,77777,9,999999999,100,0.0830,0,88,0.170,0.0,1.0 +2000,3,22,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,-2.2,26,97700,1113,1376,315,858,805,205,91000,82000,24500,7540,290,2.6,0,0,16.0,77777,9,999999999,100,0.0830,0,88,0.170,0.0,1.0 +2000,3,22,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,-2.8,24,97700,1158,1376,330,622,288,379,67800,31200,41400,15160,270,2.6,3,3,16.0,7315,9,999999999,100,0.0830,0,88,0.170,0.0,1.0 +2000,3,22,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,-2.8,23,97600,1125,1376,350,838,708,258,87600,71300,29200,9540,240,2.6,9,8,16.0,7315,9,999999999,100,0.0830,0,88,0.170,0.0,1.0 +2000,3,22,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,-2.8,22,97600,1016,1376,348,803,905,133,84700,91100,17200,3830,260,4.1,7,7,16.0,7620,9,999999999,110,0.0830,0,88,0.170,0.0,1.0 +2000,3,22,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,-1.7,24,97600,840,1376,339,646,879,108,67800,87700,14100,2520,250,2.1,3,3,16.0,77777,9,999999999,110,0.0830,0,88,0.170,0.0,1.0 +2000,3,22,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,-1.1,25,97600,607,1376,326,445,761,108,46300,73400,13800,2170,240,5.7,0,0,16.0,77777,9,999999999,110,0.0830,0,88,0.170,0.0,1.0 +2000,3,22,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,-0.6,27,97700,334,1376,335,233,568,95,23900,46200,12600,1790,250,3.6,2,2,16.0,77777,9,999999999,110,0.0830,0,88,0.170,0.0,1.0 +2000,3,22,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,-1.1,26,97700,62,929,350,9,163,4,1700,10000,1000,150,250,3.1,7,7,16.0,3658,9,999999999,110,0.0830,0,88,0.170,0.0,1.0 +2000,3,22,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,-2.8,23,97700,0,0,338,0,0,0,0,0,0,0,230,3.1,5,5,16.0,3658,9,999999999,110,0.0830,0,88,0.170,0.0,1.0 +2000,3,22,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,-2.8,23,97700,0,0,338,0,0,0,0,0,0,0,220,2.6,5,5,16.0,3658,9,999999999,110,0.0830,0,88,0.170,0.0,1.0 +2000,3,22,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,-2.8,24,97700,0,0,338,0,0,0,0,0,0,0,130,2.1,6,6,16.0,3658,9,999999999,110,0.0830,0,88,0.170,0.0,1.0 +2000,3,22,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,-1.7,27,97800,0,0,346,0,0,0,0,0,0,0,110,2.1,8,8,16.0,2896,9,999999999,110,0.0830,0,88,0.170,0.0,1.0 +2000,3,22,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,-0.6,32,97700,0,0,360,0,0,0,0,0,0,0,80,1.5,10,10,16.0,2743,9,999999999,110,0.0830,0,88,0.170,0.0,1.0 +2000,3,23,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,-1.1,33,97700,0,0,306,0,0,0,0,0,0,0,100,2.1,0,0,16.0,77777,9,999999999,110,0.0840,0,88,0.170,0.0,1.0 +2000,3,23,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,0.0,37,97800,0,0,323,0,0,0,0,0,0,0,70,2.1,5,5,16.0,77777,9,999999999,110,0.0840,0,88,0.170,0.0,1.0 +2000,3,23,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,0.6,42,97800,0,0,314,0,0,0,0,0,0,0,70,1.5,3,3,16.0,77777,9,999999999,110,0.0840,0,88,0.170,0.0,1.0 +2000,3,23,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,0.0,41,97800,0,0,308,0,0,0,0,0,0,0,0,0.0,2,2,16.0,77777,9,999999999,110,0.0840,0,88,0.170,0.0,1.0 +2000,3,23,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,0.0,43,97900,0,0,296,0,0,0,0,0,0,0,40,1.5,0,0,16.0,77777,9,999999999,110,0.0840,0,88,0.170,0.0,1.0 +2000,3,23,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,-1.1,39,97900,0,0,307,0,0,0,0,0,0,0,70,2.6,3,3,16.0,77777,9,999999999,110,0.0840,0,88,0.170,0.0,1.0 +2000,3,23,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,-0.6,42,97900,38,722,293,1,93,0,0,0,0,0,80,2.1,0,0,16.0,77777,9,999999999,110,0.0840,0,88,0.170,0.0,1.0 +2000,3,23,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,0.0,40,97900,294,1375,300,165,564,44,16700,45500,7000,820,100,3.6,0,0,16.0,77777,9,999999999,110,0.0840,0,88,0.170,0.0,1.0 +2000,3,23,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,0.6,39,98000,571,1375,306,360,597,111,37200,56700,13500,2160,110,2.6,0,0,16.0,7620,9,999999999,100,0.0840,0,88,0.170,0.0,1.0 +2000,3,23,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,-1.1,29,98000,811,1375,320,544,641,165,56600,63800,18900,3770,0,0.0,3,1,16.0,7620,9,999999999,100,0.0840,0,88,0.170,0.0,1.0 +2000,3,23,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,-1.1,27,98000,998,1375,327,736,792,159,78400,80900,19600,4750,360,2.1,2,1,16.0,7620,9,999999999,100,0.0840,0,88,0.170,0.0,1.0 +2000,3,23,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,-2.2,22,97900,1117,1375,333,818,770,191,87300,78700,23200,7160,360,2.6,1,1,16.0,7620,9,999999999,110,0.0840,0,88,0.170,0.0,1.0 +2000,3,23,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,-1.7,22,97900,1162,1375,337,864,811,177,90000,81300,21100,6710,0,0.0,2,1,16.0,7620,9,999999999,110,0.0840,0,88,0.170,0.0,1.0 +2000,3,23,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,-1.7,21,97800,1129,1375,343,851,817,179,88200,81700,21000,6120,310,2.6,4,2,16.0,7620,9,999999999,110,0.0840,0,88,0.170,0.0,1.0 +2000,3,23,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,-1.1,21,97700,1020,1375,345,750,752,191,79200,76300,22400,5820,250,3.6,3,1,16.0,7620,9,999999999,120,0.0840,0,88,0.170,0.0,1.0 +2000,3,23,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,-0.6,21,97700,843,1375,348,653,873,116,68000,86800,14600,2650,290,2.1,3,1,16.0,7620,9,999999999,120,0.0840,0,88,0.170,0.0,1.0 +2000,3,23,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,-1.1,20,97600,610,1375,356,444,609,173,46000,59600,19500,3550,270,4.1,6,3,16.0,7620,9,999999999,120,0.0840,0,88,0.170,0.0,1.0 +2000,3,23,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,-1.1,21,97600,337,1375,349,172,164,132,18300,13800,15000,2890,280,2.1,5,2,16.0,7620,9,999999999,130,0.0840,0,88,0.170,0.0,1.0 +2000,3,23,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,-1.1,22,97600,64,928,344,7,49,6,1100,2500,900,120,300,2.1,5,2,16.0,7620,9,999999999,130,0.0840,0,88,0.170,0.0,1.0 +2000,3,23,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,-1.1,24,97600,0,0,335,0,0,0,0,0,0,0,0,0.0,2,1,16.0,7620,9,999999999,130,0.0840,0,88,0.170,0.0,1.0 +2000,3,23,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,0.0,28,97600,0,0,331,0,0,0,0,0,0,0,0,0.0,1,1,16.0,7620,9,999999999,140,0.0840,0,88,0.170,0.0,1.0 +2000,3,23,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,0.6,30,97600,0,0,323,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,140,0.0840,0,88,0.170,0.0,1.0 +2000,3,23,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,1.1,34,97600,0,0,324,0,0,0,0,0,0,0,120,2.1,1,1,16.0,7620,9,999999999,140,0.0840,0,88,0.170,0.0,1.0 +2000,3,23,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,1.7,39,97500,0,0,312,0,0,0,0,0,0,0,110,2.1,0,0,16.0,77777,9,999999999,150,0.0840,0,88,0.170,0.0,1.0 +2000,3,24,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,1.7,44,97500,0,0,305,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,150,0.0850,0,88,0.170,0.0,1.0 +2000,3,24,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,2.8,47,97500,0,0,306,0,0,0,0,0,0,0,110,1.5,0,0,16.0,77777,9,999999999,150,0.0850,0,88,0.170,0.0,1.0 +2000,3,24,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,1.7,47,97400,0,0,300,0,0,0,0,0,0,0,110,3.1,0,0,16.0,77777,9,999999999,160,0.0850,0,88,0.170,0.0,1.0 +2000,3,24,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,2.2,50,97400,0,0,298,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,160,0.0850,0,88,0.170,0.0,1.0 +2000,3,24,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,1.1,47,97500,0,0,297,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,160,0.0850,0,88,0.170,0.0,1.0 +2000,3,24,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,2.2,54,97400,0,0,294,0,0,0,0,0,0,0,100,2.1,0,0,16.0,77777,9,999999999,170,0.0850,0,88,0.170,0.0,1.0 +2000,3,24,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,2.8,57,97400,42,767,294,2,102,1,800,6000,400,40,100,1.5,0,0,16.0,77777,9,999999999,170,0.0850,0,88,0.170,0.0,1.0 +2000,3,24,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,1.7,45,97500,300,1375,302,164,407,75,17000,31700,10100,1380,110,3.1,0,0,16.0,7620,9,999999999,170,0.0850,0,88,0.170,0.0,1.0 +2000,3,24,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,2.2,38,97500,577,1375,317,241,118,191,26100,11700,21100,4530,80,1.5,0,0,16.0,7620,9,999999999,180,0.0850,0,88,0.170,0.0,1.0 +2000,3,24,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,2.8,33,97600,817,1375,341,436,245,290,47300,25600,32100,7800,40,1.5,3,2,16.0,7620,9,999999999,180,0.0850,0,88,0.170,0.0,1.0 +2000,3,24,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,2.2,28,97600,1003,1375,351,775,804,186,81800,81600,22100,5520,10,2.1,3,2,16.0,7620,9,999999999,180,0.0850,0,88,0.170,0.0,1.0 +2000,3,24,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,2.2,25,97600,1122,1375,359,864,758,244,90700,76600,28000,9050,30,2.1,3,2,16.0,7620,9,999999999,170,0.0850,0,88,0.170,0.0,1.0 +2000,3,24,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,1.1,23,97500,1167,1375,357,344,60,293,38100,6100,32900,13160,0,0.0,3,2,16.0,7620,9,999999999,160,0.0850,0,88,0.170,0.0,1.0 +2000,3,24,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,1.1,21,97400,1133,1375,372,864,714,273,89900,71700,30600,10280,0,0.0,8,4,16.0,7620,9,999999999,150,0.0850,0,88,0.170,0.0,1.0 +2000,3,24,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,1.1,20,97400,1024,1375,371,816,935,118,84200,93300,14500,2840,360,1.5,5,2,16.0,7620,9,999999999,140,0.0850,0,88,0.170,0.0,1.0 +2000,3,24,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,1.1,20,97300,847,1375,366,667,810,166,69600,81100,19500,3960,0,0.0,1,1,16.0,7620,9,999999999,130,0.0850,0,88,0.170,0.0,1.0 +2000,3,24,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,1.1,20,97200,614,1375,366,392,439,196,41600,44500,21700,4340,300,2.1,1,1,16.0,7620,9,999999999,120,0.0850,0,88,0.170,0.0,1.0 +2000,3,24,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,1.1,20,97300,341,1375,364,240,439,131,23800,35800,14900,2580,240,2.6,1,1,16.0,7620,9,999999999,110,0.0850,0,88,0.170,0.0,1.0 +2000,3,24,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,1.1,22,97300,67,951,358,11,135,6,1800,8000,1200,150,260,3.1,2,1,16.0,77777,9,999999999,100,0.0850,0,88,0.170,0.0,1.0 +2000,3,24,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,1.1,24,97300,0,0,344,0,0,0,0,0,0,0,280,2.6,0,0,16.0,77777,9,999999999,90,0.0850,0,88,0.170,0.0,1.0 +2000,3,24,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,1.1,27,97300,0,0,334,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,80,0.0850,0,88,0.170,0.0,1.0 +2000,3,24,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,1.7,31,97400,0,0,329,0,0,0,0,0,0,0,270,1.5,0,0,16.0,77777,9,999999999,70,0.0850,0,88,0.170,0.0,1.0 +2000,3,24,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,2.2,34,97400,0,0,324,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,60,0.0850,0,88,0.170,0.0,1.0 +2000,3,24,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,2.8,37,97400,0,0,323,0,0,0,0,0,0,0,50,1.5,0,0,16.0,77777,9,999999999,60,0.0850,0,88,0.170,0.0,1.0 +2000,3,25,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,3.3,41,97400,0,0,319,0,0,0,0,0,0,0,100,1.5,0,0,16.0,77777,9,999999999,70,0.0850,0,88,0.170,0.0,1.0 +2000,3,25,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,3.9,47,97400,0,0,312,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,70,0.0850,0,88,0.170,0.0,1.0 +2000,3,25,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,2.2,42,97300,0,0,310,0,0,0,0,0,0,0,100,2.1,0,0,16.0,77777,9,999999999,80,0.0850,0,88,0.170,0.0,1.0 +2000,3,25,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,2.8,46,97300,0,0,308,0,0,0,0,0,0,0,90,2.6,0,0,16.0,77777,9,999999999,80,0.0850,0,88,0.170,0.0,1.0 +2000,3,25,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,3.3,51,97400,0,0,304,0,0,0,0,0,0,0,100,2.6,0,0,16.0,77777,9,999999999,80,0.0850,0,88,0.170,0.0,1.0 +2000,3,25,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,2.2,45,97400,0,0,305,0,0,0,0,0,0,0,110,3.6,1,0,16.0,77777,9,999999999,90,0.0850,0,88,0.170,0.0,1.0 +2000,3,25,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,1.7,45,97500,45,790,302,3,113,1,900,6700,500,40,100,3.1,0,0,16.0,77777,9,999999999,90,0.0850,0,88,0.170,0.0,1.0 +2000,3,25,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,1.7,39,97600,307,1374,312,176,565,49,18200,45400,8000,910,100,3.1,0,0,16.0,7620,9,999999999,90,0.0850,0,88,0.170,0.0,1.0 +2000,3,25,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,2.2,34,97700,583,1374,324,362,513,144,38100,49900,16900,2870,100,3.1,0,0,16.0,7620,9,999999999,100,0.0850,0,88,0.170,0.0,1.0 +2000,3,25,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,2.2,30,97800,823,1374,341,400,204,278,43600,21300,30800,7510,120,2.6,2,1,16.0,7620,9,999999999,100,0.0850,0,88,0.170,0.0,1.0 +2000,3,25,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,2.2,27,97800,1008,1374,349,737,704,219,77000,70900,24800,6420,90,1.5,2,1,16.0,7620,9,999999999,100,0.0850,0,88,0.170,0.0,1.0 +2000,3,25,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,1.7,23,97800,1127,1374,361,847,823,170,88200,82500,20300,5890,270,2.1,3,2,16.0,7620,9,999999999,110,0.0850,0,88,0.170,0.0,1.0 +2000,3,25,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,2.2,22,97700,1171,1374,365,919,919,133,94300,92000,15700,4380,260,1.5,2,1,16.0,77777,9,999999999,120,0.0850,0,88,0.170,0.0,1.0 +2000,3,25,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,1.7,20,97700,1137,1374,360,876,853,168,91500,85700,20400,6010,250,3.1,0,0,16.0,77777,9,999999999,120,0.0850,0,88,0.170,0.0,1.0 +2000,3,25,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,2.8,21,97600,1027,1374,364,809,899,135,85300,90500,17400,3960,240,2.1,0,0,16.0,77777,9,999999999,130,0.0850,0,88,0.170,0.0,1.0 +2000,3,25,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,1.7,19,97600,850,1374,365,630,741,170,65700,74100,19700,4060,230,4.6,0,0,16.0,77777,9,999999999,140,0.0850,0,88,0.170,0.0,1.0 +2000,3,25,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,1.7,19,97500,617,1374,365,458,745,122,47300,71700,15000,2420,270,3.1,0,0,16.0,77777,9,999999999,150,0.0850,0,88,0.170,0.0,1.0 +2000,3,25,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,1.7,20,97600,344,1374,363,251,590,103,25600,48600,13400,1950,300,2.1,0,0,16.0,77777,9,999999999,150,0.0850,0,88,0.170,0.0,1.0 +2000,3,25,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,1.7,22,97600,69,973,355,13,188,5,2100,11700,1200,180,300,2.6,0,0,16.0,77777,9,999999999,160,0.0850,0,88,0.170,0.0,1.0 +2000,3,25,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,2.2,25,97700,0,0,347,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,170,0.0850,0,88,0.170,0.0,1.0 +2000,3,25,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,2.2,28,97700,0,0,340,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,170,0.0850,0,88,0.170,0.0,1.0 +2000,3,25,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,1.7,28,97700,0,0,334,0,0,0,0,0,0,0,300,1.5,0,0,16.0,77777,9,999999999,180,0.0850,0,88,0.170,0.0,1.0 +2000,3,25,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,2.2,30,97800,0,0,335,0,0,0,0,0,0,0,270,1.5,0,0,16.0,77777,9,999999999,190,0.0850,0,88,0.170,0.0,1.0 +2000,3,25,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,2.8,34,97800,0,0,328,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,180,0.0850,0,88,0.170,0.0,1.0 +2000,3,26,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,3.3,38,97800,0,0,323,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,170,0.0860,0,88,0.170,0.0,1.0 +2000,3,26,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,3.3,39,97700,0,0,335,0,0,0,0,0,0,0,0,0.0,3,3,16.0,77777,9,999999999,160,0.0860,0,88,0.170,0.0,1.0 +2000,3,26,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,3.9,46,97700,0,0,325,0,0,0,0,0,0,0,0,0.0,2,2,16.0,77777,9,999999999,150,0.0860,0,88,0.170,0.0,1.0 +2000,3,26,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,3.9,47,97700,0,0,330,0,0,0,0,0,0,0,150,1.5,5,5,16.0,77777,9,999999999,140,0.0860,0,88,0.170,0.0,1.0 +2000,3,26,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,2.8,44,97800,0,0,311,0,0,0,0,0,0,0,120,1.5,0,0,16.0,77777,9,999999999,140,0.0860,0,88,0.170,0.0,1.0 +2000,3,26,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,1.7,42,97800,0,0,307,0,0,0,0,0,0,0,100,2.6,0,0,16.0,77777,9,999999999,130,0.0860,0,88,0.170,0.0,1.0 +2000,3,26,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,2.2,45,97800,49,812,305,4,131,2,1100,7800,700,80,100,1.5,0,0,16.0,77777,9,999999999,120,0.0860,0,88,0.170,0.0,1.0 +2000,3,26,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,1.7,39,97900,313,1373,312,181,603,44,18600,49800,7200,850,90,3.1,0,0,16.0,77777,9,999999999,110,0.0860,0,88,0.170,0.0,1.0 +2000,3,26,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,2.2,34,98000,589,1373,324,414,808,67,43800,77900,10200,1440,110,3.1,0,0,16.0,77777,9,999999999,100,0.0860,0,88,0.170,0.0,1.0 +2000,3,26,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,1.7,28,98100,828,1373,337,619,898,76,64700,88900,10900,1840,110,3.6,0,0,16.0,77777,9,999999999,90,0.0860,0,88,0.170,0.0,1.0 +2000,3,26,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,2.2,25,98000,1013,1373,347,782,911,107,80800,90900,13500,2720,130,2.1,0,0,16.0,77777,9,999999999,80,0.0860,0,88,0.170,0.0,1.0 +2000,3,26,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,2.2,23,98000,1131,1373,355,888,949,104,91900,95100,13300,3470,180,1.5,0,0,16.0,77777,9,999999999,90,0.0860,0,88,0.170,0.0,1.0 +2000,3,26,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,1.7,20,97900,1175,1373,363,913,931,114,94200,93300,14100,4120,230,5.2,0,0,16.0,77777,9,999999999,100,0.0860,0,88,0.170,0.0,1.0 +2000,3,26,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,1.1,18,97800,1141,1373,365,895,926,124,92200,92700,15000,3880,260,4.1,0,0,16.0,77777,9,999999999,100,0.0860,0,88,0.170,0.0,1.0 +2000,3,26,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,0.6,17,97700,1031,1373,367,796,856,152,82900,85700,18400,4330,300,5.2,0,0,16.0,77777,9,999999999,110,0.0860,0,88,0.170,0.0,1.0 +2000,3,26,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,1.7,18,97700,854,1373,371,622,741,160,65200,74400,18800,3870,260,4.6,0,0,16.0,77777,9,999999999,110,0.0860,0,88,0.170,0.0,1.0 +2000,3,26,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,2.2,19,97600,620,1373,371,440,660,141,45000,63100,16500,2730,250,4.6,0,0,16.0,77777,9,999999999,120,0.0860,0,88,0.170,0.0,1.0 +2000,3,26,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,1.1,18,97700,348,1373,367,248,578,101,25300,47800,13200,1910,250,5.2,0,0,16.0,77777,9,999999999,130,0.0860,0,88,0.170,0.0,1.0 +2000,3,26,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,1.1,19,97600,71,995,362,14,190,6,2200,11800,1300,210,260,3.6,0,0,16.0,77777,9,999999999,130,0.0860,0,88,0.170,0.0,1.0 +2000,3,26,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,0.6,19,97600,0,0,356,0,0,0,0,0,0,0,250,3.1,0,0,16.0,77777,9,999999999,140,0.0860,0,88,0.170,0.0,1.0 +2000,3,26,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,-0.6,18,97600,0,0,352,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,140,0.0860,0,88,0.170,0.0,1.0 +2000,3,26,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,1.1,26,97600,0,0,336,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,150,0.0860,0,88,0.170,0.0,1.0 +2000,3,26,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,2.2,30,97600,0,0,335,0,0,0,0,0,0,0,110,1.5,0,0,16.0,77777,9,999999999,160,0.0860,0,88,0.170,0.0,1.0 +2000,3,26,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,1.7,31,97600,0,0,329,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,150,0.0860,0,88,0.170,0.0,1.0 +2000,3,27,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,2.2,36,97600,0,0,320,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,140,0.0870,0,88,0.170,0.0,1.0 +2000,3,27,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,3.3,39,97500,0,0,321,0,0,0,0,0,0,0,110,1.5,0,0,16.0,77777,9,999999999,130,0.0870,0,88,0.170,0.0,1.0 +2000,3,27,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,3.3,42,97500,0,0,316,0,0,0,0,0,0,0,110,2.6,0,0,16.0,77777,9,999999999,130,0.0870,0,88,0.170,0.0,1.0 +2000,3,27,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,3.9,47,97400,0,0,312,0,0,0,0,0,0,0,110,2.6,0,0,16.0,77777,9,999999999,120,0.0870,0,88,0.170,0.0,1.0 +2000,3,27,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,3.3,47,97500,0,0,309,0,0,0,0,0,0,0,120,2.1,0,0,16.0,77777,9,999999999,110,0.0870,0,88,0.170,0.0,1.0 +2000,3,27,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,2.2,42,97400,0,0,310,0,0,0,0,0,0,0,90,2.1,0,0,16.0,77777,9,999999999,110,0.0870,0,88,0.170,0.0,1.0 +2000,3,27,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,2.2,40,97500,52,858,313,5,94,3,1000,5600,600,120,90,2.6,1,0,16.0,77777,9,999999999,100,0.0870,0,88,0.170,0.0,1.0 +2000,3,27,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,2.2,39,97500,319,1372,321,152,362,67,16000,29100,9200,1210,100,4.1,2,1,16.0,7620,9,999999999,90,0.0870,0,88,0.170,0.0,1.0 +2000,3,27,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,1.1,29,97500,595,1372,334,346,396,174,36900,39900,19600,3740,110,3.6,2,1,16.0,7620,9,999999999,90,0.0870,0,88,0.170,0.0,1.0 +2000,3,27,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,1.1,25,97500,834,1372,345,636,799,149,66900,80300,17900,3560,110,2.6,3,1,16.0,7620,9,999999999,80,0.0870,0,88,0.170,0.0,1.0 +2000,3,27,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,2.2,25,97400,1018,1372,354,738,704,214,77300,71000,24400,6430,130,2.1,2,1,16.0,77777,9,999999999,70,0.0870,0,88,0.170,0.0,1.0 +2000,3,27,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,0.6,19,97400,1136,1372,363,848,692,273,88300,69500,30600,10420,180,2.6,1,1,16.0,7620,9,999999999,80,0.0870,0,88,0.170,0.0,1.0 +2000,3,27,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,1.1,20,97300,1179,1372,378,345,60,293,38200,6100,32900,13430,220,2.1,6,4,16.0,7620,9,999999999,80,0.0870,0,88,0.170,0.0,1.0 +2000,3,27,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,0.6,18,97200,1144,1372,386,605,248,398,65700,26900,43200,15690,230,3.1,9,6,16.0,4572,9,999999999,80,0.0870,0,88,0.170,0.0,1.0 +2000,3,27,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,0.6,18,97000,1035,1372,386,172,0,172,20900,0,20900,8600,240,1.5,10,6,16.0,4267,9,999999999,90,0.0870,0,88,0.170,0.0,1.0 +2000,3,27,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,0.0,17,97000,857,1372,386,222,6,218,25800,500,25500,9590,260,1.5,10,6,16.0,4267,9,999999999,90,0.0870,0,88,0.170,0.0,1.0 +2000,3,27,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,1.1,19,96800,624,1372,387,232,39,214,25400,3900,23700,6030,270,3.1,9,6,16.0,4267,9,999999999,100,0.0870,0,88,0.170,0.0,1.0 +2000,3,27,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,2.8,23,97000,351,1372,394,109,0,109,12000,0,12000,3610,270,5.7,10,8,16.0,2438,9,999999999,100,0.0870,0,88,0.170,0.0,1.0 +2000,3,27,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,2.8,24,97000,74,995,396,6,0,6,800,0,800,240,290,4.1,10,9,16.0,2896,9,999999999,110,0.0870,0,88,0.170,0.0,1.0 +2000,3,27,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,2.8,26,97000,0,0,391,0,0,0,0,0,0,0,280,5.7,10,9,16.0,2743,9,999999999,110,0.0870,0,88,0.170,0.0,1.0 +2000,3,27,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,4.4,31,97000,0,0,387,0,0,0,0,0,0,0,270,2.1,10,9,16.0,2743,9,999999999,110,0.0870,0,88,0.170,0.0,1.0 +2000,3,27,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,5.0,33,96900,0,0,380,0,0,0,0,0,0,0,150,3.1,10,8,16.0,2591,9,999999999,120,0.0870,0,88,0.170,0.0,1.0 +2000,3,27,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,8.3,44,96900,0,0,386,0,0,0,0,0,0,0,180,4.6,10,9,16.0,2438,9,999999999,120,0.0870,0,88,0.170,0.0,1.0 +2000,3,27,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,9.4,54,96800,0,0,368,0,0,0,0,0,0,0,160,5.7,9,8,16.0,2438,9,999999999,130,0.0870,0,88,0.170,0.0,1.0 +2000,3,28,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,11.7,70,96700,0,0,381,0,0,0,0,0,0,0,0,0.0,10,10,16.0,2134,9,999999999,130,0.0880,0,88,0.170,0.0,1.0 +2000,3,28,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,11.7,72,96700,0,0,378,0,0,0,0,0,0,0,0,0.0,10,10,16.0,2134,9,999999999,130,0.0880,0,88,0.170,0.0,1.0 +2000,3,28,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,12.8,83,96600,0,0,374,0,0,0,0,0,0,0,70,3.1,10,10,16.0,2743,9,999999999,130,0.0880,0,88,0.170,0.0,1.0 +2000,3,28,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,12.8,83,96600,0,0,374,0,0,0,0,0,0,0,100,2.6,10,10,16.0,2134,9,999999999,130,0.0880,0,88,0.170,0.0,1.0 +2000,3,28,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,13.3,90,96600,0,0,371,0,0,0,0,0,0,0,70,1.5,10,10,16.0,2286,9,999999999,140,0.0880,0,88,0.170,0.0,1.0 +2000,3,28,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,13.3,90,96600,0,0,371,0,0,0,0,0,0,0,100,2.6,10,10,16.0,2134,9,999999999,140,0.0880,0,88,0.170,0.0,1.0 +2000,3,28,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,12.2,80,96700,56,880,373,6,37,5,900,1500,800,80,100,2.1,10,10,16.0,1981,9,999999999,140,0.0880,0,88,0.170,0.0,1.0 +2000,3,28,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,11.7,78,96700,326,1371,373,36,0,36,4300,0,4300,1500,130,2.1,10,10,16.0,1829,9,999999999,140,0.0880,0,88,0.170,0.0,1.0 +2000,3,28,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,13.3,90,96700,601,1371,371,117,0,117,13700,0,13700,5000,330,2.1,10,10,16.0,1463,9,999999999,140,0.0880,0,88,0.170,0.0,1.0 +2000,3,28,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,12.8,81,96800,839,1371,376,193,0,193,22600,0,22600,8660,50,2.1,10,10,16.0,1676,9,999999999,150,0.0880,0,88,0.170,0.0,1.0 +2000,3,28,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,12.8,78,96800,1023,1371,380,150,0,150,18400,0,18400,7630,50,2.1,10,10,16.0,1372,9,999999999,150,0.0880,0,88,0.170,0.0,1.0 +2000,3,28,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,12.2,75,96800,1140,1371,379,331,18,316,39100,1600,37700,14350,40,2.6,10,10,16.0,1250,9,999999999,150,0.0880,0,88,0.170,0.0,1.0 +2000,3,28,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,11.7,67,96800,1183,1371,384,417,30,391,46000,3100,43400,17360,30,1.5,10,10,16.0,1676,9,999999999,150,0.0880,0,88,0.170,0.0,1.0 +2000,3,28,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,10.0,54,96800,1148,1371,390,479,85,408,52900,8800,45500,17070,20,2.6,10,10,16.0,1676,9,999999999,150,0.0880,0,88,0.170,0.0,1.0 +2000,3,28,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,9.4,49,96800,1038,1371,377,212,12,203,25500,900,24800,9890,10,1.5,8,8,16.0,1676,9,999999999,160,0.0880,0,88,0.170,0.0,1.0 +2000,3,28,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,8.9,46,96800,860,1371,379,643,647,236,67700,66500,25900,5860,0,0.0,8,8,16.0,1829,9,999999999,160,0.0880,0,88,0.170,0.0,1.0 +2000,3,28,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,8.3,42,96800,627,1371,368,463,783,104,48500,76300,13600,2140,300,1.5,5,5,16.0,77777,9,999999999,160,0.0880,0,88,0.170,0.0,1.0 +2000,3,28,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,8.9,44,96800,355,1371,363,269,588,116,27100,48900,14400,2230,230,2.1,3,3,16.0,77777,9,999999999,160,0.0880,0,88,0.170,0.0,1.0 +2000,3,28,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,9.4,49,96800,76,1017,358,17,206,7,2500,12900,1500,230,0,0.0,3,3,16.0,77777,9,999999999,170,0.0880,0,88,0.170,0.0,1.0 +2000,3,28,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,11.1,61,96900,0,0,337,0,0,0,0,0,0,0,60,3.1,0,0,16.0,77777,9,999999999,170,0.0880,0,88,0.170,0.0,1.0 +2000,3,28,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,10.6,61,97000,0,0,334,0,0,0,0,0,0,0,80,2.1,0,0,16.0,77777,9,999999999,170,0.0880,0,88,0.170,0.0,1.0 +2000,3,28,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,10.6,65,97000,0,0,329,0,0,0,0,0,0,0,40,2.1,0,0,16.0,77777,9,999999999,170,0.0880,0,88,0.170,0.0,1.0 +2000,3,28,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,10.6,65,97000,0,0,329,0,0,0,0,0,0,0,110,2.6,0,0,16.0,77777,9,999999999,170,0.0880,0,88,0.170,0.0,1.0 +2000,3,28,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,10.6,67,97100,0,0,327,0,0,0,0,0,0,0,70,2.6,0,0,16.0,77777,9,999999999,170,0.0880,0,88,0.170,0.0,1.0 +2000,3,29,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,10.6,70,97100,0,0,324,0,0,0,0,0,0,0,120,3.1,0,0,16.0,77777,9,999999999,170,0.0880,0,88,0.170,0.0,1.0 +2000,3,29,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,11.1,75,97100,0,0,322,0,0,0,0,0,0,0,110,2.1,0,0,16.0,77777,9,999999999,160,0.0880,0,88,0.170,0.0,1.0 +2000,3,29,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,10.6,75,97100,0,0,319,0,0,0,0,0,0,0,100,2.1,0,0,16.0,77777,9,999999999,160,0.0880,0,88,0.170,0.0,1.0 +2000,3,29,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,11.1,83,97100,0,0,315,0,0,0,0,0,0,0,100,1.5,0,0,16.0,77777,9,999999999,150,0.0880,0,88,0.170,0.0,1.0 +2000,3,29,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,11.1,83,97200,0,0,315,0,0,0,0,0,0,0,120,1.5,0,0,16.0,77777,9,999999999,150,0.0880,0,88,0.170,0.0,1.0 +2000,3,29,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,11.1,87,97200,0,0,312,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,150,0.0880,0,88,0.170,0.0,1.0 +2000,3,29,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,10.6,80,97300,60,902,314,8,127,4,1400,7700,900,150,110,3.1,0,0,16.0,77777,9,999999999,140,0.0880,0,88,0.170,0.0,1.0 +2000,3,29,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,8.9,64,97300,332,1371,320,184,524,57,19000,43200,8500,1050,70,3.1,0,0,16.0,77777,9,999999999,140,0.0880,0,88,0.170,0.0,1.0 +2000,3,29,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,8.3,56,97400,607,1371,326,409,702,97,42900,68100,12700,1990,110,4.1,0,0,16.0,77777,9,999999999,130,0.0880,0,88,0.170,0.0,1.0 +2000,3,29,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,7.8,48,97400,845,1371,333,611,800,117,63700,79600,14500,2680,110,2.6,0,0,16.0,77777,9,999999999,130,0.0880,0,88,0.170,0.0,1.0 +2000,3,29,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,7.2,43,97400,1028,1371,352,783,858,138,82400,86300,17500,4050,160,2.6,3,3,16.0,77777,9,999999999,130,0.0880,0,88,0.170,0.0,1.0 +2000,3,29,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,7.8,42,97400,1145,1371,359,895,901,140,91700,90100,16300,4140,200,2.1,3,3,16.0,77777,9,999999999,130,0.0880,0,88,0.170,0.0,1.0 +2000,3,29,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,6.7,35,97300,1187,1371,366,913,871,157,96800,88000,20300,6720,250,2.6,3,3,16.0,77777,9,999999999,130,0.0880,0,88,0.170,0.0,1.0 +2000,3,29,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,5.0,29,97200,1152,1371,369,926,938,136,95100,93800,16000,4190,230,3.1,3,3,16.0,77777,9,999999999,130,0.0880,0,88,0.170,0.0,1.0 +2000,3,29,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,4.4,27,97200,1041,1371,371,822,898,137,86600,90500,17700,4140,210,3.6,3,3,16.0,77777,9,999999999,130,0.0880,0,88,0.170,0.0,1.0 +2000,3,29,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,3.9,25,97200,863,1371,373,650,809,139,68900,81900,17200,3480,0,0.0,3,3,16.0,77777,9,999999999,130,0.0880,0,88,0.170,0.0,1.0 +2000,3,29,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,3.3,25,97100,630,1371,369,470,795,104,49300,77500,13600,2150,200,2.1,3,3,16.0,77777,9,999999999,130,0.0880,0,88,0.170,0.0,1.0 +2000,3,29,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,5.0,29,97100,358,1371,356,265,616,104,27100,51600,13600,1970,280,3.6,0,0,16.0,77777,9,999999999,130,0.0880,0,88,0.170,0.0,1.0 +2000,3,29,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,5.6,32,97100,79,1039,351,18,222,7,2700,14000,1600,240,300,2.6,0,0,16.0,77777,9,999999999,130,0.0880,0,88,0.170,0.0,1.0 +2000,3,29,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,5.6,34,97100,0,0,346,0,0,0,0,0,0,0,320,2.1,0,0,16.0,77777,9,999999999,130,0.0880,0,88,0.170,0.0,1.0 +2000,3,29,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,5.6,36,97200,0,0,341,0,0,0,0,0,0,0,0,0.0,1,0,16.0,77777,9,999999999,130,0.0880,0,88,0.170,0.0,1.0 +2000,3,29,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,6.1,40,97200,0,0,343,0,0,0,0,0,0,0,0,0.0,1,1,16.0,77777,9,999999999,130,0.0880,0,88,0.170,0.0,1.0 +2000,3,29,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,5.6,37,97200,0,0,350,0,0,0,0,0,0,0,90,1.5,3,2,16.0,77777,9,999999999,130,0.0880,0,88,0.170,0.0,1.0 +2000,3,29,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,7.8,48,97200,0,0,351,0,0,0,0,0,0,0,110,1.5,8,4,16.0,77777,9,999999999,130,0.0880,0,88,0.170,0.0,1.0 +2000,3,30,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,8.3,52,97200,0,0,346,0,0,0,0,0,0,0,140,3.6,7,3,16.0,7620,9,999999999,130,0.0890,0,88,0.170,0.0,1.0 +2000,3,30,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,7.2,48,97100,0,0,350,0,0,0,0,0,0,0,0,0.0,5,5,16.0,77777,9,999999999,130,0.0890,0,88,0.170,0.0,1.0 +2000,3,30,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,7.8,52,97100,0,0,369,0,0,0,0,0,0,0,90,1.5,9,9,16.0,7620,9,999999999,130,0.0890,0,88,0.170,0.0,1.0 +2000,3,30,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,7.2,53,97100,0,0,342,0,0,0,0,0,0,0,0,0.0,5,5,16.0,77777,9,999999999,130,0.0890,0,88,0.170,0.0,1.0 +2000,3,30,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,7.8,58,97200,0,0,321,0,0,0,0,0,0,0,70,2.1,0,0,16.0,77777,9,999999999,130,0.0890,0,88,0.170,0.0,1.0 +2000,3,30,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,7.2,57,97200,0,0,324,0,0,0,0,0,0,0,100,1.5,2,1,16.0,77777,9,999999999,130,0.0890,0,88,0.170,0.0,1.0 +2000,3,30,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,8.3,60,97300,65,947,332,9,86,6,1400,4400,1000,120,100,3.1,4,2,16.0,77777,9,999999999,130,0.0890,0,88,0.170,0.0,1.0 +2000,3,30,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,7.2,52,97300,338,1370,339,95,31,87,10400,2700,9700,2260,100,4.1,5,3,16.0,77777,9,999999999,130,0.0890,0,88,0.170,0.0,1.0 +2000,3,30,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,5.0,41,97400,613,1370,350,316,249,204,33400,25200,22000,4550,110,2.6,8,6,16.0,7620,9,999999999,130,0.0890,0,88,0.170,0.0,1.0 +2000,3,30,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,5.0,37,97400,850,1370,355,549,526,222,58100,54000,24500,5430,40,1.5,6,5,16.0,7620,9,999999999,130,0.0890,0,88,0.170,0.0,1.0 +2000,3,30,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,3.9,31,97400,1033,1370,365,767,764,190,81200,77700,22500,5980,330,1.5,6,6,16.0,7620,9,999999999,130,0.0890,0,88,0.170,0.0,1.0 +2000,3,30,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,3.9,29,97300,1149,1370,365,913,901,155,96400,90900,19900,5930,350,2.1,4,4,16.0,7620,9,999999999,120,0.0890,0,88,0.170,0.0,1.0 +2000,3,30,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,2.8,26,97300,1191,1370,363,914,859,164,96300,86600,20800,7060,0,0.0,3,3,16.0,77777,9,999999999,120,0.0890,0,88,0.170,0.0,1.0 +2000,3,30,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,1.7,23,97200,1155,1370,373,908,817,217,96400,83300,26000,9000,250,4.1,5,5,16.0,7620,9,999999999,120,0.0890,0,88,0.170,0.0,1.0 +2000,3,30,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,2.2,23,97100,1045,1370,384,550,220,382,60000,23300,42200,12770,250,5.7,8,7,16.0,4572,9,999999999,120,0.0890,0,88,0.170,0.0,1.0 +2000,3,30,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,2.8,23,97100,867,1370,394,635,523,303,65200,53500,31300,7790,250,6.7,9,8,16.0,4572,9,999999999,110,0.0890,0,88,0.170,0.0,1.0 +2000,3,30,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,2.8,26,97000,633,1370,391,82,0,82,9900,0,9900,3790,310,10.3,9,9,16.0,2743,9,999999999,110,0.0890,0,88,0.170,0.0,1.0 +2000,3,30,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,5.6,36,97100,361,1370,383,210,189,160,22200,16200,17900,3530,350,4.1,9,9,16.0,7620,9,999999999,110,0.0890,0,88,0.170,0.0,1.0 +2000,3,30,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,5.0,37,97100,81,1062,376,15,70,12,2000,3200,1700,200,40,5.7,9,9,16.0,7620,9,999999999,110,0.0890,0,88,0.170,0.0,1.0 +2000,3,30,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,4.4,37,97100,0,0,365,0,0,0,0,0,0,0,0,0.0,9,8,16.0,7620,9,999999999,110,0.0890,0,88,0.170,0.0,1.0 +2000,3,30,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,4.4,40,97200,0,0,344,0,0,0,0,0,0,0,350,2.1,4,4,16.0,7620,9,999999999,100,0.0890,0,88,0.170,0.0,1.0 +2000,3,30,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,4.4,41,97100,0,0,357,0,0,0,0,0,0,0,360,1.5,8,8,16.0,7620,9,999999999,100,0.0890,0,88,0.170,0.0,1.0 +2000,3,30,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,4.4,43,97100,0,0,339,0,0,0,0,0,0,0,320,2.6,4,4,16.0,7620,9,999999999,100,0.0890,0,88,0.170,0.0,1.0 +2000,3,30,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,3.9,40,97000,0,0,341,0,0,0,0,0,0,0,310,2.1,5,4,16.0,7620,9,999999999,100,0.0890,0,88,0.170,0.0,1.0 +2000,3,31,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,2.8,39,97000,0,0,332,0,0,0,0,0,0,0,290,3.1,5,3,16.0,7620,9,999999999,100,0.0900,0,88,0.170,0.0,1.0 +2000,3,31,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,-2.2,29,96900,0,0,326,0,0,0,0,0,0,0,300,4.1,5,5,16.0,77777,9,999999999,100,0.0900,0,88,0.170,0.0,1.0 +2000,3,31,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,-2.2,30,96900,0,0,323,0,0,0,0,0,0,0,270,3.1,5,5,16.0,77777,9,999999999,100,0.0900,0,88,0.170,0.0,1.0 +2000,3,31,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,-5.6,23,96800,0,0,317,0,0,0,0,0,0,0,280,3.1,5,5,16.0,77777,9,999999999,100,0.0900,0,88,0.170,0.0,1.0 +2000,3,31,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,-2.8,33,96900,0,0,295,0,0,0,0,0,0,0,230,4.1,0,0,16.0,77777,9,999999999,100,0.0900,0,88,0.170,0.0,1.0 +2000,3,31,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,-4.4,30,96800,0,0,304,0,0,0,0,0,0,0,230,3.1,3,3,16.0,77777,9,999999999,110,0.0900,0,88,0.170,0.0,1.0 +2000,3,31,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,-5.6,27,96800,69,970,302,13,157,7,2100,9200,1400,180,250,4.6,3,3,16.0,77777,9,999999999,110,0.0900,0,88,0.170,0.0,1.0 +2000,3,31,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,-2.8,32,96900,344,1369,310,195,523,63,20000,43500,9100,1150,250,5.2,3,3,16.0,77777,9,999999999,110,0.0900,0,88,0.170,0.0,1.0 +2000,3,31,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,0.0,37,96900,618,1369,318,402,641,111,41800,62100,13700,2250,270,3.1,3,3,16.0,77777,9,999999999,110,0.0900,0,88,0.170,0.0,1.0 +2000,3,31,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,0.0,34,97000,855,1369,324,607,689,176,63300,68900,20100,4220,260,2.1,3,3,16.0,77777,9,999999999,110,0.0900,0,88,0.170,0.0,1.0 +2000,3,31,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,3.3,44,97000,1038,1369,332,551,278,339,59600,30000,36800,10920,240,7.2,5,5,16.0,3658,9,999999999,110,0.0900,0,88,0.170,0.0,1.0 +2000,3,31,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,3.9,44,97100,1153,1369,335,233,24,212,25800,2400,23700,9730,250,7.7,6,5,16.0,3658,9,999999999,110,0.0900,0,88,0.170,0.0,1.0 +2000,3,31,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,3.9,42,97000,1195,1369,351,841,553,357,89300,57700,38800,17110,240,7.7,8,8,16.0,3048,9,999999999,110,0.0900,0,88,0.170,0.0,1.0 +2000,3,31,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,3.3,51,97000,1159,1369,341,145,0,145,18200,0,18200,7590,90,7.2,9,9,16.0,1463,9,999999999,110,0.0900,0,88,0.170,0.0,1.0 +2000,3,31,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,5.6,62,97100,1048,1369,341,132,0,132,16400,0,16400,6860,70,2.1,9,9,16.0,2134,9,999999999,100,0.0900,0,88,0.170,4.0,1.0 +2000,3,31,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,4.4,53,97100,870,1369,355,299,31,280,34300,2800,32500,11520,40,3.1,10,10,16.0,2134,9,999999999,100,0.0900,0,88,0.170,0.0,1.0 +2000,3,31,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,3.3,42,97200,636,1369,347,345,228,239,37200,23000,26500,5820,20,3.6,8,8,16.0,2438,9,999999999,100,0.0900,0,88,0.170,0.0,1.0 +2000,3,31,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,4.4,51,97200,364,1369,340,194,133,159,20600,11500,17500,3510,80,3.6,8,8,16.0,2591,9,999999999,100,0.0900,0,88,0.170,0.0,1.0 +2000,3,31,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,5.0,55,97200,84,1061,339,15,51,12,1800,2400,1600,200,60,2.1,8,8,16.0,2438,9,999999999,100,0.0900,0,88,0.170,0.0,1.0 +2000,3,31,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,5.6,60,97200,0,0,325,0,0,0,0,0,0,0,0,0.0,5,5,16.0,77777,9,999999999,100,0.0900,0,88,0.170,0.0,1.0 +2000,3,31,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,5.6,57,97200,0,0,330,0,0,0,0,0,0,0,130,1.5,6,6,16.0,7620,9,999999999,100,0.0900,0,88,0.170,0.0,1.0 +2000,3,31,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.7,4.2,60,97200,0,0,332,0,0,0,0,0,0,0,150,2.1,7,7,16.0,7620,9,999999999,90,0.0900,0,88,0.170,0.0,1.0 +2000,3,31,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.4,2.9,64,97300,0,0,322,0,0,0,0,0,0,0,120,2.7,5,5,16.0,7620,9,999999999,90,0.0900,0,88,0.170,0.0,1.0 +2000,3,31,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.2,1.5,68,97200,0,0,315,0,0,0,0,0,0,0,120,3.3,3,3,16.0,77777,9,999999999,90,0.0900,0,88,0.170,0.0,1.0 +1977,4,1,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.9,0.2,25,97300,0,0,299,0,0,0,0,0,0,0,300,3.9,0,0,48.3,77777,9,999999999,60,0.1310,0,88,999.000,999.0,99.0 +1977,4,1,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.7,-1.1,26,97200,0,0,297,0,0,0,0,0,0,0,260,4.5,0,0,48.3,77777,9,999999999,60,0.1310,0,88,999.000,999.0,99.0 +1977,4,1,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.4,-2.4,31,97200,0,0,309,0,0,0,0,0,0,0,220,5.1,4,4,48.3,77777,9,999999999,60,0.1310,0,88,999.000,999.0,99.0 +1977,4,1,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,-3.9,33,97200,0,0,297,0,0,0,0,0,0,0,240,5.7,1,1,48.3,77777,9,999999999,70,0.1310,0,88,999.000,999.0,99.0 +1977,4,1,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,-2.2,40,97200,0,0,289,0,0,0,0,0,0,0,250,3.6,0,0,48.3,77777,9,999999999,80,0.1310,0,88,999.000,999.0,99.0 +1977,4,1,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,-2.2,41,97300,0,0,287,0,0,0,0,0,0,0,50,1.5,0,0,56.3,77777,9,999999999,80,0.1310,0,88,999.000,999.0,99.0 +1977,4,1,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,-1.1,50,97300,71,992,281,31,72,23,3000,2800,2800,400,100,2.6,0,0,48.3,77777,9,999999999,80,0.1310,0,88,999.000,999.0,99.0 +1977,4,1,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,-0.6,46,97400,348,1369,289,190,490,62,19300,41000,8800,1140,90,3.6,0,0,48.3,77777,9,999999999,90,0.1310,0,88,999.000,999.0,99.0 +1977,4,1,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,-1.1,39,97400,622,1369,297,424,711,97,44300,69400,12700,2010,70,3.1,0,0,48.3,77777,9,999999999,80,0.1310,0,88,999.000,999.0,99.0 +1977,4,1,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,-1.1,32,97500,858,1369,309,619,818,124,66200,81300,15100,2830,290,3.1,0,0,48.3,77777,9,999999999,80,0.1310,0,88,999.000,999.0,99.0 +1977,4,1,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,-3.3,26,97500,1041,1369,309,778,877,143,85200,88200,18000,4270,230,3.6,0,0,40.2,77777,9,999999999,70,0.1310,0,88,999.000,999.0,99.0 +1977,4,1,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,-2.8,24,97400,1156,1369,325,902,886,158,95800,89400,20100,6150,240,5.2,1,1,40.2,77777,9,999999999,70,0.1310,0,88,999.000,999.0,99.0 +1977,4,1,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,-5.0,19,97300,1197,1369,327,958,920,163,102500,92900,21000,7200,220,5.7,1,1,56.3,77777,9,999999999,60,0.1310,0,88,999.000,999.0,99.0 +1977,4,1,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,-5.6,17,97200,1161,1369,329,938,911,155,98300,92000,20100,6150,230,7.2,1,1,56.3,77777,9,999999999,60,0.1310,0,88,999.000,999.0,99.0 +1977,4,1,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,-5.6,16,97100,1050,1369,339,801,772,209,84500,78200,24400,6750,240,8.8,2,2,64.4,77777,9,999999999,60,0.1310,0,88,999.000,999.0,99.0 +1977,4,1,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,-4.4,18,97000,872,1369,346,531,413,258,56400,44200,28200,6690,240,8.8,5,5,56.3,77777,9,999999999,70,0.1310,0,88,999.000,999.0,99.0 +1977,4,1,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,-4.4,18,97000,638,1369,346,422,589,143,44500,58400,17200,2900,230,7.7,5,5,56.3,77777,9,999999999,70,0.1310,0,88,999.000,999.0,99.0 +1977,4,1,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,-3.9,20,97000,366,1369,347,160,238,94,16800,20500,11300,1820,240,8.8,6,6,56.3,4270,9,999999999,70,0.1310,0,88,999.000,999.0,99.0 +1977,4,1,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,-5.6,19,97000,85,1084,337,24,6,24,2800,0,2800,820,240,6.2,5,5,56.3,77777,9,999999999,60,0.1310,0,88,999.000,999.0,99.0 +1977,4,1,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,-5.6,19,97000,0,0,322,0,0,0,0,0,0,0,240,5.7,1,1,48.3,77777,9,999999999,60,0.1310,0,88,999.000,999.0,99.0 +1977,4,1,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,-4.4,23,97000,0,0,322,0,0,0,0,0,0,0,220,3.6,2,2,48.3,77777,9,999999999,70,0.1310,0,88,999.000,999.0,99.0 +1977,4,1,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,-3.9,25,97000,0,0,321,0,0,0,0,0,0,0,220,3.6,4,3,48.3,77777,9,999999999,70,0.1310,0,88,999.000,999.0,99.0 +1977,4,1,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,-3.9,25,97000,0,0,346,0,0,0,0,0,0,0,230,3.6,10,9,48.3,2590,9,999999999,70,0.1310,0,88,999.000,999.0,99.0 +1977,4,1,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,-2.8,27,97100,0,0,347,0,0,0,0,0,0,0,250,6.2,9,9,48.3,2590,9,999999999,70,0.1310,0,88,999.000,999.0,99.0 +1977,4,2,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,-1.1,32,97100,0,0,357,0,0,0,0,0,0,0,250,7.7,10,10,48.3,2590,9,999999999,80,0.0880,0,88,999.000,999.0,99.0 +1977,4,2,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,0.6,38,97100,0,0,346,0,0,0,0,0,0,0,220,4.1,9,9,48.3,2740,9,999999999,90,0.0880,0,88,999.000,999.0,99.0 +1977,4,2,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,1.7,42,97000,0,0,354,0,0,0,0,0,0,0,250,4.6,10,10,48.3,2590,9,999999999,100,0.0880,0,88,999.000,999.0,99.0 +1977,4,2,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,1.7,42,97000,0,0,354,0,0,0,0,0,0,0,250,3.1,10,10,48.3,2290,9,999999999,100,0.0880,0,88,999.000,999.0,99.0 +1977,4,2,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,2.2,44,97000,0,0,355,0,0,0,0,0,0,0,240,4.6,10,10,48.3,1980,9,999999999,100,0.0880,0,88,999.000,999.0,99.0 +1977,4,2,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,2.8,47,97100,0,0,353,0,0,0,0,0,0,0,270,3.6,10,10,48.3,2290,9,999999999,110,0.0880,0,88,999.000,999.0,99.0 +1977,4,2,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,3.3,49,97100,76,1015,354,20,0,20,2300,0,2300,700,250,4.1,10,10,48.3,2290,9,999999999,110,0.1500,0,88,999.000,999.0,99.0 +1977,4,2,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,3.3,49,97100,354,1368,354,33,0,49,5800,0,5800,2010,240,5.7,10,10,56.3,2290,9,999999999,110,0.0880,0,88,999.000,999.0,99.0 +1977,4,2,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,3.9,49,97200,628,1368,357,89,47,71,10700,4800,8500,1720,240,6.2,10,10,48.3,1520,9,999999999,110,0.0880,0,88,999.000,999.0,99.0 +1977,4,2,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,3.9,48,97200,863,1368,360,197,60,155,21400,6000,17600,5610,240,5.2,10,10,40.2,1520,9,999999999,110,0.0880,0,88,999.000,999.0,99.0 +1977,4,2,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,3.9,46,97200,1045,1368,363,193,0,202,24300,0,24300,9880,240,5.2,10,10,48.3,1370,9,999999999,110,0.0880,0,88,999.000,999.0,99.0 +1977,4,2,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,6.7,62,97200,1160,1368,358,109,0,163,20300,0,20300,8420,340,4.1,10,10,48.3,1370,9,999999999,140,0.0880,0,88,999.000,999.0,99.0 +1977,4,2,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,7.2,64,97100,1201,1368,358,409,18,393,47800,1700,46300,16960,330,3.6,10,10,48.3,1520,9,999999999,140,0.1500,0,88,999.000,999.0,99.0 +1977,4,2,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,6.7,60,97100,1164,1368,360,274,26,247,29900,2600,27600,11350,270,4.1,10,10,32.2,1310,9,999999999,140,0.0880,0,88,999.000,999.0,99.0 +1977,4,2,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,8.3,67,97100,1053,1368,362,226,0,225,26900,0,26900,10810,280,8.2,10,10,32.2,1370,9,999999999,150,0.0880,0,88,999.000,999.0,99.0 +1977,4,2,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,8.3,75,97100,875,1368,354,363,157,277,41400,16500,30800,7790,320,8.8,10,10,32.2,1830,9,999999999,150,0.0880,0,88,999.000,999.0,99.0 +1977,4,2,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,6.1,72,97100,641,1368,343,194,142,133,22300,14500,15500,3240,320,7.2,10,10,32.2,1520,9,999999999,130,0.0880,0,88,999.000,999.0,99.0 +1977,4,2,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,6.1,74,97200,370,1368,341,48,7,46,5700,300,5600,1930,310,4.6,10,10,56.3,1830,9,999999999,130,0.1500,0,88,999.000,999.0,99.0 +1977,4,2,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,5.0,71,97200,88,1083,328,21,11,20,2300,700,2200,500,290,6.2,9,9,56.3,1520,9,999999999,120,0.1500,0,88,999.000,999.0,99.0 +1977,4,2,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,5.0,71,97300,0,0,309,0,0,0,0,0,0,0,250,3.6,5,5,56.3,77777,9,999999999,120,0.0880,0,88,999.000,999.0,99.0 +1977,4,2,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,5.0,77,97400,0,0,293,0,0,0,0,0,0,0,250,3.6,1,1,56.3,77777,9,999999999,120,0.0880,0,88,999.000,999.0,99.0 +1977,4,2,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,5.0,86,97400,0,0,280,0,0,0,0,0,0,0,230,2.6,0,0,56.3,77777,9,999999999,120,0.0880,0,88,999.000,999.0,99.0 +1977,4,2,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,4.4,83,97400,0,0,280,0,0,0,0,0,0,0,190,2.1,0,0,56.3,77777,9,999999999,120,0.0880,0,88,999.000,999.0,99.0 +1977,4,2,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,3.9,80,97500,0,0,279,0,0,0,0,0,0,0,210,1.5,0,0,56.3,77777,9,999999999,110,0.0880,0,88,999.000,999.0,99.0 +1977,4,3,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,3.9,83,97500,0,0,277,0,0,0,0,0,0,0,110,3.1,0,0,56.3,77777,9,999999999,110,0.0720,0,88,999.000,999.0,99.0 +1977,4,3,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,3.9,86,97500,0,0,275,0,0,0,0,0,0,0,60,4.1,0,0,56.3,77777,9,999999999,110,0.0720,0,88,999.000,999.0,99.0 +1977,4,3,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,3.9,89,97500,0,0,273,0,0,0,0,0,0,0,80,2.6,0,0,48.3,77777,9,999999999,110,0.0720,0,88,999.000,999.0,99.0 +1977,4,3,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,3.3,89,97500,0,0,270,0,0,0,0,0,0,0,60,3.1,0,0,48.3,77777,9,999999999,110,0.0720,0,88,999.000,999.0,99.0 +1977,4,3,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,3.3,93,97500,0,0,268,0,0,0,0,0,0,0,110,2.6,0,0,48.3,77777,9,999999999,110,0.0720,0,88,999.000,999.0,99.0 +1977,4,3,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,2.8,89,97500,0,0,267,0,0,0,0,0,0,0,130,3.1,0,0,72.4,77777,9,999999999,110,0.0720,0,88,999.000,999.0,99.0 +1977,4,3,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,2.8,89,97600,80,1037,267,41,171,21,3600,8700,2900,380,80,2.6,0,0,72.4,77777,9,999999999,110,0.0720,0,88,999.000,999.0,99.0 +1977,4,3,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,3.9,83,97700,360,1367,277,211,628,47,22000,54300,7600,940,100,3.1,0,0,64.4,77777,9,999999999,110,0.0720,0,88,999.000,999.0,99.0 +1977,4,3,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,4.4,74,97700,633,1367,287,445,804,71,47000,78500,10600,1560,130,3.1,0,0,64.4,77777,9,999999999,120,0.0720,0,88,999.000,999.0,99.0 +1977,4,3,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,3.9,59,97800,868,1367,298,646,892,90,68400,88500,12100,2050,70,1.5,0,0,64.4,77777,9,999999999,110,0.0720,0,88,999.000,999.0,99.0 +1977,4,3,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,2.8,47,97800,1050,1367,306,819,936,103,85300,93600,13200,2900,250,3.6,0,0,64.4,77777,9,999999999,110,0.0720,0,88,999.000,999.0,99.0 +1977,4,3,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,2.8,44,97800,1164,1367,311,923,958,111,95900,96000,13900,3980,240,4.1,0,0,72.4,77777,9,999999999,110,0.0720,0,88,999.000,999.0,99.0 +1977,4,3,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,1.7,35,97800,1205,1367,319,946,968,114,100000,97100,14200,4600,290,4.1,0,0,72.4,77777,9,999999999,100,0.0720,0,88,999.000,999.0,99.0 +1977,4,3,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,-1.1,29,97700,1168,1367,316,934,970,111,97200,97200,14000,4020,270,2.6,0,0,80.5,77777,9,999999999,80,0.0720,0,88,999.000,999.0,99.0 +1977,4,3,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,-1.1,26,97700,1056,1367,330,815,917,110,84700,91600,13800,3020,290,4.6,1,1,80.5,77777,9,999999999,80,0.0720,0,88,999.000,999.0,99.0 +1977,4,3,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,-1.7,23,97600,878,1367,338,698,905,96,70400,89800,12600,2110,250,3.6,2,2,80.5,77777,9,999999999,80,0.0720,0,88,999.000,999.0,99.0 +1977,4,3,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,-3.9,20,97600,644,1367,339,343,294,219,37800,30100,23600,4990,260,6.7,3,3,80.5,77777,9,999999999,70,0.0720,0,88,999.000,999.0,99.0 +1977,4,3,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,-4.4,19,97600,373,1367,341,224,596,63,23400,51200,9400,1180,300,4.6,4,4,96.6,77777,9,999999999,70,0.0720,0,88,999.000,999.0,99.0 +1977,4,3,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,-4.4,20,97700,91,1105,330,41,71,34,4400,3600,4000,710,50,3.6,2,2,80.5,77777,9,999999999,70,0.0720,0,88,999.000,999.0,99.0 +1977,4,3,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,-2.2,26,97800,0,0,331,0,0,0,0,0,0,0,150,2.6,4,3,64.4,77777,9,999999999,80,0.0720,0,88,999.000,999.0,99.0 +1977,4,3,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,-0.6,32,97900,0,0,312,0,0,0,0,0,0,0,120,4.1,0,0,64.4,77777,9,999999999,90,0.0720,0,88,999.000,999.0,99.0 +1977,4,3,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,1.7,42,97900,0,0,307,0,0,0,0,0,0,0,120,3.6,0,0,64.4,77777,9,999999999,100,0.0720,0,88,999.000,999.0,99.0 +1977,4,3,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,1.7,45,98000,0,0,302,0,0,0,0,0,0,0,100,4.6,0,0,64.4,77777,9,999999999,100,0.0720,0,88,999.000,999.0,99.0 +1977,4,3,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,1.7,49,98000,0,0,298,0,0,0,0,0,0,0,100,5.2,0,0,64.4,77777,9,999999999,100,0.0720,0,88,999.000,999.0,99.0 +1977,4,4,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,1.7,51,98000,0,0,296,0,0,0,0,0,0,0,90,4.6,0,0,56.3,77777,9,999999999,100,0.1050,0,88,999.000,999.0,99.0 +1977,4,4,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,1.7,53,98000,0,0,293,0,0,0,0,0,0,0,90,4.6,0,0,56.3,77777,9,999999999,100,0.1050,0,88,999.000,999.0,99.0 +1977,4,4,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,1.7,59,98000,0,0,286,0,0,0,0,0,0,0,70,4.1,0,0,56.3,77777,9,999999999,100,0.1050,0,88,999.000,999.0,99.0 +1977,4,4,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,1.7,63,98000,0,0,282,0,0,0,0,0,0,0,80,4.6,0,0,56.3,77777,9,999999999,100,0.1050,0,88,999.000,999.0,99.0 +1977,4,4,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,1.7,68,98000,0,0,277,0,0,0,0,0,0,0,130,3.1,0,0,56.3,77777,9,999999999,100,0.1050,0,88,999.000,999.0,99.0 +1977,4,4,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,1.1,63,98100,0,0,279,0,0,0,0,0,0,0,130,1.5,0,0,80.5,77777,9,999999999,100,0.1050,0,88,999.000,999.0,99.0 +1977,4,4,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,1.1,61,98100,85,1082,281,33,124,24,3600,5700,3100,420,110,2.6,0,0,72.4,77777,9,999999999,100,0.1050,0,88,999.000,999.0,99.0 +1977,4,4,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,1.1,52,98200,366,1367,290,215,561,58,21700,48100,8800,1090,100,1.0,0,0,80.5,77777,9,999999999,100,0.1050,0,88,999.000,999.0,99.0 +1977,4,4,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,-0.6,37,98300,639,1367,302,451,760,87,45900,73600,11400,1770,110,3.6,0,0,80.5,77777,9,999999999,90,0.1050,0,88,999.000,999.0,99.0 +1977,4,4,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,0.6,36,98300,873,1367,311,653,854,110,69300,85500,14500,2690,310,1.5,0,0,80.5,77777,9,999999999,90,0.1050,0,88,999.000,999.0,99.0 +1977,4,4,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,-1.1,26,98300,1054,1367,323,820,907,126,85200,90500,15100,3140,310,2.6,0,0,64.4,77777,9,999999999,80,0.1050,0,88,999.000,999.0,99.0 +1977,4,4,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,-3.3,21,98200,1168,1367,323,931,936,136,96300,93600,16000,4470,210,2.1,0,0,64.4,77777,9,999999999,70,0.1050,0,88,999.000,999.0,99.0 +1977,4,4,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,-3.9,19,98200,1208,1367,328,953,944,139,100000,94500,16300,5230,290,3.1,0,0,56.3,77777,9,999999999,70,0.1050,0,88,999.000,999.0,99.0 +1977,4,4,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,-5.6,15,98100,1171,1367,335,937,941,136,96900,94200,16000,4510,300,3.1,0,0,56.3,77777,9,999999999,60,0.1050,0,88,999.000,999.0,99.0 +1977,4,4,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,-6.7,13,98000,1059,1367,339,825,917,127,86400,91500,15200,3180,230,2.1,0,0,56.3,77777,9,999999999,60,0.1050,0,88,999.000,999.0,99.0 +1977,4,4,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,-6.1,13,97900,881,1367,342,664,869,111,70900,87100,14600,2740,230,4.6,0,0,56.3,77777,9,999999999,60,0.1050,0,88,999.000,999.0,99.0 +1977,4,4,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,-5.6,14,97900,647,1367,340,450,777,88,47400,75400,11600,1800,300,3.6,0,0,56.3,77777,9,999999999,60,0.1050,0,88,999.000,999.0,99.0 +1977,4,4,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,-5.6,14,97800,376,1367,338,214,587,59,23000,50700,9000,1120,270,3.6,0,0,56.3,77777,9,999999999,60,0.1050,0,88,999.000,999.0,99.0 +1977,4,4,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,-5.6,15,97800,93,1127,335,43,151,26,4100,7200,3500,460,260,4.1,0,0,72.4,77777,9,999999999,60,0.1050,0,88,999.000,999.0,99.0 +1977,4,4,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,-5.0,17,97900,0,0,329,0,0,0,0,0,0,0,250,2.6,0,0,56.3,77777,9,999999999,60,0.1050,0,88,999.000,999.0,99.0 +1977,4,4,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,-5.6,17,97900,0,0,323,0,0,0,0,0,0,0,290,2.6,0,0,56.3,77777,9,999999999,60,0.1050,0,88,999.000,999.0,99.0 +1977,4,4,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,-4.4,20,97900,0,0,322,0,0,0,0,0,0,0,90,1.5,0,0,56.3,77777,9,999999999,70,0.1050,0,88,999.000,999.0,99.0 +1977,4,4,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,-2.2,28,97900,0,0,312,0,0,0,0,0,0,0,70,3.6,0,0,56.3,77777,9,999999999,80,0.1050,0,88,999.000,999.0,99.0 +1977,4,4,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,-1.7,30,97900,0,0,310,0,0,0,0,0,0,0,130,4.1,0,0,56.3,77777,9,999999999,80,0.1050,0,88,999.000,999.0,99.0 +1977,4,5,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,-1.7,32,97900,0,0,306,0,0,0,0,0,0,0,120,3.6,0,0,56.3,77777,9,999999999,80,0.1050,0,88,999.000,999.0,99.0 +1977,4,5,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,-1.1,36,97900,0,0,302,0,0,0,0,0,0,0,100,3.1,0,0,56.3,77777,9,999999999,80,0.1050,0,88,999.000,999.0,99.0 +1977,4,5,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,-0.6,39,97900,0,0,300,0,0,0,0,0,0,0,70,2.6,0,0,56.3,77777,9,999999999,90,0.1050,0,88,999.000,999.0,99.0 +1977,4,5,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,-0.6,42,97900,0,0,295,0,0,0,0,0,0,0,100,2.6,0,0,56.3,77777,9,999999999,90,0.1050,0,88,999.000,999.0,99.0 +1977,4,5,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,-0.6,45,97900,0,0,291,0,0,0,0,0,0,0,120,2.6,0,0,56.3,77777,9,999999999,90,0.1050,0,88,999.000,999.0,99.0 +1977,4,5,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,0.0,48,97900,0,0,289,0,0,0,0,0,0,0,110,4.1,0,0,72.4,77777,9,999999999,90,0.1050,0,88,999.000,999.0,99.0 +1977,4,5,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,0.0,45,98000,90,1104,294,38,137,25,3900,6400,3300,440,100,2.6,0,0,64.4,77777,9,999999999,90,0.1050,0,88,999.000,999.0,99.0 +1977,4,5,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,1.1,41,98000,372,1366,306,225,567,58,22200,48900,8800,1100,120,4.1,0,0,72.4,77777,9,999999999,100,0.1050,0,88,999.000,999.0,99.0 +1977,4,5,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,0.0,30,98000,644,1366,320,459,763,87,46500,74000,11500,1780,90,4.1,0,0,72.4,77777,9,999999999,90,0.1050,0,88,999.000,999.0,99.0 +1977,4,5,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,1.1,28,98000,878,1366,334,661,852,111,69600,85400,14600,2730,80,2.6,0,0,72.4,77777,9,999999999,100,0.1050,0,88,999.000,999.0,99.0 +1977,4,5,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,0.6,23,98000,1059,1366,343,832,905,127,85400,90300,15200,3180,130,3.1,0,0,64.4,77777,9,999999999,90,0.1050,0,88,999.000,999.0,99.0 +1977,4,5,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,0.6,21,97900,1172,1366,351,935,929,136,96000,93000,16000,4540,120,2.6,0,0,64.4,77777,9,999999999,90,0.1050,0,88,999.000,999.0,99.0 +1977,4,5,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,-0.6,17,97800,1212,1366,357,963,940,139,100000,94100,16200,5320,130,2.1,0,0,64.4,77777,9,999999999,80,0.1050,0,88,999.000,999.0,99.0 +1977,4,5,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,-1.1,15,97800,1174,1366,365,945,934,136,96600,93500,16000,4570,250,2.1,0,0,64.4,77777,9,999999999,80,0.1050,0,88,999.000,999.0,99.0 +1977,4,5,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,-3.9,11,97700,1062,1366,366,838,912,127,86200,91000,15200,3210,320,2.6,0,0,72.4,77777,9,999999999,70,0.1050,0,88,999.000,999.0,99.0 +1977,4,5,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,-3.3,12,97600,883,1366,369,664,864,112,70800,86600,14700,2770,310,3.1,0,0,80.5,77777,9,999999999,70,0.1050,0,88,999.000,999.0,99.0 +1977,4,5,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,-4.4,11,97500,650,1366,368,457,774,89,47500,75200,11700,1820,290,2.6,0,0,96.6,77777,9,999999999,70,0.1050,0,88,999.000,999.0,99.0 +1977,4,5,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,-3.3,12,97500,379,1366,367,220,587,60,23300,50900,9100,1140,280,2.6,0,0,96.6,77777,9,999999999,70,0.1050,0,88,999.000,999.0,99.0 +1977,4,5,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,-1.1,15,97600,96,1149,365,45,158,27,4300,7600,3600,480,270,3.6,0,0,80.5,77777,9,999999999,80,0.1050,0,88,999.000,999.0,99.0 +1977,4,5,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,-0.6,19,97600,0,0,352,0,0,0,0,0,0,0,270,3.1,0,0,56.3,77777,9,999999999,90,0.1050,0,88,999.000,999.0,99.0 +1977,4,5,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,1.1,24,97700,0,0,344,0,0,0,0,0,0,0,220,2.6,0,0,56.3,77777,9,999999999,100,0.1050,0,88,999.000,999.0,99.0 +1977,4,5,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,0.0,22,97700,0,0,342,0,0,0,0,0,0,0,210,1.5,0,0,48.3,77777,9,999999999,90,0.1050,0,88,999.000,999.0,99.0 +1977,4,5,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,1.7,26,97700,0,0,342,0,0,0,0,0,0,0,20,3.1,0,0,48.3,77777,9,999999999,100,0.1050,0,88,999.000,999.0,99.0 +1977,4,5,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,1.7,31,97800,0,0,329,0,0,0,0,0,0,0,0,0.0,0,0,48.3,77777,9,999999999,100,0.1050,0,88,999.000,999.0,99.0 +1977,4,6,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,1.1,30,97800,0,0,328,0,0,0,0,0,0,0,150,2.1,0,0,48.3,77777,9,999999999,100,0.0900,0,88,999.000,999.0,99.0 +1977,4,6,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,1.1,30,97800,0,0,328,0,0,0,0,0,0,0,130,2.1,0,0,48.3,77777,9,999999999,100,0.0900,0,88,999.000,999.0,99.0 +1977,4,6,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,1.1,33,97800,0,0,321,0,0,0,0,0,0,0,0,0.0,0,0,48.3,77777,9,999999999,100,0.0900,0,88,999.000,999.0,99.0 +1977,4,6,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,2.8,44,97800,0,0,311,0,0,0,0,0,0,0,0,0.0,0,0,48.3,77777,9,999999999,110,0.0900,0,88,999.000,999.0,99.0 +1977,4,6,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,2.2,42,97800,0,0,310,0,0,0,0,0,0,0,0,0.0,0,0,48.3,77777,9,999999999,100,0.0900,0,88,999.000,999.0,99.0 +1977,4,6,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,2.2,42,97800,0,0,310,0,0,0,0,0,0,0,0,0.0,0,0,80.5,77777,9,999999999,100,0.0900,0,88,999.000,999.0,99.0 +1977,4,6,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,2.2,41,97900,95,1126,313,40,127,30,4300,6000,3700,540,0,0.0,1,0,80.5,77777,9,999999999,100,0.0900,0,88,999.000,999.0,99.0 +1977,4,6,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,1.7,31,98000,378,1365,329,213,557,63,22600,48100,9200,1180,0,0.0,3,0,80.5,77777,9,999999999,100,0.0900,0,88,999.000,999.0,99.0 +1977,4,6,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,1.7,25,98000,649,1365,344,461,724,115,48100,70800,14300,2380,310,1.5,6,0,64.4,77777,9,999999999,100,0.0900,0,88,999.000,999.0,99.0 +1977,4,6,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,-0.6,16,98000,883,1365,369,683,823,141,71700,83500,17500,3630,80,6.2,5,1,80.5,77777,9,999999999,80,0.0900,0,88,999.000,999.0,99.0 +1977,4,6,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,-5.0,10,98000,1063,1365,374,778,651,273,80800,65000,30100,8800,60,5.7,5,1,80.5,77777,9,999999999,60,0.0900,0,88,999.000,999.0,99.0 +1977,4,6,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,-5.6,9,97900,1176,1365,379,966,903,182,100200,90600,22000,7370,50,3.6,5,1,80.5,77777,9,999999999,60,0.0900,0,88,999.000,999.0,99.0 +1977,4,6,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,-5.6,8,97800,1215,1365,383,971,895,175,102400,90100,21900,8240,80,4.1,4,0,96.6,77777,9,999999999,60,0.0900,0,88,999.000,999.0,99.0 +1977,4,6,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,-5.0,8,97800,1177,1365,384,969,920,166,101200,92700,21000,6900,110,3.6,4,0,96.6,77777,9,999999999,60,0.0900,0,88,999.000,999.0,99.0 +1977,4,6,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,-7.2,7,97700,1065,1365,383,861,888,163,89100,88900,19600,4960,100,4.1,5,0,96.6,77777,9,999999999,60,0.0900,0,88,999.000,999.0,99.0 +1977,4,6,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.9,-8.3,6,97600,886,1365,392,692,815,163,73000,82200,19400,4140,180,3.6,7,1,96.6,77777,9,999999999,50,0.0900,0,88,999.000,999.0,99.0 +1977,4,6,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,-5.6,8,97600,653,1365,393,467,733,119,49100,71600,14700,2460,100,1.5,6,1,80.5,77777,9,999999999,60,0.0900,0,88,999.000,999.0,99.0 +1977,4,6,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,-6.7,7,97600,382,1365,382,210,459,96,23400,39600,12300,1790,190,2.6,5,0,80.5,77777,9,999999999,50,0.0900,0,88,999.000,999.0,99.0 +1977,4,6,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,-6.7,8,97600,99,1149,376,53,232,26,4800,12300,3600,460,270,2.1,3,0,72.4,77777,9,999999999,60,0.0600,0,88,999.000,999.0,99.0 +1977,4,6,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,-3.9,11,97600,0,0,372,0,0,0,0,0,0,0,330,2.6,2,0,56.3,77777,9,999999999,70,0.0900,0,88,999.000,999.0,99.0 +1977,4,6,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,-2.2,14,97700,0,0,363,0,0,0,0,0,0,0,230,2.6,1,0,56.3,77777,9,999999999,80,0.0900,0,88,999.000,999.0,99.0 +1977,4,6,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,-2.8,17,97700,0,0,344,0,0,0,0,0,0,0,260,2.6,0,0,56.3,77777,9,999999999,70,0.0900,0,88,999.000,999.0,99.0 +1977,4,6,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,-2.2,18,97800,0,0,342,0,0,0,0,0,0,0,110,3.1,0,0,56.3,77777,9,999999999,80,0.0900,0,88,999.000,999.0,99.0 +1977,4,6,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,-2.2,20,97800,0,0,335,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,80,0.0900,0,88,999.000,999.0,99.0 +1977,4,7,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,-2.2,20,97800,0,0,335,0,0,0,0,0,0,0,80,2.6,1,0,56.3,77777,9,999999999,80,0.0730,0,88,999.000,999.0,99.0 +1977,4,7,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,-1.1,26,97800,0,0,323,0,0,0,0,0,0,0,220,2.1,1,0,56.3,77777,9,999999999,80,0.0730,0,88,999.000,999.0,99.0 +1977,4,7,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,-0.6,28,97800,0,0,321,0,0,0,0,0,0,0,210,1.5,1,0,56.3,77777,9,999999999,90,0.0730,0,88,999.000,999.0,99.0 +1977,4,7,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,-1.1,29,97800,0,0,316,0,0,0,0,0,0,0,100,2.6,0,0,56.3,77777,9,999999999,80,0.0730,0,88,999.000,999.0,99.0 +1977,4,7,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,-1.1,28,97900,0,0,318,0,0,0,0,0,0,0,90,2.6,0,0,56.3,77777,9,999999999,80,0.0730,0,88,999.000,999.0,99.0 +1977,4,7,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,-0.6,30,97900,0,0,316,0,0,0,0,0,0,0,110,4.1,0,0,80.5,77777,9,999999999,90,0.0730,0,88,999.000,999.0,99.0 +1977,4,7,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,-0.6,30,97900,100,1171,316,43,212,23,4300,11300,3300,410,120,4.6,0,0,80.5,77777,9,999999999,90,0.0730,0,88,999.000,999.0,99.0 +1977,4,7,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,0.0,25,98000,383,1364,332,231,650,50,24100,57100,8000,1000,110,5.2,0,0,80.5,77777,9,999999999,90,0.0730,0,88,999.000,999.0,99.0 +1977,4,7,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,-1.1,18,98000,655,1364,351,470,822,73,49700,80600,10900,1620,100,5.2,0,0,80.5,77777,9,999999999,80,0.0730,0,88,999.000,999.0,99.0 +1977,4,7,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,-3.9,13,98100,888,1364,358,675,907,93,71100,90100,12400,2140,90,4.6,0,0,80.5,77777,9,999999999,70,0.0730,0,88,999.000,999.0,99.0 +1977,4,7,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,-4.4,11,98100,1067,1364,366,845,950,106,88000,95000,13500,3060,120,3.6,0,0,64.4,77777,9,999999999,70,0.0730,0,88,999.000,999.0,99.0 +1977,4,7,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,-4.4,10,98000,1180,1364,374,947,971,113,98500,97300,14100,4250,100,4.6,0,0,64.4,77777,9,999999999,70,0.0730,0,88,999.000,999.0,99.0 +1977,4,7,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,-1.1,12,98000,1218,1364,384,981,975,116,102000,97800,14400,4940,160,4.1,0,0,48.3,77777,9,999999999,80,0.0730,0,88,999.000,999.0,99.0 +1977,4,7,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,-1.7,11,97900,1180,1364,389,961,967,113,98200,96900,14100,4260,150,1.5,0,0,48.3,77777,9,999999999,80,0.0730,0,88,999.000,999.0,99.0 +1977,4,7,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34.4,-5.0,8,97900,1068,1364,392,840,950,106,88100,95000,13500,3070,230,1.5,0,0,48.3,77777,9,999999999,70,0.0730,0,88,999.000,999.0,99.0 +1977,4,7,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.6,-6.1,7,97800,889,1364,397,692,912,93,71600,90600,12400,2140,250,1.5,0,0,64.4,77777,9,999999999,60,0.0730,0,88,999.000,999.0,99.0 +1977,4,7,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.0,-7.8,6,97700,656,1364,391,471,838,74,50600,82200,11000,1640,220,3.6,0,0,64.4,77777,9,999999999,50,0.0730,0,88,999.000,999.0,99.0 +1977,4,7,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34.4,-7.2,6,97700,385,1364,389,226,670,50,24800,59000,8100,1000,290,3.1,0,0,64.4,77777,9,999999999,50,0.0730,0,88,999.000,999.0,99.0 +1977,4,7,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,-8.3,6,97700,102,1171,379,50,232,24,4600,12500,3500,430,350,2.6,0,0,56.3,77777,9,999999999,50,0.0730,0,88,999.000,999.0,99.0 +1977,4,7,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,-5.0,9,97700,0,0,375,0,0,0,0,0,0,0,320,3.6,0,0,48.3,77777,9,999999999,60,0.0730,0,88,999.000,999.0,99.0 +1977,4,7,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,-3.3,12,97800,0,0,367,0,0,0,0,0,0,0,290,1.5,0,0,48.3,77777,9,999999999,70,0.0730,0,88,999.000,999.0,99.0 +1977,4,7,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,-1.7,17,97800,0,0,353,0,0,0,0,0,0,0,250,4.1,0,0,48.3,77777,9,999999999,80,0.0730,0,88,999.000,999.0,99.0 +1977,4,7,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,-1.7,17,97900,0,0,350,0,0,0,0,0,0,0,280,2.1,0,0,48.3,77777,9,999999999,80,0.0730,0,88,999.000,999.0,99.0 +1977,4,7,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,-1.1,18,97900,0,0,351,0,0,0,0,0,0,0,320,2.1,0,0,48.3,77777,9,999999999,80,0.0730,0,88,999.000,999.0,99.0 +1977,4,8,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,-0.6,21,97900,0,0,344,0,0,0,0,0,0,0,0,0.0,0,0,48.3,77777,9,999999999,90,0.1070,0,88,999.000,999.0,99.0 +1977,4,8,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,-0.6,24,97900,0,0,332,0,0,0,0,0,0,0,110,3.1,0,0,48.3,77777,9,999999999,90,0.1070,0,88,999.000,999.0,99.0 +1977,4,8,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,-1.1,26,97900,0,0,323,0,0,0,0,0,0,0,120,4.6,0,0,48.3,77777,9,999999999,80,0.1070,0,88,999.000,999.0,99.0 +1977,4,8,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,0.0,30,98000,0,0,320,0,0,0,0,0,0,0,100,4.1,0,0,48.3,77777,9,999999999,90,0.1070,0,88,999.000,999.0,99.0 +1977,4,8,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,-1.1,28,98000,0,0,318,0,0,0,0,0,0,0,80,3.1,0,0,48.3,77777,9,999999999,80,0.1070,0,88,999.000,999.0,99.0 +1977,4,8,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,-1.7,28,98000,0,0,315,0,0,0,0,0,0,0,90,4.6,0,0,80.5,77777,9,999999999,80,0.1070,0,88,999.000,999.0,99.0 +1977,4,8,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,-1.7,29,98100,105,1193,313,44,161,27,4400,7900,3700,480,90,3.6,0,0,80.5,77777,9,999999999,80,0.1070,0,88,999.000,999.0,99.0 +1977,4,8,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,-1.7,23,98100,389,1363,328,231,583,61,23700,51000,9200,1160,100,5.2,0,0,80.5,77777,9,999999999,80,0.1070,0,88,999.000,999.0,99.0 +1977,4,8,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,-0.6,19,98100,660,1363,352,471,765,90,47900,74500,11700,1850,110,5.2,0,0,80.5,77777,9,999999999,90,0.1070,0,88,999.000,999.0,99.0 +1977,4,8,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,-2.8,14,98100,893,1363,357,680,862,113,71600,86500,14800,2820,120,4.6,0,0,80.5,77777,9,999999999,70,0.1070,0,88,999.000,999.0,99.0 +1977,4,8,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,-4.4,11,98100,1071,1363,363,849,913,130,87300,91200,15500,3320,90,4.1,0,0,64.4,77777,9,999999999,60,0.1070,0,88,999.000,999.0,99.0 +1977,4,8,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,-6.1,9,98000,1183,1363,366,947,939,138,98000,94000,16200,4790,140,3.1,0,0,64.4,77777,9,999999999,60,0.1070,0,88,999.000,999.0,99.0 +1977,4,8,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,-8.3,7,97900,1221,1363,374,977,951,142,102100,95200,16500,5650,130,3.6,0,0,64.4,77777,9,999999999,50,0.1070,0,88,999.000,999.0,99.0 +1977,4,8,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,-6.7,7,97800,1183,1363,384,948,940,138,98000,94100,16200,4790,250,1.5,0,0,64.4,77777,9,999999999,60,0.1070,0,88,999.000,999.0,99.0 +1977,4,8,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.9,-8.9,6,97700,1070,1363,384,845,920,129,87700,91900,15400,3310,80,4.1,0,0,64.4,77777,9,999999999,50,0.1070,0,88,999.000,999.0,99.0 +1977,4,8,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34.4,-6.1,7,97600,892,1363,390,694,867,114,71900,86900,14900,2840,250,1.0,0,0,64.4,77777,9,999999999,60,0.1070,0,88,999.000,999.0,99.0 +1977,4,8,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.9,-6.7,7,97600,659,1363,387,470,777,91,48400,75600,11800,1860,330,3.6,0,0,64.4,77777,9,999999999,60,0.1070,0,88,999.000,999.0,99.0 +1977,4,8,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,-7.2,7,97500,388,1363,383,228,593,61,24000,51800,9200,1160,340,4.6,0,0,64.4,77777,9,999999999,60,0.1070,0,88,999.000,999.0,99.0 +1977,4,8,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,-4.4,9,97500,105,1193,379,47,171,28,4600,8400,3800,500,310,4.1,0,0,64.4,77777,9,999999999,60,0.1070,0,88,999.000,999.0,99.0 +1977,4,8,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,-6.7,9,97400,0,0,368,0,0,0,0,0,0,0,310,4.1,0,0,56.3,77777,9,999999999,60,0.1070,0,88,999.000,999.0,99.0 +1977,4,8,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,-3.3,12,97500,0,0,364,0,0,0,0,0,0,0,0,0.0,0,0,48.3,77777,9,999999999,70,0.1070,0,88,999.000,999.0,99.0 +1977,4,8,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,-3.3,15,97500,0,0,348,0,0,0,0,0,0,0,210,2.1,0,0,48.3,77777,9,999999999,70,0.1070,0,88,999.000,999.0,99.0 +1977,4,8,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,-2.2,18,97500,0,0,345,0,0,0,0,0,0,0,0,0.0,0,0,48.3,77777,9,999999999,80,0.1070,0,88,999.000,999.0,99.0 +1977,4,8,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,-1.1,20,97500,0,0,343,0,0,0,0,0,0,0,0,0.0,0,0,48.3,77777,9,999999999,80,0.1070,0,88,999.000,999.0,99.0 +1977,4,9,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,-2.2,20,97500,0,0,335,0,0,0,0,0,0,0,110,3.6,0,0,48.3,77777,9,999999999,80,0.0360,0,88,999.000,999.0,99.0 +1977,4,9,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,-2.2,22,97400,0,0,330,0,0,0,0,0,0,0,80,3.1,0,0,48.3,77777,9,999999999,80,0.0360,0,88,999.000,999.0,99.0 +1977,4,9,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,-2.2,25,97400,0,0,319,0,0,0,0,0,0,0,110,3.6,0,0,48.3,77777,9,999999999,80,0.0360,0,88,999.000,999.0,99.0 +1977,4,9,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,-2.2,26,97400,0,0,317,0,0,0,0,0,0,0,100,3.6,0,0,48.3,77777,9,999999999,80,0.0360,0,88,999.000,999.0,99.0 +1977,4,9,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,-1.1,30,97400,0,0,314,0,0,0,0,0,0,0,110,3.6,0,0,48.3,77777,9,999999999,80,0.0360,0,88,999.000,999.0,99.0 +1977,4,9,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,-0.6,32,97400,0,0,312,0,0,0,0,0,0,0,110,3.1,0,0,80.5,77777,9,999999999,90,0.0360,0,88,999.000,999.0,99.0 +1977,4,9,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,-0.6,32,97400,110,1215,312,57,342,19,5200,20800,3300,380,110,4.1,0,0,80.5,77777,9,999999999,90,0.0360,0,88,999.000,999.0,99.0 +1977,4,9,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,-0.6,26,97400,395,1362,326,243,752,37,27000,67200,7500,920,120,3.6,0,0,80.5,77777,9,999999999,90,0.0360,0,88,999.000,999.0,99.0 +1977,4,9,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,-3.9,16,97400,665,1362,340,490,896,54,51900,87200,9200,1380,100,4.1,0,0,80.5,77777,9,999999999,70,0.0360,0,88,999.000,999.0,99.0 +1977,4,9,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,-5.6,12,97400,897,1362,348,697,967,69,74100,96300,10600,1910,120,2.6,0,0,80.5,77777,9,999999999,60,0.0360,0,88,999.000,999.0,99.0 +1977,4,9,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,-4.4,11,97400,1075,1362,366,856,997,79,90600,99900,11500,2650,70,2.1,0,0,80.5,77777,9,999999999,70,0.0360,0,88,999.000,999.0,99.0 +1977,4,9,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,-6.7,8,97300,1187,1362,371,971,1019,85,101500,102400,12100,3620,210,4.1,0,0,80.5,77777,9,999999999,60,0.0360,0,88,999.000,999.0,99.0 +1977,4,9,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,-5.6,8,97200,1225,1362,380,1002,1025,87,105100,103000,12300,4150,110,3.6,0,0,80.5,77777,9,999999999,60,0.0360,0,88,999.000,999.0,99.0 +1977,4,9,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,-7.8,7,97100,1186,1362,380,971,965,135,100300,96600,16000,4800,210,2.1,5,0,80.5,77777,9,999999999,50,0.0360,0,88,999.000,999.0,99.0 +1977,4,9,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.9,-8.3,6,97000,1073,1362,385,866,930,134,89200,92800,15900,3370,250,5.2,6,0,80.5,77777,9,999999999,50,0.0360,0,88,999.000,999.0,99.0 +1977,4,9,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,-6.7,7,96900,894,1362,382,685,717,215,70900,71300,24000,5290,310,4.6,10,0,64.4,77777,9,999999999,50,0.0360,0,88,999.000,999.0,99.0 +1977,4,9,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,-9.4,6,96900,662,1362,385,487,737,128,50600,71900,15500,2630,300,5.7,10,1,64.4,77777,9,999999999,50,0.0360,0,88,999.000,999.0,99.0 +1977,4,9,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,-10.6,6,96800,391,1362,373,242,536,93,25000,45800,11800,1630,290,4.6,7,0,64.4,77777,9,999999999,50,0.0360,0,88,999.000,999.0,99.0 +1977,4,9,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,-12.2,5,96800,107,1215,363,62,390,17,5700,25400,3300,390,300,5.2,3,0,64.4,77777,9,999999999,40,0.0160,0,88,999.000,999.0,99.0 +1977,4,9,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,-9.4,7,96800,0,0,359,0,0,0,0,0,0,0,250,3.6,1,0,48.3,77777,9,999999999,50,0.0360,0,88,999.000,999.0,99.0 +1977,4,9,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,-6.1,12,96900,0,0,345,0,0,0,0,0,0,0,200,2.1,0,0,48.3,77777,9,999999999,60,0.0360,0,88,999.000,999.0,99.0 +1977,4,9,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,-6.7,12,96900,0,0,344,0,0,0,0,0,0,0,0,0.0,0,0,48.3,77777,9,999999999,60,0.0360,0,88,999.000,999.0,99.0 +1977,4,9,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,-5.6,16,96900,0,0,330,0,0,0,0,0,0,0,110,3.1,0,0,48.3,77777,9,999999999,60,0.0360,0,88,999.000,999.0,99.0 +1977,4,9,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,-6.7,15,96900,0,0,326,0,0,0,0,0,0,0,130,4.6,0,0,48.3,77777,9,999999999,60,0.0360,0,88,999.000,999.0,99.0 +1977,4,10,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,-11.7,10,97000,0,0,320,0,0,0,0,0,0,0,130,3.1,0,0,48.3,77777,9,999999999,40,0.0360,0,88,999.000,999.0,99.0 +1977,4,10,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,-12.2,10,96900,0,0,317,0,0,0,0,0,0,0,90,5.7,0,0,48.3,77777,9,999999999,40,0.0360,0,88,999.000,999.0,99.0 +1977,4,10,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,-10.6,13,96900,0,0,312,0,0,0,0,0,0,0,90,5.2,0,0,48.3,77777,9,999999999,50,0.0360,0,88,999.000,999.0,99.0 +1977,4,10,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,-7.2,18,96900,0,0,309,0,0,0,0,0,0,0,80,5.7,0,0,48.3,77777,9,999999999,60,0.0360,0,88,999.000,999.0,99.0 +1977,4,10,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,-6.7,21,97000,0,0,303,0,0,0,0,0,0,0,90,5.7,0,0,48.3,77777,9,999999999,60,0.0360,0,88,999.000,999.0,99.0 +1977,4,10,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,-5.0,27,97000,0,0,298,0,0,0,0,0,0,0,60,3.6,0,0,80.5,77777,9,999999999,60,0.0360,0,88,999.000,999.0,99.0 +1977,4,10,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,-5.6,23,97000,115,1237,304,55,363,19,5500,22300,3400,380,120,6.7,0,0,96.6,77777,9,999999999,60,0.0360,0,88,999.000,999.0,99.0 +1977,4,10,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,-5.0,20,97100,400,1362,316,253,767,37,27800,68800,7600,930,120,3.6,0,0,96.6,77777,9,999999999,60,0.0360,0,88,999.000,999.0,99.0 +1977,4,10,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,-6.1,15,97100,670,1362,330,505,903,55,52700,87900,9300,1400,140,3.6,0,0,96.6,77777,9,999999999,60,0.0360,0,88,999.000,999.0,99.0 +1977,4,10,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,-5.6,14,97100,902,1362,340,713,967,69,74500,96300,10600,1920,130,2.6,0,0,96.6,77777,9,999999999,60,0.0360,0,88,999.000,999.0,99.0 +1977,4,10,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,-8.3,10,97100,1079,1362,345,862,1008,79,91800,101100,11500,2680,170,2.6,0,0,96.6,77777,9,999999999,50,0.0360,0,88,999.000,999.0,99.0 +1977,4,10,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,-6.7,10,97000,1190,1362,357,986,1019,85,101800,102400,12100,3660,160,5.2,0,0,96.6,77777,9,999999999,60,0.0360,0,88,999.000,999.0,99.0 +1977,4,10,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,-8.3,8,97000,1228,1362,366,1012,1030,87,105900,103500,12300,4210,200,10.3,0,0,56.3,77777,9,999999999,50,0.0360,0,88,999.000,999.0,99.0 +1977,4,10,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,-8.9,7,96900,1189,1362,365,977,1024,85,102100,102900,12100,3640,200,11.3,0,0,72.4,77777,9,999999999,50,0.0360,0,88,999.000,999.0,99.0 +1977,4,10,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,-8.9,7,96900,1076,1362,368,875,1007,79,91500,101000,11500,2660,210,10.8,0,0,72.4,77777,9,999999999,50,0.0360,0,88,999.000,999.0,99.0 +1977,4,10,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,-4.4,10,96900,897,1362,371,712,967,69,74200,96300,10600,1910,250,7.2,0,0,56.3,77777,9,999999999,60,0.0360,0,88,999.000,999.0,99.0 +1977,4,10,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,1.1,17,96900,664,1362,370,472,890,55,51700,86600,9300,1390,250,8.8,0,0,48.3,77777,9,999999999,90,0.0360,0,88,999.000,999.0,99.0 +1977,4,10,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,0.0,17,96900,394,1362,361,236,754,37,27100,67400,7500,920,280,9.3,0,0,48.3,77777,9,999999999,90,0.0360,0,88,999.000,999.0,99.0 +1977,4,10,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,1.1,22,97000,110,1214,351,59,352,19,5300,21500,3300,380,270,7.7,0,0,48.3,77777,9,999999999,100,0.0360,0,88,999.000,999.0,99.0 +1977,4,10,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,0.0,21,97000,0,0,345,0,0,0,0,0,0,0,270,5.7,0,0,48.3,77777,9,999999999,90,0.0360,0,88,999.000,999.0,99.0 +1977,4,10,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,0.0,25,97100,0,0,335,0,0,0,0,0,0,0,230,4.6,0,0,48.3,77777,9,999999999,90,0.0360,0,88,999.000,999.0,99.0 +1977,4,10,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,-0.6,24,97200,0,0,332,0,0,0,0,0,0,0,260,5.2,0,0,48.3,77777,9,999999999,80,0.0360,0,88,999.000,999.0,99.0 +1977,4,10,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,-1.1,25,97200,0,0,326,0,0,0,0,0,0,0,260,4.1,0,0,48.3,77777,9,999999999,80,0.0360,0,88,999.000,999.0,99.0 +1977,4,10,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,0.0,29,97300,0,0,322,0,0,0,0,0,0,0,190,1.5,0,0,48.3,77777,9,999999999,90,0.0360,0,88,999.000,999.0,99.0 +1977,4,11,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,-1.1,28,97300,0,0,318,0,0,0,0,0,0,0,320,1.5,0,0,48.3,77777,9,999999999,80,0.1080,0,88,999.000,999.0,99.0 +1977,4,11,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,0.0,32,97300,0,0,315,0,0,0,0,0,0,0,90,5.2,0,0,48.3,77777,9,999999999,90,0.1080,0,88,999.000,999.0,99.0 +1977,4,11,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,-1.1,33,97400,0,0,306,0,0,0,0,0,0,0,100,4.1,0,0,48.3,77777,9,999999999,80,0.1080,0,88,999.000,999.0,99.0 +1977,4,11,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,0.0,37,97400,0,0,305,0,0,0,0,0,0,0,80,4.1,0,0,48.3,77777,9,999999999,90,0.1080,0,88,999.000,999.0,99.0 +1977,4,11,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,-0.6,37,97500,0,0,302,0,0,0,0,0,0,0,90,3.6,0,0,48.3,77777,9,999999999,90,0.1080,0,88,999.000,999.0,99.0 +1977,4,11,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,-1.1,37,97500,0,0,299,0,0,0,0,0,0,0,100,4.6,0,0,64.4,77777,9,999999999,80,0.1080,0,88,999.000,999.0,99.0 +1977,4,11,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,-1.7,37,97600,120,1282,297,47,187,29,5000,9500,4000,510,100,4.6,0,0,64.4,77777,9,999999999,80,0.1080,0,88,999.000,999.0,99.0 +1977,4,11,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,-1.1,33,97700,406,1361,306,233,598,63,25200,53000,9400,1200,110,5.2,0,0,64.4,77777,9,999999999,80,0.1080,0,88,999.000,999.0,99.0 +1977,4,11,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,0.6,34,97800,675,1361,316,473,770,92,49300,75200,11900,1910,100,3.6,0,0,64.4,77777,9,999999999,90,0.1080,0,88,999.000,999.0,99.0 +1977,4,11,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,1.1,30,97800,906,1361,328,675,853,115,72200,85600,15000,2920,70,3.1,0,0,56.3,77777,9,999999999,100,0.1080,0,88,999.000,999.0,99.0 +1977,4,11,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,1.7,28,97800,1083,1361,337,838,900,131,87300,89900,15500,3450,170,3.1,0,0,48.3,77777,9,999999999,100,0.1080,0,88,999.000,999.0,99.0 +1977,4,11,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,1.1,25,97700,1194,1361,341,950,925,140,97700,92600,16300,5060,270,2.6,0,0,48.3,77777,9,999999999,100,0.1080,0,88,999.000,999.0,99.0 +1977,4,11,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,0.6,22,97700,1231,1361,348,975,934,143,101400,93500,16600,5950,240,3.6,0,0,48.3,77777,9,999999999,90,0.1080,0,88,999.000,999.0,99.0 +1977,4,11,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,-0.6,19,97600,1191,1361,352,938,928,140,97800,92900,16300,5010,310,3.1,0,0,48.3,77777,9,999999999,90,0.1080,0,88,999.000,999.0,99.0 +1977,4,11,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,-1.7,15,97500,1078,1361,359,848,907,131,87500,90600,15600,3410,230,4.1,0,0,48.3,77777,9,999999999,80,0.1080,0,88,999.000,999.0,99.0 +1977,4,11,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,-1.7,15,97500,900,1361,359,675,860,115,72200,86300,15000,2890,280,4.6,0,0,40.2,77777,9,999999999,80,0.1080,0,88,999.000,999.0,99.0 +1977,4,11,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,-1.7,16,97400,667,1361,356,455,772,92,48900,75200,11900,1890,230,2.6,0,0,40.2,77777,9,999999999,80,0.1080,0,88,999.000,999.0,99.0 +1977,4,11,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,-1.7,17,97400,397,1361,353,223,592,62,24500,52100,9300,1180,340,3.6,0,0,40.2,77777,9,999999999,80,0.1080,0,88,999.000,999.0,99.0 +1977,4,11,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,-1.1,18,97500,113,1236,351,50,182,29,4900,9200,4000,510,320,3.1,0,0,48.3,77777,9,999999999,80,0.1080,0,88,999.000,999.0,99.0 +1977,4,11,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,-1.1,18,97500,0,0,348,0,0,0,0,0,0,0,320,3.1,0,0,48.3,77777,9,999999999,80,0.1080,0,88,999.000,999.0,99.0 +1977,4,11,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,-0.6,21,97600,0,0,342,0,0,0,0,0,0,0,150,1.5,0,0,48.3,77777,9,999999999,80,0.1080,0,88,999.000,999.0,99.0 +1977,4,11,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,0.0,25,97600,0,0,335,0,0,0,0,0,0,0,120,2.6,0,0,48.3,77777,9,999999999,90,0.1080,0,88,999.000,999.0,99.0 +1977,4,11,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,0.0,25,97600,0,0,332,0,0,0,0,0,0,0,100,3.1,0,0,48.3,77777,9,999999999,90,0.1080,0,88,999.000,999.0,99.0 +1977,4,11,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,0.6,28,97600,0,0,328,0,0,0,0,0,0,0,110,3.6,2,0,48.3,77777,9,999999999,90,0.1080,0,88,999.000,999.0,99.0 +1977,4,12,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,0.0,28,97600,0,0,325,0,0,0,0,0,0,0,100,3.1,4,0,48.3,77777,9,999999999,90,0.1090,0,88,999.000,999.0,99.0 +1977,4,12,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,0.0,30,97500,0,0,320,0,0,0,0,0,0,0,130,2.6,0,0,48.3,77777,9,999999999,90,0.1090,0,88,999.000,999.0,99.0 +1977,4,12,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,0.6,33,97500,0,0,318,0,0,0,0,0,0,0,70,2.6,0,0,48.3,77777,9,999999999,90,0.1090,0,88,999.000,999.0,99.0 +1977,4,12,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,0.0,34,97500,0,0,312,0,0,0,0,0,0,0,100,2.6,0,0,48.3,77777,9,999999999,90,0.1090,0,88,999.000,999.0,99.0 +1977,4,12,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,0.6,36,97500,0,0,311,0,0,0,0,0,0,0,150,2.1,0,0,48.3,77777,9,999999999,90,0.1090,0,88,999.000,999.0,99.0 +1977,4,12,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,0.6,38,97600,0,0,308,0,0,0,0,0,0,0,0,0.0,0,0,48.3,77777,9,999999999,90,0.1090,0,88,999.000,999.0,99.0 +1977,4,12,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,0.6,38,97600,126,1303,308,48,189,30,5100,9800,4200,530,120,2.6,0,0,48.3,77777,9,999999999,90,0.1090,0,88,999.000,999.0,99.0 +1977,4,12,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,0.6,32,97600,411,1360,320,234,598,64,25600,53200,9500,1230,90,4.6,0,0,48.3,77777,9,999999999,90,0.1090,0,88,999.000,999.0,99.0 +1977,4,12,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,0.6,27,97600,680,1360,330,472,753,98,49100,73400,12300,1980,100,3.6,1,0,48.3,77777,9,999999999,90,0.1090,0,88,999.000,999.0,99.0 +1977,4,12,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,0.6,22,97600,910,1360,345,658,649,221,67800,64600,24400,5560,110,3.6,5,0,48.3,77777,9,999999999,90,0.1090,0,88,999.000,999.0,99.0 +1977,4,12,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,0.0,19,97600,1087,1360,353,812,842,146,86600,84900,18500,4900,150,2.1,2,0,48.3,77777,9,999999999,90,0.1090,0,88,999.000,999.0,99.0 +1977,4,12,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,0.6,18,97500,1197,1360,361,913,866,157,97800,87600,20500,7180,130,2.1,2,0,48.3,77777,9,999999999,90,0.1090,0,88,999.000,999.0,99.0 +1977,4,12,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,-0.6,15,97400,1234,1360,368,986,938,144,102100,93900,16700,6080,140,4.1,0,0,48.3,77777,9,999999999,80,0.1090,0,88,999.000,999.0,99.0 +1977,4,12,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,-2.2,13,97300,1194,1360,368,958,930,141,98300,93100,16400,5090,140,2.6,0,0,48.3,77777,9,999999999,80,0.1090,0,88,999.000,999.0,99.0 +1977,4,12,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,-2.2,12,97200,1081,1360,374,855,905,132,87600,90400,15600,3440,170,3.1,0,0,48.3,77777,9,999999999,80,0.1090,0,88,999.000,999.0,99.0 +1977,4,12,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,-2.8,12,97200,902,1360,373,691,849,121,71900,85000,15400,3000,150,4.6,1,0,48.3,77777,9,999999999,80,0.1090,0,88,999.000,999.0,99.0 +1977,4,12,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,-8.3,8,97100,670,1360,366,442,588,178,49100,58700,20100,3760,120,4.1,5,0,48.3,77777,9,999999999,50,0.1090,0,88,999.000,999.0,99.0 +1977,4,12,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,-8.3,8,97100,400,1360,363,251,541,86,25000,46900,11200,1550,180,4.1,6,0,64.4,77777,9,999999999,50,0.1090,0,88,999.000,999.0,99.0 +1977,4,12,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,-10.0,7,97100,116,1258,362,42,88,33,4400,4200,4000,600,170,3.1,3,1,64.4,77777,9,999999999,40,0.1090,0,88,999.000,999.0,99.0 +1977,4,12,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,-8.9,9,97200,0,0,358,0,0,0,0,0,0,0,0,0.0,3,1,64.4,77777,9,999999999,50,0.1090,0,88,999.000,999.0,99.0 +1977,4,12,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,-7.8,10,97200,0,0,351,0,0,0,0,0,0,0,310,2.1,1,0,64.4,77777,9,999999999,50,0.1090,0,88,999.000,999.0,99.0 +1977,4,12,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,-5.0,15,97200,0,0,336,0,0,0,0,0,0,0,200,2.6,0,0,64.4,77777,9,999999999,60,0.1090,0,88,999.000,999.0,99.0 +1977,4,12,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,-3.9,16,97200,0,0,340,0,0,0,0,0,0,0,60,1.5,0,0,56.3,77777,9,999999999,70,0.1090,0,88,999.000,999.0,99.0 +1977,4,12,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,-1.7,22,97200,0,0,330,0,0,0,0,0,0,0,120,2.1,0,0,48.3,77777,9,999999999,80,0.1090,0,88,999.000,999.0,99.0 +1977,4,13,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,-2.2,24,97200,0,0,322,0,0,0,0,0,0,0,170,2.6,0,0,48.3,77777,9,999999999,80,0.1410,0,88,999.000,999.0,99.0 +1977,4,13,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,-2.2,24,97100,0,0,322,0,0,0,0,0,0,0,110,1.5,0,0,48.3,77777,9,999999999,80,0.1410,0,88,999.000,999.0,99.0 +1977,4,13,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,-2.2,26,97100,0,0,317,0,0,0,0,0,0,0,210,2.6,0,0,48.3,77777,9,999999999,80,0.1410,0,88,999.000,999.0,99.0 +1977,4,13,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,-1.7,28,97100,0,0,315,0,0,0,0,0,0,0,120,3.6,0,0,48.3,77777,9,999999999,80,0.1410,0,88,999.000,999.0,99.0 +1977,4,13,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,-1.7,30,97100,0,0,310,0,0,0,0,0,0,0,110,3.1,0,0,48.3,77777,9,999999999,80,0.1410,0,88,999.000,999.0,99.0 +1977,4,13,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,-1.1,31,97100,0,0,311,0,0,0,0,0,0,0,100,3.1,0,0,48.3,77777,9,999999999,80,0.1410,0,88,999.000,999.0,99.0 +1977,4,13,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,-0.6,34,97200,131,1325,310,53,153,33,5100,8000,4300,590,90,3.6,0,0,56.3,77777,9,999999999,90,0.1410,0,88,999.000,999.0,99.0 +1977,4,13,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,-1.7,25,97200,417,1359,323,240,546,74,25000,48500,10100,1390,110,4.6,0,0,56.3,77777,9,999999999,80,0.1410,0,88,999.000,999.0,99.0 +1977,4,13,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,-2.2,20,97200,685,1359,335,484,730,108,50300,72300,13800,2330,120,4.6,0,0,56.3,77777,9,999999999,80,0.1410,0,88,999.000,999.0,99.0 +1977,4,13,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,-1.7,18,97200,915,1359,345,690,822,135,71600,82000,16300,3280,90,4.6,0,0,48.3,77777,9,999999999,80,0.1410,0,88,999.000,999.0,99.0 +1977,4,13,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,-1.7,17,97100,1090,1359,353,857,872,153,89700,87800,19100,5120,100,4.6,0,0,48.3,77777,9,999999999,80,0.1410,0,88,999.000,999.0,99.0 +1977,4,13,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,-4.4,11,97000,1200,1359,363,967,907,163,102200,91600,21100,7500,130,2.6,0,0,40.2,77777,9,999999999,60,0.1410,0,88,999.000,999.0,99.0 +1977,4,13,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,-6.1,9,97000,1236,1359,369,992,914,167,106000,92400,21800,8840,50,1.5,0,0,48.3,77777,9,999999999,60,0.1410,0,88,999.000,999.0,99.0 +1977,4,13,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,-5.0,9,96800,1197,1359,375,950,904,163,101600,91300,21000,7400,180,4.1,0,0,48.3,77777,9,999999999,60,0.1410,0,88,999.000,999.0,99.0 +1977,4,13,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,-6.1,8,96700,1083,1359,377,858,878,153,89700,88300,19100,5030,220,3.1,0,0,56.3,77777,9,999999999,60,0.1410,0,88,999.000,999.0,99.0 +1977,4,13,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,-5.6,8,96600,905,1359,380,675,828,134,71200,82500,16200,3210,320,2.1,0,0,64.4,77777,9,999999999,60,0.1410,0,88,999.000,999.0,99.0 +1977,4,13,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,-3.9,9,96500,673,1359,382,462,716,112,49100,70600,14100,2380,280,4.1,1,0,64.4,77777,9,999999999,60,0.1410,0,88,999.000,999.0,99.0 +1977,4,13,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,-6.1,8,96500,403,1359,374,233,543,72,24100,47700,9900,1350,280,6.2,0,0,64.4,77777,9,999999999,60,0.1410,0,88,999.000,999.0,99.0 +1977,4,13,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,-7.2,8,96400,119,1257,374,39,88,29,4000,4200,3600,510,310,3.6,1,1,64.4,77777,9,999999999,50,0.1410,0,88,999.000,999.0,99.0 +1977,4,13,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,-6.1,10,96500,0,0,370,0,0,0,0,0,0,0,270,3.1,1,1,56.3,77777,9,999999999,60,0.1410,0,88,999.000,999.0,99.0 +1977,4,13,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,-2.2,16,96600,0,0,359,0,0,0,0,0,0,0,270,3.1,1,1,56.3,77777,9,999999999,80,0.1410,0,88,999.000,999.0,99.0 +1977,4,13,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,-1.7,17,96600,0,0,350,0,0,0,0,0,0,0,240,5.7,0,0,56.3,77777,9,999999999,80,0.1410,0,88,999.000,999.0,99.0 +1977,4,13,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,0.0,20,96600,0,0,350,0,0,0,0,0,0,0,240,5.7,0,0,56.3,77777,9,999999999,90,0.1410,0,88,999.000,999.0,99.0 +1977,4,13,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,0.0,21,96500,0,0,345,0,0,0,0,0,0,0,270,4.6,0,0,48.3,77777,9,999999999,90,0.1410,0,88,999.000,999.0,99.0 +1977,4,14,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,0.6,23,96600,0,0,343,0,0,0,0,0,0,0,290,2.6,0,0,48.3,77777,9,999999999,90,0.0940,0,88,999.000,999.0,99.0 +1977,4,14,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,0.0,24,96500,0,0,337,0,0,0,0,0,0,0,290,4.1,1,0,48.3,77777,9,999999999,90,0.0940,0,88,999.000,999.0,99.0 +1977,4,14,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,1.1,31,96500,0,0,326,0,0,0,0,0,0,0,120,4.1,2,0,48.3,77777,9,999999999,100,0.0940,0,88,999.000,999.0,99.0 +1977,4,14,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,1.1,32,96500,0,0,329,0,0,0,0,0,0,0,100,3.6,6,1,48.3,77777,9,999999999,100,0.0940,0,88,999.000,999.0,99.0 +1977,4,14,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,0.6,32,96500,0,0,327,0,0,0,0,0,0,0,110,4.6,10,1,48.3,77777,9,999999999,90,0.0940,0,88,999.000,999.0,99.0 +1977,4,14,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,0.6,34,96600,0,0,322,0,0,0,0,0,0,0,90,5.2,9,1,56.3,77777,9,999999999,90,0.0940,0,88,999.000,999.0,99.0 +1977,4,14,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,0.6,33,96700,137,1347,332,45,26,43,5000,1700,4800,990,110,4.6,8,3,72.4,77777,9,999999999,90,0.0940,0,88,999.000,999.0,99.0 +1977,4,14,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,1.1,31,96700,422,1359,340,240,500,78,24100,44500,10300,1460,100,4.1,8,3,64.4,77777,9,999999999,100,0.0940,0,88,999.000,999.0,99.0 +1977,4,14,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,0.0,23,96700,689,1359,357,422,457,191,44300,45800,21000,4110,100,3.6,9,4,64.4,77777,9,999999999,90,0.0560,0,88,999.000,999.0,99.0 +1977,4,14,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,-0.6,21,96800,919,1359,362,529,275,339,56100,29500,36100,9660,180,2.6,9,4,72.4,77777,9,999999999,90,0.0940,0,88,999.000,999.0,99.0 +1977,4,14,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,-1.7,18,96800,1094,1359,372,700,497,303,75100,51800,33300,11200,0,0.0,9,6,72.4,7620,9,999999999,80,0.0940,0,88,999.000,999.0,99.0 +1977,4,14,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,-2.2,16,96800,1203,1359,396,660,181,500,71900,19200,54900,22680,270,1.5,9,9,72.4,7620,9,999999999,80,0.0940,0,88,999.000,999.0,99.0 +1977,4,14,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,-1.1,17,96700,1239,1359,392,604,169,443,65700,18000,49200,22240,270,2.6,9,8,72.4,7620,9,999999999,80,0.0940,0,88,999.000,999.0,99.0 +1977,4,14,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,-0.6,17,96700,1199,1359,382,566,125,497,66900,13000,55400,22150,300,3.6,10,6,72.4,7620,9,999999999,80,0.0940,0,88,999.000,999.0,99.0 +1977,4,14,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,0.0,16,96600,1086,1359,394,644,369,348,70100,40000,38100,12290,260,2.6,9,6,64.4,7620,9,999999999,90,0.0940,0,88,999.000,999.0,99.0 +1977,4,14,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,0.0,15,96600,907,1359,397,468,190,349,51600,20000,38200,10150,330,2.6,9,6,64.4,7620,9,999999999,90,0.0940,0,88,999.000,999.0,99.0 +1977,4,14,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,0.0,15,96600,675,1359,394,399,446,181,42200,44600,20000,3840,330,5.2,8,5,64.4,7620,9,999999999,90,0.0940,0,88,999.000,999.0,99.0 +1977,4,14,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,-0.6,15,96600,406,1359,390,201,356,95,21200,31400,11700,1770,280,5.2,6,5,64.4,7620,9,999999999,80,0.0560,0,88,999.000,999.0,99.0 +1977,4,14,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,1.7,23,96700,122,1279,370,54,191,28,5000,9800,4000,490,160,4.6,4,4,40.2,77777,9,999999999,100,0.0940,0,88,999.000,999.0,99.0 +1977,4,14,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,3.9,29,96700,0,0,362,0,0,0,0,0,0,0,180,7.2,3,3,24.1,77777,9,999999999,110,0.0940,0,88,999.000,999.0,99.0 +1977,4,14,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,3.9,29,96800,0,0,354,0,0,0,0,0,0,0,180,4.6,1,1,40.2,77777,9,999999999,110,0.0940,0,88,999.000,999.0,99.0 +1977,4,14,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,3.9,30,96900,0,0,351,0,0,0,0,0,0,0,90,3.6,1,1,48.3,77777,9,999999999,110,0.0940,0,88,999.000,999.0,99.0 +1977,4,14,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,5.0,38,97000,0,0,342,0,0,0,0,0,0,0,90,6.2,1,1,48.3,77777,9,999999999,120,0.0940,0,88,999.000,999.0,99.0 +1977,4,14,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,4.4,39,97000,0,0,336,0,0,0,0,0,0,0,90,5.2,1,1,48.3,77777,9,999999999,120,0.0940,0,88,999.000,999.0,99.0 +1977,4,15,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,4.4,42,97000,0,0,325,0,0,0,0,0,0,0,100,4.6,0,0,56.3,77777,9,999999999,120,0.1100,0,88,999.000,999.0,99.0 +1977,4,15,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,5.6,50,97100,0,0,318,0,0,0,0,0,0,0,120,3.6,0,0,56.3,77777,9,999999999,130,0.1100,0,88,999.000,999.0,99.0 +1977,4,15,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,5.6,52,97100,0,0,316,0,0,0,0,0,0,0,120,2.6,0,0,56.3,77777,9,999999999,130,0.1100,0,88,999.000,999.0,99.0 +1977,4,15,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,5.6,54,97100,0,0,314,0,0,0,0,0,0,0,100,3.1,0,0,56.3,77777,9,999999999,130,0.1100,0,88,999.000,999.0,99.0 +1977,4,15,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,5.6,54,97100,0,0,314,0,0,0,0,0,0,0,100,3.6,0,0,56.3,77777,9,999999999,130,0.1100,0,88,999.000,999.0,99.0 +1977,4,15,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,5.6,55,97200,0,34,311,0,0,0,0,0,0,0,100,4.1,0,0,80.5,77777,9,999999999,130,0.1100,0,88,999.000,999.0,99.0 +1977,4,15,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,6.1,58,97200,142,1358,312,60,213,31,5600,11200,4400,550,100,4.1,0,0,72.4,77777,9,999999999,130,0.1100,0,88,999.000,999.0,99.0 +1977,4,15,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,6.1,47,97300,427,1358,327,249,601,66,26700,54100,9700,1270,130,3.6,0,0,56.3,77777,9,999999999,130,0.1100,0,88,999.000,999.0,99.0 +1977,4,15,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,5.0,38,97200,694,1358,335,488,768,95,50800,75200,12200,1990,130,2.6,0,0,56.3,77777,9,999999999,120,0.1100,0,88,999.000,999.0,99.0 +1977,4,15,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,4.4,31,97300,923,1358,345,688,849,118,73500,85300,15400,3060,220,3.6,0,0,48.3,77777,9,999999999,120,0.1100,0,88,999.000,999.0,99.0 +1977,4,15,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,3.9,27,97200,1098,1358,352,857,897,133,88300,89600,15700,3640,250,5.7,0,0,48.3,77777,9,999999999,110,0.1100,0,88,999.000,999.0,99.0 +1977,4,15,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,4.4,26,97100,1206,1358,361,952,917,142,98200,91800,16500,5410,280,4.6,0,0,40.2,77777,9,999999999,120,0.1100,0,88,999.000,999.0,99.0 +1977,4,15,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,3.9,22,97000,1242,1358,368,990,928,145,101900,92900,16700,6400,240,9.3,0,0,40.2,77777,9,999999999,110,0.1100,0,88,999.000,999.0,99.0 +1977,4,15,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,3.3,19,96900,1201,1358,376,947,920,142,98200,92100,16500,5300,250,7.7,0,0,40.2,77777,9,999999999,110,0.1100,0,88,999.000,999.0,99.0 +1977,4,15,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,0.6,15,96700,1088,1358,375,826,902,133,88100,90100,15700,3540,260,8.8,0,0,32.2,77777,9,999999999,90,0.1100,0,88,999.000,999.0,99.0 +1977,4,15,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,-9.4,7,96600,909,1358,374,633,589,225,66300,60900,25400,5930,260,12.4,1,1,8.0,77777,9,999999999,50,0.1100,0,88,999.000,999.0,99.0 +1977,4,15,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,-18.3,3,96600,678,1358,363,475,758,85,48700,74300,11500,1830,280,12.4,2,2,24.1,77777,9,999999999,30,0.1100,0,88,999.000,999.0,99.0 +1977,4,15,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,-18.3,4,96600,409,1358,353,247,588,64,25200,52300,9400,1220,300,8.8,1,1,40.2,77777,9,999999999,30,0.1100,0,88,999.000,999.0,99.0 +1977,4,15,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,-11.1,8,96800,125,1301,350,51,191,30,5200,9900,4200,530,360,5.2,1,1,56.3,77777,9,999999999,40,0.1100,0,88,999.000,999.0,99.0 +1977,4,15,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,-6.7,13,96900,0,0,346,0,0,0,0,0,0,0,50,6.7,1,1,56.3,77777,9,999999999,60,0.1100,0,88,999.000,999.0,99.0 +1977,4,15,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,-3.9,17,97000,0,0,358,0,0,0,0,0,0,0,70,7.2,6,6,56.3,2740,9,999999999,70,0.1100,0,88,999.000,999.0,99.0 +1977,4,15,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,-3.9,18,97100,0,0,384,0,0,0,0,0,0,0,70,5.7,10,10,56.3,3660,9,999999999,70,0.1100,0,88,999.000,999.0,99.0 +1977,4,15,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,-5.0,16,97100,0,0,385,0,0,0,0,0,0,0,90,3.6,10,10,48.3,3050,9,999999999,60,0.1100,0,88,999.000,999.0,99.0 +1977,4,15,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,-3.9,18,97200,0,0,381,0,0,0,0,0,0,0,60,7.2,10,10,56.3,3350,9,999999999,70,0.1100,0,88,999.000,999.0,99.0 +1977,4,16,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,-1.7,24,97200,0,0,336,0,0,0,0,0,0,0,70,4.1,2,2,56.3,77777,9,999999999,80,0.1120,0,88,999.000,999.0,99.0 +1977,4,16,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,-1.7,25,97200,0,0,329,0,0,0,0,0,0,0,40,3.1,1,1,56.3,77777,9,999999999,80,0.1120,0,88,999.000,999.0,99.0 +1977,4,16,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,-2.8,25,97200,0,0,317,0,0,0,0,0,0,0,70,3.1,0,0,56.3,77777,9,999999999,80,0.1120,0,88,999.000,999.0,99.0 +1977,4,16,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,-3.3,25,97300,0,0,313,0,0,0,0,0,0,0,120,1.5,0,0,56.3,77777,9,999999999,70,0.1120,0,88,999.000,999.0,99.0 +1977,4,16,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,-2.8,29,97400,0,0,305,0,0,0,0,0,0,0,70,3.1,0,0,56.3,77777,9,999999999,70,0.1120,0,88,999.000,999.0,99.0 +1977,4,16,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,-1.1,33,97500,0,57,306,0,0,0,0,0,0,0,50,3.1,0,0,72.4,77777,9,999999999,80,0.1120,0,88,999.000,999.0,99.0 +1977,4,16,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,-0.6,32,97500,148,1357,312,62,229,32,6000,12400,4600,570,40,2.1,0,0,72.4,77777,9,999999999,90,0.1120,0,88,999.000,999.0,99.0 +1977,4,16,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,1.1,29,97600,432,1357,331,251,609,67,27300,55000,9800,1290,70,6.2,0,0,56.3,77777,9,999999999,100,0.1120,0,88,999.000,999.0,99.0 +1977,4,16,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,0.6,26,97600,699,1357,335,490,775,96,51500,76000,12300,2010,50,5.7,0,0,56.3,77777,9,999999999,90,0.1120,0,88,999.000,999.0,99.0 +1977,4,16,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,1.1,23,97600,927,1357,346,695,857,119,74400,86100,15500,3100,60,4.6,0,0,56.3,77777,9,999999999,90,0.1120,0,88,999.000,999.0,99.0 +1977,4,16,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,1.1,21,97600,1101,1357,354,863,900,135,89000,89900,15900,3700,60,6.2,0,0,56.3,77777,9,999999999,100,0.1120,0,88,999.000,999.0,99.0 +1977,4,16,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,1.1,19,97500,1209,1357,362,960,923,143,99100,92400,16600,5510,120,5.2,0,0,48.3,77777,9,999999999,100,0.1120,0,88,999.000,999.0,99.0 +1977,4,16,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,-0.6,16,97500,1244,1357,362,994,935,146,102900,93600,16800,6530,240,2.6,0,0,48.3,77777,9,999999999,80,0.1120,0,88,999.000,999.0,99.0 +1977,4,16,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,-1.1,15,97400,1204,1357,367,957,927,143,99100,92800,16600,5390,170,3.1,0,0,40.2,77777,9,999999999,80,0.1120,0,88,999.000,999.0,99.0 +1977,4,16,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,-0.6,15,97300,1090,1357,371,856,901,134,88300,90000,15800,3580,120,3.6,0,0,48.3,77777,9,999999999,90,0.1120,0,88,999.000,999.0,99.0 +1977,4,16,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,-3.3,12,97300,912,1357,369,699,860,118,73400,86300,15300,3010,210,3.6,0,0,56.3,77777,9,999999999,70,0.1120,0,88,999.000,999.0,99.0 +1977,4,16,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,-1.7,13,97200,680,1357,372,475,770,95,49900,75200,12200,1960,220,1.5,0,0,56.3,77777,9,999999999,80,0.1120,0,88,999.000,999.0,99.0 +1977,4,16,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,-1.7,13,97200,412,1357,372,242,598,65,25800,53300,9600,1240,150,3.1,0,0,56.3,77777,9,999999999,80,0.1120,0,88,999.000,999.0,99.0 +1977,4,16,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,-2.8,13,97200,128,1323,365,53,199,31,5400,10400,4300,550,0,0.0,0,0,56.3,77777,9,999999999,70,0.1120,0,88,999.000,999.0,99.0 +1977,4,16,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,-1.1,16,97200,0,0,362,0,0,0,0,0,0,0,270,2.6,0,0,48.3,77777,9,999999999,80,0.1120,0,88,999.000,999.0,99.0 +1977,4,16,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,0.6,21,97300,0,0,351,0,0,0,0,0,0,0,220,3.1,0,0,40.2,77777,9,999999999,90,0.1120,0,88,999.000,999.0,99.0 +1977,4,16,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,0.6,22,97300,0,0,348,0,0,0,0,0,0,0,220,2.1,0,0,40.2,77777,9,999999999,90,0.1120,0,88,999.000,999.0,99.0 +1977,4,16,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,0.6,23,97300,0,0,343,0,0,0,0,0,0,0,0,0.0,0,0,40.2,77777,9,999999999,90,0.1120,0,88,999.000,999.0,99.0 +1977,4,16,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,1.7,26,97300,0,0,342,0,0,0,0,0,0,0,120,2.6,0,0,40.2,77777,9,999999999,100,0.1120,0,88,999.000,999.0,99.0 +1977,4,17,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,1.7,30,97300,0,0,332,0,0,0,0,0,0,0,110,2.6,0,0,40.2,77777,9,999999999,100,0.1440,0,88,999.000,999.0,99.0 +1977,4,17,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,2.2,33,97300,0,0,327,0,0,0,0,0,0,0,110,3.1,0,0,48.3,77777,9,999999999,100,0.1440,0,88,999.000,999.0,99.0 +1977,4,17,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,2.2,35,97300,0,0,322,0,0,0,0,0,0,0,140,2.1,0,0,48.3,77777,9,999999999,100,0.1440,0,88,999.000,999.0,99.0 +1977,4,17,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,1.7,35,97300,0,0,319,0,0,0,0,0,0,0,100,3.1,0,0,48.3,77777,9,999999999,100,0.1440,0,88,999.000,999.0,99.0 +1977,4,17,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,1.7,38,97300,0,0,314,0,0,0,0,0,0,0,90,3.1,0,0,48.3,77777,9,999999999,100,0.1440,0,88,999.000,999.0,99.0 +1977,4,17,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,1.7,38,97300,0,79,314,0,0,0,0,0,0,0,100,4.1,0,0,72.4,77777,9,999999999,100,0.1440,0,88,999.000,999.0,99.0 +1977,4,17,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,1.1,38,97400,153,1356,311,54,176,35,5700,9700,4600,630,130,2.6,0,0,56.3,77777,9,999999999,100,0.1440,0,88,999.000,999.0,99.0 +1977,4,17,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,0.0,26,97400,437,1356,330,260,557,77,26600,50200,10400,1460,110,3.6,0,0,40.2,77777,9,999999999,90,0.1440,0,88,999.000,999.0,99.0 +1977,4,17,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,0.0,23,97500,703,1356,340,502,729,112,51800,72500,14200,2450,100,3.6,0,0,40.2,77777,9,999999999,90,0.1440,0,88,999.000,999.0,99.0 +1977,4,17,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,0.0,20,97400,931,1356,350,706,819,138,72800,81800,16600,3430,120,3.1,0,0,40.2,77777,9,999999999,90,0.1440,0,88,999.000,999.0,99.0 +1977,4,17,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,-0.6,17,97400,1104,1356,360,839,868,156,90800,87400,19500,5420,80,2.6,0,0,40.2,77777,9,999999999,90,0.1440,0,88,999.000,999.0,99.0 +1977,4,17,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,-3.3,12,97400,1212,1356,369,962,899,166,102800,90800,21400,8050,240,5.2,0,0,40.2,77777,9,999999999,70,0.1440,0,88,999.000,999.0,99.0 +1977,4,17,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,-3.3,11,97200,1247,1356,375,996,907,170,106600,91600,22100,9530,280,3.6,0,0,40.2,77777,9,999999999,70,0.1440,0,88,999.000,999.0,99.0 +1977,4,17,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,-5.0,9,97200,1206,1356,381,958,900,166,102400,90900,21400,7860,230,4.1,0,0,48.3,77777,9,999999999,70,0.1440,0,88,999.000,999.0,99.0 +1977,4,17,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,-3.3,10,97000,1093,1356,383,862,873,155,90300,87800,19300,5230,320,2.1,0,0,48.3,77777,9,999999999,70,0.1440,0,88,999.000,999.0,99.0 +1977,4,17,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,-2.8,10,97000,914,1356,387,703,822,137,71800,81900,16400,3310,210,3.1,0,0,56.3,77777,9,999999999,70,0.1440,0,88,999.000,999.0,99.0 +1977,4,17,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,-3.9,9,96900,683,1356,388,485,727,110,50300,71900,13900,2370,270,3.6,0,0,56.3,77777,9,999999999,70,0.1440,0,88,999.000,999.0,99.0 +1977,4,17,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,-3.3,9,96900,415,1356,386,254,543,74,24900,48200,10100,1390,270,4.1,0,0,64.4,77777,9,999999999,70,0.1440,0,88,999.000,999.0,99.0 +1977,4,17,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,-3.9,10,96900,131,1322,380,47,156,34,5200,8200,4400,610,270,3.6,0,0,72.4,77777,9,999999999,70,0.1440,0,88,999.000,999.0,99.0 +1977,4,17,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,-3.3,12,96900,0,0,369,0,0,0,0,0,0,0,220,2.6,0,0,72.4,77777,9,999999999,70,0.1440,0,88,999.000,999.0,99.0 +1977,4,17,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,0.0,17,97000,0,0,361,0,0,0,0,0,0,0,200,2.6,0,0,64.4,77777,9,999999999,90,0.1440,0,88,999.000,999.0,99.0 +1977,4,17,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,-1.1,17,97000,0,0,354,0,0,0,0,0,0,0,230,2.6,0,0,56.3,77777,9,999999999,80,0.1440,0,88,999.000,999.0,99.0 +1977,4,17,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,-0.6,19,97000,0,0,349,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,80,0.1440,0,88,999.000,999.0,99.0 +1977,4,17,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,-2.2,18,97000,0,0,345,0,0,0,0,0,0,0,260,3.1,0,0,56.3,77777,9,999999999,80,0.1440,0,88,999.000,999.0,99.0 +1977,4,18,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,0.6,23,97000,0,0,343,0,0,0,0,0,0,0,310,3.1,0,0,56.3,77777,9,999999999,90,0.0780,0,88,999.000,999.0,99.0 +1977,4,18,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,-0.6,22,97000,0,0,339,0,0,0,0,0,0,0,150,1.5,0,0,56.3,77777,9,999999999,90,0.0780,0,88,999.000,999.0,99.0 +1977,4,18,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,1.1,30,97000,0,0,328,0,0,0,0,0,0,0,100,3.1,0,0,56.3,77777,9,999999999,100,0.0780,0,88,999.000,999.0,99.0 +1977,4,18,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,1.1,33,97000,0,0,321,0,0,0,0,0,0,0,80,3.6,0,0,56.3,77777,9,999999999,100,0.0780,0,88,999.000,999.0,99.0 +1977,4,18,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,0.0,31,97000,0,0,317,0,0,0,0,0,0,0,90,5.2,0,0,56.3,77777,9,999999999,90,0.0780,0,88,999.000,999.0,99.0 +1977,4,18,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,0.0,34,97000,1,102,312,1,1,1,0,0,0,0,90,4.6,0,0,72.4,77777,9,999999999,90,0.0780,0,88,999.000,999.0,99.0 +1977,4,18,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,-0.6,29,97100,158,1355,319,74,331,29,6900,20000,4600,520,90,5.7,0,0,64.4,77777,9,999999999,90,0.0780,0,88,999.000,999.0,99.0 +1977,4,18,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,-0.6,24,97100,442,1355,332,272,691,57,29300,63000,8800,1150,80,5.2,0,0,64.4,77777,9,999999999,80,0.0780,0,88,999.000,999.0,99.0 +1977,4,18,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,0.6,22,97100,707,1355,348,512,831,80,54600,82200,11600,1820,100,4.1,0,0,64.4,77777,9,999999999,90,0.0780,0,88,999.000,999.0,99.0 +1977,4,18,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,0.0,17,97000,934,1355,361,713,903,99,75000,89900,12800,2350,140,4.1,0,0,64.4,77777,9,999999999,90,0.0780,0,88,999.000,999.0,99.0 +1977,4,18,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,0.6,16,97000,1108,1355,372,877,931,118,90800,93200,14500,3600,130,4.1,1,0,56.3,77777,9,999999999,90,0.0780,0,88,999.000,999.0,99.0 +1977,4,18,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,-1.7,12,96900,1215,1355,385,998,946,128,100500,94800,15300,5340,130,3.1,2,1,64.4,77777,9,999999999,80,0.0780,0,88,999.000,999.0,99.0 +1977,4,18,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,-3.3,10,96800,1249,1355,397,789,447,371,83700,46700,40500,22950,110,4.6,7,3,72.4,77777,9,999999999,70,0.0780,0,88,999.000,999.0,99.0 +1977,4,18,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,-2.8,10,96700,1208,1355,407,937,832,155,95700,84300,20400,7520,110,5.2,9,4,72.4,77777,9,999999999,70,0.0780,0,88,999.000,999.0,99.0 +1977,4,18,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,-5.0,8,96600,1095,1355,401,792,635,280,82400,63500,30900,9890,120,4.1,9,3,72.4,77777,9,999999999,60,0.0780,0,88,999.000,999.0,99.0 +1977,4,18,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34.4,0.0,11,96500,916,1355,416,692,775,149,71700,78800,18300,4030,220,6.2,9,3,56.3,77777,9,999999999,90,0.0780,0,88,999.000,999.0,99.0 +1977,4,18,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,-1.1,11,96400,685,1355,412,442,530,175,46800,53200,19800,3720,270,6.7,9,4,56.3,77777,9,999999999,80,0.0780,0,88,999.000,999.0,99.0 +1977,4,18,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,-1.7,11,96400,418,1355,415,197,205,136,21500,18800,15700,3050,240,7.7,10,6,56.3,7620,9,999999999,80,0.0780,0,88,999.000,999.0,99.0 +1977,4,18,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,-2.2,11,96400,134,1344,402,51,106,37,5100,5300,4500,680,250,8.2,10,5,48.3,77777,9,999999999,70,0.0780,0,88,999.000,999.0,99.0 +1977,4,18,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,-2.2,13,96500,0,0,390,0,0,0,0,0,0,0,240,9.3,9,4,48.3,77777,9,999999999,80,0.0780,0,88,999.000,999.0,99.0 +1977,4,18,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,-1.1,15,96600,0,0,392,0,0,0,0,0,0,0,240,4.6,9,6,48.3,7620,9,999999999,80,0.0780,0,88,999.000,999.0,99.0 +1977,4,18,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,0.0,17,96600,0,0,376,0,0,0,0,0,0,0,250,5.2,8,3,48.3,77777,9,999999999,90,0.0780,0,88,999.000,999.0,99.0 +1977,4,18,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,0.0,18,96700,0,0,370,0,0,0,0,0,0,0,280,3.1,6,2,48.3,77777,9,999999999,90,0.0780,0,88,999.000,999.0,99.0 +1977,4,18,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,0.0,19,96700,0,0,359,0,0,0,0,0,0,0,270,2.1,5,1,48.3,77777,9,999999999,90,0.0780,0,88,999.000,999.0,99.0 +1977,4,19,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,1.1,22,96700,0,0,360,0,0,0,0,0,0,0,110,2.6,9,2,48.3,77777,9,999999999,90,0.1450,0,88,999.000,999.0,99.0 +1977,4,19,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,0.6,26,96700,0,0,355,0,0,0,0,0,0,0,70,3.1,10,5,48.3,77777,9,999999999,90,0.1450,0,88,999.000,999.0,99.0 +1977,4,19,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,-1.1,23,96700,0,0,344,0,0,0,0,0,0,0,120,2.1,8,2,48.3,77777,9,999999999,80,0.1450,0,88,999.000,999.0,99.0 +1977,4,19,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,-2.2,22,96700,0,0,333,0,0,0,0,0,0,0,70,2.6,4,1,48.3,77777,9,999999999,80,0.1450,0,88,999.000,999.0,99.0 +1977,4,19,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,-2.2,26,96700,0,0,328,0,0,0,0,0,0,0,60,4.1,4,2,56.3,77777,9,999999999,80,0.1450,0,88,999.000,999.0,99.0 +1977,4,19,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,-1.7,28,96800,1,124,326,0,0,0,0,0,0,0,40,2.6,2,2,72.4,77777,9,999999999,80,0.1450,0,88,999.000,999.0,99.0 +1977,4,19,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,0.0,31,96800,164,1355,323,58,184,38,6300,10600,5000,680,110,4.1,1,1,72.4,77777,9,999999999,90,0.1450,0,88,999.000,999.0,99.0 +1977,4,19,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,-1.7,22,96800,447,1355,330,275,566,79,27600,51300,10600,1500,100,4.1,0,0,56.3,77777,9,999999999,80,0.1450,0,88,999.000,999.0,99.0 +1977,4,19,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,-0.6,21,96900,712,1355,344,512,732,114,52700,72900,14400,2510,60,1.5,0,0,56.3,77777,9,999999999,90,0.1450,0,88,999.000,999.0,99.0 +1977,4,19,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,-2.2,16,96900,938,1355,350,711,826,140,74100,82500,16800,3510,350,2.1,0,0,56.3,77777,9,999999999,70,0.1450,0,88,999.000,999.0,99.0 +1977,4,19,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,-1.1,16,96900,1111,1355,359,866,871,158,91800,87700,19700,5580,300,3.6,0,0,56.3,77777,9,999999999,80,0.1450,0,88,999.000,999.0,99.0 +1977,4,19,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,-0.6,16,96800,1218,1355,365,967,893,167,102800,90200,21500,8320,220,4.1,0,0,56.3,77777,9,999999999,90,0.1450,0,88,999.000,999.0,99.0 +1977,4,19,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,-0.6,15,96800,1252,1355,368,997,903,171,106800,91200,22200,9870,270,6.7,0,0,56.3,77777,9,999999999,80,0.1450,0,88,999.000,999.0,99.0 +1977,4,19,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,1.1,17,96700,1211,1355,385,947,855,179,99100,86000,22100,8540,280,6.2,2,2,56.3,77777,9,999999999,100,0.1450,0,88,999.000,999.0,99.0 +1977,4,19,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,0.6,16,96700,1097,1355,398,612,241,415,66600,25600,45900,15230,260,7.7,6,6,48.3,3350,9,999999999,90,0.1450,0,88,999.000,999.0,99.0 +1977,4,19,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,0.6,16,96600,918,1355,394,515,214,375,56200,22500,41000,11050,270,7.2,6,5,48.3,3660,9,999999999,90,0.1450,0,88,999.000,999.0,99.0 +1977,4,19,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,0.6,15,96600,688,1355,394,462,590,166,49400,59300,19300,3520,240,6.2,4,4,56.3,77777,9,999999999,90,0.1450,0,88,999.000,999.0,99.0 +1977,4,19,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,-5.0,11,96600,421,1355,374,199,297,109,21500,27200,13000,2140,280,5.7,2,2,56.3,77777,9,999999999,60,0.1450,0,88,999.000,999.0,99.0 +1977,4,19,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,-12.2,7,96600,138,1355,351,58,166,34,5300,8600,4400,610,260,8.8,1,1,24.1,77777,9,999999999,40,0.1450,0,88,999.000,999.0,99.0 +1977,4,19,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,-13.3,7,96700,0,11,331,0,0,0,0,0,0,0,250,6.2,0,0,48.3,77777,9,999999999,40,0.1450,0,88,999.000,999.0,99.0 +1977,4,19,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,-12.2,9,96700,0,0,327,0,0,0,0,0,0,0,240,5.2,0,0,48.3,77777,9,999999999,40,0.1450,0,88,999.000,999.0,99.0 +1977,4,19,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,-10.6,11,96800,0,0,324,0,0,0,0,0,0,0,260,5.2,0,0,48.3,77777,9,999999999,50,0.1450,0,88,999.000,999.0,99.0 +1977,4,19,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,-10.0,12,96800,0,0,318,0,0,0,0,0,0,0,260,5.7,0,0,48.3,77777,9,999999999,50,0.1450,0,88,999.000,999.0,99.0 +1977,4,19,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,-8.3,15,96900,0,0,315,0,0,0,0,0,0,0,240,3.6,0,0,48.3,77777,9,999999999,50,0.1450,0,88,999.000,999.0,99.0 +1977,4,20,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,-7.8,17,96900,0,0,311,0,0,0,0,0,0,0,240,3.1,0,0,56.3,77777,9,999999999,50,0.1140,0,88,999.000,999.0,99.0 +1977,4,20,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,-7.8,18,96900,0,0,306,0,0,0,0,0,0,0,260,3.1,0,0,56.3,77777,9,999999999,50,0.1140,0,88,999.000,999.0,99.0 +1977,4,20,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,-8.3,18,97000,0,0,303,0,0,0,0,0,0,0,230,4.6,0,0,56.3,77777,9,999999999,50,0.1140,0,88,999.000,999.0,99.0 +1977,4,20,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,-8.3,18,97000,0,0,303,0,0,0,0,0,0,0,250,5.2,0,0,56.3,77777,9,999999999,50,0.1140,0,88,999.000,999.0,99.0 +1977,4,20,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,-6.7,21,97100,0,0,303,0,0,0,0,0,0,0,250,5.2,0,0,56.3,77777,9,999999999,60,0.1140,0,88,999.000,999.0,99.0 +1977,4,20,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,-8.3,20,97100,2,169,296,1,1,1,0,0,0,0,220,3.1,0,0,72.4,77777,9,999999999,50,0.1140,0,88,999.000,999.0,99.0 +1977,4,20,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,-10.0,16,97200,169,1354,301,76,271,35,7000,16700,4900,610,190,2.6,0,0,64.4,77777,9,999999999,50,0.1140,0,88,999.000,999.0,99.0 +1977,4,20,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,-10.6,13,97300,452,1354,312,268,636,70,29600,58200,10100,1360,230,3.1,0,0,56.3,77777,9,999999999,50,0.1140,0,88,999.000,999.0,99.0 +1977,4,20,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,-5.0,17,97300,716,1354,329,508,788,100,53700,77400,12700,2100,50,2.1,0,0,48.3,77777,9,999999999,60,0.1140,0,88,999.000,999.0,99.0 +1977,4,20,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,-3.3,17,97300,942,1354,341,710,865,122,76500,87000,15800,3240,290,3.1,0,0,48.3,77777,9,999999999,70,0.1140,0,88,999.000,999.0,99.0 +1977,4,20,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,-3.9,14,97300,1114,1354,348,873,908,137,90900,90700,16100,3890,220,3.6,0,0,56.3,77777,9,999999999,70,0.1140,0,88,999.000,999.0,99.0 +1977,4,20,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,-7.2,10,97300,1220,1354,349,977,940,146,101900,94100,16800,5910,250,5.2,0,0,56.3,77777,9,999999999,50,0.1140,0,88,999.000,999.0,99.0 +1977,4,20,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,-5.6,11,97200,1254,1354,359,1024,941,149,104600,94200,17100,7050,230,5.2,0,0,56.3,77777,9,999999999,60,0.1140,0,88,999.000,999.0,99.0 +1977,4,20,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,-10.6,7,97200,1213,1354,357,985,937,146,101100,93800,16800,5710,290,7.2,0,0,64.4,77777,9,999999999,50,0.1140,0,88,999.000,999.0,99.0 +1977,4,20,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,-14.4,5,97100,1099,1354,354,888,920,136,90800,91900,16000,3710,280,5.2,0,0,64.4,77777,9,999999999,40,0.1140,0,88,999.000,999.0,99.0 +1977,4,20,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,-22.2,3,97100,921,1354,341,725,881,120,75900,88400,15600,3100,270,4.1,0,0,64.4,77777,9,999999999,30,0.1140,0,88,999.000,999.0,99.0 +1977,4,20,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,-16.7,4,97100,690,1354,351,495,795,97,52100,77800,12400,2000,290,4.1,0,0,48.3,77777,9,999999999,30,0.1140,0,88,999.000,999.0,99.0 +1977,4,20,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,-18.3,4,97100,423,1354,349,263,623,67,27400,55900,9900,1290,230,6.2,0,0,48.3,77777,9,999999999,30,0.1140,0,88,999.000,999.0,99.0 +1977,4,20,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,-12.2,6,97100,141,1354,350,55,226,32,5800,11900,4600,570,230,6.7,0,0,48.3,77777,9,999999999,40,0.1140,0,88,999.000,999.0,99.0 +1977,4,20,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,-12.2,8,97200,0,34,337,0,0,0,0,0,0,0,240,4.6,0,0,48.3,77777,9,999999999,40,0.1140,0,88,999.000,999.0,99.0 +1977,4,20,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,-14.4,7,97200,0,0,327,0,0,0,0,0,0,0,240,4.1,0,0,48.3,77777,9,999999999,40,0.1140,0,88,999.000,999.0,99.0 +1977,4,20,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,-13.9,8,97300,0,0,322,0,0,0,0,0,0,0,240,4.1,0,0,48.3,77777,9,999999999,40,0.1140,0,88,999.000,999.0,99.0 +1977,4,20,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,-10.6,11,97400,0,0,319,0,0,0,0,0,0,0,260,3.6,0,0,48.3,77777,9,999999999,40,0.1140,0,88,999.000,999.0,99.0 +1977,4,20,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,-12.2,9,97500,0,0,322,0,0,0,0,0,0,0,330,2.6,0,0,48.3,77777,9,999999999,40,0.1140,0,88,999.000,999.0,99.0 +1977,4,21,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,-13.3,9,97500,0,0,314,0,0,0,0,0,0,0,290,2.6,0,0,48.3,77777,9,999999999,40,0.0380,0,88,999.000,999.0,99.0 +1977,4,21,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,-8.9,17,97500,0,0,305,0,0,0,0,0,0,0,80,3.1,0,0,48.3,77777,9,999999999,50,0.0380,0,88,999.000,999.0,99.0 +1977,4,21,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,-8.3,19,97600,0,0,298,0,0,0,0,0,0,0,100,1.5,0,0,48.3,77777,9,999999999,50,0.0380,0,88,999.000,999.0,99.0 +1977,4,21,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,-8.9,19,97600,0,0,295,0,0,0,0,0,0,0,100,3.1,0,0,48.3,77777,9,999999999,50,0.0380,0,88,999.000,999.0,99.0 +1977,4,21,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,-9.4,19,97700,0,0,293,0,0,0,0,0,0,0,100,3.6,0,0,48.3,77777,9,999999999,50,0.0380,0,88,999.000,999.0,99.0 +1977,4,21,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,-10.6,18,97700,2,192,289,6,17,2,0,0,0,0,80,4.1,0,0,80.5,77777,9,999999999,50,0.0380,0,88,999.000,999.0,99.0 +1977,4,21,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,-9.4,18,97800,174,1353,295,85,503,23,9200,36000,4600,500,100,4.1,0,0,64.4,77777,9,999999999,50,0.0380,0,88,999.000,999.0,99.0 +1977,4,21,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,-8.3,16,97900,456,1353,310,293,800,42,33000,73700,8100,1040,110,5.2,0,0,64.4,77777,9,999999999,50,0.0380,0,88,999.000,999.0,99.0 +1977,4,21,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,-11.7,11,97900,720,1353,316,544,921,60,57900,90400,9800,1520,110,4.1,0,0,64.4,77777,9,999999999,40,0.0380,0,88,999.000,999.0,99.0 +1977,4,21,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,-16.1,6,97900,945,1353,324,749,988,74,80100,98600,11000,2110,110,4.1,0,0,64.4,77777,9,999999999,30,0.0380,0,88,999.000,999.0,99.0 +1977,4,21,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,-13.9,6,98000,1117,1353,337,913,1012,83,95900,101500,11900,3030,120,3.6,0,0,56.3,77777,9,999999999,40,0.0380,0,88,999.000,999.0,99.0 +1977,4,21,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,-13.9,6,97900,1223,1353,347,1016,1027,89,105900,103200,12400,4330,140,3.1,0,0,56.3,77777,9,999999999,40,0.0380,0,88,999.000,999.0,99.0 +1977,4,21,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,-13.3,5,97900,1256,1353,356,1054,1031,91,109100,103600,12600,5050,270,3.1,0,0,56.3,77777,9,999999999,40,0.0380,0,88,999.000,999.0,99.0 +1977,4,21,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,-17.8,4,97800,1215,1353,352,1017,1034,88,105900,103900,12400,4170,310,2.6,0,0,72.4,77777,9,999999999,30,0.0380,0,88,999.000,999.0,99.0 +1977,4,21,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,-20.0,3,97800,1101,1353,354,899,1016,83,95000,101900,11900,2930,220,4.1,0,0,72.4,77777,9,999999999,30,0.0380,0,88,999.000,999.0,99.0 +1977,4,21,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,-18.3,4,97700,923,1353,359,732,962,78,76800,95900,11300,2110,230,2.1,1,0,72.4,77777,9,999999999,30,0.0380,0,88,999.000,999.0,99.0 +1977,4,21,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,-17.2,4,97700,693,1353,358,502,723,134,52500,71100,16100,2830,90,2.6,5,0,72.4,77777,9,999999999,30,0.0380,0,88,999.000,999.0,99.0 +1977,4,21,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,-15.0,4,97600,426,1353,359,264,560,98,27900,49300,12300,1750,290,3.1,7,0,72.4,77777,9,999999999,30,0.0380,0,88,999.000,999.0,99.0 +1977,4,21,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,-13.3,5,97600,144,1353,370,50,90,46,6000,5100,5400,960,280,2.6,9,2,72.4,77777,9,999999999,40,0.0380,0,88,999.000,999.0,99.0 +1977,4,21,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,-13.9,5,97700,0,34,361,0,0,0,0,0,0,0,250,1.5,6,2,56.3,77777,9,999999999,30,0.0380,0,88,999.000,999.0,99.0 +1977,4,21,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,-9.4,9,97700,0,0,350,0,0,0,0,0,0,0,120,1.5,6,1,48.3,77777,9,999999999,50,0.0380,0,88,999.000,999.0,99.0 +1977,4,21,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,-9.4,10,97700,0,0,336,0,0,0,0,0,0,0,100,2.1,4,0,48.3,77777,9,999999999,50,0.0380,0,88,999.000,999.0,99.0 +1977,4,21,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,-6.1,15,97700,0,0,327,0,0,0,0,0,0,0,120,1.0,2,0,48.3,77777,9,999999999,60,0.0380,0,88,999.000,999.0,99.0 +1977,4,21,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,-7.2,15,97800,0,0,324,0,0,0,0,0,0,0,110,3.1,2,0,48.3,77777,9,999999999,60,0.0380,0,88,999.000,999.0,99.0 +1977,4,22,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,-7.2,17,97800,0,0,324,0,0,0,0,0,0,0,120,2.6,4,2,48.3,77777,9,999999999,60,0.0980,0,88,999.000,999.0,99.0 +1977,4,22,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,-8.3,16,97700,0,0,331,0,0,0,0,0,0,0,150,2.6,8,5,48.3,7620,9,999999999,50,0.0980,0,88,999.000,999.0,99.0 +1977,4,22,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,-7.8,17,97700,0,0,339,0,0,0,0,0,0,0,0,0.0,10,8,48.3,7620,9,999999999,50,0.0980,0,88,999.000,999.0,99.0 +1977,4,22,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,-8.3,17,97800,0,0,338,0,0,0,0,0,0,0,80,2.1,10,8,48.3,7620,9,999999999,50,0.0980,0,88,999.000,999.0,99.0 +1977,4,22,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,-5.6,21,97800,0,0,334,0,0,0,0,0,0,0,90,2.1,9,7,48.3,7620,9,999999999,60,0.0980,0,88,999.000,999.0,99.0 +1977,4,22,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,-6.7,20,97800,3,214,326,2,0,2,0,0,0,0,100,3.1,10,5,56.3,77777,9,999999999,60,0.1090,0,88,999.000,999.0,99.0 +1977,4,22,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,-6.7,19,97900,179,1352,335,67,116,48,6700,6800,5800,900,90,2.6,10,7,56.3,7620,9,999999999,60,0.0980,0,88,999.000,999.0,99.0 +1977,4,22,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,-5.6,18,97900,461,1352,346,219,229,145,23500,21600,16100,3010,100,2.6,10,7,64.4,7620,9,999999999,60,0.0980,0,88,999.000,999.0,99.0 +1977,4,22,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,-10.0,11,97900,724,1352,349,414,348,227,44300,36400,24700,5320,80,3.6,10,7,64.4,7620,9,999999999,50,0.0980,0,88,999.000,999.0,99.0 +1977,4,22,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,-7.8,10,98000,949,1352,369,611,473,281,64500,48900,30100,8000,100,2.6,10,4,56.3,77777,9,999999999,60,0.0980,0,88,999.000,999.0,99.0 +1977,4,22,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,-11.1,6,97900,1120,1352,378,820,612,315,87800,63800,34800,12580,40,3.6,10,5,56.3,77777,9,999999999,40,0.0980,0,88,999.000,999.0,99.0 +1977,4,22,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,-16.7,4,97900,1225,1352,388,779,453,369,83100,47300,40100,20840,60,3.1,10,7,64.4,7620,9,999999999,30,0.0980,0,88,999.000,999.0,99.0 +1977,4,22,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,-11.7,5,97800,1259,1352,411,837,487,379,88900,50900,41400,24820,80,5.2,10,8,64.4,7620,9,999999999,40,0.0980,0,88,999.000,999.0,99.0 +1977,4,22,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.9,-11.1,5,97700,1217,1352,427,869,448,436,91500,48600,47600,21890,120,4.1,10,9,64.4,7620,9,999999999,40,0.0980,0,88,999.000,999.0,99.0 +1977,4,22,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34.4,-12.8,4,97600,1103,1352,407,748,562,290,80400,58700,32500,11040,150,4.6,10,6,64.4,7620,9,999999999,40,0.0980,0,88,999.000,999.0,99.0 +1977,4,22,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.9,-12.8,4,97600,925,1352,436,554,178,397,55900,18700,43100,11790,130,3.1,10,10,56.3,7620,9,999999999,40,0.0980,0,88,999.000,999.0,99.0 +1977,4,22,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,-10.6,5,97500,695,1352,425,240,7,236,27000,600,26700,8970,100,2.6,10,9,56.3,7620,9,999999999,40,0.0980,0,88,999.000,999.0,99.0 +1977,4,22,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,-12.2,5,97500,429,1352,434,113,31,102,12300,2800,11400,2830,80,1.5,10,10,56.3,4570,9,999999999,40,0.0980,0,88,999.000,999.0,99.0 +1977,4,22,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,-9.4,6,97500,147,1352,421,33,9,32,3600,600,3600,790,0,0.0,10,9,56.3,4570,9,999999999,50,0.1090,0,88,999.000,999.0,99.0 +1977,4,22,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,-8.9,7,97500,0,56,413,0,0,0,0,0,0,0,20,3.1,10,9,48.3,4880,9,999999999,50,0.0980,0,88,999.000,999.0,99.0 +1977,4,22,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,-11.1,6,97500,0,0,417,0,0,0,0,0,0,0,20,3.6,10,10,48.3,7620,9,999999999,40,0.0980,0,88,999.000,999.0,99.0 +1977,4,22,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,-12.8,6,97500,0,0,409,0,0,0,0,0,0,0,30,1.5,10,10,48.3,7620,9,999999999,40,0.0980,0,88,999.000,999.0,99.0 +1977,4,22,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,-4.4,13,97500,0,0,406,0,0,0,0,0,0,0,260,3.1,10,10,48.3,7620,9,999999999,70,0.0980,0,88,999.000,999.0,99.0 +1977,4,22,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,-2.2,16,97500,0,0,404,0,0,0,0,0,0,0,250,2.1,10,10,40.2,5490,9,999999999,80,0.0980,0,88,999.000,999.0,99.0 +1977,4,23,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,-2.8,16,97500,0,0,400,0,0,0,0,0,0,0,220,2.6,10,10,40.2,5490,9,999999999,70,0.0980,0,88,999.000,999.0,99.0 +1977,4,23,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,-2.8,17,97500,0,0,394,0,0,0,0,0,0,0,0,0.0,10,10,48.3,5490,9,999999999,70,0.0980,0,88,999.000,999.0,99.0 +1977,4,23,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,-3.3,17,97500,0,0,382,0,0,0,0,0,0,0,110,1.5,10,9,48.3,5490,9,999999999,70,0.0980,0,88,999.000,999.0,99.0 +1977,4,23,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,-3.9,17,97500,0,0,358,0,0,0,0,0,0,0,100,5.2,10,5,48.3,77777,9,999999999,70,0.0980,0,88,999.000,999.0,99.0 +1977,4,23,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,-5.6,15,97500,0,0,353,0,0,0,0,0,0,0,90,6.2,9,5,48.3,7620,9,999999999,60,0.0980,0,88,999.000,999.0,99.0 +1977,4,23,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,-6.7,14,97800,4,237,349,0,0,0,0,0,0,0,120,3.6,9,5,72.4,7620,9,999999999,60,0.0980,0,88,999.000,999.0,99.0 +1977,4,23,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,-5.6,15,97600,184,1352,359,65,125,45,6600,7400,5600,830,0,0.0,10,6,64.4,7620,9,999999999,60,0.0980,0,88,999.000,999.0,99.0 +1977,4,23,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,-7.2,12,97600,465,1352,364,186,155,134,20400,14700,15400,3050,180,2.1,10,6,72.4,7620,9,999999999,60,0.0980,0,88,999.000,999.0,99.0 +1977,4,23,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,-8.3,8,97600,728,1352,385,319,216,203,34500,22700,22300,4670,90,4.1,10,6,72.4,7620,9,999999999,50,0.0980,0,88,999.000,999.0,99.0 +1977,4,23,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,-11.7,5,97600,952,1352,394,607,376,343,65200,40400,36700,10150,70,6.7,10,6,72.4,7620,9,999999999,40,0.0980,0,88,999.000,999.0,99.0 +1977,4,23,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,-6.7,7,97600,1123,1352,404,883,795,181,87400,79500,21100,6400,100,3.6,9,4,72.4,77777,9,999999999,60,0.0980,0,88,999.000,999.0,99.0 +1977,4,23,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34.4,-2.2,9,97600,1228,1352,420,914,513,452,95900,53400,47300,26120,110,8.8,10,5,64.4,77777,9,999999999,70,0.0980,0,88,999.000,999.0,99.0 +1977,4,23,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.0,-7.8,6,97600,1261,1352,418,883,541,375,94100,56500,41200,24880,110,6.2,10,6,64.4,7620,9,999999999,50,0.0980,0,88,999.000,999.0,99.0 +1977,4,23,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34.4,-6.1,7,97600,1219,1352,422,543,83,463,59400,8600,51600,21980,120,7.7,10,7,64.4,6100,9,999999999,60,0.0980,0,88,999.000,999.0,99.0 +1977,4,23,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.6,-6.7,6,97500,1105,1352,435,479,34,471,56900,3600,53900,18300,140,7.2,10,8,64.4,6100,9,999999999,50,0.0980,0,88,999.000,999.0,99.0 +1977,4,23,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.0,-3.3,8,97500,927,1352,446,346,1,354,40300,100,40200,13980,120,4.1,10,9,64.4,6710,9,999999999,70,0.0980,0,88,999.000,999.0,99.0 +1977,4,23,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.0,-5.0,7,97400,697,1352,443,226,1,255,28600,100,28600,9410,110,8.8,10,9,64.4,6710,9,999999999,60,0.0980,0,88,999.000,999.0,99.0 +1977,4,23,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.9,-2.8,9,97500,432,1352,441,98,1,98,11200,100,11200,3780,130,8.2,10,9,64.4,6710,9,999999999,70,0.0980,0,88,999.000,999.0,99.0 +1977,4,23,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,0.0,13,97600,150,1352,423,38,22,36,4200,1500,4000,870,130,5.7,10,8,64.4,4570,9,999999999,90,0.0720,0,88,999.000,999.0,99.0 +1977,4,23,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,-2.8,11,97600,0,79,419,0,0,0,0,0,0,0,170,5.7,10,8,48.3,4570,9,999999999,80,0.0980,0,88,999.000,999.0,99.0 +1977,4,23,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,0.0,13,97700,0,0,405,0,0,0,0,0,0,0,140,7.2,8,5,48.3,7620,9,999999999,90,0.0980,0,88,999.000,999.0,99.0 +1977,4,23,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,0.6,14,97700,0,0,418,0,0,0,0,0,0,0,150,3.6,10,8,48.3,4270,9,999999999,90,0.0980,0,88,999.000,999.0,99.0 +1977,4,23,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,2.2,17,97800,0,0,396,0,0,0,0,0,0,0,150,6.2,8,4,48.3,77777,9,999999999,100,0.0980,0,88,999.000,999.0,99.0 +1977,4,23,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,3.3,20,97800,0,0,395,0,0,0,0,0,0,0,180,5.7,8,5,48.3,7620,9,999999999,110,0.0980,0,88,999.000,999.0,99.0 +1977,4,24,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,3.3,20,97800,0,0,389,0,0,0,0,0,0,0,90,5.2,6,3,48.3,77777,9,999999999,110,0.0990,0,88,999.000,999.0,99.0 +1977,4,24,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,4.4,25,97700,0,0,375,0,0,0,0,0,0,0,90,3.1,3,2,48.3,77777,9,999999999,120,0.0990,0,88,999.000,999.0,99.0 +1977,4,24,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,4.4,27,97800,0,0,371,0,0,0,0,0,0,0,100,4.6,4,3,48.3,77777,9,999999999,120,0.0990,0,88,999.000,999.0,99.0 +1977,4,24,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,4.4,29,97800,0,0,362,0,0,0,0,0,0,0,100,3.1,2,2,48.3,77777,9,999999999,120,0.0990,0,88,999.000,999.0,99.0 +1977,4,24,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,4.4,29,97800,0,0,378,0,0,0,0,0,0,0,0,0.0,7,7,48.3,3960,9,999999999,120,0.0990,0,88,999.000,999.0,99.0 +1977,4,24,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,5.0,32,97800,5,259,377,0,0,0,0,0,0,0,110,2.6,7,7,64.4,3660,9,999999999,120,0.0990,0,88,999.000,999.0,99.0 +1977,4,24,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,5.6,31,97900,189,1351,370,83,206,55,8800,12400,7000,1050,60,3.6,3,3,64.4,77777,9,999999999,130,0.0600,0,88,999.000,999.0,99.0 +1977,4,24,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,7.8,31,97900,470,1351,387,157,116,128,18400,11100,14600,2920,70,5.2,4,4,72.4,77777,9,999999999,150,0.0990,0,88,999.000,999.0,99.0 +1977,4,24,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,8.3,28,97900,732,1351,396,498,686,127,52500,68300,15400,2810,70,6.2,3,3,72.4,77777,9,999999999,150,0.0990,0,88,999.000,999.0,99.0 +1977,4,24,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,8.3,27,97900,955,1351,401,715,828,132,75300,83100,16500,3510,80,7.7,3,3,64.4,77777,9,999999999,150,0.0990,0,88,999.000,999.0,99.0 +1977,4,24,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,7.8,24,97900,1125,1351,407,871,887,130,89500,88700,15400,3990,80,8.2,3,3,64.4,77777,9,999999999,150,0.0990,0,88,999.000,999.0,99.0 +1977,4,24,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,7.8,23,97900,1230,1351,420,767,354,437,82900,38400,47800,23080,70,7.2,6,6,64.4,3660,9,999999999,140,0.0990,0,88,999.000,999.0,99.0 +1977,4,24,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,7.8,24,97800,1263,1351,429,501,42,463,55500,4300,51400,24430,90,7.7,8,8,64.4,2740,9,999999999,150,0.0990,0,88,999.000,999.0,99.0 +1977,4,24,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,8.3,23,97800,1221,1351,436,857,623,292,89800,62800,32900,15570,60,9.3,8,8,64.4,2740,9,999999999,150,0.0990,0,88,999.000,999.0,99.0 +1977,4,24,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,7.8,23,97700,1107,1351,419,647,319,380,69700,34600,41300,14280,70,6.2,5,5,64.4,77777,9,999999999,150,0.0990,0,88,999.000,999.0,99.0 +1977,4,24,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,6.7,20,97600,929,1351,421,472,253,304,51600,27200,32900,8600,60,6.7,5,5,64.4,77777,9,999999999,130,0.0990,0,88,999.000,999.0,99.0 +1977,4,24,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,6.1,19,97600,700,1351,413,369,383,174,39400,38600,19400,3730,90,5.7,3,3,72.4,77777,9,999999999,130,0.0990,0,88,999.000,999.0,99.0 +1977,4,24,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,5.6,19,97500,434,1351,401,258,608,63,27200,55200,9400,1230,100,4.6,1,1,80.5,77777,9,999999999,120,0.0990,0,88,999.000,999.0,99.0 +1977,4,24,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,5.6,21,97500,153,1351,395,50,152,34,5400,8400,4400,600,140,3.6,1,1,80.5,77777,9,999999999,130,0.0990,0,88,999.000,999.0,99.0 +1977,4,24,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,6.1,23,97600,1,101,389,0,0,0,0,0,0,0,120,3.1,1,1,56.3,77777,9,999999999,130,0.0990,0,88,999.000,999.0,99.0 +1977,4,24,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,7.2,27,97600,0,0,375,0,0,0,0,0,0,0,120,5.2,0,0,56.3,77777,9,999999999,140,0.0990,0,88,999.000,999.0,99.0 +1977,4,24,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,7.2,30,97700,0,0,367,0,0,0,0,0,0,0,90,3.6,0,0,56.3,77777,9,999999999,140,0.0990,0,88,999.000,999.0,99.0 +1977,4,24,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,6.7,32,97700,0,0,358,0,0,0,0,0,0,0,80,4.1,0,0,56.3,77777,9,999999999,140,0.0990,0,88,999.000,999.0,99.0 +1977,4,24,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,6.7,32,97700,0,0,358,0,0,0,0,0,0,0,90,3.6,0,0,56.3,77777,9,999999999,140,0.0990,0,88,999.000,999.0,99.0 +1977,4,25,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,7.2,34,97700,0,0,356,0,0,0,0,0,0,0,100,2.6,0,0,56.3,77777,9,999999999,140,0.1790,0,88,999.000,999.0,99.0 +1977,4,25,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,6.7,32,97600,0,0,358,0,0,0,0,0,0,0,80,4.6,0,0,56.3,77777,9,999999999,140,0.1790,0,88,999.000,999.0,99.0 +1977,4,25,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,6.7,31,97600,0,0,361,0,0,0,0,0,0,0,70,5.7,0,0,56.3,77777,9,999999999,140,0.1790,0,88,999.000,999.0,99.0 +1977,4,25,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,6.7,32,97600,0,0,358,0,0,0,0,0,0,0,70,4.1,0,0,56.3,77777,9,999999999,140,0.1790,0,88,999.000,999.0,99.0 +1977,4,25,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,6.7,33,97600,0,0,356,0,0,0,0,0,0,0,70,4.1,0,0,56.3,77777,9,999999999,140,0.1790,0,88,999.000,999.0,99.0 +1977,4,25,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,6.7,41,97600,6,281,340,2,1,2,0,0,0,0,150,2.1,0,0,80.5,77777,9,999999999,140,0.1790,0,88,999.000,999.0,99.0 +1977,4,25,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,7.2,37,97700,193,1350,351,73,194,46,7700,12300,5900,830,270,2.1,0,0,64.4,77777,9,999999999,140,0.1790,0,88,999.000,999.0,99.0 +1977,4,25,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,7.8,33,97700,474,1350,362,272,522,92,28400,47800,11600,1730,250,1.5,0,0,64.4,77777,9,999999999,140,0.1790,0,88,999.000,999.0,99.0 +1977,4,25,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,7.2,26,97700,735,1350,381,500,685,132,53000,68100,15900,2920,80,4.6,0,0,64.4,77777,9,999999999,140,0.1790,0,88,999.000,999.0,99.0 +1977,4,25,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,6.7,24,97600,958,1350,383,708,765,169,75600,77800,20300,4830,60,4.1,1,0,72.4,77777,9,999999999,140,0.1790,0,88,999.000,999.0,99.0 +1977,4,25,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,6.7,22,97600,1128,1350,389,856,802,190,88900,80100,21900,6760,110,3.6,1,0,72.4,77777,9,999999999,130,0.1790,0,88,999.000,999.0,99.0 +1977,4,25,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,6.1,20,97500,1232,1350,394,947,817,202,98600,81800,23800,10500,30,3.1,1,0,72.4,77777,9,999999999,130,0.1790,0,88,999.000,999.0,99.0 +1977,4,25,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,6.1,19,97400,1265,1350,396,949,654,343,99600,65400,38200,22270,350,1.0,5,0,72.4,77777,9,999999999,130,0.1790,0,88,999.000,999.0,99.0 +1977,4,25,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.9,5.6,17,97300,1222,1350,412,934,727,273,98300,73600,31500,14790,270,5.2,8,1,72.4,77777,9,999999999,130,0.1790,0,88,999.000,999.0,99.0 +1977,4,25,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.9,4.4,16,97200,1109,1350,410,835,732,238,88400,74100,27400,8990,300,3.6,6,1,72.4,77777,9,999999999,120,0.1790,0,88,999.000,999.0,99.0 +1977,4,25,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34.4,3.9,15,97100,931,1350,412,695,714,206,72800,71600,23300,5480,250,3.1,6,1,72.4,77777,9,999999999,110,0.1790,0,88,999.000,999.0,99.0 +1977,4,25,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34.4,3.9,15,97100,702,1350,412,478,638,151,49900,62500,17400,3150,250,4.1,4,1,72.4,77777,9,999999999,110,0.1790,0,88,999.000,999.0,99.0 +1977,4,25,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,3.9,16,97000,437,1350,407,250,479,92,26300,43500,12200,1710,250,3.6,2,1,72.4,77777,9,999999999,110,0.1790,0,88,999.000,999.0,99.0 +1977,4,25,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,3.3,15,97000,156,1350,403,48,119,39,5600,6300,4800,710,330,3.6,2,1,64.4,77777,9,999999999,110,0.1790,0,88,999.000,999.0,99.0 +1977,4,25,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,5.0,19,97100,1,101,400,0,0,0,0,0,0,0,270,2.6,1,1,48.3,77777,9,999999999,120,0.1790,0,88,999.000,999.0,99.0 +1977,4,25,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,5.6,22,97100,0,0,389,0,0,0,0,0,0,0,220,1.5,1,1,48.3,77777,9,999999999,130,0.1790,0,88,999.000,999.0,99.0 +1977,4,25,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,6.1,24,97100,0,0,384,0,0,0,0,0,0,0,30,2.1,1,1,40.2,77777,9,999999999,130,0.1790,0,88,999.000,999.0,99.0 +1977,4,25,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,5.6,24,97200,0,0,373,0,0,0,0,0,0,0,300,2.6,0,0,40.2,77777,9,999999999,120,0.1790,0,88,999.000,999.0,99.0 +1977,4,25,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,5.6,29,97200,0,0,360,0,0,0,0,0,0,0,110,3.6,0,0,40.2,77777,9,999999999,130,0.1790,0,88,999.000,999.0,99.0 +1977,4,26,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,6.1,30,97200,0,0,360,0,0,0,0,0,0,0,130,2.1,0,0,40.2,77777,9,999999999,130,0.0990,0,88,999.000,999.0,99.0 +1977,4,26,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,6.7,32,97200,0,0,358,0,0,0,0,0,0,0,90,2.1,0,0,48.3,77777,9,999999999,140,0.0990,0,88,999.000,999.0,99.0 +1977,4,26,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,7.2,37,97200,0,0,351,0,0,0,0,0,0,0,120,3.6,0,0,48.3,77777,9,999999999,140,0.0990,0,88,999.000,999.0,99.0 +1977,4,26,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,6.7,38,97200,0,0,345,0,0,0,0,0,0,0,110,3.6,0,0,48.3,77777,9,999999999,140,0.0990,0,88,999.000,999.0,99.0 +1977,4,26,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,5.0,34,97200,0,0,343,0,0,0,0,0,0,0,120,3.6,0,0,48.3,77777,9,999999999,120,0.0990,0,88,999.000,999.0,99.0 +1977,4,26,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,5.0,35,97200,7,304,340,5,8,3,0,0,0,0,110,4.1,0,0,56.3,77777,9,999999999,120,0.0990,0,88,999.000,999.0,99.0 +1977,4,26,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,4.4,30,97300,198,1349,348,88,330,41,9100,22000,5900,720,120,3.6,2,0,40.2,77777,9,999999999,120,0.0990,0,88,999.000,999.0,99.0 +1977,4,26,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,5.0,28,97300,478,1349,359,279,491,122,30900,45600,14700,2340,110,5.2,5,0,48.3,77777,9,999999999,120,0.0990,0,88,999.000,999.0,99.0 +1977,4,26,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,5.0,23,97300,739,1349,372,508,694,131,53700,69100,15800,2910,110,4.1,5,0,56.3,77777,9,999999999,120,0.0990,0,88,999.000,999.0,99.0 +1977,4,26,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,4.4,20,97300,961,1349,380,712,817,127,74900,82200,16200,3470,80,4.1,2,0,56.3,77777,9,999999999,110,0.0990,0,88,999.000,999.0,99.0 +1977,4,26,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,5.6,19,97300,1131,1349,393,860,679,307,90800,67700,33900,11980,120,4.1,7,0,48.3,77777,9,999999999,120,0.0990,0,88,999.000,999.0,99.0 +1977,4,26,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,4.4,17,97200,1235,1349,397,964,888,156,99100,88900,17600,6670,90,2.6,2,0,48.3,77777,9,999999999,120,0.0990,0,88,999.000,999.0,99.0 +1977,4,26,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34.4,2.8,14,97100,1267,1349,403,990,860,179,104400,86800,22800,11350,160,4.6,4,0,48.3,77777,9,999999999,110,0.0990,0,88,999.000,999.0,99.0 +1977,4,26,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.6,2.8,13,97000,1224,1349,417,954,799,227,101800,81600,27600,12580,190,3.1,9,1,64.4,77777,9,999999999,110,0.0990,0,88,999.000,999.0,99.0 +1977,4,26,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.1,2.2,12,96900,1110,1349,419,840,655,303,90200,68300,33800,11850,310,5.2,9,1,64.4,77777,9,999999999,100,0.0990,0,88,999.000,999.0,99.0 +1977,4,26,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.7,3.3,12,96900,933,1349,424,695,733,192,73300,73900,22100,5180,260,5.7,9,1,64.4,77777,9,999999999,100,0.0990,0,88,999.000,999.0,99.0 +1977,4,26,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.1,3.9,13,96900,704,1349,422,471,481,217,48500,48300,23200,4790,310,3.6,9,1,64.4,77777,9,999999999,110,0.0990,0,88,999.000,999.0,99.0 +1977,4,26,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.0,1.1,12,96800,440,1349,417,244,371,127,25500,33600,14600,2450,310,4.1,10,2,64.4,77777,9,999999999,100,0.0990,0,88,999.000,999.0,99.0 +1977,4,26,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.9,0.6,12,96800,160,1349,421,65,90,54,6900,5400,6300,1130,280,4.1,10,5,64.4,77777,9,999999999,90,0.0950,0,88,999.000,999.0,99.0 +1977,4,26,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,2.8,14,96800,1,124,421,1,0,1,0,0,0,0,320,2.6,10,5,48.3,77777,9,999999999,100,0.0950,0,88,999.000,999.0,99.0 +1977,4,26,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,2.2,17,96900,0,0,392,0,0,0,0,0,0,0,220,3.1,9,2,48.3,77777,9,999999999,100,0.0990,0,88,999.000,999.0,99.0 +1977,4,26,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,5.0,23,96900,0,0,382,0,0,0,0,0,0,0,220,2.1,8,1,48.3,77777,9,999999999,120,0.0990,0,88,999.000,999.0,99.0 +1977,4,26,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,3.9,22,96900,0,0,383,0,0,0,0,0,0,0,240,3.6,10,2,48.3,77777,9,999999999,110,0.0990,0,88,999.000,999.0,99.0 +1977,4,26,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,3.3,21,97000,0,0,377,0,0,0,0,0,0,0,260,2.6,9,1,48.3,77777,9,999999999,110,0.0990,0,88,999.000,999.0,99.0 +1977,4,27,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,3.3,21,97000,0,0,386,0,0,0,0,0,0,0,290,3.1,9,3,48.3,77777,9,999999999,110,0.1000,0,88,999.000,999.0,99.0 +1977,4,27,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,3.9,25,97000,0,0,376,0,0,0,0,0,0,0,240,1.5,9,3,48.3,77777,9,999999999,110,0.1000,0,88,999.000,999.0,99.0 +1977,4,27,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,3.3,25,97000,0,0,412,0,0,0,0,0,0,0,0,0.0,10,10,48.3,7620,9,999999999,110,0.1000,0,88,999.000,999.0,99.0 +1977,4,27,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,4.4,28,97000,0,0,396,0,0,0,0,0,0,0,100,3.6,10,9,48.3,7620,9,999999999,120,0.1000,0,88,999.000,999.0,99.0 +1977,4,27,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,5.0,33,97000,0,0,363,0,0,0,0,0,0,0,100,3.6,8,4,48.3,77777,9,999999999,120,0.1000,0,88,999.000,999.0,99.0 +1977,4,27,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,4.4,33,97000,8,326,360,6,6,5,0,0,0,0,100,3.1,8,4,72.4,77777,9,999999999,120,0.0650,0,88,999.000,999.0,99.0 +1977,4,27,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,4.4,31,97100,203,1349,356,80,79,68,8600,5400,7800,1440,100,3.6,10,2,64.4,77777,9,999999999,120,0.1000,0,88,999.000,999.0,99.0 +1977,4,27,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,4.4,27,97200,482,1349,371,244,340,124,25600,31700,14300,2390,110,5.2,10,3,64.4,77777,9,999999999,120,0.1000,0,88,999.000,999.0,99.0 +1977,4,27,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,4.4,22,97200,742,1349,391,509,640,132,50900,63800,15700,2940,100,5.2,10,4,64.4,77777,9,999999999,120,0.1000,0,88,999.000,999.0,99.0 +1977,4,27,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,5.6,21,97200,964,1349,407,590,421,289,62100,43600,30900,8470,130,4.6,10,5,64.4,77777,9,999999999,120,0.0650,0,88,999.000,999.0,99.0 +1977,4,27,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,5.6,20,97200,1133,1349,413,808,571,326,85900,59600,35800,13610,140,4.1,10,5,64.4,77777,9,999999999,130,0.1000,0,88,999.000,999.0,99.0 +1977,4,27,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,4.4,17,97100,1237,1349,424,892,627,318,93300,62900,35500,18210,180,1.5,10,6,64.4,7620,9,999999999,120,0.1000,0,88,999.000,999.0,99.0 +1977,4,27,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.9,3.3,15,97000,1268,1349,429,812,401,428,88500,43600,47400,26590,160,5.2,10,6,64.4,7620,9,999999999,110,0.1000,0,88,999.000,999.0,99.0 +1977,4,27,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34.4,3.3,14,97000,1226,1349,444,707,316,417,77100,34300,45900,21730,220,7.7,10,8,64.4,7620,9,999999999,110,0.1000,0,88,999.000,999.0,99.0 +1977,4,27,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.6,1.1,11,96900,1112,1349,431,702,371,396,76100,40200,42900,15180,170,6.2,10,5,64.4,77777,9,999999999,90,0.1000,0,88,999.000,999.0,99.0 +1977,4,27,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.1,2.8,12,96900,935,1349,446,535,188,406,57800,19700,44100,12200,200,6.7,10,7,56.3,7620,9,999999999,100,0.1000,0,88,999.000,999.0,99.0 +1977,4,27,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.0,0.0,11,96900,706,1349,442,349,334,180,38600,34900,20300,4020,200,7.7,10,8,64.4,6710,9,999999999,90,0.1000,0,88,999.000,999.0,99.0 +1977,4,27,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,2.2,14,96900,442,1349,455,126,11,125,14400,700,14200,4540,270,10.3,10,10,11.3,6710,9,999999999,100,0.1000,0,88,999.000,999.0,99.0 +1977,4,27,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,1.7,15,96900,163,1349,432,29,14,27,3200,1000,3000,700,270,7.7,10,9,32.2,6710,9,999999999,100,0.0650,0,88,999.000,999.0,99.0 +1977,4,27,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,0.0,15,97000,1,146,411,0,0,0,0,0,0,0,270,6.7,10,8,32.2,7620,9,999999999,90,0.1000,0,88,999.000,999.0,99.0 +1977,4,27,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,-2.8,12,97100,0,0,404,0,0,0,0,0,0,0,290,5.2,10,8,40.2,7620,9,999999999,70,0.1000,0,88,999.000,999.0,99.0 +1977,4,27,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,-1.7,15,97200,0,0,380,0,0,0,0,0,0,0,320,4.1,8,4,48.3,77777,9,999999999,80,0.1000,0,88,999.000,999.0,99.0 +1977,4,27,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,-1.1,17,97200,0,0,372,0,0,0,0,0,0,0,10,2.6,7,3,48.3,77777,9,999999999,80,0.1000,0,88,999.000,999.0,99.0 +1977,4,27,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,-2.8,15,97300,0,0,367,0,0,0,0,0,0,0,80,2.1,3,3,48.3,77777,9,999999999,70,0.1000,0,88,999.000,999.0,99.0 +1977,4,28,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,0.6,22,97300,0,0,355,0,0,0,0,0,0,0,70,3.6,1,1,48.3,77777,9,999999999,90,0.1180,0,88,999.000,999.0,99.0 +1977,4,28,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,-0.6,21,97300,0,0,350,0,0,0,0,0,0,0,110,4.6,1,1,48.3,77777,9,999999999,90,0.1180,0,88,999.000,999.0,99.0 +1977,4,28,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,-1.7,20,97300,0,0,337,0,0,0,0,0,0,0,110,2.6,0,0,48.3,77777,9,999999999,80,0.1180,0,88,999.000,999.0,99.0 +1977,4,28,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,1.1,29,97300,0,0,331,0,0,0,0,0,0,0,260,2.1,0,0,48.3,77777,9,999999999,100,0.1180,0,88,999.000,999.0,99.0 +1977,4,28,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,0.6,27,97400,0,0,330,0,0,0,0,0,0,0,0,0.0,0,0,48.3,77777,9,999999999,90,0.1180,0,88,999.000,999.0,99.0 +1977,4,28,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,0.6,29,97400,9,348,325,6,7,5,0,0,0,0,0,0.0,0,0,64.4,77777,9,999999999,90,0.1180,0,88,999.000,999.0,99.0 +1977,4,28,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,0.0,25,97500,207,1348,332,91,327,42,9400,22200,6000,740,0,0.0,0,0,64.4,77777,9,999999999,90,0.1180,0,88,999.000,999.0,99.0 +1977,4,28,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,-3.9,15,97500,486,1348,345,302,648,75,32400,60400,10600,1480,90,2.6,0,0,64.4,77777,9,999999999,70,0.1180,0,88,999.000,999.0,99.0 +1977,4,28,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,-3.3,15,97600,746,1348,351,541,790,104,56400,77900,13100,2230,80,3.1,0,0,64.4,77777,9,999999999,70,0.1180,0,88,999.000,999.0,99.0 +1977,4,28,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,0.0,16,97600,967,1348,366,734,859,126,78500,86500,16300,3490,120,4.6,0,0,64.4,77777,9,999999999,90,0.1180,0,88,999.000,999.0,99.0 +1977,4,28,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,1.1,17,97500,1135,1348,373,915,896,141,92000,89600,16400,4270,190,3.6,0,0,80.5,77777,9,999999999,100,0.1180,0,88,999.000,999.0,99.0 +1977,4,28,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,0.0,15,97500,1239,1348,374,1002,920,150,102000,92100,17100,6710,150,4.1,0,0,80.5,77777,9,999999999,90,0.1180,0,88,999.000,999.0,99.0 +1977,4,28,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,-2.8,11,97400,1270,1348,382,1020,930,152,105300,93100,17300,8060,170,5.2,0,0,80.5,77777,9,999999999,80,0.1180,0,88,999.000,999.0,99.0 +1977,4,28,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,-3.3,10,97400,1227,1348,383,993,925,149,101600,92600,17100,6330,150,5.7,0,0,80.5,77777,9,999999999,70,0.1180,0,88,999.000,999.0,99.0 +1977,4,28,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,-1.7,11,97300,1114,1348,389,884,898,140,90600,89700,16300,3970,200,4.6,0,0,80.5,77777,9,999999999,80,0.1180,0,88,999.000,999.0,99.0 +1977,4,28,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.9,-0.6,11,97200,937,1348,396,727,853,124,75600,85700,15900,3270,270,6.7,0,0,80.5,77777,9,999999999,80,0.1180,0,88,999.000,999.0,99.0 +1977,4,28,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,-1.7,11,97200,709,1348,389,505,771,100,52500,75700,12600,2090,280,6.7,0,0,80.5,77777,9,999999999,80,0.1180,0,88,999.000,999.0,99.0 +1977,4,28,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,-3.3,10,97200,445,1348,381,276,616,70,28600,56200,10100,1350,310,6.7,0,0,80.5,77777,9,999999999,70,0.1180,0,88,999.000,999.0,99.0 +1977,4,28,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,-3.3,11,97200,166,1348,375,66,255,35,7000,14800,5200,620,310,6.7,0,0,80.5,77777,9,999999999,70,0.1180,0,88,999.000,999.0,99.0 +1977,4,28,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,-0.6,15,97300,2,168,371,2,1,1,0,0,0,0,310,5.2,0,0,56.3,77777,9,999999999,90,0.1180,0,88,999.000,999.0,99.0 +1977,4,28,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,-0.6,16,97400,0,0,365,0,0,0,0,0,0,0,280,4.1,0,0,56.3,77777,9,999999999,90,0.1180,0,88,999.000,999.0,99.0 +1977,4,28,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,0.6,19,97400,0,0,359,0,0,0,0,0,0,0,290,3.6,0,0,56.3,77777,9,999999999,90,0.1180,0,88,999.000,999.0,99.0 +1977,4,28,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,1.1,22,97400,0,0,351,0,0,0,0,0,0,0,250,3.1,0,0,56.3,77777,9,999999999,100,0.1180,0,88,999.000,999.0,99.0 +1977,4,28,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,2.2,23,97500,0,0,352,0,0,0,0,0,0,0,270,2.6,0,0,56.3,77777,9,999999999,100,0.1180,0,88,999.000,999.0,99.0 +1977,4,29,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,3.3,26,97500,0,0,351,0,0,0,0,0,0,0,340,2.1,0,0,48.3,77777,9,999999999,110,0.1190,0,88,999.000,999.0,99.0 +1977,4,29,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,2.8,28,97500,0,0,343,0,0,0,0,0,0,0,100,3.1,0,0,48.3,77777,9,999999999,110,0.1190,0,88,999.000,999.0,99.0 +1977,4,29,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,3.3,32,97500,0,0,336,0,0,0,0,0,0,0,100,3.6,0,0,48.3,77777,9,999999999,110,0.1190,0,88,999.000,999.0,99.0 +1977,4,29,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,2.2,32,97500,0,0,329,0,0,0,0,0,0,0,100,4.1,0,0,48.3,77777,9,999999999,100,0.1190,0,88,999.000,999.0,99.0 +1977,4,29,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,2.8,34,97500,0,0,328,0,0,0,0,0,0,0,90,5.2,0,0,64.4,77777,9,999999999,110,0.1190,0,88,999.000,999.0,99.0 +1977,4,29,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,1.7,33,97600,10,370,324,6,7,5,0,0,0,0,90,4.1,0,0,64.4,77777,9,999999999,100,0.1190,0,88,999.000,999.0,99.0 +1977,4,29,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,1.7,32,97700,211,1347,327,102,330,43,9600,22700,6100,760,100,4.1,0,0,64.4,77777,9,999999999,100,0.1190,0,88,999.000,999.0,99.0 +1977,4,29,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,1.1,24,97700,490,1347,344,305,639,76,32400,59700,10600,1500,120,4.1,0,0,56.3,77777,9,999999999,100,0.1190,0,88,999.000,999.0,99.0 +1977,4,29,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,0.6,21,97700,749,1347,351,545,783,105,56300,77300,13200,2260,110,3.1,0,0,56.3,77777,9,999999999,90,0.1190,0,88,999.000,999.0,99.0 +1977,4,29,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,1.1,18,97700,970,1347,367,744,854,128,78500,85900,16500,3550,90,2.1,0,0,56.3,77777,9,999999999,100,0.1190,0,88,999.000,999.0,99.0 +1977,4,29,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,1.7,18,97700,1138,1347,371,904,896,142,92300,89600,16500,4330,180,2.6,0,0,56.3,77777,9,999999999,100,0.1190,0,88,999.000,999.0,99.0 +1977,4,29,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,-1.7,13,97600,1241,1347,375,1000,921,151,102300,92200,17200,6830,150,3.1,0,0,72.4,77777,9,999999999,80,0.1190,0,88,999.000,999.0,99.0 +1977,4,29,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,-2.2,12,97600,1272,1347,377,1027,928,153,105300,92900,17400,8210,210,4.1,0,0,72.4,77777,9,999999999,80,0.1190,0,88,999.000,999.0,99.0 +1977,4,29,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,-3.3,10,97500,1229,1347,381,991,923,150,101600,92400,17100,6420,10,2.1,0,0,80.5,77777,9,999999999,70,0.1190,0,88,999.000,999.0,99.0 +1977,4,29,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,-0.6,12,97400,1115,1347,387,882,896,141,90700,89500,16400,4010,240,2.1,0,0,80.5,77777,9,999999999,80,0.1190,0,88,999.000,999.0,99.0 +1977,4,29,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,-2.8,10,97300,939,1347,390,724,842,131,75300,84400,16300,3400,310,4.1,1,0,72.4,77777,9,999999999,80,0.1190,0,88,999.000,999.0,99.0 +1977,4,29,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,-1.7,11,97200,711,1347,401,461,523,188,48900,52800,21000,4100,270,3.6,7,2,72.4,77777,9,999999999,80,0.1190,0,88,999.000,999.0,99.0 +1977,4,29,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,0.0,13,97200,448,1347,395,273,496,111,28900,45300,13800,2100,270,3.1,9,1,72.4,77777,9,999999999,90,0.1190,0,88,999.000,999.0,99.0 +1977,4,29,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,-3.3,10,97200,169,1347,394,58,48,52,6300,3400,5900,1200,290,4.6,10,3,72.4,77777,9,999999999,70,0.0500,0,88,999.000,999.0,99.0 +1977,4,29,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,-3.3,11,97200,2,168,392,3,4,2,0,0,0,0,330,2.6,9,3,56.3,77777,9,999999999,70,0.0500,0,88,999.000,999.0,99.0 +1977,4,29,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,-0.6,15,97300,0,0,380,0,0,0,0,0,0,0,260,4.1,8,2,48.3,77777,9,999999999,80,0.1190,0,88,999.000,999.0,99.0 +1977,4,29,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,0.0,17,97300,0,0,373,0,0,0,0,0,0,0,270,5.7,10,2,48.3,77777,9,999999999,90,0.1190,0,88,999.000,999.0,99.0 +1977,4,29,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,1.1,20,97300,0,0,357,0,0,0,0,0,0,0,260,2.1,4,0,48.3,77777,9,999999999,90,0.1190,0,88,999.000,999.0,99.0 +1977,4,29,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,1.1,22,97400,0,0,349,0,0,0,0,0,0,0,220,2.6,0,0,48.3,77777,9,999999999,90,0.1190,0,88,999.000,999.0,99.0 +1977,4,30,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,1.1,23,97400,0,0,346,0,0,0,0,0,0,0,0,0.0,0,0,48.3,77777,9,999999999,90,0.0900,0,88,999.000,999.0,99.0 +1977,4,30,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,1.1,24,97400,0,0,344,0,0,0,0,0,0,0,0,0.0,0,0,48.3,77777,9,999999999,100,0.0900,0,88,999.000,999.0,99.0 +1977,4,30,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,1.1,28,97300,0,0,334,0,0,0,0,0,0,0,100,4.1,0,0,48.3,77777,9,999999999,100,0.0900,0,88,999.000,999.0,99.0 +1977,4,30,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,2.8,33,97400,0,0,330,0,0,0,0,0,0,0,110,3.6,0,0,48.3,77777,9,999999999,110,0.0900,0,88,999.000,999.0,99.0 +1977,4,30,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,2.2,33,97400,0,0,327,0,0,0,0,0,0,0,80,4.1,0,0,48.3,77777,9,999999999,100,0.0900,0,88,999.000,999.0,99.0 +1977,4,30,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,0.6,30,97500,11,415,323,8,18,6,0,0,0,0,80,4.1,0,0,64.4,77777,9,999999999,90,0.0900,0,88,999.000,999.0,99.0 +1977,4,30,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,0.6,28,97500,216,1347,328,107,407,38,10600,28500,6100,690,70,5.2,0,0,64.4,77777,9,999999999,90,0.0900,0,88,999.000,999.0,99.0 +1977,4,30,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,0.6,24,97500,494,1347,340,314,699,66,33400,65200,9500,1320,100,5.2,0,0,72.4,77777,9,999999999,90,0.0900,0,88,999.000,999.0,99.0 +1977,4,30,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,0.6,20,97500,752,1347,353,557,817,96,58100,81000,12800,2150,110,4.6,1,0,72.4,77777,9,999999999,90,0.0900,0,88,999.000,999.0,99.0 +1977,4,30,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,1.7,18,97500,973,1347,384,713,783,154,77100,80100,19100,4580,210,2.1,8,3,72.4,77777,9,999999999,100,0.0900,0,88,999.000,999.0,99.0 +1977,4,30,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,0.0,15,97500,1140,1347,391,862,806,157,88800,81300,19800,6170,140,2.1,8,4,72.4,77777,9,999999999,90,0.0900,0,88,999.000,999.0,99.0 +1977,4,30,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,-2.8,11,97400,1242,1347,388,931,654,329,97300,65500,36700,19470,230,3.6,5,2,72.4,77777,9,999999999,70,0.0900,0,88,999.000,999.0,99.0 +1977,4,30,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,-2.2,11,97300,1273,1347,387,1025,943,141,106000,94500,16400,7900,230,5.2,2,1,80.5,77777,9,999999999,70,0.0900,0,88,999.000,999.0,99.0 +1977,4,30,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,-1.1,11,97200,1231,1347,402,947,813,205,98500,81300,24000,10700,250,5.7,5,2,80.5,77777,9,999999999,80,0.0900,0,88,999.000,999.0,99.0 +1977,4,30,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,-2.8,10,97100,1117,1347,397,900,910,133,91400,91000,15700,3960,240,2.1,2,1,80.5,77777,9,999999999,80,0.0900,0,88,999.000,999.0,99.0 +1977,4,30,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.9,-1.1,11,97000,941,1347,408,728,855,118,75900,86100,15600,3190,320,3.6,2,2,64.4,77777,9,999999999,80,0.0900,0,88,999.000,999.0,99.0 +1977,4,30,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,-1.7,11,97000,713,1347,412,371,309,206,39800,32300,22700,4720,360,3.6,6,6,64.4,4570,9,999999999,80,0.0900,0,88,999.000,999.0,99.0 +1977,4,30,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,-1.7,11,97000,450,1347,412,183,103,148,19700,9700,16500,3360,290,5.2,7,6,64.4,4570,9,999999999,80,0.0900,0,88,999.000,999.0,99.0 +1977,4,30,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,0.0,14,97000,172,1347,406,52,70,44,5800,4400,5200,920,270,7.2,9,6,72.4,3960,9,999999999,90,0.0840,0,88,999.000,999.0,99.0 +1977,4,30,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,0.6,15,97100,3,191,436,0,0,1,0,0,0,0,270,6.7,10,10,56.3,3960,9,999999999,90,0.0900,0,88,999.000,999.0,99.0 +1977,4,30,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,1.1,17,97200,0,0,430,0,0,0,0,0,0,0,260,6.2,10,10,56.3,3960,9,999999999,100,0.0900,0,88,999.000,999.0,99.0 +1977,4,30,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.1,-0.3,15,97200,0,0,424,0,0,0,0,0,0,0,270,5.8,10,10,48.3,3660,9,999999999,90,0.0900,0,88,999.000,999.0,99.0 +1977,4,30,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.3,-1.8,16,97200,0,0,417,0,0,0,0,0,0,0,220,5.5,10,10,48.3,3660,9,999999999,90,0.0900,0,88,999.000,999.0,99.0 +1977,4,30,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.5,-3.3,16,97300,0,0,410,0,0,0,0,0,0,0,340,5.1,10,10,40.2,3660,9,999999999,90,0.0900,0,88,999.000,999.0,99.0 +1976,5,1,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.7,-4.8,9,97400,0,0,350,0,0,0,0,0,0,0,100,4.7,0,0,56.3,77777,9,999999999,50,0.1050,0,88,999.000,999.0,99.0 +1976,5,1,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.9,-6.3,9,97400,0,0,344,0,0,0,0,0,0,0,90,4.3,0,0,56.3,77777,9,999999999,50,0.1050,0,88,999.000,999.0,99.0 +1976,5,1,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.1,-7.8,11,97500,0,0,339,0,0,0,0,0,0,0,120,4.0,0,0,56.3,77777,9,999999999,50,0.1050,0,88,999.000,999.0,99.0 +1976,5,1,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,-9.4,10,97500,0,0,333,0,0,0,0,0,0,0,90,3.6,0,0,56.3,77777,9,999999999,50,0.1050,0,88,999.000,999.0,99.0 +1976,5,1,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,-8.3,12,97500,0,0,329,0,0,0,0,0,0,0,70,3.1,0,0,56.3,77777,9,999999999,50,0.1050,0,88,999.000,999.0,99.0 +1976,5,1,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,-5.6,16,97600,13,437,328,9,12,7,0,0,0,0,30,1.5,0,0,72.4,77777,9,999999999,60,0.1180,0,88,999.000,999.0,99.0 +1976,5,1,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,-5.6,15,97600,221,1345,335,103,359,44,10500,25200,6400,780,80,1.5,0,0,72.4,77777,9,999999999,60,0.1180,0,88,999.000,999.0,99.0 +1976,5,1,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,-7.8,10,97700,498,1345,348,323,664,77,33900,62300,10800,1520,60,8.2,0,0,48.3,77777,9,999999999,50,0.1180,0,88,999.000,999.0,99.0 +1976,5,1,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,-8.3,9,97700,756,1345,355,556,800,106,57900,79000,13400,2290,90,7.7,0,0,32.2,77777,9,999999999,50,0.1180,0,88,999.000,999.0,99.0 +1976,5,1,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,-6.7,10,97700,975,1345,360,758,867,128,80000,87300,16600,3590,130,5.2,0,0,32.2,77777,9,999999999,60,0.1180,0,88,999.000,999.0,99.0 +1976,5,1,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,-2.2,13,97700,1142,1345,371,909,900,143,93100,90000,16500,4430,170,4.6,0,0,32.2,77777,9,999999999,80,0.1180,0,88,999.000,999.0,99.0 +1976,5,1,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,-1.7,12,97600,1244,1345,378,1005,922,151,102800,92300,17200,7030,110,5.2,0,0,40.2,77777,9,999999999,80,0.1180,0,88,999.000,999.0,99.0 +1976,5,1,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,-5.0,10,97600,1275,1345,373,1038,932,153,106100,93300,17400,8480,130,5.7,0,0,40.2,77777,9,999999999,70,0.1180,0,88,999.000,999.0,99.0 +1976,5,1,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,-2.2,11,97500,1232,1345,379,998,924,150,102100,92500,17100,6580,60,5.2,0,0,40.2,77777,9,999999999,70,0.1180,0,88,999.000,999.0,99.0 +1976,5,1,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,-3.9,10,97400,1119,1345,380,890,900,141,91400,89900,16400,4070,130,4.1,0,0,40.2,77777,9,999999999,70,0.1180,0,88,999.000,999.0,99.0 +1976,5,1,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,-4.4,9,97300,942,1345,382,724,854,125,76300,85800,16000,3330,70,5.2,0,0,48.3,77777,9,999999999,70,0.1180,0,88,999.000,999.0,99.0 +1976,5,1,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,-4.4,9,97300,715,1345,385,514,775,102,53400,76100,12800,2130,30,4.1,0,0,48.3,77777,9,999999999,70,0.1180,0,88,999.000,999.0,99.0 +1976,5,1,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,-3.9,9,97300,453,1345,382,281,621,72,29500,56900,10200,1400,20,3.6,0,0,48.3,77777,9,999999999,70,0.1180,0,88,999.000,999.0,99.0 +1976,5,1,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,-7.2,8,97300,176,1345,372,73,278,37,7400,17500,5100,650,20,2.1,0,0,48.3,77777,9,999999999,60,0.1180,0,88,999.000,999.0,99.0 +1976,5,1,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,-5.6,9,97300,3,213,372,2,2,2,0,0,0,0,50,2.1,0,0,48.3,77777,9,999999999,60,0.1180,0,88,999.000,999.0,99.0 +1976,5,1,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,-2.8,12,97300,0,0,368,0,0,0,0,0,0,0,40,2.6,0,0,48.3,77777,9,999999999,70,0.1050,0,88,999.000,999.0,99.0 +1976,5,1,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,-2.8,16,97300,0,0,349,0,0,0,0,0,0,0,0,0.0,0,0,48.3,77777,9,999999999,70,0.1050,0,88,999.000,999.0,99.0 +1976,5,1,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,-1.1,17,97300,0,0,354,0,0,0,0,0,0,0,10,2.1,0,0,48.3,77777,9,999999999,80,0.1050,0,88,999.000,999.0,99.0 +1976,5,1,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,-1.7,19,97300,0,0,343,0,0,0,0,0,0,0,140,2.6,0,0,48.3,77777,9,999999999,80,0.1050,0,88,999.000,999.0,99.0 +1976,5,2,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,-2.8,17,97300,0,0,341,0,0,0,0,0,0,0,150,2.1,0,0,56.3,77777,9,999999999,70,0.1060,0,88,999.000,999.0,99.0 +1976,5,2,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,-2.2,20,97200,0,0,335,0,0,0,0,0,0,0,120,2.1,0,0,56.3,77777,9,999999999,80,0.1060,0,88,999.000,999.0,99.0 +1976,5,2,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,-2.2,22,97200,0,0,330,0,0,0,0,0,0,0,120,2.1,0,0,56.3,77777,9,999999999,80,0.1060,0,88,999.000,999.0,99.0 +1976,5,2,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,-2.8,21,97200,0,0,326,0,0,0,0,0,0,0,110,1.5,0,0,56.3,77777,9,999999999,70,0.1060,0,88,999.000,999.0,99.0 +1976,5,2,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,-2.8,21,97200,0,0,326,0,0,0,0,0,0,0,120,2.1,0,0,72.4,77777,9,999999999,70,0.1060,0,88,999.000,999.0,99.0 +1976,5,2,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,-2.8,22,97200,14,459,324,14,59,7,0,0,0,0,120,2.6,0,0,80.5,77777,9,999999999,70,0.0470,0,88,999.000,999.0,99.0 +1976,5,2,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,-2.2,21,97300,225,1344,332,121,551,30,12600,41400,5700,610,110,4.6,0,0,72.4,77777,9,999999999,80,0.0470,0,88,999.000,999.0,99.0 +1976,5,2,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,-2.2,17,97300,502,1344,347,344,793,49,36400,74300,8600,1160,90,5.7,0,0,56.3,77777,9,999999999,80,0.0470,0,88,999.000,999.0,99.0 +1976,5,2,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,-2.2,14,97300,759,1344,363,574,897,67,60200,88400,10200,1660,100,7.2,0,0,64.4,77777,9,999999999,80,0.0470,0,88,999.000,999.0,99.0 +1976,5,2,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,-1.7,13,97300,978,1344,372,774,952,81,80800,95200,11500,2340,110,6.2,0,0,64.4,77777,9,999999999,80,0.0470,0,88,999.000,999.0,99.0 +1976,5,2,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,-1.7,12,97200,1144,1344,380,928,982,90,96400,98600,12300,3490,80,5.2,0,0,64.4,77777,9,999999999,80,0.0470,0,88,999.000,999.0,99.0 +1976,5,2,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,-1.7,11,97200,1246,1344,386,1021,996,96,105800,100100,12900,5210,120,5.2,0,0,64.4,77777,9,999999999,80,0.0470,0,88,999.000,999.0,99.0 +1976,5,2,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,-2.2,10,97100,1276,1344,390,1048,1000,97,108600,100500,13000,6140,120,3.1,0,0,64.4,77777,9,999999999,80,0.0470,0,88,999.000,999.0,99.0 +1976,5,2,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34.4,-3.9,8,97000,1233,1344,394,1012,998,95,105000,100300,12800,4890,190,4.1,0,0,64.4,77777,9,999999999,70,0.0470,0,88,999.000,999.0,99.0 +1976,5,2,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.0,-5.6,7,96900,1120,1344,402,863,890,121,89000,89100,14600,3870,130,4.1,3,1,64.4,77777,9,999999999,60,0.0470,0,88,999.000,999.0,99.0 +1976,5,2,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34.4,-3.9,8,96900,944,1344,401,700,810,131,73500,81200,16300,3450,330,4.6,7,1,64.4,77777,9,999999999,70,0.0470,0,88,999.000,999.0,99.0 +1976,5,2,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.0,-5.6,7,96800,718,1344,407,499,680,136,52200,67300,16200,2950,340,6.2,7,2,64.4,77777,9,999999999,60,0.0470,0,88,999.000,999.0,99.0 +1976,5,2,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.9,-5.0,8,96800,456,1344,413,228,292,129,24300,27500,14900,2610,20,3.6,10,5,64.4,77777,9,999999999,60,0.0470,0,88,999.000,999.0,99.0 +1976,5,2,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,-5.6,8,96700,179,1344,412,60,81,50,6600,5200,5900,1050,10,2.6,10,6,64.4,7620,9,999999999,60,0.0470,0,88,999.000,999.0,99.0 +1976,5,2,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,-2.2,11,96700,4,235,411,2,2,2,0,0,0,0,0,0.0,10,6,32.2,7620,9,999999999,80,0.0470,0,88,999.000,999.0,99.0 +1976,5,2,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,-1.1,13,96900,0,0,401,0,0,0,0,0,0,0,250,5.7,10,6,48.3,7620,9,999999999,80,0.1060,0,88,999.000,999.0,99.0 +1976,5,2,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,-5.6,10,96900,0,0,378,0,0,0,0,0,0,0,240,6.2,6,2,48.3,77777,9,999999999,60,0.1060,0,88,999.000,999.0,99.0 +1976,5,2,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,-3.3,13,97000,0,0,394,0,0,0,0,0,0,0,330,2.1,10,8,48.3,7620,9,999999999,70,0.1060,0,88,999.000,999.0,99.0 +1976,5,2,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,-2.8,13,97000,0,0,387,0,0,0,0,0,0,0,340,2.1,10,6,48.3,7620,9,999999999,70,0.1060,0,88,999.000,999.0,99.0 +1976,5,3,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,-1.1,18,97000,0,0,366,0,0,0,0,0,0,0,100,4.6,9,4,56.3,77777,9,999999999,80,0.1060,0,88,999.000,999.0,99.0 +1976,5,3,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,-0.6,21,97000,0,0,362,0,0,0,0,0,0,0,120,2.6,9,4,56.3,77777,9,999999999,90,0.1060,0,88,999.000,999.0,99.0 +1976,5,3,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,0.6,24,97000,0,0,374,0,0,0,0,0,0,0,110,3.1,10,8,56.3,7620,9,999999999,90,0.1060,0,88,999.000,999.0,99.0 +1976,5,3,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,0.0,25,97000,0,0,375,0,0,0,0,0,0,0,110,4.1,10,9,56.3,7620,9,999999999,90,0.1060,0,88,999.000,999.0,99.0 +1976,5,3,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,1.1,29,97000,0,0,354,0,0,0,0,0,0,0,90,4.6,10,6,56.3,7620,9,999999999,100,0.1060,0,88,999.000,999.0,99.0 +1976,5,3,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,0.0,26,97000,16,482,344,9,5,8,0,0,0,0,90,4.6,7,3,72.4,77777,9,999999999,90,0.1090,0,88,999.000,999.0,99.0 +1976,5,3,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,0.0,25,97100,229,1344,341,102,312,49,10800,21700,7100,880,120,3.1,3,1,72.4,77777,9,999999999,90,0.1090,0,88,999.000,999.0,99.0 +1976,5,3,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,-1.1,18,97100,505,1344,355,301,572,87,31500,53600,11300,1700,110,5.2,1,1,48.3,77777,9,999999999,80,0.1090,0,88,999.000,999.0,99.0 +1976,5,3,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,0.6,18,97100,762,1344,376,508,622,155,52900,61800,17800,3450,110,6.7,3,2,48.3,77777,9,999999999,90,0.1090,0,88,999.000,999.0,99.0 +1976,5,3,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,0.6,15,97100,980,1344,385,725,823,124,76900,83000,16200,3560,150,6.2,1,1,48.3,77777,9,999999999,90,0.1090,0,88,999.000,999.0,99.0 +1976,5,3,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,0.6,13,97100,1146,1344,406,873,766,219,92900,78100,26100,9410,130,7.2,5,3,56.3,77777,9,999999999,90,0.1090,0,88,999.000,999.0,99.0 +1976,5,3,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,2.2,14,97000,1248,1344,417,766,422,374,81800,44100,40800,24100,130,9.8,7,5,48.3,7620,9,999999999,100,0.1090,0,88,999.000,999.0,99.0 +1976,5,3,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,3.3,15,97000,1278,1344,430,850,379,489,92500,41100,53300,32990,130,7.2,8,7,48.3,4270,9,999999999,110,0.1090,0,88,999.000,999.0,99.0 +1976,5,3,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.9,2.8,14,96900,1235,1344,428,700,306,419,76800,33300,46200,22950,140,7.2,7,6,56.3,4270,9,999999999,100,0.1090,0,88,999.000,999.0,99.0 +1976,5,3,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.9,1.1,12,96800,1122,1344,431,817,545,361,86000,56700,38600,14880,160,5.7,8,7,56.3,4270,9,999999999,90,0.1090,0,88,999.000,999.0,99.0 +1976,5,3,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.0,0.0,11,96700,946,1344,442,546,383,276,59600,41300,30400,7860,190,11.8,9,8,48.3,4270,9,999999999,90,0.1090,0,88,999.000,999.0,99.0 +1976,5,3,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,0.6,12,96700,720,1344,455,128,6,125,15300,400,15000,5750,200,8.8,10,10,48.3,3050,9,999999999,90,0.1090,0,88,999.000,999.0,99.0 +1976,5,3,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,2.8,17,96700,459,1344,443,113,9,111,13000,600,12800,4270,300,6.7,10,10,40.2,3050,9,999999999,110,0.1090,0,88,999.000,999.0,99.0 +1976,5,3,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,2.8,18,96800,182,1344,436,32,2,31,3600,0,3600,1140,280,6.2,10,10,32.2,3050,9,999999999,100,0.1090,0,88,999.000,999.0,99.0 +1976,5,3,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,3.3,19,97000,4,258,434,1,0,1,0,0,0,0,350,5.2,10,10,32.2,3050,9,999999999,110,0.1090,0,88,999.000,999.0,99.0 +1976,5,3,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,12.8,63,97400,0,0,397,0,0,0,0,0,0,0,0,0.0,10,10,11.3,2900,9,999999999,200,0.1060,0,88,999.000,999.0,99.0 +1976,5,3,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,13.9,70,97300,0,0,395,0,0,0,0,0,0,0,70,5.7,10,10,32.2,3050,9,999999999,209,0.1060,0,88,999.000,999.0,99.0 +1976,5,3,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,12.8,63,97400,0,0,397,0,0,0,0,0,0,0,50,3.6,10,10,32.2,3050,9,999999999,200,0.1060,0,88,999.000,999.0,99.0 +1976,5,3,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,12.8,63,97400,0,0,397,0,0,0,0,0,0,0,250,3.1,10,10,48.3,3050,9,999999999,200,0.1060,0,88,999.000,999.0,99.0 +1976,5,4,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,13.9,75,97400,0,0,389,0,0,0,0,0,0,0,30,2.6,10,10,48.3,3050,9,999999999,209,0.1070,0,88,999.000,999.0,99.0 +1976,5,4,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,13.9,75,97300,0,0,389,0,0,0,0,0,0,0,30,2.6,10,10,48.3,3050,9,999999999,209,0.1070,0,88,999.000,999.0,99.0 +1976,5,4,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,13.3,70,97300,0,0,381,0,0,0,0,0,0,0,60,3.6,10,9,56.3,5490,9,999999999,209,0.1070,0,88,999.000,999.0,99.0 +1976,5,4,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,11.1,59,97300,0,0,357,0,0,0,0,0,0,0,60,2.6,5,4,56.3,77777,9,999999999,180,0.1070,0,88,999.000,999.0,99.0 +1976,5,4,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,12.8,70,97300,0,0,388,0,0,0,0,0,0,0,270,4.6,10,10,56.3,3350,9,999999999,200,0.1070,0,88,999.000,999.0,99.0 +1976,5,4,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,12.8,73,97300,17,504,385,6,0,6,0,0,0,0,310,3.6,10,10,64.4,2900,9,999999999,200,0.0570,0,88,999.000,999.0,99.0 +1976,5,4,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,13.3,75,97400,233,1343,386,38,2,37,4300,0,4300,1410,180,6.2,10,10,24.1,1680,9,999999999,209,0.0570,0,88,999.000,999.0,99.0 +1976,5,4,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,12.2,78,97400,508,1343,376,123,5,121,14100,300,13900,4790,360,6.7,10,10,19.3,1520,9,999999999,190,0.0570,0,88,999.000,999.0,99.0 +1976,5,4,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,11.1,61,97400,764,1343,370,357,187,250,38900,19500,27800,6570,20,4.6,9,8,80.5,3050,9,999999999,180,0.0570,0,88,999.000,999.0,99.0 +1976,5,4,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,11.1,57,97500,983,1343,366,607,473,260,64800,49200,28700,7820,330,6.2,7,6,80.5,3050,9,999999999,180,0.0570,0,88,999.000,999.0,99.0 +1976,5,4,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,10.0,48,97400,1148,1343,367,709,522,262,77400,54700,30600,11440,320,7.2,5,4,80.5,77777,9,999999999,170,0.0570,0,88,999.000,999.0,99.0 +1976,5,4,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,7.8,33,97300,1249,1343,369,768,705,112,79300,70800,13400,5970,330,6.7,1,1,80.5,77777,9,999999999,140,0.0570,0,88,999.000,999.0,99.0 +1976,5,4,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,6.7,29,97100,1279,1343,378,1003,912,133,103000,91500,15600,8020,310,8.2,2,2,80.5,77777,9,999999999,140,0.0570,0,88,999.000,999.0,99.0 +1976,5,4,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,6.7,28,97100,1236,1343,381,954,849,171,101100,85800,21900,9630,310,6.2,3,2,72.4,77777,9,999999999,140,0.0570,0,88,999.000,999.0,99.0 +1976,5,4,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,7.2,27,97000,1123,1343,412,574,200,407,63000,21300,45200,15900,270,8.8,9,8,64.4,2130,9,999999999,140,0.0570,0,88,999.000,999.0,99.0 +1976,5,4,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,6.7,38,97200,948,1343,398,166,2,165,20100,200,20000,8120,190,13.4,10,10,40.2,2440,9,999999999,140,0.0570,0,88,999.000,999.0,99.0 +1976,5,4,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,11.1,75,97500,722,1343,372,120,8,116,14400,600,14100,5410,180,6.7,10,10,8.0,1830,9,999999999,180,0.0570,0,88,999.000,999.0,99.0 +1976,5,4,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,11.7,78,97300,461,1343,373,73,0,73,8600,0,8600,3090,190,6.2,10,10,24.1,2440,9,999999999,190,0.0570,0,88,999.000,999.0,99.0 +1976,5,4,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,10.6,65,97300,185,1343,379,26,2,25,3000,0,3000,960,360,4.1,10,10,48.3,2440,9,999999999,170,0.0570,0,88,999.000,999.0,99.0 +1976,5,4,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,12.2,78,97400,5,257,376,1,0,1,0,0,0,0,100,6.2,10,10,48.3,2440,9,999999999,190,0.0570,0,88,999.000,999.0,99.0 +1976,5,4,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,11.1,72,97500,0,0,374,0,0,0,0,0,0,0,140,2.6,10,10,48.3,3660,9,999999999,180,0.1070,0,88,999.000,999.0,99.0 +1976,5,4,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,10.6,67,97400,0,0,377,0,0,0,0,0,0,0,190,1.5,10,10,48.3,2440,9,999999999,170,0.1070,0,88,999.000,999.0,99.0 +1976,5,4,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,11.1,72,97500,0,0,374,0,0,0,0,0,0,0,170,2.1,10,10,48.3,3050,9,999999999,180,0.1070,0,88,999.000,999.0,99.0 +1976,5,4,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,10.0,65,97500,0,0,366,0,0,0,0,0,0,0,190,2.1,10,9,48.3,3050,9,999999999,170,0.1070,0,88,999.000,999.0,99.0 +1976,5,5,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,10.6,70,97500,0,0,363,0,0,0,0,0,0,0,90,2.6,10,9,56.3,2740,9,999999999,170,0.1070,0,88,999.000,999.0,99.0 +1976,5,5,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,11.1,72,97400,0,0,364,0,0,0,0,0,0,0,70,3.6,10,9,56.3,2740,9,999999999,180,0.1070,0,88,999.000,999.0,99.0 +1976,5,5,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,11.1,75,97400,0,0,362,0,0,0,0,0,0,0,90,2.6,10,9,56.3,3050,9,999999999,180,0.1070,0,88,999.000,999.0,99.0 +1976,5,5,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,11.1,75,97400,0,0,336,0,0,0,0,0,0,0,90,3.1,4,3,56.3,77777,9,999999999,180,0.1070,0,88,999.000,999.0,99.0 +1976,5,5,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,11.1,78,97500,0,0,342,0,0,0,0,0,0,0,140,1.0,7,6,56.3,4880,9,999999999,180,0.1070,0,88,999.000,999.0,99.0 +1976,5,5,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,11.1,78,97500,18,526,351,13,4,12,0,0,0,0,160,1.0,10,8,56.3,3050,9,999999999,180,0.0500,0,88,999.000,999.0,99.0 +1976,5,5,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,11.7,81,97500,236,1342,359,68,49,59,7400,3800,6700,1480,120,2.1,9,9,56.3,2740,9,999999999,190,0.0500,0,88,999.000,999.0,99.0 +1976,5,5,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,11.1,70,97600,512,1342,347,312,554,101,32200,51700,12500,1930,130,2.6,5,5,40.2,77777,9,999999999,180,0.0500,0,88,999.000,999.0,99.0 +1976,5,5,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,10.0,59,97500,767,1342,340,502,718,91,53200,71600,12200,2120,110,2.6,3,1,40.2,77777,9,999999999,170,0.0500,0,88,999.000,999.0,99.0 +1976,5,5,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,10.0,55,97500,985,1342,353,724,690,218,75700,69500,24700,6390,190,2.6,8,3,32.2,77777,9,999999999,170,0.0500,0,88,999.000,999.0,99.0 +1976,5,5,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,9.4,49,97500,1150,1342,354,875,756,226,92800,77000,26700,9820,310,3.6,8,2,40.2,77777,9,999999999,160,0.0500,0,88,999.000,999.0,99.0 +1976,5,5,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,10.0,49,97500,1251,1342,358,939,792,199,98000,79500,23800,11770,180,3.1,6,2,40.2,77777,9,999999999,170,0.0500,0,88,999.000,999.0,99.0 +1976,5,5,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,9.4,46,97400,1281,1342,363,962,740,255,102600,75400,30500,19310,70,2.1,7,3,48.3,77777,9,999999999,160,0.0500,0,88,999.000,999.0,99.0 +1976,5,5,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,8.3,37,97300,1238,1342,382,1043,800,305,109400,80500,35000,18060,150,3.6,7,6,48.3,1520,9,999999999,150,0.0500,0,88,999.000,999.0,99.0 +1976,5,5,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,8.3,37,97200,1125,1342,369,776,699,189,83100,71700,23000,7740,170,3.6,4,2,48.3,77777,9,999999999,150,0.0500,0,88,999.000,999.0,99.0 +1976,5,5,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,7.2,33,97100,949,1342,359,628,768,85,65500,76600,11200,2310,170,2.1,1,0,56.3,77777,9,999999999,140,0.0500,0,88,999.000,999.0,99.0 +1976,5,5,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,7.2,33,97100,724,1342,359,531,837,80,56700,83200,11800,1860,140,3.1,2,0,56.3,77777,9,999999999,140,0.0500,0,88,999.000,999.0,99.0 +1976,5,5,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,7.2,33,97000,464,1342,359,303,733,50,32200,68200,8600,1080,100,3.1,1,0,56.3,77777,9,999999999,140,0.0500,0,88,999.000,999.0,99.0 +1976,5,5,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,7.2,34,97000,188,1342,375,72,133,54,7600,8000,6500,1020,90,3.6,10,4,56.3,77777,9,999999999,140,0.0500,0,88,999.000,999.0,99.0 +1976,5,5,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,7.8,37,97000,5,280,378,7,5,6,0,0,0,0,50,3.6,10,6,48.3,7620,9,999999999,150,0.0500,0,88,999.000,999.0,99.0 +1976,5,5,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,8.3,40,97100,0,0,387,0,0,0,0,0,0,0,50,3.6,10,8,48.3,7620,9,999999999,150,0.1070,0,88,999.000,999.0,99.0 +1976,5,5,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,10.0,48,97100,0,0,383,0,0,0,0,0,0,0,190,1.5,10,8,48.3,7620,9,999999999,170,0.1070,0,88,999.000,999.0,99.0 +1976,5,5,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,9.4,47,97100,0,0,357,0,0,0,0,0,0,0,270,4.1,10,2,48.3,77777,9,999999999,160,0.1070,0,88,999.000,999.0,99.0 +1976,5,5,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,7.2,41,97100,0,0,371,0,0,0,0,0,0,0,300,2.1,10,7,48.3,2740,9,999999999,140,0.1070,0,88,999.000,999.0,99.0 +1976,5,6,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,6.7,41,97100,0,0,368,0,0,0,0,0,0,0,300,2.6,9,7,56.3,3660,9,999999999,140,0.1070,0,88,999.000,999.0,99.0 +1976,5,6,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,6.7,42,97100,0,0,379,0,0,0,0,0,0,0,260,2.6,10,9,56.3,3050,9,999999999,140,0.1070,0,88,999.000,999.0,99.0 +1976,5,6,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,8.3,51,97000,0,0,354,0,0,0,0,0,0,0,230,3.1,8,5,56.3,7620,9,999999999,150,0.1070,0,88,999.000,999.0,99.0 +1976,5,6,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,7.8,50,97000,0,0,363,0,0,0,0,0,0,0,220,3.1,10,8,56.3,3350,9,999999999,140,0.1070,0,88,999.000,999.0,99.0 +1976,5,6,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,7.8,52,97000,0,0,343,0,0,0,0,0,0,0,200,3.1,8,3,56.3,77777,9,999999999,150,0.1070,0,88,999.000,999.0,99.0 +1976,5,6,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,7.8,52,97000,20,526,351,11,6,10,0,0,0,0,50,2.1,10,6,64.4,7620,9,999999999,150,0.0530,0,88,999.000,999.0,99.0 +1976,5,6,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,10.0,63,97100,240,1342,368,93,47,84,10100,3700,9400,1930,100,3.1,10,9,64.4,6100,9,999999999,170,0.0530,0,88,999.000,999.0,99.0 +1976,5,6,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,9.4,56,97100,515,1342,352,274,272,170,28900,26500,18700,3640,100,4.1,9,5,64.4,7620,9,999999999,160,0.0530,0,88,999.000,999.0,99.0 +1976,5,6,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,9.4,51,97100,770,1342,352,516,626,157,53800,62200,18000,3520,130,3.6,7,2,64.4,77777,9,999999999,160,0.0530,0,88,999.000,999.0,99.0 +1976,5,6,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,10.0,51,97200,987,1342,362,713,674,216,74500,67900,24500,6370,150,1.5,9,4,64.4,77777,9,999999999,170,0.0530,0,88,999.000,999.0,99.0 +1976,5,6,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,7.8,40,97200,1151,1342,383,713,323,436,77200,35000,47100,18700,0,0.0,10,8,48.3,7620,9,999999999,150,0.0530,0,88,999.000,999.0,99.0 +1976,5,6,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,7.2,33,97100,1252,1342,402,626,176,461,68800,18800,51200,25530,190,2.1,10,9,48.3,7620,9,999999999,140,0.0530,0,88,999.000,999.0,99.0 +1976,5,6,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,6.1,30,97100,1282,1342,416,487,10,478,57000,1000,56000,19780,140,4.6,10,10,64.4,7010,9,999999999,130,0.0530,0,88,999.000,999.0,99.0 +1976,5,6,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,5.6,28,97000,1239,1342,418,495,4,491,57400,400,57000,19800,180,3.1,10,10,64.4,7010,9,999999999,130,0.0530,0,88,999.000,999.0,99.0 +1976,5,6,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,4.4,23,97000,1126,1342,399,544,198,377,59900,21100,42100,14840,180,5.2,10,7,64.4,7620,9,999999999,120,0.0530,0,88,999.000,999.0,99.0 +1976,5,6,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,2.8,20,96900,951,1342,406,555,327,323,59900,35200,34900,9510,170,5.7,10,8,56.3,7010,9,999999999,110,0.0530,0,88,999.000,999.0,99.0 +1976,5,6,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,0.0,16,96900,726,1342,388,476,596,154,49400,58700,17600,3300,150,5.2,9,5,56.3,7010,9,999999999,90,0.0530,0,88,999.000,999.0,99.0 +1976,5,6,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,-1.7,14,96900,466,1342,364,298,710,52,31600,66100,8600,1120,180,5.2,1,0,56.3,77777,9,999999999,80,0.0530,0,88,999.000,999.0,99.0 +1976,5,6,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,-1.1,16,96900,191,1342,359,93,459,28,9500,32400,4900,550,170,4.6,0,0,64.4,77777,9,999999999,80,0.0530,0,88,999.000,999.0,99.0 +1976,5,6,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,1.1,22,96900,6,302,351,7,26,4,0,0,0,0,160,2.1,0,0,56.3,77777,9,999999999,100,0.0530,0,88,999.000,999.0,99.0 +1976,5,6,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,3.3,26,97000,0,0,351,0,0,0,0,0,0,0,280,5.2,0,0,48.3,77777,9,999999999,110,0.1070,0,88,999.000,999.0,99.0 +1976,5,6,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,5.0,35,97100,0,0,340,0,0,0,0,0,0,0,280,7.2,0,0,48.3,77777,9,999999999,120,0.1070,0,88,999.000,999.0,99.0 +1976,5,6,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,5.0,36,97200,0,0,338,0,0,0,0,0,0,0,310,3.6,0,0,48.3,77777,9,999999999,120,0.1070,0,88,999.000,999.0,99.0 +1976,5,6,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,5.6,39,97200,0,0,336,0,0,0,0,0,0,0,280,2.6,0,0,48.3,77777,9,999999999,130,0.1070,0,88,999.000,999.0,99.0 +1976,5,7,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,6.1,42,97200,0,0,334,0,0,0,0,0,0,0,230,3.1,0,0,56.3,77777,9,999999999,130,0.1080,0,88,999.000,999.0,99.0 +1976,5,7,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,7.8,52,97200,0,0,328,0,0,0,0,0,0,0,220,2.6,0,0,56.3,77777,9,999999999,150,0.1080,0,88,999.000,999.0,99.0 +1976,5,7,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,7.2,50,97200,0,0,328,0,0,0,0,0,0,0,260,1.0,0,0,56.3,77777,9,999999999,140,0.1080,0,88,999.000,999.0,99.0 +1976,5,7,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,7.8,54,97200,0,0,326,0,0,0,0,0,0,0,230,1.0,0,0,56.3,77777,9,999999999,150,0.1080,0,88,999.000,999.0,99.0 +1976,5,7,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,8.3,58,97200,0,0,324,0,0,0,0,0,0,0,150,1.5,0,0,56.3,77777,9,999999999,150,0.1080,0,88,999.000,999.0,99.0 +1976,5,7,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,8.3,62,97200,21,548,319,18,78,10,0,0,0,0,120,4.1,0,0,56.3,77777,9,999999999,150,0.0480,0,88,999.000,999.0,99.0 +1976,5,7,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,8.3,60,97300,244,1341,328,123,462,39,12700,34300,6500,720,110,4.1,3,1,48.3,77777,9,999999999,150,0.0480,0,88,999.000,999.0,99.0 +1976,5,7,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,7.2,49,97300,518,1341,344,360,623,119,36700,57800,14400,2210,100,5.2,7,3,64.4,77777,9,999999999,140,0.0480,0,88,999.000,999.0,99.0 +1976,5,7,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,7.2,45,97300,772,1341,358,492,461,226,51400,46900,24300,5250,140,2.1,8,6,64.4,4880,9,999999999,140,0.0480,0,88,999.000,999.0,99.0 +1976,5,7,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,7.2,38,97300,989,1341,369,582,388,296,63600,41900,32600,8990,140,5.2,10,5,64.4,77777,9,999999999,140,0.0480,0,88,999.000,999.0,99.0 +1976,5,7,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,6.1,32,97200,1153,1341,410,310,11,301,37000,1000,36100,13960,120,1.5,10,10,64.4,5490,9,999999999,130,0.0480,0,88,999.000,999.0,99.0 +1976,5,7,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,2.8,24,97200,1253,1341,408,458,37,423,50600,3800,47000,22580,210,5.2,10,10,64.4,5490,9,999999999,100,0.0480,0,88,999.000,999.0,99.0 +1976,5,7,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,-0.6,17,97100,1283,1341,412,390,5,385,46300,500,45900,17190,220,5.2,10,10,64.4,5490,9,999999999,80,0.0480,0,88,999.000,999.0,99.0 +1976,5,7,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,3.9,24,97000,1240,1341,419,457,9,449,53400,900,52600,18800,260,5.2,10,10,64.4,5490,9,999999999,110,0.0480,0,88,999.000,999.0,99.0 +1976,5,7,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,3.9,24,97000,1127,1341,407,428,98,346,47500,10500,38700,13670,270,8.8,10,9,48.3,5490,9,999999999,110,0.0480,0,88,999.000,999.0,99.0 +1976,5,7,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,4.4,26,96900,953,1341,390,504,229,341,55000,24200,37800,10480,270,11.3,10,7,48.3,6100,9,999999999,120,0.0480,0,88,999.000,999.0,99.0 +1976,5,7,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,6.1,32,97000,728,1341,410,219,10,213,25000,800,24500,8700,270,10.8,10,10,56.3,4570,9,999999999,130,0.0480,0,88,999.000,999.0,99.0 +1976,5,7,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,6.7,37,97000,469,1341,382,240,82,212,26300,7900,23500,5070,270,10.3,10,8,56.3,4880,9,999999999,140,0.0480,0,88,999.000,999.0,99.0 +1976,5,7,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,6.1,38,97100,194,1341,383,52,51,45,5800,3400,5300,950,270,9.3,9,9,56.3,4270,9,999999999,130,0.0480,0,88,999.000,999.0,99.0 +1976,5,7,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,6.1,41,97200,7,324,354,4,5,4,0,0,0,0,280,6.7,5,4,48.3,77777,9,999999999,130,0.0480,0,88,999.000,999.0,99.0 +1976,5,7,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,6.1,42,97300,0,0,361,0,0,0,0,0,0,0,320,5.2,8,7,48.3,3050,9,999999999,130,0.1080,0,88,999.000,999.0,99.0 +1976,5,7,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,9.4,58,97400,0,0,381,0,0,0,0,0,0,0,280,4.6,10,10,24.1,1980,9,999999999,160,0.1080,0,88,999.000,999.0,99.0 +1976,5,7,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,10.0,63,97500,0,0,379,0,0,0,0,0,0,0,300,2.6,10,10,32.2,1830,9,999999999,170,0.1080,0,88,999.000,999.0,99.0 +1976,5,7,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,8.9,60,97400,0,0,341,0,0,0,0,0,0,0,360,3.1,4,4,48.3,77777,9,999999999,160,0.1080,0,88,999.000,999.0,99.0 +1976,5,8,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,11.7,75,97400,0,0,342,0,0,0,0,0,0,0,220,2.6,4,4,48.3,77777,9,999999999,190,0.1080,0,88,999.000,999.0,99.0 +1976,5,8,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,10.6,70,97400,0,0,356,0,0,0,0,0,0,0,240,2.1,8,8,48.3,1980,9,999999999,170,0.1080,0,88,999.000,999.0,99.0 +1976,5,8,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,9.4,67,97400,0,0,346,0,0,0,0,0,0,0,270,2.6,7,7,48.3,1980,9,999999999,160,0.1080,0,88,999.000,999.0,99.0 +1976,5,8,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,11.1,78,97400,0,0,351,0,0,0,0,0,0,0,290,4.1,8,8,48.3,1830,9,999999999,180,0.1080,0,88,999.000,999.0,99.0 +1976,5,8,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,10.0,75,97400,0,0,354,0,0,0,0,0,0,0,290,2.6,10,9,24.1,1980,9,999999999,170,0.1080,0,88,999.000,999.0,99.0 +1976,5,8,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,10.0,75,97400,23,570,341,8,0,8,900,0,900,300,280,3.6,7,7,56.3,1830,9,999999999,170,0.2270,0,88,999.000,999.0,99.0 +1976,5,8,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,10.0,72,97500,247,1341,367,62,7,60,6900,200,6800,2080,270,3.1,10,10,72.4,1830,9,999999999,170,0.2270,0,88,999.000,999.0,99.0 +1976,5,8,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,9.4,70,97600,521,1341,357,178,20,170,19800,1600,19200,6100,280,6.2,10,9,64.4,1830,9,999999999,160,0.2270,0,88,999.000,999.0,99.0 +1976,5,8,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,8.9,60,97700,775,1341,351,330,106,269,36300,10700,30100,8410,270,3.6,8,7,56.3,2440,9,999999999,160,0.2270,0,88,999.000,999.0,99.0 +1976,5,8,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,9.4,56,97700,991,1341,339,694,676,194,73200,68500,22500,5860,290,1.0,1,1,56.3,77777,9,999999999,160,0.2270,0,88,999.000,999.0,99.0 +1976,5,8,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,8.9,51,97700,1155,1341,354,755,492,331,80700,51400,36400,15020,160,2.1,4,4,56.3,77777,9,999999999,160,0.2270,0,88,999.000,999.0,99.0 +1976,5,8,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,8.3,46,97600,1255,1341,353,926,703,267,98200,71400,31200,17530,40,2.6,2,2,48.3,77777,9,999999999,150,0.2270,0,88,999.000,999.0,99.0 +1976,5,8,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,8.3,43,97600,1284,1341,362,963,644,345,100500,64500,38600,26620,200,2.1,3,3,48.3,77777,9,999999999,150,0.2270,0,88,999.000,999.0,99.0 +1976,5,8,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,7.2,34,97500,1241,1341,372,868,608,304,91000,61200,34200,18480,260,4.1,3,3,48.3,77777,9,999999999,140,0.2270,0,88,999.000,999.0,99.0 +1976,5,8,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,7.2,36,97500,1129,1341,365,838,680,265,87800,68500,29900,10700,250,5.2,2,2,64.4,77777,9,999999999,140,0.2270,0,88,999.000,999.0,99.0 +1976,5,8,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,6.7,31,97400,954,1341,373,684,643,227,71200,64400,25200,6260,240,1.5,2,2,64.4,77777,9,999999999,140,0.2270,0,88,999.000,999.0,99.0 +1976,5,8,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,6.1,30,97400,730,1341,360,490,625,150,51000,61800,17300,3250,280,3.6,0,0,64.4,77777,9,999999999,130,0.2270,0,88,999.000,999.0,99.0 +1976,5,8,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,6.1,30,97300,471,1341,360,264,455,104,28000,42300,13100,1960,270,4.1,0,0,64.4,77777,9,999999999,130,0.2270,0,88,999.000,999.0,99.0 +1976,5,8,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,6.7,33,97400,197,1341,356,72,147,51,7700,9200,6300,950,230,5.2,0,0,64.4,77777,9,999999999,140,0.2270,0,88,999.000,999.0,99.0 +1976,5,8,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,6.7,34,97400,7,324,353,5,0,4,0,0,0,0,240,3.6,0,0,56.3,77777,9,999999999,130,0.2270,0,88,999.000,999.0,99.0 +1976,5,8,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,7.8,40,97500,0,0,349,0,0,0,0,0,0,0,260,2.6,0,0,56.3,77777,9,999999999,150,0.1080,0,88,999.000,999.0,99.0 +1976,5,8,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,7.2,39,97500,0,0,346,0,0,0,0,0,0,0,180,1.5,0,0,56.3,77777,9,999999999,140,0.1080,0,88,999.000,999.0,99.0 +1976,5,8,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,7.8,42,97500,0,0,344,0,0,0,0,0,0,0,50,2.6,0,0,56.3,77777,9,999999999,140,0.1080,0,88,999.000,999.0,99.0 +1976,5,8,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,8.9,49,97500,0,0,340,0,0,0,0,0,0,0,140,2.1,0,0,48.3,77777,9,999999999,160,0.1080,0,88,999.000,999.0,99.0 +1976,5,9,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,10.0,57,97500,0,0,336,0,0,0,0,0,0,0,130,2.1,0,0,48.3,77777,9,999999999,170,0.1090,0,88,999.000,999.0,99.0 +1976,5,9,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,8.9,54,97500,0,0,332,0,0,0,0,0,0,0,120,3.1,0,0,48.3,77777,9,999999999,160,0.1090,0,88,999.000,999.0,99.0 +1976,5,9,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,9.4,60,97500,0,0,328,0,0,0,0,0,0,0,120,2.6,0,0,48.3,77777,9,999999999,160,0.1090,0,88,999.000,999.0,99.0 +1976,5,9,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,9.4,63,97500,0,0,325,0,0,0,0,0,0,0,100,2.1,0,0,48.3,77777,9,999999999,160,0.1090,0,88,999.000,999.0,99.0 +1976,5,9,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,10.0,65,97500,0,0,326,0,0,0,0,0,0,0,130,1.5,0,0,48.3,77777,9,999999999,170,0.1090,0,88,999.000,999.0,99.0 +1976,5,9,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,9.4,67,97500,24,592,320,15,32,11,1400,800,1300,180,110,2.1,0,0,56.3,77777,9,999999999,160,0.1040,0,88,999.000,999.0,99.0 +1976,5,9,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,8.3,56,97600,250,1340,326,123,422,45,12700,31500,6900,820,120,3.6,0,0,40.2,77777,9,999999999,150,0.1040,0,88,999.000,999.0,99.0 +1976,5,9,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,8.9,51,97600,523,1340,337,338,674,74,35700,64200,10600,1500,90,4.6,0,0,40.2,77777,9,999999999,160,0.1040,0,88,999.000,999.0,99.0 +1976,5,9,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,7.2,37,97600,777,1340,351,563,797,100,59200,79300,13100,2280,100,6.7,0,0,48.3,77777,9,999999999,140,0.1040,0,88,999.000,999.0,99.0 +1976,5,9,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,6.7,33,97600,993,1340,356,762,865,120,81200,87500,16300,3570,70,4.6,0,0,48.3,77777,9,999999999,140,0.1040,0,88,999.000,999.0,99.0 +1976,5,9,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,6.1,28,97600,1156,1340,365,913,903,133,93800,90400,15700,4590,90,5.2,0,0,64.4,77777,9,999999999,130,0.1040,0,88,999.000,999.0,99.0 +1976,5,9,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,5.0,23,97500,1256,1340,380,942,856,138,96600,85800,16000,7270,150,3.6,1,1,64.4,77777,9,999999999,120,0.1040,0,88,999.000,999.0,99.0 +1976,5,9,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,3.3,20,97500,1285,1340,380,979,847,165,104800,85900,22200,12570,90,3.1,3,1,64.4,77777,9,999999999,110,0.1040,0,88,999.000,999.0,99.0 +1976,5,9,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,3.9,20,97400,1242,1340,386,953,893,124,98100,89600,14800,6290,150,4.1,1,1,64.4,77777,9,999999999,120,0.1040,0,88,999.000,999.0,99.0 +1976,5,9,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,3.9,19,97400,1130,1340,382,891,901,131,91700,90100,15500,4170,130,5.2,0,0,72.4,77777,9,999999999,110,0.1040,0,88,999.000,999.0,99.0 +1976,5,9,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,2.8,18,97300,956,1340,388,699,806,124,74000,81100,16000,3420,200,3.1,1,1,72.4,77777,9,999999999,110,0.1040,0,88,999.000,999.0,99.0 +1976,5,9,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,1.7,16,97300,732,1340,382,523,784,96,55000,77500,12600,2110,160,3.6,0,0,72.4,77777,9,999999999,100,0.1040,0,88,999.000,999.0,99.0 +1976,5,9,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,0.6,15,97200,474,1340,378,294,639,69,31100,59500,10100,1370,0,0.0,0,0,72.4,77777,9,999999999,90,0.1040,0,88,999.000,999.0,99.0 +1976,5,9,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,0.6,15,97200,200,1340,378,90,346,39,9200,23300,5800,700,220,2.6,0,0,72.4,77777,9,999999999,90,0.1040,0,88,999.000,999.0,99.0 +1976,5,9,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,1.7,18,97200,8,346,371,6,9,4,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,100,0.1040,0,88,999.000,999.0,99.0 +1976,5,9,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,3.9,22,97300,0,0,368,0,0,0,0,0,0,0,40,2.1,0,0,56.3,77777,9,999999999,110,0.1090,0,88,999.000,999.0,99.0 +1976,5,9,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,6.1,29,97300,0,0,363,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,130,0.1090,0,88,999.000,999.0,99.0 +1976,5,9,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,7.8,37,97400,0,0,354,0,0,0,0,0,0,0,230,2.1,0,0,56.3,77777,9,999999999,150,0.1090,0,88,999.000,999.0,99.0 +1976,5,9,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,7.8,37,97400,0,0,354,0,0,0,0,0,0,0,210,1.0,0,0,48.3,77777,9,999999999,150,0.1090,0,88,999.000,999.0,99.0 +1976,5,10,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,8.9,43,97400,0,0,350,0,0,0,0,0,0,0,80,2.6,0,0,48.3,77777,9,999999999,160,0.1090,0,88,999.000,999.0,99.0 +1976,5,10,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,7.8,42,97300,0,0,344,0,0,0,0,0,0,0,110,2.1,0,0,48.3,77777,9,999999999,140,0.1090,0,88,999.000,999.0,99.0 +1976,5,10,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,6.7,41,97300,0,0,340,0,0,0,0,0,0,0,110,3.1,0,0,48.3,77777,9,999999999,140,0.1090,0,88,999.000,999.0,99.0 +1976,5,10,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,8.3,52,97400,0,0,331,0,0,0,0,0,0,0,160,2.1,0,0,48.3,77777,9,999999999,150,0.1090,0,88,999.000,999.0,99.0 +1976,5,10,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,7.8,50,97400,0,0,331,0,0,0,0,0,0,0,90,2.1,0,0,64.4,77777,9,999999999,140,0.1090,0,88,999.000,999.0,99.0 +1976,5,10,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,8.3,54,97400,26,614,329,19,59,12,1600,1900,1500,210,110,3.1,0,0,56.3,77777,9,999999999,150,0.0720,0,88,999.000,999.0,99.0 +1976,5,10,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,7.8,45,97500,254,1339,339,133,503,39,14000,38000,6800,730,70,6.7,0,0,48.3,77777,9,999999999,140,0.0720,0,88,999.000,999.0,99.0 +1976,5,10,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,6.7,35,97500,526,1339,350,351,737,62,37000,70000,9500,1320,110,4.6,0,0,64.4,77777,9,999999999,130,0.0720,0,88,999.000,999.0,99.0 +1976,5,10,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,6.1,32,97500,779,1339,355,575,845,83,60000,83300,11400,1830,90,3.6,0,0,48.3,77777,9,999999999,130,0.0720,0,88,999.000,999.0,99.0 +1976,5,10,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,7.2,27,97500,994,1339,375,769,901,99,79800,90000,12800,2670,90,4.1,0,0,64.4,77777,9,999999999,140,0.0720,0,88,999.000,999.0,99.0 +1976,5,10,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,5.6,23,97500,1157,1339,379,947,892,174,99100,89700,21400,7200,100,3.6,5,0,64.4,77777,9,999999999,130,0.0720,0,88,999.000,999.0,99.0 +1976,5,10,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,5.6,20,97400,1257,1339,390,1050,899,204,109400,90100,24600,12650,40,2.6,6,0,64.4,77777,9,999999999,130,0.0720,0,88,999.000,999.0,99.0 +1976,5,10,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,3.9,17,97400,1286,1339,393,1083,908,209,113000,91000,25300,15620,210,1.5,6,0,64.4,77777,9,999999999,110,0.0720,0,88,999.000,999.0,99.0 +1976,5,10,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34.4,2.8,14,97300,1243,1339,403,1040,903,201,108500,90500,24300,11600,210,3.6,6,0,64.4,77777,9,999999999,110,0.0720,0,88,999.000,999.0,99.0 +1976,5,10,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.9,0.6,12,97200,1131,1339,397,945,877,203,97000,87300,23100,7350,120,3.1,7,0,80.5,77777,9,999999999,90,0.0720,0,88,999.000,999.0,99.0 +1976,5,10,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34.4,0.6,12,97200,957,1339,400,746,896,105,77300,89300,13300,2540,50,2.6,1,0,72.4,77777,9,999999999,90,0.0720,0,88,999.000,999.0,99.0 +1976,5,10,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34.4,-2.2,9,97100,734,1339,396,545,851,80,57100,83500,11200,1710,60,2.1,0,0,80.5,77777,9,999999999,70,0.0720,0,88,999.000,999.0,99.0 +1976,5,10,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.9,-1.7,10,97100,476,1339,394,314,723,57,33000,67400,9000,1190,350,2.1,0,0,80.5,77777,9,999999999,80,0.0720,0,88,999.000,999.0,99.0 +1976,5,10,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,1.1,13,97100,203,1339,395,98,431,34,10200,29500,5800,620,310,4.1,0,0,80.5,77777,9,999999999,100,0.0720,0,88,999.000,999.0,99.0 +1976,5,10,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,1.1,14,97200,9,368,387,9,23,5,0,0,0,0,300,3.1,0,0,80.5,77777,9,999999999,90,0.0720,0,88,999.000,999.0,99.0 +1976,5,10,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,5.0,23,97200,0,0,375,0,0,0,0,0,0,0,230,2.6,0,0,56.3,77777,9,999999999,120,0.1090,0,88,999.000,999.0,99.0 +1976,5,10,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,3.9,22,97300,0,0,371,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,120,0.1090,0,88,999.000,999.0,99.0 +1976,5,10,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,2.8,20,97300,0,0,370,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,110,0.1090,0,88,999.000,999.0,99.0 +1976,5,10,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,5.6,27,97300,0,0,365,0,0,0,0,0,0,0,110,2.1,0,0,48.3,77777,9,999999999,130,0.1090,0,88,999.000,999.0,99.0 +1976,5,11,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,4.4,27,97300,0,0,355,0,0,0,0,0,0,0,220,2.1,0,0,48.3,77777,9,999999999,120,0.1100,0,88,999.000,999.0,99.0 +1976,5,11,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,3.9,28,97300,0,0,349,0,0,0,0,0,0,0,260,1.5,0,0,48.3,77777,9,999999999,110,0.1100,0,88,999.000,999.0,99.0 +1976,5,11,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,3.9,29,97300,0,0,347,0,0,0,0,0,0,0,330,2.1,0,0,48.3,77777,9,999999999,110,0.1100,0,88,999.000,999.0,99.0 +1976,5,11,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,3.3,30,97300,0,0,341,0,0,0,0,0,0,0,330,1.5,0,0,48.3,77777,9,999999999,110,0.1100,0,88,999.000,999.0,99.0 +1976,5,11,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,5.6,38,97400,0,0,339,0,0,0,0,0,0,0,120,4.1,0,0,56.3,77777,9,999999999,130,0.1100,0,88,999.000,999.0,99.0 +1976,5,11,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,5.0,38,97400,27,636,335,13,10,12,1400,500,1300,300,110,2.6,0,0,56.3,77777,9,999999999,120,0.1730,0,88,999.000,999.0,99.0 +1976,5,11,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,5.0,35,97500,257,1339,340,116,304,58,12200,22400,7900,1050,120,3.6,0,0,56.3,77777,9,999999999,120,0.1730,0,88,999.000,999.0,99.0 +1976,5,11,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,3.9,27,97500,529,1339,352,329,580,100,34100,54700,12500,1940,110,4.6,0,0,48.3,77777,9,999999999,110,0.1730,0,88,999.000,999.0,99.0 +1976,5,11,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,3.9,23,97500,781,1339,366,555,718,136,58600,72100,16400,3170,130,4.1,0,0,48.3,77777,9,999999999,110,0.1730,0,88,999.000,999.0,99.0 +1976,5,11,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,4.4,22,97500,996,1339,374,753,792,163,80500,81000,20100,5080,80,3.6,0,0,48.3,77777,9,999999999,120,0.1730,0,88,999.000,999.0,99.0 +1976,5,11,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,4.4,20,97500,1159,1339,383,906,837,180,94600,84000,21700,7440,40,3.1,0,0,40.2,77777,9,999999999,120,0.1730,0,88,999.000,999.0,99.0 +1976,5,11,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,2.2,15,97400,1258,1339,388,1002,863,190,105400,86800,23500,12040,90,2.1,0,0,40.2,77777,9,999999999,100,0.1730,0,88,999.000,999.0,99.0 +1976,5,11,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.9,5.0,16,97300,1287,1339,404,1025,864,193,107900,87000,24100,14760,280,3.1,0,0,40.2,77777,9,999999999,120,0.1730,0,88,999.000,999.0,99.0 +1976,5,11,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.0,2.2,13,97300,1244,1339,405,990,861,189,104000,86600,23300,11120,310,3.6,0,0,56.3,77777,9,999999999,100,0.1730,0,88,999.000,999.0,99.0 +1976,5,11,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.1,-1.7,9,97200,1132,1339,406,890,841,178,92800,84300,21300,6750,300,4.6,0,0,72.4,77777,9,999999999,80,0.1730,0,88,999.000,999.0,99.0 +1976,5,11,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.7,-1.7,9,97100,959,1339,409,728,784,166,77400,79800,20100,4830,250,6.7,1,0,72.4,77777,9,999999999,80,0.1730,0,88,999.000,999.0,99.0 +1976,5,11,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.1,-2.2,9,97100,736,1339,405,522,689,143,54500,68400,16900,3140,230,3.1,2,0,80.5,77777,9,999999999,80,0.1730,0,88,999.000,999.0,99.0 +1976,5,11,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.0,-2.2,9,97000,479,1339,407,283,462,118,29700,43100,14300,2260,250,4.1,6,1,96.6,77777,9,999999999,70,0.1730,0,88,999.000,999.0,99.0 +1976,5,11,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34.4,-2.8,9,97000,206,1339,403,85,155,62,9000,9900,7400,1190,250,3.1,7,1,96.6,77777,9,999999999,70,0.1730,0,88,999.000,999.0,99.0 +1976,5,11,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,-0.6,12,97100,10,390,395,4,1,4,0,0,0,0,180,2.1,5,1,56.3,77777,9,999999999,80,0.1730,0,88,999.000,999.0,99.0 +1976,5,11,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,1.1,14,97100,0,0,387,0,0,0,0,0,0,0,120,2.1,1,0,56.3,77777,9,999999999,90,0.1100,0,88,999.000,999.0,99.0 +1976,5,11,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,3.3,19,97100,0,0,376,0,0,0,0,0,0,0,230,2.1,1,0,56.3,77777,9,999999999,110,0.1100,0,88,999.000,999.0,99.0 +1976,5,11,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,5.0,23,97200,0,0,375,0,0,0,0,0,0,0,170,1.5,0,0,56.3,77777,9,999999999,120,0.1100,0,88,999.000,999.0,99.0 +1976,5,11,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,3.9,23,97200,0,0,366,0,0,0,0,0,0,0,290,2.6,0,0,56.3,77777,9,999999999,110,0.1100,0,88,999.000,999.0,99.0 +1976,5,12,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,3.9,27,97200,0,0,352,0,0,0,0,0,0,0,230,3.1,0,0,56.3,77777,9,999999999,110,0.1100,0,88,999.000,999.0,99.0 +1976,5,12,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,3.9,26,97200,0,0,355,0,0,0,0,0,0,0,60,1.5,0,0,56.3,77777,9,999999999,110,0.1100,0,88,999.000,999.0,99.0 +1976,5,12,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,4.4,29,97200,0,0,350,0,0,0,0,0,0,0,220,1.0,0,0,56.3,77777,9,999999999,120,0.1100,0,88,999.000,999.0,99.0 +1976,5,12,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,5.6,36,97200,0,0,341,0,0,0,0,0,0,0,130,2.1,0,0,56.3,77777,9,999999999,130,0.1100,0,88,999.000,999.0,99.0 +1976,5,12,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,5.0,36,97200,0,0,338,0,0,0,0,0,0,0,110,2.6,6,0,64.4,77777,9,999999999,120,0.1100,0,88,999.000,999.0,99.0 +1976,5,12,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,5.6,39,97300,29,658,336,17,25,14,1700,900,1700,290,140,1.5,2,0,64.4,77777,9,999999999,130,0.1260,0,88,999.000,999.0,99.0 +1976,5,12,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,2.8,29,97300,260,1338,341,127,392,51,13000,29500,7300,910,150,2.1,0,0,56.3,77777,9,999999999,110,0.1260,0,88,999.000,999.0,99.0 +1976,5,12,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,3.3,25,97400,531,1338,354,340,647,84,35800,61600,11300,1680,130,3.1,0,0,48.3,77777,9,999999999,110,0.1260,0,88,999.000,999.0,99.0 +1976,5,12,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,2.2,20,97400,783,1338,366,571,781,113,59300,77300,13900,2470,160,2.6,0,0,48.3,77777,9,999999999,100,0.1260,0,88,999.000,999.0,99.0 +1976,5,12,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,2.2,17,97500,998,1338,377,765,844,135,80700,85000,17200,3930,120,2.6,0,0,48.3,77777,9,999999999,100,0.1260,0,88,999.000,999.0,99.0 +1976,5,12,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,2.8,16,97400,1160,1338,389,917,884,149,97700,89500,19900,6460,340,1.5,0,0,48.3,77777,9,999999999,110,0.1260,0,88,999.000,999.0,99.0 +1976,5,12,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.9,5.0,16,97400,1259,1338,404,1007,902,157,102900,90300,17700,8140,230,3.1,0,0,48.3,77777,9,999999999,120,0.1260,0,88,999.000,999.0,99.0 +1976,5,12,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.6,6.1,16,97300,1288,1338,414,1031,903,160,105200,90400,17900,10110,180,2.6,0,0,48.3,77777,9,999999999,130,0.1260,0,88,999.000,999.0,99.0 +1976,5,12,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.1,3.3,13,97300,1245,1338,413,996,900,156,101700,90100,17600,7480,240,2.6,0,0,64.4,77777,9,999999999,110,0.1260,0,88,999.000,999.0,99.0 +1976,5,12,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.8,5.6,14,97200,1134,1338,425,888,874,147,94500,88400,19400,5880,260,4.1,0,0,64.4,77777,9,999999999,130,0.1260,0,88,999.000,999.0,99.0 +1976,5,12,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,38.3,3.9,12,97100,960,1338,426,731,836,131,77000,84000,16600,3580,250,5.2,0,0,64.4,77777,9,999999999,110,0.1260,0,88,999.000,999.0,99.0 +1976,5,12,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.8,1.1,10,97100,738,1338,419,530,766,108,55000,75400,13300,2270,280,5.2,0,0,72.4,77777,9,999999999,90,0.1260,0,88,999.000,999.0,99.0 +1976,5,12,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,39.4,-11.7,3,97100,481,1338,408,307,640,78,32200,59500,10800,1520,30,7.2,0,0,96.6,77777,9,999999999,40,0.1260,0,88,999.000,999.0,99.0 +1976,5,12,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.2,-11.1,4,97100,208,1338,397,93,325,43,9500,22200,6100,760,30,6.7,0,0,96.6,77777,9,999999999,40,0.1260,0,88,999.000,999.0,99.0 +1976,5,12,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.0,-11.1,5,97200,11,390,386,7,8,6,0,0,0,0,50,5.7,0,0,72.4,77777,9,999999999,50,0.1260,0,88,999.000,999.0,99.0 +1976,5,12,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,-12.2,5,97300,0,0,376,0,0,0,0,0,0,0,50,6.7,0,0,64.4,77777,9,999999999,40,0.1100,0,88,999.000,999.0,99.0 +1976,5,12,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,-13.3,4,97300,0,0,372,0,0,0,0,0,0,0,60,8.2,0,0,64.4,77777,9,999999999,40,0.1100,0,88,999.000,999.0,99.0 +1976,5,12,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,-15.0,4,97400,0,0,367,0,0,0,0,0,0,0,50,8.8,0,0,64.4,77777,9,999999999,30,0.1100,0,88,999.000,999.0,99.0 +1976,5,12,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,-17.8,3,97400,0,0,357,0,0,0,0,0,0,0,70,9.3,0,0,64.4,77777,9,999999999,30,0.1100,0,88,999.000,999.0,99.0 +1976,5,13,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,-21.7,2,97400,0,0,352,0,0,0,0,0,0,0,60,9.3,0,0,64.4,77777,9,999999999,20,0.1100,0,88,999.000,999.0,99.0 +1976,5,13,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,-13.9,5,97400,0,0,355,0,0,0,0,0,0,0,360,3.1,0,0,64.4,77777,9,999999999,40,0.1100,0,88,999.000,999.0,99.0 +1976,5,13,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,-6.1,12,97500,0,0,348,0,0,0,0,0,0,0,260,2.1,0,0,64.4,77777,9,999999999,60,0.1100,0,88,999.000,999.0,99.0 +1976,5,13,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,-9.4,9,97500,0,0,346,0,0,0,0,0,0,0,0,0.0,0,0,64.4,77777,9,999999999,50,0.1100,0,88,999.000,999.0,99.0 +1976,5,13,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,-7.8,13,97500,0,0,330,0,0,0,0,0,0,0,220,2.1,0,0,96.6,77777,9,999999999,50,0.1100,0,88,999.000,999.0,99.0 +1976,5,13,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,-9.4,10,97600,30,658,333,23,111,11,1700,4700,1500,210,70,3.1,0,0,96.6,77777,9,999999999,50,0.0470,0,88,999.000,999.0,99.0 +1976,5,13,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,-7.8,11,97700,262,1337,343,152,609,32,15800,48400,6300,670,150,4.1,0,0,96.6,77777,9,999999999,50,0.0470,0,88,999.000,999.0,99.0 +1976,5,13,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,-6.1,11,97700,534,1337,355,377,815,51,39700,77200,8800,1220,130,4.6,0,0,48.3,77777,9,999999999,60,0.0470,0,88,999.000,999.0,99.0 +1976,5,13,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,-7.2,9,97800,785,1337,364,603,908,69,63200,89700,10400,1730,70,4.6,0,0,56.3,77777,9,999999999,60,0.0470,0,88,999.000,999.0,99.0 +1976,5,13,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,-8.3,7,97700,999,1337,374,803,963,83,83800,96300,11700,2470,120,3.1,0,0,64.4,77777,9,999999999,50,0.0470,0,88,999.000,999.0,99.0 +1976,5,13,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,-10.6,5,97700,1161,1337,376,960,997,92,99600,100100,12500,3780,90,3.1,0,0,64.4,77777,9,999999999,40,0.0470,0,88,999.000,999.0,99.0 +1976,5,13,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,-10.0,5,97600,1260,1337,379,1052,1012,97,109000,101700,13000,5820,140,4.1,0,0,64.4,77777,9,999999999,40,0.0470,0,88,999.000,999.0,99.0 +1976,5,13,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34.4,-5.0,8,97600,1289,1337,392,1066,1001,99,110300,100600,13100,7080,170,2.1,0,0,64.4,77777,9,999999999,70,0.0470,0,88,999.000,999.0,99.0 +1976,5,13,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.1,-7.2,6,97500,1246,1337,398,1031,1000,96,106800,100500,12900,5380,90,2.1,0,0,64.4,77777,9,999999999,60,0.0470,0,88,999.000,999.0,99.0 +1976,5,13,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.6,-9.4,5,97400,1135,1337,392,930,988,90,96700,99200,12300,3450,360,2.6,0,0,64.4,77777,9,999999999,50,0.0470,0,88,999.000,999.0,99.0 +1976,5,13,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.7,-9.4,5,97300,962,1337,397,769,957,80,80300,95600,11400,2290,330,3.6,0,0,64.4,77777,9,999999999,50,0.0470,0,88,999.000,999.0,99.0 +1976,5,13,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.7,-13.9,3,97200,740,1337,390,571,914,66,60000,89900,10200,1630,300,5.7,0,0,64.4,77777,9,999999999,30,0.0470,0,88,999.000,999.0,99.0 +1976,5,13,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.7,-12.2,4,97100,483,1337,393,336,799,48,35500,74500,8600,1130,280,3.6,0,0,72.4,77777,9,999999999,40,0.0470,0,88,999.000,999.0,99.0 +1976,5,13,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.6,-9.4,5,97100,211,1337,392,112,537,28,11600,39500,5400,570,210,3.1,0,0,72.4,77777,9,999999999,50,0.0470,0,88,999.000,999.0,99.0 +1976,5,13,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.9,-7.2,7,97100,12,412,386,13,51,7,0,0,0,0,200,2.1,0,0,72.4,77777,9,999999999,60,0.0470,0,88,999.000,999.0,99.0 +1976,5,13,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,-3.9,9,97100,0,0,382,0,0,0,0,0,0,0,90,1.5,0,0,56.3,77777,9,999999999,70,0.1100,0,88,999.000,999.0,99.0 +1976,5,13,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,-2.8,12,97100,0,0,373,0,0,0,0,0,0,0,90,3.6,0,0,56.3,77777,9,999999999,80,0.1100,0,88,999.000,999.0,99.0 +1976,5,13,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,0.0,16,97100,0,0,368,0,0,0,0,0,0,0,90,3.1,0,0,56.3,77777,9,999999999,90,0.1100,0,88,999.000,999.0,99.0 +1976,5,13,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,3.3,22,97100,0,0,365,0,0,0,0,0,0,0,100,3.6,0,0,48.3,77777,9,999999999,110,0.1100,0,88,999.000,999.0,99.0 +1976,5,14,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,2.8,24,97100,0,0,356,0,0,0,0,0,0,0,120,4.1,0,0,48.3,77777,9,999999999,110,0.1110,0,88,999.000,999.0,99.0 +1976,5,14,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,2.8,26,97100,0,0,348,0,0,0,0,0,0,0,90,4.1,0,0,48.3,77777,9,999999999,100,0.1110,0,88,999.000,999.0,99.0 +1976,5,14,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,1.1,24,97100,0,0,344,0,0,0,0,0,0,0,140,3.6,0,0,48.3,77777,9,999999999,90,0.1110,0,88,999.000,999.0,99.0 +1976,5,14,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,0.6,24,97100,0,0,340,0,0,0,0,0,0,0,100,4.1,0,0,48.3,77777,9,999999999,90,0.1110,0,88,999.000,999.0,99.0 +1976,5,14,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,0.6,25,97100,0,0,338,0,0,0,0,0,0,0,110,4.1,0,0,48.3,77777,9,999999999,90,0.1110,0,88,999.000,999.0,99.0 +1976,5,14,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,1.1,28,97100,32,680,334,20,66,13,1800,2300,1700,220,120,3.6,0,0,80.5,77777,9,999999999,100,0.0770,0,88,999.000,999.0,99.0 +1976,5,14,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,1.1,25,97200,265,1337,341,142,512,41,14800,39500,7000,770,100,3.6,0,0,80.5,77777,9,999999999,100,0.0770,0,88,999.000,999.0,99.0 +1976,5,14,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,1.1,19,97200,536,1337,362,363,743,65,38100,70800,9700,1370,130,4.6,0,0,48.3,77777,9,999999999,100,0.0770,0,88,999.000,999.0,99.0 +1976,5,14,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,2.2,18,97200,787,1337,374,588,850,87,61200,83900,11700,1870,130,4.1,0,0,48.3,77777,9,999999999,100,0.0770,0,88,999.000,999.0,99.0 +1976,5,14,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,-1.1,12,97100,1001,1337,381,788,914,103,81700,91300,13200,2750,110,4.6,0,0,40.2,77777,9,999999999,80,0.0770,0,88,999.000,999.0,99.0 +1976,5,14,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.9,-2.8,9,97100,1162,1337,393,940,948,115,97100,95000,14200,4380,110,4.6,0,0,32.2,77777,9,999999999,70,0.0770,0,88,999.000,999.0,99.0 +1976,5,14,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.6,-2.8,8,97000,1261,1337,401,1032,965,121,106300,96800,14800,6940,120,2.6,0,0,32.2,77777,9,999999999,70,0.0770,0,88,999.000,999.0,99.0 +1976,5,14,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.8,-5.0,6,96900,1290,1337,410,1064,975,123,109600,97900,14900,8520,280,1.5,0,0,40.2,77777,9,999999999,60,0.0770,0,88,999.000,999.0,99.0 +1976,5,14,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,39.4,-4.4,6,96800,1247,1337,419,1025,969,120,105600,97200,14700,6400,250,5.2,0,0,48.3,77777,9,999999999,60,0.0770,0,88,999.000,999.0,99.0 +1976,5,14,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,39.4,-5.0,6,96700,1136,1337,418,920,950,113,95200,95200,14100,3990,290,5.2,0,0,56.3,77777,9,999999999,60,0.0770,0,88,999.000,999.0,99.0 +1976,5,14,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,40.6,-3.9,6,96600,963,1337,426,756,908,101,78400,90600,13000,2550,250,5.7,0,0,72.4,77777,9,999999999,70,0.0770,0,88,999.000,999.0,99.0 +1976,5,14,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,40.0,-5.6,5,96600,742,1337,420,553,848,83,59100,84500,12100,1950,290,6.2,0,0,80.5,77777,9,999999999,60,0.0770,0,88,999.000,999.0,99.0 +1976,5,14,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,39.4,-6.7,5,96500,486,1337,416,323,727,60,33900,68000,9200,1240,290,5.7,0,0,96.6,77777,9,999999999,60,0.0770,0,88,999.000,999.0,99.0 +1976,5,14,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,38.3,-6.1,6,96500,214,1337,411,106,446,36,11100,31300,6100,660,270,4.1,0,0,96.6,77777,9,999999999,60,0.0770,0,88,999.000,999.0,99.0 +1976,5,14,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34.4,-3.3,9,96500,12,434,394,10,27,6,0,0,0,0,240,3.1,0,0,72.4,77777,9,999999999,70,0.0770,0,88,999.000,999.0,99.0 +1976,5,14,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,0.0,12,96600,0,0,391,0,0,0,0,0,0,0,250,3.1,0,0,56.3,77777,9,999999999,90,0.1110,0,88,999.000,999.0,99.0 +1976,5,14,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,0.6,13,96600,0,0,389,0,0,0,0,0,0,0,250,1.5,0,0,56.3,77777,9,999999999,90,0.1110,0,88,999.000,999.0,99.0 +1976,5,14,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,2.2,15,96600,0,0,391,0,0,0,0,0,0,0,320,3.1,0,0,56.3,77777,9,999999999,100,0.1110,0,88,999.000,999.0,99.0 +1976,5,14,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,2.8,18,96600,0,0,381,0,0,0,0,0,0,0,10,2.1,0,0,48.3,77777,9,999999999,110,0.1110,0,88,999.000,999.0,99.0 +1976,5,15,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,0.0,15,96700,0,0,374,0,0,0,0,0,0,0,0,0.0,0,0,48.3,77777,9,999999999,90,0.1110,0,88,999.000,999.0,99.0 +1976,5,15,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,4.4,26,96700,0,0,361,0,0,0,0,0,0,0,140,3.6,0,0,48.3,77777,9,999999999,120,0.1110,0,88,999.000,999.0,99.0 +1976,5,15,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,2.8,24,96700,0,0,353,0,0,0,0,0,0,0,110,4.1,0,0,48.3,77777,9,999999999,100,0.1110,0,88,999.000,999.0,99.0 +1976,5,15,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,2.2,25,96800,0,0,347,0,0,0,0,0,0,0,90,4.1,0,0,48.3,77777,9,999999999,100,0.1110,0,88,999.000,999.0,99.0 +1976,5,15,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,1.1,23,96800,0,0,346,0,0,0,0,0,0,0,80,4.6,0,0,48.3,77777,9,999999999,90,0.1110,0,88,999.000,999.0,99.0 +1976,5,15,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,-0.6,21,96900,33,702,342,19,42,14,1800,1200,1700,240,80,4.6,0,0,64.4,77777,9,999999999,80,0.1110,0,88,999.000,999.0,99.0 +1976,5,15,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,0.6,22,96900,268,1336,345,136,439,49,14100,33600,7300,890,100,4.1,0,0,48.3,77777,9,999999999,90,0.1110,0,88,999.000,999.0,99.0 +1976,5,15,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,-1.7,15,96900,538,1336,361,357,691,79,37800,66200,11100,1600,120,4.6,0,0,48.3,77777,9,999999999,80,0.1110,0,88,999.000,999.0,99.0 +1976,5,15,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,-1.7,13,97000,789,1336,372,584,808,106,61100,80300,13600,2400,130,5.2,0,0,40.2,77777,9,999999999,80,0.1110,0,88,999.000,999.0,99.0 +1976,5,15,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,-3.9,10,97000,1002,1336,380,785,877,126,83400,88600,16800,3790,140,4.1,0,0,40.2,77777,9,999999999,70,0.1110,0,88,999.000,999.0,99.0 +1976,5,15,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.9,-1.7,10,97000,1163,1336,394,932,909,139,95600,91000,16200,4860,90,3.6,0,0,40.2,77777,9,999999999,80,0.1110,0,88,999.000,999.0,99.0 +1976,5,15,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.1,-3.3,8,96900,1262,1336,403,1027,930,147,105100,93200,16900,8020,130,2.1,0,0,40.2,77777,9,999999999,70,0.1110,0,88,999.000,999.0,99.0 +1976,5,15,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.2,-1.7,9,96900,1291,1336,411,1052,933,149,107600,93500,17000,9950,250,3.1,0,0,40.2,77777,9,999999999,80,0.1110,0,88,999.000,999.0,99.0 +1976,5,15,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,38.3,-2.8,7,96800,1248,1336,416,1014,929,146,103900,93100,16800,7370,350,4.1,0,0,40.2,77777,9,999999999,70,0.1110,0,88,999.000,999.0,99.0 +1976,5,15,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,39.4,-2.2,7,96800,1137,1336,422,911,908,137,93500,90800,16000,4400,270,6.2,0,0,48.3,77777,9,999999999,70,0.1110,0,88,999.000,999.0,99.0 +1976,5,15,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,39.4,-2.8,7,96700,965,1336,422,750,868,122,79500,87500,16200,3450,270,6.7,0,0,40.2,77777,9,999999999,70,0.1110,0,88,999.000,999.0,99.0 +1976,5,15,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,39.4,-1.1,8,96700,743,1336,424,540,790,101,56500,78100,13000,2210,310,6.2,0,0,48.3,77777,9,999999999,80,0.1110,0,88,999.000,999.0,99.0 +1976,5,15,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,38.9,-6.1,5,96700,488,1336,414,316,668,73,33400,62600,10500,1450,300,6.2,0,0,56.3,77777,9,999999999,50,0.1110,0,88,999.000,999.0,99.0 +1976,5,15,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.8,-6.7,5,96700,217,1336,407,101,368,42,10400,25700,6200,750,290,5.7,0,0,56.3,77777,9,999999999,50,0.1110,0,88,999.000,999.0,99.0 +1976,5,15,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.6,-3.3,8,96700,13,457,401,9,14,7,0,0,0,0,270,5.2,0,0,48.3,77777,9,999999999,70,0.1110,0,88,999.000,999.0,99.0 +1976,5,15,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,1.1,14,96800,0,0,387,0,0,0,0,0,0,0,240,3.1,0,0,48.3,77777,9,999999999,90,0.1110,0,88,999.000,999.0,99.0 +1976,5,15,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,1.1,15,96900,0,0,384,0,0,0,0,0,0,0,250,4.1,0,0,48.3,77777,9,999999999,100,0.1110,0,88,999.000,999.0,99.0 +1976,5,15,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,1.1,15,96900,0,0,381,0,0,0,0,0,0,0,290,4.6,0,0,48.3,77777,9,999999999,90,0.1110,0,88,999.000,999.0,99.0 +1976,5,15,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,2.2,17,96900,0,0,377,0,0,0,0,0,0,0,340,3.1,0,0,48.3,77777,9,999999999,100,0.1110,0,88,999.000,999.0,99.0 +1976,5,16,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,2.8,19,97000,0,0,372,0,0,0,0,0,0,0,340,4.1,0,0,48.3,77777,9,999999999,100,0.1120,0,88,999.000,999.0,99.0 +1976,5,16,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,2.8,20,97000,0,0,370,0,0,0,0,0,0,0,310,2.1,0,0,48.3,77777,9,999999999,110,0.1120,0,88,999.000,999.0,99.0 +1976,5,16,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,4.4,26,97000,0,0,361,0,0,0,0,0,0,0,110,2.6,0,0,48.3,77777,9,999999999,120,0.1120,0,88,999.000,999.0,99.0 +1976,5,16,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,5.0,30,97000,0,0,354,0,0,0,0,0,0,0,100,2.1,0,0,48.3,77777,9,999999999,120,0.1120,0,88,999.000,999.0,99.0 +1976,5,16,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,4.4,29,97100,0,0,350,0,0,0,0,0,0,0,100,4.6,0,0,48.3,77777,9,999999999,120,0.1120,0,88,999.000,999.0,99.0 +1976,5,16,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,3.3,29,97100,35,701,343,16,15,14,1700,600,1600,290,90,5.2,0,0,48.3,77777,9,999999999,110,0.1720,0,88,999.000,999.0,99.0 +1976,5,16,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,2.8,25,97200,270,1336,351,126,328,60,13300,24800,8300,1080,90,6.2,0,0,48.3,77777,9,999999999,100,0.1720,0,88,999.000,999.0,99.0 +1976,5,16,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,2.2,21,97300,540,1336,361,340,591,101,35300,56000,12600,1980,100,5.2,0,0,48.3,77777,9,999999999,100,0.1720,0,88,999.000,999.0,99.0 +1976,5,16,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,0.6,15,97300,790,1336,375,567,727,136,59800,73100,16500,3210,100,4.6,0,0,48.3,77777,9,999999999,90,0.1720,0,88,999.000,999.0,99.0 +1976,5,16,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,1.7,15,97300,1003,1336,385,763,799,162,78900,79800,18900,4500,90,3.1,0,0,48.3,77777,9,999999999,100,0.1720,0,88,999.000,999.0,99.0 +1976,5,16,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,2.8,14,97300,1164,1336,397,916,844,180,95800,84800,21800,7650,90,3.1,0,0,56.3,77777,9,999999999,100,0.1720,0,88,999.000,999.0,99.0 +1976,5,16,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.0,1.1,12,97300,1263,1336,404,1007,863,190,105900,86900,23600,12580,340,3.6,0,0,56.3,77777,9,999999999,100,0.1720,0,88,999.000,999.0,99.0 +1976,5,16,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.1,2.8,12,97300,1292,1336,412,1036,871,192,109200,87700,24100,15540,260,5.7,0,0,56.3,77777,9,999999999,100,0.1720,0,88,999.000,999.0,99.0 +1976,5,16,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.2,-1.7,8,97200,1249,1336,411,1000,867,189,105200,87200,23400,11580,270,4.6,0,0,56.3,77777,9,999999999,80,0.1720,0,88,999.000,999.0,99.0 +1976,5,16,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,38.3,-0.6,8,97200,1138,1336,419,896,842,177,93500,84500,21300,6900,280,6.2,0,0,64.4,77777,9,999999999,80,0.1720,0,88,999.000,999.0,99.0 +1976,5,16,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,38.3,0.6,9,97100,966,1336,421,731,791,158,78100,80800,19500,4700,290,5.2,0,0,56.3,77777,9,999999999,90,0.1720,0,88,999.000,999.0,99.0 +1976,5,16,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.8,0.6,10,97100,745,1336,418,524,707,130,55300,70600,15800,2930,290,6.7,0,0,56.3,77777,9,999999999,90,0.1720,0,88,999.000,999.0,99.0 +1976,5,16,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.2,0.6,10,97100,490,1336,415,297,556,93,30800,51600,11800,1780,290,7.2,0,0,56.3,77777,9,999999999,90,0.1720,0,88,999.000,999.0,99.0 +1976,5,16,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.1,0.0,10,97000,220,1336,408,92,254,51,9700,17300,6800,920,280,5.7,0,0,56.3,77777,9,999999999,90,0.1720,0,88,999.000,999.0,99.0 +1976,5,16,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.9,3.3,15,97100,14,456,401,8,4,8,0,0,0,0,250,6.7,0,0,56.3,77777,9,999999999,110,0.1720,0,88,999.000,999.0,99.0 +1976,5,16,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,3.3,17,97200,0,0,390,0,0,0,0,0,0,0,270,5.2,0,0,56.3,77777,9,999999999,110,0.1120,0,88,999.000,999.0,99.0 +1976,5,16,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,3.9,19,97200,0,0,382,0,0,0,0,0,0,0,270,6.7,0,0,48.3,77777,9,999999999,110,0.1120,0,88,999.000,999.0,99.0 +1976,5,16,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,3.9,20,97300,0,0,379,0,0,0,0,0,0,0,290,5.2,0,0,48.3,77777,9,999999999,110,0.1120,0,88,999.000,999.0,99.0 +1976,5,16,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,4.4,21,97300,0,0,377,0,0,0,0,0,0,0,290,5.2,0,0,48.3,77777,9,999999999,120,0.1120,0,88,999.000,999.0,99.0 +1976,5,17,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,4.4,21,97300,0,0,377,0,0,0,0,0,0,0,290,5.2,0,0,48.3,77777,9,999999999,120,0.1120,0,88,999.000,999.0,99.0 +1976,5,17,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,5.0,23,97300,0,0,372,0,0,0,0,0,0,0,240,4.1,0,0,48.3,77777,9,999999999,120,0.1120,0,88,999.000,999.0,99.0 +1976,5,17,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,6.1,31,97400,0,0,357,0,0,0,0,0,0,0,0,0.0,0,0,48.3,77777,9,999999999,130,0.1120,0,88,999.000,999.0,99.0 +1976,5,17,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,5.6,29,97400,0,0,360,0,0,0,0,0,0,0,110,2.6,0,0,48.3,77777,9,999999999,130,0.1120,0,88,999.000,999.0,99.0 +1976,5,17,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,6.7,34,97400,0,0,353,0,0,0,0,0,0,0,70,3.6,0,0,48.3,77777,9,999999999,130,0.1120,0,88,999.000,999.0,99.0 +1976,5,17,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,6.7,37,97500,36,723,348,16,7,15,1700,400,1700,370,100,3.1,0,0,64.4,77777,9,999999999,140,0.2270,0,88,999.000,999.0,99.0 +1976,5,17,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,6.1,32,97500,273,1335,355,118,250,67,12300,18900,8400,1220,100,5.2,0,0,64.4,77777,9,999999999,130,0.2270,0,88,999.000,999.0,99.0 +1976,5,17,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,6.7,29,97600,542,1335,366,325,510,118,34700,49200,14700,2290,110,3.6,0,0,72.4,77777,9,999999999,140,0.2270,0,88,999.000,999.0,99.0 +1976,5,17,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,6.1,24,97600,792,1335,376,550,655,161,57400,65300,18500,3710,110,3.1,0,0,72.4,77777,9,999999999,130,0.2270,0,88,999.000,999.0,99.0 +1976,5,17,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,6.7,22,97500,1004,1335,389,748,735,194,79000,74600,22800,6060,130,3.1,0,0,72.4,77777,9,999999999,130,0.2270,0,88,999.000,999.0,99.0 +1976,5,17,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,5.6,19,97500,1165,1335,396,901,785,214,96100,80200,25900,10020,30,2.6,0,0,72.4,77777,9,999999999,130,0.2270,0,88,999.000,999.0,99.0 +1976,5,17,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,4.4,16,97400,1263,1335,400,998,813,226,107100,83300,28100,16170,310,2.6,0,0,64.4,77777,9,999999999,110,0.2270,0,88,999.000,999.0,99.0 +1976,5,17,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.0,4.4,15,97300,1292,1335,409,1022,817,230,110000,83800,28700,19990,310,2.6,0,0,64.4,77777,9,999999999,120,0.2270,0,88,999.000,999.0,99.0 +1976,5,17,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.1,3.9,13,97200,1250,1335,414,984,809,225,105600,82900,27800,14950,310,3.6,0,0,64.4,77777,9,999999999,110,0.2270,0,88,999.000,999.0,99.0 +1976,5,17,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.2,3.9,12,97100,1139,1335,420,878,780,211,93600,79700,25400,9100,250,5.2,0,0,64.4,77777,9,999999999,110,0.2270,0,88,999.000,999.0,99.0 +1976,5,17,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.8,0.6,10,97000,968,1335,418,719,732,188,75900,74200,22000,5500,300,4.1,0,0,48.3,77777,9,999999999,90,0.2270,0,88,999.000,999.0,99.0 +1976,5,17,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.7,0.6,10,96900,747,1335,412,513,642,154,53400,63600,17800,3390,310,3.6,0,0,48.3,77777,9,999999999,90,0.2270,0,88,999.000,999.0,99.0 +1976,5,17,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.2,0.6,10,96900,493,1335,415,284,479,108,30300,45100,13600,2050,300,3.6,0,0,56.3,77777,9,999999999,90,0.2270,0,88,999.000,999.0,99.0 +1976,5,17,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.7,1.7,11,96900,222,1335,422,81,166,54,8700,11200,6800,1000,220,3.6,1,1,56.3,77777,9,999999999,100,0.2270,0,88,999.000,999.0,99.0 +1976,5,17,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34.4,3.9,15,97000,15,478,445,1,0,1,0,0,0,0,130,11.8,9,8,3.2,3660,9,999999999,110,0.2270,0,88,999.000,999.0,99.0 +1976,5,17,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,8.3,26,97000,0,0,435,0,0,0,0,0,0,0,140,7.7,9,9,19.3,3960,9,999999999,150,0.1120,0,88,999.000,999.0,99.0 +1976,5,17,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,7.8,26,97100,0,0,415,0,0,0,0,0,0,0,130,7.2,9,7,32.2,7010,9,999999999,150,0.1120,0,88,999.000,999.0,99.0 +1976,5,17,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,8.3,28,97100,0,0,402,0,0,0,0,0,0,0,110,6.7,9,4,48.3,77777,9,999999999,150,0.1120,0,88,999.000,999.0,99.0 +1976,5,17,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,8.9,30,97200,0,0,387,0,0,0,0,0,0,0,120,7.7,6,1,48.3,77777,9,999999999,160,0.1120,0,88,999.000,999.0,99.0 +1976,5,18,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,9.4,32,97200,0,0,385,0,0,0,0,0,0,0,110,4.1,8,1,48.3,77777,9,999999999,160,0.1120,0,88,999.000,999.0,99.0 +1976,5,18,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,10.0,34,97100,0,0,383,0,0,0,0,0,0,0,80,2.1,10,1,48.3,77777,9,999999999,170,0.1120,0,88,999.000,999.0,99.0 +1976,5,18,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,10.0,34,97100,0,0,388,0,0,0,0,0,0,0,230,1.0,9,2,48.3,77777,9,999999999,170,0.1120,0,88,999.000,999.0,99.0 +1976,5,18,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,10.0,34,97000,0,0,434,0,0,0,0,0,0,0,250,1.5,10,10,48.3,7620,9,999999999,170,0.1120,0,88,999.000,999.0,99.0 +1976,5,18,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,10.0,34,97000,0,0,434,0,0,0,0,0,0,0,0,0.0,10,10,48.3,4570,9,999999999,170,0.1120,0,88,999.000,999.0,99.0 +1976,5,18,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,10.0,36,97100,37,745,386,24,14,22,2500,800,2400,500,130,2.6,10,3,48.3,77777,9,999999999,170,0.0860,0,88,999.000,999.0,99.0 +1976,5,18,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,10.0,34,97100,275,1335,398,141,265,86,14700,20100,10500,1700,70,2.1,10,5,48.3,77777,9,999999999,170,0.0860,0,88,999.000,999.0,99.0 +1976,5,18,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,8.9,29,97100,544,1335,409,280,289,163,29900,28700,18200,3450,90,4.6,10,6,64.4,7620,9,999999999,160,0.0860,0,88,999.000,999.0,99.0 +1976,5,18,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,8.3,25,97100,793,1335,418,444,293,269,47400,31100,28900,6770,110,4.1,10,6,64.4,7620,9,999999999,150,0.0860,0,88,999.000,999.0,99.0 +1976,5,18,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,7.8,22,97100,1005,1335,419,672,560,250,72400,58300,28400,7890,100,4.6,8,4,64.4,77777,9,999999999,150,0.0860,0,88,999.000,999.0,99.0 +1976,5,18,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.9,8.3,21,97000,1166,1335,432,812,508,368,86000,53000,39700,17710,140,4.6,10,5,56.3,77777,9,999999999,150,0.0860,0,88,999.000,999.0,99.0 +1976,5,18,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.9,7.8,20,97000,1264,1335,448,697,267,444,76400,29000,48900,28930,140,6.2,10,8,56.3,7620,9,999999999,150,0.0860,0,88,999.000,999.0,99.0 +1976,5,18,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34.4,8.3,20,96900,1293,1335,444,919,500,433,97300,52200,46600,39090,120,4.6,10,7,56.3,7620,9,999999999,150,0.0860,0,88,999.000,999.0,99.0 +1976,5,18,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.1,5.6,15,96800,1251,1335,445,943,641,342,101900,67100,38800,23320,230,2.6,10,6,48.3,7620,9,999999999,120,0.0860,0,88,999.000,999.0,99.0 +1976,5,18,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.6,5.0,15,96700,1140,1335,434,719,319,447,77700,34600,48100,19010,210,3.1,9,4,48.3,77777,9,999999999,120,0.0860,0,88,999.000,999.0,99.0 +1976,5,18,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.7,5.0,14,96600,969,1335,440,712,650,240,73900,65000,26600,6800,150,3.1,8,4,48.3,77777,9,999999999,120,0.0860,0,88,999.000,999.0,99.0 +1976,5,18,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.7,5.0,14,96500,749,1335,440,452,464,191,47900,47200,21300,4300,350,3.6,9,4,48.3,77777,9,999999999,120,0.0860,0,88,999.000,999.0,99.0 +1976,5,18,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.6,5.6,15,96500,495,1335,438,320,511,132,33500,48000,15700,2570,90,8.2,9,5,48.3,7620,9,999999999,120,0.0860,0,88,999.000,999.0,99.0 +1976,5,18,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,6.7,21,96600,225,1335,443,70,0,70,7700,0,7700,2200,180,7.2,10,9,56.3,3960,9,999999999,130,0.0860,0,88,999.000,999.0,99.0 +1976,5,18,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,10.0,29,96900,16,500,450,2,0,2,0,0,0,0,160,4.1,10,10,24.1,2740,9,999999999,170,0.0860,0,88,999.000,999.0,99.0 +1976,5,18,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,15.6,60,96900,0,0,423,0,0,0,0,0,0,0,290,11.8,10,10,12.9,3050,9,999999999,240,0.1120,0,88,999.000,999.0,99.0 +1976,5,18,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,14.4,59,97000,0,0,415,0,0,0,0,0,0,0,230,6.7,10,10,48.3,3660,9,999999999,220,0.1120,0,88,999.000,999.0,99.0 +1976,5,18,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,13.9,55,97100,0,0,417,0,0,0,0,0,0,0,190,4.6,10,10,32.2,3050,9,999999999,209,0.1120,0,88,999.000,999.0,99.0 +1976,5,18,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,15.0,60,97100,0,0,418,0,0,0,0,0,0,0,130,5.7,10,10,24.1,3050,9,999999999,230,0.1120,0,88,999.000,999.0,99.0 +1976,5,19,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,15.0,62,97000,0,0,416,0,0,0,0,0,0,0,110,7.7,10,10,40.2,3660,9,999999999,230,0.1130,0,88,999.000,999.0,99.0 +1976,5,19,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,15.0,64,97000,0,0,412,0,0,0,0,0,0,0,120,7.7,10,10,40.2,3660,9,999999999,230,0.1130,0,88,999.000,999.0,99.0 +1976,5,19,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,15.0,64,97100,0,0,412,0,0,0,0,0,0,0,130,3.6,10,10,40.2,3960,9,999999999,230,0.1130,0,88,999.000,999.0,99.0 +1976,5,19,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,14.4,62,97100,0,0,392,0,0,0,0,0,0,0,120,1.0,10,8,40.2,4570,9,999999999,220,0.1130,0,88,999.000,999.0,99.0 +1976,5,19,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,14.4,62,97100,0,0,375,0,0,0,0,0,0,0,110,2.1,10,4,48.3,77777,9,999999999,220,0.1130,0,88,999.000,999.0,99.0 +1976,5,19,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,13.9,57,97100,39,745,414,13,0,13,1500,0,1500,460,160,2.1,10,10,56.3,3960,9,999999999,209,0.1480,0,88,999.000,999.0,99.0 +1976,5,19,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,14.4,58,97200,277,1334,418,88,5,87,9700,200,9600,2800,100,3.6,10,10,64.4,3960,9,999999999,220,0.1480,0,88,999.000,999.0,99.0 +1976,5,19,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,14.4,59,97200,546,1334,415,165,6,162,18500,500,18400,6110,110,3.1,10,10,72.4,3660,9,999999999,220,0.1480,0,88,999.000,999.0,99.0 +1976,5,19,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,13.9,54,97200,795,1334,420,231,5,228,26600,400,26300,9640,90,3.1,10,10,72.4,3660,9,999999999,209,0.1480,0,88,999.000,999.0,99.0 +1976,5,19,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,14.4,54,97200,1006,1334,424,318,4,315,37000,400,36700,13770,60,2.6,10,10,64.4,3960,9,999999999,220,0.1480,0,88,999.000,999.0,99.0 +1976,5,19,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,12.8,44,97200,1167,1334,431,381,3,378,44600,300,44400,16500,130,3.6,10,10,64.4,3960,9,999999999,200,0.1480,0,88,999.000,999.0,99.0 +1976,5,19,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,12.8,42,97200,1265,1334,435,423,1,422,49800,100,49800,18240,140,4.1,10,10,64.4,3960,9,999999999,200,0.1480,0,88,999.000,999.0,99.0 +1976,5,19,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,11.1,37,97100,1294,1334,435,546,0,545,63200,0,63200,21430,160,3.1,10,10,64.4,4570,9,999999999,180,0.1480,0,88,999.000,999.0,99.0 +1976,5,19,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,10.0,31,97100,1252,1334,431,704,98,611,77400,10300,67800,31150,180,4.6,10,9,72.4,4570,9,999999999,170,0.1480,0,88,999.000,999.0,99.0 +1976,5,19,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,10.6,32,97000,1141,1334,432,474,46,434,52200,4800,48100,18620,200,3.1,10,9,72.4,4570,9,999999999,170,0.1480,0,88,999.000,999.0,99.0 +1976,5,19,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,8.9,28,96900,970,1334,417,757,594,325,79000,61500,34200,9880,200,1.5,8,7,72.4,7620,9,999999999,160,0.1480,0,88,999.000,999.0,99.0 +1976,5,19,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,8.3,25,96900,751,1334,414,397,228,269,43200,23700,29800,7030,80,2.6,6,5,56.3,7620,9,999999999,150,0.1480,0,88,999.000,999.0,99.0 +1976,5,19,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,8.9,25,96900,497,1334,415,271,374,132,28300,35200,15200,2570,80,2.1,6,4,56.3,7620,9,999999999,150,0.1480,0,88,999.000,999.0,99.0 +1976,5,19,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,11.1,30,96900,228,1334,412,76,103,59,8400,7500,7100,1260,60,4.1,3,3,56.3,77777,9,999999999,180,0.1480,0,88,999.000,999.0,99.0 +1976,5,19,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,10.0,29,96900,17,500,428,7,2,6,0,0,0,0,90,5.7,9,8,48.3,3660,9,999999999,170,0.1480,0,88,999.000,999.0,99.0 +1976,5,19,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,9.4,29,97000,0,0,403,0,0,0,0,0,0,0,110,4.1,4,3,48.3,77777,9,999999999,160,0.1130,0,88,999.000,999.0,99.0 +1976,5,19,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,9.4,31,97000,0,0,388,0,0,0,0,0,0,0,110,4.1,1,1,48.3,77777,9,999999999,160,0.1130,0,88,999.000,999.0,99.0 +1976,5,19,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,10.0,35,97100,0,0,389,0,0,0,0,0,0,0,100,3.6,3,3,48.3,77777,9,999999999,170,0.1130,0,88,999.000,999.0,99.0 +1976,5,19,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,10.0,34,97200,0,0,434,0,0,0,0,0,0,0,340,8.2,10,10,48.3,2900,9,999999999,170,0.1130,0,88,999.000,999.0,99.0 +1976,5,20,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,12.8,48,97200,0,0,401,0,0,0,0,0,0,0,360,4.6,8,8,40.2,2900,9,999999999,200,0.1130,0,88,999.000,999.0,99.0 +1976,5,20,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,10.0,38,97200,0,0,387,0,0,0,0,0,0,0,50,5.2,4,4,40.2,77777,9,999999999,170,0.1130,0,88,999.000,999.0,99.0 +1976,5,20,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,11.1,46,97200,0,0,365,0,0,0,0,0,0,0,200,2.1,1,1,48.3,77777,9,999999999,180,0.1130,0,88,999.000,999.0,99.0 +1976,5,20,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,11.7,48,97300,0,0,359,0,0,0,0,0,0,0,80,2.6,0,0,48.3,77777,9,999999999,190,0.1130,0,88,999.000,999.0,99.0 +1976,5,20,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,11.1,46,97300,0,0,358,0,0,0,0,0,0,0,40,3.6,1,0,56.3,77777,9,999999999,180,0.1130,0,88,999.000,999.0,99.0 +1976,5,20,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,11.7,48,97300,40,767,374,17,3,17,1900,0,1900,580,80,2.1,10,3,64.4,77777,9,999999999,190,0.2360,0,88,999.000,999.0,99.0 +1976,5,20,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,12.2,50,97400,280,1334,384,87,90,68,9500,7200,8000,1470,80,6.2,10,6,72.4,6100,9,999999999,190,0.2360,0,88,999.000,999.0,99.0 +1976,5,20,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,12.2,45,97400,547,1334,393,288,188,211,31000,18500,23400,4980,100,4.6,10,6,72.4,7620,9,999999999,190,0.2360,0,88,999.000,999.0,99.0 +1976,5,20,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,12.2,39,97400,796,1334,405,474,294,298,50300,31100,31700,7680,140,4.6,10,6,64.4,7620,9,999999999,190,0.2360,0,88,999.000,999.0,99.0 +1976,5,20,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,11.1,34,97400,1007,1334,409,631,339,374,67800,36600,40100,12180,120,4.1,10,6,64.4,7620,9,999999999,180,0.2360,0,88,999.000,999.0,99.0 +1976,5,20,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,9.4,28,97400,1168,1334,412,649,182,490,70700,19300,53800,21440,170,3.1,10,5,64.4,77777,9,999999999,160,0.2360,0,88,999.000,999.0,99.0 +1976,5,20,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,8.3,23,97300,1265,1334,417,964,614,380,103100,64200,42100,28400,140,3.6,7,4,72.4,7620,9,999999999,150,0.2360,0,88,999.000,999.0,99.0 +1976,5,20,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.9,6.1,18,97200,1294,1334,419,971,690,300,102500,69800,34700,26530,200,3.6,3,2,72.4,77777,9,999999999,130,0.2360,0,88,999.000,999.0,99.0 +1976,5,20,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.9,6.7,18,97100,1252,1334,424,972,586,421,102700,61100,45200,29330,140,3.6,9,3,72.4,77777,9,999999999,130,0.2360,0,88,999.000,999.0,99.0 +1976,5,20,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34.4,6.1,17,97100,1142,1334,432,806,498,379,84900,51900,40300,17010,120,4.6,8,5,72.4,7620,9,999999999,130,0.2360,0,88,999.000,999.0,99.0 +1976,5,20,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,8.3,23,97000,972,1334,423,728,600,290,76800,62200,31300,8750,330,5.2,7,5,64.4,7620,9,999999999,150,0.2360,0,88,999.000,999.0,99.0 +1976,5,20,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.9,7.2,19,97000,752,1334,428,443,369,236,47700,38900,25700,5670,340,3.1,7,4,64.4,7620,9,999999999,140,0.2360,0,88,999.000,999.0,99.0 +1976,5,20,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,6.7,19,96900,499,1334,424,260,266,161,27500,25800,17800,3410,320,1.5,6,4,64.4,7620,9,999999999,130,0.2360,0,88,999.000,999.0,99.0 +1976,5,20,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,7.2,22,96900,231,1334,419,82,65,71,8900,4700,8100,1510,140,4.1,5,5,64.4,77777,9,999999999,140,0.2360,0,88,999.000,999.0,99.0 +1976,5,20,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,11.7,32,97100,18,522,409,7,1,6,0,0,0,0,150,6.2,3,3,64.4,77777,9,999999999,180,0.2360,0,88,999.000,999.0,99.0 +1976,5,20,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,8.9,30,97100,0,0,387,0,0,0,0,0,0,0,140,2.1,1,1,48.3,77777,9,999999999,160,0.1130,0,88,999.000,999.0,99.0 +1976,5,20,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,8.9,30,97200,0,0,380,0,0,0,0,0,0,0,0,0.0,0,0,48.3,77777,9,999999999,160,0.1130,0,88,999.000,999.0,99.0 +1976,5,20,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,6.7,26,97300,0,0,375,0,0,0,0,0,0,0,240,2.1,0,0,48.3,77777,9,999999999,130,0.1130,0,88,999.000,999.0,99.0 +1976,5,20,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,6.1,26,97300,0,0,390,0,0,0,0,0,0,0,130,2.1,4,4,48.3,77777,9,999999999,130,0.1130,0,88,999.000,999.0,99.0 +1976,5,21,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,10.0,39,97300,0,0,381,0,0,0,0,0,0,0,80,4.1,3,3,48.3,77777,9,999999999,170,0.1130,0,88,999.000,999.0,99.0 +1976,5,21,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,10.6,42,97300,0,0,375,0,0,0,0,0,0,0,120,5.2,2,2,48.3,77777,9,999999999,170,0.1130,0,88,999.000,999.0,99.0 +1976,5,21,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,11.7,48,97300,0,0,359,0,0,0,0,0,0,0,110,2.6,0,0,48.3,77777,9,999999999,190,0.1130,0,88,999.000,999.0,99.0 +1976,5,21,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,12.2,50,97400,0,0,359,0,0,0,0,0,0,0,100,5.2,0,0,48.3,77777,9,999999999,190,0.1130,0,88,999.000,999.0,99.0 +1976,5,21,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,12.2,55,97400,0,0,352,0,0,0,0,0,0,0,90,4.6,0,0,56.3,77777,9,999999999,190,0.1130,0,88,999.000,999.0,99.0 +1976,5,21,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,12.2,55,97400,41,766,352,26,117,14,2100,5200,1800,260,110,5.2,0,0,72.4,77777,9,999999999,190,0.0520,0,88,999.000,999.0,99.0 +1976,5,21,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,12.2,53,97500,282,1333,354,158,584,35,16500,47500,6400,720,120,5.2,0,0,56.3,77777,9,999999999,190,0.0520,0,88,999.000,999.0,99.0 +1976,5,21,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,10.0,38,97500,549,1333,368,375,779,54,39500,74100,8900,1260,120,4.1,0,0,64.4,77777,9,999999999,170,0.0520,0,88,999.000,999.0,99.0 +1976,5,21,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,8.3,29,97500,797,1333,377,591,867,72,61900,85800,10500,1790,140,5.2,0,0,64.4,77777,9,999999999,150,0.0520,0,88,999.000,999.0,99.0 +1976,5,21,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,7.2,22,97500,1008,1333,392,788,927,86,82100,92800,11800,2580,140,4.1,0,0,72.4,77777,9,999999999,140,0.0520,0,88,999.000,999.0,99.0 +1976,5,21,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,5.6,19,97500,1168,1333,396,932,953,95,96700,95700,12600,3990,120,5.7,0,0,72.4,77777,9,999999999,130,0.0520,0,88,999.000,999.0,99.0 +1976,5,21,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.9,3.3,15,97400,1266,1333,401,1027,973,101,106300,97800,13200,6350,150,4.1,0,0,80.5,77777,9,999999999,110,0.0520,0,88,999.000,999.0,99.0 +1976,5,21,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.0,2.8,13,97300,1295,1333,406,1056,981,102,109300,98600,13300,7840,210,4.1,0,0,80.5,77777,9,999999999,100,0.0520,0,88,999.000,999.0,99.0 +1976,5,21,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.7,2.8,12,97200,1253,1333,415,1021,978,100,105700,98300,13100,5870,200,6.2,0,0,80.5,77777,9,999999999,100,0.0520,0,88,999.000,999.0,99.0 +1976,5,21,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.2,2.8,12,97100,1143,1333,426,822,825,113,84800,82700,13800,4120,220,4.1,1,1,80.5,77777,9,999999999,110,0.0520,0,88,999.000,999.0,99.0 +1976,5,21,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.6,3.3,10,97100,973,1333,424,738,814,143,77100,81600,17400,3920,230,4.1,2,2,80.5,77777,9,999999999,80,0.0520,0,88,999.000,999.0,99.0 +1976,5,21,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.8,1.7,10,97000,754,1333,428,531,818,68,55700,80600,10000,1670,290,6.2,1,1,80.5,77777,9,999999999,90,0.0520,0,88,999.000,999.0,99.0 +1976,5,21,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.1,1.1,11,97000,502,1333,418,324,712,57,34300,67200,9000,1220,290,3.6,1,1,80.5,77777,9,999999999,90,0.0520,0,88,999.000,999.0,99.0 +1976,5,21,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.0,-3.9,8,97000,233,1333,397,125,545,31,13000,41500,5700,630,280,6.2,0,0,80.5,77777,9,999999999,70,0.0520,0,88,999.000,999.0,99.0 +1976,5,21,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,-1.7,11,97000,20,544,389,17,70,9,0,0,0,0,240,5.2,0,0,48.3,77777,9,999999999,80,0.0520,0,88,999.000,999.0,99.0 +1976,5,21,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,-1.7,12,97100,0,0,380,0,0,0,0,0,0,0,260,4.6,0,0,48.3,77777,9,999999999,80,0.1130,0,88,999.000,999.0,99.0 +1976,5,21,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,-2.2,12,97200,0,0,377,0,0,0,0,0,0,0,260,3.1,0,0,48.3,77777,9,999999999,80,0.1130,0,88,999.000,999.0,99.0 +1976,5,21,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,0.0,15,97200,0,0,374,0,0,0,0,0,0,0,260,4.1,0,0,48.3,77777,9,999999999,90,0.1130,0,88,999.000,999.0,99.0 +1976,5,21,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,1.1,17,97200,0,0,373,0,0,0,0,0,0,0,240,4.6,0,0,48.3,77777,9,999999999,100,0.1130,0,88,999.000,999.0,99.0 +1976,5,22,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,0.6,16,97200,0,0,369,0,0,0,0,0,0,0,250,5.7,0,0,48.3,77777,9,999999999,90,0.1140,0,88,999.000,999.0,99.0 +1976,5,22,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,2.8,24,97200,0,0,353,0,0,0,0,0,0,0,290,2.6,0,0,48.3,77777,9,999999999,100,0.1140,0,88,999.000,999.0,99.0 +1976,5,22,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,3.9,29,97200,0,0,347,0,0,0,0,0,0,0,100,3.1,0,0,48.3,77777,9,999999999,110,0.1140,0,88,999.000,999.0,99.0 +1976,5,22,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,5.0,36,97300,0,0,338,0,0,0,0,0,0,0,110,3.6,0,0,48.3,77777,9,999999999,120,0.1140,0,88,999.000,999.0,99.0 +1976,5,22,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,1.7,30,97300,0,0,332,0,0,0,0,0,0,0,70,4.1,0,0,64.4,77777,9,999999999,100,0.1140,0,88,999.000,999.0,99.0 +1976,5,22,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,1.1,30,97300,43,788,328,23,54,17,2200,1700,2100,290,70,4.1,0,0,80.5,77777,9,999999999,100,0.1140,0,88,999.000,999.0,99.0 +1976,5,22,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,-1.7,21,97400,283,1332,335,149,472,49,15400,37100,7500,900,80,3.6,0,0,80.5,77777,9,999999999,80,0.1030,0,88,999.000,999.0,99.0 +1976,5,22,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,0.6,22,97400,550,1332,348,368,702,77,38000,66800,10400,1530,110,4.1,0,0,72.4,77777,9,999999999,90,0.1030,0,88,999.000,999.0,99.0 +1976,5,22,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,-1.1,17,97400,798,1332,356,594,820,102,62600,81800,13500,2380,120,4.1,0,0,72.4,77777,9,999999999,80,0.1030,0,88,999.000,999.0,99.0 +1976,5,22,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,1.1,18,97300,1009,1332,367,781,870,121,80500,86800,14600,2960,130,3.1,0,0,72.4,77777,9,999999999,100,0.1030,0,88,999.000,999.0,99.0 +1976,5,22,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,0.0,14,97300,1169,1332,377,936,913,134,96100,91400,15800,4940,130,3.1,0,0,64.4,77777,9,999999999,90,0.1030,0,88,999.000,999.0,99.0 +1976,5,22,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,-3.3,11,97300,1266,1332,375,1035,938,141,105900,94000,16400,8210,120,3.6,0,0,64.4,77777,9,999999999,70,0.1030,0,88,999.000,999.0,99.0 +1976,5,22,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,-5.0,9,97200,1295,1332,378,1062,943,143,108700,94500,16500,10370,200,2.6,0,0,64.4,77777,9,999999999,60,0.1030,0,88,999.000,999.0,99.0 +1976,5,22,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,-5.6,8,97100,1254,1332,380,1026,939,140,105100,94100,16300,7550,330,3.6,0,0,72.4,77777,9,999999999,60,0.1030,0,88,999.000,999.0,99.0 +1976,5,22,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,-2.8,10,97100,1144,1332,387,919,915,132,94400,91600,15600,4490,350,3.6,0,0,72.4,77777,9,999999999,70,0.1030,0,88,999.000,999.0,99.0 +1976,5,22,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,-6.1,7,97000,974,1332,385,763,881,118,81400,89100,16100,3450,270,6.7,0,0,80.5,77777,9,999999999,60,0.1030,0,88,999.000,999.0,99.0 +1976,5,22,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,-5.6,8,97000,756,1332,383,560,814,98,58900,80800,12900,2210,260,4.1,0,0,80.5,77777,9,999999999,60,0.1030,0,88,999.000,999.0,99.0 +1976,5,22,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,-6.1,7,96900,504,1332,385,331,687,72,34200,64300,9900,1400,340,3.1,0,0,80.5,77777,9,999999999,60,0.1030,0,88,999.000,999.0,99.0 +1976,5,22,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,-5.0,9,96900,236,1332,378,116,414,43,11900,30200,6600,780,220,4.1,0,0,80.5,77777,9,999999999,60,0.1030,0,88,999.000,999.0,99.0 +1976,5,22,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,-1.7,14,96900,21,566,369,14,28,11,0,0,0,0,200,2.1,0,0,80.5,77777,9,999999999,80,0.1030,0,88,999.000,999.0,99.0 +1976,5,22,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,-1.1,16,96900,0,0,362,0,0,0,0,0,0,0,230,2.1,0,0,48.3,77777,9,999999999,80,0.1140,0,88,999.000,999.0,99.0 +1976,5,22,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,-1.1,16,97000,0,0,359,0,0,0,0,0,0,0,0,0.0,0,0,48.3,77777,9,999999999,80,0.1140,0,88,999.000,999.0,99.0 +1976,5,22,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,1.1,19,97000,0,0,362,0,0,0,0,0,0,0,270,2.1,0,0,48.3,77777,9,999999999,90,0.1140,0,88,999.000,999.0,99.0 +1976,5,22,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,0.0,19,97000,0,0,353,0,0,0,0,0,0,0,110,1.5,0,0,48.3,77777,9,999999999,90,0.1140,0,88,999.000,999.0,99.0 +1976,5,23,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,-1.7,18,97000,0,0,348,0,0,0,0,0,0,0,0,0.0,0,0,48.3,77777,9,999999999,80,0.1140,0,88,999.000,999.0,99.0 +1976,5,23,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,-0.6,22,97000,0,0,339,0,0,0,0,0,0,0,220,3.1,0,0,48.3,77777,9,999999999,90,0.1140,0,88,999.000,999.0,99.0 +1976,5,23,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,-1.7,22,97000,0,0,332,0,0,0,0,0,0,0,0,0.0,0,0,48.3,77777,9,999999999,80,0.1140,0,88,999.000,999.0,99.0 +1976,5,23,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,0.6,25,97000,0,0,338,0,0,0,0,0,0,0,0,0.0,0,0,48.3,77777,9,999999999,90,0.1140,0,88,999.000,999.0,99.0 +1976,5,23,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,1.1,30,97000,0,0,328,0,0,0,0,0,0,0,110,2.6,3,0,64.4,77777,9,999999999,100,0.1140,0,88,999.000,999.0,99.0 +1976,5,23,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,0.6,28,97100,44,810,328,26,90,16,2300,3400,2100,280,100,4.1,2,0,80.5,77777,9,999999999,90,0.0750,0,88,999.000,999.0,99.0 +1976,5,23,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,1.1,27,97100,285,1332,336,160,501,53,16500,39400,8000,960,100,4.1,4,0,72.4,77777,9,999999999,100,0.0750,0,88,999.000,999.0,99.0 +1976,5,23,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,1.1,22,97200,552,1332,349,380,760,65,40100,72900,9800,1390,80,3.1,0,0,56.3,77777,9,999999999,90,0.0750,0,88,999.000,999.0,99.0 +1976,5,23,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,-1.1,16,97200,799,1332,359,604,862,86,62900,85200,11700,1900,120,2.6,0,0,56.3,77777,9,999999999,80,0.0750,0,88,999.000,999.0,99.0 +1976,5,23,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,-3.9,12,97200,1010,1332,363,806,900,122,83000,89800,14800,2980,160,2.1,2,0,56.3,77777,9,999999999,70,0.0750,0,88,999.000,999.0,99.0 +1976,5,23,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,-5.0,10,97200,1169,1332,377,891,864,131,91500,86500,15400,4900,200,2.6,4,1,64.4,77777,9,999999999,60,0.0750,0,88,999.000,999.0,99.0 +1976,5,23,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,-2.2,11,97200,1267,1332,392,996,866,170,106000,87700,22500,11990,210,3.6,6,1,56.3,77777,9,999999999,80,0.0750,0,88,999.000,999.0,99.0 +1976,5,23,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,-3.3,9,97100,1296,1332,394,1082,898,206,113200,90200,25300,17690,300,4.6,7,1,56.3,77777,9,999999999,70,0.0750,0,88,999.000,999.0,99.0 +1976,5,23,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.9,-7.2,7,97000,1254,1332,399,1026,856,218,106200,85500,25500,13700,260,4.6,8,2,64.4,77777,9,999999999,60,0.0750,0,88,999.000,999.0,99.0 +1976,5,23,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,-7.8,7,97000,1145,1332,405,754,530,298,81400,55400,33700,13360,320,4.1,8,5,64.4,7620,9,999999999,60,0.0750,0,88,999.000,999.0,99.0 +1976,5,23,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34.4,-7.2,6,96900,976,1332,412,682,559,272,72500,58100,29900,8230,280,6.2,9,5,64.4,7620,9,999999999,50,0.0750,0,88,999.000,999.0,99.0 +1976,5,23,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.9,-6.1,7,96900,758,1332,408,480,393,256,51200,41500,27600,6270,280,7.2,9,4,64.4,77777,9,999999999,60,0.0750,0,88,999.000,999.0,99.0 +1976,5,23,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.9,-6.7,7,96900,506,1332,407,305,480,123,32200,45500,14900,2380,280,5.2,9,4,64.4,77777,9,999999999,60,0.0750,0,88,999.000,999.0,99.0 +1976,5,23,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,-6.7,8,96900,238,1332,409,71,35,64,7700,2800,7200,1580,270,4.6,10,7,64.4,7620,9,999999999,60,0.0750,0,88,999.000,999.0,99.0 +1976,5,23,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,-6.7,8,96900,22,566,402,12,4,12,0,0,0,0,310,2.6,10,6,64.4,7620,9,999999999,60,0.0750,0,88,999.000,999.0,99.0 +1976,5,23,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,-3.9,11,96900,0,0,385,0,0,0,0,0,0,0,220,2.1,9,3,48.3,77777,9,999999999,70,0.1140,0,88,999.000,999.0,99.0 +1976,5,23,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,-2.2,14,97000,0,0,390,0,0,0,0,0,0,0,230,2.1,10,7,48.3,7620,9,999999999,70,0.1140,0,88,999.000,999.0,99.0 +1976,5,23,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,-1.7,15,97000,0,0,383,0,0,0,0,0,0,0,270,3.1,10,6,48.3,7620,9,999999999,80,0.1140,0,88,999.000,999.0,99.0 +1976,5,23,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,0.6,19,97000,0,0,374,0,0,0,0,0,0,0,300,2.1,7,3,48.3,77777,9,999999999,90,0.1140,0,88,999.000,999.0,99.0 +1976,5,24,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,-2.2,16,97000,0,0,374,0,0,0,0,0,0,0,290,2.1,9,6,48.3,7620,9,999999999,70,0.1140,0,88,999.000,999.0,99.0 +1976,5,24,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,-2.8,16,97000,0,0,364,0,0,0,0,0,0,0,70,2.1,8,4,48.3,77777,9,999999999,70,0.1140,0,88,999.000,999.0,99.0 +1976,5,24,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,-0.6,21,97000,0,0,355,0,0,0,0,0,0,0,60,2.6,5,2,48.3,77777,9,999999999,90,0.1140,0,88,999.000,999.0,99.0 +1976,5,24,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,1.1,27,97000,0,0,336,0,0,0,0,0,0,0,100,3.6,2,0,48.3,77777,9,999999999,100,0.1140,0,88,999.000,999.0,99.0 +1976,5,24,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,0.0,25,97000,0,0,332,0,0,0,0,0,0,0,100,4.1,0,0,72.4,77777,9,999999999,90,0.1140,0,88,999.000,999.0,99.0 +1976,5,24,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,-0.6,26,97100,45,810,326,23,56,17,2200,1800,2100,290,90,4.6,0,0,72.4,77777,9,999999999,80,0.1140,0,88,999.000,999.0,99.0 +1976,5,24,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,-1.7,21,97100,287,1331,335,135,350,60,14300,27200,8500,1080,80,5.2,0,0,72.4,77777,9,999999999,80,0.1580,0,88,999.000,999.0,99.0 +1976,5,24,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,-1.1,18,97200,553,1331,348,354,616,98,36900,58900,12500,1950,90,4.6,0,0,48.3,77777,9,999999999,80,0.1580,0,88,999.000,999.0,99.0 +1976,5,24,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,-1.1,16,97200,800,1331,362,578,744,130,61300,75100,16100,3130,90,3.6,0,0,56.3,77777,9,999999999,80,0.1580,0,88,999.000,999.0,99.0 +1976,5,24,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,1.1,16,97100,1010,1331,375,771,811,154,80200,81200,18500,4460,110,3.6,0,0,64.4,77777,9,999999999,90,0.1580,0,88,999.000,999.0,99.0 +1976,5,24,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,-1.7,11,97100,1170,1331,383,924,855,171,97200,86100,21300,7610,110,3.6,0,0,72.4,77777,9,999999999,80,0.1580,0,88,999.000,999.0,99.0 +1976,5,24,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,-2.2,11,97000,1267,1331,382,1016,876,180,107500,88400,23100,12670,110,3.1,0,0,72.4,77777,9,999999999,80,0.1580,0,88,999.000,999.0,99.0 +1976,5,24,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,-4.4,8,96900,1296,1331,387,1052,891,182,111600,90000,23700,16000,90,2.6,0,0,80.5,77777,9,999999999,60,0.1580,0,88,999.000,999.0,99.0 +1976,5,24,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34.4,-5.0,8,96800,1255,1331,392,1010,880,179,106900,88800,22900,11700,220,5.2,0,0,64.4,77777,9,999999999,70,0.1580,0,88,999.000,999.0,99.0 +1976,5,24,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.7,-8.3,5,96700,1146,1331,399,917,867,169,96300,87300,21000,6930,240,8.2,0,0,64.4,77777,9,999999999,50,0.1580,0,88,999.000,999.0,99.0 +1976,5,24,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.6,-9.4,5,96700,977,1331,392,756,824,151,78600,82400,18000,4090,270,6.2,0,0,64.4,77777,9,999999999,50,0.1580,0,88,999.000,999.0,99.0 +1976,5,24,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.6,-7.8,6,96700,759,1331,394,550,744,125,58200,74700,15500,2890,250,10.3,0,0,64.4,77777,9,999999999,50,0.1580,0,88,999.000,999.0,99.0 +1976,5,24,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.9,-4.4,8,96700,508,1331,390,319,598,91,33200,56100,11800,1770,240,9.8,0,0,48.3,77777,9,999999999,60,0.1580,0,88,999.000,999.0,99.0 +1976,5,24,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,-12.8,5,96700,241,1331,370,110,319,53,11600,22800,7500,950,270,7.7,0,0,40.2,77777,9,999999999,40,0.1580,0,88,999.000,999.0,99.0 +1976,5,24,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,-14.4,5,96800,23,588,357,14,27,11,1300,700,1300,180,270,6.2,0,0,32.2,77777,9,999999999,40,0.1140,0,88,999.000,999.0,99.0 +1976,5,24,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,-8.9,8,96800,0,0,357,0,0,0,0,0,0,0,250,2.6,0,0,32.2,77777,9,999999999,50,0.1140,0,88,999.000,999.0,99.0 +1976,5,24,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,-9.4,8,96900,0,0,354,0,0,0,0,0,0,0,240,3.6,0,0,32.2,77777,9,999999999,50,0.1140,0,88,999.000,999.0,99.0 +1976,5,24,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,-9.4,8,96900,0,0,351,0,0,0,0,0,0,0,250,3.1,0,0,32.2,77777,9,999999999,50,0.1140,0,88,999.000,999.0,99.0 +1976,5,24,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,-6.7,11,96900,0,0,347,0,0,0,0,0,0,0,270,3.1,0,0,48.3,77777,9,999999999,60,0.1140,0,88,999.000,999.0,99.0 +1976,5,25,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,-5.0,13,96900,0,0,349,0,0,0,0,0,0,0,270,2.6,0,0,48.3,77777,9,999999999,60,0.1150,0,88,999.000,999.0,99.0 +1976,5,25,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,-3.9,16,96900,0,0,340,0,0,0,0,0,0,0,100,2.1,0,0,48.3,77777,9,999999999,70,0.1150,0,88,999.000,999.0,99.0 +1976,5,25,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,-3.3,19,96900,0,0,331,0,0,0,0,0,0,0,70,3.6,0,0,48.3,77777,9,999999999,70,0.1150,0,88,999.000,999.0,99.0 +1976,5,25,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,-2.2,22,96900,0,0,327,0,0,0,0,0,0,0,80,4.1,0,0,56.3,77777,9,999999999,80,0.1150,0,88,999.000,999.0,99.0 +1976,5,25,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,-2.8,22,97000,0,0,324,0,0,0,0,0,0,0,70,3.6,0,0,72.4,77777,9,999999999,70,0.1150,0,88,999.000,999.0,99.0 +1976,5,25,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,-3.3,22,97000,46,832,321,24,59,18,2300,1900,2200,310,100,3.1,0,0,72.4,77777,9,999999999,70,0.1150,0,88,999.000,999.0,99.0 +1976,5,25,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,-1.1,24,97100,288,1331,328,166,595,37,17200,48700,6600,760,70,3.6,0,0,56.3,77777,9,999999999,80,0.0580,0,88,999.000,999.0,99.0 +1976,5,25,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,-0.6,21,97100,554,1331,342,388,792,58,40800,75400,9300,1300,100,4.1,0,0,40.2,77777,9,999999999,80,0.0580,0,88,999.000,999.0,99.0 +1976,5,25,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,-1.1,18,97100,801,1331,351,610,884,77,63700,87500,11000,1850,120,2.6,0,0,32.2,77777,9,999999999,80,0.0580,0,88,999.000,999.0,99.0 +1976,5,25,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,-1.1,16,97100,1011,1331,359,804,937,91,83600,93700,12200,2670,170,2.1,0,0,32.2,77777,9,999999999,80,0.0580,0,88,999.000,999.0,99.0 +1976,5,25,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,-1.7,13,97100,1170,1331,372,952,966,101,98600,96900,13100,4210,230,2.1,0,0,32.2,77777,9,999999999,80,0.0580,0,88,999.000,999.0,99.0 +1976,5,25,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,-0.6,13,97100,1268,1331,379,1041,979,106,107500,98400,13600,6750,300,3.6,0,0,32.2,77777,9,999999999,80,0.0580,0,88,999.000,999.0,99.0 +1976,5,25,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,-2.8,11,97000,1297,1331,382,1068,984,108,110300,98900,13800,8510,230,3.6,0,0,32.2,77777,9,999999999,80,0.0580,0,88,999.000,999.0,99.0 +1976,5,25,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,-2.2,11,96900,1256,1331,385,1028,976,106,106300,98000,13600,6290,260,5.2,0,0,32.2,77777,9,999999999,80,0.0580,0,88,999.000,999.0,99.0 +1976,5,25,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,-2.2,10,96900,1147,1331,390,928,960,99,96200,96300,13000,3870,270,4.6,0,0,32.2,77777,9,999999999,80,0.0580,0,88,999.000,999.0,99.0 +1976,5,25,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,-4.4,8,96800,978,1331,387,778,937,89,81000,93600,12100,2500,270,6.2,0,0,32.2,77777,9,999999999,60,0.0580,0,88,999.000,999.0,99.0 +1976,5,25,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,-6.7,7,96800,761,1331,382,580,886,74,60800,87300,10800,1740,330,3.6,0,0,32.2,77777,9,999999999,50,0.0580,0,88,999.000,999.0,99.0 +1976,5,25,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,-5.6,8,96800,510,1331,383,351,776,54,37000,73000,9000,1210,270,4.1,0,0,32.2,77777,9,999999999,60,0.0580,0,88,999.000,999.0,99.0 +1976,5,25,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,-5.6,9,96800,243,1331,378,132,544,34,13700,42000,6000,670,240,4.6,0,0,32.2,77777,9,999999999,60,0.0580,0,88,999.000,999.0,99.0 +1976,5,25,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,-2.2,12,96900,24,610,377,15,27,12,1500,1000,1400,250,220,2.1,0,0,32.2,77777,9,999999999,80,0.1150,0,88,999.000,999.0,99.0 +1976,5,25,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,-1.1,15,96900,0,0,367,0,0,0,0,0,0,0,230,2.1,0,0,32.2,77777,9,999999999,80,0.1150,0,88,999.000,999.0,99.0 +1976,5,25,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,-1.7,14,97000,0,0,364,0,0,0,0,0,0,0,0,0.0,0,0,32.2,77777,9,999999999,80,0.1150,0,88,999.000,999.0,99.0 +1976,5,25,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,-2.8,14,97000,0,0,359,0,0,0,0,0,0,0,250,1.0,0,0,32.2,77777,9,999999999,70,0.1150,0,88,999.000,999.0,99.0 +1976,5,25,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,-1.1,17,97000,0,0,354,0,0,0,0,0,0,0,40,2.6,0,0,40.2,77777,9,999999999,80,0.1150,0,88,999.000,999.0,99.0 +1976,5,26,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,0.0,20,97100,0,0,350,0,0,0,0,0,0,0,50,2.1,0,0,48.3,77777,9,999999999,90,0.1150,0,88,999.000,999.0,99.0 +1976,5,26,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,1.7,26,97100,0,0,342,0,0,0,0,0,0,0,220,2.1,0,0,48.3,77777,9,999999999,100,0.1150,0,88,999.000,999.0,99.0 +1976,5,26,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,0.0,24,97100,0,0,337,0,0,0,0,0,0,0,190,2.6,0,0,48.3,77777,9,999999999,90,0.1150,0,88,999.000,999.0,99.0 +1976,5,26,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,0.0,24,97100,0,0,337,0,0,0,0,0,0,0,190,3.1,0,0,48.3,77777,9,999999999,90,0.1150,0,88,999.000,999.0,99.0 +1976,5,26,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,0.0,25,97200,0,0,335,0,0,0,0,0,0,0,190,3.6,0,0,72.4,77777,9,999999999,90,0.1150,0,88,999.000,999.0,99.0 +1976,5,26,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,-0.6,25,97300,47,832,329,25,61,18,2300,2000,2200,310,200,4.1,0,0,56.3,77777,9,999999999,80,0.1150,0,88,999.000,999.0,99.0 +1976,5,26,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,-0.6,23,97300,290,1331,337,144,390,59,14700,30700,8000,1050,130,3.6,0,0,40.2,77777,9,999999999,90,0.1510,0,88,999.000,999.0,99.0 +1976,5,26,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,-0.6,19,97400,555,1331,349,362,636,96,37800,60900,12300,1920,50,2.6,0,0,32.2,77777,9,999999999,80,0.1510,0,88,999.000,999.0,99.0 +1976,5,26,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,0.0,17,97400,801,1331,361,584,756,128,62000,76400,15900,3090,210,2.1,0,0,24.1,77777,9,999999999,90,0.1510,0,88,999.000,999.0,99.0 +1976,5,26,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,0.6,16,97400,1011,1331,372,779,825,151,81300,82700,18300,4420,290,1.5,0,0,32.2,77777,9,999999999,90,0.1510,0,88,999.000,999.0,99.0 +1976,5,26,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,1.7,15,97300,1171,1331,385,928,864,167,97900,87100,21100,7510,220,2.6,0,0,32.2,77777,9,999999999,100,0.1510,0,88,999.000,999.0,99.0 +1976,5,26,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,1.7,14,97300,1268,1331,393,1018,882,176,108100,89100,22900,12560,220,2.1,0,0,32.2,77777,9,999999999,100,0.1510,0,88,999.000,999.0,99.0 +1976,5,26,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.0,2.8,13,97200,1297,1331,406,1046,889,178,111300,89900,23500,15940,310,4.6,0,0,24.1,77777,9,999999999,100,0.1510,0,88,999.000,999.0,99.0 +1976,5,26,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.6,2.2,12,97100,1256,1331,409,1007,880,175,106900,88900,22700,11620,290,5.2,0,0,24.1,77777,9,999999999,100,0.1510,0,88,999.000,999.0,99.0 +1976,5,26,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.2,2.2,11,97100,1148,1331,417,905,857,165,95400,86400,20700,6870,250,5.7,0,0,32.2,77777,9,999999999,100,0.1510,0,88,999.000,999.0,99.0 +1976,5,26,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.8,1.7,10,97000,980,1331,420,748,816,148,78100,81700,17800,4070,240,4.6,0,0,40.2,77777,9,999999999,90,0.1510,0,88,999.000,999.0,99.0 +1976,5,26,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.8,1.7,10,96900,763,1331,420,548,741,123,58100,74500,15300,2860,280,3.6,0,0,40.2,77777,9,999999999,90,0.1510,0,88,999.000,999.0,99.0 +1976,5,26,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.7,0.6,10,96900,512,1331,412,322,604,90,33600,56900,11700,1760,250,3.6,0,0,48.3,77777,9,999999999,90,0.1510,0,88,999.000,999.0,99.0 +1976,5,26,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.1,1.1,11,96900,246,1331,410,112,327,52,11900,23600,7500,930,220,3.6,0,0,56.3,77777,9,999999999,90,0.1510,0,88,999.000,999.0,99.0 +1976,5,26,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.0,-1.7,9,97000,25,610,400,14,27,11,1300,700,1300,180,240,2.6,0,0,48.3,77777,9,999999999,70,0.1150,0,88,999.000,999.0,99.0 +1976,5,26,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,2.8,16,97000,0,0,389,0,0,0,0,0,0,0,210,2.6,0,0,48.3,77777,9,999999999,110,0.1150,0,88,999.000,999.0,99.0 +1976,5,26,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,2.2,15,97100,0,0,391,0,0,0,0,0,0,0,290,2.1,0,0,48.3,77777,9,999999999,100,0.1150,0,88,999.000,999.0,99.0 +1976,5,26,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,4.4,20,97100,0,0,383,0,0,0,0,0,0,0,30,2.1,0,0,48.3,77777,9,999999999,120,0.1150,0,88,999.000,999.0,99.0 +1976,5,26,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,4.4,20,97100,0,0,380,0,0,0,0,0,0,0,30,1.0,0,0,48.3,77777,9,999999999,110,0.1150,0,88,999.000,999.0,99.0 +1976,5,27,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,3.9,22,97100,0,0,371,0,0,0,0,0,0,0,30,1.0,0,0,48.3,77777,9,999999999,120,0.1150,0,88,999.000,999.0,99.0 +1976,5,27,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,4.4,23,97100,0,0,369,0,0,0,0,0,0,0,210,2.1,0,0,48.3,77777,9,999999999,120,0.1150,0,88,999.000,999.0,99.0 +1976,5,27,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,3.9,25,97100,0,0,360,0,0,0,0,0,0,0,200,3.1,0,0,48.3,77777,9,999999999,110,0.1150,0,88,999.000,999.0,99.0 +1976,5,27,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,5.6,31,97100,0,0,354,0,0,0,0,0,0,0,200,2.6,0,0,48.3,77777,9,999999999,130,0.1150,0,88,999.000,999.0,99.0 +1976,5,27,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,5.6,31,97200,0,0,354,0,0,0,0,0,0,0,200,2.6,0,0,72.4,77777,9,999999999,130,0.1150,0,88,999.000,999.0,99.0 +1976,5,27,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,4.4,30,97200,48,831,348,23,58,17,2200,1900,2100,290,200,3.1,0,0,64.4,77777,9,999999999,120,0.1150,0,88,999.000,999.0,99.0 +1976,5,27,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,3.9,26,97300,291,1330,357,142,366,61,14900,28600,8700,1100,200,3.1,0,0,40.2,77777,9,999999999,120,0.1640,0,88,999.000,999.0,99.0 +1976,5,27,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,3.9,23,97300,556,1330,366,356,610,100,37000,58300,12600,1990,210,2.6,0,0,32.2,77777,9,999999999,110,0.1640,0,88,999.000,999.0,99.0 +1976,5,27,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,3.3,19,97300,802,1330,378,578,736,134,61300,74200,16400,3220,40,3.1,0,0,24.1,77777,9,999999999,110,0.1640,0,88,999.000,999.0,99.0 +1976,5,27,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,1.7,15,97300,1012,1330,385,775,809,158,80500,81000,18700,4560,60,3.6,0,0,24.1,77777,9,999999999,100,0.1640,0,88,999.000,999.0,99.0 +1976,5,27,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.9,1.7,13,97300,1171,1330,399,924,850,175,97100,85500,21600,7810,110,4.1,0,0,32.2,77777,9,999999999,100,0.1640,0,88,999.000,999.0,99.0 +1976,5,27,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.1,1.7,11,97200,1268,1330,411,1018,872,185,107500,87900,23500,13180,150,3.6,0,0,40.2,77777,9,999999999,90,0.1640,0,88,999.000,999.0,99.0 +1976,5,27,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.2,0.6,10,97100,1298,1330,415,1047,880,187,110800,88800,24000,16790,290,2.6,0,0,40.2,77777,9,999999999,90,0.1640,0,88,999.000,999.0,99.0 +1976,5,27,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,38.3,0.0,9,97100,1257,1330,420,1008,871,183,106400,87800,23200,12140,350,3.1,0,0,40.2,77777,9,999999999,90,0.1640,0,88,999.000,999.0,99.0 +1976,5,27,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,38.3,-1.1,8,97000,1149,1330,418,908,850,173,95200,85500,21200,7150,80,5.2,0,0,48.3,77777,9,999999999,80,0.1640,0,88,999.000,999.0,99.0 +1976,5,27,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.2,-3.3,7,96900,981,1330,409,753,810,155,78100,80900,18300,4200,90,2.1,0,0,48.3,77777,9,999999999,70,0.1640,0,88,999.000,999.0,99.0 +1976,5,27,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.8,-2.8,7,96800,764,1330,413,549,731,129,58100,73400,15800,2980,130,3.6,0,0,48.3,77777,9,999999999,70,0.1640,0,88,999.000,999.0,99.0 +1976,5,27,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.2,-2.8,8,96800,514,1330,410,322,590,94,33500,55500,12000,1830,340,4.6,0,0,56.3,77777,9,999999999,70,0.1640,0,88,999.000,999.0,99.0 +1976,5,27,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.7,-1.1,9,96700,248,1330,410,112,311,55,11900,22600,7700,990,330,4.6,0,0,56.3,77777,9,999999999,80,0.1640,0,88,999.000,999.0,99.0 +1976,5,27,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.0,-1.1,10,96800,26,632,401,16,30,12,1500,800,1400,200,300,4.1,0,0,56.3,77777,9,999999999,80,0.1150,0,88,999.000,999.0,99.0 +1976,5,27,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,1.1,13,96800,0,0,392,0,0,0,0,0,0,0,250,4.6,0,0,48.3,77777,9,999999999,90,0.1150,0,88,999.000,999.0,99.0 +1976,5,27,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,0.6,14,96800,0,0,383,0,0,0,0,0,0,0,250,5.7,0,0,48.3,77777,9,999999999,90,0.1150,0,88,999.000,999.0,99.0 +1976,5,27,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,0.6,16,96900,0,0,372,0,0,0,0,0,0,0,260,5.2,0,0,48.3,77777,9,999999999,90,0.1150,0,88,999.000,999.0,99.0 +1976,5,27,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,0.6,16,96900,0,0,372,0,0,0,0,0,0,0,290,3.6,0,0,48.3,77777,9,999999999,90,0.1150,0,88,999.000,999.0,99.0 +1976,5,28,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,0.6,16,96900,0,0,369,0,0,0,0,0,0,0,10,2.6,0,0,48.3,77777,9,999999999,90,0.1160,0,88,999.000,999.0,99.0 +1976,5,28,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,0.6,18,96900,0,0,361,0,0,0,0,0,0,0,70,3.1,0,0,48.3,77777,9,999999999,90,0.1160,0,88,999.000,999.0,99.0 +1976,5,28,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,1.7,22,96900,0,0,355,0,0,0,0,0,0,0,100,3.1,0,0,48.3,77777,9,999999999,100,0.1160,0,88,999.000,999.0,99.0 +1976,5,28,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,1.1,22,96900,0,0,349,0,0,0,0,0,0,0,80,3.1,0,0,48.3,77777,9,999999999,90,0.1160,0,88,999.000,999.0,99.0 +1976,5,28,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,1.7,25,96900,0,0,344,0,0,0,0,0,0,0,90,3.6,0,0,72.4,77777,9,999999999,100,0.1160,0,88,999.000,999.0,99.0 +1976,5,28,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,1.1,27,96900,49,853,336,24,60,18,2300,2000,2200,310,90,4.6,0,0,72.4,77777,9,999999999,100,0.1160,0,88,999.000,999.0,99.0 +1976,5,28,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,0.0,21,97000,292,1330,345,165,563,41,16900,46100,6800,810,90,4.1,0,0,72.4,77777,9,999999999,90,0.0710,0,88,999.000,999.0,99.0 +1976,5,28,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,-0.6,18,97000,557,1330,355,386,767,64,40800,73800,9800,1380,70,2.6,0,0,64.4,77777,9,999999999,90,0.0710,0,88,999.000,999.0,99.0 +1976,5,28,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,-0.6,16,97000,803,1330,365,607,864,84,63200,85400,11500,1900,100,3.1,0,0,64.4,77777,9,999999999,90,0.0710,0,88,999.000,999.0,99.0 +1976,5,28,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,-1.1,13,97000,1012,1330,375,801,920,100,83100,92000,12900,2810,340,2.1,0,0,56.3,77777,9,999999999,80,0.0710,0,88,999.000,999.0,99.0 +1976,5,28,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,-3.3,10,97000,1171,1330,378,951,954,110,98300,95700,13800,4490,80,3.1,0,0,64.4,77777,9,999999999,70,0.0710,0,88,999.000,999.0,99.0 +1976,5,28,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,-2.8,10,96900,1269,1330,384,1041,968,116,107300,97200,14400,7340,230,2.6,0,0,64.4,77777,9,999999999,70,0.0710,0,88,999.000,999.0,99.0 +1976,5,28,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.9,-0.6,11,96800,1298,1330,396,1068,971,118,109900,97500,14500,9360,270,3.1,0,0,64.4,77777,9,999999999,80,0.0710,0,88,999.000,999.0,99.0 +1976,5,28,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.0,-2.2,9,96800,1257,1330,399,1034,969,115,106500,97300,14300,6810,290,3.1,0,0,64.4,77777,9,999999999,70,0.0710,0,88,999.000,999.0,99.0 +1976,5,28,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.6,-1.7,9,96700,1150,1330,403,929,948,109,96100,95100,13700,4150,330,4.1,0,0,64.4,77777,9,999999999,80,0.0710,0,88,999.000,999.0,99.0 +1976,5,28,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.6,-2.8,8,96600,982,1330,401,776,918,97,80500,91700,12700,2620,220,3.1,0,0,72.4,77777,9,999999999,70,0.0710,0,88,999.000,999.0,99.0 +1976,5,28,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.1,-3.9,7,96500,766,1330,402,579,864,81,60400,85200,11300,1800,330,4.1,0,0,72.4,77777,9,999999999,60,0.0710,0,88,999.000,999.0,99.0 +1976,5,28,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.1,-4.4,7,96400,516,1330,402,353,755,60,37300,71600,9400,1280,270,8.2,0,0,72.4,77777,9,999999999,60,0.0710,0,88,999.000,999.0,99.0 +1976,5,28,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.9,-4.4,8,96400,251,1330,390,134,519,38,13800,40200,6200,720,280,8.8,0,0,72.4,77777,9,999999999,60,0.0710,0,88,999.000,999.0,99.0 +1976,5,28,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,-2.2,11,96500,28,632,379,17,31,13,1600,800,1500,220,270,6.7,0,0,72.4,77777,9,999999999,70,0.1160,0,88,999.000,999.0,99.0 +1976,5,28,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,-3.3,11,96600,0,0,375,0,0,0,0,0,0,0,270,4.6,0,0,56.3,77777,9,999999999,70,0.1160,0,88,999.000,999.0,99.0 +1976,5,28,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,-2.2,13,96600,0,0,371,0,0,0,0,0,0,0,270,6.2,0,0,56.3,77777,9,999999999,80,0.1160,0,88,999.000,999.0,99.0 +1976,5,28,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,-2.2,13,96700,0,0,366,0,0,0,0,0,0,0,150,2.1,0,0,56.3,77777,9,999999999,70,0.1160,0,88,999.000,999.0,99.0 +1976,5,28,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,-2.2,15,96700,0,0,358,0,0,0,0,0,0,0,230,2.1,0,0,56.3,77777,9,999999999,80,0.1160,0,88,999.000,999.0,99.0 +1976,5,29,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,-2.2,16,96800,0,0,353,0,0,0,0,0,0,0,230,3.6,0,0,56.3,77777,9,999999999,80,0.1160,0,88,999.000,999.0,99.0 +1976,5,29,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,-2.2,17,96800,0,0,347,0,0,0,0,0,0,0,120,4.1,0,0,56.3,77777,9,999999999,80,0.1160,0,88,999.000,999.0,99.0 +1976,5,29,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,-3.3,17,96800,0,0,338,0,0,0,0,0,0,0,120,3.1,0,0,56.3,77777,9,999999999,70,0.1160,0,88,999.000,999.0,99.0 +1976,5,29,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,-3.3,18,96800,0,0,336,0,0,0,0,0,0,0,90,4.6,0,0,56.3,77777,9,999999999,70,0.1160,0,88,999.000,999.0,99.0 +1976,5,29,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,-2.2,22,96800,0,0,327,0,0,0,0,0,0,0,90,6.2,0,0,80.5,77777,9,999999999,80,0.1160,0,88,999.000,999.0,99.0 +1976,5,29,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,-1.7,24,96900,50,853,325,25,64,18,2400,2200,2200,310,100,5.2,0,0,80.5,77777,9,999999999,80,0.1160,0,88,999.000,999.0,99.0 +1976,5,29,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,0.0,25,96900,294,1329,335,147,398,59,15000,31500,8100,1060,100,5.7,0,0,80.5,77777,9,999999999,90,0.1490,0,88,999.000,999.0,99.0 +1976,5,29,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,0.6,22,96900,558,1329,345,363,638,96,38100,61200,12400,1920,120,4.1,0,0,80.5,77777,9,999999999,90,0.1490,0,88,999.000,999.0,99.0 +1976,5,29,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,1.1,20,96900,803,1329,359,585,756,127,62100,76400,15900,3080,180,4.1,0,0,80.5,77777,9,999999999,100,0.1490,0,88,999.000,999.0,99.0 +1976,5,29,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,1.7,18,96900,1012,1329,368,778,824,150,81400,82700,18300,4420,130,5.7,0,0,80.5,77777,9,999999999,100,0.1490,0,88,999.000,999.0,99.0 +1976,5,29,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,0.6,16,96900,1171,1329,369,930,866,166,98200,87400,21100,7530,180,5.2,0,0,80.5,77777,9,999999999,90,0.1490,0,88,999.000,999.0,99.0 +1976,5,29,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,0.6,15,96800,1269,1329,378,1021,885,175,108500,89500,22900,12670,180,4.1,0,0,80.5,77777,9,999999999,90,0.1490,0,88,999.000,999.0,99.0 +1976,5,29,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,-1.1,12,96800,1298,1329,391,1018,855,181,108100,86400,23500,16550,190,5.2,1,1,80.5,77777,9,999999999,80,0.1490,0,88,999.000,999.0,99.0 +1976,5,29,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,-1.1,12,96700,1258,1329,394,963,832,174,102200,84100,22500,11760,120,6.2,1,1,80.5,77777,9,999999999,80,0.1490,0,88,999.000,999.0,99.0 +1976,5,29,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,0.0,12,96600,1150,1329,394,910,861,163,96000,86800,20600,6890,120,4.6,0,0,80.5,77777,9,999999999,90,0.1490,0,88,999.000,999.0,99.0 +1976,5,29,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,0.0,12,96600,983,1329,394,752,796,163,80400,81400,20100,5020,250,3.6,2,0,80.5,77777,9,999999999,90,0.1490,0,88,999.000,999.0,99.0 +1976,5,29,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,1.1,13,96600,767,1329,415,434,319,250,46600,33700,27000,6130,280,6.7,9,4,80.5,77777,9,999999999,90,0.1490,0,88,999.000,999.0,99.0 +1976,5,29,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,2.2,15,96500,518,1329,408,283,358,143,30200,35200,16500,2950,250,9.3,8,3,80.5,77777,9,999999999,100,0.1490,0,88,999.000,999.0,99.0 +1976,5,29,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,2.2,16,96600,253,1329,383,115,306,57,12100,22400,7800,1030,270,9.3,2,0,56.3,77777,9,999999999,100,0.1490,0,88,999.000,999.0,99.0 +1976,5,29,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,1.7,17,96600,29,654,374,15,16,14,1600,600,1600,290,250,6.7,2,0,56.3,77777,9,999999999,100,0.1490,0,88,999.000,999.0,99.0 +1976,5,29,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,3.3,21,96700,0,0,383,0,0,0,0,0,0,0,240,6.2,9,2,56.3,77777,9,999999999,110,0.1160,0,88,999.000,999.0,99.0 +1976,5,29,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,1.7,20,96700,0,0,363,0,0,0,0,0,0,0,230,6.7,0,0,56.3,77777,9,999999999,100,0.1160,0,88,999.000,999.0,99.0 +1976,5,29,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,0.0,18,96800,0,0,358,0,0,0,0,0,0,0,240,3.6,0,0,56.3,77777,9,999999999,90,0.1160,0,88,999.000,999.0,99.0 +1976,5,29,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,1.1,22,96800,0,0,351,0,0,0,0,0,0,0,290,3.1,0,0,56.3,77777,9,999999999,100,0.1160,0,88,999.000,999.0,99.0 +1976,5,30,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,2.2,24,96800,0,0,350,0,0,0,0,0,0,0,300,3.1,0,0,56.3,77777,9,999999999,100,0.1160,0,88,999.000,999.0,99.0 +1976,5,30,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,0.6,25,96800,0,0,338,0,0,0,0,0,0,0,100,3.6,0,0,56.3,77777,9,999999999,90,0.1160,0,88,999.000,999.0,99.0 +1976,5,30,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,0.6,26,96800,0,0,333,0,0,0,0,0,0,0,80,5.2,0,0,56.3,77777,9,999999999,90,0.1160,0,88,999.000,999.0,99.0 +1976,5,30,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,0.6,28,96800,0,0,328,0,0,0,0,0,0,0,90,4.1,0,0,56.3,77777,9,999999999,90,0.1160,0,88,999.000,999.0,99.0 +1976,5,30,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,-1.1,26,96900,0,0,323,0,0,0,0,0,0,0,100,6.2,0,0,72.4,77777,9,999999999,80,0.1160,0,88,999.000,999.0,99.0 +1976,5,30,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,-1.7,26,96900,51,853,320,25,65,18,2400,2200,2200,310,90,3.6,0,0,64.4,77777,9,999999999,80,0.1160,0,88,999.000,999.0,99.0 +1976,5,30,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,-2.2,23,97000,295,1329,324,139,329,67,14700,25900,9000,1210,80,4.1,0,0,64.4,77777,9,999999999,80,0.1930,0,88,999.000,999.0,99.0 +1976,5,30,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,-1.1,23,97000,559,1329,333,353,576,110,36500,54900,13400,2160,100,3.6,0,0,64.4,77777,9,999999999,80,0.1930,0,88,999.000,999.0,99.0 +1976,5,30,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,-0.6,21,97100,804,1329,344,573,702,148,60300,70500,17600,3520,100,3.1,0,0,64.4,77777,9,999999999,90,0.1930,0,88,999.000,999.0,99.0 +1976,5,30,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,1.1,21,97100,1013,1329,354,767,775,175,81700,79200,21300,5670,120,1.5,0,0,64.4,77777,9,999999999,90,0.1930,0,88,999.000,999.0,99.0 +1976,5,30,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,3.3,23,97100,1171,1329,362,916,818,194,95100,81900,22800,8510,190,1.5,0,0,64.4,77777,9,999999999,110,0.1930,0,88,999.000,999.0,99.0 +1976,5,30,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,4.4,22,97100,1269,1329,374,1005,838,204,105100,84100,24600,14510,280,2.6,0,0,64.4,77777,9,999999999,120,0.1930,0,88,999.000,999.0,99.0 +1976,5,30,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,2.8,19,97000,1299,1329,375,1038,848,207,108600,85100,25200,18790,120,3.1,0,0,48.3,77777,9,999999999,110,0.1930,0,88,999.000,999.0,99.0 +1976,5,30,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,1.7,16,96900,1258,1329,382,1002,842,203,104600,84500,24500,13480,190,2.6,0,0,48.3,77777,9,999999999,100,0.1930,0,88,999.000,999.0,99.0 +1976,5,30,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,0.6,14,96900,1151,1329,381,903,820,191,93600,82000,22400,7790,230,4.1,0,0,48.3,77777,9,999999999,90,0.1930,0,88,999.000,999.0,99.0 +1976,5,30,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,1.1,15,96800,984,1329,384,742,769,172,79000,78400,20800,5280,310,5.2,0,0,56.3,77777,9,999999999,100,0.1930,0,88,999.000,999.0,99.0 +1976,5,30,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,1.1,14,96800,769,1329,387,542,691,143,57000,69100,17000,3280,270,5.2,0,0,56.3,77777,9,999999999,90,0.1930,0,88,999.000,999.0,99.0 +1976,5,30,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,0.0,13,96800,520,1329,382,318,549,104,32900,51500,12800,2000,270,4.6,0,0,56.3,77777,9,999999999,80,0.1930,0,88,999.000,999.0,99.0 +1976,5,30,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,-0.6,13,96800,255,1329,379,112,276,59,11700,20300,7800,1070,250,5.7,0,0,56.3,77777,9,999999999,80,0.1930,0,88,999.000,999.0,99.0 +1976,5,30,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,-1.7,13,96800,30,675,372,17,34,13,1600,900,1600,220,290,3.1,0,0,56.3,77777,9,999999999,80,0.1160,0,88,999.000,999.0,99.0 +1976,5,30,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,-1.1,16,96900,0,0,362,0,0,0,0,0,0,0,180,2.6,0,0,56.3,77777,9,999999999,80,0.1160,0,88,999.000,999.0,99.0 +1976,5,30,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,0.0,17,96900,0,0,361,0,0,0,0,0,0,0,230,2.6,0,0,56.3,77777,9,999999999,90,0.1160,0,88,999.000,999.0,99.0 +1976,5,30,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,0.0,17,96900,0,0,361,0,0,0,0,0,0,0,260,3.1,0,0,56.3,77777,9,999999999,90,0.1160,0,88,999.000,999.0,99.0 +1976,5,30,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,1.1,22,97000,0,0,351,0,0,0,0,0,0,0,110,3.1,0,0,56.3,77777,9,999999999,100,0.1160,0,88,999.000,999.0,99.0 +1976,5,31,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,2.2,26,97000,0,0,345,0,0,0,0,0,0,0,80,3.1,0,0,56.3,77777,9,999999999,100,0.1170,0,88,999.000,999.0,99.0 +1976,5,31,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,2.2,27,97000,0,0,342,0,0,0,0,0,0,0,110,2.6,0,0,56.3,77777,9,999999999,100,0.1170,0,88,999.000,999.0,99.0 +1976,5,31,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,2.2,28,97000,0,0,340,0,0,0,0,0,0,0,70,1.5,0,0,56.3,77777,9,999999999,100,0.1170,0,88,999.000,999.0,99.0 +1976,5,31,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,3.9,35,97100,0,0,334,0,0,0,0,0,0,0,130,2.1,0,0,56.3,77777,9,999999999,110,0.1170,0,88,999.000,999.0,99.0 +1976,5,31,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,2.8,32,97100,0,0,333,0,0,0,0,0,0,0,100,2.6,0,0,64.4,77777,9,999999999,110,0.1170,0,88,999.000,999.0,99.0 +1976,5,31,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,2.8,34,97200,52,874,328,26,65,19,2500,2200,2300,330,90,4.1,0,0,56.3,77777,9,999999999,100,0.1170,0,88,999.000,999.0,99.0 +1976,5,31,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,1.1,28,97200,296,1328,334,152,436,56,15700,34700,8000,1020,100,4.6,0,0,56.3,77777,9,999999999,100,0.1290,0,88,999.000,999.0,99.0 +1976,5,31,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,2.2,26,97200,559,1328,345,369,666,88,38800,64200,11800,1790,110,4.1,0,0,56.3,77777,9,999999999,100,0.1290,0,88,999.000,999.0,99.0 +1976,5,31,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,2.2,22,97300,804,1328,358,589,780,116,61300,77500,14300,2610,100,4.1,0,0,48.3,77777,9,999999999,100,0.1290,0,88,999.000,999.0,99.0 +1976,5,31,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,3.3,22,97200,1013,1328,365,781,842,138,82400,84800,17600,4190,130,1.5,0,0,48.3,77777,9,999999999,110,0.1290,0,88,999.000,999.0,99.0 +1976,5,31,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,2.8,19,97200,1172,1328,375,930,881,152,99200,89200,20300,7040,100,2.6,0,0,48.3,77777,9,999999999,110,0.1290,0,88,999.000,999.0,99.0 +1976,5,31,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,1.7,16,97200,1269,1328,382,1024,903,160,104500,90400,17900,9360,210,3.1,0,0,48.3,77777,9,999999999,100,0.1290,0,88,999.000,999.0,99.0 +1976,5,31,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,1.1,14,97100,1299,1328,387,1054,910,162,107400,91100,18100,12250,120,4.1,0,0,48.3,77777,9,999999999,90,0.1290,0,88,999.000,999.0,99.0 +1976,5,31,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,0.6,12,97100,1259,1328,394,1017,904,159,103800,90500,17900,8680,20,2.1,0,0,48.3,77777,9,999999999,90,0.1290,0,88,999.000,999.0,99.0 +1976,5,31,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.9,-2.8,9,97000,1152,1328,393,922,889,150,98200,90000,20000,6500,190,4.1,0,0,48.3,77777,9,999999999,70,0.1290,0,88,999.000,999.0,99.0 +1976,5,31,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34.4,-1.7,10,97000,985,1328,397,761,843,135,80200,84800,17100,3890,180,3.1,0,0,56.3,77777,9,999999999,80,0.1290,0,88,999.000,999.0,99.0 +1976,5,31,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34.4,-0.6,11,96900,770,1328,398,561,772,113,58200,76300,13900,2450,330,4.6,0,0,56.3,77777,9,999999999,90,0.1290,0,88,999.000,999.0,99.0 +1976,5,31,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34.4,0.6,12,96900,522,1328,400,336,645,83,35400,61300,11300,1660,250,4.1,0,0,64.4,77777,9,999999999,90,0.1290,0,88,999.000,999.0,99.0 +1976,5,31,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,-2.2,10,96900,257,1328,390,125,387,51,12900,29100,7200,910,310,3.6,0,0,72.4,77777,9,999999999,80,0.1290,0,88,999.000,999.0,99.0 +1976,5,31,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,-2.8,10,96900,31,675,384,18,36,14,1700,1000,1700,240,300,3.1,0,0,64.4,77777,9,999999999,70,0.1170,0,88,999.000,999.0,99.0 +1976,5,31,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,-0.6,13,97000,0,0,379,0,0,0,0,0,0,0,250,3.1,0,0,48.3,77777,9,999999999,80,0.1170,0,88,999.000,999.0,99.0 +1976,5,31,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,1.0,16,97000,0,0,378,0,0,0,0,0,0,0,230,3.1,0,0,48.3,77777,9,999999999,90,0.1170,0,88,999.000,999.0,99.0 +1976,5,31,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.3,2.6,14,97000,0,0,377,0,0,0,0,0,0,0,250,3.1,0,0,48.3,77777,9,999999999,80,0.1170,0,88,999.000,999.0,99.0 +1976,5,31,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.7,4.2,17,97000,0,0,376,0,0,0,0,0,0,0,200,3.1,0,0,48.3,77777,9,999999999,80,0.1170,0,88,999.000,999.0,99.0 +1986,6,1,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.0,5.8,38,96700,0,0,420,0,0,0,0,0,0,0,330,3.1,10,9,56.3,3660,9,999999999,180,0.1180,0,88,999.000,999.0,99.0 +1986,6,1,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.4,7.4,38,96700,0,0,419,0,0,0,0,0,0,0,50,3.1,10,9,56.3,2440,9,999999999,180,0.1180,0,88,999.000,999.0,99.0 +1986,6,1,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,9.0,38,96700,0,0,388,0,0,0,0,0,0,0,80,3.1,7,3,56.3,77777,9,999999999,180,0.1180,0,88,999.000,999.0,99.0 +1986,6,1,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,10.6,38,96700,0,0,371,0,0,0,0,0,0,0,90,3.1,0,0,56.3,77777,9,999999999,170,0.1180,0,88,999.000,999.0,99.0 +1986,6,1,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,11.1,42,96700,0,0,366,0,0,0,0,0,0,0,100,2.1,1,0,56.3,77777,9,999999999,180,0.1180,0,88,999.000,999.0,99.0 +1986,6,1,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,11.7,46,96800,52,874,368,30,119,17,2600,4700,2300,300,30,2.1,3,1,56.3,77777,9,999999999,180,0.0540,0,88,999.000,999.0,99.0 +1986,6,1,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,11.7,42,96800,296,1328,370,167,579,38,17300,47800,6700,780,50,2.6,1,0,56.3,77777,9,999999999,190,0.0540,0,88,999.000,999.0,99.0 +1986,6,1,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,10.6,34,96800,559,1328,396,382,638,113,39500,60700,13900,2200,60,3.1,3,3,80.5,77777,9,999999999,170,0.0540,0,88,999.000,999.0,99.0 +1986,6,1,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,10.6,30,96800,804,1328,408,559,657,161,58500,65700,18600,3780,90,3.6,4,3,80.5,77777,9,999999999,170,0.0540,0,88,999.000,999.0,99.0 +1986,6,1,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,9.4,24,96800,1013,1328,421,744,767,158,77300,76800,18600,4590,160,2.6,3,3,80.5,77777,9,999999999,160,0.0540,0,88,999.000,999.0,99.0 +1986,6,1,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.9,8.9,21,96800,1172,1328,422,921,860,161,97600,86900,20800,7380,200,2.1,2,2,80.5,77777,9,999999999,150,0.0540,0,88,999.000,999.0,99.0 +1986,6,1,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.6,8.3,19,96700,1269,1328,417,1014,951,102,104700,95600,13200,6720,230,2.6,0,0,72.4,77777,9,999999999,150,0.0540,0,88,999.000,999.0,99.0 +1986,6,1,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.7,8.9,18,96600,1299,1328,424,1032,947,104,106700,95200,13400,8640,260,5.2,0,0,72.4,77777,9,999999999,150,0.0540,0,88,999.000,999.0,99.0 +1986,6,1,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.8,8.9,17,96500,1259,1328,430,1003,949,102,103800,95400,13200,6320,260,4.1,0,0,72.4,77777,9,999999999,150,0.0540,0,88,999.000,999.0,99.0 +1986,6,1,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.8,7.2,15,96300,1153,1328,446,720,493,292,78000,51600,33200,13520,280,5.2,4,3,72.4,77777,9,999999999,130,0.0540,0,88,999.000,999.0,99.0 +1986,6,1,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.2,7.2,16,96400,986,1328,446,671,664,178,71300,67600,21000,5470,280,5.2,4,4,64.4,77777,9,999999999,140,0.0540,0,88,999.000,999.0,99.0 +1986,6,1,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.6,5.6,16,96400,771,1328,447,393,112,327,43000,11400,36300,9750,340,10.3,7,7,9.7,5490,9,999999999,130,0.0540,0,88,999.000,999.0,99.0 +1986,6,1,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.1,5.0,14,96200,523,1328,444,270,293,155,28800,28800,17400,3250,70,7.7,9,6,40.2,5490,9,999999999,120,0.0540,0,88,999.000,999.0,99.0 +1986,6,1,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.1,5.6,15,96300,259,1328,434,118,273,65,12300,20200,8300,1190,300,3.1,8,3,56.3,77777,9,999999999,120,0.0540,0,88,999.000,999.0,99.0 +1986,6,1,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.9,5.6,17,96400,32,697,418,21,43,16,2000,1200,1900,280,80,3.1,8,2,40.2,77777,9,999999999,120,0.0540,0,88,999.000,999.0,99.0 +1986,6,1,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,7.2,20,96500,0,0,414,0,0,0,0,0,0,0,60,1.5,8,2,32.2,77777,9,999999999,140,0.1180,0,88,999.000,999.0,99.0 +1986,6,1,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,8.3,23,96700,0,0,448,0,0,0,0,0,0,0,40,4.1,9,9,24.1,2440,9,999999999,150,0.1180,0,88,999.000,999.0,99.0 +1986,6,1,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,13.3,38,96900,0,0,448,0,0,0,0,0,0,0,10,2.6,10,10,24.1,2440,9,999999999,200,0.1180,0,88,999.000,999.0,99.0 +1986,6,1,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,11.1,32,96800,0,0,448,0,0,0,0,0,0,0,200,3.6,10,10,24.1,2440,9,999999999,180,0.1180,0,88,999.000,999.0,99.0 +1986,6,2,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,11.7,36,96700,0,0,400,0,0,0,0,0,0,0,100,7.2,4,3,32.2,77777,9,999999999,190,0.1180,0,88,999.000,999.0,99.0 +1986,6,2,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,12.2,39,96800,0,0,386,0,0,0,0,0,0,0,120,3.1,2,1,56.3,77777,9,999999999,190,0.1180,0,88,999.000,999.0,99.0 +1986,6,2,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,11.7,39,96800,0,0,383,0,0,0,0,0,0,0,110,6.2,2,1,56.3,77777,9,999999999,180,0.1180,0,88,999.000,999.0,99.0 +1986,6,2,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,11.7,41,96900,0,0,380,0,0,0,0,0,0,0,80,3.6,2,1,56.3,77777,9,999999999,190,0.1180,0,88,999.000,999.0,99.0 +1986,6,2,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,11.7,42,96900,0,0,386,0,0,0,0,0,0,0,110,3.1,4,3,56.3,77777,9,999999999,190,0.1180,0,88,999.000,999.0,99.0 +1986,6,2,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,11.7,43,96900,53,874,383,26,19,24,2800,1100,2700,560,90,3.1,4,3,64.4,77777,9,999999999,180,0.0830,0,88,999.000,999.0,99.0 +1986,6,2,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,11.7,41,96900,297,1328,385,155,418,61,15800,33200,8400,1090,90,4.1,2,2,64.4,77777,9,999999999,190,0.0830,0,88,999.000,999.0,99.0 +1986,6,2,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,12.2,37,97000,560,1328,397,351,557,116,36200,53000,13900,2250,100,4.1,2,2,64.4,77777,9,999999999,190,0.0830,0,88,999.000,999.0,99.0 +1986,6,2,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,12.2,32,97000,804,1328,409,571,722,133,60500,72900,16300,3210,120,4.1,3,2,64.4,77777,9,999999999,190,0.0830,0,88,999.000,999.0,99.0 +1986,6,2,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,12.2,31,97000,1013,1328,416,722,630,241,75300,63300,26900,7540,150,2.1,5,3,48.3,77777,9,999999999,190,0.0830,0,88,999.000,999.0,99.0 +1986,6,2,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,12.2,29,97000,1172,1328,425,799,634,238,84700,64500,27700,11560,110,2.1,5,4,72.4,77777,9,999999999,190,0.0830,0,88,999.000,999.0,99.0 +1986,6,2,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.9,11.7,26,96900,1269,1328,431,925,726,230,99400,74400,28100,17790,60,3.1,3,3,48.3,77777,9,999999999,190,0.0830,0,88,999.000,999.0,99.0 +1986,6,2,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.7,10.6,21,96900,1299,1328,445,840,604,247,89900,61700,29400,24260,200,3.1,3,3,48.3,77777,9,999999999,180,0.0830,0,88,999.000,999.0,99.0 +1986,6,2,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.8,10.0,19,96800,1260,1328,450,943,741,239,101000,75700,28900,17380,160,2.1,3,3,48.3,77777,9,999999999,170,0.0830,0,88,999.000,999.0,99.0 +1986,6,2,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,38.3,8.9,17,96800,1153,1328,459,816,572,319,87700,59800,35600,14890,280,4.1,5,5,48.3,77777,9,999999999,160,0.0830,0,88,999.000,999.0,99.0 +1986,6,2,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.2,8.9,18,96700,987,1328,456,665,505,290,70500,52400,31400,9040,310,3.1,7,6,48.3,7620,9,999999999,160,0.0830,0,88,999.000,999.0,99.0 +1986,6,2,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.1,8.9,19,96700,773,1328,462,383,175,281,41600,18200,31000,7470,300,3.6,9,8,48.3,7620,9,999999999,150,0.0830,0,88,999.000,999.0,99.0 +1986,6,2,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.6,8.9,20,96700,525,1328,459,231,90,196,25400,8700,21900,5200,350,3.1,9,8,56.3,7620,9,999999999,160,0.0830,0,88,999.000,999.0,99.0 +1986,6,2,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.9,10.0,23,96700,261,1328,451,123,136,96,13100,10400,11100,2060,360,4.6,10,8,56.3,7620,9,999999999,160,0.0830,0,88,999.000,999.0,99.0 +1986,6,2,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,10.6,27,96800,33,697,439,13,4,13,1500,200,1400,320,360,6.2,10,8,56.3,7620,9,999999999,170,0.0830,0,88,999.000,999.0,99.0 +1986,6,2,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,10.6,30,96900,0,0,423,0,0,0,0,0,0,0,330,5.2,10,7,56.3,7620,9,999999999,170,0.1180,0,88,999.000,999.0,99.0 +1986,6,2,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,11.1,32,96900,0,0,420,0,0,0,0,0,0,0,290,3.1,9,7,56.3,7620,9,999999999,180,0.1180,0,88,999.000,999.0,99.0 +1986,6,2,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,11.1,33,96900,0,0,409,0,0,0,0,0,0,0,0,0.0,7,5,56.3,7620,9,999999999,180,0.1180,0,88,999.000,999.0,99.0 +1986,6,2,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,11.1,33,96900,0,0,402,0,0,0,0,0,0,0,120,1.5,5,3,56.3,77777,9,999999999,180,0.1180,0,88,999.000,999.0,99.0 +1986,6,3,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,11.7,37,96900,0,0,397,0,0,0,0,0,0,0,60,2.1,5,3,56.3,77777,9,999999999,190,0.1180,0,88,999.000,999.0,99.0 +1986,6,3,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,11.7,38,96900,0,0,394,0,0,0,0,0,0,0,300,1.5,4,3,56.3,77777,9,999999999,180,0.1180,0,88,999.000,999.0,99.0 +1986,6,3,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,12.2,41,97000,0,0,395,0,0,0,0,0,0,0,0,0.0,5,4,56.3,77777,9,999999999,190,0.1180,0,88,999.000,999.0,99.0 +1986,6,3,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,12.2,41,97000,0,0,395,0,0,0,0,0,0,0,80,2.1,5,4,56.3,77777,9,999999999,190,0.1180,0,88,999.000,999.0,99.0 +1986,6,3,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,12.8,45,97000,0,0,390,0,0,0,0,0,0,0,0,0.0,5,4,56.3,77777,9,999999999,200,0.1180,0,88,999.000,999.0,99.0 +1986,6,3,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,11.7,41,97000,53,874,385,22,42,18,2200,1400,2100,310,110,2.6,3,2,64.4,77777,9,999999999,190,0.1170,0,88,999.000,999.0,99.0 +1986,6,3,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,11.1,37,97100,297,1328,390,151,368,69,15900,29000,9400,1250,90,2.6,3,2,64.4,77777,9,999999999,180,0.1170,0,88,999.000,999.0,99.0 +1986,6,3,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,11.1,33,97200,560,1328,386,363,662,83,38300,64000,11300,1700,70,3.1,0,0,48.3,77777,9,999999999,180,0.1170,0,88,999.000,999.0,99.0 +1986,6,3,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,11.7,31,97200,805,1328,395,578,771,110,60500,76800,13900,2530,120,3.1,0,0,48.3,77777,9,999999999,180,0.1170,0,88,999.000,999.0,99.0 +1986,6,3,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,11.1,27,97200,1013,1328,419,744,714,199,78700,72500,23200,6380,90,1.5,2,2,48.3,77777,9,999999999,180,0.1170,0,88,999.000,999.0,99.0 +1986,6,3,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34.4,11.1,24,97200,1172,1328,428,806,638,242,85400,64900,28000,11750,350,2.1,3,2,48.3,77777,9,999999999,180,0.1170,0,88,999.000,999.0,99.0 +1986,6,3,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.1,10.6,21,97100,1269,1328,431,990,840,185,104600,84700,23400,13490,160,2.1,1,1,48.3,77777,9,999999999,170,0.1170,0,88,999.000,999.0,99.0 +1986,6,3,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.7,10.6,21,97000,1300,1328,441,1002,854,165,107600,86700,22600,15680,270,3.6,2,2,48.3,77777,9,999999999,180,0.1170,0,88,999.000,999.0,99.0 +1986,6,3,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.2,10.6,20,97000,1260,1328,437,928,804,164,99300,81500,21700,11440,260,5.2,1,1,48.3,77777,9,999999999,170,0.1170,0,88,999.000,999.0,99.0 +1986,6,3,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,38.3,10.6,19,96900,1154,1328,450,858,786,175,90100,79000,21200,7410,220,3.6,2,2,48.3,77777,9,999999999,170,0.1170,0,88,999.000,999.0,99.0 +1986,6,3,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,39.4,10.0,17,96800,988,1328,455,689,667,192,72800,67700,22300,5880,250,3.6,3,2,48.3,77777,9,999999999,170,0.1170,0,88,999.000,999.0,99.0 +1986,6,3,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,38.9,9.4,17,96800,774,1328,456,504,565,175,54300,57800,20500,4000,270,4.6,5,3,48.3,77777,9,999999999,160,0.1170,0,88,999.000,999.0,99.0 +1986,6,3,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.8,8.3,17,96700,527,1328,455,282,289,167,29800,28500,18500,3560,260,4.6,8,5,48.3,7620,9,999999999,150,0.1170,0,88,999.000,999.0,99.0 +1986,6,3,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.2,8.9,18,96800,263,1328,462,64,34,58,7100,2700,6600,1510,280,4.1,10,7,48.3,7620,9,999999999,160,0.1170,0,88,999.000,999.0,99.0 +1986,6,3,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.9,11.7,26,96800,34,719,441,13,2,13,1500,0,1500,460,350,8.2,10,6,48.3,7620,9,999999999,190,0.1170,0,88,999.000,999.0,99.0 +1986,6,3,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,10.6,26,96900,0,0,433,0,0,0,0,0,0,0,350,6.2,10,6,48.3,7620,9,999999999,180,0.1180,0,88,999.000,999.0,99.0 +1986,6,3,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,10.6,26,96900,0,0,433,0,0,0,0,0,0,0,240,4.6,9,6,48.3,7620,9,999999999,180,0.1180,0,88,999.000,999.0,99.0 +1986,6,3,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,11.1,28,96900,0,0,428,0,0,0,0,0,0,0,190,2.6,9,6,48.3,7620,9,999999999,180,0.1180,0,88,999.000,999.0,99.0 +1986,6,3,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,11.7,31,96900,0,0,427,0,0,0,0,0,0,0,190,2.6,9,7,56.3,7620,9,999999999,180,0.1180,0,88,999.000,999.0,99.0 +1986,6,4,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,11.7,32,96900,0,0,405,0,0,0,0,0,0,0,190,2.6,6,2,56.3,77777,9,999999999,180,0.1180,0,88,999.000,999.0,99.0 +1986,6,4,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,11.7,33,96900,0,0,421,0,0,0,0,0,0,0,240,2.1,9,7,56.3,7620,9,999999999,180,0.1180,0,88,999.000,999.0,99.0 +1986,6,4,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,11.7,33,96900,0,0,416,0,0,0,0,0,0,0,180,2.1,8,6,56.3,7620,9,999999999,180,0.1180,0,88,999.000,999.0,99.0 +1986,6,4,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,11.7,33,96900,0,0,412,0,0,0,0,0,0,0,100,1.5,7,5,56.3,7620,9,999999999,180,0.1180,0,88,999.000,999.0,99.0 +1986,6,4,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,12.2,37,96900,0,0,404,0,0,0,0,0,0,0,0,0.0,4,4,56.3,77777,9,999999999,190,0.1180,0,88,999.000,999.0,99.0 +1986,6,4,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,12.2,38,97000,54,896,394,22,60,16,2200,2100,2000,270,0,0.0,2,2,72.4,77777,9,999999999,190,0.0830,0,88,999.000,999.0,99.0 +1986,6,4,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,12.2,34,97000,298,1327,400,142,423,47,14800,34100,7100,880,140,2.1,1,1,72.4,77777,9,999999999,190,0.0830,0,88,999.000,999.0,99.0 +1986,6,4,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,12.2,30,97100,561,1327,415,363,613,104,37800,58600,13000,2060,160,1.5,2,2,56.3,77777,9,999999999,190,0.0830,0,88,999.000,999.0,99.0 +1986,6,4,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,11.7,28,97100,805,1327,415,567,753,110,59400,75000,13800,2530,150,2.1,2,1,56.3,77777,9,999999999,190,0.0830,0,88,999.000,999.0,99.0 +1986,6,4,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.9,11.7,26,97100,1013,1327,421,724,800,112,74800,79900,13600,2960,160,1.0,3,1,56.3,77777,9,999999999,190,0.0830,0,88,999.000,999.0,99.0 +1986,6,4,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.1,11.1,22,97000,1172,1327,424,929,893,140,95300,89400,16200,5200,240,2.1,2,0,40.2,77777,9,999999999,180,0.0830,0,88,999.000,999.0,99.0 +1986,6,4,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.7,11.1,21,97000,1269,1327,435,972,890,119,100100,89300,14400,7650,250,3.6,1,1,40.2,77777,9,999999999,180,0.0830,0,88,999.000,999.0,99.0 +1986,6,4,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.2,10.6,20,97000,1300,1327,429,1046,926,138,107200,92900,16100,11080,240,3.1,1,0,40.2,77777,9,999999999,170,0.0830,0,88,999.000,999.0,99.0 +1986,6,4,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,38.9,8.9,16,96900,1261,1327,436,1004,917,132,103100,92000,15600,7800,260,4.1,1,0,40.2,77777,9,999999999,150,0.0830,0,88,999.000,999.0,99.0 +1986,6,4,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,40.0,8.9,15,96800,1155,1327,442,910,899,127,93700,90000,15100,4640,230,4.6,1,0,40.2,77777,9,999999999,150,0.0830,0,88,999.000,999.0,99.0 +1986,6,4,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,40.0,8.9,15,96700,989,1327,442,760,868,113,78600,86600,13900,2810,250,6.7,1,0,40.2,77777,9,999999999,150,0.0830,0,88,999.000,999.0,99.0 +1986,6,4,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,39.4,8.9,16,96700,776,1327,439,566,808,94,60100,80600,12800,2210,270,5.7,1,0,40.2,77777,9,999999999,160,0.0830,0,88,999.000,999.0,99.0 +1986,6,4,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,38.9,10.0,17,96600,528,1327,438,348,700,70,36300,66400,9800,1420,280,5.7,1,0,40.2,77777,9,999999999,160,0.0830,0,88,999.000,999.0,99.0 +1986,6,4,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.8,10.0,19,96600,265,1327,432,136,470,44,14300,36200,7100,810,300,5.2,1,0,40.2,77777,9,999999999,170,0.0830,0,88,999.000,999.0,99.0 +1986,6,4,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.7,10.0,20,96600,35,719,434,19,46,14,1800,1400,1700,240,270,3.6,3,1,40.2,77777,9,999999999,170,0.0830,0,88,999.000,999.0,99.0 +1986,6,4,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34.4,11.1,24,96700,0,0,423,0,0,0,0,0,0,0,250,3.6,3,1,40.2,77777,9,999999999,180,0.1180,0,88,999.000,999.0,99.0 +1986,6,4,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,11.7,27,96700,0,0,417,0,0,0,0,0,0,0,240,4.6,3,1,40.2,77777,9,999999999,190,0.1180,0,88,999.000,999.0,99.0 +1986,6,4,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,11.1,27,96700,0,0,414,0,0,0,0,0,0,0,250,4.6,3,1,40.2,77777,9,999999999,180,0.1180,0,88,999.000,999.0,99.0 +1986,6,4,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,10.6,27,96800,0,0,400,0,0,0,0,0,0,0,280,3.1,3,0,40.2,77777,9,999999999,170,0.1180,0,88,999.000,999.0,99.0 +1986,6,5,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,10.6,29,96800,0,0,394,0,0,0,0,0,0,0,340,3.1,0,0,56.3,77777,9,999999999,170,0.1190,0,88,999.000,999.0,99.0 +1986,6,5,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,10.6,31,96800,0,0,388,0,0,0,0,0,0,0,320,3.6,0,0,56.3,77777,9,999999999,170,0.1190,0,88,999.000,999.0,99.0 +1986,6,5,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,11.1,34,96800,0,0,383,0,0,0,0,0,0,0,250,3.1,0,0,56.3,77777,9,999999999,180,0.1190,0,88,999.000,999.0,99.0 +1986,6,5,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,10.6,35,96900,0,0,377,0,0,0,0,0,0,0,320,2.1,0,0,56.3,77777,9,999999999,170,0.1190,0,88,999.000,999.0,99.0 +1986,6,5,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,10.6,37,96900,0,0,374,0,0,0,0,0,0,0,270,1.5,0,0,72.4,77777,9,999999999,180,0.1190,0,88,999.000,999.0,99.0 +1986,6,5,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,11.1,39,97000,54,896,384,20,25,17,2100,1100,2000,350,290,2.1,2,2,56.3,77777,9,999999999,180,0.1500,0,88,999.000,999.0,99.0 +1986,6,5,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,11.7,38,97000,298,1327,385,136,268,76,14100,21200,9400,1400,310,2.1,4,1,48.3,77777,9,999999999,190,0.1500,0,88,999.000,999.0,99.0 +1986,6,5,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,11.7,33,97100,561,1327,389,351,586,104,36600,56100,12900,2060,310,2.1,2,0,56.3,77777,9,999999999,180,0.1500,0,88,999.000,999.0,99.0 +1986,6,5,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,11.7,30,97100,805,1327,406,564,656,165,58800,65600,19000,3870,270,2.1,6,1,56.3,77777,9,999999999,180,0.1500,0,88,999.000,999.0,99.0 +1986,6,5,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,11.7,28,97100,1013,1327,411,769,740,203,81100,75100,23700,6500,0,0.0,7,1,56.3,77777,9,999999999,180,0.1500,0,88,999.000,999.0,99.0 +1986,6,5,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,10.6,25,97100,1172,1327,416,895,758,224,95300,77400,26900,10960,90,2.1,5,1,56.3,77777,9,999999999,170,0.1500,0,88,999.000,999.0,99.0 +1986,6,5,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.0,10.6,23,97000,1269,1327,417,1010,835,210,105300,83700,25100,15110,140,4.1,3,0,56.3,77777,9,999999999,180,0.1500,0,88,999.000,999.0,99.0 +1986,6,5,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.1,10.0,20,97000,1300,1327,422,1034,850,200,108800,85500,24800,18860,70,2.1,2,0,56.3,77777,9,999999999,160,0.1500,0,88,999.000,999.0,99.0 +1986,6,5,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.8,9.4,18,96900,1261,1327,431,996,844,193,104700,84900,23800,13300,230,6.7,2,0,56.3,77777,9,999999999,160,0.1500,0,88,999.000,999.0,99.0 +1986,6,5,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,38.9,10.0,17,96900,1156,1327,438,901,844,164,95000,85100,20700,7100,0,0.0,0,0,56.3,77777,9,999999999,160,0.1500,0,88,999.000,999.0,99.0 +1986,6,5,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,38.9,8.9,16,96800,990,1327,436,747,802,148,78000,80400,17900,4190,280,5.7,0,0,56.3,77777,9,999999999,150,0.1500,0,88,999.000,999.0,99.0 +1986,6,5,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,38.9,8.3,16,96700,777,1327,435,552,733,124,58800,73900,15400,2930,280,5.7,0,0,48.3,77777,9,999999999,150,0.1500,0,88,999.000,999.0,99.0 +1986,6,5,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.2,8.3,17,96700,530,1327,426,332,604,92,34800,57300,11900,1820,260,7.2,0,0,48.3,77777,9,999999999,150,0.1500,0,88,999.000,999.0,99.0 +1986,6,5,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.7,6.7,16,96800,267,1327,421,125,352,55,13300,26500,8000,980,280,5.2,0,0,48.3,77777,9,999999999,140,0.1500,0,88,999.000,999.0,99.0 +1986,6,5,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34.4,5.0,16,96800,36,741,406,17,23,14,1700,900,1700,290,240,5.2,0,0,48.3,77777,9,999999999,120,0.1500,0,88,999.000,999.0,99.0 +1986,6,5,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,5.6,18,96900,0,0,399,0,0,0,0,0,0,0,240,4.6,0,0,48.3,77777,9,999999999,120,0.1190,0,88,999.000,999.0,99.0 +1986,6,5,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,5.0,19,96900,0,0,389,0,0,0,0,0,0,0,0,0.0,0,0,48.3,77777,9,999999999,120,0.1190,0,88,999.000,999.0,99.0 +1986,6,5,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,2.8,16,97000,0,0,386,0,0,0,0,0,0,0,0,0.0,0,0,48.3,77777,9,999999999,100,0.1190,0,88,999.000,999.0,99.0 +1986,6,5,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,1.1,16,97000,0,0,378,0,0,0,0,0,0,0,300,3.1,0,0,56.3,77777,9,999999999,100,0.1190,0,88,999.000,999.0,99.0 +1986,6,6,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,3.3,20,97000,0,0,373,0,0,0,0,0,0,0,320,3.1,0,0,56.3,77777,9,999999999,110,0.1190,0,88,999.000,999.0,99.0 +1986,6,6,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,5.0,25,97100,0,0,367,0,0,0,0,0,0,0,320,2.1,0,0,56.3,77777,9,999999999,120,0.1190,0,88,999.000,999.0,99.0 +1986,6,6,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,6.7,29,97100,0,0,366,0,0,0,0,0,0,0,300,2.1,0,0,56.3,77777,9,999999999,140,0.1190,0,88,999.000,999.0,99.0 +1986,6,6,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,7.8,35,97100,0,0,359,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,150,0.1190,0,88,999.000,999.0,99.0 +1986,6,6,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,7.2,34,97200,0,0,356,0,0,0,0,0,0,0,0,0.0,0,0,72.4,77777,9,999999999,140,0.1190,0,88,999.000,999.0,99.0 +1986,6,6,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,8.3,36,97200,55,895,360,22,19,20,2300,1100,2300,480,50,2.1,0,0,64.4,77777,9,999999999,150,0.2090,0,88,999.000,999.0,99.0 +1986,6,6,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,7.8,30,97300,299,1326,371,138,306,69,14500,24200,9000,1250,270,1.5,0,0,64.4,77777,9,999999999,140,0.2090,0,88,999.000,999.0,99.0 +1986,6,6,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,7.8,28,97300,561,1326,376,348,547,116,35900,52000,13800,2260,10,2.1,0,0,64.4,77777,9,999999999,140,0.2090,0,88,999.000,999.0,99.0 +1986,6,6,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,7.8,27,97300,805,1326,382,566,676,155,59300,67800,18100,3670,0,0.0,0,0,64.4,77777,9,999999999,150,0.2090,0,88,999.000,999.0,99.0 +1986,6,6,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,7.2,23,97300,1013,1326,389,760,752,184,80700,76700,22000,5960,210,2.1,0,0,64.4,77777,9,999999999,140,0.2090,0,88,999.000,999.0,99.0 +1986,6,6,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,6.1,20,97300,1171,1326,394,911,799,204,94100,79800,23500,8900,70,1.5,0,0,64.4,77777,9,999999999,130,0.2090,0,88,999.000,999.0,99.0 +1986,6,6,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.9,5.0,16,97200,1269,1326,404,1005,825,214,104500,82600,25300,15390,340,2.1,0,0,64.4,77777,9,999999999,120,0.2090,0,88,999.000,999.0,99.0 +1986,6,6,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.7,6.1,15,97200,1300,1326,420,1032,828,218,107400,82900,26000,20450,120,2.1,0,0,64.4,77777,9,999999999,130,0.2090,0,88,999.000,999.0,99.0 +1986,6,6,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.2,7.2,16,97100,1261,1326,424,993,817,214,103100,81700,25200,14570,320,1.5,0,0,64.4,77777,9,999999999,140,0.2090,0,88,999.000,999.0,99.0 +1986,6,6,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,38.3,9.4,17,97100,1156,1326,434,891,789,202,95500,80900,24900,9450,240,2.1,0,0,64.4,77777,9,999999999,160,0.2090,0,88,999.000,999.0,99.0 +1986,6,6,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.8,8.9,17,97000,991,1326,430,737,743,181,78200,75700,21600,5620,250,3.6,0,0,56.3,77777,9,999999999,150,0.2090,0,88,999.000,999.0,99.0 +1986,6,6,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,38.3,8.3,16,97000,778,1326,432,540,664,151,56700,66400,17600,3480,270,3.6,0,0,56.3,77777,9,999999999,150,0.2090,0,88,999.000,999.0,99.0 +1986,6,6,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.2,7.8,16,96900,532,1326,425,320,525,110,33100,49400,13200,2110,300,3.1,0,0,56.3,77777,9,999999999,140,0.2090,0,88,999.000,999.0,99.0 +1986,6,6,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.7,6.7,16,96900,269,1326,421,117,266,64,12300,20100,8200,1160,280,3.6,0,0,56.3,77777,9,999999999,140,0.2090,0,88,999.000,999.0,99.0 +1986,6,6,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.0,5.0,15,96900,38,741,409,17,10,15,1700,500,1700,370,270,4.1,0,0,56.3,77777,9,999999999,120,0.2090,0,88,999.000,999.0,99.0 +1986,6,6,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,3.3,15,96900,0,0,398,0,0,0,0,0,0,0,250,3.6,0,0,56.3,77777,9,999999999,110,0.1190,0,88,999.000,999.0,99.0 +1986,6,6,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,3.9,17,97000,0,0,391,0,0,0,0,0,0,0,280,2.6,0,0,56.3,77777,9,999999999,110,0.1190,0,88,999.000,999.0,99.0 +1986,6,6,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,5.0,19,97000,0,0,389,0,0,0,0,0,0,0,270,2.6,0,0,56.3,77777,9,999999999,120,0.1190,0,88,999.000,999.0,99.0 +1986,6,6,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,5.0,21,97000,0,0,380,0,0,0,0,0,0,0,270,2.1,0,0,56.3,77777,9,999999999,120,0.1190,0,88,999.000,999.0,99.0 +1986,6,7,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,5.0,23,97000,0,0,375,0,0,0,0,0,0,0,10,2.1,0,0,56.3,77777,9,999999999,120,0.1190,0,88,999.000,999.0,99.0 +1986,6,7,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,4.4,23,97000,0,0,369,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,120,0.1190,0,88,999.000,999.0,99.0 +1986,6,7,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,6.1,27,97000,0,0,368,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,130,0.1190,0,88,999.000,999.0,99.0 +1986,6,7,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,5.0,26,97000,0,0,364,0,0,0,0,0,0,0,130,2.1,0,0,56.3,77777,9,999999999,120,0.1190,0,88,999.000,999.0,99.0 +1986,6,7,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,6.7,31,97000,0,0,361,0,0,0,0,0,0,0,120,2.1,0,0,80.5,77777,9,999999999,140,0.1190,0,88,999.000,999.0,99.0 +1986,6,7,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,5.6,29,97100,55,895,360,22,20,20,2300,1100,2300,480,100,2.1,0,0,64.4,77777,9,999999999,130,0.2070,0,88,999.000,999.0,99.0 +1986,6,7,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,5.0,25,97100,299,1326,367,140,312,69,14600,24700,9000,1250,60,2.1,0,0,56.3,77777,9,999999999,120,0.2070,0,88,999.000,999.0,99.0 +1986,6,7,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,3.9,21,97100,561,1326,374,350,555,115,36100,52800,13800,2240,60,2.1,0,0,56.3,77777,9,999999999,110,0.2070,0,88,999.000,999.0,99.0 +1986,6,7,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,2.2,16,97100,805,1326,385,573,688,154,60000,69000,18100,3650,30,1.5,0,0,56.3,77777,9,999999999,100,0.2070,0,88,999.000,999.0,99.0 +1986,6,7,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,2.2,16,97100,1013,1326,385,767,762,183,81400,77700,21900,5930,30,1.5,0,0,64.4,77777,9,999999999,100,0.2070,0,88,999.000,999.0,99.0 +1986,6,7,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34.4,1.1,12,97100,1171,1326,401,921,811,203,95100,81000,23400,8870,120,3.1,0,0,64.4,77777,9,999999999,90,0.2070,0,88,999.000,999.0,99.0 +1986,6,7,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.1,-1.1,9,97000,1269,1326,407,1017,837,213,105700,83800,25300,15350,90,3.1,0,0,64.4,77777,9,999999999,80,0.2070,0,88,999.000,999.0,99.0 +1986,6,7,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.2,-3.3,7,97000,1300,1326,409,1049,847,217,109300,84800,26000,20470,100,1.0,0,0,64.4,77777,9,999999999,70,0.2070,0,88,999.000,999.0,99.0 +1986,6,7,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.8,-4.4,7,96900,1262,1326,411,1011,838,213,105200,83900,25200,14580,80,2.6,0,0,64.4,77777,9,999999999,70,0.2070,0,88,999.000,999.0,99.0 +1986,6,7,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,38.3,-2.2,8,96800,1157,1326,417,912,803,210,97500,82200,25600,9830,100,3.1,1,0,64.4,77777,9,999999999,80,0.2070,0,88,999.000,999.0,99.0 +1986,6,7,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,38.9,-0.6,8,96700,992,1326,422,754,755,188,79800,76700,22200,5830,280,5.2,1,0,64.4,77777,9,999999999,80,0.2070,0,88,999.000,999.0,99.0 +1986,6,7,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,38.3,-1.1,8,96600,780,1326,418,550,681,150,57700,68100,17600,3470,310,3.6,0,0,64.4,77777,9,999999999,80,0.2070,0,88,999.000,999.0,99.0 +1986,6,7,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,38.9,-3.3,7,96500,533,1326,418,328,542,110,33800,51100,13300,2110,240,5.2,0,0,64.4,77777,9,999999999,70,0.2070,0,88,999.000,999.0,99.0 +1986,6,7,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.2,-2.2,8,96500,271,1326,411,120,279,64,12600,21100,8300,1160,250,6.2,0,0,64.4,77777,9,999999999,70,0.2070,0,88,999.000,999.0,99.0 +1986,6,7,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.0,-1.1,10,96500,39,763,401,17,11,16,1800,600,1800,390,240,4.6,0,0,64.4,77777,9,999999999,80,0.2070,0,88,999.000,999.0,99.0 +1986,6,7,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.9,-0.6,11,96600,0,0,396,0,0,0,0,0,0,0,250,4.1,0,0,56.3,77777,9,999999999,80,0.1190,0,88,999.000,999.0,99.0 +1986,6,7,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,-1.1,12,96700,0,0,386,0,0,0,0,0,0,0,270,3.1,0,0,56.3,77777,9,999999999,80,0.1190,0,88,999.000,999.0,99.0 +1986,6,7,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,-1.7,12,96700,0,0,380,0,0,0,0,0,0,0,330,1.0,0,0,56.3,77777,9,999999999,80,0.1190,0,88,999.000,999.0,99.0 +1986,6,7,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,-0.6,13,96700,0,0,379,0,0,0,0,0,0,0,20,2.1,0,0,56.3,77777,9,999999999,80,0.1190,0,88,999.000,999.0,99.0 +1986,6,8,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,-2.2,13,96700,0,0,368,0,0,0,0,0,0,0,310,2.1,0,0,56.3,77777,9,999999999,80,0.1190,0,88,999.000,999.0,99.0 +1986,6,8,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,-1.1,16,96700,0,0,362,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,80,0.1190,0,88,999.000,999.0,99.0 +1986,6,8,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,-0.6,17,96700,0,0,357,0,0,0,0,0,0,0,140,1.5,0,0,56.3,77777,9,999999999,80,0.1190,0,88,999.000,999.0,99.0 +1986,6,8,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,0.0,19,96700,0,0,355,0,0,0,0,0,0,0,70,3.1,0,0,56.3,77777,9,999999999,90,0.1190,0,88,999.000,999.0,99.0 +1986,6,8,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,-0.6,19,96700,0,0,349,0,0,0,0,0,0,0,100,3.6,0,0,72.4,77777,9,999999999,80,0.1190,0,88,999.000,999.0,99.0 +1986,6,8,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,-1.7,18,96800,55,895,345,29,99,18,2600,3900,2300,310,80,4.1,0,0,80.5,77777,9,999999999,80,0.0920,0,88,999.000,999.0,99.0 +1986,6,8,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,1.1,22,96800,299,1326,351,165,518,48,17100,41800,7700,900,160,2.1,0,0,64.4,77777,9,999999999,100,0.0920,0,88,999.000,999.0,99.0 +1986,6,8,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,0.0,18,96900,561,1326,361,383,731,74,40000,70000,10300,1520,80,3.1,0,0,64.4,77777,9,999999999,90,0.0920,0,88,999.000,999.0,99.0 +1986,6,8,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,-1.7,13,96900,804,1326,372,606,838,97,64300,83900,13300,2340,30,1.5,0,0,64.4,77777,9,999999999,80,0.0920,0,88,999.000,999.0,99.0 +1986,6,8,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,-2.2,11,96800,1012,1326,382,798,893,114,82300,89200,14100,2970,0,0.0,0,0,64.4,77777,9,999999999,80,0.0920,0,88,999.000,999.0,99.0 +1986,6,8,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,-4.4,8,96800,1171,1326,387,953,935,126,98100,93700,15100,4930,80,2.6,0,0,64.4,77777,9,999999999,60,0.0920,0,88,999.000,999.0,99.0 +1986,6,8,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.9,-3.3,9,96700,1269,1326,392,1040,946,132,106700,94900,15600,8330,0,0.0,0,0,64.4,77777,9,999999999,70,0.0920,0,88,999.000,999.0,99.0 +1986,6,8,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.6,-1.1,10,96700,1300,1326,404,1066,948,135,109400,95100,15900,11110,270,4.6,0,0,64.4,77777,9,999999999,80,0.0920,0,88,999.000,999.0,99.0 +1986,6,8,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.1,-1.7,9,96700,1262,1326,406,1029,941,132,105700,94400,15600,7940,310,5.2,0,0,64.4,77777,9,999999999,80,0.0920,0,88,999.000,999.0,99.0 +1986,6,8,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.7,-1.7,9,96600,1157,1326,409,931,923,124,95800,92500,14900,4650,250,5.2,0,0,72.4,77777,9,999999999,80,0.0920,0,88,999.000,999.0,99.0 +1986,6,8,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.1,-3.3,8,96500,993,1326,403,782,894,112,80900,89200,13900,2840,240,6.7,0,0,72.4,77777,9,999999999,70,0.0920,0,88,999.000,999.0,99.0 +1986,6,8,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.6,-1.7,9,96500,781,1326,403,582,829,94,61800,82800,12900,2230,240,6.2,0,0,64.4,77777,9,999999999,80,0.0920,0,88,999.000,999.0,99.0 +1986,6,8,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.0,-3.9,8,96500,535,1326,397,361,721,71,37700,68500,10000,1450,270,4.1,0,0,64.4,77777,9,999999999,70,0.0920,0,88,999.000,999.0,99.0 +1986,6,8,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.9,-3.9,9,96500,273,1326,391,145,490,45,15100,38200,7300,830,260,4.6,0,0,64.4,77777,9,999999999,70,0.0920,0,88,999.000,999.0,99.0 +1986,6,8,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,-1.1,11,96600,40,762,389,23,69,16,2100,2100,2000,270,220,2.1,0,0,56.3,77777,9,999999999,80,0.0920,0,88,999.000,999.0,99.0 +1986,6,8,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,-1.7,12,96600,0,0,380,0,0,0,0,0,0,0,220,2.6,0,0,56.3,77777,9,999999999,80,0.1190,0,88,999.000,999.0,99.0 +1986,6,8,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,-1.7,12,96700,0,0,378,0,0,0,0,0,0,0,220,2.6,0,0,56.3,77777,9,999999999,80,0.1190,0,88,999.000,999.0,99.0 +1986,6,8,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,-1.1,13,96700,0,0,375,0,0,0,0,0,0,0,230,2.1,0,0,56.3,77777,9,999999999,80,0.1190,0,88,999.000,999.0,99.0 +1986,6,8,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,0.0,16,96700,0,0,368,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,90,0.1190,0,88,999.000,999.0,99.0 +1986,6,9,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,2.8,20,96700,0,0,370,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,110,0.1200,0,88,999.000,999.0,99.0 +1986,6,9,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,3.3,22,96700,0,0,367,0,0,0,0,0,0,0,60,2.1,0,0,56.3,77777,9,999999999,110,0.1200,0,88,999.000,999.0,99.0 +1986,6,9,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,3.3,23,96800,0,0,362,0,0,0,0,0,0,0,60,3.1,0,0,56.3,77777,9,999999999,110,0.1200,0,88,999.000,999.0,99.0 +1986,6,9,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,1.7,23,96800,0,0,352,0,0,0,0,0,0,0,100,3.1,0,0,56.3,77777,9,999999999,100,0.1200,0,88,999.000,999.0,99.0 +1986,6,9,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,2.2,24,96900,0,0,352,0,0,0,0,0,0,0,80,3.1,0,0,56.3,77777,9,999999999,100,0.1200,0,88,999.000,999.0,99.0 +1986,6,9,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,3.9,28,96900,55,895,349,30,124,18,2800,4900,2500,310,60,3.1,0,0,56.3,77777,9,999999999,110,0.0750,0,88,999.000,999.0,99.0 +1986,6,9,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,5.0,28,96900,299,1325,359,168,555,43,17200,45700,6900,840,80,4.6,0,0,64.4,77777,9,999999999,120,0.0750,0,88,999.000,999.0,99.0 +1986,6,9,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,5.6,25,97000,561,1325,370,384,750,66,40500,72200,9900,1420,100,3.1,0,0,56.3,77777,9,999999999,130,0.0750,0,88,999.000,999.0,99.0 +1986,6,9,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,5.6,23,97100,804,1325,379,601,846,87,62600,83700,11700,1930,70,2.1,0,0,56.3,77777,9,999999999,130,0.0750,0,88,999.000,999.0,99.0 +1986,6,9,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,5.6,20,97100,1012,1325,390,790,898,102,81700,89800,13000,2850,290,3.1,0,0,56.3,77777,9,999999999,130,0.0750,0,88,999.000,999.0,99.0 +1986,6,9,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,5.0,17,97100,1171,1325,398,938,932,113,96800,93500,14000,4620,250,3.6,0,0,48.3,77777,9,999999999,120,0.0750,0,88,999.000,999.0,99.0 +1986,6,9,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.9,3.9,15,97000,1269,1325,402,1031,949,119,106000,95300,14600,7710,240,4.1,0,0,48.3,77777,9,999999999,110,0.0750,0,88,999.000,999.0,99.0 +1986,6,9,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.1,5.0,14,97000,1300,1325,415,1056,951,121,108600,95500,14700,10210,210,4.6,0,0,48.3,77777,9,999999999,120,0.0750,0,88,999.000,999.0,99.0 +1986,6,9,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.7,0.0,10,96900,1262,1325,411,1030,954,119,106000,95800,14600,7380,280,4.6,0,0,48.3,77777,9,999999999,90,0.0750,0,88,999.000,999.0,99.0 +1986,6,9,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.2,2.2,11,96900,1158,1325,417,931,935,112,96100,93800,14000,4390,240,4.6,0,0,48.3,77777,9,999999999,100,0.0750,0,88,999.000,999.0,99.0 +1986,6,9,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.8,0.6,10,96800,994,1325,418,781,905,101,80900,90400,13000,2740,250,5.7,0,0,56.3,77777,9,999999999,90,0.0750,0,88,999.000,999.0,99.0 +1986,6,9,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.8,0.6,10,96700,782,1325,418,587,850,85,61200,83900,11600,1870,200,5.2,0,0,56.3,77777,9,999999999,90,0.0750,0,88,999.000,999.0,99.0 +1986,6,9,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.8,-3.3,7,96700,537,1325,412,368,754,64,38900,72000,9700,1360,240,6.2,0,0,56.3,77777,9,999999999,70,0.0750,0,88,999.000,999.0,99.0 +1986,6,9,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.7,-6.1,6,96800,274,1325,402,151,537,41,15500,43000,6600,780,240,5.7,0,0,56.3,77777,9,999999999,60,0.0750,0,88,999.000,999.0,99.0 +1986,6,9,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34.4,-7.2,6,96800,41,784,389,24,91,14,2100,3300,1900,240,300,4.1,0,0,56.3,77777,9,999999999,50,0.0750,0,88,999.000,999.0,99.0 +1986,6,9,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,-8.9,6,96900,0,0,381,0,0,0,0,0,0,0,280,3.6,0,0,56.3,77777,9,999999999,50,0.1200,0,88,999.000,999.0,99.0 +1986,6,9,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,-7.8,7,97000,0,0,377,0,0,0,0,0,0,0,320,3.6,0,0,56.3,77777,9,999999999,50,0.1200,0,88,999.000,999.0,99.0 +1986,6,9,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,-4.4,11,97000,0,0,366,0,0,0,0,0,0,0,230,2.1,0,0,56.3,77777,9,999999999,70,0.1200,0,88,999.000,999.0,99.0 +1986,6,9,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,-4.4,13,97100,0,0,355,0,0,0,0,0,0,0,230,3.1,0,0,56.3,77777,9,999999999,70,0.1200,0,88,999.000,999.0,99.0 +1986,6,10,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,-5.6,12,97100,0,0,353,0,0,0,0,0,0,0,350,2.6,0,0,56.3,77777,9,999999999,60,0.1200,0,88,999.000,999.0,99.0 +1986,6,10,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,-3.3,14,97200,0,0,356,0,0,0,0,0,0,0,330,1.5,0,0,56.3,77777,9,999999999,70,0.1200,0,88,999.000,999.0,99.0 +1986,6,10,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,-0.6,17,97200,0,0,357,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,80,0.1200,0,88,999.000,999.0,99.0 +1986,6,10,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,3.9,26,97200,0,0,355,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,110,0.1200,0,88,999.000,999.0,99.0 +1986,6,10,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,3.3,25,97300,0,0,354,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,110,0.1200,0,88,999.000,999.0,99.0 +1986,6,10,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,0.6,22,97300,55,894,348,34,178,16,2800,8300,2300,290,110,3.1,0,0,56.3,77777,9,999999999,90,0.0490,0,88,999.000,999.0,99.0 +1986,6,10,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,-2.2,16,97400,299,1325,353,178,632,35,18600,52600,6700,740,90,2.1,0,0,56.3,77777,9,999999999,80,0.0490,0,88,999.000,999.0,99.0 +1986,6,10,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,0.0,15,97400,561,1325,374,397,808,54,41700,77200,9000,1280,180,3.1,0,0,56.3,77777,9,999999999,90,0.0490,0,88,999.000,999.0,99.0 +1986,6,10,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,-1.1,12,97500,804,1325,381,616,897,71,64500,88800,10500,1800,90,1.5,0,0,56.3,77777,9,999999999,80,0.0490,0,88,999.000,999.0,99.0 +1986,6,10,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,-2.2,10,97500,1012,1325,390,807,944,85,84100,94500,11800,2600,120,2.1,0,0,48.3,77777,9,999999999,80,0.0490,0,88,999.000,999.0,99.0 +1986,6,10,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.0,-0.6,10,97500,1170,1325,401,954,972,94,99000,97600,12600,4080,310,2.1,0,0,48.3,77777,9,999999999,80,0.0490,0,88,999.000,999.0,99.0 +1986,6,10,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.7,-2.8,8,97500,1269,1325,407,1048,988,99,108400,99300,13100,6670,100,2.1,0,0,48.3,77777,9,999999999,70,0.0490,0,88,999.000,999.0,99.0 +1986,6,10,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.8,-6.1,6,97400,1300,1325,408,1081,997,101,111800,100200,13300,8800,290,3.6,0,0,48.3,77777,9,999999999,60,0.0490,0,88,999.000,999.0,99.0 +1986,6,10,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,38.3,-2.8,7,97400,1263,1325,416,1041,987,99,107800,99200,13100,6410,300,5.2,0,0,48.3,77777,9,999999999,70,0.0490,0,88,999.000,999.0,99.0 +1986,6,10,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.8,-5.0,6,97300,1159,1325,410,948,977,93,98500,98100,12500,3900,270,4.1,0,0,48.3,77777,9,999999999,60,0.0490,0,88,999.000,999.0,99.0 +1986,6,10,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,38.9,-4.4,6,97300,995,1325,416,797,949,83,83100,95000,11600,2500,240,5.2,0,0,56.3,77777,9,999999999,60,0.0490,0,88,999.000,999.0,99.0 +1986,6,10,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.8,-4.4,7,97200,783,1325,411,598,895,70,62800,88500,10400,1750,200,4.6,0,0,56.3,77777,9,999999999,70,0.0490,0,88,999.000,999.0,99.0 +1986,6,10,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,38.3,-5.6,6,97200,538,1325,411,380,808,52,40100,76700,8900,1240,280,3.6,0,0,56.3,77777,9,999999999,60,0.0490,0,88,999.000,999.0,99.0 +1986,6,10,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.2,-4.4,7,97200,276,1325,407,159,608,33,16700,49300,6400,700,240,4.6,0,0,56.3,77777,9,999999999,70,0.0490,0,88,999.000,999.0,99.0 +1986,6,10,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.0,-3.3,8,97200,42,784,398,28,138,13,2200,6100,1800,240,240,2.6,0,0,56.3,77777,9,999999999,70,0.0490,0,88,999.000,999.0,99.0 +1986,6,10,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,-0.6,11,97300,0,0,393,0,0,0,0,0,0,0,240,1.5,0,0,56.3,77777,9,999999999,80,0.1200,0,88,999.000,999.0,99.0 +1986,6,10,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,-0.6,12,97300,0,0,387,0,0,0,0,0,0,0,280,2.1,0,0,56.3,77777,9,999999999,80,0.1200,0,88,999.000,999.0,99.0 +1986,6,10,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,2.8,17,97300,0,0,384,0,0,0,0,0,0,0,70,2.1,0,0,48.3,77777,9,999999999,110,0.1200,0,88,999.000,999.0,99.0 +1986,6,10,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,3.9,19,97300,0,0,382,0,0,0,0,0,0,0,110,1.5,0,0,56.3,77777,9,999999999,110,0.1200,0,88,999.000,999.0,99.0 +1986,6,11,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,4.4,21,97300,0,0,377,0,0,0,0,0,0,0,110,1.5,0,0,56.3,77777,9,999999999,120,0.1200,0,88,999.000,999.0,99.0 +1986,6,11,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,3.3,21,97300,0,0,370,0,0,0,0,0,0,0,100,2.1,0,0,56.3,77777,9,999999999,110,0.1200,0,88,999.000,999.0,99.0 +1986,6,11,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,3.9,22,97300,0,0,371,0,0,0,0,0,0,0,110,2.1,0,0,56.3,77777,9,999999999,120,0.1200,0,88,999.000,999.0,99.0 +1986,6,11,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,1.1,19,97300,0,0,362,0,0,0,0,0,0,0,100,2.6,0,0,56.3,77777,9,999999999,100,0.1200,0,88,999.000,999.0,99.0 +1986,6,11,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,0.6,20,97400,0,0,356,0,0,0,0,0,0,0,110,2.6,0,0,56.3,77777,9,999999999,90,0.1200,0,88,999.000,999.0,99.0 +1986,6,11,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,1.1,20,97400,55,916,357,34,181,15,2800,8500,2200,280,110,2.1,0,0,56.3,77777,9,999999999,90,0.0480,0,88,999.000,999.0,99.0 +1986,6,11,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,1.7,19,97400,299,1325,365,177,628,35,18500,52300,6700,740,90,3.1,0,0,56.3,77777,9,999999999,100,0.0480,0,88,999.000,999.0,99.0 +1986,6,11,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,2.2,18,97500,560,1325,374,395,807,54,41700,77100,9000,1280,70,2.6,0,0,56.3,77777,9,999999999,100,0.0480,0,88,999.000,999.0,99.0 +1986,6,11,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,1.1,13,97500,803,1325,392,615,896,71,64400,88700,10500,1800,70,2.1,0,0,56.3,77777,9,999999999,90,0.0480,0,88,999.000,999.0,99.0 +1986,6,11,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.0,0.6,11,97500,1011,1325,403,804,941,84,83700,94200,11700,2590,90,2.1,0,0,48.3,77777,9,999999999,90,0.0480,0,88,999.000,999.0,99.0 +1986,6,11,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.8,-0.6,9,97500,1170,1325,416,950,968,93,98600,97200,12500,4050,110,2.6,0,0,48.3,77777,9,999999999,90,0.0480,0,88,999.000,999.0,99.0 +1986,6,11,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,38.3,-0.6,9,97400,1269,1325,419,1042,983,98,107800,98800,13000,6620,160,3.1,0,0,48.3,77777,9,999999999,90,0.0480,0,88,999.000,999.0,99.0 +1986,6,11,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,39.4,-1.1,8,97300,1300,1325,424,1072,989,100,111000,99400,13200,8750,220,2.6,0,0,48.3,77777,9,999999999,80,0.0480,0,88,999.000,999.0,99.0 +1986,6,11,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,40.6,-2.8,6,97300,1263,1325,428,1041,988,98,107900,99300,13000,6380,190,1.5,0,0,56.3,77777,9,999999999,70,0.0480,0,88,999.000,999.0,99.0 +1986,6,11,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,40.0,-3.3,6,97200,1159,1325,424,945,974,92,98200,97800,12500,3880,40,1.5,0,0,56.3,77777,9,999999999,70,0.0480,0,88,999.000,999.0,99.0 +1986,6,11,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,41.7,-1.7,7,97100,996,1325,436,792,942,83,82600,94300,11600,2500,300,2.1,0,0,56.3,77777,9,999999999,80,0.0480,0,88,999.000,999.0,99.0 +1986,6,11,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,41.1,-2.8,6,97000,785,1325,431,600,897,69,63000,88700,10300,1740,250,2.1,0,0,56.3,77777,9,999999999,70,0.0480,0,88,999.000,999.0,99.0 +1986,6,11,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,41.1,-2.2,6,97000,539,1325,432,379,806,52,40100,76600,8900,1240,240,2.1,0,0,64.4,77777,9,999999999,70,0.0480,0,88,999.000,999.0,99.0 +1986,6,11,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,39.4,-2.2,7,97000,278,1325,422,160,612,33,16800,49800,6400,700,240,3.1,0,0,64.4,77777,9,999999999,70,0.0480,0,88,999.000,999.0,99.0 +1986,6,11,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.8,-3.3,7,97000,43,806,412,29,142,14,2300,6300,1900,260,260,2.6,0,0,56.3,77777,9,999999999,70,0.0480,0,88,999.000,999.0,99.0 +1986,6,11,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.6,-1.1,10,97000,0,0,404,0,0,0,0,0,0,0,260,2.6,0,0,56.3,77777,9,999999999,80,0.1200,0,88,999.000,999.0,99.0 +1986,6,11,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.9,2.2,13,97000,0,0,400,0,0,0,0,0,0,0,230,1.5,0,0,56.3,77777,9,999999999,100,0.1200,0,88,999.000,999.0,99.0 +1986,6,11,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,2.8,15,97000,0,0,395,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,110,0.1200,0,88,999.000,999.0,99.0 +1986,6,11,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,5.0,18,97000,0,0,395,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,120,0.1200,0,88,999.000,999.0,99.0 +1986,6,12,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,5.6,20,97000,0,0,390,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,130,0.1200,0,88,999.000,999.0,99.0 +1986,6,12,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,3.9,20,97000,0,0,377,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,110,0.1200,0,88,999.000,999.0,99.0 +1986,6,12,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,3.9,20,97000,0,0,379,0,0,0,0,0,0,0,110,2.1,0,0,56.3,77777,9,999999999,110,0.1200,0,88,999.000,999.0,99.0 +1986,6,12,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,3.9,22,97100,0,0,371,0,0,0,0,0,0,0,40,1.5,0,0,56.3,77777,9,999999999,110,0.1200,0,88,999.000,999.0,99.0 +1986,6,12,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,4.4,23,97100,0,0,369,0,0,0,0,0,0,0,140,2.1,0,0,56.3,77777,9,999999999,120,0.1200,0,88,999.000,999.0,99.0 +1986,6,12,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,5.0,25,97200,55,916,367,28,86,19,2600,3400,2400,330,60,2.6,0,0,56.3,77777,9,999999999,120,0.1030,0,88,999.000,999.0,99.0 +1986,6,12,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,2.8,21,97200,299,1325,367,162,493,50,16700,39700,7800,930,80,3.1,0,0,56.3,77777,9,999999999,110,0.1030,0,88,999.000,999.0,99.0 +1986,6,12,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,2.2,17,97300,560,1325,377,379,710,78,39200,67800,10500,1560,100,3.6,0,0,40.2,77777,9,999999999,100,0.1030,0,88,999.000,999.0,99.0 +1986,6,12,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,-1.1,11,97300,803,1325,389,601,821,102,63400,82000,13500,2410,100,3.1,0,0,40.2,77777,9,999999999,80,0.1030,0,88,999.000,999.0,99.0 +1986,6,12,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.6,-0.6,10,97300,1011,1325,405,793,880,121,81800,87800,14600,3020,190,2.1,0,0,40.2,77777,9,999999999,80,0.1030,0,88,999.000,999.0,99.0 +1986,6,12,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,38.3,0.6,9,97300,1170,1325,421,939,911,133,96400,91200,15700,5070,190,2.1,0,0,40.2,77777,9,999999999,90,0.1030,0,88,999.000,999.0,99.0 +1986,6,12,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,40.6,-1.1,7,97200,1268,1325,431,1034,932,140,105900,93400,16300,8720,170,1.5,0,0,40.2,77777,9,999999999,80,0.1030,0,88,999.000,999.0,99.0 +1986,6,12,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,41.7,-1.7,7,97100,1300,1325,436,1064,937,143,109000,94000,16500,11800,350,2.1,0,0,40.2,77777,9,999999999,80,0.1030,0,88,999.000,999.0,99.0 +1986,6,12,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,42.8,-3.9,5,97100,1263,1325,438,1037,939,140,106300,94100,16300,8410,260,5.2,0,0,48.3,77777,9,999999999,60,0.1030,0,88,999.000,999.0,99.0 +1986,6,12,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,43.3,-3.9,5,97000,1160,1325,441,935,916,132,96100,91700,15600,4860,250,4.6,0,0,48.3,77777,9,999999999,70,0.1030,0,88,999.000,999.0,99.0 +1986,6,12,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,42.8,-2.8,6,97000,997,1325,440,780,877,119,80400,87500,14500,2910,220,4.1,0,0,48.3,77777,9,999999999,80,0.1030,0,88,999.000,999.0,99.0 +1986,6,12,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,42.2,-3.3,6,96900,786,1325,436,586,819,100,61800,81700,13300,2330,280,4.1,0,0,48.3,77777,9,999999999,70,0.1030,0,88,999.000,999.0,99.0 +1986,6,12,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,41.7,-4.4,5,96800,541,1325,432,365,710,76,37900,67400,10300,1510,240,3.1,0,0,56.3,77777,9,999999999,60,0.1030,0,88,999.000,999.0,99.0 +1986,6,12,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,40.6,-2.8,6,96800,279,1325,428,147,476,48,15300,37400,7500,890,290,3.1,0,0,56.3,77777,9,999999999,70,0.1030,0,88,999.000,999.0,99.0 +1986,6,12,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,38.9,-1.1,8,96900,44,806,421,24,66,17,2200,2100,2100,290,270,2.6,0,0,56.3,77777,9,999999999,80,0.1030,0,88,999.000,999.0,99.0 +1986,6,12,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.7,-0.6,9,96900,0,0,410,0,0,0,0,0,0,0,250,2.1,0,0,56.3,77777,9,999999999,80,0.1200,0,88,999.000,999.0,99.0 +1986,6,12,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34.4,2.2,13,97000,0,0,402,0,0,0,0,0,0,0,230,2.1,0,0,56.3,77777,9,999999999,100,0.1200,0,88,999.000,999.0,99.0 +1986,6,12,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34.4,0.0,11,97000,0,0,399,0,0,0,0,0,0,0,240,3.1,0,0,56.3,77777,9,999999999,90,0.1200,0,88,999.000,999.0,99.0 +1986,6,12,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,3.3,17,97000,0,0,390,0,0,0,0,0,0,0,240,2.1,0,0,56.3,77777,9,999999999,110,0.1200,0,88,999.000,999.0,99.0 +1986,6,13,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,3.9,18,97100,0,0,388,0,0,0,0,0,0,0,330,1.5,0,0,56.3,77777,9,999999999,110,0.1210,0,88,999.000,999.0,99.0 +1986,6,13,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,3.9,19,97100,0,0,382,0,0,0,0,0,0,0,330,2.1,0,0,56.3,77777,9,999999999,110,0.1210,0,88,999.000,999.0,99.0 +1986,6,13,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,2.8,18,97100,0,0,381,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,110,0.1210,0,88,999.000,999.0,99.0 +1986,6,13,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,3.9,20,97100,0,0,377,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,110,0.1210,0,88,999.000,999.0,99.0 +1986,6,13,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,5.0,24,97200,0,0,370,0,0,0,0,0,0,0,100,3.6,0,0,56.3,77777,9,999999999,120,0.1210,0,88,999.000,999.0,99.0 +1986,6,13,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,3.9,23,97300,55,916,366,30,126,18,2800,5000,2500,310,70,3.1,0,0,48.3,77777,9,999999999,110,0.0740,0,88,999.000,999.0,99.0 +1986,6,13,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,3.3,21,97300,299,1324,370,169,558,43,17300,45900,6900,830,70,4.1,0,0,48.3,77777,9,999999999,110,0.0740,0,88,999.000,999.0,99.0 +1986,6,13,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,4.4,20,97400,560,1324,380,385,753,66,40600,72400,9900,1420,80,4.1,0,0,48.3,77777,9,999999999,120,0.0740,0,88,999.000,999.0,99.0 +1986,6,13,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,4.4,17,97400,802,1324,394,602,850,86,62700,84100,11600,1920,60,3.6,0,0,40.2,77777,9,999999999,110,0.0740,0,88,999.000,999.0,99.0 +1986,6,13,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.0,4.4,15,97400,1010,1324,409,790,900,102,81800,90000,13000,2850,80,3.6,0,0,40.2,77777,9,999999999,120,0.0740,0,88,999.000,999.0,99.0 +1986,6,13,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.7,0.6,10,97400,1169,1324,412,943,939,113,97400,94200,14100,4610,360,1.5,0,0,40.2,77777,9,999999999,90,0.0740,0,88,999.000,999.0,99.0 +1986,6,13,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,38.3,1.1,10,97400,1268,1324,421,1033,953,119,106400,95700,14600,7730,90,1.5,0,0,56.3,77777,9,999999999,100,0.0740,0,88,999.000,999.0,99.0 +1986,6,13,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,39.4,1.1,9,97400,1300,1324,427,1064,959,121,109500,96300,14700,10340,80,1.5,0,0,56.3,77777,9,999999999,90,0.0740,0,88,999.000,999.0,99.0 +1986,6,13,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,41.1,-0.6,7,97300,1264,1324,434,1034,957,119,106400,96100,14600,7490,250,2.1,0,0,56.3,77777,9,999999999,80,0.0740,0,88,999.000,999.0,99.0 +1986,6,13,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,41.7,-1.1,7,97200,1160,1324,437,938,941,112,96800,94400,14000,4440,10,3.1,0,0,56.3,77777,9,999999999,80,0.0740,0,88,999.000,999.0,99.0 +1986,6,13,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,41.1,0.6,8,97200,998,1324,436,784,906,101,81300,90500,13000,2760,20,2.1,0,0,56.3,77777,9,999999999,90,0.0740,0,88,999.000,999.0,99.0 +1986,6,13,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,41.7,-0.6,7,97100,787,1324,438,592,854,85,61800,84300,11600,1880,280,3.1,0,0,56.3,77777,9,999999999,80,0.0740,0,88,999.000,999.0,99.0 +1986,6,13,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,40.6,0.6,8,97100,542,1324,433,371,751,64,39200,71900,9700,1370,320,3.1,0,0,56.3,77777,9,999999999,90,0.0740,0,88,999.000,999.0,99.0 +1986,6,13,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,39.4,0.0,8,97100,281,1324,426,155,541,41,15900,43700,6600,790,310,2.6,0,0,56.3,77777,9,999999999,80,0.0740,0,88,999.000,999.0,99.0 +1986,6,13,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.8,0.6,10,97100,45,828,418,27,101,16,2300,3800,2100,280,290,2.6,0,0,56.3,77777,9,999999999,90,0.0740,0,88,999.000,999.0,99.0 +1986,6,13,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.7,1.7,11,97100,0,0,414,0,0,0,0,0,0,0,260,2.6,0,0,56.3,77777,9,999999999,100,0.1210,0,88,999.000,999.0,99.0 +1986,6,13,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34.4,2.8,14,97200,0,0,403,0,0,0,0,0,0,0,180,1.5,0,0,56.3,77777,9,999999999,110,0.1210,0,88,999.000,999.0,99.0 +1986,6,13,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,2.8,14,97200,0,0,397,0,0,0,0,0,0,0,260,1.5,0,0,56.3,77777,9,999999999,100,0.1210,0,88,999.000,999.0,99.0 +1986,6,13,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,3.3,16,97300,0,0,392,0,0,0,0,0,0,0,310,2.1,0,0,56.3,77777,9,999999999,110,0.1210,0,88,999.000,999.0,99.0 +1986,6,14,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,6.1,21,97200,0,0,388,0,0,0,0,0,0,0,340,2.1,0,0,56.3,77777,9,999999999,130,0.1210,0,88,999.000,999.0,99.0 +1986,6,14,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,2.8,17,97200,0,0,384,0,0,0,0,0,0,0,310,2.1,0,0,56.3,77777,9,999999999,110,0.1210,0,88,999.000,999.0,99.0 +1986,6,14,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,3.9,20,97300,0,0,377,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,110,0.1210,0,88,999.000,999.0,99.0 +1986,6,14,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,4.4,23,97300,0,0,372,0,0,0,0,0,0,0,160,1.5,0,0,56.3,77777,9,999999999,120,0.1210,0,88,999.000,999.0,99.0 +1986,6,14,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,4.4,23,97300,0,0,369,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,120,0.1210,0,88,999.000,999.0,99.0 +1986,6,14,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,3.3,20,97400,55,894,373,25,50,20,2500,1700,2400,350,180,1.5,0,0,56.3,77777,9,999999999,110,0.1430,0,88,999.000,999.0,99.0 +1986,6,14,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,4.4,20,97400,298,1324,380,152,412,59,15500,32900,8100,1060,80,2.6,0,0,56.3,77777,9,999999999,120,0.1430,0,88,999.000,999.0,99.0 +1986,6,14,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,5.0,20,97500,559,1324,387,364,640,93,38100,61500,12100,1880,90,2.6,0,0,64.4,77777,9,999999999,120,0.1430,0,88,999.000,999.0,99.0 +1986,6,14,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,2.2,14,97500,802,1324,394,586,763,123,62400,77300,15600,3000,80,3.1,0,0,64.4,77777,9,999999999,100,0.1430,0,88,999.000,999.0,99.0 +1986,6,14,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.6,2.2,12,97500,1010,1324,409,778,828,146,81600,83200,18000,4360,100,3.6,0,0,64.4,77777,9,999999999,100,0.1430,0,88,999.000,999.0,99.0 +1986,6,14,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.8,3.3,12,97400,1169,1324,422,926,864,161,98000,87300,20800,7410,150,3.1,0,0,64.4,77777,9,999999999,110,0.1430,0,88,999.000,999.0,99.0 +1986,6,14,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,38.9,4.4,12,97400,1268,1324,430,1016,882,169,108300,89300,22600,12630,260,2.1,0,0,64.4,77777,9,999999999,120,0.1430,0,88,999.000,999.0,99.0 +1986,6,14,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,41.1,2.8,9,97300,1300,1324,439,1051,893,172,112300,90500,23300,17030,140,1.5,0,0,64.4,77777,9,999999999,100,0.1430,0,88,999.000,999.0,99.0 +1986,6,14,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,41.7,3.3,9,97200,1264,1324,444,1015,885,169,108300,89600,22500,12270,240,3.1,0,0,72.4,77777,9,999999999,100,0.1430,0,88,999.000,999.0,99.0 +1986,6,14,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,42.2,2.2,8,97100,1161,1324,445,922,868,160,97700,87700,20600,7150,280,3.1,0,0,72.4,77777,9,999999999,90,0.1430,0,88,999.000,999.0,99.0 +1986,6,14,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,42.2,3.3,9,97100,998,1324,446,766,824,144,80300,82800,17800,4210,240,4.1,0,0,72.4,77777,9,999999999,110,0.1430,0,88,999.000,999.0,99.0 +1986,6,14,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,41.7,2.8,9,97000,788,1324,443,571,756,121,60900,76400,15300,2910,260,3.6,0,0,72.4,77777,9,999999999,100,0.1430,0,88,999.000,999.0,99.0 +1986,6,14,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,41.7,6.1,11,96900,543,1324,448,349,631,91,36700,60300,11900,1820,290,1.5,0,0,56.3,77777,9,999999999,120,0.1430,0,88,999.000,999.0,99.0 +1986,6,14,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,40.0,6.1,13,96900,282,1324,438,138,388,56,14200,30300,7700,1010,300,3.1,0,0,56.3,77777,9,999999999,130,0.1430,0,88,999.000,999.0,99.0 +1986,6,14,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,38.9,7.2,14,96900,46,827,434,21,37,17,2100,1600,2000,350,280,3.1,0,0,56.3,77777,9,999999999,130,0.1430,0,88,999.000,999.0,99.0 +1986,6,14,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.8,7.2,15,96900,0,0,428,0,0,0,0,0,0,0,280,2.1,0,0,56.3,77777,9,999999999,140,0.1210,0,88,999.000,999.0,99.0 +1986,6,14,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.1,7.8,18,96900,0,0,419,0,0,0,0,0,0,0,250,3.1,0,0,56.3,77777,9,999999999,150,0.1210,0,88,999.000,999.0,99.0 +1986,6,14,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34.4,7.8,19,96900,0,0,410,0,0,0,0,0,0,0,250,2.6,0,0,56.3,77777,9,999999999,140,0.1210,0,88,999.000,999.0,99.0 +1986,6,14,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,8.9,22,96900,0,0,406,0,0,0,0,0,0,0,250,3.1,0,0,56.3,77777,9,999999999,150,0.1210,0,88,999.000,999.0,99.0 +1986,6,15,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,8.3,23,96900,0,0,399,0,0,0,0,0,0,0,300,2.1,0,0,56.3,77777,9,999999999,150,0.1210,0,88,999.000,999.0,99.0 +1986,6,15,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,8.3,23,96900,0,0,397,0,0,0,0,0,0,0,70,1.5,0,0,56.3,77777,9,999999999,150,0.1210,0,88,999.000,999.0,99.0 +1986,6,15,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,8.3,23,96900,0,0,397,0,0,0,0,0,0,0,90,1.0,0,0,56.3,77777,9,999999999,150,0.1210,0,88,999.000,999.0,99.0 +1986,6,15,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,9.4,29,96900,0,0,386,0,0,0,0,0,0,0,100,3.1,0,0,56.3,77777,9,999999999,160,0.1210,0,88,999.000,999.0,99.0 +1986,6,15,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,8.3,27,96900,0,0,385,0,0,0,0,0,0,0,70,2.1,0,0,56.3,77777,9,999999999,150,0.1210,0,88,999.000,999.0,99.0 +1986,6,15,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,8.9,30,97000,55,894,380,29,107,18,2700,4300,2400,310,80,3.6,0,0,56.3,77777,9,999999999,160,0.0850,0,88,999.000,999.0,99.0 +1986,6,15,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,8.3,27,97000,298,1324,385,164,526,46,17100,42500,7600,870,90,4.1,0,0,80.5,77777,9,999999999,150,0.0850,0,88,999.000,999.0,99.0 +1986,6,15,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,8.9,24,97100,558,1324,397,378,728,70,39600,69800,10000,1470,60,3.1,0,0,64.4,77777,9,999999999,150,0.0850,0,88,999.000,999.0,99.0 +1986,6,15,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,9.4,23,97100,801,1324,406,591,824,92,63100,82600,13000,2250,80,2.6,0,0,56.3,77777,9,999999999,160,0.0850,0,88,999.000,999.0,99.0 +1986,6,15,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.6,9.4,20,97100,1009,1324,419,781,880,108,80700,87900,13500,2910,310,3.1,0,0,64.4,77777,9,999999999,160,0.0850,0,88,999.000,999.0,99.0 +1986,6,15,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,38.3,8.3,16,97100,1168,1324,432,928,914,120,95600,91600,14600,4780,20,2.1,0,0,72.4,77777,9,999999999,150,0.0850,0,88,999.000,999.0,99.0 +1986,6,15,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,39.4,8.9,16,97000,1268,1324,439,1017,928,126,104500,93100,15100,8070,110,2.1,0,0,48.3,77777,9,999999999,160,0.0850,0,88,999.000,999.0,99.0 +1986,6,15,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,40.6,8.9,15,97000,1300,1324,446,1046,933,128,107400,93600,15300,10880,10,3.1,0,0,48.3,77777,9,999999999,160,0.0850,0,88,999.000,999.0,99.0 +1986,6,15,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,41.7,6.7,12,96900,1264,1324,449,1019,934,126,104800,93700,15100,7860,320,3.6,0,0,64.4,77777,9,999999999,130,0.0850,0,88,999.000,999.0,99.0 +1986,6,15,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,42.8,6.1,11,96900,1161,1324,454,924,916,119,95200,91800,14500,4630,320,4.1,0,0,64.4,77777,9,999999999,130,0.0850,0,88,999.000,999.0,99.0 +1986,6,15,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,41.7,5.0,11,96800,999,1324,446,777,886,107,80400,88500,13400,2840,300,4.6,0,0,64.4,77777,9,999999999,120,0.0850,0,88,999.000,999.0,99.0 +1986,6,15,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,42.8,3.9,9,96700,789,1324,451,586,831,91,62600,83200,12900,2200,350,3.6,0,0,64.4,77777,9,999999999,110,0.0850,0,88,999.000,999.0,99.0 +1986,6,15,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,42.2,2.8,9,96700,545,1324,446,368,728,69,38600,69500,9900,1440,270,5.2,0,0,64.4,77777,9,999999999,110,0.0850,0,88,999.000,999.0,99.0 +1986,6,15,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,41.1,5.0,11,96700,284,1324,443,153,512,44,16000,40600,7300,830,280,3.6,0,0,64.4,77777,9,999999999,120,0.0850,0,88,999.000,999.0,99.0 +1986,6,15,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,39.4,5.6,12,96700,46,827,434,26,88,16,2300,3300,2100,280,280,4.6,0,0,56.3,77777,9,999999999,120,0.0850,0,88,999.000,999.0,99.0 +1986,6,15,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,38.3,4.4,12,96700,0,0,426,0,0,0,0,0,0,0,270,4.1,0,0,56.3,77777,9,999999999,110,0.1210,0,88,999.000,999.0,99.0 +1986,6,15,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.7,3.9,13,96800,0,0,417,0,0,0,0,0,0,0,250,3.1,0,0,56.3,77777,9,999999999,110,0.1210,0,88,999.000,999.0,99.0 +1986,6,15,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34.4,3.9,15,96800,0,0,405,0,0,0,0,0,0,0,260,2.6,0,0,56.3,77777,9,999999999,110,0.1210,0,88,999.000,999.0,99.0 +1986,6,15,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.9,3.3,15,96900,0,0,401,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,110,0.1210,0,88,999.000,999.0,99.0 +1986,6,16,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,2.8,15,96900,0,0,392,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,100,0.1210,0,88,999.000,999.0,99.0 +1986,6,16,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,5.0,19,96900,0,0,389,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,120,0.1210,0,88,999.000,999.0,99.0 +1986,6,16,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,3.9,18,96900,0,0,385,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,110,0.1210,0,88,999.000,999.0,99.0 +1986,6,16,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,4.4,20,97000,0,0,380,0,0,0,0,0,0,0,90,2.1,0,0,56.3,77777,9,999999999,110,0.1210,0,88,999.000,999.0,99.0 +1986,6,16,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,5.6,23,97100,0,0,379,0,0,0,0,0,0,0,100,4.1,0,0,56.3,77777,9,999999999,130,0.1210,0,88,999.000,999.0,99.0 +1986,6,16,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,3.3,20,97100,55,893,373,29,101,18,2600,4000,2400,310,70,3.6,0,0,56.3,77777,9,999999999,110,0.0890,0,88,999.000,999.0,99.0 +1986,6,16,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,4.4,21,97200,297,1324,377,164,519,47,17000,41900,7600,880,80,4.1,0,0,56.3,77777,9,999999999,120,0.0890,0,88,999.000,999.0,99.0 +1986,6,16,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,3.3,17,97300,558,1324,390,380,729,72,39600,69800,10200,1490,80,3.6,0,0,64.4,77777,9,999999999,110,0.0890,0,88,999.000,999.0,99.0 +1986,6,16,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.9,2.8,14,97300,801,1324,401,599,831,95,63600,83200,13200,2300,80,2.1,0,0,72.4,77777,9,999999999,100,0.0890,0,88,999.000,999.0,99.0 +1986,6,16,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.7,2.2,11,97300,1009,1324,414,789,887,112,81500,88600,13900,2940,90,1.5,0,0,48.3,77777,9,999999999,100,0.0890,0,88,999.000,999.0,99.0 +1986,6,16,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,38.9,-1.7,8,97300,1168,1324,421,944,928,124,97200,93000,14900,4860,300,2.1,0,0,56.3,77777,9,999999999,80,0.0890,0,88,999.000,999.0,99.0 +1986,6,16,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,40.0,-0.6,8,97200,1267,1324,428,1033,941,130,106000,94400,15400,8250,260,4.1,0,0,64.4,77777,9,999999999,90,0.0890,0,88,999.000,999.0,99.0 +1986,6,16,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,40.6,-1.7,7,97100,1300,1324,430,1067,949,133,109400,95200,15700,11240,120,2.1,0,0,64.4,77777,9,999999999,80,0.0890,0,88,999.000,999.0,99.0 +1986,6,16,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,40.6,0.6,8,97100,1264,1324,433,1030,941,130,105800,94400,15400,8070,10,4.1,0,0,64.4,77777,9,999999999,90,0.0890,0,88,999.000,999.0,99.0 +1986,6,16,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,40.6,5.0,11,97000,1162,1324,440,925,913,123,95300,91500,14800,4730,30,4.1,0,0,48.3,77777,9,999999999,120,0.0890,0,88,999.000,999.0,99.0 +1986,6,16,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,42.2,3.9,10,96900,1000,1324,447,777,882,111,80400,88100,13800,2880,360,2.6,0,0,56.3,77777,9,999999999,120,0.0890,0,88,999.000,999.0,99.0 +1986,6,16,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,42.2,5.6,11,96900,790,1324,459,561,762,106,58900,75900,13500,2430,320,4.1,1,1,56.3,77777,9,999999999,130,0.0890,0,88,999.000,999.0,99.0 +1986,6,16,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,41.7,5.0,11,96900,546,1324,466,331,531,113,34300,50300,13500,2180,300,3.1,6,3,56.3,77777,9,999999999,120,0.0890,0,88,999.000,999.0,99.0 +1986,6,16,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,40.6,6.1,12,96900,285,1324,472,94,70,79,10200,5600,9000,1710,270,4.1,8,6,56.3,7620,9,999999999,130,0.0890,0,88,999.000,999.0,99.0 +1986,6,16,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.8,8.9,17,96900,47,849,452,21,14,20,2300,800,2200,480,240,6.2,8,4,40.2,77777,9,999999999,150,0.0890,0,88,999.000,999.0,99.0 +1986,6,16,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.2,9.4,18,97000,0,0,450,0,0,0,0,0,0,0,220,4.1,8,4,48.3,77777,9,999999999,160,0.1210,0,88,999.000,999.0,99.0 +1986,6,16,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.6,9.4,20,97200,0,0,470,0,0,0,0,0,0,0,120,5.2,10,9,6.4,2440,9,999999999,160,0.1210,0,88,999.000,999.0,99.0 +1986,6,16,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.9,11.1,25,97300,0,0,436,0,0,0,0,0,0,0,70,6.2,8,5,16.1,6100,9,999999999,180,0.1210,0,88,999.000,999.0,99.0 +1986,6,16,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.1,6.1,16,97100,0,0,458,0,0,0,0,0,0,0,90,6.7,10,8,24.1,2440,9,999999999,130,0.1210,0,88,999.000,999.0,99.0 +1986,6,17,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.2,6.1,15,97100,0,0,464,0,0,0,0,0,0,0,100,4.6,10,8,32.2,2440,9,999999999,130,0.1210,0,88,999.000,999.0,99.0 +1986,6,17,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,11.1,26,97100,0,0,437,0,0,0,0,0,0,0,50,2.1,9,6,48.3,6100,9,999999999,180,0.1210,0,88,999.000,999.0,99.0 +1986,6,17,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,13.3,33,97100,0,0,436,0,0,0,0,0,0,0,0,0.0,10,7,56.3,2440,9,999999999,209,0.1210,0,88,999.000,999.0,99.0 +1986,6,17,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,12.2,31,97200,0,0,426,0,0,0,0,0,0,0,150,3.1,8,6,48.3,4570,9,999999999,190,0.1210,0,88,999.000,999.0,99.0 +1986,6,17,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,10.6,27,97200,0,0,423,0,0,0,0,0,0,0,230,2.1,7,5,56.3,4570,9,999999999,170,0.1210,0,88,999.000,999.0,99.0 +1986,6,17,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,11.7,30,97300,54,893,415,22,23,19,2300,1000,2200,390,130,2.1,5,3,56.3,77777,9,999999999,180,0.1400,0,88,999.000,999.0,99.0 +1986,6,17,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,11.1,27,97300,297,1323,424,140,278,77,14400,21900,9500,1420,150,2.1,4,3,56.3,77777,9,999999999,180,0.1400,0,88,999.000,999.0,99.0 +1986,6,17,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,11.7,28,97400,557,1323,424,268,368,113,28900,35800,13800,2190,100,5.2,3,3,56.3,77777,9,999999999,190,0.1400,0,88,999.000,999.0,99.0 +1986,6,17,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34.4,11.1,24,97400,800,1323,428,500,521,184,53700,53500,21300,4330,100,3.1,2,2,48.3,77777,9,999999999,180,0.1400,0,88,999.000,999.0,99.0 +1986,6,17,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.2,10.0,19,97400,1008,1323,428,761,808,144,79800,81200,17800,4300,120,3.1,0,0,48.3,77777,9,999999999,160,0.1400,0,88,999.000,999.0,99.0 +1986,6,17,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,38.3,10.0,18,97400,1167,1323,434,909,848,159,96400,85700,20600,7310,170,2.1,0,0,56.3,77777,9,999999999,170,0.1400,0,88,999.000,999.0,99.0 +1986,6,17,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,40.0,8.9,15,97300,1267,1323,442,1003,870,167,107000,88200,22400,12480,120,3.1,0,0,48.3,77777,9,999999999,150,0.1400,0,88,999.000,999.0,99.0 +1986,6,17,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,41.7,10.0,15,97200,1300,1323,454,1035,878,170,110700,89000,23100,16940,200,2.6,0,0,48.3,77777,9,999999999,170,0.1400,0,88,999.000,999.0,99.0 +1986,6,17,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,41.7,10.0,15,97200,1264,1323,454,997,867,167,106500,87800,22300,12250,40,2.1,0,0,48.3,77777,9,999999999,170,0.1400,0,88,999.000,999.0,99.0 +1986,6,17,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,42.2,8.3,13,97100,1162,1323,463,876,808,166,92500,81500,20800,7420,280,3.6,1,1,48.3,77777,9,999999999,150,0.1400,0,88,999.000,999.0,99.0 +1986,6,17,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,42.8,8.9,13,97000,1001,1323,474,748,752,178,79500,76700,21400,5670,240,5.2,2,2,56.3,77777,9,999999999,150,0.1400,0,88,999.000,999.0,99.0 +1986,6,17,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,42.2,8.3,13,97000,791,1323,469,548,634,169,57000,63100,19200,3890,260,5.2,2,2,56.3,77777,9,999999999,150,0.1400,0,88,999.000,999.0,99.0 +1986,6,17,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,41.7,8.9,14,97000,547,1323,467,315,480,117,33800,46500,14500,2270,300,3.1,2,2,56.3,77777,9,999999999,150,0.1400,0,88,999.000,999.0,99.0 +1986,6,17,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,41.1,7.8,13,97000,286,1323,462,139,343,65,14600,26700,8900,1180,260,6.2,2,2,56.3,77777,9,999999999,140,0.1400,0,88,999.000,999.0,99.0 +1986,6,17,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,39.4,3.3,11,97000,48,849,439,18,35,14,1800,1200,1700,230,270,4.1,1,1,56.3,77777,9,999999999,110,0.1400,0,88,999.000,999.0,99.0 +1986,6,17,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.2,0.6,10,97000,0,0,415,0,0,0,0,0,0,0,250,3.1,0,0,56.3,77777,9,999999999,90,0.1210,0,88,999.000,999.0,99.0 +1986,6,17,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.0,2.8,13,97100,0,0,406,0,0,0,0,0,0,0,230,3.1,0,0,56.3,77777,9,999999999,100,0.1210,0,88,999.000,999.0,99.0 +1986,6,17,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.9,2.2,13,97100,0,0,400,0,0,0,0,0,0,0,270,2.1,0,0,56.3,77777,9,999999999,100,0.1210,0,88,999.000,999.0,99.0 +1986,6,17,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,2.8,15,97100,0,0,395,0,0,0,0,0,0,0,280,2.6,0,0,56.3,77777,9,999999999,110,0.1210,0,88,999.000,999.0,99.0 +1986,6,18,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,3.9,17,97100,0,0,391,0,0,0,0,0,0,0,350,2.1,0,0,56.3,77777,9,999999999,110,0.1210,0,88,999.000,999.0,99.0 +1986,6,18,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,2.2,15,97100,0,0,388,0,0,0,0,0,0,0,50,1.5,0,0,56.3,77777,9,999999999,100,0.1210,0,88,999.000,999.0,99.0 +1986,6,18,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,3.3,18,97100,0,0,381,0,0,0,0,0,0,0,130,2.1,0,0,56.3,77777,9,999999999,110,0.1210,0,88,999.000,999.0,99.0 +1986,6,18,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,4.4,20,97100,0,0,380,0,0,0,0,0,0,0,70,3.1,0,0,56.3,77777,9,999999999,110,0.1210,0,88,999.000,999.0,99.0 +1986,6,18,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,4.4,23,97100,0,0,379,0,0,0,0,0,0,0,80,3.1,1,1,56.3,77777,9,999999999,120,0.1210,0,88,999.000,999.0,99.0 +1986,6,18,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,5.0,24,97200,54,893,377,23,96,13,2100,3800,1900,220,90,3.6,1,1,112.7,77777,9,999999999,120,0.0550,0,88,999.000,999.0,99.0 +1986,6,18,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,5.0,23,97300,296,1323,375,170,592,37,17600,49000,6700,760,90,3.6,0,0,72.4,77777,9,999999999,120,0.0550,0,88,999.000,999.0,99.0 +1986,6,18,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,3.9,18,97300,556,1323,388,386,781,56,40500,74500,9100,1290,90,4.1,0,0,40.2,77777,9,999999999,110,0.0550,0,88,999.000,999.0,99.0 +1986,6,18,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.9,6.1,18,97300,799,1323,405,596,862,74,62300,85300,10600,1820,140,2.6,0,0,32.2,77777,9,999999999,130,0.0550,0,88,999.000,999.0,99.0 +1986,6,18,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.6,5.0,15,97300,1007,1323,413,784,912,88,81500,91300,11900,2640,110,2.6,0,0,32.2,77777,9,999999999,120,0.0550,0,88,999.000,999.0,99.0 +1986,6,18,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,38.3,4.4,12,97300,1167,1323,426,939,951,97,97200,95500,12800,4150,130,3.1,0,0,32.2,77777,9,999999999,110,0.0550,0,88,999.000,999.0,99.0 +1986,6,18,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,38.9,2.8,11,97200,1267,1323,427,1031,967,103,106600,97200,13300,6880,30,2.6,0,0,32.2,77777,9,999999999,110,0.0550,0,88,999.000,999.0,99.0 +1986,6,18,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,40.6,3.9,10,97100,1300,1323,438,1062,972,105,109700,97700,13500,9260,290,3.1,0,0,40.2,77777,9,999999999,110,0.0550,0,88,999.000,999.0,99.0 +1986,6,18,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,41.1,2.8,9,97000,1264,1323,439,1031,969,103,106600,97400,13300,6780,270,4.1,0,0,48.3,77777,9,999999999,100,0.0550,0,88,999.000,999.0,99.0 +1986,6,18,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,41.1,1.7,9,97000,1163,1323,438,938,955,97,97200,95900,12800,4090,270,4.6,0,0,56.3,77777,9,999999999,100,0.0550,0,88,999.000,999.0,99.0 +1986,6,18,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,41.7,2.8,9,96900,1001,1323,443,790,928,87,82300,92800,11900,2600,240,5.2,0,0,56.3,77777,9,999999999,100,0.0550,0,88,999.000,999.0,99.0 +1986,6,18,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,41.1,2.2,9,96800,792,1323,439,599,878,74,62800,86900,10700,1810,260,3.1,0,0,56.3,77777,9,999999999,100,0.0550,0,88,999.000,999.0,99.0 +1986,6,18,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,40.0,1.1,9,96800,548,1323,431,383,791,56,40400,75300,9100,1280,300,4.6,0,0,56.3,77777,9,999999999,90,0.0550,0,88,999.000,999.0,99.0 +1986,6,18,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,39.4,0.6,9,96800,287,1323,427,166,599,36,17300,49100,6600,740,250,6.2,0,0,56.3,77777,9,999999999,90,0.0550,0,88,999.000,999.0,99.0 +1986,6,18,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.8,0.0,9,96800,49,849,417,31,148,16,2600,6700,2200,290,270,3.1,0,0,56.3,77777,9,999999999,90,0.0550,0,88,999.000,999.0,99.0 +1986,6,18,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.1,0.6,11,96800,0,0,409,0,0,0,0,0,0,0,210,1.5,0,0,56.3,77777,9,999999999,90,0.1210,0,88,999.000,999.0,99.0 +1986,6,18,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.9,1.7,13,96900,0,0,399,0,0,0,0,0,0,0,240,3.1,0,0,56.3,77777,9,999999999,100,0.1210,0,88,999.000,999.0,99.0 +1986,6,18,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,-1.7,11,96900,0,0,389,0,0,0,0,0,0,0,260,3.1,0,0,56.3,77777,9,999999999,80,0.1210,0,88,999.000,999.0,99.0 +1986,6,18,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,0.0,14,96900,0,0,380,0,0,0,0,0,0,0,250,2.6,0,0,56.3,77777,9,999999999,90,0.1210,0,88,999.000,999.0,99.0 +1986,6,19,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,0.0,15,96900,0,0,374,0,0,0,0,0,0,0,260,2.1,0,0,56.3,77777,9,999999999,90,0.1220,0,88,999.000,999.0,99.0 +1986,6,19,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,0.6,15,96900,0,0,375,0,0,0,0,0,0,0,70,3.1,0,0,56.3,77777,9,999999999,90,0.1220,0,88,999.000,999.0,99.0 +1986,6,19,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,3.3,21,96900,0,0,370,0,0,0,0,0,0,0,110,2.6,0,0,56.3,77777,9,999999999,110,0.1220,0,88,999.000,999.0,99.0 +1986,6,19,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,2.2,21,96900,0,0,364,0,0,0,0,0,0,0,70,2.6,0,0,56.3,77777,9,999999999,100,0.1220,0,88,999.000,999.0,99.0 +1986,6,19,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,1.7,21,96900,0,0,358,0,0,0,0,0,0,0,80,2.1,0,0,80.5,77777,9,999999999,100,0.1220,0,88,999.000,999.0,99.0 +1986,6,19,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,2.2,23,97000,54,893,355,25,57,19,2400,2000,2300,330,80,4.1,0,0,64.4,77777,9,999999999,100,0.1300,0,88,999.000,999.0,99.0 +1986,6,19,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,1.7,19,97000,295,1323,365,153,436,56,15700,34800,8000,1020,60,3.6,0,0,64.4,77777,9,999999999,100,0.1300,0,88,999.000,999.0,99.0 +1986,6,19,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,0.6,15,97100,555,1323,375,368,665,88,38700,64000,11800,1790,70,3.1,0,0,48.3,77777,9,999999999,90,0.1300,0,88,999.000,999.0,99.0 +1986,6,19,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,0.0,13,97100,798,1323,385,588,780,116,61100,77400,14300,2600,70,3.1,0,0,40.2,77777,9,999999999,90,0.1300,0,88,999.000,999.0,99.0 +1986,6,19,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.9,-1.1,11,97100,1007,1323,395,784,848,137,82700,85400,17500,4150,60,3.1,0,0,48.3,77777,9,999999999,80,0.1300,0,88,999.000,999.0,99.0 +1986,6,19,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.1,0.0,10,97100,1166,1323,408,930,881,152,99100,89200,20300,7030,340,1.5,0,0,48.3,77777,9,999999999,90,0.1300,0,88,999.000,999.0,99.0 +1986,6,19,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.8,-1.1,8,97000,1266,1323,416,1029,906,160,105000,90700,17900,9530,200,2.1,0,0,48.3,77777,9,999999999,80,0.1300,0,88,999.000,999.0,99.0 +1986,6,19,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,38.9,-0.6,8,97000,1300,1323,422,1059,910,163,107900,91100,18200,13230,340,2.6,0,0,64.4,77777,9,999999999,80,0.1300,0,88,999.000,999.0,99.0 +1986,6,19,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,41.1,-3.9,6,96900,1265,1323,429,1030,909,160,105100,91000,17900,9400,290,2.1,0,0,72.4,77777,9,999999999,70,0.1300,0,88,999.000,999.0,99.0 +1986,6,19,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,41.1,-4.4,5,96800,1163,1323,428,936,890,152,95700,89000,17300,5280,320,2.1,0,0,72.4,77777,9,999999999,60,0.1300,0,88,999.000,999.0,99.0 +1986,6,19,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,42.2,-2.8,6,96700,1002,1323,437,781,849,137,82400,85500,17500,4110,240,3.6,0,0,72.4,77777,9,999999999,70,0.1300,0,88,999.000,999.0,99.0 +1986,6,19,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,41.1,0.6,8,96700,792,1323,436,581,777,115,60400,77100,14200,2560,320,5.2,0,0,72.4,77777,9,999999999,90,0.1300,0,88,999.000,999.0,99.0 +1986,6,19,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,40.0,0.6,8,96600,549,1323,430,360,660,87,38000,63400,11600,1760,340,2.6,0,0,72.4,77777,9,999999999,90,0.1300,0,88,999.000,999.0,99.0 +1986,6,19,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,38.9,1.1,9,96600,288,1323,425,147,426,55,15200,33700,7800,1000,320,3.1,0,0,56.3,77777,9,999999999,90,0.1300,0,88,999.000,999.0,99.0 +1986,6,19,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.2,0.6,10,96700,49,849,415,25,53,19,2400,1800,2300,330,300,1.5,0,0,56.3,77777,9,999999999,90,0.1300,0,88,999.000,999.0,99.0 +1986,6,19,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.1,1.1,11,96700,0,0,410,0,0,0,0,0,0,0,260,2.1,0,0,56.3,77777,9,999999999,90,0.1220,0,88,999.000,999.0,99.0 +1986,6,19,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.9,2.8,14,96800,0,0,401,0,0,0,0,0,0,0,240,2.1,0,0,56.3,77777,9,999999999,100,0.1220,0,88,999.000,999.0,99.0 +1986,6,19,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,2.2,15,96800,0,0,391,0,0,0,0,0,0,0,240,2.1,0,0,56.3,77777,9,999999999,100,0.1220,0,88,999.000,999.0,99.0 +1986,6,19,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,0.0,13,96800,0,0,385,0,0,0,0,0,0,0,260,2.1,0,0,56.3,77777,9,999999999,90,0.1220,0,88,999.000,999.0,99.0 +1986,6,20,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,0.6,14,96800,0,0,381,0,0,0,0,0,0,0,330,1.5,0,0,56.3,77777,9,999999999,90,0.1220,0,88,999.000,999.0,99.0 +1986,6,20,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,2.2,17,96800,0,0,377,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,100,0.1220,0,88,999.000,999.0,99.0 +1986,6,20,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,2.8,20,96900,0,0,370,0,0,0,0,0,0,0,80,3.1,0,0,56.3,77777,9,999999999,110,0.1220,0,88,999.000,999.0,99.0 +1986,6,20,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,4.4,24,96900,0,0,366,0,0,0,0,0,0,0,70,3.1,0,0,56.3,77777,9,999999999,120,0.1220,0,88,999.000,999.0,99.0 +1986,6,20,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,2.2,22,96900,0,0,358,0,0,0,0,0,0,0,50,3.1,0,0,80.5,77777,9,999999999,100,0.1220,0,88,999.000,999.0,99.0 +1986,6,20,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,2.8,24,97000,53,893,356,31,151,16,2600,7000,2200,290,80,4.1,0,0,64.4,77777,9,999999999,110,0.0570,0,88,999.000,999.0,99.0 +1986,6,20,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,3.3,22,97100,294,1323,365,171,598,37,17700,49400,6700,760,90,4.1,0,0,64.4,77777,9,999999999,110,0.0570,0,88,999.000,999.0,99.0 +1986,6,20,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,3.9,20,97100,555,1323,379,387,785,57,40600,74900,9200,1300,100,4.1,0,0,64.4,77777,9,999999999,110,0.0570,0,88,999.000,999.0,99.0 +1986,6,20,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,3.3,17,97200,797,1323,390,604,875,75,63100,86600,10800,1830,100,3.1,0,0,56.3,77777,9,999999999,110,0.0570,0,88,999.000,999.0,99.0 +1986,6,20,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.9,3.3,15,97200,1006,1323,401,793,923,89,82400,92300,12000,2650,120,3.1,0,0,56.3,77777,9,999999999,110,0.0570,0,88,999.000,999.0,99.0 +1986,6,20,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.7,0.6,10,97100,1166,1323,412,945,958,99,97900,96200,13000,4200,60,1.5,0,0,56.3,77777,9,999999999,90,0.0570,0,88,999.000,999.0,99.0 +1986,6,20,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,38.3,1.1,10,97100,1266,1323,421,1035,970,105,107000,97500,13500,6970,220,2.1,0,0,64.4,77777,9,999999999,100,0.0570,0,88,999.000,999.0,99.0 +1986,6,20,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,40.0,-3.9,6,97000,1300,1323,423,1075,983,107,111000,98800,13700,9420,140,3.6,0,0,64.4,77777,9,999999999,70,0.0570,0,88,999.000,999.0,99.0 +1986,6,20,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,41.1,-1.7,7,97000,1265,1323,433,1039,976,104,107400,98100,13400,6860,210,2.1,0,0,64.4,77777,9,999999999,80,0.0570,0,88,999.000,999.0,99.0 +1986,6,20,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,41.7,-2.2,6,96900,1163,1323,435,949,966,99,98500,97000,13000,4160,170,3.1,0,0,72.4,77777,9,999999999,70,0.0570,0,88,999.000,999.0,99.0 +1986,6,20,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,41.1,-1.7,7,96900,1002,1323,441,708,767,126,75400,77500,16500,3870,270,1.5,2,1,72.4,77777,9,999999999,80,0.0570,0,88,999.000,999.0,99.0 +1986,6,20,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,41.1,0.0,8,96900,793,1323,443,558,779,90,59600,78100,12600,2200,280,6.2,2,1,72.4,77777,9,999999999,90,0.0570,0,88,999.000,999.0,99.0 +1986,6,20,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,40.6,-1.7,7,96800,550,1323,438,363,715,66,38300,68600,9700,1410,270,4.1,2,1,72.4,77777,9,999999999,80,0.0570,0,88,999.000,999.0,99.0 +1986,6,20,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,38.9,-3.3,7,96800,289,1323,426,159,537,42,16300,43800,6700,810,280,3.6,2,1,56.3,77777,9,999999999,70,0.0570,0,88,999.000,999.0,99.0 +1986,6,20,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.2,-3.9,7,96800,50,871,422,28,107,17,2500,4100,2300,300,300,2.6,2,2,56.3,77777,9,999999999,70,0.0570,0,88,999.000,999.0,99.0 +1986,6,20,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.6,-2.2,9,96900,0,0,416,0,0,0,0,0,0,0,230,1.5,2,2,56.3,77777,9,999999999,80,0.1220,0,88,999.000,999.0,99.0 +1986,6,20,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,0.0,12,96900,0,0,407,0,0,0,0,0,0,0,270,2.6,2,2,56.3,77777,9,999999999,90,0.1220,0,88,999.000,999.0,99.0 +1986,6,20,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,-0.6,12,97000,0,0,390,0,0,0,0,0,0,0,270,3.1,1,0,56.3,77777,9,999999999,90,0.1220,0,88,999.000,999.0,99.0 +1986,6,20,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,0.6,14,97000,0,0,381,0,0,0,0,0,0,0,300,2.1,1,0,56.3,77777,9,999999999,90,0.1220,0,88,999.000,999.0,99.0 +1986,6,21,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,0.6,15,97000,0,0,378,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,90,0.1220,0,88,999.000,999.0,99.0 +1986,6,21,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,1.7,17,97000,0,0,374,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,100,0.1220,0,88,999.000,999.0,99.0 +1986,6,21,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,1.1,17,97000,0,0,370,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,90,0.1220,0,88,999.000,999.0,99.0 +1986,6,21,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,2.2,20,97000,0,0,373,0,0,0,0,0,0,0,120,1.5,1,1,56.3,77777,9,999999999,100,0.1220,0,88,999.000,999.0,99.0 +1986,6,21,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,3.9,23,97100,0,0,373,0,0,0,0,0,0,0,120,2.1,5,1,80.5,77777,9,999999999,110,0.1220,0,88,999.000,999.0,99.0 +1986,6,21,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,2.8,22,97100,53,893,368,24,55,19,2400,1900,2300,330,80,2.6,4,1,80.5,77777,9,999999999,100,0.1060,0,88,999.000,999.0,99.0 +1986,6,21,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,1.7,20,97100,293,1322,370,142,358,63,15100,28200,8800,1130,80,4.1,4,1,72.4,77777,9,999999999,100,0.1060,0,88,999.000,999.0,99.0 +1986,6,21,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,1.7,18,97200,554,1322,387,285,296,160,30400,29600,18000,3380,80,3.6,8,3,80.5,77777,9,999999999,100,0.1060,0,88,999.000,999.0,99.0 +1986,6,21,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,0.6,14,97300,797,1322,400,495,373,270,53000,39600,29100,6840,90,3.1,9,4,80.5,77777,9,999999999,90,0.1060,0,88,999.000,999.0,99.0 +1986,6,21,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,0.0,12,97300,1005,1322,414,749,603,289,79400,62700,31700,9370,130,2.1,9,4,80.5,77777,9,999999999,90,0.1060,0,88,999.000,999.0,99.0 +1986,6,21,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.6,1.1,11,97300,1165,1322,428,881,633,322,94700,66200,36200,15890,100,2.1,9,4,80.5,77777,9,999999999,90,0.1060,0,88,999.000,999.0,99.0 +1986,6,21,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.8,0.6,10,97300,1266,1322,440,965,609,380,103200,63700,42200,30350,340,1.5,9,4,80.5,77777,9,999999999,90,0.1060,0,88,999.000,999.0,99.0 +1986,6,21,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,38.3,-3.9,7,97200,1299,1322,442,924,572,361,99900,59900,41000,38540,10,2.6,9,6,80.5,7620,9,999999999,70,0.1060,0,88,999.000,999.0,99.0 +1986,6,21,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,40.0,-2.8,7,97200,1265,1322,447,993,712,311,104400,71800,35600,23760,70,3.6,9,4,80.5,77777,9,999999999,80,0.1060,0,88,999.000,999.0,99.0 +1986,6,21,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,40.6,1.1,9,97100,1164,1322,453,881,753,217,94000,77000,26200,10480,230,1.5,8,3,96.6,77777,9,999999999,100,0.1060,0,88,999.000,999.0,99.0 +1986,6,21,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,40.6,0.6,8,97000,1003,1322,452,761,730,207,80200,73900,24000,6520,320,3.1,4,3,80.5,77777,9,999999999,90,0.1060,0,88,999.000,999.0,99.0 +1986,6,21,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,41.1,1.7,9,97000,794,1322,452,582,738,139,61500,74300,16800,3310,350,3.1,3,2,80.5,77777,9,999999999,100,0.1060,0,88,999.000,999.0,99.0 +1986,6,21,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,38.9,1.7,10,96900,551,1322,444,343,535,120,36600,51900,15000,2340,300,2.6,6,3,80.5,77777,9,999999999,100,0.1060,0,88,999.000,999.0,99.0 +1986,6,21,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,38.3,0.6,9,96900,290,1322,429,146,354,69,15300,27700,9300,1260,290,2.6,6,1,96.6,77777,9,999999999,90,0.1060,0,88,999.000,999.0,99.0 +1986,6,21,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.7,1.7,11,96900,51,871,414,25,64,18,2400,2200,2200,310,310,1.5,1,0,56.3,77777,9,999999999,100,0.1060,0,88,999.000,999.0,99.0 +1986,6,21,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.0,3.9,14,97000,0,0,408,0,0,0,0,0,0,0,290,1.5,1,0,56.3,77777,9,999999999,110,0.1220,0,88,999.000,999.0,99.0 +1986,6,21,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,3.3,16,97000,0,0,396,0,0,0,0,0,0,0,230,1.5,0,0,56.3,77777,9,999999999,110,0.1220,0,88,999.000,999.0,99.0 +1986,6,21,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,2.2,15,97100,0,0,388,0,0,0,0,0,0,0,180,1.5,0,0,56.3,77777,9,999999999,100,0.1220,0,88,999.000,999.0,99.0 +1986,6,21,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,1.1,15,97100,0,0,381,0,0,0,0,0,0,0,240,1.5,0,0,56.3,77777,9,999999999,90,0.1220,0,88,999.000,999.0,99.0 +1986,6,22,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,1.1,16,97000,0,0,375,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,90,0.1220,0,88,999.000,999.0,99.0 +1986,6,22,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,1.7,18,97000,0,0,371,0,0,0,0,0,0,0,310,2.6,2,0,56.3,77777,9,999999999,100,0.1220,0,88,999.000,999.0,99.0 +1986,6,22,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,0.0,17,97000,0,0,363,0,0,0,0,0,0,0,250,2.1,5,0,56.3,77777,9,999999999,90,0.1220,0,88,999.000,999.0,99.0 +1986,6,22,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,2.2,22,97000,0,0,365,0,0,0,0,0,0,0,340,2.1,5,1,56.3,77777,9,999999999,100,0.1220,0,88,999.000,999.0,99.0 +1986,6,22,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,2.2,22,97100,0,0,370,0,0,0,0,0,0,0,80,2.1,6,2,56.3,77777,9,999999999,100,0.1220,0,88,999.000,999.0,99.0 +1986,6,22,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,1.7,20,97100,52,871,382,22,25,19,2300,1100,2200,390,80,2.6,9,4,80.5,77777,9,999999999,100,0.0820,0,88,999.000,999.0,99.0 +1986,6,22,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,0.6,18,97200,292,1322,383,143,270,83,15000,21300,10300,1600,70,3.1,10,4,80.5,77777,9,999999999,90,0.0820,0,88,999.000,999.0,99.0 +1986,6,22,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,0.6,16,97300,553,1322,388,374,560,139,39300,54200,16600,2750,80,3.6,9,3,80.5,77777,9,999999999,90,0.0820,0,88,999.000,999.0,99.0 +1986,6,22,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,0.0,13,97300,796,1322,408,529,455,254,54900,46500,26900,6150,40,1.5,10,5,80.5,77777,9,999999999,90,0.0820,0,88,999.000,999.0,99.0 +1986,6,22,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.0,-2.8,9,97300,1004,1322,422,750,523,352,78000,54200,36800,11600,300,3.1,10,5,80.5,77777,9,999999999,70,0.0820,0,88,999.000,999.0,99.0 +1986,6,22,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.6,1.7,12,97300,1164,1322,432,830,580,317,89200,60600,35700,15610,240,3.6,8,5,80.5,7620,9,999999999,100,0.0820,0,88,999.000,999.0,99.0 +1986,6,22,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.2,0.0,9,97300,1265,1322,442,884,567,340,95700,59400,38800,27020,240,4.1,9,6,80.5,7620,9,999999999,80,0.0820,0,88,999.000,999.0,99.0 +1986,6,22,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.8,0.0,9,97300,1299,1322,446,1149,752,408,118800,74500,45400,41490,290,4.1,10,6,72.4,7620,9,999999999,90,0.0820,0,88,999.000,999.0,99.0 +1986,6,22,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,38.9,1.1,9,97200,1265,1322,459,894,524,393,95500,54700,43100,31310,290,4.1,9,7,72.4,7620,9,999999999,90,0.0820,0,88,999.000,999.0,99.0 +1986,6,22,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,40.6,0.0,8,97100,1164,1322,455,859,637,298,89700,64000,33300,14040,280,5.2,9,4,80.5,77777,9,999999999,90,0.0820,0,88,999.000,999.0,99.0 +1986,6,22,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,39.4,-0.6,8,97000,1004,1322,450,618,423,297,65500,44000,32100,9630,280,5.2,9,5,80.5,7620,9,999999999,80,0.0820,0,88,999.000,999.0,99.0 +1986,6,22,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,40.6,0.6,8,96900,795,1322,463,520,486,227,54600,49700,24700,5430,280,4.1,9,6,80.5,7620,9,999999999,90,0.0820,0,88,999.000,999.0,99.0 +1986,6,22,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,39.4,3.9,11,96900,552,1322,446,339,494,134,35900,47900,16000,2640,270,4.6,7,2,72.4,77777,9,999999999,110,0.0820,0,88,999.000,999.0,99.0 +1986,6,22,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,38.3,3.3,11,96900,291,1322,447,147,177,108,15700,14300,12600,2340,260,5.2,6,4,80.5,7620,9,999999999,100,0.0820,0,88,999.000,999.0,99.0 +1986,6,22,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.1,1.1,11,96900,51,871,423,26,54,21,2600,1800,2500,370,270,4.6,8,2,72.4,77777,9,999999999,90,0.0820,0,88,999.000,999.0,99.0 +1986,6,22,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.0,-2.2,9,96900,0,0,427,0,0,0,0,0,0,0,250,3.6,9,6,56.3,7620,9,999999999,70,0.1220,0,88,999.000,999.0,99.0 +1986,6,22,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34.4,2.8,14,97000,0,0,416,0,0,0,0,0,0,0,290,2.6,10,2,56.3,77777,9,999999999,110,0.1220,0,88,999.000,999.0,99.0 +1986,6,22,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.9,1.7,13,97000,0,0,423,0,0,0,0,0,0,0,270,2.1,8,5,56.3,7620,9,999999999,100,0.1220,0,88,999.000,999.0,99.0 +1986,6,22,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,1.7,13,96900,0,0,419,0,0,0,0,0,0,0,280,3.6,8,5,56.3,7620,9,999999999,90,0.1220,0,88,999.000,999.0,99.0 +1986,6,23,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,2.2,15,96900,0,0,418,0,0,0,0,0,0,0,0,0.0,9,6,56.3,7620,9,999999999,100,0.1220,0,88,999.000,999.0,99.0 +1986,6,23,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,2.8,16,97000,0,0,416,0,0,0,0,0,0,0,0,0.0,9,6,56.3,7620,9,999999999,110,0.1220,0,88,999.000,999.0,99.0 +1986,6,23,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,2.2,16,97000,0,0,408,0,0,0,0,0,0,0,60,3.1,8,5,56.3,7620,9,999999999,100,0.1220,0,88,999.000,999.0,99.0 +1986,6,23,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,2.2,17,97000,0,0,396,0,0,0,0,0,0,0,80,1.5,8,4,56.3,77777,9,999999999,100,0.1220,0,88,999.000,999.0,99.0 +1986,6,23,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,1.7,17,97100,0,0,390,0,0,0,0,0,0,0,50,2.6,6,3,56.3,77777,9,999999999,100,0.1220,0,88,999.000,999.0,99.0 +1986,6,23,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,1.7,18,97200,51,870,387,26,44,21,2600,1900,2500,430,100,2.6,5,3,56.3,77777,9,999999999,100,0.0670,0,88,999.000,999.0,99.0 +1986,6,23,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,2.2,18,97200,291,1322,390,143,285,80,14700,22300,9800,1480,80,3.1,5,3,56.3,77777,9,999999999,100,0.0670,0,88,999.000,999.0,99.0 +1986,6,23,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,1.1,15,97300,552,1322,400,344,455,154,35800,44000,17400,3080,90,3.1,5,3,64.4,77777,9,999999999,100,0.0670,0,88,999.000,999.0,99.0 +1986,6,23,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34.4,2.8,14,97300,795,1322,421,522,606,157,54600,60600,18100,3680,70,3.1,6,3,48.3,77777,9,999999999,110,0.0670,0,88,999.000,999.0,99.0 +1986,6,23,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.7,2.2,11,97300,1003,1322,432,766,751,195,81000,76300,22900,6200,70,2.6,5,3,48.3,77777,9,999999999,100,0.0670,0,88,999.000,999.0,99.0 +1986,6,23,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.8,2.8,11,97200,1164,1322,446,936,785,243,99000,79800,28700,11660,110,2.1,7,5,48.3,7620,9,999999999,100,0.0670,0,88,999.000,999.0,99.0 +1986,6,23,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,38.9,4.4,12,97200,1265,1322,452,895,583,336,97000,61100,38500,26640,20,2.1,5,4,48.3,77777,9,999999999,120,0.0670,0,88,999.000,999.0,99.0 +1986,6,23,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,40.6,3.3,10,97100,1299,1322,460,693,386,312,75900,40500,36100,33180,260,4.1,5,4,40.2,77777,9,999999999,110,0.0670,0,88,999.000,999.0,99.0 +1986,6,23,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,41.1,1.7,9,97000,1265,1322,460,1001,812,222,103600,81100,25800,15820,280,5.2,4,4,48.3,77777,9,999999999,100,0.0670,0,88,999.000,999.0,99.0 +1986,6,23,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,41.7,2.2,9,96900,1164,1322,465,872,707,248,92200,71800,28800,11900,300,5.2,4,4,64.4,77777,9,999999999,100,0.0670,0,88,999.000,999.0,99.0 +1986,6,23,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,42.2,2.8,9,96800,1004,1322,465,621,554,200,65600,56200,22800,6340,260,4.6,3,3,48.3,77777,9,999999999,110,0.0670,0,88,999.000,999.0,99.0 +1986,6,23,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,42.2,2.2,8,96800,795,1322,464,569,662,171,59300,66000,19500,3950,300,2.1,3,3,56.3,77777,9,999999999,90,0.0670,0,88,999.000,999.0,99.0 +1986,6,23,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,42.2,5.6,11,96700,552,1322,473,321,524,102,33400,50000,12500,2020,300,3.1,5,4,56.3,77777,9,999999999,130,0.0670,0,88,999.000,999.0,99.0 +1986,6,23,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,41.7,5.6,11,96700,292,1322,466,137,198,93,14300,15600,10800,1850,210,3.6,8,3,56.3,77777,9,999999999,120,0.0670,0,88,999.000,999.0,99.0 +1986,6,23,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,40.6,3.3,10,96800,52,870,481,13,1,13,1500,0,1500,470,120,6.2,9,8,56.3,3660,9,999999999,110,0.0670,0,88,999.000,999.0,99.0 +1986,6,23,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.2,8.3,17,96800,0,0,478,0,0,0,0,0,0,0,150,4.1,9,9,40.2,3660,9,999999999,150,0.1220,0,88,999.000,999.0,99.0 +1986,6,23,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.2,7.8,16,96900,0,0,477,0,0,0,0,0,0,0,170,4.1,9,9,40.2,3660,9,999999999,140,0.1220,0,88,999.000,999.0,99.0 +1986,6,23,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.7,8.3,18,97000,0,0,475,0,0,0,0,0,0,0,130,4.1,10,9,56.3,4880,9,999999999,150,0.1220,0,88,999.000,999.0,99.0 +1986,6,23,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.0,10.6,23,97100,0,0,468,0,0,0,0,0,0,0,140,9.8,9,9,9.7,4880,9,999999999,180,0.1220,0,88,999.000,999.0,99.0 +1986,6,24,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.9,11.7,26,97100,0,0,453,0,0,0,0,0,0,0,130,6.2,10,8,32.2,4880,9,999999999,190,0.1220,0,88,999.000,999.0,99.0 +1986,6,24,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,11.1,27,97100,0,0,439,0,0,0,0,0,0,0,150,6.7,10,7,48.3,6710,9,999999999,180,0.1220,0,88,999.000,999.0,99.0 +1986,6,24,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,11.1,27,97100,0,0,424,0,0,0,0,0,0,0,150,4.6,6,4,48.3,6710,9,999999999,180,0.1220,0,88,999.000,999.0,99.0 +1986,6,24,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,11.1,29,97100,0,0,414,0,0,0,0,0,0,0,150,5.2,4,3,48.3,77777,9,999999999,180,0.1220,0,88,999.000,999.0,99.0 +1986,6,24,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,11.7,32,97100,0,0,405,0,0,0,0,0,0,0,100,3.6,3,2,48.3,77777,9,999999999,180,0.1220,0,88,999.000,999.0,99.0 +1986,6,24,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,11.7,32,97200,51,870,409,29,58,23,2800,1900,2700,410,80,3.6,4,3,64.4,77777,9,999999999,180,0.0660,0,88,999.000,999.0,99.0 +1986,6,24,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,11.7,31,97200,290,1322,412,139,282,77,14400,22000,9500,1420,80,4.1,4,3,64.4,77777,9,999999999,180,0.0660,0,88,999.000,999.0,99.0 +1986,6,24,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,11.7,28,97300,550,1322,421,338,492,133,35700,47600,15900,2620,70,3.6,6,3,64.4,77777,9,999999999,180,0.0660,0,88,999.000,999.0,99.0 +1986,6,24,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.9,10.6,24,97200,794,1322,425,584,772,119,60400,76500,14400,2620,60,4.1,6,2,64.4,77777,9,999999999,170,0.0660,0,88,999.000,999.0,99.0 +1986,6,24,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.6,10.6,22,97200,1003,1322,434,758,722,208,79600,73100,24000,6550,340,1.5,6,2,72.4,77777,9,999999999,170,0.0660,0,88,999.000,999.0,99.0 +1986,6,24,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.7,9.4,19,97100,1163,1322,439,877,778,191,91100,77900,22400,8330,80,6.2,5,2,80.5,77777,9,999999999,160,0.0660,0,88,999.000,999.0,99.0 +1986,6,24,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.7,9.4,19,97100,1264,1322,439,982,779,235,105200,79700,28800,18210,20,4.1,6,2,80.5,77777,9,999999999,160,0.0660,0,88,999.000,999.0,99.0 +1986,6,24,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,39.4,9.4,16,97000,1299,1322,459,997,787,222,103700,78700,26100,21550,140,3.1,5,3,80.5,77777,9,999999999,160,0.0660,0,88,999.000,999.0,99.0 +1986,6,24,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,38.9,8.9,16,96900,1265,1322,462,953,718,265,101400,73000,31300,20510,180,1.5,5,5,80.5,77777,9,999999999,150,0.0660,0,88,999.000,999.0,99.0 +1986,6,24,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,40.0,8.9,15,96800,1164,1322,469,809,588,290,84600,59200,32400,13740,360,3.1,5,5,80.5,77777,9,999999999,150,0.0660,0,88,999.000,999.0,99.0 +1986,6,24,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,39.4,10.6,18,96800,1004,1322,464,568,446,229,61800,46500,26400,7300,60,6.2,5,4,96.6,77777,9,999999999,170,0.0660,0,88,999.000,999.0,99.0 +1986,6,24,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,39.4,9.4,16,96700,796,1322,459,376,353,164,41000,36300,19100,3810,70,6.7,3,3,96.6,77777,9,999999999,160,0.0660,0,88,999.000,999.0,99.0 +1986,6,24,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,38.3,10.6,19,96700,553,1322,444,359,700,66,37800,67200,9700,1410,60,7.2,1,1,80.5,77777,9,999999999,170,0.0660,0,88,999.000,999.0,99.0 +1986,6,24,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.2,10.6,20,96700,293,1322,437,156,504,45,16300,40500,7400,850,80,5.2,1,1,80.5,77777,9,999999999,170,0.0660,0,88,999.000,999.0,99.0 +1986,6,24,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.1,11.7,23,96800,52,870,454,22,57,16,2100,1900,2000,270,80,3.6,6,6,56.3,1830,9,999999999,190,0.0660,0,88,999.000,999.0,99.0 +1986,6,24,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.6,11.7,24,96900,0,0,447,0,0,0,0,0,0,0,0,0.0,6,5,56.3,3660,9,999999999,190,0.1220,0,88,999.000,999.0,99.0 +1986,6,24,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.9,12.8,28,97000,0,0,436,0,0,0,0,0,0,0,0,0.0,5,4,48.3,77777,9,999999999,200,0.1220,0,88,999.000,999.0,99.0 +1986,6,24,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,13.3,30,97000,0,0,420,0,0,0,0,0,0,0,0,0.0,1,1,48.3,77777,9,999999999,209,0.1220,0,88,999.000,999.0,99.0 +1986,6,24,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,12.8,29,96900,0,0,419,0,0,0,0,0,0,0,80,3.6,1,1,48.3,77777,9,999999999,200,0.1220,0,88,999.000,999.0,99.0 +1986,6,25,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,13.9,33,97000,0,0,414,0,0,0,0,0,0,0,140,2.6,1,1,48.3,77777,9,999999999,209,0.1220,0,88,999.000,999.0,99.0 +1986,6,25,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,13.3,33,96900,0,0,403,0,0,0,0,0,0,0,90,1.0,0,0,48.3,77777,9,999999999,209,0.1220,0,88,999.000,999.0,99.0 +1986,6,25,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,13.9,35,96900,0,0,401,0,0,0,0,0,0,0,80,4.1,0,0,48.3,77777,9,999999999,209,0.1220,0,88,999.000,999.0,99.0 +1986,6,25,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,13.9,36,97000,0,0,398,0,0,0,0,0,0,0,30,2.1,0,0,48.3,77777,9,999999999,209,0.1220,0,88,999.000,999.0,99.0 +1986,6,25,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,15.0,40,97000,0,0,404,0,0,0,0,0,0,0,80,3.1,1,1,48.3,77777,9,999999999,230,0.1220,0,88,999.000,999.0,99.0 +1986,6,25,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,15.6,43,97000,50,870,402,28,116,16,2500,4500,2200,280,90,3.1,1,1,72.4,77777,9,999999999,240,0.0540,0,88,999.000,999.0,99.0 +1986,6,25,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,15.6,40,97100,289,1322,408,157,493,48,16100,39300,7600,890,60,4.6,1,1,72.4,77777,9,999999999,230,0.0540,0,88,999.000,999.0,99.0 +1986,6,25,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,15.6,37,97100,549,1322,409,371,757,55,38900,72100,8900,1280,50,6.2,0,0,80.5,77777,9,999999999,240,0.0540,0,88,999.000,999.0,99.0 +1986,6,25,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,15.0,33,97100,792,1322,414,581,845,73,60700,83600,10500,1800,40,4.1,0,0,80.5,77777,9,999999999,230,0.0540,0,88,999.000,999.0,99.0 +1986,6,25,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34.4,14.4,30,97100,1002,1322,419,765,892,86,79500,89300,11700,2580,60,4.1,0,0,80.5,77777,9,999999999,220,0.0540,0,88,999.000,999.0,99.0 +1986,6,25,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.6,15.0,29,97000,1162,1322,427,908,921,96,94100,92500,12600,4070,30,2.6,0,0,80.5,77777,9,999999999,230,0.0540,0,88,999.000,999.0,99.0 +1986,6,25,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.2,13.9,25,97000,1264,1322,434,1007,945,101,104100,95000,13100,6690,70,5.7,0,0,80.5,77777,9,999999999,209,0.0540,0,88,999.000,999.0,99.0 +1986,6,25,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,38.9,13.3,22,96900,1299,1322,443,1033,944,103,106700,94900,13300,9100,100,3.1,0,0,80.5,77777,9,999999999,209,0.0540,0,88,999.000,999.0,99.0 +1986,6,25,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,40.0,13.3,20,96800,1265,1322,457,903,831,106,93300,83500,13200,7010,240,3.1,1,1,80.5,77777,9,999999999,200,0.0540,0,88,999.000,999.0,99.0 +1986,6,25,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,40.0,12.8,20,96700,1165,1322,457,876,894,87,91100,89800,11800,3830,300,2.6,1,1,80.5,77777,9,999999999,200,0.0540,0,88,999.000,999.0,99.0 +1986,6,25,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,41.1,12.8,19,96700,1005,1322,454,776,906,86,80800,90700,11700,2600,210,4.6,0,0,96.6,77777,9,999999999,200,0.0540,0,88,999.000,999.0,99.0 +1986,6,25,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,41.7,11.7,17,96600,796,1322,465,561,823,65,59000,81500,9800,1720,160,2.6,1,1,64.4,77777,9,999999999,180,0.0540,0,88,999.000,999.0,99.0 +1986,6,25,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,41.7,11.7,17,96600,554,1322,480,341,507,129,36200,49200,15600,2530,0,0.0,4,4,64.4,77777,9,999999999,190,0.0540,0,88,999.000,999.0,99.0 +1986,6,25,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,15.6,39,96700,293,1322,452,59,37,50,6400,3100,5700,1370,10,10.3,9,9,9.7,1830,9,999999999,230,0.0540,0,88,999.000,999.0,99.0 +1986,6,25,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,12.2,28,96700,52,892,444,22,17,20,2300,900,2300,480,70,9.3,8,7,64.4,3660,9,999999999,190,0.0540,0,88,999.000,999.0,99.0 +1986,6,25,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34.4,10.6,23,96700,0,0,432,0,0,0,0,0,0,0,110,6.2,4,3,56.3,77777,9,999999999,170,0.1220,0,88,999.000,999.0,99.0 +1986,6,25,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,11.7,27,96800,0,0,423,0,0,0,0,0,0,0,90,5.2,3,2,56.3,77777,9,999999999,190,0.1220,0,88,999.000,999.0,99.0 +1986,6,25,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,11.7,28,96800,0,0,428,0,0,0,0,0,0,0,30,1.5,6,4,56.3,7620,9,999999999,190,0.1220,0,88,999.000,999.0,99.0 +1986,6,25,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,12.8,32,96900,0,0,430,0,0,0,0,0,0,0,340,1.5,10,6,56.3,3660,9,999999999,200,0.1220,0,88,999.000,999.0,99.0 +1986,6,26,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,13.3,33,96900,0,0,431,0,0,0,0,0,0,0,270,2.6,7,6,56.3,3660,9,999999999,209,0.1220,0,88,999.000,999.0,99.0 +1986,6,26,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,13.9,36,96800,0,0,415,0,0,0,0,0,0,0,170,3.1,4,3,56.3,77777,9,999999999,209,0.1220,0,88,999.000,999.0,99.0 +1986,6,26,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,13.9,37,96900,0,0,395,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,209,0.1220,0,88,999.000,999.0,99.0 +1986,6,26,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,15.0,42,96900,0,0,393,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,230,0.1220,0,88,999.000,999.0,99.0 +1986,6,26,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,14.4,40,96900,0,0,393,0,0,0,0,0,0,0,40,3.1,0,0,56.3,77777,9,999999999,220,0.1220,0,88,999.000,999.0,99.0 +1986,6,26,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,13.3,36,97000,49,848,394,21,17,19,2200,900,2100,460,80,3.6,0,0,56.3,77777,9,999999999,200,0.2050,0,88,999.000,999.0,99.0 +1986,6,26,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,13.9,37,97000,288,1322,395,130,288,67,13600,22400,8700,1220,100,4.1,0,0,72.4,77777,9,999999999,209,0.2050,0,88,999.000,999.0,99.0 +1986,6,26,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,12.2,28,97000,548,1322,410,333,532,112,34400,50500,13400,2170,70,4.1,0,0,72.4,77777,9,999999999,190,0.2050,0,88,999.000,999.0,99.0 +1986,6,26,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.0,11.1,23,97100,791,1322,418,553,669,151,57900,67000,17700,3540,80,5.2,0,0,72.4,77777,9,999999999,180,0.2050,0,88,999.000,999.0,99.0 +1986,6,26,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.7,11.1,21,97100,1001,1322,427,744,742,180,79000,75700,21600,5740,60,1.5,0,0,72.4,77777,9,999999999,180,0.2050,0,88,999.000,999.0,99.0 +1986,6,26,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.8,9.4,18,97100,1162,1322,431,898,792,199,92700,79100,23000,8540,40,3.1,0,0,72.4,77777,9,999999999,160,0.2050,0,88,999.000,999.0,99.0 +1986,6,26,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,39.4,10.0,17,97100,1263,1322,441,992,815,211,103200,81600,25000,15020,90,3.1,0,0,72.4,77777,9,999999999,170,0.2050,0,88,999.000,999.0,99.0 +1986,6,26,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,40.6,10.0,16,97000,1298,1322,447,1032,805,239,110800,82400,29700,24780,60,2.6,2,0,72.4,77777,9,999999999,170,0.2050,0,88,999.000,999.0,99.0 +1986,6,26,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,42.2,10.0,15,97000,1265,1322,465,984,748,267,104600,76100,31700,20690,140,3.1,5,1,72.4,77777,9,999999999,170,0.2050,0,88,999.000,999.0,99.0 +1986,6,26,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,42.8,7.8,12,96900,1165,1322,466,874,655,296,91300,65800,33200,14030,10,3.1,4,1,72.4,77777,9,999999999,140,0.2050,0,88,999.000,999.0,99.0 +1986,6,26,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,42.8,9.4,14,96800,1005,1322,459,722,711,180,76700,72500,21500,5790,230,3.1,0,0,72.4,77777,9,999999999,160,0.2050,0,88,999.000,999.0,99.0 +1986,6,26,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,42.8,9.4,14,96700,797,1322,459,559,675,152,58700,67700,17800,3590,250,4.1,0,0,72.4,77777,9,999999999,160,0.2050,0,88,999.000,999.0,99.0 +1986,6,26,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,43.3,8.3,12,96700,554,1322,460,342,537,117,35300,51000,13900,2260,300,2.6,1,0,56.3,77777,9,999999999,140,0.2050,0,88,999.000,999.0,99.0 +1986,6,26,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,42.2,7.8,12,96700,294,1322,468,130,247,75,13800,19600,9500,1420,220,3.1,5,2,64.4,77777,9,999999999,140,0.2050,0,88,999.000,999.0,99.0 +1986,6,26,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,40.6,7.2,13,96700,53,892,462,18,11,17,1900,600,1900,420,230,2.1,6,3,56.3,77777,9,999999999,140,0.2050,0,88,999.000,999.0,99.0 +1986,6,26,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,39.4,8.3,15,96700,0,0,457,0,0,0,0,0,0,0,0,0.0,7,3,48.3,77777,9,999999999,150,0.1220,0,88,999.000,999.0,99.0 +1986,6,26,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.8,9.4,18,96800,0,0,449,0,0,0,0,0,0,0,0,0.0,7,3,48.3,77777,9,999999999,160,0.1220,0,88,999.000,999.0,99.0 +1986,6,26,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.1,12.8,25,96800,0,0,445,0,0,0,0,0,0,0,0,0.0,8,3,40.2,77777,9,999999999,200,0.1220,0,88,999.000,999.0,99.0 +1986,6,26,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.7,8.9,18,96900,0,0,446,0,0,0,0,0,0,0,220,2.1,5,4,56.3,77777,9,999999999,150,0.1220,0,88,999.000,999.0,99.0 +1986,6,27,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.0,9.4,21,96800,0,0,434,0,0,0,0,0,0,0,0,0.0,7,3,56.3,77777,9,999999999,160,0.1230,0,88,999.000,999.0,99.0 +1986,6,27,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.9,10.6,24,96900,0,0,429,0,0,0,0,0,0,0,230,2.1,7,3,56.3,77777,9,999999999,170,0.1230,0,88,999.000,999.0,99.0 +1986,6,27,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,11.1,27,96900,0,0,424,0,0,0,0,0,0,0,90,5.2,3,3,56.3,77777,9,999999999,180,0.1230,0,88,999.000,999.0,99.0 +1986,6,27,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,11.7,28,97000,0,0,404,0,0,0,0,0,0,0,80,3.1,0,0,56.3,77777,9,999999999,180,0.1230,0,88,999.000,999.0,99.0 +1986,6,27,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,10.0,26,97000,0,0,412,0,0,0,0,0,0,0,70,4.1,3,2,80.5,77777,9,999999999,170,0.1230,0,88,999.000,999.0,99.0 +1986,6,27,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,10.6,29,97100,48,848,407,23,43,19,2400,1800,2300,390,60,3.1,6,2,80.5,77777,9,999999999,170,0.0980,0,88,999.000,999.0,99.0 +1986,6,27,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,11.1,29,97200,286,1322,410,137,304,71,14200,23600,9100,1300,50,3.1,6,2,48.3,77777,9,999999999,180,0.0980,0,88,999.000,999.0,99.0 +1986,6,27,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,11.1,26,97300,547,1322,417,347,533,126,36800,51600,15500,2460,90,2.6,7,1,32.2,77777,9,999999999,180,0.0980,0,88,999.000,999.0,99.0 +1986,6,27,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.6,10.6,22,97300,790,1322,420,585,741,140,61600,74500,16900,3320,100,2.1,5,0,32.2,77777,9,999999999,170,0.0980,0,88,999.000,999.0,99.0 +1986,6,27,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.7,10.0,20,97300,1000,1322,434,727,737,168,77600,75400,20500,5390,200,1.5,3,1,40.2,77777,9,999999999,170,0.0980,0,88,999.000,999.0,99.0 +1986,6,27,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,40.0,10.0,16,97300,1161,1322,444,920,875,150,98100,88700,20100,6850,90,2.6,2,0,40.2,77777,9,999999999,160,0.0980,0,88,999.000,999.0,99.0 +1986,6,27,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,40.6,9.4,15,97300,1263,1322,447,989,881,145,101100,88300,16600,8750,180,2.6,1,0,40.2,77777,9,999999999,160,0.0980,0,88,999.000,999.0,99.0 +1986,6,27,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,42.2,8.9,13,97200,1298,1322,455,1040,907,147,106300,90900,16800,12150,120,3.1,1,0,40.2,77777,9,999999999,150,0.0980,0,88,999.000,999.0,99.0 +1986,6,27,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,43.3,9.4,13,97100,1265,1322,462,1010,900,146,103200,90200,16700,8930,220,3.6,1,0,40.2,77777,9,999999999,160,0.0980,0,88,999.000,999.0,99.0 +1986,6,27,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,43.3,8.3,12,97100,1165,1322,469,901,878,126,92700,88000,15000,4880,240,5.2,1,1,40.2,77777,9,999999999,150,0.0980,0,88,999.000,999.0,99.0 +1986,6,27,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,43.3,7.8,12,97000,1006,1322,460,774,854,123,82600,86400,16700,3840,270,3.6,1,0,48.3,77777,9,999999999,150,0.0980,0,88,999.000,999.0,99.0 +1986,6,27,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,43.3,6.7,11,96900,797,1322,458,576,784,103,60700,78200,13500,2420,260,3.1,1,0,48.3,77777,9,999999999,130,0.0980,0,88,999.000,999.0,99.0 +1986,6,27,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,43.3,6.7,11,96900,555,1322,467,362,618,102,37600,59100,12800,2020,260,3.6,2,1,48.3,77777,9,999999999,130,0.0980,0,88,999.000,999.0,99.0 +1986,6,27,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,42.2,6.1,11,96900,294,1322,459,147,408,57,15200,32500,7900,1030,280,3.1,3,1,40.2,77777,9,999999999,130,0.0980,0,88,999.000,999.0,99.0 +1986,6,27,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,41.1,6.1,12,96900,53,892,464,28,31,25,2900,1300,2900,520,240,1.5,10,3,48.3,77777,9,999999999,130,0.0980,0,88,999.000,999.0,99.0 +1986,6,27,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,39.4,7.8,15,97000,0,0,456,0,0,0,0,0,0,0,240,2.6,10,3,48.3,77777,9,999999999,150,0.1230,0,88,999.000,999.0,99.0 +1986,6,27,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.8,11.7,21,97100,0,0,457,0,0,0,0,0,0,0,250,3.6,10,4,48.3,77777,9,999999999,190,0.1230,0,88,999.000,999.0,99.0 +1986,6,27,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.2,12.2,22,97100,0,0,461,0,0,0,0,0,0,0,260,2.6,10,6,48.3,3660,9,999999999,190,0.1230,0,88,999.000,999.0,99.0 +1986,6,27,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.7,11.7,22,97100,0,0,480,0,0,0,0,0,0,0,280,3.6,10,9,48.3,3660,9,999999999,180,0.1230,0,88,999.000,999.0,99.0 +1986,6,28,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.1,11.1,22,97100,0,0,476,0,0,0,0,0,0,0,270,4.6,9,9,48.3,2440,9,999999999,180,0.1230,0,88,999.000,999.0,99.0 +1986,6,28,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.0,11.7,24,97200,0,0,470,0,0,0,0,0,0,0,280,2.1,10,9,48.3,3660,9,999999999,180,0.1230,0,88,999.000,999.0,99.0 +1986,6,28,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34.4,11.7,25,97200,0,0,466,0,0,0,0,0,0,0,280,3.1,10,9,48.3,2440,9,999999999,180,0.1230,0,88,999.000,999.0,99.0 +1986,6,28,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,11.7,27,97200,0,0,460,0,0,0,0,0,0,0,260,3.1,9,9,48.3,3660,9,999999999,190,0.1230,0,88,999.000,999.0,99.0 +1986,6,28,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,11.7,28,97300,0,0,437,0,0,0,0,0,0,0,0,0.0,8,7,56.3,3660,9,999999999,180,0.1230,0,88,999.000,999.0,99.0 +1986,6,28,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,12.2,30,97400,47,848,429,19,5,19,2200,0,2200,640,190,1.5,8,6,56.3,3660,9,999999999,190,0.1200,0,88,999.000,999.0,99.0 +1986,6,28,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,12.2,29,97400,285,1322,444,116,70,101,12700,5900,11400,2390,240,2.1,9,8,64.4,3660,9,999999999,190,0.1200,0,88,999.000,999.0,99.0 +1986,6,28,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,12.2,28,97400,545,1322,460,232,153,169,25300,15200,19000,3990,140,2.6,9,9,64.4,3660,9,999999999,190,0.1200,0,88,999.000,999.0,99.0 +1986,6,28,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34.4,11.7,25,97400,789,1322,466,322,70,280,35400,7100,31100,8880,20,3.1,9,9,64.4,3660,9,999999999,180,0.1200,0,88,999.000,999.0,99.0 +1986,6,28,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.0,11.7,24,97400,999,1322,470,631,288,412,67200,31000,43700,13660,20,2.6,9,9,56.3,3660,9,999999999,180,0.1200,0,88,999.000,999.0,99.0 +1986,6,28,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.0,11.7,24,97400,1160,1322,470,524,34,494,60200,3600,57100,19410,350,2.1,9,9,56.3,3660,9,999999999,180,0.1200,0,88,999.000,999.0,99.0 +1986,6,28,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.2,12.2,22,97400,1262,1322,474,673,240,443,73800,26100,48800,30530,300,2.1,9,8,48.3,3660,9,999999999,190,0.1200,0,88,999.000,999.0,99.0 +1986,6,28,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,38.9,11.7,20,97300,1298,1322,484,609,140,471,67200,14900,52500,37860,320,4.1,8,8,32.2,3660,9,999999999,190,0.1200,0,88,999.000,999.0,99.0 +1986,6,28,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,40.6,11.7,18,97200,1265,1322,481,882,566,339,95500,59300,38700,27010,300,5.7,7,6,40.2,7620,9,999999999,190,0.1200,0,88,999.000,999.0,99.0 +1986,6,28,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,40.0,10.6,17,97100,1165,1322,464,882,661,298,92000,66400,33400,14140,280,4.1,8,3,48.3,77777,9,999999999,170,0.1200,0,88,999.000,999.0,99.0 +1986,6,28,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,41.1,10.0,15,97000,1006,1322,477,665,483,297,70500,50200,32200,9680,300,4.1,8,5,48.3,7620,9,999999999,160,0.1200,0,88,999.000,999.0,99.0 +1986,6,28,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,40.6,10.0,16,97000,798,1322,478,450,243,303,48800,25400,33400,8220,310,4.1,10,6,64.4,7620,9,999999999,170,0.1200,0,88,999.000,999.0,99.0 +1986,6,28,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,40.0,8.3,15,97000,555,1322,496,223,111,176,24200,11000,19600,4170,260,5.2,10,9,64.4,7620,9,999999999,150,0.1200,0,88,999.000,999.0,99.0 +1986,6,28,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,38.9,8.3,16,97000,295,1322,489,97,22,92,10600,1900,10200,2260,260,4.6,10,9,64.4,7620,9,999999999,150,0.1200,0,88,999.000,999.0,99.0 +1986,6,28,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.8,8.3,17,97000,53,892,482,23,3,22,2500,0,2500,720,270,4.6,10,9,64.4,7620,9,999999999,150,0.1200,0,88,999.000,999.0,99.0 +1986,6,28,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.2,8.9,18,97000,0,0,493,0,0,0,0,0,0,0,230,2.1,10,10,56.3,7620,9,999999999,160,0.1230,0,88,999.000,999.0,99.0 +1986,6,28,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.7,8.9,18,97100,0,0,489,0,0,0,0,0,0,0,240,1.5,10,10,56.3,3050,9,999999999,150,0.1230,0,88,999.000,999.0,99.0 +1986,6,28,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.1,9.4,20,97100,0,0,486,0,0,0,0,0,0,0,250,2.1,10,10,56.3,3050,9,999999999,160,0.1230,0,88,999.000,999.0,99.0 +1986,6,28,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.6,11.7,24,97200,0,0,487,0,0,0,0,0,0,0,230,3.6,10,10,56.3,3050,9,999999999,190,0.1230,0,88,999.000,999.0,99.0 +1986,6,29,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.0,11.1,23,97100,0,0,482,0,0,0,0,0,0,0,270,1.5,10,10,56.3,3050,9,999999999,180,0.1230,0,88,999.000,999.0,99.0 +1986,6,29,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34.4,11.1,24,97100,0,0,478,0,0,0,0,0,0,0,310,2.1,10,10,56.3,3660,9,999999999,180,0.1230,0,88,999.000,999.0,99.0 +1986,6,29,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,11.7,27,97100,0,0,450,0,0,0,0,0,0,0,340,3.1,9,8,56.3,3660,9,999999999,190,0.1230,0,88,999.000,999.0,99.0 +1986,6,29,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,11.7,28,97100,0,0,428,0,0,0,0,0,0,0,10,2.1,9,4,56.3,77777,9,999999999,190,0.1230,0,88,999.000,999.0,99.0 +1986,6,29,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,11.7,28,97100,0,0,447,0,0,0,0,0,0,0,310,2.6,9,8,56.3,3660,9,999999999,190,0.1230,0,88,999.000,999.0,99.0 +1986,6,29,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,11.1,27,97200,46,826,469,9,0,9,1100,0,1100,340,190,2.1,10,10,56.3,3660,9,999999999,180,0.1240,0,88,999.000,999.0,99.0 +1986,6,29,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,11.1,27,97200,283,1322,452,110,111,86,11900,8900,10000,1860,0,0.0,10,9,56.3,3660,9,999999999,180,0.1240,0,88,999.000,999.0,99.0 +1986,6,29,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,10.6,26,97300,544,1322,451,189,52,168,20800,5000,18700,4740,300,1.5,10,9,64.4,3660,9,999999999,170,0.1240,0,88,999.000,999.0,99.0 +1986,6,29,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,11.7,27,97300,788,1322,450,355,141,271,38700,14700,29900,7300,340,2.1,10,8,64.4,3660,9,999999999,190,0.1240,0,88,999.000,999.0,99.0 +1986,6,29,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.0,11.7,24,97300,998,1322,460,446,80,385,49000,8200,42800,14140,280,3.6,10,8,64.4,3660,9,999999999,180,0.1240,0,88,999.000,999.0,99.0 +1986,6,29,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.6,11.7,24,97300,1159,1322,456,747,381,412,81400,41400,45000,18750,310,7.2,9,7,48.3,3660,9,999999999,190,0.1240,0,88,999.000,999.0,99.0 +1986,6,29,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34.4,12.8,27,97300,1262,1322,451,755,331,438,82900,36000,48400,30080,300,6.2,10,7,48.3,3660,9,999999999,200,0.1240,0,88,999.000,999.0,99.0 +1986,6,29,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,13.3,30,97300,1298,1322,452,763,274,493,83300,29800,54100,44690,280,7.2,10,8,48.3,3660,9,999999999,209,0.1240,0,88,999.000,999.0,99.0 +1986,6,29,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,14.4,33,97200,1265,1322,451,719,281,450,78900,30500,49600,31530,280,5.2,10,8,48.3,2440,9,999999999,220,0.1240,0,88,999.000,999.0,99.0 +1986,6,29,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,14.4,33,97200,1165,1322,461,689,193,519,74800,20400,56800,23190,290,10.3,10,9,40.2,2440,9,999999999,220,0.1240,0,88,999.000,999.0,99.0 +1986,6,29,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,15.0,35,97200,1006,1322,471,288,6,284,33900,500,33500,12850,300,6.2,10,10,48.3,3660,9,999999999,230,0.1240,0,88,999.000,999.0,99.0 +1986,6,29,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,15.6,37,97100,798,1322,459,365,109,299,40100,11100,33400,9420,300,5.2,10,9,48.3,3660,9,999999999,240,0.1240,0,88,999.000,999.0,99.0 +1986,6,29,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,15.6,38,97100,555,1322,469,172,29,160,18900,2800,17700,4610,280,6.2,10,10,48.3,3660,9,999999999,240,0.1240,0,88,999.000,999.0,99.0 +1986,6,29,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,15.6,39,97100,295,1322,465,46,0,46,5400,0,5400,1820,270,6.2,10,10,64.4,3660,9,999999999,240,0.1240,0,88,999.000,999.0,99.0 +1986,6,29,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,15.6,39,97200,53,892,465,12,1,12,1400,0,1400,440,260,5.2,10,10,64.4,3660,9,999999999,240,0.1240,0,88,999.000,999.0,99.0 +1986,6,29,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,15.6,40,97200,0,0,462,0,0,0,0,0,0,0,300,3.6,10,10,56.3,3660,9,999999999,230,0.1230,0,88,999.000,999.0,99.0 +1986,6,29,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,15.6,42,97100,0,0,458,0,0,0,0,0,0,0,280,3.1,10,10,56.3,3660,9,999999999,240,0.1230,0,88,999.000,999.0,99.0 +1986,6,29,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,16.1,45,97200,0,0,455,0,0,0,0,0,0,0,260,4.1,10,10,56.3,3660,9,999999999,250,0.1230,0,88,999.000,999.0,99.0 +1986,6,29,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,15.6,44,97200,0,0,418,0,0,0,0,0,0,0,260,3.6,7,6,56.3,3660,9,999999999,230,0.1230,0,88,999.000,999.0,99.0 +1986,6,30,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,15.6,46,97100,0,0,427,0,0,0,0,0,0,0,270,2.6,9,8,56.3,3660,9,999999999,240,0.1230,0,88,999.000,999.0,99.0 +1986,6,30,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,16.1,49,97100,0,0,406,0,0,0,0,0,0,0,220,2.1,9,4,56.3,77777,9,999999999,240,0.1230,0,88,999.000,999.0,99.0 +1986,6,30,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,16.1,49,97100,0,0,399,0,0,0,0,0,0,0,0,0.0,3,2,56.3,77777,9,999999999,240,0.1230,0,88,999.000,999.0,99.0 +1986,6,30,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,16.7,53,97200,0,0,397,0,0,0,0,0,0,0,320,1.5,2,2,56.3,77777,9,999999999,250,0.1230,0,88,999.000,999.0,99.0 +1986,6,30,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,16.7,54,97200,0,0,408,0,0,0,0,0,0,0,0,0.0,8,6,56.3,3660,9,999999999,250,0.1230,0,88,999.000,999.0,99.0 +1986,6,30,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,16.7,53,97200,45,826,422,16,3,16,1800,0,1800,560,50,1.5,9,8,72.4,3660,9,999999999,250,0.1200,0,88,999.000,999.0,99.0 +1986,6,30,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,15.6,47,97200,282,1321,424,80,46,70,8700,3800,7900,1800,130,2.1,9,8,72.4,3660,9,999999999,230,0.1200,0,88,999.000,999.0,99.0 +1986,6,30,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,15.6,42,97300,543,1321,425,209,132,155,22900,13100,17500,3650,140,3.1,7,6,64.4,3660,9,999999999,240,0.1200,0,88,999.000,999.0,99.0 +1986,6,30,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,15.0,38,97300,787,1321,430,469,356,256,50300,37800,27700,6380,90,1.5,9,6,64.4,7620,9,999999999,230,0.1200,0,88,999.000,999.0,99.0 +1986,6,30,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,15.0,33,97300,997,1321,432,794,681,279,84500,70800,30900,8900,360,2.1,9,3,72.4,77777,9,999999999,230,0.1200,0,88,999.000,999.0,99.0 +1986,6,30,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.0,14.4,29,97300,1159,1321,436,880,696,268,92400,70300,30600,12540,220,3.6,9,2,64.4,77777,9,999999999,220,0.1200,0,88,999.000,999.0,99.0 +1986,6,30,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.1,13.9,26,97200,1261,1321,442,959,765,226,102900,78400,27900,17250,240,5.2,5,2,72.4,77777,9,999999999,209,0.1200,0,88,999.000,999.0,99.0 +1986,6,30,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.7,15.0,27,97200,1297,1321,441,970,796,186,102700,80400,23600,18180,240,4.1,5,1,72.4,77777,9,999999999,220,0.1200,0,88,999.000,999.0,99.0 +1986,6,30,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.2,13.9,25,97100,1265,1321,448,960,709,280,101700,71900,32700,21650,300,7.7,5,2,72.4,77777,9,999999999,209,0.1200,0,88,999.000,999.0,99.0 +1986,6,30,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,38.3,13.9,23,97000,1165,1321,455,852,676,254,89900,68500,29300,12240,270,4.1,5,2,72.4,77777,9,999999999,209,0.1200,0,88,999.000,999.0,99.0 +1986,6,30,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,38.9,13.3,22,96900,1006,1321,462,740,659,237,77100,66300,26600,7400,280,5.2,4,3,72.4,77777,9,999999999,209,0.1200,0,88,999.000,999.0,99.0 +1986,6,30,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,38.9,13.3,22,96900,798,1321,462,525,531,203,55800,54500,22800,4820,240,4.6,4,3,80.5,77777,9,999999999,209,0.1200,0,88,999.000,999.0,99.0 +1986,6,30,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.8,13.3,23,96800,555,1321,451,317,458,125,33800,44500,15100,2450,240,3.6,3,2,80.5,77777,9,999999999,200,0.1200,0,88,999.000,999.0,99.0 +1986,6,30,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.8,12.8,22,96900,295,1321,436,152,420,58,15500,33400,8100,1050,240,3.6,2,0,80.5,77777,9,999999999,190,0.1200,0,88,999.000,999.0,99.0 +1986,6,30,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.7,12.8,24,96900,53,892,448,26,26,23,2700,1100,2600,470,240,4.1,7,3,72.4,77777,9,999999999,200,0.1200,0,88,999.000,999.0,99.0 +1986,6,30,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.0,13.9,28,96900,0,0,436,0,0,0,0,0,0,0,250,4.1,7,2,56.3,77777,9,999999999,209,0.1230,0,88,999.000,999.0,99.0 +1986,6,30,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34.3,14.0,29,97000,0,0,436,0,0,0,0,0,0,0,230,3.8,8,3,56.3,77777,9,999999999,209,0.1230,0,88,999.000,999.0,99.0 +1986,6,30,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.6,14.0,31,97000,0,0,432,0,0,0,0,0,0,0,260,3.5,8,3,56.3,77777,9,999999999,209,0.1230,0,88,999.000,999.0,99.0 +1986,6,30,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.9,14.1,32,97000,0,0,439,0,0,0,0,0,0,0,280,3.2,8,6,56.3,3050,9,999999999,220,0.1230,0,88,999.000,999.0,99.0 +1988,7,1,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.1,14.2,33,96600,0,0,440,0,0,0,0,0,0,0,0,3.0,7,7,56.3,3660,9,999999999,200,0.1190,0,88,999.000,999.0,99.0 +1988,7,1,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.4,14.3,35,96600,0,0,443,0,0,0,0,0,0,0,260,2.7,8,8,56.3,3660,9,999999999,209,0.1190,0,88,999.000,999.0,99.0 +1988,7,1,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.7,14.3,36,96600,0,0,439,0,0,0,0,0,0,0,310,2.4,8,8,56.3,3660,9,999999999,209,0.1190,0,88,999.000,999.0,99.0 +1988,7,1,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,14.4,39,96600,0,0,423,0,0,0,0,0,0,0,40,2.1,6,6,56.3,3660,9,999999999,220,0.1190,0,88,999.000,999.0,99.0 +1988,7,1,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,13.9,36,96700,0,0,431,0,0,0,0,0,0,0,90,1.5,7,7,64.4,3660,9,999999999,209,0.1190,0,88,999.000,999.0,99.0 +1988,7,1,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,13.9,37,96800,44,804,427,5,2,5,600,100,600,130,20,1.5,8,7,64.4,3660,9,999999999,209,0.1190,0,88,999.000,999.0,99.0 +1988,7,1,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,13.9,37,96800,279,1321,434,63,2,63,7200,100,7200,2280,90,3.1,8,8,64.4,3660,9,999999999,209,0.1190,0,88,999.000,999.0,99.0 +1988,7,1,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,12.8,34,96900,540,1321,445,125,2,123,14300,100,14200,5030,130,2.1,9,9,64.4,3660,9,999999999,200,0.1190,0,88,999.000,999.0,99.0 +1988,7,1,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,12.2,30,96900,785,1321,451,251,21,238,28700,1800,27700,9910,120,3.1,9,9,64.4,3660,9,999999999,190,0.1190,0,88,999.000,999.0,99.0 +1988,7,1,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,12.2,29,97000,995,1321,444,362,48,325,39800,4900,36100,12300,80,5.2,8,8,64.4,3660,9,999999999,190,0.1190,0,88,999.000,999.0,99.0 +1988,7,1,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.9,10.0,23,97000,1157,1321,451,401,68,341,44300,7000,38200,15870,120,3.6,8,8,64.4,3660,9,999999999,170,0.1190,0,88,999.000,999.0,99.0 +1988,7,1,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,38.9,10.0,17,96900,1260,1321,473,1106,812,331,115800,81500,37900,24630,240,3.1,7,7,72.4,3660,9,999999999,160,0.1190,0,88,999.000,999.0,99.0 +1988,7,1,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,40.6,11.1,17,96800,1297,1321,480,1066,642,433,113000,67000,47100,45590,160,3.6,6,6,72.4,3660,9,999999999,180,0.1190,0,88,999.000,999.0,99.0 +1988,7,1,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,40.6,10.6,17,96800,1264,1321,475,873,537,357,94000,56200,40100,28460,270,3.1,5,5,72.4,77777,9,999999999,180,0.1190,0,88,999.000,999.0,99.0 +1988,7,1,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,41.1,10.0,15,96700,1165,1321,477,763,597,233,80800,60800,27000,11310,270,6.2,5,5,72.4,77777,9,999999999,160,0.1190,0,88,999.000,999.0,99.0 +1988,7,1,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,41.7,8.3,13,96600,1006,1321,474,778,712,230,80800,71700,26100,7210,300,4.1,4,4,72.4,77777,9,999999999,140,0.1190,0,88,999.000,999.0,99.0 +1988,7,1,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,40.0,7.8,14,96600,798,1321,464,364,234,210,38400,24900,23300,5090,270,5.2,4,4,72.4,77777,9,999999999,140,0.1190,0,88,999.000,999.0,99.0 +1988,7,1,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,40.0,8.9,15,96500,556,1321,469,150,24,133,15700,2300,14800,3970,300,3.1,5,5,72.4,77777,9,999999999,150,0.1190,0,88,999.000,999.0,99.0 +1988,7,1,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,40.0,8.3,15,96500,295,1321,477,54,3,53,6200,100,6200,2040,270,3.6,7,7,72.4,3660,9,999999999,150,0.1190,0,88,999.000,999.0,99.0 +1988,7,1,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,39.4,7.8,15,96500,53,892,463,12,1,11,1300,0,1300,410,0,0.0,5,5,56.3,77777,9,999999999,150,0.1190,0,88,999.000,999.0,99.0 +1988,7,1,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,38.3,9.4,17,96600,0,0,456,0,0,0,0,0,0,0,70,2.1,4,4,56.3,77777,9,999999999,160,0.1190,0,88,999.000,999.0,99.0 +1988,7,1,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.8,10.6,19,96700,0,0,455,0,0,0,0,0,0,0,80,4.6,4,4,56.3,77777,9,999999999,170,0.1190,0,88,999.000,999.0,99.0 +1988,7,1,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34.4,13.3,28,96800,0,0,459,0,0,0,0,0,0,0,70,10.3,8,8,16.1,3660,9,999999999,200,0.1190,0,88,999.000,999.0,99.0 +1988,7,1,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.7,12.2,23,96800,0,0,471,0,0,0,0,0,0,0,160,7.2,8,8,40.2,3660,9,999999999,190,0.1190,0,88,999.000,999.0,99.0 +1988,7,2,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.6,12.2,24,96700,0,0,488,0,0,0,0,0,0,0,350,4.1,10,10,56.3,3660,9,999999999,190,0.1190,0,88,999.000,999.0,99.0 +1988,7,2,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.0,12.2,25,96800,0,0,461,0,0,0,0,0,0,0,300,2.1,8,8,56.3,3960,9,999999999,190,0.1190,0,88,999.000,999.0,99.0 +1988,7,2,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,13.3,30,96800,0,0,436,0,0,0,0,0,0,0,40,3.1,5,5,56.3,77777,9,999999999,209,0.1190,0,88,999.000,999.0,99.0 +1988,7,2,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,13.9,33,96800,0,0,431,0,0,0,0,0,0,0,0,0.0,5,5,56.3,77777,9,999999999,209,0.1190,0,88,999.000,999.0,99.0 +1988,7,2,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,14.4,35,96800,0,0,438,0,0,0,0,0,0,0,90,2.6,7,7,80.5,3960,9,999999999,220,0.1190,0,88,999.000,999.0,99.0 +1988,7,2,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,12.8,31,96900,43,804,433,22,93,12,1900,3500,1700,200,110,3.1,6,6,64.4,3960,9,999999999,200,0.1190,0,88,999.000,999.0,99.0 +1988,7,2,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,12.8,30,96900,278,1321,436,158,307,84,15100,23400,10200,1570,120,2.6,6,6,72.4,3960,9,999999999,200,0.1190,0,88,999.000,999.0,99.0 +1988,7,2,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.9,13.3,29,97000,539,1321,433,356,684,69,36400,65200,9800,1430,110,3.1,3,3,72.4,77777,9,999999999,209,0.1190,0,88,999.000,999.0,99.0 +1988,7,2,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.1,12.8,25,97000,783,1321,445,558,784,84,59000,78700,12300,2070,70,3.1,3,3,72.4,77777,9,999999999,200,0.1190,0,88,999.000,999.0,99.0 +1988,7,2,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.8,12.2,22,97000,994,1321,449,750,846,108,77100,84500,13400,2830,220,2.1,2,2,72.4,77777,9,999999999,190,0.1190,0,88,999.000,999.0,99.0 +1988,7,2,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,40.0,12.2,19,97000,1156,1321,467,906,878,131,92600,87900,15400,4830,220,3.1,3,3,80.5,77777,9,999999999,190,0.1190,0,88,999.000,999.0,99.0 +1988,7,2,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,40.0,12.2,19,96900,1260,1321,467,1003,880,158,101900,88100,17700,9100,270,3.1,3,3,80.5,77777,9,999999999,190,0.1190,0,88,999.000,999.0,99.0 +1988,7,2,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,41.1,7.2,13,96900,1296,1321,461,1055,897,173,112700,90900,23300,16880,270,5.2,2,2,80.5,77777,9,999999999,140,0.1190,0,88,999.000,999.0,99.0 +1988,7,2,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,42.8,7.2,12,96800,1264,1321,465,1027,910,155,104900,91100,17500,9290,300,5.2,1,1,80.5,77777,9,999999999,140,0.1190,0,88,999.000,999.0,99.0 +1988,7,2,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,42.2,7.8,12,96700,1165,1321,462,935,886,153,99700,89700,20400,7080,240,6.2,1,1,80.5,77777,9,999999999,140,0.1190,0,88,999.000,999.0,99.0 +1988,7,2,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,42.8,7.2,12,96600,1007,1321,465,793,862,136,83800,86900,17500,4140,250,5.2,1,1,80.5,77777,9,999999999,140,0.1190,0,88,999.000,999.0,99.0 +1988,7,2,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,42.8,6.1,11,96600,799,1321,463,554,811,68,58600,80300,10000,1760,260,5.7,1,1,80.5,77777,9,999999999,130,0.1190,0,88,999.000,999.0,99.0 +1988,7,2,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,42.2,6.7,12,96500,556,1321,460,352,702,60,37900,67700,9300,1330,270,5.7,1,1,80.5,77777,9,999999999,140,0.1190,0,88,999.000,999.0,99.0 +1988,7,2,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,41.1,6.7,12,96500,295,1321,454,96,210,50,10500,16600,6800,880,270,6.7,1,1,80.5,77777,9,999999999,130,0.1190,0,88,999.000,999.0,99.0 +1988,7,2,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.2,11.7,21,96600,53,892,449,9,1,9,1100,0,1100,340,340,4.6,3,3,64.4,77777,9,999999999,180,0.1190,0,88,999.000,999.0,99.0 +1988,7,2,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.2,11.7,21,96600,0,0,439,0,0,0,0,0,0,0,10,3.6,1,1,56.3,77777,9,999999999,180,0.1190,0,88,999.000,999.0,99.0 +1988,7,2,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.1,11.7,23,96700,0,0,425,0,0,0,0,0,0,0,50,1.5,0,0,56.3,77777,9,999999999,190,0.1190,0,88,999.000,999.0,99.0 +1988,7,2,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34.4,11.7,25,96700,0,0,415,0,0,0,0,0,0,0,250,2.1,0,0,56.3,77777,9,999999999,180,0.1190,0,88,999.000,999.0,99.0 +1988,7,2,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34.4,12.2,26,96700,0,0,416,0,0,0,0,0,0,0,270,2.1,2,0,56.3,77777,9,999999999,190,0.1190,0,88,999.000,999.0,99.0 +1988,7,3,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,12.2,29,96700,0,0,404,0,0,0,0,0,0,0,240,4.1,3,0,56.3,77777,9,999999999,190,0.2150,0,88,999.000,999.0,99.0 +1988,7,3,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,13.9,37,96700,0,0,408,0,0,0,0,0,0,0,230,3.1,3,2,56.3,77777,9,999999999,209,0.2150,0,88,999.000,999.0,99.0 +1988,7,3,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,13.3,35,96700,0,0,418,0,0,0,0,0,0,0,240,2.6,4,4,56.3,77777,9,999999999,209,0.2150,0,88,999.000,999.0,99.0 +1988,7,3,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,13.9,39,96700,0,0,409,0,0,0,0,0,0,0,250,2.1,3,3,56.3,77777,9,999999999,209,0.2150,0,88,999.000,999.0,99.0 +1988,7,3,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,14.4,40,96700,0,0,413,0,0,0,0,0,0,0,350,2.6,4,4,80.5,77777,9,999999999,220,0.2150,0,88,999.000,999.0,99.0 +1988,7,3,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,13.9,39,96800,42,782,409,16,82,8,1400,3800,1200,160,0,0.0,3,3,80.5,77777,9,999999999,209,0.2150,0,88,999.000,999.0,99.0 +1988,7,3,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,11.1,29,96900,276,1321,414,137,459,47,14800,35900,7300,870,320,3.1,3,3,80.5,77777,9,999999999,180,0.2150,0,88,999.000,999.0,99.0 +1988,7,3,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,7.8,21,97000,537,1321,419,328,611,87,35200,58400,11500,1750,270,4.6,3,3,80.5,77777,9,999999999,140,0.2150,0,88,999.000,999.0,99.0 +1988,7,3,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34.4,6.1,17,97000,782,1321,421,516,551,202,56100,56400,22700,4720,290,5.2,2,2,80.5,77777,9,999999999,130,0.2150,0,88,999.000,999.0,99.0 +1988,7,3,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.0,5.6,16,97000,993,1321,428,500,226,334,55400,24000,37300,10940,280,3.1,3,3,80.5,77777,9,999999999,130,0.2150,0,88,999.000,999.0,99.0 +1988,7,3,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.7,5.6,15,97000,1156,1321,433,938,863,189,98300,86500,22500,8050,290,3.1,2,2,80.5,77777,9,999999999,130,0.2150,0,88,999.000,999.0,99.0 +1988,7,3,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,38.9,7.8,15,96900,1259,1321,443,1017,910,154,104500,91100,17400,8910,270,3.6,1,1,80.5,77777,9,999999999,140,0.2150,0,88,999.000,999.0,99.0 +1988,7,3,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,40.0,7.8,14,96900,1296,1321,449,1064,916,160,108100,91800,17900,12700,290,3.1,1,1,80.5,77777,9,999999999,140,0.2150,0,88,999.000,999.0,99.0 +1988,7,3,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,40.6,7.8,14,96700,1264,1321,453,1011,896,150,103100,89800,17100,9070,290,4.6,1,1,80.5,77777,9,999999999,150,0.2150,0,88,999.000,999.0,99.0 +1988,7,3,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,41.7,7.2,12,96600,1165,1321,450,942,894,145,95700,89500,16700,5260,240,5.2,0,0,80.5,77777,9,999999999,130,0.2150,0,88,999.000,999.0,99.0 +1988,7,3,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,42.2,8.9,13,96600,1007,1321,455,795,856,132,83200,86400,17200,4050,270,5.2,0,0,80.5,77777,9,999999999,150,0.2150,0,88,999.000,999.0,99.0 +1988,7,3,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,42.2,7.8,12,96500,799,1321,453,559,799,42,55900,79400,7900,1300,260,5.2,0,0,80.5,77777,9,999999999,140,0.2150,0,88,999.000,999.0,99.0 +1988,7,3,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,41.7,8.3,13,96400,556,1321,451,358,700,30,34800,67100,6500,910,300,6.2,0,0,80.5,77777,9,999999999,140,0.2150,0,88,999.000,999.0,99.0 +1988,7,3,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,40.6,9.4,15,96400,295,1321,447,119,368,25,11600,30900,4700,580,280,6.2,0,0,80.5,77777,9,999999999,160,0.2150,0,88,999.000,999.0,99.0 +1988,7,3,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,39.4,8.3,15,96500,53,892,447,16,55,10,1500,2200,1400,170,260,4.6,1,1,64.4,77777,9,999999999,150,0.2150,0,88,999.000,999.0,99.0 +1988,7,3,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.2,10.0,19,96500,0,0,428,0,0,0,0,0,0,0,270,4.1,0,0,56.3,77777,9,999999999,160,0.2150,0,88,999.000,999.0,99.0 +1988,7,3,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.7,10.6,21,96600,0,0,426,0,0,0,0,0,0,0,270,3.1,0,0,56.3,77777,9,999999999,180,0.2150,0,88,999.000,999.0,99.0 +1988,7,3,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.0,11.7,24,96600,0,0,433,0,0,0,0,0,0,0,290,3.1,2,2,56.3,77777,9,999999999,180,0.2150,0,88,999.000,999.0,99.0 +1988,7,3,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.0,11.1,23,96700,0,0,452,0,0,0,0,0,0,0,270,4.1,7,7,56.3,3660,9,999999999,170,0.2150,0,88,999.000,999.0,99.0 +1988,7,4,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,10.6,25,96700,0,0,426,0,0,0,0,0,0,0,310,3.6,3,3,56.3,77777,9,999999999,170,0.0970,0,88,999.000,999.0,99.0 +1988,7,4,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,10.6,25,96700,0,0,416,0,0,0,0,0,0,0,260,5.2,1,1,56.3,77777,9,999999999,170,0.0970,0,88,999.000,999.0,99.0 +1988,7,4,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,10.6,27,96700,0,0,400,0,0,0,0,0,0,0,240,3.1,0,0,56.3,77777,9,999999999,170,0.0970,0,88,999.000,999.0,99.0 +1988,7,4,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,10.6,31,96700,0,0,388,0,0,0,0,0,0,0,10,1.5,0,0,56.3,77777,9,999999999,170,0.0970,0,88,999.000,999.0,99.0 +1988,7,4,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,10.0,29,96700,0,0,403,0,0,0,0,0,0,0,0,0.0,2,2,72.4,77777,9,999999999,170,0.0970,0,88,999.000,999.0,99.0 +1988,7,4,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,10.6,30,96800,41,782,404,16,70,8,1300,3200,1100,160,80,2.1,2,2,72.4,77777,9,999999999,170,0.0970,0,88,999.000,999.0,99.0 +1988,7,4,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,10.6,29,96900,274,1321,407,137,450,45,14300,35200,7100,840,330,3.1,2,2,48.3,77777,9,999999999,170,0.0970,0,88,999.000,999.0,99.0 +1988,7,4,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,10.6,26,97000,535,1321,416,342,676,70,35900,64300,9800,1440,290,2.6,2,2,56.3,77777,9,999999999,170,0.0970,0,88,999.000,999.0,99.0 +1988,7,4,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34.4,9.4,22,97000,780,1321,412,544,769,97,58300,76800,12900,2280,300,3.1,0,0,56.3,77777,9,999999999,160,0.0970,0,88,999.000,999.0,99.0 +1988,7,4,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.1,7.2,17,97000,992,1321,418,755,842,127,80700,85000,16700,3820,230,2.1,0,0,56.3,77777,9,999999999,140,0.0970,0,88,999.000,999.0,99.0 +1988,7,4,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.2,6.1,15,97000,1155,1321,423,914,880,147,93900,88000,16800,5070,250,3.6,0,0,56.3,77777,9,999999999,130,0.0970,0,88,999.000,999.0,99.0 +1988,7,4,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,38.3,5.6,13,97000,1258,1321,436,1018,908,153,104200,90900,17300,8830,280,4.1,1,1,64.4,77777,9,999999999,120,0.0970,0,88,999.000,999.0,99.0 +1988,7,4,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,40.0,5.6,12,96900,1296,1321,446,1066,916,164,108400,91700,18300,12880,290,2.6,1,1,64.4,77777,9,999999999,120,0.0970,0,88,999.000,999.0,99.0 +1988,7,4,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,40.6,6.1,12,96800,1264,1321,442,1032,914,154,105200,91500,17400,9220,210,4.1,0,0,72.4,77777,9,999999999,130,0.0970,0,88,999.000,999.0,99.0 +1988,7,4,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,41.7,6.1,11,96800,1165,1321,448,937,889,149,95600,88900,17000,5320,250,4.6,0,0,80.5,77777,9,999999999,120,0.0970,0,88,999.000,999.0,99.0 +1988,7,4,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,41.7,6.7,12,96700,1007,1321,449,795,859,135,83500,86600,17400,4120,240,3.6,0,0,80.5,77777,9,999999999,130,0.0970,0,88,999.000,999.0,99.0 +1988,7,4,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,41.1,7.2,13,96700,798,1321,455,554,789,67,57100,78200,9800,1750,290,2.1,1,1,80.5,77777,9,999999999,140,0.0970,0,88,999.000,999.0,99.0 +1988,7,4,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,41.1,7.2,13,96600,555,1321,455,352,693,50,36000,66200,8200,1240,280,4.6,1,1,80.5,77777,9,999999999,140,0.0970,0,88,999.000,999.0,99.0 +1988,7,4,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,40.0,6.7,13,96600,294,1321,454,129,358,47,13200,28800,6800,880,300,3.6,2,2,80.5,77777,9,999999999,130,0.0970,0,88,999.000,999.0,99.0 +1988,7,4,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,38.9,6.7,14,96600,52,870,452,22,56,16,2100,1900,2000,270,280,3.6,3,3,64.4,77777,9,999999999,130,0.0970,0,88,999.000,999.0,99.0 +1988,7,4,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.8,7.8,16,96600,0,0,451,0,0,0,0,0,0,0,270,3.1,4,4,56.3,77777,9,999999999,140,0.0970,0,88,999.000,999.0,99.0 +1988,7,4,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.7,8.3,18,96700,0,0,445,0,0,0,0,0,0,0,250,2.1,4,4,56.3,77777,9,999999999,150,0.0970,0,88,999.000,999.0,99.0 +1988,7,4,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.6,8.3,19,96700,0,0,435,0,0,0,0,0,0,0,250,2.6,3,3,56.3,77777,9,999999999,150,0.0970,0,88,999.000,999.0,99.0 +1988,7,4,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.0,9.4,21,96700,0,0,434,0,0,0,0,0,0,0,230,1.5,3,3,56.3,77777,9,999999999,160,0.0970,0,88,999.000,999.0,99.0 +1988,7,5,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34.4,8.9,21,96700,0,0,440,0,0,0,0,0,0,0,250,2.1,6,6,56.3,3660,9,999999999,160,0.1400,0,88,999.000,999.0,99.0 +1988,7,5,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,9.4,23,96800,0,0,440,0,0,0,0,0,0,0,320,3.1,7,7,56.3,3660,9,999999999,160,0.1400,0,88,999.000,999.0,99.0 +1988,7,5,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,9.4,24,96800,0,0,437,0,0,0,0,0,0,0,200,1.5,7,7,56.3,3660,9,999999999,160,0.1400,0,88,999.000,999.0,99.0 +1988,7,5,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,10.0,25,96800,0,0,432,0,0,0,0,0,0,0,140,3.1,6,6,56.3,3660,9,999999999,170,0.1400,0,88,999.000,999.0,99.0 +1988,7,5,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,11.1,27,96900,0,0,439,0,0,0,0,0,0,0,120,2.1,7,7,56.3,3660,9,999999999,180,0.1400,0,88,999.000,999.0,99.0 +1988,7,5,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,10.0,25,96900,40,760,444,7,2,7,900,0,900,270,160,3.1,8,8,64.4,3660,9,999999999,170,0.1400,0,88,999.000,999.0,99.0 +1988,7,5,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,12.2,28,97000,272,1321,435,100,190,57,10400,14500,7400,1030,90,3.1,5,5,64.4,77777,9,999999999,190,0.1400,0,88,999.000,999.0,99.0 +1988,7,5,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34.4,14.4,30,97000,534,1321,444,350,679,68,35800,64600,9700,1410,100,3.6,5,5,56.3,77777,9,999999999,220,0.1400,0,88,999.000,999.0,99.0 +1988,7,5,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.6,14.4,28,97100,779,1321,434,553,778,95,58700,77700,12800,2240,120,3.1,1,1,56.3,77777,9,999999999,220,0.1400,0,88,999.000,999.0,99.0 +1988,7,5,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,38.3,11.7,20,97100,991,1321,437,752,847,119,80700,85800,16300,3630,170,4.1,0,0,64.4,77777,9,999999999,180,0.1400,0,88,999.000,999.0,99.0 +1988,7,5,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,40.6,9.4,15,97100,1154,1321,447,911,889,136,93800,89000,15900,4880,200,2.1,0,0,72.4,77777,9,999999999,160,0.1400,0,88,999.000,999.0,99.0 +1988,7,5,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,41.1,10.6,16,97000,1258,1321,451,998,895,146,102300,89700,16700,8520,230,3.6,0,0,64.4,77777,9,999999999,170,0.1400,0,88,999.000,999.0,99.0 +1988,7,5,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,42.2,10.6,15,97000,1295,1321,458,1063,915,162,108100,91600,18100,12700,170,3.6,0,0,80.5,77777,9,999999999,170,0.1400,0,88,999.000,999.0,99.0 +1988,7,5,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,42.2,10.6,15,96900,1264,1321,458,1021,901,156,104100,90200,17600,9290,200,1.5,0,0,80.5,77777,9,999999999,170,0.1400,0,88,999.000,999.0,99.0 +1988,7,5,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,42.8,10.6,15,96800,1165,1321,461,924,866,157,97900,87600,20500,7220,320,3.6,0,0,80.5,77777,9,999999999,170,0.1400,0,88,999.000,999.0,99.0 +1988,7,5,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,42.8,9.4,14,96700,1006,1321,459,790,848,140,82900,85400,17700,4220,300,5.2,0,0,80.5,77777,9,999999999,160,0.1400,0,88,999.000,999.0,99.0 +1988,7,5,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,42.8,9.4,14,96700,798,1321,459,562,795,71,57800,78700,10200,1790,280,3.6,0,0,80.5,77777,9,999999999,160,0.1400,0,88,999.000,999.0,99.0 +1988,7,5,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,42.2,10.6,15,96700,555,1321,458,354,699,51,36400,66700,8300,1250,270,4.6,0,0,80.5,77777,9,999999999,170,0.1400,0,88,999.000,999.0,99.0 +1988,7,5,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,41.1,10.6,16,96700,294,1321,451,117,361,33,12100,29500,5500,650,280,4.1,0,0,80.5,77777,9,999999999,170,0.1400,0,88,999.000,999.0,99.0 +1988,7,5,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,40.0,9.4,16,96700,52,870,443,16,67,9,1500,2700,1300,150,270,4.1,0,0,56.3,77777,9,999999999,160,0.1400,0,88,999.000,999.0,99.0 +1988,7,5,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,38.9,8.9,16,96700,0,0,436,0,0,0,0,0,0,0,260,4.1,0,0,56.3,77777,9,999999999,150,0.1400,0,88,999.000,999.0,99.0 +1988,7,5,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.2,9.4,18,96800,0,0,436,0,0,0,0,0,0,0,240,3.1,1,1,56.3,77777,9,999999999,160,0.1400,0,88,999.000,999.0,99.0 +1988,7,5,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.1,10.0,20,96800,0,0,436,0,0,0,0,0,0,0,270,3.1,2,2,56.3,77777,9,999999999,160,0.1400,0,88,999.000,999.0,99.0 +1988,7,5,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.0,9.4,21,96800,0,0,429,0,0,0,0,0,0,0,280,4.1,2,2,56.3,77777,9,999999999,160,0.1400,0,88,999.000,999.0,99.0 +1988,7,6,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34.4,8.3,20,96900,0,0,429,0,0,0,0,0,0,0,280,3.1,4,3,56.3,77777,9,999999999,150,0.2800,0,88,999.000,999.0,99.0 +1988,7,6,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.9,7.8,20,96900,0,0,425,0,0,0,0,0,0,0,290,3.1,5,3,56.3,77777,9,999999999,150,0.2800,0,88,999.000,999.0,99.0 +1988,7,6,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,7.2,20,96900,0,0,421,0,0,0,0,0,0,0,270,2.6,5,4,56.3,77777,9,999999999,140,0.2800,0,88,999.000,999.0,99.0 +1988,7,6,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,7.2,21,96900,0,0,421,0,0,0,0,0,0,0,270,2.1,6,5,56.3,3660,9,999999999,140,0.2800,0,88,999.000,999.0,99.0 +1988,7,6,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,8.3,23,97000,0,0,417,0,0,0,0,0,0,0,90,2.6,5,4,56.3,77777,9,999999999,150,0.2800,0,88,999.000,999.0,99.0 +1988,7,6,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,8.3,24,97000,39,760,414,18,74,10,1600,2700,1400,170,310,2.6,5,4,56.3,77777,9,999999999,150,0.2800,0,88,999.000,999.0,99.0 +1988,7,6,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,9.4,26,97100,270,1321,412,127,425,43,13500,33100,6700,800,310,3.1,4,3,56.3,77777,9,999999999,160,0.2800,0,88,999.000,999.0,99.0 +1988,7,6,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,10.6,26,97100,532,1321,423,322,614,79,34500,58800,10800,1600,0,0.0,4,3,72.4,77777,9,999999999,180,0.2800,0,88,999.000,999.0,99.0 +1988,7,6,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.0,12.2,25,97200,778,1321,427,492,635,127,53100,64000,15400,3010,300,4.1,1,1,72.4,77777,9,999999999,190,0.2800,0,88,999.000,999.0,99.0 +1988,7,6,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.1,11.1,22,97200,989,1321,424,736,825,126,79100,83300,16600,3780,300,4.1,0,0,72.4,77777,9,999999999,180,0.2800,0,88,999.000,999.0,99.0 +1988,7,6,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,38.3,11.1,19,97100,1153,1321,436,902,876,143,93100,87600,16500,4970,240,2.6,0,0,64.4,77777,9,999999999,170,0.2800,0,88,999.000,999.0,99.0 +1988,7,6,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,38.9,10.0,17,97100,1257,1321,446,1001,881,165,107400,89300,22200,11700,270,2.1,1,1,72.4,77777,9,999999999,160,0.2800,0,88,999.000,999.0,99.0 +1988,7,6,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,41.1,11.7,17,97000,1295,1321,468,976,682,304,102800,69000,35100,30160,310,3.6,2,2,72.4,77777,9,999999999,180,0.2800,0,88,999.000,999.0,99.0 +1988,7,6,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,41.7,7.8,13,96900,1263,1321,459,854,561,314,93000,58800,36600,24760,240,4.6,1,1,80.5,77777,9,999999999,140,0.2800,0,88,999.000,999.0,99.0 +1988,7,6,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,41.7,11.1,16,96800,1165,1321,455,876,791,173,91600,79600,21300,7790,290,4.1,0,0,80.5,77777,9,999999999,180,0.2800,0,88,999.000,999.0,99.0 +1988,7,6,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,42.8,11.1,15,96800,1006,1321,462,772,818,141,80500,82300,17700,4240,300,5.2,0,0,80.5,77777,9,999999999,170,0.2800,0,88,999.000,999.0,99.0 +1988,7,6,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,42.8,11.1,15,96700,798,1321,462,542,746,67,54400,73900,9600,1750,290,4.6,0,0,80.5,77777,9,999999999,170,0.2800,0,88,999.000,999.0,99.0 +1988,7,6,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,42.2,13.3,18,96700,555,1321,462,345,649,50,35100,63000,8600,1170,260,6.2,0,0,80.5,77777,9,999999999,200,0.2800,0,88,999.000,999.0,99.0 +1988,7,6,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,41.1,12.8,19,96700,294,1321,454,119,309,42,11600,25000,6100,800,280,6.2,0,0,80.5,77777,9,999999999,200,0.2800,0,88,999.000,999.0,99.0 +1988,7,6,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,39.4,13.3,21,96700,52,870,445,14,48,9,1400,1900,1200,150,270,4.6,0,0,80.5,77777,9,999999999,200,0.2800,0,88,999.000,999.0,99.0 +1988,7,6,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,38.3,13.9,23,96700,0,0,449,0,0,0,0,0,0,0,270,5.2,1,1,56.3,77777,9,999999999,209,0.2800,0,88,999.000,999.0,99.0 +1988,7,6,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.2,14.4,26,96800,0,0,449,0,0,0,0,0,0,0,270,4.6,2,2,56.3,77777,9,999999999,220,0.2800,0,88,999.000,999.0,99.0 +1988,7,6,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.1,15.0,28,96800,0,0,451,0,0,0,0,0,0,0,280,3.6,4,4,56.3,77777,9,999999999,220,0.2800,0,88,999.000,999.0,99.0 +1988,7,6,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.1,13.9,26,96900,0,0,453,0,0,0,0,0,0,0,280,4.6,6,5,56.3,3660,9,999999999,209,0.2800,0,88,999.000,999.0,99.0 +1988,7,7,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.0,13.3,27,96900,0,0,450,0,0,0,0,0,0,0,280,4.6,6,6,56.3,3660,9,999999999,200,0.2420,0,88,999.000,999.0,99.0 +1988,7,7,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34.4,13.9,29,96900,0,0,452,0,0,0,0,0,0,0,270,5.7,7,7,56.3,3660,9,999999999,209,0.2420,0,88,999.000,999.0,99.0 +1988,7,7,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34.4,15.0,31,97000,0,0,471,0,0,0,0,0,0,0,260,5.2,9,9,56.3,3660,9,999999999,230,0.2420,0,88,999.000,999.0,99.0 +1988,7,7,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,17.2,39,97100,0,0,465,0,0,0,0,0,0,0,260,2.6,9,9,56.3,3660,9,999999999,260,0.2420,0,88,999.000,999.0,99.0 +1988,7,7,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,18.3,44,97100,0,0,453,0,0,0,0,0,0,0,280,3.1,8,8,56.3,3660,9,999999999,280,0.2420,0,88,999.000,999.0,99.0 +1988,7,7,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,18.3,47,97200,37,738,424,13,28,10,1300,900,1200,160,290,2.1,4,3,56.3,77777,9,999999999,280,0.2420,0,88,999.000,999.0,99.0 +1988,7,7,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,18.3,45,97300,268,1321,423,115,333,50,12100,25600,6900,910,300,2.6,3,2,56.3,77777,9,999999999,280,0.2420,0,88,999.000,999.0,99.0 +1988,7,7,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,18.3,41,97300,530,1321,426,324,574,99,34200,54400,12400,1940,270,3.1,2,1,64.4,77777,9,999999999,280,0.2420,0,88,999.000,999.0,99.0 +1988,7,7,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.0,18.3,37,97300,776,1321,442,494,471,222,52400,48100,24100,5210,260,4.6,3,2,64.4,77777,9,999999999,280,0.2420,0,88,999.000,999.0,99.0 +1988,7,7,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.6,18.9,37,97300,988,1321,446,660,608,207,69600,61500,23500,6340,240,3.1,3,2,56.3,77777,9,999999999,290,0.2420,0,88,999.000,999.0,99.0 +1988,7,7,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.7,18.3,34,97300,1152,1321,456,924,797,229,98300,81200,27300,10620,240,5.2,4,3,56.3,77777,9,999999999,280,0.2420,0,88,999.000,999.0,99.0 +1988,7,7,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,38.9,17.2,28,97200,1256,1321,463,919,546,400,97900,57000,43600,30410,260,4.1,3,2,48.3,77777,9,999999999,260,0.2420,0,88,999.000,999.0,99.0 +1988,7,7,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,38.9,15.6,25,97100,1294,1321,461,749,397,358,80900,41600,40100,36550,250,3.1,2,2,48.3,77777,9,999999999,230,0.2420,0,88,999.000,999.0,99.0 +1988,7,7,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,40.6,15.6,23,97000,1263,1321,471,1036,806,263,110100,82000,31500,20200,280,4.6,2,2,64.4,77777,9,999999999,230,0.2420,0,88,999.000,999.0,99.0 +1988,7,7,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,41.7,13.9,19,96900,1165,1321,468,916,835,175,95800,84000,21600,7860,250,6.2,1,1,64.4,77777,9,999999999,209,0.2420,0,88,999.000,999.0,99.0 +1988,7,7,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,41.7,15.0,21,96800,1006,1321,461,770,809,147,80000,81300,18000,4360,280,3.6,0,0,64.4,77777,9,999999999,230,0.2420,0,88,999.000,999.0,99.0 +1988,7,7,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,42.2,15.0,20,96700,798,1321,464,554,755,79,55900,74700,10700,1870,290,6.2,0,0,64.4,77777,9,999999999,220,0.2420,0,88,999.000,999.0,99.0 +1988,7,7,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,41.1,16.7,24,96700,555,1321,460,348,642,60,35100,61900,9100,1330,260,8.8,0,0,64.4,77777,9,999999999,250,0.2420,0,88,999.000,999.0,99.0 +1988,7,7,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,40.6,16.1,24,96700,293,1321,456,123,294,50,12500,23200,7300,880,270,7.2,0,0,64.4,77777,9,999999999,240,0.2420,0,88,999.000,999.0,99.0 +1988,7,7,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,40.0,16.1,25,96800,51,870,453,15,45,10,1400,1800,1300,170,240,5.2,0,0,56.3,77777,9,999999999,250,0.2420,0,88,999.000,999.0,99.0 +1988,7,7,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,38.3,16.1,27,96900,0,0,452,0,0,0,0,0,0,0,240,3.6,1,1,56.3,77777,9,999999999,240,0.2420,0,88,999.000,999.0,99.0 +1988,7,7,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.8,15.6,27,96900,0,0,448,0,0,0,0,0,0,0,240,4.1,1,1,56.3,77777,9,999999999,240,0.2420,0,88,999.000,999.0,99.0 +1988,7,7,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.2,16.7,30,96900,0,0,452,0,0,0,0,0,0,0,250,4.1,2,2,56.3,77777,9,999999999,250,0.2420,0,88,999.000,999.0,99.0 +1988,7,7,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.2,16.7,30,97000,0,0,460,0,0,0,0,0,0,0,240,3.1,4,4,56.3,77777,9,999999999,250,0.2420,0,88,999.000,999.0,99.0 +1988,7,8,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.1,15.0,28,97000,0,0,451,0,0,0,0,0,0,0,230,3.1,4,4,56.3,77777,9,999999999,220,0.1190,0,88,999.000,999.0,99.0 +1988,7,8,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.0,15.6,31,97000,0,0,432,0,0,0,0,0,0,0,260,2.6,1,1,56.3,77777,9,999999999,230,0.1190,0,88,999.000,999.0,99.0 +1988,7,8,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.9,16.1,35,97000,0,0,433,0,0,0,0,0,0,0,110,3.1,2,2,56.3,77777,9,999999999,250,0.1190,0,88,999.000,999.0,99.0 +1988,7,8,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,17.8,42,97100,0,0,412,0,0,0,0,0,0,0,90,4.6,0,0,56.3,77777,9,999999999,270,0.1190,0,88,999.000,999.0,99.0 +1988,7,8,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,18.3,45,97100,0,0,410,0,0,0,0,0,0,0,100,4.6,0,0,80.5,77777,9,999999999,280,0.1190,0,88,999.000,999.0,99.0 +1988,7,8,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,18.3,47,97100,36,738,424,19,47,14,1800,1400,1700,240,120,4.1,3,3,80.5,77777,9,999999999,280,0.1190,0,88,999.000,999.0,99.0 +1988,7,8,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,18.9,47,97200,266,1321,428,143,386,67,15000,29000,9200,1220,90,4.6,3,3,64.4,77777,9,999999999,290,0.1190,0,88,999.000,999.0,99.0 +1988,7,8,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,18.9,42,97300,529,1321,444,330,572,98,34000,54200,12300,1920,100,4.1,5,5,64.4,77777,9,999999999,290,0.1190,0,88,999.000,999.0,99.0 +1988,7,8,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.0,17.8,36,97400,775,1321,445,507,529,199,54100,54100,22400,4610,60,2.6,4,3,64.4,77777,9,999999999,270,0.1190,0,88,999.000,999.0,99.0 +1988,7,8,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.2,16.1,29,97400,987,1321,456,733,546,326,76800,56600,34500,10350,220,2.1,5,3,64.4,77777,9,999999999,250,0.1190,0,88,999.000,999.0,99.0 +1988,7,8,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.2,15.6,28,97300,1151,1321,459,663,395,318,71200,41300,35200,15000,240,3.1,5,4,64.4,77777,9,999999999,240,0.1190,0,88,999.000,999.0,99.0 +1988,7,8,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,39.4,14.4,23,97200,1256,1321,462,960,811,190,101300,81700,23500,13100,300,3.1,2,2,64.4,77777,9,999999999,220,0.1190,0,88,999.000,999.0,99.0 +1988,7,8,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,40.6,14.4,21,97100,1294,1321,474,1017,829,202,106600,83400,24800,18850,300,3.6,3,3,48.3,77777,9,999999999,220,0.1190,0,88,999.000,999.0,99.0 +1988,7,8,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,41.7,13.3,19,97000,1263,1321,474,995,842,188,104800,84800,23600,13600,330,3.6,2,2,48.3,77777,9,999999999,209,0.1190,0,88,999.000,999.0,99.0 +1988,7,8,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,42.2,12.8,17,96900,1164,1321,476,916,835,176,95800,84000,21600,7880,240,6.2,2,2,48.3,77777,9,999999999,190,0.1190,0,88,999.000,999.0,99.0 +1988,7,8,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,42.8,13.3,18,96800,1006,1321,474,770,800,156,79700,80100,18600,4530,260,7.2,1,1,48.3,77777,9,999999999,209,0.1190,0,88,999.000,999.0,99.0 +1988,7,8,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,42.8,12.8,17,96700,798,1321,473,550,738,89,57300,74100,12500,2190,260,7.2,1,1,48.3,77777,9,999999999,200,0.1190,0,88,999.000,999.0,99.0 +1988,7,8,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,42.8,11.7,16,96700,554,1321,478,345,624,73,35700,60500,10300,1520,270,6.2,2,2,48.3,77777,9,999999999,180,0.1190,0,88,999.000,999.0,99.0 +1988,7,8,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,42.2,11.1,16,96700,292,1321,482,180,280,118,18500,21900,13600,2490,280,5.7,4,4,48.3,77777,9,999999999,180,0.1190,0,88,999.000,999.0,99.0 +1988,7,8,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,39.4,13.9,22,96800,51,870,477,17,43,12,1600,1500,1500,200,70,6.2,6,6,48.3,3660,9,999999999,209,0.1190,0,88,999.000,999.0,99.0 +1988,7,8,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,38.9,12.8,21,96800,0,0,485,0,0,0,0,0,0,0,70,5.2,8,8,48.3,3660,9,999999999,200,0.1190,0,88,999.000,999.0,99.0 +1988,7,8,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,38.3,13.3,22,96900,0,0,475,0,0,0,0,0,0,0,80,4.1,7,7,48.3,3660,9,999999999,200,0.1190,0,88,999.000,999.0,99.0 +1988,7,8,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.7,14.4,27,97000,0,0,454,0,0,0,0,0,0,0,150,3.1,4,4,56.3,77777,9,999999999,220,0.1190,0,88,999.000,999.0,99.0 +1988,7,8,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.7,13.9,26,97000,0,0,453,0,0,0,0,0,0,0,140,5.2,4,4,56.3,77777,9,999999999,220,0.1190,0,88,999.000,999.0,99.0 +1988,7,9,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.6,14.4,28,96900,0,0,444,0,0,0,0,0,0,0,100,6.2,3,3,56.3,77777,9,999999999,220,0.1190,0,88,999.000,999.0,99.0 +1988,7,9,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.9,16.1,35,96900,0,0,433,0,0,0,0,0,0,0,120,6.2,2,2,56.3,77777,9,999999999,250,0.1190,0,88,999.000,999.0,99.0 +1988,7,9,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,16.1,36,96900,0,0,415,0,0,0,0,0,0,0,110,6.2,0,0,56.3,77777,9,999999999,250,0.1190,0,88,999.000,999.0,99.0 +1988,7,9,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,16.1,37,96900,0,0,426,0,0,0,0,0,0,0,120,4.6,2,2,56.3,77777,9,999999999,250,0.1190,0,88,999.000,999.0,99.0 +1988,7,9,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,16.7,39,97000,0,0,428,0,0,0,0,0,0,0,120,5.2,3,3,72.4,77777,9,999999999,250,0.1190,0,88,999.000,999.0,99.0 +1988,7,9,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,16.7,41,97000,35,716,432,6,11,5,700,400,600,100,100,5.2,5,5,72.4,77777,9,999999999,250,0.1190,0,88,999.000,999.0,99.0 +1988,7,9,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,17.2,41,97100,264,1322,435,134,268,83,14300,20000,10300,1630,90,5.2,6,5,72.4,3660,9,999999999,260,0.1190,0,88,999.000,999.0,99.0 +1988,7,9,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.9,17.2,37,97100,527,1322,438,339,609,104,35900,57400,13000,2010,120,5.2,3,3,80.5,77777,9,999999999,260,0.1190,0,88,999.000,999.0,99.0 +1988,7,9,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.7,16.7,31,97100,773,1322,457,572,727,155,60700,72500,18200,3550,140,5.2,4,4,80.5,77777,9,999999999,260,0.1190,0,88,999.000,999.0,99.0 +1988,7,9,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.8,16.7,29,97100,986,1322,464,574,477,221,62800,49700,25700,6790,150,4.1,5,4,72.4,77777,9,999999999,250,0.1190,0,88,999.000,999.0,99.0 +1988,7,9,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,38.9,16.1,26,97100,1150,1322,466,667,544,197,72100,55800,23400,9180,130,3.6,3,3,72.4,77777,9,999999999,240,0.1190,0,88,999.000,999.0,99.0 +1988,7,9,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,40.0,16.1,25,97000,1255,1322,468,992,861,178,105700,87000,22900,12330,110,3.1,3,2,96.6,77777,9,999999999,250,0.1190,0,88,999.000,999.0,99.0 +1988,7,9,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,41.1,16.1,23,96900,1293,1322,475,1035,868,181,109700,87700,23600,16990,230,3.6,2,2,96.6,77777,9,999999999,240,0.1190,0,88,999.000,999.0,99.0 +1988,7,9,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,41.7,14.4,20,96800,1262,1322,480,1008,873,171,107200,88400,22600,12490,240,2.6,3,3,96.6,77777,9,999999999,220,0.1190,0,88,999.000,999.0,99.0 +1988,7,9,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,42.2,12.8,17,96700,1164,1322,481,921,857,161,97200,86600,20700,7340,300,4.6,3,3,96.6,77777,9,999999999,190,0.1190,0,88,999.000,999.0,99.0 +1988,7,9,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,42.8,12.8,17,96600,1006,1322,488,750,778,154,77800,78000,18400,4490,310,5.7,4,4,80.5,77777,9,999999999,200,0.1190,0,88,999.000,999.0,99.0 +1988,7,9,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,40.6,10.6,17,96600,797,1322,479,466,539,136,48800,54300,16000,3260,50,10.3,6,6,56.3,6100,9,999999999,180,0.1190,0,88,999.000,999.0,99.0 +1988,7,9,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,38.3,10.6,19,96600,554,1322,489,156,123,109,18000,12300,12800,2580,50,5.2,9,9,72.4,6100,9,999999999,170,0.1190,0,88,999.000,999.0,99.0 +1988,7,9,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.2,11.1,21,96700,292,1322,472,47,1,47,5500,0,5500,1850,320,5.2,9,8,72.4,6100,9,999999999,180,0.1190,0,88,999.000,999.0,99.0 +1988,7,9,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.7,10.0,20,96700,50,848,468,5,2,5,600,100,600,140,350,3.6,8,8,72.4,3660,9,999999999,170,0.1190,0,88,999.000,999.0,99.0 +1988,7,9,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.7,11.1,21,96800,0,0,469,0,0,0,0,0,0,0,60,5.2,8,8,56.3,3660,9,999999999,180,0.1190,0,88,999.000,999.0,99.0 +1988,7,9,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.0,11.7,24,96800,0,0,448,0,0,0,0,0,0,0,120,5.2,6,6,56.3,3660,9,999999999,180,0.1190,0,88,999.000,999.0,99.0 +1988,7,9,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34.4,14.4,30,96900,0,0,470,0,0,0,0,0,0,0,140,5.2,9,9,56.3,3660,9,999999999,220,0.1190,0,88,999.000,999.0,99.0 +1988,7,9,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,15.6,34,96900,0,0,448,0,0,0,0,0,0,0,80,5.2,7,7,56.3,7620,9,999999999,230,0.1190,0,88,999.000,999.0,99.0 +1988,7,10,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,16.7,41,96900,0,0,425,0,0,0,0,0,0,0,120,6.2,3,3,56.3,77777,9,999999999,250,0.0970,0,88,999.000,999.0,99.0 +1988,7,10,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,16.7,42,96900,0,0,418,0,0,0,0,0,0,0,90,5.2,3,2,56.3,77777,9,999999999,250,0.0970,0,88,999.000,999.0,99.0 +1988,7,10,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,16.7,45,96900,0,0,412,0,0,0,0,0,0,0,100,4.1,3,2,56.3,77777,9,999999999,250,0.0970,0,88,999.000,999.0,99.0 +1988,7,10,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,16.7,46,96900,0,0,408,0,0,0,0,0,0,0,80,2.6,3,2,56.3,77777,9,999999999,250,0.0970,0,88,999.000,999.0,99.0 +1988,7,10,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,16.1,45,96900,0,0,395,0,0,0,0,0,0,0,120,4.1,2,0,80.5,77777,9,999999999,250,0.0970,0,88,999.000,999.0,99.0 +1988,7,10,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,16.1,45,97000,34,716,408,14,44,9,1300,1600,1200,150,120,4.1,2,2,80.5,77777,9,999999999,250,0.0970,0,88,999.000,999.0,99.0 +1988,7,10,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,16.1,42,97100,262,1322,414,128,419,55,14100,31700,7800,970,110,3.1,2,2,80.5,77777,9,999999999,250,0.0970,0,88,999.000,999.0,99.0 +1988,7,10,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,16.1,39,97100,525,1322,407,322,644,87,35900,61200,11600,1730,100,3.6,0,0,80.5,77777,9,999999999,240,0.0970,0,88,999.000,999.0,99.0 +1988,7,10,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,16.1,37,97100,772,1322,413,534,756,119,59700,76300,15100,2820,110,2.6,0,0,80.5,77777,9,999999999,250,0.0970,0,88,999.000,999.0,99.0 +1988,7,10,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.0,16.1,32,97100,984,1322,425,723,812,134,78000,81800,17000,3910,70,3.1,0,0,80.5,77777,9,999999999,240,0.0970,0,88,999.000,999.0,99.0 +1988,7,10,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.1,15.6,29,97100,1149,1322,430,885,862,149,95900,87300,19800,6540,250,2.1,0,0,80.5,77777,9,999999999,230,0.0970,0,88,999.000,999.0,99.0 +1988,7,10,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.8,15.6,27,97000,1254,1322,440,984,869,168,106000,88000,22300,11670,210,3.1,0,0,80.5,77777,9,999999999,240,0.0970,0,88,999.000,999.0,99.0 +1988,7,10,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,38.3,15.0,25,96900,1293,1322,442,1042,885,168,105500,88600,18600,12670,240,4.1,0,0,80.5,77777,9,999999999,230,0.0970,0,88,999.000,999.0,99.0 +1988,7,10,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,40.0,14.4,22,96800,1262,1322,450,1007,884,158,102400,88500,17700,9240,220,2.6,0,0,80.5,77777,9,999999999,220,0.0970,0,88,999.000,999.0,99.0 +1988,7,10,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,40.6,15.6,23,96700,1164,1322,456,922,858,156,97000,86800,20400,7150,240,4.1,0,0,80.5,77777,9,999999999,230,0.0970,0,88,999.000,999.0,99.0 +1988,7,10,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,41.1,15.6,22,96600,1005,1322,482,650,591,194,68200,60100,22400,6200,280,5.2,4,4,80.5,77777,9,999999999,230,0.0970,0,88,999.000,999.0,99.0 +1988,7,10,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,40.0,15.0,23,96600,797,1322,482,343,169,228,36400,17800,25700,6180,260,5.2,6,6,80.5,6100,9,999999999,230,0.0970,0,88,999.000,999.0,99.0 +1988,7,10,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,15.0,33,96800,553,1322,478,56,0,56,6900,0,6900,2610,10,10.3,10,10,24.1,2440,9,999999999,230,0.0970,0,88,999.000,999.0,99.0 +1988,7,10,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,13.9,34,96800,291,1322,444,23,2,22,2800,0,2800,940,350,6.7,8,8,48.3,2440,9,999999999,209,0.0970,0,88,999.000,999.0,99.0 +1988,7,10,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,12.8,31,96800,49,848,455,6,1,6,700,0,700,240,340,6.7,10,9,48.3,3660,9,999999999,200,0.0970,0,88,999.000,999.0,99.0 +1988,7,10,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,13.3,33,96900,0,0,443,0,0,0,0,0,0,0,290,3.1,9,8,48.3,6100,9,999999999,209,0.0970,0,88,999.000,999.0,99.0 +1988,7,10,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,13.3,32,97000,0,0,468,0,0,0,0,0,0,0,150,3.1,10,10,48.3,3660,9,999999999,209,0.0970,0,88,999.000,999.0,99.0 +1988,7,10,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,14.4,35,97100,0,0,454,0,0,0,0,0,0,0,100,5.2,9,9,48.3,3660,9,999999999,220,0.0970,0,88,999.000,999.0,99.0 +1988,7,10,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,15.6,43,97000,0,0,455,0,0,0,0,0,0,0,160,5.2,10,10,56.3,3660,9,999999999,240,0.0970,0,88,999.000,999.0,99.0 +1988,7,11,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,15.6,44,97100,0,0,408,0,0,0,0,0,0,0,150,4.6,8,3,56.3,77777,9,999999999,230,0.1800,0,88,999.000,999.0,99.0 +1988,7,11,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,15.6,44,97200,0,0,408,0,0,0,0,0,0,0,150,5.2,8,3,56.3,77777,9,999999999,230,0.1800,0,88,999.000,999.0,99.0 +1988,7,11,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,16.1,48,97200,0,0,406,0,0,0,0,0,0,0,140,5.2,8,3,56.3,77777,9,999999999,250,0.1800,0,88,999.000,999.0,99.0 +1988,7,11,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,17.2,54,97200,0,0,397,0,0,0,0,0,0,0,120,4.1,6,2,56.3,77777,9,999999999,260,0.1800,0,88,999.000,999.0,99.0 +1988,7,11,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,17.2,54,97300,0,0,392,0,0,0,0,0,0,0,140,4.1,4,1,80.5,77777,9,999999999,260,0.1800,0,88,999.000,999.0,99.0 +1988,7,11,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,17.2,54,97300,33,694,401,14,38,10,1300,1100,1300,160,110,4.1,7,3,80.5,77777,9,999999999,260,0.1800,0,88,999.000,999.0,99.0 +1988,7,11,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,17.8,55,97400,260,1322,401,129,386,50,12900,29300,7100,900,100,3.1,6,2,64.4,77777,9,999999999,270,0.1800,0,88,999.000,999.0,99.0 +1988,7,11,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,17.2,48,97500,523,1322,404,314,591,78,32900,56400,10600,1580,100,4.1,6,1,64.4,77777,9,999999999,260,0.1800,0,88,999.000,999.0,99.0 +1988,7,11,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,16.1,40,97500,770,1322,411,521,706,106,54100,70100,13200,2370,130,2.6,4,1,64.4,77777,9,999999999,240,0.1800,0,88,999.000,999.0,99.0 +1988,7,11,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,15.6,35,97500,983,1322,412,720,792,129,76100,79900,16600,3790,0,0.0,0,0,64.4,77777,9,999999999,230,0.1800,0,88,999.000,999.0,99.0 +1988,7,11,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.0,16.1,32,97500,1148,1322,425,864,809,160,91400,81700,20300,6890,200,3.1,0,0,64.4,77777,9,999999999,240,0.1800,0,88,999.000,999.0,99.0 +1988,7,11,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.6,15.6,30,97400,1254,1322,427,976,840,177,103400,84900,22700,12150,280,4.1,0,0,64.4,77777,9,999999999,230,0.1800,0,88,999.000,999.0,99.0 +1988,7,11,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.1,16.1,30,97400,1292,1322,431,1034,860,191,109200,86700,24200,17610,300,6.7,0,0,72.4,77777,9,999999999,240,0.1800,0,88,999.000,999.0,99.0 +1988,7,11,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.7,15.0,27,97300,1262,1322,433,1000,863,174,106200,87300,22700,12600,280,6.2,0,0,80.5,77777,9,999999999,220,0.1800,0,88,999.000,999.0,99.0 +1988,7,11,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.8,15.6,27,97200,1163,1322,440,917,852,165,96800,86000,21000,7460,250,7.2,0,0,80.5,77777,9,999999999,240,0.1800,0,88,999.000,999.0,99.0 +1988,7,11,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,38.3,15.6,26,97200,1005,1322,442,768,815,146,80300,81900,17900,4320,270,3.6,0,0,80.5,77777,9,999999999,230,0.1800,0,88,999.000,999.0,99.0 +1988,7,11,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,38.3,15.0,25,97100,796,1322,442,544,744,94,57700,74500,12800,2270,260,3.6,0,0,80.5,77777,9,999999999,230,0.1800,0,88,999.000,999.0,99.0 +1988,7,11,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,38.3,15.0,25,97100,552,1322,442,343,657,68,36000,63000,9600,1440,290,5.2,0,0,80.5,77777,9,999999999,230,0.1800,0,88,999.000,999.0,99.0 +1988,7,11,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.8,14.4,25,97100,290,1322,438,131,297,66,13800,23200,8700,1200,290,3.6,0,0,80.5,77777,9,999999999,220,0.1800,0,88,999.000,999.0,99.0 +1988,7,11,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.7,13.9,26,97100,49,848,431,12,54,6,1000,2600,900,120,270,2.6,0,0,80.5,77777,9,999999999,220,0.1800,0,88,999.000,999.0,99.0 +1988,7,11,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.1,13.3,25,97100,0,0,427,0,0,0,0,0,0,0,260,3.1,0,0,56.3,77777,9,999999999,200,0.1800,0,88,999.000,999.0,99.0 +1988,7,11,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.0,13.9,28,97200,0,0,422,0,0,0,0,0,0,0,240,2.1,0,0,56.3,77777,9,999999999,209,0.1800,0,88,999.000,999.0,99.0 +1988,7,11,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34.4,13.3,28,97200,0,0,418,0,0,0,0,0,0,0,260,4.6,0,0,56.3,77777,9,999999999,209,0.1800,0,88,999.000,999.0,99.0 +1988,7,11,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,13.3,30,97200,0,0,412,0,0,0,0,0,0,0,290,4.1,0,0,56.3,77777,9,999999999,209,0.1800,0,88,999.000,999.0,99.0 +1988,7,12,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,13.3,31,97300,0,0,409,0,0,0,0,0,0,0,280,5.2,0,0,56.3,77777,9,999999999,209,0.0970,0,88,999.000,999.0,99.0 +1988,7,12,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,12.8,32,97300,0,0,403,0,0,0,0,0,0,0,310,2.1,0,0,56.3,77777,9,999999999,200,0.0970,0,88,999.000,999.0,99.0 +1988,7,12,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,13.9,37,97300,0,0,395,0,0,0,0,0,0,0,60,2.6,0,0,56.3,77777,9,999999999,209,0.0970,0,88,999.000,999.0,99.0 +1988,7,12,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,13.3,37,97300,0,0,391,0,0,0,0,0,0,0,340,2.1,0,0,56.3,77777,9,999999999,200,0.0970,0,88,999.000,999.0,99.0 +1988,7,12,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,13.3,37,97400,0,0,391,0,0,0,0,0,0,0,0,0.0,0,0,80.5,77777,9,999999999,200,0.0970,0,88,999.000,999.0,99.0 +1988,7,12,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,13.3,37,97400,32,694,391,12,69,4,900,3600,700,110,0,0.0,0,0,64.4,77777,9,999999999,200,0.0970,0,88,999.000,999.0,99.0 +1988,7,12,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,12.8,34,97400,258,1322,397,126,504,28,13300,40200,5500,610,280,2.1,0,0,64.4,77777,9,999999999,200,0.0970,0,88,999.000,999.0,99.0 +1988,7,12,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,12.8,31,97500,521,1322,405,323,697,48,34100,65900,8100,1180,0,0.0,0,0,56.3,77777,9,999999999,200,0.0970,0,88,999.000,999.0,99.0 +1988,7,12,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.9,13.3,29,97500,768,1322,415,528,779,74,55200,76900,10400,1770,10,2.1,0,0,56.3,77777,9,999999999,209,0.0970,0,88,999.000,999.0,99.0 +1988,7,12,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.6,13.3,26,97500,982,1322,424,736,853,101,76300,85200,12800,2690,100,1.5,0,0,56.3,77777,9,999999999,200,0.0970,0,88,999.000,999.0,99.0 +1988,7,12,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.2,11.7,21,97400,1147,1322,431,904,895,125,92900,89600,15000,4560,140,4.1,0,0,56.3,77777,9,999999999,180,0.0970,0,88,999.000,999.0,99.0 +1988,7,12,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,38.9,10.6,18,97400,1253,1322,439,998,830,209,103800,83100,24800,13910,180,2.1,0,0,64.4,77777,9,999999999,170,0.0970,0,88,999.000,999.0,99.0 +1988,7,12,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,38.9,10.6,18,97300,1292,1322,439,1059,844,232,109500,84200,27000,20750,180,2.1,0,0,64.4,77777,9,999999999,170,0.0970,0,88,999.000,999.0,99.0 +1988,7,12,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,41.1,7.2,13,97300,1261,1322,446,1045,897,187,110200,90400,23700,13360,320,3.6,0,0,48.3,77777,9,999999999,140,0.0970,0,88,999.000,999.0,99.0 +1988,7,12,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,40.0,6.7,13,97200,1163,1322,439,952,903,155,101100,91400,20500,7090,260,3.6,0,0,64.4,77777,9,999999999,130,0.0970,0,88,999.000,999.0,99.0 +1988,7,12,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,41.1,5.0,11,97100,1004,1322,443,810,898,126,83300,89600,15100,3010,280,4.6,0,0,64.4,77777,9,999999999,120,0.0970,0,88,999.000,999.0,99.0 +1988,7,12,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,41.1,3.3,10,97100,796,1322,440,593,862,73,62000,85300,10600,1810,250,4.6,0,0,64.4,77777,9,999999999,110,0.0970,0,88,999.000,999.0,99.0 +1988,7,12,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,40.0,4.4,11,97000,551,1322,436,351,735,44,37200,70200,7800,1160,270,3.6,0,0,64.4,77777,9,999999999,110,0.0970,0,88,999.000,999.0,99.0 +1988,7,12,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,39.4,3.3,11,97000,289,1322,431,131,365,51,13500,29000,7200,940,270,3.1,0,0,80.5,77777,9,999999999,110,0.0970,0,88,999.000,999.0,99.0 +1988,7,12,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,38.3,-0.6,9,97000,48,826,419,10,81,2,800,4800,500,80,250,2.6,0,0,56.3,77777,9,999999999,90,0.0970,0,88,999.000,999.0,99.0 +1988,7,12,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.7,2.2,11,97100,0,0,414,0,0,0,0,0,0,0,220,2.6,0,0,56.3,77777,9,999999999,100,0.0970,0,88,999.000,999.0,99.0 +1988,7,12,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.6,2.2,12,97100,0,0,409,0,0,0,0,0,0,0,230,2.6,0,0,56.3,77777,9,999999999,100,0.0970,0,88,999.000,999.0,99.0 +1988,7,12,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.9,2.8,14,97100,0,0,401,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,100,0.0970,0,88,999.000,999.0,99.0 +1988,7,12,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,7.8,23,97100,0,0,396,0,0,0,0,0,0,0,20,1.5,0,0,56.3,77777,9,999999999,150,0.0970,0,88,999.000,999.0,99.0 +1988,7,13,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,6.7,22,97100,0,0,391,0,0,0,0,0,0,0,70,1.5,0,0,56.3,77777,9,999999999,140,0.1190,0,88,999.000,999.0,99.0 +1988,7,13,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,6.7,22,97100,0,0,389,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,130,0.1190,0,88,999.000,999.0,99.0 +1988,7,13,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,6.7,24,97000,0,0,383,0,0,0,0,0,0,0,90,2.6,0,0,56.3,77777,9,999999999,140,0.1190,0,88,999.000,999.0,99.0 +1988,7,13,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,6.1,23,97000,0,0,382,0,0,0,0,0,0,0,110,3.1,0,0,56.3,77777,9,999999999,130,0.1190,0,88,999.000,999.0,99.0 +1988,7,13,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,5.6,24,97100,0,0,376,0,0,0,0,0,0,0,100,2.6,0,0,56.3,77777,9,999999999,130,0.1190,0,88,999.000,999.0,99.0 +1988,7,13,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,7.2,29,97100,30,672,370,12,57,6,1000,2500,800,120,0,0.0,0,0,56.3,77777,9,999999999,140,0.1190,0,88,999.000,999.0,99.0 +1988,7,13,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,6.7,25,97200,256,1322,387,116,397,39,12100,30300,6200,730,170,2.1,2,1,56.3,77777,9,999999999,140,0.1190,0,88,999.000,999.0,99.0 +1988,7,13,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,4.4,19,97200,519,1322,401,322,649,65,33500,61500,9300,1350,120,3.1,5,2,56.3,77777,9,999999999,120,0.1190,0,88,999.000,999.0,99.0 +1988,7,13,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34.4,4.4,15,97200,767,1322,413,537,748,102,56300,74300,13100,2310,110,3.6,2,1,56.3,77777,9,999999999,110,0.1190,0,88,999.000,999.0,99.0 +1988,7,13,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.2,5.0,14,97200,981,1322,429,746,843,119,79600,85300,16200,3560,110,3.1,3,1,56.3,77777,9,999999999,120,0.1190,0,88,999.000,999.0,99.0 +1988,7,13,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,38.9,1.7,10,97200,1146,1322,434,900,852,160,95200,86000,20400,6840,230,2.1,4,1,56.3,77777,9,999999999,100,0.1190,0,88,999.000,999.0,99.0 +1988,7,13,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,41.7,0.6,8,97200,1252,1322,458,1034,868,207,107400,87000,24800,13720,150,2.1,5,3,64.4,77777,9,999999999,90,0.1190,0,88,999.000,999.0,99.0 +1988,7,13,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,41.7,1.1,8,97100,1291,1322,466,769,328,449,84700,35700,49800,37960,120,3.1,6,5,64.4,3660,9,999999999,90,0.1190,0,88,999.000,999.0,99.0 +1988,7,13,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,42.2,1.1,8,97100,1261,1322,474,584,108,481,64500,11200,53800,27290,200,3.1,7,6,80.5,4270,9,999999999,90,0.1190,0,88,999.000,999.0,99.0 +1988,7,13,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,41.7,1.7,8,97000,1163,1322,485,581,126,474,63800,13400,52000,21010,120,3.1,8,8,80.5,4270,9,999999999,90,0.1190,0,88,999.000,999.0,99.0 +1988,7,13,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,41.7,2.2,9,97000,1004,1322,478,524,227,356,57900,24100,39600,11820,120,2.6,8,7,80.5,4270,9,999999999,100,0.1190,0,88,999.000,999.0,99.0 +1988,7,13,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,42.2,2.8,9,96900,795,1322,482,412,203,312,47000,21200,34200,8450,310,2.1,7,7,80.5,4270,9,999999999,110,0.1190,0,88,999.000,999.0,99.0 +1988,7,13,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,41.1,2.8,9,96800,550,1322,470,255,334,133,28800,32300,15300,2620,270,3.1,7,6,80.5,4270,9,999999999,100,0.1190,0,88,999.000,999.0,99.0 +1988,7,13,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,40.6,4.4,11,96800,287,1322,465,87,138,62,9900,10800,7600,1130,310,2.1,6,5,80.5,7620,9,999999999,120,0.1190,0,88,999.000,999.0,99.0 +1988,7,13,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,39.4,5.6,12,96800,47,826,457,7,15,6,800,500,800,90,0,0.0,4,4,56.3,77777,9,999999999,120,0.1190,0,88,999.000,999.0,99.0 +1988,7,13,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,38.3,6.1,14,96800,0,0,443,0,0,0,0,0,0,0,160,1.5,2,2,56.3,77777,9,999999999,130,0.1190,0,88,999.000,999.0,99.0 +1988,7,13,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.1,7.2,17,96900,0,0,426,0,0,0,0,0,0,0,130,2.6,1,1,56.3,77777,9,999999999,140,0.1190,0,88,999.000,999.0,99.0 +1988,7,13,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.6,6.7,17,96900,0,0,423,0,0,0,0,0,0,0,150,2.6,1,1,56.3,77777,9,999999999,140,0.1190,0,88,999.000,999.0,99.0 +1988,7,13,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.9,8.3,21,96900,0,0,416,0,0,0,0,0,0,0,40,2.6,1,1,56.3,77777,9,999999999,150,0.1190,0,88,999.000,999.0,99.0 +1988,7,14,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,8.3,22,96900,0,0,416,0,0,0,0,0,0,0,70,2.6,2,2,56.3,77777,9,999999999,150,0.1400,0,88,999.000,999.0,99.0 +1988,7,14,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,8.9,24,96900,0,0,405,0,0,0,0,0,0,0,40,2.1,1,1,56.3,77777,9,999999999,150,0.1400,0,88,999.000,999.0,99.0 +1988,7,14,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,8.3,24,96900,0,0,401,0,0,0,0,0,0,0,70,2.6,1,1,56.3,77777,9,999999999,150,0.1400,0,88,999.000,999.0,99.0 +1988,7,14,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,8.9,27,96900,0,0,401,0,0,0,0,0,0,0,100,2.1,2,2,56.3,77777,9,999999999,160,0.1400,0,88,999.000,999.0,99.0 +1988,7,14,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,8.9,28,97000,0,0,393,0,0,0,0,0,0,0,0,0.0,1,1,56.3,77777,9,999999999,160,0.1400,0,88,999.000,999.0,99.0 +1988,7,14,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,7.2,25,97000,29,650,396,8,3,8,900,200,900,210,80,2.1,2,2,56.3,77777,9,999999999,140,0.1400,0,88,999.000,999.0,99.0 +1988,7,14,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,7.2,22,97100,253,1322,409,129,276,73,12900,20200,9000,1350,80,3.1,3,3,56.3,77777,9,999999999,140,0.1400,0,88,999.000,999.0,99.0 +1988,7,14,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,7.2,20,97100,517,1322,414,332,648,74,34700,61800,10500,1500,90,3.1,3,2,56.3,77777,9,999999999,140,0.1400,0,88,999.000,999.0,99.0 +1988,7,14,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.0,7.2,18,97200,765,1322,412,538,787,81,57700,78900,12000,1980,80,3.1,0,0,56.3,77777,9,999999999,140,0.1400,0,88,999.000,999.0,99.0 +1988,7,14,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.7,7.2,16,97200,979,1322,422,743,849,113,76700,84700,13900,2780,50,2.1,0,0,56.3,77777,9,999999999,140,0.1400,0,88,999.000,999.0,99.0 +1988,7,14,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,38.9,5.6,13,97200,1145,1322,431,897,884,129,92100,88500,15300,4590,140,2.1,0,0,56.3,77777,9,999999999,130,0.1400,0,88,999.000,999.0,99.0 +1988,7,14,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,40.6,3.9,10,97100,1251,1322,438,1002,900,148,102400,90200,16900,8210,180,4.1,0,0,64.4,77777,9,999999999,110,0.1400,0,88,999.000,999.0,99.0 +1988,7,14,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,42.2,3.9,10,97000,1291,1322,447,1050,904,165,106900,90500,18400,12140,120,2.1,0,0,64.4,77777,9,999999999,120,0.1400,0,88,999.000,999.0,99.0 +1988,7,14,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,42.8,5.0,10,97000,1260,1322,452,1009,886,162,102800,88700,18100,9240,240,4.1,0,0,80.5,77777,9,999999999,120,0.1400,0,88,999.000,999.0,99.0 +1988,7,14,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,43.3,6.7,11,96900,1162,1322,458,920,862,160,97400,87100,20700,7240,290,4.1,0,0,80.5,77777,9,999999999,130,0.1400,0,88,999.000,999.0,99.0 +1988,7,14,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,43.3,7.2,11,96800,1003,1322,459,771,826,142,80900,83100,17700,4230,300,3.6,0,0,80.5,77777,9,999999999,130,0.1400,0,88,999.000,999.0,99.0 +1988,7,14,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,43.3,7.2,11,96700,794,1322,459,563,771,98,59500,77100,13100,2330,330,2.6,0,0,80.5,77777,9,999999999,130,0.1400,0,88,999.000,999.0,99.0 +1988,7,14,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,42.8,6.1,11,96700,549,1322,454,338,680,54,36200,65700,8900,1230,280,3.6,0,0,80.5,77777,9,999999999,130,0.1400,0,88,999.000,999.0,99.0 +1988,7,14,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,42.2,6.1,11,96700,286,1322,451,137,287,75,14200,22300,9400,1380,310,3.1,0,0,80.5,77777,9,999999999,130,0.1400,0,88,999.000,999.0,99.0 +1988,7,14,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,41.1,5.0,11,96700,46,826,443,10,61,4,900,2900,700,80,290,3.6,0,0,56.3,77777,9,999999999,120,0.1400,0,88,999.000,999.0,99.0 +1988,7,14,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,38.9,6.1,13,96800,0,0,432,0,0,0,0,0,0,0,270,3.6,0,0,56.3,77777,9,999999999,130,0.1400,0,88,999.000,999.0,99.0 +1988,7,14,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.2,6.7,15,96900,0,0,424,0,0,0,0,0,0,0,270,4.6,0,0,56.3,77777,9,999999999,130,0.1400,0,88,999.000,999.0,99.0 +1988,7,14,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.1,6.1,16,96900,0,0,417,0,0,0,0,0,0,0,280,4.1,0,0,56.3,77777,9,999999999,130,0.1400,0,88,999.000,999.0,99.0 +1988,7,14,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.0,3.9,14,96900,0,0,408,0,0,0,0,0,0,0,270,4.1,0,0,56.3,77777,9,999999999,110,0.1400,0,88,999.000,999.0,99.0 +1988,7,15,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.9,2.2,13,97000,0,0,400,0,0,0,0,0,0,0,330,2.6,0,0,56.3,77777,9,999999999,100,0.1800,0,88,999.000,999.0,99.0 +1988,7,15,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,3.3,16,97000,0,0,396,0,0,0,0,0,0,0,330,3.1,0,0,56.3,77777,9,999999999,110,0.1800,0,88,999.000,999.0,99.0 +1988,7,15,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,3.9,17,97000,0,0,393,0,0,0,0,0,0,0,90,2.1,0,0,56.3,77777,9,999999999,110,0.1800,0,88,999.000,999.0,99.0 +1988,7,15,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,5.0,19,97000,0,0,389,0,0,0,0,0,0,0,60,1.5,0,0,56.3,77777,9,999999999,120,0.1800,0,88,999.000,999.0,99.0 +1988,7,15,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,6.7,22,97000,0,0,389,0,0,0,0,0,0,0,80,2.1,0,0,80.5,77777,9,999999999,130,0.1800,0,88,999.000,999.0,99.0 +1988,7,15,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,7.2,24,97100,28,650,386,10,59,4,800,2600,600,80,0,0.0,0,0,72.4,77777,9,999999999,140,0.1800,0,88,999.000,999.0,99.0 +1988,7,15,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,7.8,25,97200,251,1322,387,128,513,31,13300,40400,5700,650,90,2.6,0,0,56.3,77777,9,999999999,150,0.1800,0,88,999.000,999.0,99.0 +1988,7,15,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,6.1,20,97300,515,1322,396,325,691,55,34600,65900,8900,1210,70,3.1,0,0,64.4,77777,9,999999999,130,0.1800,0,88,999.000,999.0,99.0 +1988,7,15,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.0,3.3,14,97300,763,1322,407,532,772,85,56800,77200,12100,2040,110,2.1,0,0,64.4,77777,9,999999999,110,0.1800,0,88,999.000,999.0,99.0 +1988,7,15,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.7,2.2,11,97200,978,1322,422,769,701,247,79400,70100,27500,7220,80,2.6,2,1,64.4,77777,9,999999999,100,0.1800,0,88,999.000,999.0,99.0 +1988,7,15,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,38.9,2.8,11,97200,1144,1322,427,884,839,156,93600,84800,20100,6650,150,1.5,0,0,64.4,77777,9,999999999,110,0.1800,0,88,999.000,999.0,99.0 +1988,7,15,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,40.0,2.2,10,97200,1251,1322,432,991,871,164,105700,88300,22000,11130,170,2.1,0,0,64.4,77777,9,999999999,100,0.1800,0,88,999.000,999.0,99.0 +1988,7,15,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,42.2,3.3,9,97100,1290,1322,446,1040,877,182,110300,88600,23700,16390,180,3.6,0,0,56.3,77777,9,999999999,110,0.1800,0,88,999.000,999.0,99.0 +1988,7,15,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,43.3,5.6,10,97000,1260,1322,456,986,838,185,104000,84500,23300,13070,270,2.6,0,0,56.3,77777,9,999999999,120,0.1800,0,88,999.000,999.0,99.0 +1988,7,15,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,42.8,7.8,12,96900,1161,1322,457,907,826,179,94800,83000,21700,7880,270,4.6,0,0,56.3,77777,9,999999999,140,0.1800,0,88,999.000,999.0,99.0 +1988,7,15,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,43.9,7.2,11,96900,1002,1322,462,769,807,154,79900,80800,18400,4450,290,3.1,0,0,72.4,77777,9,999999999,140,0.1800,0,88,999.000,999.0,99.0 +1988,7,15,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,42.8,7.2,12,96800,793,1322,456,564,742,118,60200,75200,15000,2870,300,4.1,0,0,72.4,77777,9,999999999,140,0.1800,0,88,999.000,999.0,99.0 +1988,7,15,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,42.8,7.2,12,96800,548,1322,456,327,623,68,34300,59600,9500,1430,280,4.6,0,0,72.4,77777,9,999999999,140,0.1800,0,88,999.000,999.0,99.0 +1988,7,15,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,41.7,5.0,11,96700,285,1322,446,139,233,88,14500,18100,10600,1730,280,5.2,0,0,72.4,77777,9,999999999,120,0.1800,0,88,999.000,999.0,99.0 +1988,7,15,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,40.6,5.0,11,96800,45,804,440,10,46,6,1000,1800,900,100,270,4.6,0,0,56.3,77777,9,999999999,120,0.1800,0,88,999.000,999.0,99.0 +1988,7,15,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,38.9,5.6,13,96800,0,0,431,0,0,0,0,0,0,0,270,4.1,0,0,56.3,77777,9,999999999,130,0.1800,0,88,999.000,999.0,99.0 +1988,7,15,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.8,5.6,14,96900,0,0,425,0,0,0,0,0,0,0,260,4.6,0,0,56.3,77777,9,999999999,130,0.1800,0,88,999.000,999.0,99.0 +1988,7,15,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.7,3.9,13,96900,0,0,417,0,0,0,0,0,0,0,260,4.1,0,0,56.3,77777,9,999999999,110,0.1800,0,88,999.000,999.0,99.0 +1988,7,15,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.6,4.4,14,96900,0,0,412,0,0,0,0,0,0,0,270,4.1,0,0,56.3,77777,9,999999999,110,0.1800,0,88,999.000,999.0,99.0 +1988,7,16,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34.4,5.0,16,96900,0,0,406,0,0,0,0,0,0,0,320,4.1,0,0,56.3,77777,9,999999999,120,0.1400,0,88,999.000,999.0,99.0 +1988,7,16,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,4.4,16,97000,0,0,400,0,0,0,0,0,0,0,280,3.6,0,0,56.3,77777,9,999999999,110,0.1400,0,88,999.000,999.0,99.0 +1988,7,16,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,3.3,16,97000,0,0,396,0,0,0,0,0,0,0,250,4.1,0,0,56.3,77777,9,999999999,110,0.1400,0,88,999.000,999.0,99.0 +1988,7,16,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,5.6,20,97000,0,0,390,0,0,0,0,0,0,0,100,2.1,0,0,56.3,77777,9,999999999,130,0.1400,0,88,999.000,999.0,99.0 +1988,7,16,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,6.7,22,97100,0,0,389,0,0,0,0,0,0,0,80,2.6,0,0,80.5,77777,9,999999999,130,0.1400,0,88,999.000,999.0,99.0 +1988,7,16,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,7.8,25,97100,27,628,387,10,49,5,800,2100,700,100,120,3.1,0,0,80.5,77777,9,999999999,150,0.1400,0,88,999.000,999.0,99.0 +1988,7,16,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,7.2,24,97200,249,1322,386,120,439,41,12800,33000,6600,760,100,2.6,0,0,80.5,77777,9,999999999,140,0.1400,0,88,999.000,999.0,99.0 +1988,7,16,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,8.3,22,97200,513,1322,402,320,678,63,34200,64200,9300,1320,0,0.0,0,0,112.7,77777,9,999999999,150,0.1400,0,88,999.000,999.0,99.0 +1988,7,16,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.6,6.1,16,97300,762,1322,414,529,778,87,57100,77800,12200,2070,10,1.0,0,0,112.7,77777,9,999999999,130,0.1400,0,88,999.000,999.0,99.0 +1988,7,16,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.7,4.4,13,97200,977,1322,426,727,825,120,77800,83400,16100,3550,290,2.1,1,1,112.7,77777,9,999999999,110,0.1400,0,88,999.000,999.0,99.0 +1988,7,16,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,38.9,3.9,11,97200,1143,1322,437,893,862,148,95400,87300,19700,6360,210,3.1,1,1,112.7,77777,9,999999999,110,0.1400,0,88,999.000,999.0,99.0 +1988,7,16,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,40.6,2.8,10,97200,1250,1322,445,1005,895,159,102700,89600,17800,8490,230,3.1,1,1,112.7,77777,9,999999999,110,0.1400,0,88,999.000,999.0,99.0 +1988,7,16,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,42.2,3.9,10,97100,1289,1322,462,1057,897,180,112300,90700,23600,16100,290,6.7,2,2,96.6,77777,9,999999999,120,0.1400,0,88,999.000,999.0,99.0 +1988,7,16,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,43.3,5.0,10,97000,1259,1322,470,1022,886,175,108400,89600,22900,12400,280,6.7,2,2,96.6,77777,9,999999999,120,0.1400,0,88,999.000,999.0,99.0 +1988,7,16,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,44.4,5.6,9,96900,1161,1322,478,933,868,168,98200,87500,21200,7480,270,5.7,2,2,96.6,77777,9,999999999,120,0.1400,0,88,999.000,999.0,99.0 +1988,7,16,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,44.4,5.6,9,96900,1002,1322,472,786,838,146,81900,84200,18000,4290,270,5.7,1,1,80.5,77777,9,999999999,120,0.1400,0,88,999.000,999.0,99.0 +1988,7,16,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,44.4,6.1,10,96800,792,1322,479,575,769,108,59600,76500,13700,2470,260,6.7,2,2,80.5,77777,9,999999999,130,0.1400,0,88,999.000,999.0,99.0 +1988,7,16,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,44.4,5.6,9,96800,547,1322,486,374,508,167,38900,48900,18600,3380,260,6.2,4,4,80.5,77777,9,999999999,120,0.1400,0,88,999.000,999.0,99.0 +1988,7,16,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,43.3,5.0,10,96800,283,1322,479,142,144,114,15400,11400,13000,2470,240,5.7,4,4,80.5,77777,9,999999999,120,0.1400,0,88,999.000,999.0,99.0 +1988,7,16,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,41.1,5.6,11,96900,44,804,467,14,10,13,1500,500,1500,330,250,4.1,4,4,56.3,77777,9,999999999,120,0.1400,0,88,999.000,999.0,99.0 +1988,7,16,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,39.4,6.1,13,96900,0,0,457,0,0,0,0,0,0,0,280,2.6,5,4,56.3,77777,9,999999999,130,0.1400,0,88,999.000,999.0,99.0 +1988,7,16,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,38.3,6.7,14,97000,0,0,455,0,0,0,0,0,0,0,270,3.6,5,5,56.3,77777,9,999999999,130,0.1400,0,88,999.000,999.0,99.0 +1988,7,16,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,38.3,6.7,14,97000,0,0,444,0,0,0,0,0,0,0,290,3.6,2,2,56.3,77777,9,999999999,130,0.1400,0,88,999.000,999.0,99.0 +1988,7,16,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.2,8.3,17,97000,0,0,444,0,0,0,0,0,0,0,250,1.5,3,3,56.3,77777,9,999999999,150,0.1400,0,88,999.000,999.0,99.0 +1988,7,17,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.7,7.8,17,97000,0,0,448,0,0,0,0,0,0,0,250,4.1,5,5,56.3,77777,9,999999999,140,0.1180,0,88,999.000,999.0,99.0 +1988,7,17,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.0,8.9,20,97100,0,0,440,0,0,0,0,0,0,0,250,4.6,7,5,56.3,3350,9,999999999,150,0.1180,0,88,999.000,999.0,99.0 +1988,7,17,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34.4,9.4,22,97100,0,0,441,0,0,0,0,0,0,0,230,3.1,8,6,56.3,3350,9,999999999,160,0.1180,0,88,999.000,999.0,99.0 +1988,7,17,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.9,9.4,22,97100,0,0,438,0,0,0,0,0,0,0,240,4.1,6,6,56.3,3350,9,999999999,160,0.1180,0,88,999.000,999.0,99.0 +1988,7,17,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.9,10.6,24,97100,0,0,436,0,0,0,0,0,0,0,80,3.1,6,5,64.4,3350,9,999999999,170,0.1180,0,88,999.000,999.0,99.0 +1988,7,17,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,11.1,27,97200,26,628,439,8,2,8,1000,0,1000,300,100,2.6,7,7,64.4,3350,9,999999999,180,0.1180,0,88,999.000,999.0,99.0 +1988,7,17,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,10.0,24,97300,246,1322,440,62,3,62,7000,100,7000,2140,90,5.2,7,7,72.4,3350,9,999999999,170,0.1180,0,88,999.000,999.0,99.0 +1988,7,17,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,10.6,27,97400,511,1322,432,137,40,123,15200,3800,13800,3580,50,3.1,7,7,72.4,3350,9,999999999,170,0.1180,0,88,999.000,999.0,99.0 +1988,7,17,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34.4,11.7,25,97500,760,1322,444,375,198,266,41400,20600,29500,7030,360,2.1,6,6,72.4,6100,9,999999999,180,0.1180,0,88,999.000,999.0,99.0 +1988,7,17,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.1,15.6,29,97400,975,1322,449,781,790,208,83000,79800,24100,6200,290,5.7,3,3,72.4,77777,9,999999999,230,0.1180,0,88,999.000,999.0,99.0 +1988,7,17,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.8,15.0,26,97400,1142,1322,461,912,850,183,95700,85200,21900,7450,280,6.2,4,4,72.4,77777,9,999999999,230,0.1180,0,88,999.000,999.0,99.0 +1988,7,17,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.8,14.4,25,97400,1249,1322,464,820,517,334,89100,54100,37900,23970,280,3.6,5,5,72.4,77777,9,999999999,220,0.1180,0,88,999.000,999.0,99.0 +1988,7,17,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,38.3,13.9,23,97400,1289,1322,476,688,227,466,75900,24200,52200,34430,270,4.6,7,7,72.4,3960,9,999999999,209,0.1180,0,88,999.000,999.0,99.0 +1988,7,17,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,40.0,15.0,23,97300,1258,1322,482,787,308,493,85600,33400,53700,33390,310,3.6,6,6,72.4,3960,9,999999999,230,0.1180,0,88,999.000,999.0,99.0 +1988,7,17,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,40.6,14.4,21,97200,1160,1322,481,621,178,461,67500,18900,50800,20290,320,4.1,5,5,72.4,77777,9,999999999,220,0.1180,0,88,999.000,999.0,99.0 +1988,7,17,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,41.7,14.4,20,97100,1001,1322,488,662,485,289,69700,50400,31400,9300,270,5.2,5,5,72.4,77777,9,999999999,220,0.1180,0,88,999.000,999.0,99.0 +1988,7,17,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,42.2,13.3,18,97000,791,1322,482,553,719,92,55700,72000,12500,2230,280,4.1,3,3,72.4,77777,9,999999999,200,0.1180,0,88,999.000,999.0,99.0 +1988,7,17,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,42.8,12.8,17,96900,546,1322,496,293,492,77,29700,47400,10100,1580,260,4.1,6,6,72.4,3660,9,999999999,200,0.1180,0,88,999.000,999.0,99.0 +1988,7,17,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,41.1,12.2,18,96900,282,1322,509,43,43,34,5000,3500,4200,730,230,2.1,9,9,80.5,3660,9,999999999,190,0.1180,0,88,999.000,999.0,99.0 +1988,7,17,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,40.6,12.8,19,96900,43,782,496,14,34,10,1300,1100,1300,160,200,1.5,8,8,64.4,3660,9,999999999,200,0.1180,0,88,999.000,999.0,99.0 +1988,7,17,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,40.0,12.8,20,96900,0,0,492,0,0,0,0,0,0,0,0,0.0,8,8,56.3,3660,9,999999999,200,0.1180,0,88,999.000,999.0,99.0 +1988,7,17,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,38.9,14.4,23,97100,0,0,480,0,0,0,0,0,0,0,250,4.1,7,7,56.3,3660,9,999999999,209,0.1180,0,88,999.000,999.0,99.0 +1988,7,17,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.7,18.9,35,97100,0,0,492,0,0,0,0,0,0,0,270,4.1,9,9,56.3,3660,9,999999999,290,0.1180,0,88,999.000,999.0,99.0 +1988,7,17,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.6,18.9,37,97200,0,0,485,0,0,0,0,0,0,0,260,4.1,9,9,56.3,3350,9,999999999,290,0.1180,0,88,999.000,999.0,99.0 +1988,7,18,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34.4,19.4,41,97200,0,0,468,0,0,0,0,0,0,0,300,6.2,10,8,56.3,3350,9,999999999,300,0.1180,0,88,999.000,999.0,99.0 +1988,7,18,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,18.9,42,97300,0,0,460,0,0,0,0,0,0,0,270,4.1,10,8,56.3,7620,9,999999999,290,0.1180,0,88,999.000,999.0,99.0 +1988,7,18,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,18.9,50,97300,0,0,444,0,0,0,0,0,0,0,90,5.7,8,8,56.3,7620,9,999999999,290,0.1180,0,88,999.000,999.0,99.0 +1988,7,18,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,18.9,50,97400,0,0,444,0,0,0,0,0,0,0,120,5.2,8,8,56.3,3960,9,999999999,290,0.1180,0,88,999.000,999.0,99.0 +1988,7,18,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,18.9,51,97400,0,0,441,0,0,0,0,0,0,0,120,4.1,8,8,56.3,3960,9,999999999,290,0.1180,0,88,999.000,999.0,99.0 +1988,7,18,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,18.3,50,97400,25,606,433,5,2,5,600,100,600,130,120,4.1,9,7,64.4,3960,9,999999999,280,0.1180,0,88,999.000,999.0,99.0 +1988,7,18,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,18.9,50,97400,244,1323,454,47,3,44,5100,100,5100,1650,80,3.1,9,9,64.4,3960,9,999999999,290,0.1180,0,88,999.000,999.0,99.0 +1988,7,18,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,18.3,48,97500,509,1323,466,132,7,124,14500,500,14300,4910,90,3.1,10,10,64.4,3960,9,999999999,280,0.1180,0,88,999.000,999.0,99.0 +1988,7,18,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,18.9,47,97500,758,1323,474,248,25,227,27700,2200,26400,9400,0,0.0,10,10,64.4,3960,9,999999999,290,0.1180,0,88,999.000,999.0,99.0 +1988,7,18,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,17.8,41,97500,974,1323,479,362,28,336,41100,2700,39100,14180,260,5.7,10,10,64.4,3960,9,999999999,270,0.1180,0,88,999.000,999.0,99.0 +1988,7,18,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,17.8,40,97500,1141,1323,469,658,175,501,70800,18500,54800,21070,250,4.1,9,9,64.4,3960,9,999999999,270,0.1180,0,88,999.000,999.0,99.0 +1988,7,18,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.6,17.2,34,97400,1248,1323,482,773,167,611,83100,17600,66400,35870,300,3.6,9,9,64.4,3960,9,999999999,260,0.1180,0,88,999.000,999.0,99.0 +1988,7,18,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.6,17.2,34,97400,1288,1323,472,514,11,504,60100,1100,59000,20560,260,5.2,10,8,64.4,7620,9,999999999,260,0.1180,0,88,999.000,999.0,99.0 +1988,7,18,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.2,17.2,31,97300,1258,1323,474,801,170,640,86500,17900,69400,39290,270,6.2,9,7,64.4,7620,9,999999999,260,0.1180,0,88,999.000,999.0,99.0 +1988,7,18,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.8,16.1,28,97200,1159,1323,471,787,406,432,85600,44000,46900,19730,280,5.2,7,6,64.4,7620,9,999999999,250,0.1180,0,88,999.000,999.0,99.0 +1988,7,18,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.8,17.2,30,97100,1000,1323,450,781,763,199,82000,77400,23300,6260,280,6.7,2,1,64.4,77777,9,999999999,260,0.1180,0,88,999.000,999.0,99.0 +1988,7,18,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.2,16.7,30,97000,790,1323,438,561,706,119,57800,71500,15000,2880,290,7.7,1,0,64.4,77777,9,999999999,250,0.1180,0,88,999.000,999.0,99.0 +1988,7,18,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.7,16.1,30,97100,544,1323,448,304,577,58,31500,55500,8600,1290,270,6.2,2,2,64.4,77777,9,999999999,250,0.1180,0,88,999.000,999.0,99.0 +1988,7,18,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.1,15.6,29,97100,280,1323,449,122,152,88,13000,12100,10400,1900,290,5.2,3,3,64.4,77777,9,999999999,230,0.1180,0,88,999.000,999.0,99.0 +1988,7,18,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.0,16.1,32,97100,42,783,447,16,10,15,1700,500,1700,370,270,4.1,5,4,64.4,77777,9,999999999,240,0.1180,0,88,999.000,999.0,99.0 +1988,7,18,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.9,17.2,37,97200,0,0,438,0,0,0,0,0,0,0,290,4.6,3,3,56.3,77777,9,999999999,260,0.1180,0,88,999.000,999.0,99.0 +1988,7,18,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,18.3,41,97300,0,0,432,0,0,0,0,0,0,0,220,4.1,2,2,56.3,77777,9,999999999,280,0.1180,0,88,999.000,999.0,99.0 +1988,7,18,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,18.3,45,97300,0,0,410,0,0,0,0,0,0,0,150,6.2,4,0,56.3,77777,9,999999999,280,0.1180,0,88,999.000,999.0,99.0 +1988,7,18,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,18.9,50,97300,0,0,425,0,0,0,0,0,0,0,180,6.2,5,4,56.3,77777,9,999999999,290,0.1180,0,88,999.000,999.0,99.0 +1988,7,19,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,18.9,53,97300,0,0,415,0,0,0,0,0,0,0,80,4.6,7,3,56.3,77777,9,999999999,290,0.1180,0,88,999.000,999.0,99.0 +1988,7,19,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,19.4,57,97400,0,0,413,0,0,0,0,0,0,0,120,4.6,7,3,56.3,77777,9,999999999,300,0.1180,0,88,999.000,999.0,99.0 +1988,7,19,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,20.0,63,97300,0,0,404,0,0,0,0,0,0,0,110,4.6,6,2,56.3,77777,9,999999999,310,0.1180,0,88,999.000,999.0,99.0 +1988,7,19,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,20.0,63,97300,0,0,404,0,0,0,0,0,0,0,80,4.1,8,2,56.3,77777,9,999999999,310,0.1180,0,88,999.000,999.0,99.0 +1988,7,19,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,20.6,67,97400,0,0,402,0,0,0,0,0,0,0,110,4.1,7,2,64.4,77777,9,999999999,320,0.1180,0,88,999.000,999.0,99.0 +1988,7,19,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,20.0,63,97400,24,584,408,21,34,17,2000,1200,2000,350,80,2.1,8,3,64.4,77777,9,999999999,310,0.1180,0,88,999.000,999.0,99.0 +1988,7,19,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,20.0,61,97400,241,1323,411,130,192,102,14500,14200,11900,2190,70,3.1,7,3,48.3,77777,9,999999999,310,0.1180,0,88,999.000,999.0,99.0 +1988,7,19,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,19.4,50,97400,507,1323,425,302,406,156,32100,38400,17300,3100,150,1.5,8,3,48.3,77777,9,999999999,300,0.1180,0,88,999.000,999.0,99.0 +1988,7,19,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,19.4,45,97400,757,1323,438,503,622,157,53400,61800,18000,3510,270,2.1,8,4,56.3,77777,9,999999999,300,0.1180,0,88,999.000,999.0,99.0 +1988,7,19,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.9,19.4,43,97400,973,1323,445,705,684,207,74500,69100,23700,6130,230,2.6,9,4,48.3,77777,9,999999999,300,0.1180,0,88,999.000,999.0,99.0 +1988,7,19,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34.4,19.4,41,97400,1140,1323,451,784,573,289,84900,59900,33100,13040,240,3.6,9,5,48.3,7620,9,999999999,300,0.0470,0,88,999.000,999.0,99.0 +1988,7,19,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.1,18.3,35,97300,1247,1323,453,898,597,334,97200,62500,38200,23690,250,4.1,8,3,48.3,77777,9,999999999,280,0.0470,0,88,999.000,999.0,99.0 +1988,7,19,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.7,18.3,34,97200,1287,1323,456,964,789,194,101500,79500,24000,16790,310,2.6,5,3,48.3,77777,9,999999999,280,0.0470,0,88,999.000,999.0,99.0 +1988,7,19,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,38.9,18.3,30,97200,1257,1323,473,899,625,303,94500,63100,34400,22000,230,4.1,5,4,48.3,77777,9,999999999,280,0.0470,0,88,999.000,999.0,99.0 +1988,7,19,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,38.3,17.8,30,97100,1159,1323,469,706,105,611,77300,11000,67600,25520,240,1.5,5,4,48.3,77777,9,999999999,270,0.1180,0,88,999.000,999.0,99.0 +1988,7,19,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,40.0,18.3,28,97000,999,1323,471,758,522,355,77900,54100,37000,11590,270,3.6,3,2,56.3,77777,9,999999999,270,0.1180,0,88,999.000,999.0,99.0 +1988,7,19,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,40.0,18.3,28,96900,789,1323,471,555,732,88,56200,73400,12300,2150,210,2.6,2,2,56.3,77777,9,999999999,270,0.1180,0,88,999.000,999.0,99.0 +1988,7,19,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,39.4,17.2,27,96900,543,1323,466,307,633,23,30600,60500,5700,740,260,3.6,2,2,56.3,77777,9,999999999,260,0.1180,0,88,999.000,999.0,99.0 +1988,7,19,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,38.3,15.6,26,96900,278,1323,462,141,194,90,13600,14900,10500,1790,320,3.1,3,3,56.3,77777,9,999999999,230,0.1180,0,88,999.000,999.0,99.0 +1988,7,19,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.8,16.1,28,97000,41,761,484,11,37,7,1100,1400,1000,120,340,3.1,8,8,48.3,2130,9,999999999,240,0.1180,0,88,999.000,999.0,99.0 +1988,7,19,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34.4,13.9,29,97200,0,0,460,0,0,0,0,0,0,0,340,5.2,8,8,40.2,2130,9,999999999,209,0.1180,0,88,999.000,999.0,99.0 +1988,7,19,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,17.8,45,97200,0,0,446,0,0,0,0,0,0,0,360,2.1,8,8,32.2,2130,9,999999999,270,0.1180,0,88,999.000,999.0,99.0 +1988,7,19,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,17.2,41,97100,0,0,451,0,0,0,0,0,0,0,220,2.1,8,8,56.3,3660,9,999999999,260,0.1180,0,88,999.000,999.0,99.0 +1988,7,19,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.9,13.9,30,97100,0,0,457,0,0,0,0,0,0,0,130,3.6,8,8,56.3,3660,9,999999999,209,0.1180,0,88,999.000,999.0,99.0 +1988,7,20,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,15.6,35,97300,0,0,446,0,0,0,0,0,0,0,300,3.1,7,7,56.3,3660,9,999999999,230,0.1180,0,88,999.000,999.0,99.0 +1988,7,20,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,18.3,51,97400,0,0,446,0,0,0,0,0,0,0,160,5.2,9,9,3.2,3660,9,999999999,280,0.1180,0,88,999.000,999.0,99.0 +1988,7,20,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,17.8,53,97500,0,0,430,0,0,0,0,0,0,0,90,5.2,8,8,11.3,3660,9,999999999,270,0.1180,0,88,999.000,999.0,99.0 +1988,7,20,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,18.9,59,97600,0,0,437,0,0,0,0,0,0,0,110,6.2,9,9,16.1,3660,9,999999999,290,0.1180,0,88,999.000,999.0,99.0 +1988,7,20,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,19.4,63,97600,0,0,435,0,0,0,0,0,0,0,110,4.1,9,9,56.3,3660,9,999999999,300,0.1180,0,88,999.000,999.0,99.0 +1988,7,20,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,19.4,61,97600,22,584,451,6,0,6,0,0,0,0,80,3.1,10,10,56.3,7620,9,999999999,300,0.1190,0,88,999.000,999.0,99.0 +1988,7,20,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,18.3,53,97700,239,1323,456,57,5,57,6500,100,6500,1990,100,2.6,10,10,64.4,7620,9,999999999,280,0.1190,0,88,999.000,999.0,99.0 +1988,7,20,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,18.3,48,97700,505,1323,453,186,48,168,20400,4600,18700,4560,330,3.1,9,9,72.4,7620,9,999999999,280,0.1190,0,88,999.000,999.0,99.0 +1988,7,20,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,17.2,42,97700,755,1323,471,209,5,206,24100,400,23900,8750,350,2.1,10,10,80.5,7620,9,999999999,260,0.1190,0,88,999.000,999.0,99.0 +1988,7,20,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,17.8,40,97700,971,1323,459,646,356,385,69100,38300,40900,12160,250,3.1,8,8,64.4,4270,9,999999999,270,0.1190,0,88,999.000,999.0,99.0 +1988,7,20,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.6,17.8,35,97700,1139,1323,465,708,365,393,77200,39600,43000,16770,300,2.6,7,7,56.3,4270,9,999999999,270,0.1190,0,88,999.000,999.0,99.0 +1988,7,20,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.8,17.2,30,97700,1246,1323,472,816,420,419,86200,43800,44900,29790,320,3.1,6,6,56.3,4270,9,999999999,260,0.1190,0,88,999.000,999.0,99.0 +1988,7,20,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,39.4,16.7,26,97600,1286,1323,474,958,663,311,100800,66900,35600,27960,0,0.0,4,4,64.4,77777,9,999999999,250,0.1190,0,88,999.000,999.0,99.0 +1988,7,20,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,39.4,16.1,25,97500,1256,1323,469,975,738,272,103300,74900,32000,19760,360,3.1,3,3,64.4,77777,9,999999999,240,0.1190,0,88,999.000,999.0,99.0 +1988,7,20,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,41.7,15.6,22,97400,1158,1323,482,861,684,260,90500,69200,29800,12120,90,4.6,3,3,72.4,77777,9,999999999,240,0.1190,0,88,999.000,999.0,99.0 +1988,7,20,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,41.7,15.0,21,97300,998,1323,481,750,727,200,79000,73700,23300,6260,130,5.7,3,3,56.3,77777,9,999999999,230,0.1190,0,88,999.000,999.0,99.0 +1988,7,20,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,42.2,15.0,20,97300,788,1323,488,474,440,211,50100,45000,23200,4970,210,2.1,4,4,56.3,77777,9,999999999,220,0.1190,0,88,999.000,999.0,99.0 +1988,7,20,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,21.1,74,97700,541,1323,443,106,32,93,11700,3000,10500,2880,60,5.7,10,10,11.3,2130,9,999999999,330,0.1190,0,88,999.000,999.0,99.0 +1988,7,20,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,22.2,72,97600,276,1323,454,35,3,35,4200,100,4200,1420,230,3.1,10,10,32.2,2130,9,999999999,360,0.1190,0,88,999.000,999.0,99.0 +1988,7,20,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,22.8,74,97500,39,761,455,8,0,8,1000,0,1000,310,270,3.1,10,10,32.2,2130,9,999999999,360,0.1190,0,88,999.000,999.0,99.0 +1988,7,20,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,22.8,72,97600,0,0,458,0,0,0,0,0,0,0,70,2.6,10,10,40.2,2740,9,999999999,370,0.1180,0,88,999.000,999.0,99.0 +1988,7,20,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,21.7,65,97700,0,0,460,0,0,0,0,0,0,0,50,1.5,10,10,48.3,2740,9,999999999,340,0.1180,0,88,999.000,999.0,99.0 +1988,7,20,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,22.2,67,97700,0,0,461,0,0,0,0,0,0,0,340,1.5,10,10,56.3,2740,9,999999999,350,0.1180,0,88,999.000,999.0,99.0 +1988,7,20,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,23.3,72,97700,0,0,463,0,0,0,0,0,0,0,250,3.1,10,10,56.3,2740,9,999999999,380,0.1180,0,88,999.000,999.0,99.0 +1988,7,21,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,22.8,70,97700,0,0,462,0,0,0,0,0,0,0,0,0.0,10,10,56.3,2740,9,999999999,370,0.1180,0,88,999.000,999.0,99.0 +1988,7,21,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,22.8,70,97700,0,0,462,0,0,0,0,0,0,0,20,2.6,10,10,56.3,2740,9,999999999,370,0.1180,0,88,999.000,999.0,99.0 +1988,7,21,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,23.3,72,97800,0,0,463,0,0,0,0,0,0,0,170,2.1,10,10,56.3,2740,9,999999999,380,0.1180,0,88,999.000,999.0,99.0 +1988,7,21,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,22.8,70,97800,0,0,462,0,0,0,0,0,0,0,100,3.1,10,10,56.3,2740,9,999999999,370,0.1180,0,88,999.000,999.0,99.0 +1988,7,21,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,21.7,65,97900,0,0,448,0,0,0,0,0,0,0,150,2.6,9,9,56.3,2740,9,999999999,340,0.1180,0,88,999.000,999.0,99.0 +1988,7,21,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,21.1,65,97900,21,562,422,11,5,11,0,0,0,0,70,3.1,9,6,56.3,6100,9,999999999,330,0.0820,0,88,999.000,999.0,99.0 +1988,7,21,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,20.6,63,98000,237,1323,422,75,32,69,8200,2500,7700,1680,70,3.1,9,6,64.4,6100,9,999999999,320,0.0820,0,88,999.000,999.0,99.0 +1988,7,21,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,20.6,55,98000,503,1323,431,294,398,143,30500,37600,16200,2810,80,2.1,8,5,64.4,7620,9,999999999,320,0.0820,0,88,999.000,999.0,99.0 +1988,7,21,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,20.6,49,98000,753,1323,440,506,540,198,53500,55000,22200,4510,30,2.6,6,4,80.5,7620,9,999999999,320,0.0820,0,88,999.000,999.0,99.0 +1988,7,21,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.0,18.3,37,97900,970,1323,442,674,728,139,70600,73100,16900,3870,110,2.6,3,2,96.6,77777,9,999999999,280,0.0820,0,88,999.000,999.0,99.0 +1988,7,21,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.7,17.8,33,97900,1138,1323,451,775,680,189,83300,69800,23100,8440,90,3.6,3,2,96.6,77777,9,999999999,270,0.0820,0,88,999.000,999.0,99.0 +1988,7,21,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.8,17.2,30,97800,1245,1323,456,947,815,178,100200,82300,22600,11510,0,0.0,2,2,96.6,77777,9,999999999,260,0.0820,0,88,999.000,999.0,99.0 +1988,7,21,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,39.4,16.1,25,97700,1285,1323,464,932,723,227,100300,74200,28000,20510,160,3.1,2,2,96.6,77777,9,999999999,240,0.0820,0,88,999.000,999.0,99.0 +1988,7,21,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,40.6,15.6,23,97600,1255,1323,475,928,731,232,99400,74800,28300,16890,100,2.6,4,3,96.6,77777,9,999999999,240,0.0820,0,88,999.000,999.0,99.0 +1988,7,21,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,40.6,15.6,23,97500,1157,1323,471,776,608,242,82000,61800,27900,11300,100,2.6,2,2,96.6,77777,9,999999999,240,0.0820,0,88,999.000,999.0,99.0 +1988,7,21,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,41.7,15.0,21,97400,997,1323,476,716,723,169,76300,73900,20500,5370,210,1.5,3,2,96.6,77777,9,999999999,230,0.0820,0,88,999.000,999.0,99.0 +1988,7,21,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,41.7,14.4,20,97300,786,1323,476,555,679,149,58000,68000,17500,3480,130,4.6,3,2,96.6,77777,9,999999999,220,0.0820,0,88,999.000,999.0,99.0 +1988,7,21,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,42.2,13.9,19,97300,540,1323,483,279,341,139,30000,33900,16100,2850,120,4.1,4,3,96.6,77777,9,999999999,209,0.0820,0,88,999.000,999.0,99.0 +1988,7,21,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,41.1,13.3,19,97200,274,1323,479,146,376,67,15100,28600,9200,1220,160,3.1,5,4,96.6,77777,9,999999999,200,0.0820,0,88,999.000,999.0,99.0 +1988,7,21,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,39.4,15.0,24,97300,38,739,467,24,20,21,2400,1100,2400,490,260,4.1,7,3,56.3,77777,9,999999999,230,0.0820,0,88,999.000,999.0,99.0 +1988,7,21,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.8,17.2,30,97400,0,0,456,0,0,0,0,0,0,0,220,6.2,6,2,56.3,77777,9,999999999,260,0.1180,0,88,999.000,999.0,99.0 +1988,7,21,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.7,17.2,32,97500,0,0,450,0,0,0,0,0,0,0,220,3.6,9,2,56.3,77777,9,999999999,260,0.1180,0,88,999.000,999.0,99.0 +1988,7,21,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.0,17.8,36,97500,0,0,441,0,0,0,0,0,0,0,240,2.1,7,2,56.3,77777,9,999999999,270,0.1180,0,88,999.000,999.0,99.0 +1988,7,21,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34.4,17.8,37,97600,0,0,442,0,0,0,0,0,0,0,30,2.1,7,3,56.3,77777,9,999999999,270,0.1180,0,88,999.000,999.0,99.0 +1988,7,22,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,18.3,41,97600,0,0,436,0,0,0,0,0,0,0,100,4.6,7,3,56.3,77777,9,999999999,280,0.0470,0,88,999.000,999.0,99.0 +1988,7,22,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,18.3,44,97600,0,0,426,0,0,0,0,0,0,0,80,3.1,6,2,56.3,77777,9,999999999,280,0.0470,0,88,999.000,999.0,99.0 +1988,7,22,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,18.3,45,97600,0,0,423,0,0,0,0,0,0,0,100,4.1,6,2,56.3,77777,9,999999999,280,0.0470,0,88,999.000,999.0,99.0 +1988,7,22,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,18.9,50,97600,0,0,412,0,0,0,0,0,0,0,90,4.1,4,1,56.3,77777,9,999999999,290,0.0470,0,88,999.000,999.0,99.0 +1988,7,22,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,18.9,51,97600,0,0,409,0,0,0,0,0,0,0,120,3.1,4,1,72.4,77777,9,999999999,290,0.0470,0,88,999.000,999.0,99.0 +1988,7,22,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,18.9,51,97600,20,540,415,7,16,6,0,0,0,0,100,4.6,6,2,64.4,77777,9,999999999,290,0.0470,0,88,999.000,999.0,99.0 +1988,7,22,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,18.3,47,97700,234,1323,414,119,428,49,12700,30900,7200,870,90,4.1,4,1,48.3,77777,9,999999999,280,0.0470,0,88,999.000,999.0,99.0 +1988,7,22,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,18.3,44,97700,501,1323,420,308,663,67,33000,62300,9400,1350,80,3.6,1,1,48.3,77777,9,999999999,280,0.0470,0,88,999.000,999.0,99.0 +1988,7,22,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.0,17.2,35,97700,751,1323,426,516,778,89,56400,77500,12300,2080,70,2.1,1,0,48.3,77777,9,999999999,260,0.0470,0,88,999.000,999.0,99.0 +1988,7,22,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.7,17.2,32,97600,968,1323,436,719,830,121,77600,83800,16100,3510,130,3.1,0,0,56.3,77777,9,999999999,260,0.0470,0,88,999.000,999.0,99.0 +1988,7,22,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,38.9,15.0,24,97600,1137,1323,445,880,873,137,91100,87300,16000,4560,100,2.1,0,0,56.3,77777,9,999999999,220,0.0470,0,88,999.000,999.0,99.0 +1988,7,22,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,40.6,12.8,19,97500,1244,1323,452,991,897,151,101800,89800,17200,7890,180,4.1,0,0,56.3,77777,9,999999999,200,0.0470,0,88,999.000,999.0,99.0 +1988,7,22,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,41.7,10.0,15,97400,1285,1323,454,1047,906,161,106300,90700,18000,11100,170,4.1,0,0,56.3,77777,9,999999999,170,0.0470,0,88,999.000,999.0,99.0 +1988,7,22,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,42.2,11.1,16,97300,1254,1323,458,1004,889,157,102200,89000,17700,8630,170,3.1,0,0,56.3,77777,9,999999999,180,0.0470,0,88,999.000,999.0,99.0 +1988,7,22,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,42.8,11.7,16,97200,1156,1323,463,911,863,149,96500,87400,19900,6660,310,3.1,0,0,56.3,77777,9,999999999,190,0.0470,0,88,999.000,999.0,99.0 +1988,7,22,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,42.8,11.1,15,97100,996,1323,471,767,825,138,80000,83000,17400,4070,220,4.6,1,1,64.4,77777,9,999999999,170,0.0470,0,88,999.000,999.0,99.0 +1988,7,22,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,42.2,11.7,16,97000,785,1323,479,575,629,185,57700,62200,20700,4160,0,0.0,3,3,64.4,77777,9,999999999,180,0.0470,0,88,999.000,999.0,99.0 +1988,7,22,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,42.2,11.1,16,97000,538,1323,482,307,276,186,31400,27300,20300,4060,270,3.1,6,4,64.4,7620,9,999999999,180,0.0470,0,88,999.000,999.0,99.0 +1988,7,22,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,41.1,10.6,16,97000,272,1323,488,82,6,82,9200,200,9100,2690,220,3.1,8,7,64.4,7620,9,999999999,170,0.0470,0,88,999.000,999.0,99.0 +1988,7,22,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,40.6,11.1,17,97000,37,739,493,7,18,5,700,600,700,80,280,2.6,8,8,56.3,7620,9,999999999,180,0.0470,0,88,999.000,999.0,99.0 +1988,7,22,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,39.4,12.2,20,97000,0,0,488,0,0,0,0,0,0,0,0,0.0,8,8,56.3,7620,9,999999999,190,0.0470,0,88,999.000,999.0,99.0 +1988,7,22,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,38.3,12.2,21,97100,0,0,460,0,0,0,0,0,0,0,330,2.1,10,4,56.3,77777,9,999999999,190,0.0470,0,88,999.000,999.0,99.0 +1988,7,22,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.2,12.8,23,97100,0,0,462,0,0,0,0,0,0,0,260,4.1,10,6,56.3,7620,9,999999999,200,0.0470,0,88,999.000,999.0,99.0 +1988,7,22,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.7,15.6,28,97200,0,0,463,0,0,0,0,0,0,0,280,4.6,8,6,56.3,7620,9,999999999,230,0.0470,0,88,999.000,999.0,99.0 +1988,7,23,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.0,17.8,36,97100,0,0,441,0,0,0,0,0,0,0,300,2.6,6,2,56.3,77777,9,999999999,270,0.1390,0,88,999.000,999.0,99.0 +1988,7,23,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34.4,17.8,37,97100,0,0,438,0,0,0,0,0,0,0,270,4.1,6,2,56.3,77777,9,999999999,270,0.1390,0,88,999.000,999.0,99.0 +1988,7,23,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.9,17.8,38,97100,0,0,435,0,0,0,0,0,0,0,320,3.1,6,2,56.3,77777,9,999999999,270,0.1390,0,88,999.000,999.0,99.0 +1988,7,23,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,17.8,41,97200,0,0,423,0,0,0,0,0,0,0,310,2.1,5,1,56.3,77777,9,999999999,270,0.1390,0,88,999.000,999.0,99.0 +1988,7,23,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,18.3,44,97200,0,0,426,0,0,0,0,0,0,0,100,1.5,5,2,56.3,77777,9,999999999,280,0.1390,0,88,999.000,999.0,99.0 +1988,7,23,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,17.8,44,97300,19,541,427,7,21,5,0,0,0,0,0,0.0,8,3,64.4,77777,9,999999999,270,0.1390,0,88,999.000,999.0,99.0 +1988,7,23,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,18.3,44,97300,231,1324,420,105,369,50,11600,26500,7000,880,100,4.1,5,1,64.4,77777,9,999999999,280,0.1390,0,88,999.000,999.0,99.0 +1988,7,23,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,18.9,42,97400,499,1324,419,295,611,82,32700,57400,11000,1620,80,3.1,0,0,72.4,77777,9,999999999,290,0.1390,0,88,999.000,999.0,99.0 +1988,7,23,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.0,18.9,39,97400,750,1324,428,504,723,117,56000,72700,14700,2710,120,3.1,0,0,72.4,77777,9,999999999,290,0.1390,0,88,999.000,999.0,99.0 +1988,7,23,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.7,18.9,35,97400,967,1324,438,710,789,148,75400,78900,17700,4010,120,2.6,0,0,72.4,77777,9,999999999,290,0.1390,0,88,999.000,999.0,99.0 +1988,7,23,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,39.4,17.8,28,97400,1135,1324,452,864,826,168,92200,83100,20700,6810,160,3.6,0,0,72.4,77777,9,999999999,270,0.1390,0,88,999.000,999.0,99.0 +1988,7,23,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,40.0,17.8,27,97300,1243,1324,455,965,846,177,103000,85400,22600,11300,350,2.6,0,0,72.4,77777,9,999999999,270,0.1390,0,88,999.000,999.0,99.0 +1988,7,23,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,40.6,17.2,26,97300,1284,1324,458,1020,853,185,107300,86100,23700,15510,220,2.6,0,0,72.4,77777,9,999999999,260,0.1390,0,88,999.000,999.0,99.0 +1988,7,23,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,41.7,15.0,21,97200,1254,1324,470,996,864,173,105500,87400,22600,11770,290,3.1,1,1,64.4,77777,9,999999999,230,0.1390,0,88,999.000,999.0,99.0 +1988,7,23,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,42.8,12.2,16,97100,1155,1324,472,908,846,161,95300,85400,20600,7050,290,3.6,1,1,64.4,77777,9,999999999,190,0.1390,0,88,999.000,999.0,99.0 +1988,7,23,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,43.9,12.8,16,97000,995,1324,471,766,808,146,78900,81100,17800,4210,260,5.2,0,0,64.4,77777,9,999999999,200,0.1390,0,88,999.000,999.0,99.0 +1988,7,23,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,43.3,13.3,17,96900,783,1324,468,588,708,123,57700,71500,15300,2940,270,4.6,0,0,64.4,77777,9,999999999,200,0.1390,0,88,999.000,999.0,99.0 +1988,7,23,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,42.8,11.7,16,96900,536,1324,463,291,583,22,27900,55600,5400,720,290,5.2,1,0,64.4,77777,9,999999999,190,0.1390,0,88,999.000,999.0,99.0 +1988,7,23,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,42.2,12.2,17,97000,269,1324,469,128,87,96,12200,6800,10800,2070,260,4.6,1,1,64.4,77777,9,999999999,190,0.1390,0,88,999.000,999.0,99.0 +1988,7,23,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,40.0,13.3,20,97000,36,717,464,3,0,3,400,0,400,120,260,5.2,2,2,56.3,77777,9,999999999,200,0.1390,0,88,999.000,999.0,99.0 +1988,7,23,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,38.9,15.0,24,97100,0,0,464,0,0,0,0,0,0,0,270,4.6,4,3,56.3,77777,9,999999999,220,0.1390,0,88,999.000,999.0,99.0 +1988,7,23,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.8,15.6,27,97200,0,0,466,0,0,0,0,0,0,0,270,4.6,5,5,56.3,77777,9,999999999,240,0.1390,0,88,999.000,999.0,99.0 +1988,7,23,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.1,13.9,26,97400,0,0,453,0,0,0,0,0,0,0,10,3.6,5,5,56.3,77777,9,999999999,209,0.1390,0,88,999.000,999.0,99.0 +1988,7,23,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.2,15.0,27,97300,0,0,489,0,0,0,0,0,0,0,270,5.2,9,9,56.3,7620,9,999999999,230,0.1390,0,88,999.000,999.0,99.0 +1988,7,24,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.6,17.2,34,97300,0,0,496,0,0,0,0,0,0,0,260,5.2,10,10,56.3,4270,9,999999999,260,0.1180,0,88,999.000,999.0,99.0 +1988,7,24,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.9,17.2,37,97300,0,0,485,0,0,0,0,0,0,0,280,6.2,10,10,56.3,7620,9,999999999,260,0.1180,0,88,999.000,999.0,99.0 +1988,7,24,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,17.2,38,97400,0,0,458,0,0,0,0,0,0,0,320,1.5,10,8,56.3,7620,9,999999999,260,0.1180,0,88,999.000,999.0,99.0 +1988,7,24,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,17.2,38,97400,0,0,435,0,0,0,0,0,0,0,290,2.1,8,3,56.3,77777,9,999999999,260,0.1180,0,88,999.000,999.0,99.0 +1988,7,24,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,17.2,41,97400,0,0,429,0,0,0,0,0,0,0,310,2.1,8,3,64.4,77777,9,999999999,260,0.1180,0,88,999.000,999.0,99.0 +1988,7,24,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,17.2,42,97400,18,519,426,10,23,8,0,0,0,0,320,3.1,8,3,64.4,77777,9,999999999,260,0.1180,0,88,999.000,999.0,99.0 +1988,7,24,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,17.8,42,97600,229,1324,429,100,282,51,10500,19700,7100,910,330,3.1,4,3,64.4,77777,9,999999999,270,0.1180,0,88,999.000,999.0,99.0 +1988,7,24,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,17.2,38,97600,496,1324,431,290,594,73,31200,56000,10200,1460,290,3.6,3,2,64.4,77777,9,999999999,260,0.1180,0,88,999.000,999.0,99.0 +1988,7,24,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.0,17.2,35,97700,748,1324,440,509,721,107,55000,72700,13900,2500,280,4.6,3,2,72.4,77777,9,999999999,260,0.1180,0,88,999.000,999.0,99.0 +1988,7,24,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.1,17.2,33,97600,965,1324,447,726,799,145,75900,80000,17500,3940,270,3.1,3,2,72.4,77777,9,999999999,260,0.1180,0,88,999.000,999.0,99.0 +1988,7,24,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.2,17.2,31,97600,1134,1324,453,890,831,180,93100,83300,21500,7130,340,2.1,7,2,72.4,77777,9,999999999,260,0.1180,0,88,999.000,999.0,99.0 +1988,7,24,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,39.4,17.2,27,97500,1242,1324,466,1001,849,204,104500,85100,24400,12630,220,5.2,5,2,72.4,77777,9,999999999,260,0.1180,0,88,999.000,999.0,99.0 +1988,7,24,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,40.0,16.7,25,97400,1283,1324,473,1044,865,202,109200,86900,24800,16590,270,3.6,5,3,72.4,77777,9,999999999,250,0.1180,0,88,999.000,999.0,99.0 +1988,7,24,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,41.1,16.7,24,97300,1253,1324,480,1004,866,181,105900,87400,23100,12140,270,5.2,5,3,72.4,77777,9,999999999,250,0.1180,0,88,999.000,999.0,99.0 +1988,7,24,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,42.2,15.0,20,97300,1154,1324,484,900,829,174,94200,83400,21300,7450,300,5.2,4,3,72.4,77777,9,999999999,220,0.1180,0,88,999.000,999.0,99.0 +1988,7,24,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,42.8,15.6,20,97200,993,1324,489,759,801,155,78600,80100,18400,4370,280,6.7,3,3,72.4,77777,9,999999999,230,0.1180,0,88,999.000,999.0,99.0 +1988,7,24,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,42.8,13.9,18,97100,782,1324,481,588,716,153,60300,71600,18000,3540,250,4.6,2,2,72.4,77777,9,999999999,209,0.1180,0,88,999.000,999.0,99.0 +1988,7,24,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,43.3,12.8,16,97100,534,1324,495,324,604,83,34400,57700,11100,1670,270,4.1,5,5,72.4,77777,9,999999999,190,0.1180,0,88,999.000,999.0,99.0 +1988,7,24,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,42.8,12.2,16,97100,267,1324,484,136,353,64,14100,26600,8800,1160,260,3.6,3,3,72.4,77777,9,999999999,190,0.0940,0,88,999.000,999.0,99.0 +1988,7,24,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,41.1,12.8,19,97200,34,695,474,12,28,9,1200,800,1100,140,220,2.6,4,3,56.3,77777,9,999999999,200,0.1180,0,88,999.000,999.0,99.0 +1988,7,24,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,40.6,12.2,18,97300,0,0,466,0,0,0,0,0,0,0,190,2.1,2,2,56.3,77777,9,999999999,190,0.1180,0,88,999.000,999.0,99.0 +1988,7,24,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,38.3,12.8,22,97400,0,0,469,0,0,0,0,0,0,0,160,5.2,6,6,48.3,7620,9,999999999,200,0.1180,0,88,999.000,999.0,99.0 +1988,7,24,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.0,13.3,27,97500,0,0,446,0,0,0,0,0,0,0,170,8.2,6,5,3.2,7620,9,999999999,209,0.1180,0,88,999.000,999.0,99.0 +1988,7,24,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.0,13.9,28,97500,0,0,443,0,0,0,0,0,0,0,120,5.2,9,4,56.3,77777,9,999999999,209,0.1180,0,88,999.000,999.0,99.0 +1988,7,25,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,15.6,35,97500,0,0,430,0,0,0,0,0,0,0,100,8.8,9,3,56.3,77777,9,999999999,230,0.1170,0,88,999.000,999.0,99.0 +1988,7,25,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,15.0,34,97500,0,0,432,0,0,0,0,0,0,0,110,6.2,8,4,56.3,77777,9,999999999,230,0.1170,0,88,999.000,999.0,99.0 +1988,7,25,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,15.0,34,97400,0,0,429,0,0,0,0,0,0,0,120,5.2,8,3,56.3,77777,9,999999999,230,0.1170,0,88,999.000,999.0,99.0 +1988,7,25,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,15.0,35,97400,0,0,422,0,0,0,0,0,0,0,90,4.1,5,2,56.3,77777,9,999999999,230,0.1170,0,88,999.000,999.0,99.0 +1988,7,25,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,15.0,38,97400,0,0,415,0,0,0,0,0,0,0,140,2.6,3,2,56.3,77777,9,999999999,230,0.1170,0,88,999.000,999.0,99.0 +1988,7,25,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,14.4,35,97500,17,497,418,6,12,5,0,0,0,0,150,3.1,6,2,64.4,77777,9,999999999,220,0.1170,0,88,999.000,999.0,99.0 +1988,7,25,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,16.1,39,97600,226,1324,431,64,50,56,7100,3600,6500,1190,200,2.1,8,5,48.3,7620,9,999999999,240,0.1170,0,88,999.000,999.0,99.0 +1988,7,25,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34.4,15.0,31,97600,494,1324,442,267,322,162,29800,31200,18100,3430,150,2.1,5,4,32.2,77777,9,999999999,230,0.1170,0,88,999.000,999.0,99.0 +1988,7,25,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.0,15.6,31,97600,746,1324,453,392,171,303,43000,17700,33100,7930,350,3.1,6,6,48.3,4270,9,999999999,230,0.1170,0,88,999.000,999.0,99.0 +1988,7,25,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.2,15.0,27,97600,964,1324,450,689,709,185,74200,71900,21700,5460,250,3.6,2,2,56.3,77777,9,999999999,230,0.1170,0,88,999.000,999.0,99.0 +1988,7,25,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.2,17.2,31,97600,1133,1324,438,848,784,190,89300,78400,22100,7380,300,4.1,1,0,64.4,77777,9,999999999,260,0.1170,0,88,999.000,999.0,99.0 +1988,7,25,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,38.9,17.2,28,97500,1241,1324,448,961,821,199,101400,82400,24000,12290,270,3.6,1,0,64.4,77777,9,999999999,260,0.1170,0,88,999.000,999.0,99.0 +1988,7,25,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,40.0,16.7,25,97400,1282,1324,454,1014,829,203,105500,83300,24700,16490,230,3.1,2,0,64.4,77777,9,999999999,250,0.1170,0,88,999.000,999.0,99.0 +1988,7,25,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,41.1,16.7,24,97300,1252,1324,460,980,821,199,102200,82400,24100,13060,260,4.1,1,0,64.4,77777,9,999999999,250,0.1170,0,88,999.000,999.0,99.0 +1988,7,25,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,42.2,16.1,22,97200,1153,1324,466,888,799,181,91700,80200,21700,7640,300,3.1,1,0,64.4,77777,9,999999999,240,0.1170,0,88,999.000,999.0,99.0 +1988,7,25,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,43.3,15.0,19,97100,992,1324,486,746,756,168,78500,77200,20500,5280,230,4.6,3,2,64.4,77777,9,999999999,220,0.1170,0,88,999.000,999.0,99.0 +1988,7,25,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,42.8,14.4,19,97000,780,1324,495,492,393,238,50700,41700,26100,5820,270,4.1,7,5,56.3,9140,9,999999999,220,0.1170,0,88,999.000,999.0,99.0 +1988,7,25,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,42.2,13.9,19,97000,532,1324,508,124,1,120,13900,100,13800,4890,280,3.6,9,8,72.4,7620,9,999999999,209,0.1170,0,88,999.000,999.0,99.0 +1988,7,25,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.7,15.0,27,97000,265,1324,475,28,0,27,3200,0,3200,1120,320,6.2,9,8,32.2,7620,9,999999999,220,0.1170,0,88,999.000,999.0,99.0 +1988,7,25,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.7,13.9,26,97200,33,695,474,2,1,2,200,100,200,50,260,5.2,9,8,56.3,7620,9,999999999,220,0.1170,0,88,999.000,999.0,99.0 +1988,7,25,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.7,14.4,27,97200,0,0,474,0,0,0,0,0,0,0,240,4.6,10,8,56.3,3660,9,999999999,220,0.1170,0,88,999.000,999.0,99.0 +1988,7,25,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.7,14.4,27,97300,0,0,467,0,0,0,0,0,0,0,150,3.6,9,7,56.3,2130,9,999999999,220,0.1170,0,88,999.000,999.0,99.0 +1988,7,25,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.6,15.0,29,97400,0,0,469,0,0,0,0,0,0,0,120,6.7,10,8,56.3,2440,9,999999999,230,0.1170,0,88,999.000,999.0,99.0 +1988,7,25,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,16.1,38,97400,0,0,473,0,0,0,0,0,0,0,120,9.3,10,10,12.9,2440,9,999999999,240,0.1170,0,88,999.000,999.0,99.0 +1988,7,26,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,13.9,33,97300,0,0,469,0,0,0,0,0,0,0,120,5.2,10,10,56.3,3960,9,999999999,209,0.1170,0,88,999.000,999.0,99.0 +1988,7,26,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,14.4,34,97300,0,0,470,0,0,0,0,0,0,0,120,3.1,10,10,56.3,3960,9,999999999,220,0.1170,0,88,999.000,999.0,99.0 +1988,7,26,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,14.4,35,97400,0,0,444,0,0,0,0,0,0,0,60,4.1,10,8,56.3,7620,9,999999999,220,0.1170,0,88,999.000,999.0,99.0 +1988,7,26,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,16.7,46,97400,0,0,423,0,0,0,0,0,0,0,90,5.2,7,6,56.3,7620,9,999999999,250,0.1170,0,88,999.000,999.0,99.0 +1988,7,26,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,17.8,51,97400,0,0,421,0,0,0,0,0,0,0,100,5.2,7,6,64.4,7620,9,999999999,270,0.1170,0,88,999.000,999.0,99.0 +1988,7,26,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,17.8,51,97500,16,497,418,6,12,5,0,0,0,0,100,4.6,8,5,64.4,7620,9,999999999,270,0.1170,0,88,999.000,999.0,99.0 +1988,7,26,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,18.3,51,97500,224,1324,421,49,8,48,5600,200,5600,1710,120,3.6,8,5,64.4,7620,9,999999999,280,0.1170,0,88,999.000,999.0,99.0 +1988,7,26,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,17.8,46,97600,492,1324,431,163,43,143,17400,4100,15900,3970,90,4.1,7,6,80.5,4270,9,999999999,270,0.1170,0,88,999.000,999.0,99.0 +1988,7,26,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,17.2,39,97600,744,1324,428,367,268,220,40000,28300,24100,5210,150,3.1,6,2,80.5,77777,9,999999999,260,0.1170,0,88,999.000,999.0,99.0 +1988,7,26,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.6,17.2,34,97600,963,1324,448,699,691,197,73600,69900,22700,5750,150,4.1,3,3,80.5,77777,9,999999999,260,0.1170,0,88,999.000,999.0,99.0 +1988,7,26,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.7,17.2,32,97600,1132,1324,444,844,808,156,89700,81600,19800,6340,200,4.1,3,1,72.4,77777,9,999999999,260,0.1170,0,88,999.000,999.0,99.0 +1988,7,26,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,38.3,15.0,25,97500,1240,1324,450,983,865,170,104300,87500,22200,10690,200,4.1,4,1,72.4,77777,9,999999999,230,0.1170,0,88,999.000,999.0,99.0 +1988,7,26,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,39.4,15.0,24,97400,1281,1324,456,1029,848,204,107400,85200,24900,16390,170,4.6,7,1,72.4,77777,9,999999999,230,0.1170,0,88,999.000,999.0,99.0 +1988,7,26,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,40.0,13.3,20,97300,1251,1324,464,996,837,203,103900,84000,24400,13170,290,3.6,7,2,72.4,77777,9,999999999,200,0.1170,0,88,999.000,999.0,99.0 +1988,7,26,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,41.7,13.9,19,97200,1152,1324,475,896,833,167,94000,83900,20800,7150,270,5.2,8,2,72.4,77777,9,999999999,209,0.1170,0,88,999.000,999.0,99.0 +1988,7,26,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,41.1,15.0,21,97100,990,1324,473,719,736,164,76400,75300,20000,5150,280,5.7,8,2,72.4,77777,9,999999999,220,0.1170,0,88,999.000,999.0,99.0 +1988,7,26,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,41.1,15.0,21,97000,778,1324,473,583,722,147,60000,72300,17400,3400,290,4.1,8,2,72.4,77777,9,999999999,220,0.1170,0,88,999.000,999.0,99.0 +1988,7,26,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,41.1,14.4,21,97000,530,1324,480,272,639,15,29600,60900,5200,520,290,4.1,5,4,72.4,77777,9,999999999,220,0.1170,0,88,999.000,999.0,99.0 +1988,7,26,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,40.0,15.0,23,97000,262,1324,471,128,170,92,13000,12600,10500,1860,260,5.2,5,3,64.4,77777,9,999999999,230,0.1170,0,88,999.000,999.0,99.0 +1988,7,26,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,38.9,14.4,23,97000,31,673,467,5,10,4,500,300,500,60,250,4.1,6,4,56.3,7620,9,999999999,209,0.1170,0,88,999.000,999.0,99.0 +1988,7,26,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.8,15.0,26,97100,0,0,461,0,0,0,0,0,0,0,240,3.6,5,4,56.3,77777,9,999999999,230,0.1170,0,88,999.000,999.0,99.0 +1988,7,26,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.7,15.0,27,97100,0,0,447,0,0,0,0,0,0,0,250,3.6,4,2,56.3,77777,9,999999999,220,0.1170,0,88,999.000,999.0,99.0 +1988,7,26,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.1,16.1,30,97200,0,0,439,0,0,0,0,0,0,0,260,4.1,8,1,56.3,77777,9,999999999,240,0.1170,0,88,999.000,999.0,99.0 +1988,7,26,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.0,16.7,34,97200,0,0,447,0,0,0,0,0,0,0,280,3.6,5,4,56.3,77777,9,999999999,250,0.1170,0,88,999.000,999.0,99.0 +1988,7,27,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34.4,16.7,35,97200,0,0,444,0,0,0,0,0,0,0,290,4.1,5,4,56.3,77777,9,999999999,250,0.1170,0,88,999.000,999.0,99.0 +1988,7,27,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.9,16.1,35,97200,0,0,440,0,0,0,0,0,0,0,290,4.1,5,4,56.3,77777,9,999999999,250,0.1170,0,88,999.000,999.0,99.0 +1988,7,27,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,16.1,37,97200,0,0,431,0,0,0,0,0,0,0,280,4.1,4,3,56.3,77777,9,999999999,250,0.1170,0,88,999.000,999.0,99.0 +1988,7,27,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,16.1,38,97300,0,0,427,0,0,0,0,0,0,0,290,3.6,4,3,56.3,77777,9,999999999,240,0.1170,0,88,999.000,999.0,99.0 +1988,7,27,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,15.6,37,97300,0,0,422,0,0,0,0,0,0,0,270,3.6,3,2,56.3,77777,9,999999999,240,0.1170,0,88,999.000,999.0,99.0 +1988,7,27,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,16.1,40,97400,15,475,421,4,1,4,0,0,0,0,280,2.1,5,3,56.3,77777,9,999999999,240,0.1170,0,88,999.000,999.0,99.0 +1988,7,27,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,16.1,40,97400,221,1325,421,51,27,47,5700,2100,5300,1210,0,0.0,5,3,56.3,77777,9,999999999,240,0.1170,0,88,999.000,999.0,99.0 +1988,7,27,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,15.6,35,97500,490,1325,446,105,2,106,12300,100,12300,4290,180,3.6,7,7,80.5,2130,9,999999999,230,0.1170,0,88,999.000,999.0,99.0 +1988,7,27,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,15.6,34,97600,742,1325,443,239,52,213,26700,5200,23700,6840,220,1.5,8,6,72.4,7620,9,999999999,230,0.1170,0,88,999.000,999.0,99.0 +1988,7,27,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.1,16.1,30,97600,961,1325,445,730,729,212,77500,73400,24200,6110,260,1.5,8,2,64.4,77777,9,999999999,240,0.1170,0,88,999.000,999.0,99.0 +1988,7,27,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.8,15.6,27,97600,1131,1325,454,868,802,193,90800,80100,22300,7390,20,2.1,6,2,64.4,77777,9,999999999,240,0.1170,0,88,999.000,999.0,99.0 +1988,7,27,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.8,16.1,28,97500,1239,1325,455,982,845,190,103100,85000,23400,11650,270,4.6,5,2,64.4,77777,9,999999999,250,0.1170,0,88,999.000,999.0,99.0 +1988,7,27,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,39.4,15.6,24,97400,1280,1325,464,1024,851,195,107200,85700,24200,15590,260,5.2,7,2,64.4,77777,9,999999999,230,0.1170,0,88,999.000,999.0,99.0 +1988,7,27,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,40.0,15.6,24,97300,1250,1325,461,989,840,192,103500,84500,23600,12470,280,5.7,6,1,64.4,77777,9,999999999,240,0.1170,0,88,999.000,999.0,99.0 +1988,7,27,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,40.6,16.1,24,97300,1150,1325,465,890,810,177,92200,81400,21400,7430,260,6.2,4,1,56.3,77777,9,999999999,240,0.1170,0,88,999.000,999.0,99.0 +1988,7,27,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,41.1,16.1,23,97200,989,1325,479,768,775,180,80600,78900,21600,5580,290,4.6,4,3,56.3,77777,9,999999999,240,0.1170,0,88,999.000,999.0,99.0 +1988,7,27,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,41.1,15.0,21,97200,776,1325,485,470,386,226,49000,40900,24900,5470,310,2.6,6,5,56.3,7620,9,999999999,220,0.1170,0,88,999.000,999.0,99.0 +1988,7,27,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,38.3,13.9,23,97200,527,1325,483,202,125,149,21800,12300,16900,3490,70,9.3,8,8,24.1,3660,9,999999999,209,0.1170,0,88,999.000,999.0,99.0 +1988,7,27,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.1,15.0,28,97200,259,1325,482,77,2,77,8600,100,8500,2520,50,5.7,9,9,40.2,7620,9,999999999,220,0.1170,0,88,999.000,999.0,99.0 +1988,7,27,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.6,14.4,28,97300,30,651,468,5,1,5,600,0,600,200,160,4.1,9,8,40.2,7620,9,999999999,220,0.1170,0,88,999.000,999.0,99.0 +1988,7,27,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.0,15.0,30,97300,0,0,488,0,0,0,0,0,0,0,130,5.2,10,10,40.2,7620,9,999999999,230,0.1170,0,88,999.000,999.0,99.0 +1988,7,27,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34.4,15.6,32,97300,0,0,486,0,0,0,0,0,0,0,140,3.1,10,10,40.2,7620,9,999999999,230,0.1170,0,88,999.000,999.0,99.0 +1988,7,27,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.9,14.4,31,97400,0,0,467,0,0,0,0,0,0,0,130,3.1,10,9,56.3,7620,9,999999999,220,0.1170,0,88,999.000,999.0,99.0 +1988,7,27,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,16.1,36,97500,0,0,466,0,0,0,0,0,0,0,90,2.6,10,9,56.3,7620,9,999999999,250,0.1170,0,88,999.000,999.0,99.0 +1988,7,28,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,17.8,44,97500,0,0,459,0,0,0,0,0,0,0,120,5.2,10,9,56.3,7620,9,999999999,270,0.1170,0,88,999.000,999.0,99.0 +1988,7,28,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,17.8,45,97500,0,0,455,0,0,0,0,0,0,0,100,5.2,10,9,56.3,7620,9,999999999,270,0.1170,0,88,999.000,999.0,99.0 +1988,7,28,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,17.8,46,97500,0,0,436,0,0,0,0,0,0,0,110,4.1,9,7,56.3,7620,9,999999999,270,0.1170,0,88,999.000,999.0,99.0 +1988,7,28,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,17.8,48,97500,0,0,432,0,0,0,0,0,0,0,90,4.1,9,7,56.3,7620,9,999999999,270,0.1170,0,88,999.000,999.0,99.0 +1988,7,28,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,18.3,53,97500,0,0,418,0,0,0,0,0,0,0,100,3.6,7,5,56.3,7620,9,999999999,280,0.1170,0,88,999.000,999.0,99.0 +1988,7,28,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,17.8,51,97600,14,453,414,6,5,6,0,0,0,0,100,4.1,9,4,56.3,77777,9,999999999,270,0.1170,0,88,999.000,999.0,99.0 +1988,7,28,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,17.8,50,97600,218,1325,424,93,91,78,10000,6400,8900,1660,100,3.1,9,6,56.3,7620,9,999999999,270,0.1170,0,88,999.000,999.0,99.0 +1988,7,28,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,17.2,43,97700,488,1325,413,290,456,143,32100,42700,16400,2810,100,3.6,9,1,64.4,77777,9,999999999,260,0.1170,0,88,999.000,999.0,99.0 +1988,7,28,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,16.7,37,97600,741,1325,438,555,616,221,59000,62500,24100,5040,140,2.6,10,4,64.4,77777,9,999999999,250,0.1170,0,88,999.000,999.0,99.0 +1988,7,28,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34.4,17.2,36,97600,960,1325,448,488,237,319,53100,25600,34600,9590,250,2.6,9,5,72.4,7620,9,999999999,260,0.1170,0,88,999.000,999.0,99.0 +1988,7,28,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.6,17.8,35,97600,1129,1325,456,854,612,335,91300,63900,36800,14670,250,3.6,9,5,64.4,7620,9,999999999,270,0.1170,0,88,999.000,999.0,99.0 +1988,7,28,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.7,18.3,34,97500,1238,1325,460,981,754,274,103700,76400,32100,17770,250,5.2,9,4,56.3,77777,9,999999999,280,0.1170,0,88,999.000,999.0,99.0 +1988,7,28,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.8,17.8,31,97400,1279,1325,462,936,651,303,98300,65800,34700,25240,250,5.7,8,3,56.3,77777,9,999999999,270,0.1170,0,88,999.000,999.0,99.0 +1988,7,28,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,38.3,16.7,28,97400,1248,1325,463,778,578,231,83200,59100,27400,15990,300,4.1,7,3,56.3,77777,9,999999999,250,0.1170,0,88,999.000,999.0,99.0 +1988,7,28,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,40.0,17.2,26,97200,1149,1325,470,808,616,268,84300,62200,30300,12010,260,6.2,6,2,56.3,77777,9,999999999,260,0.1170,0,88,999.000,999.0,99.0 +1988,7,28,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,40.0,15.6,24,97200,987,1325,483,633,474,276,67000,49300,30200,8600,240,3.6,7,6,56.3,7620,9,999999999,240,0.1170,0,88,999.000,999.0,99.0 +1988,7,28,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,39.4,16.1,25,97100,774,1325,480,345,182,231,37100,19100,26000,6150,300,5.7,7,6,56.3,7620,9,999999999,240,0.1170,0,88,999.000,999.0,99.0 +1988,7,28,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,38.9,15.6,25,97100,525,1325,477,253,257,144,26300,25400,16300,2970,260,4.1,7,6,56.3,7620,9,999999999,230,0.1170,0,88,999.000,999.0,99.0 +1988,7,28,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.7,14.4,27,97200,256,1325,485,62,4,62,7100,100,7000,2180,20,7.2,10,9,40.2,7620,9,999999999,220,0.1170,0,88,999.000,999.0,99.0 +1988,7,28,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.6,15.0,29,97200,29,651,479,2,1,2,200,0,200,50,330,3.6,10,9,48.3,7620,9,999999999,230,0.1170,0,88,999.000,999.0,99.0 +1988,7,28,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.9,15.6,33,97300,0,0,482,0,0,0,0,0,0,0,320,6.2,10,10,48.3,3660,9,999999999,230,0.1170,0,88,999.000,999.0,99.0 +1988,7,28,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,15.6,34,97300,0,0,479,0,0,0,0,0,0,0,290,2.1,10,10,56.3,7620,9,999999999,230,0.1170,0,88,999.000,999.0,99.0 +1988,7,28,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,15.6,35,97300,0,0,453,0,0,0,0,0,0,0,0,0.0,10,8,56.3,7620,9,999999999,230,0.1170,0,88,999.000,999.0,99.0 +1988,7,28,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,16.1,37,97300,0,0,453,0,0,0,0,0,0,0,190,2.1,10,8,56.3,7620,9,999999999,250,0.1170,0,88,999.000,999.0,99.0 +1988,7,29,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,16.1,38,97300,0,0,431,0,0,0,0,0,0,0,0,0.0,8,4,56.3,77777,9,999999999,240,0.1170,0,88,999.000,999.0,99.0 +1988,7,29,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,16.1,39,97300,0,0,428,0,0,0,0,0,0,0,240,3.1,9,4,56.3,77777,9,999999999,240,0.1170,0,88,999.000,999.0,99.0 +1988,7,29,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,16.7,42,97300,0,0,425,0,0,0,0,0,0,0,280,2.1,9,4,48.3,77777,9,999999999,250,0.1170,0,88,999.000,999.0,99.0 +1988,7,29,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,16.1,42,97300,0,0,425,0,0,0,0,0,0,0,280,2.1,8,5,56.3,7620,9,999999999,250,0.1170,0,88,999.000,999.0,99.0 +1988,7,29,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,16.7,46,97300,0,0,413,0,0,0,0,0,0,0,50,1.5,7,3,32.2,77777,9,999999999,250,0.1170,0,88,999.000,999.0,99.0 +1988,7,29,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,16.7,45,97300,13,453,416,5,9,4,0,0,0,0,0,0.0,7,3,40.2,77777,9,999999999,250,0.1170,0,88,999.000,999.0,99.0 +1988,7,29,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,17.2,45,97400,216,1325,423,76,175,48,8200,11700,6300,870,80,3.1,8,4,40.2,77777,9,999999999,260,0.1170,0,88,999.000,999.0,99.0 +1988,7,29,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,17.2,43,97400,485,1325,423,247,217,185,28400,20800,20800,4260,20,1.5,7,3,48.3,77777,9,999999999,260,0.1170,0,88,999.000,999.0,99.0 +1988,7,29,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,16.7,37,97500,739,1325,438,335,263,198,37500,27800,22000,4580,50,2.1,7,4,48.3,7620,9,999999999,250,0.1170,0,88,999.000,999.0,99.0 +1988,7,29,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.1,17.2,33,97400,958,1325,455,445,297,236,49900,32100,26700,6770,180,2.6,5,4,48.3,77777,9,999999999,260,0.1170,0,88,999.000,999.0,99.0 +1988,7,29,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,38.3,16.1,27,97400,1128,1325,462,845,787,183,88800,78800,21500,7040,260,4.1,5,3,48.3,77777,9,999999999,240,0.1170,0,88,999.000,999.0,99.0 +1988,7,29,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,38.3,16.1,27,97400,1237,1325,462,994,844,205,103500,84500,24400,12210,260,4.1,4,3,48.3,77777,9,999999999,240,0.1170,0,88,999.000,999.0,99.0 +1988,7,29,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,38.9,17.2,28,97300,1278,1325,463,993,834,182,104700,84200,23300,14360,260,4.1,2,2,48.3,77777,9,999999999,260,0.1170,0,88,999.000,999.0,99.0 +1988,7,29,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,39.4,17.8,28,97200,1247,1325,467,969,840,173,102400,84900,22400,11220,280,4.1,2,2,56.3,77777,9,999999999,270,0.1170,0,88,999.000,999.0,99.0 +1988,7,29,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,40.6,16.1,24,97100,1148,1325,472,883,826,158,92600,83400,20200,6730,270,4.6,2,2,56.3,77777,9,999999999,240,0.1170,0,88,999.000,999.0,99.0 +1988,7,29,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,41.1,13.9,20,97000,986,1325,471,741,801,134,77000,80600,16900,3890,260,3.6,2,2,56.3,77777,9,999999999,209,0.1170,0,88,999.000,999.0,99.0 +1988,7,29,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,40.6,16.1,24,97000,772,1325,476,571,719,116,57100,72600,14700,2750,30,2.6,3,3,56.3,77777,9,999999999,240,0.1170,0,88,999.000,999.0,99.0 +1988,7,29,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,40.0,16.1,25,97000,522,1325,498,194,245,91,20500,23500,11200,1720,280,3.1,8,8,56.3,3660,9,999999999,250,0.1170,0,88,999.000,999.0,99.0 +1988,7,29,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.7,15.6,28,97000,254,1325,500,25,1,25,3000,0,3000,1030,350,7.2,10,10,4.8,3660,9,999999999,230,0.1170,0,88,999.000,999.0,99.0 +1988,7,29,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,17.8,42,97000,27,630,475,2,3,2,300,100,300,40,340,2.1,10,10,16.1,1830,9,999999999,270,0.1170,0,88,999.000,999.0,99.0 +1988,7,29,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,21.7,79,97400,0,0,441,0,0,0,0,0,0,0,150,7.7,10,10,11.3,1830,9,999999999,340,0.1170,0,88,999.000,999.0,99.0 +1988,7,29,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,20.6,69,97400,0,0,446,0,0,0,0,0,0,0,140,4.6,10,10,16.1,1830,9,999999999,320,0.1170,0,88,999.000,999.0,99.0 +1988,7,29,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,22.8,85,97700,0,0,442,0,0,0,0,0,0,0,80,8.8,10,10,16.1,1830,9,999999999,370,0.1170,0,88,999.000,999.0,99.0 +1988,7,29,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,23.3,94,97700,0,0,436,0,0,0,0,0,0,0,140,5.2,10,10,32.2,1830,9,999999999,380,0.1170,0,88,999.000,999.0,99.0 +1988,7,30,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,22.2,90,97600,0,0,431,0,0,0,0,0,0,0,140,6.2,10,10,24.1,1830,9,999999999,350,0.1170,0,88,999.000,999.0,99.0 +1988,7,30,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,21.1,82,97600,0,0,433,0,0,0,0,0,0,0,80,2.6,10,10,56.3,1830,9,999999999,330,0.1170,0,88,999.000,999.0,99.0 +1988,7,30,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,20.0,74,97500,0,0,435,0,0,0,0,0,0,0,40,3.1,10,10,56.3,3960,9,999999999,310,0.1170,0,88,999.000,999.0,99.0 +1988,7,30,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,19.4,71,97500,0,0,413,0,0,0,0,0,0,0,20,3.1,10,8,56.3,3960,9,999999999,300,0.1170,0,88,999.000,999.0,99.0 +1988,7,30,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,20.6,74,97500,0,0,418,0,0,0,0,0,0,0,250,3.1,8,8,48.3,3960,9,999999999,320,0.1170,0,88,999.000,999.0,99.0 +1988,7,30,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,21.1,77,97500,12,431,407,4,2,4,0,0,0,0,250,3.1,8,6,72.4,3960,9,999999999,330,0.1170,0,88,999.000,999.0,99.0 +1988,7,30,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,20.6,69,97600,213,1326,418,57,5,56,6300,100,6300,1870,0,0.0,8,7,64.4,3960,9,999999999,320,0.1170,0,88,999.000,999.0,99.0 +1988,7,30,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,21.1,69,97700,483,1326,437,105,3,101,11800,200,11700,4100,100,3.1,10,9,64.4,2740,9,999999999,330,0.1170,0,88,999.000,999.0,99.0 +1988,7,30,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,21.1,67,97700,737,1326,440,177,4,174,20500,300,20400,7620,130,3.1,10,9,56.3,2740,9,999999999,330,0.1170,0,88,999.000,999.0,99.0 +1988,7,30,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,21.1,65,97800,956,1326,434,211,3,208,25100,200,24900,9900,90,2.6,10,8,56.3,2740,9,999999999,330,0.1170,0,88,999.000,999.0,99.0 +1988,7,30,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,20.6,57,97800,1127,1326,443,362,5,357,42400,500,42000,15730,110,2.6,9,8,56.3,3960,9,999999999,320,0.1170,0,88,999.000,999.0,99.0 +1988,7,30,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,20.0,52,97700,1236,1326,459,482,6,477,56200,600,55600,19560,160,3.1,9,9,64.4,3960,9,999999999,310,0.1170,0,88,999.000,999.0,99.0 +1988,7,30,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,20.0,48,97700,1277,1326,443,782,190,598,84800,20100,65400,40000,140,3.1,7,6,64.4,3960,9,999999999,310,0.1170,0,88,999.000,999.0,99.0 +1988,7,30,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34.4,18.3,39,97500,1246,1326,446,853,503,378,91000,52600,41500,26350,140,4.1,5,4,56.3,77777,9,999999999,280,0.1170,0,88,999.000,999.0,99.0 +1988,7,30,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.6,18.9,37,97400,1146,1326,454,889,817,178,92500,82000,21500,7330,90,2.6,5,4,64.4,77777,9,999999999,290,0.1170,0,88,999.000,999.0,99.0 +1988,7,30,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.1,18.3,35,97400,984,1326,456,757,792,164,80400,80900,20200,5080,210,3.1,5,4,64.4,77777,9,999999999,280,0.1170,0,88,999.000,999.0,99.0 +1988,7,30,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.6,17.8,35,97300,770,1326,473,400,295,231,43400,31300,25300,5590,270,3.1,9,8,64.4,7620,9,999999999,270,0.1170,0,88,999.000,999.0,99.0 +1988,7,30,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.0,17.8,36,97300,520,1326,479,196,186,128,21700,18300,14500,2580,100,2.1,10,9,64.4,7620,9,999999999,270,0.1170,0,88,999.000,999.0,99.0 +1988,7,30,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.0,17.8,36,97300,250,1326,462,90,26,85,9800,2100,9400,2000,200,2.1,10,7,56.3,7620,9,999999999,270,0.1170,0,88,999.000,999.0,99.0 +1988,7,30,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.9,17.8,38,97400,26,608,455,6,1,6,700,0,700,230,240,3.1,8,7,56.3,7620,9,999999999,270,0.1170,0,88,999.000,999.0,99.0 +1988,7,30,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,19.4,44,97400,0,0,449,0,0,0,0,0,0,0,220,3.1,7,6,56.3,7620,9,999999999,300,0.1170,0,88,999.000,999.0,99.0 +1988,7,30,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,19.4,45,97400,0,0,446,0,0,0,0,0,0,0,250,2.1,7,6,56.3,7620,9,999999999,300,0.1170,0,88,999.000,999.0,99.0 +1988,7,30,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,20.0,50,97500,0,0,436,0,0,0,0,0,0,0,280,3.1,7,5,56.3,7620,9,999999999,310,0.1170,0,88,999.000,999.0,99.0 +1988,7,30,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,20.0,50,97500,0,0,445,0,0,0,0,0,0,0,280,4.6,8,7,56.3,7620,9,999999999,310,0.1170,0,88,999.000,999.0,99.0 +1988,7,31,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,20.0,52,97500,0,0,449,0,0,0,0,0,0,0,280,2.1,9,8,56.3,3960,9,999999999,310,0.1160,0,88,999.000,999.0,99.0 +1988,7,31,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,19.4,53,97500,0,0,423,0,0,0,0,0,0,0,320,2.1,9,4,56.3,77777,9,999999999,300,0.1160,0,88,999.000,999.0,99.0 +1988,7,31,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,18.9,51,97500,0,0,419,0,0,0,0,0,0,0,300,3.1,7,3,56.3,77777,9,999999999,290,0.1160,0,88,999.000,999.0,99.0 +1988,7,31,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,18.9,53,97500,0,0,426,0,0,0,0,0,0,0,330,1.5,10,6,56.3,3960,9,999999999,290,0.1160,0,88,999.000,999.0,99.0 +1988,7,31,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,19.4,55,97500,0,0,423,0,0,0,0,0,0,0,150,1.5,8,5,56.3,3960,9,999999999,300,0.1160,0,88,999.000,999.0,99.0 +1988,7,31,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,18.9,55,97500,12,409,423,3,2,3,0,0,0,0,120,2.6,8,6,48.3,3960,9,999999999,290,0.1160,0,88,999.000,999.0,99.0 +1988,7,31,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,18.9,57,97600,210,1326,424,49,22,46,5400,1700,5200,1170,90,2.1,10,7,40.2,7620,9,999999999,290,0.1160,0,88,999.000,999.0,99.0 +1988,7,31,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,19.4,57,97600,481,1326,413,208,224,127,22300,21600,14500,2560,120,3.6,9,3,48.3,77777,9,999999999,300,0.1160,0,88,999.000,999.0,99.0 +1988,7,31,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,19.4,52,97600,735,1326,429,347,148,261,37300,15300,28800,6780,80,3.1,9,5,48.3,7620,9,999999999,300,0.1160,0,88,999.000,999.0,99.0 +1988,7,31,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,18.9,45,97600,955,1326,438,620,256,433,66500,26900,47100,13510,60,2.6,8,5,48.3,7620,9,999999999,290,0.1160,0,88,999.000,999.0,99.0 +1988,7,31,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,17.8,40,97600,1125,1326,452,765,281,521,82100,29700,56900,21050,80,3.1,10,7,56.3,3660,9,999999999,270,0.1160,0,88,999.000,999.0,99.0 +1988,7,31,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.9,19.4,43,97500,1235,1326,457,558,30,530,64400,3200,61400,20710,10,2.6,9,7,56.3,3660,9,999999999,300,0.1160,0,88,999.000,999.0,99.0 +1988,7,31,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34.4,19.4,41,97400,1275,1326,455,748,289,470,81900,31400,51600,34400,80,2.1,8,6,56.3,3660,9,999999999,300,0.1160,0,88,999.000,999.0,99.0 +1988,7,31,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.0,19.4,40,97300,1245,1326,482,773,266,523,84400,28200,57800,29840,330,3.1,10,9,56.3,3660,9,999999999,300,0.1160,0,88,999.000,999.0,99.0 +1988,7,31,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.6,19.4,39,97200,1144,1326,485,405,93,326,45300,10000,36700,13720,110,2.6,10,9,56.3,7620,9,999999999,300,0.1160,0,88,999.000,999.0,99.0 +1988,7,31,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34.4,19.4,41,97100,982,1326,478,200,2,201,24300,200,24200,9730,80,4.1,10,9,64.4,7620,9,999999999,300,0.1160,0,88,999.000,999.0,99.0 +1988,7,31,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34.4,19.4,41,97100,768,1326,478,158,2,165,19600,200,19500,7460,0,0.0,10,9,56.3,7620,9,999999999,300,0.1160,0,88,999.000,999.0,99.0 +1988,7,31,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.9,20.0,44,97000,517,1326,476,111,1,120,13800,100,13800,4830,240,3.6,10,9,56.3,3660,9,999999999,310,0.1160,0,88,999.000,999.0,99.0 +1988,7,31,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,18.9,45,97000,247,1326,464,60,0,66,7400,0,7400,2230,270,3.6,10,9,56.3,3660,9,999999999,290,0.1160,0,88,999.000,999.0,99.0 +1988,7,31,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,20.6,53,97100,24,586,459,3,0,3,400,0,400,120,230,4.1,10,9,56.3,6100,9,999999999,320,0.1160,0,88,999.000,999.0,99.0 +1988,7,31,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,20.6,55,97100,0,0,447,0,0,0,0,0,0,0,280,2.1,10,8,56.3,7620,9,999999999,320,0.1160,0,88,999.000,999.0,99.0 +1988,7,31,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.8,20.3,55,97200,0,0,440,0,0,0,0,0,0,0,240,2.1,7,7,56.3,7620,9,999999999,320,0.1160,0,88,999.000,999.0,99.0 +1988,7,31,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,19.9,53,97100,0,0,426,0,0,0,0,0,0,0,270,2.1,4,3,56.3,77777,9,999999999,310,0.1160,0,88,999.000,999.0,99.0 +1988,7,31,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.3,19.6,53,97100,0,0,427,0,0,0,0,0,0,0,0,2.1,7,3,56.3,77777,9,999999999,310,0.1160,0,88,999.000,999.0,99.0 +1980,8,1,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.5,19.3,36,97200,0,0,443,0,0,0,0,0,0,0,50,2.1,7,7,56.3,3660,9,999999999,270,0.2730,0,88,999.000,999.0,99.0 +1980,8,1,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,19.0,36,97100,0,0,411,0,0,0,0,0,0,0,310,2.1,0,0,56.3,77777,9,999999999,270,0.2730,0,88,999.000,999.0,99.0 +1980,8,1,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.0,18.6,40,97200,0,0,425,0,0,0,0,0,0,0,150,2.1,2,2,56.3,77777,9,999999999,270,0.2730,0,88,999.000,999.0,99.0 +1980,8,1,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,18.3,44,97200,0,0,412,0,0,0,0,0,0,0,140,2.1,0,0,56.3,77777,9,999999999,280,0.2730,0,88,999.000,999.0,99.0 +1980,8,1,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,18.3,45,97200,0,0,410,0,0,0,0,0,0,0,150,2.1,0,0,56.3,77777,9,999999999,280,0.2730,0,88,999.000,999.0,99.0 +1980,8,1,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,18.3,45,97300,11,409,423,0,0,0,0,0,0,0,100,2.1,2,2,48.3,77777,9,999999999,280,0.2730,0,88,999.000,999.0,99.0 +1980,8,1,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,18.3,47,97400,208,1326,420,61,98,46,6600,6400,5600,830,100,3.1,2,2,48.3,77777,9,999999999,280,0.2730,0,88,999.000,999.0,99.0 +1980,8,1,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,18.3,44,97400,479,1326,412,267,500,88,27900,46300,11100,1690,90,3.1,0,0,48.3,77777,9,999999999,280,0.2730,0,88,999.000,999.0,99.0 +1980,8,1,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34.4,18.3,38,97400,733,1326,424,477,645,120,50500,64600,14700,2720,360,3.1,0,0,48.3,77777,9,999999999,280,0.2730,0,88,999.000,999.0,99.0 +1980,8,1,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.7,17.8,33,97400,954,1326,436,673,727,152,72300,74300,18700,4490,320,3.6,0,0,48.3,77777,9,999999999,270,0.2730,0,88,999.000,999.0,99.0 +1980,8,1,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.2,17.2,31,97400,1124,1326,438,844,784,178,87900,78600,21100,6800,280,3.6,0,0,48.3,77777,9,999999999,260,0.2730,0,88,999.000,999.0,99.0 +1980,8,1,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.8,17.2,30,97300,1234,1326,442,950,802,202,98900,80400,24000,11780,250,3.1,0,0,48.3,77777,9,999999999,260,0.2730,0,88,999.000,999.0,99.0 +1980,8,1,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,38.9,17.2,28,97200,1274,1326,448,987,811,207,103200,81300,24800,15530,290,3.1,0,0,48.3,77777,9,999999999,260,0.2730,0,88,999.000,999.0,99.0 +1980,8,1,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,40.0,17.2,26,97100,1243,1326,455,953,817,187,100400,82300,23100,11670,260,3.6,0,0,40.2,77777,9,999999999,260,0.2730,0,88,999.000,999.0,99.0 +1980,8,1,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,41.1,17.8,26,97000,1143,1326,471,855,793,169,89700,79800,20700,6960,310,3.6,1,1,48.3,77777,9,999999999,270,0.2730,0,88,999.000,999.0,99.0 +1980,8,1,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,41.7,17.8,25,96900,980,1326,465,727,765,155,77300,78300,19300,4790,250,4.1,2,0,56.3,77777,9,999999999,270,0.2730,0,88,999.000,999.0,99.0 +1980,8,1,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,41.7,17.8,25,96900,766,1326,474,526,698,119,55500,70300,14900,2790,260,3.1,3,1,64.4,77777,9,999999999,270,0.2730,0,88,999.000,999.0,99.0 +1980,8,1,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,41.7,18.3,26,96900,514,1326,490,351,516,150,36200,49000,17200,2970,260,4.1,7,4,64.4,7620,9,999999999,280,0.2730,0,88,999.000,999.0,99.0 +1980,8,1,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,41.7,17.8,25,96800,244,1326,497,124,134,101,13300,9900,11500,2160,250,3.6,8,6,64.4,7620,9,999999999,270,0.2730,0,88,999.000,999.0,99.0 +1980,8,1,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,40.6,18.9,28,96900,23,564,531,0,0,0,0,0,0,0,250,2.6,10,10,56.3,7620,9,999999999,280,0.2730,0,88,999.000,999.0,99.0 +1980,8,1,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,39.4,18.3,29,96900,0,0,472,0,0,0,0,0,0,0,250,2.1,7,3,56.3,77777,9,999999999,280,0.2730,0,88,999.000,999.0,99.0 +1980,8,1,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,38.9,18.3,30,97000,0,0,469,0,0,0,0,0,0,0,260,2.1,7,3,56.3,77777,9,999999999,280,0.2730,0,88,999.000,999.0,99.0 +1980,8,1,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,38.3,18.3,31,97000,0,0,466,0,0,0,0,0,0,0,260,3.6,8,3,56.3,77777,9,999999999,280,0.2730,0,88,999.000,999.0,99.0 +1980,8,1,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.7,18.3,34,97000,0,0,456,0,0,0,0,0,0,0,270,6.2,8,3,56.3,77777,9,999999999,280,0.2730,0,88,999.000,999.0,99.0 +1980,8,2,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.6,16.1,31,97100,0,0,442,0,0,0,0,0,0,0,270,2.1,7,2,56.3,77777,9,999999999,240,0.1160,0,88,999.000,999.0,99.0 +1980,8,2,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.0,16.1,32,97100,0,0,439,0,0,0,0,0,0,0,280,2.1,7,2,56.3,77777,9,999999999,240,0.1160,0,88,999.000,999.0,99.0 +1980,8,2,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34.4,16.1,33,97200,0,0,435,0,0,0,0,0,0,0,310,2.1,3,2,56.3,77777,9,999999999,240,0.1160,0,88,999.000,999.0,99.0 +1980,8,2,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.9,15.0,32,97300,0,0,446,0,0,0,0,0,0,0,270,2.1,6,6,56.3,3660,9,999999999,230,0.1160,0,88,999.000,999.0,99.0 +1980,8,2,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,15.6,35,97400,0,0,426,0,0,0,0,0,0,0,160,2.1,2,2,56.3,77777,9,999999999,230,0.1160,0,88,999.000,999.0,99.0 +1980,8,2,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,16.1,38,97400,10,387,417,0,0,0,0,0,0,0,120,2.1,8,1,64.4,77777,9,999999999,240,0.1160,0,88,999.000,999.0,99.0 +1980,8,2,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,16.1,38,97400,205,1327,423,80,212,47,8300,14000,6200,840,360,2.1,2,2,64.4,77777,9,999999999,240,0.1160,0,88,999.000,999.0,99.0 +1980,8,2,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,16.1,36,97500,476,1327,437,278,517,92,28700,47700,11600,1750,20,2.6,4,4,64.4,77777,9,999999999,250,0.1160,0,88,999.000,999.0,99.0 +1980,8,2,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.0,15.0,30,97600,731,1327,458,435,446,188,46000,45300,21000,4180,350,4.6,7,7,72.4,7620,9,999999999,230,0.1160,0,88,999.000,999.0,99.0 +1980,8,2,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.6,16.1,31,97600,952,1327,470,513,233,343,55800,24700,38000,10650,330,4.1,8,8,72.4,7620,9,999999999,240,0.1160,0,88,999.000,999.0,99.0 +1980,8,2,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.1,16.7,31,97600,1123,1327,484,539,163,400,59100,17400,44400,16050,330,5.2,9,9,72.4,3660,9,999999999,250,0.1160,0,88,999.000,999.0,99.0 +1980,8,2,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.1,16.7,31,97500,1232,1327,474,912,480,465,95200,49900,48700,30350,350,4.1,8,8,72.4,7620,9,999999999,250,0.1160,0,88,999.000,999.0,99.0 +1980,8,2,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.1,16.1,30,97300,1273,1327,456,991,609,405,105500,63600,44300,33230,290,2.6,7,5,80.5,7620,9,999999999,240,0.1160,0,88,999.000,999.0,99.0 +1980,8,2,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.8,16.1,28,97200,1242,1327,467,888,483,434,93400,50300,46200,29640,290,5.2,6,5,96.6,7620,9,999999999,250,0.1160,0,88,999.000,999.0,99.0 +1980,8,2,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.8,16.1,28,97200,1141,1327,459,613,290,363,67300,31500,40100,15330,300,3.6,7,3,80.5,77777,9,999999999,250,0.1160,0,88,999.000,999.0,99.0 +1980,8,2,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.2,15.6,28,97100,978,1327,455,510,412,203,55600,43000,23800,6080,300,3.1,4,3,80.5,77777,9,999999999,240,0.1160,0,88,999.000,999.0,99.0 +1980,8,2,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,38.3,15.6,26,97000,763,1327,457,528,695,124,55600,69900,15300,2890,300,2.6,2,2,80.5,77777,9,999999999,230,0.1160,0,88,999.000,999.0,99.0 +1980,8,2,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.8,16.1,28,96900,511,1327,449,307,567,84,31700,53600,11000,1660,300,2.6,1,1,80.5,77777,9,999999999,240,0.1160,0,88,999.000,999.0,99.0 +1980,8,2,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.2,15.6,28,96900,241,1327,451,91,172,58,9500,12200,7300,1070,300,3.1,2,2,96.6,77777,9,999999999,240,0.1160,0,88,999.000,999.0,99.0 +1980,8,2,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.1,15.6,29,96900,21,564,473,0,0,0,0,0,0,0,300,2.1,9,8,64.4,3660,9,999999999,230,0.1160,0,88,999.000,999.0,99.0 +1980,8,2,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.1,15.6,29,96900,0,0,465,0,0,0,0,0,0,0,350,2.1,7,7,56.3,3660,9,999999999,230,0.1160,0,88,999.000,999.0,99.0 +1980,8,2,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34.4,16.1,33,97000,0,0,446,0,0,0,0,0,0,0,220,2.1,6,5,56.3,7620,9,999999999,240,0.1160,0,88,999.000,999.0,99.0 +1980,8,2,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34.4,16.7,35,97000,0,0,464,0,0,0,0,0,0,0,220,2.1,8,8,56.3,3960,9,999999999,250,0.1160,0,88,999.000,999.0,99.0 +1980,8,2,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.9,17.2,37,97000,0,0,442,0,0,0,0,0,0,0,240,2.1,4,4,56.3,77777,9,999999999,260,0.1160,0,88,999.000,999.0,99.0 +1980,8,3,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,17.2,38,97000,0,0,435,0,0,0,0,0,0,0,220,2.1,3,3,56.3,77777,9,999999999,260,0.1160,0,88,999.000,999.0,99.0 +1980,8,3,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,17.8,40,97000,0,0,436,0,0,0,0,0,0,0,290,2.1,3,3,56.3,77777,9,999999999,270,0.1160,0,88,999.000,999.0,99.0 +1980,8,3,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,17.8,40,97000,0,0,482,0,0,0,0,0,0,0,230,1.5,10,10,56.3,3050,9,999999999,270,0.1160,0,88,999.000,999.0,99.0 +1980,8,3,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,22.2,56,97100,0,0,482,0,0,0,0,0,0,0,270,3.1,10,10,56.3,3050,9,999999999,350,0.1160,0,88,999.000,999.0,99.0 +1980,8,3,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,22.2,63,97100,0,0,445,0,0,0,0,0,0,0,130,2.1,8,8,56.3,2740,9,999999999,350,0.1160,0,88,999.000,999.0,99.0 +1980,8,3,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,21.7,61,97200,9,365,445,0,0,0,0,0,0,0,90,3.6,10,8,80.5,4570,9,999999999,340,0.1160,0,88,999.000,999.0,99.0 +1980,8,3,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,21.1,63,97200,203,1327,437,18,0,18,2200,0,2200,730,90,2.1,10,8,96.6,4570,9,999999999,330,0.1160,0,88,999.000,999.0,99.0 +1980,8,3,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,20.0,57,97200,474,1327,432,71,0,70,8300,0,8300,3020,10,2.1,9,7,96.6,4270,9,999999999,310,0.1160,0,88,999.000,999.0,99.0 +1980,8,3,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,18.9,48,97200,729,1327,440,184,1,183,21300,100,21200,7870,330,2.1,10,7,80.5,4270,9,999999999,290,0.1160,0,88,999.000,999.0,99.0 +1980,8,3,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,18.3,42,97200,950,1327,444,700,413,399,73900,44400,42000,12360,300,2.6,10,6,72.4,7620,9,999999999,280,0.1160,0,88,999.000,999.0,99.0 +1980,8,3,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.9,18.3,40,97200,1121,1327,443,726,311,462,77900,33600,49400,19190,290,4.1,9,4,72.4,77777,9,999999999,280,0.1160,0,88,999.000,999.0,99.0 +1980,8,3,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.0,18.3,37,97100,1231,1327,446,893,653,285,94000,66000,32600,17610,290,2.6,10,3,72.4,77777,9,999999999,280,0.1160,0,88,999.000,999.0,99.0 +1980,8,3,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.1,18.3,35,97000,1272,1327,456,952,607,367,102100,63500,41100,29670,280,5.2,10,4,80.5,77777,9,999999999,280,0.1160,0,88,999.000,999.0,99.0 +1980,8,3,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.2,17.8,32,96900,1240,1327,462,833,426,430,90900,46300,47500,25780,290,3.6,10,4,80.5,77777,9,999999999,270,0.1160,0,88,999.000,999.0,99.0 +1980,8,3,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,38.3,17.8,30,96700,1140,1327,465,871,564,384,91400,58700,40800,17400,300,3.6,10,3,80.5,77777,9,999999999,270,0.1160,0,88,999.000,999.0,99.0 +1980,8,3,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,38.9,17.2,28,96700,976,1327,468,779,719,252,80800,71800,27900,7260,310,3.6,9,3,80.5,77777,9,999999999,260,0.1160,0,88,999.000,999.0,99.0 +1980,8,3,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,38.9,16.7,27,96600,761,1327,462,527,652,152,54900,64900,17600,3420,280,3.6,5,2,80.5,77777,9,999999999,250,0.1160,0,88,999.000,999.0,99.0 +1980,8,3,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,38.9,17.2,28,96600,508,1327,457,296,511,99,30500,47800,12200,1900,270,5.2,4,1,64.4,77777,9,999999999,260,0.1160,0,88,999.000,999.0,99.0 +1980,8,3,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,38.9,16.7,27,96500,237,1327,447,100,201,63,10500,14200,7900,1190,240,2.6,2,0,64.4,77777,9,999999999,250,0.1160,0,88,999.000,999.0,99.0 +1980,8,3,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.8,16.7,29,96600,20,542,441,2,9,1,0,0,0,0,250,2.6,1,0,56.3,77777,9,999999999,250,0.1160,0,88,999.000,999.0,99.0 +1980,8,3,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.1,16.1,30,96700,0,0,431,0,0,0,0,0,0,0,240,1.5,0,0,56.3,77777,9,999999999,240,0.1160,0,88,999.000,999.0,99.0 +1980,8,3,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.6,16.1,31,96800,0,0,428,0,0,0,0,0,0,0,260,1.5,0,0,56.3,77777,9,999999999,240,0.1160,0,88,999.000,999.0,99.0 +1980,8,3,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.0,16.1,32,96800,0,0,425,0,0,0,0,0,0,0,270,4.1,0,0,56.3,77777,9,999999999,240,0.1160,0,88,999.000,999.0,99.0 +1980,8,3,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.9,16.7,36,96700,0,0,419,0,0,0,0,0,0,0,280,2.6,0,0,56.3,77777,9,999999999,250,0.1160,0,88,999.000,999.0,99.0 +1980,8,4,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,17.2,38,96800,0,0,435,0,0,0,0,0,0,0,300,1.5,3,3,56.3,77777,9,999999999,260,0.2080,0,88,999.000,999.0,99.0 +1980,8,4,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,17.8,42,96800,0,0,445,0,0,0,0,0,0,0,310,1.5,7,7,56.3,3660,9,999999999,270,0.2080,0,88,999.000,999.0,99.0 +1980,8,4,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,17.8,44,96800,0,0,442,0,0,0,0,0,0,0,280,2.1,7,7,56.3,3660,9,999999999,270,0.2080,0,88,999.000,999.0,99.0 +1980,8,4,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,17.8,46,96800,0,0,403,0,0,0,0,0,0,0,240,1.5,0,0,56.3,77777,9,999999999,270,0.2080,0,88,999.000,999.0,99.0 +1980,8,4,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,18.3,51,96800,0,0,397,0,0,0,0,0,0,0,150,1.0,0,0,56.3,77777,9,999999999,280,0.2080,0,88,999.000,999.0,99.0 +1980,8,4,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,18.3,51,96900,8,343,397,0,4,0,0,0,0,0,110,1.0,2,0,80.5,77777,9,999999999,280,0.2080,0,88,999.000,999.0,99.0 +1980,8,4,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,18.3,50,96900,200,1327,414,59,137,39,6400,8700,5100,690,110,2.6,2,2,80.5,77777,9,999999999,280,0.2080,0,88,999.000,999.0,99.0 +1980,8,4,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,18.3,47,96900,472,1327,414,272,543,79,28400,50300,10500,1530,130,2.1,1,1,80.5,77777,9,999999999,280,0.2080,0,88,999.000,999.0,99.0 +1980,8,4,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,18.3,41,97000,728,1327,418,485,688,108,51700,69100,13800,2470,140,2.6,0,0,80.5,77777,9,999999999,280,0.2080,0,88,999.000,999.0,99.0 +1980,8,4,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34.4,17.8,37,97000,949,1327,424,685,764,138,71600,76600,16700,3680,200,2.6,0,0,80.5,77777,9,999999999,270,0.2080,0,88,999.000,999.0,99.0 +1980,8,4,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.1,16.1,30,97000,1120,1327,439,847,796,174,88400,79900,20800,6580,20,2.6,1,1,80.5,77777,9,999999999,240,0.2080,0,88,999.000,999.0,99.0 +1980,8,4,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.7,15.6,28,96900,1230,1327,442,953,818,193,99700,82200,23400,11060,280,3.1,1,1,80.5,77777,9,999999999,230,0.2080,0,88,999.000,999.0,99.0 +1980,8,4,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,38.3,15.6,26,96800,1270,1327,442,986,807,211,102600,80800,25000,15220,120,3.1,0,0,80.5,77777,9,999999999,230,0.2080,0,88,999.000,999.0,99.0 +1980,8,4,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,38.9,16.1,26,96800,1239,1327,447,958,815,195,100200,81900,23600,11720,110,3.1,0,0,80.5,77777,9,999999999,240,0.2080,0,88,999.000,999.0,99.0 +1980,8,4,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,39.4,16.1,25,96700,1138,1327,449,852,784,177,88800,78700,21200,7060,320,3.6,0,0,80.5,77777,9,999999999,240,0.2080,0,88,999.000,999.0,99.0 +1980,8,4,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,39.4,16.1,25,96600,974,1327,449,726,765,162,77300,78100,19800,4920,270,3.1,0,0,80.5,77777,9,999999999,240,0.2080,0,88,999.000,999.0,99.0 +1980,8,4,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,40.0,15.6,24,96600,758,1327,452,520,714,110,55300,72100,14100,2580,300,4.1,0,0,80.5,77777,9,999999999,240,0.2080,0,88,999.000,999.0,99.0 +1980,8,4,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,40.0,15.0,23,96500,505,1327,451,305,598,75,31900,56600,10400,1500,300,3.6,0,0,64.4,77777,9,999999999,230,0.2080,0,88,999.000,999.0,99.0 +1980,8,4,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,39.4,13.9,22,96500,234,1327,455,98,257,53,10300,18100,7100,950,290,3.1,1,1,64.4,77777,9,999999999,209,0.2080,0,88,999.000,999.0,99.0 +1980,8,4,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,38.3,13.9,23,96600,18,520,449,1,8,0,0,0,0,0,300,2.1,1,1,56.3,77777,9,999999999,209,0.2080,0,88,999.000,999.0,99.0 +1980,8,4,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.7,15.0,27,96600,0,0,433,0,0,0,0,0,0,0,230,2.1,0,0,56.3,77777,9,999999999,220,0.2080,0,88,999.000,999.0,99.0 +1980,8,4,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.6,15.0,29,96700,0,0,427,0,0,0,0,0,0,0,210,1.5,0,0,56.3,77777,9,999999999,220,0.2080,0,88,999.000,999.0,99.0 +1980,8,4,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.6,15.6,30,96700,0,0,427,0,0,0,0,0,0,0,250,1.5,2,0,56.3,77777,9,999999999,230,0.2080,0,88,999.000,999.0,99.0 +1980,8,4,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.0,16.1,32,96700,0,0,425,0,0,0,0,0,0,0,270,1.5,0,0,56.3,77777,9,999999999,240,0.2080,0,88,999.000,999.0,99.0 +1980,8,5,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34.4,16.1,33,96700,0,0,440,0,0,0,0,0,0,0,300,1.0,3,3,56.3,77777,9,999999999,240,0.2080,0,88,999.000,999.0,99.0 +1980,8,5,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,16.1,36,96800,0,0,415,0,0,0,0,0,0,0,360,2.1,0,0,56.3,77777,9,999999999,240,0.2080,0,88,999.000,999.0,99.0 +1980,8,5,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,16.1,36,96800,0,0,429,0,0,0,0,0,0,0,10,1.5,2,2,56.3,77777,9,999999999,240,0.2080,0,88,999.000,999.0,99.0 +1980,8,5,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,16.1,37,96900,0,0,434,0,0,0,0,0,0,0,340,1.5,4,4,56.3,77777,9,999999999,240,0.2080,0,88,999.000,999.0,99.0 +1980,8,5,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,16.1,38,96900,0,0,423,0,0,0,0,0,0,0,10,1.0,2,2,56.3,77777,9,999999999,240,0.2080,0,88,999.000,999.0,99.0 +1980,8,5,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,16.1,38,96900,8,343,417,0,2,0,0,0,0,0,20,1.0,1,1,80.5,77777,9,999999999,240,0.2080,0,88,999.000,999.0,99.0 +1980,8,5,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,16.7,39,97000,197,1328,418,80,266,41,8500,17200,6000,730,70,1.5,1,1,80.5,77777,9,999999999,250,0.2080,0,88,999.000,999.0,99.0 +1980,8,5,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,16.7,39,97000,469,1328,418,249,374,116,26100,34800,13800,2220,100,1.5,1,1,80.5,77777,9,999999999,250,0.2080,0,88,999.000,999.0,99.0 +1980,8,5,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.9,16.1,34,97100,726,1328,427,528,567,217,55000,57400,23600,4880,120,2.1,1,1,80.5,77777,9,999999999,240,0.2080,0,88,999.000,999.0,99.0 +1980,8,5,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34.4,15.6,32,97100,947,1328,421,687,750,151,73400,76700,18700,4410,130,2.1,0,0,80.5,77777,9,999999999,230,0.2080,0,88,999.000,999.0,99.0 +1980,8,5,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.7,15.6,28,97100,1119,1328,433,859,811,174,89600,81400,20900,6540,270,2.6,0,0,72.4,77777,9,999999999,230,0.2080,0,88,999.000,999.0,99.0 +1980,8,5,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.8,15.6,27,97000,1228,1328,440,949,799,207,98400,79900,24300,11600,220,3.1,0,0,72.4,77777,9,999999999,240,0.2080,0,88,999.000,999.0,99.0 +1980,8,5,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,38.3,15.6,26,97000,1269,1328,442,985,805,214,102400,80600,25200,15210,220,2.6,0,0,72.4,77777,9,999999999,230,0.2080,0,88,999.000,999.0,99.0 +1980,8,5,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,39.4,15.6,24,96900,1237,1328,449,945,797,199,98500,80000,23800,11790,220,3.1,0,0,72.4,77777,9,999999999,230,0.2080,0,88,999.000,999.0,99.0 +1980,8,5,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,40.0,15.6,24,96800,1136,1328,452,851,781,180,88500,78300,21300,7090,240,2.6,0,0,72.4,77777,9,999999999,240,0.2080,0,88,999.000,999.0,99.0 +1980,8,5,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,40.0,15.0,23,96700,971,1328,451,730,772,162,77700,78800,19800,4900,270,3.6,0,0,72.4,77777,9,999999999,230,0.2080,0,88,999.000,999.0,99.0 +1980,8,5,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,40.6,14.4,21,96700,755,1328,454,521,717,111,55400,72300,14200,2600,270,3.6,0,0,72.4,77777,9,999999999,209,0.2080,0,88,999.000,999.0,99.0 +1980,8,5,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,40.6,13.9,21,96600,502,1328,453,307,608,75,32200,57400,10400,1500,300,3.1,0,0,72.4,77777,9,999999999,209,0.2080,0,88,999.000,999.0,99.0 +1980,8,5,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,40.0,12.2,19,96600,230,1328,447,101,276,52,10500,19300,7100,930,300,3.6,0,0,56.3,77777,9,999999999,190,0.2080,0,88,999.000,999.0,99.0 +1980,8,5,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,38.9,12.2,20,96700,17,498,441,1,5,0,0,0,0,0,280,2.1,0,0,56.3,77777,9,999999999,190,0.2080,0,88,999.000,999.0,99.0 +1980,8,5,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.7,12.8,24,96700,0,0,430,0,0,0,0,0,0,0,180,1.5,0,0,56.3,77777,9,999999999,200,0.2080,0,88,999.000,999.0,99.0 +1980,8,5,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.0,13.3,27,96700,0,0,421,0,0,0,0,0,0,0,120,1.5,0,0,56.3,77777,9,999999999,200,0.2080,0,88,999.000,999.0,99.0 +1980,8,5,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34.4,13.3,28,96800,0,0,418,0,0,0,0,0,0,0,100,1.5,0,0,56.3,77777,9,999999999,200,0.2080,0,88,999.000,999.0,99.0 +1980,8,5,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.9,14.4,31,96800,0,0,416,0,0,0,0,0,0,0,140,1.0,0,0,56.3,77777,9,999999999,220,0.2080,0,88,999.000,999.0,99.0 +1980,8,6,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34.4,13.9,29,96800,0,0,418,0,0,0,0,0,0,0,290,1.0,0,0,56.3,77777,9,999999999,209,0.2080,0,88,999.000,999.0,99.0 +1980,8,6,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.9,13.9,30,96800,0,0,416,0,0,0,0,0,0,0,300,1.0,0,0,56.3,77777,9,999999999,209,0.2080,0,88,999.000,999.0,99.0 +1980,8,6,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,13.9,31,96800,0,0,412,0,0,0,0,0,0,0,290,1.0,0,0,56.3,77777,9,999999999,209,0.2080,0,88,999.000,999.0,99.0 +1980,8,6,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,15.0,40,96900,0,0,396,0,0,0,0,0,0,0,200,1.5,0,0,56.3,77777,9,999999999,230,0.2080,0,88,999.000,999.0,99.0 +1980,8,6,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,15.0,41,96900,0,0,393,0,0,0,0,0,0,0,130,1.0,0,0,56.3,77777,9,999999999,220,0.2080,0,88,999.000,999.0,99.0 +1980,8,6,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,15.6,44,97000,7,321,391,0,2,0,0,0,0,0,110,1.0,0,0,80.5,77777,9,999999999,230,0.2080,0,88,999.000,999.0,99.0 +1980,8,6,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,15.6,42,97100,194,1328,397,82,318,36,8500,21300,5300,650,110,1.5,0,0,64.4,77777,9,999999999,240,0.2080,0,88,999.000,999.0,99.0 +1980,8,6,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,15.6,37,97100,467,1328,409,274,592,66,29000,55100,9600,1310,90,1.5,0,0,64.4,77777,9,999999999,240,0.2080,0,88,999.000,999.0,99.0 +1980,8,6,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34.4,14.4,30,97100,724,1328,419,486,720,94,51100,71200,12200,2080,110,2.6,0,0,64.4,77777,9,999999999,220,0.2080,0,88,999.000,999.0,99.0 +1980,8,6,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.1,14.4,27,97100,945,1328,428,684,787,123,72300,79200,15800,3380,120,2.6,0,0,80.5,77777,9,999999999,220,0.2080,0,88,999.000,999.0,99.0 +1980,8,6,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.8,14.4,25,97100,1117,1328,438,851,823,156,89700,83000,19700,6000,140,2.6,0,0,80.5,77777,9,999999999,220,0.2080,0,88,999.000,999.0,99.0 +1980,8,6,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,39.4,14.4,23,97100,1227,1328,447,951,842,171,100700,85100,22000,9840,40,2.6,0,0,80.5,77777,9,999999999,220,0.2080,0,88,999.000,999.0,99.0 +1980,8,6,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,40.0,13.9,21,97000,1267,1328,450,985,843,178,104400,85200,22900,12830,50,2.6,0,0,80.5,77777,9,999999999,209,0.2080,0,88,999.000,999.0,99.0 +1980,8,6,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,41.1,13.9,20,96900,1236,1328,456,941,812,182,99000,81800,22700,10830,140,3.1,0,0,80.5,77777,9,999999999,209,0.2080,0,88,999.000,999.0,99.0 +1980,8,6,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,41.7,14.4,20,96900,1134,1328,460,862,815,163,90600,82100,20300,6540,230,3.6,0,0,80.5,77777,9,999999999,220,0.2080,0,88,999.000,999.0,99.0 +1980,8,6,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,42.2,14.4,19,96800,969,1328,463,726,788,148,75300,78800,17600,4000,310,4.1,0,0,80.5,77777,9,999999999,209,0.2080,0,88,999.000,999.0,99.0 +1980,8,6,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,42.2,11.7,16,96700,752,1328,459,527,754,96,55100,74900,12600,2180,330,3.1,0,0,80.5,77777,9,999999999,180,0.2080,0,88,999.000,999.0,99.0 +1980,8,6,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,41.7,12.2,17,96700,499,1328,457,308,643,64,31900,60400,9200,1310,310,3.6,0,0,64.4,77777,9,999999999,190,0.2080,0,88,999.000,999.0,99.0 +1980,8,6,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,41.1,12.8,19,96600,226,1328,454,98,293,47,10200,20400,6800,840,290,2.6,0,0,64.4,77777,9,999999999,200,0.2080,0,88,999.000,999.0,99.0 +1980,8,6,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,40.0,12.2,19,96600,16,476,447,0,5,0,0,0,0,0,240,1.5,0,0,56.3,77777,9,999999999,190,0.2080,0,88,999.000,999.0,99.0 +1980,8,6,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.2,12.8,23,96700,0,0,432,0,0,0,0,0,0,0,180,1.5,0,0,56.3,77777,9,999999999,200,0.2080,0,88,999.000,999.0,99.0 +1980,8,6,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.1,12.8,24,96800,0,0,426,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,190,0.2080,0,88,999.000,999.0,99.0 +1980,8,6,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.1,12.8,24,96800,0,0,426,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,190,0.2080,0,88,999.000,999.0,99.0 +1980,8,6,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.6,13.9,27,96800,0,0,425,0,0,0,0,0,0,0,90,1.5,0,0,56.3,77777,9,999999999,209,0.2080,0,88,999.000,999.0,99.0 +1980,8,7,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.0,15.0,30,96800,0,0,423,0,0,0,0,0,0,0,90,1.0,0,0,56.3,77777,9,999999999,230,0.1740,0,88,999.000,999.0,99.0 +1980,8,7,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,15.6,37,96800,0,0,409,0,0,0,0,0,0,0,160,1.0,0,0,56.3,77777,9,999999999,240,0.1740,0,88,999.000,999.0,99.0 +1980,8,7,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,15.0,35,96800,0,0,408,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,220,0.1740,0,88,999.000,999.0,99.0 +1980,8,7,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,15.6,38,96800,0,0,406,0,0,0,0,0,0,0,110,1.0,0,0,56.3,77777,9,999999999,240,0.1740,0,88,999.000,999.0,99.0 +1980,8,7,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,15.6,38,96800,0,0,406,0,0,0,0,0,0,0,40,1.0,0,0,56.3,77777,9,999999999,240,0.1740,0,88,999.000,999.0,99.0 +1980,8,7,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,15.6,44,96900,6,299,391,0,2,0,0,0,0,0,90,1.5,0,0,72.4,77777,9,999999999,230,0.1740,0,88,999.000,999.0,99.0 +1980,8,7,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,15.6,40,96900,191,1329,400,81,337,33,8400,22500,5200,600,80,2.1,0,0,64.4,77777,9,999999999,230,0.1740,0,88,999.000,999.0,99.0 +1980,8,7,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,13.9,31,97000,465,1329,412,280,642,56,29400,59600,8600,1170,120,2.1,0,0,64.4,77777,9,999999999,209,0.1740,0,88,999.000,999.0,99.0 +1980,8,7,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.6,13.3,26,97000,722,1329,424,493,757,81,52500,75300,11500,1880,140,2.1,0,0,72.4,77777,9,999999999,200,0.1740,0,88,999.000,999.0,99.0 +1980,8,7,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.2,13.3,24,97000,944,1329,433,688,815,108,73700,82500,15000,3080,40,2.6,0,0,72.4,77777,9,999999999,200,0.1740,0,88,999.000,999.0,99.0 +1980,8,7,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,39.4,13.3,21,96900,1116,1329,445,863,857,142,92000,86800,18900,5550,40,2.6,0,0,72.4,77777,9,999999999,200,0.1740,0,88,999.000,999.0,99.0 +1980,8,7,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,41.1,13.3,19,96900,1226,1329,455,957,861,161,102000,87200,21400,9270,160,3.1,0,0,72.4,77777,9,999999999,200,0.1740,0,88,999.000,999.0,99.0 +1980,8,7,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,42.8,13.3,18,96800,1266,1329,465,993,857,174,105500,86700,22700,12420,160,2.6,0,0,80.5,77777,9,999999999,209,0.1740,0,88,999.000,999.0,99.0 +1980,8,7,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,43.3,12.8,16,96700,1234,1329,467,946,828,174,100000,83600,22200,10320,290,3.1,0,0,80.5,77777,9,999999999,190,0.1740,0,88,999.000,999.0,99.0 +1980,8,7,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,43.9,11.7,15,96600,1132,1329,469,872,837,156,92100,84500,19900,6270,250,4.1,0,0,80.5,77777,9,999999999,180,0.1740,0,88,999.000,999.0,99.0 +1980,8,7,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,43.9,7.8,11,96600,967,1329,463,744,833,135,77900,83700,16900,3750,240,3.6,0,0,80.5,77777,9,999999999,140,0.1740,0,88,999.000,999.0,99.0 +1980,8,7,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,43.3,8.9,13,96400,749,1329,461,520,741,99,54300,73500,12700,2210,270,4.6,0,0,80.5,77777,9,999999999,160,0.1740,0,88,999.000,999.0,99.0 +1980,8,7,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,43.3,8.9,13,96400,495,1329,461,304,628,67,32000,59400,9800,1350,270,3.1,0,0,72.4,77777,9,999999999,160,0.1740,0,88,999.000,999.0,99.0 +1980,8,7,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,42.8,8.9,13,96500,222,1329,458,92,285,43,9700,19600,6400,760,270,2.6,0,0,72.4,77777,9,999999999,150,0.1740,0,88,999.000,999.0,99.0 +1980,8,7,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,41.1,10.6,16,96500,14,454,451,0,4,0,0,0,0,0,250,1.5,0,0,56.3,77777,9,999999999,170,0.1740,0,88,999.000,999.0,99.0 +1980,8,7,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.8,11.7,21,96500,0,0,434,0,0,0,0,0,0,0,210,1.5,0,0,56.3,77777,9,999999999,190,0.1740,0,88,999.000,999.0,99.0 +1980,8,7,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.2,12.2,22,96600,0,0,432,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,190,0.1740,0,88,999.000,999.0,99.0 +1980,8,7,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.8,11.7,21,96600,0,0,442,0,0,0,0,0,0,0,90,3.6,1,1,56.3,77777,9,999999999,190,0.1740,0,88,999.000,999.0,99.0 +1980,8,7,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.6,13.9,27,96700,0,0,425,0,0,0,0,0,0,0,110,1.5,0,0,56.3,77777,9,999999999,209,0.1740,0,88,999.000,999.0,99.0 +1980,8,8,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34.4,14.4,30,96700,0,0,419,0,0,0,0,0,0,0,110,1.5,0,0,56.3,77777,9,999999999,220,0.1140,0,88,999.000,999.0,99.0 +1980,8,8,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.9,15.0,32,96700,0,0,417,0,0,0,0,0,0,0,130,2.1,0,0,56.3,77777,9,999999999,230,0.1140,0,88,999.000,999.0,99.0 +1980,8,8,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.9,15.0,32,96600,0,0,417,0,0,0,0,0,0,0,130,3.6,0,0,56.3,77777,9,999999999,230,0.1140,0,88,999.000,999.0,99.0 +1980,8,8,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,15.0,33,96700,0,0,414,0,0,0,0,0,0,0,140,2.1,0,0,56.3,77777,9,999999999,230,0.1140,0,88,999.000,999.0,99.0 +1980,8,8,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,15.0,34,96700,0,0,425,0,0,0,0,0,0,0,120,1.0,2,2,56.3,77777,9,999999999,230,0.1140,0,88,999.000,999.0,99.0 +1980,8,8,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,15.6,35,96700,6,299,433,0,1,0,0,0,0,0,100,1.0,4,4,72.4,77777,9,999999999,230,0.1140,0,88,999.000,999.0,99.0 +1980,8,8,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,15.6,35,96800,189,1329,433,75,211,45,7800,13300,5900,810,100,2.1,4,4,72.4,77777,9,999999999,230,0.1140,0,88,999.000,999.0,99.0 +1980,8,8,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.0,16.1,32,96800,462,1329,447,289,437,137,29800,40300,15700,2670,100,2.6,4,4,72.4,77777,9,999999999,240,0.1140,0,88,999.000,999.0,99.0 +1980,8,8,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.2,16.1,29,96800,720,1329,445,498,696,122,52700,69400,15000,2720,140,2.6,1,1,72.4,77777,9,999999999,240,0.1140,0,88,999.000,999.0,99.0 +1980,8,8,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,38.9,16.1,26,96900,942,1329,473,602,513,238,64600,53300,26700,6780,150,4.1,6,5,72.4,4570,9,999999999,240,0.1140,0,88,999.000,999.0,99.0 +1980,8,8,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,39.4,16.1,25,96900,1114,1329,476,652,211,475,70800,22300,52000,18670,100,3.6,6,5,72.4,4570,9,999999999,240,0.1140,0,88,999.000,999.0,99.0 +1980,8,8,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,41.1,15.6,22,96800,1224,1329,474,954,814,202,99200,81500,23900,11070,110,3.1,3,2,72.4,77777,9,999999999,230,0.1140,0,88,999.000,999.0,99.0 +1980,8,8,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,41.7,13.9,19,96700,1264,1329,479,967,765,238,103600,78200,29000,17690,110,3.1,4,3,72.4,77777,9,999999999,209,0.1140,0,88,999.000,999.0,99.0 +1980,8,8,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,42.2,13.3,18,96600,1232,1329,482,954,786,225,102400,80500,27600,14060,240,3.6,4,3,72.4,77777,9,999999999,200,0.1140,0,88,999.000,999.0,99.0 +1980,8,8,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,42.8,13.3,18,96600,1130,1329,481,859,766,206,91600,78300,24900,8790,250,3.6,2,2,72.4,77777,9,999999999,209,0.1140,0,88,999.000,999.0,99.0 +1980,8,8,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,43.3,13.3,17,96500,964,1329,484,729,750,175,76300,76300,20900,5170,280,2.1,2,2,72.4,77777,9,999999999,200,0.1140,0,88,999.000,999.0,99.0 +1980,8,8,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,42.8,12.2,16,96400,746,1329,479,523,705,120,54700,70700,14900,2750,270,3.1,2,2,72.4,77777,9,999999999,180,0.1140,0,88,999.000,999.0,99.0 +1980,8,8,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,43.3,10.6,14,96400,492,1329,521,268,310,154,28400,30000,17300,3230,260,3.1,9,9,72.4,3660,9,999999999,170,0.1140,0,88,999.000,999.0,99.0 +1980,8,8,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,42.2,10.0,14,96500,218,1329,527,19,9,18,2200,700,2000,510,20,2.6,10,10,80.5,3660,9,999999999,160,0.1140,0,88,999.000,999.0,99.0 +1980,8,8,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,38.3,15.0,25,96600,13,432,510,0,0,0,0,0,0,0,70,8.2,10,10,32.2,3660,9,999999999,220,0.1140,0,88,999.000,999.0,99.0 +1980,8,8,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.2,14.4,26,96700,0,0,488,0,0,0,0,0,0,0,90,3.1,9,9,56.3,3660,9,999999999,220,0.1140,0,88,999.000,999.0,99.0 +1980,8,8,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.2,15.0,27,96800,0,0,489,0,0,0,0,0,0,0,90,4.1,9,9,56.3,3660,9,999999999,230,0.1140,0,88,999.000,999.0,99.0 +1980,8,8,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.1,15.0,28,96800,0,0,482,0,0,0,0,0,0,0,130,1.0,9,9,56.3,3660,9,999999999,220,0.1140,0,88,999.000,999.0,99.0 +1980,8,8,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.6,14.4,28,96800,0,0,460,0,0,0,0,0,0,0,210,2.1,7,7,56.3,3660,9,999999999,220,0.1140,0,88,999.000,999.0,99.0 +1980,8,9,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.6,15.0,29,96700,0,0,479,0,0,0,0,0,0,0,20,1.5,9,9,56.3,3660,9,999999999,220,0.1140,0,88,999.000,999.0,99.0 +1980,8,9,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.0,15.6,31,96700,0,0,466,0,0,0,0,0,0,0,30,1.0,8,8,56.3,3660,9,999999999,230,0.1140,0,88,999.000,999.0,99.0 +1980,8,9,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.9,15.6,33,96700,0,0,443,0,0,0,0,0,0,0,80,1.5,5,5,56.3,77777,9,999999999,230,0.1140,0,88,999.000,999.0,99.0 +1980,8,9,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,15.6,34,96700,0,0,428,0,0,0,0,0,0,0,100,0.5,2,2,56.3,77777,9,999999999,230,0.1140,0,88,999.000,999.0,99.0 +1980,8,9,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,15.6,35,96800,0,0,430,0,0,0,0,0,0,0,150,1.5,4,3,56.3,77777,9,999999999,230,0.1140,0,88,999.000,999.0,99.0 +1980,8,9,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,15.6,38,96900,5,277,456,0,0,0,0,0,0,0,100,1.0,9,9,72.4,3660,9,999999999,240,0.1140,0,88,999.000,999.0,99.0 +1980,8,9,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,16.1,39,96900,186,1330,440,26,0,25,2900,0,2900,960,90,0.5,7,7,96.6,4570,9,999999999,240,0.1140,0,88,999.000,999.0,99.0 +1980,8,9,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,16.1,36,97000,460,1330,466,101,0,101,11600,0,11600,4010,60,1.5,9,9,96.6,4570,9,999999999,250,0.1140,0,88,999.000,999.0,99.0 +1980,8,9,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.9,16.1,34,97000,718,1330,460,231,0,231,26200,0,26200,9150,90,1.5,8,8,96.6,4570,9,999999999,240,0.1140,0,88,999.000,999.0,99.0 +1980,8,9,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.1,16.1,30,97000,940,1330,466,413,31,392,46800,3200,44600,15110,320,2.1,7,7,72.4,4570,9,999999999,240,0.1140,0,88,999.000,999.0,99.0 +1980,8,9,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.2,16.7,30,97000,1113,1330,468,628,192,467,68300,20300,51200,18280,280,3.1,6,6,64.4,4570,9,999999999,250,0.1140,0,88,999.000,999.0,99.0 +1980,8,9,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.8,17.2,30,97000,1223,1330,478,660,254,426,72200,27600,46800,23440,300,2.6,7,7,64.4,4570,9,999999999,260,0.1140,0,88,999.000,999.0,99.0 +1980,8,9,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,39.4,16.1,25,96900,1263,1330,486,855,317,554,92200,34300,59500,37490,300,3.6,7,7,64.4,3960,9,999999999,240,0.1140,0,88,999.000,999.0,99.0 +1980,8,9,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,40.6,16.7,25,96800,1230,1330,489,844,387,487,91700,42000,52800,28020,290,3.6,6,6,64.4,3960,9,999999999,250,0.1140,0,88,999.000,999.0,99.0 +1980,8,9,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,41.1,15.6,22,96700,1128,1330,474,779,662,217,82900,67500,25500,9150,310,3.1,2,2,64.4,77777,9,999999999,230,0.1140,0,88,999.000,999.0,99.0 +1980,8,9,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,41.7,15.0,21,96600,961,1330,476,712,730,170,74200,74300,20300,5010,280,3.1,2,2,64.4,77777,9,999999999,230,0.1140,0,88,999.000,999.0,99.0 +1980,8,9,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,41.7,14.4,20,96500,743,1330,484,546,696,149,56200,69100,17500,3300,260,3.1,5,4,64.4,77777,9,999999999,220,0.1140,0,88,999.000,999.0,99.0 +1980,8,9,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,41.7,15.0,21,96500,488,1330,493,298,409,144,30400,38300,16300,2830,270,3.6,7,6,80.5,4570,9,999999999,230,0.1140,0,88,999.000,999.0,99.0 +1980,8,9,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,41.1,14.4,21,96500,214,1330,494,74,41,66,7900,3100,7400,1560,250,2.6,8,7,80.5,4570,9,999999999,220,0.1140,0,88,999.000,999.0,99.0 +1980,8,9,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,40.6,14.4,21,96600,12,410,499,2,2,2,0,0,0,0,240,1.5,9,8,56.3,4570,9,999999999,209,0.1140,0,88,999.000,999.0,99.0 +1980,8,9,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,40.0,14.4,22,96700,0,0,495,0,0,0,0,0,0,0,230,1.5,9,8,56.3,4570,9,999999999,220,0.1140,0,88,999.000,999.0,99.0 +1980,8,9,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.9,17.2,37,96800,0,0,471,0,0,0,0,0,0,0,130,9.3,9,9,11.3,4570,9,999999999,260,0.1140,0,88,999.000,999.0,99.0 +1980,8,9,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,18.3,41,97000,0,0,483,0,0,0,0,0,0,0,210,1.5,10,10,56.3,4570,9,999999999,280,0.1140,0,88,999.000,999.0,99.0 +1980,8,9,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,19.4,47,97000,0,0,477,0,0,0,0,0,0,0,280,3.1,10,10,56.3,3660,9,999999999,300,0.1140,0,88,999.000,999.0,99.0 +1980,8,10,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,20.0,59,97000,0,0,458,0,0,0,0,0,0,0,290,4.1,10,10,56.3,3660,9,999999999,310,0.2060,0,88,999.000,999.0,99.0 +1980,8,10,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,18.9,51,97000,0,0,463,0,0,0,0,0,0,0,50,1.5,10,10,56.3,3660,9,999999999,290,0.2060,0,88,999.000,999.0,99.0 +1980,8,10,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,19.4,55,96900,0,0,460,0,0,0,0,0,0,0,170,1.5,10,10,56.3,3960,9,999999999,300,0.2060,0,88,999.000,999.0,99.0 +1980,8,10,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,19.4,57,96800,0,0,445,0,0,0,0,0,0,0,270,2.1,9,9,56.3,4270,9,999999999,300,0.2060,0,88,999.000,999.0,99.0 +1980,8,10,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,20.6,61,96800,0,0,430,0,0,0,0,0,0,0,210,1.5,9,7,56.3,4270,9,999999999,320,0.2060,0,88,999.000,999.0,99.0 +1980,8,10,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,20.0,59,96900,5,255,429,0,0,0,0,0,0,0,300,1.5,10,7,80.5,4270,9,999999999,310,0.2060,0,88,999.000,999.0,99.0 +1980,8,10,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,21.1,63,96900,183,1330,431,32,4,32,3700,0,3700,1170,210,1.0,10,7,88.5,5490,9,999999999,330,0.2060,0,88,999.000,999.0,99.0 +1980,8,10,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,19.4,53,97000,457,1330,442,116,0,116,13200,0,13200,4420,340,1.5,9,8,88.5,4270,9,999999999,300,0.2060,0,88,999.000,999.0,99.0 +1980,8,10,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,18.3,42,97000,716,1330,444,381,187,280,41100,19200,30700,7180,50,3.1,7,6,80.5,4270,9,999999999,280,0.2060,0,88,999.000,999.0,99.0 +1980,8,10,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34.4,18.3,38,97000,939,1330,454,584,398,303,63300,42900,33000,8780,140,4.1,7,6,80.5,4270,9,999999999,270,0.2060,0,88,999.000,999.0,99.0 +1980,8,10,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.0,18.3,37,96900,1111,1330,446,788,453,408,85300,49100,44200,16180,170,2.6,7,3,80.5,77777,9,999999999,280,0.3730,0,88,999.000,999.0,99.0 +1980,8,10,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.2,18.3,33,96900,1221,1330,440,890,769,181,93500,77500,22200,9940,250,3.1,2,0,64.4,77777,9,999999999,280,0.2060,0,88,999.000,999.0,99.0 +1980,8,10,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.8,18.3,32,96800,1261,1330,443,975,832,186,103000,83800,23300,12650,280,4.1,1,0,64.4,77777,9,999999999,280,0.2060,0,88,999.000,999.0,99.0 +1980,8,10,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,39.4,18.9,30,96700,1228,1330,462,945,825,184,99600,83100,22700,10450,270,3.6,2,1,64.4,77777,9,999999999,280,0.2060,0,88,999.000,999.0,99.0 +1980,8,10,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,40.6,18.9,28,96600,1125,1330,460,849,810,162,89300,81600,20100,6300,290,5.2,0,0,64.4,77777,9,999999999,280,0.2060,0,88,999.000,999.0,99.0 +1980,8,10,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,41.7,18.3,26,96400,959,1330,466,709,776,139,73100,77800,16900,3750,270,5.2,0,0,64.4,77777,9,999999999,280,0.2060,0,88,999.000,999.0,99.0 +1980,8,10,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,41.7,17.2,24,96400,740,1330,480,492,700,96,51100,69400,12400,2140,250,4.6,2,2,64.4,77777,9,999999999,260,0.2060,0,88,999.000,999.0,99.0 +1980,8,10,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,41.7,16.7,23,96400,484,1330,491,320,525,126,33200,49200,15200,2430,240,4.1,7,5,80.5,4570,9,999999999,250,0.2060,0,88,999.000,999.0,99.0 +1980,8,10,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,20.6,57,96700,210,1330,443,50,40,44,5600,2800,5100,930,90,11.3,8,8,24.1,1520,9,999999999,320,0.2060,0,88,999.000,999.0,99.0 +1980,8,10,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34.4,16.7,35,96500,10,388,474,0,0,0,0,0,0,0,20,4.1,9,9,56.3,7620,9,999999999,250,0.2060,0,88,999.000,999.0,99.0 +1980,8,10,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.0,17.2,35,96500,0,0,492,0,0,0,0,0,0,0,260,3.6,10,10,56.3,3660,9,999999999,260,0.2060,0,88,999.000,999.0,99.0 +1980,8,10,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,16.7,37,96600,0,0,438,0,0,0,0,0,0,0,150,2.6,4,4,56.3,77777,9,999999999,250,0.2060,0,88,999.000,999.0,99.0 +1980,8,10,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34.4,15.6,32,96700,0,0,439,0,0,0,0,0,0,0,150,2.1,4,3,56.3,77777,9,999999999,230,0.2060,0,88,999.000,999.0,99.0 +1980,8,10,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.0,13.9,28,96700,0,0,451,0,0,0,0,0,0,0,170,5.2,7,6,56.3,3660,9,999999999,209,0.2060,0,88,999.000,999.0,99.0 +1980,8,11,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.0,13.9,28,96600,0,0,436,0,0,0,0,0,0,0,50,2.6,3,2,56.3,77777,9,999999999,209,0.1140,0,88,999.000,999.0,99.0 +1980,8,11,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,16.7,39,96700,0,0,451,0,0,0,0,0,0,0,80,2.1,9,8,56.3,3960,9,999999999,250,0.1140,0,88,999.000,999.0,99.0 +1980,8,11,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,16.7,41,96700,0,0,425,0,0,0,0,0,0,0,90,1.5,4,3,56.3,77777,9,999999999,250,0.1140,0,88,999.000,999.0,99.0 +1980,8,11,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,18.3,50,96700,0,0,433,0,0,0,0,0,0,0,120,1.5,9,7,56.3,4270,9,999999999,280,0.1140,0,88,999.000,999.0,99.0 +1980,8,11,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,18.3,50,96700,0,0,440,0,0,0,0,0,0,0,150,1.5,9,8,56.3,4270,9,999999999,280,0.1140,0,88,999.000,999.0,99.0 +1980,8,11,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,17.8,46,96800,4,233,424,2,7,1,0,0,0,0,110,1.5,9,4,80.5,77777,9,999999999,270,0.1140,0,88,999.000,999.0,99.0 +1980,8,11,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,17.8,45,96800,180,1330,414,96,263,60,9600,16000,7400,1130,70,3.1,9,1,80.5,77777,9,999999999,270,0.1140,0,88,999.000,999.0,99.0 +1980,8,11,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,17.2,41,96900,455,1330,429,261,372,134,26900,34100,15200,2600,80,2.6,8,3,72.4,77777,9,999999999,260,0.1440,0,88,999.000,999.0,99.0 +1980,8,11,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,18.3,41,96900,714,1330,436,466,628,129,48900,62400,15400,2830,90,3.6,5,3,64.4,77777,9,999999999,280,0.1140,0,88,999.000,999.0,99.0 +1980,8,11,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.1,17.2,33,96900,937,1330,451,690,755,160,73600,76900,19400,4550,110,3.6,5,3,64.4,77777,9,999999999,260,0.1140,0,88,999.000,999.0,99.0 +1980,8,11,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.8,16.7,29,96900,1109,1330,460,815,641,279,84900,64300,31100,10850,80,3.6,6,3,64.4,77777,9,999999999,250,0.1140,0,88,999.000,999.0,99.0 +1980,8,11,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,38.9,15.0,24,96800,1219,1330,468,882,598,332,95000,62600,37500,19780,90,2.6,8,4,72.4,77777,9,999999999,220,0.1140,0,88,999.000,999.0,99.0 +1980,8,11,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,41.1,15.0,21,96700,1259,1330,481,1051,672,414,111400,70100,44900,30480,20,3.6,8,4,72.4,77777,9,999999999,220,0.1140,0,88,999.000,999.0,99.0 +1980,8,11,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,41.1,15.6,22,96700,1226,1330,490,869,460,444,91000,47900,46800,27680,150,4.6,8,6,64.4,4570,9,999999999,230,0.1140,0,88,999.000,999.0,99.0 +1980,8,11,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,41.7,15.6,22,96600,1123,1330,490,571,328,293,63400,35700,33200,11460,150,4.1,7,5,56.3,7620,9,999999999,240,0.1140,0,88,999.000,999.0,99.0 +1980,8,11,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,41.7,15.6,22,96500,956,1330,482,496,369,225,53000,38400,25400,6510,150,3.6,3,3,56.3,77777,9,999999999,240,0.1140,0,88,999.000,999.0,99.0 +1980,8,11,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,42.2,15.6,21,96400,737,1330,480,501,681,117,52400,68300,14500,2660,130,3.1,2,2,56.3,77777,9,999999999,230,0.1140,0,88,999.000,999.0,99.0 +1980,8,11,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,42.2,15.0,20,96400,481,1330,484,269,550,65,28000,51600,9300,1300,240,3.6,3,3,56.3,77777,9,999999999,220,0.1140,0,88,999.000,999.0,99.0 +1980,8,11,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,41.1,16.7,24,96400,206,1330,480,72,199,40,7500,13200,5500,710,280,2.6,3,3,56.3,77777,9,999999999,250,0.1140,0,88,999.000,999.0,99.0 +1980,8,11,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.8,13.9,24,96600,9,366,467,0,0,0,0,0,0,0,60,2.6,6,6,56.3,3660,9,999999999,209,0.1140,0,88,999.000,999.0,99.0 +1980,8,11,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.2,13.3,24,96600,0,0,452,0,0,0,0,0,0,0,130,2.1,3,3,56.3,77777,9,999999999,200,0.1140,0,88,999.000,999.0,99.0 +1980,8,11,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.6,15.0,29,96800,0,0,479,0,0,0,0,0,0,0,150,2.1,9,9,56.3,3660,9,999999999,230,0.1140,0,88,999.000,999.0,99.0 +1980,8,11,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34.4,16.7,35,96800,0,0,474,0,0,0,0,0,0,0,170,1.0,9,9,56.3,3660,9,999999999,250,0.1140,0,88,999.000,999.0,99.0 +1980,8,11,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.0,16.7,34,96900,0,0,460,0,0,0,0,0,0,0,350,1.5,7,7,56.3,3660,9,999999999,250,0.1140,0,88,999.000,999.0,99.0 +1980,8,12,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.9,17.2,37,96900,0,0,454,0,0,0,0,0,0,0,10,1.0,7,7,56.3,4270,9,999999999,260,0.1710,0,88,999.000,999.0,99.0 +1980,8,12,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,17.8,40,96900,0,0,436,0,0,0,0,0,0,0,350,1.0,4,3,56.3,77777,9,999999999,270,0.1710,0,88,999.000,999.0,99.0 +1980,8,12,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,17.8,41,96900,0,0,415,0,0,0,0,0,0,0,170,1.5,0,0,56.3,77777,9,999999999,270,0.1710,0,88,999.000,999.0,99.0 +1980,8,12,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,17.8,41,96900,0,0,449,0,0,0,0,0,0,0,80,1.0,7,7,56.3,4570,9,999999999,270,0.1710,0,88,999.000,999.0,99.0 +1980,8,12,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,17.8,42,96800,0,0,445,0,0,0,0,0,0,0,80,2.1,7,7,56.3,4570,9,999999999,270,0.1710,0,88,999.000,999.0,99.0 +1980,8,12,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,16.1,37,96900,3,233,446,0,2,0,0,0,0,0,100,1.5,8,7,64.4,4270,9,999999999,240,0.1710,0,88,999.000,999.0,99.0 +1980,8,12,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,16.1,38,96900,177,1331,434,61,154,41,6600,9100,5400,740,110,3.1,6,5,64.4,4270,9,999999999,240,0.1710,0,88,999.000,999.0,99.0 +1980,8,12,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,16.1,37,97000,453,1331,431,273,591,74,28800,54200,10300,1430,120,4.1,3,3,64.4,77777,9,999999999,250,0.1710,0,88,999.000,999.0,99.0 +1980,8,12,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34.4,16.1,33,97000,712,1331,435,490,732,99,51100,72000,12500,2110,140,4.6,2,2,72.4,77777,9,999999999,240,0.1710,0,88,999.000,999.0,99.0 +1980,8,12,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.1,16.1,30,97000,935,1331,439,695,807,130,73200,81000,16200,3440,130,4.6,1,1,72.4,77777,9,999999999,240,0.1710,0,88,999.000,999.0,99.0 +1980,8,12,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.8,16.1,28,96900,1108,1331,440,861,851,152,91100,85900,19400,5680,150,4.1,0,0,72.4,77777,9,999999999,240,0.1710,0,88,999.000,999.0,99.0 +1980,8,12,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,38.3,16.1,27,96900,1218,1331,452,966,862,175,101900,86900,22200,9480,110,3.6,1,1,72.4,77777,9,999999999,240,0.1710,0,88,999.000,999.0,99.0 +1980,8,12,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,38.9,15.6,25,96900,1258,1331,461,900,589,342,97200,61600,38800,24690,180,3.6,2,2,72.4,77777,9,999999999,230,0.1710,0,88,999.000,999.0,99.0 +1980,8,12,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,40.0,15.6,24,96800,1224,1331,467,967,852,183,101800,85800,22700,10150,140,5.2,2,2,72.4,77777,9,999999999,240,0.1710,0,88,999.000,999.0,99.0 +1980,8,12,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,40.6,15.6,23,96700,1121,1331,464,852,832,150,90300,84100,19400,5840,240,3.1,1,1,72.4,77777,9,999999999,230,0.1710,0,88,999.000,999.0,99.0 +1980,8,12,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,40.6,15.0,22,96600,953,1331,455,713,794,133,73700,79700,16500,3600,140,3.6,0,0,96.6,77777,9,999999999,220,0.1710,0,88,999.000,999.0,99.0 +1980,8,12,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,40.6,16.1,24,96600,733,1331,456,503,725,96,52000,71800,12400,2120,140,4.6,0,0,96.6,77777,9,999999999,240,0.1710,0,88,999.000,999.0,99.0 +1980,8,12,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,40.0,16.1,24,96600,477,1331,453,283,608,60,29000,56600,8700,1240,120,3.6,0,0,96.6,77777,9,999999999,240,0.1710,0,88,999.000,999.0,99.0 +1980,8,12,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,39.4,15.6,24,96600,201,1331,475,85,230,49,8700,15000,6400,880,120,4.6,5,5,96.6,77777,9,999999999,230,0.1710,0,88,999.000,999.0,99.0 +1980,8,12,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,38.9,15.6,25,96700,8,344,477,0,0,0,0,0,0,0,90,3.1,6,6,56.3,3660,9,999999999,230,0.1710,0,88,999.000,999.0,99.0 +1980,8,12,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.8,15.0,26,96700,0,0,469,0,0,0,0,0,0,0,40,3.1,6,6,56.3,3660,9,999999999,230,0.1710,0,88,999.000,999.0,99.0 +1980,8,12,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.2,15.0,27,96800,0,0,465,0,0,0,0,0,0,0,70,5.2,6,6,56.3,3660,9,999999999,230,0.1710,0,88,999.000,999.0,99.0 +1980,8,12,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.6,15.6,30,96700,0,0,480,0,0,0,0,0,0,0,120,2.1,9,9,56.3,3660,9,999999999,230,0.1710,0,88,999.000,999.0,99.0 +1980,8,12,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34.4,16.1,33,96900,0,0,450,0,0,0,0,0,0,0,260,3.6,6,6,56.3,3660,9,999999999,240,0.1710,0,88,999.000,999.0,99.0 +1980,8,13,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,17.2,41,96900,0,0,435,0,0,0,0,0,0,0,240,1.5,7,5,56.3,3660,9,999999999,260,0.1130,0,88,999.000,999.0,99.0 +1980,8,13,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,17.8,45,96900,0,0,434,0,0,0,0,0,0,0,230,1.5,6,6,56.3,3660,9,999999999,270,0.1130,0,88,999.000,999.0,99.0 +1980,8,13,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,17.8,45,96900,0,0,430,0,0,0,0,0,0,0,230,1.0,6,5,56.3,3660,9,999999999,270,0.1130,0,88,999.000,999.0,99.0 +1980,8,13,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,17.2,43,96800,0,0,433,0,0,0,0,0,0,0,0,0.0,7,6,56.3,3660,9,999999999,260,0.1130,0,88,999.000,999.0,99.0 +1980,8,13,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,17.2,43,96800,0,0,433,0,0,0,0,0,0,0,160,2.6,7,6,56.3,3660,9,999999999,260,0.1130,0,88,999.000,999.0,99.0 +1980,8,13,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,18.3,50,96900,3,211,440,0,4,0,0,0,0,0,130,1.5,9,8,64.4,3660,9,999999999,280,0.1130,0,88,999.000,999.0,99.0 +1980,8,13,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,18.3,48,97000,175,1331,437,52,143,33,5500,8600,4400,580,300,2.1,9,7,72.4,3660,9,999999999,280,0.1130,0,88,999.000,999.0,99.0 +1980,8,13,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,18.3,47,97000,450,1331,446,144,168,88,15900,15900,10500,1660,340,1.5,8,8,72.4,3660,9,999999999,280,0.1130,0,88,999.000,999.0,99.0 +1980,8,13,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,18.9,47,97100,709,1331,435,401,434,170,42800,43900,19300,3680,140,2.1,6,5,72.4,3660,9,999999999,290,0.1130,0,88,999.000,999.0,99.0 +1980,8,13,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,18.9,42,97100,933,1331,433,683,738,170,72800,74900,20200,4760,220,2.6,2,2,72.4,77777,9,999999999,280,0.1130,0,88,999.000,999.0,99.0 +1980,8,13,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.9,18.3,40,97100,1106,1331,430,817,760,184,87600,78000,22700,7370,220,2.6,1,1,72.4,77777,9,999999999,280,0.1130,0,88,999.000,999.0,99.0 +1980,8,13,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.6,18.3,36,97000,1216,1331,439,926,790,201,96100,79100,23600,10500,300,2.1,1,1,72.4,77777,9,999999999,280,0.1130,0,88,999.000,999.0,99.0 +1980,8,13,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.1,18.3,35,97000,1256,1331,442,967,812,201,101200,81500,24100,12970,140,2.1,1,1,72.4,77777,9,999999999,280,0.1130,0,88,999.000,999.0,99.0 +1980,8,13,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.2,18.3,33,96900,1222,1331,455,912,687,284,96400,69400,32500,16520,220,2.6,2,2,72.4,77777,9,999999999,280,0.1130,0,88,999.000,999.0,99.0 +1980,8,13,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.8,18.3,32,96800,1118,1331,463,857,812,173,89400,81500,20800,6440,300,3.1,3,3,72.4,77777,9,999999999,280,0.1130,0,88,999.000,999.0,99.0 +1980,8,13,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,38.3,17.8,30,96700,950,1331,460,706,786,131,72800,78900,16300,3550,300,2.6,2,2,72.4,77777,9,999999999,270,0.1130,0,88,999.000,999.0,99.0 +1980,8,13,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,38.3,17.8,30,96600,730,1331,460,497,718,94,51300,71100,12200,2090,270,3.6,2,2,72.4,77777,9,999999999,270,0.1130,0,88,999.000,999.0,99.0 +1980,8,13,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,38.3,17.8,30,96600,473,1331,460,287,604,65,29600,56400,9600,1300,270,4.1,2,2,72.4,77777,9,999999999,270,0.1130,0,88,999.000,999.0,99.0 +1980,8,13,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.8,17.2,30,96600,197,1331,461,81,254,41,8300,16400,5900,730,240,3.1,3,3,80.5,77777,9,999999999,260,0.1130,0,88,999.000,999.0,99.0 +1980,8,13,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.1,17.2,33,96600,7,322,441,0,0,0,0,0,0,0,250,1.5,1,1,56.3,77777,9,999999999,260,0.1130,0,88,999.000,999.0,99.0 +1980,8,13,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.6,17.2,34,96600,0,0,430,0,0,0,0,0,0,0,250,1.0,0,0,56.3,77777,9,999999999,260,0.1130,0,88,999.000,999.0,99.0 +1980,8,13,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,17.8,41,96800,0,0,479,0,0,0,0,0,0,0,70,13.9,10,10,4.8,2440,9,999999999,270,0.1130,0,88,999.000,999.0,99.0 +1980,8,13,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,18.3,55,96900,0,0,452,0,0,0,0,0,0,0,70,10.3,10,10,56.3,2440,9,999999999,280,0.1130,0,88,999.000,999.0,99.0 +1980,8,13,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,20.0,69,97000,0,0,441,0,0,0,0,0,0,0,150,3.1,10,10,56.3,2440,9,999999999,310,0.1130,0,88,999.000,999.0,99.0 +1980,8,14,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,20.6,74,97000,0,0,439,0,0,0,0,0,0,0,100,2.1,10,10,56.3,3660,9,999999999,320,0.1130,0,88,999.000,999.0,99.0 +1980,8,14,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,20.6,74,97000,0,0,439,0,0,0,0,0,0,0,90,2.1,10,10,56.3,3660,9,999999999,320,0.1130,0,88,999.000,999.0,99.0 +1980,8,14,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,20.6,72,96900,0,0,442,0,0,0,0,0,0,0,140,2.1,10,10,56.3,3660,9,999999999,320,0.1130,0,88,999.000,999.0,99.0 +1980,8,14,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,20.6,72,97000,0,0,442,0,0,0,0,0,0,0,160,1.5,10,10,56.3,2440,9,999999999,320,0.1130,0,88,999.000,999.0,99.0 +1980,8,14,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,20.0,69,97000,0,0,441,0,0,0,0,0,0,0,120,1.5,10,10,56.3,3660,9,999999999,310,0.1130,0,88,999.000,999.0,99.0 +1980,8,14,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,21.7,79,97000,3,189,441,0,0,0,0,0,0,0,80,3.6,10,10,56.3,3660,9,999999999,340,0.1130,0,88,999.000,999.0,99.0 +1980,8,14,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,21.1,77,97100,172,1332,440,13,0,13,1600,0,1600,530,150,2.1,10,10,56.3,3660,9,999999999,330,0.1130,0,88,999.000,999.0,99.0 +1980,8,14,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,21.1,77,97100,448,1332,440,24,0,24,3100,0,3100,1120,90,2.1,10,10,56.3,4270,9,999999999,330,0.1130,0,88,999.000,999.0,99.0 +1980,8,14,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,21.7,82,97100,707,1332,437,67,0,67,8300,0,8300,3320,80,2.1,10,10,64.4,4270,9,999999999,340,0.1130,0,88,999.000,999.0,99.0 +1980,8,14,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,21.1,72,97100,931,1332,446,290,2,287,33400,200,33300,12400,80,3.1,10,10,64.4,4270,9,999999999,330,0.1130,0,88,999.000,999.0,99.0 +1980,8,14,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,19.4,57,97100,1104,1332,445,405,9,397,46800,900,46100,16720,90,3.1,9,9,64.4,3660,9,999999999,300,0.1130,0,88,999.000,999.0,99.0 +1980,8,14,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,19.4,50,97100,1214,1332,441,751,418,369,80000,43600,40100,21490,130,4.1,7,7,80.5,3660,9,999999999,300,0.0450,0,88,999.000,999.0,99.0 +1980,8,14,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,19.4,47,97000,1254,1332,442,796,335,480,86600,36400,52300,30310,80,3.1,6,6,80.5,4570,9,999999999,300,0.1130,0,88,999.000,999.0,99.0 +1980,8,14,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,18.9,42,96900,1220,1332,444,963,592,418,101200,61700,44600,25100,40,3.1,5,5,64.4,77777,9,999999999,280,0.1130,0,88,999.000,999.0,99.0 +1980,8,14,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.9,18.3,40,96800,1115,1332,447,564,203,393,61900,21600,43800,15410,60,3.1,5,5,64.4,77777,9,999999999,280,0.1130,0,88,999.000,999.0,99.0 +1980,8,14,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34.4,18.3,38,96800,947,1332,454,536,358,281,58500,38600,30900,8110,130,3.1,8,6,64.4,7620,9,999999999,270,0.1130,0,88,999.000,999.0,99.0 +1980,8,14,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.6,18.3,36,96700,726,1332,453,543,657,181,57300,66600,20900,3990,120,2.1,6,4,64.4,7620,9,999999999,280,0.1130,0,88,999.000,999.0,99.0 +1980,8,14,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.6,18.3,36,96600,469,1332,450,280,529,90,28600,48600,11400,1700,70,4.1,3,3,64.4,77777,9,999999999,280,0.1130,0,88,999.000,999.0,99.0 +1980,8,14,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.0,18.3,37,96600,192,1332,457,78,131,59,8100,8100,7000,1140,70,3.1,6,6,64.4,7620,9,999999999,270,0.1130,0,88,999.000,999.0,99.0 +1980,8,14,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34.4,18.3,38,96700,6,300,454,3,0,3,0,0,0,0,140,2.1,6,6,56.3,7620,9,999999999,270,0.1130,0,88,999.000,999.0,99.0 +1980,8,14,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.9,18.9,41,96700,0,0,430,0,0,0,0,0,0,0,140,2.1,4,1,56.3,77777,9,999999999,290,0.1130,0,88,999.000,999.0,99.0 +1980,8,14,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,18.9,45,96800,0,0,421,0,0,0,0,0,0,0,180,2.6,3,1,56.3,77777,9,999999999,290,0.1130,0,88,999.000,999.0,99.0 +1980,8,14,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,18.9,47,96800,0,0,432,0,0,0,0,0,0,0,180,1.5,4,4,56.3,77777,9,999999999,290,0.1130,0,88,999.000,999.0,99.0 +1980,8,14,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,17.8,46,96900,0,0,427,0,0,0,0,0,0,0,170,4.6,5,5,56.3,77777,9,999999999,270,0.1130,0,88,999.000,999.0,99.0 +1980,8,15,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,17.2,48,96900,0,0,413,0,0,0,0,0,0,0,150,3.6,3,3,56.3,77777,9,999999999,260,0.1190,0,88,999.000,999.0,99.0 +1980,8,15,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,17.2,49,96900,0,0,410,0,0,0,0,0,0,0,160,1.5,3,3,56.3,77777,9,999999999,260,0.1190,0,88,999.000,999.0,99.0 +1980,8,15,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,17.2,51,96900,0,0,390,0,0,0,0,0,0,0,90,1.0,0,0,56.3,77777,9,999999999,260,0.1190,0,88,999.000,999.0,99.0 +1980,8,15,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,17.2,53,96900,0,0,388,0,0,0,0,0,0,0,130,1.5,0,0,56.3,77777,9,999999999,260,0.1190,0,88,999.000,999.0,99.0 +1980,8,15,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,17.8,56,97000,0,0,385,0,0,0,0,0,0,0,100,3.1,0,0,56.3,77777,9,999999999,270,0.1190,0,88,999.000,999.0,99.0 +1980,8,15,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,18.3,60,97000,2,189,391,0,0,0,0,0,0,0,80,3.1,1,1,56.3,77777,9,999999999,280,0.1190,0,88,999.000,999.0,99.0 +1980,8,15,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,18.3,60,97100,169,1332,383,70,265,37,7400,15700,5400,660,100,2.6,0,0,56.3,77777,9,999999999,280,0.1190,0,88,999.000,999.0,99.0 +1980,8,15,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,18.3,55,97100,445,1332,392,262,599,62,27700,55100,9300,1220,110,2.6,0,0,56.3,77777,9,999999999,280,0.1190,0,88,999.000,999.0,99.0 +1980,8,15,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,18.9,50,97100,705,1332,405,487,743,94,51000,73200,12200,2030,170,3.1,0,0,64.4,77777,9,999999999,290,0.1190,0,88,999.000,999.0,99.0 +1980,8,15,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,18.9,45,97100,930,1332,421,697,797,139,72400,79700,16700,3540,150,3.1,1,1,72.4,77777,9,999999999,290,0.1190,0,88,999.000,999.0,99.0 +1980,8,15,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,18.9,42,97100,1103,1332,433,764,675,204,81300,68900,24100,8000,160,3.1,2,2,72.4,77777,9,999999999,280,0.1190,0,88,999.000,999.0,99.0 +1980,8,15,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.9,18.9,41,97100,1213,1332,444,947,724,286,99500,73100,32800,15850,150,4.1,4,4,72.4,77777,9,999999999,290,0.1190,0,88,999.000,999.0,99.0 +1980,8,15,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.6,18.3,36,97000,1252,1332,457,841,537,334,90900,56200,37900,23160,120,3.6,5,5,80.5,77777,9,999999999,280,0.1190,0,88,999.000,999.0,99.0 +1980,8,15,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.7,18.3,34,97000,1218,1332,460,959,707,307,99900,71100,34700,17320,310,3.1,4,4,80.5,77777,9,999999999,280,0.1190,0,88,999.000,999.0,99.0 +1980,8,15,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.7,17.8,33,96900,1113,1332,455,900,837,196,92200,83400,22400,6890,230,3.6,3,3,80.5,77777,9,999999999,270,0.1190,0,88,999.000,999.0,99.0 +1980,8,15,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.2,17.8,32,96800,944,1332,458,693,748,164,73800,76100,19700,4690,260,3.1,3,3,80.5,77777,9,999999999,270,0.1190,0,88,999.000,999.0,99.0 +1980,8,15,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.2,17.2,31,96800,723,1332,457,503,729,106,53500,73100,13700,2410,260,3.1,3,3,80.5,77777,9,999999999,260,0.1190,0,88,999.000,999.0,99.0 +1980,8,15,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.7,17.2,32,96800,464,1332,455,276,608,64,29200,56500,9500,1270,270,3.1,3,3,80.5,77777,9,999999999,260,0.1190,0,88,999.000,999.0,99.0 +1980,8,15,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.1,15.6,29,96700,188,1332,444,71,288,30,7300,19200,4600,550,260,3.1,2,2,80.5,77777,9,999999999,230,0.1190,0,88,999.000,999.0,99.0 +1980,8,15,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.6,13.9,27,96700,5,278,433,0,0,0,0,0,0,0,280,2.1,1,1,80.5,77777,9,999999999,209,0.1190,0,88,999.000,999.0,99.0 +1980,8,15,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.9,16.1,34,96800,0,0,419,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,240,0.1190,0,88,999.000,999.0,99.0 +1980,8,15,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,15.6,34,96900,0,0,415,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,230,0.1190,0,88,999.000,999.0,99.0 +1980,8,15,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,12.2,29,96900,0,0,404,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,190,0.1190,0,88,999.000,999.0,99.0 +1980,8,15,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,12.2,32,96900,0,0,396,0,0,0,0,0,0,0,280,1.0,0,0,56.3,77777,9,999999999,190,0.1190,0,88,999.000,999.0,99.0 +1980,8,16,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,12.2,32,97000,0,0,396,0,0,0,0,0,0,0,340,1.0,0,0,56.3,77777,9,999999999,190,0.0910,0,88,999.000,999.0,99.0 +1980,8,16,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,12.2,37,97000,0,0,384,0,0,0,0,0,0,0,70,1.0,0,0,56.3,77777,9,999999999,190,0.0910,0,88,999.000,999.0,99.0 +1980,8,16,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,12.2,38,97000,0,0,382,0,0,0,0,0,0,0,60,1.0,0,0,56.3,77777,9,999999999,190,0.0910,0,88,999.000,999.0,99.0 +1980,8,16,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,13.3,44,97100,0,0,377,0,0,0,0,0,0,0,110,1.0,0,0,56.3,77777,9,999999999,209,0.0910,0,88,999.000,999.0,99.0 +1980,8,16,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,13.3,45,97100,0,0,374,0,0,0,0,0,0,0,90,1.5,0,0,56.3,77777,9,999999999,200,0.0910,0,88,999.000,999.0,99.0 +1980,8,16,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,13.9,49,97100,2,167,373,2,1,1,0,0,0,0,100,1.0,0,0,80.5,77777,9,999999999,220,0.1270,0,88,999.000,999.0,99.0 +1980,8,16,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,13.9,49,97200,166,1333,373,75,351,32,7700,21800,5000,570,120,1.5,0,0,96.6,77777,9,999999999,220,0.0910,0,88,999.000,999.0,99.0 +1980,8,16,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,12.8,40,97300,443,1333,382,275,674,51,29000,62100,8300,1080,130,1.5,0,0,80.5,77777,9,999999999,200,0.0910,0,88,999.000,999.0,99.0 +1980,8,16,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,10.6,31,97300,703,1333,388,501,802,78,53500,79600,11400,1800,130,2.1,0,0,80.5,77777,9,999999999,170,0.0910,0,88,999.000,999.0,99.0 +1980,8,16,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,10.6,27,97300,928,1333,400,715,870,108,73900,86600,13500,2440,120,2.6,0,0,80.5,77777,9,999999999,170,0.0910,0,88,999.000,999.0,99.0 +1980,8,16,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,10.6,25,97300,1101,1333,408,882,912,127,90700,91200,15200,3840,220,1.5,0,0,72.4,77777,9,999999999,170,0.0910,0,88,999.000,999.0,99.0 +1980,8,16,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34.4,10.6,23,97200,1211,1333,414,978,930,132,100500,93200,15600,5820,140,2.6,0,0,72.4,77777,9,999999999,170,0.0910,0,88,999.000,999.0,99.0 +1980,8,16,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.1,10.6,21,97100,1250,1333,423,1019,930,144,104200,93200,16600,7510,160,2.6,0,0,72.4,77777,9,999999999,170,0.0910,0,88,999.000,999.0,99.0 +1980,8,16,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.7,7.8,17,97100,1215,1333,423,991,941,129,101600,94300,15400,5870,300,2.6,0,0,80.5,77777,9,999999999,140,0.0910,0,88,999.000,999.0,99.0 +1980,8,16,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.8,7.8,16,97000,1110,1333,429,882,915,116,90700,91600,14300,3790,140,4.1,0,0,80.5,77777,9,999999999,140,0.0910,0,88,999.000,999.0,99.0 +1980,8,16,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.8,7.2,15,96900,941,1333,428,700,884,72,73000,88300,10500,2110,330,2.6,0,0,80.5,77777,9,999999999,140,0.0910,0,88,999.000,999.0,99.0 +1980,8,16,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,38.3,7.2,15,96900,719,1333,430,512,823,64,53400,80800,9700,1580,340,2.6,0,0,80.5,77777,9,999999999,140,0.0910,0,88,999.000,999.0,99.0 +1980,8,16,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.8,7.2,15,96800,460,1333,428,282,699,38,29700,64700,7300,1000,140,2.6,0,0,80.5,77777,9,999999999,140,0.0910,0,88,999.000,999.0,99.0 +1980,8,16,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.8,7.8,16,96800,183,1333,429,70,351,21,7200,24800,3800,460,70,4.6,0,0,80.5,77777,9,999999999,140,0.0910,0,88,999.000,999.0,99.0 +1980,8,16,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.1,7.8,17,96800,4,255,419,0,0,0,0,0,0,0,40,2.1,0,0,56.3,77777,9,999999999,140,0.0910,0,88,999.000,999.0,99.0 +1980,8,16,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.0,8.9,20,96900,0,0,415,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,150,0.0910,0,88,999.000,999.0,99.0 +1980,8,16,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,11.1,28,96900,0,0,400,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,180,0.0910,0,88,999.000,999.0,99.0 +1980,8,16,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,10.6,31,96900,0,0,388,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,170,0.0910,0,88,999.000,999.0,99.0 +1980,8,16,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,10.6,30,97000,0,0,391,0,0,0,0,0,0,0,100,1.5,0,0,56.3,77777,9,999999999,170,0.0910,0,88,999.000,999.0,99.0 +1980,8,17,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,10.0,29,97000,0,0,390,0,0,0,0,0,0,0,80,1.5,0,0,56.3,77777,9,999999999,170,0.0910,0,88,999.000,999.0,99.0 +1980,8,17,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,10.6,32,97000,0,0,385,0,0,0,0,0,0,0,90,1.5,0,0,56.3,77777,9,999999999,170,0.0910,0,88,999.000,999.0,99.0 +1980,8,17,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,11.1,37,97000,0,0,377,0,0,0,0,0,0,0,80,2.6,0,0,56.3,77777,9,999999999,180,0.0910,0,88,999.000,999.0,99.0 +1980,8,17,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,10.6,38,97000,0,0,371,0,0,0,0,0,0,0,90,1.5,0,0,56.3,77777,9,999999999,170,0.0910,0,88,999.000,999.0,99.0 +1980,8,17,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,7.8,32,97000,0,0,365,0,0,0,0,0,0,0,90,2.1,0,0,56.3,77777,9,999999999,140,0.0910,0,88,999.000,999.0,99.0 +1980,8,17,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,7.2,32,97100,2,144,361,0,4,0,0,0,0,0,90,1.5,0,0,80.5,77777,9,999999999,140,0.0910,0,88,999.000,999.0,99.0 +1980,8,17,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,6.7,31,97100,163,1333,361,81,451,27,8200,29900,4600,500,80,1.5,0,0,96.6,77777,9,999999999,140,0.0910,0,88,999.000,999.0,99.0 +1980,8,17,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,6.7,27,97200,440,1333,372,285,741,41,30300,68000,7800,1020,90,1.0,0,0,96.6,77777,9,999999999,130,0.0910,0,88,999.000,999.0,99.0 +1980,8,17,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,5.6,22,97200,701,1333,381,521,857,70,54600,83900,10400,1600,130,1.5,0,0,96.6,77777,9,999999999,130,0.0910,0,88,999.000,999.0,99.0 +1980,8,17,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,5.6,19,97200,926,1333,396,732,912,97,75900,90800,12700,2370,120,1.5,0,0,96.6,77777,9,999999999,130,0.0910,0,88,999.000,999.0,99.0 +1980,8,17,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.9,6.1,18,97200,1099,1333,405,899,943,120,92600,94400,14700,3720,140,2.1,0,0,96.6,77777,9,999999999,130,0.0910,0,88,999.000,999.0,99.0 +1980,8,17,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.7,5.6,15,97200,1209,1333,419,995,955,126,102200,95700,15200,5600,120,2.1,0,0,96.6,77777,9,999999999,130,0.0910,0,88,999.000,999.0,99.0 +1980,8,17,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.2,0.0,9,97100,1248,1333,414,1024,952,130,105000,95500,15500,6910,110,2.1,0,0,96.6,77777,9,999999999,80,0.0910,0,88,999.000,999.0,99.0 +1980,8,17,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,38.3,1.1,10,97000,1213,1333,421,988,933,135,101100,93500,15900,5950,130,2.6,0,0,96.6,77777,9,999999999,100,0.0910,0,88,999.000,999.0,99.0 +1980,8,17,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,40.0,0.0,8,96900,1107,1333,429,886,920,118,91100,92100,14400,3780,230,3.1,0,0,96.6,77777,9,999999999,90,0.0910,0,88,999.000,999.0,99.0 +1980,8,17,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,39.4,-1.7,7,96800,937,1333,423,670,887,43,71000,88800,8400,1460,140,2.6,0,0,96.6,77777,9,999999999,70,0.0910,0,88,999.000,999.0,99.0 +1980,8,17,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,40.0,0.0,8,96800,715,1333,429,509,818,66,53000,80300,9900,1590,350,2.6,0,0,96.6,77777,9,999999999,90,0.0910,0,88,999.000,999.0,99.0 +1980,8,17,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,39.4,0.6,9,96800,456,1333,427,286,693,46,29900,64000,8000,1080,320,3.1,0,0,96.6,77777,9,999999999,90,0.0910,0,88,999.000,999.0,99.0 +1980,8,17,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,38.3,1.7,10,96800,178,1333,422,70,355,22,7200,24800,3900,470,300,2.1,0,0,96.6,77777,9,999999999,100,0.0910,0,88,999.000,999.0,99.0 +1980,8,17,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.7,3.3,12,96800,3,211,416,0,0,0,0,0,0,0,320,2.1,0,0,80.5,77777,9,999999999,100,0.0910,0,88,999.000,999.0,99.0 +1980,8,17,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.0,4.4,15,96800,0,0,409,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,120,0.0910,0,88,999.000,999.0,99.0 +1980,8,17,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,6.7,22,96900,0,0,391,0,0,0,0,0,0,0,220,1.0,0,0,56.3,77777,9,999999999,140,0.0910,0,88,999.000,999.0,99.0 +1980,8,17,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,5.6,19,96900,0,0,396,0,0,0,0,0,0,0,300,1.5,0,0,56.3,77777,9,999999999,130,0.0910,0,88,999.000,999.0,99.0 +1980,8,17,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,7.8,27,96900,0,0,379,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,140,0.0910,0,88,999.000,999.0,99.0 +1980,8,18,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,7.8,29,96900,0,0,373,0,0,0,0,0,0,0,110,1.0,0,0,56.3,77777,9,999999999,140,0.1110,0,88,999.000,999.0,99.0 +1980,8,18,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,7.2,32,96900,0,0,361,0,0,0,0,0,0,0,100,1.0,0,0,56.3,77777,9,999999999,140,0.1110,0,88,999.000,999.0,99.0 +1980,8,18,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,8.3,35,96900,0,0,363,0,0,0,0,0,0,0,130,1.5,0,0,56.3,77777,9,999999999,150,0.1110,0,88,999.000,999.0,99.0 +1980,8,18,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,8.3,35,96900,0,0,370,0,0,0,0,0,0,0,100,1.5,1,1,56.3,77777,9,999999999,150,0.1110,0,88,999.000,999.0,99.0 +1980,8,18,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,8.3,35,96900,0,0,370,0,0,0,0,0,0,0,90,1.5,1,1,56.3,77777,9,999999999,150,0.1110,0,88,999.000,999.0,99.0 +1980,8,18,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,8.9,37,97000,1,145,376,0,0,0,0,0,0,0,90,2.1,3,3,56.3,77777,9,999999999,150,0.1110,0,88,999.000,999.0,99.0 +1980,8,18,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,8.9,37,97000,160,1334,376,66,263,35,7000,15100,5200,620,70,2.1,3,3,80.5,77777,9,999999999,150,0.1110,0,88,999.000,999.0,99.0 +1980,8,18,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,7.8,29,97100,438,1334,385,276,635,66,28900,57900,9800,1290,90,1.5,2,2,80.5,77777,9,999999999,140,0.1110,0,88,999.000,999.0,99.0 +1980,8,18,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,5.0,20,97100,699,1334,391,501,775,95,52300,76200,12300,2020,90,2.6,1,1,80.5,77777,9,999999999,120,0.1110,0,88,999.000,999.0,99.0 +1980,8,18,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,4.4,17,97100,924,1334,405,711,856,116,75300,86200,15400,3110,130,3.6,1,1,80.5,77777,9,999999999,120,0.1110,0,88,999.000,999.0,99.0 +1980,8,18,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.0,4.4,15,97100,1097,1334,422,850,828,167,88700,83100,20200,5860,90,3.1,2,2,96.6,77777,9,999999999,120,0.1110,0,88,999.000,999.0,99.0 +1980,8,18,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.7,1.1,11,97000,1207,1334,427,977,874,182,102300,87900,22500,9210,240,3.1,2,2,96.6,77777,9,999999999,100,0.1110,0,88,999.000,999.0,99.0 +1980,8,18,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.2,-0.6,9,97000,1246,1334,421,1022,902,175,107900,91100,22700,10760,290,4.6,1,1,96.6,77777,9,999999999,80,0.1110,0,88,999.000,999.0,99.0 +1980,8,18,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,38.3,0.6,9,96900,1211,1334,429,988,907,160,100500,90700,18000,6430,250,5.2,1,1,96.6,77777,9,999999999,90,0.1110,0,88,999.000,999.0,99.0 +1980,8,18,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,38.9,0.6,9,96800,1104,1334,442,786,631,261,82000,63600,29300,10000,230,3.6,3,3,96.6,77777,9,999999999,90,0.1110,0,88,999.000,999.0,99.0 +1980,8,18,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,38.3,-1.1,8,96800,934,1334,436,523,354,276,57100,38200,30400,7820,230,4.1,4,3,96.6,77777,9,999999999,80,0.1110,0,88,999.000,999.0,99.0 +1980,8,18,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.8,0.6,10,96800,711,1334,440,251,72,214,27800,7200,23900,6650,250,6.2,4,4,96.6,77777,9,999999999,90,0.1110,0,88,999.000,999.0,99.0 +1980,8,18,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.8,2.8,11,96700,451,1334,440,220,298,120,23600,28100,14100,2390,220,4.6,3,3,88.5,77777,9,999999999,100,0.1110,0,88,999.000,999.0,99.0 +1980,8,18,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.2,3.9,12,96700,173,1334,438,75,313,34,7600,19800,5000,610,220,3.6,3,3,88.5,77777,9,999999999,110,0.1110,0,88,999.000,999.0,99.0 +1980,8,18,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.0,5.6,16,96700,3,189,418,0,0,0,0,0,0,0,240,3.6,1,1,64.4,77777,9,999999999,120,0.1110,0,88,999.000,999.0,99.0 +1980,8,18,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,4.4,16,96800,0,0,400,0,0,0,0,0,0,0,230,2.6,0,0,56.3,77777,9,999999999,110,0.1110,0,88,999.000,999.0,99.0 +1980,8,18,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,3.3,16,96900,0,0,392,0,0,0,0,0,0,0,240,2.6,0,0,56.3,77777,9,999999999,110,0.1110,0,88,999.000,999.0,99.0 +1980,8,18,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,3.3,17,96900,0,0,387,0,0,0,0,0,0,0,230,2.6,0,0,56.3,77777,9,999999999,110,0.1110,0,88,999.000,999.0,99.0 +1980,8,18,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,3.3,18,97000,0,0,381,0,0,0,0,0,0,0,240,2.1,0,0,56.3,77777,9,999999999,110,0.1110,0,88,999.000,999.0,99.0 +1980,8,19,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,3.3,19,97000,0,0,376,0,0,0,0,0,0,0,270,2.1,0,0,56.3,77777,9,999999999,110,0.0650,0,88,999.000,999.0,99.0 +1980,8,19,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,3.9,20,97100,0,0,377,0,0,0,0,0,0,0,270,1.5,0,0,56.3,77777,9,999999999,110,0.0650,0,88,999.000,999.0,99.0 +1980,8,19,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,6.1,26,97100,0,0,371,0,0,0,0,0,0,0,70,4.1,0,0,56.3,77777,9,999999999,130,0.0650,0,88,999.000,999.0,99.0 +1980,8,19,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,6.1,26,97100,0,0,371,0,0,0,0,0,0,0,80,2.1,0,0,56.3,77777,9,999999999,130,0.0650,0,88,999.000,999.0,99.0 +1980,8,19,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,6.1,29,97100,0,0,363,0,0,0,0,0,0,0,90,3.1,0,0,56.3,77777,9,999999999,130,0.0650,0,88,999.000,999.0,99.0 +1980,8,19,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,6.1,30,97200,1,122,360,0,1,0,0,0,0,0,80,2.1,0,0,80.5,77777,9,999999999,130,0.0650,0,88,999.000,999.0,99.0 +1980,8,19,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,8.9,36,97300,157,1334,364,72,377,27,7300,23000,4600,490,90,3.1,0,0,80.5,77777,9,999999999,160,0.0650,0,88,999.000,999.0,99.0 +1980,8,19,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,15.0,47,97400,435,1334,382,269,679,47,28500,62400,8100,1020,160,3.1,0,0,80.5,77777,9,999999999,230,0.0650,0,88,999.000,999.0,99.0 +1980,8,19,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,16.7,43,97400,697,1334,402,497,811,73,52000,79300,10500,1610,180,3.1,0,0,64.4,77777,9,999999999,250,0.0650,0,88,999.000,999.0,99.0 +1980,8,19,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,12.2,29,97400,922,1334,404,693,856,100,71800,85200,12800,2370,280,3.1,0,0,64.4,77777,9,999999999,190,0.0650,0,88,999.000,999.0,99.0 +1980,8,19,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,12.2,29,97400,1095,1334,408,870,896,132,89300,89600,15600,3810,140,3.1,0,0,64.4,77777,9,999999999,200,0.0650,0,88,999.000,999.0,99.0 +1980,8,19,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.9,11.7,26,97400,1205,1334,421,960,882,160,101900,89300,21100,8210,320,3.1,1,1,72.4,77777,9,999999999,190,0.0650,0,88,999.000,999.0,99.0 +1980,8,19,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34.4,11.1,24,97300,1243,1334,428,985,841,196,102600,84400,23700,11650,270,3.6,2,2,80.5,77777,9,999999999,180,0.0650,0,88,999.000,999.0,99.0 +1980,8,19,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.6,12.2,24,97300,1208,1334,437,963,842,196,99900,84400,23400,9800,270,4.1,2,2,80.5,77777,9,999999999,190,0.0650,0,88,999.000,999.0,99.0 +1980,8,19,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.6,12.8,25,97200,1101,1334,437,863,838,168,89900,84100,20300,5950,290,4.1,2,2,80.5,77777,9,999999999,200,0.0650,0,88,999.000,999.0,99.0 +1980,8,19,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.1,12.8,24,97100,930,1334,452,695,810,129,72900,81200,16100,3370,280,4.1,5,5,80.5,77777,9,999999999,190,0.0650,0,88,999.000,999.0,99.0 +1980,8,19,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.7,12.2,23,97100,707,1334,454,482,745,88,50900,73600,11800,1950,270,4.6,5,5,80.5,77777,9,999999999,190,0.0650,0,88,999.000,999.0,99.0 +1980,8,19,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.1,11.7,23,97000,446,1334,450,233,471,77,24400,42900,10000,1470,280,3.6,5,5,80.5,77777,9,999999999,190,0.0650,0,88,999.000,999.0,99.0 +1980,8,19,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.6,11.1,23,97000,168,1334,435,66,274,31,6700,17200,4600,560,270,5.2,2,2,80.5,77777,9,999999999,180,0.0650,0,88,999.000,999.0,99.0 +1980,8,19,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.9,10.0,23,97100,2,167,410,0,0,0,0,0,0,0,270,3.1,0,0,56.3,77777,9,999999999,170,0.0650,0,88,999.000,999.0,99.0 +1980,8,19,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,9.4,23,97200,0,0,406,0,0,0,0,0,0,0,260,2.1,0,0,56.3,77777,9,999999999,160,0.0650,0,88,999.000,999.0,99.0 +1980,8,19,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,10.0,27,97200,0,0,396,0,0,0,0,0,0,0,250,1.5,0,0,56.3,77777,9,999999999,170,0.0650,0,88,999.000,999.0,99.0 +1980,8,19,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,9.4,27,97200,0,0,392,0,0,0,0,0,0,0,240,1.5,0,0,56.3,77777,9,999999999,160,0.0650,0,88,999.000,999.0,99.0 +1980,8,19,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,9.4,29,97300,0,0,386,0,0,0,0,0,0,0,10,1.5,0,0,56.3,77777,9,999999999,160,0.0650,0,88,999.000,999.0,99.0 +1980,8,20,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,7.8,27,97300,0,0,379,0,0,0,0,0,0,0,270,1.0,0,0,56.3,77777,9,999999999,140,0.1300,0,88,999.000,999.0,99.0 +1980,8,20,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,7.8,30,97300,0,0,383,0,0,0,0,0,0,0,80,2.1,2,2,56.3,77777,9,999999999,140,0.1300,0,88,999.000,999.0,99.0 +1980,8,20,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,7.2,27,97400,0,0,388,0,0,0,0,0,0,0,10,1.0,3,2,56.3,77777,9,999999999,140,0.1300,0,88,999.000,999.0,99.0 +1980,8,20,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,7.8,32,97400,0,0,387,0,0,0,0,0,0,0,80,1.5,5,5,56.3,77777,9,999999999,140,0.1300,0,88,999.000,999.0,99.0 +1980,8,20,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,10.0,40,97400,0,0,374,0,0,0,0,0,0,0,120,1.5,2,2,56.3,77777,9,999999999,170,0.1300,0,88,999.000,999.0,99.0 +1980,8,20,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,10.6,43,97400,1,100,372,0,0,0,0,0,0,0,110,2.1,2,2,80.5,77777,9,999999999,170,0.1300,0,88,999.000,999.0,99.0 +1980,8,20,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,11.1,43,97500,155,1335,370,65,301,31,6700,18000,4600,550,90,2.6,1,1,80.5,77777,9,999999999,180,0.1300,0,88,999.000,999.0,99.0 +1980,8,20,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,11.1,37,97600,433,1335,377,263,668,47,27900,61300,8000,1020,70,2.6,0,0,80.5,77777,9,999999999,180,0.1300,0,88,999.000,999.0,99.0 +1980,8,20,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,9.4,29,97600,695,1335,386,492,809,70,51500,79100,10200,1590,80,2.6,0,0,80.5,77777,9,999999999,160,0.1300,0,88,999.000,999.0,99.0 +1980,8,20,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,7.8,23,97600,920,1335,396,703,875,99,72900,87100,12800,2350,70,3.1,0,0,96.6,77777,9,999999999,150,0.1300,0,88,999.000,999.0,99.0 +1980,8,20,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,7.2,20,97600,1093,1335,401,866,906,122,89200,90600,14700,3680,50,2.6,0,0,96.6,77777,9,999999999,140,0.1300,0,88,999.000,999.0,99.0 +1980,8,20,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34.4,7.2,18,97500,1203,1335,409,956,908,136,98100,91000,15900,5680,50,2.1,0,0,96.6,77777,9,999999999,140,0.1300,0,88,999.000,999.0,99.0 +1980,8,20,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.6,5.6,15,97400,1241,1335,413,989,903,146,101000,90400,16700,7130,280,2.1,0,0,96.6,77777,9,999999999,120,0.1300,0,88,999.000,999.0,99.0 +1980,8,20,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.1,6.1,16,97400,1205,1335,417,962,900,145,98200,90100,16700,5950,270,3.1,0,0,96.6,77777,9,999999999,130,0.1300,0,88,999.000,999.0,99.0 +1980,8,20,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.7,6.7,16,97300,1098,1335,421,859,875,135,87900,87500,15800,3870,310,3.1,0,0,96.6,77777,9,999999999,140,0.1300,0,88,999.000,999.0,99.0 +1980,8,20,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.7,7.2,16,97200,927,1335,422,691,815,121,72600,81900,15600,3210,280,3.6,0,0,80.5,77777,9,999999999,140,0.1150,0,88,999.000,999.0,99.0 +1980,8,20,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.7,6.7,16,97200,703,1335,421,473,797,50,49700,78200,8500,1370,250,3.6,0,0,80.5,77777,9,999999999,140,0.1300,0,88,999.000,999.0,99.0 +1980,8,20,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.7,6.1,15,97100,442,1335,420,272,685,42,28400,62900,7600,1030,270,3.6,0,0,80.5,77777,9,999999999,130,0.1300,0,88,999.000,999.0,99.0 +1980,8,20,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.6,5.6,15,97100,163,1335,413,62,351,18,6400,23900,3500,400,260,3.6,0,0,80.5,77777,9,999999999,120,0.1300,0,88,999.000,999.0,99.0 +1980,8,20,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.9,6.1,18,97100,1,145,405,0,0,0,0,0,0,0,250,2.1,0,0,56.3,77777,9,999999999,130,0.1300,0,88,999.000,999.0,99.0 +1980,8,20,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,7.2,22,97200,0,0,395,0,0,0,0,0,0,0,270,1.5,0,0,56.3,77777,9,999999999,140,0.1300,0,88,999.000,999.0,99.0 +1980,8,20,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,7.8,23,97200,0,0,393,0,0,0,0,0,0,0,350,1.5,0,0,56.3,77777,9,999999999,140,0.1300,0,88,999.000,999.0,99.0 +1980,8,20,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,8.3,27,97200,0,0,385,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,150,0.1300,0,88,999.000,999.0,99.0 +1980,8,20,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,7.8,28,97200,0,0,376,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,140,0.1300,0,88,999.000,999.0,99.0 +1980,8,21,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,8.9,33,97200,0,0,372,0,0,0,0,0,0,0,180,2.1,0,0,56.3,77777,9,999999999,160,0.1290,0,88,999.000,999.0,99.0 +1980,8,21,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,7.2,31,97200,0,0,364,0,0,0,0,0,0,0,160,1.0,0,0,56.3,77777,9,999999999,140,0.1290,0,88,999.000,999.0,99.0 +1980,8,21,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,8.9,33,97200,0,0,372,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,160,0.1290,0,88,999.000,999.0,99.0 +1980,8,21,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,8.9,39,97200,0,0,358,0,0,0,0,0,0,0,150,1.5,0,0,56.3,77777,9,999999999,160,0.1290,0,88,999.000,999.0,99.0 +1980,8,21,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,7.8,35,97200,0,0,359,0,0,0,0,0,0,0,90,1.5,0,0,56.3,77777,9,999999999,150,0.1290,0,88,999.000,999.0,99.0 +1980,8,21,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,7.8,35,97200,1,78,359,0,0,0,0,0,0,0,80,1.5,0,0,96.6,77777,9,999999999,150,0.1290,0,88,999.000,999.0,99.0 +1980,8,21,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,8.3,36,97300,152,1336,360,66,342,28,6800,20400,4500,500,120,1.5,0,0,64.4,77777,9,999999999,150,0.1290,0,88,999.000,999.0,99.0 +1980,8,21,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,8.3,31,97300,430,1336,371,261,667,47,27700,61100,8000,1020,140,2.1,0,0,64.4,77777,9,999999999,150,0.1290,0,88,999.000,999.0,99.0 +1980,8,21,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,8.3,27,97200,692,1336,385,488,789,78,51900,78100,11300,1780,140,2.1,0,0,72.4,77777,9,999999999,150,0.1290,0,88,999.000,999.0,99.0 +1980,8,21,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,8.3,23,97300,918,1336,397,694,848,110,73900,85500,15000,2970,80,2.6,0,0,72.4,77777,9,999999999,150,0.1290,0,88,999.000,999.0,99.0 +1980,8,21,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34.4,6.7,18,97300,1091,1336,409,858,892,128,88300,89200,15200,3720,260,2.6,0,0,72.4,77777,9,999999999,140,0.1290,0,88,999.000,999.0,99.0 +1980,8,21,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.7,5.0,14,97200,1201,1336,419,955,902,142,97800,90300,16400,5750,280,3.1,0,0,72.4,77777,9,999999999,120,0.1290,0,88,999.000,999.0,99.0 +1980,8,21,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.8,3.3,12,97200,1239,1336,422,995,917,141,101800,91900,16300,6880,230,3.1,0,0,72.4,77777,9,999999999,110,0.1290,0,88,999.000,999.0,99.0 +1980,8,21,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,38.9,2.8,11,97100,1203,1336,427,964,909,142,98600,91000,16400,5800,280,3.1,0,0,72.4,77777,9,999999999,110,0.1290,0,88,999.000,999.0,99.0 +1980,8,21,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,39.4,3.9,11,97000,1095,1336,432,857,882,131,88000,88200,15500,3790,10,2.6,0,0,72.4,77777,9,999999999,110,0.1290,0,88,999.000,999.0,99.0 +1980,8,21,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,39.4,3.9,11,96900,923,1336,432,682,727,176,71600,73600,20600,4810,250,3.6,0,0,72.4,77777,9,999999999,110,0.2150,0,88,999.000,999.0,99.0 +1980,8,21,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,39.4,3.3,11,96900,699,1336,431,448,772,41,47400,75800,7700,1210,270,3.1,0,0,72.4,77777,9,999999999,110,0.1290,0,88,999.000,999.0,99.0 +1980,8,21,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,39.4,2.8,10,96800,437,1336,430,260,648,45,27400,59700,7800,990,330,3.1,0,0,72.4,77777,9,999999999,100,0.1290,0,88,999.000,999.0,99.0 +1980,8,21,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,38.9,3.3,11,96800,158,1336,428,54,314,16,5600,21200,3100,360,320,3.1,0,0,80.5,77777,9,999999999,110,0.1290,0,88,999.000,999.0,99.0 +1980,8,21,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.2,3.9,12,96900,1,122,420,0,0,0,0,0,0,0,250,2.1,0,0,56.3,77777,9,999999999,110,0.1290,0,88,999.000,999.0,99.0 +1980,8,21,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34.4,7.8,19,96900,0,0,410,0,0,0,0,0,0,0,350,2.1,0,0,56.3,77777,9,999999999,140,0.1290,0,88,999.000,999.0,99.0 +1980,8,21,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,7.8,20,96900,0,0,404,0,0,0,0,0,0,0,280,1.5,0,0,56.3,77777,9,999999999,140,0.1290,0,88,999.000,999.0,99.0 +1980,8,21,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,8.3,24,96900,0,0,393,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,150,0.1290,0,88,999.000,999.0,99.0 +1980,8,21,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,8.9,27,96900,0,0,389,0,0,0,0,0,0,0,240,1.5,0,0,56.3,77777,9,999999999,160,0.1290,0,88,999.000,999.0,99.0 +1980,8,22,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,8.9,27,96900,0,0,389,0,0,0,0,0,0,0,90,1.5,0,0,56.3,77777,9,999999999,160,0.1100,0,88,999.000,999.0,99.0 +1980,8,22,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,7.8,28,96900,0,0,376,0,0,0,0,0,0,0,160,1.5,0,0,56.3,77777,9,999999999,140,0.1100,0,88,999.000,999.0,99.0 +1980,8,22,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,8.3,30,96900,0,0,374,0,0,0,0,0,0,0,200,1.0,0,0,56.3,77777,9,999999999,150,0.1100,0,88,999.000,999.0,99.0 +1980,8,22,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,8.3,32,96900,0,0,368,0,0,0,0,0,0,0,40,1.5,0,0,56.3,77777,9,999999999,150,0.1100,0,88,999.000,999.0,99.0 +1980,8,22,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,9.4,32,97000,0,0,385,0,0,0,0,0,0,0,70,1.5,1,1,56.3,77777,9,999999999,160,0.1100,0,88,999.000,999.0,99.0 +1980,8,22,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,8.9,34,97000,0,78,376,0,0,0,0,0,0,0,180,1.5,1,1,80.5,77777,9,999999999,160,0.1100,0,88,999.000,999.0,99.0 +1980,8,22,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,8.3,31,97100,149,1336,378,52,195,30,5500,10700,4300,530,130,1.5,1,1,72.4,77777,9,999999999,150,0.1100,0,88,999.000,999.0,99.0 +1980,8,22,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,10.0,31,97100,428,1336,392,211,473,59,22300,43000,8500,1160,120,2.1,1,1,72.4,77777,9,999999999,170,0.1100,0,88,999.000,999.0,99.0 +1980,8,22,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,8.9,25,97100,690,1336,402,470,695,110,49600,69100,13900,2410,140,2.6,1,1,72.4,77777,9,999999999,150,0.1100,0,88,999.000,999.0,99.0 +1980,8,22,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,7.8,21,97200,916,1336,415,520,465,200,56400,48300,23200,5370,100,2.6,2,2,72.4,77777,9,999999999,140,0.1100,0,88,999.000,999.0,99.0 +1980,8,22,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.6,7.8,18,97200,1089,1336,438,652,433,297,69700,45200,32700,11320,200,2.1,4,4,72.4,77777,9,999999999,140,0.1100,0,88,999.000,999.0,99.0 +1980,8,22,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.7,7.8,17,97100,1199,1336,444,592,234,380,65000,25400,42100,18600,280,2.6,4,4,64.4,77777,9,999999999,140,0.1100,0,88,999.000,999.0,99.0 +1980,8,22,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,38.3,9.4,17,97000,1236,1336,456,970,751,269,102100,76200,31500,16460,280,2.6,4,4,64.4,77777,9,999999999,160,0.1100,0,88,999.000,999.0,99.0 +1980,8,22,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,39.4,10.0,17,97000,1200,1336,463,815,579,290,85000,58300,32500,15030,280,4.1,4,4,72.4,77777,9,999999999,170,0.1100,0,88,999.000,999.0,99.0 +1980,8,22,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,39.4,9.4,16,96900,1092,1336,459,701,403,370,76200,43700,40400,13780,220,3.1,3,3,72.4,77777,9,999999999,160,0.1100,0,88,999.000,999.0,99.0 +1980,8,22,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,40.0,9.4,16,96800,919,1336,466,565,473,242,60500,49000,26700,6630,280,4.1,4,4,72.4,77777,9,999999999,160,0.1100,0,88,999.000,999.0,99.0 +1980,8,22,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,40.0,10.0,16,96800,694,1336,467,429,706,60,45000,69100,9000,1500,290,4.1,4,4,72.4,77777,9,999999999,160,0.1100,0,88,999.000,999.0,99.0 +1980,8,22,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,38.9,10.0,17,96700,432,1336,452,133,223,61,14800,20300,8200,1090,310,3.1,2,2,72.4,77777,9,999999999,160,0.1100,0,88,999.000,999.0,99.0 +1980,8,22,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.8,10.6,19,96700,153,1336,441,18,50,12,2100,2800,1700,200,300,3.1,1,1,72.4,77777,9,999999999,170,0.1100,0,88,999.000,999.0,99.0 +1980,8,22,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.7,12.8,24,96800,1,100,438,0,0,0,0,0,0,0,220,2.6,1,1,56.3,77777,9,999999999,200,0.1100,0,88,999.000,999.0,99.0 +1980,8,22,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34.4,15.0,31,96900,0,0,428,0,0,0,0,0,0,0,250,2.1,1,1,56.3,77777,9,999999999,230,0.1100,0,88,999.000,999.0,99.0 +1980,8,22,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.9,15.0,32,96900,0,0,431,0,0,0,0,0,0,0,270,1.5,3,2,56.3,77777,9,999999999,230,0.1100,0,88,999.000,999.0,99.0 +1980,8,22,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,15.0,33,97000,0,0,422,0,0,0,0,0,0,0,280,1.5,1,1,56.3,77777,9,999999999,230,0.1100,0,88,999.000,999.0,99.0 +1980,8,22,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,15.0,34,97000,0,0,419,0,0,0,0,0,0,0,290,1.5,1,1,56.3,77777,9,999999999,230,0.1100,0,88,999.000,999.0,99.0 +1980,8,23,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,14.4,33,97100,0,0,424,0,0,0,0,0,0,0,0,0.0,2,2,56.3,77777,9,999999999,220,0.1100,0,88,999.000,999.0,99.0 +1980,8,23,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,14.4,36,97200,0,0,429,0,0,0,0,0,0,0,60,1.5,6,6,56.3,3660,9,999999999,220,0.1100,0,88,999.000,999.0,99.0 +1980,8,23,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,14.4,39,97200,0,0,435,0,0,0,0,0,0,0,130,2.1,8,8,56.3,3660,9,999999999,220,0.1100,0,88,999.000,999.0,99.0 +1980,8,23,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,14.4,35,97200,0,0,454,0,0,0,0,0,0,0,70,1.5,9,9,56.3,3660,9,999999999,220,0.1100,0,88,999.000,999.0,99.0 +1980,8,23,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,15.0,40,97200,0,0,417,0,0,0,0,0,0,0,150,1.5,4,4,56.3,77777,9,999999999,230,0.1100,0,88,999.000,999.0,99.0 +1980,8,23,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,15.0,41,97300,0,56,420,0,0,0,0,0,0,0,240,1.5,6,6,80.5,3660,9,999999999,230,0.1100,0,88,999.000,999.0,99.0 +1980,8,23,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,14.4,41,97300,146,1337,403,61,269,32,6200,15500,4500,560,220,1.5,2,2,80.5,77777,9,999999999,220,0.0590,0,88,999.000,999.0,99.0 +1980,8,23,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,15.6,39,97400,425,1337,420,251,548,76,26000,49200,10300,1440,350,3.1,3,3,80.5,77777,9,999999999,240,0.0590,0,88,999.000,999.0,99.0 +1980,8,23,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,15.0,35,97400,688,1337,436,293,178,201,32100,18400,22700,5060,320,2.6,6,6,80.5,3660,9,999999999,230,0.0590,0,88,999.000,999.0,99.0 +1980,8,23,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,15.6,35,97500,914,1337,446,419,233,259,45700,25100,28500,7100,310,2.1,7,7,80.5,3660,9,999999999,230,0.0590,0,88,999.000,999.0,99.0 +1980,8,23,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.9,16.1,34,97500,1087,1337,470,440,87,369,48500,8900,41200,15030,320,2.1,9,9,80.5,3660,9,999999999,240,0.0590,0,88,999.000,999.0,99.0 +1980,8,23,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.9,15.6,33,97400,1197,1337,469,476,59,423,52500,6100,47100,20020,350,2.1,9,9,80.5,3660,9,999999999,230,0.0590,0,88,999.000,999.0,99.0 +1980,8,23,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.9,16.7,36,97400,1234,1337,484,342,6,337,40900,500,40400,15470,220,2.1,10,10,80.5,3660,9,999999999,250,0.0590,0,88,999.000,999.0,99.0 +1980,8,23,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.9,16.7,36,97300,1197,1337,484,374,12,363,44100,1100,43200,16170,20,2.1,10,10,72.4,3660,9,999999999,250,0.0590,0,88,999.000,999.0,99.0 +1980,8,23,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.9,16.1,34,97300,1089,1337,483,356,7,350,41500,700,41000,15300,60,3.1,10,10,72.4,3660,9,999999999,240,0.0590,0,88,999.000,999.0,99.0 +1980,8,23,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.9,15.6,33,97200,915,1337,482,299,12,291,34500,1100,33700,12370,330,2.1,10,10,72.4,3660,9,999999999,230,0.0590,0,88,999.000,999.0,99.0 +1980,8,23,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.9,15.6,33,97200,690,1337,482,258,4,256,28900,400,28700,9430,210,2.6,10,10,72.4,3660,9,999999999,230,0.0590,0,88,999.000,999.0,99.0 +1980,8,23,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,17.2,38,97100,427,1337,481,73,4,72,8600,200,8500,2970,160,2.1,10,10,80.5,3660,9,999999999,260,0.0590,0,88,999.000,999.0,99.0 +1980,8,23,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,16.1,36,97200,147,1337,466,43,23,40,4700,1500,4500,950,130,2.6,9,9,72.4,3660,9,999999999,250,0.0590,0,88,999.000,999.0,99.0 +1980,8,23,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,16.1,37,97200,0,56,463,0,0,0,0,0,0,0,150,3.1,9,9,56.3,3660,9,999999999,250,0.1100,0,88,999.000,999.0,99.0 +1980,8,23,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,15.6,37,97300,0,0,449,0,0,0,0,0,0,0,140,7.2,8,8,56.3,3660,9,999999999,240,0.1100,0,88,999.000,999.0,99.0 +1980,8,23,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,18.3,50,97400,0,0,450,0,0,0,0,0,0,0,150,3.6,9,9,56.3,3660,9,999999999,280,0.1100,0,88,999.000,999.0,99.0 +1980,8,23,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,18.9,51,97400,0,0,450,0,0,0,0,0,0,0,140,2.6,9,9,56.3,3660,9,999999999,290,0.1100,0,88,999.000,999.0,99.0 +1980,8,23,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,18.9,53,97400,0,0,459,0,0,0,0,0,0,0,120,1.5,10,10,56.3,3660,9,999999999,290,0.1100,0,88,999.000,999.0,99.0 +1980,8,24,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,18.9,53,97400,0,0,459,0,0,0,0,0,0,0,170,2.1,10,10,56.3,3660,9,999999999,290,0.1090,0,88,999.000,999.0,99.0 +1980,8,24,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,19.4,57,97400,0,0,457,0,0,0,0,0,0,0,110,2.6,10,10,56.3,3660,9,999999999,300,0.1090,0,88,999.000,999.0,99.0 +1980,8,24,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,19.4,57,97400,0,0,445,0,0,0,0,0,0,0,70,2.6,9,9,56.3,3660,9,999999999,300,0.1090,0,88,999.000,999.0,99.0 +1980,8,24,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,19.4,59,97400,0,0,441,0,0,0,0,0,0,0,120,1.5,9,9,56.3,3660,9,999999999,300,0.1090,0,88,999.000,999.0,99.0 +1980,8,24,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,20.0,63,97400,0,0,439,0,0,0,0,0,0,0,80,2.6,9,9,56.3,3660,9,999999999,310,0.1090,0,88,999.000,999.0,99.0 +1980,8,24,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,20.0,65,97500,0,33,448,0,0,0,0,0,0,0,110,1.5,10,10,72.4,3660,9,999999999,310,0.1090,0,88,999.000,999.0,99.0 +1980,8,24,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,20.0,65,97600,143,1337,426,30,10,29,3300,700,3200,720,90,2.1,8,8,80.5,3660,9,999999999,310,0.1910,0,88,999.000,999.0,99.0 +1980,8,24,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,20.0,61,97600,423,1337,421,162,126,122,17600,11700,13900,2750,90,4.1,6,6,80.5,7620,9,999999999,310,0.1910,0,88,999.000,999.0,99.0 +1980,8,24,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,20.0,55,97600,686,1337,423,388,381,192,41800,39700,21400,4310,90,3.1,4,4,80.5,77777,9,999999999,310,0.1910,0,88,999.000,999.0,99.0 +1980,8,24,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,20.0,48,97700,912,1337,439,578,432,282,60400,44600,30000,7750,100,3.6,5,5,80.5,77777,9,999999999,310,0.1910,0,88,999.000,999.0,99.0 +1980,8,24,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,19.4,44,97700,1085,1337,445,693,450,327,73400,46900,35300,12390,120,3.1,5,5,80.5,77777,9,999999999,300,0.1910,0,88,999.000,999.0,99.0 +1980,8,24,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34.4,18.9,40,97600,1194,1337,444,888,677,281,93100,68300,32000,14220,60,3.1,3,3,80.5,77777,9,999999999,290,0.1910,0,88,999.000,999.0,99.0 +1980,8,24,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34.4,18.9,40,97500,1232,1337,454,947,550,439,99300,57300,46400,27220,140,4.1,6,6,80.5,7620,9,999999999,290,0.1910,0,88,999.000,999.0,99.0 +1980,8,24,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,18.9,45,97500,1194,1337,454,687,323,398,75300,35100,43800,19240,160,7.7,8,8,80.5,3050,9,999999999,290,0.1910,0,88,999.000,999.0,99.0 +1980,8,24,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,19.4,59,97500,1085,1337,441,346,141,231,39100,15200,26800,8500,150,7.7,9,9,56.3,3050,9,999999999,300,0.1910,0,88,999.000,999.0,99.0 +1980,8,24,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,21.1,54,97400,912,1337,442,506,294,304,54400,31600,32800,8540,130,4.1,6,6,80.5,7620,9,999999999,330,0.1910,0,88,999.000,999.0,99.0 +1980,8,24,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,20.6,50,97500,685,1337,449,364,215,253,39300,22000,28000,6360,90,2.1,7,7,72.4,7620,9,999999999,320,0.1910,0,88,999.000,999.0,99.0 +1980,8,24,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,15.6,39,97500,422,1337,431,142,98,110,15500,9100,12600,2470,350,10.3,6,6,32.2,7620,9,999999999,240,0.1910,0,88,999.000,999.0,99.0 +1980,8,24,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,14.4,39,97500,142,1337,428,31,21,29,3400,1400,3300,720,50,3.6,7,7,56.3,3050,9,999999999,220,0.1910,0,88,999.000,999.0,99.0 +1980,8,24,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,14.4,41,97600,0,33,417,0,0,0,0,0,0,0,60,2.6,6,6,56.3,7620,9,999999999,220,0.1090,0,88,999.000,999.0,99.0 +1980,8,24,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,14.4,43,97600,0,0,410,0,0,0,0,0,0,0,100,2.1,5,5,56.3,77777,9,999999999,220,0.1090,0,88,999.000,999.0,99.0 +1980,8,24,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,14.4,44,97600,0,0,411,0,0,0,0,0,0,0,160,2.1,6,6,56.3,4570,9,999999999,220,0.1090,0,88,999.000,999.0,99.0 +1980,8,24,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,14.4,43,97600,0,0,410,0,0,0,0,0,0,0,60,2.6,5,5,56.3,77777,9,999999999,220,0.1090,0,88,999.000,999.0,99.0 +1980,8,24,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,14.4,46,97600,0,0,381,0,0,0,0,0,0,0,160,1.5,0,0,56.3,77777,9,999999999,220,0.1090,0,88,999.000,999.0,99.0 +1980,8,25,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,15.0,49,97600,0,0,392,0,0,0,0,0,0,0,90,1.5,2,2,56.3,77777,9,999999999,230,0.1650,0,88,999.000,999.0,99.0 +1980,8,25,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,15.0,49,97600,0,0,402,0,0,0,0,0,0,0,30,1.5,5,5,56.3,77777,9,999999999,230,0.1650,0,88,999.000,999.0,99.0 +1980,8,25,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,15.0,49,97600,0,0,379,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,230,0.1650,0,88,999.000,999.0,99.0 +1980,8,25,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,15.6,58,97500,0,0,369,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,240,0.1650,0,88,999.000,999.0,99.0 +1980,8,25,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,15.6,58,97500,0,0,369,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,240,0.1650,0,88,999.000,999.0,99.0 +1980,8,25,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,15.6,60,97500,0,33,366,0,0,0,0,0,0,0,0,0.0,1,0,96.6,77777,9,999999999,240,0.1650,0,88,999.000,999.0,99.0 +1980,8,25,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,15.6,54,97600,140,1338,375,44,45,39,4700,2500,4500,810,90,2.6,0,0,96.6,77777,9,999999999,240,0.2890,0,88,999.000,999.0,99.0 +1980,8,25,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,15.6,47,97600,420,1338,386,210,330,106,21900,29600,12600,2000,80,3.6,0,0,96.6,77777,9,999999999,240,0.2890,0,88,999.000,999.0,99.0 +1980,8,25,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,15.6,43,97600,683,1338,394,430,519,164,45700,52200,18900,3480,90,3.1,0,0,96.6,77777,9,999999999,240,0.2890,0,88,999.000,999.0,99.0 +1980,8,25,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,15.6,38,97600,909,1338,406,632,621,208,65600,62200,23200,5410,50,2.6,0,0,96.6,77777,9,999999999,240,0.2890,0,88,999.000,999.0,99.0 +1980,8,25,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,15.6,37,97600,1083,1338,409,799,692,238,83900,70000,27200,8640,100,3.6,0,0,96.6,77777,9,999999999,240,0.2890,0,88,999.000,999.0,99.0 +1980,8,25,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34.4,15.6,32,97500,1192,1338,421,898,720,255,94900,73100,29700,12870,140,3.6,0,0,96.6,77777,9,999999999,230,0.2890,0,88,999.000,999.0,99.0 +1980,8,25,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.6,15.6,30,97500,1229,1338,427,962,904,128,98700,90600,15200,6090,70,3.6,0,0,96.6,77777,9,999999999,230,0.1650,0,88,999.000,999.0,99.0 +1980,8,25,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.1,16.1,30,97400,1191,1338,431,926,879,140,94800,88000,16200,5430,90,3.1,0,0,96.6,77777,9,999999999,240,0.1650,0,88,999.000,999.0,99.0 +1980,8,25,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.2,16.1,29,97400,1082,1338,437,825,850,134,87800,86100,18000,4740,60,3.1,0,0,96.6,77777,9,999999999,250,0.1650,0,88,999.000,999.0,99.0 +1980,8,25,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.8,16.1,28,97300,908,1338,440,659,813,104,70200,82100,14400,2800,350,3.1,0,0,96.6,77777,9,999999999,250,0.1650,0,88,999.000,999.0,99.0 +1980,8,25,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.8,15.6,27,97200,681,1338,454,415,449,184,43300,45000,20400,3940,330,3.1,2,2,96.6,77777,9,999999999,240,0.2890,0,88,999.000,999.0,99.0 +1980,8,25,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.8,15.6,27,97200,417,1338,459,248,639,48,26000,58000,7900,1020,260,3.1,3,3,96.6,77777,9,999999999,240,0.1650,0,88,999.000,999.0,99.0 +1980,8,25,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.2,13.9,25,97200,137,1338,453,47,260,19,4700,15000,3200,360,300,3.6,3,3,72.4,77777,9,999999999,209,0.1650,0,88,999.000,999.0,99.0 +1980,8,25,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.6,13.9,27,97200,0,11,425,0,0,0,0,0,0,0,310,2.1,0,0,56.3,77777,9,999999999,209,0.1650,0,88,999.000,999.0,99.0 +1980,8,25,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,15.6,34,97300,0,0,415,0,0,0,0,0,0,0,200,2.1,0,0,56.3,77777,9,999999999,230,0.1650,0,88,999.000,999.0,99.0 +1980,8,25,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,15.6,37,97300,0,0,409,0,0,0,0,0,0,0,240,2.1,0,0,56.3,77777,9,999999999,240,0.1650,0,88,999.000,999.0,99.0 +1980,8,25,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,15.6,39,97300,0,0,403,0,0,0,0,0,0,0,100,2.1,0,0,56.3,77777,9,999999999,240,0.1650,0,88,999.000,999.0,99.0 +1980,8,25,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,15.6,40,97400,0,0,400,0,0,0,0,0,0,0,140,1.5,0,0,56.3,77777,9,999999999,240,0.1650,0,88,999.000,999.0,99.0 +1980,8,26,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,15.6,42,97400,0,0,397,0,0,0,0,0,0,0,90,1.5,0,0,56.3,77777,9,999999999,240,0.1650,0,88,999.000,999.0,99.0 +1980,8,26,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,15.6,42,97400,0,0,397,0,0,0,0,0,0,0,80,1.5,0,0,56.3,77777,9,999999999,240,0.1650,0,88,999.000,999.0,99.0 +1980,8,26,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,15.6,44,97400,0,0,391,0,0,0,0,0,0,0,90,2.6,0,0,56.3,77777,9,999999999,230,0.1650,0,88,999.000,999.0,99.0 +1980,8,26,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,15.6,47,97400,0,0,386,0,0,0,0,0,0,0,90,2.1,0,0,56.3,77777,9,999999999,240,0.1650,0,88,999.000,999.0,99.0 +1980,8,26,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,16.1,49,97400,0,0,386,0,0,0,0,0,0,0,100,1.5,0,0,56.3,77777,9,999999999,240,0.1650,0,88,999.000,999.0,99.0 +1980,8,26,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,16.1,51,97500,0,11,383,0,0,0,0,0,0,0,0,0.0,0,0,96.6,77777,9,999999999,250,0.1650,0,88,999.000,999.0,99.0 +1980,8,26,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,16.1,52,97500,137,1338,381,53,288,22,5300,16500,3600,410,140,2.1,0,0,96.6,77777,9,999999999,240,0.1650,0,88,999.000,999.0,99.0 +1980,8,26,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,16.1,43,97500,418,1338,398,241,640,41,25800,58500,7500,910,90,3.1,0,0,80.5,77777,9,999999999,240,0.1650,0,88,999.000,999.0,99.0 +1980,8,26,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,15.6,37,97500,681,1338,409,461,766,71,49500,75900,10800,1650,120,3.1,0,0,80.5,77777,9,999999999,240,0.1650,0,88,999.000,999.0,99.0 +1980,8,26,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.9,15.6,33,97500,907,1338,418,670,840,99,69400,83600,12700,2300,110,2.6,0,0,80.5,77777,9,999999999,230,0.1650,0,88,999.000,999.0,99.0 +1980,8,26,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.6,16.1,31,97500,1081,1338,428,821,862,123,84500,86200,14700,3530,70,1.0,0,0,80.5,77777,9,999999999,240,0.1650,0,88,999.000,999.0,99.0 +1980,8,26,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.8,16.1,28,97500,1190,1338,440,916,870,139,93700,87100,16100,5360,160,3.1,0,0,80.5,77777,9,999999999,250,0.1650,0,88,999.000,999.0,99.0 +1980,8,26,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,38.3,15.6,26,97400,1226,1338,451,955,869,154,97300,87000,17400,6690,260,3.1,1,1,80.5,77777,9,999999999,230,0.1650,0,88,999.000,999.0,99.0 +1980,8,26,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,39.4,15.0,23,97300,1188,1338,456,944,869,167,99300,87700,21300,7840,240,3.6,1,1,80.5,77777,9,999999999,220,0.1650,0,88,999.000,999.0,99.0 +1980,8,26,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,38.9,13.3,22,97200,1078,1338,457,632,594,151,68300,61300,18900,5630,300,4.6,2,2,80.5,77777,9,999999999,209,0.1650,0,88,999.000,999.0,99.0 +1980,8,26,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,40.0,11.1,18,97100,903,1338,465,711,848,138,73700,84500,16600,3340,290,4.1,3,3,80.5,77777,9,999999999,180,0.1650,0,88,999.000,999.0,99.0 +1980,8,26,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,38.9,12.2,20,97100,676,1338,477,314,172,224,33900,17600,24900,5600,260,4.1,7,7,80.5,7620,9,999999999,190,0.1650,0,88,999.000,999.0,99.0 +1980,8,26,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,38.9,11.1,19,97100,412,1338,475,112,13,111,12900,800,12700,4050,240,3.1,7,7,96.6,7620,9,999999999,180,0.1650,0,88,999.000,999.0,99.0 +1980,8,26,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.2,13.3,24,97100,131,1327,447,28,122,15,2900,7200,2200,290,240,2.6,6,2,72.4,77777,9,999999999,200,0.1650,0,88,999.000,999.0,99.0 +1980,8,26,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.1,14.4,27,97100,0,0,443,0,0,0,0,0,0,0,270,2.1,6,2,56.3,77777,9,999999999,220,0.1650,0,88,999.000,999.0,99.0 +1980,8,26,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.0,15.0,30,97200,0,0,431,0,0,0,0,0,0,0,270,1.5,6,1,56.3,77777,9,999999999,230,0.1650,0,88,999.000,999.0,99.0 +1980,8,26,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34.4,15.6,32,97200,0,0,429,0,0,0,0,0,0,0,350,1.5,4,1,56.3,77777,9,999999999,230,0.1650,0,88,999.000,999.0,99.0 +1980,8,26,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,15.0,38,97200,0,0,410,0,0,0,0,0,0,0,170,1.5,1,1,56.3,77777,9,999999999,230,0.1650,0,88,999.000,999.0,99.0 +1980,8,26,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,15.6,40,97300,0,0,400,0,0,0,0,0,0,0,120,1.5,0,0,56.3,77777,9,999999999,230,0.1650,0,88,999.000,999.0,99.0 +1980,8,27,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,15.6,42,97300,0,0,397,0,0,0,0,0,0,0,140,1.5,0,0,56.3,77777,9,999999999,240,0.0430,0,88,999.000,999.0,99.0 +1980,8,27,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,15.0,43,97300,0,0,391,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,230,0.0430,0,88,999.000,999.0,99.0 +1980,8,27,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,15.0,41,97300,0,0,393,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,230,0.0430,0,88,999.000,999.0,99.0 +1980,8,27,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,15.6,43,97300,0,0,394,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,240,0.0430,0,88,999.000,999.0,99.0 +1980,8,27,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,15.6,46,97300,0,0,388,0,0,0,0,0,0,0,100,1.5,0,0,56.3,77777,9,999999999,240,0.0430,0,88,999.000,999.0,99.0 +1980,8,27,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,15.0,46,97400,0,0,385,0,0,0,0,0,0,0,90,1.5,0,0,96.6,77777,9,999999999,230,0.0430,0,88,999.000,999.0,99.0 +1980,8,27,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,15.0,46,97400,134,1328,385,51,257,23,5200,15000,3600,420,70,2.1,0,0,96.6,77777,9,999999999,230,0.0430,0,88,999.000,999.0,99.0 +1980,8,27,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,14.4,40,97500,415,1339,393,235,613,46,24900,55600,7700,990,100,2.6,0,0,80.5,77777,9,999999999,220,0.0430,0,88,999.000,999.0,99.0 +1980,8,27,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,14.4,34,97500,679,1339,407,455,746,76,48400,73700,11000,1720,120,3.1,0,0,80.5,77777,9,999999999,220,0.0430,0,88,999.000,999.0,99.0 +1980,8,27,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.9,14.4,31,97500,905,1339,416,667,818,113,70700,82300,14900,2950,130,2.6,0,0,80.5,77777,9,999999999,220,0.0430,0,88,999.000,999.0,99.0 +1980,8,27,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.6,14.4,28,97500,1079,1339,426,862,864,165,89900,86700,19900,5460,140,2.6,0,0,80.5,77777,9,999999999,220,0.0430,0,88,999.000,999.0,99.0 +1980,8,27,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.2,14.4,26,97400,1187,1339,435,999,896,202,103300,89500,23700,9020,110,3.1,0,0,80.5,77777,9,999999999,220,0.0430,0,88,999.000,999.0,99.0 +1980,8,27,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,38.9,13.3,22,97300,1224,1339,443,1065,911,230,109000,90500,26100,11680,60,2.6,0,0,80.5,77777,9,999999999,209,0.0430,0,88,999.000,999.0,99.0 +1980,8,27,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,40.0,12.8,20,97300,1185,1339,448,1009,887,221,103200,88100,25000,9540,340,3.1,0,0,80.5,77777,9,999999999,200,0.0430,0,88,999.000,999.0,99.0 +1980,8,27,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,40.6,9.4,15,97200,1074,1339,447,949,864,251,98800,87000,28800,8840,330,3.6,0,0,80.5,77777,9,999999999,160,0.0430,0,88,999.000,999.0,99.0 +1980,8,27,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,40.6,9.4,15,97100,899,1339,455,776,824,218,79900,82100,24600,5520,280,4.1,1,1,80.5,77777,9,999999999,160,0.0430,0,88,999.000,999.0,99.0 +1980,8,27,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,40.6,8.9,15,97100,671,1339,454,466,765,80,49000,75300,11200,1770,290,3.6,1,1,80.5,77777,9,999999999,160,0.0430,0,88,999.000,999.0,99.0 +1980,8,27,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,40.0,10.6,17,97100,406,1339,453,301,601,116,30800,53200,14600,2210,300,3.6,1,1,80.5,77777,9,999999999,170,0.0430,0,88,999.000,999.0,99.0 +1980,8,27,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,39.4,10.6,18,97100,126,1283,442,88,241,61,8600,11500,7500,1280,290,3.6,0,0,80.5,77777,9,999999999,170,0.0430,0,88,999.000,999.0,99.0 +1980,8,27,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.8,11.1,20,97100,0,0,433,0,0,0,0,0,0,0,190,2.1,0,0,56.3,77777,9,999999999,180,0.0430,0,88,999.000,999.0,99.0 +1980,8,27,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.0,12.8,26,97200,0,0,420,0,0,0,0,0,0,0,200,1.5,0,0,56.3,77777,9,999999999,200,0.0430,0,88,999.000,999.0,99.0 +1980,8,27,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,12.2,28,97200,0,0,410,0,0,0,0,0,0,0,130,1.5,0,0,56.3,77777,9,999999999,190,0.0430,0,88,999.000,999.0,99.0 +1980,8,27,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,12.8,29,97200,0,0,419,0,0,0,0,0,0,0,90,1.0,1,1,56.3,77777,9,999999999,200,0.0430,0,88,999.000,999.0,99.0 +1980,8,27,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,12.8,30,97200,0,0,416,0,0,0,0,0,0,0,80,1.0,1,1,56.3,77777,9,999999999,200,0.0430,0,88,999.000,999.0,99.0 +1980,8,28,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,13.3,34,97300,0,0,400,0,0,0,0,0,0,0,80,1.0,0,0,56.3,77777,9,999999999,209,0.0880,0,88,999.000,999.0,99.0 +1980,8,28,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,13.3,34,97300,0,0,408,0,0,0,0,0,0,0,50,1.0,1,1,56.3,77777,9,999999999,209,0.0880,0,88,999.000,999.0,99.0 +1980,8,28,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,13.9,40,97300,0,0,397,0,0,0,0,0,0,0,100,1.5,1,1,56.3,77777,9,999999999,209,0.0880,0,88,999.000,999.0,99.0 +1980,8,28,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,13.9,41,97300,0,0,394,0,0,0,0,0,0,0,0,0.0,1,1,56.3,77777,9,999999999,209,0.0880,0,88,999.000,999.0,99.0 +1980,8,28,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,13.9,44,97400,0,0,393,0,0,0,0,0,0,0,0,0.0,2,2,56.3,77777,9,999999999,209,0.0880,0,88,999.000,999.0,99.0 +1980,8,28,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,14.4,44,97400,0,0,401,0,0,0,0,0,0,0,80,1.5,3,3,80.5,77777,9,999999999,220,0.0880,0,88,999.000,999.0,99.0 +1980,8,28,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,13.9,41,97500,132,1329,403,47,191,26,4900,10100,3900,450,100,1.5,3,3,80.5,77777,9,999999999,209,0.0880,0,88,999.000,999.0,99.0 +1980,8,28,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,13.9,36,97600,412,1340,406,272,566,98,27600,49500,12400,1740,110,2.1,1,1,80.5,77777,9,999999999,209,0.0880,0,88,999.000,999.0,99.0 +1980,8,28,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,14.4,34,97600,676,1340,415,488,718,125,51000,70700,15200,2650,100,2.6,1,1,80.5,77777,9,999999999,220,0.0880,0,88,999.000,999.0,99.0 +1980,8,28,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34.4,15.0,31,97600,903,1340,420,690,798,152,73400,81100,18600,4080,60,3.1,0,0,72.4,77777,9,999999999,230,0.0880,0,88,999.000,999.0,99.0 +1980,8,28,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.1,15.0,28,97600,1076,1340,429,853,850,169,88700,85100,20100,5500,200,3.1,0,0,72.4,77777,9,999999999,230,0.0880,0,88,999.000,999.0,99.0 +1980,8,28,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.7,12.2,23,97600,1185,1340,429,890,753,223,94900,76900,26800,11000,210,2.1,0,0,64.4,77777,9,999999999,190,0.0880,0,88,999.000,999.0,99.0 +1980,8,28,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,38.3,11.7,20,97500,1221,1340,451,935,721,274,98300,73000,31700,15350,310,2.1,2,2,64.4,77777,9,999999999,180,0.0880,0,88,999.000,999.0,99.0 +1980,8,28,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,39.4,11.7,19,97400,1182,1340,452,985,830,249,103900,84300,29400,12060,330,2.1,1,1,64.4,77777,9,999999999,180,0.0880,0,88,999.000,999.0,99.0 +1980,8,28,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,40.0,13.3,20,97400,1071,1340,457,898,773,277,92900,77300,31000,9520,290,3.6,1,1,56.3,77777,9,999999999,200,0.0880,0,88,999.000,999.0,99.0 +1980,8,28,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,40.0,13.3,20,97300,895,1340,457,726,767,210,75000,76600,23700,5320,280,3.6,1,1,72.4,77777,9,999999999,200,0.0880,0,88,999.000,999.0,99.0 +1980,8,28,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,40.0,12.8,20,97300,666,1340,457,449,716,89,46500,70000,11600,1870,310,3.6,1,1,72.4,77777,9,999999999,200,0.0880,0,88,999.000,999.0,99.0 +1980,8,28,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,39.4,12.2,20,97300,401,1340,474,247,387,133,26100,34800,15600,2750,280,3.1,6,6,56.3,3660,9,999999999,190,0.0880,0,88,999.000,999.0,99.0 +1980,8,28,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,38.3,12.2,21,97300,120,1262,468,65,16,64,6900,300,6900,1490,240,3.6,7,6,56.3,3050,9,999999999,190,0.0880,0,88,999.000,999.0,99.0 +1980,8,28,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.8,12.2,21,97300,0,0,465,0,0,0,0,0,0,0,240,1.5,7,6,56.3,3050,9,999999999,190,0.0880,0,88,999.000,999.0,99.0 +1980,8,28,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.1,12.2,24,97300,0,0,434,0,0,0,0,0,0,0,230,1.5,1,1,56.3,77777,9,999999999,190,0.0880,0,88,999.000,999.0,99.0 +1980,8,28,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34.4,12.8,27,97300,0,0,425,0,0,0,0,0,0,0,240,2.1,3,1,56.3,77777,9,999999999,200,0.0880,0,88,999.000,999.0,99.0 +1980,8,28,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,12.8,29,97300,0,0,419,0,0,0,0,0,0,0,200,1.5,1,1,56.3,77777,9,999999999,200,0.0880,0,88,999.000,999.0,99.0 +1980,8,28,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,12.8,30,97300,0,0,416,0,0,0,0,0,0,0,260,2.1,1,1,56.3,77777,9,999999999,200,0.0880,0,88,999.000,999.0,99.0 +1980,8,29,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,13.9,31,97400,0,0,426,0,0,0,0,0,0,0,300,1.5,3,2,56.3,77777,9,999999999,209,0.1260,0,88,999.000,999.0,99.0 +1980,8,29,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,14.4,34,97400,0,0,421,0,0,0,0,0,0,0,350,2.1,3,2,56.3,77777,9,999999999,220,0.1260,0,88,999.000,999.0,99.0 +1980,8,29,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,14.4,35,97400,0,0,418,0,0,0,0,0,0,0,340,2.1,2,2,56.3,77777,9,999999999,220,0.1260,0,88,999.000,999.0,99.0 +1980,8,29,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,14.4,36,97400,0,0,401,0,0,0,0,0,0,0,0,0.0,2,0,56.3,77777,9,999999999,220,0.1260,0,88,999.000,999.0,99.0 +1980,8,29,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,14.4,43,97400,0,0,400,0,0,0,0,0,0,0,80,2.6,2,2,56.3,77777,9,999999999,220,0.1260,0,88,999.000,999.0,99.0 +1980,8,29,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,15.6,47,97500,0,0,393,0,0,0,0,0,0,0,100,1.5,3,1,72.4,77777,9,999999999,240,0.1260,0,88,999.000,999.0,99.0 +1980,8,29,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,15.6,47,97600,129,1307,393,47,222,22,4600,12800,3300,410,140,1.5,1,1,64.4,77777,9,999999999,240,0.1260,0,88,999.000,999.0,99.0 +1980,8,29,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,15.6,43,97600,410,1340,402,202,467,58,21200,41900,8300,1130,80,2.1,1,1,64.4,77777,9,999999999,240,0.1260,0,88,999.000,999.0,99.0 +1980,8,29,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,15.6,37,97700,674,1340,417,454,739,82,47900,72700,11300,1800,110,2.6,1,1,56.3,77777,9,999999999,240,0.1260,0,88,999.000,999.0,99.0 +1980,8,29,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34.4,15.6,32,97700,901,1340,421,663,809,117,69800,81200,15100,2990,120,2.6,0,0,64.4,77777,9,999999999,230,0.1260,0,88,999.000,999.0,99.0 +1980,8,29,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.7,15.0,27,97700,1074,1340,433,824,874,120,84700,87400,14500,3430,100,2.6,0,0,64.4,77777,9,999999999,220,0.1260,0,88,999.000,999.0,99.0 +1980,8,29,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.2,11.7,21,97600,1182,1340,431,919,889,131,94200,89000,15500,5010,60,2.6,0,0,64.4,77777,9,999999999,180,0.1260,0,88,999.000,999.0,99.0 +1980,8,29,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,38.3,11.1,19,97600,1218,1340,436,956,895,139,97800,89600,16100,6020,300,2.6,0,0,72.4,77777,9,999999999,170,0.1260,0,88,999.000,999.0,99.0 +1980,8,29,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,39.4,11.1,18,97500,1179,1340,442,920,886,137,94200,88700,16000,5060,170,2.6,0,0,64.4,77777,9,999999999,180,0.1260,0,88,999.000,999.0,99.0 +1980,8,29,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,39.4,12.2,20,97400,1067,1340,444,829,863,138,87700,87200,18100,4650,260,3.1,0,0,64.4,77777,9,999999999,190,0.1260,0,88,999.000,999.0,99.0 +1980,8,29,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,40.0,11.1,18,97300,891,1340,446,653,827,99,69600,83500,14000,2630,270,5.7,0,0,80.5,77777,9,999999999,180,0.1260,0,88,999.000,999.0,99.0 +1980,8,29,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,39.4,10.6,18,97300,661,1340,442,463,757,86,48100,74100,11500,1830,250,3.1,0,0,96.6,77777,9,999999999,180,0.0960,0,88,999.000,999.0,99.0 +1980,8,29,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,39.4,10.6,18,97200,396,1340,442,230,620,44,24000,55600,7500,940,260,3.1,0,0,96.6,77777,9,999999999,180,0.1260,0,88,999.000,999.0,99.0 +1980,8,29,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.8,10.0,19,97200,115,1240,432,37,239,11,3700,15200,2200,260,240,3.1,0,0,96.6,77777,9,999999999,170,0.1260,0,88,999.000,999.0,99.0 +1980,8,29,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.7,10.6,20,97300,0,0,426,0,0,0,0,0,0,0,220,1.5,0,0,56.3,77777,9,999999999,170,0.1260,0,88,999.000,999.0,99.0 +1980,8,29,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.6,9.4,20,97300,0,0,419,0,0,0,0,0,0,0,230,1.5,0,0,56.3,77777,9,999999999,160,0.1260,0,88,999.000,999.0,99.0 +1980,8,29,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34.4,9.4,22,97300,0,0,412,0,0,0,0,0,0,0,240,1.5,0,0,56.3,77777,9,999999999,160,0.1260,0,88,999.000,999.0,99.0 +1980,8,29,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,9.4,24,97300,0,0,404,0,0,0,0,0,0,0,260,1.5,0,0,56.3,77777,9,999999999,160,0.1260,0,88,999.000,999.0,99.0 +1980,8,29,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,8.3,23,97300,0,0,397,0,0,0,0,0,0,0,290,1.0,0,0,56.3,77777,9,999999999,150,0.1260,0,88,999.000,999.0,99.0 +1980,8,30,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,8.3,23,97300,0,0,397,0,0,0,0,0,0,0,50,1.5,0,0,56.3,77777,9,999999999,150,0.1620,0,88,999.000,999.0,99.0 +1980,8,30,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,8.9,29,97300,0,0,390,0,0,0,0,0,0,0,120,1.5,1,1,56.3,77777,9,999999999,160,0.1620,0,88,999.000,999.0,99.0 +1980,8,30,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,11.1,34,97300,0,0,390,0,0,0,0,0,0,0,80,1.5,1,1,56.3,77777,9,999999999,180,0.1620,0,88,999.000,999.0,99.0 +1980,8,30,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,11.7,38,97300,0,0,385,0,0,0,0,0,0,0,90,2.1,1,1,56.3,77777,9,999999999,190,0.1620,0,88,999.000,999.0,99.0 +1980,8,30,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,11.1,38,97300,0,0,387,0,0,0,0,0,0,0,80,1.5,2,2,56.3,77777,9,999999999,180,0.1620,0,88,999.000,999.0,99.0 +1980,8,30,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,10.0,36,97400,0,0,386,0,0,0,0,0,0,0,100,2.1,3,3,56.3,77777,9,999999999,170,0.1620,0,88,999.000,999.0,99.0 +1980,8,30,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,10.0,35,97400,126,1285,380,49,244,22,4900,14000,3400,410,80,1.5,1,1,72.4,77777,9,999999999,170,0.1620,0,88,999.000,999.0,99.0 +1980,8,30,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,10.0,33,97400,407,1341,379,232,612,46,24400,55200,7600,980,90,1.0,0,0,72.4,77777,9,999999999,170,0.1620,0,88,999.000,999.0,99.0 +1980,8,30,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,10.0,27,97400,671,1341,396,454,740,82,47700,72700,11200,1790,100,2.1,0,0,72.4,77777,9,999999999,170,0.1620,0,88,999.000,999.0,99.0 +1980,8,30,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,9.4,24,97400,898,1341,404,656,819,106,69900,82500,14400,2790,140,2.1,0,0,64.4,77777,9,999999999,160,0.1620,0,88,999.000,999.0,99.0 +1980,8,30,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34.4,8.9,21,97400,1072,1341,412,820,863,129,84300,86200,15300,3480,190,2.6,0,0,64.4,77777,9,999999999,160,0.1620,0,88,999.000,999.0,99.0 +1980,8,30,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.1,8.3,18,97300,1180,1341,420,918,882,139,94000,88300,16100,5100,200,3.1,0,0,64.4,77777,9,999999999,150,0.1620,0,88,999.000,999.0,99.0 +1980,8,30,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.7,7.2,16,97200,1215,1341,422,961,898,144,98300,89900,16600,6040,250,2.6,0,0,56.3,77777,9,999999999,140,0.1620,0,88,999.000,999.0,99.0 +1980,8,30,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.8,7.2,15,97200,1175,1341,428,929,895,141,95000,89600,16300,5050,260,3.6,0,0,56.3,77777,9,999999999,140,0.1620,0,88,999.000,999.0,99.0 +1980,8,30,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,38.9,7.8,15,97100,1063,1341,435,833,885,128,85500,88400,15200,3390,300,4.6,0,0,56.3,77777,9,999999999,140,0.1620,0,88,999.000,999.0,99.0 +1980,8,30,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,39.4,7.8,14,97000,886,1341,437,660,840,100,70200,84700,14100,2630,300,3.1,0,0,72.4,77777,9,999999999,140,0.1620,0,88,999.000,999.0,99.0 +1980,8,30,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,39.4,7.8,14,96900,656,1341,437,449,696,105,47100,68700,13400,2240,250,4.1,0,0,72.4,77777,9,999999999,140,0.1400,0,88,999.000,999.0,99.0 +1980,8,30,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,38.9,7.2,14,96900,390,1341,434,226,594,51,23200,52700,7800,1030,250,2.6,0,0,80.5,77777,9,999999999,130,0.1620,0,88,999.000,999.0,99.0 +1980,8,30,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,38.3,7.2,15,96900,110,1218,430,35,202,12,3300,12700,2100,280,270,2.1,0,0,80.5,77777,9,999999999,140,0.1620,0,88,999.000,999.0,99.0 +1980,8,30,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34.4,8.9,21,96900,0,0,412,0,0,0,0,0,0,0,200,1.5,0,0,56.3,77777,9,999999999,160,0.1620,0,88,999.000,999.0,99.0 +1980,8,30,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.9,8.9,21,96900,0,0,409,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,150,0.1620,0,88,999.000,999.0,99.0 +1980,8,30,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,8.3,21,96900,0,0,405,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,150,0.1620,0,88,999.000,999.0,99.0 +1980,8,30,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,7.8,22,96900,0,0,399,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,150,0.1620,0,88,999.000,999.0,99.0 +1980,8,30,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,6.7,22,97000,0,0,389,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,130,0.1620,0,88,999.000,999.0,99.0 +1980,8,31,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,6.1,22,97000,0,0,385,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,130,0.0420,0,88,999.000,999.0,99.0 +1980,8,31,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,6.7,23,97000,0,0,386,0,0,0,0,0,0,0,320,1.5,0,0,56.3,77777,9,999999999,130,0.0420,0,88,999.000,999.0,99.0 +1980,8,31,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,6.7,28,97000,0,0,369,0,0,0,0,0,0,0,90,1.5,0,0,56.3,77777,9,999999999,140,0.0420,0,88,999.000,999.0,99.0 +1980,8,31,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,9.4,35,97000,0,0,370,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,160,0.0420,0,88,999.000,999.0,99.0 +1980,8,31,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,8.9,35,97000,0,0,367,0,0,0,0,0,0,0,80,3.6,0,0,56.3,77777,9,999999999,160,0.0420,0,88,999.000,999.0,99.0 +1980,8,31,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,7.8,32,97000,0,0,365,0,0,0,0,0,0,0,80,1.5,0,0,72.4,77777,9,999999999,140,0.0420,0,88,999.000,999.0,99.0 +1980,8,31,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,7.2,31,97100,123,1286,364,49,292,16,4700,18500,2900,350,80,2.1,0,0,72.4,77777,9,999999999,140,0.0420,0,88,999.000,999.0,99.0 +1980,8,31,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,7.2,27,97100,404,1342,375,243,677,38,25700,61000,7200,950,90,1.5,0,0,72.4,77777,9,999999999,140,0.0420,0,88,999.000,999.0,99.0 +1980,8,31,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,7.8,26,97100,669,1342,384,469,819,60,49300,79800,9400,1460,110,2.1,0,0,72.4,77777,9,999999999,150,0.0420,0,88,999.000,999.0,99.0 +1980,8,31,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,6.7,20,97100,896,1342,397,664,875,78,69300,87100,11000,2060,40,2.1,0,0,72.4,77777,9,999999999,130,0.0420,0,88,999.000,999.0,99.0 +1980,8,31,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34.4,6.7,18,97100,1069,1342,409,849,939,98,87900,94000,12800,3080,270,2.6,0,0,72.4,77777,9,999999999,140,0.0420,0,88,999.000,999.0,99.0 +1980,8,31,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.6,5.6,15,97100,1177,1342,413,964,970,110,99500,97300,13900,4420,280,4.1,0,0,72.4,77777,9,999999999,120,0.0420,0,88,999.000,999.0,99.0 +1980,8,31,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.7,5.6,15,97000,1212,1342,419,1005,983,114,103600,98600,14200,5160,280,2.6,0,0,80.5,77777,9,999999999,130,0.0420,0,88,999.000,999.0,99.0 +1980,8,31,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.2,0.6,10,97000,1172,1342,415,963,957,123,98900,95900,14900,4640,270,2.1,0,0,80.5,77777,9,999999999,90,0.0420,0,88,999.000,999.0,99.0 +1980,8,31,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.8,-1.7,8,96900,1059,1342,415,862,938,118,88700,93800,14500,3270,260,3.1,0,0,80.5,77777,9,999999999,80,0.0420,0,88,999.000,999.0,99.0 +1980,8,31,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.8,0.0,9,96900,882,1342,417,681,897,88,70600,89200,11900,2130,270,3.1,0,0,80.5,77777,9,999999999,90,0.0420,0,88,999.000,999.0,99.0 +1980,8,31,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.8,1.1,10,96800,651,1342,419,470,827,64,48900,80300,9800,1470,280,3.1,0,0,80.5,77777,9,999999999,90,0.0550,0,88,999.000,999.0,99.0 +1980,8,31,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.2,0.0,9,96800,384,1342,414,238,692,36,24900,61700,7100,910,300,2.6,0,0,80.5,77777,9,999999999,80,0.0420,0,88,999.000,999.0,99.0 +1980,8,31,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.6,1.1,11,96800,105,1174,407,37,292,4,3400,19200,1600,150,290,3.1,0,0,80.5,77777,9,999999999,90,0.0420,0,88,999.000,999.0,99.0 +1980,8,31,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,1.7,14,96900,0,0,390,0,0,0,0,0,0,0,240,1.5,0,0,56.3,77777,9,999999999,100,0.0420,0,88,999.000,999.0,99.0 +1980,8,31,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,3.9,19,96900,0,0,382,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,110,0.0420,0,88,999.000,999.0,99.0 +1980,8,31,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.5,4.6,20,97000,0,0,385,0,0,0,0,0,0,0,0,0.4,0,0,56.3,77777,9,999999999,110,0.0420,0,88,999.000,999.0,99.0 +1980,8,31,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.9,5.3,20,97000,0,0,388,0,0,0,0,0,0,0,0,0.9,0,0,56.3,77777,9,999999999,110,0.0420,0,88,999.000,999.0,99.0 +1980,8,31,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.4,6.0,25,97000,0,0,392,0,0,0,0,0,0,0,120,1.3,0,0,56.3,77777,9,999999999,120,0.0420,0,88,999.000,999.0,99.0 +1987,9,1,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.9,6.8,26,97600,0,0,419,0,0,0,0,0,0,0,90,1.8,8,5,56.3,7620,9,999999999,180,0.1070,0,88,999.000,999.0,99.0 +1987,9,1,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.4,7.5,27,97700,0,0,423,0,0,0,0,0,0,0,70,2.2,8,5,56.3,7620,9,999999999,180,0.1070,0,88,999.000,999.0,99.0 +1987,9,1,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,8.2,22,97700,0,0,426,0,0,0,0,0,0,0,60,2.7,8,5,56.3,7620,9,999999999,150,0.1070,0,88,999.000,999.0,99.0 +1987,9,1,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,8.9,22,97700,0,0,423,0,0,0,0,0,0,0,70,3.1,6,3,56.3,77777,9,999999999,150,0.1070,0,88,999.000,999.0,99.0 +1987,9,1,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,8.9,24,97700,0,0,421,0,0,0,0,0,0,0,90,2.6,7,4,56.3,7620,9,999999999,160,0.1070,0,88,999.000,999.0,99.0 +1987,9,1,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,10.0,26,97800,0,0,419,0,0,0,0,0,0,0,80,3.1,6,4,56.3,7620,9,999999999,170,0.1070,0,88,999.000,999.0,99.0 +1987,9,1,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,9.4,26,97900,122,1263,412,42,45,37,4500,2500,4300,770,100,2.6,6,3,72.4,77777,9,999999999,160,0.1740,0,88,999.000,999.0,99.0 +1987,9,1,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,10.6,26,97900,403,1342,420,213,332,113,22600,30000,13600,2250,80,3.1,6,3,56.3,77777,9,999999999,170,0.1740,0,88,999.000,999.0,99.0 +1987,9,1,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34.4,10.0,22,97900,668,1342,427,438,581,147,46800,58300,17700,3060,100,5.7,4,2,56.3,77777,9,999999999,160,0.1740,0,88,999.000,999.0,99.0 +1987,9,1,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.6,10.0,21,97900,895,1342,433,625,648,192,65200,65000,21700,4920,100,4.1,3,2,56.3,77777,9,999999999,170,0.1740,0,88,999.000,999.0,99.0 +1987,9,1,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.2,10.0,19,97900,1068,1342,437,745,710,177,79600,72700,21500,6340,80,5.2,2,1,72.4,77777,9,999999999,170,0.1740,0,88,999.000,999.0,99.0 +1987,9,1,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.8,10.6,19,97800,1176,1342,441,884,777,199,94700,79700,24600,9540,120,4.1,1,1,72.4,77777,9,999999999,170,0.1740,0,88,999.000,999.0,99.0 +1987,9,1,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,39.4,10.6,18,97700,1211,1342,442,942,833,187,98400,83700,22700,9300,100,3.6,0,0,72.4,77777,9,999999999,180,0.1740,0,88,999.000,999.0,99.0 +1987,9,1,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,40.6,10.0,16,97600,1171,1342,456,867,787,176,90500,79100,21300,7570,120,2.6,1,1,72.4,77777,9,999999999,170,0.1740,0,88,999.000,999.0,99.0 +1987,9,1,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,41.1,9.4,15,97500,1058,1342,458,813,806,174,83800,80500,20200,5320,90,2.1,1,1,56.3,77777,9,999999999,160,0.1740,0,88,999.000,999.0,99.0 +1987,9,1,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,41.1,8.3,14,97400,880,1342,448,647,751,150,68200,76100,18200,3900,130,2.1,0,0,56.3,77777,9,999999999,150,0.1740,0,88,999.000,999.0,99.0 +1987,9,1,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,41.1,6.1,12,97300,650,1342,444,437,647,119,45200,63300,14500,2480,90,3.1,0,0,56.3,77777,9,999999999,130,0.1740,0,88,999.000,999.0,99.0 +1987,9,1,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,40.6,4.4,11,97300,383,1342,439,213,459,79,21500,39600,10200,1430,120,4.6,0,0,56.3,77777,9,999999999,120,0.1740,0,88,999.000,999.0,99.0 +1987,9,1,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,38.9,5.0,12,97300,103,1174,431,44,95,33,4400,4300,4000,610,110,5.2,0,0,56.3,77777,9,999999999,120,0.1740,0,88,999.000,999.0,99.0 +1987,9,1,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.2,6.7,15,97400,0,0,432,0,0,0,0,0,0,0,120,2.1,1,1,56.3,77777,9,999999999,130,0.1070,0,88,999.000,999.0,99.0 +1987,9,1,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.1,6.1,16,97400,0,0,438,0,0,0,0,0,0,0,120,2.6,4,4,56.3,77777,9,999999999,130,0.1070,0,88,999.000,999.0,99.0 +1987,9,1,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.0,7.2,18,97500,0,0,441,0,0,0,0,0,0,0,100,2.6,6,6,56.3,3660,9,999999999,140,0.1070,0,88,999.000,999.0,99.0 +1987,9,1,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34.4,7.8,19,97500,0,0,431,0,0,0,0,0,0,0,80,2.1,4,4,56.3,77777,9,999999999,140,0.1070,0,88,999.000,999.0,99.0 +1987,9,1,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,8.3,21,97600,0,0,418,0,0,0,0,0,0,0,100,2.1,2,2,56.3,77777,9,999999999,150,0.1070,0,88,999.000,999.0,99.0 +1987,9,2,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,8.9,24,97600,0,0,413,0,0,0,0,0,0,0,80,2.1,2,2,56.3,77777,9,999999999,160,0.1060,0,88,999.000,999.0,99.0 +1987,9,2,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,8.9,24,97600,0,0,410,0,0,0,0,0,0,0,80,2.1,2,2,56.3,77777,9,999999999,150,0.1060,0,88,999.000,999.0,99.0 +1987,9,2,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,9.4,26,97600,0,0,408,0,0,0,0,0,0,0,100,2.1,3,2,56.3,77777,9,999999999,160,0.1060,0,88,999.000,999.0,99.0 +1987,9,2,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,8.9,26,97600,0,0,399,0,0,0,0,0,0,0,80,1.5,2,1,56.3,77777,9,999999999,160,0.1060,0,88,999.000,999.0,99.0 +1987,9,2,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,10.0,30,97600,0,0,394,0,0,0,0,0,0,0,60,2.6,1,1,56.3,77777,9,999999999,170,0.1060,0,88,999.000,999.0,99.0 +1987,9,2,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,9.4,29,97600,0,0,394,0,0,0,0,0,0,0,70,2.1,3,1,96.6,77777,9,999999999,160,0.1060,0,88,999.000,999.0,99.0 +1987,9,2,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,8.9,26,97600,120,1264,399,44,110,32,4600,5300,4000,580,60,2.6,2,1,64.4,77777,9,999999999,160,0.1480,0,88,999.000,999.0,99.0 +1987,9,2,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,8.9,24,97600,401,1342,408,216,433,87,22900,38300,11500,1600,90,3.6,3,1,64.4,77777,9,999999999,160,0.1480,0,88,999.000,999.0,99.0 +1987,9,2,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.0,8.3,19,97600,666,1342,414,450,665,119,47000,65400,14500,2510,70,6.2,2,0,72.4,77777,9,999999999,150,0.1480,0,88,999.000,999.0,99.0 +1987,9,2,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.7,6.7,16,97600,893,1342,421,655,753,153,69400,76400,18500,4030,110,7.2,2,0,72.4,77777,9,999999999,140,0.1480,0,88,999.000,999.0,99.0 +1987,9,2,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.2,6.1,15,97600,1066,1342,423,829,822,173,85600,82100,20200,5400,90,5.7,2,0,64.4,77777,9,999999999,130,0.1480,0,88,999.000,999.0,99.0 +1987,9,2,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,38.3,5.6,13,97500,1173,1342,428,958,811,246,101100,82300,29000,11480,120,5.7,6,0,64.4,77777,9,999999999,120,0.1480,0,88,999.000,999.0,99.0 +1987,9,2,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,38.9,6.1,13,97500,1208,1342,432,989,809,257,104400,82100,30300,13580,100,3.1,7,0,64.4,77777,9,999999999,130,0.1480,0,88,999.000,999.0,99.0 +1987,9,2,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,39.4,3.9,11,97400,1167,1342,432,966,809,258,101400,81900,30000,11740,90,3.1,7,0,80.5,77777,9,999999999,110,0.1480,0,88,999.000,999.0,99.0 +1987,9,2,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,40.6,5.0,11,97300,1054,1342,440,841,797,211,88400,80900,24800,7170,100,4.1,5,0,80.5,77777,9,999999999,120,0.1480,0,88,999.000,999.0,99.0 +1987,9,2,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,39.4,5.0,12,97200,875,1342,442,640,715,169,66800,72000,19700,4290,90,3.1,5,1,80.5,77777,9,999999999,120,0.1480,0,88,999.000,999.0,99.0 +1987,9,2,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,39.4,4.4,12,97100,645,1342,441,425,618,125,43900,60300,14900,2570,70,2.6,4,1,80.5,77777,9,999999999,120,0.1480,0,88,999.000,999.0,99.0 +1987,9,2,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,39.4,5.0,12,97100,377,1342,448,204,376,96,21000,32400,11900,1790,110,2.6,5,2,80.5,77777,9,999999999,120,0.1480,0,88,999.000,999.0,99.0 +1987,9,2,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.8,5.6,14,97100,98,1152,439,44,41,39,4600,2100,4400,810,110,3.1,7,2,56.3,77777,9,999999999,130,0.1480,0,88,999.000,999.0,99.0 +1987,9,2,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.8,5.0,13,97100,0,0,439,0,0,0,0,0,0,0,90,2.1,7,2,56.3,77777,9,999999999,120,0.1060,0,88,999.000,999.0,99.0 +1987,9,2,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.7,6.7,16,97200,0,0,429,0,0,0,0,0,0,0,60,2.1,9,1,56.3,77777,9,999999999,140,0.1060,0,88,999.000,999.0,99.0 +1987,9,2,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.0,7.8,19,97200,0,0,427,0,0,0,0,0,0,0,80,2.6,8,2,56.3,77777,9,999999999,150,0.1060,0,88,999.000,999.0,99.0 +1987,9,2,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.9,7.8,20,97200,0,0,425,0,0,0,0,0,0,0,90,2.6,8,3,56.3,77777,9,999999999,150,0.1060,0,88,999.000,999.0,99.0 +1987,9,2,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.9,6.7,18,97200,0,0,427,0,0,0,0,0,0,0,90,2.1,8,4,56.3,77777,9,999999999,130,0.1060,0,88,999.000,999.0,99.0 +1987,9,3,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,6.7,19,97300,0,0,420,0,0,0,0,0,0,0,110,1.5,7,3,56.3,77777,9,999999999,130,0.1060,0,88,999.000,999.0,99.0 +1987,9,3,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,6.7,20,97300,0,0,417,0,0,0,0,0,0,0,60,2.1,7,3,56.3,77777,9,999999999,140,0.1060,0,88,999.000,999.0,99.0 +1987,9,3,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,8.3,24,97300,0,0,401,0,0,0,0,0,0,0,40,2.1,5,1,56.3,77777,9,999999999,150,0.1060,0,88,999.000,999.0,99.0 +1987,9,3,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,9.4,29,97300,0,0,394,0,0,0,0,0,0,0,30,2.1,4,1,56.3,77777,9,999999999,160,0.1060,0,88,999.000,999.0,99.0 +1987,9,3,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,11.7,33,97300,0,0,412,0,0,0,0,0,0,0,70,2.6,7,5,56.3,7620,9,999999999,180,0.1060,0,88,999.000,999.0,99.0 +1987,9,3,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,11.7,36,97300,0,0,406,0,0,0,0,0,0,0,20,2.1,8,5,56.3,7620,9,999999999,190,0.1060,0,88,999.000,999.0,99.0 +1987,9,3,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,11.7,36,97400,117,1242,410,56,42,52,6100,2800,5800,1100,90,2.6,8,6,64.4,3660,9,999999999,190,0.0440,0,88,999.000,999.0,99.0 +1987,9,3,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,11.7,32,97400,398,1343,431,134,70,113,14700,6300,12800,2980,50,2.1,8,8,48.3,3660,9,999999999,180,0.0440,0,88,999.000,999.0,99.0 +1987,9,3,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,13.9,35,97400,663,1343,428,231,152,156,25700,15700,17900,3870,70,2.1,7,6,40.2,3660,9,999999999,209,0.0440,0,88,999.000,999.0,99.0 +1987,9,3,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,12.2,28,97500,890,1343,438,625,455,323,66800,48700,34500,8980,20,0.5,6,6,48.3,3660,9,999999999,190,0.0440,0,88,999.000,999.0,99.0 +1987,9,3,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34.4,11.1,24,97400,1063,1343,443,778,692,227,81600,70000,26000,7810,90,3.1,7,6,56.3,3660,9,999999999,180,0.0440,0,88,999.000,999.0,99.0 +1987,9,3,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34.4,11.1,24,97400,1170,1343,443,717,415,353,76100,43300,38200,16810,140,1.5,7,6,56.3,3660,9,999999999,180,0.0440,0,88,999.000,999.0,99.0 +1987,9,3,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34.4,13.9,29,97300,1205,1343,447,944,717,297,98500,72100,33700,15280,300,3.6,7,6,16.1,7620,9,999999999,209,0.0440,0,88,999.000,999.0,99.0 +1987,9,3,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34.4,12.2,26,97200,1163,1343,445,630,283,384,68900,30700,42200,16680,340,1.5,8,6,32.2,7620,9,999999999,190,0.0440,0,88,999.000,999.0,99.0 +1987,9,3,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.1,12.2,24,97100,1050,1343,477,526,147,410,57200,15600,45000,14200,330,2.1,10,9,40.2,7620,9,999999999,190,0.0440,0,88,999.000,999.0,99.0 +1987,9,3,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.1,11.7,23,97100,871,1343,490,395,11,387,44000,1200,43300,14000,210,1.5,10,10,32.2,7620,9,999999999,190,0.0440,0,88,999.000,999.0,99.0 +1987,9,3,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.6,11.7,24,97000,639,1343,487,203,9,198,22900,700,22500,7650,300,2.1,10,10,40.2,7620,9,999999999,190,0.0440,0,88,999.000,999.0,99.0 +1987,9,3,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.6,11.7,24,97000,371,1343,487,158,9,155,17000,600,16800,4520,210,2.1,10,10,40.2,6710,9,999999999,190,0.0440,0,88,999.000,999.0,99.0 +1987,9,3,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.0,12.2,25,97100,93,1108,471,52,76,44,5400,3800,5100,920,180,2.1,9,9,48.3,3660,9,999999999,190,0.0440,0,88,999.000,999.0,99.0 +1987,9,3,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,15.0,36,97200,0,0,468,0,0,0,0,0,0,0,140,5.2,10,10,11.3,3660,9,999999999,230,0.1060,0,88,999.000,999.0,99.0 +1987,9,3,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,16.7,45,97300,0,0,426,0,0,0,0,0,0,0,120,2.6,7,6,16.1,6710,9,999999999,250,0.1060,0,88,999.000,999.0,99.0 +1987,9,3,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,17.2,49,97400,0,0,432,0,0,0,0,0,0,0,110,3.1,9,8,32.2,3660,9,999999999,260,0.1060,0,88,999.000,999.0,99.0 +1987,9,3,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,17.8,55,97400,0,0,448,0,0,0,0,0,0,0,70,3.1,10,10,40.2,7620,9,999999999,270,0.1060,0,88,999.000,999.0,99.0 +1987,9,3,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,17.2,53,97300,0,0,447,0,0,0,0,0,0,0,110,3.1,10,10,56.3,3660,9,999999999,260,0.1060,0,88,999.000,999.0,99.0 +1987,9,4,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,16.1,49,97400,0,0,446,0,0,0,0,0,0,0,120,4.1,10,10,56.3,3660,9,999999999,240,0.1050,0,88,999.000,999.0,99.0 +1987,9,4,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,16.1,51,97400,0,0,442,0,0,0,0,0,0,0,100,2.6,10,10,56.3,3660,9,999999999,250,0.1050,0,88,999.000,999.0,99.0 +1987,9,4,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,16.7,53,97400,0,0,443,0,0,0,0,0,0,0,140,2.1,10,10,56.3,3660,9,999999999,250,0.1050,0,88,999.000,999.0,99.0 +1987,9,4,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,16.1,52,97400,0,0,439,0,0,0,0,0,0,0,110,3.1,10,10,56.3,3660,9,999999999,240,0.1050,0,88,999.000,999.0,99.0 +1987,9,4,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,16.7,54,97400,0,0,440,0,0,0,0,0,0,0,100,3.1,10,10,56.3,3660,9,999999999,250,0.1050,0,88,999.000,999.0,99.0 +1987,9,4,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,17.8,62,97400,0,0,414,0,0,0,0,0,0,0,90,2.6,8,8,48.3,3660,9,999999999,270,0.1050,0,88,999.000,999.0,99.0 +1987,9,4,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,17.8,60,97500,114,1220,417,32,11,31,3500,700,3400,750,120,2.6,8,8,64.4,3660,9,999999999,270,0.1810,0,88,999.000,999.0,99.0 +1987,9,4,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,16.7,53,97500,395,1344,431,129,29,120,14100,2600,13300,3110,150,3.6,10,9,56.3,3660,9,999999999,260,0.1810,0,88,999.000,999.0,99.0 +1987,9,4,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,15.6,47,97600,661,1344,424,301,103,251,33100,10300,28000,7130,110,3.1,10,8,48.3,3660,9,999999999,240,0.1810,0,88,999.000,999.0,99.0 +1987,9,4,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,16.1,46,97600,888,1344,419,522,268,344,56500,28100,37900,9920,90,2.6,9,6,48.3,3660,9,999999999,250,0.1810,0,88,999.000,999.0,99.0 +1987,9,4,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,15.6,39,97500,1061,1344,431,587,331,325,64200,35900,35800,11110,100,2.6,8,6,48.3,3660,9,999999999,240,0.1810,0,88,999.000,999.0,99.0 +1987,9,4,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,15.0,38,97400,1168,1344,435,603,269,368,66100,29200,40600,16060,100,3.1,9,7,48.3,3660,9,999999999,230,0.1810,0,88,999.000,999.0,99.0 +1987,9,4,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,15.6,35,97400,1201,1344,430,821,504,368,87100,52600,40000,19530,110,3.1,7,3,48.3,77777,9,999999999,230,0.1810,0,88,999.000,999.0,99.0 +1987,9,4,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,15.0,33,97300,1160,1344,432,894,622,353,94600,64900,38400,16220,120,3.1,7,3,48.3,77777,9,999999999,230,0.1810,0,88,999.000,999.0,99.0 +1987,9,4,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.9,15.0,32,97300,1045,1344,431,750,637,252,77900,63900,28000,8200,120,3.1,6,2,56.3,77777,9,999999999,230,0.1810,0,88,999.000,999.0,99.0 +1987,9,4,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,14.4,32,97100,866,1344,421,604,674,166,63200,67900,19300,4160,100,2.1,3,1,48.3,77777,9,999999999,220,0.1810,0,88,999.000,999.0,99.0 +1987,9,4,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,13.3,30,97100,634,1344,429,379,432,173,39400,42800,19200,3600,130,2.1,3,3,56.3,77777,9,999999999,209,0.1810,0,88,999.000,999.0,99.0 +1987,9,4,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,13.3,31,97100,365,1344,427,177,320,88,18300,27300,10900,1630,120,2.6,3,3,56.3,77777,9,999999999,209,0.1810,0,88,999.000,999.0,99.0 +1987,9,4,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,15.6,39,97200,88,1086,431,33,18,31,3600,1100,3500,730,60,4.1,8,6,56.3,7620,9,999999999,240,0.1810,0,88,999.000,999.0,99.0 +1987,9,4,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,15.0,39,97200,0,0,420,0,0,0,0,0,0,0,80,2.1,4,4,56.3,77777,9,999999999,230,0.1050,0,88,999.000,999.0,99.0 +1987,9,4,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,15.6,43,97200,0,0,414,0,0,0,0,0,0,0,40,2.1,4,4,56.3,77777,9,999999999,240,0.1050,0,88,999.000,999.0,99.0 +1987,9,4,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,15.0,43,97300,0,0,404,0,0,0,0,0,0,0,360,2.6,2,2,56.3,77777,9,999999999,230,0.1050,0,88,999.000,999.0,99.0 +1987,9,4,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,14.4,44,97300,0,0,384,0,0,0,0,0,0,0,330,2.1,0,0,56.3,77777,9,999999999,220,0.1050,0,88,999.000,999.0,99.0 +1987,9,4,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,14.4,46,97300,0,0,389,0,0,0,0,0,0,0,120,2.1,3,1,56.3,77777,9,999999999,220,0.1050,0,88,999.000,999.0,99.0 +1987,9,5,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,14.4,46,97200,0,0,389,0,0,0,0,0,0,0,120,2.1,4,1,56.3,77777,9,999999999,220,0.1050,0,88,999.000,999.0,99.0 +1987,9,5,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,15.0,51,97200,0,0,384,0,0,0,0,0,0,0,30,2.1,4,1,56.3,77777,9,999999999,230,0.1050,0,88,999.000,999.0,99.0 +1987,9,5,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,15.0,52,97200,0,0,386,0,0,0,0,0,0,0,10,1.5,6,2,56.3,77777,9,999999999,230,0.1050,0,88,999.000,999.0,99.0 +1987,9,5,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,14.4,49,97300,0,0,398,0,0,0,0,0,0,0,160,2.1,8,5,56.3,7620,9,999999999,220,0.1050,0,88,999.000,999.0,99.0 +1987,9,5,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,14.4,50,97300,0,0,395,0,0,0,0,0,0,0,110,2.6,8,5,56.3,3350,9,999999999,220,0.1050,0,88,999.000,999.0,99.0 +1987,9,5,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,14.4,50,97300,0,0,395,0,0,0,0,0,0,0,80,2.1,8,5,80.5,7620,9,999999999,220,0.1050,0,88,999.000,999.0,99.0 +1987,9,5,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,14.4,50,97300,111,1221,395,45,85,36,4600,4000,4300,670,300,1.5,8,5,56.3,7620,9,999999999,220,0.0500,0,88,999.000,999.0,99.0 +1987,9,5,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,14.4,47,97400,393,1344,395,203,261,126,21200,23300,14400,2580,110,1.5,4,3,56.3,77777,9,999999999,220,0.0500,0,88,999.000,999.0,99.0 +1987,9,5,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,15.0,43,97400,658,1344,398,466,807,69,48600,78400,10200,1510,110,2.1,2,1,56.3,77777,9,999999999,230,0.0500,0,88,999.000,999.0,99.0 +1987,9,5,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,15.0,40,97400,885,1344,404,649,858,81,67500,85300,11200,2060,110,2.6,1,1,48.3,77777,9,999999999,230,0.0500,0,88,999.000,999.0,99.0 +1987,9,5,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,15.0,36,97400,1058,1344,413,785,892,79,81700,89400,11100,2640,330,1.0,1,1,56.3,77777,9,999999999,230,0.0500,0,88,999.000,999.0,99.0 +1987,9,5,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,13.3,31,97400,1165,1344,409,896,920,94,92700,92300,12500,3810,290,2.6,0,0,56.3,77777,9,999999999,209,0.0500,0,88,999.000,999.0,99.0 +1987,9,5,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34.4,13.3,28,97300,1198,1344,418,945,947,96,97700,95100,12700,4310,300,3.1,0,0,56.3,77777,9,999999999,209,0.0500,0,88,999.000,999.0,99.0 +1987,9,5,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.0,11.7,24,97200,1156,1344,419,921,956,94,95300,95900,12600,3710,200,2.6,0,0,56.3,77777,9,999999999,180,0.0500,0,88,999.000,999.0,99.0 +1987,9,5,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.0,10.0,22,97100,1041,1344,416,813,930,87,84200,93100,11900,2710,290,2.6,0,0,56.3,77777,9,999999999,170,0.0500,0,88,999.000,999.0,99.0 +1987,9,5,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.1,10.6,21,97000,861,1344,423,652,891,76,67700,88500,10900,1950,330,2.1,0,0,56.3,77777,9,999999999,170,0.0500,0,88,999.000,999.0,99.0 +1987,9,5,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.6,12.2,24,97000,629,1344,423,451,824,60,46900,79700,9500,1410,320,3.1,0,0,56.3,77777,9,999999999,190,0.0500,0,88,999.000,999.0,99.0 +1987,9,5,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.0,12.2,25,97000,360,1344,427,213,616,45,21800,53600,7500,920,270,2.6,1,1,56.3,77777,9,999999999,190,0.0500,0,88,999.000,999.0,99.0 +1987,9,5,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.9,11.7,26,97000,83,1064,421,49,252,21,4300,13000,3200,380,310,2.1,1,1,56.3,77777,9,999999999,190,0.0500,0,88,999.000,999.0,99.0 +1987,9,5,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,12.8,29,97000,0,0,411,0,0,0,0,0,0,0,280,1.5,0,0,56.3,77777,9,999999999,200,0.1050,0,88,999.000,999.0,99.0 +1987,9,5,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,13.3,32,97100,0,0,414,0,0,0,0,0,0,0,210,1.5,1,1,56.3,77777,9,999999999,209,0.1050,0,88,999.000,999.0,99.0 +1987,9,5,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,12.8,32,97100,0,0,410,0,0,0,0,0,0,0,180,1.5,1,1,56.3,77777,9,999999999,200,0.1050,0,88,999.000,999.0,99.0 +1987,9,5,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,12.8,34,97100,0,0,410,0,0,0,0,0,0,0,260,1.5,2,2,56.3,77777,9,999999999,200,0.1050,0,88,999.000,999.0,99.0 +1987,9,5,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,11.1,32,97200,0,0,401,0,0,0,0,0,0,0,0,0.0,2,2,56.3,77777,9,999999999,180,0.1050,0,88,999.000,999.0,99.0 +1987,9,6,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,10.6,32,97200,0,0,385,0,0,0,0,0,0,0,70,1.5,0,0,56.3,77777,9,999999999,170,0.1050,0,88,999.000,999.0,99.0 +1987,9,6,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,10.0,32,97200,0,0,381,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,170,0.1050,0,88,999.000,999.0,99.0 +1987,9,6,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,13.9,43,97200,0,0,384,0,0,0,0,0,0,0,90,2.1,0,0,56.3,77777,9,999999999,220,0.1050,0,88,999.000,999.0,99.0 +1987,9,6,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,13.9,45,97200,0,0,378,0,0,0,0,0,0,0,110,1.5,0,0,56.3,77777,9,999999999,209,0.1050,0,88,999.000,999.0,99.0 +1987,9,6,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,15.0,52,97200,0,0,374,0,0,0,0,0,0,0,70,2.1,0,0,56.3,77777,9,999999999,230,0.1050,0,88,999.000,999.0,99.0 +1987,9,6,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,15.0,54,97200,0,0,371,0,0,0,0,0,0,0,70,2.1,0,0,56.3,77777,9,999999999,230,0.1050,0,88,999.000,999.0,99.0 +1987,9,6,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,14.4,52,97300,109,1199,370,41,89,32,4300,4100,3900,580,80,3.1,0,0,56.3,77777,9,999999999,220,0.1670,0,88,999.000,999.0,99.0 +1987,9,6,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,14.4,47,97300,390,1345,379,212,461,77,21600,40000,10000,1410,80,2.1,0,0,64.4,77777,9,999999999,220,0.1670,0,88,999.000,999.0,99.0 +1987,9,6,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,15.0,43,97400,655,1345,398,415,608,117,43300,59600,14200,2450,60,2.1,1,1,48.3,77777,9,999999999,230,0.1670,0,88,999.000,999.0,99.0 +1987,9,6,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,15.0,38,97400,882,1345,410,604,663,167,63400,66900,19400,4280,90,2.1,1,1,48.3,77777,9,999999999,230,0.1670,0,88,999.000,999.0,99.0 +1987,9,6,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.9,11.7,26,97400,1055,1345,413,802,808,166,83200,80900,19600,5090,170,2.6,0,0,48.3,77777,9,999999999,190,0.1670,0,88,999.000,999.0,99.0 +1987,9,6,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.6,9.4,20,97300,1162,1345,419,876,806,176,91400,81000,21300,7260,310,2.1,0,0,48.3,77777,9,999999999,160,0.1670,0,88,999.000,999.0,99.0 +1987,9,6,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.7,7.8,17,97300,1195,1345,431,845,676,240,89400,68800,28100,12020,230,2.1,1,1,48.3,77777,9,999999999,140,0.1670,0,88,999.000,999.0,99.0 +1987,9,6,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.2,8.9,18,97200,1152,1345,441,881,718,262,92200,72500,29900,11260,260,3.1,2,2,64.4,77777,9,999999999,160,0.1670,0,88,999.000,999.0,99.0 +1987,9,6,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.8,8.3,17,97100,1037,1345,443,751,671,229,78200,67700,25900,7390,40,3.1,2,2,64.4,77777,9,999999999,150,0.1670,0,88,999.000,999.0,99.0 +1987,9,6,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.8,7.8,16,97100,856,1345,437,600,681,162,62700,68600,18900,4020,300,3.1,3,1,64.4,77777,9,999999999,140,0.1670,0,88,999.000,999.0,99.0 +1987,9,6,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.7,7.2,16,97000,623,1345,422,421,634,123,43300,61400,14800,2480,230,2.6,2,0,64.4,77777,9,999999999,140,0.1670,0,88,999.000,999.0,99.0 +1987,9,6,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.1,6.7,16,97000,354,1345,418,192,425,78,20000,35900,10600,1430,250,3.1,2,0,56.3,77777,9,999999999,130,0.1670,0,88,999.000,999.0,99.0 +1987,9,6,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34.4,7.2,19,97000,79,1020,409,38,66,30,3800,3200,3600,620,320,2.6,2,0,56.3,77777,9,999999999,140,0.1670,0,88,999.000,999.0,99.0 +1987,9,6,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,8.3,21,97000,0,0,405,0,0,0,0,0,0,0,340,1.5,0,0,56.3,77777,9,999999999,150,0.1050,0,88,999.000,999.0,99.0 +1987,9,6,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,8.9,24,97100,0,0,400,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,160,0.1050,0,88,999.000,999.0,99.0 +1987,9,6,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,9.4,26,97100,0,0,395,0,0,0,0,0,0,0,210,2.1,0,0,56.3,77777,9,999999999,160,0.1050,0,88,999.000,999.0,99.0 +1987,9,6,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,8.3,26,97200,0,0,388,0,0,0,0,0,0,0,240,2.1,0,0,56.3,77777,9,999999999,150,0.1050,0,88,999.000,999.0,99.0 +1987,9,6,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,6.7,25,97200,0,0,380,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,140,0.1050,0,88,999.000,999.0,99.0 +1987,9,7,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,5.0,23,97200,0,0,375,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,120,0.1040,0,88,999.000,999.0,99.0 +1987,9,7,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,3.3,21,97200,0,0,370,0,0,0,0,0,0,0,230,2.1,0,0,56.3,77777,9,999999999,110,0.1040,0,88,999.000,999.0,99.0 +1987,9,7,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,4.4,24,97200,0,0,366,0,0,0,0,0,0,0,330,1.5,0,0,56.3,77777,9,999999999,120,0.1040,0,88,999.000,999.0,99.0 +1987,9,7,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,4.4,25,97200,0,0,363,0,0,0,0,0,0,0,270,1.5,0,0,56.3,77777,9,999999999,120,0.1040,0,88,999.000,999.0,99.0 +1987,9,7,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,5.6,29,97200,0,0,360,0,0,0,0,0,0,0,360,1.5,0,0,56.3,77777,9,999999999,130,0.1040,0,88,999.000,999.0,99.0 +1987,9,7,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,7.8,33,97200,0,0,362,0,0,0,0,0,0,0,100,1.5,0,0,56.3,77777,9,999999999,140,0.1040,0,88,999.000,999.0,99.0 +1987,9,7,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,6.7,30,97300,106,1177,364,46,173,28,4600,8600,3800,500,0,0.0,0,0,80.5,77777,9,999999999,140,0.1040,0,88,999.000,999.0,99.0 +1987,9,7,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,7.8,31,97300,387,1346,368,227,576,61,23700,50500,9100,1160,50,2.6,0,0,80.5,77777,9,999999999,140,0.1040,0,88,999.000,999.0,99.0 +1987,9,7,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,7.8,27,97400,653,1346,379,453,747,89,47000,72800,11600,1840,80,2.6,0,0,72.4,77777,9,999999999,140,0.1040,0,88,999.000,999.0,99.0 +1987,9,7,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,7.2,22,97400,880,1346,392,658,833,111,69400,83600,14600,2790,70,2.6,0,0,72.4,77777,9,999999999,140,0.1040,0,88,999.000,999.0,99.0 +1987,9,7,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34.4,3.9,15,97300,1052,1346,405,826,890,126,84800,88900,15100,3250,350,1.5,0,0,72.4,77777,9,999999999,110,0.1040,0,88,999.000,999.0,99.0 +1987,9,7,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.1,0.0,10,97300,1159,1346,408,929,918,135,95200,91900,15900,4590,230,2.6,0,0,72.4,77777,9,999999999,90,0.1040,0,88,999.000,999.0,99.0 +1987,9,7,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.7,0.6,10,97200,1191,1346,412,961,926,137,98400,92700,16000,5230,300,2.6,0,0,72.4,77777,9,999999999,90,0.1040,0,88,999.000,999.0,99.0 +1987,9,7,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.2,2.2,11,97200,1148,1346,417,920,915,134,94100,91600,15800,4410,310,2.1,0,0,72.4,77777,9,999999999,100,0.1040,0,88,999.000,999.0,99.0 +1987,9,7,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.2,3.3,12,97100,1032,1346,419,810,887,125,83100,88500,15000,3090,340,2.1,0,0,72.4,77777,9,999999999,110,0.1040,0,88,999.000,999.0,99.0 +1987,9,7,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.8,3.9,12,97000,851,1346,423,644,839,109,67500,84000,14300,2640,220,3.1,0,0,72.4,77777,9,999999999,110,0.1040,0,88,999.000,999.0,99.0 +1987,9,7,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.8,3.9,12,97000,618,1346,423,433,746,86,44500,72100,11300,1740,310,3.1,0,0,72.4,77777,9,999999999,110,0.1040,0,88,999.000,999.0,99.0 +1987,9,7,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.7,1.7,11,97000,348,1346,414,204,558,57,20900,47200,8700,1070,310,3.1,0,0,72.4,77777,9,999999999,100,0.1040,0,88,999.000,999.0,99.0 +1987,9,7,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.0,0.6,11,97000,74,998,403,41,134,25,3700,5900,3200,440,340,2.6,0,0,80.5,77777,9,999999999,90,0.1040,0,88,999.000,999.0,99.0 +1987,9,7,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,0.6,12,97000,0,0,394,0,0,0,0,0,0,0,320,2.1,0,0,56.3,77777,9,999999999,90,0.1040,0,88,999.000,999.0,99.0 +1987,9,7,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,3.9,18,97100,0,0,388,0,0,0,0,0,0,0,210,1.5,0,0,56.3,77777,9,999999999,110,0.1040,0,88,999.000,999.0,99.0 +1987,9,7,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,2.8,18,97100,0,0,381,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,110,0.1040,0,88,999.000,999.0,99.0 +1987,9,7,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,2.8,19,97100,0,0,375,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,110,0.1040,0,88,999.000,999.0,99.0 +1987,9,7,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,4.4,21,97100,0,0,377,0,0,0,0,0,0,0,360,1.5,0,0,56.3,77777,9,999999999,120,0.1040,0,88,999.000,999.0,99.0 +1987,9,8,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,6.1,27,97200,0,0,368,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,130,0.1040,0,88,999.000,999.0,99.0 +1987,9,8,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,5.0,27,97200,0,0,362,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,120,0.1040,0,88,999.000,999.0,99.0 +1987,9,8,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,6.1,29,97200,0,0,363,0,0,0,0,0,0,0,90,2.1,0,0,56.3,77777,9,999999999,130,0.1040,0,88,999.000,999.0,99.0 +1987,9,8,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,5.6,30,97200,0,0,357,0,0,0,0,0,0,0,70,1.5,2,0,56.3,77777,9,999999999,130,0.1040,0,88,999.000,999.0,99.0 +1987,9,8,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,6.1,32,97200,0,0,355,0,0,0,0,0,0,0,90,2.6,2,0,56.3,77777,9,999999999,130,0.1040,0,88,999.000,999.0,99.0 +1987,9,8,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,6.7,34,97200,0,0,353,0,0,0,0,0,0,0,110,2.1,2,0,56.3,77777,9,999999999,130,0.1040,0,88,999.000,999.0,99.0 +1987,9,8,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,3.9,29,97300,104,1178,347,53,264,24,5000,14300,3600,430,0,0.0,1,0,80.5,77777,9,999999999,110,0.0590,0,88,999.000,999.0,99.0 +1987,9,8,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,3.9,24,97400,384,1346,363,241,670,49,25000,59200,8000,990,90,2.1,1,0,80.5,77777,9,999999999,110,0.0590,0,88,999.000,999.0,99.0 +1987,9,8,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,4.4,21,97400,650,1346,377,472,809,79,49500,79200,11200,1710,90,2.6,2,0,80.5,77777,9,999999999,120,0.0590,0,88,999.000,999.0,99.0 +1987,9,8,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,5.6,20,97400,877,1346,390,673,889,91,69800,88300,12100,2130,90,1.5,1,0,56.3,77777,9,999999999,130,0.0590,0,88,999.000,999.0,99.0 +1987,9,8,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,2.8,15,97400,1050,1346,395,835,933,104,86200,93300,13300,3010,90,1.5,1,0,56.3,77777,9,999999999,110,0.0590,0,88,999.000,999.0,99.0 +1987,9,8,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.7,2.2,11,97400,1156,1346,414,935,954,111,96200,95600,13900,4100,250,3.1,1,0,48.3,77777,9,999999999,100,0.0590,0,88,999.000,999.0,99.0 +1987,9,8,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.2,0.6,10,97300,1188,1346,415,967,972,103,99600,97500,13300,4340,320,1.5,0,0,56.3,77777,9,999999999,90,0.0590,0,88,999.000,999.0,99.0 +1987,9,8,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,38.3,1.7,10,97300,1144,1346,422,925,963,101,95400,96600,13100,3740,180,3.1,0,0,56.3,77777,9,999999999,100,0.0590,0,88,999.000,999.0,99.0 +1987,9,8,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,38.9,2.8,11,97200,1028,1346,427,816,939,94,84400,93900,12500,2750,200,3.6,0,0,56.3,77777,9,999999999,110,0.0590,0,88,999.000,999.0,99.0 +1987,9,8,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.8,3.3,12,97200,846,1346,422,651,898,81,67500,89100,11300,1960,240,2.6,0,0,56.3,77777,9,999999999,110,0.0590,0,88,999.000,999.0,99.0 +1987,9,8,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.8,5.0,13,97100,612,1346,425,440,817,64,45700,78700,9800,1410,260,3.1,0,0,72.4,77777,9,999999999,120,0.0590,0,88,999.000,999.0,99.0 +1987,9,8,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.2,5.0,14,97100,341,1346,421,211,649,43,21600,55700,7400,880,290,5.2,0,0,64.4,77777,9,999999999,120,0.0590,0,88,999.000,999.0,99.0 +1987,9,8,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.6,4.4,14,97100,70,976,412,43,203,20,3600,10000,2900,360,310,3.1,0,0,64.4,77777,9,999999999,110,0.0590,0,88,999.000,999.0,99.0 +1987,9,8,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.9,1.7,13,97100,0,0,399,0,0,0,0,0,0,0,340,2.1,0,0,56.3,77777,9,999999999,100,0.1040,0,88,999.000,999.0,99.0 +1987,9,8,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,1.1,14,97200,0,0,387,0,0,0,0,0,0,0,130,2.1,0,0,56.3,77777,9,999999999,90,0.1040,0,88,999.000,999.0,99.0 +1987,9,8,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,1.7,15,97300,0,0,385,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,100,0.1040,0,88,999.000,999.0,99.0 +1987,9,8,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,5.6,22,97300,0,0,381,0,0,0,0,0,0,0,30,2.1,0,0,56.3,77777,9,999999999,130,0.1040,0,88,999.000,999.0,99.0 +1987,9,8,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,2.8,19,97300,0,0,372,0,0,0,0,0,0,0,80,1.5,0,0,56.3,77777,9,999999999,100,0.1040,0,88,999.000,999.0,99.0 +1987,9,9,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,0.6,17,97300,0,0,369,0,0,0,0,0,0,0,110,2.1,0,0,56.3,77777,9,999999999,90,0.1030,0,88,999.000,999.0,99.0 +1987,9,9,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,1.7,20,97300,0,0,363,0,0,0,0,0,0,0,90,1.5,0,0,56.3,77777,9,999999999,100,0.1030,0,88,999.000,999.0,99.0 +1987,9,9,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,1.7,21,97400,0,0,358,0,0,0,0,0,0,0,90,3.1,0,0,56.3,77777,9,999999999,100,0.1030,0,88,999.000,999.0,99.0 +1987,9,9,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,1.1,21,97400,0,0,354,0,0,0,0,0,0,0,100,1.5,0,0,56.3,77777,9,999999999,100,0.1030,0,88,999.000,999.0,99.0 +1987,9,9,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,1.1,22,97400,0,0,349,0,0,0,0,0,0,0,100,2.1,0,0,56.3,77777,9,999999999,90,0.1030,0,88,999.000,999.0,99.0 +1987,9,9,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,1.7,23,97400,0,0,350,0,0,0,0,0,0,0,80,2.1,0,0,56.3,77777,9,999999999,100,0.1030,0,88,999.000,999.0,99.0 +1987,9,9,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,1.1,22,97500,101,1156,349,52,262,23,4800,14200,3500,410,90,3.1,1,0,80.5,77777,9,999999999,90,0.0570,0,88,999.000,999.0,99.0 +1987,9,9,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,1.1,20,97500,381,1347,359,240,677,47,24900,59800,7900,970,90,2.6,1,0,48.3,77777,9,999999999,100,0.0570,0,88,999.000,999.0,99.0 +1987,9,9,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,1.7,18,97500,647,1347,378,427,711,84,44600,69300,11200,1770,100,2.6,4,1,48.3,77777,9,999999999,100,0.0570,0,88,999.000,999.0,99.0 +1987,9,9,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,-1.1,13,97600,874,1347,383,618,737,138,65800,74900,17000,3580,90,2.1,5,1,48.3,77777,9,999999999,80,0.0570,0,88,999.000,999.0,99.0 +1987,9,9,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,0.0,12,97500,1047,1347,401,834,886,142,87700,89300,18200,4470,100,2.1,6,1,48.3,77777,9,999999999,90,0.0570,0,88,999.000,999.0,99.0 +1987,9,9,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.0,0.0,11,97500,1152,1347,416,935,889,169,97700,89400,21000,6780,60,1.5,7,2,56.3,77777,9,999999999,90,0.0570,0,88,999.000,999.0,99.0 +1987,9,9,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.8,3.9,12,97400,1184,1347,437,932,840,189,96700,84200,22500,8260,160,2.1,7,2,56.3,77777,9,999999999,110,0.0570,0,88,999.000,999.0,99.0 +1987,9,9,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,40.0,8.3,15,97300,1140,1347,456,833,695,241,87600,70500,27800,10010,270,2.6,6,2,56.3,77777,9,999999999,150,0.0570,0,88,999.000,999.0,99.0 +1987,9,9,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,39.4,8.3,15,97300,1023,1347,447,759,790,155,78700,79100,18500,4490,320,1.5,8,1,56.3,77777,9,999999999,150,0.0570,0,88,999.000,999.0,99.0 +1987,9,9,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,40.6,8.9,15,97200,841,1347,461,607,675,181,62700,67400,20600,4320,260,3.1,8,2,40.2,77777,9,999999999,160,0.0570,0,88,999.000,999.0,99.0 +1987,9,9,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,39.4,-2.8,7,97100,606,1347,435,407,638,116,41900,61600,14100,2330,220,2.1,8,2,40.2,77777,9,999999999,70,0.0570,0,88,999.000,999.0,99.0 +1987,9,9,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,38.9,-1.7,8,97100,335,1347,434,192,445,79,19900,36700,10700,1450,250,2.1,7,2,56.3,77777,9,999999999,80,0.0570,0,88,999.000,999.0,99.0 +1987,9,9,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.7,-3.3,8,97100,65,932,414,42,175,22,3700,7500,3100,390,220,2.6,3,1,56.3,77777,9,999999999,70,0.0570,0,88,999.000,999.0,99.0 +1987,9,9,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.0,1.1,12,97100,0,0,404,0,0,0,0,0,0,0,170,1.5,2,0,40.2,77777,9,999999999,100,0.1030,0,88,999.000,999.0,99.0 +1987,9,9,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,1.1,13,97200,0,0,395,0,0,0,0,0,0,0,0,0.0,1,0,40.2,77777,9,999999999,100,0.1030,0,88,999.000,999.0,99.0 +1987,9,9,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,5.6,19,97200,0,0,393,0,0,0,0,0,0,0,50,1.5,0,0,40.2,77777,9,999999999,120,0.1030,0,88,999.000,999.0,99.0 +1987,9,9,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,6.1,22,97200,0,0,385,0,0,0,0,0,0,0,30,1.5,0,0,40.2,77777,9,999999999,130,0.1030,0,88,999.000,999.0,99.0 +1987,9,9,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,5.6,23,97200,0,0,379,0,0,0,0,0,0,0,0,0.0,0,0,40.2,77777,9,999999999,130,0.1030,0,88,999.000,999.0,99.0 +1987,9,10,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,6.1,24,97200,0,0,376,0,0,0,0,0,0,0,90,1.5,0,0,40.2,77777,9,999999999,130,0.1030,0,88,999.000,999.0,99.0 +1987,9,10,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,2.8,20,97200,0,0,370,0,0,0,0,0,0,0,80,2.1,0,0,40.2,77777,9,999999999,110,0.1030,0,88,999.000,999.0,99.0 +1987,9,10,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,3.3,22,97200,0,0,365,0,0,0,0,0,0,0,90,2.1,0,0,40.2,77777,9,999999999,110,0.1030,0,88,999.000,999.0,99.0 +1987,9,10,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,2.2,22,97200,0,0,358,0,0,0,0,0,0,0,80,2.1,0,0,48.3,77777,9,999999999,100,0.1030,0,88,999.000,999.0,99.0 +1987,9,10,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,2.8,24,97200,0,0,356,0,0,0,0,0,0,0,70,2.1,0,0,48.3,77777,9,999999999,110,0.1030,0,88,999.000,999.0,99.0 +1987,9,10,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,2.8,25,97200,0,0,351,0,0,0,0,0,0,0,80,2.1,0,0,48.3,77777,9,999999999,100,0.1030,0,88,999.000,999.0,99.0 +1987,9,10,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,1.1,21,97300,99,1134,354,44,163,27,4400,7900,3700,480,100,3.1,0,0,72.4,77777,9,999999999,100,0.1020,0,88,999.000,999.0,99.0 +1987,9,10,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,2.8,21,97300,378,1348,364,225,587,59,23400,51100,9000,1120,70,2.1,0,0,32.2,77777,9,999999999,100,0.1020,0,88,999.000,999.0,99.0 +1987,9,10,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,2.2,17,97300,645,1348,377,454,739,99,47900,72800,13000,2100,80,2.1,2,0,32.2,77777,9,999999999,100,0.1020,0,88,999.000,999.0,99.0 +1987,9,10,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,1.1,14,97300,872,1348,387,665,819,133,68700,81400,15900,3060,90,2.1,3,0,32.2,77777,9,999999999,90,0.1020,0,88,999.000,999.0,99.0 +1987,9,10,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34.4,1.7,13,97300,1044,1348,415,780,774,178,83100,79100,21600,5970,100,1.5,3,2,24.1,77777,9,999999999,100,0.1020,0,88,999.000,999.0,99.0 +1987,9,10,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.2,2.2,11,97200,1149,1348,435,848,722,229,89600,73400,26900,9800,150,2.1,5,3,32.2,77777,9,999999999,100,0.1020,0,88,999.000,999.0,99.0 +1987,9,10,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,38.3,-0.6,9,97100,1181,1348,448,858,566,360,91000,59000,39100,17510,180,3.1,7,6,32.2,7620,9,999999999,90,0.1020,0,88,999.000,999.0,99.0 +1987,9,10,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,40.0,0.0,8,97000,1136,1348,455,774,507,344,81900,52800,37200,14580,220,2.6,8,5,40.2,7620,9,999999999,90,0.1020,0,88,999.000,999.0,99.0 +1987,9,10,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,41.1,-1.1,7,97000,1018,1348,456,702,559,276,74600,58200,30500,8840,250,3.1,7,4,48.3,7620,9,999999999,80,0.1020,0,88,999.000,999.0,99.0 +1987,9,10,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,41.1,-1.1,7,96900,836,1348,456,586,557,237,61300,57200,25800,5830,220,2.1,7,4,56.3,7620,9,999999999,80,0.1020,0,88,999.000,999.0,99.0 +1987,9,10,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,40.6,-1.7,7,96900,601,1348,452,349,412,163,36200,40400,18200,3320,200,3.6,8,4,56.3,77777,9,999999999,80,0.1020,0,88,999.000,999.0,99.0 +1987,9,10,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,38.9,-1.1,8,96800,329,1348,447,163,271,95,17000,22400,11500,1860,250,3.1,9,5,56.3,7620,9,999999999,80,0.1020,0,88,999.000,999.0,99.0 +1987,9,10,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.2,-1.1,9,96800,61,910,446,19,13,17,2000,700,1900,430,320,1.5,9,7,56.3,3660,9,999999999,80,0.1020,0,88,999.000,999.0,99.0 +1987,9,10,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.1,-1.1,9,96800,0,0,440,0,0,0,0,0,0,0,200,2.1,9,7,40.2,3660,9,999999999,80,0.1030,0,88,999.000,999.0,99.0 +1987,9,10,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34.4,1.7,13,96800,0,0,426,0,0,0,0,0,0,0,200,1.5,8,5,40.2,7620,9,999999999,100,0.1030,0,88,999.000,999.0,99.0 +1987,9,10,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,3.9,16,96900,0,0,431,0,0,0,0,0,0,0,0,0.0,10,7,40.2,3660,9,999999999,110,0.1030,0,88,999.000,999.0,99.0 +1987,9,10,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,6.1,20,96900,0,0,424,0,0,0,0,0,0,0,0,0.0,10,6,40.2,7620,9,999999999,130,0.1030,0,88,999.000,999.0,99.0 +1987,9,10,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,10.6,30,96800,0,0,414,0,0,0,0,0,0,0,0,0.0,8,5,40.2,7620,9,999999999,170,0.1030,0,88,999.000,999.0,99.0 +1987,9,11,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,5.6,22,96800,0,0,394,0,0,0,0,0,0,0,90,2.1,6,2,56.3,77777,9,999999999,130,0.1020,0,88,999.000,999.0,99.0 +1987,9,11,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,5.0,22,96800,0,0,385,0,0,0,0,0,0,0,0,0.0,4,1,56.3,77777,9,999999999,120,0.1020,0,88,999.000,999.0,99.0 +1987,9,11,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,5.0,24,96800,0,0,382,0,0,0,0,0,0,0,80,2.1,6,2,56.3,77777,9,999999999,120,0.1020,0,88,999.000,999.0,99.0 +1987,9,11,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,3.3,23,96800,0,0,374,0,0,0,0,0,0,0,90,2.1,6,2,56.3,77777,9,999999999,110,0.1020,0,88,999.000,999.0,99.0 +1987,9,11,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,2.2,22,96800,0,0,370,0,0,0,0,0,0,0,90,2.6,7,2,56.3,77777,9,999999999,100,0.1020,0,88,999.000,999.0,99.0 +1987,9,11,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,2.2,23,96800,0,0,367,0,0,0,0,0,0,0,80,3.1,7,2,64.4,77777,9,999999999,100,0.1020,0,88,999.000,999.0,99.0 +1987,9,11,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,2.2,24,96900,96,1135,373,45,78,36,4700,4000,4300,750,40,3.1,7,5,64.4,7620,9,999999999,100,0.0800,0,88,999.000,999.0,99.0 +1987,9,11,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,2.8,22,96900,376,1348,373,204,390,95,21200,33600,11800,1770,70,3.6,5,2,48.3,77777,9,999999999,100,0.0800,0,88,999.000,999.0,99.0 +1987,9,11,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,3.3,20,96900,642,1348,373,454,780,81,47500,76100,11200,1720,80,2.6,1,0,48.3,77777,9,999999999,110,0.0800,0,88,999.000,999.0,99.0 +1987,9,11,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,2.2,14,96900,869,1348,394,663,867,101,70400,87200,14100,2570,100,2.6,1,0,48.3,77777,9,999999999,100,0.0800,0,88,999.000,999.0,99.0 +1987,9,11,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.9,1.1,12,96900,1041,1348,398,828,900,129,84900,89800,15400,3160,90,2.6,2,0,48.3,77777,9,999999999,90,0.0800,0,88,999.000,999.0,99.0 +1987,9,11,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.2,0.6,10,96800,1146,1348,415,923,920,136,94400,92000,16000,4370,110,2.1,2,0,48.3,77777,9,999999999,90,0.0800,0,88,999.000,999.0,99.0 +1987,9,11,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,38.3,-1.1,8,96800,1177,1348,418,954,952,118,98000,95400,14500,4520,70,2.1,0,0,56.3,77777,9,999999999,80,0.0800,0,88,999.000,999.0,99.0 +1987,9,11,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,39.4,-1.7,7,96700,1132,1348,423,915,946,115,94000,94700,14200,3870,120,2.6,0,0,56.3,77777,9,999999999,70,0.0800,0,88,999.000,999.0,99.0 +1987,9,11,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,40.6,-1.7,7,96600,1014,1348,430,803,918,107,82600,91700,13500,2820,320,1.5,0,0,56.3,77777,9,999999999,80,0.0800,0,88,999.000,999.0,99.0 +1987,9,11,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,40.0,-0.6,8,96600,830,1348,428,633,867,93,65300,85800,12300,1990,10,2.6,0,0,56.3,77777,9,999999999,90,0.0800,0,88,999.000,999.0,99.0 +1987,9,11,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,40.0,-0.6,8,96600,595,1348,428,423,784,72,44000,75800,10500,1530,310,3.1,0,0,56.3,77777,9,999999999,90,0.0800,0,88,999.000,999.0,99.0 +1987,9,11,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,38.9,0.0,9,96500,323,1348,423,193,590,48,19300,49300,7500,910,340,2.1,0,0,56.3,77777,9,999999999,90,0.0800,0,88,999.000,999.0,99.0 +1987,9,11,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.7,2.8,12,96500,57,865,415,35,132,20,3100,5400,2700,350,10,2.1,0,0,56.3,77777,9,999999999,100,0.0800,0,88,999.000,999.0,99.0 +1987,9,11,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.0,1.1,12,96600,0,0,404,0,0,0,0,0,0,0,300,1.5,0,0,56.3,77777,9,999999999,100,0.1020,0,88,999.000,999.0,99.0 +1987,9,11,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,2.2,14,96600,0,0,397,0,0,0,0,0,0,0,140,1.5,0,0,56.3,77777,9,999999999,100,0.1020,0,88,999.000,999.0,99.0 +1987,9,11,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,0.6,14,96700,0,0,386,0,0,0,0,0,0,0,230,2.1,0,0,56.3,77777,9,999999999,90,0.1020,0,88,999.000,999.0,99.0 +1987,9,11,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,2.2,17,96700,0,0,380,0,0,0,0,0,0,0,230,2.1,0,0,56.3,77777,9,999999999,100,0.1020,0,88,999.000,999.0,99.0 +1987,9,11,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,2.8,19,96700,0,0,375,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,110,0.1020,0,88,999.000,999.0,99.0 +1987,9,12,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,3.9,21,96700,0,0,374,0,0,0,0,0,0,0,90,2.1,0,0,56.3,77777,9,999999999,110,0.1020,0,88,999.000,999.0,99.0 +1987,9,12,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,5.6,27,96700,0,0,365,0,0,0,0,0,0,0,70,2.6,0,0,56.3,77777,9,999999999,130,0.1020,0,88,999.000,999.0,99.0 +1987,9,12,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,2.8,24,96700,0,0,356,0,0,0,0,0,0,0,70,2.1,0,0,56.3,77777,9,999999999,110,0.1020,0,88,999.000,999.0,99.0 +1987,9,12,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,4.4,29,96800,0,0,350,0,0,0,0,0,0,0,30,2.1,0,0,56.3,77777,9,999999999,120,0.1020,0,88,999.000,999.0,99.0 +1987,9,12,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,5.6,30,96800,0,0,357,0,0,0,0,0,0,0,70,2.1,0,0,56.3,77777,9,999999999,130,0.1020,0,88,999.000,999.0,99.0 +1987,9,12,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,6.7,32,96800,0,0,358,0,0,0,0,0,0,0,80,3.1,0,0,80.5,77777,9,999999999,130,0.1020,0,88,999.000,999.0,99.0 +1987,9,12,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,5.6,30,96900,94,1113,357,51,245,24,4700,12900,3500,430,80,3.1,3,0,80.5,77777,9,999999999,130,0.0490,0,88,999.000,999.0,99.0 +1987,9,12,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,5.6,26,96900,373,1349,368,239,623,65,24600,53700,9700,1210,80,2.1,6,0,72.4,77777,9,999999999,130,0.0490,0,88,999.000,999.0,99.0 +1987,9,12,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,6.1,24,97000,639,1349,376,477,765,112,49700,74800,14200,2320,90,2.6,7,0,72.4,77777,9,999999999,130,0.0490,0,88,999.000,999.0,99.0 +1987,9,12,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,5.0,17,97000,866,1349,398,691,842,147,72900,85200,18100,3730,120,3.6,7,0,64.4,77777,9,999999999,120,0.0490,0,88,999.000,999.0,99.0 +1987,9,12,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34.4,6.1,17,97000,1038,1349,416,780,838,132,82600,84600,17300,4140,120,3.1,6,1,64.4,77777,9,999999999,130,0.0490,0,88,999.000,999.0,99.0 +1987,9,12,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.0,6.7,17,97000,1143,1349,420,844,797,166,88400,80200,20300,6450,130,3.6,6,1,64.4,77777,9,999999999,130,0.0490,0,88,999.000,999.0,99.0 +1987,9,12,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.7,5.0,14,96900,1173,1349,427,859,829,134,88000,83000,15600,4770,140,2.6,5,1,64.4,77777,9,999999999,120,0.0490,0,88,999.000,999.0,99.0 +1987,9,12,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.2,4.4,13,96800,1128,1349,420,903,934,118,92800,93500,14500,3870,170,2.6,3,0,64.4,77777,9,999999999,120,0.0490,0,88,999.000,999.0,99.0 +1987,9,12,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,38.3,3.3,11,96700,1009,1349,425,800,940,92,82800,94000,12300,2620,220,2.6,1,0,64.4,77777,9,999999999,100,0.0490,0,88,999.000,999.0,99.0 +1987,9,12,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.8,4.4,13,96700,825,1349,424,630,882,86,65200,87300,11700,1940,260,4.1,2,0,64.4,77777,9,999999999,120,0.0490,0,88,999.000,999.0,99.0 +1987,9,12,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.7,5.0,14,96700,589,1349,427,340,637,58,36200,62000,9000,1320,260,2.1,1,1,56.3,77777,9,999999999,120,0.0490,0,88,999.000,999.0,99.0 +1987,9,12,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.7,5.6,15,96700,317,1349,427,190,630,39,19500,52900,7000,800,290,2.1,1,1,56.3,77777,9,999999999,130,0.0490,0,88,999.000,999.0,99.0 +1987,9,12,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.6,3.3,13,96700,53,843,435,18,15,16,1900,800,1800,400,190,3.1,6,5,56.3,4270,9,999999999,110,0.0490,0,88,999.000,999.0,99.0 +1987,9,12,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.0,2.2,13,96700,0,0,455,0,0,0,0,0,0,0,180,2.1,9,9,56.3,3660,9,999999999,100,0.1020,0,88,999.000,999.0,99.0 +1987,9,12,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.9,2.2,13,96700,0,0,439,0,0,0,0,0,0,0,130,1.5,8,8,56.3,3660,9,999999999,100,0.1020,0,88,999.000,999.0,99.0 +1987,9,12,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,0.6,13,96700,0,0,419,0,0,0,0,0,0,0,130,2.1,6,6,56.3,3660,9,999999999,90,0.1020,0,88,999.000,999.0,99.0 +1987,9,12,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,1.1,13,96700,0,0,419,0,0,0,0,0,0,0,170,2.6,7,5,56.3,7620,9,999999999,90,0.1020,0,88,999.000,999.0,99.0 +1987,9,12,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,2.8,16,96800,0,0,403,0,0,0,0,0,0,0,150,3.1,7,3,56.3,77777,9,999999999,100,0.1020,0,88,999.000,999.0,99.0 +1987,9,13,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,5.6,21,96800,0,0,422,0,0,0,0,0,0,0,120,4.1,8,8,56.3,7620,9,999999999,120,0.1010,0,88,999.000,999.0,99.0 +1987,9,13,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,3.9,20,96800,0,0,414,0,0,0,0,0,0,0,130,4.6,8,8,56.3,7620,9,999999999,110,0.1010,0,88,999.000,999.0,99.0 +1987,9,13,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,2.8,18,96800,0,0,404,0,0,0,0,0,0,0,160,3.1,6,6,56.3,7620,9,999999999,100,0.1010,0,88,999.000,999.0,99.0 +1987,9,13,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,4.4,22,96900,0,0,400,0,0,0,0,0,0,0,150,3.1,9,6,56.3,7620,9,999999999,120,0.1010,0,88,999.000,999.0,99.0 +1987,9,13,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,7.2,28,96900,0,0,409,0,0,0,0,0,0,0,130,2.6,9,8,56.3,3660,9,999999999,140,0.1010,0,88,999.000,999.0,99.0 +1987,9,13,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,12.2,39,97000,0,0,416,0,0,0,0,0,0,0,170,3.1,8,8,80.5,3660,9,999999999,190,0.1010,0,88,999.000,999.0,99.0 +1987,9,13,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,14.4,47,97000,91,1091,416,30,9,29,3300,600,3200,690,170,2.6,8,8,64.4,3660,9,999999999,220,0.1700,0,88,999.000,999.0,99.0 +1987,9,13,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,14.4,47,97100,370,1350,416,122,76,101,13300,6700,11500,2230,140,2.1,8,8,56.3,3660,9,999999999,220,0.1700,0,88,999.000,999.0,99.0 +1987,9,13,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,14.4,43,97200,636,1350,410,370,351,203,39200,36000,22200,4540,160,6.2,6,5,32.2,3660,9,999999999,220,0.1700,0,88,999.000,999.0,99.0 +1987,9,13,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,13.9,39,97200,863,1350,405,580,627,176,60400,62900,20100,4330,170,4.1,3,2,32.2,77777,9,999999999,209,0.1700,0,88,999.000,999.0,99.0 +1987,9,13,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,11.7,30,97200,1035,1350,406,769,778,169,82000,79600,20800,5570,150,3.6,1,1,32.2,77777,9,999999999,180,0.1700,0,88,999.000,999.0,99.0 +1987,9,13,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,5.6,18,97200,1139,1350,406,862,796,187,89100,79600,21700,6940,180,3.6,1,1,32.2,77777,9,999999999,120,0.1700,0,88,999.000,999.0,99.0 +1987,9,13,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,6.7,21,97200,1169,1350,394,890,814,180,92600,81700,21600,7470,330,3.6,0,0,24.1,77777,9,999999999,140,0.1700,0,88,999.000,999.0,99.0 +1987,9,13,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,3.9,17,97100,1123,1350,393,865,823,176,89700,82500,20900,6330,270,4.1,0,0,24.1,77777,9,999999999,110,0.1700,0,88,999.000,999.0,99.0 +1987,9,13,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,3.9,16,97100,1004,1350,396,764,802,163,78500,80000,18900,4420,310,3.1,0,0,24.1,77777,9,999999999,110,0.1700,0,88,999.000,999.0,99.0 +1987,9,13,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,4.4,17,97100,820,1350,397,590,733,141,62000,73800,17000,3390,310,2.1,0,0,16.1,77777,9,999999999,120,0.1700,0,88,999.000,999.0,99.0 +1987,9,13,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,5.6,19,97000,583,1350,393,382,625,108,39400,60000,13400,2150,300,2.1,0,0,19.3,77777,9,999999999,120,0.1700,0,88,999.000,999.0,99.0 +1987,9,13,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,6.1,21,97100,310,1350,388,158,386,67,16400,30900,9300,1210,300,3.6,0,0,19.3,77777,9,999999999,130,0.1700,0,88,999.000,999.0,99.0 +1987,9,13,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,2.2,17,97100,49,821,377,27,37,22,2700,1600,2600,450,300,4.6,0,0,19.3,77777,9,999999999,100,0.1700,0,88,999.000,999.0,99.0 +1987,9,13,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,2.2,19,97200,0,0,369,0,0,0,0,0,0,0,310,2.6,0,0,24.1,77777,9,999999999,100,0.1010,0,88,999.000,999.0,99.0 +1987,9,13,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,2.8,21,97300,0,0,364,0,0,0,0,0,0,0,280,2.1,0,0,24.1,77777,9,999999999,100,0.1010,0,88,999.000,999.0,99.0 +1987,9,13,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,3.3,23,97300,0,0,362,0,0,0,0,0,0,0,250,2.1,0,0,32.2,77777,9,999999999,110,0.1010,0,88,999.000,999.0,99.0 +1987,9,13,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,3.3,24,97300,0,0,360,0,0,0,0,0,0,0,290,2.1,0,0,32.2,77777,9,999999999,110,0.1010,0,88,999.000,999.0,99.0 +1987,9,13,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,3.3,25,97400,0,0,354,0,0,0,0,0,0,0,300,1.5,0,0,56.3,77777,9,999999999,110,0.1010,0,88,999.000,999.0,99.0 +1987,9,14,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,4.4,28,97400,0,0,355,0,0,0,0,0,0,0,120,2.1,0,0,56.3,77777,9,999999999,120,0.1010,0,88,999.000,999.0,99.0 +1987,9,14,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,3.9,28,97400,0,0,349,0,0,0,0,0,0,0,20,1.5,0,0,56.3,77777,9,999999999,110,0.1010,0,88,999.000,999.0,99.0 +1987,9,14,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,5.0,33,97400,0,0,346,0,0,0,0,0,0,0,80,3.1,0,0,56.3,77777,9,999999999,120,0.1010,0,88,999.000,999.0,99.0 +1987,9,14,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,5.0,34,97500,0,0,343,0,0,0,0,0,0,0,90,2.6,0,0,56.3,77777,9,999999999,120,0.1010,0,88,999.000,999.0,99.0 +1987,9,14,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,6.1,41,97500,0,0,337,0,0,0,0,0,0,0,70,3.6,0,0,56.3,77777,9,999999999,130,0.1010,0,88,999.000,999.0,99.0 +1987,9,14,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,4.4,36,97500,0,0,335,0,0,0,0,0,0,0,80,3.6,0,0,64.4,77777,9,999999999,120,0.1010,0,88,999.000,999.0,99.0 +1987,9,14,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,3.3,32,97600,89,1092,336,46,187,25,4300,8800,3600,440,90,3.1,0,0,24.1,77777,9,999999999,110,0.0830,0,88,999.000,999.0,99.0 +1987,9,14,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,2.8,29,97700,367,1351,341,221,614,52,22500,53300,8000,1000,90,2.6,0,0,24.1,77777,9,999999999,110,0.0830,0,88,999.000,999.0,99.0 +1987,9,14,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,5.0,29,97700,633,1351,356,448,785,77,46900,76500,10900,1650,0,0.0,0,0,16.1,77777,9,999999999,120,0.0830,0,88,999.000,999.0,99.0 +1987,9,14,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,5.0,25,97700,860,1351,367,653,868,97,67500,86000,12600,2090,100,2.6,0,0,16.1,77777,9,999999999,120,0.0830,0,88,999.000,999.0,99.0 +1987,9,14,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,5.0,23,97700,1031,1351,372,811,911,110,83500,91000,13800,2940,100,1.5,0,0,24.1,77777,9,999999999,120,0.0830,0,88,999.000,999.0,99.0 +1987,9,14,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,5.0,21,97700,1136,1351,383,905,931,118,93100,93200,14500,3940,110,2.1,0,0,24.1,77777,9,999999999,120,0.0830,0,88,999.000,999.0,99.0 +1987,9,14,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,5.0,20,97600,1165,1351,387,934,938,120,96000,94000,14600,4370,70,1.5,0,0,24.1,77777,9,999999999,120,0.0830,0,88,999.000,999.0,99.0 +1987,9,14,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,2.2,15,97500,1119,1351,388,896,934,117,92100,93500,14400,3740,320,2.6,0,0,24.1,77777,9,999999999,100,0.0830,0,88,999.000,999.0,99.0 +1987,9,14,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,1.7,14,97500,999,1351,390,787,910,108,81000,90800,13600,2740,310,2.1,0,0,24.1,77777,9,999999999,100,0.0830,0,88,999.000,999.0,99.0 +1987,9,14,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,1.1,14,97400,814,1351,389,617,861,93,65300,86300,13200,2260,310,2.6,0,0,24.1,77777,9,999999999,100,0.0830,0,88,999.000,999.0,99.0 +1987,9,14,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,2.8,16,97400,577,1351,389,403,763,72,41700,73300,10300,1500,260,2.1,0,0,24.1,77777,9,999999999,110,0.0830,0,88,999.000,999.0,99.0 +1987,9,14,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,3.9,17,97400,304,1351,391,176,556,47,18000,45000,7800,880,270,2.6,0,0,24.1,77777,9,999999999,110,0.0830,0,88,999.000,999.0,99.0 +1987,9,14,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,2.2,16,97400,46,777,383,30,101,18,2600,3900,2300,320,290,2.1,0,0,32.2,77777,9,999999999,100,0.0830,0,88,999.000,999.0,99.0 +1987,9,14,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,3.9,20,97400,0,0,379,0,0,0,0,0,0,0,140,1.5,0,0,32.2,77777,9,999999999,120,0.1010,0,88,999.000,999.0,99.0 +1987,9,14,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,3.9,21,97500,0,0,374,0,0,0,0,0,0,0,140,1.5,0,0,32.2,77777,9,999999999,110,0.1010,0,88,999.000,999.0,99.0 +1987,9,14,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,3.3,21,97600,0,0,370,0,0,0,0,0,0,0,0,0.0,0,0,32.2,77777,9,999999999,110,0.1010,0,88,999.000,999.0,99.0 +1987,9,14,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,4.4,23,97600,0,0,369,0,0,0,0,0,0,0,0,0.0,0,0,32.2,77777,9,999999999,120,0.1010,0,88,999.000,999.0,99.0 +1987,9,14,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,6.1,29,97600,0,0,363,0,0,0,0,0,0,0,80,2.6,0,0,32.2,77777,9,999999999,130,0.1010,0,88,999.000,999.0,99.0 +1987,9,15,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,5.6,30,97600,0,0,357,0,0,0,0,0,0,0,80,2.1,0,0,56.3,77777,9,999999999,130,0.1010,0,88,999.000,999.0,99.0 +1987,9,15,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,5.6,30,97600,0,0,357,0,0,0,0,0,0,0,60,2.1,0,0,48.3,77777,9,999999999,130,0.1010,0,88,999.000,999.0,99.0 +1987,9,15,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,5.0,31,97600,0,0,351,0,0,0,0,0,0,0,60,2.6,0,0,48.3,77777,9,999999999,120,0.1010,0,88,999.000,999.0,99.0 +1987,9,15,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,5.0,32,97600,0,0,348,0,0,0,0,0,0,0,0,0.0,0,0,48.3,77777,9,999999999,120,0.1010,0,88,999.000,999.0,99.0 +1987,9,15,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,5.6,34,97600,0,0,346,0,0,0,0,0,0,0,80,2.6,0,0,48.3,77777,9,999999999,130,0.1010,0,88,999.000,999.0,99.0 +1987,9,15,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,4.4,33,97600,0,0,342,0,0,0,0,0,0,0,80,3.1,0,0,40.2,77777,9,999999999,120,0.1010,0,88,999.000,999.0,99.0 +1987,9,15,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,4.4,33,97600,86,1070,342,46,215,22,4100,11200,3200,400,70,3.1,0,0,32.2,77777,9,999999999,120,0.0660,0,88,999.000,999.0,99.0 +1987,9,15,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,4.4,29,97700,364,1351,350,223,651,46,23000,56700,7700,940,90,2.1,0,0,32.2,77777,9,999999999,120,0.0660,0,88,999.000,999.0,99.0 +1987,9,15,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,4.4,27,97700,630,1351,358,451,814,68,47800,79700,10500,1520,90,1.5,0,0,32.2,77777,9,999999999,120,0.0660,0,88,999.000,999.0,99.0 +1987,9,15,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,4.4,23,97700,857,1351,372,654,890,86,67900,88300,11700,2020,110,1.5,0,0,24.1,77777,9,999999999,120,0.0660,0,88,999.000,999.0,99.0 +1987,9,15,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,4.4,19,97700,1028,1351,388,810,931,98,83800,93100,12800,2790,110,2.6,0,0,24.1,77777,9,999999999,120,0.0660,0,88,999.000,999.0,99.0 +1987,9,15,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,3.9,17,97600,1132,1351,393,906,950,105,93400,95200,13400,3660,220,2.1,0,0,24.1,77777,9,999999999,120,0.0660,0,88,999.000,999.0,99.0 +1987,9,15,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.9,4.4,16,97500,1161,1351,403,933,955,107,96100,95800,13600,4030,270,2.6,0,0,24.1,77777,9,999999999,120,0.0660,0,88,999.000,999.0,99.0 +1987,9,15,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34.4,5.6,17,97400,1114,1351,407,889,946,104,91700,94800,13300,3480,220,2.6,0,0,24.1,77777,9,999999999,130,0.0660,0,88,999.000,999.0,99.0 +1987,9,15,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34.4,6.7,18,97300,994,1351,409,777,919,96,80300,91800,12600,2590,290,2.1,0,0,24.1,77777,9,999999999,140,0.0660,0,88,999.000,999.0,99.0 +1987,9,15,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.6,6.7,17,97200,809,1351,415,611,874,82,63200,86400,11400,1880,170,1.5,0,0,24.1,77777,9,999999999,140,0.0660,0,88,999.000,999.0,99.0 +1987,9,15,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.0,6.1,17,97200,571,1351,411,401,787,64,42100,75800,9900,1390,290,2.1,0,0,24.1,77777,9,999999999,130,0.0660,0,88,999.000,999.0,99.0 +1987,9,15,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34.4,5.6,17,97100,298,1351,407,174,589,41,17600,48300,6900,810,280,2.6,0,0,24.1,77777,9,999999999,130,0.0660,0,88,999.000,999.0,99.0 +1987,9,15,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,7.2,20,97100,42,755,401,31,117,17,2500,4400,2300,300,280,1.5,0,0,32.2,77777,9,999999999,140,0.0660,0,88,999.000,999.0,99.0 +1987,9,15,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,7.2,22,97100,0,0,392,0,0,0,0,0,0,0,210,1.5,0,0,24.1,77777,9,999999999,140,0.1010,0,88,999.000,999.0,99.0 +1987,9,15,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,8.3,26,97100,0,0,388,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,150,0.1010,0,88,999.000,999.0,99.0 +1987,9,15,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,7.2,24,97100,0,0,386,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,140,0.1010,0,88,999.000,999.0,99.0 +1987,9,15,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,8.3,28,97100,0,0,382,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,150,0.1010,0,88,999.000,999.0,99.0 +1987,9,15,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,9.4,33,97200,0,0,375,0,0,0,0,0,0,0,30,1.0,2,0,24.1,77777,9,999999999,160,0.1010,0,88,999.000,999.0,99.0 +1987,9,16,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,7.2,28,97200,0,0,372,0,0,0,0,0,0,0,80,1.5,3,0,32.2,77777,9,999999999,140,0.1000,0,88,999.000,999.0,99.0 +1987,9,16,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,7.8,31,97100,0,0,368,0,0,0,0,0,0,0,100,1.5,3,0,32.2,77777,9,999999999,140,0.1000,0,88,999.000,999.0,99.0 +1987,9,16,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,6.7,31,97200,0,0,361,0,0,0,0,0,0,0,80,1.5,3,0,32.2,77777,9,999999999,140,0.1000,0,88,999.000,999.0,99.0 +1987,9,16,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,6.7,33,97100,0,0,356,0,0,0,0,0,0,0,70,1.5,4,0,32.2,77777,9,999999999,140,0.1000,0,88,999.000,999.0,99.0 +1987,9,16,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,6.1,32,97100,0,0,355,0,0,0,0,0,0,0,90,2.1,4,0,32.2,77777,9,999999999,130,0.1000,0,88,999.000,999.0,99.0 +1987,9,16,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,6.7,34,97200,0,0,359,0,0,0,0,0,0,0,90,1.5,5,1,56.3,77777,9,999999999,130,0.1000,0,88,999.000,999.0,99.0 +1987,9,16,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,6.7,36,97200,84,1048,357,37,78,29,3800,3300,3500,530,80,2.1,6,1,40.2,77777,9,999999999,140,0.0680,0,88,999.000,999.0,99.0 +1987,9,16,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,6.1,32,97300,361,1352,370,196,371,96,20200,31400,11800,1800,90,2.1,8,3,40.2,77777,9,999999999,130,0.0680,0,88,999.000,999.0,99.0 +1987,9,16,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,6.1,26,97300,627,1352,387,406,470,187,42000,46300,20400,3910,100,2.1,7,3,32.2,77777,9,999999999,130,0.0680,0,88,999.000,999.0,99.0 +1987,9,16,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,7.2,25,97300,854,1352,400,611,596,233,64500,61300,25600,5810,100,1.5,8,3,32.2,77777,9,999999999,140,0.0680,0,88,999.000,999.0,99.0 +1987,9,16,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,7.2,23,97300,1025,1352,409,698,561,271,74500,58400,30100,8720,120,1.5,8,4,32.2,77777,9,999999999,140,0.0680,0,88,999.000,999.0,99.0 +1987,9,16,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,8.3,22,97200,1128,1352,420,751,585,260,78500,59000,29100,10230,70,1.5,6,3,32.2,77777,9,999999999,150,0.0680,0,88,999.000,999.0,99.0 +1987,9,16,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34.4,7.2,19,97100,1157,1352,427,743,497,314,79400,51900,34900,13930,90,1.0,7,3,32.2,77777,9,999999999,140,0.0680,0,88,999.000,999.0,99.0 +1987,9,16,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.0,6.1,17,97000,1110,1352,432,602,409,264,65100,42800,29900,10180,0,0.0,9,4,32.2,77777,9,999999999,130,0.0680,0,88,999.000,999.0,99.0 +1987,9,16,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.6,5.6,16,97000,989,1352,438,590,353,330,63700,38100,35700,10110,360,1.0,9,5,32.2,7620,9,999999999,130,0.0680,0,88,999.000,999.0,99.0 +1987,9,16,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.1,6.1,16,96900,803,1352,451,544,587,192,57800,60100,22000,4480,360,1.5,9,7,32.2,7620,9,999999999,130,0.0680,0,88,999.000,999.0,99.0 +1987,9,16,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.0,5.0,15,96900,565,1352,472,155,10,151,17600,700,17300,5910,10,1.5,10,10,32.2,7620,9,999999999,120,0.0680,0,88,999.000,999.0,99.0 +1987,9,16,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34.4,4.4,15,96900,291,1352,455,96,24,91,10500,2000,10100,2220,350,1.0,10,9,32.2,7620,9,999999999,110,0.0680,0,88,999.000,999.0,99.0 +1987,9,16,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,3.3,15,96900,39,732,426,29,14,27,3000,800,3000,590,0,0.0,9,6,32.2,7620,9,999999999,110,0.0680,0,88,999.000,999.0,99.0 +1987,9,16,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,4.4,18,96900,0,0,408,0,0,0,0,0,0,0,0,0.0,7,3,32.2,77777,9,999999999,120,0.1000,0,88,999.000,999.0,99.0 +1987,9,16,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,6.7,23,96900,0,0,398,0,0,0,0,0,0,0,0,0.0,7,2,32.2,77777,9,999999999,130,0.1000,0,88,999.000,999.0,99.0 +1987,9,16,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,7.2,26,97000,0,0,393,0,0,0,0,0,0,0,0,0.0,7,2,32.2,77777,9,999999999,140,0.1000,0,88,999.000,999.0,99.0 +1987,9,16,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,8.9,30,97000,0,0,396,0,0,0,0,0,0,0,0,0.0,9,3,32.2,77777,9,999999999,160,0.1000,0,88,999.000,999.0,99.0 +1987,9,16,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,8.3,30,97000,0,0,381,0,0,0,0,0,0,0,240,1.5,4,1,32.2,77777,9,999999999,150,0.1000,0,88,999.000,999.0,99.0 +1987,9,17,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,7.8,30,97000,0,0,371,0,0,0,0,0,0,0,0,0.0,3,0,32.2,77777,9,999999999,140,0.1000,0,88,999.000,999.0,99.0 +1987,9,17,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,8.3,33,97000,0,0,380,0,0,0,0,0,0,0,0,0.0,5,2,32.2,77777,9,999999999,150,0.1000,0,88,999.000,999.0,99.0 +1987,9,17,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,6.1,28,97000,0,0,373,0,0,0,0,0,0,0,100,1.5,5,1,40.2,77777,9,999999999,130,0.1000,0,88,999.000,999.0,99.0 +1987,9,17,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,6.7,30,97000,0,0,364,0,0,0,0,0,0,0,90,1.5,3,0,40.2,77777,9,999999999,140,0.1000,0,88,999.000,999.0,99.0 +1987,9,17,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,7.8,36,97100,0,0,369,0,0,0,0,0,0,0,80,2.6,6,2,40.2,77777,9,999999999,150,0.1000,0,88,999.000,999.0,99.0 +1987,9,17,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,5.0,30,97100,0,0,369,0,0,0,0,0,0,0,70,2.1,8,3,40.2,77777,9,999999999,120,0.1000,0,88,999.000,999.0,99.0 +1987,9,17,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,5.6,31,97200,82,1048,370,44,50,38,4500,2500,4300,790,70,2.1,9,3,40.2,77777,9,999999999,130,0.0940,0,88,999.000,999.0,99.0 +1987,9,17,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,5.6,30,97300,358,1353,375,194,319,109,20300,27300,13100,2180,80,1.5,8,4,40.2,77777,9,999999999,130,0.0940,0,88,999.000,999.0,99.0 +1987,9,17,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,5.6,28,97300,624,1353,381,282,248,167,30300,25400,18600,3580,70,1.5,8,4,40.2,77777,9,999999999,130,0.0940,0,88,999.000,999.0,99.0 +1987,9,17,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,5.6,24,97300,851,1353,389,589,599,210,62700,61700,23800,5170,90,1.5,7,3,40.2,77777,9,999999999,120,0.0940,0,88,999.000,999.0,99.0 +1987,9,17,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,6.7,23,97300,1022,1353,406,678,508,292,71700,52800,31700,9380,120,1.5,8,4,40.2,77777,9,999999999,140,0.0940,0,88,999.000,999.0,99.0 +1987,9,17,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,2.8,16,97300,1125,1353,406,763,544,308,81500,56800,34100,12440,200,1.0,7,4,40.2,7620,9,999999999,100,0.0940,0,88,999.000,999.0,99.0 +1987,9,17,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,3.3,16,97300,1153,1353,416,856,619,324,91200,64600,35900,14200,230,2.1,7,4,40.2,7620,9,999999999,110,0.0940,0,88,999.000,999.0,99.0 +1987,9,17,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.9,4.4,16,97200,1105,1353,420,562,378,252,61200,39500,28800,9570,110,2.1,7,3,48.3,77777,9,999999999,120,0.0940,0,88,999.000,999.0,99.0 +1987,9,17,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.0,3.3,14,97200,984,1353,425,584,465,243,62500,48400,27200,7210,140,2.1,6,3,56.3,77777,9,999999999,110,0.0940,0,88,999.000,999.0,99.0 +1987,9,17,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.0,3.9,14,97100,798,1353,429,536,588,186,57100,60200,21500,4310,130,2.6,6,4,56.3,7620,9,999999999,110,0.0940,0,88,999.000,999.0,99.0 +1987,9,17,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34.4,5.0,16,97100,559,1353,424,394,624,133,39900,58500,15600,2480,120,2.1,5,3,56.3,77777,9,999999999,120,0.0940,0,88,999.000,999.0,99.0 +1987,9,17,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,8.3,22,97200,285,1353,420,150,346,75,15300,26500,9700,1380,130,3.1,5,3,56.3,77777,9,999999999,150,0.0940,0,88,999.000,999.0,99.0 +1987,9,17,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,6.7,22,97200,35,688,404,19,31,15,1900,1200,1800,310,140,2.6,2,2,56.3,77777,9,999999999,140,0.0940,0,88,999.000,999.0,99.0 +1987,9,17,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,8.3,26,97300,0,0,395,0,0,0,0,0,0,0,140,2.1,1,1,56.3,77777,9,999999999,150,0.1000,0,88,999.000,999.0,99.0 +1987,9,17,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,9.4,30,97300,0,0,391,0,0,0,0,0,0,0,140,1.5,1,1,56.3,77777,9,999999999,160,0.1000,0,88,999.000,999.0,99.0 +1987,9,17,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,10.0,32,97400,0,0,381,0,0,0,0,0,0,0,90,1.5,0,0,56.3,77777,9,999999999,170,0.1000,0,88,999.000,999.0,99.0 +1987,9,17,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,10.6,38,97400,0,0,371,0,0,0,0,0,0,0,60,2.1,0,0,56.3,77777,9,999999999,170,0.1000,0,88,999.000,999.0,99.0 +1987,9,17,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,10.6,40,97400,0,0,366,0,0,0,0,0,0,0,70,3.6,3,0,56.3,77777,9,999999999,170,0.1000,0,88,999.000,999.0,99.0 +1987,9,18,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,10.6,42,97500,0,0,378,0,0,0,0,0,0,0,70,2.1,4,3,56.3,77777,9,999999999,170,0.0990,0,88,999.000,999.0,99.0 +1987,9,18,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,10.0,40,97500,0,0,374,0,0,0,0,0,0,0,100,2.1,6,2,56.3,77777,9,999999999,170,0.0990,0,88,999.000,999.0,99.0 +1987,9,18,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,10.0,43,97400,0,0,363,0,0,0,0,0,0,0,120,2.1,6,1,56.3,77777,9,999999999,170,0.0990,0,88,999.000,999.0,99.0 +1987,9,18,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,11.1,48,97400,0,0,362,0,0,0,0,0,0,0,110,1.5,4,1,56.3,77777,9,999999999,180,0.0990,0,88,999.000,999.0,99.0 +1987,9,18,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,10.6,48,97500,0,0,364,0,0,0,0,0,0,0,70,2.1,5,2,56.3,77777,9,999999999,170,0.0990,0,88,999.000,999.0,99.0 +1987,9,18,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,10.6,48,97500,0,0,359,0,0,0,0,0,0,0,80,2.1,3,1,80.5,77777,9,999999999,170,0.0990,0,88,999.000,999.0,99.0 +1987,9,18,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,10.6,48,97500,79,1027,352,42,167,23,3900,7600,3300,400,90,3.1,0,0,80.5,77777,9,999999999,170,0.0790,0,88,999.000,999.0,99.0 +1987,9,18,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,10.6,45,97600,355,1354,357,204,583,50,20800,50100,7700,970,70,2.1,0,0,64.4,77777,9,999999999,180,0.0790,0,88,999.000,999.0,99.0 +1987,9,18,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,11.7,39,97600,621,1354,375,429,769,74,45100,74800,10600,1590,120,2.6,0,0,64.4,77777,9,999999999,190,0.0790,0,88,999.000,999.0,99.0 +1987,9,18,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,11.7,39,97600,848,1354,375,628,849,93,65000,84100,12200,2030,120,2.6,0,0,64.4,77777,9,999999999,190,0.0790,0,88,999.000,999.0,99.0 +1987,9,18,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,11.1,31,97600,1018,1354,391,787,899,106,81100,89800,13400,2810,300,2.6,0,0,64.4,77777,9,999999999,180,0.0790,0,88,999.000,999.0,99.0 +1987,9,18,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,10.6,27,97600,1121,1354,400,880,920,114,90600,92100,14100,3690,160,2.6,0,0,56.3,77777,9,999999999,170,0.0790,0,88,999.000,999.0,99.0 +1987,9,18,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,11.1,26,97500,1149,1354,409,905,924,116,93100,92600,14300,4040,160,2.1,0,0,56.3,77777,9,999999999,180,0.0790,0,88,999.000,999.0,99.0 +1987,9,18,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34.4,9.4,22,97400,1101,1354,412,866,921,112,89100,92200,13900,3470,260,3.1,0,0,64.4,77777,9,999999999,160,0.0790,0,88,999.000,999.0,99.0 +1987,9,18,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.9,7.2,19,97300,979,1354,407,760,901,104,78400,89900,13200,2590,10,2.1,0,0,64.4,77777,9,999999999,140,0.0790,0,88,999.000,999.0,99.0 +1987,9,18,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34.4,8.3,20,97200,792,1354,411,590,848,89,62500,84800,12700,2130,350,2.1,0,0,64.4,77777,9,999999999,150,0.0790,0,88,999.000,999.0,99.0 +1987,9,18,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34.4,6.7,18,97200,553,1354,416,335,608,83,35000,58300,11100,1680,330,1.5,1,1,64.4,77777,9,999999999,140,0.0790,0,88,999.000,999.0,99.0 +1987,9,18,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.9,7.8,20,97100,278,1354,407,155,526,44,15800,41100,7400,820,330,2.1,0,0,64.4,77777,9,999999999,150,0.0790,0,88,999.000,999.0,99.0 +1987,9,18,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,5.6,18,97200,32,666,399,24,75,15,2000,2600,1900,260,240,1.5,0,0,56.3,77777,9,999999999,120,0.0790,0,88,999.000,999.0,99.0 +1987,9,18,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,6.7,22,97200,0,0,391,0,0,0,0,0,0,0,160,1.5,0,0,56.3,77777,9,999999999,140,0.0990,0,88,999.000,999.0,99.0 +1987,9,18,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,6.1,21,97300,0,0,388,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,130,0.0990,0,88,999.000,999.0,99.0 +1987,9,18,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,6.7,23,97300,0,0,386,0,0,0,0,0,0,0,90,1.5,0,0,56.3,77777,9,999999999,140,0.0990,0,88,999.000,999.0,99.0 +1987,9,18,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,7.8,27,97300,0,0,382,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,150,0.0990,0,88,999.000,999.0,99.0 +1987,9,18,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,9.4,33,97300,0,0,375,0,0,0,0,0,0,0,40,1.5,0,0,56.3,77777,9,999999999,160,0.0990,0,88,999.000,999.0,99.0 +1987,9,19,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,8.3,31,97300,0,0,371,0,0,0,0,0,0,0,110,2.6,0,0,48.3,77777,9,999999999,150,0.0990,0,88,999.000,999.0,99.0 +1987,9,19,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,5.6,27,97300,0,0,372,0,0,0,0,0,0,0,80,2.1,4,1,48.3,77777,9,999999999,130,0.0990,0,88,999.000,999.0,99.0 +1987,9,19,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,7.2,30,97300,0,0,374,0,0,0,0,0,0,0,90,2.1,4,1,56.3,77777,9,999999999,140,0.0990,0,88,999.000,999.0,99.0 +1987,9,19,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,7.8,32,97300,0,0,381,0,0,0,0,0,0,0,70,2.6,4,3,56.3,77777,9,999999999,140,0.0990,0,88,999.000,999.0,99.0 +1987,9,19,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,7.8,36,97300,0,0,372,0,0,0,0,0,0,0,70,3.1,3,3,56.3,77777,9,999999999,150,0.0990,0,88,999.000,999.0,99.0 +1987,9,19,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,7.8,36,97400,0,0,369,0,0,0,0,0,0,0,70,2.1,2,2,80.5,77777,9,999999999,150,0.0990,0,88,999.000,999.0,99.0 +1987,9,19,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,7.8,37,97400,77,1005,354,45,237,19,3900,12100,2900,350,60,2.1,0,0,64.4,77777,9,999999999,150,0.0470,0,88,999.000,999.0,99.0 +1987,9,19,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,7.8,30,97500,352,1354,371,217,678,39,22700,59000,7400,880,80,1.5,0,0,64.4,77777,9,999999999,140,0.0470,0,88,999.000,999.0,99.0 +1987,9,19,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,7.2,26,97600,618,1354,381,440,830,58,46000,80100,9400,1370,80,1.5,0,0,64.4,77777,9,999999999,140,0.0470,0,88,999.000,999.0,99.0 +1987,9,19,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,8.3,25,97600,845,1354,391,641,904,73,66800,89700,10700,1870,70,1.5,0,0,56.3,77777,9,999999999,150,0.0470,0,88,999.000,999.0,99.0 +1987,9,19,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,8.3,22,97600,1015,1354,402,795,943,84,82600,94300,11700,2510,90,1.5,0,0,56.3,77777,9,999999999,150,0.0470,0,88,999.000,999.0,99.0 +1987,9,19,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.9,8.3,21,97500,1117,1354,408,888,960,90,91900,96300,12200,3190,90,1.5,0,0,48.3,77777,9,999999999,150,0.0470,0,88,999.000,999.0,99.0 +1987,9,19,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.0,6.7,17,97400,1145,1354,412,921,975,91,95300,97800,12400,3450,330,1.5,0,0,48.3,77777,9,999999999,130,0.0470,0,88,999.000,999.0,99.0 +1987,9,19,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.1,5.6,15,97300,1096,1354,416,877,967,89,90800,96900,12200,3020,240,1.0,0,0,48.3,77777,9,999999999,120,0.0470,0,88,999.000,999.0,99.0 +1987,9,19,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.7,5.0,14,97200,974,1354,419,767,945,81,79500,94400,11400,2300,330,3.1,0,0,48.3,77777,9,999999999,120,0.0470,0,88,999.000,999.0,99.0 +1987,9,19,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.2,4.4,13,97100,786,1354,420,598,902,69,62200,89100,10400,1720,270,2.1,0,0,40.2,77777,9,999999999,120,0.0470,0,88,999.000,999.0,99.0 +1987,9,19,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.7,5.0,14,97100,547,1354,419,386,813,53,40200,77100,9000,1240,260,2.1,0,0,40.2,77777,9,999999999,120,0.0470,0,88,999.000,999.0,99.0 +1987,9,19,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.1,5.0,14,97100,272,1354,415,160,614,34,16300,49100,6400,700,240,2.1,0,0,40.2,77777,9,999999999,120,0.0470,0,88,999.000,999.0,99.0 +1987,9,19,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.9,5.0,16,97100,29,621,404,27,117,13,1900,4800,1700,240,0,0.0,0,0,40.2,77777,9,999999999,120,0.0470,0,88,999.000,999.0,99.0 +1987,9,19,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,5.6,19,97100,0,0,396,0,0,0,0,0,0,0,0,0.0,0,0,40.2,77777,9,999999999,130,0.0990,0,88,999.000,999.0,99.0 +1987,9,19,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,6.1,21,97200,0,0,391,0,0,0,0,0,0,0,0,0.0,0,0,48.3,77777,9,999999999,130,0.0990,0,88,999.000,999.0,99.0 +1987,9,19,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,8.9,27,97200,0,0,389,0,0,0,0,0,0,0,0,0.0,0,0,48.3,77777,9,999999999,160,0.0990,0,88,999.000,999.0,99.0 +1987,9,19,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,8.3,28,97200,0,0,382,0,0,0,0,0,0,0,0,0.0,0,0,48.3,77777,9,999999999,150,0.0990,0,88,999.000,999.0,99.0 +1987,9,19,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,6.7,26,97300,0,0,375,0,0,0,0,0,0,0,80,2.1,0,0,56.3,77777,9,999999999,130,0.0990,0,88,999.000,999.0,99.0 +1987,9,20,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,6.7,27,97300,0,0,372,0,0,0,0,0,0,0,90,2.1,0,0,56.3,77777,9,999999999,130,0.0980,0,88,999.000,999.0,99.0 +1987,9,20,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,5.6,26,97300,0,0,368,0,0,0,0,0,0,0,70,2.1,0,0,56.3,77777,9,999999999,130,0.0980,0,88,999.000,999.0,99.0 +1987,9,20,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,5.0,28,97300,0,0,359,0,0,0,0,0,0,0,100,2.6,0,0,48.3,77777,9,999999999,120,0.0980,0,88,999.000,999.0,99.0 +1987,9,20,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,6.1,32,97300,0,0,355,0,0,0,0,0,0,0,90,2.1,0,0,56.3,77777,9,999999999,130,0.0980,0,88,999.000,999.0,99.0 +1987,9,20,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,6.1,33,97300,0,0,352,0,0,0,0,0,0,0,80,2.1,0,0,56.3,77777,9,999999999,130,0.0980,0,88,999.000,999.0,99.0 +1987,9,20,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,6.1,33,97300,0,0,352,0,0,0,0,0,0,0,90,2.1,0,0,80.5,77777,9,999999999,130,0.0980,0,88,999.000,999.0,99.0 +1987,9,20,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,6.1,33,97400,75,1005,352,40,135,24,3600,6000,3200,420,80,3.1,0,0,48.3,77777,9,999999999,130,0.0970,0,88,999.000,999.0,99.0 +1987,9,20,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,6.7,30,97400,348,1355,364,201,564,55,20900,47700,8600,1040,100,3.1,0,0,56.3,77777,9,999999999,140,0.0970,0,88,999.000,999.0,99.0 +1987,9,20,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,6.1,25,97500,615,1355,374,427,754,82,44200,72900,11000,1680,110,2.1,0,0,56.3,77777,9,999999999,130,0.0970,0,88,999.000,999.0,99.0 +1987,9,20,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,7.8,25,97500,841,1355,387,628,838,103,66000,83900,13800,2490,100,1.5,0,0,56.3,77777,9,999999999,150,0.0970,0,88,999.000,999.0,99.0 +1987,9,20,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,7.8,21,97400,1011,1355,402,785,887,118,80600,88500,14400,2850,100,1.5,0,0,48.3,77777,9,999999999,140,0.0970,0,88,999.000,999.0,99.0 +1987,9,20,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.9,8.3,21,97300,1113,1355,408,878,898,135,89800,89800,15900,3860,120,1.5,1,0,48.3,77777,9,999999999,150,0.0970,0,88,999.000,999.0,99.0 +1987,9,20,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.1,5.6,15,97200,1141,1355,416,910,911,138,93000,91100,16100,4240,140,1.5,1,0,56.3,77777,9,999999999,120,0.0970,0,88,999.000,999.0,99.0 +1987,9,20,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.8,3.3,12,97100,1091,1355,422,865,914,124,88700,91400,14900,3520,220,2.6,0,0,56.3,77777,9,999999999,110,0.0970,0,88,999.000,999.0,99.0 +1987,9,20,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.8,3.3,12,97000,968,1355,422,753,876,123,79400,88200,16200,3410,220,3.1,1,0,56.3,77777,9,999999999,110,0.0970,0,88,999.000,999.0,99.0 +1987,9,20,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.8,2.8,11,97000,780,1355,421,586,812,113,60300,80200,14000,2430,190,2.1,2,0,56.3,77777,9,999999999,100,0.0970,0,88,999.000,999.0,99.0 +1987,9,20,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.1,2.2,12,96900,540,1355,425,356,558,130,37200,53500,15800,2540,290,1.5,6,2,56.3,77777,9,999999999,100,0.0970,0,88,999.000,999.0,99.0 +1987,9,20,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.7,2.2,11,96900,265,1355,432,129,259,77,13400,19200,9600,1490,290,1.5,6,3,56.3,77777,9,999999999,100,0.0970,0,88,999.000,999.0,99.0 +1987,9,20,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.0,2.2,13,96900,26,599,419,20,31,16,1900,1200,1900,330,320,1.5,6,2,56.3,77777,9,999999999,100,0.0970,0,88,999.000,999.0,99.0 +1987,9,20,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,2.8,15,96900,0,0,418,0,0,0,0,0,0,0,0,0.0,8,5,48.3,7620,9,999999999,110,0.0980,0,88,999.000,999.0,99.0 +1987,9,20,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,5.6,19,97000,0,0,416,0,0,0,0,0,0,0,0,0.0,8,5,48.3,7620,9,999999999,120,0.0980,0,88,999.000,999.0,99.0 +1987,9,20,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,5.6,20,97000,0,0,417,0,0,0,0,0,0,0,60,1.5,9,6,48.3,7620,9,999999999,130,0.0980,0,88,999.000,999.0,99.0 +1987,9,20,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,-0.6,13,97100,0,0,402,0,0,0,0,0,0,0,140,1.5,8,5,48.3,7620,9,999999999,80,0.0980,0,88,999.000,999.0,99.0 +1987,9,20,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,6.1,21,97100,0,0,415,0,0,0,0,0,0,0,0,0.0,8,6,48.3,7620,9,999999999,130,0.0980,0,88,999.000,999.0,99.0 +1987,9,21,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,6.7,25,97200,0,0,411,0,0,0,0,0,0,0,0,0.0,9,7,56.3,7620,9,999999999,140,0.0980,0,88,999.000,999.0,99.0 +1987,9,21,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,10.6,34,97200,0,0,396,0,0,0,0,0,0,0,40,1.5,7,3,56.3,77777,9,999999999,170,0.0980,0,88,999.000,999.0,99.0 +1987,9,21,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,13.3,42,97300,0,0,399,0,0,0,0,0,0,0,40,1.5,8,4,56.3,77777,9,999999999,200,0.0980,0,88,999.000,999.0,99.0 +1987,9,21,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,13.9,44,97300,0,0,400,0,0,0,0,0,0,0,0,0.0,9,4,56.3,77777,9,999999999,209,0.0980,0,88,999.000,999.0,99.0 +1987,9,21,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,13.3,44,97300,0,0,390,0,0,0,0,0,0,0,0,0.0,7,2,56.3,77777,9,999999999,209,0.0980,0,88,999.000,999.0,99.0 +1987,9,21,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,13.9,47,97300,0,0,397,0,0,0,0,0,0,0,0,0.0,8,5,56.3,7620,9,999999999,209,0.0980,0,88,999.000,999.0,99.0 +1987,9,21,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,14.4,50,97300,72,983,392,28,5,27,3000,0,3000,870,0,0.0,9,4,56.3,77777,9,999999999,220,0.2050,0,88,999.000,999.0,99.0 +1987,9,21,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,8.3,31,97400,345,1356,387,162,208,109,17000,17500,12500,2190,50,1.5,9,3,56.3,77777,9,999999999,150,0.2050,0,88,999.000,999.0,99.0 +1987,9,21,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,11.7,32,97400,612,1356,405,376,388,199,39700,39400,21900,4420,100,2.1,8,2,56.3,77777,9,999999999,180,0.2050,0,88,999.000,999.0,99.0 +1987,9,21,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,13.3,33,97500,838,1356,411,529,538,194,56600,55400,22300,4670,120,2.6,4,1,48.3,77777,9,999999999,209,0.2050,0,88,999.000,999.0,99.0 +1987,9,21,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,12.8,29,97500,1008,1356,425,632,487,267,67200,50600,29500,8270,130,2.1,6,2,48.3,77777,9,999999999,200,0.2050,0,88,999.000,999.0,99.0 +1987,9,21,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.9,11.1,25,97400,1109,1356,430,780,551,326,82500,57400,35400,12630,60,1.5,7,3,56.3,77777,9,999999999,180,0.2050,0,88,999.000,999.0,99.0 +1987,9,21,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.0,11.1,23,97400,1136,1356,439,894,674,325,95000,70300,35900,13480,320,1.0,8,4,56.3,77777,9,999999999,180,0.2050,0,88,999.000,999.0,99.0 +1987,9,21,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.6,10.0,21,97300,1086,1356,445,792,500,388,82000,51900,40300,14440,80,1.5,9,5,56.3,7620,9,999999999,170,0.2050,0,88,999.000,999.0,99.0 +1987,9,21,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.1,9.4,20,97200,963,1356,443,655,425,351,70000,45700,37500,10520,190,3.1,9,4,56.3,77777,9,999999999,160,0.2050,0,88,999.000,999.0,99.0 +1987,9,21,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.0,11.1,23,97100,775,1356,447,483,336,289,50900,35400,30700,7280,10,2.1,9,6,64.4,7620,9,999999999,180,0.2050,0,88,999.000,999.0,99.0 +1987,9,21,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.0,10.0,22,97100,534,1356,450,188,71,160,20600,6800,17900,4470,330,1.5,9,7,56.3,7620,9,999999999,170,0.2050,0,88,999.000,999.0,99.0 +1987,9,21,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34.4,11.1,24,97100,259,1356,443,111,119,88,11900,9000,10200,1890,360,1.5,9,6,64.4,7620,9,999999999,180,0.2050,0,88,999.000,999.0,99.0 +1987,9,21,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,11.1,26,97100,24,576,426,12,3,12,1400,0,1400,420,10,2.1,7,3,64.4,77777,9,999999999,180,0.2050,0,88,999.000,999.0,99.0 +1987,9,21,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,11.7,27,97200,0,0,473,0,0,0,0,0,0,0,120,2.1,10,10,48.3,3660,9,999999999,190,0.0980,0,88,999.000,999.0,99.0 +1987,9,21,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,15.0,44,97400,0,0,447,0,0,0,0,0,0,0,140,7.2,10,10,16.1,2130,9,999999999,230,0.0980,0,88,999.000,999.0,99.0 +1987,9,21,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,15.0,44,97600,0,0,447,0,0,0,0,0,0,0,120,5.2,10,10,32.2,3350,9,999999999,230,0.0980,0,88,999.000,999.0,99.0 +1987,9,21,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,15.0,44,97600,0,0,447,0,0,0,0,0,0,0,100,4.1,10,10,32.2,3350,9,999999999,230,0.0980,0,88,999.000,999.0,99.0 +1987,9,21,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,12.8,40,97600,0,0,441,0,0,0,0,0,0,0,110,4.1,10,10,24.1,7620,9,999999999,200,0.0980,0,88,999.000,999.0,99.0 +1987,9,22,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,12.8,41,97600,0,0,438,0,0,0,0,0,0,0,100,2.1,10,10,32.2,7620,9,999999999,200,0.0970,0,88,999.000,999.0,99.0 +1987,9,22,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,12.8,41,97500,0,0,410,0,0,0,0,0,0,0,50,2.1,7,7,40.2,3350,9,999999999,200,0.0970,0,88,999.000,999.0,99.0 +1987,9,22,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,12.8,42,97500,0,0,396,0,0,0,0,0,0,0,130,1.5,4,4,48.3,77777,9,999999999,200,0.0970,0,88,999.000,999.0,99.0 +1987,9,22,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,12.8,44,97500,0,0,390,0,0,0,0,0,0,0,0,0.0,3,3,56.3,77777,9,999999999,200,0.0970,0,88,999.000,999.0,99.0 +1987,9,22,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,12.8,47,97500,0,0,380,0,0,0,0,0,0,0,330,1.5,2,2,56.3,77777,9,999999999,200,0.0970,0,88,999.000,999.0,99.0 +1987,9,22,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,12.2,47,97600,0,0,380,0,0,0,0,0,0,0,50,1.5,7,3,56.3,77777,9,999999999,190,0.0970,0,88,999.000,999.0,99.0 +1987,9,22,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,12.8,45,97700,70,961,390,40,29,36,4200,1800,4000,790,90,2.6,9,4,56.3,77777,9,999999999,200,0.0390,0,88,999.000,999.0,99.0 +1987,9,22,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,12.2,38,97800,342,1357,401,184,356,93,18900,29500,11400,1740,110,2.6,7,4,72.4,7620,9,999999999,190,0.0390,0,88,999.000,999.0,99.0 +1987,9,22,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,13.3,36,97800,609,1357,411,374,542,129,39900,53400,15900,2570,80,4.1,6,3,72.4,77777,9,999999999,209,0.0390,0,88,999.000,999.0,99.0 +1987,9,22,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,12.8,32,97800,835,1357,420,570,698,137,60100,70500,16600,3350,100,2.6,4,3,72.4,77777,9,999999999,200,0.0390,0,88,999.000,999.0,99.0 +1987,9,22,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,13.3,30,97800,1004,1357,433,659,506,282,69700,52600,30700,8720,120,3.1,6,4,72.4,7620,9,999999999,209,0.0390,0,88,999.000,999.0,99.0 +1987,9,22,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,15.0,39,97700,1105,1357,432,562,193,403,61400,20500,44600,14970,80,2.1,9,7,72.4,3660,9,999999999,230,0.0390,0,88,999.000,999.0,99.0 +1987,9,22,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.9,12.8,28,97600,1132,1357,432,820,753,188,87600,77200,23100,7620,110,2.6,7,3,72.4,77777,9,999999999,200,0.0390,0,88,999.000,999.0,99.0 +1987,9,22,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.0,12.2,25,97600,1081,1357,438,744,645,227,78100,65300,25900,7950,80,2.1,7,3,72.4,77777,9,999999999,190,0.0390,0,88,999.000,999.0,99.0 +1987,9,22,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.1,12.8,25,97400,957,1357,448,656,678,174,69100,68800,20400,4920,130,2.1,7,4,72.4,7620,9,999999999,200,0.0390,0,88,999.000,999.0,99.0 +1987,9,22,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.0,12.2,25,97400,769,1357,471,292,91,240,32100,9200,26900,7590,80,2.1,9,9,72.4,3660,9,999999999,190,0.0390,0,88,999.000,999.0,99.0 +1987,9,22,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,16.1,45,97400,528,1357,455,125,9,121,14300,600,14100,4850,220,7.2,10,10,32.2,1830,9,999999999,250,0.0390,0,88,999.000,999.0,99.0 +1987,9,22,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,17.8,60,97700,252,1357,438,44,1,44,5100,0,5100,1660,140,10.3,10,10,4.8,1830,9,999999999,270,0.0390,0,88,999.000,999.0,99.0 +1987,9,22,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,18.3,81,97900,21,531,414,8,1,8,0,0,0,0,210,4.1,10,10,32.2,1830,9,999999999,280,0.0390,0,88,999.000,999.0,99.0 +1987,9,22,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,18.9,84,97900,0,0,414,0,0,0,0,0,0,0,30,5.2,10,10,40.2,1830,9,999999999,290,0.0970,0,88,999.000,999.0,99.0 +1987,9,22,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,17.8,76,97900,0,0,416,0,0,0,0,0,0,0,30,5.2,10,10,56.3,3660,9,999999999,270,0.0970,0,88,999.000,999.0,99.0 +1987,9,22,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,17.2,73,97900,0,0,415,0,0,0,0,0,0,0,90,5.2,10,10,56.3,3660,9,999999999,260,0.0970,0,88,999.000,999.0,99.0 +1987,9,22,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,17.2,73,97900,0,0,415,0,0,0,0,0,0,0,270,4.1,10,10,56.3,7620,9,999999999,260,0.0970,0,88,999.000,999.0,99.0 +1987,9,22,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,18.3,81,97900,0,0,374,0,0,0,0,0,0,0,190,1.5,6,3,56.3,77777,9,999999999,280,0.0970,0,88,999.000,999.0,99.0 +1987,9,23,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,17.8,81,97900,0,0,362,0,0,0,0,0,0,0,0,0.0,3,1,56.3,77777,9,999999999,270,0.0970,0,88,999.000,999.0,99.0 +1987,9,23,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,17.8,79,97800,0,0,358,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,270,0.0970,0,88,999.000,999.0,99.0 +1987,9,23,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,18.9,90,97800,0,0,354,0,0,0,0,0,0,0,250,1.5,0,0,56.3,77777,9,999999999,290,0.0970,0,88,999.000,999.0,99.0 +1987,9,23,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,18.3,87,97700,0,0,353,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,280,0.0970,0,88,999.000,999.0,99.0 +1987,9,23,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,18.3,87,97700,0,0,368,0,0,0,0,0,0,0,0,0.0,3,3,56.3,77777,9,999999999,280,0.0970,0,88,999.000,999.0,99.0 +1987,9,23,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,17.2,76,97800,0,0,373,0,0,0,0,0,0,0,40,2.1,6,3,80.5,77777,9,999999999,260,0.0970,0,88,999.000,999.0,99.0 +1987,9,23,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,16.7,69,97900,68,962,387,25,11,24,2700,600,2700,580,100,2.1,8,6,80.5,3660,9,999999999,260,0.1480,0,88,999.000,999.0,99.0 +1987,9,23,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,16.7,66,97900,339,1357,390,145,92,121,15700,8100,13700,2900,80,2.1,8,6,112.7,7620,9,999999999,250,0.1480,0,88,999.000,999.0,99.0 +1987,9,23,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,17.2,66,98000,605,1357,393,296,270,174,31500,27400,19300,3750,100,3.1,7,6,96.6,3660,9,999999999,260,0.1480,0,88,999.000,999.0,99.0 +1987,9,23,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,15.0,56,98100,831,1357,404,217,90,162,24500,9500,18700,4430,130,2.6,9,8,96.6,3660,9,999999999,230,0.1480,0,88,999.000,999.0,99.0 +1987,9,23,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,17.8,76,98000,1000,1357,396,356,227,188,40200,24600,21900,5400,70,6.7,9,8,72.4,3660,9,999999999,270,0.1480,0,88,999.000,999.0,99.0 +1987,9,23,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,16.7,56,97900,1101,1357,398,755,560,298,80600,58400,33100,11230,80,5.2,6,4,72.4,7620,9,999999999,250,0.1480,0,88,999.000,999.0,99.0 +1987,9,23,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,14.4,43,97900,1127,1357,407,719,516,288,77300,53900,32400,11550,110,3.1,6,4,112.7,7620,9,999999999,220,0.1480,0,88,999.000,999.0,99.0 +1987,9,23,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,13.9,36,97700,1076,1357,415,774,629,271,80000,63000,29900,9160,230,2.1,5,3,96.6,77777,9,999999999,209,0.1480,0,88,999.000,999.0,99.0 +1987,9,23,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,13.9,34,97600,952,1357,417,683,685,199,71200,69000,22700,5470,360,1.0,4,2,112.7,77777,9,999999999,209,0.1480,0,88,999.000,999.0,99.0 +1987,9,23,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,13.3,34,97500,763,1357,408,497,569,174,52900,58000,20300,3880,330,1.5,4,1,112.7,77777,9,999999999,209,0.1480,0,88,999.000,999.0,99.0 +1987,9,23,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,13.3,33,97500,522,1357,416,323,541,112,34100,51500,14300,2140,0,0.0,3,2,80.5,77777,9,999999999,209,0.1480,0,88,999.000,999.0,99.0 +1987,9,23,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,13.3,33,97500,246,1357,424,96,205,58,10100,14600,7500,1070,330,2.6,6,4,80.5,7620,9,999999999,209,0.1480,0,88,999.000,999.0,99.0 +1987,9,23,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,13.9,37,97500,19,509,415,10,4,10,0,0,0,0,330,2.1,7,4,64.4,7620,9,999999999,209,0.1480,0,88,999.000,999.0,99.0 +1987,9,23,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,15.0,43,97500,0,0,414,0,0,0,0,0,0,0,210,2.1,8,5,56.3,7620,9,999999999,230,0.0970,0,88,999.000,999.0,99.0 +1987,9,23,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,18.3,64,97500,0,0,415,0,0,0,0,0,0,0,10,3.1,9,8,40.2,3660,9,999999999,280,0.0970,0,88,999.000,999.0,99.0 +1987,9,23,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,18.9,65,97600,0,0,404,0,0,0,0,0,0,0,90,2.6,5,5,56.3,77777,9,999999999,290,0.0970,0,88,999.000,999.0,99.0 +1987,9,23,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,18.9,69,97600,0,0,388,0,0,0,0,0,0,0,90,1.5,3,2,56.3,77777,9,999999999,290,0.0970,0,88,999.000,999.0,99.0 +1987,9,23,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,17.2,60,97600,0,0,396,0,0,0,0,0,0,0,80,2.1,5,4,56.3,77777,9,999999999,260,0.0970,0,88,999.000,999.0,99.0 +1987,9,24,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,17.8,69,97600,0,0,385,0,0,0,0,0,0,0,0,0.0,3,3,56.3,77777,9,999999999,270,0.0960,0,88,999.000,999.0,99.0 +1987,9,24,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,18.3,74,97600,0,0,373,0,0,0,0,0,0,0,0,0.0,1,1,56.3,77777,9,999999999,280,0.0960,0,88,999.000,999.0,99.0 +1987,9,24,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,17.8,71,97600,0,0,382,0,0,0,0,0,0,0,0,0.0,3,3,56.3,77777,9,999999999,270,0.0960,0,88,999.000,999.0,99.0 +1987,9,24,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,17.8,76,97600,0,0,376,0,0,0,0,0,0,0,230,1.5,3,3,56.3,77777,9,999999999,270,0.0960,0,88,999.000,999.0,99.0 +1987,9,24,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,16.7,71,97600,0,0,375,0,0,0,0,0,0,0,0,0.0,3,3,56.3,77777,9,999999999,250,0.0960,0,88,999.000,999.0,99.0 +1987,9,24,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,17.8,76,97600,0,0,376,0,0,0,0,0,0,0,0,0.0,3,3,56.3,77777,9,999999999,270,0.0960,0,88,999.000,999.0,99.0 +1987,9,24,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,17.2,71,97600,66,939,381,33,62,26,3200,2400,3100,470,0,0.0,4,4,56.3,77777,9,999999999,260,0.0960,0,88,999.000,999.0,99.0 +1987,9,24,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,17.2,60,97700,336,1358,396,152,189,104,15800,15700,11900,2080,310,2.1,6,4,72.4,7620,9,999999999,260,0.0960,0,88,999.000,999.0,99.0 +1987,9,24,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,16.1,54,97700,602,1358,400,412,534,173,42600,52200,19300,3550,10,2.1,8,5,72.4,3660,9,999999999,240,0.0960,0,88,999.000,999.0,99.0 +1987,9,24,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,16.7,53,97700,828,1358,422,449,192,331,48400,20000,36100,9040,360,2.1,9,8,72.4,2130,9,999999999,260,0.0960,0,88,999.000,999.0,99.0 +1987,9,24,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,18.3,60,97700,997,1358,406,734,644,258,78200,66900,28900,7800,340,2.1,7,5,72.4,3660,9,999999999,280,0.0960,0,88,999.000,999.0,99.0 +1987,9,24,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,17.2,49,97600,1097,1358,410,752,605,260,78200,60800,28900,9290,30,2.1,4,3,96.6,77777,9,999999999,260,0.0960,0,88,999.000,999.0,99.0 +1987,9,24,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,15.6,40,97600,1123,1358,414,822,737,207,87000,75200,24600,8100,350,1.5,2,2,96.6,77777,9,999999999,240,0.0960,0,88,999.000,999.0,99.0 +1987,9,24,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,14.4,34,97400,1071,1358,421,735,658,212,77300,66800,24500,7290,230,2.1,2,2,96.6,77777,9,999999999,220,0.0960,0,88,999.000,999.0,99.0 +1987,9,24,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,14.4,33,97300,947,1358,424,652,658,189,68100,66400,21700,5180,220,2.1,4,2,96.6,77777,9,999999999,220,0.0960,0,88,999.000,999.0,99.0 +1987,9,24,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,14.4,34,97300,757,1358,421,502,632,146,52100,62800,17000,3240,10,3.1,5,2,96.6,77777,9,999999999,220,0.0960,0,88,999.000,999.0,99.0 +1987,9,24,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,14.4,35,97200,515,1358,422,296,384,148,30400,36300,16600,2920,330,2.6,7,3,72.4,77777,9,999999999,220,0.0960,0,88,999.000,999.0,99.0 +1987,9,24,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,15.0,36,97200,239,1358,423,110,266,62,11200,18700,7900,1130,330,2.6,7,3,72.4,77777,9,999999999,230,0.0960,0,88,999.000,999.0,99.0 +1987,9,24,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,14.4,38,97300,16,487,419,11,8,10,0,0,0,0,280,1.5,8,4,72.4,77777,9,999999999,220,0.0960,0,88,999.000,999.0,99.0 +1987,9,24,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,16.1,46,97300,0,0,405,0,0,0,0,0,0,0,200,1.5,6,2,56.3,77777,9,999999999,240,0.0960,0,88,999.000,999.0,99.0 +1987,9,24,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,15.6,46,97400,0,0,401,0,0,0,0,0,0,0,290,1.5,5,2,56.3,77777,9,999999999,240,0.0960,0,88,999.000,999.0,99.0 +1987,9,24,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,17.2,53,97400,0,0,401,0,0,0,0,0,0,0,110,2.6,5,2,48.3,77777,9,999999999,260,0.0960,0,88,999.000,999.0,99.0 +1987,9,24,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,16.1,52,97400,0,0,388,0,0,0,0,0,0,0,120,2.6,2,1,56.3,77777,9,999999999,240,0.0960,0,88,999.000,999.0,99.0 +1987,9,24,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,15.0,49,97400,0,0,392,0,0,0,0,0,0,0,120,1.5,2,2,56.3,77777,9,999999999,230,0.0960,0,88,999.000,999.0,99.0 +1987,9,25,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,15.6,52,97400,0,0,393,0,0,0,0,0,0,0,100,2.1,4,3,56.3,77777,9,999999999,240,0.0960,0,88,999.000,999.0,99.0 +1987,9,25,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,15.6,54,97400,0,0,387,0,0,0,0,0,0,0,80,2.1,2,2,56.3,77777,9,999999999,240,0.0960,0,88,999.000,999.0,99.0 +1987,9,25,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,15.6,58,97400,0,0,369,0,0,0,0,0,0,0,70,2.6,0,0,56.3,77777,9,999999999,240,0.0960,0,88,999.000,999.0,99.0 +1987,9,25,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,15.6,60,97400,0,0,366,0,0,0,0,0,0,0,80,2.1,0,0,56.3,77777,9,999999999,240,0.0960,0,88,999.000,999.0,99.0 +1987,9,25,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,15.0,58,97400,0,0,378,0,0,0,0,0,0,0,80,3.1,2,2,56.3,77777,9,999999999,230,0.0960,0,88,999.000,999.0,99.0 +1987,9,25,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,15.6,62,97400,0,0,382,0,0,0,0,0,0,0,80,2.1,4,4,64.4,77777,9,999999999,240,0.0960,0,88,999.000,999.0,99.0 +1987,9,25,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,15.6,62,97500,64,917,382,31,74,23,3000,2800,2800,410,110,2.6,4,4,80.5,77777,9,999999999,240,0.0480,0,88,999.000,999.0,99.0 +1987,9,25,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,15.6,56,97600,332,1359,384,175,408,74,18300,33500,10100,1350,110,1.5,2,2,72.4,77777,9,999999999,240,0.0480,0,88,999.000,999.0,99.0 +1987,9,25,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,15.0,47,97600,599,1359,395,403,675,104,42000,65200,13200,2110,100,1.5,2,2,64.4,77777,9,999999999,230,0.0480,0,88,999.000,999.0,99.0 +1987,9,25,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,14.4,43,97600,824,1359,387,611,880,73,63600,87200,10600,1820,70,1.5,0,0,64.4,77777,9,999999999,220,0.0480,0,88,999.000,999.0,99.0 +1987,9,25,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,14.4,38,97600,993,1359,399,758,917,83,78700,91700,11500,2390,80,2.1,0,0,64.4,77777,9,999999999,220,0.0480,0,88,999.000,999.0,99.0 +1987,9,25,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,14.4,35,97600,1093,1359,405,852,941,89,88200,94300,12100,2980,110,1.5,0,0,64.4,77777,9,999999999,220,0.0480,0,88,999.000,999.0,99.0 +1987,9,25,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,13.9,31,97400,1118,1359,412,878,950,91,90900,95300,12300,3190,110,2.1,0,0,64.4,77777,9,999999999,209,0.0480,0,88,999.000,999.0,99.0 +1987,9,25,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,13.9,31,97300,1066,1359,412,828,937,88,85800,93900,12000,2800,300,3.1,0,0,72.4,77777,9,999999999,209,0.0480,0,88,999.000,999.0,99.0 +1987,9,25,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.9,13.3,29,97300,941,1359,429,684,804,122,71700,80800,15600,3220,290,2.1,2,2,72.4,77777,9,999999999,209,0.0480,0,88,999.000,999.0,99.0 +1987,9,25,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34.4,11.7,25,97200,751,1359,423,502,699,112,53100,70200,14200,2560,260,3.1,1,1,72.4,77777,9,999999999,180,0.0480,0,88,999.000,999.0,99.0 +1987,9,25,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34.4,11.7,25,97200,509,1359,415,344,772,51,35900,72400,8700,1180,250,2.6,0,0,64.4,77777,9,999999999,180,0.0480,0,88,999.000,999.0,99.0 +1987,9,25,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,12.2,29,97200,233,1359,408,128,548,31,12800,41500,5700,620,230,1.5,0,0,72.4,77777,9,999999999,190,0.0480,0,88,999.000,999.0,99.0 +1987,9,25,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,11.1,28,97100,14,442,400,17,63,9,0,0,0,0,350,2.1,0,0,64.4,77777,9,999999999,180,0.0480,0,88,999.000,999.0,99.0 +1987,9,25,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,12.8,34,97200,0,0,397,0,0,0,0,0,0,0,300,1.5,0,0,56.3,77777,9,999999999,200,0.0960,0,88,999.000,999.0,99.0 +1987,9,25,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,13.3,36,97200,0,0,394,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,209,0.0960,0,88,999.000,999.0,99.0 +1987,9,25,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,12.8,37,97200,0,0,388,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,200,0.0960,0,88,999.000,999.0,99.0 +1987,9,25,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,13.3,40,97200,0,0,385,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,209,0.0960,0,88,999.000,999.0,99.0 +1987,9,25,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,13.9,43,97200,0,0,384,0,0,0,0,0,0,0,80,2.1,0,0,56.3,77777,9,999999999,220,0.0960,0,88,999.000,999.0,99.0 +1987,9,26,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,13.9,45,97200,0,0,378,0,0,0,0,0,0,0,80,1.5,0,0,56.3,77777,9,999999999,209,0.0950,0,88,999.000,999.0,99.0 +1987,9,26,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,14.4,49,97200,0,0,376,0,0,0,0,0,0,0,80,2.1,0,0,56.3,77777,9,999999999,220,0.0950,0,88,999.000,999.0,99.0 +1987,9,26,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,13.3,47,97200,0,0,372,0,0,0,0,0,0,0,90,2.1,0,0,56.3,77777,9,999999999,209,0.0950,0,88,999.000,999.0,99.0 +1987,9,26,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,13.3,48,97200,0,0,369,0,0,0,0,0,0,0,110,2.1,0,0,56.3,77777,9,999999999,200,0.0950,0,88,999.000,999.0,99.0 +1987,9,26,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,13.3,50,97200,0,0,366,0,0,0,0,0,0,0,90,2.1,0,0,56.3,77777,9,999999999,209,0.0950,0,88,999.000,999.0,99.0 +1987,9,26,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,13.3,50,97300,0,0,366,0,0,0,0,0,0,0,100,1.5,0,0,56.3,77777,9,999999999,209,0.0950,0,88,999.000,999.0,99.0 +1987,9,26,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,13.9,56,97300,61,918,361,31,63,24,3000,2400,2900,430,90,1.5,0,0,56.3,77777,9,999999999,220,0.1390,0,88,999.000,999.0,99.0 +1987,9,26,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,13.3,48,97400,329,1360,369,174,449,63,17600,36800,8700,1140,80,2.1,0,0,72.4,77777,9,999999999,200,0.1390,0,88,999.000,999.0,99.0 +1987,9,26,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,13.3,44,97400,595,1360,377,390,662,98,40700,64100,12600,2000,90,1.5,0,0,72.4,77777,9,999999999,209,0.1390,0,88,999.000,999.0,99.0 +1987,9,26,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,13.9,40,97400,821,1360,389,589,764,125,62500,77300,15700,3040,80,1.5,0,0,64.4,77777,9,999999999,209,0.1390,0,88,999.000,999.0,99.0 +1987,9,26,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,13.3,34,97400,989,1360,400,746,823,143,77500,82500,17400,3890,120,1.5,0,0,64.4,77777,9,999999999,209,0.1390,0,88,999.000,999.0,99.0 +1987,9,26,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,13.3,31,97400,1089,1360,409,836,846,153,87400,85100,19000,5100,20,1.5,0,0,64.4,77777,9,999999999,209,0.1390,0,88,999.000,999.0,99.0 +1987,9,26,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34.4,12.8,27,97300,1114,1360,417,862,857,155,90300,86300,19400,5490,220,2.1,0,0,72.4,77777,9,999999999,200,0.1390,0,88,999.000,999.0,99.0 +1987,9,26,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.6,12.2,24,97200,1061,1360,431,768,767,165,79400,76700,19300,5010,180,1.5,1,1,96.6,77777,9,999999999,190,0.1390,0,88,999.000,999.0,99.0 +1987,9,26,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.6,11.7,24,97100,935,1360,430,670,730,163,70600,74100,19500,4470,80,1.0,1,1,96.6,77777,9,999999999,190,0.1390,0,88,999.000,999.0,99.0 +1987,9,26,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.6,11.7,24,97100,745,1360,422,494,684,116,52100,68500,14400,2620,160,2.1,0,0,96.6,77777,9,999999999,190,0.1390,0,88,999.000,999.0,99.0 +1987,9,26,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.0,12.8,26,97100,503,1360,420,315,609,86,32500,56800,11400,1670,270,2.6,0,0,80.5,77777,9,999999999,200,0.1390,0,88,999.000,999.0,99.0 +1987,9,26,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34.4,12.2,26,97100,226,1360,416,105,322,50,10900,22100,7200,900,280,2.1,0,0,80.5,77777,9,999999999,190,0.1390,0,88,999.000,999.0,99.0 +1987,9,26,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,12.2,28,97100,12,419,410,10,9,9,0,0,0,0,320,1.5,0,0,80.5,77777,9,999999999,190,0.1390,0,88,999.000,999.0,99.0 +1987,9,26,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,13.3,32,97100,0,0,406,0,0,0,0,0,0,0,190,1.5,0,0,80.5,77777,9,999999999,209,0.0950,0,88,999.000,999.0,99.0 +1987,9,26,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,13.9,36,97100,0,0,398,0,0,0,0,0,0,0,180,1.5,0,0,56.3,77777,9,999999999,209,0.0950,0,88,999.000,999.0,99.0 +1987,9,26,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,12.8,34,97200,0,0,397,0,0,0,0,0,0,0,120,1.5,0,0,56.3,77777,9,999999999,200,0.0950,0,88,999.000,999.0,99.0 +1987,9,26,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,15.0,42,97200,0,0,393,0,0,0,0,0,0,0,70,2.1,0,0,56.3,77777,9,999999999,230,0.0950,0,88,999.000,999.0,99.0 +1987,9,26,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,13.9,40,97200,0,0,389,0,0,0,0,0,0,0,80,1.5,0,0,56.3,77777,9,999999999,209,0.0950,0,88,999.000,999.0,99.0 +1987,9,27,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,14.4,46,97300,0,0,381,0,0,0,0,0,0,0,60,1.5,0,0,56.3,77777,9,999999999,220,0.0950,0,88,999.000,999.0,99.0 +1987,9,27,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,13.9,45,97300,0,0,378,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,209,0.0950,0,88,999.000,999.0,99.0 +1987,9,27,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,14.4,49,97300,0,0,376,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,220,0.0950,0,88,999.000,999.0,99.0 +1987,9,27,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,13.9,49,97300,0,0,373,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,220,0.0950,0,88,999.000,999.0,99.0 +1987,9,27,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,13.3,48,97300,0,0,369,0,0,0,0,0,0,0,80,1.5,0,0,56.3,77777,9,999999999,200,0.0950,0,88,999.000,999.0,99.0 +1987,9,27,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,13.9,54,97400,0,0,364,0,0,0,0,0,0,0,100,1.5,0,0,56.3,77777,9,999999999,220,0.0950,0,88,999.000,999.0,99.0 +1987,9,27,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,12.2,48,97500,59,896,362,35,139,20,3200,5800,2800,350,90,2.1,0,0,56.3,77777,9,999999999,190,0.0730,0,88,999.000,999.0,99.0 +1987,9,27,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,12.8,47,97500,326,1361,368,187,585,46,19100,49000,7300,890,90,2.1,0,0,72.4,77777,9,999999999,200,0.0730,0,88,999.000,999.0,99.0 +1987,9,27,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,13.3,44,97500,592,1361,377,407,770,69,42700,74400,10200,1480,80,1.5,0,0,72.4,77777,9,999999999,209,0.0730,0,88,999.000,999.0,99.0 +1987,9,27,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,13.3,37,97600,817,1361,391,607,858,87,62800,84800,11700,1910,90,1.5,0,0,72.4,77777,9,999999999,200,0.0730,0,88,999.000,999.0,99.0 +1987,9,27,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,11.7,28,97600,985,1361,404,760,906,100,78500,90400,12900,2560,240,1.5,0,0,72.4,77777,9,999999999,180,0.0730,0,88,999.000,999.0,99.0 +1987,9,27,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.9,12.2,27,97500,1085,1361,413,849,925,107,87500,92600,13500,3220,340,1.5,0,0,72.4,77777,9,999999999,190,0.0730,0,88,999.000,999.0,99.0 +1987,9,27,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.0,12.8,26,97400,1109,1361,420,870,928,108,89600,92900,13600,3430,240,2.1,0,0,72.4,77777,9,999999999,200,0.0730,0,88,999.000,999.0,99.0 +1987,9,27,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.1,12.2,24,97300,1056,1361,425,823,919,105,84900,91900,13300,3000,240,1.0,0,0,72.4,77777,9,999999999,190,0.0730,0,88,999.000,999.0,99.0 +1987,9,27,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.7,11.7,22,97200,930,1361,428,712,883,104,73400,87800,13200,2350,0,0.0,1,0,72.4,77777,9,999999999,180,0.0730,0,88,999.000,999.0,99.0 +1987,9,27,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.1,11.7,23,97200,739,1361,425,539,835,81,57100,83100,11900,1880,330,2.6,0,0,80.5,77777,9,999999999,190,0.0730,0,88,999.000,999.0,99.0 +1987,9,27,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.1,11.7,23,97200,496,1361,433,303,635,67,31700,59700,9900,1340,260,3.6,1,1,80.5,77777,9,999999999,190,0.0730,0,88,999.000,999.0,99.0 +1987,9,27,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.0,11.7,24,97200,219,1361,427,102,395,36,10300,27900,5800,660,330,2.6,1,1,80.5,77777,9,999999999,180,0.0730,0,88,999.000,999.0,99.0 +1987,9,27,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.9,11.7,26,97200,11,374,426,10,22,7,0,0,0,0,300,1.5,3,2,64.4,77777,9,999999999,190,0.0730,0,88,999.000,999.0,99.0 +1987,9,27,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,12.8,32,97400,0,0,435,0,0,0,0,0,0,0,20,3.1,8,7,48.3,3660,9,999999999,200,0.0950,0,88,999.000,999.0,99.0 +1987,9,27,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,13.3,37,97400,0,0,399,0,0,0,0,0,0,0,360,2.1,2,1,56.3,77777,9,999999999,200,0.0950,0,88,999.000,999.0,99.0 +1987,9,27,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,13.3,38,97500,0,0,389,0,0,0,0,0,0,0,310,2.6,0,0,56.3,77777,9,999999999,200,0.0950,0,88,999.000,999.0,99.0 +1987,9,27,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,12.2,37,97500,0,0,384,0,0,0,0,0,0,0,10,2.1,0,0,56.3,77777,9,999999999,190,0.0950,0,88,999.000,999.0,99.0 +1987,9,27,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,11.7,36,97400,0,0,383,0,0,0,0,0,0,0,10,1.5,0,0,56.3,77777,9,999999999,190,0.0950,0,88,999.000,999.0,99.0 +1987,9,28,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,12.8,41,97500,0,0,379,0,0,0,0,0,0,0,70,2.1,0,0,56.3,77777,9,999999999,200,0.0940,0,88,999.000,999.0,99.0 +1987,9,28,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,12.8,42,97500,0,0,377,0,0,0,0,0,0,0,130,2.1,0,0,56.3,77777,9,999999999,200,0.0940,0,88,999.000,999.0,99.0 +1987,9,28,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,13.3,47,97500,0,0,372,0,0,0,0,0,0,0,280,1.5,0,0,56.3,77777,9,999999999,209,0.0940,0,88,999.000,999.0,99.0 +1987,9,28,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,13.3,48,97500,0,0,369,0,0,0,0,0,0,0,300,1.5,0,0,56.3,77777,9,999999999,209,0.0940,0,88,999.000,999.0,99.0 +1987,9,28,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,13.9,54,97600,0,0,364,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,220,0.0940,0,88,999.000,999.0,99.0 +1987,9,28,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,14.4,54,97600,0,0,379,0,0,0,0,0,0,0,80,2.1,3,2,64.4,77777,9,999999999,220,0.0940,0,88,999.000,999.0,99.0 +1987,9,28,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,13.9,47,97600,57,874,391,31,117,19,2900,4800,2600,330,110,2.1,5,3,56.3,77777,9,999999999,209,0.0560,0,88,999.000,999.0,99.0 +1987,9,28,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,14.4,50,97700,322,1361,389,160,364,73,16700,29500,9700,1330,0,0.0,5,3,72.4,77777,9,999999999,220,0.0560,0,88,999.000,999.0,99.0 +1987,9,28,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,13.3,44,97700,589,1361,385,350,609,84,36800,59100,11200,1740,80,1.5,4,1,72.4,77777,9,999999999,209,0.0560,0,88,999.000,999.0,99.0 +1987,9,28,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,13.3,37,97700,813,1361,404,533,588,179,57200,60300,21000,4170,90,2.1,6,2,56.3,77777,9,999999999,209,0.0560,0,88,999.000,999.0,99.0 +1987,9,28,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,12.8,32,97700,981,1361,416,707,713,190,74300,72200,22100,5500,20,1.5,7,2,56.3,77777,9,999999999,200,0.0560,0,88,999.000,999.0,99.0 +1987,9,28,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34.4,12.2,26,97600,1080,1361,424,851,901,131,87100,90000,15500,3430,230,1.5,4,1,72.4,77777,9,999999999,190,0.0560,0,88,999.000,999.0,99.0 +1987,9,28,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.6,11.7,24,97500,1104,1361,430,815,853,118,83700,85300,14300,3520,150,1.5,4,1,72.4,77777,9,999999999,190,0.0560,0,88,999.000,999.0,99.0 +1987,9,28,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.7,11.7,22,97400,1051,1361,428,830,905,126,85100,90300,15100,3140,170,3.1,3,0,72.4,77777,9,999999999,180,0.0560,0,88,999.000,999.0,99.0 +1987,9,28,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.2,11.1,21,97400,924,1361,430,696,874,98,71900,86900,12700,2300,330,2.1,2,0,72.4,77777,9,999999999,180,0.0560,0,88,999.000,999.0,99.0 +1987,9,28,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.2,9.4,18,97300,733,1361,428,542,840,84,57000,83300,12000,1920,250,3.1,2,0,72.4,77777,9,999999999,160,0.0560,0,88,999.000,999.0,99.0 +1987,9,28,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.7,10.6,21,97300,490,1361,435,317,689,65,32500,64000,9400,1300,310,2.6,3,1,72.4,77777,9,999999999,180,0.0560,0,88,999.000,999.0,99.0 +1987,9,28,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.6,9.4,20,97300,213,1361,433,96,260,54,9800,17200,7100,980,310,2.1,6,2,72.4,77777,9,999999999,160,0.0560,0,88,999.000,999.0,99.0 +1987,9,28,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.9,9.4,22,97300,9,352,423,10,19,8,0,0,0,0,310,1.5,7,2,56.3,77777,9,999999999,160,0.0560,0,88,999.000,999.0,99.0 +1987,9,28,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,11.1,28,97400,0,0,413,0,0,0,0,0,0,0,0,0.0,8,2,56.3,77777,9,999999999,180,0.0940,0,88,999.000,999.0,99.0 +1987,9,28,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,10.0,26,97400,0,0,423,0,0,0,0,0,0,0,0,0.0,8,5,56.3,7620,9,999999999,170,0.0940,0,88,999.000,999.0,99.0 +1987,9,28,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,11.1,29,97500,0,0,414,0,0,0,0,0,0,0,0,0.0,4,3,56.3,77777,9,999999999,180,0.0940,0,88,999.000,999.0,99.0 +1987,9,28,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,11.7,32,97500,0,0,392,0,0,0,0,0,0,0,0,0.0,3,0,56.3,77777,9,999999999,180,0.0940,0,88,999.000,999.0,99.0 +1987,9,28,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,13.3,41,97500,0,0,383,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,209,0.0940,0,88,999.000,999.0,99.0 +1987,9,29,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,13.9,43,97500,0,0,384,0,0,0,0,0,0,0,100,2.1,0,0,56.3,77777,9,999999999,220,0.0940,0,88,999.000,999.0,99.0 +1987,9,29,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,12.2,38,97500,0,0,382,0,0,0,0,0,0,0,90,1.5,0,0,56.3,77777,9,999999999,190,0.0940,0,88,999.000,999.0,99.0 +1987,9,29,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,10.6,35,97500,0,0,389,0,0,0,0,0,0,0,80,2.6,2,2,56.3,77777,9,999999999,170,0.0940,0,88,999.000,999.0,99.0 +1987,9,29,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,10.0,34,97500,0,0,392,0,0,0,0,0,0,0,100,2.6,3,3,56.3,77777,9,999999999,170,0.0940,0,88,999.000,999.0,99.0 +1987,9,29,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,10.6,38,97600,0,0,371,0,0,0,0,0,0,0,80,2.1,0,0,56.3,77777,9,999999999,180,0.0940,0,88,999.000,999.0,99.0 +1987,9,29,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,10.6,40,97600,0,0,366,0,0,0,0,0,0,0,0,0.0,0,0,64.4,77777,9,999999999,170,0.0940,0,88,999.000,999.0,99.0 +1987,9,29,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,10.0,38,97700,55,874,368,37,174,17,3000,8200,2400,310,100,2.1,0,0,64.4,77777,9,999999999,170,0.0490,0,88,999.000,999.0,99.0 +1987,9,29,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,8.9,31,97700,319,1362,377,191,647,38,19800,54400,7000,790,70,1.5,0,0,72.4,77777,9,999999999,160,0.0490,0,88,999.000,999.0,99.0 +1987,9,29,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,7.8,24,97700,585,1362,390,409,812,57,42700,77700,9300,1320,70,1.5,0,0,72.4,77777,9,999999999,150,0.0490,0,88,999.000,999.0,99.0 +1987,9,29,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,8.9,23,97800,810,1362,403,607,892,72,63200,88200,10600,1780,80,2.6,0,0,72.4,77777,9,999999999,160,0.0490,0,88,999.000,999.0,99.0 +1987,9,29,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34.4,8.9,21,97700,977,1362,412,758,934,83,78700,93300,11600,2330,60,2.1,0,0,72.4,77777,9,999999999,160,0.0490,0,88,999.000,999.0,99.0 +1987,9,29,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.1,9.4,20,97700,1076,1362,422,850,955,89,87900,95700,12100,2860,70,2.6,0,0,72.4,77777,9,999999999,160,0.0490,0,88,999.000,999.0,99.0 +1987,9,29,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.8,9.4,18,97600,1099,1362,431,867,956,91,89800,95800,12300,3040,60,2.1,0,0,80.5,77777,9,999999999,160,0.0490,0,88,999.000,999.0,99.0 +1987,9,29,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,38.3,8.3,16,97500,1045,1362,432,823,951,87,85200,95200,12000,2670,40,2.1,0,0,80.5,77777,9,999999999,150,0.0490,0,88,999.000,999.0,99.0 +1987,9,29,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,40.0,7.8,14,97400,918,1362,441,711,928,80,73800,92400,11300,2110,90,3.6,0,0,80.5,77777,9,999999999,140,0.0490,0,88,999.000,999.0,99.0 +1987,9,29,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,40.0,7.8,14,97300,727,1362,441,541,879,67,56300,86200,10200,1600,150,2.1,0,0,80.5,77777,9,999999999,140,0.0490,0,88,999.000,999.0,99.0 +1987,9,29,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,38.9,7.8,15,97300,483,1362,435,329,775,49,34200,72000,8600,1130,0,0.0,0,0,80.5,77777,9,999999999,140,0.0490,0,88,999.000,999.0,99.0 +1987,9,29,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,38.3,7.2,15,97300,206,1362,430,111,521,30,11100,37600,5400,580,120,1.5,0,0,80.5,77777,9,999999999,140,0.0490,0,88,999.000,999.0,99.0 +1987,9,29,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.1,7.2,17,97300,7,329,432,9,20,6,0,0,0,0,250,1.5,2,2,56.3,77777,9,999999999,140,0.0490,0,88,999.000,999.0,99.0 +1987,9,29,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34.4,9.4,22,97400,0,0,412,0,0,0,0,0,0,0,110,2.1,0,0,56.3,77777,9,999999999,160,0.0940,0,88,999.000,999.0,99.0 +1987,9,29,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,9.4,23,97400,0,0,406,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,160,0.0940,0,88,999.000,999.0,99.0 +1987,9,29,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,7.8,22,97500,0,0,399,0,0,0,0,0,0,0,100,2.6,0,0,56.3,77777,9,999999999,150,0.0940,0,88,999.000,999.0,99.0 +1987,9,29,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,9.4,26,97600,0,0,395,0,0,0,0,0,0,0,110,2.1,0,0,56.3,77777,9,999999999,160,0.0940,0,88,999.000,999.0,99.0 +1987,9,29,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,10.0,29,97600,0,0,390,0,0,0,0,0,0,0,110,1.5,0,0,56.3,77777,9,999999999,170,0.0940,0,88,999.000,999.0,99.0 +1987,9,30,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,10.6,32,97600,0,0,385,0,0,0,0,0,0,0,90,1.5,0,0,56.3,77777,9,999999999,170,0.0930,0,88,999.000,999.0,99.0 +1987,9,30,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,10.6,34,97700,0,0,380,0,0,0,0,0,0,0,70,1.5,0,0,56.3,77777,9,999999999,170,0.0930,0,88,999.000,999.0,99.0 +1987,9,30,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,11.1,38,97700,0,0,375,0,0,0,0,0,0,0,40,1.5,0,0,56.3,77777,9,999999999,180,0.0930,0,88,999.000,999.0,99.0 +1987,9,30,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,10.6,38,97700,0,0,371,0,0,0,0,0,0,0,100,1.5,0,0,56.3,77777,9,999999999,180,0.0930,0,88,999.000,999.0,99.0 +1987,9,30,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,11.1,42,97700,0,0,366,0,0,0,0,0,0,0,80,1.5,0,0,56.3,77777,9,999999999,180,0.0930,0,88,999.000,999.0,99.0 +1987,9,30,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,10.6,39,97700,0,0,369,0,0,0,0,0,0,0,100,1.5,0,0,80.5,77777,9,999999999,170,0.0930,0,88,999.000,999.0,99.0 +1987,9,30,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,10.6,40,97800,53,852,366,37,194,15,2900,9200,2300,280,100,1.5,0,0,80.5,77777,9,999999999,170,0.0400,0,88,999.000,999.0,99.0 +1987,9,30,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,11.1,38,97800,316,1363,375,189,659,34,19800,55800,6800,800,100,2.1,0,0,72.4,77777,9,999999999,180,0.0400,0,88,999.000,999.0,99.0 +1987,9,30,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,10.6,30,97900,581,1363,391,409,830,52,42900,79400,8900,1270,60,4.6,0,0,96.6,77777,9,999999999,170,0.0400,0,88,999.000,999.0,99.0 +1987,9,30,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,11.1,28,97900,806,1363,400,604,901,66,63000,89100,10100,1710,60,2.6,0,0,96.6,77777,9,999999999,180,0.0400,0,88,999.000,999.0,99.0 +1987,9,30,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,11.7,28,97800,973,1363,407,753,940,77,78300,93900,11100,2220,90,3.6,0,0,96.6,77777,9,999999999,190,0.0400,0,88,999.000,999.0,99.0 +1987,9,30,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34.4,11.7,25,97700,1071,1363,415,842,960,82,87400,96200,11600,2700,90,2.6,0,0,96.6,77777,9,999999999,190,0.0400,0,88,999.000,999.0,99.0 +1987,9,30,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.6,11.7,24,97600,1094,1363,422,864,964,83,89500,96700,11700,2840,90,4.1,0,0,96.6,77777,9,999999999,190,0.0400,0,88,999.000,999.0,99.0 +1987,9,30,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.1,11.7,23,97500,1040,1363,425,816,956,80,84700,95700,11400,2510,120,4.1,0,0,96.6,77777,9,999999999,190,0.0400,0,88,999.000,999.0,99.0 +1987,9,30,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.1,11.1,22,97400,913,1363,424,703,932,73,73100,92900,10800,2000,100,4.6,0,0,96.6,77777,9,999999999,180,0.0400,0,88,999.000,999.0,99.0 +1987,9,30,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.7,10.6,21,97400,721,1363,426,532,882,61,55600,86500,9700,1530,80,4.1,0,0,96.6,77777,9,999999999,180,0.0400,0,88,999.000,999.0,99.0 +1987,9,30,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.7,10.6,21,97300,477,1363,435,306,723,49,32200,67600,8500,1080,90,2.1,1,1,96.6,77777,9,999999999,180,0.0400,0,88,999.000,999.0,99.0 +1987,9,30,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.6,9.4,20,97400,200,1363,433,109,449,41,10900,29900,6500,720,90,3.1,2,2,96.6,77777,9,999999999,160,0.0400,0,88,999.000,999.0,99.0 +1987,9,30,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.9,10.0,23,97400,6,284,424,12,36,7,0,0,0,0,60,1.5,2,2,56.3,77777,9,999999999,170,0.0400,0,88,999.000,999.0,99.0 +1987,9,30,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,9.4,25,97500,0,0,414,0,0,0,0,0,0,0,60,9.3,2,2,40.2,77777,9,999999999,160,0.0930,0,88,999.000,999.0,99.0 +1987,9,30,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,9.4,26,97500,0,0,395,0,0,0,0,0,0,0,60,4.6,0,0,40.2,77777,9,999999999,160,0.0930,0,88,999.000,999.0,99.0 +1987,9,30,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,9.0,26,97600,0,0,389,0,0,0,0,0,0,0,60,4.5,0,0,40.2,77777,9,999999999,150,0.0930,0,88,999.000,999.0,99.0 +1987,9,30,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,8.6,26,97500,0,0,383,0,0,0,0,0,0,0,70,4.3,0,0,48.3,77777,9,999999999,150,0.0930,0,88,999.000,999.0,99.0 +1987,9,30,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,8.2,28,97500,0,0,377,0,0,0,0,0,0,0,70,4.2,0,0,48.3,77777,9,999999999,160,0.0930,0,88,999.000,999.0,99.0 +1989,10,1,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.6,7.9,31,97000,0,0,370,0,0,0,0,0,0,0,50,4.0,0,0,56.3,77777,9,999999999,150,0.0900,0,88,999.000,999.0,99.0 +1989,10,1,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.5,7.5,29,97000,0,0,364,0,0,0,0,0,0,0,90,3.9,0,0,56.3,77777,9,999999999,130,0.0900,0,88,999.000,999.0,99.0 +1989,10,1,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,7.1,33,97000,0,0,358,0,0,0,0,0,0,0,80,3.7,0,0,56.3,77777,9,999999999,140,0.0900,0,88,999.000,999.0,99.0 +1989,10,1,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,6.7,34,97000,0,0,353,0,0,0,0,0,0,0,90,3.6,0,0,56.3,77777,9,999999999,130,0.0900,0,88,999.000,999.0,99.0 +1989,10,1,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,4.4,30,97100,0,0,348,0,0,0,0,0,0,0,90,3.1,0,0,56.3,77777,9,999999999,120,0.0900,0,88,999.000,999.0,99.0 +1989,10,1,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,4.4,32,97100,0,0,345,0,0,0,0,0,0,0,80,3.1,0,0,56.3,77777,9,999999999,120,0.0900,0,88,999.000,999.0,99.0 +1989,10,1,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,4.4,32,97100,50,830,345,27,178,7,2000,10600,1300,220,90,2.6,0,0,56.3,77777,9,999999999,120,0.0900,0,88,999.000,999.0,99.0 +1989,10,1,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,3.9,27,97200,310,1364,352,180,650,29,18800,54900,6300,750,90,4.1,0,0,72.4,77777,9,999999999,110,0.0900,0,88,999.000,999.0,99.0 +1989,10,1,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,5.6,25,97200,576,1364,370,394,824,41,41400,78900,8000,1120,90,3.1,0,0,72.4,77777,9,999999999,130,0.0900,0,88,999.000,999.0,99.0 +1989,10,1,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,5.0,21,97200,800,1364,383,597,905,60,62300,89500,9600,1610,90,3.1,0,0,72.4,77777,9,999999999,120,0.0900,0,88,999.000,999.0,99.0 +1989,10,1,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,5.6,18,97200,966,1364,399,752,948,74,78200,94700,10900,2150,100,3.1,0,0,72.4,77777,9,999999999,120,0.0900,0,88,999.000,999.0,99.0 +1989,10,1,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.0,6.1,17,97200,1064,1364,411,844,940,103,86800,94000,13200,3010,130,3.6,0,0,80.5,77777,9,999999999,130,0.0680,0,88,999.000,999.0,99.0 +1989,10,1,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.1,5.6,15,97100,1086,1364,416,874,967,96,90100,96800,12700,3050,200,1.5,0,0,80.5,77777,9,999999999,120,0.0900,0,88,999.000,999.0,99.0 +1989,10,1,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.6,5.6,16,97000,1032,1364,413,829,931,117,84900,92900,14400,2940,90,2.1,0,0,80.5,77777,9,999999999,130,0.0900,0,88,999.000,999.0,99.0 +1989,10,1,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.2,5.0,14,96900,904,1364,421,691,916,77,71600,91200,11000,2030,270,2.1,0,0,80.5,77777,9,999999999,120,0.0900,0,88,999.000,999.0,99.0 +1989,10,1,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.8,5.0,13,96800,711,1364,425,542,708,167,55100,69000,19000,3420,70,1.5,0,0,72.4,77777,9,999999999,120,0.0900,0,88,999.000,999.0,99.0 +1989,10,1,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.7,5.0,14,96700,467,1364,419,300,710,51,31200,65900,8500,1100,90,4.6,0,0,72.4,77777,9,999999999,120,0.0900,0,88,999.000,999.0,99.0 +1989,10,1,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34.4,5.6,17,96700,190,1364,407,56,366,2,6000,27200,2200,80,10,3.6,0,0,72.4,77777,9,999999999,130,0.0900,0,88,999.000,999.0,99.0 +1989,10,1,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,6.1,19,96700,4,239,399,0,3,0,0,0,0,0,360,3.1,0,0,56.3,77777,9,999999999,130,0.0900,0,88,999.000,999.0,99.0 +1989,10,1,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,6.1,21,96800,0,0,391,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,130,0.0900,0,88,999.000,999.0,99.0 +1989,10,1,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,3.3,17,96800,0,0,387,0,0,0,0,0,0,0,280,4.1,0,0,56.3,77777,9,999999999,110,0.0900,0,88,999.000,999.0,99.0 +1989,10,1,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,2.8,19,96800,0,0,375,0,0,0,0,0,0,0,230,2.1,0,0,56.3,77777,9,999999999,110,0.0900,0,88,999.000,999.0,99.0 +1989,10,1,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,3.9,22,96900,0,0,371,0,0,0,0,0,0,0,330,1.5,0,0,56.3,77777,9,999999999,110,0.0900,0,88,999.000,999.0,99.0 +1989,10,1,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,3.3,22,96900,0,0,367,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,110,0.0900,0,88,999.000,999.0,99.0 +1989,10,2,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,3.3,24,97000,0,0,360,0,0,0,0,0,0,0,120,4.1,0,0,56.3,77777,9,999999999,110,0.0920,0,88,999.000,999.0,99.0 +1989,10,2,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,1.1,22,97000,0,0,351,0,0,0,0,0,0,0,110,3.1,0,0,56.3,77777,9,999999999,100,0.0920,0,88,999.000,999.0,99.0 +1989,10,2,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,1.7,23,97000,0,0,352,0,0,0,0,0,0,0,110,3.6,0,0,56.3,77777,9,999999999,100,0.0920,0,88,999.000,999.0,99.0 +1989,10,2,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,3.9,30,97000,0,0,344,0,0,0,0,0,0,0,80,3.6,0,0,56.3,77777,9,999999999,110,0.0920,0,88,999.000,999.0,99.0 +1989,10,2,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,3.3,29,97000,0,0,343,0,0,0,0,0,0,0,100,3.1,0,0,56.3,77777,9,999999999,110,0.0920,0,88,999.000,999.0,99.0 +1989,10,2,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,2.8,30,97000,0,0,338,0,0,0,0,0,0,0,90,3.6,0,0,56.3,77777,9,999999999,110,0.0920,0,88,999.000,999.0,99.0 +1989,10,2,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,2.8,31,97100,48,807,336,28,219,2,1800,13000,1000,80,80,4.1,0,0,72.4,77777,9,999999999,110,0.0920,0,88,999.000,999.0,99.0 +1989,10,2,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,2.2,24,97100,307,1365,350,184,707,27,19800,59500,6400,720,90,3.6,1,0,72.4,77777,9,999999999,100,0.0920,0,88,999.000,999.0,99.0 +1989,10,2,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,3.3,22,97200,572,1365,365,404,856,49,43200,81700,8800,1230,90,3.1,1,0,72.4,77777,9,999999999,110,0.0920,0,88,999.000,999.0,99.0 +1989,10,2,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,2.8,18,97200,796,1365,388,607,919,70,63600,90800,10500,1730,150,5.2,1,1,80.5,77777,9,999999999,110,0.0920,0,88,999.000,999.0,99.0 +1989,10,2,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,6.1,20,97200,962,1365,404,637,654,171,67000,66400,20100,4840,170,4.1,1,1,80.5,77777,9,999999999,130,0.1660,0,88,999.000,999.0,99.0 +1989,10,2,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,5.6,18,97100,1060,1365,406,782,788,164,80700,78800,19300,4920,210,3.1,1,1,80.5,77777,9,999999999,120,0.1660,0,88,999.000,999.0,99.0 +1989,10,2,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.0,4.4,15,97100,1081,1365,416,784,742,190,83000,75800,22800,6690,220,3.1,1,1,80.5,77777,9,999999999,120,0.1660,0,88,999.000,999.0,99.0 +1989,10,2,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.6,4.4,14,96900,1026,1365,420,827,919,123,84100,91700,14900,2930,190,2.6,1,1,80.5,77777,9,999999999,110,0.0920,0,88,999.000,999.0,99.0 +1989,10,2,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.7,3.3,12,96900,898,1365,424,701,885,111,73500,88900,14800,2810,250,6.2,2,1,80.5,77777,9,999999999,100,0.0920,0,88,999.000,999.0,99.0 +1989,10,2,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.2,5.6,14,96800,705,1365,430,598,664,241,59800,66500,25400,5370,270,5.2,3,1,64.4,77777,9,999999999,120,0.0920,0,88,999.000,999.0,99.0 +1989,10,2,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.2,5.6,14,96800,461,1365,440,344,641,122,34100,56900,14800,2120,240,4.6,3,3,64.4,77777,9,999999999,120,0.0920,0,88,999.000,999.0,99.0 +1989,10,2,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.0,5.6,16,96800,183,1365,428,71,322,26,7200,21100,4400,490,250,6.2,3,3,64.4,77777,9,999999999,120,0.0920,0,88,999.000,999.0,99.0 +1989,10,2,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,5.0,17,96900,3,216,418,1,1,1,0,0,0,0,250,5.7,4,4,56.3,77777,9,999999999,120,0.0920,0,88,999.000,999.0,99.0 +1989,10,2,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,5.6,19,96900,0,0,413,0,0,0,0,0,0,0,230,5.2,4,4,56.3,77777,9,999999999,120,0.0920,0,88,999.000,999.0,99.0 +1989,10,2,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,6.1,21,97000,0,0,405,0,0,0,0,0,0,0,250,3.1,3,3,56.3,77777,9,999999999,130,0.0920,0,88,999.000,999.0,99.0 +1989,10,2,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,7.2,25,97000,0,0,396,0,0,0,0,0,0,0,330,2.1,2,2,56.3,77777,9,999999999,140,0.0920,0,88,999.000,999.0,99.0 +1989,10,2,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,7.2,26,97100,0,0,393,0,0,0,0,0,0,0,10,1.5,2,2,56.3,77777,9,999999999,140,0.0920,0,88,999.000,999.0,99.0 +1989,10,2,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,7.2,26,97100,0,0,394,0,0,0,0,0,0,0,30,2.1,3,3,56.3,77777,9,999999999,140,0.0920,0,88,999.000,999.0,99.0 +1989,10,3,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,7.8,27,97100,0,0,401,0,0,0,0,0,0,0,250,2.6,5,5,56.3,77777,9,999999999,140,0.0920,0,88,999.000,999.0,99.0 +1989,10,3,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,8.3,29,97100,0,0,399,0,0,0,0,0,0,0,80,2.1,5,5,56.3,77777,9,999999999,150,0.0920,0,88,999.000,999.0,99.0 +1989,10,3,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,7.8,30,97100,0,0,387,0,0,0,0,0,0,0,90,3.6,3,3,56.3,77777,9,999999999,140,0.0920,0,88,999.000,999.0,99.0 +1989,10,3,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,6.7,30,97100,0,0,380,0,0,0,0,0,0,0,100,2.6,3,3,56.3,77777,9,999999999,140,0.0920,0,88,999.000,999.0,99.0 +1989,10,3,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,8.9,37,97100,0,0,376,0,0,0,0,0,0,0,80,2.1,3,3,56.3,77777,9,999999999,150,0.0920,0,88,999.000,999.0,99.0 +1989,10,3,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,8.3,35,97100,0,0,379,0,0,0,0,0,0,0,90,2.6,3,3,56.3,77777,9,999999999,150,0.0920,0,88,999.000,999.0,99.0 +1989,10,3,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,10.0,40,97200,46,785,381,8,2,8,1000,0,1000,310,90,3.1,4,4,72.4,77777,9,999999999,170,0.0920,0,88,999.000,999.0,99.0 +1989,10,3,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,9.4,34,97200,303,1365,392,156,417,70,17000,32800,9700,1280,100,5.2,4,4,64.4,77777,9,999999999,160,0.0920,0,88,999.000,999.0,99.0 +1989,10,3,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,10.6,33,97300,568,1365,405,440,758,132,45800,71300,16000,2480,110,5.2,5,5,64.4,77777,9,999999999,170,0.0920,0,88,999.000,999.0,99.0 +1989,10,3,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,12.8,38,97400,792,1365,416,381,131,307,42000,13300,34300,9320,130,4.1,7,7,64.4,4270,9,999999999,200,0.0920,0,88,999.000,999.0,99.0 +1989,10,3,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,10.0,28,97400,958,1365,432,352,4,349,40100,400,39800,14090,140,4.6,8,8,56.3,4270,9,999999999,170,0.0920,0,88,999.000,999.0,99.0 +1989,10,3,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,11.1,29,97300,1055,1365,436,526,153,407,57200,16200,44600,13860,140,5.2,8,8,56.3,4270,9,999999999,180,0.0920,0,88,999.000,999.0,99.0 +1989,10,3,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,13.3,37,97300,1076,1365,439,415,34,388,45700,3500,42900,15020,120,5.2,9,9,48.3,3050,9,999999999,200,0.0920,0,88,999.000,999.0,99.0 +1989,10,3,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,11.7,29,97200,1021,1365,463,446,52,408,49200,5400,45100,14630,100,5.7,10,10,56.3,3050,9,999999999,180,0.0920,0,88,999.000,999.0,99.0 +1989,10,3,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,12.2,34,97200,892,1365,453,204,2,203,24100,200,24000,9300,160,5.7,10,10,32.2,2740,9,999999999,190,0.0920,0,88,999.000,999.0,99.0 +1989,10,3,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,13.9,39,97200,699,1365,452,66,1,66,8300,100,8200,3230,150,4.1,10,10,72.4,2740,9,999999999,209,0.0920,0,88,999.000,999.0,99.0 +1989,10,3,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,13.3,36,97200,454,1365,455,30,1,30,3800,0,3800,1380,200,5.7,10,10,64.4,2290,9,999999999,209,0.0920,0,88,999.000,999.0,99.0 +1989,10,3,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,15.0,46,97200,177,1365,444,6,4,6,700,300,700,170,140,4.6,10,10,64.4,2130,9,999999999,230,0.0920,0,88,999.000,999.0,99.0 +1989,10,3,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,17.8,67,97200,2,193,428,0,2,0,0,0,0,0,130,4.6,10,10,40.2,1980,9,999999999,270,0.0920,0,88,999.000,999.0,99.0 +1989,10,3,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,17.8,62,97300,0,0,423,0,0,0,0,0,0,0,60,2.1,9,9,56.3,2740,9,999999999,270,0.0920,0,88,999.000,999.0,99.0 +1989,10,3,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,17.8,67,97300,0,0,401,0,0,0,0,0,0,0,100,2.6,7,7,56.3,3660,9,999999999,270,0.0920,0,88,999.000,999.0,99.0 +1989,10,3,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,16.1,58,97300,0,0,418,0,0,0,0,0,0,0,90,3.1,9,9,56.3,2130,9,999999999,250,0.0920,0,88,999.000,999.0,99.0 +1989,10,3,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,15.0,54,97300,0,0,416,0,0,0,0,0,0,0,80,3.1,9,9,56.3,3050,9,999999999,230,0.0920,0,88,999.000,999.0,99.0 +1989,10,3,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,15.0,54,97300,0,0,416,0,0,0,0,0,0,0,110,3.1,9,9,56.3,3050,9,999999999,230,0.0920,0,88,999.000,999.0,99.0 +1989,10,4,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,15.6,56,97300,0,0,417,0,0,0,0,0,0,0,140,1.5,9,9,56.3,3050,9,999999999,240,0.0910,0,88,999.000,999.0,99.0 +1989,10,4,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,15.6,58,97300,0,0,425,0,0,0,0,0,0,0,80,3.1,10,10,56.3,3050,9,999999999,240,0.0910,0,88,999.000,999.0,99.0 +1989,10,4,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,16.1,62,97300,0,0,423,0,0,0,0,0,0,0,90,4.1,10,10,56.3,3050,9,999999999,250,0.0910,0,88,999.000,999.0,99.0 +1989,10,4,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,16.1,62,97200,0,0,423,0,0,0,0,0,0,0,70,4.1,10,10,56.3,3050,9,999999999,250,0.0910,0,88,999.000,999.0,99.0 +1989,10,4,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,15.6,60,97200,0,0,423,0,0,0,0,0,0,0,100,4.1,10,10,56.3,3050,9,999999999,240,0.0910,0,88,999.000,999.0,99.0 +1989,10,4,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,16.1,66,97300,0,0,417,0,0,0,0,0,0,0,140,4.6,10,10,56.3,3050,9,999999999,240,0.0910,0,88,999.000,999.0,99.0 +1989,10,4,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,18.3,81,97300,44,786,414,11,2,11,1300,0,1300,410,20,1.5,10,10,56.3,3050,9,999999999,280,0.0910,0,88,999.000,999.0,99.0 +1989,10,4,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,18.9,84,97400,300,1366,414,61,3,61,7000,100,7000,2270,100,3.1,10,10,56.3,3050,9,999999999,290,0.0910,0,88,999.000,999.0,99.0 +1989,10,4,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,18.3,81,97400,565,1366,414,92,2,91,10900,100,10800,3980,80,4.1,10,10,48.3,3660,9,999999999,280,0.0910,0,88,999.000,999.0,99.0 +1989,10,4,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,17.8,74,97400,788,1366,419,266,10,260,30200,900,29600,10310,80,4.6,10,10,64.4,3660,9,999999999,270,0.0910,0,88,999.000,999.0,99.0 +1989,10,4,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,17.2,66,97500,954,1366,425,345,10,338,39400,1000,38700,13780,90,5.2,10,10,64.4,4570,9,999999999,260,0.0910,0,88,999.000,999.0,99.0 +1989,10,4,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,17.2,60,97500,1050,1366,434,314,11,306,36700,1000,36000,13620,120,4.1,10,10,72.4,3050,9,999999999,260,0.0910,0,88,999.000,999.0,99.0 +1989,10,4,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,17.2,62,97400,1071,1366,431,134,2,132,16700,100,16600,6900,140,4.6,10,10,56.3,3050,9,999999999,260,0.0910,0,88,999.000,999.0,99.0 +1989,10,4,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,16.1,58,97400,1015,1366,430,162,2,160,19700,100,19600,8050,150,5.7,10,10,72.4,3050,9,999999999,250,0.0910,0,88,999.000,999.0,99.0 +1989,10,4,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,17.2,64,97400,886,1366,428,130,2,128,15800,100,15700,6330,140,4.1,10,10,48.3,3050,9,999999999,260,0.0910,0,88,999.000,999.0,99.0 +1989,10,4,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,17.8,69,97400,693,1366,425,104,2,103,12500,100,12400,4780,150,5.2,10,10,56.3,2130,9,999999999,270,0.0910,0,88,999.000,999.0,99.0 +1989,10,4,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,18.3,76,97300,448,1366,420,89,4,88,10300,200,10200,3530,130,4.6,10,10,40.2,4570,9,999999999,280,0.0910,0,88,999.000,999.0,99.0 +1989,10,4,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,18.3,76,97200,171,1366,420,58,6,57,6300,100,6300,1680,90,3.1,10,10,40.2,4570,9,999999999,280,0.0910,0,88,999.000,999.0,99.0 +1989,10,4,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,18.3,79,97200,2,148,416,0,1,0,0,0,0,0,120,4.6,10,10,56.3,4570,9,999999999,280,0.0910,0,88,999.000,999.0,99.0 +1989,10,4,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,17.8,76,97200,0,0,416,0,0,0,0,0,0,0,100,4.1,10,10,56.3,1520,9,999999999,270,0.0910,0,88,999.000,999.0,99.0 +1989,10,4,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,17.8,76,97200,0,0,416,0,0,0,0,0,0,0,100,1.5,10,10,56.3,1520,9,999999999,270,0.0910,0,88,999.000,999.0,99.0 +1989,10,4,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,17.2,73,97200,0,0,415,0,0,0,0,0,0,0,0,0.0,10,10,56.3,7620,9,999999999,260,0.0910,0,88,999.000,999.0,99.0 +1989,10,4,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,17.2,73,97200,0,0,415,0,0,0,0,0,0,0,0,0.0,10,10,56.3,1830,9,999999999,260,0.0910,0,88,999.000,999.0,99.0 +1989,10,4,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,17.2,73,97200,0,0,415,0,0,0,0,0,0,0,0,0.0,10,10,56.3,1830,9,999999999,260,0.0910,0,88,999.000,999.0,99.0 +1989,10,5,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,18.3,81,97100,0,0,414,0,0,0,0,0,0,0,50,2.1,10,10,56.3,1830,9,999999999,280,0.0910,0,88,999.000,999.0,99.0 +1989,10,5,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,17.8,79,97000,0,0,413,0,0,0,0,0,0,0,90,2.1,10,10,56.3,1830,9,999999999,270,0.0910,0,88,999.000,999.0,99.0 +1989,10,5,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,17.2,76,96900,0,0,412,0,0,0,0,0,0,0,110,3.1,10,10,56.3,1830,9,999999999,260,0.0910,0,88,999.000,999.0,99.0 +1989,10,5,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,16.7,73,96900,0,0,412,0,0,0,0,0,0,0,80,2.6,10,10,56.3,1830,9,999999999,250,0.0910,0,88,999.000,999.0,99.0 +1989,10,5,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,16.7,76,97000,0,0,408,0,0,0,0,0,0,0,140,3.6,10,10,56.3,1830,9,999999999,250,0.0910,0,88,999.000,999.0,99.0 +1989,10,5,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,16.7,76,97000,0,0,408,0,0,0,0,0,0,0,140,2.1,10,10,56.3,1830,9,999999999,250,0.0910,0,88,999.000,999.0,99.0 +1989,10,5,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,16.1,73,97100,42,763,382,4,2,4,500,100,500,110,270,2.1,9,7,56.3,1830,9,999999999,240,0.0910,0,88,999.000,999.0,99.0 +1989,10,5,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,17.2,79,97100,296,1367,383,65,3,60,6900,100,6900,2230,250,2.1,7,7,64.4,3660,9,999999999,260,0.0910,0,88,999.000,999.0,99.0 +1989,10,5,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,16.7,69,97200,561,1367,384,206,63,173,21800,6100,19300,4850,0,0.0,5,5,64.4,77777,9,999999999,250,0.0910,0,88,999.000,999.0,99.0 +1989,10,5,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,15.6,52,97300,784,1367,390,539,768,89,56400,76700,12300,2100,220,2.1,2,2,72.4,77777,9,999999999,230,0.0910,0,88,999.000,999.0,99.0 +1989,10,5,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,15.6,49,97300,949,1367,399,630,574,227,67300,59600,25800,6270,200,1.5,3,3,72.4,77777,9,999999999,240,0.1290,0,88,999.000,999.0,99.0 +1989,10,5,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,15.6,49,97300,1046,1367,420,517,358,232,55100,37400,26400,7520,100,3.1,8,8,72.4,1830,9,999999999,240,0.0910,0,88,999.000,999.0,99.0 +1989,10,5,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,15.6,43,97300,1066,1367,433,928,807,290,94900,80300,32100,9310,190,3.6,8,8,72.4,2130,9,999999999,240,0.0910,0,88,999.000,999.0,99.0 +1989,10,5,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,15.0,39,97200,1010,1367,427,755,701,247,79400,70100,27400,7210,190,3.1,6,6,72.4,2130,9,999999999,230,0.0910,0,88,999.000,999.0,99.0 +1989,10,5,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,15.0,39,97200,880,1367,427,550,633,139,58300,64300,16700,3570,180,2.6,6,6,72.4,2130,9,999999999,230,0.0910,0,88,999.000,999.0,99.0 +1989,10,5,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,14.4,39,97200,686,1367,413,482,640,166,51700,64200,19400,3500,140,3.6,3,3,72.4,77777,9,999999999,220,0.0910,0,88,999.000,999.0,99.0 +1989,10,5,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,14.4,41,97200,442,1367,410,152,210,89,17100,19500,10800,1680,140,2.6,4,4,72.4,77777,9,999999999,220,0.0910,0,88,999.000,999.0,99.0 +1989,10,5,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,14.4,58,97400,164,1367,387,22,2,21,2500,0,2500,800,20,5.2,6,6,56.3,1830,9,999999999,220,0.0910,0,88,999.000,999.0,99.0 +1989,10,5,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,14.4,54,97300,1,125,383,0,2,0,0,0,0,0,80,4.6,3,3,56.3,77777,9,999999999,220,0.0910,0,88,999.000,999.0,99.0 +1989,10,5,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,15.6,60,97400,0,0,378,0,0,0,0,0,0,0,80,6.2,2,2,56.3,77777,9,999999999,240,0.0910,0,88,999.000,999.0,99.0 +1989,10,5,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,13.9,57,97400,0,0,359,0,0,0,0,0,0,0,80,4.1,0,0,56.3,77777,9,999999999,209,0.0910,0,88,999.000,999.0,99.0 +1989,10,5,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,14.4,60,97500,0,0,359,0,0,0,0,0,0,0,100,4.1,0,0,56.3,77777,9,999999999,220,0.0910,0,88,999.000,999.0,99.0 +1989,10,5,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,14.4,62,97500,0,0,356,0,0,0,0,0,0,0,90,4.1,0,0,56.3,77777,9,999999999,220,0.0910,0,88,999.000,999.0,99.0 +1989,10,5,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,13.9,59,97500,0,0,356,0,0,0,0,0,0,0,100,3.1,0,0,56.3,77777,9,999999999,209,0.0910,0,88,999.000,999.0,99.0 +1989,10,6,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,12.8,57,97500,0,0,352,0,0,0,0,0,0,0,80,3.1,0,0,56.3,77777,9,999999999,200,0.2120,0,88,999.000,999.0,99.0 +1989,10,6,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,13.3,63,97600,0,0,348,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,209,0.2120,0,88,999.000,999.0,99.0 +1989,10,6,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,13.3,63,97600,0,0,348,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,209,0.2120,0,88,999.000,999.0,99.0 +1989,10,6,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,12.2,59,97600,0,0,346,0,0,0,0,0,0,0,110,3.1,0,0,56.3,77777,9,999999999,190,0.2120,0,88,999.000,999.0,99.0 +1989,10,6,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,13.3,68,97600,0,0,342,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,209,0.2120,0,88,999.000,999.0,99.0 +1989,10,6,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,12.2,61,97700,0,0,344,0,0,0,0,0,0,0,90,2.6,0,0,56.3,77777,9,999999999,190,0.2120,0,88,999.000,999.0,99.0 +1989,10,6,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,12.2,61,97700,40,741,344,21,125,6,1500,6800,1100,150,100,3.1,0,0,56.3,77777,9,999999999,190,0.2120,0,88,999.000,999.0,99.0 +1989,10,6,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,12.8,57,97800,292,1368,359,161,583,32,16500,47900,6200,690,70,2.1,1,1,72.4,77777,9,999999999,200,0.2120,0,88,999.000,999.0,99.0 +1989,10,6,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,12.8,48,97800,557,1368,365,358,759,44,37500,72200,8000,1150,80,2.1,0,0,72.4,77777,9,999999999,200,0.2120,0,88,999.000,999.0,99.0 +1989,10,6,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,12.2,44,97800,780,1368,371,562,856,68,58400,84400,10100,1680,60,3.1,0,0,80.5,77777,9,999999999,200,0.2120,0,88,999.000,999.0,99.0 +1989,10,6,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,11.7,37,97800,945,1368,381,650,778,107,69000,78600,14600,2930,50,3.1,0,0,80.5,77777,9,999999999,190,0.2120,0,88,999.000,999.0,99.0 +1989,10,6,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,11.7,33,97800,1041,1368,389,792,919,85,81900,92000,11700,2590,360,2.1,0,0,96.6,77777,9,999999999,180,0.2120,0,88,999.000,999.0,99.0 +1989,10,6,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,12.2,32,97700,1061,1368,396,815,918,95,84000,91900,12500,2860,220,1.5,0,0,96.6,77777,9,999999999,190,0.2120,0,88,999.000,999.0,99.0 +1989,10,6,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,11.7,28,97600,1004,1368,411,767,884,113,78900,88200,14000,2730,190,2.6,1,1,112.7,77777,9,999999999,180,0.2120,0,88,999.000,999.0,99.0 +1989,10,6,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,10.0,26,97600,874,1368,406,642,875,76,66600,86900,10800,1950,270,3.6,1,1,112.7,77777,9,999999999,170,0.2120,0,88,999.000,999.0,99.0 +1989,10,6,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,10.0,25,97500,680,1368,405,485,688,137,49800,67200,16200,2830,170,2.1,0,0,112.7,77777,9,999999999,170,0.2120,0,88,999.000,999.0,99.0 +1989,10,6,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,9.4,25,97500,435,1368,401,260,632,54,26600,57400,8300,1100,240,2.1,1,0,112.7,77777,9,999999999,160,0.2120,0,88,999.000,999.0,99.0 +1989,10,6,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,9.4,27,97500,158,1368,392,44,283,10,4600,19800,2300,330,350,2.1,0,0,80.5,77777,9,999999999,160,0.2120,0,88,999.000,999.0,99.0 +1989,10,6,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,8.9,28,97500,1,103,386,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,160,0.2120,0,88,999.000,999.0,99.0 +1989,10,6,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,9.4,30,97500,0,0,384,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,160,0.2120,0,88,999.000,999.0,99.0 +1989,10,6,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,10.6,37,97600,0,0,374,0,0,0,0,0,0,0,350,1.5,0,0,56.3,77777,9,999999999,180,0.2120,0,88,999.000,999.0,99.0 +1989,10,6,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,11.7,41,97600,0,0,372,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,190,0.2120,0,88,999.000,999.0,99.0 +1989,10,6,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,12.2,45,97600,0,0,368,0,0,0,0,0,0,0,30,1.5,0,0,56.3,77777,9,999999999,190,0.2120,0,88,999.000,999.0,99.0 +1989,10,6,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,10.6,42,97600,0,0,363,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,170,0.2120,0,88,999.000,999.0,99.0 +1989,10,7,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,12.2,52,97600,0,0,357,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,200,0.1630,0,88,999.000,999.0,99.0 +1989,10,7,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,11.7,53,97600,0,0,351,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,190,0.1630,0,88,999.000,999.0,99.0 +1989,10,7,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,12.2,59,97600,0,0,346,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,190,0.1630,0,88,999.000,999.0,99.0 +1989,10,7,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,11.7,57,97600,0,0,346,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,190,0.1630,0,88,999.000,999.0,99.0 +1989,10,7,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,11.7,57,97600,0,0,346,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,190,0.1630,0,88,999.000,999.0,99.0 +1989,10,7,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,11.7,61,97600,0,0,340,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,190,0.1630,0,88,999.000,999.0,99.0 +1989,10,7,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,12.2,63,97700,39,741,341,19,122,5,1300,7000,900,170,0,0.0,0,0,56.3,77777,9,999999999,190,0.1630,0,88,999.000,999.0,99.0 +1989,10,7,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,11.7,53,97700,289,1369,351,152,581,28,16000,48100,5800,710,250,1.5,0,0,72.4,77777,9,999999999,190,0.1630,0,88,999.000,999.0,99.0 +1989,10,7,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,11.7,43,97800,553,1369,367,346,750,41,36600,71300,7700,1110,200,1.5,0,0,72.4,77777,9,999999999,190,0.1630,0,88,999.000,999.0,99.0 +1989,10,7,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,11.7,37,97800,776,1369,381,539,838,61,56500,82700,9500,1590,240,1.5,0,0,72.4,77777,9,999999999,190,0.1630,0,88,999.000,999.0,99.0 +1989,10,7,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,11.1,31,97700,940,1369,391,683,869,80,70800,86600,11100,2160,230,2.1,0,0,72.4,77777,9,999999999,180,0.1630,0,88,999.000,999.0,99.0 +1989,10,7,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,10.0,26,97700,1036,1369,399,786,908,91,81100,90800,12100,2660,0,0.0,0,0,80.5,77777,9,999999999,170,0.1630,0,88,999.000,999.0,99.0 +1989,10,7,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,8.3,21,97600,1056,1369,405,824,948,85,85200,94900,11800,2660,300,3.1,0,0,112.7,77777,9,999999999,150,0.1630,0,88,999.000,999.0,99.0 +1989,10,7,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34.4,7.2,19,97500,999,1369,417,803,947,104,82500,94500,13400,2630,220,2.1,1,1,112.7,77777,9,999999999,140,0.1630,0,88,999.000,999.0,99.0 +1989,10,7,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.9,6.7,18,97400,869,1369,414,651,911,66,67800,90600,10100,1800,30,2.6,1,1,112.7,77777,9,999999999,130,0.1630,0,88,999.000,999.0,99.0 +1989,10,7,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.9,7.2,19,97400,674,1369,407,488,687,142,49700,66900,16700,2890,360,3.1,0,0,80.5,77777,9,999999999,140,0.1630,0,88,999.000,999.0,99.0 +1989,10,7,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,7.2,20,97400,429,1369,403,268,685,46,27600,62400,8000,990,360,1.5,0,0,80.5,77777,9,999999999,140,0.1630,0,88,999.000,999.0,99.0 +1989,10,7,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,7.2,21,97400,152,1369,398,46,317,9,4800,21900,2400,300,220,1.5,0,0,56.3,77777,9,999999999,140,0.1630,0,88,999.000,999.0,99.0 +1989,10,7,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,6.7,22,97400,0,57,389,0,0,0,0,0,0,0,200,2.1,0,0,56.3,77777,9,999999999,130,0.1630,0,88,999.000,999.0,99.0 +1989,10,7,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,7.8,27,97400,0,0,382,0,0,0,0,0,0,0,240,2.1,0,0,56.3,77777,9,999999999,150,0.1630,0,88,999.000,999.0,99.0 +1989,10,7,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,7.2,27,97500,0,0,375,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,140,0.1630,0,88,999.000,999.0,99.0 +1989,10,7,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,8.9,33,97500,0,0,372,0,0,0,0,0,0,0,20,1.5,0,0,56.3,77777,9,999999999,160,0.1630,0,88,999.000,999.0,99.0 +1989,10,7,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,10.0,38,97500,0,0,368,0,0,0,0,0,0,0,40,2.1,0,0,56.3,77777,9,999999999,170,0.1630,0,88,999.000,999.0,99.0 +1989,10,7,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,8.9,36,97500,0,0,371,0,0,0,0,0,0,0,0,0.0,1,1,56.3,77777,9,999999999,160,0.1630,0,88,999.000,999.0,99.0 +1989,10,8,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,8.3,37,97500,0,0,364,0,0,0,0,0,0,0,140,2.1,1,1,56.3,77777,9,999999999,150,0.1340,0,88,999.000,999.0,99.0 +1989,10,8,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,7.8,37,97500,0,0,361,0,0,0,0,0,0,0,0,0.0,1,1,56.3,77777,9,999999999,150,0.1340,0,88,999.000,999.0,99.0 +1989,10,8,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,9.4,46,97500,0,0,355,0,0,0,0,0,0,0,0,0.0,1,1,56.3,77777,9,999999999,160,0.1340,0,88,999.000,999.0,99.0 +1989,10,8,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,10.0,49,97500,0,0,358,0,0,0,0,0,0,0,10,1.5,2,2,56.3,77777,9,999999999,170,0.1340,0,88,999.000,999.0,99.0 +1989,10,8,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,10.0,49,97500,0,0,358,0,0,0,0,0,0,0,140,1.5,2,2,56.3,77777,9,999999999,170,0.1340,0,88,999.000,999.0,99.0 +1989,10,8,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,10.0,51,97600,0,0,355,0,0,0,0,0,0,0,0,0.0,2,2,56.3,77777,9,999999999,170,0.1340,0,88,999.000,999.0,99.0 +1989,10,8,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,10.0,51,97600,37,719,355,19,122,5,1300,7000,900,170,0,0.0,2,2,56.3,77777,9,999999999,170,0.1340,0,88,999.000,999.0,99.0 +1989,10,8,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,10.0,43,97700,285,1369,368,166,544,46,16500,42600,7600,850,270,1.5,2,2,72.4,77777,9,999999999,170,0.1340,0,88,999.000,999.0,99.0 +1989,10,8,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,10.0,35,97700,549,1369,386,359,777,37,37200,73800,7500,1040,300,1.5,2,2,72.4,77777,9,999999999,170,0.1340,0,88,999.000,999.0,99.0 +1989,10,8,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,7.2,24,97700,771,1369,386,546,865,53,57200,85400,9000,1470,0,0.0,0,0,80.5,77777,9,999999999,140,0.1340,0,88,999.000,999.0,99.0 +1989,10,8,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,6.7,21,97600,936,1369,394,710,921,74,73800,91900,10800,2060,220,1.5,0,0,80.5,77777,9,999999999,140,0.1340,0,88,999.000,999.0,99.0 +1989,10,8,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.9,7.2,19,97600,1031,1369,407,808,950,85,83600,95000,11800,2540,290,2.1,0,0,112.7,77777,9,999999999,140,0.1340,0,88,999.000,999.0,99.0 +1989,10,8,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.0,7.8,19,97500,1051,1369,413,814,861,145,84800,86600,18100,4410,210,1.5,0,0,112.7,77777,9,999999999,150,0.1320,0,88,999.000,999.0,99.0 +1989,10,8,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.1,7.2,17,97400,993,1369,426,797,948,104,82200,94600,13400,2600,170,3.1,1,1,112.7,77777,9,999999999,140,0.1340,0,88,999.000,999.0,99.0 +1989,10,8,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.1,6.7,16,97300,863,1369,426,670,896,102,70900,89900,14100,2520,270,3.1,1,1,112.7,77777,9,999999999,130,0.1340,0,88,999.000,999.0,99.0 +1989,10,8,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.6,6.7,17,97300,668,1369,415,484,669,152,49200,64700,17500,3030,270,3.6,0,0,80.5,77777,9,999999999,140,0.1340,0,88,999.000,999.0,99.0 +1989,10,8,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.0,6.7,17,97300,423,1369,412,266,682,50,27300,61600,8200,1040,220,3.1,0,0,80.5,77777,9,999999999,130,0.1340,0,88,999.000,999.0,99.0 +1989,10,8,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.9,6.1,18,97200,146,1369,405,44,304,10,4600,20700,2400,320,250,3.1,0,0,56.3,77777,9,999999999,130,0.1340,0,88,999.000,999.0,99.0 +1989,10,8,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,6.7,20,97300,0,34,397,0,1,0,0,0,0,0,260,3.1,0,0,56.3,77777,9,999999999,130,0.1340,0,88,999.000,999.0,99.0 +1989,10,8,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,6.7,23,97300,0,0,386,0,0,0,0,0,0,0,250,3.1,0,0,56.3,77777,9,999999999,140,0.1340,0,88,999.000,999.0,99.0 +1989,10,8,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,6.7,25,97400,0,0,380,0,0,0,0,0,0,0,300,2.1,0,0,56.3,77777,9,999999999,140,0.1340,0,88,999.000,999.0,99.0 +1989,10,8,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,7.8,29,97500,0,0,373,0,0,0,0,0,0,0,80,1.5,0,0,56.3,77777,9,999999999,140,0.1340,0,88,999.000,999.0,99.0 +1989,10,8,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,7.8,31,97500,0,0,368,0,0,0,0,0,0,0,190,2.1,0,0,56.3,77777,9,999999999,140,0.1340,0,88,999.000,999.0,99.0 +1989,10,8,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,8.3,34,97500,0,0,366,0,0,0,0,0,0,0,50,2.1,0,0,56.3,77777,9,999999999,150,0.1340,0,88,999.000,999.0,99.0 +1989,10,9,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,8.9,39,97500,0,0,358,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,160,0.0720,0,88,999.000,999.0,99.0 +1989,10,9,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,7.8,38,97500,0,0,352,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,150,0.0720,0,88,999.000,999.0,99.0 +1989,10,9,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,9.4,44,97500,0,0,351,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,160,0.0720,0,88,999.000,999.0,99.0 +1989,10,9,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,7.8,41,97500,0,0,346,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,150,0.0720,0,88,999.000,999.0,99.0 +1989,10,9,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,7.8,42,97500,0,0,344,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,140,0.0720,0,88,999.000,999.0,99.0 +1989,10,9,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,5.6,35,97600,0,0,344,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,130,0.0720,0,88,999.000,999.0,99.0 +1989,10,9,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,5.6,34,97600,35,697,346,19,156,1,1100,9000,600,40,100,2.6,0,0,80.5,77777,9,999999999,130,0.0720,0,88,999.000,999.0,99.0 +1989,10,9,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,5.0,30,97700,281,1370,354,161,636,28,16800,52200,6100,700,70,4.1,0,0,80.5,77777,9,999999999,120,0.0720,0,88,999.000,999.0,99.0 +1989,10,9,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,5.6,24,97800,545,1370,376,365,800,41,38200,75900,7900,1100,90,4.1,0,0,72.4,77777,9,999999999,130,0.0720,0,88,999.000,999.0,99.0 +1989,10,9,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,5.6,21,97700,767,1370,387,567,883,66,58900,87000,10100,1640,100,4.1,0,0,72.4,77777,9,999999999,130,0.0720,0,88,999.000,999.0,99.0 +1989,10,9,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,6.1,20,97700,931,1370,396,717,905,94,73800,90100,12400,2270,110,3.6,0,0,72.4,77777,9,999999999,130,0.0720,0,88,999.000,999.0,99.0 +1989,10,9,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.9,6.7,18,97600,1026,1370,406,811,935,103,83400,93400,13200,2760,160,2.6,0,0,72.4,77777,9,999999999,130,0.0720,0,88,999.000,999.0,99.0 +1989,10,9,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.0,7.8,19,97600,1045,1370,413,814,931,95,83800,93100,12500,2760,240,1.5,0,0,72.4,77777,9,999999999,150,0.0720,0,88,999.000,999.0,99.0 +1989,10,9,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.1,6.7,16,97500,988,1370,418,795,929,117,81300,92500,14400,2650,250,2.1,0,0,72.4,77777,9,999999999,130,0.0720,0,88,999.000,999.0,99.0 +1989,10,9,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.7,6.1,15,97400,857,1370,420,674,882,115,69900,88000,14700,2700,280,3.1,0,0,72.4,77777,9,999999999,130,0.0720,0,88,999.000,999.0,99.0 +1989,10,9,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.1,6.1,16,97300,662,1370,417,478,604,181,49500,60100,20300,3810,220,3.1,0,0,72.4,77777,9,999999999,130,0.0720,0,88,999.000,999.0,99.0 +1989,10,9,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.1,6.1,16,97300,416,1370,417,259,648,57,26200,57900,8500,1110,260,4.1,0,0,72.4,77777,9,999999999,130,0.0720,0,88,999.000,999.0,99.0 +1989,10,9,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.9,5.6,17,97300,139,1370,404,44,298,11,4400,20000,2400,340,270,2.6,0,0,72.4,77777,9,999999999,130,0.0720,0,88,999.000,999.0,99.0 +1989,10,9,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,6.1,20,97400,0,11,396,0,0,0,0,0,0,0,270,1.5,0,0,56.3,77777,9,999999999,130,0.0720,0,88,999.000,999.0,99.0 +1989,10,9,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,7.2,24,97400,0,0,386,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,140,0.0720,0,88,999.000,999.0,99.0 +1989,10,9,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,7.2,26,97400,0,0,378,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,140,0.0720,0,88,999.000,999.0,99.0 +1989,10,9,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,8.3,29,97500,0,0,377,0,0,0,0,0,0,0,80,1.5,0,0,56.3,77777,9,999999999,150,0.0720,0,88,999.000,999.0,99.0 +1989,10,9,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,8.3,31,97500,0,0,371,0,0,0,0,0,0,0,50,1.5,0,0,56.3,77777,9,999999999,150,0.0720,0,88,999.000,999.0,99.0 +1989,10,9,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,7.8,32,97500,0,0,365,0,0,0,0,0,0,0,140,2.1,0,0,56.3,77777,9,999999999,140,0.0720,0,88,999.000,999.0,99.0 +1989,10,10,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,7.8,33,97500,0,0,362,0,0,0,0,0,0,0,150,2.6,0,0,56.3,77777,9,999999999,140,0.0720,0,88,999.000,999.0,99.0 +1989,10,10,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,6.7,33,97500,0,0,356,0,0,0,0,0,0,0,100,2.6,0,0,56.3,77777,9,999999999,140,0.0720,0,88,999.000,999.0,99.0 +1989,10,10,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,7.2,36,97500,0,0,353,0,0,0,0,0,0,0,90,2.6,0,0,56.3,77777,9,999999999,140,0.0720,0,88,999.000,999.0,99.0 +1989,10,10,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,7.2,37,97500,0,0,351,0,0,0,0,0,0,0,110,2.6,0,0,56.3,77777,9,999999999,140,0.0720,0,88,999.000,999.0,99.0 +1989,10,10,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,7.2,40,97500,0,0,346,0,0,0,0,0,0,0,70,3.1,0,0,56.3,77777,9,999999999,140,0.0720,0,88,999.000,999.0,99.0 +1989,10,10,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,7.2,40,97600,0,0,346,0,0,0,0,0,0,0,120,3.1,0,0,56.3,77777,9,999999999,140,0.0720,0,88,999.000,999.0,99.0 +1989,10,10,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,7.8,41,97600,33,674,346,17,135,1,900,7700,500,40,100,2.6,0,0,80.5,77777,9,999999999,150,0.0720,0,88,999.000,999.0,99.0 +1989,10,10,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,4.4,26,97700,277,1371,361,158,615,31,16500,50300,6300,720,110,3.6,0,0,56.3,77777,9,999999999,120,0.0720,0,88,999.000,999.0,99.0 +1989,10,10,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,5.0,26,97700,541,1371,364,363,789,46,37900,74700,8300,1160,100,2.6,0,0,56.3,77777,9,999999999,120,0.0720,0,88,999.000,999.0,99.0 +1989,10,10,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,6.1,24,97700,763,1371,379,558,870,68,58000,85600,10200,1650,80,3.6,0,0,64.4,77777,9,999999999,130,0.0720,0,88,999.000,999.0,99.0 +1989,10,10,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,5.6,19,97700,927,1371,393,714,910,93,73700,90600,12300,2250,120,2.1,0,0,64.4,77777,9,999999999,120,0.0720,0,88,999.000,999.0,99.0 +1989,10,10,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34.4,6.1,17,97600,1021,1371,408,803,930,103,82600,92900,13200,2730,140,3.1,0,0,72.4,77777,9,999999999,130,0.0720,0,88,999.000,999.0,99.0 +1989,10,10,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.1,7.2,17,97500,1040,1371,418,817,926,106,83900,92500,13500,2860,140,2.6,0,0,72.4,77777,9,999999999,140,0.0720,0,88,999.000,999.0,99.0 +1989,10,10,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.7,7.8,17,97400,982,1371,423,781,906,124,81900,91300,16400,3450,80,2.6,0,0,72.4,77777,9,999999999,140,0.0720,0,88,999.000,999.0,99.0 +1989,10,10,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.8,7.8,16,97300,851,1371,429,664,870,117,68700,86600,14800,2700,200,1.5,0,0,96.6,77777,9,999999999,140,0.0720,0,88,999.000,999.0,99.0 +1989,10,10,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.8,7.2,15,97300,656,1371,436,471,579,192,48700,57400,21100,4060,0,0.0,1,1,72.4,77777,9,999999999,140,0.0720,0,88,999.000,999.0,99.0 +1989,10,10,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.2,7.2,16,97200,410,1371,433,255,691,45,26600,62200,7900,960,260,2.6,1,1,72.4,77777,9,999999999,140,0.0720,0,88,999.000,999.0,99.0 +1989,10,10,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.0,6.7,17,97200,133,1360,420,40,255,12,4100,16500,2400,290,270,2.1,2,1,56.3,77777,9,999999999,130,0.0720,0,88,999.000,999.0,99.0 +1989,10,10,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,7.2,20,97200,0,0,411,0,0,0,0,0,0,0,0,0.0,2,1,56.3,77777,9,999999999,140,0.0720,0,88,999.000,999.0,99.0 +1989,10,10,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,7.8,23,97200,0,0,396,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,150,0.0720,0,88,999.000,999.0,99.0 +1989,10,10,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,8.3,26,97300,0,0,388,0,0,0,0,0,0,0,0,0.0,1,0,56.3,77777,9,999999999,150,0.0720,0,88,999.000,999.0,99.0 +1989,10,10,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,7.8,27,97300,0,0,382,0,0,0,0,0,0,0,0,0.0,4,0,56.3,77777,9,999999999,150,0.0720,0,88,999.000,999.0,99.0 +1989,10,10,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,10.0,33,97300,0,0,379,0,0,0,0,0,0,0,90,1.5,6,0,56.3,77777,9,999999999,170,0.0720,0,88,999.000,999.0,99.0 +1989,10,10,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,8.3,31,97300,0,0,371,0,0,0,0,0,0,0,120,2.6,6,0,56.3,77777,9,999999999,150,0.0720,0,88,999.000,999.0,99.0 +1989,10,11,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,6.7,29,97300,0,0,366,0,0,0,0,0,0,0,80,2.1,6,0,56.3,77777,9,999999999,140,0.0880,0,88,999.000,999.0,99.0 +1989,10,11,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,6.7,31,97300,0,0,361,0,0,0,0,0,0,0,90,2.1,5,0,56.3,77777,9,999999999,140,0.0880,0,88,999.000,999.0,99.0 +1989,10,11,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,6.7,32,97300,0,0,358,0,0,0,0,0,0,0,90,2.6,5,0,56.3,77777,9,999999999,140,0.0880,0,88,999.000,999.0,99.0 +1989,10,11,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,7.8,38,97400,0,0,352,0,0,0,0,0,0,0,60,2.1,5,0,56.3,77777,9,999999999,150,0.0880,0,88,999.000,999.0,99.0 +1989,10,11,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,6.7,33,97400,0,0,362,0,0,0,0,0,0,0,60,2.1,6,1,56.3,77777,9,999999999,140,0.0880,0,88,999.000,999.0,99.0 +1989,10,11,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,7.2,37,97500,0,0,358,0,0,0,0,0,0,0,110,3.1,5,1,56.3,77777,9,999999999,140,0.0880,0,88,999.000,999.0,99.0 +1989,10,11,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,6.1,35,97500,31,675,353,23,110,10,1700,4700,1400,190,100,2.6,7,1,56.3,77777,9,999999999,130,0.0880,0,88,999.000,999.0,99.0 +1989,10,11,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,6.1,33,97600,273,1372,364,150,356,77,15200,26600,9800,1430,110,4.1,7,2,56.3,77777,9,999999999,130,0.0880,0,88,999.000,999.0,99.0 +1989,10,11,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,7.8,29,97700,537,1372,385,284,443,107,30100,42400,13500,2040,90,3.6,8,2,72.4,77777,9,999999999,140,0.0880,0,88,999.000,999.0,99.0 +1989,10,11,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,7.8,26,97700,758,1372,397,524,737,111,55300,74000,14200,2540,100,2.6,7,2,72.4,77777,9,999999999,150,0.0880,0,88,999.000,999.0,99.0 +1989,10,11,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,7.8,23,97700,922,1372,396,712,895,106,73400,88900,13400,2300,110,3.1,3,0,72.4,77777,9,999999999,150,0.0880,0,88,999.000,999.0,99.0 +1989,10,11,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,7.8,21,97600,1016,1372,402,808,908,129,85000,91500,17000,3770,90,3.1,3,0,72.4,77777,9,999999999,140,0.0880,0,88,999.000,999.0,99.0 +1989,10,11,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.6,8.9,20,97500,1035,1372,426,841,919,139,87800,92500,17800,4120,100,2.1,5,1,72.4,77777,9,999999999,160,0.0880,0,88,999.000,999.0,99.0 +1989,10,11,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.2,8.3,17,97400,976,1372,440,733,719,216,76000,72200,24400,6010,240,1.5,8,2,72.4,77777,9,999999999,150,0.0880,0,88,999.000,999.0,99.0 +1989,10,11,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.2,7.8,16,97300,845,1372,451,516,373,292,55800,39700,31200,7610,270,3.1,10,5,72.4,77777,9,999999999,140,0.0880,0,88,999.000,999.0,99.0 +1989,10,11,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.7,6.7,16,97300,650,1372,450,357,219,261,39100,22100,28600,6400,270,2.1,9,6,72.4,7620,9,999999999,140,0.0880,0,88,999.000,999.0,99.0 +1989,10,11,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.6,7.2,17,97300,404,1372,457,184,185,138,20700,16700,15800,3080,310,3.1,8,8,72.4,7620,9,999999999,140,0.0880,0,88,999.000,999.0,99.0 +1989,10,11,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34.4,7.2,19,97300,128,1315,437,30,30,27,3300,1700,3200,560,310,1.5,8,6,96.6,7620,9,999999999,140,0.0880,0,88,999.000,999.0,99.0 +1989,10,11,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,7.8,21,97300,0,0,419,0,0,0,0,0,0,0,0,0.0,8,3,56.3,77777,9,999999999,140,0.0880,0,88,999.000,999.0,99.0 +1989,10,11,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,8.3,24,97400,0,0,410,0,0,0,0,0,0,0,0,0.0,7,3,56.3,77777,9,999999999,150,0.0880,0,88,999.000,999.0,99.0 +1989,10,11,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,8.3,26,97400,0,0,401,0,0,0,0,0,0,0,0,0.0,7,2,56.3,77777,9,999999999,150,0.0880,0,88,999.000,999.0,99.0 +1989,10,11,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,9.4,31,97400,0,0,397,0,0,0,0,0,0,0,0,0.0,8,3,56.3,77777,9,999999999,160,0.0880,0,88,999.000,999.0,99.0 +1989,10,11,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,8.3,29,97400,0,0,393,0,0,0,0,0,0,0,0,0.0,8,3,56.3,77777,9,999999999,150,0.0880,0,88,999.000,999.0,99.0 +1989,10,11,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,7.8,31,97400,0,0,380,0,0,0,0,0,0,0,150,1.5,7,2,56.3,77777,9,999999999,140,0.0880,0,88,999.000,999.0,99.0 +1989,10,12,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,6.7,29,97400,0,0,378,0,0,0,0,0,0,0,100,1.5,7,2,56.3,77777,9,999999999,140,0.0870,0,88,999.000,999.0,99.0 +1989,10,12,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,7.2,32,97400,0,0,373,0,0,0,0,0,0,0,0,0.0,8,2,56.3,77777,9,999999999,140,0.0870,0,88,999.000,999.0,99.0 +1989,10,12,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,7.2,33,97400,0,0,374,0,0,0,0,0,0,0,0,0.0,8,3,56.3,77777,9,999999999,140,0.0870,0,88,999.000,999.0,99.0 +1989,10,12,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,7.2,34,97400,0,0,372,0,0,0,0,0,0,0,130,2.1,8,3,56.3,77777,9,999999999,140,0.0870,0,88,999.000,999.0,99.0 +1989,10,12,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,7.8,38,97500,0,0,363,0,0,0,0,0,0,0,80,2.6,7,2,56.3,77777,9,999999999,150,0.0870,0,88,999.000,999.0,99.0 +1989,10,12,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,7.8,40,97500,0,0,360,0,0,0,0,0,0,0,100,2.6,6,2,56.3,77777,9,999999999,150,0.0870,0,88,999.000,999.0,99.0 +1989,10,12,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,7.8,40,97600,30,652,364,20,64,12,1700,2200,1500,210,170,2.1,8,3,56.3,77777,9,999999999,150,0.0870,0,88,999.000,999.0,99.0 +1989,10,12,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,7.2,32,97600,270,1373,373,138,376,59,14000,28000,8500,1060,110,3.1,9,2,72.4,77777,9,999999999,140,0.0870,0,88,999.000,999.0,99.0 +1989,10,12,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,7.8,30,97700,533,1373,378,320,616,75,33300,58600,10400,1510,120,3.6,8,1,72.4,77777,9,999999999,150,0.0870,0,88,999.000,999.0,99.0 +1989,10,12,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,7.8,26,97800,754,1373,391,540,701,147,55500,69500,17300,3220,130,3.1,9,1,72.4,77777,9,999999999,150,0.0870,0,88,999.000,999.0,99.0 +1989,10,12,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,7.8,23,97700,917,1373,409,651,594,248,68400,61400,27200,6590,170,2.6,9,2,72.4,77777,9,999999999,150,0.0870,0,88,999.000,999.0,99.0 +1989,10,12,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,7.8,21,97600,1011,1373,422,695,486,333,72100,50300,34900,10370,130,3.1,10,3,72.4,77777,9,999999999,150,0.0870,0,88,999.000,999.0,99.0 +1989,10,12,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34.4,7.8,19,97500,1029,1373,424,799,703,268,82200,70000,29500,7960,120,2.6,9,2,72.4,77777,9,999999999,140,0.0870,0,88,999.000,999.0,99.0 +1989,10,12,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.6,7.8,18,97400,971,1373,430,644,504,288,67800,52200,30800,8320,280,1.5,8,2,72.4,77777,9,999999999,140,0.0870,0,88,999.000,999.0,99.0 +1989,10,12,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.2,7.2,16,97400,839,1373,438,633,730,187,65700,72500,21200,4330,270,2.6,7,2,72.4,77777,9,999999999,140,0.0870,0,88,999.000,999.0,99.0 +1989,10,12,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.7,7.2,16,97300,644,1373,436,411,311,268,43100,31700,28200,6420,310,2.6,9,2,72.4,77777,9,999999999,140,0.0870,0,88,999.000,999.0,99.0 +1989,10,12,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.1,6.7,16,97300,398,1373,432,208,405,91,21900,35400,11600,1690,310,2.1,9,2,56.3,77777,9,999999999,130,0.0870,0,88,999.000,999.0,99.0 +1989,10,12,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34.4,6.1,17,97300,122,1293,425,34,116,21,3500,6000,2900,360,290,2.1,9,3,56.3,77777,9,999999999,130,0.0870,0,88,999.000,999.0,99.0 +1989,10,12,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,6.7,20,97300,0,0,417,0,0,0,0,0,0,0,0,0.0,8,3,56.3,77777,9,999999999,140,0.0870,0,88,999.000,999.0,99.0 +1989,10,12,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,7.8,23,97300,0,0,406,0,0,0,0,0,0,0,0,0.0,8,2,56.3,77777,9,999999999,140,0.0870,0,88,999.000,999.0,99.0 +1989,10,12,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,6.7,24,97300,0,0,395,0,0,0,0,0,0,0,0,0.0,8,2,56.3,77777,9,999999999,140,0.0870,0,88,999.000,999.0,99.0 +1989,10,12,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,7.8,27,97400,0,0,386,0,0,0,0,0,0,0,0,0.0,8,1,56.3,77777,9,999999999,140,0.0870,0,88,999.000,999.0,99.0 +1989,10,12,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,7.8,29,97400,0,0,373,0,0,0,0,0,0,0,90,2.1,7,0,56.3,77777,9,999999999,140,0.0870,0,88,999.000,999.0,99.0 +1989,10,12,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,7.2,30,97400,0,0,367,0,0,0,0,0,0,0,110,2.6,8,0,56.3,77777,9,999999999,140,0.0870,0,88,999.000,999.0,99.0 +1989,10,13,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,7.2,31,97400,0,0,364,0,0,0,0,0,0,0,100,3.1,6,0,56.3,77777,9,999999999,140,0.0870,0,88,999.000,999.0,99.0 +1989,10,13,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,7.8,35,97400,0,0,359,0,0,0,0,0,0,0,110,2.1,7,0,56.3,77777,9,999999999,150,0.0870,0,88,999.000,999.0,99.0 +1989,10,13,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,7.2,37,97400,0,0,351,0,0,0,0,0,0,0,70,2.1,6,0,56.3,77777,9,999999999,140,0.0870,0,88,999.000,999.0,99.0 +1989,10,13,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,7.2,38,97400,0,0,348,0,0,0,0,0,0,0,90,3.1,5,0,56.3,77777,9,999999999,140,0.0870,0,88,999.000,999.0,99.0 +1989,10,13,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,6.1,37,97400,0,0,351,0,0,0,0,0,0,0,100,3.1,6,1,56.3,77777,9,999999999,130,0.0870,0,88,999.000,999.0,99.0 +1989,10,13,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,6.7,39,97500,0,0,354,0,0,0,0,0,0,0,100,3.1,5,2,56.3,77777,9,999999999,140,0.0870,0,88,999.000,999.0,99.0 +1989,10,13,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,6.1,37,97500,28,630,359,20,23,17,2000,900,2000,350,110,3.6,8,3,64.4,77777,9,999999999,130,0.0820,0,88,999.000,999.0,99.0 +1989,10,13,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,7.2,36,97600,266,1373,360,138,418,55,13800,31300,7800,970,90,3.1,4,1,72.4,77777,9,999999999,140,0.0820,0,88,999.000,999.0,99.0 +1989,10,13,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,6.7,27,97600,529,1373,379,336,634,88,34700,59800,11700,1730,90,5.2,4,1,72.4,77777,9,999999999,140,0.0820,0,88,999.000,999.0,99.0 +1989,10,13,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,7.8,26,97600,750,1373,397,513,618,171,54400,62700,20000,3750,110,3.6,5,2,72.4,77777,9,999999999,150,0.0820,0,88,999.000,999.0,99.0 +1989,10,13,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,7.2,22,97600,912,1373,412,672,715,191,69600,71700,21800,4880,100,3.1,6,3,72.4,77777,9,999999999,140,0.0820,0,88,999.000,999.0,99.0 +1989,10,13,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.9,7.2,19,97600,1006,1373,424,747,720,214,77700,72600,24400,6280,110,3.1,7,3,72.4,77777,9,999999999,140,0.0820,0,88,999.000,999.0,99.0 +1989,10,13,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.6,7.8,18,97500,1024,1373,430,786,801,182,82800,81500,21800,5640,100,2.1,4,2,72.4,77777,9,999999999,140,0.0820,0,88,999.000,999.0,99.0 +1989,10,13,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.2,8.3,17,97400,965,1373,440,731,833,138,75600,83300,16800,3570,110,2.6,3,2,72.4,77777,9,999999999,150,0.0820,0,88,999.000,999.0,99.0 +1989,10,13,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.8,7.8,16,97300,833,1373,443,527,629,140,55200,63400,16600,3370,60,1.5,3,2,72.4,77777,9,999999999,140,0.0820,0,88,999.000,999.0,99.0 +1989,10,13,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.8,8.3,17,97200,637,1373,438,416,638,115,42900,62000,14100,2350,10,3.1,4,1,72.4,77777,9,999999999,150,0.0820,0,88,999.000,999.0,99.0 +1989,10,13,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.1,8.9,19,97200,392,1373,429,233,495,88,24200,43000,11800,1630,340,3.1,6,1,72.4,77777,9,999999999,160,0.0820,0,88,999.000,999.0,99.0 +1989,10,13,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.0,8.3,19,97200,116,1270,422,53,143,37,5300,6700,4700,690,20,2.6,6,1,56.3,77777,9,999999999,150,0.0820,0,88,999.000,999.0,99.0 +1989,10,13,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,9.4,24,97200,0,0,404,0,0,0,0,0,0,0,10,1.5,4,0,56.3,77777,9,999999999,160,0.0870,0,88,999.000,999.0,99.0 +1989,10,13,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,10.0,27,97200,0,0,396,0,0,0,0,0,0,0,30,1.5,5,0,56.3,77777,9,999999999,170,0.0870,0,88,999.000,999.0,99.0 +1989,10,13,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,9.4,28,97200,0,0,389,0,0,0,0,0,0,0,0,0.0,5,0,56.3,77777,9,999999999,160,0.0870,0,88,999.000,999.0,99.0 +1989,10,13,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,8.9,28,97300,0,0,386,0,0,0,0,0,0,0,0,0.0,7,0,56.3,77777,9,999999999,160,0.0870,0,88,999.000,999.0,99.0 +1989,10,13,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,7.8,26,97300,0,0,384,0,0,0,0,0,0,0,170,2.1,7,0,56.3,77777,9,999999999,150,0.0870,0,88,999.000,999.0,99.0 +1989,10,13,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,8.9,31,97300,0,0,377,0,0,0,0,0,0,0,20,2.1,7,0,56.3,77777,9,999999999,160,0.0870,0,88,999.000,999.0,99.0 +1989,10,14,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,9.4,35,97300,0,0,370,0,0,0,0,0,0,0,60,1.5,4,0,56.3,77777,9,999999999,160,0.0340,0,88,999.000,999.0,99.0 +1989,10,14,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,9.4,37,97300,0,0,371,0,0,0,0,0,0,0,0,0.0,6,1,56.3,77777,9,999999999,160,0.0340,0,88,999.000,999.0,99.0 +1989,10,14,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,8.9,37,97300,0,0,373,0,0,0,0,0,0,0,90,2.6,7,2,56.3,77777,9,999999999,150,0.0340,0,88,999.000,999.0,99.0 +1989,10,14,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,8.3,38,97300,0,0,355,0,0,0,0,0,0,0,120,2.6,3,0,56.3,77777,9,999999999,150,0.0340,0,88,999.000,999.0,99.0 +1989,10,14,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,7.8,38,97300,0,0,352,0,0,0,0,0,0,0,80,1.5,2,0,56.3,77777,9,999999999,150,0.0340,0,88,999.000,999.0,99.0 +1989,10,14,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,7.8,42,97300,0,0,344,0,0,0,0,0,0,0,140,2.6,2,0,56.3,77777,9,999999999,140,0.0340,0,88,999.000,999.0,99.0 +1989,10,14,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,7.2,40,97300,27,607,352,14,113,1,700,6300,400,40,120,3.1,1,1,64.4,77777,9,999999999,140,0.0340,0,88,999.000,999.0,99.0 +1989,10,14,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,7.8,36,97400,262,1374,364,150,567,37,14800,44300,6400,720,100,3.1,1,1,72.4,77777,9,999999999,150,0.0340,0,88,999.000,999.0,99.0 +1989,10,14,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,6.7,28,97400,525,1374,376,354,750,60,36500,70900,9400,1270,120,4.1,1,1,72.4,77777,9,999999999,140,0.0340,0,88,999.000,999.0,99.0 +1989,10,14,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,7.2,25,97400,745,1374,391,546,829,88,56900,82200,12200,1990,110,4.1,1,1,80.5,77777,9,999999999,140,0.0340,0,88,999.000,999.0,99.0 +1989,10,14,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,7.2,20,97300,908,1374,409,700,871,117,73000,87300,15200,2930,160,3.1,1,1,80.5,77777,9,999999999,140,0.0340,0,88,999.000,999.0,99.0 +1989,10,14,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34.4,6.7,18,97200,1001,1374,409,790,893,132,82600,89800,16900,3710,150,4.1,0,0,80.5,77777,9,999999999,140,0.0340,0,88,999.000,999.0,99.0 +1989,10,14,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.0,7.2,18,97100,1019,1374,412,812,895,141,84500,89900,17700,4010,140,3.6,0,0,80.5,77777,9,999999999,140,0.0340,0,88,999.000,999.0,99.0 +1989,10,14,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.1,7.2,17,96900,959,1374,418,766,868,153,78300,86300,17900,3750,180,5.7,0,0,80.5,77777,9,999999999,140,0.0340,0,88,999.000,999.0,99.0 +1989,10,14,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.7,7.8,17,96800,827,1374,423,643,777,168,66400,77500,19500,3900,190,6.2,0,0,48.3,77777,9,999999999,140,0.0340,0,88,999.000,999.0,99.0 +1989,10,14,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.7,7.2,16,96800,631,1374,422,454,502,219,45800,49300,23100,4670,150,5.2,0,0,56.3,77777,9,999999999,140,0.0340,0,88,999.000,999.0,99.0 +1989,10,14,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.6,6.1,16,96700,385,1374,414,240,630,58,24600,54900,9100,1110,190,6.2,0,0,56.3,77777,9,999999999,130,0.0340,0,88,999.000,999.0,99.0 +1989,10,14,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.9,6.7,18,96700,111,1248,406,35,179,15,3400,10100,2400,290,190,5.2,0,0,56.3,77777,9,999999999,130,0.0340,0,88,999.000,999.0,99.0 +1989,10,14,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,6.1,20,96800,0,0,394,0,0,0,0,0,0,0,250,6.2,0,0,56.3,77777,9,999999999,130,0.0340,0,88,999.000,999.0,99.0 +1989,10,14,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,4.4,20,96800,0,0,383,0,0,0,0,0,0,0,250,5.2,0,0,56.3,77777,9,999999999,120,0.0340,0,88,999.000,999.0,99.0 +1989,10,14,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,4.4,21,96900,0,0,377,0,0,0,0,0,0,0,240,5.2,0,0,56.3,77777,9,999999999,120,0.0340,0,88,999.000,999.0,99.0 +1989,10,14,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,3.9,22,96900,0,0,371,0,0,0,0,0,0,0,240,2.1,0,0,56.3,77777,9,999999999,110,0.0340,0,88,999.000,999.0,99.0 +1989,10,14,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,3.9,23,96900,0,0,366,0,0,0,0,0,0,0,230,3.1,0,0,56.3,77777,9,999999999,110,0.0340,0,88,999.000,999.0,99.0 +1989,10,14,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,3.9,25,96900,0,0,360,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,110,0.0340,0,88,999.000,999.0,99.0 +1989,10,15,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,5.0,29,96900,0,0,356,0,0,0,0,0,0,0,70,2.1,0,0,56.3,77777,9,999999999,120,0.1560,0,88,999.000,999.0,99.0 +1989,10,15,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,5.6,32,96900,0,0,351,0,0,0,0,0,0,0,80,3.1,0,0,56.3,77777,9,999999999,130,0.1560,0,88,999.000,999.0,99.0 +1989,10,15,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,6.1,37,96900,0,0,344,0,0,0,0,0,0,0,60,3.1,0,0,56.3,77777,9,999999999,130,0.1560,0,88,999.000,999.0,99.0 +1989,10,15,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,5.6,35,96900,0,0,344,0,0,0,0,0,0,0,70,2.6,0,0,56.3,77777,9,999999999,130,0.1560,0,88,999.000,999.0,99.0 +1989,10,15,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,6.1,38,96900,0,0,342,0,0,0,0,0,0,0,80,3.1,0,0,56.3,77777,9,999999999,130,0.1560,0,88,999.000,999.0,99.0 +1989,10,15,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,6.1,39,96900,0,0,339,0,0,0,0,0,0,0,80,2.1,0,0,56.3,77777,9,999999999,130,0.1560,0,88,999.000,999.0,99.0 +1989,10,15,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,6.7,42,96900,25,607,337,13,75,4,800,3900,700,100,90,2.1,0,0,56.3,77777,9,999999999,140,0.1560,0,88,999.000,999.0,99.0 +1989,10,15,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,7.2,41,97000,258,1375,343,143,526,41,14500,39600,7100,760,60,3.1,0,0,72.4,77777,9,999999999,140,0.1560,0,88,999.000,999.0,99.0 +1989,10,15,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,8.3,38,97100,520,1375,355,343,749,55,36000,71000,9100,1200,120,2.1,0,0,72.4,77777,9,999999999,150,0.1560,0,88,999.000,999.0,99.0 +1989,10,15,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,9.4,39,97000,741,1375,361,402,588,81,42500,58400,10900,1870,110,2.1,0,0,72.4,77777,9,999999999,160,0.1560,0,88,999.000,999.0,99.0 +1989,10,15,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,5.6,25,97000,903,1375,370,667,855,99,68700,84900,12700,2190,90,1.5,0,0,72.4,77777,9,999999999,130,0.1560,0,88,999.000,999.0,99.0 +1989,10,15,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,3.9,21,97000,996,1375,374,766,892,113,78600,88900,14000,2660,90,1.5,0,0,72.4,77777,9,999999999,110,0.1560,0,88,999.000,999.0,99.0 +1989,10,15,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,3.3,19,96900,1013,1375,378,793,894,127,83400,90200,16800,3690,50,3.1,0,0,64.4,77777,9,999999999,110,0.1560,0,88,999.000,999.0,99.0 +1989,10,15,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,3.9,18,96800,954,1375,388,748,880,131,77800,88200,16400,3380,20,1.5,0,0,64.4,77777,9,999999999,110,0.1560,0,88,999.000,999.0,99.0 +1989,10,15,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,2.8,16,96700,821,1375,386,623,797,140,65100,80100,17100,3320,270,2.6,0,0,64.4,77777,9,999999999,100,0.1560,0,88,999.000,999.0,99.0 +1989,10,15,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,3.3,17,96700,625,1375,387,435,527,191,44400,51700,20800,3990,330,3.1,0,0,72.4,77777,9,999999999,110,0.1560,0,88,999.000,999.0,99.0 +1989,10,15,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,3.3,18,96700,379,1375,384,223,577,59,22800,50000,9000,1120,270,4.1,0,0,72.4,77777,9,999999999,110,0.1560,0,88,999.000,999.0,99.0 +1989,10,15,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,5.0,21,96700,106,1203,380,31,171,12,3000,9600,2100,230,300,3.1,0,0,56.3,77777,9,999999999,120,0.1560,0,88,999.000,999.0,99.0 +1989,10,15,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,6.1,25,96700,0,0,374,0,0,0,0,0,0,0,300,1.5,0,0,56.3,77777,9,999999999,130,0.1560,0,88,999.000,999.0,99.0 +1989,10,15,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,6.1,27,96800,0,0,368,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,130,0.1560,0,88,999.000,999.0,99.0 +1989,10,15,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,7.2,31,96800,0,0,364,0,0,0,0,0,0,0,230,2.1,0,0,56.3,77777,9,999999999,140,0.1560,0,88,999.000,999.0,99.0 +1989,10,15,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,6.7,31,96900,0,0,361,0,0,0,0,0,0,0,240,2.1,0,0,56.3,77777,9,999999999,140,0.1560,0,88,999.000,999.0,99.0 +1989,10,15,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,5.6,30,96900,0,0,357,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,130,0.1560,0,88,999.000,999.0,99.0 +1989,10,15,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,6.7,34,97000,0,0,353,0,0,0,0,0,0,0,290,1.5,0,0,56.3,77777,9,999999999,130,0.1560,0,88,999.000,999.0,99.0 +1989,10,16,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,4.4,33,97000,0,0,342,0,0,0,0,0,0,0,150,1.5,0,0,56.3,77777,9,999999999,120,0.1730,0,88,999.000,999.0,99.0 +1989,10,16,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,5.0,34,97000,0,0,343,0,0,0,0,0,0,0,90,2.1,0,0,56.3,77777,9,999999999,120,0.1730,0,88,999.000,999.0,99.0 +1989,10,16,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,6.1,39,97000,0,0,339,0,0,0,0,0,0,0,90,3.1,0,0,56.3,77777,9,999999999,130,0.1730,0,88,999.000,999.0,99.0 +1989,10,16,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,6.1,42,97000,0,0,334,0,0,0,0,0,0,0,80,3.1,0,0,56.3,77777,9,999999999,130,0.1730,0,88,999.000,999.0,99.0 +1989,10,16,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,5.6,43,97100,0,0,328,0,0,0,0,0,0,0,90,2.1,0,0,56.3,77777,9,999999999,130,0.1730,0,88,999.000,999.0,99.0 +1989,10,16,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,4.4,40,97100,0,0,327,0,0,0,0,0,0,0,100,2.6,0,0,56.3,77777,9,999999999,120,0.1730,0,88,999.000,999.0,99.0 +1989,10,16,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,3.9,39,97100,23,585,326,12,66,5,900,2800,800,100,100,3.1,0,0,56.3,77777,9,999999999,110,0.1730,0,88,999.000,999.0,99.0 +1989,10,16,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,3.9,35,97300,254,1376,334,133,481,42,13500,35900,6900,770,110,3.6,0,0,56.3,77777,9,999999999,110,0.1730,0,88,999.000,999.0,99.0 +1989,10,16,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,5.0,33,97300,516,1376,346,334,704,65,34400,66100,9500,1320,110,4.6,0,0,48.3,77777,9,999999999,120,0.1730,0,88,999.000,999.0,99.0 +1989,10,16,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,4.4,28,97300,736,1376,353,524,798,92,54600,78800,12300,2020,120,3.6,0,0,48.3,77777,9,999999999,120,0.1730,0,88,999.000,999.0,99.0 +1989,10,16,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,3.9,24,97300,898,1376,363,676,843,120,70400,84300,15200,2930,90,3.6,0,0,40.2,77777,9,999999999,110,0.1730,0,88,999.000,999.0,99.0 +1989,10,16,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,3.3,19,97300,991,1376,378,754,861,127,79000,86700,16400,3540,200,2.1,0,0,40.2,77777,9,999999999,110,0.1730,0,88,999.000,999.0,99.0 +1989,10,16,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,3.3,18,97200,1008,1376,384,766,854,134,80100,85900,17000,3790,40,2.1,0,0,40.2,77777,9,999999999,110,0.1730,0,88,999.000,999.0,99.0 +1989,10,16,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,2.2,15,97100,948,1376,388,710,815,142,73100,81300,16900,3510,300,2.6,0,0,40.2,77777,9,999999999,100,0.1730,0,88,999.000,999.0,99.0 +1989,10,16,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,1.1,14,97000,816,1376,387,593,748,144,61900,75000,17300,3380,310,2.1,0,0,40.2,77777,9,999999999,90,0.1730,0,88,999.000,999.0,99.0 +1989,10,16,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,1.1,14,97000,619,1376,387,410,499,181,42000,48900,19900,3750,300,2.1,0,0,40.2,77777,9,999999999,90,0.1730,0,88,999.000,999.0,99.0 +1989,10,16,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,1.1,14,97000,373,1376,387,202,509,61,20700,43700,8800,1150,330,2.6,0,0,40.2,77777,9,999999999,90,0.1730,0,88,999.000,999.0,99.0 +1989,10,16,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,2.2,17,97000,101,1181,377,29,144,13,2800,8000,2000,250,300,2.6,0,0,56.3,77777,9,999999999,100,0.1730,0,88,999.000,999.0,99.0 +1989,10,16,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,2.2,19,97100,0,0,369,0,0,0,0,0,0,0,280,2.1,0,0,56.3,77777,9,999999999,100,0.1730,0,88,999.000,999.0,99.0 +1989,10,16,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,2.2,21,97100,0,0,361,0,0,0,0,0,0,0,160,2.1,0,0,56.3,77777,9,999999999,100,0.1730,0,88,999.000,999.0,99.0 +1989,10,16,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,2.2,21,97100,0,0,361,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,100,0.1730,0,88,999.000,999.0,99.0 +1989,10,16,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,5.0,29,97200,0,0,356,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,120,0.1730,0,88,999.000,999.0,99.0 +1989,10,16,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,5.6,32,97200,0,0,351,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,130,0.1730,0,88,999.000,999.0,99.0 +1989,10,16,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,5.0,33,97200,0,0,346,0,0,0,0,0,0,0,140,2.1,0,0,56.3,77777,9,999999999,120,0.1730,0,88,999.000,999.0,99.0 +1989,10,17,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,4.4,32,97300,0,0,345,0,0,0,0,0,0,0,120,2.1,0,0,56.3,77777,9,999999999,120,0.1540,0,88,999.000,999.0,99.0 +1989,10,17,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,4.4,34,97300,0,0,340,0,0,0,0,0,0,0,120,2.1,0,0,56.3,77777,9,999999999,120,0.1540,0,88,999.000,999.0,99.0 +1989,10,17,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,3.3,35,97300,0,0,331,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,110,0.1540,0,88,999.000,999.0,99.0 +1989,10,17,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,5.0,40,97300,0,0,330,0,0,0,0,0,0,0,130,2.1,0,0,56.3,77777,9,999999999,120,0.1540,0,88,999.000,999.0,99.0 +1989,10,17,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,4.4,39,97300,0,0,330,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,120,0.1540,0,88,999.000,999.0,99.0 +1989,10,17,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,3.3,38,97400,0,0,323,0,0,0,0,0,0,0,90,3.1,0,0,56.3,77777,9,999999999,110,0.1540,0,88,999.000,999.0,99.0 +1989,10,17,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,2.8,37,97400,22,562,323,13,61,6,900,2500,800,120,100,4.1,0,0,72.4,77777,9,999999999,110,0.1540,0,88,999.000,999.0,99.0 +1989,10,17,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,2.2,30,97500,250,1377,335,139,472,51,13900,34500,7600,900,90,4.1,3,0,56.3,77777,9,999999999,100,0.1540,0,88,999.000,999.0,99.0 +1989,10,17,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,2.8,29,97600,512,1377,341,327,695,64,33700,65200,9400,1310,100,4.6,0,0,48.3,77777,9,999999999,110,0.1540,0,88,999.000,999.0,99.0 +1989,10,17,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,3.3,25,97500,732,1377,357,510,785,88,53400,77600,12000,1960,110,3.1,0,0,40.2,77777,9,999999999,110,0.1540,0,88,999.000,999.0,99.0 +1989,10,17,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,2.2,20,97500,893,1377,366,668,847,112,69900,84900,14700,2780,140,2.6,0,0,40.2,77777,9,999999999,100,0.1540,0,88,999.000,999.0,99.0 +1989,10,17,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,2.2,19,97500,986,1377,371,751,867,124,78900,87300,16200,3440,40,2.6,0,0,32.2,77777,9,999999999,100,0.1540,0,88,999.000,999.0,99.0 +1989,10,17,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,2.2,15,97400,1002,1377,391,776,883,125,81500,89000,16500,3570,230,2.1,0,0,24.1,77777,9,999999999,100,0.1540,0,88,999.000,999.0,99.0 +1989,10,17,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,1.1,14,97300,942,1377,389,733,880,123,76500,88300,15800,3180,210,1.5,0,0,24.1,77777,9,999999999,100,0.1540,0,88,999.000,999.0,99.0 +1989,10,17,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,1.7,14,97300,810,1377,393,608,799,131,63700,80400,16300,3090,130,1.5,0,0,24.1,77777,9,999999999,100,0.1540,0,88,999.000,999.0,99.0 +1989,10,17,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.9,1.1,12,97300,614,1377,398,428,555,177,44000,54300,19700,3650,250,4.1,0,0,40.2,77777,9,999999999,90,0.1540,0,88,999.000,999.0,99.0 +1989,10,17,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,1.1,13,97300,367,1377,392,206,549,55,21100,47100,8500,1050,310,2.1,0,0,40.2,77777,9,999999999,90,0.1540,0,88,999.000,999.0,99.0 +1989,10,17,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,1.1,15,97300,96,1159,384,25,148,8,2300,9100,1500,200,280,2.1,0,0,40.2,77777,9,999999999,100,0.1540,0,88,999.000,999.0,99.0 +1989,10,17,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,1.7,17,97400,0,0,376,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,100,0.1540,0,88,999.000,999.0,99.0 +1989,10,17,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,2.2,20,97400,0,0,366,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,100,0.1540,0,88,999.000,999.0,99.0 +1989,10,17,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,6.1,28,97500,0,0,365,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,130,0.1540,0,88,999.000,999.0,99.0 +1989,10,17,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,4.4,26,97600,0,0,361,0,0,0,0,0,0,0,90,3.1,0,0,24.1,77777,9,999999999,120,0.1540,0,88,999.000,999.0,99.0 +1989,10,17,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,1.1,21,97600,0,0,354,0,0,0,0,0,0,0,70,2.1,0,0,40.2,77777,9,999999999,100,0.1540,0,88,999.000,999.0,99.0 +1989,10,17,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,1.1,21,97600,0,0,354,0,0,0,0,0,0,0,80,2.1,0,0,56.3,77777,9,999999999,100,0.1540,0,88,999.000,999.0,99.0 +1989,10,18,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,3.3,29,97700,0,0,343,0,0,0,0,0,0,0,260,2.1,0,0,40.2,77777,9,999999999,110,0.0820,0,88,999.000,999.0,99.0 +1989,10,18,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,2.2,28,97700,0,0,340,0,0,0,0,0,0,0,280,2.1,0,0,40.2,77777,9,999999999,100,0.0820,0,88,999.000,999.0,99.0 +1989,10,18,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,2.8,30,97700,0,0,338,0,0,0,0,0,0,0,260,1.5,0,0,40.2,77777,9,999999999,110,0.0820,0,88,999.000,999.0,99.0 +1989,10,18,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,3.9,36,97800,0,0,331,0,0,0,0,0,0,0,250,2.1,0,0,40.2,77777,9,999999999,110,0.0820,0,88,999.000,999.0,99.0 +1989,10,18,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,2.2,32,97800,0,0,329,0,0,0,0,0,0,0,0,0.0,0,0,40.2,77777,9,999999999,100,0.0820,0,88,999.000,999.0,99.0 +1989,10,18,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,1.7,31,97900,0,0,329,0,0,0,0,0,0,0,10,1.5,0,0,40.2,77777,9,999999999,100,0.0820,0,88,999.000,999.0,99.0 +1989,10,18,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,-3.3,21,97900,20,540,326,12,104,0,0,0,0,0,70,2.1,0,0,40.2,77777,9,999999999,70,0.0820,0,88,999.000,999.0,99.0 +1989,10,18,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,-1.1,21,98000,246,1377,338,139,607,27,14400,47900,5800,640,30,2.1,0,0,56.3,77777,9,999999999,80,0.0820,0,88,999.000,999.0,99.0 +1989,10,18,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,-4.4,13,98000,508,1377,355,347,817,41,36300,76500,8000,1070,90,5.2,0,0,72.4,77777,9,999999999,70,0.0820,0,88,999.000,999.0,99.0 +1989,10,18,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,-1.7,14,98000,727,1377,366,535,859,75,55300,84100,10800,1640,60,7.2,0,0,56.3,77777,9,999999999,80,0.0820,0,88,999.000,999.0,99.0 +1989,10,18,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,1.7,16,98000,888,1377,379,685,894,101,70400,88700,13000,2140,110,4.1,0,0,56.3,77777,9,999999999,100,0.0820,0,88,999.000,999.0,99.0 +1989,10,18,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,1.7,15,98000,980,1377,385,720,860,101,74100,85700,12900,2500,140,4.1,0,0,56.3,77777,9,999999999,100,0.0820,0,88,999.000,999.0,99.0 +1989,10,18,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,1.1,14,97900,997,1377,387,784,917,112,80300,91400,14000,2650,110,4.1,0,0,56.3,77777,9,999999999,90,0.0820,0,88,999.000,999.0,99.0 +1989,10,18,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,-1.7,11,97800,937,1377,386,760,938,114,77800,93200,14200,2360,80,4.6,0,0,56.3,77777,9,999999999,80,0.0820,0,88,999.000,999.0,99.0 +1989,10,18,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,-1.1,11,97700,804,1377,389,634,871,118,64900,86000,14500,2530,90,3.1,0,0,56.3,77777,9,999999999,80,0.0820,0,88,999.000,999.0,99.0 +1989,10,18,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,-2.8,10,97600,608,1377,387,446,622,167,46000,60800,19100,3410,110,5.2,0,0,56.3,77777,9,999999999,70,0.0820,0,88,999.000,999.0,99.0 +1989,10,18,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,-3.9,9,97600,362,1377,382,226,677,44,23100,58700,7700,900,100,4.6,0,0,72.4,77777,9,999999999,70,0.0820,0,88,999.000,999.0,99.0 +1989,10,18,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,-3.9,10,97600,91,1136,377,28,212,4,2400,13600,1300,150,100,3.6,0,0,72.4,77777,9,999999999,70,0.0820,0,88,999.000,999.0,99.0 +1989,10,18,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,1.7,17,97700,0,0,376,0,0,0,0,0,0,0,120,3.6,0,0,56.3,77777,9,999999999,100,0.0820,0,88,999.000,999.0,99.0 +1989,10,18,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,2.2,20,97700,0,0,366,0,0,0,0,0,0,0,120,3.6,0,0,56.3,77777,9,999999999,100,0.0820,0,88,999.000,999.0,99.0 +1989,10,18,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,2.8,22,97800,0,0,361,0,0,0,0,0,0,0,110,5.7,0,0,56.3,77777,9,999999999,110,0.0820,0,88,999.000,999.0,99.0 +1989,10,18,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,3.3,24,97800,0,0,360,0,0,0,0,0,0,0,70,4.6,0,0,56.3,77777,9,999999999,110,0.0820,0,88,999.000,999.0,99.0 +1989,10,18,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,3.3,25,97900,0,0,354,0,0,0,0,0,0,0,90,4.1,0,0,56.3,77777,9,999999999,110,0.0820,0,88,999.000,999.0,99.0 +1989,10,18,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,3.9,27,97900,0,0,352,0,0,0,0,0,0,0,90,4.1,0,0,56.3,77777,9,999999999,110,0.0820,0,88,999.000,999.0,99.0 +1989,10,19,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,4.4,32,97900,0,0,345,0,0,0,0,0,0,0,80,4.1,0,0,56.3,77777,9,999999999,120,0.0680,0,88,999.000,999.0,99.0 +1989,10,19,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,3.9,30,98000,0,0,344,0,0,0,0,0,0,0,90,3.1,0,0,56.3,77777,9,999999999,110,0.0680,0,88,999.000,999.0,99.0 +1989,10,19,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,3.9,31,98000,0,0,342,0,0,0,0,0,0,0,120,3.1,0,0,56.3,77777,9,999999999,110,0.0680,0,88,999.000,999.0,99.0 +1989,10,19,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,3.3,31,98000,0,0,338,0,0,0,0,0,0,0,80,4.6,0,0,56.3,77777,9,999999999,110,0.0680,0,88,999.000,999.0,99.0 +1989,10,19,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,3.3,32,98000,0,0,336,0,0,0,0,0,0,0,120,3.6,0,0,56.3,77777,9,999999999,110,0.0680,0,88,999.000,999.0,99.0 +1989,10,19,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,2.8,30,98000,0,0,338,0,0,0,0,0,0,0,90,5.2,0,0,56.3,77777,9,999999999,110,0.0680,0,88,999.000,999.0,99.0 +1989,10,19,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,2.2,30,98100,19,517,335,10,41,5,0,0,0,0,90,4.6,1,0,56.3,77777,9,999999999,100,0.0680,0,88,999.000,999.0,99.0 +1989,10,19,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,2.8,30,98200,242,1378,338,129,451,53,13400,32300,7700,920,100,5.7,0,0,56.3,77777,9,999999999,110,0.0680,0,88,999.000,999.0,99.0 +1989,10,19,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,2.2,26,98200,503,1378,345,334,695,85,35400,64700,11700,1650,90,7.2,0,0,40.2,77777,9,999999999,100,0.0680,0,88,999.000,999.0,99.0 +1989,10,19,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,2.2,24,98200,722,1378,352,512,745,126,54300,73800,15400,2730,80,6.2,3,0,40.2,77777,9,999999999,100,0.0680,0,88,999.000,999.0,99.0 +1989,10,19,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,1.7,20,98100,883,1378,367,682,809,161,71600,81500,19200,4030,90,6.7,6,1,40.2,77777,9,999999999,100,0.0680,0,88,999.000,999.0,99.0 +1989,10,19,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,1.7,19,98000,975,1378,372,778,845,174,81800,85800,20900,4940,80,6.2,9,1,40.2,77777,9,999999999,100,0.0680,0,88,999.000,999.0,99.0 +1989,10,19,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,1.7,18,97900,991,1378,378,725,682,226,74600,68400,25300,6370,70,5.2,8,1,40.2,77777,9,999999999,100,0.0680,0,88,999.000,999.0,99.0 +1989,10,19,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,1.7,17,97800,931,1378,389,662,654,209,67700,65400,23400,5390,60,5.2,7,2,40.2,77777,9,999999999,100,0.0680,0,88,999.000,999.0,99.0 +1989,10,19,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,1.7,17,97800,798,1378,392,507,433,250,53800,45800,27200,6140,60,5.2,7,3,40.2,77777,9,999999999,100,0.0680,0,88,999.000,999.0,99.0 +1989,10,19,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,1.7,16,97700,602,1378,392,401,410,214,41300,41300,23200,4830,70,3.6,7,2,40.2,77777,9,999999999,100,0.0680,0,88,999.000,999.0,99.0 +1989,10,19,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,1.7,16,97700,356,1378,392,150,265,76,15300,22200,9500,1390,60,3.6,7,2,40.2,77777,9,999999999,100,0.0680,0,88,999.000,999.0,99.0 +1989,10,19,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,1.1,17,97700,87,1114,385,21,40,16,2100,1700,2000,260,80,4.1,6,2,40.2,77777,9,999999999,100,0.0680,0,88,999.000,999.0,99.0 +1989,10,19,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,2.2,19,97700,0,0,376,0,0,0,0,0,0,0,100,2.6,6,1,40.2,77777,9,999999999,100,0.0680,0,88,999.000,999.0,99.0 +1989,10,19,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,2.8,21,97700,0,0,379,0,0,0,0,0,0,0,80,2.6,7,2,40.2,77777,9,999999999,110,0.0680,0,88,999.000,999.0,99.0 +1989,10,19,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,1.7,21,97800,0,0,373,0,0,0,0,0,0,0,70,3.6,7,3,40.2,77777,9,999999999,100,0.0680,0,88,999.000,999.0,99.0 +1989,10,19,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,2.2,24,97800,0,0,368,0,0,0,0,0,0,0,50,2.1,7,3,40.2,77777,9,999999999,100,0.0680,0,88,999.000,999.0,99.0 +1989,10,19,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,1.7,22,97800,0,0,366,0,0,0,0,0,0,0,90,4.1,6,2,40.2,77777,9,999999999,100,0.0680,0,88,999.000,999.0,99.0 +1989,10,19,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,1.7,23,97800,0,0,370,0,0,0,0,0,0,0,80,5.2,7,4,40.2,7620,9,999999999,100,0.0680,0,88,999.000,999.0,99.0 +1989,10,20,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,1.7,23,97800,0,0,376,0,0,0,0,0,0,0,90,4.6,9,6,48.3,7620,9,999999999,100,0.0830,0,88,999.000,999.0,99.0 +1989,10,20,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,2.2,24,97800,0,0,385,0,0,0,0,0,0,0,80,4.1,9,8,48.3,3960,9,999999999,100,0.0830,0,88,999.000,999.0,99.0 +1989,10,20,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,2.2,25,97700,0,0,376,0,0,0,0,0,0,0,90,3.6,9,7,48.3,3960,9,999999999,100,0.0830,0,88,999.000,999.0,99.0 +1989,10,20,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,2.2,26,97700,0,0,365,0,0,0,0,0,0,0,90,3.1,10,5,48.3,77777,9,999999999,100,0.0830,0,88,999.000,999.0,99.0 +1989,10,20,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,1.7,24,97800,0,0,365,0,0,0,0,0,0,0,130,2.6,8,4,48.3,77777,9,999999999,100,0.0830,0,88,999.000,999.0,99.0 +1989,10,20,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,2.8,28,97800,0,0,363,0,0,0,0,0,0,0,90,4.6,6,5,48.3,7620,9,999999999,110,0.0830,0,88,999.000,999.0,99.0 +1989,10,20,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,2.8,27,97900,18,517,380,3,2,3,0,0,0,0,130,2.6,10,8,72.4,3050,9,999999999,110,0.0830,0,88,999.000,999.0,99.0 +1989,10,20,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,3.9,28,97900,238,1379,392,55,3,53,6000,100,6000,1860,80,3.6,10,9,72.4,2440,9,999999999,110,0.0830,0,88,999.000,999.0,99.0 +1989,10,20,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,4.4,29,97900,499,1379,393,94,2,90,10600,100,10500,3740,90,4.1,10,9,72.4,2740,9,999999999,120,0.0830,0,88,999.000,999.0,99.0 +1989,10,20,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,3.9,26,98000,718,1379,393,284,89,233,30700,8900,26000,7010,100,5.2,9,8,72.4,7620,9,999999999,120,0.0830,0,88,999.000,999.0,99.0 +1989,10,20,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,6.1,26,98000,878,1379,407,561,274,382,59800,28600,41500,10740,110,5.2,9,8,72.4,7620,9,999999999,130,0.0830,0,88,999.000,999.0,99.0 +1989,10,20,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,7.8,27,97900,970,1379,405,412,107,336,45300,11000,37500,11790,130,5.2,9,6,72.4,7620,9,999999999,140,0.0830,0,88,999.000,999.0,99.0 +1989,10,20,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,8.9,27,97800,986,1379,412,536,246,358,58200,26000,39600,11090,140,5.7,7,5,72.4,7620,9,999999999,160,0.0830,0,88,999.000,999.0,99.0 +1989,10,20,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,10.6,30,97700,925,1379,414,705,629,278,73400,64900,29700,7500,130,7.2,7,5,72.4,7620,9,999999999,170,0.0830,0,88,999.000,999.0,99.0 +1989,10,20,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,11.1,32,97700,792,1379,401,522,580,175,54700,59300,20500,3960,130,6.7,2,2,48.3,77777,9,999999999,180,0.0830,0,88,999.000,999.0,99.0 +1989,10,20,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,11.1,33,97700,596,1379,399,389,454,182,38900,44100,19800,3740,120,6.7,2,2,56.3,77777,9,999999999,180,0.0830,0,88,999.000,999.0,99.0 +1989,10,20,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,11.7,36,97600,350,1379,391,190,481,58,18700,40400,8400,1080,120,6.2,1,1,56.3,77777,9,999999999,190,0.0830,0,88,999.000,999.0,99.0 +1989,10,20,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,11.7,39,97600,83,1069,383,21,71,13,2100,3200,1800,220,120,5.2,1,1,56.3,77777,9,999999999,190,0.0830,0,88,999.000,999.0,99.0 +1989,10,20,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,10.6,39,97600,0,0,376,0,0,0,0,0,0,0,110,5.7,1,1,56.3,77777,9,999999999,170,0.0830,0,88,999.000,999.0,99.0 +1989,10,20,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,10.0,40,97700,0,0,374,0,0,0,0,0,0,0,120,6.2,2,2,56.3,77777,9,999999999,170,0.0830,0,88,999.000,999.0,99.0 +1989,10,20,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,10.6,43,97700,0,0,372,0,0,0,0,0,0,0,130,6.7,2,2,56.3,77777,9,999999999,170,0.0830,0,88,999.000,999.0,99.0 +1989,10,20,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,10.6,45,97800,0,0,364,0,0,0,0,0,0,0,130,6.2,1,1,56.3,77777,9,999999999,180,0.0830,0,88,999.000,999.0,99.0 +1989,10,20,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,10.6,45,97800,0,0,379,0,0,0,0,0,0,0,100,5.2,5,5,56.3,77777,9,999999999,180,0.0830,0,88,999.000,999.0,99.0 +1989,10,20,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,10.6,48,97800,0,0,373,0,0,0,0,0,0,0,120,3.6,5,5,56.3,77777,9,999999999,180,0.0830,0,88,999.000,999.0,99.0 +1989,10,21,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,10.6,49,97800,0,0,371,0,0,0,0,0,0,0,110,4.6,5,5,56.3,77777,9,999999999,170,0.0830,0,88,999.000,999.0,99.0 +1989,10,21,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,10.6,51,97800,0,0,368,0,0,0,0,0,0,0,110,3.1,5,5,56.3,77777,9,999999999,170,0.0830,0,88,999.000,999.0,99.0 +1989,10,21,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,11.1,55,97700,0,0,363,0,0,0,0,0,0,0,90,4.1,7,4,56.3,4880,9,999999999,180,0.0830,0,88,999.000,999.0,99.0 +1989,10,21,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,11.1,57,97700,0,0,360,0,0,0,0,0,0,0,100,3.1,5,4,56.3,77777,9,999999999,180,0.0830,0,88,999.000,999.0,99.0 +1989,10,21,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,10.6,55,97700,0,0,359,0,0,0,0,0,0,0,110,3.6,4,4,56.3,77777,9,999999999,180,0.0830,0,88,999.000,999.0,99.0 +1989,10,21,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,10.0,53,97800,0,0,365,0,0,0,0,0,0,0,110,4.6,7,6,56.3,3660,9,999999999,170,0.0830,0,88,999.000,999.0,99.0 +1989,10,21,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,10.6,57,97800,16,494,362,11,10,10,0,0,0,0,110,4.1,9,6,72.4,2440,9,999999999,180,0.0830,0,88,999.000,999.0,99.0 +1989,10,21,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,10.6,51,97800,233,1380,375,143,269,88,13700,18200,10600,1810,110,2.6,10,7,80.5,7620,9,999999999,170,0.0830,0,88,999.000,999.0,99.0 +1989,10,21,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,10.6,51,97900,494,1380,389,159,3,150,16900,200,16800,5370,120,5.7,10,9,80.5,3050,9,999999999,170,0.0830,0,88,999.000,999.0,99.0 +1989,10,21,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,10.6,46,97800,713,1380,390,259,55,224,27700,5500,24900,6770,100,6.2,10,8,80.5,3050,9,999999999,170,0.0830,0,88,999.000,999.0,99.0 +1989,10,21,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,11.1,41,97800,873,1380,399,538,287,347,57100,30000,38100,9710,130,4.1,9,7,80.5,3050,9,999999999,180,0.0830,0,88,999.000,999.0,99.0 +1989,10,21,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,12.2,41,97800,965,1380,422,493,163,377,53200,17200,41200,11430,130,4.1,10,9,72.4,3050,9,999999999,190,0.0830,0,88,999.000,999.0,99.0 +1989,10,21,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,12.8,40,97600,981,1380,413,475,219,320,52200,23200,35600,9850,110,3.6,9,7,72.4,3050,9,999999999,200,0.0830,0,88,999.000,999.0,99.0 +1989,10,21,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,11.7,36,97500,920,1380,430,314,159,215,35900,16900,24600,6240,140,3.1,10,9,72.4,1830,9,999999999,190,0.0830,0,88,999.000,999.0,99.0 +1989,10,21,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,12.8,41,97500,787,1380,438,164,9,159,19300,700,18900,7190,210,3.1,10,10,32.2,1520,9,999999999,200,0.0370,0,88,999.000,999.0,99.0 +1989,10,21,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,17.8,90,97800,590,1380,400,113,11,108,13200,700,12900,4640,310,5.2,10,10,16.1,1520,9,999999999,270,0.0370,0,88,999.000,999.0,99.0 +1989,10,21,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,17.8,97,97800,344,1380,394,23,1,24,3000,0,3000,1050,330,2.6,10,10,24.1,3050,9,999999999,270,0.0830,0,88,999.000,999.0,99.0 +1989,10,21,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,16.7,84,97800,79,1046,374,24,73,16,2400,3300,2100,270,90,3.6,8,7,40.2,3050,9,999999999,250,0.0830,0,88,999.000,999.0,99.0 +1989,10,21,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,17.2,90,97800,0,0,364,0,0,0,0,0,0,0,100,6.2,6,5,48.3,3050,9,999999999,260,0.0830,0,88,999.000,999.0,99.0 +1989,10,21,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,17.2,90,97900,0,0,364,0,0,0,0,0,0,0,140,2.1,6,5,40.2,7620,9,999999999,260,0.0830,0,88,999.000,999.0,99.0 +1989,10,21,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,17.2,90,97900,0,0,355,0,0,0,0,0,0,0,110,4.1,3,2,40.2,77777,9,999999999,260,0.0830,0,88,999.000,999.0,99.0 +1989,10,21,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,16.7,90,98000,0,0,347,0,0,0,0,0,0,0,110,2.1,1,1,40.2,77777,9,999999999,250,0.0830,0,88,999.000,999.0,99.0 +1989,10,21,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,16.7,87,98000,0,0,350,0,0,0,0,0,0,0,100,3.1,1,1,40.2,77777,9,999999999,250,0.0830,0,88,999.000,999.0,99.0 +1989,10,21,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,17.2,90,98000,0,0,355,0,0,0,0,0,0,0,40,2.1,2,2,40.2,77777,9,999999999,260,0.0830,0,88,999.000,999.0,99.0 +1989,10,22,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,16.7,90,98000,0,0,340,0,0,0,0,0,0,0,90,3.1,0,0,40.2,77777,9,999999999,250,0.1080,0,88,999.000,999.0,99.0 +1989,10,22,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,16.7,93,98000,0,0,338,0,0,0,0,0,0,0,0,0.0,0,0,32.2,77777,9,999999999,250,0.1080,0,88,999.000,999.0,99.0 +1989,10,22,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,16.7,93,98000,0,0,338,0,0,0,0,0,0,0,70,2.1,0,0,32.2,77777,9,999999999,250,0.1080,0,88,999.000,999.0,99.0 +1989,10,22,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,16.7,93,98000,0,0,371,0,0,0,0,0,0,0,100,2.1,9,8,24.1,1830,9,999999999,250,0.1080,0,88,999.000,999.0,99.0 +1989,10,22,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,16.1,90,98000,0,0,349,0,0,0,0,0,0,0,70,2.1,2,2,40.2,77777,9,999999999,250,0.1080,0,88,999.000,999.0,99.0 +1989,10,22,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,16.1,90,98100,0,0,355,0,0,0,0,0,0,0,130,2.1,4,4,40.2,77777,9,999999999,250,0.1080,0,88,999.000,999.0,99.0 +1989,10,22,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,16.1,90,98100,15,472,361,9,49,4,0,0,0,0,110,2.1,6,6,72.4,2740,9,999999999,250,0.1080,0,88,999.000,999.0,99.0 +1989,10,22,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,16.1,84,98100,229,1381,360,115,407,46,11600,28700,6800,810,0,0.0,4,4,72.4,77777,9,999999999,250,0.1080,0,88,999.000,999.0,99.0 +1989,10,22,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,16.1,73,98200,490,1381,360,312,755,37,32500,70300,7400,1000,70,3.1,1,1,72.4,77777,9,999999999,250,0.1080,0,88,999.000,999.0,99.0 +1989,10,22,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,16.1,66,98200,708,1381,373,511,854,62,52700,83500,9700,1510,80,2.6,2,2,72.4,77777,9,999999999,250,0.1080,0,88,999.000,999.0,99.0 +1989,10,22,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,15.6,58,98200,868,1381,388,631,668,199,64100,66400,22200,4710,60,2.6,4,4,72.4,77777,9,999999999,240,0.1080,0,88,999.000,999.0,99.0 +1989,10,22,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,15.6,54,98100,959,1381,391,702,832,116,73800,83800,15400,3130,360,2.1,3,3,72.4,77777,9,999999999,240,0.1080,0,88,999.000,999.0,99.0 +1989,10,22,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,15.6,51,98100,975,1381,393,747,912,97,77100,90900,12700,2430,360,1.5,2,2,72.4,77777,9,999999999,240,0.1080,0,88,999.000,999.0,99.0 +1989,10,22,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,14.4,44,98000,914,1381,392,698,901,96,72100,89500,12600,2200,90,2.6,1,1,72.4,77777,9,999999999,220,0.1080,0,88,999.000,999.0,99.0 +1989,10,22,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,13.3,38,98000,781,1381,396,581,851,96,60900,84500,12900,2180,130,3.1,1,1,72.4,77777,9,999999999,209,0.1080,0,88,999.000,999.0,99.0 +1989,10,22,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,13.9,40,98000,585,1381,389,397,573,150,41200,55600,17500,3000,160,3.6,0,0,72.4,77777,9,999999999,220,0.1080,0,88,999.000,999.0,99.0 +1989,10,22,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,12.8,40,97900,339,1381,382,190,619,34,19700,53200,6600,820,120,2.1,0,0,72.4,77777,9,999999999,200,0.1080,0,88,999.000,999.0,99.0 +1989,10,22,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,13.3,44,97900,75,1024,377,20,167,2,1700,10400,900,80,160,2.1,0,0,56.3,77777,9,999999999,209,0.1080,0,88,999.000,999.0,99.0 +1989,10,22,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,13.3,45,97900,0,0,374,0,0,0,0,0,0,0,190,1.5,0,0,56.3,77777,9,999999999,209,0.1080,0,88,999.000,999.0,99.0 +1989,10,22,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,14.4,52,98000,0,0,370,0,0,0,0,0,0,0,250,2.1,0,0,56.3,77777,9,999999999,220,0.1080,0,88,999.000,999.0,99.0 +1989,10,22,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,15.0,56,98000,0,0,368,0,0,0,0,0,0,0,350,2.1,0,0,56.3,77777,9,999999999,230,0.1080,0,88,999.000,999.0,99.0 +1989,10,22,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,15.0,58,98000,0,0,365,0,0,0,0,0,0,0,350,2.6,0,0,56.3,77777,9,999999999,230,0.1080,0,88,999.000,999.0,99.0 +1989,10,22,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,15.0,62,98000,0,0,360,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,230,0.1080,0,88,999.000,999.0,99.0 +1989,10,22,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,15.6,66,98000,0,0,358,0,0,0,0,0,0,0,130,2.1,0,0,56.3,77777,9,999999999,240,0.1080,0,88,999.000,999.0,99.0 +1989,10,23,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,15.6,68,98000,0,0,355,0,0,0,0,0,0,0,110,2.1,0,0,56.3,77777,9,999999999,240,0.0960,0,88,999.000,999.0,99.0 +1989,10,23,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,15.6,71,98000,0,0,353,0,0,0,0,0,0,0,120,2.1,0,0,56.3,77777,9,999999999,240,0.0960,0,88,999.000,999.0,99.0 +1989,10,23,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,15.0,71,98000,0,0,349,0,0,0,0,0,0,0,120,2.1,0,0,56.3,77777,9,999999999,230,0.0960,0,88,999.000,999.0,99.0 +1989,10,23,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,15.6,76,98000,0,0,354,0,0,0,0,0,0,0,90,1.5,1,1,56.3,77777,9,999999999,240,0.0960,0,88,999.000,999.0,99.0 +1989,10,23,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,15.6,81,98000,0,0,342,0,0,0,0,0,0,0,100,2.6,0,0,56.3,77777,9,999999999,240,0.0960,0,88,999.000,999.0,99.0 +1989,10,23,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,13.9,70,98000,0,0,343,0,0,0,0,0,0,0,70,3.1,0,0,56.3,77777,9,999999999,209,0.0960,0,88,999.000,999.0,99.0 +1989,10,23,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,13.9,70,98000,14,449,343,8,80,0,0,0,0,0,90,2.6,0,0,80.5,77777,9,999999999,209,0.0960,0,88,999.000,999.0,99.0 +1989,10,23,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,13.9,64,98000,225,1381,351,137,578,40,13400,42100,6500,680,120,3.6,0,0,80.5,77777,9,999999999,220,0.0960,0,88,999.000,999.0,99.0 +1989,10,23,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,14.4,62,98100,485,1381,356,309,761,37,32400,70700,7500,1000,110,4.6,0,0,80.5,77777,9,999999999,220,0.0960,0,88,999.000,999.0,99.0 +1989,10,23,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,14.4,54,98100,703,1381,367,493,852,53,51500,83300,8900,1400,120,3.6,0,0,80.5,77777,9,999999999,220,0.0960,0,88,999.000,999.0,99.0 +1989,10,23,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,14.4,50,98000,863,1381,373,636,891,72,66000,88400,10600,1860,70,2.6,0,0,80.5,77777,9,999999999,220,0.0960,0,88,999.000,999.0,99.0 +1989,10,23,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,14.4,43,98000,954,1381,387,728,927,81,75500,92400,11400,2190,190,2.1,0,0,72.4,77777,9,999999999,220,0.0960,0,88,999.000,999.0,99.0 +1989,10,23,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,14.4,41,97900,970,1381,390,743,926,85,76800,92400,11700,2290,40,1.5,0,0,72.4,77777,9,999999999,220,0.0960,0,88,999.000,999.0,99.0 +1989,10,23,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,13.9,39,97800,909,1381,392,688,880,101,70600,87400,13000,2210,50,2.1,0,0,72.4,77777,9,999999999,220,0.0960,0,88,999.000,999.0,99.0 +1989,10,23,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,13.3,35,97800,775,1381,397,560,796,107,57700,78600,13400,2300,230,3.6,0,0,72.4,77777,9,999999999,209,0.0960,0,88,999.000,999.0,99.0 +1989,10,23,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,12.8,34,97800,579,1381,397,380,532,152,39200,51500,17500,3040,240,3.6,0,0,80.5,77777,9,999999999,200,0.0960,0,88,999.000,999.0,99.0 +1989,10,23,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,11.7,32,97700,333,1381,392,181,574,38,18500,48700,6700,800,180,1.5,0,0,80.5,77777,9,999999999,180,0.0960,0,88,999.000,999.0,99.0 +1989,10,23,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,12.8,38,97700,71,1002,385,18,146,2,1400,9100,800,80,300,2.6,0,0,56.3,77777,9,999999999,200,0.0960,0,88,999.000,999.0,99.0 +1989,10,23,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,13.3,42,97700,0,0,380,0,0,0,0,0,0,0,290,2.1,0,0,56.3,77777,9,999999999,200,0.0960,0,88,999.000,999.0,99.0 +1989,10,23,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,12.8,45,97700,0,0,371,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,200,0.0960,0,88,999.000,999.0,99.0 +1989,10,23,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,13.9,52,97700,0,0,367,0,0,0,0,0,0,0,230,2.1,0,0,56.3,77777,9,999999999,209,0.0960,0,88,999.000,999.0,99.0 +1989,10,23,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,13.3,52,97800,0,0,363,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,209,0.0960,0,88,999.000,999.0,99.0 +1989,10,23,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,13.3,55,97800,0,0,358,0,0,0,0,0,0,0,260,2.1,0,0,56.3,77777,9,999999999,209,0.0960,0,88,999.000,999.0,99.0 +1989,10,23,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,13.3,57,97700,0,0,355,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,209,0.0960,0,88,999.000,999.0,99.0 +1989,10,24,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,13.3,61,97700,0,0,350,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,209,0.0660,0,88,999.000,999.0,99.0 +1989,10,24,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,14.4,68,97700,0,0,349,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,220,0.0660,0,88,999.000,999.0,99.0 +1989,10,24,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,14.4,68,97700,0,0,349,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,220,0.0660,0,88,999.000,999.0,99.0 +1989,10,24,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,13.9,73,97700,0,0,340,0,0,0,0,0,0,0,200,1.5,0,0,56.3,77777,9,999999999,209,0.0660,0,88,999.000,999.0,99.0 +1989,10,24,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,13.9,76,97700,0,0,337,0,0,0,0,0,0,0,140,2.1,0,0,56.3,77777,9,999999999,220,0.0660,0,88,999.000,999.0,99.0 +1989,10,24,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,12.8,70,97700,0,0,336,0,0,0,0,0,0,0,140,2.1,0,0,56.3,77777,9,999999999,200,0.0660,0,88,999.000,999.0,99.0 +1989,10,24,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,12.2,68,97700,13,426,336,8,85,0,0,0,0,0,90,3.1,0,0,56.3,77777,9,999999999,190,0.0660,0,88,999.000,999.0,99.0 +1989,10,24,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,12.2,61,97700,221,1382,344,136,590,39,13300,42700,6400,670,70,3.1,0,0,56.3,77777,9,999999999,190,0.0660,0,88,999.000,999.0,99.0 +1989,10,24,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,12.2,53,97700,481,1382,354,323,804,40,34000,74600,7900,1030,100,4.1,0,0,56.3,77777,9,999999999,190,0.0660,0,88,999.000,999.0,99.0 +1989,10,24,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,12.2,48,97700,699,1382,362,506,898,48,53300,87800,8700,1320,80,3.6,0,0,40.2,77777,9,999999999,190,0.0660,0,88,999.000,999.0,99.0 +1989,10,24,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,12.2,41,97700,858,1382,376,643,932,58,67300,92600,9600,1650,50,2.1,0,0,40.2,77777,9,999999999,190,0.0660,0,88,999.000,999.0,99.0 +1989,10,24,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,12.2,37,97600,949,1382,384,729,946,72,75700,94400,10700,2040,330,1.5,0,0,40.2,77777,9,999999999,190,0.0660,0,88,999.000,999.0,99.0 +1989,10,24,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,11.7,32,97500,964,1382,392,746,941,80,77100,93900,11400,2200,230,1.5,0,0,56.3,77777,9,999999999,180,0.0660,0,88,999.000,999.0,99.0 +1989,10,24,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,10.0,27,97400,903,1382,396,694,917,85,71500,91100,11700,2090,0,0.0,0,0,56.3,77777,9,999999999,170,0.0660,0,88,999.000,999.0,99.0 +1989,10,24,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,10.0,26,97300,770,1382,399,579,862,89,60400,85700,12500,2050,0,0.0,0,0,72.4,77777,9,999999999,170,0.0660,0,88,999.000,999.0,99.0 +1989,10,24,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,10.0,26,97200,573,1382,399,384,555,147,39500,53600,17200,2930,270,2.6,2,0,72.4,77777,9,999999999,170,0.0660,0,88,999.000,999.0,99.0 +1989,10,24,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,10.6,30,97200,328,1382,391,158,400,59,15900,32700,8100,1080,270,4.6,5,0,72.4,77777,9,999999999,170,0.0660,0,88,999.000,999.0,99.0 +1989,10,24,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,11.1,34,97200,67,979,390,13,52,7,1300,2200,1100,120,260,4.6,5,1,72.4,77777,9,999999999,180,0.0660,0,88,999.000,999.0,99.0 +1989,10,24,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,9.4,33,97200,0,0,382,0,0,0,0,0,0,0,260,3.1,5,1,56.3,77777,9,999999999,160,0.0660,0,88,999.000,999.0,99.0 +1989,10,24,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,11.7,42,97200,0,0,382,0,0,0,0,0,0,0,230,2.6,6,2,56.3,77777,9,999999999,190,0.0660,0,88,999.000,999.0,99.0 +1989,10,24,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,10.6,42,97200,0,0,370,0,0,0,0,0,0,0,300,2.1,6,1,56.3,77777,9,999999999,170,0.0660,0,88,999.000,999.0,99.0 +1989,10,24,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,11.7,48,97200,0,0,366,0,0,0,0,0,0,0,0,0.0,6,1,56.3,77777,9,999999999,190,0.0660,0,88,999.000,999.0,99.0 +1989,10,24,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,12.2,52,97200,0,0,364,0,0,0,0,0,0,0,0,0.0,6,1,56.3,77777,9,999999999,190,0.0660,0,88,999.000,999.0,99.0 +1989,10,24,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,12.2,53,97200,0,0,361,0,0,0,0,0,0,0,120,2.1,6,1,56.3,77777,9,999999999,190,0.0660,0,88,999.000,999.0,99.0 +1989,10,25,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,11.7,53,97200,0,0,358,0,0,0,0,0,0,0,120,2.6,5,1,56.3,77777,9,999999999,190,0.0810,0,88,999.000,999.0,99.0 +1989,10,25,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,11.7,57,97200,0,0,357,0,0,0,0,0,0,0,90,2.1,6,2,56.3,77777,9,999999999,190,0.0810,0,88,999.000,999.0,99.0 +1989,10,25,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,11.7,59,97100,0,0,354,0,0,0,0,0,0,0,90,2.6,6,2,56.3,77777,9,999999999,190,0.0810,0,88,999.000,999.0,99.0 +1989,10,25,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,11.1,59,97100,0,0,346,0,0,0,0,0,0,0,90,4.1,6,1,56.3,77777,9,999999999,180,0.0810,0,88,999.000,999.0,99.0 +1989,10,25,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,11.7,65,97100,0,0,346,0,0,0,0,0,0,0,80,3.1,6,2,56.3,77777,9,999999999,180,0.0810,0,88,999.000,999.0,99.0 +1989,10,25,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,11.1,65,97100,0,0,343,0,0,0,0,0,0,0,80,2.6,6,2,56.3,77777,9,999999999,180,0.0810,0,88,999.000,999.0,99.0 +1989,10,25,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,10.6,63,97100,11,403,349,8,46,2,0,0,0,0,100,3.6,9,4,56.3,77777,9,999999999,170,0.0810,0,88,999.000,999.0,99.0 +1989,10,25,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,11.1,63,97200,217,1383,354,121,184,91,12200,11900,10300,1930,80,3.1,9,5,56.3,4570,9,999999999,180,0.0810,0,88,999.000,999.0,99.0 +1989,10,25,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,10.6,48,97300,476,1383,367,244,397,105,25600,36700,12900,1980,70,3.1,7,3,56.3,77777,9,999999999,170,0.0570,0,88,999.000,999.0,99.0 +1989,10,25,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,10.6,43,97300,694,1383,367,426,624,107,44500,61800,13300,2310,360,3.6,6,1,56.3,77777,9,999999999,170,0.0810,0,88,999.000,999.0,99.0 +1989,10,25,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,9.4,37,97300,853,1383,380,472,402,218,49500,41300,23900,5300,0,0.0,7,3,56.3,77777,9,999999999,160,0.0810,0,88,999.000,999.0,99.0 +1989,10,25,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,7.2,28,97200,944,1383,394,605,361,355,64100,38700,37600,10290,250,2.6,8,5,32.2,7620,9,999999999,140,0.0810,0,88,999.000,999.0,99.0 +1989,10,25,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,8.3,29,97100,959,1383,407,388,93,327,43100,9500,36500,11380,200,3.1,10,7,32.2,3660,9,999999999,150,0.0810,0,88,999.000,999.0,99.0 +1989,10,25,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,7.8,29,97000,898,1383,410,273,5,277,32200,500,31900,11600,270,4.6,10,8,32.2,3050,9,999999999,140,0.0810,0,88,999.000,999.0,99.0 +1989,10,25,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,6.7,27,97000,764,1383,402,414,238,298,46300,24600,32700,7730,260,7.2,10,7,32.2,3050,9,999999999,130,0.0810,0,88,999.000,999.0,99.0 +1989,10,25,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,7.8,32,97000,568,1383,401,276,204,205,31100,20100,22800,4840,270,8.8,8,8,56.3,5490,9,999999999,140,0.0810,0,88,999.000,999.0,99.0 +1989,10,25,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,6.7,31,97100,322,1383,390,133,137,109,15100,11300,12500,2380,260,6.7,9,7,56.3,7620,9,999999999,140,0.0810,0,88,999.000,999.0,99.0 +1989,10,25,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,8.3,38,97000,64,957,379,14,11,13,1500,600,1500,340,270,6.7,7,6,80.5,5490,9,999999999,150,0.0810,0,88,999.000,999.0,99.0 +1989,10,25,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,8.9,41,97100,0,0,377,0,0,0,0,0,0,0,260,3.6,6,6,56.3,3660,9,999999999,160,0.0810,0,88,999.000,999.0,99.0 +1989,10,25,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,9.4,46,97200,0,0,360,0,0,0,0,0,0,0,260,3.6,3,2,56.3,77777,9,999999999,160,0.0810,0,88,999.000,999.0,99.0 +1989,10,25,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,8.3,46,97300,0,0,357,0,0,0,0,0,0,0,260,4.1,3,3,56.3,77777,9,999999999,150,0.0810,0,88,999.000,999.0,99.0 +1989,10,25,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,3.3,36,97400,0,0,328,0,0,0,0,0,0,0,250,5.2,0,0,56.3,77777,9,999999999,110,0.0810,0,88,999.000,999.0,99.0 +1989,10,25,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,2.2,34,97500,0,0,324,0,0,0,0,0,0,0,250,4.6,0,0,56.3,77777,9,999999999,100,0.0810,0,88,999.000,999.0,99.0 +1989,10,25,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,1.7,35,97500,0,0,319,0,0,0,0,0,0,0,240,3.6,0,0,56.3,77777,9,999999999,100,0.0810,0,88,999.000,999.0,99.0 +1989,10,26,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,1.1,34,97600,0,0,318,0,0,0,0,0,0,0,250,4.1,0,0,56.3,77777,9,999999999,100,0.0950,0,88,999.000,999.0,99.0 +1989,10,26,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,1.7,39,97600,0,0,312,0,0,0,0,0,0,0,240,3.1,0,0,56.3,77777,9,999999999,100,0.0950,0,88,999.000,999.0,99.0 +1989,10,26,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,2.2,41,97600,0,0,313,0,0,0,0,0,0,0,270,2.6,0,0,56.3,77777,9,999999999,100,0.0950,0,88,999.000,999.0,99.0 +1989,10,26,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,2.2,44,97600,0,0,307,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,100,0.0950,0,88,999.000,999.0,99.0 +1989,10,26,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,2.8,47,97700,0,0,306,0,0,0,0,0,0,0,30,2.1,0,0,56.3,77777,9,999999999,110,0.0950,0,88,999.000,999.0,99.0 +1989,10,26,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,2.8,47,97700,0,0,306,0,0,0,0,0,0,0,60,3.1,0,0,56.3,77777,9,999999999,110,0.0950,0,88,999.000,999.0,99.0 +1989,10,26,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,3.9,55,97800,10,404,302,6,21,4,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,110,0.0950,0,88,999.000,999.0,99.0 +1989,10,26,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,2.8,44,97900,212,1384,311,122,375,63,12200,24500,8500,1170,280,3.1,0,0,32.2,77777,9,999999999,110,0.0950,0,88,999.000,999.0,99.0 +1989,10,26,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,1.7,38,98000,472,1384,314,302,638,81,31100,58400,11100,1550,260,2.6,0,0,32.2,77777,9,999999999,100,0.0950,0,88,999.000,999.0,99.0 +1989,10,26,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,1.1,33,98000,689,1384,321,492,790,94,50700,77100,12100,1940,260,2.6,0,0,32.2,77777,9,999999999,100,0.0950,0,88,999.000,999.0,99.0 +1989,10,26,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,1.1,30,97900,848,1384,328,633,850,106,66200,84900,14000,2510,0,0.0,0,0,32.2,77777,9,999999999,100,0.0950,0,88,999.000,999.0,99.0 +1989,10,26,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,1.7,27,97900,938,1384,339,724,887,116,76000,89200,15400,3020,310,2.1,0,0,32.2,77777,9,999999999,100,0.0950,0,88,999.000,999.0,99.0 +1989,10,26,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,0.0,23,97800,953,1384,340,743,891,121,77700,89500,15800,3180,210,2.1,0,0,32.2,77777,9,999999999,90,0.0950,0,88,999.000,999.0,99.0 +1989,10,26,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,-1.7,18,97700,892,1384,345,706,897,120,73200,89600,15300,2880,270,2.6,0,0,48.3,77777,9,999999999,80,0.0950,0,88,999.000,999.0,99.0 +1989,10,26,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,-2.8,16,97600,759,1384,349,576,818,121,60300,81800,15300,2730,190,2.6,0,0,56.3,77777,9,999999999,80,0.0950,0,88,999.000,999.0,99.0 +1989,10,26,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,-3.9,16,97600,562,1384,343,383,537,161,39200,51600,18200,3230,280,2.6,0,0,56.3,77777,9,999999999,70,0.0950,0,88,999.000,999.0,99.0 +1989,10,26,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,-3.3,17,97600,317,1384,341,177,510,57,17900,41100,8500,1040,250,3.6,0,0,56.3,77777,9,999999999,70,0.0950,0,88,999.000,999.0,99.0 +1989,10,26,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,-3.9,18,97600,60,934,333,15,90,5,1300,5200,900,130,270,4.6,0,0,56.3,77777,9,999999999,70,0.0950,0,88,999.000,999.0,99.0 +1989,10,26,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,-1.1,23,97600,0,0,331,0,0,0,0,0,0,0,250,2.6,0,0,56.3,77777,9,999999999,80,0.0950,0,88,999.000,999.0,99.0 +1989,10,26,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,-1.1,25,97700,0,0,326,0,0,0,0,0,0,0,270,2.1,0,0,56.3,77777,9,999999999,80,0.0950,0,88,999.000,999.0,99.0 +1989,10,26,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,-1.1,26,97700,0,0,323,0,0,0,0,0,0,0,260,1.5,0,0,56.3,77777,9,999999999,80,0.0950,0,88,999.000,999.0,99.0 +1989,10,26,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,1.1,33,97700,0,0,321,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,100,0.0950,0,88,999.000,999.0,99.0 +1989,10,26,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,1.7,35,97700,0,0,319,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,100,0.0950,0,88,999.000,999.0,99.0 +1989,10,26,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,0.6,34,97700,0,0,316,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,90,0.0950,0,88,999.000,999.0,99.0 +1989,10,27,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,1.7,39,97700,0,0,312,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,100,0.0650,0,88,999.000,999.0,99.0 +1989,10,27,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,2.2,44,97700,0,0,307,0,0,0,0,0,0,0,70,2.1,0,0,56.3,77777,9,999999999,100,0.0650,0,88,999.000,999.0,99.0 +1989,10,27,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,1.1,42,97700,0,0,304,0,0,0,0,0,0,0,60,2.1,0,0,56.3,77777,9,999999999,100,0.0650,0,88,999.000,999.0,99.0 +1989,10,27,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,1.7,47,97700,0,0,300,0,0,0,0,0,0,0,70,2.1,0,0,56.3,77777,9,999999999,100,0.0650,0,88,999.000,999.0,99.0 +1989,10,27,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,0.6,45,97700,0,0,296,0,0,0,0,0,0,0,90,3.6,0,0,56.3,77777,9,999999999,90,0.0650,0,88,999.000,999.0,99.0 +1989,10,27,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,0.6,45,97700,0,0,296,0,0,0,0,0,0,0,110,3.1,0,0,56.3,77777,9,999999999,90,0.0650,0,88,999.000,999.0,99.0 +1989,10,27,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,0.0,43,97800,9,381,296,6,34,2,0,0,0,0,130,3.6,0,0,56.3,77777,9,999999999,90,0.0650,0,88,999.000,999.0,99.0 +1989,10,27,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,0.6,42,97800,208,1385,301,125,479,51,12300,31700,7600,860,90,3.1,0,0,32.2,77777,9,999999999,90,0.0650,0,88,999.000,999.0,99.0 +1989,10,27,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,-0.6,32,97900,467,1385,312,317,753,58,32600,69200,9100,1180,110,4.1,0,0,32.2,77777,9,999999999,90,0.0650,0,88,999.000,999.0,99.0 +1989,10,27,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,-1.1,28,97800,684,1385,318,501,863,69,52000,83900,10400,1530,130,4.1,0,0,32.2,77777,9,999999999,80,0.0650,0,88,999.000,999.0,99.0 +1989,10,27,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,-1.1,23,97800,843,1385,333,642,916,77,66500,90700,11100,1870,170,3.1,0,0,32.2,77777,9,999999999,80,0.0650,0,88,999.000,999.0,99.0 +1989,10,27,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,-1.7,20,97800,933,1385,337,730,940,90,75400,93600,12200,2210,0,0.0,0,0,32.2,77777,9,999999999,80,0.0650,0,88,999.000,999.0,99.0 +1989,10,27,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,-2.2,18,97700,948,1385,342,750,934,103,77100,92900,13300,2360,280,2.1,0,0,32.2,77777,9,999999999,80,0.0650,0,88,999.000,999.0,99.0 +1989,10,27,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,-2.8,17,97600,887,1385,344,687,880,116,71400,88000,14900,2790,50,2.1,0,0,32.2,77777,9,999999999,70,0.0650,0,88,999.000,999.0,99.0 +1989,10,27,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,-1.7,17,97500,753,1385,353,565,776,137,58600,77000,16600,3010,230,2.6,0,0,32.2,77777,9,999999999,80,0.0650,0,88,999.000,999.0,99.0 +1989,10,27,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,-3.9,15,97500,557,1385,348,395,572,160,40400,54800,18200,3210,220,3.1,0,0,32.2,77777,9,999999999,70,0.0650,0,88,999.000,999.0,99.0 +1989,10,27,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,-2.8,17,97500,312,1385,344,181,557,51,18300,44900,8200,950,250,3.6,0,0,32.2,77777,9,999999999,70,0.0650,0,88,999.000,999.0,99.0 +1989,10,27,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,-2.8,18,97500,57,911,339,14,108,2,1000,6500,600,80,280,2.6,0,0,32.2,77777,9,999999999,70,0.0650,0,88,999.000,999.0,99.0 +1989,10,27,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,-2.8,19,97500,0,0,334,0,0,0,0,0,0,0,250,2.6,0,0,32.2,77777,9,999999999,70,0.0650,0,88,999.000,999.0,99.0 +1989,10,27,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,-1.1,24,97600,0,0,328,0,0,0,0,0,0,0,210,2.6,0,0,32.2,77777,9,999999999,80,0.0650,0,88,999.000,999.0,99.0 +1989,10,27,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,-0.6,26,97600,0,0,326,0,0,0,0,0,0,0,0,0.0,0,0,32.2,77777,9,999999999,90,0.0650,0,88,999.000,999.0,99.0 +1989,10,27,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,1.1,33,97600,0,0,321,0,0,0,0,0,0,0,0,0.0,0,0,32.2,77777,9,999999999,100,0.0650,0,88,999.000,999.0,99.0 +1989,10,27,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,1.1,33,97600,0,0,321,0,0,0,0,0,0,0,70,1.5,0,0,32.2,77777,9,999999999,100,0.0650,0,88,999.000,999.0,99.0 +1989,10,27,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,0.6,35,97600,0,0,313,0,0,0,0,0,0,0,110,3.6,0,0,32.2,77777,9,999999999,90,0.0650,0,88,999.000,999.0,99.0 +1989,10,28,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,1.1,38,97600,0,0,311,0,0,0,0,0,0,0,110,2.6,0,0,32.2,77777,9,999999999,100,0.0470,0,88,999.000,999.0,99.0 +1989,10,28,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,0.6,38,97600,0,0,308,0,0,0,0,0,0,0,80,3.1,0,0,32.2,77777,9,999999999,90,0.0470,0,88,999.000,999.0,99.0 +1989,10,28,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,1.7,45,97600,0,0,302,0,0,0,0,0,0,0,80,4.6,0,0,32.2,77777,9,999999999,100,0.0470,0,88,999.000,999.0,99.0 +1989,10,28,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,0.6,44,97600,0,0,299,0,0,0,0,0,0,0,90,3.1,0,0,32.2,77777,9,999999999,90,0.0470,0,88,999.000,999.0,99.0 +1989,10,28,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,0.6,45,97600,0,0,296,0,0,0,0,0,0,0,80,2.6,0,0,32.2,77777,9,999999999,90,0.0470,0,88,999.000,999.0,99.0 +1989,10,28,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,0.6,45,97600,0,0,296,0,0,0,0,0,0,0,110,3.1,0,0,32.2,77777,9,999999999,90,0.0470,0,88,999.000,999.0,99.0 +1989,10,28,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,1.1,49,97700,8,358,295,5,40,0,0,0,0,0,110,3.6,0,0,40.2,77777,9,999999999,100,0.0470,0,88,999.000,999.0,99.0 +1989,10,28,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,0.6,42,97700,204,1385,301,125,529,45,12400,35100,7300,780,90,3.6,0,0,40.2,77777,9,999999999,90,0.0470,0,88,999.000,999.0,99.0 +1989,10,28,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,0.0,34,97800,463,1385,312,307,781,42,32100,71800,8000,1040,90,4.1,0,0,48.3,77777,9,999999999,90,0.0470,0,88,999.000,999.0,99.0 +1989,10,28,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,0.0,29,97800,679,1385,322,497,883,58,51800,85900,9500,1430,100,3.1,0,0,56.3,77777,9,999999999,90,0.0470,0,88,999.000,999.0,99.0 +1989,10,28,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,0.0,25,97700,838,1385,332,647,935,74,67100,92600,10900,1830,130,3.1,0,0,56.3,77777,9,999999999,90,0.0470,0,88,999.000,999.0,99.0 +1989,10,28,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,0.0,23,97700,928,1385,340,737,962,85,76200,95800,11800,2150,160,1.5,0,0,56.3,77777,9,999999999,90,0.0470,0,88,999.000,999.0,99.0 +1989,10,28,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,-2.2,16,97600,943,1385,350,756,967,90,78000,96300,12300,2240,30,2.1,0,0,56.3,77777,9,999999999,80,0.0470,0,88,999.000,999.0,99.0 +1989,10,28,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,-2.2,16,97500,881,1385,353,707,938,102,72600,92900,13200,2100,250,3.1,0,0,64.4,77777,9,999999999,80,0.0470,0,88,999.000,999.0,99.0 +1989,10,28,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,-2.2,15,97400,748,1385,358,579,805,138,60000,79800,16700,3010,280,4.1,1,0,64.4,77777,9,999999999,80,0.0470,0,88,999.000,999.0,99.0 +1989,10,28,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,-2.2,15,97400,552,1385,355,389,600,146,40200,57400,17200,2890,270,3.1,1,0,64.4,77777,9,999999999,80,0.0470,0,88,999.000,999.0,99.0 +1989,10,28,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,-2.2,17,97400,307,1385,347,176,573,45,17500,46800,7100,850,270,3.6,0,0,64.4,77777,9,999999999,80,0.0470,0,88,999.000,999.0,99.0 +1989,10,28,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,-2.8,17,97400,54,889,341,13,116,0,0,0,0,0,260,4.1,0,0,56.3,77777,9,999999999,70,0.0470,0,88,999.000,999.0,99.0 +1989,10,28,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,-2.8,19,97400,0,0,334,0,0,0,0,0,0,0,260,3.1,0,0,56.3,77777,9,999999999,70,0.0470,0,88,999.000,999.0,99.0 +1989,10,28,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,-1.7,23,97400,0,0,328,0,0,0,0,0,0,0,240,2.1,0,0,56.3,77777,9,999999999,80,0.0470,0,88,999.000,999.0,99.0 +1989,10,28,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,-2.2,23,97400,0,0,324,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,80,0.0470,0,88,999.000,999.0,99.0 +1989,10,28,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,0.0,31,97500,0,0,317,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,90,0.0470,0,88,999.000,999.0,99.0 +1989,10,28,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,1.1,35,97500,0,0,316,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,100,0.0470,0,88,999.000,999.0,99.0 +1989,10,28,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,-1.1,30,97500,0,0,314,0,0,0,0,0,0,0,240,3.1,0,0,56.3,77777,9,999999999,80,0.0470,0,88,999.000,999.0,99.0 +1989,10,29,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,-1.7,30,97500,0,0,310,0,0,0,0,0,0,0,240,3.1,0,0,56.3,77777,9,999999999,80,0.0310,0,88,999.000,999.0,99.0 +1989,10,29,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,-2.2,31,97500,0,0,305,0,0,0,0,0,0,0,250,2.1,0,0,56.3,77777,9,999999999,80,0.0310,0,88,999.000,999.0,99.0 +1989,10,29,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,-2.2,32,97500,0,0,303,0,0,0,0,0,0,0,270,2.1,0,0,56.3,77777,9,999999999,80,0.0310,0,88,999.000,999.0,99.0 +1989,10,29,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,-2.2,34,97500,0,0,298,0,0,0,0,0,0,0,240,2.1,0,0,56.3,77777,9,999999999,80,0.0310,0,88,999.000,999.0,99.0 +1989,10,29,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,1.1,47,97600,0,0,297,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,100,0.0310,0,88,999.000,999.0,99.0 +1989,10,29,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,-1.7,40,97600,0,0,292,0,0,0,0,0,0,0,250,2.6,0,0,56.3,77777,9,999999999,80,0.0310,0,88,999.000,999.0,99.0 +1989,10,29,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,-1.1,46,97700,7,335,286,5,41,0,0,0,0,0,220,2.1,0,0,72.4,77777,9,999999999,80,0.0310,0,88,999.000,999.0,99.0 +1989,10,29,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,-2.2,38,97800,199,1386,291,121,543,41,12100,35800,6900,720,310,2.1,0,0,72.4,77777,9,999999999,80,0.0310,0,88,999.000,999.0,99.0 +1989,10,29,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,-2.2,33,97900,458,1386,301,302,798,34,31800,73400,7400,930,270,3.1,1,0,72.4,77777,9,999999999,80,0.0310,0,88,999.000,999.0,99.0 +1989,10,29,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,-1.7,28,97900,674,1386,315,461,830,52,48300,80800,8800,1350,0,0.0,1,0,72.4,77777,9,999999999,80,0.0310,0,88,999.000,999.0,99.0 +1989,10,29,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,-2.8,21,97900,833,1386,335,645,951,65,67000,94200,10200,1710,200,2.1,1,1,72.4,77777,9,999999999,80,0.0310,0,88,999.000,999.0,99.0 +1989,10,29,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,-2.8,19,97800,923,1386,334,733,969,81,76000,96500,11500,2090,340,2.1,1,0,80.5,77777,9,999999999,70,0.0310,0,88,999.000,999.0,99.0 +1989,10,29,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,-3.9,17,97800,937,1386,338,706,904,87,72900,90000,11800,2200,360,2.1,0,0,96.6,77777,9,999999999,70,0.0580,0,88,999.000,999.0,99.0 +1989,10,29,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,-3.9,16,97700,876,1386,343,712,967,93,73300,95800,12600,2060,40,3.1,0,0,112.7,77777,9,999999999,70,0.0310,0,88,999.000,999.0,99.0 +1989,10,29,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,-5.0,14,97700,742,1386,343,582,842,124,60600,83800,15600,2740,110,3.6,0,0,112.7,77777,9,999999999,60,0.0310,0,88,999.000,999.0,99.0 +1989,10,29,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,-4.4,14,97700,546,1386,344,389,622,140,40300,59400,16800,2750,0,0.0,1,0,72.4,77777,9,999999999,60,0.0310,0,88,999.000,999.0,99.0 +1989,10,29,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,-5.6,14,97700,302,1386,340,170,567,43,17000,46200,6900,820,310,3.1,1,0,72.4,77777,9,999999999,60,0.0310,0,88,999.000,999.0,99.0 +1989,10,29,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,-5.6,15,97700,51,866,333,12,110,0,0,0,0,0,240,4.1,0,0,56.3,77777,9,999999999,60,0.0310,0,88,999.000,999.0,99.0 +1989,10,29,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,-3.9,20,97800,0,0,325,0,0,0,0,0,0,0,240,3.1,0,0,56.3,77777,9,999999999,70,0.0310,0,88,999.000,999.0,99.0 +1989,10,29,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,-5.0,20,97800,0,0,319,0,0,0,0,0,0,0,260,2.6,0,0,56.3,77777,9,999999999,70,0.0310,0,88,999.000,999.0,99.0 +1989,10,29,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,-6.7,18,97900,0,0,312,0,0,0,0,0,0,0,80,2.6,0,0,56.3,77777,9,999999999,60,0.0310,0,88,999.000,999.0,99.0 +1989,10,29,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,-10.6,13,98000,0,0,310,0,0,0,0,0,0,0,50,6.2,0,0,56.3,77777,9,999999999,50,0.0310,0,88,999.000,999.0,99.0 +1989,10,29,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,-9.4,15,98000,0,0,306,0,0,0,0,0,0,0,270,2.6,0,0,56.3,77777,9,999999999,50,0.0310,0,88,999.000,999.0,99.0 +1989,10,29,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,-9.4,17,98000,0,0,302,0,0,0,0,0,0,0,20,2.6,0,0,56.3,77777,9,999999999,50,0.0310,0,88,999.000,999.0,99.0 +1989,10,30,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,-7.8,23,98000,0,0,292,0,0,0,0,0,0,0,270,2.1,0,0,56.3,77777,9,999999999,60,0.0790,0,88,999.000,999.0,99.0 +1989,10,30,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,-6.7,27,98000,0,0,287,0,0,0,0,0,0,0,230,3.1,0,0,56.3,77777,9,999999999,60,0.0790,0,88,999.000,999.0,99.0 +1989,10,30,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,-7.2,28,98000,0,0,282,0,0,0,0,0,0,0,240,2.1,0,0,56.3,77777,9,999999999,60,0.0790,0,88,999.000,999.0,99.0 +1989,10,30,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,-7.8,27,98000,0,0,281,0,0,0,0,0,0,0,240,2.1,0,0,56.3,77777,9,999999999,50,0.0790,0,88,999.000,999.0,99.0 +1989,10,30,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,-8.3,26,98000,0,0,281,0,0,0,0,0,0,0,220,2.1,0,0,56.3,77777,9,999999999,50,0.0790,0,88,999.000,999.0,99.0 +1989,10,30,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,-7.8,28,98000,0,0,279,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,50,0.0790,0,88,999.000,999.0,99.0 +1989,10,30,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,-6.7,31,98100,6,312,280,6,32,2,0,0,0,0,0,0.0,4,0,72.4,77777,9,999999999,60,0.0790,0,88,999.000,999.0,99.0 +1989,10,30,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,-7.8,24,98200,195,1387,288,129,528,54,12800,33500,8000,880,240,2.1,5,0,72.4,77777,9,999999999,50,0.0790,0,88,999.000,999.0,99.0 +1989,10,30,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,-6.7,21,98200,453,1387,303,300,739,70,31700,66700,9800,1270,250,2.1,5,0,64.4,77777,9,999999999,60,0.0790,0,88,999.000,999.0,99.0 +1989,10,30,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,-7.2,17,98200,669,1387,314,482,813,100,50700,78700,12500,1950,320,2.1,6,0,64.4,77777,9,999999999,60,0.0790,0,88,999.000,999.0,99.0 +1989,10,30,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,-7.8,15,98200,828,1387,320,622,832,129,64400,82000,15200,2720,290,1.5,6,0,64.4,77777,9,999999999,60,0.0790,0,88,999.000,999.0,99.0 +1989,10,30,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,-6.7,14,98100,917,1387,331,722,873,139,74200,86800,16600,3250,40,2.6,8,0,64.4,77777,9,999999999,60,0.0790,0,88,999.000,999.0,99.0 +1989,10,30,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,-8.3,11,98000,932,1387,337,712,799,163,74100,80900,19600,4330,30,4.1,9,0,56.3,77777,9,999999999,50,0.0790,0,88,999.000,999.0,99.0 +1989,10,30,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,-7.8,11,97900,870,1387,349,694,820,161,71100,82400,19200,3940,60,3.6,9,1,56.3,77777,9,999999999,50,0.0790,0,88,999.000,999.0,99.0 +1989,10,30,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,-8.3,10,97800,737,1387,349,544,615,197,55100,62100,22000,4330,30,3.6,10,1,56.3,77777,9,999999999,50,0.0790,0,88,999.000,999.0,99.0 +1989,10,30,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,-8.3,10,97700,541,1387,351,377,503,166,37200,47800,18500,3340,110,3.1,10,1,56.3,77777,9,999999999,50,0.0790,0,88,999.000,999.0,99.0 +1989,10,30,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,-8.9,11,97700,297,1387,347,102,125,70,10600,10100,8500,1510,200,1.5,10,2,56.3,77777,9,999999999,50,0.0790,0,88,999.000,999.0,99.0 +1989,10,30,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,-8.9,11,97700,48,844,354,7,1,7,900,0,900,270,240,2.1,10,6,56.3,7620,9,999999999,50,0.0790,0,88,999.000,999.0,99.0 +1989,10,30,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,-6.1,16,97700,0,0,347,0,0,0,0,0,0,0,240,3.1,10,6,56.3,7620,9,999999999,60,0.0790,0,88,999.000,999.0,99.0 +1989,10,30,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,-5.6,19,97800,0,0,340,0,0,0,0,0,0,0,250,2.1,10,6,56.3,7620,9,999999999,60,0.0790,0,88,999.000,999.0,99.0 +1989,10,30,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,-5.0,20,97800,0,0,338,0,0,0,0,0,0,0,0,0.0,10,6,56.3,6710,9,999999999,60,0.0790,0,88,999.000,999.0,99.0 +1989,10,30,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,-5.0,21,97700,0,0,336,0,0,0,0,0,0,0,0,0.0,10,6,56.3,6100,9,999999999,60,0.0790,0,88,999.000,999.0,99.0 +1989,10,30,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,-3.9,24,97700,0,0,332,0,0,0,0,0,0,0,0,0.0,10,6,56.3,6100,9,999999999,70,0.0790,0,88,999.000,999.0,99.0 +1989,10,30,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,-3.3,27,97700,0,0,328,0,0,0,0,0,0,0,0,0.0,10,6,56.3,6100,9,999999999,70,0.0790,0,88,999.000,999.0,99.0 +1989,10,31,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,-3.3,28,97700,0,0,322,0,0,0,0,0,0,0,260,2.6,10,5,56.3,77777,9,999999999,70,0.0780,0,88,999.000,999.0,99.0 +1989,10,31,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,-3.3,29,97700,0,0,322,0,0,0,0,0,0,0,270,2.1,10,6,56.3,6100,9,999999999,70,0.0780,0,88,999.000,999.0,99.0 +1989,10,31,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,-2.2,33,97700,0,0,321,0,0,0,0,0,0,0,0,0.0,10,6,56.3,7620,9,999999999,80,0.0780,0,88,999.000,999.0,99.0 +1989,10,31,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,-1.7,37,97600,0,0,312,0,0,0,0,0,0,0,0,0.0,10,4,56.3,77777,9,999999999,80,0.0780,0,88,999.000,999.0,99.0 +1989,10,31,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,-3.3,34,97600,0,0,307,0,0,0,0,0,0,0,90,1.5,10,4,56.3,77777,9,999999999,70,0.0780,0,88,999.000,999.0,99.0 +1989,10,31,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,-3.3,33,97600,0,0,310,0,0,0,0,0,0,0,0,0.0,10,4,56.3,77777,9,999999999,70,0.0780,0,88,999.000,999.0,99.0 +1989,10,31,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,-3.9,30,97600,6,289,320,2,3,2,0,0,0,0,0,0.0,10,7,56.3,5490,9,999999999,70,0.0780,0,88,999.000,999.0,99.0 +1989,10,31,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,-2.8,30,97700,191,1388,335,76,63,66,8000,4100,7400,1390,260,1.5,10,8,72.4,7620,9,999999999,80,0.0780,0,88,999.000,999.0,99.0 +1989,10,31,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,-5.0,20,97700,449,1388,335,205,182,144,21900,16900,16400,3250,180,2.1,10,4,56.3,77777,9,999999999,70,0.0780,0,88,999.000,999.0,99.0 +1989,10,31,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,-6.7,14,97700,665,1388,346,345,188,252,36800,19000,27700,6200,70,4.1,10,4,56.3,77777,9,999999999,60,0.0780,0,88,999.000,999.0,99.0 +1989,10,31,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,-6.7,13,97700,823,1388,347,575,670,174,59400,66600,19800,3960,70,4.1,9,2,64.4,77777,9,999999999,60,0.0780,0,88,999.000,999.0,99.0 +1989,10,31,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,-6.7,12,97600,912,1388,355,680,799,149,71700,81100,18200,3890,120,3.1,9,2,64.4,77777,9,999999999,60,0.0780,0,88,999.000,999.0,99.0 +1989,10,31,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,-6.1,11,97400,927,1388,362,751,939,115,78600,94300,15400,2940,40,2.1,7,2,72.4,77777,9,999999999,60,0.0780,0,88,999.000,999.0,99.0 +1989,10,31,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,-4.4,12,97400,865,1388,372,596,694,155,62000,69800,18200,3780,130,2.1,6,2,72.4,77777,9,999999999,70,0.0780,0,88,999.000,999.0,99.0 +1989,10,31,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,-3.9,12,97300,732,1388,388,417,342,241,44900,35700,26000,5710,200,2.1,9,6,72.4,7620,9,999999999,70,0.0780,0,88,999.000,999.0,99.0 +1989,10,31,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,-4.4,13,97300,536,1388,384,289,244,201,31700,23700,22500,4680,270,2.6,10,7,72.4,7620,9,999999999,70,0.0780,0,88,999.000,999.0,99.0 +1989,10,31,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,-4.4,13,97300,292,1388,384,161,208,122,17600,16400,14100,2640,270,3.1,9,7,72.4,3660,9,999999999,70,0.0780,0,88,999.000,999.0,99.0 +1989,10,31,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,-5.0,14,97300,46,821,385,8,0,8,1000,0,1000,310,260,4.1,10,9,56.3,4270,9,999999999,60,0.0780,0,88,999.000,999.0,99.0 +1989,10,31,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,-4.4,15,97400,0,0,376,0,0,0,0,0,0,0,270,3.1,9,8,56.3,4270,9,999999999,70,0.0780,0,88,999.000,999.0,99.0 +1989,10,31,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,-2.8,18,97400,0,0,391,0,0,0,0,0,0,0,250,2.1,10,10,56.3,4570,9,999999999,70,0.0780,0,88,999.000,999.0,99.0 +1989,10,31,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,-2.8,19,97400,0,0,375,0,0,0,0,0,0,0,260,2.1,9,9,56.3,4570,9,999999999,70,0.0780,0,88,999.000,999.0,99.0 +1989,10,31,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.5,-1.7,22,97500,0,0,375,0,0,0,0,0,0,0,220,2.3,9,9,56.3,4570,9,999999999,80,0.0780,0,88,999.000,999.0,99.0 +1989,10,31,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.4,-0.8,23,97500,0,0,349,0,0,0,0,0,0,0,230,2.5,6,3,48.3,77777,9,999999999,80,0.0780,0,88,999.000,999.0,99.0 +1989,10,31,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.2,0.1,23,97500,0,0,350,0,0,0,0,0,0,0,230,2.7,6,3,48.3,77777,9,999999999,70,0.0780,0,88,999.000,999.0,99.0 +1986,11,1,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,1.0,32,97200,0,0,387,0,0,0,0,0,0,0,170,3.0,10,10,56.3,4570,9,999999999,120,0.0800,0,88,999.000,999.0,99.0 +1986,11,1,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.9,2.0,37,97200,0,0,388,0,0,0,0,0,0,0,130,3.2,10,10,48.3,4570,9,999999999,140,0.0800,0,88,999.000,999.0,99.0 +1986,11,1,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.8,2.9,36,97200,0,0,388,0,0,0,0,0,0,0,120,3.4,10,10,48.3,4570,9,999999999,130,0.0800,0,88,999.000,999.0,99.0 +1986,11,1,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,3.9,34,97200,0,0,389,0,0,0,0,0,0,0,300,3.6,10,10,48.3,3660,9,999999999,120,0.0800,0,88,999.000,999.0,99.0 +1986,11,1,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,3.3,33,97300,0,0,385,0,0,0,0,0,0,0,240,3.1,10,10,48.3,3660,9,999999999,110,0.0800,0,88,999.000,999.0,99.0 +1986,11,1,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,3.3,35,97300,0,0,382,0,0,0,0,0,0,0,270,2.1,10,10,48.3,3660,9,999999999,110,0.0800,0,88,999.000,999.0,99.0 +1986,11,1,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,3.3,37,97400,5,289,358,8,16,6,0,0,0,0,260,3.1,8,8,48.3,3660,9,999999999,110,0.0380,0,88,999.000,999.0,99.0 +1986,11,1,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,3.3,38,97500,188,1388,350,82,223,51,8300,13600,6500,940,290,2.1,7,7,64.4,3660,9,999999999,110,0.0380,0,88,999.000,999.0,99.0 +1986,11,1,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,3.3,38,97500,445,1388,343,177,221,106,19000,20500,12400,2070,270,2.6,5,5,64.4,77777,9,999999999,110,0.0380,0,88,999.000,999.0,99.0 +1986,11,1,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,3.3,35,97600,661,1388,342,472,788,93,48500,76400,12000,1860,260,3.1,2,2,64.4,77777,9,999999999,110,0.0380,0,88,999.000,999.0,99.0 +1986,11,1,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,3.3,30,97600,819,1388,348,602,902,65,62900,89200,10000,1690,260,2.6,1,1,64.4,77777,9,999999999,110,0.0380,0,88,999.000,999.0,99.0 +1986,11,1,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,3.3,27,97600,908,1388,355,667,905,69,69500,90100,10300,1900,180,2.1,1,1,64.4,77777,9,999999999,110,0.0380,0,88,999.000,999.0,99.0 +1986,11,1,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,3.3,25,97500,923,1388,354,714,954,73,74200,95000,10800,1990,170,2.6,0,0,64.4,77777,9,999999999,110,0.0380,0,88,999.000,999.0,99.0 +1986,11,1,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,3.3,25,97400,861,1388,354,668,955,69,69500,94800,10500,1810,210,3.1,0,0,64.4,77777,9,999999999,110,0.0380,0,88,999.000,999.0,99.0 +1986,11,1,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,-1.7,17,97400,728,1388,353,549,918,61,57200,89900,9800,1520,220,3.6,0,0,64.4,77777,9,999999999,80,0.0380,0,88,999.000,999.0,99.0 +1986,11,1,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,-2.2,17,97400,533,1388,347,381,853,48,39700,80400,8800,1170,240,4.1,0,0,64.4,77777,9,999999999,80,0.0380,0,88,999.000,999.0,99.0 +1986,11,1,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,-2.2,18,97500,288,1388,345,176,676,32,18300,55700,6700,740,240,3.1,0,0,64.4,77777,9,999999999,80,0.0380,0,88,999.000,999.0,99.0 +1986,11,1,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,-1.7,20,97500,44,798,337,37,189,15,2700,8400,2200,270,240,2.1,0,0,56.3,77777,9,999999999,80,0.0380,0,88,999.000,999.0,99.0 +1986,11,1,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,-1.1,23,97600,0,0,340,0,0,0,0,0,0,0,240,1.5,1,1,56.3,77777,9,999999999,80,0.0800,0,88,999.000,999.0,99.0 +1986,11,1,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,-0.6,25,97600,0,0,335,0,0,0,0,0,0,0,230,1.5,1,1,56.3,77777,9,999999999,90,0.0800,0,88,999.000,999.0,99.0 +1986,11,1,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,-0.6,27,97700,0,0,335,0,0,0,0,0,0,0,0,0.0,2,2,56.3,77777,9,999999999,90,0.0800,0,88,999.000,999.0,99.0 +1986,11,1,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,-0.6,28,97700,0,0,321,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,90,0.0800,0,88,999.000,999.0,99.0 +1986,11,1,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,1.1,33,97700,0,0,321,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,100,0.0800,0,88,999.000,999.0,99.0 +1986,11,1,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,1.7,35,97700,0,0,319,0,0,0,0,0,0,0,70,3.1,0,0,56.3,77777,9,999999999,100,0.0800,0,88,999.000,999.0,99.0 +1986,11,2,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,1.7,38,97700,0,0,314,0,0,0,0,0,0,0,90,2.1,0,0,56.3,77777,9,999999999,100,0.0780,0,88,999.000,999.0,99.0 +1986,11,2,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,2.8,46,97700,0,0,308,0,0,0,0,0,0,0,20,1.5,0,0,56.3,77777,9,999999999,110,0.0780,0,88,999.000,999.0,99.0 +1986,11,2,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,3.9,48,97700,0,0,312,0,0,0,0,0,0,0,70,2.1,0,0,56.3,77777,9,999999999,120,0.0780,0,88,999.000,999.0,99.0 +1986,11,2,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,2.8,49,97700,0,0,303,0,0,0,0,0,0,0,280,2.1,0,0,56.3,77777,9,999999999,110,0.0780,0,88,999.000,999.0,99.0 +1986,11,2,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,2.8,51,97700,0,0,301,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,110,0.0780,0,88,999.000,999.0,99.0 +1986,11,2,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,2.8,51,97700,0,0,301,0,0,0,0,0,0,0,240,1.5,0,0,56.3,77777,9,999999999,110,0.0780,0,88,999.000,999.0,99.0 +1986,11,2,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,3.3,53,97700,4,266,302,8,40,3,0,0,0,0,190,1.5,0,0,56.3,77777,9,999999999,110,0.0370,0,88,999.000,999.0,99.0 +1986,11,2,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,1.7,45,97700,183,1389,312,84,338,39,8500,21400,5600,680,0,0.0,3,2,64.4,77777,9,999999999,100,0.0370,0,88,999.000,999.0,99.0 +1986,11,2,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,3.3,41,97700,440,1389,335,233,464,84,23800,41400,10700,1560,270,1.5,4,4,64.4,77777,9,999999999,110,0.0370,0,88,999.000,999.0,99.0 +1986,11,2,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,4.4,35,97700,656,1389,355,475,704,139,48700,68000,16400,2770,200,3.1,4,4,64.4,77777,9,999999999,120,0.0370,0,88,999.000,999.0,99.0 +1986,11,2,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,6.1,38,97700,814,1389,359,475,460,202,50100,47000,22500,4700,270,2.1,6,4,64.4,7620,9,999999999,130,0.0370,0,88,999.000,999.0,99.0 +1986,11,2,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,8.3,40,97700,903,1389,370,613,625,203,63300,62300,22600,4990,60,7.7,7,4,48.3,7620,9,999999999,150,0.0370,0,88,999.000,999.0,99.0 +1986,11,2,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,8.9,44,97600,918,1389,366,577,553,208,61800,57200,23900,5370,60,5.2,7,4,80.5,7620,9,999999999,160,0.0370,0,88,999.000,999.0,99.0 +1986,11,2,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,7.2,37,97600,856,1389,372,555,574,197,59100,59000,22600,4740,50,7.7,8,5,80.5,7620,9,999999999,140,0.0370,0,88,999.000,999.0,99.0 +1986,11,2,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,8.3,40,97500,723,1389,367,513,673,158,52500,65800,18100,3280,80,6.2,7,3,80.5,77777,9,999999999,150,0.0370,0,88,999.000,999.0,99.0 +1986,11,2,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,6.1,34,97500,528,1389,370,321,582,96,32900,54500,12200,1850,100,4.6,7,5,56.3,7620,9,999999999,130,0.0370,0,88,999.000,999.0,99.0 +1986,11,2,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,7.2,40,97400,284,1389,364,105,119,80,11300,9400,9400,1720,90,4.6,4,4,56.3,77777,9,999999999,140,0.0370,0,88,999.000,999.0,99.0 +1986,11,2,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,6.7,42,97400,42,776,348,34,124,20,2800,4500,2600,360,70,3.6,2,2,56.3,77777,9,999999999,140,0.0370,0,88,999.000,999.0,99.0 +1986,11,2,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,6.7,44,97500,0,0,341,0,0,0,0,0,0,0,80,3.1,1,1,56.3,77777,9,999999999,140,0.0780,0,88,999.000,999.0,99.0 +1986,11,2,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,7.8,50,97500,0,0,342,0,0,0,0,0,0,0,40,3.1,2,2,56.3,77777,9,999999999,140,0.0780,0,88,999.000,999.0,99.0 +1986,11,2,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,7.8,50,97500,0,0,337,0,0,0,0,0,0,0,60,2.6,3,1,56.3,77777,9,999999999,140,0.0780,0,88,999.000,999.0,99.0 +1986,11,2,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,8.3,58,97500,0,0,324,0,0,0,0,0,0,0,50,2.6,2,0,56.3,77777,9,999999999,150,0.0780,0,88,999.000,999.0,99.0 +1986,11,2,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,8.3,58,97500,0,0,324,0,0,0,0,0,0,0,70,2.1,2,0,56.3,77777,9,999999999,150,0.0780,0,88,999.000,999.0,99.0 +1986,11,2,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,8.3,62,97500,0,0,319,0,0,0,0,0,0,0,40,1.5,0,0,56.3,77777,9,999999999,150,0.0780,0,88,999.000,999.0,99.0 +1986,11,3,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,8.3,65,97500,0,0,323,0,0,0,0,0,0,0,0,0.0,3,1,56.3,77777,9,999999999,150,0.0780,0,88,999.000,999.0,99.0 +1986,11,3,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,7.8,67,97500,0,0,311,0,0,0,0,0,0,0,220,1.5,0,0,56.3,77777,9,999999999,150,0.0780,0,88,999.000,999.0,99.0 +1986,11,3,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,7.2,67,97500,0,0,318,0,0,0,0,0,0,0,0,0.0,3,2,56.3,77777,9,999999999,140,0.0780,0,88,999.000,999.0,99.0 +1986,11,3,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,7.2,64,97400,0,0,336,0,0,0,0,0,0,0,0,0.0,8,7,56.3,3660,9,999999999,140,0.0780,0,88,999.000,999.0,99.0 +1986,11,3,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,7.2,62,97400,0,0,338,0,0,0,0,0,0,0,0,0.0,8,7,56.3,3660,9,999999999,140,0.0780,0,88,999.000,999.0,99.0 +1986,11,3,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,7.8,62,97400,0,0,355,0,0,0,0,0,0,0,250,2.1,10,9,56.3,3660,9,999999999,150,0.0780,0,88,999.000,999.0,99.0 +1986,11,3,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,7.2,60,97400,4,243,346,2,1,2,0,0,0,0,170,1.5,9,8,72.4,2740,9,999999999,140,0.1120,0,88,999.000,999.0,99.0 +1986,11,3,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,7.8,62,97400,179,1390,338,64,47,58,7000,3400,6600,1310,0,0.0,8,6,80.5,3350,9,999999999,150,0.1120,0,88,999.000,999.0,99.0 +1986,11,3,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,7.2,58,97400,436,1390,337,221,278,133,23200,25500,15200,2730,360,2.1,8,5,48.3,3350,9,999999999,140,0.1120,0,88,999.000,999.0,99.0 +1986,11,3,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,8.3,54,97500,651,1390,356,255,80,217,27900,7900,24200,6220,170,2.6,9,7,32.2,3660,9,999999999,150,0.1120,0,88,999.000,999.0,99.0 +1986,11,3,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,7.8,47,97500,809,1390,359,419,304,240,44900,32200,26100,5860,130,3.1,6,6,48.3,3660,9,999999999,150,0.1120,0,88,999.000,999.0,99.0 +1986,11,3,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,7.8,44,97400,898,1390,375,274,86,218,30500,9100,24600,6180,160,4.1,8,8,48.3,3050,9,999999999,150,0.1120,0,88,999.000,999.0,99.0 +1986,11,3,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,7.8,42,97400,913,1390,386,394,82,339,43200,8400,37600,11140,130,3.1,9,9,64.4,3050,9,999999999,140,0.1120,0,88,999.000,999.0,99.0 +1986,11,3,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,8.9,43,97300,851,1390,379,524,386,285,55800,41100,30600,7370,160,4.1,7,7,64.4,3050,9,999999999,160,0.1120,0,88,999.000,999.0,99.0 +1986,11,3,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,10.0,48,97300,718,1390,392,317,85,273,34800,8600,30300,7850,160,4.6,10,9,64.4,3050,9,999999999,170,0.1120,0,88,999.000,999.0,99.0 +1986,11,3,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,9.4,49,97300,523,1390,385,157,42,141,17200,4000,15700,3960,140,3.6,9,9,64.4,3050,9,999999999,160,0.1120,0,88,999.000,999.0,99.0 +1986,11,3,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,9.4,49,97300,279,1390,385,101,53,90,11000,4400,10100,2140,130,3.6,9,9,56.3,3050,9,999999999,160,0.1120,0,88,999.000,999.0,99.0 +1986,11,3,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,9.4,55,97300,39,753,368,16,6,16,1800,300,1800,390,80,4.1,8,8,56.3,3050,9,999999999,160,0.1120,0,88,999.000,999.0,99.0 +1986,11,3,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,10.0,65,97400,0,0,358,0,0,0,0,0,0,0,90,6.2,8,8,56.3,3050,9,999999999,170,0.0780,0,88,999.000,999.0,99.0 +1986,11,3,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,10.0,65,97400,0,0,376,0,0,0,0,0,0,0,100,5.2,10,10,56.3,3050,9,999999999,170,0.0780,0,88,999.000,999.0,99.0 +1986,11,3,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,10.6,67,97500,0,0,377,0,0,0,0,0,0,0,80,4.6,10,10,56.3,3050,9,999999999,170,0.0780,0,88,999.000,999.0,99.0 +1986,11,3,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,10.6,67,97600,0,0,377,0,0,0,0,0,0,0,100,5.2,10,10,56.3,3050,9,999999999,170,0.0780,0,88,999.000,999.0,99.0 +1986,11,3,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,10.6,70,97600,0,0,374,0,0,0,0,0,0,0,100,5.2,10,10,56.3,3050,9,999999999,170,0.0780,0,88,999.000,999.0,99.0 +1986,11,3,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,10.6,70,97600,0,0,350,0,0,0,0,0,0,0,100,4.6,7,7,56.3,3050,9,999999999,170,0.0780,0,88,999.000,999.0,99.0 +1986,11,4,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,10.6,72,97700,0,0,344,0,0,0,0,0,0,0,90,3.6,6,6,56.3,2740,9,999999999,170,0.0770,0,88,999.000,999.0,99.0 +1986,11,4,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,10.6,75,97700,0,0,330,0,0,0,0,0,0,0,90,4.1,2,2,56.3,77777,9,999999999,170,0.0770,0,88,999.000,999.0,99.0 +1986,11,4,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,10.0,72,97700,0,0,324,0,0,0,0,0,0,0,90,2.6,1,1,56.3,77777,9,999999999,170,0.0770,0,88,999.000,999.0,99.0 +1986,11,4,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,10.0,75,97700,0,0,322,0,0,0,0,0,0,0,80,1.5,1,1,56.3,77777,9,999999999,170,0.0770,0,88,999.000,999.0,99.0 +1986,11,4,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,10.0,78,97700,0,0,314,0,0,0,0,0,0,0,80,2.1,0,0,56.3,77777,9,999999999,170,0.0770,0,88,999.000,999.0,99.0 +1986,11,4,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,10.0,80,97800,0,0,311,0,0,0,0,0,0,0,90,2.1,0,0,56.3,77777,9,999999999,170,0.0770,0,88,999.000,999.0,99.0 +1986,11,4,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,9.4,80,97800,3,220,308,2,1,2,0,0,0,0,100,2.1,0,0,56.3,77777,9,999999999,160,0.1620,0,88,999.000,999.0,99.0 +1986,11,4,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,8.9,72,97900,174,1391,312,70,188,46,7100,11000,5800,840,160,3.1,2,0,64.4,77777,9,999999999,160,0.1620,0,88,999.000,999.0,99.0 +1986,11,4,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,10.0,67,97900,431,1391,323,248,505,90,25200,44500,11400,1630,70,4.1,2,0,64.4,77777,9,999999999,170,0.1620,0,88,999.000,999.0,99.0 +1986,11,4,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,10.6,61,98000,646,1391,334,428,667,114,44300,64900,14100,2340,80,2.1,0,0,56.3,77777,9,999999999,180,0.1620,0,88,999.000,999.0,99.0 +1986,11,4,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,8.9,49,98000,804,1391,340,570,744,136,59800,74600,16500,3140,110,2.1,0,0,72.4,77777,9,999999999,160,0.1620,0,88,999.000,999.0,99.0 +1986,11,4,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,6.7,41,97900,893,1391,340,659,789,147,69400,79900,17900,3740,160,1.5,0,0,64.4,77777,9,999999999,140,0.1620,0,88,999.000,999.0,99.0 +1986,11,4,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,6.1,35,97800,907,1391,347,670,791,149,70700,80200,18200,3850,170,2.1,0,0,64.4,77777,9,999999999,130,0.1620,0,88,999.000,999.0,99.0 +1986,11,4,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,7.2,36,97800,846,1391,360,567,681,149,59400,68500,17600,3570,140,2.6,1,1,64.4,77777,9,999999999,140,0.1620,0,88,999.000,999.0,99.0 +1986,11,4,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,7.2,34,97700,713,1391,363,476,681,122,49500,67300,14900,2620,150,2.6,1,1,64.4,77777,9,999999999,140,0.1620,0,88,999.000,999.0,99.0 +1986,11,4,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,7.2,36,97700,518,1391,360,313,542,108,31900,50100,13100,2020,90,3.1,1,1,64.4,77777,9,999999999,140,0.1620,0,88,999.000,999.0,99.0 +1986,11,4,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,7.2,36,97700,275,1391,360,122,285,64,12600,21300,8300,1160,120,2.6,1,1,64.4,77777,9,999999999,140,0.1620,0,88,999.000,999.0,99.0 +1986,11,4,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,7.8,40,97700,37,753,349,21,24,18,2100,1000,2100,370,110,2.1,0,0,64.4,77777,9,999999999,150,0.1620,0,88,999.000,999.0,99.0 +1986,11,4,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,7.2,40,97800,0,0,346,0,0,0,0,0,0,0,110,1.5,0,0,56.3,77777,9,999999999,140,0.0770,0,88,999.000,999.0,99.0 +1986,11,4,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,0.0,26,97800,0,0,330,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,90,0.0770,0,88,999.000,999.0,99.0 +1986,11,4,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,-0.6,26,97800,0,0,326,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,90,0.0770,0,88,999.000,999.0,99.0 +1986,11,4,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,-0.6,28,97800,0,0,321,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,90,0.0770,0,88,999.000,999.0,99.0 +1986,11,4,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,-0.6,28,97900,0,0,321,0,0,0,0,0,0,0,40,1.5,0,0,56.3,77777,9,999999999,90,0.0770,0,88,999.000,999.0,99.0 +1986,11,4,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,-0.6,31,97900,0,0,314,0,0,0,0,0,0,0,160,2.1,0,0,56.3,77777,9,999999999,90,0.0770,0,88,999.000,999.0,99.0 +1986,11,5,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,-1.1,30,97900,0,0,314,0,0,0,0,0,0,0,120,1.5,0,0,56.3,77777,9,999999999,80,0.0770,0,88,999.000,999.0,99.0 +1986,11,5,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,-1.1,32,97900,0,0,309,0,0,0,0,0,0,0,110,2.1,0,0,56.3,77777,9,999999999,80,0.0770,0,88,999.000,999.0,99.0 +1986,11,5,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,-1.1,35,97800,0,0,304,0,0,0,0,0,0,0,80,1.5,0,0,56.3,77777,9,999999999,80,0.0770,0,88,999.000,999.0,99.0 +1986,11,5,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,-1.1,35,97800,0,0,304,0,0,0,0,0,0,0,80,2.1,0,0,56.3,77777,9,999999999,80,0.0770,0,88,999.000,999.0,99.0 +1986,11,5,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,-1.7,34,97800,0,0,301,0,0,0,0,0,0,0,120,1.5,0,0,56.3,77777,9,999999999,80,0.0770,0,88,999.000,999.0,99.0 +1986,11,5,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,-1.7,37,97800,0,0,297,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,80,0.0770,0,88,999.000,999.0,99.0 +1986,11,5,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,-2.2,36,97900,2,197,296,7,26,2,0,0,0,0,0,0.0,0,0,72.4,77777,9,999999999,80,0.0390,0,88,999.000,999.0,99.0 +1986,11,5,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,-3.3,28,97900,170,1391,304,88,512,24,8800,34300,4600,480,200,2.6,0,0,64.4,77777,9,999999999,70,0.0390,0,88,999.000,999.0,99.0 +1986,11,5,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,-3.3,24,97900,426,1391,316,288,796,41,30200,72000,8100,990,80,1.5,0,0,64.4,77777,9,999999999,70,0.0390,0,88,999.000,999.0,99.0 +1986,11,5,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,0.0,25,97900,641,1391,332,471,892,56,49300,86200,9400,1360,40,1.5,0,0,64.4,77777,9,999999999,90,0.0390,0,88,999.000,999.0,99.0 +1986,11,5,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,5.0,32,97800,799,1391,348,606,931,66,63200,91900,10200,1670,90,4.1,0,0,64.4,77777,9,999999999,120,0.0390,0,88,999.000,999.0,99.0 +1986,11,5,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,5.0,29,97800,888,1391,356,689,957,71,71600,95100,10700,1880,350,4.1,0,0,64.4,77777,9,999999999,120,0.0390,0,88,999.000,999.0,99.0 +1986,11,5,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,3.3,25,97700,902,1391,357,703,962,72,73100,95700,10800,1930,90,4.1,0,0,72.4,77777,9,999999999,110,0.0390,0,88,999.000,999.0,99.0 +1986,11,5,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,2.2,22,97600,841,1391,358,651,953,68,67700,94400,10500,1760,70,3.6,0,0,72.4,77777,9,999999999,100,0.0390,0,88,999.000,999.0,99.0 +1986,11,5,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,2.8,21,97500,709,1391,364,533,917,60,55600,89600,9800,1480,80,2.6,0,0,72.4,77777,9,999999999,100,0.0390,0,88,999.000,999.0,99.0 +1986,11,5,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,1.7,20,97400,514,1391,363,362,838,47,37700,78500,8600,1140,90,2.6,0,0,72.4,77777,9,999999999,100,0.0390,0,88,999.000,999.0,99.0 +1986,11,5,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,2.2,21,97400,270,1391,361,162,653,31,16700,52800,6400,700,160,2.6,0,0,72.4,77777,9,999999999,100,0.0390,0,88,999.000,999.0,99.0 +1986,11,5,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,3.3,26,97400,35,730,351,30,155,13,2200,6600,1800,240,180,2.1,0,0,72.4,77777,9,999999999,110,0.0390,0,88,999.000,999.0,99.0 +1986,11,5,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,3.3,28,97400,0,0,346,0,0,0,0,0,0,0,0,0.0,0,0,72.4,77777,9,999999999,110,0.0770,0,88,999.000,999.0,99.0 +1986,11,5,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,3.3,32,97400,0,0,336,0,0,0,0,0,0,0,290,1.5,0,0,56.3,77777,9,999999999,110,0.0770,0,88,999.000,999.0,99.0 +1986,11,5,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,4.4,36,97400,0,0,335,0,0,0,0,0,0,0,10,2.1,0,0,56.3,77777,9,999999999,120,0.0770,0,88,999.000,999.0,99.0 +1986,11,5,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,5.6,42,97400,0,0,331,0,0,0,0,0,0,0,80,2.1,0,0,56.3,77777,9,999999999,130,0.0770,0,88,999.000,999.0,99.0 +1986,11,5,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,5.0,42,97400,0,0,328,0,0,0,0,0,0,0,140,1.5,0,0,56.3,77777,9,999999999,120,0.0770,0,88,999.000,999.0,99.0 +1986,11,5,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,5.6,46,97300,0,0,323,0,0,0,0,0,0,0,140,2.1,0,0,56.3,77777,9,999999999,130,0.0770,0,88,999.000,999.0,99.0 +1986,11,6,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,5.0,46,97300,0,0,320,0,0,0,0,0,0,0,90,2.1,0,0,56.3,77777,9,999999999,120,0.0770,0,88,999.000,999.0,99.0 +1986,11,6,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,5.0,50,97300,0,0,316,0,0,0,0,0,0,0,80,2.1,0,0,56.3,77777,9,999999999,120,0.0770,0,88,999.000,999.0,99.0 +1986,11,6,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,5.6,54,97300,0,0,314,0,0,0,0,0,0,0,60,2.6,0,0,56.3,77777,9,999999999,130,0.0770,0,88,999.000,999.0,99.0 +1986,11,6,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,5.0,52,97200,0,0,313,0,0,0,0,0,0,0,90,2.1,0,0,56.3,77777,9,999999999,120,0.0770,0,88,999.000,999.0,99.0 +1986,11,6,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,5.0,53,97200,0,0,310,0,0,0,0,0,0,0,80,2.6,0,0,56.3,77777,9,999999999,120,0.0770,0,88,999.000,999.0,99.0 +1986,11,6,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,5.0,55,97200,0,0,308,0,0,0,0,0,0,0,90,3.1,0,0,56.3,77777,9,999999999,120,0.0770,0,88,999.000,999.0,99.0 +1986,11,6,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,5.6,58,97200,2,174,309,2,4,1,0,0,0,0,90,3.6,0,0,56.3,77777,9,999999999,130,0.0970,0,88,999.000,999.0,99.0 +1986,11,6,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,5.0,55,97200,166,1392,308,73,312,35,7300,18800,5100,610,110,4.6,0,0,72.4,77777,9,999999999,120,0.0970,0,88,999.000,999.0,99.0 +1986,11,6,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,5.0,50,97200,422,1392,316,260,643,63,27000,57300,9600,1210,110,3.6,0,0,72.4,77777,9,999999999,120,0.0970,0,88,999.000,999.0,99.0 +1986,11,6,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,5.6,43,97200,636,1392,328,444,777,85,45800,75100,11300,1720,120,3.1,0,0,72.4,77777,9,999999999,130,0.0970,0,88,999.000,999.0,99.0 +1986,11,6,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,5.0,36,97200,794,1392,338,588,846,100,61300,84000,13200,2250,120,4.1,0,0,72.4,77777,9,999999999,120,0.0970,0,88,999.000,999.0,99.0 +1986,11,6,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,5.0,30,97100,883,1392,354,668,874,108,70100,87500,14400,2640,180,3.1,0,0,72.4,77777,9,999999999,120,0.0970,0,88,999.000,999.0,99.0 +1986,11,6,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,4.4,26,96900,897,1392,361,683,880,110,71700,88200,14600,2720,160,2.6,0,0,72.4,77777,9,999999999,120,0.0970,0,88,999.000,999.0,99.0 +1986,11,6,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,3.9,24,96800,836,1392,363,630,864,104,65700,86200,13800,2430,240,2.1,0,0,72.4,77777,9,999999999,110,0.0970,0,88,999.000,999.0,99.0 +1986,11,6,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,3.9,23,96700,704,1392,373,486,756,99,49900,73800,12400,2010,200,2.6,1,1,72.4,77777,9,999999999,110,0.0970,0,88,999.000,999.0,99.0 +1986,11,6,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,2.2,21,96700,509,1392,373,329,597,107,33400,54900,13200,1990,260,5.7,2,2,24.1,77777,9,999999999,100,0.0970,0,88,999.000,999.0,99.0 +1986,11,6,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,0.6,20,96600,266,1392,378,103,171,69,10800,12500,8400,1310,270,4.6,6,6,64.4,2130,9,999999999,90,0.0970,0,88,999.000,999.0,99.0 +1986,11,6,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,0.6,21,96600,33,708,369,13,23,10,1300,900,1200,210,250,4.1,4,4,40.2,77777,9,999999999,90,0.0970,0,88,999.000,999.0,99.0 +1986,11,6,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,0.0,21,96700,0,0,356,0,0,0,0,0,0,0,260,3.1,2,2,40.2,77777,9,999999999,90,0.0770,0,88,999.000,999.0,99.0 +1986,11,6,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,-2.2,20,96700,0,0,346,0,0,0,0,0,0,0,300,3.1,2,2,40.2,77777,9,999999999,80,0.0770,0,88,999.000,999.0,99.0 +1986,11,6,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,-2.2,21,96800,0,0,365,0,0,0,0,0,0,0,230,3.6,8,8,40.2,3050,9,999999999,80,0.0770,0,88,999.000,999.0,99.0 +1986,11,6,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,-8.3,13,96900,0,0,347,0,0,0,0,0,0,0,250,5.2,6,6,32.2,3050,9,999999999,50,0.0770,0,88,999.000,999.0,99.0 +1986,11,6,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,-6.7,16,96900,0,0,332,0,0,0,0,0,0,0,280,4.6,6,2,11.3,77777,9,999999999,60,0.0770,0,88,999.000,999.0,99.0 +1986,11,6,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,-10.6,13,96900,0,0,328,0,0,0,0,0,0,0,280,2.1,4,4,16.1,77777,9,999999999,50,0.0770,0,88,999.000,999.0,99.0 +1986,11,7,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,-6.1,18,97000,0,0,336,0,0,0,0,0,0,0,280,5.7,5,5,12.9,77777,9,999999999,60,0.0760,0,88,999.000,999.0,99.0 +1986,11,7,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,-10.6,13,97000,0,0,326,0,0,0,0,0,0,0,280,4.1,4,4,16.1,77777,9,999999999,40,0.0760,0,88,999.000,999.0,99.0 +1986,11,7,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,-10.6,15,97100,0,0,313,0,0,0,0,0,0,0,290,4.1,3,3,24.1,77777,9,999999999,40,0.0760,0,88,999.000,999.0,99.0 +1986,11,7,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,-9.4,19,97200,0,0,293,0,0,0,0,0,0,0,280,3.1,0,0,40.2,77777,9,999999999,50,0.0760,0,88,999.000,999.0,99.0 +1986,11,7,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,-9.4,21,97300,0,0,288,0,0,0,0,0,0,0,220,2.1,0,0,40.2,77777,9,999999999,50,0.0760,0,88,999.000,999.0,99.0 +1986,11,7,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,-8.3,25,97400,0,0,283,0,0,0,0,0,0,0,250,3.1,0,0,40.2,77777,9,999999999,50,0.0760,0,88,999.000,999.0,99.0 +1986,11,7,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,-7.8,27,97500,2,151,281,7,23,2,0,0,0,0,250,2.1,0,0,56.3,77777,9,999999999,50,0.0300,0,88,999.000,999.0,99.0 +1986,11,7,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,-7.8,23,97600,161,1393,290,84,535,21,8800,37100,4500,460,350,1.5,0,0,64.4,77777,9,999999999,50,0.0300,0,88,999.000,999.0,99.0 +1986,11,7,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,-6.7,22,97700,417,1393,300,282,809,37,29700,72800,7800,940,310,2.1,0,0,72.4,77777,9,999999999,60,0.0300,0,88,999.000,999.0,99.0 +1986,11,7,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,-7.8,19,97700,632,1393,304,473,921,50,49500,88900,9100,1290,260,2.1,0,0,72.4,77777,9,999999999,50,0.0300,0,88,999.000,999.0,99.0 +1986,11,7,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,-8.3,16,97700,789,1393,310,614,960,66,64200,94700,10300,1650,290,3.1,1,0,72.4,77777,9,999999999,50,0.0300,0,88,999.000,999.0,99.0 +1986,11,7,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,-8.3,15,97700,878,1393,315,695,979,73,72400,97200,10900,1890,280,2.6,1,0,72.4,77777,9,999999999,50,0.0300,0,88,999.000,999.0,99.0 +1986,11,7,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,-8.9,13,97600,892,1393,319,712,988,74,74200,98200,11000,1930,290,3.1,1,0,72.4,77777,9,999999999,50,0.0300,0,88,999.000,999.0,99.0 +1986,11,7,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,-11.1,11,97600,831,1393,319,673,950,99,69200,93700,13100,1930,250,3.6,4,0,72.4,77777,9,999999999,40,0.0300,0,88,999.000,999.0,99.0 +1986,11,7,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,-10.6,11,97500,699,1393,328,495,761,108,51900,75400,13900,2330,240,4.1,8,1,72.4,77777,9,999999999,50,0.0300,0,88,999.000,999.0,99.0 +1986,11,7,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,-11.1,11,97500,505,1393,332,341,600,119,34200,54700,14300,2150,260,4.1,9,2,72.4,77777,9,999999999,50,0.0300,0,88,999.000,999.0,99.0 +1986,11,7,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,-10.6,12,97500,262,1393,327,139,492,43,14100,37000,7100,790,280,3.6,5,2,72.4,77777,9,999999999,50,0.0300,0,88,999.000,999.0,99.0 +1986,11,7,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,-10.6,13,97600,31,685,310,30,155,13,2100,6400,1800,240,250,3.1,2,0,72.4,77777,9,999999999,50,0.0300,0,88,999.000,999.0,99.0 +1986,11,7,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,-10.0,15,97600,0,0,306,0,0,0,0,0,0,0,250,2.1,2,0,56.3,77777,9,999999999,50,0.0760,0,88,999.000,999.0,99.0 +1986,11,7,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,-7.2,20,97600,0,0,312,0,0,0,0,0,0,0,210,2.1,5,2,56.3,77777,9,999999999,60,0.0760,0,88,999.000,999.0,99.0 +1986,11,7,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,-6.7,22,97700,0,0,310,0,0,0,0,0,0,0,0,0.0,5,2,56.3,77777,9,999999999,60,0.0760,0,88,999.000,999.0,99.0 +1986,11,7,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,-7.2,23,97700,0,0,295,0,0,0,0,0,0,0,0,0.0,2,0,56.3,77777,9,999999999,60,0.0760,0,88,999.000,999.0,99.0 +1986,11,7,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,-4.4,29,97700,0,0,301,0,0,0,0,0,0,0,20,2.6,4,1,56.3,77777,9,999999999,70,0.0760,0,88,999.000,999.0,99.0 +1986,11,7,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,-5.6,29,97800,0,0,290,0,0,0,0,0,0,0,140,1.5,0,0,56.3,77777,9,999999999,60,0.0760,0,88,999.000,999.0,99.0 +1986,11,8,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,-6.7,26,97800,0,0,289,0,0,0,0,0,0,0,100,3.1,0,0,56.3,77777,9,999999999,60,0.0760,0,88,999.000,999.0,99.0 +1986,11,8,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,-3.9,35,97900,0,0,287,0,0,0,0,0,0,0,60,2.6,0,0,56.3,77777,9,999999999,70,0.0760,0,88,999.000,999.0,99.0 +1986,11,8,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,-4.4,35,97900,0,0,285,0,0,0,0,0,0,0,70,3.1,0,0,56.3,77777,9,999999999,70,0.0760,0,88,999.000,999.0,99.0 +1986,11,8,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,-3.9,38,97900,0,0,283,0,0,0,0,0,0,0,80,3.6,0,0,56.3,77777,9,999999999,70,0.0760,0,88,999.000,999.0,99.0 +1986,11,8,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,-4.4,38,98000,0,0,280,0,0,0,0,0,0,0,80,2.1,0,0,56.3,77777,9,999999999,70,0.0760,0,88,999.000,999.0,99.0 +1986,11,8,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,-4.4,39,98000,0,0,278,0,0,0,0,0,0,0,90,3.6,0,0,56.3,77777,9,999999999,70,0.0760,0,88,999.000,999.0,99.0 +1986,11,8,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,-3.9,41,98100,1,128,278,3,7,1,0,0,0,0,90,3.1,0,0,56.3,77777,9,999999999,70,0.0580,0,88,999.000,999.0,99.0 +1986,11,8,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,-4.4,36,98200,157,1393,282,75,416,27,7400,26700,4400,480,110,2.6,0,0,72.4,77777,9,999999999,70,0.0580,0,88,999.000,999.0,99.0 +1986,11,8,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,-4.4,32,98200,412,1393,289,266,728,48,27600,65100,8300,1000,90,2.6,0,0,72.4,77777,9,999999999,70,0.0580,0,88,999.000,999.0,99.0 +1986,11,8,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,-5.0,26,98300,627,1393,300,452,851,65,47000,81900,10100,1410,70,2.1,0,0,72.4,77777,9,999999999,70,0.0580,0,88,999.000,999.0,99.0 +1986,11,8,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,-6.1,21,98300,784,1393,308,598,917,77,62100,90300,11100,1740,50,2.6,0,0,72.4,77777,9,999999999,60,0.0580,0,88,999.000,999.0,99.0 +1986,11,8,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,-6.7,17,98300,873,1393,317,680,942,84,70400,93400,11700,1980,240,1.5,0,0,72.4,77777,9,999999999,60,0.0580,0,88,999.000,999.0,99.0 +1986,11,8,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,-9.4,13,98200,887,1393,318,700,956,85,72500,94900,11800,2030,260,1.5,0,0,72.4,77777,9,999999999,50,0.0580,0,88,999.000,999.0,99.0 +1986,11,8,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,-8.3,13,98100,826,1393,324,646,942,81,66900,93100,11500,1860,340,1.5,0,0,64.4,77777,9,999999999,50,0.0580,0,88,999.000,999.0,99.0 +1986,11,8,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,-6.7,14,98100,695,1393,331,522,892,71,54100,86800,10600,1550,190,1.5,0,0,64.4,77777,9,999999999,60,0.0580,0,88,999.000,999.0,99.0 +1986,11,8,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,-6.1,15,98100,500,1393,332,349,802,55,36300,75100,9200,1170,230,2.1,0,0,72.4,77777,9,999999999,60,0.0580,0,88,999.000,999.0,99.0 +1986,11,8,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,-6.1,16,98100,258,1393,327,149,590,37,14900,45600,6500,710,290,2.1,0,0,72.4,77777,9,999999999,60,0.0580,0,88,999.000,999.0,99.0 +1986,11,8,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,-5.6,18,98100,30,662,320,26,103,14,2000,3400,1900,240,240,1.5,0,0,64.4,77777,9,999999999,60,0.0580,0,88,999.000,999.0,99.0 +1986,11,8,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,-5.0,21,98200,0,0,314,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,70,0.0760,0,88,999.000,999.0,99.0 +1986,11,8,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,-3.3,25,98200,0,0,311,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,70,0.0760,0,88,999.000,999.0,99.0 +1986,11,8,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,-2.2,30,98300,0,0,308,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,80,0.0760,0,88,999.000,999.0,99.0 +1986,11,8,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,-2.2,32,98300,0,0,303,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,80,0.0760,0,88,999.000,999.0,99.0 +1986,11,8,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,-2.8,32,98300,0,0,300,0,0,0,0,0,0,0,130,1.5,0,0,56.3,77777,9,999999999,80,0.0760,0,88,999.000,999.0,99.0 +1986,11,8,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,-2.2,36,98300,0,0,296,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,80,0.0760,0,88,999.000,999.0,99.0 +1986,11,9,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,-2.8,34,98300,0,0,295,0,0,0,0,0,0,0,140,2.1,0,0,56.3,77777,9,999999999,70,0.0750,0,88,999.000,999.0,99.0 +1986,11,9,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,-3.3,38,98300,0,0,286,0,0,0,0,0,0,0,180,1.5,0,0,56.3,77777,9,999999999,70,0.0750,0,88,999.000,999.0,99.0 +1986,11,9,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,-3.9,36,98200,0,0,285,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,70,0.0750,0,88,999.000,999.0,99.0 +1986,11,9,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,-3.3,39,98200,0,0,283,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,70,0.0750,0,88,999.000,999.0,99.0 +1986,11,9,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,-2.2,46,98200,0,0,280,0,0,0,0,0,0,0,0,0.0,0,0,48.3,77777,9,999999999,80,0.0750,0,88,999.000,999.0,99.0 +1986,11,9,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,-2.2,46,98200,0,0,280,0,0,0,0,0,0,0,0,0.0,0,0,48.3,77777,9,999999999,80,0.0750,0,88,999.000,999.0,99.0 +1986,11,9,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,-2.8,44,98200,1,105,280,3,4,1,0,0,0,0,0,0.0,0,0,72.4,77777,9,999999999,70,0.0680,0,88,999.000,999.0,99.0 +1986,11,9,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,-1.1,48,98200,152,1394,283,70,374,29,7100,21900,4700,520,0,0.0,0,0,32.2,77777,9,999999999,80,0.0680,0,88,999.000,999.0,99.0 +1986,11,9,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,-2.2,33,98200,407,1394,301,260,705,51,26700,62700,8300,1030,0,0.0,0,0,32.2,77777,9,999999999,80,0.0680,0,88,999.000,999.0,99.0 +1986,11,9,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,-6.1,20,98200,622,1394,310,450,845,70,47300,82000,10600,1520,0,0.0,0,0,64.4,77777,9,999999999,60,0.0680,0,88,999.000,999.0,99.0 +1986,11,9,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,-6.1,18,98200,779,1394,317,593,905,82,61400,89000,11500,1760,0,0.0,0,0,64.4,77777,9,999999999,60,0.0680,0,88,999.000,999.0,99.0 +1986,11,9,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,-5.6,17,98100,868,1394,326,675,933,89,69900,92400,12100,2000,340,1.5,0,0,64.4,77777,9,999999999,60,0.0680,0,88,999.000,999.0,99.0 +1986,11,9,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,-5.0,16,98000,882,1394,333,687,933,90,71000,92500,12200,2050,270,2.1,0,0,72.4,77777,9,999999999,70,0.0680,0,88,999.000,999.0,99.0 +1986,11,9,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,-5.0,15,97800,822,1394,338,632,916,86,65400,90400,11900,1870,270,1.5,0,0,72.4,77777,9,999999999,70,0.0680,0,88,999.000,999.0,99.0 +1986,11,9,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,-4.4,14,97800,690,1394,344,514,875,75,53200,85100,10900,1550,280,1.5,0,0,80.5,77777,9,999999999,60,0.0680,0,88,999.000,999.0,99.0 +1986,11,9,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,-3.9,15,97700,496,1394,345,340,776,59,35200,72300,9300,1220,280,1.5,0,0,80.5,77777,9,999999999,70,0.0680,0,88,999.000,999.0,99.0 +1986,11,9,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,-3.3,17,97700,254,1394,341,143,554,39,14200,42400,6400,720,270,2.1,0,0,80.5,77777,9,999999999,70,0.0680,0,88,999.000,999.0,99.0 +1986,11,9,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,-3.9,18,97700,28,662,336,21,76,12,1700,2500,1600,210,250,2.6,1,1,64.4,77777,9,999999999,70,0.0680,0,88,999.000,999.0,99.0 +1986,11,9,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,-2.8,23,97700,0,0,321,0,0,0,0,0,0,0,230,2.1,0,0,56.3,77777,9,999999999,70,0.0750,0,88,999.000,999.0,99.0 +1986,11,9,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,-2.8,25,97700,0,0,323,0,0,0,0,0,0,0,290,1.5,1,1,56.3,77777,9,999999999,80,0.0750,0,88,999.000,999.0,99.0 +1986,11,9,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,-2.8,27,97700,0,0,318,0,0,0,0,0,0,0,270,1.5,3,1,56.3,77777,9,999999999,80,0.0750,0,88,999.000,999.0,99.0 +1986,11,9,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,-1.7,31,97700,0,0,314,0,0,0,0,0,0,0,200,1.5,3,1,56.3,77777,9,999999999,80,0.0750,0,88,999.000,999.0,99.0 +1986,11,9,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,-3.3,29,97700,0,0,307,0,0,0,0,0,0,0,230,2.1,3,1,56.3,77777,9,999999999,70,0.0750,0,88,999.000,999.0,99.0 +1986,11,9,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,-6.7,23,97700,0,0,298,0,0,0,0,0,0,0,260,2.1,2,0,56.3,77777,9,999999999,60,0.0750,0,88,999.000,999.0,99.0 +1986,11,10,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,-7.2,24,97700,0,0,291,0,0,0,0,0,0,0,260,2.1,4,0,56.3,77777,9,999999999,60,0.0750,0,88,999.000,999.0,99.0 +1986,11,10,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,-7.8,24,97700,0,0,288,0,0,0,0,0,0,0,230,1.5,1,0,56.3,77777,9,999999999,50,0.0750,0,88,999.000,999.0,99.0 +1986,11,10,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,-6.7,27,97700,0,0,287,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,60,0.0750,0,88,999.000,999.0,99.0 +1986,11,10,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,-5.6,31,97700,0,0,285,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,60,0.0750,0,88,999.000,999.0,99.0 +1986,11,10,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,-5.6,32,97700,0,0,283,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,60,0.0750,0,88,999.000,999.0,99.0 +1986,11,10,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,-5.0,34,97700,0,0,284,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,70,0.0750,0,88,999.000,999.0,99.0 +1986,11,10,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,-5.0,32,97800,1,81,292,2,2,1,0,0,0,0,0,0.0,6,1,56.3,77777,9,999999999,60,0.0490,0,88,999.000,999.0,99.0 +1986,11,10,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,-2.2,40,97800,148,1395,295,62,309,29,6300,17800,4400,510,0,0.0,5,1,56.3,77777,9,999999999,80,0.0490,0,88,999.000,999.0,99.0 +1986,11,10,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,-5.0,28,97900,403,1395,305,251,557,89,25400,47900,11500,1580,0,0.0,7,2,40.2,77777,9,999999999,60,0.0490,0,88,999.000,999.0,99.0 +1986,11,10,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,-5.6,22,98000,617,1395,316,323,439,127,34500,43100,15300,2520,240,2.6,7,2,40.2,77777,9,999999999,60,0.0490,0,88,999.000,999.0,99.0 +1986,11,10,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,-4.4,20,98000,774,1395,333,522,615,178,55500,62500,20700,3960,240,1.5,4,3,56.3,77777,9,999999999,70,0.0490,0,88,999.000,999.0,99.0 +1986,11,10,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,-5.0,18,97900,863,1395,337,642,837,120,66500,83200,14800,2730,300,1.5,2,2,56.3,77777,9,999999999,70,0.0490,0,88,999.000,999.0,99.0 +1986,11,10,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,-5.6,15,97800,878,1395,335,686,946,85,71100,93800,11800,2000,330,1.5,1,0,64.4,77777,9,999999999,60,0.0490,0,88,999.000,999.0,99.0 +1986,11,10,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,-5.0,14,97700,817,1395,343,612,887,87,63300,87500,11900,1860,320,1.5,2,0,72.4,77777,9,999999999,60,0.0490,0,88,999.000,999.0,99.0 +1986,11,10,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,-4.4,13,97600,686,1395,350,508,866,77,53400,85100,11400,1700,30,1.5,2,0,72.4,77777,9,999999999,60,0.0490,0,88,999.000,999.0,99.0 +1986,11,10,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,-5.0,12,97600,492,1395,351,344,793,59,35500,73700,9400,1220,220,2.1,2,0,72.4,77777,9,999999999,60,0.0490,0,88,999.000,999.0,99.0 +1986,11,10,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,-5.6,13,97600,251,1395,346,146,608,33,14700,46800,6200,660,250,2.1,0,0,80.5,77777,9,999999999,60,0.0490,0,88,999.000,999.0,99.0 +1986,11,10,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,-5.0,16,97600,26,639,333,24,108,12,1800,4300,1600,220,240,2.1,0,0,72.4,77777,9,999999999,60,0.0490,0,88,999.000,999.0,99.0 +1986,11,10,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,-4.4,18,97700,0,0,329,0,0,0,0,0,0,0,260,1.5,0,0,56.3,77777,9,999999999,70,0.0750,0,88,999.000,999.0,99.0 +1986,11,10,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,-2.8,23,97700,0,0,321,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,70,0.0750,0,88,999.000,999.0,99.0 +1986,11,10,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,-1.1,27,97800,0,0,321,0,0,0,0,0,0,0,70,2.1,0,0,56.3,77777,9,999999999,80,0.0750,0,88,999.000,999.0,99.0 +1986,11,10,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,-3.9,20,97800,0,0,322,0,0,0,0,0,0,0,90,3.1,0,0,56.3,77777,9,999999999,70,0.0750,0,88,999.000,999.0,99.0 +1986,11,10,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,-5.0,21,97900,0,0,314,0,0,0,0,0,0,0,40,1.5,0,0,56.3,77777,9,999999999,70,0.0750,0,88,999.000,999.0,99.0 +1986,11,10,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,-3.3,27,97900,0,0,307,0,0,0,0,0,0,0,210,2.1,0,0,56.3,77777,9,999999999,70,0.0750,0,88,999.000,999.0,99.0 +1986,11,11,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,-2.8,32,97900,0,0,300,0,0,0,0,0,0,0,250,1.5,0,0,56.3,77777,9,999999999,80,0.0740,0,88,999.000,999.0,99.0 +1986,11,11,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,-2.8,34,97900,0,0,295,0,0,0,0,0,0,0,270,2.1,0,0,56.3,77777,9,999999999,70,0.0740,0,88,999.000,999.0,99.0 +1986,11,11,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,-3.3,35,97900,0,0,290,0,0,0,0,0,0,0,230,2.1,0,0,56.3,77777,9,999999999,70,0.0740,0,88,999.000,999.0,99.0 +1986,11,11,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,-5.0,31,97900,0,0,288,0,0,0,0,0,0,0,250,2.1,0,0,56.3,77777,9,999999999,60,0.0740,0,88,999.000,999.0,99.0 +1986,11,11,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,-5.6,31,97900,0,0,285,0,0,0,0,0,0,0,220,2.1,0,0,56.3,77777,9,999999999,60,0.0740,0,88,999.000,999.0,99.0 +1986,11,11,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,-2.8,40,97900,0,0,286,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,80,0.0740,0,88,999.000,999.0,99.0 +1986,11,11,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,-3.3,37,98000,0,81,288,0,0,0,0,0,0,0,0,0.0,1,0,56.3,77777,9,999999999,70,0.0740,0,88,999.000,999.0,99.0 +1986,11,11,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,-2.8,37,98000,144,1395,300,62,282,32,6200,15800,4500,550,0,0.0,3,2,56.3,77777,9,999999999,80,0.0400,0,88,999.000,999.0,99.0 +1986,11,11,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,-2.8,32,98000,398,1395,310,222,506,76,22700,43800,10100,1390,0,0.0,3,2,56.3,77777,9,999999999,80,0.0400,0,88,999.000,999.0,99.0 +1986,11,11,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,-6.1,18,98000,612,1395,331,379,554,134,40200,54300,16300,2670,0,0.0,4,3,40.2,77777,9,999999999,60,0.0400,0,88,999.000,999.0,99.0 +1986,11,11,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,-6.7,15,98000,769,1395,341,512,698,124,53800,69800,15200,2790,280,2.1,4,3,40.2,77777,9,999999999,60,0.0400,0,88,999.000,999.0,99.0 +1986,11,11,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,-3.9,16,97900,858,1395,360,470,442,195,50100,45500,22100,4680,280,1.5,6,4,32.2,7620,9,999999999,70,0.0400,0,88,999.000,999.0,99.0 +1986,11,11,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,-2.8,16,97800,873,1395,370,585,536,246,61100,55000,26500,6130,270,2.1,7,5,32.2,7620,9,999999999,80,0.0400,0,88,999.000,999.0,99.0 +1986,11,11,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,-2.2,15,97700,813,1395,376,493,428,240,52800,45300,26200,5860,240,2.1,8,5,32.2,7620,9,999999999,80,0.0400,0,88,999.000,999.0,99.0 +1986,11,11,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,-1.1,16,97600,681,1395,378,381,299,233,40100,30800,25000,5400,40,1.5,7,4,32.2,7620,9,999999999,80,0.0400,0,88,999.000,999.0,99.0 +1986,11,11,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,-1.1,17,97600,488,1395,369,269,401,126,27700,37100,14700,2430,240,2.1,7,3,48.3,77777,9,999999999,80,0.0400,0,88,999.000,999.0,99.0 +1986,11,11,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,-0.6,19,97600,247,1395,370,108,264,59,11000,18700,7700,1070,240,3.1,7,4,72.4,7620,9,999999999,90,0.0400,0,88,999.000,999.0,99.0 +1986,11,11,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,-0.6,22,97600,25,616,350,25,75,16,2000,2400,1900,280,240,2.1,6,2,64.4,77777,9,999999999,90,0.0400,0,88,999.000,999.0,99.0 +1986,11,11,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,0.6,27,97600,0,0,341,0,0,0,0,0,0,0,300,1.5,6,2,56.3,77777,9,999999999,90,0.0740,0,88,999.000,999.0,99.0 +1986,11,11,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,1.7,32,97600,0,0,337,0,0,0,0,0,0,0,0,0.0,6,2,56.3,77777,9,999999999,100,0.0740,0,88,999.000,999.0,99.0 +1986,11,11,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,1.1,34,97700,0,0,318,0,0,0,0,0,0,0,0,0.0,4,0,48.3,77777,9,999999999,100,0.0740,0,88,999.000,999.0,99.0 +1986,11,11,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,2.2,38,97700,0,0,323,0,0,0,0,0,0,0,0,0.0,4,1,48.3,77777,9,999999999,100,0.0740,0,88,999.000,999.0,99.0 +1986,11,11,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,0.6,36,97700,0,0,321,0,0,0,0,0,0,0,0,0.0,6,2,48.3,77777,9,999999999,90,0.0740,0,88,999.000,999.0,99.0 +1986,11,11,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,1.1,38,97700,0,0,317,0,0,0,0,0,0,0,100,1.5,6,1,56.3,77777,9,999999999,100,0.0740,0,88,999.000,999.0,99.0 +1986,11,12,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,1.1,42,97700,0,0,304,0,0,0,0,0,0,0,0,0.0,3,0,56.3,77777,9,999999999,100,0.0740,0,88,999.000,999.0,99.0 +1986,11,12,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,1.7,45,97700,0,0,302,0,0,0,0,0,0,0,0,0.0,2,0,56.3,77777,9,999999999,100,0.0740,0,88,999.000,999.0,99.0 +1986,11,12,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,2.2,47,97700,0,0,303,0,0,0,0,0,0,0,0,0.0,2,0,56.3,77777,9,999999999,100,0.0740,0,88,999.000,999.0,99.0 +1986,11,12,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,1.1,45,97700,0,0,299,0,0,0,0,0,0,0,0,0.0,2,0,56.3,77777,9,999999999,100,0.0740,0,88,999.000,999.0,99.0 +1986,11,12,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,1.7,51,97600,0,0,296,0,0,0,0,0,0,0,170,1.5,0,0,56.3,77777,9,999999999,100,0.0740,0,88,999.000,999.0,99.0 +1986,11,12,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,2.2,55,97700,0,0,294,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,100,0.0740,0,88,999.000,999.0,99.0 +1986,11,12,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,2.8,57,97700,0,58,294,0,0,0,0,0,0,0,360,1.5,0,0,56.3,77777,9,999999999,110,0.0740,0,88,999.000,999.0,99.0 +1986,11,12,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,2.8,49,97800,139,1396,303,55,229,32,5700,11800,4500,570,0,0.0,0,0,40.2,77777,9,999999999,110,0.1080,0,88,999.000,999.0,99.0 +1986,11,12,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,1.7,37,97900,393,1396,317,225,568,63,23300,49400,9300,1190,0,0.0,0,0,24.1,77777,9,999999999,100,0.1080,0,88,999.000,999.0,99.0 +1986,11,12,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,1.1,28,97900,607,1396,334,414,746,87,43600,72500,12000,1800,260,1.5,0,0,24.1,77777,9,999999999,100,0.1080,0,88,999.000,999.0,99.0 +1986,11,12,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,-3.3,16,97800,764,1396,343,561,828,104,58000,81600,13200,2210,30,3.6,0,0,48.3,77777,9,999999999,70,0.1080,0,88,999.000,999.0,99.0 +1986,11,12,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,-3.9,14,97700,853,1396,357,607,793,118,62800,78800,14500,2670,30,3.1,1,1,64.4,77777,9,999999999,70,0.1080,0,88,999.000,999.0,99.0 +1986,11,12,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,-3.9,13,97600,868,1396,362,630,819,115,65400,81600,14500,2680,40,3.1,1,1,64.4,77777,9,999999999,70,0.1080,0,88,999.000,999.0,99.0 +1986,11,12,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,-3.3,13,97600,808,1396,369,573,771,122,60500,77700,15400,2870,10,3.1,1,1,64.4,77777,9,999999999,70,0.1080,0,88,999.000,999.0,99.0 +1986,11,12,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,-3.9,12,97500,677,1396,370,474,767,97,48400,74400,12200,1930,90,2.1,1,1,64.4,77777,9,999999999,70,0.1080,0,88,999.000,999.0,99.0 +1986,11,12,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,-3.9,11,97500,484,1396,373,304,630,82,31300,57900,11100,1570,60,2.1,1,1,64.4,77777,9,999999999,70,0.1080,0,88,999.000,999.0,99.0 +1986,11,12,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,-3.3,12,97500,243,1396,371,118,373,51,11800,26700,7100,890,140,2.1,1,1,64.4,77777,9,999999999,70,0.1080,0,88,999.000,999.0,99.0 +1986,11,12,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,-2.8,15,97500,24,593,354,17,33,13,0,0,0,0,160,2.1,0,0,56.3,77777,9,999999999,80,0.1080,0,88,999.000,999.0,99.0 +1986,11,12,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,-3.3,17,97600,0,0,341,0,0,0,0,0,0,0,300,1.5,0,0,56.3,77777,9,999999999,70,0.0740,0,88,999.000,999.0,99.0 +1986,11,12,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,1.1,26,97600,0,0,339,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,100,0.0740,0,88,999.000,999.0,99.0 +1986,11,12,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,1.1,30,97700,0,0,328,0,0,0,0,0,0,0,120,2.1,1,0,56.3,77777,9,999999999,100,0.0740,0,88,999.000,999.0,99.0 +1986,11,12,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,1.7,32,97700,0,0,327,0,0,0,0,0,0,0,0,0.0,1,0,56.3,77777,9,999999999,100,0.0740,0,88,999.000,999.0,99.0 +1986,11,12,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,1.1,33,97700,0,0,332,0,0,0,0,0,0,0,0,0.0,2,2,56.3,77777,9,999999999,100,0.0740,0,88,999.000,999.0,99.0 +1986,11,12,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,0.6,32,97700,0,0,331,0,0,0,0,0,0,0,120,2.1,3,2,56.3,77777,9,999999999,90,0.0740,0,88,999.000,999.0,99.0 +1986,11,13,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,0.6,30,97700,0,0,337,0,0,0,0,0,0,0,120,2.1,6,3,56.3,77777,9,999999999,90,0.0740,0,88,999.000,999.0,99.0 +1986,11,13,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,1.7,35,97700,0,0,333,0,0,0,0,0,0,0,170,2.1,8,3,56.3,77777,9,999999999,100,0.0740,0,88,999.000,999.0,99.0 +1986,11,13,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,1.7,34,97700,0,0,336,0,0,0,0,0,0,0,160,1.5,7,3,56.3,77777,9,999999999,100,0.0740,0,88,999.000,999.0,99.0 +1986,11,13,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,1.7,38,97700,0,0,328,0,0,0,0,0,0,0,250,2.1,7,3,48.3,77777,9,999999999,100,0.0740,0,88,999.000,999.0,99.0 +1986,11,13,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,2.2,33,97700,0,0,344,0,0,0,0,0,0,0,110,3.1,7,4,48.3,4570,9,999999999,100,0.0740,0,88,999.000,999.0,99.0 +1986,11,13,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,2.8,34,97700,0,0,342,0,0,0,0,0,0,0,110,3.1,5,3,48.3,77777,9,999999999,110,0.0740,0,88,999.000,999.0,99.0 +1986,11,13,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,3.3,37,97700,0,35,336,0,0,0,0,0,0,0,80,3.1,2,2,48.3,77777,9,999999999,110,0.0740,0,88,999.000,999.0,99.0 +1986,11,13,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,3.3,35,97800,135,1397,337,61,340,27,6100,18700,4300,480,90,4.6,1,1,48.3,77777,9,999999999,110,0.0490,0,88,999.000,999.0,99.0 +1986,11,13,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,3.3,32,97900,389,1397,343,234,642,53,23800,56100,8200,1030,90,4.6,1,1,48.3,77777,9,999999999,110,0.0490,0,88,999.000,999.0,99.0 +1986,11,13,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,3.9,31,97900,602,1397,348,405,800,57,42400,76600,9200,1320,80,4.1,1,1,40.2,77777,9,999999999,110,0.0490,0,88,999.000,999.0,99.0 +1986,11,13,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,4.4,30,97900,759,1397,354,541,862,69,56500,84700,10300,1640,80,3.6,1,1,32.2,77777,9,999999999,120,0.0490,0,88,999.000,999.0,99.0 +1986,11,13,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,3.9,27,97800,848,1397,359,605,782,126,64100,79200,15900,3080,70,3.1,1,1,32.2,77777,9,999999999,110,0.0490,0,88,999.000,999.0,99.0 +1986,11,13,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,5.0,28,97700,864,1397,366,618,881,69,64500,87400,10300,1810,80,5.2,1,1,32.2,77777,9,999999999,120,0.0490,0,88,999.000,999.0,99.0 +1986,11,13,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,4.4,26,97600,804,1397,368,560,840,71,58200,82900,10300,1730,100,5.7,1,1,32.2,77777,9,999999999,120,0.0490,0,88,999.000,999.0,99.0 +1986,11,13,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,4.4,26,97600,673,1397,368,453,773,76,47500,75800,10900,1670,100,5.2,1,1,32.2,77777,9,999999999,120,0.0490,0,88,999.000,999.0,99.0 +1986,11,13,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,4.4,26,97600,481,1397,368,282,582,79,29200,53500,10700,1520,110,4.6,1,1,32.2,77777,9,999999999,120,0.0490,0,88,999.000,999.0,99.0 +1986,11,13,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,4.4,28,97600,240,1397,362,126,498,37,12400,37400,6000,680,110,5.2,1,1,32.2,77777,9,999999999,120,0.0490,0,88,999.000,999.0,99.0 +1986,11,13,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,4.4,30,97600,23,594,354,20,80,11,0,0,0,0,110,4.1,1,1,32.2,77777,9,999999999,120,0.0490,0,88,999.000,999.0,99.0 +1986,11,13,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,3.9,32,97700,0,0,339,0,0,0,0,0,0,0,100,3.1,0,0,32.2,77777,9,999999999,110,0.0740,0,88,999.000,999.0,99.0 +1986,11,13,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,3.3,33,97700,0,0,333,0,0,0,0,0,0,0,110,3.6,0,0,32.2,77777,9,999999999,110,0.0740,0,88,999.000,999.0,99.0 +1986,11,13,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,3.3,36,97800,0,0,328,0,0,0,0,0,0,0,140,2.6,0,0,32.2,77777,9,999999999,110,0.0740,0,88,999.000,999.0,99.0 +1986,11,13,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,3.3,40,97800,0,0,321,0,0,0,0,0,0,0,120,4.1,0,0,32.2,77777,9,999999999,110,0.0740,0,88,999.000,999.0,99.0 +1986,11,13,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,2.8,40,97900,0,0,318,0,0,0,0,0,0,0,140,3.1,0,0,32.2,77777,9,999999999,110,0.0740,0,88,999.000,999.0,99.0 +1986,11,13,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,2.8,43,97900,0,0,313,0,0,0,0,0,0,0,110,2.1,0,0,48.3,77777,9,999999999,110,0.0740,0,88,999.000,999.0,99.0 +1986,11,14,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,2.8,43,97900,0,0,313,0,0,0,0,0,0,0,130,3.6,0,0,56.3,77777,9,999999999,110,0.0730,0,88,999.000,999.0,99.0 +1986,11,14,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,2.8,46,97900,0,0,308,0,0,0,0,0,0,0,110,3.1,0,0,56.3,77777,9,999999999,110,0.0730,0,88,999.000,999.0,99.0 +1986,11,14,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,2.8,46,97900,0,0,308,0,0,0,0,0,0,0,140,3.1,0,0,56.3,77777,9,999999999,110,0.0730,0,88,999.000,999.0,99.0 +1986,11,14,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,2.8,46,97900,0,0,308,0,0,0,0,0,0,0,90,3.1,0,0,56.3,77777,9,999999999,110,0.0730,0,88,999.000,999.0,99.0 +1986,11,14,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,2.8,46,97900,0,0,308,0,0,0,0,0,0,0,90,4.6,0,0,56.3,77777,9,999999999,110,0.0730,0,88,999.000,999.0,99.0 +1986,11,14,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,2.8,47,97900,0,0,306,0,0,0,0,0,0,0,90,4.1,0,0,56.3,77777,9,999999999,110,0.0730,0,88,999.000,999.0,99.0 +1986,11,14,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,2.8,47,98000,0,12,306,0,0,0,0,0,0,0,100,5.2,2,0,64.4,77777,9,999999999,110,0.0730,0,88,999.000,999.0,99.0 +1986,11,14,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,2.8,46,98100,130,1397,308,55,265,29,5400,14200,4100,500,90,4.6,1,0,48.3,77777,9,999999999,110,0.0820,0,88,999.000,999.0,99.0 +1986,11,14,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,3.3,43,98100,384,1397,316,233,619,61,24100,53400,9400,1150,90,4.6,2,0,48.3,77777,9,999999999,110,0.0820,0,88,999.000,999.0,99.0 +1986,11,14,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,3.3,38,98100,598,1397,323,413,751,89,43300,72600,12200,1820,90,5.2,3,0,48.3,77777,9,999999999,110,0.0820,0,88,999.000,999.0,99.0 +1986,11,14,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,3.3,36,98100,754,1397,328,557,835,102,57600,82200,13100,2160,90,3.6,2,0,48.3,77777,9,999999999,110,0.0820,0,88,999.000,999.0,99.0 +1986,11,14,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,3.3,31,98100,844,1397,338,638,863,112,66300,85800,14300,2550,70,3.6,2,0,48.3,77777,9,999999999,110,0.0820,0,88,999.000,999.0,99.0 +1986,11,14,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,3.9,30,98000,859,1397,356,612,741,152,64000,74500,18100,3670,90,3.1,5,2,48.3,77777,9,999999999,110,0.0820,0,88,999.000,999.0,99.0 +1986,11,14,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,3.9,29,97800,799,1397,358,524,552,204,55000,56300,22700,4680,80,2.6,9,2,48.3,77777,9,999999999,110,0.0820,0,88,999.000,999.0,99.0 +1986,11,14,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,3.9,28,97800,669,1397,361,469,569,193,48300,56400,21200,4090,80,3.1,8,2,48.3,77777,9,999999999,110,0.0820,0,88,999.000,999.0,99.0 +1986,11,14,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,3.3,25,97700,477,1397,375,194,147,143,21000,13900,16200,3260,100,3.1,8,5,48.3,7620,9,999999999,110,0.0820,0,88,999.000,999.0,99.0 +1986,11,14,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,3.3,27,97700,237,1397,369,105,189,72,10900,12900,8700,1410,110,2.1,8,5,48.3,7620,9,999999999,110,0.0820,0,88,999.000,999.0,99.0 +1986,11,14,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,3.9,29,97700,21,571,365,16,13,14,0,0,0,0,40,1.5,8,4,48.3,77777,9,999999999,110,0.0820,0,88,999.000,999.0,99.0 +1986,11,14,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,3.9,32,97700,0,0,357,0,0,0,0,0,0,0,60,2.6,10,4,48.3,77777,9,999999999,110,0.0730,0,88,999.000,999.0,99.0 +1986,11,14,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,3.9,35,97700,0,0,351,0,0,0,0,0,0,0,80,2.6,10,4,48.3,77777,9,999999999,120,0.0730,0,88,999.000,999.0,99.0 +1986,11,14,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,3.9,37,97800,0,0,343,0,0,0,0,0,0,0,90,2.1,6,3,48.3,77777,9,999999999,110,0.0730,0,88,999.000,999.0,99.0 +1986,11,14,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,3.3,36,97800,0,0,343,0,0,0,0,0,0,0,80,2.1,7,3,48.3,77777,9,999999999,110,0.0730,0,88,999.000,999.0,99.0 +1986,11,14,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,3.3,37,97900,0,0,340,0,0,0,0,0,0,0,100,2.6,10,3,48.3,77777,9,999999999,110,0.0730,0,88,999.000,999.0,99.0 +1986,11,14,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,3.3,38,97900,0,0,355,0,0,0,0,0,0,0,100,2.1,10,8,56.3,3660,9,999999999,110,0.0730,0,88,999.000,999.0,99.0 +1986,11,15,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,3.3,38,97900,0,0,363,0,0,0,0,0,0,0,120,2.1,9,9,56.3,3660,9,999999999,110,0.0730,0,88,999.000,999.0,99.0 +1986,11,15,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,3.3,38,97900,0,0,363,0,0,0,0,0,0,0,90,3.1,10,9,56.3,3660,9,999999999,110,0.0730,0,88,999.000,999.0,99.0 +1986,11,15,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,3.3,40,97900,0,0,370,0,0,0,0,0,0,0,90,2.6,10,10,56.3,3660,9,999999999,110,0.0730,0,88,999.000,999.0,99.0 +1986,11,15,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,3.3,41,97800,0,0,335,0,0,0,0,0,0,0,80,3.1,6,4,56.3,7620,9,999999999,110,0.0730,0,88,999.000,999.0,99.0 +1986,11,15,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,3.3,43,97900,0,0,326,0,0,0,0,0,0,0,220,1.5,6,2,56.3,77777,9,999999999,110,0.0730,0,88,999.000,999.0,99.0 +1986,11,15,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,3.9,46,97900,0,0,328,0,0,0,0,0,0,0,110,2.1,5,3,64.4,77777,9,999999999,110,0.0730,0,88,999.000,999.0,99.0 +1986,11,15,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,3.9,49,97900,0,0,323,0,0,0,0,0,0,0,320,1.5,5,3,80.5,77777,9,999999999,110,0.0730,0,88,999.000,999.0,99.0 +1986,11,15,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,5.0,55,98000,126,1386,314,45,136,32,4700,6800,4000,570,0,0.0,4,1,64.4,77777,9,999999999,120,0.1220,0,88,999.000,999.0,99.0 +1986,11,15,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,3.9,41,98000,379,1398,328,209,437,89,21700,37300,11600,1650,90,1.5,7,1,64.4,77777,9,999999999,110,0.1220,0,88,999.000,999.0,99.0 +1986,11,15,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,3.9,37,98100,593,1398,335,377,555,139,39600,54000,16600,2760,30,1.5,8,1,64.4,77777,9,999999999,110,0.1220,0,88,999.000,999.0,99.0 +1986,11,15,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,3.9,30,98100,750,1398,351,546,721,156,56300,70900,18100,3320,50,3.1,7,1,56.3,77777,9,999999999,110,0.1220,0,88,999.000,999.0,99.0 +1986,11,15,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,5.0,29,98000,839,1398,368,596,687,180,61500,68200,20400,4120,50,2.1,6,2,56.3,77777,9,999999999,120,0.1220,0,88,999.000,999.0,99.0 +1986,11,15,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,5.6,29,97900,855,1398,371,544,507,231,57000,52000,25100,5610,110,2.1,9,2,40.2,77777,9,999999999,130,0.1220,0,88,999.000,999.0,99.0 +1986,11,15,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,5.6,27,97800,795,1398,381,530,484,251,54400,49100,26400,5870,140,2.1,9,3,40.2,77777,9,999999999,130,0.1220,0,88,999.000,999.0,99.0 +1986,11,15,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,4.4,24,97700,665,1398,373,446,637,139,45700,61600,16200,2780,90,2.1,7,1,40.2,77777,9,999999999,120,0.1220,0,88,999.000,999.0,99.0 +1986,11,15,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,2.8,22,97700,473,1398,380,294,445,141,29900,40700,16100,2760,100,2.1,9,4,40.2,77777,9,999999999,110,0.1220,0,88,999.000,999.0,99.0 +1986,11,15,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,2.8,24,97700,234,1398,391,67,32,61,7300,2500,6900,1490,140,2.1,9,8,40.2,7620,9,999999999,110,0.1220,0,88,999.000,999.0,99.0 +1986,11,15,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,4.4,28,97700,20,571,396,5,1,5,0,0,0,0,160,1.5,10,9,40.2,6100,9,999999999,120,0.1220,0,88,999.000,999.0,99.0 +1986,11,15,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,3.9,28,97700,0,0,403,0,0,0,0,0,0,0,170,1.5,10,10,40.2,6100,9,999999999,110,0.0730,0,88,999.000,999.0,99.0 +1986,11,15,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,6.1,37,97800,0,0,398,0,0,0,0,0,0,0,0,0.0,10,10,40.2,6100,9,999999999,130,0.0730,0,88,999.000,999.0,99.0 +1986,11,15,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,6.7,41,97800,0,0,392,0,0,0,0,0,0,0,30,1.5,10,10,40.2,6100,9,999999999,140,0.0730,0,88,999.000,999.0,99.0 +1986,11,15,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,6.1,42,97900,0,0,351,0,0,0,0,0,0,0,0,0.0,10,4,40.2,77777,9,999999999,130,0.0730,0,88,999.000,999.0,99.0 +1986,11,15,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,6.7,44,97900,0,0,367,0,0,0,0,0,0,0,80,1.5,10,8,40.2,7620,9,999999999,140,0.0730,0,88,999.000,999.0,99.0 +1986,11,15,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,6.7,47,97900,0,0,362,0,0,0,0,0,0,0,90,1.5,10,8,56.3,7620,9,999999999,140,0.0730,0,88,999.000,999.0,99.0 +1986,11,16,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,6.7,48,97900,0,0,354,0,0,0,0,0,0,0,100,2.1,10,7,56.3,7620,9,999999999,140,0.0720,0,88,999.000,999.0,99.0 +1986,11,16,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,6.1,47,97800,0,0,353,0,0,0,0,0,0,0,100,2.1,10,7,56.3,7620,9,999999999,130,0.0720,0,88,999.000,999.0,99.0 +1986,11,16,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,6.7,48,97800,0,0,360,0,0,0,0,0,0,0,100,3.1,10,8,56.3,7620,9,999999999,140,0.0720,0,88,999.000,999.0,99.0 +1986,11,16,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,6.1,47,97800,0,0,349,0,0,0,0,0,0,0,100,2.6,10,6,56.3,7620,9,999999999,130,0.0720,0,88,999.000,999.0,99.0 +1986,11,16,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,6.7,56,97800,0,0,334,0,0,0,0,0,0,0,340,1.5,10,4,56.3,77777,9,999999999,140,0.0720,0,88,999.000,999.0,99.0 +1986,11,16,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,6.1,54,97800,0,0,333,0,0,0,0,0,0,0,0,0.0,10,4,56.3,77777,9,999999999,130,0.0720,0,88,999.000,999.0,99.0 +1986,11,16,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,5.6,52,97800,0,0,330,0,0,0,0,0,0,0,90,1.5,8,3,64.4,77777,9,999999999,130,0.0720,0,88,999.000,999.0,99.0 +1986,11,16,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,5.6,54,97800,122,1364,335,52,29,49,5600,1900,5500,1040,100,2.6,10,6,96.6,7620,9,999999999,130,0.0530,0,88,999.000,999.0,99.0 +1986,11,16,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,5.6,43,97900,375,1399,345,207,438,89,21600,37200,11600,1650,110,2.1,10,4,80.5,77777,9,999999999,130,0.0530,0,88,999.000,999.0,99.0 +1986,11,16,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,6.1,41,97900,588,1399,354,306,373,148,32000,36200,16700,2960,90,2.1,10,4,80.5,77777,9,999999999,130,0.0530,0,88,999.000,999.0,99.0 +1986,11,16,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,6.1,35,97900,745,1399,371,348,237,221,37300,24800,24000,5150,130,2.1,10,6,80.5,7620,9,999999999,130,0.0530,0,88,999.000,999.0,99.0 +1986,11,16,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,6.1,33,97900,834,1399,376,448,228,310,48300,23700,34100,8360,100,1.5,10,6,80.5,7620,9,999999999,130,0.0530,0,88,999.000,999.0,99.0 +1986,11,16,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,5.6,31,97800,850,1399,379,502,409,251,54000,43500,27400,6300,160,1.5,10,6,80.5,6710,9,999999999,130,0.0530,0,88,999.000,999.0,99.0 +1986,11,16,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,5.6,30,97700,791,1399,381,490,478,217,51200,48600,23600,4970,90,1.0,10,6,80.5,6710,9,999999999,130,0.0530,0,88,999.000,999.0,99.0 +1986,11,16,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,5.6,30,97600,662,1399,378,354,305,208,37500,31300,22600,4680,0,0.0,10,5,80.5,77777,9,999999999,130,0.0530,0,88,999.000,999.0,99.0 +1986,11,16,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,6.1,31,97600,470,1399,392,257,151,206,27200,14000,22500,4690,300,1.5,10,8,80.5,4270,9,999999999,130,0.0530,0,88,999.000,999.0,99.0 +1986,11,16,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,6.1,32,97600,231,1399,390,69,49,61,7600,3800,6900,1490,0,0.0,10,8,40.2,4270,9,999999999,130,0.0530,0,88,999.000,999.0,99.0 +1986,11,16,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,6.7,34,97600,19,548,381,13,7,13,0,0,0,0,0,0.0,10,7,40.2,4270,9,999999999,130,0.0530,0,88,999.000,999.0,99.0 +1986,11,16,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,7.2,38,97700,0,0,372,0,0,0,0,0,0,0,0,0.0,10,6,40.2,6710,9,999999999,140,0.0720,0,88,999.000,999.0,99.0 +1986,11,16,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,7.2,41,97700,0,0,367,0,0,0,0,0,0,0,0,0.0,10,6,40.2,6710,9,999999999,140,0.0720,0,88,999.000,999.0,99.0 +1986,11,16,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,7.2,42,97700,0,0,355,0,0,0,0,0,0,0,0,0.0,10,3,40.2,77777,9,999999999,140,0.0720,0,88,999.000,999.0,99.0 +1986,11,16,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,8.9,51,97700,0,0,348,0,0,0,0,0,0,0,0,0.0,10,2,40.2,77777,9,999999999,160,0.0720,0,88,999.000,999.0,99.0 +1986,11,16,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,7.8,47,97700,0,0,359,0,0,0,0,0,0,0,0,0.0,10,6,40.2,6710,9,999999999,150,0.0720,0,88,999.000,999.0,99.0 +1986,11,16,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,7.8,49,97700,0,0,366,0,0,0,0,0,0,0,0,0.0,10,8,56.3,7620,9,999999999,150,0.0720,0,88,999.000,999.0,99.0 +1986,11,17,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,8.3,54,97700,0,0,352,0,0,0,0,0,0,0,70,1.5,10,6,56.3,7620,9,999999999,150,0.0720,0,88,999.000,999.0,99.0 +1986,11,17,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,7.2,52,97700,0,0,352,0,0,0,0,0,0,0,110,2.1,10,7,56.3,7620,9,999999999,140,0.0720,0,88,999.000,999.0,99.0 +1986,11,17,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,6.7,52,97600,0,0,349,0,0,0,0,0,0,0,120,2.1,10,7,56.3,7620,9,999999999,140,0.0720,0,88,999.000,999.0,99.0 +1986,11,17,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,6.7,52,97700,0,0,362,0,0,0,0,0,0,0,0,0.0,10,9,56.3,7620,9,999999999,140,0.0720,0,88,999.000,999.0,99.0 +1986,11,17,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,7.2,56,97700,0,0,359,0,0,0,0,0,0,0,60,2.1,10,9,56.3,7620,9,999999999,140,0.0720,0,88,999.000,999.0,99.0 +1986,11,17,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,6.1,50,97700,0,0,361,0,0,0,0,0,0,0,90,3.1,10,9,56.3,7620,9,999999999,130,0.0720,0,88,999.000,999.0,99.0 +1986,11,17,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,6.1,52,97700,0,0,341,0,0,0,0,0,0,0,80,2.1,10,6,64.4,7620,9,999999999,130,0.0720,0,88,999.000,999.0,99.0 +1986,11,17,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,6.1,50,97700,118,1341,348,41,26,39,4500,1700,4400,890,100,1.5,10,7,48.3,7620,9,999999999,130,0.0490,0,88,999.000,999.0,99.0 +1986,11,17,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,6.1,41,97700,370,1399,354,219,455,97,22500,38400,12300,1820,80,3.1,10,4,40.2,77777,9,999999999,130,0.0490,0,88,999.000,999.0,99.0 +1986,11,17,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,6.7,39,97800,583,1399,366,334,265,222,35700,26100,24700,5260,70,2.6,10,6,40.2,7620,9,999999999,140,0.0490,0,88,999.000,999.0,99.0 +1986,11,17,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,7.2,37,97800,740,1399,379,359,297,201,38700,31100,22200,4590,100,1.5,10,7,40.2,7620,9,999999999,140,0.0490,0,88,999.000,999.0,99.0 +1986,11,17,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,7.8,38,97700,830,1399,395,265,71,223,29200,7100,25000,7380,80,1.5,10,9,24.1,7620,9,999999999,150,0.0490,0,88,999.000,999.0,99.0 +1986,11,17,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,7.8,37,97700,846,1399,409,224,7,220,26000,600,25600,9490,100,2.1,10,10,16.1,6100,9,999999999,150,0.0490,0,88,999.000,999.0,99.0 +1986,11,17,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,7.2,34,97600,787,1399,411,192,5,189,22300,400,22000,8170,80,1.5,10,10,16.1,5490,9,999999999,140,0.0490,0,88,999.000,999.0,99.0 +1986,11,17,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,7.2,33,97500,658,1399,414,207,11,202,23400,900,22900,7690,80,1.5,10,10,16.1,5490,9,999999999,140,0.0490,0,88,999.000,999.0,99.0 +1986,11,17,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,7.2,34,97500,467,1399,411,128,8,126,14500,500,14300,4610,0,0.0,10,10,24.1,5490,9,999999999,140,0.0490,0,88,999.000,999.0,99.0 +1986,11,17,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,7.2,34,97500,228,1399,411,68,2,67,7400,100,7400,2120,180,1.5,10,10,24.1,5490,9,999999999,140,0.0490,0,88,999.000,999.0,99.0 +1986,11,17,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,8.3,38,97500,18,525,409,11,1,11,0,0,0,0,240,1.5,10,10,16.1,3660,9,999999999,150,0.0490,0,88,999.000,999.0,99.0 +1986,11,17,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,8.3,40,97500,0,0,406,0,0,0,0,0,0,0,250,1.5,10,10,16.1,3660,9,999999999,150,0.0720,0,88,999.000,999.0,99.0 +1986,11,17,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,8.9,44,97500,0,0,401,0,0,0,0,0,0,0,0,0.0,10,10,16.1,3660,9,999999999,160,0.0720,0,88,999.000,999.0,99.0 +1986,11,17,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,9.4,44,97500,0,0,405,0,0,0,0,0,0,0,0,0.0,10,10,16.1,3660,9,999999999,160,0.0720,0,88,999.000,999.0,99.0 +1986,11,17,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,9.4,46,97500,0,0,402,0,0,0,0,0,0,0,0,0.0,10,10,16.1,3660,9,999999999,160,0.0720,0,88,999.000,999.0,99.0 +1986,11,17,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,9.4,47,97600,0,0,399,0,0,0,0,0,0,0,230,1.5,10,10,16.1,3660,9,999999999,160,0.0720,0,88,999.000,999.0,99.0 +1986,11,17,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,9.4,47,97600,0,0,399,0,0,0,0,0,0,0,60,2.1,10,10,24.1,3660,9,999999999,160,0.0720,0,88,999.000,999.0,99.0 +1986,11,18,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,9.4,47,97600,0,0,399,0,0,0,0,0,0,0,70,2.1,10,10,56.3,3660,9,999999999,160,0.0720,0,88,999.000,999.0,99.0 +1986,11,18,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,9.4,49,97600,0,0,396,0,0,0,0,0,0,0,80,2.1,10,10,32.2,3660,9,999999999,160,0.0720,0,88,999.000,999.0,99.0 +1986,11,18,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,10.0,51,97600,0,0,397,0,0,0,0,0,0,0,90,2.1,10,10,32.2,3660,9,999999999,170,0.0720,0,88,999.000,999.0,99.0 +1986,11,18,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,11.7,59,97600,0,0,396,0,0,0,0,0,0,0,50,2.1,10,10,32.2,3660,9,999999999,190,0.0720,0,88,999.000,999.0,99.0 +1986,11,18,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,11.7,59,97600,0,0,396,0,0,0,0,0,0,0,90,2.6,10,10,24.1,1980,9,999999999,190,0.0720,0,88,999.000,999.0,99.0 +1986,11,18,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,15.0,76,97600,0,0,397,0,0,0,0,0,0,0,40,2.1,10,10,32.2,1980,9,999999999,230,0.0720,0,88,999.000,999.0,99.0 +1986,11,18,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,14.4,76,97600,0,0,393,0,0,0,0,0,0,0,60,2.6,10,10,32.2,3660,9,999999999,220,0.0720,0,88,999.000,999.0,99.0 +1986,11,18,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,15.0,73,97600,114,1318,400,29,0,29,3200,0,3200,970,70,3.6,10,10,32.2,1980,9,999999999,230,0.0630,0,88,999.000,999.0,99.0 +1986,11,18,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,15.6,78,97700,365,1400,398,77,4,76,8800,200,8700,2870,0,0.0,10,10,24.1,1520,9,999999999,240,0.0630,0,88,999.000,999.0,99.0 +1986,11,18,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,14.4,68,97600,579,1400,391,219,100,177,24000,9700,19900,4960,80,3.1,9,9,32.2,1520,9,999999999,220,0.0630,0,88,999.000,999.0,99.0 +1986,11,18,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,13.9,59,97600,736,1400,411,206,30,190,22700,3000,21100,6000,120,2.1,10,10,32.2,1830,9,999999999,209,0.0630,0,88,999.000,999.0,99.0 +1986,11,18,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,13.3,54,97500,825,1400,416,197,1,196,22900,100,22800,8600,160,2.6,10,10,32.2,1830,9,999999999,209,0.0630,0,88,999.000,999.0,99.0 +1986,11,18,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,13.9,49,97400,842,1400,409,446,222,312,48200,23100,34300,8460,130,4.6,8,8,32.2,1830,9,999999999,220,0.0630,0,88,999.000,999.0,99.0 +1986,11,18,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,17.8,74,97300,783,1400,393,461,283,301,49600,29200,33100,7860,180,2.6,7,7,48.3,1830,9,999999999,270,0.0630,0,88,999.000,999.0,99.0 +1986,11,18,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,17.2,62,97200,654,1400,399,315,270,188,33600,27700,20700,4140,280,1.5,6,6,24.1,1830,9,999999999,260,0.0630,0,88,999.000,999.0,99.0 +1986,11,18,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,16.7,60,97100,464,1400,395,185,103,151,20000,9600,16800,3420,280,2.6,5,5,32.2,77777,9,999999999,250,0.0630,0,88,999.000,999.0,99.0 +1986,11,18,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,16.1,64,97200,225,1400,383,75,108,57,8100,7700,6900,1210,290,4.1,4,4,32.2,77777,9,999999999,240,0.0630,0,88,999.000,999.0,99.0 +1986,11,18,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,16.1,66,97200,17,525,386,14,18,12,0,0,0,0,240,2.6,6,6,32.2,2130,9,999999999,240,0.0630,0,88,999.000,999.0,99.0 +1986,11,18,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,16.1,76,97300,0,0,375,0,0,0,0,0,0,0,270,2.1,6,6,40.2,2130,9,999999999,250,0.0720,0,88,999.000,999.0,99.0 +1986,11,18,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,15.6,78,97400,0,0,365,0,0,0,0,0,0,0,270,2.1,5,5,40.2,77777,9,999999999,230,0.0720,0,88,999.000,999.0,99.0 +1986,11,18,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,15.6,84,97400,0,0,357,0,0,0,0,0,0,0,160,1.5,4,4,40.2,77777,9,999999999,240,0.0720,0,88,999.000,999.0,99.0 +1986,11,18,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,15.6,84,97400,0,0,367,0,0,0,0,0,0,0,220,1.5,7,7,40.2,2440,9,999999999,240,0.0720,0,88,999.000,999.0,99.0 +1986,11,18,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,15.6,81,97500,0,0,370,0,0,0,0,0,0,0,0,0.0,7,7,48.3,2440,9,999999999,240,0.0720,0,88,999.000,999.0,99.0 +1986,11,18,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,15.6,84,97500,0,0,354,0,0,0,0,0,0,0,0,0.0,5,3,48.3,77777,9,999999999,240,0.0720,0,88,999.000,999.0,99.0 +1986,11,19,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,15.0,87,97500,0,0,345,0,0,0,0,0,0,0,0,0.0,2,2,48.3,77777,9,999999999,230,0.0710,0,88,999.000,999.0,99.0 +1986,11,19,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,15.0,90,97400,0,0,338,0,0,0,0,0,0,0,0,0.0,1,1,11.3,77777,9,999999999,230,0.0710,0,88,999.000,999.0,99.0 +1986,11,19,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,15.0,93,97500,0,0,335,0,0,0,0,0,0,0,0,0.0,1,1,11.3,77777,9,999999999,230,0.0710,0,88,999.000,999.0,99.0 +1986,11,19,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,15.0,93,97500,0,0,329,0,0,0,0,0,0,0,0,0.0,2,0,11.3,77777,9,999999999,230,0.0710,0,88,999.000,999.0,99.0 +1986,11,19,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,14.4,97,97500,0,0,334,0,0,0,0,0,0,0,0,0.0,2,2,11.3,77777,9,999999999,220,0.0710,0,88,999.000,999.0,99.0 +1986,11,19,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,13.9,93,97600,0,0,336,0,0,0,0,0,0,0,0,0.0,3,3,2.4,77777,9,999999999,209,0.0710,0,88,999.000,999.0,99.0 +1986,11,19,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,13.9,93,97600,0,0,322,0,0,0,0,0,0,0,0,0.0,0,0,11.3,77777,9,999999999,209,0.0710,0,88,999.000,999.0,99.0 +1986,11,19,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,13.9,87,97700,110,1295,334,41,132,28,4200,6400,3600,500,80,1.5,1,1,16.1,77777,9,999999999,209,0.1160,0,88,999.000,999.0,99.0 +1986,11,19,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,13.3,75,97700,361,1400,335,189,490,62,19500,41300,8800,1150,100,1.5,0,0,16.1,77777,9,999999999,209,0.1160,0,88,999.000,999.0,99.0 +1986,11,19,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,13.9,73,97700,574,1400,347,363,590,119,37200,55700,14300,2270,80,2.1,1,1,19.3,77777,9,999999999,209,0.1160,0,88,999.000,999.0,99.0 +1986,11,19,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,13.9,64,97700,731,1400,366,440,461,197,45900,46400,21600,4300,60,1.5,3,3,9.7,77777,9,999999999,220,0.1160,0,88,999.000,999.0,99.0 +1986,11,19,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,11.7,55,97700,821,1400,363,556,668,160,57600,66600,18500,3660,90,1.5,3,3,9.7,77777,9,999999999,190,0.1160,0,88,999.000,999.0,99.0 +1986,11,19,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,11.7,50,97600,838,1400,368,534,529,214,56200,54200,23700,5070,140,2.1,2,2,11.3,77777,9,999999999,190,0.1160,0,88,999.000,999.0,99.0 +1986,11,19,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,11.1,46,97500,780,1400,365,529,725,121,55600,72700,15000,2760,240,2.6,1,1,16.1,77777,9,999999999,180,0.1160,0,88,999.000,999.0,99.0 +1986,11,19,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,10.0,42,97500,651,1400,366,433,710,98,45300,69600,12800,2060,290,2.1,1,1,19.3,77777,9,999999999,170,0.1160,0,88,999.000,999.0,99.0 +1986,11,19,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,10.0,42,97500,461,1400,360,283,624,74,29200,56700,10400,1420,240,2.1,0,0,32.2,77777,9,999999999,170,0.1160,0,88,999.000,999.0,99.0 +1986,11,19,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,10.6,45,97500,223,1400,357,104,351,46,10400,24200,6500,800,270,2.6,0,0,40.2,77777,9,999999999,180,0.1160,0,88,999.000,999.0,99.0 +1986,11,19,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,10.0,48,97500,17,525,349,12,19,10,0,0,0,0,250,2.1,0,0,40.2,77777,9,999999999,170,0.1160,0,88,999.000,999.0,99.0 +1986,11,19,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,11.7,57,97600,0,0,346,0,0,0,0,0,0,0,250,2.1,0,0,40.2,77777,9,999999999,190,0.0710,0,88,999.000,999.0,99.0 +1986,11,19,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,11.7,61,97600,0,0,340,0,0,0,0,0,0,0,210,1.5,0,0,32.2,77777,9,999999999,190,0.0710,0,88,999.000,999.0,99.0 +1986,11,19,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,12.2,65,97700,0,0,338,0,0,0,0,0,0,0,0,0.0,0,0,32.2,77777,9,999999999,190,0.0710,0,88,999.000,999.0,99.0 +1986,11,19,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,12.2,68,97700,0,0,336,0,0,0,0,0,0,0,0,0.0,0,0,32.2,77777,9,999999999,190,0.0710,0,88,999.000,999.0,99.0 +1986,11,19,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,11.7,68,97700,0,0,333,0,0,0,0,0,0,0,0,0.0,0,0,32.2,77777,9,999999999,190,0.0710,0,88,999.000,999.0,99.0 +1986,11,19,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,12.2,73,97700,0,0,331,0,0,0,0,0,0,0,0,0.0,0,0,32.2,77777,9,999999999,190,0.0710,0,88,999.000,999.0,99.0 +1986,11,20,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,11.7,73,97700,0,0,328,0,0,0,0,0,0,0,160,1.5,0,0,32.2,77777,9,999999999,190,0.0710,0,88,999.000,999.0,99.0 +1986,11,20,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,11.7,75,97700,0,0,325,0,0,0,0,0,0,0,100,1.5,0,0,32.2,77777,9,999999999,190,0.0710,0,88,999.000,999.0,99.0 +1986,11,20,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,11.7,81,97700,0,0,320,0,0,0,0,0,0,0,0,0.0,0,0,32.2,77777,9,999999999,190,0.0710,0,88,999.000,999.0,99.0 +1986,11,20,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,11.1,81,97700,0,0,317,0,0,0,0,0,0,0,0,0.0,0,0,32.2,77777,9,999999999,180,0.0710,0,88,999.000,999.0,99.0 +1986,11,20,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,11.1,81,97700,0,0,317,0,0,0,0,0,0,0,0,0.0,0,0,32.2,77777,9,999999999,180,0.0710,0,88,999.000,999.0,99.0 +1986,11,20,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,10.6,83,97700,0,0,312,0,0,0,0,0,0,0,0,0.0,0,0,32.2,77777,9,999999999,170,0.0710,0,88,999.000,999.0,99.0 +1986,11,20,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,10.6,83,97700,0,0,312,0,0,0,0,0,0,0,0,0.0,0,0,32.2,77777,9,999999999,170,0.0710,0,88,999.000,999.0,99.0 +1986,11,20,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,10.6,78,97800,106,1273,316,44,149,29,4400,7100,3800,520,70,2.1,0,0,32.2,77777,9,999999999,170,0.1190,0,88,999.000,999.0,99.0 +1986,11,20,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,10.6,67,97900,356,1401,327,196,522,62,20100,43700,9000,1140,100,2.6,0,0,32.2,77777,9,999999999,170,0.1190,0,88,999.000,999.0,99.0 +1986,11,20,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,11.1,61,97900,570,1401,337,372,696,87,39000,66600,11800,1750,110,3.6,0,0,32.2,77777,9,999999999,180,0.1190,0,88,999.000,999.0,99.0 +1986,11,20,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,10.0,49,97900,727,1401,346,511,775,105,53900,77300,13700,2320,80,2.6,0,0,32.2,77777,9,999999999,170,0.1190,0,88,999.000,999.0,99.0 +1986,11,20,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,8.9,41,97800,817,1401,353,595,816,115,61400,80700,14200,2490,100,2.6,0,0,32.2,77777,9,999999999,160,0.1190,0,88,999.000,999.0,99.0 +1986,11,20,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,7.2,32,97600,834,1401,361,614,828,117,63400,82000,14400,2570,80,3.1,0,0,48.3,77777,9,999999999,140,0.1190,0,88,999.000,999.0,99.0 +1986,11,20,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,7.2,31,97500,776,1401,364,562,807,111,57800,79400,13700,2320,60,2.6,0,0,64.4,77777,9,999999999,140,0.1190,0,88,999.000,999.0,99.0 +1986,11,20,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,7.8,30,97500,648,1401,371,447,749,97,46900,73400,12800,2030,50,2.6,0,0,64.4,77777,9,999999999,140,0.1190,0,88,999.000,999.0,99.0 +1986,11,20,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,7.8,30,97500,458,1401,371,284,629,75,29300,57000,10600,1430,130,2.1,0,0,64.4,77777,9,999999999,140,0.1190,0,88,999.000,999.0,99.0 +1986,11,20,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,7.2,30,97400,220,1401,367,105,361,46,10400,24800,6500,800,0,0.0,0,0,64.4,77777,9,999999999,140,0.1190,0,88,999.000,999.0,99.0 +1986,11,20,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,7.2,33,97400,16,502,359,11,17,9,0,0,0,0,250,1.5,0,0,64.4,77777,9,999999999,140,0.1190,0,88,999.000,999.0,99.0 +1986,11,20,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,7.2,36,97500,0,0,353,0,0,0,0,0,0,0,280,3.1,0,0,56.3,77777,9,999999999,140,0.0710,0,88,999.000,999.0,99.0 +1986,11,20,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,8.3,44,97500,0,0,344,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,150,0.0710,0,88,999.000,999.0,99.0 +1986,11,20,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,8.3,47,97500,0,0,339,0,0,0,0,0,0,0,220,2.1,0,0,56.3,77777,9,999999999,150,0.0710,0,88,999.000,999.0,99.0 +1986,11,20,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,8.3,51,97500,0,0,334,0,0,0,0,0,0,0,0,0.0,0,0,48.3,77777,9,999999999,150,0.0710,0,88,999.000,999.0,99.0 +1986,11,20,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,7.8,50,97500,0,0,331,0,0,0,0,0,0,0,0,0.0,0,0,48.3,77777,9,999999999,140,0.0710,0,88,999.000,999.0,99.0 +1986,11,20,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,8.3,54,97500,0,0,329,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,150,0.0710,0,88,999.000,999.0,99.0 +1986,11,21,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,8.9,63,97500,0,0,322,0,0,0,0,0,0,0,140,2.1,0,0,56.3,77777,9,999999999,160,0.0710,0,88,999.000,999.0,99.0 +1986,11,21,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,8.9,63,97500,0,0,322,0,0,0,0,0,0,0,130,1.5,0,0,56.3,77777,9,999999999,160,0.0710,0,88,999.000,999.0,99.0 +1986,11,21,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,9.4,67,97500,0,0,320,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,160,0.0710,0,88,999.000,999.0,99.0 +1986,11,21,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,9.4,70,97500,0,0,318,0,0,0,0,0,0,0,100,2.1,0,0,56.3,77777,9,999999999,160,0.0710,0,88,999.000,999.0,99.0 +1986,11,21,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,8.9,67,97500,0,0,317,0,0,0,0,0,0,0,90,2.6,0,0,56.3,77777,9,999999999,160,0.0710,0,88,999.000,999.0,99.0 +1986,11,21,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,8.9,67,97500,0,0,317,0,0,0,0,0,0,0,90,2.1,0,0,56.3,77777,9,999999999,160,0.0710,0,88,999.000,999.0,99.0 +1986,11,21,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,8.3,67,97500,0,0,314,0,0,0,0,0,0,0,120,2.1,0,0,56.3,77777,9,999999999,150,0.0710,0,88,999.000,999.0,99.0 +1986,11,21,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,8.3,65,97500,102,1250,317,50,281,22,4700,14800,3500,400,90,3.6,1,0,56.3,77777,9,999999999,150,0.0510,0,88,999.000,999.0,99.0 +1986,11,21,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,8.9,58,97600,352,1402,327,214,659,47,21900,56100,7700,920,80,3.6,2,0,48.3,77777,9,999999999,160,0.0510,0,88,999.000,999.0,99.0 +1986,11,21,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,8.9,53,97600,565,1402,335,391,812,61,41200,77700,9800,1320,80,2.1,1,0,32.2,77777,9,999999999,160,0.0510,0,88,999.000,999.0,99.0 +1986,11,21,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,8.9,44,97600,722,1402,348,529,889,68,55300,86900,10300,1570,110,1.5,0,0,24.1,77777,9,999999999,160,0.0510,0,88,999.000,999.0,99.0 +1986,11,21,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,8.9,40,97500,813,1402,355,610,916,74,63500,90400,10800,1760,110,1.5,0,0,9.7,77777,9,999999999,160,0.0510,0,88,999.000,999.0,99.0 +1986,11,21,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,8.9,37,97400,830,1402,361,628,924,76,65300,91300,11000,1810,80,1.5,0,0,9.7,77777,9,999999999,150,0.0510,0,88,999.000,999.0,99.0 +1986,11,21,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,8.3,35,97300,772,1402,363,577,907,72,60000,89200,10700,1680,290,1.5,0,0,11.3,77777,9,999999999,150,0.0510,0,88,999.000,999.0,99.0 +1986,11,21,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,7.8,32,97300,645,1402,365,466,865,63,48500,83500,9900,1420,310,3.6,0,0,16.1,77777,9,999999999,140,0.0510,0,88,999.000,999.0,99.0 +1986,11,21,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,8.3,34,97300,455,1402,366,302,767,49,31500,70100,8600,1070,320,2.6,0,0,40.2,77777,9,999999999,150,0.0510,0,88,999.000,999.0,99.0 +1986,11,21,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,7.2,32,97300,218,1402,361,118,539,32,11800,39200,5700,610,270,2.6,0,0,48.3,77777,9,999999999,140,0.0510,0,88,999.000,999.0,99.0 +1986,11,21,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,7.8,38,97300,15,502,352,18,66,9,0,0,0,0,270,3.1,0,0,48.3,77777,9,999999999,150,0.0510,0,88,999.000,999.0,99.0 +1986,11,21,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,7.8,41,97300,0,0,346,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,150,0.0710,0,88,999.000,999.0,99.0 +1986,11,21,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,7.8,45,97300,0,0,339,0,0,0,0,0,0,0,200,2.1,0,0,56.3,77777,9,999999999,140,0.0710,0,88,999.000,999.0,99.0 +1986,11,21,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,8.3,49,97300,0,0,336,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,150,0.0710,0,88,999.000,999.0,99.0 +1986,11,21,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,8.9,53,97300,0,0,346,0,0,0,0,0,0,0,0,0.0,2,2,56.3,77777,9,999999999,160,0.0710,0,88,999.000,999.0,99.0 +1986,11,21,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,8.9,54,97400,0,0,338,0,0,0,0,0,0,0,110,2.6,1,1,56.3,77777,9,999999999,160,0.0710,0,88,999.000,999.0,99.0 +1986,11,21,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,8.9,58,97400,0,0,327,0,0,0,0,0,0,0,100,2.1,0,0,56.3,77777,9,999999999,160,0.0710,0,88,999.000,999.0,99.0 +1986,11,22,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,8.9,60,97400,0,0,325,0,0,0,0,0,0,0,120,1.5,0,0,56.3,77777,9,999999999,160,0.0700,0,88,999.000,999.0,99.0 +1986,11,22,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,8.9,63,97400,0,0,322,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,160,0.0700,0,88,999.000,999.0,99.0 +1986,11,22,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,8.9,72,97400,0,0,312,0,0,0,0,0,0,0,20,2.1,0,0,56.3,77777,9,999999999,160,0.0700,0,88,999.000,999.0,99.0 +1986,11,22,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,8.9,72,97500,0,0,312,0,0,0,0,0,0,0,90,2.1,0,0,56.3,77777,9,999999999,160,0.0700,0,88,999.000,999.0,99.0 +1986,11,22,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,8.9,72,97500,0,0,312,0,0,0,0,0,0,0,60,1.0,0,0,40.2,77777,9,999999999,160,0.0700,0,88,999.000,999.0,99.0 +1986,11,22,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,8.9,75,97500,0,0,316,0,0,0,0,0,0,0,0,0.0,1,1,40.2,77777,9,999999999,160,0.0700,0,88,999.000,999.0,99.0 +1986,11,22,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,8.9,75,97500,0,0,320,0,0,0,0,0,0,0,0,0.0,2,2,40.2,77777,9,999999999,160,0.0700,0,88,999.000,999.0,99.0 +1986,11,22,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,8.9,72,97600,98,1227,312,50,283,21,4600,14800,3400,380,0,0.0,0,0,48.3,77777,9,999999999,160,0.0530,0,88,999.000,999.0,99.0 +1986,11,22,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,8.9,63,97600,347,1402,322,210,675,41,21800,57600,7400,850,300,3.1,0,0,48.3,77777,9,999999999,160,0.0530,0,88,999.000,999.0,99.0 +1986,11,22,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,8.9,54,97700,561,1402,338,368,760,61,38700,72600,9500,1310,300,3.6,1,1,40.2,77777,9,999999999,160,0.0530,0,88,999.000,999.0,99.0 +1986,11,22,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,8.9,51,97700,718,1402,337,522,877,69,54400,85600,10400,1570,280,4.1,0,0,40.2,77777,9,999999999,160,0.0530,0,88,999.000,999.0,99.0 +1986,11,22,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,6.1,38,97600,809,1402,342,606,911,75,62900,89900,10900,1770,280,5.2,0,0,56.3,77777,9,999999999,130,0.0530,0,88,999.000,999.0,99.0 +1986,11,22,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,5.6,33,97500,826,1402,349,624,921,76,64800,91000,11000,1810,320,5.7,0,0,56.3,77777,9,999999999,130,0.0530,0,88,999.000,999.0,99.0 +1986,11,22,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,1.7,24,97500,769,1402,347,581,918,73,60500,90200,10800,1680,290,4.6,0,0,56.3,77777,9,999999999,100,0.0530,0,88,999.000,999.0,99.0 +1986,11,22,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,0.6,22,97400,642,1402,345,469,874,63,48700,84300,10000,1410,300,6.2,0,0,64.4,77777,9,999999999,90,0.0530,0,88,999.000,999.0,99.0 +1986,11,22,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,-1.1,20,97400,453,1402,341,304,773,49,31500,70500,8600,1070,310,7.2,0,0,80.5,77777,9,999999999,80,0.0530,0,88,999.000,999.0,99.0 +1986,11,22,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,-1.7,20,97400,216,1402,337,118,542,32,11700,39300,5700,610,320,5.2,0,0,80.5,77777,9,999999999,80,0.0530,0,88,999.000,999.0,99.0 +1986,11,22,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,-2.8,21,97400,15,479,326,17,65,9,0,0,0,0,240,5.2,0,0,64.4,77777,9,999999999,70,0.0530,0,88,999.000,999.0,99.0 +1986,11,22,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,-2.8,23,97500,0,0,321,0,0,0,0,0,0,0,270,5.2,0,0,56.3,77777,9,999999999,70,0.0700,0,88,999.000,999.0,99.0 +1986,11,22,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,-5.0,21,97500,0,0,314,0,0,0,0,0,0,0,320,4.6,0,0,56.3,77777,9,999999999,60,0.0700,0,88,999.000,999.0,99.0 +1986,11,22,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,-4.4,23,97600,0,0,316,0,0,0,0,0,0,0,330,3.1,1,1,56.3,77777,9,999999999,70,0.0700,0,88,999.000,999.0,99.0 +1986,11,22,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,-5.6,22,97600,0,0,312,0,0,0,0,0,0,0,300,3.1,1,1,56.3,77777,9,999999999,60,0.0700,0,88,999.000,999.0,99.0 +1986,11,22,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,-5.6,26,97600,0,0,297,0,0,0,0,0,0,0,310,2.6,0,0,56.3,77777,9,999999999,60,0.0700,0,88,999.000,999.0,99.0 +1986,11,22,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,-4.4,28,97700,0,0,304,0,0,0,0,0,0,0,320,3.1,1,1,56.3,77777,9,999999999,70,0.0700,0,88,999.000,999.0,99.0 +1986,11,23,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,-2.2,32,97700,0,0,303,0,0,0,0,0,0,0,330,3.6,0,0,56.3,77777,9,999999999,80,0.0700,0,88,999.000,999.0,99.0 +1986,11,23,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,-4.4,25,97700,0,0,305,0,0,0,0,0,0,0,340,4.6,0,0,56.3,77777,9,999999999,70,0.0700,0,88,999.000,999.0,99.0 +1986,11,23,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,-4.4,27,97700,0,0,300,0,0,0,0,0,0,0,260,3.1,0,0,56.3,77777,9,999999999,70,0.0700,0,88,999.000,999.0,99.0 +1986,11,23,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,-4.4,32,97700,0,0,289,0,0,0,0,0,0,0,230,2.1,0,0,56.3,77777,9,999999999,70,0.0700,0,88,999.000,999.0,99.0 +1986,11,23,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,-3.9,35,97800,0,0,287,0,0,0,0,0,0,0,200,2.1,0,0,56.3,77777,9,999999999,70,0.0700,0,88,999.000,999.0,99.0 +1986,11,23,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,-3.9,36,97800,0,0,285,0,0,0,0,0,0,0,70,1.5,0,0,56.3,77777,9,999999999,70,0.0700,0,88,999.000,999.0,99.0 +1986,11,23,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,-3.3,39,97900,0,0,283,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,70,0.0700,0,88,999.000,999.0,99.0 +1986,11,23,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,-3.3,39,98000,95,1204,283,49,292,20,4500,15100,3300,360,230,2.1,0,0,112.7,77777,9,999999999,70,0.0490,0,88,999.000,999.0,99.0 +1986,11,23,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,-2.8,35,98100,343,1403,293,213,704,40,22200,59900,7500,830,0,0.0,0,0,112.7,77777,9,999999999,70,0.0490,0,88,999.000,999.0,99.0 +1986,11,23,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,-3.3,27,98200,556,1403,307,395,849,55,41300,80300,9300,1250,320,2.1,0,0,112.7,77777,9,999999999,70,0.0490,0,88,999.000,999.0,99.0 +1986,11,23,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,-5.0,21,98200,714,1403,314,535,914,66,55800,89200,10300,1540,130,1.5,0,0,112.7,77777,9,999999999,70,0.0490,0,88,999.000,999.0,99.0 +1986,11,23,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,-5.6,18,98100,804,1403,320,622,949,73,64800,93600,10900,1740,320,2.1,0,0,112.7,77777,9,999999999,60,0.0490,0,88,999.000,999.0,99.0 +1986,11,23,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,-7.2,15,98100,822,1403,324,639,954,74,66400,94200,11000,1780,290,2.6,0,0,112.7,77777,9,999999999,60,0.0490,0,88,999.000,999.0,99.0 +1986,11,23,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,-7.8,14,98000,766,1403,325,588,938,70,61100,92200,10600,1650,0,0.0,0,0,112.7,77777,9,999999999,60,0.0490,0,88,999.000,999.0,99.0 +1986,11,23,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,-7.8,13,98000,639,1403,328,476,899,61,49500,86700,9900,1400,250,1.5,0,0,112.7,77777,9,999999999,50,0.0490,0,88,999.000,999.0,99.0 +1986,11,23,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,-8.9,12,98000,450,1403,329,309,800,48,32200,72900,8700,1060,300,3.1,0,0,112.7,77777,9,999999999,50,0.0490,0,88,999.000,999.0,99.0 +1986,11,23,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,-7.2,14,98000,214,1403,328,119,560,31,11900,40500,5700,600,200,2.6,0,0,112.7,77777,9,999999999,60,0.0490,0,88,999.000,999.0,99.0 +1986,11,23,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,-6.7,17,98000,14,479,317,17,70,9,0,0,0,0,160,1.5,0,0,80.5,77777,9,999999999,60,0.0490,0,88,999.000,999.0,99.0 +1986,11,23,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,-5.6,19,98100,0,0,315,0,0,0,0,0,0,0,60,3.1,0,0,56.3,77777,9,999999999,60,0.0700,0,88,999.000,999.0,99.0 +1986,11,23,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,-5.0,21,98200,0,0,314,0,0,0,0,0,0,0,30,3.6,0,0,56.3,77777,9,999999999,70,0.0700,0,88,999.000,999.0,99.0 +1986,11,23,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,-5.6,21,98300,0,0,311,0,0,0,0,0,0,0,80,4.1,0,0,56.3,77777,9,999999999,60,0.0700,0,88,999.000,999.0,99.0 +1986,11,23,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,-4.4,24,98300,0,0,307,0,0,0,0,0,0,0,10,3.1,0,0,56.3,77777,9,999999999,70,0.0700,0,88,999.000,999.0,99.0 +1986,11,23,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,-5.0,26,98400,0,0,300,0,0,0,0,0,0,0,340,2.1,0,0,56.3,77777,9,999999999,70,0.0700,0,88,999.000,999.0,99.0 +1986,11,23,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,-5.0,24,98300,0,0,305,0,0,0,0,0,0,0,240,1.5,0,0,48.3,77777,9,999999999,60,0.0700,0,88,999.000,999.0,99.0 +1986,11,24,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,-3.9,30,98300,0,0,296,0,0,0,0,0,0,0,250,1.5,0,0,48.3,77777,9,999999999,70,0.0700,0,88,999.000,999.0,99.0 +1986,11,24,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,-4.4,31,98300,0,0,291,0,0,0,0,0,0,0,280,1.5,0,0,48.3,77777,9,999999999,70,0.0700,0,88,999.000,999.0,99.0 +1986,11,24,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,-4.4,34,98300,0,0,287,0,0,0,0,0,0,0,230,2.6,0,0,48.3,77777,9,999999999,70,0.0700,0,88,999.000,999.0,99.0 +1986,11,24,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,-4.4,38,98300,0,0,280,0,0,0,0,0,0,0,120,1.5,0,0,48.3,77777,9,999999999,70,0.0700,0,88,999.000,999.0,99.0 +1986,11,24,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,-4.4,36,98300,0,0,282,0,0,0,0,0,0,0,0,0.0,0,0,48.3,77777,9,999999999,70,0.0700,0,88,999.000,999.0,99.0 +1986,11,24,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,-3.3,41,98300,0,0,281,0,0,0,0,0,0,0,0,0.0,0,0,48.3,77777,9,999999999,70,0.0700,0,88,999.000,999.0,99.0 +1986,11,24,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,-4.4,38,98300,0,0,280,0,0,0,0,0,0,0,0,0.0,0,0,64.4,77777,9,999999999,70,0.0700,0,88,999.000,999.0,99.0 +1986,11,24,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,-3.3,39,98300,91,1181,283,51,326,18,4500,18800,3000,350,100,2.6,0,0,96.6,77777,9,999999999,70,0.0370,0,88,999.000,999.0,99.0 +1986,11,24,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,-4.4,27,98300,338,1403,300,213,733,35,22500,62800,7300,820,0,0.0,0,0,64.4,77777,9,999999999,70,0.0370,0,88,999.000,999.0,99.0 +1986,11,24,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,-3.9,25,98300,552,1403,308,394,871,49,41400,82400,8900,1190,110,3.1,0,0,64.4,77777,9,999999999,70,0.0370,0,88,999.000,999.0,99.0 +1986,11,24,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,-8.9,16,98300,710,1403,309,541,944,60,56700,92200,9900,1480,70,4.1,0,0,80.5,77777,9,999999999,50,0.0370,0,88,999.000,999.0,99.0 +1986,11,24,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,-7.8,16,98200,801,1403,315,621,966,65,64900,95300,10300,1650,110,4.1,0,0,96.6,77777,9,999999999,60,0.0370,0,88,999.000,999.0,99.0 +1986,11,24,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,-4.4,19,98000,819,1403,324,635,955,73,66100,94300,10900,1770,90,4.1,1,0,96.6,77777,9,999999999,70,0.0370,0,88,999.000,999.0,99.0 +1986,11,24,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,-3.9,18,98000,762,1403,330,585,952,63,61100,93600,10100,1580,150,2.6,0,0,96.6,77777,9,999999999,70,0.0370,0,88,999.000,999.0,99.0 +1986,11,24,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,-4.4,18,97900,636,1403,329,473,910,55,49400,87800,9400,1340,0,0.0,0,0,96.6,77777,9,999999999,70,0.0370,0,88,999.000,999.0,99.0 +1986,11,24,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,-5.6,16,97900,448,1403,330,310,823,42,32300,75000,8200,1020,270,2.6,0,0,112.7,77777,9,999999999,60,0.0370,0,88,999.000,999.0,99.0 +1986,11,24,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,-5.0,18,97800,212,1403,326,120,594,27,12400,44700,5600,580,210,2.1,0,0,112.7,77777,9,999999999,70,0.0370,0,88,999.000,999.0,99.0 +1986,11,24,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,-5.0,20,97800,14,479,319,18,83,8,0,0,0,0,270,1.5,0,0,64.4,77777,9,999999999,70,0.0370,0,88,999.000,999.0,99.0 +1986,11,24,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,-4.4,23,97800,0,0,312,0,0,0,0,0,0,0,180,1.5,0,0,56.3,77777,9,999999999,70,0.0700,0,88,999.000,999.0,99.0 +1986,11,24,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,-3.9,26,97800,0,0,306,0,0,0,0,0,0,0,190,1.5,0,0,56.3,77777,9,999999999,70,0.0700,0,88,999.000,999.0,99.0 +1986,11,24,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,-2.8,30,97700,0,0,305,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,80,0.0700,0,88,999.000,999.0,99.0 +1986,11,24,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,-1.1,36,97700,0,0,302,0,0,0,0,0,0,0,80,1.5,0,0,56.3,77777,9,999999999,80,0.0700,0,88,999.000,999.0,99.0 +1986,11,24,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,-1.1,37,97700,0,0,299,0,0,0,0,0,0,0,70,2.6,0,0,48.3,77777,9,999999999,80,0.0700,0,88,999.000,999.0,99.0 +1986,11,24,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,-1.1,39,97700,0,0,297,0,0,0,0,0,0,0,80,3.1,0,0,48.3,77777,9,999999999,80,0.0700,0,88,999.000,999.0,99.0 +1986,11,25,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,-0.6,43,97600,0,0,293,0,0,0,0,0,0,0,90,4.1,0,0,48.3,77777,9,999999999,90,0.0690,0,88,999.000,999.0,99.0 +1986,11,25,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,-0.6,47,97600,0,0,289,0,0,0,0,0,0,0,100,2.1,0,0,48.3,77777,9,999999999,90,0.0690,0,88,999.000,999.0,99.0 +1986,11,25,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,-0.6,47,97500,0,0,289,0,0,0,0,0,0,0,90,1.5,0,0,48.3,77777,9,999999999,90,0.0690,0,88,999.000,999.0,99.0 +1986,11,25,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,-0.6,48,97500,0,0,286,0,0,0,0,0,0,0,100,2.6,0,0,48.3,77777,9,999999999,90,0.0690,0,88,999.000,999.0,99.0 +1986,11,25,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,-1.1,46,97500,0,0,286,0,0,0,0,0,0,0,70,2.1,0,0,48.3,77777,9,999999999,80,0.0690,0,88,999.000,999.0,99.0 +1986,11,25,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,-0.6,50,97500,0,0,284,0,0,0,0,0,0,0,70,3.1,0,0,48.3,77777,9,999999999,90,0.0690,0,88,999.000,999.0,99.0 +1986,11,25,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,-0.6,52,97500,0,0,282,0,0,0,0,0,0,0,50,2.6,0,0,48.3,77777,9,999999999,90,0.0690,0,88,999.000,999.0,99.0 +1986,11,25,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,-0.6,47,97600,88,1182,289,39,139,25,3800,6200,3300,440,90,2.6,0,0,48.3,77777,9,999999999,90,0.1060,0,88,999.000,999.0,99.0 +1986,11,25,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,-1.1,39,97600,334,1404,297,188,546,57,19400,44800,8700,1050,100,3.1,0,0,48.3,77777,9,999999999,80,0.1060,0,88,999.000,999.0,99.0 +1986,11,25,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,-0.6,32,97600,548,1404,312,365,725,80,38300,68900,11300,1600,100,3.1,0,0,56.3,77777,9,999999999,90,0.1060,0,88,999.000,999.0,99.0 +1986,11,25,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,-2.2,28,97600,705,1404,312,507,811,97,52400,79200,12400,1980,80,1.5,0,0,56.3,77777,9,999999999,80,0.1060,0,88,999.000,999.0,99.0 +1986,11,25,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,-2.8,24,97500,797,1404,319,595,854,106,61700,84500,13600,2320,110,3.1,0,0,56.3,77777,9,999999999,70,0.1060,0,88,999.000,999.0,99.0 +1986,11,25,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,-4.4,20,97400,815,1404,322,613,861,108,63600,85400,13800,2400,100,2.1,0,0,56.3,77777,9,999999999,70,0.1060,0,88,999.000,999.0,99.0 +1986,11,25,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,-3.3,20,97400,759,1404,328,560,838,103,57900,82500,13100,2180,310,4.1,0,0,48.3,77777,9,999999999,70,0.1060,0,88,999.000,999.0,99.0 +1986,11,25,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,-4.4,18,97300,633,1404,329,447,783,89,45700,75300,11600,1750,240,4.1,0,0,48.3,77777,9,999999999,70,0.1060,0,88,999.000,999.0,99.0 +1986,11,25,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,-7.2,14,97300,446,1404,326,285,669,69,29500,60300,10200,1320,260,4.1,0,0,48.3,77777,9,999999999,50,0.1060,0,88,999.000,999.0,99.0 +1986,11,25,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,-6.1,16,97300,210,1404,325,103,385,43,10200,25900,6300,750,270,4.6,0,0,48.3,77777,9,999999999,60,0.1060,0,88,999.000,999.0,99.0 +1986,11,25,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,-5.6,19,97300,13,456,318,10,19,8,0,0,0,0,250,2.6,0,0,48.3,77777,9,999999999,60,0.1060,0,88,999.000,999.0,99.0 +1986,11,25,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,-4.4,22,97400,0,0,315,0,0,0,0,0,0,0,230,2.6,0,0,48.3,77777,9,999999999,70,0.0690,0,88,999.000,999.0,99.0 +1986,11,25,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,-3.3,27,97400,0,0,307,0,0,0,0,0,0,0,190,2.6,0,0,48.3,77777,9,999999999,70,0.0690,0,88,999.000,999.0,99.0 +1986,11,25,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,-3.3,28,97400,0,0,304,0,0,0,0,0,0,0,260,1.5,0,0,48.3,77777,9,999999999,70,0.0690,0,88,999.000,999.0,99.0 +1986,11,25,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,-2.8,31,97400,0,0,302,0,0,0,0,0,0,0,270,1.5,0,0,48.3,77777,9,999999999,80,0.0690,0,88,999.000,999.0,99.0 +1986,11,25,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,-1.1,37,97500,0,0,299,0,0,0,0,0,0,0,20,2.1,0,0,48.3,77777,9,999999999,80,0.0690,0,88,999.000,999.0,99.0 +1986,11,25,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,-1.7,38,97500,0,0,294,0,0,0,0,0,0,0,100,2.1,0,0,48.3,77777,9,999999999,80,0.0690,0,88,999.000,999.0,99.0 +1986,11,26,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,-1.1,42,97500,0,0,298,0,0,0,0,0,0,0,70,2.6,1,1,48.3,77777,9,999999999,80,0.0690,0,88,999.000,999.0,99.0 +1986,11,26,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,-1.1,46,97600,0,0,291,0,0,0,0,0,0,0,350,1.5,1,1,48.3,77777,9,999999999,80,0.0690,0,88,999.000,999.0,99.0 +1986,11,26,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,-1.1,48,97600,0,0,289,0,0,0,0,0,0,0,0,0.0,1,1,48.3,77777,9,999999999,80,0.0690,0,88,999.000,999.0,99.0 +1986,11,26,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,-1.1,48,97600,0,0,283,0,0,0,0,0,0,0,0,0.0,0,0,48.3,77777,9,999999999,80,0.0690,0,88,999.000,999.0,99.0 +1986,11,26,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,-1.1,50,97700,0,0,281,0,0,0,0,0,0,0,0,0.0,0,0,48.3,77777,9,999999999,80,0.0690,0,88,999.000,999.0,99.0 +1986,11,26,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,-1.1,50,97700,0,0,281,0,0,0,0,0,0,0,0,0.0,0,0,48.3,77777,9,999999999,80,0.0690,0,88,999.000,999.0,99.0 +1986,11,26,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,-1.1,52,97800,0,0,279,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,80,0.0690,0,88,999.000,999.0,99.0 +1986,11,26,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,-0.6,50,97900,85,1159,284,48,300,18,4200,17000,2800,340,20,1.5,0,0,48.3,77777,9,999999999,90,0.0380,0,88,999.000,999.0,99.0 +1986,11,26,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,-1.1,40,98000,330,1404,295,205,720,35,21700,61200,7200,810,110,1.5,0,0,32.2,77777,9,999999999,80,0.0380,0,88,999.000,999.0,99.0 +1986,11,26,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,-1.1,35,98000,543,1404,304,385,862,49,40500,81300,8900,1180,170,1.5,0,0,24.1,77777,9,999999999,80,0.0380,0,88,999.000,999.0,99.0 +1986,11,26,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,-1.1,30,98000,701,1404,314,526,927,59,55100,90400,9700,1460,260,1.5,0,0,32.2,77777,9,999999999,80,0.0380,0,88,999.000,999.0,99.0 +1986,11,26,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,0.0,28,98000,793,1404,325,608,953,65,63500,94000,10200,1640,240,2.6,0,0,32.2,77777,9,999999999,90,0.0380,0,88,999.000,999.0,99.0 +1986,11,26,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,1.1,28,97900,812,1404,334,623,954,66,65000,94200,10300,1680,210,3.1,0,0,40.2,77777,9,999999999,100,0.0380,0,88,999.000,999.0,99.0 +1986,11,26,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,1.1,26,97900,756,1404,339,573,937,63,59800,92000,10100,1570,320,3.6,0,0,96.6,77777,9,999999999,100,0.0380,0,88,999.000,999.0,99.0 +1986,11,26,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,0.6,23,97800,631,1404,343,464,900,55,48500,86700,9400,1340,290,2.1,0,0,96.6,77777,9,999999999,90,0.0380,0,88,999.000,999.0,99.0 +1986,11,26,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,1.1,24,97900,444,1404,344,300,803,42,31400,73100,8200,1010,300,1.5,0,0,96.6,77777,9,999999999,100,0.0380,0,88,999.000,999.0,99.0 +1986,11,26,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,1.1,26,97900,209,1404,339,116,577,27,11900,43200,5500,570,240,2.6,0,0,96.6,77777,9,999999999,100,0.0380,0,88,999.000,999.0,99.0 +1986,11,26,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,1.1,30,98000,13,456,328,16,79,7,0,0,0,0,330,1.5,0,0,80.5,77777,9,999999999,100,0.0380,0,88,999.000,999.0,99.0 +1986,11,26,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,1.1,30,98100,0,0,328,0,0,0,0,0,0,0,320,2.1,0,0,56.3,77777,9,999999999,100,0.0690,0,88,999.000,999.0,99.0 +1986,11,26,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,1.1,32,98100,0,0,323,0,0,0,0,0,0,0,20,2.1,0,0,56.3,77777,9,999999999,100,0.0690,0,88,999.000,999.0,99.0 +1986,11,26,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,0.6,34,98200,0,0,316,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,90,0.0690,0,88,999.000,999.0,99.0 +1986,11,26,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,1.1,38,98200,0,0,311,0,0,0,0,0,0,0,270,1.5,0,0,56.3,77777,9,999999999,100,0.0690,0,88,999.000,999.0,99.0 +1986,11,26,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,1.1,38,98200,0,0,311,0,0,0,0,0,0,0,360,1.5,0,0,56.3,77777,9,999999999,100,0.0690,0,88,999.000,999.0,99.0 +1986,11,26,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,1.1,44,98300,0,0,302,0,0,0,0,0,0,0,290,1.5,0,0,56.3,77777,9,999999999,100,0.0690,0,88,999.000,999.0,99.0 +1986,11,27,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,1.7,49,98300,0,0,298,0,0,0,0,0,0,0,160,2.1,0,0,56.3,77777,9,999999999,100,0.0690,0,88,999.000,999.0,99.0 +1986,11,27,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,1.7,51,98300,0,0,296,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,100,0.0690,0,88,999.000,999.0,99.0 +1986,11,27,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,1.1,52,98300,0,0,290,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,100,0.0690,0,88,999.000,999.0,99.0 +1986,11,27,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,1.1,54,98300,0,0,288,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,100,0.0690,0,88,999.000,999.0,99.0 +1986,11,27,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,1.7,59,98400,0,0,286,0,0,0,0,0,0,0,330,1.5,0,0,56.3,77777,9,999999999,100,0.0690,0,88,999.000,999.0,99.0 +1986,11,27,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,1.7,59,98400,0,0,286,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,100,0.0690,0,88,999.000,999.0,99.0 +1986,11,27,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,1.7,59,98400,0,0,286,0,0,0,0,0,0,0,60,1.5,0,0,56.3,77777,9,999999999,100,0.0690,0,88,999.000,999.0,99.0 +1986,11,27,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,1.7,55,98500,81,1136,291,44,202,24,4000,9900,3200,420,0,0.0,4,0,72.4,77777,9,999999999,100,0.0540,0,88,999.000,999.0,99.0 +1986,11,27,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,2.2,47,98500,326,1405,303,195,625,49,19700,51700,7700,900,0,0.0,3,0,72.4,77777,9,999999999,100,0.0540,0,88,999.000,999.0,99.0 +1986,11,27,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,2.2,38,98600,539,1405,317,381,748,92,39500,70300,12400,1790,260,1.5,6,0,72.4,77777,9,999999999,100,0.0540,0,88,999.000,999.0,99.0 +1986,11,27,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,1.7,33,98500,697,1405,324,528,824,116,55200,81200,14800,2460,0,0.0,6,0,72.4,77777,9,999999999,100,0.0540,0,88,999.000,999.0,99.0 +1986,11,27,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,0.0,25,98400,789,1405,332,619,847,139,64600,84500,17000,3130,60,4.6,7,0,72.4,77777,9,999999999,90,0.0540,0,88,999.000,999.0,99.0 +1986,11,27,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,-1.1,22,98300,808,1405,336,640,856,142,66800,85600,17300,3250,60,3.6,7,0,72.4,77777,9,999999999,80,0.0540,0,88,999.000,999.0,99.0 +1986,11,27,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,-1.1,22,98200,754,1405,336,587,838,133,61100,83100,16400,2910,30,3.1,7,0,72.4,77777,9,999999999,80,0.0540,0,88,999.000,999.0,99.0 +1986,11,27,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,-1.7,20,98100,629,1405,340,466,814,98,48700,79200,13200,2020,30,2.1,5,0,72.4,77777,9,999999999,80,0.0540,0,88,999.000,999.0,99.0 +1986,11,27,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,-1.1,20,98100,442,1405,341,294,757,53,30400,68600,8700,1090,240,2.1,1,0,96.6,77777,9,999999999,80,0.0540,0,88,999.000,999.0,99.0 +1986,11,27,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,-0.6,22,98100,207,1405,339,111,496,35,10800,35100,5600,620,310,1.5,2,0,96.6,77777,9,999999999,90,0.0540,0,88,999.000,999.0,99.0 +1986,11,27,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,-0.6,26,98100,13,457,326,16,49,9,0,0,0,0,0,0.0,3,0,48.3,77777,9,999999999,90,0.0540,0,88,999.000,999.0,99.0 +1986,11,27,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,0.0,29,98100,0,0,322,0,0,0,0,0,0,0,0,0.0,3,0,48.3,77777,9,999999999,90,0.0690,0,88,999.000,999.0,99.0 +1986,11,27,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,0.0,33,98100,0,0,315,0,0,0,0,0,0,0,260,1.5,0,0,48.3,77777,9,999999999,90,0.0690,0,88,999.000,999.0,99.0 +1986,11,27,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,0.0,35,98100,0,0,310,0,0,0,0,0,0,0,0,0.0,0,0,48.3,77777,9,999999999,90,0.0690,0,88,999.000,999.0,99.0 +1986,11,27,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,1.7,39,98200,0,0,312,0,0,0,0,0,0,0,30,1.5,0,0,48.3,77777,9,999999999,100,0.0690,0,88,999.000,999.0,99.0 +1986,11,27,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,0.6,39,98200,0,0,306,0,0,0,0,0,0,0,0,0.0,0,0,48.3,77777,9,999999999,90,0.0690,0,88,999.000,999.0,99.0 +1986,11,27,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,0.6,40,98200,0,0,304,0,0,0,0,0,0,0,100,1.5,0,0,32.2,77777,9,999999999,90,0.0690,0,88,999.000,999.0,99.0 +1986,11,28,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,1.1,49,98200,0,0,295,0,0,0,0,0,0,0,120,2.1,0,0,48.3,77777,9,999999999,100,0.0680,0,88,999.000,999.0,99.0 +1986,11,28,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,1.1,51,98100,0,0,292,0,0,0,0,0,0,0,0,0.0,0,0,48.3,77777,9,999999999,100,0.0680,0,88,999.000,999.0,99.0 +1986,11,28,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,1.1,52,98100,0,0,290,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,100,0.0680,0,88,999.000,999.0,99.0 +1986,11,28,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,1.1,54,98100,0,0,288,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,100,0.0680,0,88,999.000,999.0,99.0 +1986,11,28,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,1.1,56,98100,0,0,286,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,100,0.0680,0,88,999.000,999.0,99.0 +1986,11,28,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,1.7,61,98100,0,0,284,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,100,0.0680,0,88,999.000,999.0,99.0 +1986,11,28,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,1.7,59,98100,0,0,286,0,0,0,0,0,0,0,60,1.5,0,0,72.4,77777,9,999999999,100,0.0680,0,88,999.000,999.0,99.0 +1986,11,28,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,0.6,49,98100,78,1113,292,43,195,23,3800,9500,3100,400,100,1.5,3,0,72.4,77777,9,999999999,90,0.0590,0,88,999.000,999.0,99.0 +1986,11,28,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,-0.6,34,98200,322,1405,310,192,598,54,19800,48400,8600,990,100,2.6,4,0,72.4,77777,9,999999999,90,0.0590,0,88,999.000,999.0,99.0 +1986,11,28,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,-0.6,27,98200,535,1405,324,378,740,94,39100,69400,12600,1820,80,3.6,6,0,72.4,77777,9,999999999,90,0.0590,0,88,999.000,999.0,99.0 +1986,11,28,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,0.0,25,98100,694,1405,335,525,801,127,54500,78500,15700,2650,70,4.6,7,0,72.4,77777,9,999999999,90,0.0590,0,88,999.000,999.0,99.0 +1986,11,28,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,-0.6,21,98000,786,1405,342,613,837,141,63900,83300,17100,3150,60,3.6,7,0,72.4,77777,9,999999999,90,0.0590,0,88,999.000,999.0,99.0 +1986,11,28,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,-0.6,20,97900,805,1405,358,573,676,183,58900,66600,20600,3990,70,4.1,9,2,72.4,77777,9,999999999,90,0.0590,0,88,999.000,999.0,99.0 +1986,11,28,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,-0.6,19,97800,751,1405,367,430,466,179,45500,47100,20200,3910,120,2.1,8,3,72.4,77777,9,999999999,90,0.0590,0,88,999.000,999.0,99.0 +1986,11,28,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,-0.6,18,97700,626,1405,370,433,619,154,45300,60800,18100,3120,120,2.1,9,3,72.4,77777,9,999999999,90,0.0590,0,88,999.000,999.0,99.0 +1986,11,28,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,-0.6,18,97700,440,1405,373,234,388,110,24100,34800,13200,2080,0,0.0,9,4,72.4,77777,9,999999999,90,0.0590,0,88,999.000,999.0,99.0 +1986,11,28,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,-1.1,17,97700,206,1405,369,89,204,58,9200,12800,7300,1110,0,0.0,7,3,72.4,77777,9,999999999,80,0.0590,0,88,999.000,999.0,99.0 +1986,11,28,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,0.0,23,97700,12,457,354,13,17,11,0,0,0,0,0,0.0,8,3,56.3,77777,9,999999999,90,0.0590,0,88,999.000,999.0,99.0 +1986,11,28,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,0.6,25,97700,0,0,355,0,0,0,0,0,0,0,40,2.1,8,4,56.3,77777,9,999999999,90,0.0680,0,88,999.000,999.0,99.0 +1986,11,28,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,1.1,31,97800,0,0,343,0,0,0,0,0,0,0,250,2.6,9,4,56.3,77777,9,999999999,100,0.0680,0,88,999.000,999.0,99.0 +1986,11,28,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,1.1,31,97800,0,0,340,0,0,0,0,0,0,0,0,0.0,8,3,56.3,77777,9,999999999,100,0.0680,0,88,999.000,999.0,99.0 +1986,11,28,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,1.1,33,97800,0,0,332,0,0,0,0,0,0,0,90,3.1,7,2,56.3,77777,9,999999999,100,0.0680,0,88,999.000,999.0,99.0 +1986,11,28,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,1.1,35,97800,0,0,322,0,0,0,0,0,0,0,120,2.1,5,1,56.3,77777,9,999999999,100,0.0680,0,88,999.000,999.0,99.0 +1986,11,28,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,1.1,38,97800,0,0,322,0,0,0,0,0,0,0,90,2.1,3,2,56.3,77777,9,999999999,100,0.0680,0,88,999.000,999.0,99.0 +1986,11,29,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,1.1,42,97800,0,0,304,0,0,0,0,0,0,0,80,2.1,0,0,56.3,77777,9,999999999,100,0.0680,0,88,999.000,999.0,99.0 +1986,11,29,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,0.0,39,97700,0,0,303,0,0,0,0,0,0,0,70,4.1,0,0,56.3,77777,9,999999999,90,0.0680,0,88,999.000,999.0,99.0 +1986,11,29,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,0.0,40,97700,0,0,300,0,0,0,0,0,0,0,100,3.6,0,0,56.3,77777,9,999999999,90,0.0680,0,88,999.000,999.0,99.0 +1986,11,29,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,-0.6,40,97700,0,0,298,0,0,0,0,0,0,0,70,3.1,0,0,56.3,77777,9,999999999,90,0.0680,0,88,999.000,999.0,99.0 +1986,11,29,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,-1.1,37,97700,0,0,299,0,0,0,0,0,0,0,80,3.6,0,0,56.3,77777,9,999999999,80,0.0680,0,88,999.000,999.0,99.0 +1986,11,29,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,-1.1,42,97700,0,0,298,0,0,0,0,0,0,0,70,2.1,3,1,56.3,77777,9,999999999,80,0.0680,0,88,999.000,999.0,99.0 +1986,11,29,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,-0.6,45,97700,0,0,296,0,0,0,0,0,0,0,50,3.1,3,1,64.4,77777,9,999999999,90,0.0680,0,88,999.000,999.0,99.0 +1986,11,29,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,-3.3,30,97800,75,1090,309,44,237,20,3800,11500,3000,360,90,3.1,3,2,64.4,77777,9,999999999,70,0.0330,0,88,999.000,999.0,99.0 +1986,11,29,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,-2.8,30,97800,317,1406,315,169,462,63,17100,36800,8800,1120,90,3.1,3,2,80.5,77777,9,999999999,80,0.0330,0,88,999.000,999.0,99.0 +1986,11,29,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,-2.8,27,97700,531,1406,330,382,683,122,38800,62900,14900,2230,110,2.6,6,5,80.5,3660,9,999999999,80,0.0330,0,88,999.000,999.0,99.0 +1986,11,29,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,-2.8,23,97800,690,1406,335,459,642,142,47300,62400,16500,2890,90,3.1,4,3,80.5,77777,9,999999999,70,0.0330,0,88,999.000,999.0,99.0 +1986,11,29,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,-4.4,20,97700,782,1406,344,509,507,224,52800,51400,24100,5110,110,2.1,7,6,80.5,4270,9,999999999,70,0.0330,0,88,999.000,999.0,99.0 +1986,11,29,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,-4.4,18,97600,802,1406,346,526,624,167,54300,61800,18900,3690,140,1.5,5,4,80.5,77777,9,999999999,70,0.0330,0,88,999.000,999.0,99.0 +1986,11,29,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,-5.0,15,97400,748,1406,347,574,882,100,59400,86700,13000,2110,110,3.1,3,2,80.5,77777,9,999999999,60,0.0330,0,88,999.000,999.0,99.0 +1986,11,29,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,-5.0,14,97300,624,1406,352,440,717,117,45300,69000,14500,2330,110,2.6,6,2,80.5,77777,9,999999999,60,0.0330,0,88,999.000,999.0,99.0 +1986,11,29,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,-4.4,15,97300,439,1406,353,266,647,62,27800,58300,9500,1200,110,1.5,3,2,80.5,77777,9,999999999,70,0.0330,0,88,999.000,999.0,99.0 +1986,11,29,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,-3.9,17,97300,205,1406,349,102,411,40,10200,27400,6200,710,0,0.0,2,2,80.5,77777,9,999999999,70,0.0330,0,88,999.000,999.0,99.0 +1986,11,29,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,-4.4,18,97300,12,434,327,17,81,7,0,0,0,0,0,0.0,1,0,56.3,77777,9,999999999,70,0.0330,0,88,999.000,999.0,99.0 +1986,11,29,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,-2.8,24,97400,0,0,319,0,0,0,0,0,0,0,330,2.1,1,0,56.3,77777,9,999999999,70,0.0680,0,88,999.000,999.0,99.0 +1986,11,29,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,-2.2,28,97400,0,0,312,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,80,0.0680,0,88,999.000,999.0,99.0 +1986,11,29,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,-0.6,35,97500,0,0,307,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,90,0.0680,0,88,999.000,999.0,99.0 +1986,11,29,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,-1.1,35,97500,0,0,304,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,80,0.0680,0,88,999.000,999.0,99.0 +1986,11,29,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,-0.6,40,97600,0,0,298,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,90,0.0680,0,88,999.000,999.0,99.0 +1986,11,29,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,-2.2,37,97600,0,0,294,0,0,0,0,0,0,0,220,1.5,0,0,48.3,77777,9,999999999,80,0.0680,0,88,999.000,999.0,99.0 +1986,11,30,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,-2.2,38,97600,0,0,291,0,0,0,0,0,0,0,320,1.5,0,0,56.3,77777,9,999999999,80,0.0680,0,88,999.000,999.0,99.0 +1986,11,30,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,-1.7,41,97700,0,0,290,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,80,0.0680,0,88,999.000,999.0,99.0 +1986,11,30,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,-2.8,40,97700,0,0,286,0,0,0,0,0,0,0,250,2.1,0,0,56.3,77777,9,999999999,80,0.0680,0,88,999.000,999.0,99.0 +1986,11,30,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,-3.3,41,97800,0,0,281,0,0,0,0,0,0,0,290,2.1,0,0,56.3,77777,9,999999999,70,0.0680,0,88,999.000,999.0,99.0 +1986,11,30,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,-3.9,41,97800,0,0,278,0,0,0,0,0,0,0,180,2.1,0,0,56.3,77777,9,999999999,70,0.0680,0,88,999.000,999.0,99.0 +1986,11,30,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,-5.0,39,97900,0,0,275,0,0,0,0,0,0,0,0,0.0,0,0,56.3,77777,9,999999999,60,0.0680,0,88,999.000,999.0,99.0 +1986,11,30,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,-5.6,36,97900,0,0,282,0,0,0,0,0,0,0,250,3.6,3,1,64.4,77777,9,999999999,60,0.0680,0,88,999.000,999.0,99.0 +1986,11,30,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,-6.7,32,98000,72,1067,278,43,285,15,3600,15900,2500,300,240,2.1,0,0,96.6,77777,9,999999999,60,0.0330,0,88,999.000,999.0,99.0 +1986,11,30,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,-6.1,28,98000,313,1406,289,194,722,32,20500,60600,6900,770,220,1.5,0,0,96.6,77777,9,999999999,60,0.0330,0,88,999.000,999.0,99.0 +1986,11,30,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,-5.6,26,98100,527,1406,297,374,872,45,39400,81900,8600,1130,250,2.6,0,0,80.5,77777,9,999999999,60,0.0330,0,88,999.000,999.0,99.0 +1986,11,30,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,-4.4,23,98100,686,1406,310,511,928,55,53700,90300,9400,1390,220,1.5,0,0,80.5,77777,9,999999999,70,0.0330,0,88,999.000,999.0,99.0 +1986,11,30,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,-3.9,22,98100,779,1406,317,597,961,61,62600,94600,10000,1570,250,2.1,0,0,80.5,77777,9,999999999,70,0.0330,0,88,999.000,999.0,99.0 +1986,11,30,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,-5.6,17,98000,799,1406,326,619,972,62,64800,95900,10100,1610,240,1.5,0,0,80.5,77777,9,999999999,60,0.0330,0,88,999.000,999.0,99.0 +1986,11,30,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,-6.1,16,97900,746,1406,327,572,957,59,59800,93900,9800,1510,260,3.6,0,0,80.5,77777,9,999999999,60,0.0330,0,88,999.000,999.0,99.0 +1986,11,30,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,-6.7,14,97900,622,1406,329,463,919,51,48500,88400,9200,1280,270,2.1,0,0,96.6,77777,9,999999999,60,0.0330,0,88,999.000,999.0,99.0 +1986,11,30,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,-6.1,15,97800,437,1406,330,301,829,40,31600,75200,8100,980,310,2.1,0,0,96.6,77777,9,999999999,60,0.0330,0,88,999.000,999.0,99.0 +1986,11,30,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,-5.6,16,97900,204,1406,328,115,603,25,11900,44800,5400,550,280,3.1,0,0,80.5,77777,9,999999999,60,0.0330,0,88,999.000,999.0,99.0 +1986,11,30,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,-5.6,19,97900,12,434,315,17,86,7,0,0,0,0,180,1.5,0,0,56.3,77777,9,999999999,60,0.0330,0,88,999.000,999.0,99.0 +1986,11,30,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,-5.6,21,97900,0,0,311,0,0,0,0,0,0,0,110,1.5,0,0,56.3,77777,9,999999999,60,0.0680,0,88,999.000,999.0,99.0 +1986,11,30,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,-4.4,24,97900,0,0,307,0,0,0,0,0,0,0,70,1.5,0,0,56.3,77777,9,999999999,70,0.0680,0,88,999.000,999.0,99.0 +1986,11,30,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,-2.8,32,98000,0,0,300,0,0,0,0,0,0,0,50,2.1,0,0,56.3,77777,9,999999999,80,0.0680,0,88,999.000,999.0,99.0 +1986,11,30,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,-1.5,29,98000,0,0,299,0,0,0,0,0,0,0,100,1.8,0,0,56.3,77777,9,999999999,70,0.0680,0,88,999.000,999.0,99.0 +1986,11,30,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.6,-0.3,35,98100,0,0,297,0,0,0,0,0,0,0,50,1.5,0,0,56.3,77777,9,999999999,70,0.0680,0,88,999.000,999.0,99.0 +1986,11,30,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.0,0.8,37,98100,0,0,296,0,0,0,0,0,0,0,120,1.2,0,0,56.3,77777,9,999999999,80,0.0680,0,88,999.000,999.0,99.0 +2001,12,1,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.3,2.0,71,97800,0,0,312,0,0,0,0,0,0,0,250,0.9,10,5,16.0,77777,9,999999999,80,0.0460,0,88,0.200,0.0,1.0 +2001,12,1,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.7,3.2,74,97800,0,0,310,0,0,0,0,0,0,0,200,0.6,10,5,16.0,77777,9,999999999,80,0.0460,0,88,0.200,0.0,1.0 +2001,12,1,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,4.4,74,97800,0,0,304,0,0,0,0,0,0,0,80,0.3,6,3,16.0,77777,9,999999999,80,0.0460,0,88,0.200,0.0,1.0 +2001,12,1,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,5.6,77,97800,0,0,300,0,0,0,0,0,0,0,0,0.0,6,2,16.0,77777,9,999999999,90,0.0460,0,88,0.200,0.0,1.0 +2001,12,1,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,5.6,80,97900,0,0,288,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,90,0.0460,0,88,0.200,0.0,1.0 +2001,12,1,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,5.0,77,97900,0,0,287,0,0,0,0,0,0,0,90,2.6,0,0,16.0,77777,9,999999999,90,0.0460,0,88,0.200,0.0,1.0 +2001,12,1,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,3.9,68,97900,0,0,301,0,0,0,0,0,0,0,140,2.6,6,3,16.0,77777,9,999999999,90,0.0460,0,88,0.200,0.0,1.0 +2001,12,1,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,3.3,66,98000,68,1043,288,16,255,5,2500,15500,1400,180,130,3.6,0,0,16.0,77777,9,999999999,90,0.0460,0,88,0.200,0.0,1.0 +2001,12,1,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,3.9,59,98100,308,1407,298,178,622,41,18300,50900,7000,810,140,2.6,0,0,16.0,77777,9,999999999,90,0.0460,0,88,0.200,0.0,1.0 +2001,12,1,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,3.9,51,98200,522,1407,307,351,756,69,36200,70600,9900,1360,90,1.5,0,0,16.0,77777,9,999999999,100,0.0460,0,88,0.200,0.0,1.0 +2001,12,1,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,4.4,44,98200,681,1407,320,472,791,87,49100,77100,11600,1820,90,2.1,0,0,16.0,77777,9,999999999,100,0.0460,0,88,0.200,0.0,1.0 +2001,12,1,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,4.4,40,98100,775,1407,327,564,846,96,59100,83700,12800,2130,80,2.6,0,0,16.0,77777,9,999999999,100,0.0460,0,88,0.200,0.0,1.0 +2001,12,1,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,4.4,40,98000,796,1407,327,580,833,107,60300,82300,13600,2320,0,0.0,0,0,16.0,77777,9,999999999,100,0.0460,0,88,0.200,0.0,1.0 +2001,12,1,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,4.4,38,98000,743,1407,330,542,840,96,56400,82700,12600,2050,330,1.5,0,0,16.0,77777,9,999999999,100,0.0460,0,88,0.200,0.0,1.0 +2001,12,1,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,6.1,40,98000,620,1407,351,454,859,74,47600,83000,10900,1560,300,1.5,6,3,16.0,77777,9,999999999,100,0.0460,0,88,0.200,0.0,1.0 +2001,12,1,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,5.6,36,97900,435,1407,352,323,776,82,33200,68800,11900,1520,200,3.1,6,2,16.0,77777,9,999999999,100,0.0460,0,88,0.200,0.0,1.0 +2001,12,1,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,5.0,36,97900,203,1407,353,154,564,73,15000,35000,10000,1060,0,0.0,6,3,16.0,77777,9,999999999,100,0.0460,0,88,0.200,0.0,1.0 +2001,12,1,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,5.0,40,97900,12,434,330,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,100,0.0460,0,88,0.200,0.0,1.0 +2001,12,1,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,5.6,46,98000,0,0,323,0,0,0,0,0,0,0,260,1.5,0,0,16.0,77777,9,999999999,90,0.0460,0,88,0.200,0.0,1.0 +2001,12,1,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,5.6,51,98000,0,0,316,0,0,0,0,0,0,0,230,2.1,0,0,16.0,77777,9,999999999,90,0.0460,0,88,0.200,0.0,1.0 +2001,12,1,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,6.1,57,98000,0,0,330,0,0,0,0,0,0,0,240,1.5,10,5,16.0,77777,9,999999999,90,0.0460,0,88,0.200,0.0,1.0 +2001,12,1,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,5.6,55,98000,0,0,349,0,0,0,0,0,0,0,0,0.0,10,9,16.0,7620,9,999999999,90,0.0460,0,88,0.200,0.0,1.0 +2001,12,1,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,6.1,66,98100,0,0,332,0,0,0,0,0,0,0,100,2.1,10,8,16.0,7620,9,999999999,90,0.0460,0,88,0.200,0.0,1.0 +2001,12,1,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,5.6,62,98000,0,0,322,0,0,0,0,0,0,0,0,0.0,10,5,16.0,77777,9,999999999,100,0.0460,0,88,0.200,0.0,1.0 +2001,12,2,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,5.6,66,97900,0,0,317,0,0,0,0,0,0,0,0,0.0,5,5,16.0,77777,9,999999999,100,0.0460,0,88,0.200,0.0,1.0 +2001,12,2,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,5.6,71,97800,0,0,331,0,0,0,0,0,0,0,0,0.0,9,9,16.0,7620,9,999999999,100,0.0460,0,88,0.200,0.0,1.0 +2001,12,2,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,5.0,68,97800,0,0,330,0,0,0,0,0,0,0,90,1.5,9,9,16.0,7620,9,999999999,100,0.0460,0,88,0.200,0.0,1.0 +2001,12,2,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,3.9,66,97800,0,0,326,0,0,0,0,0,0,0,70,3.6,9,9,16.0,7620,9,999999999,100,0.0460,0,88,0.200,0.0,1.0 +2001,12,2,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,3.9,71,97900,0,0,310,0,0,0,0,0,0,0,80,3.1,7,7,16.0,7620,9,999999999,110,0.0460,0,88,0.200,0.0,1.0 +2001,12,2,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,3.9,71,97800,0,0,321,0,0,0,0,0,0,0,130,2.6,9,9,16.0,7620,9,999999999,110,0.0460,0,88,0.200,0.0,1.0 +2001,12,2,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,3.3,66,97900,0,0,297,0,0,0,0,0,0,0,120,2.6,2,2,16.0,77777,9,999999999,110,0.0460,0,88,0.200,0.0,1.0 +2001,12,2,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,2.8,58,97900,66,1020,328,7,27,6,900,1100,900,100,110,2.6,9,9,16.0,4267,9,999999999,110,0.0460,0,88,0.200,0.0,1.0 +2001,12,2,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,3.3,54,97900,304,1407,336,166,408,77,17100,31700,10200,1420,110,3.6,9,9,16.0,7620,9,999999999,110,0.0460,0,88,0.200,0.0,1.0 +2001,12,2,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,2.8,44,98000,518,1407,349,360,812,59,37700,76300,9500,1240,90,3.1,9,9,16.0,7620,9,999999999,110,0.0460,0,88,0.200,0.0,1.0 +2001,12,2,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,2.8,38,98000,678,1407,346,487,873,65,51100,84700,10100,1480,110,2.6,7,7,16.0,7620,9,999999999,120,0.0460,0,88,0.200,0.0,1.0 +2001,12,2,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,2.8,34,97900,771,1407,368,569,876,87,60300,87000,12400,1990,80,2.1,9,9,16.0,7620,9,999999999,120,0.0460,0,88,0.200,0.0,1.0 +2001,12,2,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,2.2,29,97800,793,1407,378,586,869,94,61700,86400,12900,2140,60,1.5,9,9,16.0,7620,9,999999999,120,0.0460,0,88,0.200,0.0,1.0 +2001,12,2,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,2.2,29,97700,741,1407,378,542,846,94,56500,83300,12500,2020,30,1.5,9,9,16.0,7620,9,999999999,120,0.0460,0,88,0.200,0.0,1.0 +2001,12,2,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,2.2,27,97700,618,1407,363,447,828,82,46300,79500,11200,1650,0,0.0,5,5,16.0,77777,9,999999999,120,0.0460,0,88,0.200,0.0,1.0 +2001,12,2,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,2.2,28,97600,434,1407,360,314,797,67,31800,71000,9800,1210,0,0.0,5,5,16.0,77777,9,999999999,120,0.0460,0,88,0.200,0.0,1.0 +2001,12,2,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,2.8,29,97600,202,1407,368,155,588,70,15100,36600,9800,1040,300,2.1,7,7,16.0,7620,9,999999999,130,0.0460,0,88,0.200,0.0,1.0 +2001,12,2,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,2.8,30,97600,11,434,379,0,0,0,0,0,0,0,330,1.5,9,9,16.0,7620,9,999999999,130,0.0460,0,88,0.200,0.0,1.0 +2001,12,2,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,3.9,40,97600,0,0,364,0,0,0,0,0,0,0,230,2.1,9,9,16.0,7620,9,999999999,130,0.0460,0,88,0.200,0.0,1.0 +2001,12,2,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,4.4,44,97600,0,0,339,0,0,0,0,0,0,0,0,0.0,5,5,16.0,77777,9,999999999,130,0.0460,0,88,0.200,0.0,1.0 +2001,12,2,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,4.4,47,97600,0,0,334,0,0,0,0,0,0,0,120,1.5,5,5,16.0,77777,9,999999999,130,0.0460,0,88,0.200,0.0,1.0 +2001,12,2,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,3.9,51,97600,0,0,345,0,0,0,0,0,0,0,90,2.1,9,9,16.0,7620,9,999999999,130,0.0460,0,88,0.200,0.0,1.0 +2001,12,2,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,2.2,45,97600,0,0,343,0,0,0,0,0,0,0,100,2.6,9,9,16.0,7620,9,999999999,140,0.0460,0,88,0.200,0.0,1.0 +2001,12,2,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,2.8,49,97600,0,0,340,0,0,0,0,0,0,0,110,2.1,9,9,16.0,7620,9,999999999,130,0.0460,0,88,0.200,0.0,1.0 +2001,12,3,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,1.1,43,97500,0,0,338,0,0,0,0,0,0,0,100,1.5,10,9,16.0,4877,9,999999999,130,0.0460,0,88,0.200,0.0,1.0 +2001,12,3,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,2.2,48,97500,0,0,337,0,0,0,0,0,0,0,100,2.1,10,9,16.0,4877,9,999999999,130,0.0460,0,88,0.200,0.0,1.0 +2001,12,3,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,2.8,54,97400,0,0,333,0,0,0,0,0,0,0,90,2.6,10,9,16.0,4877,9,999999999,130,0.0460,0,88,0.200,0.0,1.0 +2001,12,3,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,1.7,52,97400,0,0,329,0,0,0,0,0,0,0,90,3.1,10,9,16.0,4877,9,999999999,130,0.0460,0,88,0.200,0.0,1.0 +2001,12,3,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,0.6,52,97500,0,0,316,0,0,0,0,0,0,0,100,3.6,10,8,16.0,4877,9,999999999,120,0.0460,0,88,0.200,0.0,1.0 +2001,12,3,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,1.1,54,97300,0,0,305,0,0,0,0,0,0,0,100,3.6,9,5,16.0,77777,9,999999999,120,0.0460,0,88,0.200,0.0,1.0 +2001,12,3,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,1.1,56,97400,0,0,302,0,0,0,0,0,0,0,110,3.1,9,5,16.0,77777,9,999999999,120,0.0460,0,88,0.200,0.0,1.0 +2001,12,3,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,1.1,56,97400,63,997,302,13,231,5,2200,13900,1300,180,90,2.6,9,5,16.0,77777,9,999999999,120,0.0460,0,88,0.200,0.0,1.0 +2001,12,3,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,1.7,50,97400,300,1408,313,172,645,34,18200,53500,6700,760,90,3.6,9,5,16.0,77777,9,999999999,110,0.0460,0,88,0.200,0.0,1.0 +2001,12,3,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,-1.1,33,97500,515,1408,317,354,806,58,37200,75600,9400,1220,110,3.6,5,2,16.0,77777,9,999999999,110,0.0460,0,88,0.200,0.0,1.0 +2001,12,3,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,-1.1,28,97500,674,1408,330,487,885,62,51200,85900,9900,1450,120,3.6,5,3,16.0,77777,9,999999999,110,0.0460,0,88,0.200,0.0,1.0 +2001,12,3,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,-1.1,27,97400,768,1408,329,586,905,90,61800,89700,12600,2030,0,0.0,5,2,16.0,77777,9,999999999,110,0.0460,0,88,0.200,0.0,1.0 +2001,12,3,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,-0.6,26,97300,790,1408,340,592,881,95,62300,87500,12900,2150,310,1.5,5,3,16.0,77777,9,999999999,110,0.0460,0,88,0.200,0.0,1.0 +2001,12,3,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,0.0,25,97200,739,1408,343,568,914,86,59800,90300,12300,1910,260,3.6,5,2,12.8,77777,9,999999999,110,0.0460,0,88,0.200,0.0,1.0 +2001,12,3,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,0.0,24,97200,617,1408,349,447,834,80,46400,80200,11100,1620,280,2.1,5,3,14.4,77777,9,999999999,110,0.0460,0,88,0.200,0.0,1.0 +2001,12,3,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,0.0,24,97200,433,1408,354,295,680,85,30300,60000,11700,1560,290,3.1,9,5,16.0,77777,9,999999999,110,0.0460,0,88,0.200,0.0,1.0 +2001,12,3,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,-0.6,24,97100,202,1408,351,155,554,76,15100,34000,10200,1080,260,1.5,9,5,16.0,77777,9,999999999,110,0.0460,0,88,0.200,0.0,1.0 +2001,12,3,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,0.6,28,97200,11,434,347,0,0,0,0,0,0,0,240,1.5,9,5,16.0,77777,9,999999999,110,0.0460,0,88,0.200,0.0,1.0 +2001,12,3,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,0.0,27,97200,0,0,367,0,0,0,0,0,0,0,310,2.6,10,9,16.0,7620,9,999999999,110,0.0460,0,88,0.200,0.0,1.0 +2001,12,3,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,1.1,32,97200,0,0,360,0,0,0,0,0,0,0,0,0.0,10,9,16.0,3658,9,999999999,110,0.0460,0,88,0.200,0.0,1.0 +2001,12,3,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,1.7,35,97200,0,0,358,0,0,0,0,0,0,0,110,2.1,10,9,16.0,3658,9,999999999,110,0.0460,0,88,0.200,0.0,1.0 +2001,12,3,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,1.7,36,97200,0,0,356,0,0,0,0,0,0,0,110,2.6,10,9,16.0,3658,9,999999999,110,0.0460,0,88,0.200,0.0,1.0 +2001,12,3,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,1.7,38,97200,0,0,345,0,0,0,0,0,0,0,80,3.1,10,8,16.0,3658,9,999999999,110,0.0460,0,88,0.200,0.0,1.0 +2001,12,3,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,1.1,37,97200,0,0,349,0,0,0,0,0,0,0,110,4.6,10,9,16.0,3658,9,999999999,110,0.0460,0,88,0.200,0.0,1.0 +2001,12,4,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,1.1,39,97100,0,0,347,0,0,0,0,0,0,0,30,3.1,9,9,16.0,3658,9,999999999,110,0.0470,0,88,0.200,0.0,1.0 +2001,12,4,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,0.6,39,97100,0,0,353,0,0,0,0,0,0,0,90,4.6,10,10,16.0,2134,9,999999999,110,0.0470,0,88,0.200,0.0,1.0 +2001,12,4,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,2.8,46,97000,0,0,356,0,0,0,0,0,0,0,110,4.1,10,10,16.0,2134,9,999999999,110,0.0470,0,88,0.200,0.0,1.0 +2001,12,4,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,7.2,64,97000,0,0,358,0,0,0,0,0,0,0,110,3.6,10,10,16.0,2134,9,999999999,110,0.0470,0,88,0.200,0.0,1.0 +2001,12,4,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,8.3,77,97100,0,0,351,0,0,0,0,0,0,0,90,3.1,10,10,16.0,1829,9,999999999,110,0.0470,0,88,0.200,0.0,1.0 +2001,12,4,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,10.0,89,97000,0,0,351,0,0,0,0,0,0,0,340,3.6,10,10,12.8,1250,9,999999999,110,0.0470,0,88,0.200,1.0,1.0 +2001,12,4,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,10.6,97,97100,0,0,349,0,0,0,0,0,0,0,0,0.0,10,10,9.6,732,9,999999999,110,0.0470,0,88,0.200,2.0,1.0 +2001,12,4,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,11.1,100,97100,60,974,349,6,34,5,900,1400,800,80,90,2.6,10,10,11.2,884,9,999999999,110,0.0470,0,88,0.200,2.0,1.0 +2001,12,4,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,11.1,100,97100,297,1408,349,48,0,48,5600,0,5600,1850,110,2.1,10,10,16.0,213,9,999999999,120,0.0470,0,88,0.200,0.0,1.0 +2001,12,4,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,11.1,100,97100,511,1408,349,53,0,53,6400,0,6400,2380,100,2.6,10,10,11.2,274,9,999999999,120,0.0470,0,88,0.200,1.0,1.0 +2001,12,4,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,11.7,100,97200,671,1408,353,81,0,81,9800,0,9800,3790,260,1.5,10,10,11.2,396,9,999999999,120,0.0470,0,88,0.200,1.0,1.0 +2001,12,4,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,11.1,100,97200,766,1408,349,122,0,122,14600,0,14600,5680,260,8.2,10,10,8.0,152,9,999999999,110,0.0470,0,88,0.200,4.0,1.0 +2001,12,4,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,10.0,93,97200,788,1408,348,92,0,92,11300,0,11300,4490,260,7.7,10,10,16.0,1067,9,999999999,110,0.0470,0,88,0.200,0.0,1.0 +2001,12,4,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,9.4,89,97200,737,1408,347,99,0,99,12000,0,12000,4680,260,5.7,10,10,16.0,1676,9,999999999,100,0.0470,0,88,0.200,0.0,1.0 +2001,12,4,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,8.3,80,97400,616,1408,349,73,0,73,8800,0,8800,3360,260,7.2,10,10,16.0,1219,9,999999999,100,0.0470,0,88,0.200,0.0,1.0 +2001,12,4,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,7.2,71,97500,433,1408,350,65,0,65,7600,0,7600,2700,240,3.6,10,10,16.0,3658,9,999999999,100,0.0470,0,88,0.200,0.0,1.0 +2001,12,4,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,6.7,80,97600,201,1408,339,93,0,93,9800,0,9800,2190,220,6.7,10,10,16.0,1524,9,999999999,90,0.0470,0,88,0.200,0.0,1.0 +2001,12,4,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,6.1,71,97700,11,434,343,0,0,0,0,0,0,0,280,6.2,10,10,16.0,1524,9,999999999,90,0.0470,0,88,0.200,0.0,1.0 +2001,12,4,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,6.1,74,97800,0,0,319,0,0,0,0,0,0,0,310,3.6,7,7,16.0,3658,9,999999999,90,0.0470,0,88,0.200,0.0,1.0 +2001,12,4,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,6.1,77,97900,0,0,308,0,0,0,0,0,0,0,230,1.5,4,4,16.0,3658,9,999999999,80,0.0470,0,88,0.200,0.0,1.0 +2001,12,4,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,7.8,90,97900,0,0,310,0,0,0,0,0,0,0,140,2.1,5,5,16.0,3658,9,999999999,80,0.0470,0,88,0.200,0.0,1.0 +2001,12,4,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,6.7,86,98000,0,0,304,0,0,0,0,0,0,0,100,1.5,4,4,16.0,77777,9,999999999,70,0.0470,0,88,0.200,0.0,1.0 +2001,12,4,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,7.2,93,98200,0,0,287,0,0,0,0,0,0,0,110,2.6,0,0,16.0,77777,9,999999999,70,0.0470,0,88,0.200,0.0,1.0 +2001,12,4,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,6.7,93,98100,0,0,285,0,0,0,0,0,0,0,100,3.6,0,0,16.0,77777,9,999999999,70,0.0470,0,88,0.200,0.0,1.0 +2001,12,5,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,6.1,93,98100,0,0,282,0,0,0,0,0,0,0,100,3.1,0,0,16.0,77777,9,999999999,70,0.0470,0,88,0.200,0.0,1.0 +2001,12,5,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,6.1,93,98100,0,0,282,0,0,0,0,0,0,0,100,2.1,0,0,16.0,77777,9,999999999,70,0.0470,0,88,0.200,0.0,1.0 +2001,12,5,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,6.1,96,98100,0,0,280,0,0,0,0,0,0,0,90,2.1,0,0,16.0,77777,9,999999999,70,0.0470,0,88,0.200,0.0,1.0 +2001,12,5,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,6.1,100,98200,0,0,277,0,0,0,0,0,0,0,220,1.5,0,0,16.0,77777,9,999999999,70,0.0470,0,88,0.200,0.0,1.0 +2001,12,5,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,6.1,100,98400,0,0,277,0,0,0,0,0,0,0,220,1.5,0,0,16.0,77777,9,999999999,70,0.0470,0,88,0.200,0.0,1.0 +2001,12,5,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,5.6,97,98300,0,0,277,0,0,0,0,0,0,0,0,0.0,0,0,14.4,77777,9,999999999,70,0.0470,0,88,0.200,0.0,1.0 +2001,12,5,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,5.6,100,98400,0,0,275,0,0,0,0,0,0,0,100,1.5,0,0,14.4,77777,9,999999999,80,0.0470,0,88,0.200,0.0,1.0 +2001,12,5,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,6.1,96,98500,58,974,280,10,230,3,2000,13700,1100,120,100,2.6,0,0,12.8,77777,9,999999999,80,0.0470,0,88,0.200,0.0,1.0 +2001,12,5,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,5.6,83,98500,293,1409,286,174,682,31,18400,56200,6600,730,90,1.5,0,0,16.0,77777,9,999999999,80,0.0470,0,88,0.200,0.0,1.0 +2001,12,5,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,6.1,77,98600,508,1409,293,357,844,52,37600,78600,9100,1160,80,2.6,0,0,16.0,77777,9,999999999,80,0.0470,0,88,0.200,0.0,1.0 +2001,12,5,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,6.1,66,98600,668,1409,302,475,837,77,50100,81800,11100,1670,90,2.1,0,0,16.0,77777,9,999999999,80,0.0470,0,88,0.200,0.0,1.0 +2001,12,5,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,5.6,57,98500,763,1409,322,562,875,86,59500,86800,12300,1960,80,4.6,3,3,16.0,77777,9,999999999,80,0.0470,0,88,0.200,0.0,1.0 +2001,12,5,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,3.9,47,98400,786,1409,325,592,887,95,62200,88000,12900,2140,60,4.1,3,3,16.0,77777,9,999999999,90,0.0470,0,88,0.200,0.0,1.0 +2001,12,5,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,3.3,44,98300,735,1409,327,535,822,104,55200,80400,13000,2120,30,2.6,3,3,16.0,77777,9,999999999,90,0.0470,0,88,0.200,0.0,1.0 +2001,12,5,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.0,1.0,36,98300,614,1409,313,447,840,78,46400,80800,11000,1600,0,0.0,0,0,16.0,77777,9,999999999,100,0.0470,0,88,0.200,0.0,1.0 +2001,12,5,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,2.2,39,98300,432,1409,315,314,804,66,31800,71500,9800,1200,0,0.0,0,0,16.0,77777,9,999999999,100,0.0470,0,88,0.200,0.0,1.0 +2001,12,5,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,1.7,39,98300,201,1409,312,155,588,71,15100,36400,9900,1040,0,0.0,0,0,16.0,77777,9,999999999,110,0.0470,0,88,0.200,0.0,1.0 +2001,12,5,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,2.2,42,98300,11,434,310,0,0,0,0,0,0,0,300,3.1,0,0,16.0,77777,9,999999999,110,0.0470,0,88,0.200,0.0,1.0 +2001,12,5,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,5.6,60,98300,0,0,306,0,0,0,0,0,0,0,280,3.6,0,0,16.0,77777,9,999999999,120,0.0470,0,88,0.200,0.0,1.0 +2001,12,5,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,6.7,74,98400,0,0,298,0,0,0,0,0,0,0,230,2.1,0,0,16.0,77777,9,999999999,120,0.0470,0,88,0.200,0.0,1.0 +2001,12,5,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,5.6,66,98400,0,0,300,0,0,0,0,0,0,0,260,2.6,0,0,16.0,77777,9,999999999,130,0.0470,0,88,0.200,0.0,1.0 +2001,12,5,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,7.2,83,98400,0,0,294,0,0,0,0,0,0,0,220,1.5,0,0,16.0,77777,9,999999999,130,0.0470,0,88,0.200,0.0,1.0 +2001,12,5,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,6.7,80,98500,0,0,294,0,0,0,0,0,0,0,240,1.5,0,0,16.0,77777,9,999999999,140,0.0470,0,88,0.200,0.0,1.0 +2001,12,5,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,7.2,89,98400,0,0,290,0,0,0,0,0,0,0,80,2.6,0,0,16.0,77777,9,999999999,130,0.0470,0,88,0.200,0.0,1.0 +2001,12,6,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,6.1,86,98300,0,0,286,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,130,0.0470,0,88,0.200,0.0,1.0 +2001,12,6,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,5.6,83,98300,0,0,286,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,120,0.0470,0,88,0.200,0.0,1.0 +2001,12,6,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,6.1,89,98400,0,0,284,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,120,0.0470,0,88,0.200,0.0,1.0 +2001,12,6,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,6.1,93,98300,0,0,282,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,110,0.0470,0,88,0.200,0.0,1.0 +2001,12,6,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,5.6,93,98400,0,0,279,0,0,0,0,0,0,0,0,0.0,0,0,14.4,77777,9,999999999,110,0.0470,0,88,0.200,0.0,1.0 +2001,12,6,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,4.4,89,98300,0,0,276,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,100,0.0470,0,88,0.200,0.0,1.0 +2001,12,6,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,4.4,89,98300,0,0,276,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,90,0.0470,0,88,0.200,0.0,1.0 +2001,12,6,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,3.9,76,98400,56,951,282,9,209,3,1800,12400,1000,110,0,0.0,0,0,16.0,77777,9,999999999,90,0.0470,0,88,0.200,0.0,1.0 +2001,12,6,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,2.8,63,98400,289,1409,287,169,675,30,17900,55500,6500,720,60,1.5,0,0,16.0,77777,9,999999999,80,0.0470,0,88,0.200,0.0,1.0 +2001,12,6,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,2.2,50,98500,504,1409,298,347,804,58,36400,75000,9400,1210,110,3.1,0,0,16.0,77777,9,999999999,80,0.0470,0,88,0.200,0.0,1.0 +2001,12,6,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,2.8,49,98500,665,1409,303,486,901,59,51100,87300,9700,1410,340,2.1,0,0,16.0,77777,9,999999999,70,0.0470,0,88,0.200,0.0,1.0 +2001,12,6,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,3.3,45,98400,760,1409,311,574,923,74,60000,90500,10900,1660,290,3.6,0,0,16.0,77777,9,999999999,80,0.0470,0,88,0.200,0.0,1.0 +2001,12,6,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,3.9,42,98300,784,1409,319,591,893,93,62300,88600,12800,2100,220,3.1,0,0,16.0,77777,9,999999999,90,0.0470,0,88,0.200,0.0,1.0 +2001,12,6,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,1.7,33,98200,734,1409,324,534,828,102,55300,81100,12900,2100,190,2.1,0,0,16.0,77777,9,999999999,100,0.0470,0,88,0.200,0.0,1.0 +2001,12,6,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,-1.1,27,98100,613,1409,321,446,847,76,46500,81500,10900,1570,230,1.5,0,0,16.0,77777,9,999999999,110,0.0470,0,88,0.200,0.0,1.0 +2001,12,6,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,-1.7,24,98100,431,1409,323,314,804,66,31700,71500,9800,1200,270,2.1,0,0,16.0,77777,9,999999999,120,0.0470,0,88,0.200,0.0,1.0 +2001,12,6,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,0.6,30,98000,201,1409,323,155,588,71,15100,36400,9900,1040,290,2.1,0,0,16.0,77777,9,999999999,130,0.0470,0,88,0.200,0.0,1.0 +2001,12,6,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,5.0,46,98000,11,434,320,0,0,0,0,0,0,0,220,2.1,0,0,16.0,77777,9,999999999,140,0.0470,0,88,0.200,0.0,1.0 +2001,12,6,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,6.1,55,98000,0,0,314,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,150,0.0470,0,88,0.200,0.0,1.0 +2001,12,6,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,5.6,55,98000,0,0,311,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,160,0.0470,0,88,0.200,0.0,1.0 +2001,12,6,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,7.2,69,98000,0,0,306,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,170,0.0470,0,88,0.200,0.0,1.0 +2001,12,6,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,5.0,59,98000,0,0,304,0,0,0,0,0,0,0,100,1.5,0,0,16.0,77777,9,999999999,180,0.0470,0,88,0.200,0.0,1.0 +2001,12,6,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,6.1,71,98100,0,0,298,0,0,0,0,0,0,0,100,2.6,0,0,16.0,77777,9,999999999,190,0.0470,0,88,0.200,0.0,1.0 +2001,12,6,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,6.1,74,98000,0,0,295,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,180,0.0470,0,88,0.200,0.0,1.0 +2001,12,7,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,6.7,83,97900,0,0,291,0,0,0,0,0,0,0,120,1.5,0,0,16.0,77777,9,999999999,170,0.0470,0,88,0.200,0.0,1.0 +2001,12,7,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,6.1,80,97900,0,0,290,0,0,0,0,0,0,0,60,2.1,0,0,16.0,77777,9,999999999,160,0.0470,0,88,0.200,0.0,1.0 +2001,12,7,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,6.1,86,97900,0,0,286,0,0,0,0,0,0,0,180,2.6,0,0,16.0,77777,9,999999999,150,0.0470,0,88,0.200,0.0,1.0 +2001,12,7,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,5.6,83,97800,0,0,286,0,0,0,0,0,0,0,120,1.5,0,0,16.0,77777,9,999999999,140,0.0470,0,88,0.200,0.0,1.0 +2001,12,7,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,5.6,83,98000,0,0,286,0,0,0,0,0,0,0,90,2.6,0,0,16.0,77777,9,999999999,130,0.0470,0,88,0.200,0.0,1.0 +2001,12,7,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,5.6,90,97900,0,0,281,0,0,0,0,0,0,0,90,2.6,0,0,16.0,77777,9,999999999,120,0.0470,0,88,0.200,0.0,1.0 +2001,12,7,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,5.6,90,98000,0,0,281,0,0,0,0,0,0,0,80,3.6,0,0,16.0,77777,9,999999999,100,0.0470,0,88,0.200,0.0,1.0 +2001,12,7,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,5.0,86,98000,53,928,280,8,191,3,1600,11300,900,110,90,2.6,0,0,11.2,77777,9,999999999,90,0.0470,0,88,0.200,0.0,1.0 +2001,12,7,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,5.0,77,98100,286,1409,287,157,566,42,16000,45000,6800,790,110,2.1,0,0,16.0,77777,9,999999999,80,0.0470,0,88,0.200,0.0,1.0 +2001,12,7,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,5.0,63,98200,501,1409,299,322,668,84,33500,61800,11500,1620,100,2.1,0,0,16.0,77777,9,999999999,70,0.0470,0,88,0.200,0.0,1.0 +2001,12,7,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,3.9,53,98200,662,1409,305,485,878,71,50700,84900,10700,1480,0,0.0,0,0,16.0,77777,9,999999999,60,0.0470,0,88,0.200,0.0,1.0 +2001,12,7,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,3.9,44,98100,758,1409,317,579,941,71,60600,92300,10700,1640,100,2.6,0,0,16.0,77777,9,999999999,60,0.0470,0,88,0.200,0.0,1.0 +2001,12,7,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,2.8,38,98000,782,1409,320,603,953,73,63100,93700,10900,1690,0,0.0,0,0,16.0,77777,9,999999999,60,0.0470,0,88,0.200,0.0,1.0 +2001,12,7,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,2.2,31,98000,732,1409,332,554,920,74,57900,89900,11000,1610,240,2.1,0,0,16.0,77777,9,999999999,60,0.0470,0,88,0.200,0.0,1.0 +2001,12,7,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,3.3,34,98000,613,1409,331,461,903,67,48200,86500,10500,1380,250,1.5,0,0,16.0,77777,9,999999999,60,0.0470,0,88,0.200,0.0,1.0 +2001,12,7,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,3.9,33,98000,431,1409,337,295,667,90,30100,58600,12100,1620,260,1.5,0,0,16.0,77777,9,999999999,50,0.0470,0,88,0.200,0.0,1.0 +2001,12,7,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,5.0,37,97900,201,1409,335,154,552,75,14900,33900,10100,1070,230,2.1,0,0,16.0,77777,9,999999999,50,0.0470,0,88,0.200,0.0,1.0 +2001,12,7,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,5.6,45,98000,11,435,326,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,50,0.0470,0,88,0.200,0.0,1.0 +2001,12,7,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,6.1,50,98100,0,0,322,0,0,0,0,0,0,0,290,2.1,0,0,16.0,77777,9,999999999,50,0.0470,0,88,0.200,0.0,1.0 +2001,12,7,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,6.1,55,98200,0,0,314,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,50,0.0470,0,88,0.200,0.0,1.0 +2001,12,7,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,6.1,57,98300,0,0,312,0,0,0,0,0,0,0,30,1.5,0,0,16.0,77777,9,999999999,50,0.0470,0,88,0.200,0.0,1.0 +2001,12,7,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,-3.3,26,98300,0,0,307,0,0,0,0,0,0,0,50,2.6,0,0,16.0,77777,9,999999999,40,0.0470,0,88,0.200,0.0,1.0 +2001,12,7,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,-6.1,21,98400,0,0,303,0,0,0,0,0,0,0,360,5.2,0,0,16.0,77777,9,999999999,40,0.0470,0,88,0.200,0.0,1.0 +2001,12,7,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,-5.6,22,98400,0,0,301,0,0,0,0,0,0,0,10,2.6,0,0,16.0,77777,9,999999999,40,0.0470,0,88,0.200,0.0,1.0 +2001,12,8,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,-6.1,21,98400,0,0,301,0,0,0,0,0,0,0,30,3.6,0,0,16.0,77777,9,999999999,40,0.0480,0,88,0.200,0.0,1.0 +2001,12,8,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,-5.6,25,98400,0,0,294,0,0,0,0,0,0,0,10,5.2,0,0,16.0,77777,9,999999999,50,0.0480,0,88,0.200,0.0,1.0 +2001,12,8,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,-7.2,20,98400,0,0,297,0,0,0,0,0,0,0,50,2.6,0,0,16.0,77777,9,999999999,50,0.0480,0,88,0.200,0.0,1.0 +2001,12,8,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,-4.4,32,98400,0,0,287,0,0,0,0,0,0,0,80,5.2,0,0,16.0,77777,9,999999999,50,0.0480,0,88,0.200,0.0,1.0 +2001,12,8,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,-4.4,34,98500,0,0,282,0,0,0,0,0,0,0,230,2.6,0,0,16.0,77777,9,999999999,50,0.0480,0,88,0.200,0.0,1.0 +2001,12,8,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,-6.7,27,98500,0,0,282,0,0,0,0,0,0,0,150,1.5,0,0,16.0,77777,9,999999999,50,0.0480,0,88,0.200,0.0,1.0 +2001,12,8,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,-8.9,21,98500,0,0,284,0,0,0,0,0,0,0,70,3.1,0,0,16.0,77777,9,999999999,50,0.0480,0,88,0.200,0.0,1.0 +2001,12,8,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,-4.4,34,98600,51,905,282,6,149,3,1300,8800,800,110,200,2.1,0,0,16.0,77777,9,999999999,50,0.0480,0,88,0.200,0.0,1.0 +2001,12,8,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,-7.8,21,98700,283,1410,290,153,565,39,15600,44900,6600,750,60,3.6,0,0,16.0,77777,9,999999999,50,0.0480,0,88,0.200,0.0,1.0 +2001,12,8,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,-9.4,16,98700,498,1410,297,331,775,57,34800,72200,9200,1190,50,5.7,0,0,16.0,77777,9,999999999,60,0.0480,0,88,0.200,0.0,1.0 +2001,12,8,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,-10.0,14,98700,659,1410,301,463,837,70,49200,81900,10700,1560,60,5.2,0,0,16.0,77777,9,999999999,60,0.0480,0,88,0.200,0.0,1.0 +2001,12,8,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,-8.9,15,98600,756,1410,305,556,857,95,58200,84600,12700,2070,20,4.6,0,0,16.0,77777,9,999999999,60,0.0480,0,88,0.200,0.0,1.0 +2001,12,8,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,-8.3,15,98500,780,1410,310,554,730,148,57700,72400,17400,3260,20,5.7,0,0,16.0,77777,9,999999999,60,0.0480,0,88,0.200,0.0,1.0 +2001,12,8,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,-7.8,14,98400,731,1410,315,481,638,149,49800,62500,17200,3120,30,6.2,0,0,16.0,77777,9,999999999,60,0.0480,0,88,0.200,0.0,1.0 +2001,12,8,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,-7.8,13,98300,612,1410,320,410,651,126,42100,62100,15100,2450,50,5.2,0,0,16.0,77777,9,999999999,60,0.0480,0,88,0.200,0.0,1.0 +2001,12,8,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,-7.2,14,98300,431,1410,321,295,666,90,30000,58500,12100,1620,360,4.1,0,0,16.0,77777,9,999999999,60,0.0480,0,88,0.200,0.0,1.0 +2001,12,8,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,-7.2,15,98200,201,1410,318,184,619,95,17700,38300,12200,1920,40,3.1,0,0,16.0,77777,9,999999999,60,0.0480,0,88,0.200,0.0,1.0 +2001,12,8,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,-6.1,17,98200,12,435,315,0,0,0,0,0,0,0,10,2.1,0,0,16.0,77777,9,999999999,60,0.0480,0,88,0.200,0.0,1.0 +2001,12,8,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,-1.7,30,98200,0,0,308,0,0,0,0,0,0,0,260,1.5,0,0,16.0,77777,9,999999999,60,0.0480,0,88,0.200,0.0,1.0 +2001,12,8,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,-2.2,30,98200,0,0,305,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,60,0.0480,0,88,0.200,0.0,1.0 +2001,12,8,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,-1.1,37,98200,0,0,299,0,0,0,0,0,0,0,70,3.1,0,0,16.0,77777,9,999999999,60,0.0480,0,88,0.200,0.0,1.0 +2001,12,8,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,-2.8,32,98200,0,0,297,0,0,0,0,0,0,0,60,4.6,0,0,16.0,77777,9,999999999,60,0.0480,0,88,0.200,0.0,1.0 +2001,12,8,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,-5.0,25,98200,0,0,298,0,0,0,0,0,0,0,60,5.7,0,0,16.0,77777,9,999999999,60,0.0480,0,88,0.200,0.0,1.0 +2001,12,8,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,-3.3,34,98100,0,0,290,0,0,0,0,0,0,0,110,3.1,0,0,16.0,77777,9,999999999,60,0.0480,0,88,0.200,0.0,1.0 +2001,12,9,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,-2.8,37,98000,0,0,288,0,0,0,0,0,0,0,80,4.1,0,0,16.0,77777,9,999999999,60,0.0480,0,88,0.200,0.0,1.0 +2001,12,9,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,-2.8,39,97900,0,0,284,0,0,0,0,0,0,0,80,4.1,0,0,16.0,77777,9,999999999,70,0.0480,0,88,0.200,0.0,1.0 +2001,12,9,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,-2.8,39,97900,0,0,284,0,0,0,0,0,0,0,90,3.1,0,0,16.0,77777,9,999999999,70,0.0480,0,88,0.200,0.0,1.0 +2001,12,9,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,-1.7,47,97900,0,0,281,0,0,0,0,0,0,0,140,1.5,0,0,16.0,77777,9,999999999,70,0.0480,0,88,0.200,0.0,1.0 +2001,12,9,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,-2.2,43,98000,0,0,282,0,0,0,0,0,0,0,100,3.1,0,0,16.0,77777,9,999999999,70,0.0480,0,88,0.200,0.0,1.0 +2001,12,9,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,-2.8,42,97900,0,0,280,0,0,0,0,0,0,0,110,2.1,0,0,16.0,77777,9,999999999,70,0.0480,0,88,0.200,0.0,1.0 +2001,12,9,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,-2.2,48,97800,0,0,276,0,0,0,0,0,0,0,110,1.5,0,0,16.0,77777,9,999999999,70,0.0480,0,88,0.200,0.0,1.0 +2001,12,9,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,-0.6,55,97800,49,881,277,7,193,2,1500,11300,800,80,120,2.6,0,0,16.0,77777,9,999999999,70,0.0480,0,88,0.200,0.0,1.0 +2001,12,9,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,-2.8,35,97800,279,1410,291,155,589,38,15900,46700,6600,740,110,3.1,0,0,16.0,77777,9,999999999,70,0.0480,0,88,0.200,0.0,1.0 +2001,12,9,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,-3.9,27,97900,495,1410,301,326,757,59,34000,70300,9200,1210,90,3.1,0,0,16.0,77777,9,999999999,70,0.0480,0,88,0.200,0.0,1.0 +2001,12,9,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,-3.9,22,97800,657,1410,313,447,754,94,47200,74000,12600,1980,110,4.1,0,0,16.0,77777,9,999999999,70,0.0480,0,88,0.200,0.0,1.0 +2001,12,9,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,-5.6,19,97600,753,1410,313,555,857,96,58000,84500,12700,2070,90,4.1,0,0,16.0,77777,9,999999999,70,0.0480,0,88,0.200,0.0,1.0 +2001,12,9,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,-4.4,19,97400,778,1410,322,554,772,126,58300,77100,15600,2840,110,4.6,0,0,16.0,77777,9,999999999,80,0.0480,0,88,0.200,0.0,1.0 +2001,12,9,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,-6.7,14,97300,730,1410,326,527,822,100,54600,80500,12700,2070,130,6.2,0,0,16.0,77777,9,999999999,80,0.0480,0,88,0.200,0.0,1.0 +2001,12,9,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,-7.8,12,97200,611,1410,328,439,771,103,45800,74300,13400,2070,130,4.6,0,0,16.0,77777,9,999999999,80,0.0480,0,88,0.200,0.0,1.0 +2001,12,9,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,-7.8,12,97100,431,1410,330,322,776,84,33000,68400,12000,1540,130,3.1,0,0,16.0,77777,9,999999999,80,0.0480,0,88,0.200,0.0,1.0 +2001,12,9,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,-6.7,14,97000,202,1410,324,152,526,76,15000,32900,10200,1470,120,4.1,0,0,16.0,7620,9,999999999,80,0.0480,0,88,0.200,0.0,1.0 +2001,12,9,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,-5.6,18,97000,12,435,315,0,0,0,0,0,0,0,110,2.6,0,0,16.0,7620,9,999999999,80,0.0480,0,88,0.200,0.0,1.0 +2001,12,9,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,-3.9,24,96900,0,0,308,0,0,0,0,0,0,0,80,5.2,0,0,16.0,7620,9,999999999,80,0.0480,0,88,0.200,0.0,1.0 +2001,12,9,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,-3.3,27,96900,0,0,310,0,0,0,0,0,0,0,70,3.6,2,1,16.0,7620,9,999999999,80,0.0480,0,88,0.200,0.0,1.0 +2001,12,9,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,-4.4,28,96800,0,0,296,0,0,0,0,0,0,0,100,4.6,0,0,16.0,77777,9,999999999,80,0.0480,0,88,0.200,0.0,1.0 +2001,12,9,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,-6.1,23,96800,0,0,296,0,0,0,0,0,0,0,140,2.1,1,0,16.0,77777,9,999999999,80,0.0480,0,88,0.200,0.0,1.0 +2001,12,9,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,-6.1,24,96800,0,0,294,0,0,0,0,0,0,0,50,2.1,0,0,16.0,77777,9,999999999,80,0.0480,0,88,0.200,0.0,1.0 +2001,12,9,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,-3.3,35,96700,0,0,288,0,0,0,0,0,0,0,90,3.1,1,0,16.0,77777,9,999999999,80,0.0480,0,88,0.200,0.0,1.0 +2001,12,10,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,-5.0,27,96600,0,0,293,0,0,0,0,0,0,0,110,4.1,0,0,16.0,77777,9,999999999,80,0.0480,0,88,0.200,0.0,1.0 +2001,12,10,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,-5.0,29,96600,0,0,288,0,0,0,0,0,0,0,70,3.6,0,0,16.0,77777,9,999999999,80,0.0480,0,88,0.200,0.0,1.0 +2001,12,10,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,-3.9,33,96500,0,0,287,0,0,0,0,0,0,0,80,3.6,0,0,16.0,77777,9,999999999,80,0.0480,0,88,0.200,0.0,1.0 +2001,12,10,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,-4.4,32,96400,0,0,287,0,0,0,0,0,0,0,70,2.6,0,0,16.0,77777,9,999999999,80,0.0480,0,88,0.200,0.0,1.0 +2001,12,10,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,-4.4,34,96500,0,0,282,0,0,0,0,0,0,0,80,4.6,0,0,16.0,77777,9,999999999,80,0.0480,0,88,0.200,0.0,1.0 +2001,12,10,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,-5.6,30,96400,0,0,283,0,0,0,0,0,0,0,280,2.6,0,0,16.0,77777,9,999999999,80,0.0480,0,88,0.200,0.0,1.0 +2001,12,10,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,-3.3,39,96400,0,0,293,0,0,0,0,0,0,0,0,0.0,3,3,16.0,77777,9,999999999,80,0.0480,0,88,0.200,0.0,1.0 +2001,12,10,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,-2.2,43,96500,47,882,299,1,0,1,100,0,100,40,120,1.5,5,5,14.4,4572,9,999999999,80,0.0480,0,88,0.200,0.0,1.0 +2001,12,10,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,-2.2,36,96600,276,1411,322,68,15,65,7600,500,7500,2270,240,2.1,8,8,16.0,1829,9,999999999,80,0.0480,0,88,0.200,0.0,1.0 +2001,12,10,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,-0.6,41,96700,492,1411,341,53,0,53,6400,0,6400,2360,250,6.2,10,10,16.0,1829,9,999999999,80,0.0480,0,88,0.200,0.0,1.0 +2001,12,10,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,0.6,40,96800,654,1411,322,457,573,190,47200,56500,20900,3980,240,7.7,5,5,16.0,77777,9,999999999,80,0.0480,0,88,0.200,0.0,1.0 +2001,12,10,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,0.0,37,96800,751,1411,323,503,672,143,52200,66300,16800,3070,230,8.2,5,5,16.0,77777,9,999999999,80,0.0480,0,88,0.200,0.0,1.0 +2001,12,10,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,-0.6,34,96800,777,1411,320,529,706,139,55400,70200,16600,3080,240,8.8,3,3,16.0,77777,9,999999999,80,0.0480,0,88,0.200,0.0,1.0 +2001,12,10,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,0.0,36,96700,729,1411,326,520,785,113,54900,78000,14400,2470,210,4.6,5,5,16.0,77777,9,999999999,90,0.0480,0,88,0.200,0.0,1.0 +2001,12,10,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,-0.6,33,96700,611,1411,323,424,726,108,44100,69800,13700,2160,230,5.2,3,3,16.0,77777,9,999999999,90,0.0480,0,88,0.200,0.0,1.0 +2001,12,10,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,-0.6,33,96800,431,1411,325,276,570,101,27900,49600,12700,1770,230,6.2,4,4,16.0,77777,9,999999999,90,0.0480,0,88,0.200,0.0,1.0 +2001,12,10,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,-0.6,34,96800,202,1411,325,150,512,76,14800,32000,10200,1470,220,3.1,5,5,16.0,77777,9,999999999,90,0.0480,0,88,0.200,0.0,1.0 +2001,12,10,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,-0.6,35,96700,12,435,323,0,0,0,0,0,0,0,0,0.0,5,5,16.0,77777,9,999999999,90,0.0480,0,88,0.200,0.0,1.0 +2001,12,10,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,0.6,42,96800,0,0,319,0,0,0,0,0,0,0,0,0.0,5,5,16.0,77777,9,999999999,90,0.0480,0,88,0.200,0.0,1.0 +2001,12,10,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,1.1,47,96800,0,0,315,0,0,0,0,0,0,0,80,3.1,5,5,16.0,77777,9,999999999,90,0.0480,0,88,0.200,0.0,1.0 +2001,12,10,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,1.7,54,96800,0,0,308,0,0,0,0,0,0,0,100,2.6,5,5,16.0,77777,9,999999999,90,0.0480,0,88,0.200,0.0,1.0 +2001,12,10,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,1.1,54,96700,0,0,305,0,0,0,0,0,0,0,100,2.1,5,5,16.0,77777,9,999999999,90,0.0480,0,88,0.200,0.0,1.0 +2001,12,10,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,1.7,59,96800,0,0,309,0,0,0,0,0,0,0,0,0.0,7,7,16.0,4572,9,999999999,90,0.0480,0,88,0.200,0.0,1.0 +2001,12,10,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,2.2,63,96700,0,0,319,0,0,0,0,0,0,0,140,2.6,9,9,16.0,4572,9,999999999,90,0.0480,0,88,0.200,0.0,1.0 +2001,12,11,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,2.2,65,96700,0,0,317,0,0,0,0,0,0,0,100,2.6,9,9,16.0,4572,9,999999999,90,0.0480,0,88,0.200,0.0,1.0 +2001,12,11,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,2.2,65,96600,0,0,299,0,0,0,0,0,0,0,90,2.6,5,5,16.0,77777,9,999999999,90,0.0480,0,88,0.200,0.0,1.0 +2001,12,11,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,1.1,58,96600,0,0,318,0,0,0,0,0,0,0,110,2.1,9,9,16.0,2743,9,999999999,90,0.0480,0,88,0.200,0.0,1.0 +2001,12,11,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,1.1,60,96600,0,0,315,0,0,0,0,0,0,0,150,6.2,9,9,16.0,2134,9,999999999,90,0.0480,0,88,0.200,0.0,1.0 +2001,12,11,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,4.4,76,96700,0,0,312,0,0,0,0,0,0,0,40,3.1,8,8,16.0,2134,9,999999999,90,0.0480,0,88,0.200,0.0,1.0 +2001,12,11,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,5.0,80,96600,0,0,320,0,0,0,0,0,0,0,110,2.6,9,9,16.0,2134,9,999999999,90,0.0480,0,88,0.200,0.0,1.0 +2001,12,11,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,5.6,83,96700,0,0,320,0,0,0,0,0,0,0,120,3.6,9,9,16.0,2743,9,999999999,90,0.0480,0,88,0.200,0.0,1.0 +2001,12,11,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,5.6,83,96700,45,858,320,4,70,3,800,3900,600,80,110,4.6,9,9,16.0,3048,9,999999999,90,0.0480,0,88,0.200,0.0,1.0 +2001,12,11,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,6.1,86,96800,273,1411,321,36,0,36,4200,0,4200,1420,150,5.7,9,9,16.0,2134,9,999999999,90,0.0480,0,88,0.200,0.0,1.0 +2001,12,11,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,5.6,80,96900,489,1411,332,81,0,81,9500,0,9500,3380,150,4.1,10,10,16.0,1524,9,999999999,90,0.0480,0,88,0.200,0.0,1.0 +2001,12,11,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,6.7,86,97000,651,1411,334,102,0,102,12100,0,12100,4570,140,4.1,10,10,16.0,1280,9,999999999,90,0.0480,0,88,0.200,0.0,1.0 +2001,12,11,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,7.2,89,97000,749,1411,334,116,0,116,13900,0,13900,5390,130,3.1,10,10,16.0,1128,9,999999999,90,0.0480,0,88,0.200,0.0,1.0 +2001,12,11,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,7.2,89,96900,775,1411,325,123,0,123,14700,0,14700,5740,160,1.5,9,9,16.0,1219,9,999999999,90,0.0480,0,88,0.200,0.0,1.0 +2001,12,11,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,7.2,96,96900,728,1411,320,125,0,125,14800,0,14800,5670,270,3.1,9,9,9.6,701,9,999999999,90,0.0480,0,88,0.200,3.0,1.0 +2001,12,11,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,7.2,96,96900,611,1411,320,102,0,102,12000,0,12000,4450,260,5.2,9,9,14.4,762,9,999999999,90,0.0480,0,88,0.200,3.0,1.0 +2001,12,11,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,6.7,97,97000,431,1411,317,156,48,141,17000,4400,15700,3580,240,4.1,9,9,11.2,762,9,999999999,80,0.0480,0,88,0.200,1.0,1.0 +2001,12,11,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,6.1,93,97100,203,1411,325,148,272,109,14700,16500,12300,2510,260,4.1,10,10,14.4,1372,9,999999999,80,0.0480,0,88,0.200,0.0,1.0 +2001,12,11,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,6.7,100,97000,12,459,323,0,0,0,0,0,0,0,240,2.6,10,10,16.0,3658,9,999999999,80,0.0480,0,88,0.200,0.0,1.0 +2001,12,11,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,6.7,97,97100,0,0,326,0,0,0,0,0,0,0,240,2.1,10,10,16.0,3658,9,999999999,80,0.0480,0,88,0.200,0.0,1.0 +2001,12,11,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,6.1,93,97200,0,0,325,0,0,0,0,0,0,0,290,5.2,10,10,16.0,3658,9,999999999,70,0.0480,0,88,0.200,0.0,1.0 +2001,12,11,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,6.7,97,97300,0,0,326,0,0,0,0,0,0,0,270,4.6,10,10,16.0,1067,9,999999999,70,0.0480,0,88,0.200,0.0,1.0 +2001,12,11,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,6.1,96,97300,0,0,314,0,0,0,0,0,0,0,220,2.1,9,9,16.0,3658,9,999999999,70,0.0480,0,88,0.200,0.0,1.0 +2001,12,11,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,6.1,93,97400,0,0,325,0,0,0,0,0,0,0,280,1.5,10,10,16.0,1036,9,999999999,70,0.0480,0,88,0.200,0.0,1.0 +2001,12,11,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,6.1,93,97400,0,0,316,0,0,0,0,0,0,0,320,2.1,9,9,16.0,1829,9,999999999,70,0.0480,0,88,0.200,0.0,1.0 +2001,12,12,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,6.1,96,97400,0,0,323,0,0,0,0,0,0,0,0,0.0,10,10,16.0,914,9,999999999,70,0.0480,0,88,0.200,0.0,1.0 +2001,12,12,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,5.6,93,97500,0,0,322,0,0,0,0,0,0,0,0,0.0,10,10,16.0,914,9,999999999,70,0.0480,0,88,0.200,0.0,1.0 +2001,12,12,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,5.6,97,97500,0,0,293,0,0,0,0,0,0,0,320,2.6,5,5,16.0,77777,9,999999999,70,0.0480,0,88,0.200,0.0,1.0 +2001,12,12,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,5.6,97,97500,0,0,293,0,0,0,0,0,0,0,20,2.6,5,5,16.0,77777,9,999999999,70,0.0480,0,88,0.200,0.0,1.0 +2001,12,12,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,6.1,100,97700,0,0,300,0,0,0,0,0,0,0,200,1.5,7,7,14.4,1189,9,999999999,70,0.0480,0,88,0.200,0.0,1.0 +2001,12,12,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,5.0,93,97700,0,0,310,0,0,0,0,0,0,0,360,2.6,9,9,16.0,1189,9,999999999,80,0.0480,0,88,0.200,0.0,1.0 +2001,12,12,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,5.0,93,97800,0,0,319,0,0,0,0,0,0,0,0,0.0,10,10,16.0,335,9,999999999,80,0.0480,0,88,0.200,0.0,1.0 +2001,12,12,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,5.6,93,97800,44,835,322,1,0,1,100,0,100,40,0,0.0,10,10,16.0,335,9,999999999,80,0.0480,0,88,0.200,0.0,1.0 +2001,12,12,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,5.6,90,97900,270,1411,324,67,10,65,7500,300,7400,2240,60,2.1,10,10,16.0,1097,9,999999999,80,0.0480,0,88,0.200,0.0,1.0 +2001,12,12,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,5.0,80,98000,486,1411,329,148,17,142,16500,1200,16100,5070,110,1.5,10,10,16.0,1097,9,999999999,80,0.0480,0,88,0.200,0.0,1.0 +2001,12,12,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,5.0,80,98100,649,1411,308,279,134,217,30200,13500,23900,5270,0,0.0,7,7,16.0,1097,9,999999999,80,0.0480,0,88,0.200,0.0,1.0 +2001,12,12,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,5.0,74,98000,747,1411,325,554,708,178,56700,68900,20100,3650,0,0.0,9,9,16.0,1097,9,999999999,80,0.0480,0,88,0.200,0.0,1.0 +2001,12,12,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,6.1,77,98000,774,1411,329,547,724,148,56900,71700,17400,3230,200,2.6,9,9,16.0,1097,9,999999999,80,0.0480,0,88,0.200,0.0,1.0 +2001,12,12,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,4.4,65,98000,727,1411,330,533,858,89,55900,84400,12200,1930,230,2.6,9,9,16.0,6096,9,999999999,80,0.0480,0,88,0.200,0.0,1.0 +2001,12,12,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,5.0,66,97900,611,1411,333,445,815,91,45500,77600,11700,1720,240,3.6,9,9,16.0,4572,9,999999999,80,0.0480,0,88,0.200,0.0,1.0 +2001,12,12,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,5.0,66,97900,432,1411,314,275,514,117,28300,45600,14300,2230,250,3.6,5,5,16.0,77777,9,999999999,80,0.0480,0,88,0.200,0.0,1.0 +2001,12,12,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,2.8,57,98000,204,1411,318,88,0,88,9300,0,9300,2190,320,1.5,7,7,16.0,4572,9,999999999,70,0.0480,0,88,0.200,0.0,1.0 +2001,12,12,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,4.4,68,98000,13,459,327,0,0,0,0,0,0,0,20,5.2,9,9,16.0,2743,9,999999999,70,0.0480,0,88,0.200,0.0,1.0 +2001,12,12,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,4.4,73,98000,0,0,322,0,0,0,0,0,0,0,140,2.6,9,9,16.0,1676,9,999999999,70,0.0480,0,88,0.200,0.0,1.0 +2001,12,12,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,6.7,90,98100,0,0,304,0,0,0,0,0,0,0,100,2.6,5,5,16.0,77777,9,999999999,70,0.0480,0,88,0.200,0.0,1.0 +2001,12,12,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,5.0,82,98200,0,0,292,0,0,0,0,0,0,0,80,4.1,2,2,16.0,77777,9,999999999,70,0.0480,0,88,0.200,0.0,1.0 +2001,12,12,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,5.0,89,98200,0,0,291,0,0,0,0,0,0,0,110,3.1,3,3,16.0,77777,9,999999999,70,0.0480,0,88,0.200,0.0,1.0 +2001,12,12,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,5.0,93,98400,0,0,285,0,0,0,0,0,0,0,100,2.6,2,2,16.0,77777,9,999999999,70,0.0480,0,88,0.200,0.0,1.0 +2001,12,12,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,5.0,96,98300,0,0,274,0,0,0,0,0,0,0,120,2.1,0,0,16.0,77777,9,999999999,70,0.0480,0,88,0.200,0.0,1.0 +2001,12,13,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,4.4,92,98300,0,0,274,0,0,0,0,0,0,0,110,2.1,1,0,16.0,77777,9,999999999,70,0.0490,0,88,0.200,0.0,1.0 +2001,12,13,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,4.4,96,98300,0,0,271,0,0,0,0,0,0,0,0,0.0,1,0,16.0,77777,9,999999999,70,0.0490,0,88,0.200,0.0,1.0 +2001,12,13,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,3.9,97,98300,0,0,268,0,0,0,0,0,0,0,0,0.0,1,0,16.0,77777,9,999999999,70,0.0490,0,88,0.200,0.0,1.0 +2001,12,13,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,3.9,97,98300,0,0,268,0,0,0,0,0,0,0,0,0.0,1,0,16.0,77777,9,999999999,70,0.0490,0,88,0.200,0.0,1.0 +2001,12,13,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.3,3.3,100,98400,0,0,264,0,0,0,0,0,0,0,0,0.0,1,0,16.0,77777,9,999999999,70,0.0490,0,88,0.200,0.0,1.0 +2001,12,13,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.8,2.8,100,98300,0,0,270,0,0,0,0,0,0,0,100,1.5,9,2,16.0,77777,9,999999999,70,0.0490,0,88,0.200,0.0,1.0 +2001,12,13,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.3,1.7,89,98400,0,0,274,0,0,0,0,0,0,0,0,0.0,9,3,16.0,77777,9,999999999,70,0.0490,0,88,0.200,0.0,1.0 +2001,12,13,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.9,3.3,96,98500,42,835,307,3,134,1,1000,7700,500,40,0,0.0,10,10,16.0,7620,9,999999999,80,0.0490,0,88,0.200,0.0,1.0 +2001,12,13,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,1.1,73,98600,267,1412,312,141,517,42,14500,39000,7100,780,100,2.1,10,10,16.0,7620,9,999999999,80,0.0490,0,88,0.200,0.0,1.0 +2001,12,13,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,1.1,67,98600,483,1412,317,338,772,72,34400,70500,10100,1330,90,3.1,10,10,16.0,7620,9,999999999,80,0.0490,0,88,0.200,0.0,1.0 +2001,12,13,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,0.6,56,98700,647,1412,311,461,865,63,48300,83500,9900,1420,60,2.6,10,8,16.0,7620,9,999999999,80,0.0490,0,88,0.200,0.0,1.0 +2001,12,13,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,-2.2,40,98500,746,1412,322,554,898,78,57800,87900,11200,1650,70,3.1,10,9,16.0,7620,9,999999999,80,0.0490,0,88,0.200,0.0,1.0 +2001,12,13,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,-3.9,35,98400,773,1412,320,596,953,72,62300,93600,10800,1670,60,1.5,10,9,16.0,7620,9,999999999,90,0.0490,0,88,0.200,0.0,1.0 +2001,12,13,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,-2.8,34,98300,727,1412,329,559,919,84,59000,90600,12100,1860,350,1.5,10,9,16.0,7620,9,999999999,90,0.0490,0,88,0.200,0.0,1.0 +2001,12,13,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,-4.4,31,98300,611,1412,324,445,814,91,45400,77500,11700,1720,270,2.1,10,9,16.0,7620,9,999999999,100,0.0490,0,88,0.200,0.0,1.0 +2001,12,13,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,-3.9,31,98300,432,1412,327,284,589,102,28600,51300,12800,1790,260,2.6,10,9,16.0,7620,9,999999999,100,0.0490,0,88,0.200,0.0,1.0 +2001,12,13,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,-1.1,41,98300,205,1412,321,144,459,77,14200,28900,10000,1490,230,3.1,10,8,16.0,7620,9,999999999,110,0.0490,0,88,0.200,0.0,1.0 +2001,12,13,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,0.6,52,98200,13,459,323,0,0,0,0,0,0,0,220,1.5,10,9,16.0,7620,9,999999999,120,0.0490,0,88,0.200,0.0,1.0 +2001,12,13,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,0.6,52,98200,0,0,323,0,0,0,0,0,0,0,260,1.5,10,9,16.0,7620,9,999999999,120,0.0490,0,88,0.200,0.0,1.0 +2001,12,13,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,3.3,73,98100,0,0,281,0,0,0,0,0,0,0,0,0.0,1,0,16.0,77777,9,999999999,130,0.0490,0,88,0.200,0.0,1.0 +2001,12,13,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,1.7,63,98100,0,0,282,0,0,0,0,0,0,0,360,1.5,1,0,16.0,77777,9,999999999,130,0.0490,0,88,0.200,0.0,1.0 +2001,12,13,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,1.7,70,98100,0,0,275,0,0,0,0,0,0,0,0,0.0,1,0,16.0,77777,9,999999999,140,0.0490,0,88,0.200,0.0,1.0 +2001,12,13,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,1.7,73,98100,0,0,273,0,0,0,0,0,0,0,80,3.1,1,0,16.0,77777,9,999999999,140,0.0490,0,88,0.200,0.0,1.0 +2001,12,13,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,1.1,73,97900,0,0,270,0,0,0,0,0,0,0,90,2.6,1,0,16.0,77777,9,999999999,140,0.0490,0,88,0.200,0.0,1.0 +2001,12,14,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,0.6,73,97800,0,0,268,0,0,0,0,0,0,0,90,2.1,0,0,16.0,77777,9,999999999,140,0.0490,0,88,0.200,0.0,1.0 +2001,12,14,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.9,0.6,79,97700,0,0,263,0,0,0,0,0,0,0,80,2.1,0,0,16.0,77777,9,999999999,130,0.0490,0,88,0.200,0.0,1.0 +2001,12,14,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.9,0.0,76,97600,0,0,263,0,0,0,0,0,0,0,120,2.1,0,0,16.0,77777,9,999999999,130,0.0490,0,88,0.200,0.0,1.0 +2001,12,14,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.8,0.0,82,97600,0,0,259,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,120,0.0490,0,88,0.200,0.0,1.0 +2001,12,14,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.8,0.6,85,97600,0,0,259,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,120,0.0490,0,88,0.200,0.0,1.0 +2001,12,14,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.8,0.6,85,97400,0,0,259,0,0,0,0,0,0,0,100,2.1,0,0,16.0,77777,9,999999999,120,0.0490,0,88,0.200,0.0,1.0 +2001,12,14,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.2,0.0,85,97400,0,0,256,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,110,0.0490,0,88,0.200,0.0,1.0 +2001,12,14,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.9,-1.1,69,97400,40,812,262,3,146,1,1000,8400,600,40,100,2.1,0,0,16.0,77777,9,999999999,110,0.0490,0,88,0.200,0.0,1.0 +2001,12,14,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,0.0,67,97400,264,1412,269,147,621,30,15500,49700,6200,680,100,3.6,0,0,16.0,77777,9,999999999,110,0.0490,0,88,0.200,0.0,1.0 +2001,12,14,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,0.0,58,97400,481,1412,278,328,822,46,34500,75900,8600,1080,100,3.6,0,0,16.0,77777,9,999999999,100,0.0490,0,88,0.200,0.0,1.0 +2001,12,14,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,0.6,56,97400,645,1412,283,461,870,62,48400,83900,9900,1410,90,3.6,0,0,16.0,77777,9,999999999,100,0.0490,0,88,0.200,0.0,1.0 +2001,12,14,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,-0.6,46,97200,744,1412,301,548,755,148,56800,74300,17400,3140,110,2.6,3,3,16.0,77777,9,999999999,100,0.0490,0,88,0.200,0.0,1.0 +2001,12,14,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,-0.6,41,97000,772,1412,313,442,332,260,46900,34800,27800,6320,140,3.6,5,5,16.0,77777,9,999999999,110,0.0490,0,88,0.200,0.0,1.0 +2001,12,14,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,0.6,45,96800,727,1412,333,500,552,215,51700,55300,23100,4720,150,4.1,9,9,16.0,7620,9,999999999,110,0.0490,0,88,0.200,0.0,1.0 +2001,12,14,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,0.0,43,96700,611,1412,341,262,133,205,28400,13300,22600,4900,150,3.1,10,10,16.0,7620,9,999999999,110,0.0490,0,88,0.200,0.0,1.0 +2001,12,14,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,0.6,42,96600,433,1412,347,320,521,159,31800,46000,17700,3180,150,3.1,10,10,16.0,7620,9,999999999,120,0.0490,0,88,0.200,0.0,1.0 +2001,12,14,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,0.6,43,96600,206,1412,323,170,689,69,16600,43400,10200,1040,200,1.5,7,7,16.0,7620,9,999999999,120,0.0490,0,88,0.200,0.0,1.0 +2001,12,14,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,0.6,46,96500,13,459,330,0,0,0,0,0,0,0,0,0.0,9,9,16.0,7620,9,999999999,120,0.0490,0,88,0.200,0.0,1.0 +2001,12,14,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,1.1,48,96600,0,0,340,0,0,0,0,0,0,0,0,0.0,10,10,16.0,3353,9,999999999,130,0.0490,0,88,0.200,0.0,1.0 +2001,12,14,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,1.7,52,96600,0,0,338,0,0,0,0,0,0,0,330,2.6,10,10,16.0,3353,9,999999999,130,0.0490,0,88,0.200,0.0,1.0 +2001,12,14,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,2.8,63,96500,0,0,322,0,0,0,0,0,0,0,240,2.1,9,9,16.0,7620,9,999999999,140,0.0490,0,88,0.200,0.0,1.0 +2001,12,14,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,2.2,61,96500,0,0,322,0,0,0,0,0,0,0,170,1.5,9,9,16.0,7620,9,999999999,140,0.0490,0,88,0.200,0.0,1.0 +2001,12,14,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,2.2,63,96600,0,0,308,0,0,0,0,0,0,0,0,0.0,7,7,16.0,7620,9,999999999,140,0.0490,0,88,0.200,0.0,1.0 +2001,12,14,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,3.3,73,96600,0,0,316,0,0,0,0,0,0,0,230,1.5,9,9,16.0,3048,9,999999999,140,0.0490,0,88,0.200,0.0,1.0 +2001,12,15,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,3.3,73,96700,0,0,325,0,0,0,0,0,0,0,270,2.6,10,10,16.0,2134,9,999999999,130,0.0490,0,88,0.200,0.0,1.0 +2001,12,15,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,1.7,61,96700,0,0,328,0,0,0,0,0,0,0,270,3.6,10,10,16.0,2743,9,999999999,130,0.0490,0,88,0.200,0.0,1.0 +2001,12,15,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,2.2,65,96800,0,0,326,0,0,0,0,0,0,0,290,4.1,10,10,16.0,2286,9,999999999,120,0.0490,0,88,0.200,0.0,1.0 +2001,12,15,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,4.4,82,96700,0,0,323,0,0,0,0,0,0,0,0,0.0,10,10,16.0,7620,9,999999999,110,0.0490,0,88,0.200,0.0,1.0 +2001,12,15,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,4.4,82,96900,0,0,308,0,0,0,0,0,0,0,0,0.0,8,8,16.0,1676,9,999999999,110,0.0490,0,88,0.200,0.0,1.0 +2001,12,15,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,5.0,89,96900,0,0,278,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,100,0.0490,0,88,0.200,0.0,1.0 +2001,12,15,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,5.0,96,96900,0,0,290,0,0,0,0,0,0,0,0,0.0,5,5,16.0,77777,9,999999999,90,0.0490,0,88,0.200,0.0,1.0 +2001,12,15,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,4.4,96,97000,39,788,287,2,137,1,900,7800,500,40,0,0.0,5,5,16.0,77777,9,999999999,90,0.0490,0,88,0.200,0.0,1.0 +2001,12,15,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,5.0,89,97100,261,1412,295,143,604,30,15000,48200,6100,680,0,0.0,5,5,16.0,77777,9,999999999,80,0.0490,0,88,0.200,0.0,1.0 +2001,12,15,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,4.4,79,97200,479,1412,317,299,613,90,30800,55700,11800,1680,260,1.5,9,9,16.0,7620,9,999999999,80,0.0490,0,88,0.200,0.0,1.0 +2001,12,15,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,5.0,74,97300,643,1412,318,444,695,127,45900,67000,15300,2520,230,2.6,8,8,16.0,7620,9,999999999,70,0.0490,0,88,0.200,0.0,1.0 +2001,12,15,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,3.9,68,97300,743,1412,305,450,422,227,48000,44100,24800,5300,270,2.1,5,5,16.0,77777,9,999999999,70,0.0490,0,88,0.200,0.0,1.0 +2001,12,15,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,2.8,58,97200,771,1412,328,583,730,183,59700,71300,20600,3820,310,4.6,9,9,16.0,4572,9,999999999,80,0.0490,0,88,0.200,0.0,1.0 +2001,12,15,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,2.8,54,97200,726,1412,333,408,319,243,43200,33200,26100,5740,320,5.2,9,9,16.0,3658,9,999999999,80,0.0490,0,88,0.200,0.0,1.0 +2001,12,15,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,0.6,45,97200,611,1412,333,306,215,213,33000,21400,23700,5090,290,4.6,9,9,16.0,4572,9,999999999,80,0.0490,0,88,0.200,0.0,1.0 +2001,12,15,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,-0.6,41,97200,434,1412,341,319,575,142,32200,50900,16500,2790,300,4.6,10,10,16.0,7620,9,999999999,90,0.0490,0,88,0.200,0.0,1.0 +2001,12,15,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,-1.1,39,97300,207,1412,324,167,684,66,16400,43500,9900,1010,270,4.6,8,8,16.0,7620,9,999999999,90,0.0490,0,88,0.200,0.0,1.0 +2001,12,15,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,1.1,50,97400,14,483,321,0,0,0,0,0,0,0,0,0.0,9,8,16.0,1981,9,999999999,100,0.0490,0,88,0.200,0.0,1.0 +2001,12,15,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,3.3,61,97500,0,0,328,0,0,0,0,0,0,0,170,4.1,9,9,16.0,1829,9,999999999,100,0.0490,0,88,0.200,0.0,1.0 +2001,12,15,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,-1.1,45,97600,0,0,305,0,0,0,0,0,0,0,240,4.1,6,6,16.0,77777,9,999999999,100,0.0490,0,88,0.200,0.0,1.0 +2001,12,15,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,-5.0,33,97600,0,0,309,0,0,0,0,0,0,0,250,4.1,9,8,16.0,2591,9,999999999,110,0.0490,0,88,0.200,0.0,1.0 +2001,12,15,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,-3.9,40,97700,0,0,290,0,0,0,0,0,0,0,270,3.6,4,4,16.0,77777,9,999999999,110,0.0490,0,88,0.200,0.0,1.0 +2001,12,15,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,-2.2,50,97800,0,0,285,0,0,0,0,0,0,0,260,1.5,3,3,16.0,77777,9,999999999,120,0.0490,0,88,0.200,0.0,1.0 +2001,12,15,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,3.3,76,97800,0,0,291,0,0,0,0,0,0,0,20,2.1,3,3,16.0,77777,9,999999999,120,0.0490,0,88,0.200,0.0,1.0 +2001,12,16,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,1.1,70,97700,0,0,272,0,0,0,0,0,0,0,250,1.5,0,0,16.0,77777,9,999999999,110,0.0490,0,88,0.200,0.0,1.0 +2001,12,16,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,0.6,73,97800,0,0,281,0,0,0,0,0,0,0,230,2.6,5,4,16.0,77777,9,999999999,110,0.0490,0,88,0.200,0.0,1.0 +2001,12,16,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,-5.0,46,97900,0,0,274,0,0,0,0,0,0,0,250,3.1,3,3,16.0,77777,9,999999999,110,0.0490,0,88,0.200,0.0,1.0 +2001,12,16,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.9,-5.0,50,97900,0,0,269,0,0,0,0,0,0,0,230,4.1,3,3,16.0,77777,9,999999999,110,0.0490,0,88,0.200,0.0,1.0 +2001,12,16,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.3,-4.4,55,98100,0,0,268,0,0,0,0,0,0,0,220,2.6,3,3,16.0,77777,9,999999999,110,0.0490,0,88,0.200,0.0,1.0 +2001,12,16,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.9,-6.7,43,98100,0,0,257,0,0,0,0,0,0,0,260,2.6,0,0,16.0,77777,9,999999999,110,0.0490,0,88,0.200,0.0,1.0 +2001,12,16,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.3,-6.7,45,98100,0,0,254,0,0,0,0,0,0,0,220,1.5,0,0,16.0,77777,9,999999999,110,0.0490,0,88,0.200,0.0,1.0 +2001,12,16,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.3,-5.6,49,98300,37,789,255,2,136,1,900,7700,500,40,290,2.6,0,0,16.0,77777,9,999999999,110,0.0490,0,88,0.200,0.0,1.0 +2001,12,16,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,-4.4,48,98400,259,1412,263,142,608,30,15000,48400,6100,670,270,1.5,0,0,16.0,77777,9,999999999,110,0.0490,0,88,0.200,0.0,1.0 +2001,12,16,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,-5.6,39,98500,476,1412,268,312,754,57,32600,69400,9000,1170,250,1.5,0,0,16.0,77777,9,999999999,110,0.0490,0,88,0.200,0.0,1.0 +2001,12,16,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,-5.6,35,98600,641,1412,274,465,817,93,47700,78500,12000,1800,250,2.1,0,0,16.0,77777,9,999999999,110,0.0490,0,88,0.200,0.0,1.0 +2001,12,16,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,-5.6,31,98500,742,1412,281,536,827,100,55600,81200,12800,2090,250,2.1,0,0,16.0,77777,9,999999999,100,0.0490,0,88,0.200,0.0,1.0 +2001,12,16,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,-5.6,27,98500,771,1412,290,583,850,117,59700,83200,14100,2340,250,3.1,0,0,16.0,77777,9,999999999,100,0.0490,0,88,0.200,0.0,1.0 +2001,12,16,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,-6.1,24,98500,726,1412,294,519,790,111,54800,78500,14300,2420,310,3.6,0,0,16.0,77777,9,999999999,100,0.0490,0,88,0.200,0.0,1.0 +2001,12,16,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,-7.8,20,98500,612,1412,304,437,801,88,44800,76500,11500,1690,300,5.7,2,2,16.0,77777,9,999999999,90,0.0490,0,88,0.200,0.0,1.0 +2001,12,16,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,-7.8,19,98400,435,1412,296,318,773,79,32800,68500,11600,1470,320,4.1,0,0,16.0,77777,9,999999999,90,0.0490,0,88,0.200,0.0,1.0 +2001,12,16,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,-8.3,18,98500,208,1412,296,164,657,67,16100,41800,9900,1020,310,3.6,0,0,16.0,77777,9,999999999,90,0.0490,0,88,0.200,0.0,1.0 +2001,12,16,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,-6.1,25,98400,14,483,292,0,0,0,0,0,0,0,240,2.6,0,0,16.0,77777,9,999999999,80,0.0490,0,88,0.200,0.0,1.0 +2001,12,16,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,-2.8,38,98500,0,0,286,0,0,0,0,0,0,0,220,2.6,0,0,16.0,77777,9,999999999,80,0.0490,0,88,0.200,0.0,1.0 +2001,12,16,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,-2.8,41,98500,0,0,282,0,0,0,0,0,0,0,240,1.5,0,0,16.0,77777,9,999999999,80,0.0490,0,88,0.200,0.0,1.0 +2001,12,16,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,-1.1,47,98500,0,0,283,0,0,0,0,0,0,0,250,2.1,0,0,16.0,77777,9,999999999,70,0.0490,0,88,0.200,0.0,1.0 +2001,12,16,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,-3.9,39,98500,0,0,278,0,0,0,0,0,0,0,250,3.6,0,0,16.0,77777,9,999999999,70,0.0490,0,88,0.200,0.0,1.0 +2001,12,16,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,-4.4,40,98600,0,0,283,0,0,0,0,0,0,0,240,2.1,2,2,16.0,77777,9,999999999,60,0.0490,0,88,0.200,0.0,1.0 +2001,12,16,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,-3.9,45,98500,0,0,270,0,0,0,0,0,0,0,210,1.5,0,0,16.0,77777,9,999999999,70,0.0490,0,88,0.200,0.0,1.0 +2001,12,17,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,-2.8,49,98500,0,0,271,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,70,0.0490,0,88,0.200,0.0,1.0 +2001,12,17,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,-0.6,64,98400,0,0,269,0,0,0,0,0,0,0,80,2.6,0,0,16.0,77777,9,999999999,70,0.0490,0,88,0.200,0.0,1.0 +2001,12,17,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,-1.1,61,98400,0,0,268,0,0,0,0,0,0,0,160,2.1,0,0,16.0,77777,9,999999999,70,0.0490,0,88,0.200,0.0,1.0 +2001,12,17,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,-1.1,64,98400,0,0,271,0,0,0,0,0,0,0,0,0.0,1,1,16.0,77777,9,999999999,70,0.0490,0,88,0.200,0.0,1.0 +2001,12,17,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.9,0.6,79,98500,0,0,263,0,0,0,0,0,0,0,80,1.5,0,0,16.0,77777,9,999999999,80,0.0490,0,88,0.200,0.0,1.0 +2001,12,17,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.9,-0.6,72,98300,0,0,262,0,0,0,0,0,0,0,100,3.1,0,0,16.0,77777,9,999999999,80,0.0490,0,88,0.200,0.0,1.0 +2001,12,17,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.9,-1.1,69,98300,0,0,262,0,0,0,0,0,0,0,90,2.1,0,0,16.0,77777,9,999999999,80,0.0490,0,88,0.200,0.0,1.0 +2001,12,17,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,-1.1,67,98400,36,765,264,1,137,1,900,7700,500,40,140,2.1,0,0,16.0,77777,9,999999999,80,0.0490,0,88,0.200,0.0,1.0 +2001,12,17,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,-1.1,55,98400,256,1413,275,144,601,35,14800,46300,6300,680,110,2.1,0,0,16.0,7620,9,999999999,80,0.0490,0,88,0.200,0.0,1.0 +2001,12,17,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,-3.3,42,98500,474,1413,277,302,697,67,30900,63600,9500,1270,0,0.0,0,0,16.0,7620,9,999999999,80,0.0490,0,88,0.200,0.0,1.0 +2001,12,17,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,-3.9,35,98500,639,1413,285,427,735,93,45100,71800,12400,1940,0,0.0,0,0,16.0,7620,9,999999999,90,0.0490,0,88,0.200,0.0,1.0 +2001,12,17,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,-2.8,33,98300,740,1413,295,518,791,102,53600,77500,12800,2110,0,0.0,0,0,16.0,7620,9,999999999,90,0.0490,0,88,0.200,0.0,1.0 +2001,12,17,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,-2.8,30,98200,770,1413,300,546,778,120,57600,77700,15100,2700,250,2.1,1,0,16.0,7620,9,999999999,80,0.0490,0,88,0.200,0.0,1.0 +2001,12,17,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,-2.8,28,98100,726,1413,305,506,692,148,52200,67800,17200,3080,220,1.5,0,0,16.0,7620,9,999999999,80,0.0490,0,88,0.200,0.0,1.0 +2001,12,17,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,-2.8,25,98000,612,1413,314,465,782,125,47900,74600,15400,2430,190,1.5,0,0,16.0,77777,9,999999999,80,0.0490,0,88,0.200,0.0,1.0 +2001,12,17,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,-2.2,26,97900,436,1413,315,236,294,145,24600,26700,16300,3040,220,2.6,0,0,16.0,7620,9,999999999,80,0.0490,0,88,0.200,0.0,1.0 +2001,12,17,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,-2.2,27,97900,210,1413,318,107,43,101,11700,3300,11200,1970,230,1.5,1,1,16.0,7620,9,999999999,80,0.0490,0,88,0.200,0.0,1.0 +2001,12,17,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,-3.3,26,97900,15,506,312,0,0,0,0,0,0,0,290,1.5,1,1,16.0,7620,9,999999999,80,0.0490,0,88,0.200,0.0,1.0 +2001,12,17,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,-1.7,32,97900,0,0,303,0,0,0,0,0,0,0,310,4.1,0,0,16.0,7620,9,999999999,80,0.0490,0,88,0.200,0.0,1.0 +2001,12,17,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,0.0,43,97900,0,0,302,0,0,0,0,0,0,0,270,2.6,2,1,16.0,7620,9,999999999,80,0.0490,0,88,0.200,0.0,1.0 +2001,12,17,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,1.7,56,97900,0,0,289,0,0,0,0,0,0,0,230,1.5,0,0,16.0,7620,9,999999999,80,0.0490,0,88,0.200,0.0,1.0 +2001,12,17,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,2.2,63,97900,0,0,285,0,0,0,0,0,0,0,250,2.1,0,0,16.0,7620,9,999999999,70,0.0490,0,88,0.200,0.0,1.0 +2001,12,17,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,0.0,52,98000,0,0,284,0,0,0,0,0,0,0,220,1.5,0,0,16.0,7620,9,999999999,70,0.0490,0,88,0.200,0.0,1.0 +2001,12,17,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,0.0,54,97900,0,0,282,0,0,0,0,0,0,0,0,0.0,0,0,16.0,7620,9,999999999,70,0.0490,0,88,0.200,0.0,1.0 +2001,12,18,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,2.2,68,97800,0,0,286,0,0,0,0,0,0,0,80,3.1,2,1,16.0,77777,9,999999999,70,0.0490,0,88,0.200,0.0,1.0 +2001,12,18,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,0.6,65,97800,0,0,274,0,0,0,0,0,0,0,90,2.6,0,0,16.0,77777,9,999999999,60,0.0490,0,88,0.200,0.0,1.0 +2001,12,18,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,1.7,76,97900,0,0,271,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,60,0.0490,0,88,0.200,0.0,1.0 +2001,12,18,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,0.6,68,97900,0,0,272,0,0,0,0,0,0,0,150,1.5,0,0,16.0,77777,9,999999999,60,0.0490,0,88,0.200,0.0,1.0 +2001,12,18,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,1.1,73,97900,0,0,270,0,0,0,0,0,0,0,110,3.1,0,0,16.0,77777,9,999999999,60,0.0490,0,88,0.200,0.0,1.0 +2001,12,18,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,1.1,76,97900,0,0,268,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,50,0.0490,0,88,0.200,0.0,1.0 +2001,12,18,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,1.1,76,98000,0,0,268,0,0,0,0,0,0,0,100,1.5,0,0,16.0,77777,9,999999999,50,0.0490,0,88,0.200,0.0,1.0 +2001,12,18,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,1.7,79,98000,35,742,269,1,131,0,0,0,0,0,110,1.5,0,0,16.0,77777,9,999999999,50,0.0490,0,88,0.200,0.0,1.0 +2001,12,18,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,0.0,62,98100,254,1413,274,144,640,28,15200,50700,6000,650,90,3.1,0,0,16.0,77777,9,999999999,50,0.0490,0,88,0.200,0.0,1.0 +2001,12,18,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,-0.6,49,98200,472,1413,284,311,764,55,32500,70300,9000,1140,60,2.1,0,0,16.0,77777,9,999999999,40,0.0490,0,88,0.200,0.0,1.0 +2001,12,18,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,-0.6,42,98300,638,1413,293,438,782,83,45400,75500,11200,1690,0,0.0,0,0,16.0,77777,9,999999999,40,0.0490,0,88,0.200,0.0,1.0 +2001,12,18,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,-1.7,36,98200,739,1413,297,564,904,89,59200,89100,12400,1950,290,2.1,0,0,16.0,77777,9,999999999,40,0.0490,0,88,0.200,0.0,1.0 +2001,12,18,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,-1.7,32,98100,770,1413,303,582,922,78,60800,90500,11300,1700,280,2.1,0,0,16.0,77777,9,999999999,40,0.0490,0,88,0.200,0.0,1.0 +2001,12,18,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,-1.1,28,98100,727,1413,316,545,907,76,56800,88500,11100,1610,270,2.6,0,0,16.0,77777,9,999999999,50,0.0490,0,88,0.200,0.0,1.0 +2001,12,18,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,-3.3,24,98000,613,1413,313,457,895,67,47800,85700,10500,1380,250,2.6,0,0,16.0,77777,9,999999999,50,0.0490,0,88,0.200,0.0,1.0 +2001,12,18,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,-2.8,24,98000,437,1413,317,299,669,91,30500,58900,12200,1640,240,1.5,0,0,16.0,77777,9,999999999,50,0.0490,0,88,0.200,0.0,1.0 +2001,12,18,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,-1.1,27,98000,212,1413,318,158,549,75,15300,34700,10100,1100,210,1.5,0,0,14.4,77777,9,999999999,50,0.0490,0,88,0.200,0.0,1.0 +2001,12,18,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,0.6,36,98000,15,506,311,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,50,0.0490,0,88,0.200,0.0,1.0 +2001,12,18,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,1.1,42,98000,0,0,304,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,50,0.0490,0,88,0.200,0.0,1.0 +2001,12,18,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,3.9,59,98000,0,0,298,0,0,0,0,0,0,0,220,1.5,0,0,16.0,77777,9,999999999,60,0.0490,0,88,0.200,0.0,1.0 +2001,12,18,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,2.2,52,98100,0,0,296,0,0,0,0,0,0,0,100,2.1,0,0,16.0,77777,9,999999999,60,0.0490,0,88,0.200,0.0,1.0 +2001,12,18,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,1.7,54,98100,0,0,291,0,0,0,0,0,0,0,80,3.1,0,0,16.0,77777,9,999999999,60,0.0490,0,88,0.200,0.0,1.0 +2001,12,18,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,2.2,63,98200,0,0,285,0,0,0,0,0,0,0,90,2.6,0,0,16.0,77777,9,999999999,60,0.0490,0,88,0.200,0.0,1.0 +2001,12,18,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,1.7,63,98100,0,0,282,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,60,0.0490,0,88,0.200,0.0,1.0 +2001,12,19,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,1.7,68,98000,0,0,277,0,0,0,0,0,0,0,90,3.1,0,0,16.0,77777,9,999999999,60,0.0490,0,88,0.200,0.0,1.0 +2001,12,19,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,2.2,70,98000,0,0,278,0,0,0,0,0,0,0,80,3.1,0,0,16.0,77777,9,999999999,60,0.0490,0,88,0.200,0.0,1.0 +2001,12,19,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,2.2,76,98000,0,0,273,0,0,0,0,0,0,0,110,1.5,0,0,16.0,77777,9,999999999,70,0.0490,0,88,0.200,0.0,1.0 +2001,12,19,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,2.2,76,97900,0,0,273,0,0,0,0,0,0,0,110,2.1,0,0,16.0,77777,9,999999999,70,0.0490,0,88,0.200,0.0,1.0 +2001,12,19,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,1.7,73,98100,0,0,273,0,0,0,0,0,0,0,110,2.1,0,0,16.0,77777,9,999999999,70,0.0490,0,88,0.200,0.0,1.0 +2001,12,19,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,2.2,82,98000,0,0,269,0,0,0,0,0,0,0,90,3.1,0,0,16.0,77777,9,999999999,70,0.0490,0,88,0.200,0.0,1.0 +2001,12,19,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,2.2,86,98000,0,0,267,0,0,0,0,0,0,0,100,2.1,0,0,16.0,77777,9,999999999,70,0.0490,0,88,0.200,0.0,1.0 +2001,12,19,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,2.2,82,98000,33,742,269,1,115,0,0,0,0,0,70,3.1,0,0,16.0,77777,9,999999999,70,0.0490,0,88,0.200,0.0,1.0 +2001,12,19,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,2.2,68,98100,252,1413,280,139,613,29,14700,48400,6000,650,100,3.1,0,0,16.0,77777,9,999999999,70,0.0490,0,88,0.200,0.0,1.0 +2001,12,19,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,0.0,46,98100,470,1413,291,315,803,47,33200,73800,8600,1080,110,1.5,0,0,16.0,77777,9,999999999,70,0.0490,0,88,0.200,0.0,1.0 +2001,12,19,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,-1.7,33,98100,636,1413,301,459,887,58,48300,85500,9600,1360,50,1.5,0,0,16.0,77777,9,999999999,70,0.0490,0,88,0.200,0.0,1.0 +2001,12,19,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,-1.7,28,98000,739,1413,313,552,909,75,57600,88900,11000,1630,0,0.0,0,0,16.0,77777,9,999999999,70,0.0490,0,88,0.200,0.0,1.0 +2001,12,19,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,-3.3,19,97900,769,1413,331,582,922,78,60700,90500,11300,1700,60,3.6,0,0,16.0,77777,9,999999999,80,0.0490,0,88,0.200,0.0,1.0 +2001,12,19,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,-3.3,17,97800,727,1413,336,538,882,82,56800,87100,11900,1830,100,3.6,0,0,16.0,77777,9,999999999,80,0.0490,0,88,0.200,0.0,1.0 +2001,12,19,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,-2.8,17,97800,614,1413,341,457,895,66,47800,85700,10400,1380,30,4.6,0,0,16.0,77777,9,999999999,80,0.0490,0,88,0.200,0.0,1.0 +2001,12,19,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,-2.8,17,97700,439,1413,341,325,832,66,33000,74300,9900,1210,30,3.1,0,0,16.0,77777,9,999999999,90,0.0490,0,88,0.200,0.0,1.0 +2001,12,19,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,2.8,31,97600,213,1413,336,129,203,98,13000,12800,11000,2150,240,2.1,0,0,16.0,77777,9,999999999,90,0.0490,0,88,0.200,0.0,1.0 +2001,12,19,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,1.7,33,97700,16,506,324,0,0,0,0,0,0,0,210,1.5,0,0,16.0,77777,9,999999999,90,0.0490,0,88,0.200,0.0,1.0 +2001,12,19,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,2.2,36,97700,0,0,320,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,100,0.0490,0,88,0.200,0.0,1.0 +2001,12,19,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,2.2,40,97700,0,0,313,0,0,0,0,0,0,0,100,2.1,0,0,16.0,77777,9,999999999,100,0.0490,0,88,0.200,0.0,1.0 +2001,12,19,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,-1.1,33,97600,0,0,306,0,0,0,0,0,0,0,130,1.5,0,0,16.0,77777,9,999999999,100,0.0490,0,88,0.200,0.0,1.0 +2001,12,19,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,-1.1,35,97600,0,0,302,0,0,0,0,0,0,0,140,2.1,0,0,16.0,77777,9,999999999,110,0.0490,0,88,0.200,0.0,1.0 +2001,12,19,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,-1.1,37,97700,0,0,299,0,0,0,0,0,0,0,120,2.1,0,0,16.0,77777,9,999999999,110,0.0490,0,88,0.200,0.0,1.0 +2001,12,19,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,-1.7,35,97600,0,0,299,0,0,0,0,0,0,0,120,2.1,0,0,16.0,77777,9,999999999,110,0.0490,0,88,0.200,0.0,1.0 +2001,12,20,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,-2.2,32,97600,0,0,301,0,0,0,0,0,0,0,110,3.1,0,0,16.0,77777,9,999999999,100,0.0490,0,88,0.200,0.0,1.0 +2001,12,20,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,-1.7,39,97500,0,0,292,0,0,0,0,0,0,0,100,3.1,0,0,16.0,77777,9,999999999,100,0.0490,0,88,0.200,0.0,1.0 +2001,12,20,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,-2.8,32,97500,0,0,297,0,0,0,0,0,0,0,110,3.1,0,0,16.0,77777,9,999999999,100,0.0490,0,88,0.200,0.0,1.0 +2001,12,20,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,-2.8,32,97500,0,0,297,0,0,0,0,0,0,0,110,2.6,0,0,16.0,77777,9,999999999,90,0.0490,0,88,0.200,0.0,1.0 +2001,12,20,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,-2.2,37,97600,0,0,291,0,0,0,0,0,0,0,120,3.1,0,0,16.0,77777,9,999999999,90,0.0490,0,88,0.200,0.0,1.0 +2001,12,20,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,-2.8,33,97500,0,0,305,0,0,0,0,0,0,0,120,3.6,2,2,16.0,77777,9,999999999,90,0.0490,0,88,0.200,0.0,1.0 +2001,12,20,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,-2.2,37,97500,0,0,291,0,0,0,0,0,0,0,100,4.1,0,0,16.0,77777,9,999999999,90,0.0490,0,88,0.200,0.0,1.0 +2001,12,20,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,-2.2,36,97600,32,718,294,0,21,0,0,0,0,0,110,2.1,0,0,16.0,77777,9,999999999,80,0.0490,0,88,0.200,0.0,1.0 +2001,12,20,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,-1.1,35,97600,250,1413,302,105,271,57,10900,19200,7500,1030,100,2.6,0,0,16.0,77777,9,999999999,80,0.0490,0,88,0.200,0.0,1.0 +2001,12,20,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,0.0,34,97700,468,1413,320,287,595,89,29500,53700,11600,1660,110,1.5,3,2,16.0,7620,9,999999999,80,0.0490,0,88,0.200,0.0,1.0 +2001,12,20,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,-0.6,28,97700,635,1413,327,389,583,126,40200,56000,14900,2490,110,3.6,2,1,16.0,7620,9,999999999,70,0.0490,0,88,0.200,0.0,1.0 +2001,12,20,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,-1.7,22,97600,738,1413,337,483,654,140,50200,64400,16400,2980,100,3.1,3,1,16.0,7620,9,999999999,70,0.0490,0,88,0.200,0.0,1.0 +2001,12,20,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,-1.1,21,97500,769,1413,345,539,741,133,56400,73700,16100,2940,120,1.5,3,1,16.0,7620,9,999999999,70,0.0490,0,88,0.200,0.0,1.0 +2001,12,20,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,-4.4,15,97400,728,1413,391,531,729,154,54700,71200,17900,3180,130,4.6,10,10,14.4,7620,9,999999999,70,0.0490,0,88,0.200,0.0,1.0 +2001,12,20,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,-2.8,16,97400,615,1413,351,362,397,189,38400,40000,20900,4140,150,3.1,3,1,16.0,7620,9,999999999,70,0.0490,0,88,0.200,0.0,1.0 +2001,12,20,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,-1.1,19,97300,440,1413,357,252,450,111,26100,40200,13500,2100,110,4.1,5,2,16.0,7620,9,999999999,70,0.0490,0,88,0.200,0.0,1.0 +2001,12,20,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,0.0,22,97200,215,1413,354,176,434,110,16800,27700,12600,2260,120,3.1,4,2,16.0,7620,9,999999999,70,0.0490,0,88,0.200,0.0,1.0 +2001,12,20,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,0.6,26,97300,17,530,344,0,0,0,0,0,0,0,240,2.1,5,2,16.0,7620,9,999999999,70,0.0490,0,88,0.200,0.0,1.0 +2001,12,20,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,2.8,38,97300,0,0,331,0,0,0,0,0,0,0,0,0.0,5,2,16.0,7620,9,999999999,70,0.0490,0,88,0.200,0.0,1.0 +2001,12,20,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,3.3,42,97300,0,0,330,0,0,0,0,0,0,0,250,1.5,6,3,16.0,7620,9,999999999,70,0.0490,0,88,0.200,0.0,1.0 +2001,12,20,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,2.2,39,97300,0,0,325,0,0,0,0,0,0,0,0,0.0,5,2,16.0,7620,9,999999999,60,0.0490,0,88,0.200,0.0,1.0 +2001,12,20,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,1.1,39,97300,0,0,322,0,0,0,0,0,0,0,0,0.0,6,3,16.0,7620,9,999999999,60,0.0490,0,88,0.200,0.0,1.0 +2001,12,20,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,2.8,49,97300,0,0,317,0,0,0,0,0,0,0,0,0.0,7,3,16.0,7620,9,999999999,60,0.0490,0,88,0.200,0.0,1.0 +2001,12,20,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,2.2,47,97300,0,0,318,0,0,0,0,0,0,0,50,2.1,8,4,16.0,7620,9,999999999,70,0.0490,0,88,0.200,0.0,1.0 +2001,12,21,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,2.2,52,97200,0,0,311,0,0,0,0,0,0,0,90,2.6,8,4,16.0,7620,9,999999999,70,0.0490,0,88,0.200,0.0,1.0 +2001,12,21,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,2.2,52,97200,0,0,311,0,0,0,0,0,0,0,80,3.1,8,4,16.0,7620,9,999999999,70,0.0490,0,88,0.200,0.0,1.0 +2001,12,21,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,2.8,61,97200,0,0,295,0,0,0,0,0,0,0,0,0.0,2,1,16.0,6096,9,999999999,80,0.0490,0,88,0.200,0.0,1.0 +2001,12,21,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,2.2,61,97200,0,0,287,0,0,0,0,0,0,0,0,0.0,0,0,16.0,6096,9,999999999,80,0.0490,0,88,0.200,0.0,1.0 +2001,12,21,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,-1.1,38,97400,0,0,297,0,0,0,0,0,0,0,260,4.6,0,0,16.0,77777,9,999999999,80,0.0490,0,88,0.200,0.0,1.0 +2001,12,21,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,-1.1,42,97300,0,0,290,0,0,0,0,0,0,0,310,4.1,0,0,16.0,77777,9,999999999,90,0.0490,0,88,0.200,0.0,1.0 +2001,12,21,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,-1.1,42,97400,0,0,290,0,0,0,0,0,0,0,300,2.1,0,0,16.0,77777,9,999999999,90,0.0490,0,88,0.200,0.0,1.0 +2001,12,21,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,-1.1,44,97500,31,719,288,0,28,0,0,0,0,0,230,2.6,0,0,16.0,77777,9,999999999,90,0.0490,0,88,0.200,0.0,1.0 +2001,12,21,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,-1.1,41,97600,247,1414,293,131,458,50,13300,33000,7500,880,240,2.1,0,0,16.0,77777,9,999999999,100,0.0490,0,88,0.200,0.0,1.0 +2001,12,21,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,-1.1,35,97800,467,1414,302,300,723,60,31000,66000,9100,1190,250,1.5,0,0,16.0,77777,9,999999999,100,0.0490,0,88,0.200,0.0,1.0 +2001,12,21,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,-1.1,33,97800,634,1414,320,447,834,72,47100,80900,10700,1550,260,5.2,3,3,16.0,77777,9,999999999,100,0.0490,0,88,0.200,0.0,1.0 +2001,12,21,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,0.6,37,97700,737,1414,322,523,808,100,54200,79200,12700,2080,270,6.7,3,3,16.0,77777,9,999999999,100,0.0490,0,88,0.200,0.0,1.0 +2001,12,21,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,1.1,37,97700,769,1414,325,575,880,94,60300,87100,12700,2080,250,7.7,3,3,16.0,77777,9,999999999,100,0.0490,0,88,0.200,0.0,1.0 +2001,12,21,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,1.1,36,97700,728,1414,327,524,765,128,54700,75500,15700,2740,280,6.2,3,3,16.0,77777,9,999999999,100,0.0490,0,88,0.200,0.0,1.0 +2001,12,21,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,0.6,33,97700,616,1414,334,413,636,134,42200,60500,15800,2570,250,6.7,4,4,16.0,77777,9,999999999,100,0.0490,0,88,0.200,0.0,1.0 +2001,12,21,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,-0.6,31,97700,442,1414,333,296,667,87,30400,59100,11800,1590,240,6.7,5,5,16.0,77777,9,999999999,100,0.0490,0,88,0.200,0.0,1.0 +2001,12,21,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,-0.6,33,97700,217,1414,328,172,513,93,16700,33200,11600,1850,250,5.2,5,5,16.0,77777,9,999999999,110,0.0490,0,88,0.200,0.0,1.0 +2001,12,21,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,-0.6,34,97800,17,530,323,0,0,0,0,0,0,0,250,3.1,4,4,16.0,77777,9,999999999,110,0.0490,0,88,0.200,0.0,1.0 +2001,12,21,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,0.0,37,97800,0,0,335,0,0,0,0,0,0,0,280,4.1,8,8,16.0,2438,9,999999999,110,0.0490,0,88,0.200,0.0,1.0 +2001,12,21,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,-0.6,37,97900,0,0,332,0,0,0,0,0,0,0,270,4.1,8,8,16.0,2438,9,999999999,110,0.0490,0,88,0.200,0.0,1.0 +2001,12,21,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,-1.1,35,97900,0,0,332,0,0,0,0,0,0,0,310,3.1,8,8,16.0,2438,9,999999999,110,0.0490,0,88,0.200,0.0,1.0 +2001,12,21,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,1.1,50,97900,0,0,305,0,0,0,0,0,0,0,210,1.5,3,3,16.0,77777,9,999999999,110,0.0490,0,88,0.200,0.0,1.0 +2001,12,21,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,1.7,59,98100,0,0,286,0,0,0,0,0,0,0,230,3.6,0,0,16.0,77777,9,999999999,110,0.0490,0,88,0.200,0.0,1.0 +2001,12,21,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,0.0,52,98000,0,0,284,0,0,0,0,0,0,0,240,2.6,0,0,16.0,77777,9,999999999,100,0.0490,0,88,0.200,0.0,1.0 +2001,12,22,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,-0.6,47,98000,0,0,286,0,0,0,0,0,0,0,300,3.1,0,0,16.0,77777,9,999999999,100,0.0490,0,88,0.200,0.0,1.0 +2001,12,22,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,0.0,52,98000,0,0,304,0,0,0,0,0,0,0,10,2.6,6,6,16.0,77777,9,999999999,100,0.0490,0,88,0.200,0.0,1.0 +2001,12,22,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,0.6,60,98000,0,0,295,0,0,0,0,0,0,0,80,3.6,5,5,16.0,77777,9,999999999,90,0.0490,0,88,0.200,0.0,1.0 +2001,12,22,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,1.1,67,98000,0,0,275,0,0,0,0,0,0,0,110,2.1,0,0,16.0,7620,9,999999999,90,0.0490,0,88,0.200,0.0,1.0 +2001,12,22,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,1.1,70,98200,0,0,272,0,0,0,0,0,0,0,0,0.0,0,0,16.0,7620,9,999999999,90,0.0490,0,88,0.200,0.0,1.0 +2001,12,22,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,1.1,70,98100,0,0,272,0,0,0,0,0,0,0,0,0.0,0,0,16.0,7620,9,999999999,90,0.0490,0,88,0.200,0.0,1.0 +2001,12,22,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,0.6,70,98100,0,0,270,0,0,0,0,0,0,0,120,2.1,0,0,16.0,77777,9,999999999,80,0.0490,0,88,0.200,0.0,1.0 +2001,12,22,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,1.1,73,98200,30,695,270,0,0,0,0,0,0,0,100,1.5,0,0,16.0,77777,9,999999999,80,0.0490,0,88,0.200,0.0,1.0 +2001,12,22,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,1.1,63,98300,246,1414,279,130,550,34,13300,41700,6000,660,100,3.6,0,0,16.0,77777,9,999999999,80,0.0490,0,88,0.200,0.0,1.0 +2001,12,22,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,0.0,52,98400,465,1414,284,319,818,48,33500,75000,8700,1070,80,4.1,0,0,16.0,77777,9,999999999,70,0.0490,0,88,0.200,0.0,1.0 +2001,12,22,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,1.7,49,98500,633,1414,298,442,816,75,46300,79000,10800,1590,100,2.1,0,0,16.0,77777,9,999999999,70,0.0490,0,88,0.200,0.0,1.0 +2001,12,22,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,0.0,40,98300,737,1414,300,534,850,89,56000,83800,12200,1940,130,1.5,0,0,16.0,77777,9,999999999,80,0.0490,0,88,0.200,0.0,1.0 +2001,12,22,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,0.0,34,98300,770,1414,310,556,813,112,57300,79800,13700,2290,160,2.1,0,0,16.0,77777,9,999999999,80,0.0490,0,88,0.200,0.0,1.0 +2001,12,22,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,-1.1,33,98200,729,1414,306,556,912,84,58700,90000,12100,1860,190,1.5,0,0,16.0,77777,9,999999999,90,0.0490,0,88,0.200,0.0,1.0 +2001,12,22,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,-1.7,28,98200,618,1414,313,463,913,62,48500,87600,10100,1370,220,3.1,0,0,16.0,77777,9,999999999,100,0.0490,0,88,0.200,0.0,1.0 +2001,12,22,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,-2.8,25,98200,444,1414,312,322,815,65,32800,73100,9700,1210,240,3.6,0,0,16.0,77777,9,999999999,100,0.0490,0,88,0.200,0.0,1.0 +2001,12,22,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,-3.3,25,98300,219,1414,309,168,643,68,16500,42100,10000,1050,220,3.6,0,0,16.0,77777,9,999999999,110,0.0490,0,88,0.200,0.0,1.0 +2001,12,22,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,-2.8,28,98300,18,554,305,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,120,0.0490,0,88,0.200,0.0,1.0 +2001,12,22,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,-1.1,35,98300,0,0,302,0,0,0,0,0,0,0,0,0.0,0,0,16.0,7620,9,999999999,120,0.0490,0,88,0.200,0.0,1.0 +2001,12,22,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,-0.6,41,98300,0,0,301,0,0,0,0,0,0,0,0,0.0,2,1,16.0,7620,9,999999999,130,0.0490,0,88,0.200,0.0,1.0 +2001,12,22,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,-0.6,41,98300,0,0,308,0,0,0,0,0,0,0,90,1.5,3,3,16.0,7620,9,999999999,130,0.0490,0,88,0.200,0.0,1.0 +2001,12,22,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,-0.6,47,98300,0,0,301,0,0,0,0,0,0,0,80,2.6,5,4,16.0,7620,9,999999999,140,0.0490,0,88,0.200,0.0,1.0 +2001,12,22,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,-0.6,49,98400,0,0,289,0,0,0,0,0,0,0,90,3.6,1,1,16.0,7620,9,999999999,150,0.0490,0,88,0.200,0.0,1.0 +2001,12,22,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,0.0,56,98200,0,0,280,0,0,0,0,0,0,0,90,3.1,0,0,16.0,77777,9,999999999,140,0.0490,0,88,0.200,0.0,1.0 +2001,12,23,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,0.6,60,98200,0,0,279,0,0,0,0,0,0,0,90,3.1,0,0,16.0,77777,9,999999999,140,0.0490,0,88,0.200,0.0,1.0 +2001,12,23,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,0.0,58,98200,0,0,287,0,0,0,0,0,0,0,120,2.6,4,2,16.0,77777,9,999999999,140,0.0490,0,88,0.200,0.0,1.0 +2001,12,23,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,0.6,63,98200,0,0,288,0,0,0,0,0,0,0,100,3.1,5,3,16.0,77777,9,999999999,130,0.0490,0,88,0.200,0.0,1.0 +2001,12,23,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,0.0,60,98100,0,0,290,0,0,0,0,0,0,0,110,3.1,6,4,16.0,77777,9,999999999,130,0.0490,0,88,0.200,0.0,1.0 +2001,12,23,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,-0.6,57,98200,0,0,291,0,0,0,0,0,0,0,120,3.1,5,5,16.0,77777,9,999999999,120,0.0490,0,88,0.200,0.0,1.0 +2001,12,23,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,0.0,62,98000,0,0,283,0,0,0,0,0,0,0,110,2.6,3,2,16.0,77777,9,999999999,120,0.0490,0,88,0.200,0.0,1.0 +2001,12,23,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,0.0,62,98100,0,0,283,0,0,0,0,0,0,0,120,3.1,2,2,16.0,7620,9,999999999,120,0.0490,0,88,0.200,0.0,1.0 +2001,12,23,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,0.0,65,98100,29,695,277,0,0,0,0,0,0,0,140,2.6,1,1,16.0,7620,9,999999999,110,0.0490,0,88,0.200,0.0,1.0 +2001,12,23,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,0.0,58,98200,244,1414,305,73,78,60,8000,5700,7000,1280,130,2.6,8,8,16.0,3353,9,999999999,110,0.0490,0,88,0.200,0.0,1.0 +2001,12,23,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,0.0,52,98200,464,1414,301,239,319,133,25200,29700,15400,2720,110,3.1,7,5,16.0,5486,9,999999999,100,0.0490,0,88,0.200,0.0,1.0 +2001,12,23,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,-0.6,44,98200,632,1414,311,271,134,211,29300,13400,23300,5080,100,2.6,7,6,16.0,5486,9,999999999,100,0.0490,0,88,0.200,0.0,1.0 +2001,12,23,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,-0.6,39,98100,737,1414,327,195,12,189,22400,1000,21900,7830,50,2.6,8,8,16.0,3048,9,999999999,100,0.0490,0,88,0.200,0.0,1.0 +2001,12,23,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,-1.1,37,98000,770,1414,329,324,90,274,35500,9100,30500,8180,360,1.5,8,8,16.0,3048,9,999999999,90,0.0490,0,88,0.200,0.0,1.0 +2001,12,23,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,-1.7,32,97900,730,1414,333,334,141,261,36100,14500,28600,6590,310,2.6,8,8,16.0,3048,9,999999999,90,0.0490,0,88,0.200,0.0,1.0 +2001,12,23,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,-1.7,32,97900,619,1414,333,217,38,200,23800,3700,22100,5620,0,0.0,9,8,16.0,3048,9,999999999,90,0.0490,0,88,0.200,0.0,1.0 +2001,12,23,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,-1.1,33,97900,446,1414,337,294,421,161,30500,38500,18300,3460,350,3.1,8,8,16.0,3048,9,999999999,90,0.0490,0,88,0.200,0.0,1.0 +2001,12,23,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,-2.2,30,97900,222,1414,335,141,380,81,13900,25000,10000,1560,340,2.6,8,8,16.0,3048,9,999999999,80,0.0490,0,88,0.200,0.0,1.0 +2001,12,23,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,-2.2,31,97900,19,554,340,0,0,0,0,0,0,0,310,2.6,9,9,16.0,7620,9,999999999,80,0.0490,0,88,0.200,0.0,1.0 +2001,12,23,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,-1.7,33,97900,0,0,319,0,0,0,0,0,0,0,300,3.1,5,5,16.0,77777,9,999999999,80,0.0490,0,88,0.200,0.0,1.0 +2001,12,23,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,-0.6,39,97900,0,0,334,0,0,0,0,0,0,0,310,3.6,9,9,16.0,3658,9,999999999,70,0.0490,0,88,0.200,0.0,1.0 +2001,12,23,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,0.6,45,97900,0,0,333,0,0,0,0,0,0,0,280,2.6,9,9,16.0,7620,9,999999999,70,0.0490,0,88,0.200,0.0,1.0 +2001,12,23,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,0.6,48,97900,0,0,309,0,0,0,0,0,0,0,310,2.6,5,5,16.0,77777,9,999999999,70,0.0490,0,88,0.200,0.0,1.0 +2001,12,23,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,2.2,63,98000,0,0,297,0,0,0,0,0,0,0,230,2.6,3,3,16.0,77777,9,999999999,60,0.0490,0,88,0.200,0.0,1.0 +2001,12,23,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,2.2,65,97900,0,0,291,0,0,0,0,0,0,0,220,2.6,2,2,16.0,77777,9,999999999,60,0.0490,0,88,0.200,0.0,1.0 +2001,12,24,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,1.1,58,97900,0,0,293,0,0,0,0,0,0,0,250,3.1,5,2,16.0,77777,9,999999999,70,0.0490,0,88,0.200,0.0,1.0 +2001,12,24,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,1.1,60,97900,0,0,281,0,0,0,0,0,0,0,260,2.1,0,0,16.0,77777,9,999999999,70,0.0490,0,88,0.200,0.0,1.0 +2001,12,24,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,1.1,63,97900,0,0,279,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,70,0.0490,0,88,0.200,0.0,1.0 +2001,12,24,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,0.6,65,97900,0,0,274,0,0,0,0,0,0,0,290,1.5,0,0,16.0,77777,9,999999999,70,0.0490,0,88,0.200,0.0,1.0 +2001,12,24,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,1.1,70,98100,0,0,272,0,0,0,0,0,0,0,100,1.5,0,0,16.0,77777,9,999999999,70,0.0490,0,88,0.200,0.0,1.0 +2001,12,24,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,1.1,73,98000,0,0,270,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,70,0.0490,0,88,0.200,0.0,1.0 +2001,12,24,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,0.6,73,98100,0,0,276,0,0,0,0,0,0,0,0,0.0,5,2,16.0,77777,9,999999999,70,0.0490,0,88,0.200,0.0,1.0 +2001,12,24,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,0.6,70,98100,28,672,270,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,70,0.0490,0,88,0.200,0.0,1.0 +2001,12,24,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,0.0,60,98200,242,1414,276,126,548,32,13000,41500,5800,640,240,1.5,0,0,16.0,77777,9,999999999,70,0.0490,0,88,0.200,0.0,1.0 +2001,12,24,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,-0.6,47,98300,463,1414,286,309,790,49,32500,72300,8700,1080,290,2.1,0,0,16.0,77777,9,999999999,70,0.0490,0,88,0.200,0.0,1.0 +2001,12,24,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,-1.1,39,98400,632,1414,295,452,874,60,47400,84100,9700,1370,240,3.1,0,0,16.0,77777,9,999999999,70,0.0490,0,88,0.200,0.0,1.0 +2001,12,24,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,-2.2,32,98300,737,1414,301,545,891,79,56800,87100,11300,1640,260,2.1,0,0,16.0,77777,9,999999999,70,0.0490,0,88,0.200,0.0,1.0 +2001,12,24,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,-2.2,27,98200,771,1414,312,562,831,107,58100,81700,13400,2240,270,3.1,0,0,16.0,77777,9,999999999,70,0.0490,0,88,0.200,0.0,1.0 +2001,12,24,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,-3.9,23,98200,731,1414,311,549,894,85,57900,88200,12100,1880,270,2.1,0,0,16.0,77777,9,999999999,70,0.0490,0,88,0.200,0.0,1.0 +2001,12,24,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,-3.9,20,98200,621,1414,320,454,862,74,47500,83200,10900,1550,200,1.5,0,0,16.0,77777,9,999999999,70,0.0490,0,88,0.200,0.0,1.0 +2001,12,24,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,-4.4,20,98200,448,1414,317,320,800,66,32600,71800,9800,1220,0,0.0,0,0,16.0,77777,9,999999999,70,0.0490,0,88,0.200,0.0,1.0 +2001,12,24,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,-2.8,25,98200,224,1414,314,183,691,73,17900,45400,10700,1110,230,4.1,0,0,16.0,77777,9,999999999,70,0.0490,0,88,0.200,0.0,1.0 +2001,12,24,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,-2.8,26,98200,20,577,323,0,0,0,0,0,0,0,250,3.1,5,3,16.0,77777,9,999999999,60,0.0490,0,88,0.200,0.0,1.0 +2001,12,24,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,-1.7,33,98200,0,0,311,0,0,0,0,0,0,0,260,2.6,5,2,16.0,77777,9,999999999,60,0.0490,0,88,0.200,0.0,1.0 +2001,12,24,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,-2.2,33,98300,0,0,311,0,0,0,0,0,0,0,250,2.1,5,3,16.0,77777,9,999999999,60,0.0490,0,88,0.200,0.0,1.0 +2001,12,24,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,-3.3,31,98300,0,0,305,0,0,0,0,0,0,0,290,3.6,5,2,16.0,77777,9,999999999,60,0.0490,0,88,0.200,0.0,1.0 +2001,12,24,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,-1.7,42,98300,0,0,288,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,60,0.0490,0,88,0.200,0.0,1.0 +2001,12,24,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,-2.2,40,98400,0,0,287,0,0,0,0,0,0,0,90,2.6,0,0,16.0,77777,9,999999999,60,0.0490,0,88,0.200,0.0,1.0 +2001,12,24,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,-0.6,53,98300,0,0,279,0,0,0,0,0,0,0,180,1.5,0,0,16.0,77777,9,999999999,60,0.0490,0,88,0.200,0.0,1.0 +2001,12,25,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,-0.6,55,98300,0,0,277,0,0,0,0,0,0,0,230,1.5,0,0,16.0,77777,9,999999999,60,0.0490,0,88,0.200,0.0,1.0 +2001,12,25,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,-2.2,48,98300,0,0,276,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,60,0.0490,0,88,0.200,0.0,1.0 +2001,12,25,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,-1.7,52,98300,0,0,274,0,0,0,0,0,0,0,0,0.0,0,0,14.4,77777,9,999999999,60,0.0490,0,88,0.200,0.0,1.0 +2001,12,25,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,-0.6,64,98200,0,0,269,0,0,0,0,0,0,0,210,2.6,0,0,12.8,77777,9,999999999,60,0.0490,0,88,0.200,0.0,1.0 +2001,12,25,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,-0.6,67,98400,0,0,267,0,0,0,0,0,0,0,90,1.5,0,0,16.0,77777,9,999999999,60,0.0490,0,88,0.200,0.0,1.0 +2001,12,25,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,-3.3,53,98500,0,0,264,0,0,0,0,0,0,0,110,2.1,0,0,16.0,77777,9,999999999,60,0.0490,0,88,0.200,0.0,1.0 +2001,12,25,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.9,-2.8,60,98300,0,0,260,0,0,0,0,0,0,0,140,1.5,0,0,16.0,77777,9,999999999,60,0.0490,0,88,0.200,0.0,1.0 +2001,12,25,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,-2.8,55,98400,27,672,264,0,0,0,0,0,0,0,90,2.1,0,0,16.0,77777,9,999999999,60,0.0490,0,88,0.200,0.0,1.0 +2001,12,25,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,-4.4,42,98500,241,1414,271,125,542,33,12800,40800,5900,640,0,0.0,0,0,16.0,77777,9,999999999,60,0.0490,0,88,0.200,0.0,1.0 +2001,12,25,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,-3.3,39,98600,462,1414,281,303,767,52,31800,70300,8800,1090,70,2.1,0,0,16.0,77777,9,999999999,60,0.0490,0,88,0.200,0.0,1.0 +2001,12,25,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,-6.1,27,98600,631,1414,287,446,856,62,46700,82300,9800,1380,0,0.0,0,0,16.0,77777,9,999999999,60,0.0490,0,88,0.200,0.0,1.0 +2001,12,25,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,-5.0,25,98400,737,1414,298,545,891,79,56800,87100,11300,1640,0,0.0,0,0,16.0,77777,9,999999999,60,0.0490,0,88,0.200,0.0,1.0 +2001,12,25,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,-5.6,22,98300,771,1414,304,592,915,91,62300,90700,12700,2040,0,0.0,0,0,16.0,77777,9,999999999,60,0.0490,0,88,0.200,0.0,1.0 +2001,12,25,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,-6.1,20,98200,732,1414,305,549,887,87,57600,87400,12200,1910,0,0.0,0,0,16.0,77777,9,999999999,60,0.0490,0,88,0.200,0.0,1.0 +2001,12,25,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,-6.7,18,98200,623,1414,307,454,855,76,47400,82500,11000,1580,300,2.1,0,0,16.0,77777,9,999999999,60,0.0490,0,88,0.200,0.0,1.0 +2001,12,25,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,-6.7,18,98200,450,1414,309,328,826,64,33500,74400,9700,1210,270,2.6,0,0,16.0,77777,9,999999999,60,0.0490,0,88,0.200,0.0,1.0 +2001,12,25,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,-7.2,17,98100,226,1414,307,179,654,73,17500,43200,10500,1110,290,2.1,0,0,16.0,77777,9,999999999,60,0.0490,0,88,0.200,0.0,1.0 +2001,12,25,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,-6.7,20,98100,21,601,303,0,0,0,0,0,0,0,290,3.1,0,0,16.0,77777,9,999999999,70,0.0490,0,88,0.200,0.0,1.0 +2001,12,25,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,-2.2,34,98100,0,0,296,0,0,0,0,0,0,0,240,2.1,0,0,16.0,77777,9,999999999,70,0.0490,0,88,0.200,0.0,1.0 +2001,12,25,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,-2.2,37,98100,0,0,291,0,0,0,0,0,0,0,250,1.5,0,0,16.0,77777,9,999999999,70,0.0490,0,88,0.200,0.0,1.0 +2001,12,25,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,0.0,48,98100,0,0,289,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,70,0.0490,0,88,0.200,0.0,1.0 +2001,12,25,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,-1.1,47,98100,0,0,283,0,0,0,0,0,0,0,80,2.6,0,0,16.0,77777,9,999999999,70,0.0490,0,88,0.200,0.0,1.0 +2001,12,25,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,-1.7,48,98200,0,0,278,0,0,0,0,0,0,0,90,3.6,0,0,16.0,77777,9,999999999,70,0.0490,0,88,0.200,0.0,1.0 +2001,12,25,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,-3.3,44,98100,0,0,275,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,70,0.0490,0,88,0.200,0.0,1.0 +2001,12,26,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,-2.8,49,98000,0,0,271,0,0,0,0,0,0,0,100,2.6,0,0,16.0,77777,9,999999999,70,0.0490,0,88,0.200,0.0,1.0 +2001,12,26,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,-1.1,61,98000,0,0,268,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,70,0.0490,0,88,0.200,0.0,1.0 +2001,12,26,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,-2.8,55,98000,0,0,264,0,0,0,0,0,0,0,110,2.1,0,0,16.0,77777,9,999999999,70,0.0490,0,88,0.200,0.0,1.0 +2001,12,26,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,-3.9,51,98000,0,0,263,0,0,0,0,0,0,0,80,2.1,0,0,16.0,77777,9,999999999,70,0.0490,0,88,0.200,0.0,1.0 +2001,12,26,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,-4.4,51,98100,0,0,261,0,0,0,0,0,0,0,90,2.6,0,0,16.0,77777,9,999999999,60,0.0490,0,88,0.200,0.0,1.0 +2001,12,26,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.3,-4.4,55,98000,0,0,257,0,0,0,0,0,0,0,100,2.6,0,0,16.0,77777,9,999999999,60,0.0490,0,88,0.200,0.0,1.0 +2001,12,26,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.3,-3.9,57,98000,0,0,272,0,0,0,0,0,0,0,80,2.1,5,5,16.0,77777,9,999999999,60,0.0490,0,88,0.200,0.0,1.0 +2001,12,26,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,-5.0,48,98000,27,672,292,0,0,0,0,0,0,0,120,2.6,9,9,16.0,7620,9,999999999,60,0.0490,0,88,0.200,0.0,1.0 +2001,12,26,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,-5.0,43,98100,239,1414,299,115,478,34,11700,35900,5600,650,100,3.6,9,9,16.0,7620,9,999999999,60,0.0490,0,88,0.200,0.0,1.0 +2001,12,26,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,-6.1,32,98100,461,1414,310,294,671,74,30500,60800,10700,1420,0,0.0,9,9,16.0,7620,9,999999999,60,0.0490,0,88,0.200,0.0,1.0 +2001,12,26,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,-5.0,30,98100,631,1414,309,451,851,70,47600,82600,10600,1520,360,1.5,7,7,16.0,7620,9,999999999,60,0.0490,0,88,0.200,0.0,1.0 +2001,12,26,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,-5.6,24,98000,737,1414,333,550,909,75,57500,88900,11000,1620,0,0.0,9,9,16.0,7620,9,999999999,60,0.0490,0,88,0.200,0.0,1.0 +2001,12,26,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,-8.3,16,97900,772,1414,321,580,891,91,61000,88300,12600,2040,0,0.0,5,5,16.0,77777,9,999999999,70,0.0490,0,88,0.200,0.0,1.0 +2001,12,26,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,-7.8,15,97800,734,1414,351,535,844,95,55700,82900,12500,2010,0,0.0,9,9,16.0,7620,9,999999999,80,0.0490,0,88,0.200,0.0,1.0 +2001,12,26,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,-8.3,14,97700,625,1414,353,460,880,70,48500,85200,10700,1510,0,0.0,9,9,16.0,7620,9,999999999,80,0.0490,0,88,0.200,0.0,1.0 +2001,12,26,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,-7.8,14,97700,452,1414,354,336,798,79,34700,71700,11700,1490,310,2.6,9,9,16.0,7620,9,999999999,90,0.0490,0,88,0.200,0.0,1.0 +2001,12,26,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,-7.2,16,97700,229,1414,337,174,667,66,17300,44900,9900,1050,260,3.6,7,7,16.0,7620,9,999999999,100,0.0490,0,88,0.200,0.0,1.0 +2001,12,26,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,-3.9,26,97700,22,601,321,0,0,0,0,0,0,0,240,2.6,5,5,16.0,77777,9,999999999,100,0.0490,0,88,0.200,0.0,1.0 +2001,12,26,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,-0.6,41,97600,0,0,313,0,0,0,0,0,0,0,220,1.5,5,5,16.0,77777,9,999999999,110,0.0490,0,88,0.200,0.0,1.0 +2001,12,26,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,-2.2,37,97600,0,0,291,0,0,0,0,0,0,0,230,1.5,0,0,16.0,77777,9,999999999,110,0.0490,0,88,0.200,0.0,1.0 +2001,12,26,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,-4.4,30,97600,0,0,291,0,0,0,0,0,0,0,280,1.5,0,0,16.0,77777,9,999999999,120,0.0490,0,88,0.200,0.0,1.0 +2001,12,26,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,-2.2,40,97600,0,0,287,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,130,0.0490,0,88,0.200,0.0,1.0 +2001,12,26,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,-2.8,39,97700,0,0,307,0,0,0,0,0,0,0,0,0.0,7,7,16.0,7620,9,999999999,130,0.0490,0,88,0.200,0.0,1.0 +2001,12,26,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,-1.1,53,97600,0,0,293,0,0,0,0,0,0,0,90,2.6,5,5,16.0,77777,9,999999999,130,0.0490,0,88,0.200,0.0,1.0 +2001,12,27,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,-3.3,46,97600,0,0,289,0,0,0,0,0,0,0,90,3.1,5,5,16.0,77777,9,999999999,130,0.0480,0,88,0.200,0.0,1.0 +2001,12,27,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,-3.3,47,97500,0,0,287,0,0,0,0,0,0,0,110,3.6,5,5,16.0,77777,9,999999999,130,0.0480,0,88,0.200,0.0,1.0 +2001,12,27,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,-3.3,46,97500,0,0,306,0,0,0,0,0,0,0,130,3.1,9,9,16.0,7620,9,999999999,130,0.0480,0,88,0.200,0.0,1.0 +2001,12,27,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,-2.8,51,97500,0,0,301,0,0,0,0,0,0,0,90,3.1,9,9,16.0,7620,9,999999999,130,0.0480,0,88,0.200,0.0,1.0 +2001,12,27,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,-2.8,53,97600,0,0,293,0,0,0,0,0,0,0,100,3.6,8,8,16.0,7620,9,999999999,130,0.0480,0,88,0.200,0.0,1.0 +2001,12,27,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,-2.2,56,97600,0,0,300,0,0,0,0,0,0,0,100,1.5,9,9,16.0,7620,9,999999999,130,0.0480,0,88,0.200,0.0,1.0 +2001,12,27,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,-1.7,61,97600,0,0,281,0,0,0,0,0,0,0,90,2.1,5,5,16.0,77777,9,999999999,130,0.0480,0,88,0.200,0.0,1.0 +2001,12,27,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,-2.2,58,97600,26,648,281,0,0,0,0,0,0,0,90,3.6,5,5,16.0,77777,9,999999999,130,0.0480,0,88,0.200,0.0,1.0 +2001,12,27,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,-2.8,48,97700,238,1415,285,128,565,32,13100,42400,5900,630,100,4.1,3,3,16.0,77777,9,999999999,130,0.0480,0,88,0.200,0.0,1.0 +2001,12,27,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,-2.2,45,97700,460,1415,280,293,671,74,30500,60800,10700,1410,90,3.6,0,0,16.0,77777,9,999999999,130,0.0480,0,88,0.200,0.0,1.0 +2001,12,27,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,-2.8,35,97800,630,1415,308,446,839,70,47000,81400,10600,1510,130,2.1,5,5,16.0,77777,9,999999999,130,0.0480,0,88,0.200,0.0,1.0 +2001,12,27,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,-2.8,30,97600,737,1415,339,544,891,78,56800,87100,11200,1630,130,2.1,9,9,16.0,7620,9,999999999,130,0.0480,0,88,0.200,0.0,1.0 +2001,12,27,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,-3.9,25,97500,773,1415,343,567,849,101,59000,83800,13100,2180,130,2.1,9,9,16.0,7620,9,999999999,130,0.0480,0,88,0.200,0.0,1.0 +2001,12,27,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,-3.9,23,97500,735,1415,348,554,716,181,56600,69400,20400,3640,230,2.1,9,9,16.0,7620,9,999999999,130,0.0480,0,88,0.200,0.0,1.0 +2001,12,27,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,-2.8,25,97500,627,1415,350,237,170,162,26100,17100,18500,3890,230,2.1,9,9,16.0,7620,9,999999999,130,0.0480,0,88,0.200,0.0,1.0 +2001,12,27,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,-5.0,20,97600,455,1415,349,317,506,153,31900,45400,17200,3030,250,2.1,9,9,16.0,7620,9,999999999,130,0.0480,0,88,0.200,0.0,1.0 +2001,12,27,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,-3.9,23,97600,232,1415,341,170,581,74,16600,38800,10200,1130,270,4.1,8,8,16.0,7620,9,999999999,130,0.0480,0,88,0.200,0.0,1.0 +2001,12,27,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,-1.7,31,97600,23,625,343,0,0,0,0,0,0,0,0,0.0,9,9,16.0,7620,9,999999999,130,0.0480,0,88,0.200,0.0,1.0 +2001,12,27,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,-1.1,37,97600,0,0,336,0,0,0,0,0,0,0,0,0.0,9,9,16.0,7620,9,999999999,130,0.0480,0,88,0.200,0.0,1.0 +2001,12,27,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,0.6,45,97600,0,0,333,0,0,0,0,0,0,0,0,0.0,9,9,16.0,7620,9,999999999,130,0.0480,0,88,0.200,0.0,1.0 +2001,12,27,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,-0.6,41,97600,0,0,331,0,0,0,0,0,0,0,0,0.0,9,9,16.0,6096,9,999999999,130,0.0480,0,88,0.200,0.0,1.0 +2001,12,27,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,-1.1,42,97700,0,0,326,0,0,0,0,0,0,0,100,2.6,9,9,16.0,6096,9,999999999,130,0.0480,0,88,0.200,0.0,1.0 +2001,12,27,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,-1.7,43,97700,0,0,313,0,0,0,0,0,0,0,90,3.1,8,8,16.0,6096,9,999999999,130,0.0480,0,88,0.200,0.0,1.0 +2001,12,27,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,-0.6,49,97600,0,0,318,0,0,0,0,0,0,0,80,2.1,9,9,16.0,6096,9,999999999,130,0.0480,0,88,0.200,0.0,1.0 +2001,12,28,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,0.0,54,97600,0,0,317,0,0,0,0,0,0,0,150,1.5,9,9,16.0,6096,9,999999999,130,0.0480,0,88,0.200,0.0,1.0 +2001,12,28,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,0.6,58,97600,0,0,297,0,0,0,0,0,0,0,100,2.6,5,5,16.0,77777,9,999999999,130,0.0480,0,88,0.200,0.0,1.0 +2001,12,28,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,0.0,58,97600,0,0,295,0,0,0,0,0,0,0,110,2.1,5,5,16.0,77777,9,999999999,120,0.0480,0,88,0.200,0.0,1.0 +2001,12,28,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,0.0,62,97500,0,0,316,0,0,0,0,0,0,0,90,3.1,10,10,16.0,7010,9,999999999,120,0.0480,0,88,0.200,0.0,1.0 +2001,12,28,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,0.0,62,97600,0,0,296,0,0,0,0,0,0,0,100,2.6,7,7,16.0,6096,9,999999999,120,0.0480,0,88,0.200,0.0,1.0 +2001,12,28,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,0.0,62,97500,0,0,307,0,0,0,0,0,0,0,100,2.6,9,9,16.0,6096,9,999999999,120,0.0480,0,88,0.200,0.0,1.0 +2001,12,28,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,-0.6,57,97600,0,0,309,0,0,0,0,0,0,0,100,2.6,9,9,16.0,6096,9,999999999,120,0.0480,0,88,0.200,0.0,1.0 +2001,12,28,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,-1.1,55,97700,25,648,308,0,0,0,0,0,0,0,100,2.1,9,9,16.0,7620,9,999999999,110,0.0480,0,88,0.200,0.0,1.0 +2001,12,28,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,-1.1,51,97800,237,1415,313,36,0,36,4200,0,4200,1370,110,3.1,9,9,16.0,7620,9,999999999,110,0.0480,0,88,0.200,0.0,1.0 +2001,12,28,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,-3.3,38,97800,459,1415,318,200,157,149,21600,14600,16800,3370,130,3.1,9,9,16.0,7620,9,999999999,110,0.0480,0,88,0.200,0.0,1.0 +2001,12,28,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,-3.9,31,97900,630,1415,315,286,157,216,30900,15700,23900,5200,160,1.5,7,7,16.0,7620,9,999999999,110,0.0480,0,88,0.200,0.0,1.0 +2001,12,28,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,-3.3,30,97800,738,1415,343,447,392,241,47400,40800,26000,5690,110,2.6,10,10,16.0,7620,9,999999999,110,0.0480,0,88,0.200,0.0,1.0 +2001,12,28,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,-5.6,23,97700,774,1415,345,171,0,171,19900,0,19900,7470,110,1.5,10,10,16.0,7620,9,999999999,110,0.0480,0,88,0.200,0.0,1.0 +2001,12,28,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,-4.4,24,97700,737,1415,352,554,636,221,57200,63900,23800,4890,0,0.0,10,10,16.0,7620,9,999999999,120,0.0480,0,88,0.200,0.0,1.0 +2001,12,28,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,-4.4,24,97600,629,1415,352,402,465,194,41200,45400,20900,4040,100,2.1,10,10,16.0,7620,9,999999999,120,0.0480,0,88,0.200,0.0,1.0 +2001,12,28,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,-3.9,25,97600,457,1415,353,175,67,154,19200,6300,17200,3920,170,1.5,10,10,16.0,7620,9,999999999,130,0.0480,0,88,0.200,0.0,1.0 +2001,12,28,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,-3.3,26,97700,235,1415,354,187,419,117,18700,27900,14000,2650,220,3.1,10,10,16.0,7620,9,999999999,130,0.0480,0,88,0.200,0.0,1.0 +2001,12,28,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,-2.2,33,97600,24,625,344,0,0,0,0,0,0,0,220,1.5,10,10,16.0,7620,9,999999999,130,0.0480,0,88,0.200,0.0,1.0 +2001,12,28,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,-1.1,34,97700,0,0,341,0,0,0,0,0,0,0,320,1.5,9,9,16.0,7620,9,999999999,140,0.0480,0,88,0.200,0.0,1.0 +2001,12,28,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,1.7,50,97700,0,0,341,0,0,0,0,0,0,0,0,0.0,10,10,16.0,4572,9,999999999,140,0.0480,0,88,0.200,0.0,1.0 +2001,12,28,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,1.7,50,97700,0,0,341,0,0,0,0,0,0,0,230,1.5,10,10,16.0,4572,9,999999999,140,0.0480,0,88,0.200,0.0,1.0 +2001,12,28,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,0.6,45,97700,0,0,342,0,0,0,0,0,0,0,0,0.0,10,10,16.0,4572,9,999999999,150,0.0480,0,88,0.200,0.0,1.0 +2001,12,28,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,0.0,43,97800,0,0,341,0,0,0,0,0,0,0,0,0.0,10,10,16.0,4572,9,999999999,150,0.0480,0,88,0.200,0.0,1.0 +2001,12,28,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,0.0,44,97700,0,0,339,0,0,0,0,0,0,0,80,2.6,10,10,16.0,4572,9,999999999,150,0.0480,0,88,0.200,0.0,1.0 +2001,12,29,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,-0.6,44,97700,0,0,326,0,0,0,0,0,0,0,90,1.5,10,9,16.0,4572,9,999999999,140,0.0480,0,88,0.200,0.0,1.0 +2001,12,29,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,1.1,52,97700,0,0,290,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,140,0.0480,0,88,0.200,0.0,1.0 +2001,12,29,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,1.7,54,97700,0,0,327,0,0,0,0,0,0,0,70,2.6,10,9,16.0,4572,9,999999999,130,0.0480,0,88,0.200,0.0,1.0 +2001,12,29,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,1.1,50,97700,0,0,337,0,0,0,0,0,0,0,110,2.6,10,10,16.0,3048,9,999999999,130,0.0480,0,88,0.200,0.0,1.0 +2001,12,29,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,0.6,50,97800,0,0,318,0,0,0,0,0,0,0,140,2.1,9,8,16.0,3048,9,999999999,120,0.0480,0,88,0.200,0.0,1.0 +2001,12,29,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,0.6,48,97700,0,0,328,0,0,0,0,0,0,0,0,0.0,10,9,16.0,3048,9,999999999,120,0.0480,0,88,0.200,0.0,1.0 +2001,12,29,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,0.6,50,97700,0,0,325,0,0,0,0,0,0,0,80,2.6,10,9,16.0,2743,9,999999999,110,0.0480,0,88,0.200,0.0,1.0 +2001,12,29,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,0.0,44,97800,25,648,339,0,0,0,0,0,0,0,130,1.5,10,10,16.0,2743,9,999999999,110,0.0480,0,88,0.200,0.0,1.0 +2001,12,29,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,-1.1,37,97900,236,1415,345,123,374,61,12700,25600,8400,1120,110,2.1,10,10,16.0,2743,9,999999999,100,0.0480,0,88,0.200,0.0,1.0 +2001,12,29,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,0.0,38,97900,459,1415,350,163,78,137,17800,7200,15400,3610,90,3.1,10,10,16.0,2743,9,999999999,100,0.0480,0,88,0.200,0.0,1.0 +2001,12,29,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,-1.1,33,97900,630,1415,354,90,0,90,10700,0,10700,4060,80,3.6,10,10,16.0,4572,9,999999999,90,0.0480,0,88,0.200,0.0,1.0 +2001,12,29,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,-1.7,29,97800,738,1415,358,86,0,86,10500,0,10500,4130,90,2.6,10,10,16.0,2743,9,999999999,100,0.0480,0,88,0.200,0.0,1.0 +2001,12,29,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,-1.7,28,97700,775,1415,361,104,0,104,12600,0,12600,4970,0,0.0,10,10,16.0,2743,9,999999999,100,0.0480,0,88,0.200,0.0,1.0 +2001,12,29,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,-1.7,27,97600,739,1415,364,143,0,143,16800,0,16800,6350,0,0.0,10,10,16.0,2743,9,999999999,110,0.0480,0,88,0.200,0.0,1.0 +2001,12,29,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,-2.2,24,97600,631,1415,369,158,0,158,18000,0,18000,6330,0,0.0,10,10,16.0,2896,9,999999999,110,0.0480,0,88,0.200,0.0,1.0 +2001,12,29,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,-0.6,29,97700,460,1415,368,166,34,155,18200,3200,17100,3950,250,2.1,10,10,16.0,4572,9,999999999,120,0.0480,0,88,0.200,0.0,1.0 +2001,12,29,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,-2.2,25,97600,238,1415,366,101,39,95,11100,3100,10500,2040,310,3.1,10,10,16.0,2896,9,999999999,120,0.0480,0,88,0.200,0.0,1.0 +2001,12,29,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,1.1,36,97500,26,648,362,0,0,0,0,0,0,0,0,0.0,10,10,16.0,2896,9,999999999,130,0.0480,0,88,0.200,0.0,1.0 +2001,12,29,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,0.6,37,97700,0,0,356,0,0,0,0,0,0,0,240,3.6,10,10,16.0,2896,9,999999999,130,0.0480,0,88,0.200,0.0,1.0 +2001,12,29,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,-0.6,33,97600,0,0,357,0,0,0,0,0,0,0,0,0.0,10,10,16.0,3962,9,999999999,140,0.0480,0,88,0.200,0.0,1.0 +2001,12,29,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,-0.6,34,97600,0,0,354,0,0,0,0,0,0,0,300,2.6,10,10,16.0,2896,9,999999999,140,0.0480,0,88,0.200,0.0,1.0 +2001,12,29,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,0.6,40,97600,0,0,341,0,0,0,0,0,0,0,0,0.0,10,9,16.0,4572,9,999999999,150,0.0480,0,88,0.200,0.0,1.0 +2001,12,29,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,0.6,42,97700,0,0,331,0,0,0,0,0,0,0,280,2.1,9,8,16.0,4267,9,999999999,150,0.0480,0,88,0.200,0.0,1.0 +2001,12,29,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,0.0,38,97600,0,0,340,0,0,0,0,0,0,0,290,2.1,10,9,16.0,2134,9,999999999,150,0.0480,0,88,0.200,0.0,1.0 +2001,12,30,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,0.0,40,97600,0,0,337,0,0,0,0,0,0,0,0,0.0,10,9,16.0,4267,9,999999999,150,0.0480,0,88,0.200,0.0,1.0 +2001,12,30,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,2.2,50,97700,0,0,335,0,0,0,0,0,0,0,0,0.0,10,9,16.0,4267,9,999999999,150,0.0480,0,88,0.200,0.0,1.0 +2001,12,30,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,2.2,48,97800,0,0,347,0,0,0,0,0,0,0,210,1.5,10,10,16.0,2134,9,999999999,140,0.0480,0,88,0.200,0.0,1.0 +2001,12,30,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,1.7,45,97700,0,0,339,0,0,0,0,0,0,0,60,1.5,10,9,16.0,2134,9,999999999,140,0.0480,0,88,0.200,0.0,1.0 +2001,12,30,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,2.8,54,97700,0,0,321,0,0,0,0,0,0,0,100,2.6,10,7,16.0,2591,9,999999999,140,0.0480,0,88,0.200,0.0,1.0 +2001,12,30,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,2.8,57,97700,0,0,330,0,0,0,0,0,0,0,90,2.6,10,9,16.0,2591,9,999999999,130,0.0480,0,88,0.200,0.0,1.0 +2001,12,30,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,2.8,61,97700,0,0,325,0,0,0,0,0,0,0,90,2.1,10,9,16.0,2591,9,999999999,130,0.0480,0,88,0.200,0.0,1.0 +2001,12,30,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,2.8,58,97800,24,625,328,0,0,0,0,0,0,0,110,2.1,10,9,16.0,2591,9,999999999,130,0.0480,0,88,0.200,0.0,1.0 +2001,12,30,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,2.2,50,97900,235,1415,335,113,475,34,11500,35400,5600,650,130,2.1,10,9,16.0,2591,9,999999999,130,0.0480,0,88,0.200,0.0,1.0 +2001,12,30,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,1.1,40,97900,458,1415,324,288,643,79,29800,58000,11000,1490,0,0.0,10,5,16.0,77777,9,999999999,120,0.0480,0,88,0.200,0.0,1.0 +2001,12,30,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,1.1,36,98000,630,1415,324,455,862,70,48100,83600,10700,1510,0,0.0,7,2,16.0,77777,9,999999999,120,0.0480,0,88,0.200,0.0,1.0 +2001,12,30,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,1.1,31,97900,739,1415,337,561,902,87,58900,89000,12300,1920,320,1.5,8,3,16.0,77777,9,999999999,130,0.0480,0,88,0.200,0.0,1.0 +2001,12,30,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,-1.7,26,97700,777,1415,357,572,807,128,60300,80500,15900,2860,270,1.5,10,9,16.0,7620,9,999999999,140,0.0480,0,88,0.200,0.0,1.0 +2001,12,30,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,-2.8,21,97700,741,1415,366,573,874,113,58600,85200,13800,2220,270,1.5,10,9,16.0,7620,9,999999999,140,0.0480,0,88,0.200,0.0,1.0 +2001,12,30,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,-3.3,20,97700,634,1415,345,465,879,70,48600,84500,10600,1420,260,2.1,10,5,16.0,77777,9,999999999,150,0.0480,0,88,0.200,0.0,1.0 +2001,12,30,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,-3.3,20,97700,463,1415,365,331,807,66,33800,73100,9800,1240,260,2.1,10,9,16.0,7620,9,999999999,160,0.0480,0,88,0.200,0.0,1.0 +2001,12,30,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,-1.7,23,97700,241,1415,354,138,315,84,13700,21600,10000,1610,240,2.6,10,7,16.0,7620,9,999999999,170,0.0480,0,88,0.200,0.0,1.0 +2001,12,30,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,-1.1,27,97700,27,672,337,0,0,0,0,0,0,0,230,1.5,10,5,16.0,77777,9,999999999,180,0.0480,0,88,0.200,0.0,1.0 +2001,12,30,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,1.1,36,97700,0,0,332,0,0,0,0,0,0,0,0,0.0,10,5,16.0,77777,9,999999999,180,0.0480,0,88,0.200,0.0,1.0 +2001,12,30,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,1.1,40,97700,0,0,324,0,0,0,0,0,0,0,230,2.1,10,5,16.0,77777,9,999999999,190,0.0480,0,88,0.200,0.0,1.0 +2001,12,30,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,0.6,39,97700,0,0,343,0,0,0,0,0,0,0,0,0.0,10,9,16.0,7620,9,999999999,200,0.0480,0,88,0.200,0.0,1.0 +2001,12,30,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,0.0,36,97700,0,0,345,0,0,0,0,0,0,0,0,0.0,10,9,16.0,6096,9,999999999,209,0.0480,0,88,0.200,0.0,1.0 +2001,12,30,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,0.6,39,97700,0,0,331,0,0,0,0,0,0,0,0,0.0,10,7,16.0,7620,9,999999999,220,0.0480,0,88,0.200,0.0,1.0 +2001,12,30,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,1.1,42,97600,0,0,341,0,0,0,0,0,0,0,90,2.6,10,9,16.0,6096,9,999999999,209,0.0480,0,88,0.200,0.0,1.0 +2001,12,31,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,1.7,45,97600,0,0,339,0,0,0,0,0,0,0,110,3.1,9,9,16.0,6096,9,999999999,200,0.0480,0,88,0.200,0.0,1.0 +2001,12,31,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,1.1,45,97600,0,0,336,0,0,0,0,0,0,0,100,2.6,9,9,16.0,6096,9,999999999,190,0.0480,0,88,0.200,0.0,1.0 +2001,12,31,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,1.1,47,97600,0,0,333,0,0,0,0,0,0,0,80,2.6,9,9,16.0,6096,9,999999999,180,0.0480,0,88,0.200,0.0,1.0 +2001,12,31,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,1.1,48,97500,0,0,331,0,0,0,0,0,0,0,0,0.0,9,9,16.0,6096,9,999999999,170,0.0480,0,88,0.200,0.0,1.0 +2001,12,31,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,1.1,50,97600,0,0,321,0,0,0,0,0,0,0,110,1.5,8,8,16.0,6096,9,999999999,160,0.0480,0,88,0.200,0.0,1.0 +2001,12,31,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,1.7,52,97500,0,0,329,0,0,0,0,0,0,0,100,2.6,9,9,16.0,6096,9,999999999,150,0.0480,0,88,0.200,0.0,1.0 +2001,12,31,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,2.2,56,97600,0,0,327,0,0,0,0,0,0,0,100,2.6,9,9,16.0,6096,9,999999999,140,0.0480,0,88,0.200,0.0,1.0 +2001,12,31,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,4.4,65,97600,24,625,330,0,0,0,0,0,0,0,90,3.1,9,9,16.0,6096,9,999999999,130,0.0480,0,88,0.200,0.0,1.0 +2001,12,31,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,1.7,50,97600,234,1415,341,84,140,61,8900,9500,7300,1150,90,4.6,10,10,16.0,2743,9,999999999,120,0.0480,0,88,0.200,0.0,1.0 +2001,12,31,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,1.7,49,97700,458,1415,343,148,45,134,16300,4200,14900,3540,130,1.5,10,10,16.0,2743,9,999999999,110,0.0480,0,88,0.200,0.0,1.0 +2001,12,31,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,1.1,42,97600,631,1415,351,386,367,222,40500,37100,23900,5060,110,2.6,10,10,16.0,2134,9,999999999,100,0.0480,0,88,0.200,0.0,1.0 +2001,12,31,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,1.1,37,97500,740,1415,359,137,0,137,16100,0,16100,6140,0,0.0,10,10,16.0,3658,9,999999999,110,0.0480,0,88,0.200,0.0,1.0 +2001,12,31,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,0.6,35,97400,778,1415,361,134,0,134,15900,0,15900,6170,320,2.1,10,10,16.0,3658,9,999999999,120,0.0480,0,88,0.200,0.0,1.0 +2001,12,31,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,4.4,44,97400,743,1415,339,533,642,195,55900,64700,21800,4260,310,3.6,5,5,16.0,77777,9,999999999,130,0.0480,0,88,0.200,0.0,1.0 +2001,12,31,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,5.6,45,97400,636,1415,345,479,759,136,49100,72600,16300,2650,290,6.2,5,5,16.0,77777,9,999999999,140,0.0480,0,88,0.200,0.0,1.0 +2001,12,31,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,6.1,46,97400,466,1415,346,260,295,163,27100,27400,18000,3500,280,4.6,5,5,16.0,77777,9,999999999,150,0.0480,0,88,0.200,0.0,1.0 +2001,12,31,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,6.1,46,97500,244,1415,346,154,424,81,15500,29400,10400,1540,310,3.6,5,5,16.0,77777,9,999999999,160,0.0480,0,88,0.200,0.0,1.0 +2001,12,31,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,6.7,50,97500,29,696,344,0,0,0,0,0,0,0,0,0.0,5,5,16.0,77777,9,999999999,160,0.0480,0,88,0.200,0.0,1.0 +2001,12,31,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,5.6,46,97500,0,0,337,0,0,0,0,0,0,0,290,4.6,3,3,16.0,77777,9,999999999,160,0.0480,0,88,0.200,0.0,1.0 +2001,12,31,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,6.1,57,97600,0,0,312,0,0,0,0,0,0,0,90,3.6,0,0,16.0,77777,9,999999999,160,0.0480,0,88,0.200,0.0,1.0 +2001,12,31,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,6.1,62,97600,0,0,307,0,0,0,0,0,0,0,120,2.1,0,0,16.0,77777,9,999999999,160,0.0480,0,88,0.200,0.0,1.0 +2001,12,31,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,6.1,64,97600,0,0,305,0,0,0,0,0,0,0,70,2.1,0,0,16.0,77777,9,999999999,150,0.0480,0,88,0.200,0.0,1.0 +2001,12,31,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,6.1,66,97700,0,0,302,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,150,0.0480,0,88,0.200,0.0,1.0 +2001,12,31,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,6.1,71,97600,0,0,298,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,150,0.0480,0,88,0.200,0.0,1.0 diff --git a/example_files/resources/hpxml-measures/weather/USA_HI_Honolulu.Intl.AP.911820_TMY3-cache.csv b/example_files/resources/hpxml-measures/weather/USA_HI_Honolulu.Intl.AP.911820_TMY3-cache.csv new file mode 100644 index 00000000..b65b51f6 --- /dev/null +++ b/example_files/resources/hpxml-measures/weather/USA_HI_Honolulu.Intl.AP.911820_TMY3-cache.csv @@ -0,0 +1,35 @@ +WeatherHeader.City,String,Honolulu Intl Arpt +WeatherHeader.State,String,HI +WeatherHeader.Country,String,USA +WeatherHeader.DataSource,String,TMY3 +WeatherHeader.Station,String,911820 +WeatherHeader.Latitude,Float,21.32 +WeatherHeader.Longitude,Float,-157.93 +WeatherHeader.Timezone,Float,-10.0 +WeatherHeader.Altitude,Float,6.561679790026246 +WeatherHeader.LocalPressure,Float,0.9997585593352166 +WeatherHeader.RecordsPerHour,Fixnum,1 +WeatherData.AnnualAvgDrybulb,Float,76.8457260273972 +WeatherData.AnnualMinDrybulb,Float,55.94 +WeatherData.AnnualMaxDrybulb,Float,91.94 +WeatherData.CDD50F,Float,9798.689999999999 +WeatherData.CDD65F,Float,4323.69 +WeatherData.HDD50F,Float,0.0 +WeatherData.HDD65F,Float,0.0 +WeatherData.AnnualAvgWindspeed,Float,4.7668835616436525 +WeatherData.MonthlyAvgDrybulbs,Array,72.4716935483871,73.04910714285711,73.70387096774198,74.76300000000003,77.42169354838698,78.55899999999991,80.42362903225818,80.71540322580644,80.37300000000008,79.18879032258069,76.56924999999987,74.63580645161286 +WeatherData.GroundMonthlyTemps,Array,75.62832565157879,74.9978266165785,74.94733399275168,75.24653800109053,76.44767536499074,77.64321732150069,78.67968830295302,79.33626717821875,79.39204716000398,78.8580306008227,77.84799023792488,76.68912263911267 +WeatherData.WSF,Float,0.42 +WeatherData.MonthlyAvgDailyHighDrybulbs,Array,80.0483870967742,80.61285714285714,81.74387096774194,82.51399999999998,85.41354838709677,84.27799999999999,87.80000000000001,88.94387096774196,86.99600000000001,88.22387096774196,83.6,80.64645161290323 +WeatherData.MonthlyAvgDailyLowDrybulbs,Array,66.11870967741936,65.88499999999999,66.59483870967742,68.75,70.71741935483871,73.71199999999999,75.2290322580645,74.51483870967742,75.16999999999999,71.92516129032259,70.59800000000001,69.14967741935484 +WeatherDesign.HeatingDrybulb,Float,63.31999999999999 +WeatherDesign.HeatingWindspeed,Float,9.9 +WeatherDesign.CoolingDrybulb,Float,89.06 +WeatherDesign.CoolingWetbulb,Float,73.58000000000001 +WeatherDesign.CoolingHumidityRatio,Float,0.014103177180367318 +WeatherDesign.CoolingWindspeed,Float,6.7 +WeatherDesign.DailyTemperatureRange,Float,12.78 +WeatherDesign.DehumidDrybulb,Float,80.24000000000001 +WeatherDesign.DehumidHumidityRatio,Float,0.017420709935526194 +WeatherDesign.CoolingDirectNormal,Float,843.0 +WeatherDesign.CoolingDiffuseHorizontal,Float,254.0 diff --git a/example_files/resources/hpxml-measures/weather/USA_HI_Honolulu.Intl.AP.911820_TMY3.epw b/example_files/resources/hpxml-measures/weather/USA_HI_Honolulu.Intl.AP.911820_TMY3.epw new file mode 100644 index 00000000..8a9144fb --- /dev/null +++ b/example_files/resources/hpxml-measures/weather/USA_HI_Honolulu.Intl.AP.911820_TMY3.epw @@ -0,0 +1,8768 @@ +LOCATION,Honolulu Intl Arpt,HI,USA,TMY3,911820,21.32,-157.93,-10.0,2.0 +DESIGN CONDITIONS,1,Climate Design Data 2009 ASHRAE Handbook,,Heating,2,16.2,17.4,10.8,8.1,20.8,11.9,8.7,21,10.9,24.3,9.9,24.1,1.9,320,Cooling,8,7.1,32.2,23.3,31.7,23.1,31.2,23,25.1,29.3,24.6,29,24.2,28.7,6.7,60,23.9,18.8,27.4,23.3,18,27,22.7,17.5,26.8,76.3,29.3,74.2,29.1,72.4,28.8,37,Extremes,9.8,9,8.4,27.4,14.2,33.1,1.2,0.9,13.3,33.8,12.6,34.3,11.9,34.8,11,35.5 +TYPICAL/EXTREME PERIODS,4,Wet Season - Week Near Average For Period,Typical,3/ 1,3/ 7,Dry Season - Week Near Average For Period,Typical,5/20,5/26,Tropical Hot - Week Nearest Max Temperature For Period,Extreme,8/27,9/ 2,Tropical Cold- Week Nearest Min Temperature For Period,Extreme,1/15,1/21 +GROUND TEMPERATURES,3,.5,,,,23.73,23.02,22.83,23.00,23.95,25.02,26.03,26.76,26.97,26.63,25.80,24.76,2,,,,24.37,23.70,23.39,23.37,23.88,24.61,25.40,26.08,26.42,26.36,25.89,25.18,4,,,,24.78,24.27,23.95,23.85,24.04,24.47,24.99,25.52,25.86,25.95,25.75,25.33 +HOLIDAYS/DAYLIGHT SAVINGS,No,0,0,0 +COMMENTS 1,Custom/User Format -- WMO#911820; NREL TMY Data Set (2008); Period of Record 1973-2005 (Generally) +COMMENTS 2, -- Ground temps produced with a standard soil diffusivity of 2.3225760E-03 {m**2/day} +DATA PERIODS,1,1,Data,Sunday, 1/ 1,12/31 +1987,1,1,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,18.3,90,101600,0,0,350,0,0,0,0,0,0,0,310,2.1,0,0,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1987,1,1,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,17.8,87,101600,0,0,350,0,0,0,0,0,0,0,310,1.5,0,0,24.1,77777,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1987,1,1,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,17.2,90,101600,0,0,344,0,0,0,0,0,0,0,320,2.1,0,0,24.1,77777,9,999999999,300,0.0400,0,88,999.000,999.0,99.0 +1987,1,1,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,17.8,93,101600,0,0,345,0,0,0,0,0,0,0,290,1.5,0,0,24.1,77777,9,999999999,309,0.0400,0,88,999.000,999.0,99.0 +1987,1,1,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,17.8,93,101600,0,0,345,0,0,0,0,0,0,0,330,2.1,0,0,24.1,77777,9,999999999,309,0.0400,0,88,999.000,999.0,99.0 +1987,1,1,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,17.8,93,101600,0,0,345,0,0,0,0,0,0,0,290,1.5,0,0,24.1,77777,9,999999999,309,0.0400,0,88,999.000,999.0,99.0 +1987,1,1,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,17.8,93,101700,0,0,351,58,315,23,0,0,0,0,320,1.5,1,1,24.1,77777,9,999999999,309,0.0180,0,88,999.000,999.0,99.0 +1987,1,1,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,18.9,90,101800,97,1167,361,207,587,47,9556,28276,7065,680,0,0.0,1,1,40.2,77777,9,999999999,340,0.0180,0,88,999.000,999.0,99.0 +1987,1,1,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,20.0,76,101800,381,1415,381,413,834,36,27679,73336,7842,883,310,1.5,1,1,40.2,77777,9,999999999,359,0.0180,0,88,999.000,999.0,99.0 +1987,1,1,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,19.4,65,101900,635,1415,385,603,938,48,49753,90450,8985,1254,100,2.1,0,0,40.2,77777,9,999999999,350,0.0180,0,88,999.000,999.0,99.0 +1987,1,1,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,19.4,61,101800,833,1415,390,710,964,53,65743,95469,9331,1506,130,2.6,0,0,40.2,77777,9,999999999,350,0.0180,0,88,999.000,999.0,99.0 +1987,1,1,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,20.0,61,101700,961,1415,401,707,935,39,72059,93512,8353,1319,200,3.6,1,1,40.2,77777,9,999999999,359,0.0180,0,88,999.000,999.0,99.0 +1987,1,1,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,20.0,61,101600,1009,1415,407,676,860,83,72796,85874,11340,2310,130,4.6,2,2,40.2,77777,9,999999999,359,0.0180,0,88,999.000,999.0,99.0 +1987,1,1,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,18.9,55,101500,975,1415,409,638,926,75,74800,92384,10899,2098,150,3.6,2,2,40.2,77777,9,999999999,340,0.0180,0,88,999.000,999.0,99.0 +1987,1,1,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,19.4,57,101500,861,1415,413,399,563,131,50420,56918,15643,3192,270,3.6,3,3,40.2,77777,9,999999999,350,0.0180,0,88,999.000,999.0,99.0 +1987,1,1,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,21.1,67,101600,675,1415,424,233,319,137,31097,31789,15865,2791,250,4.1,7,7,32.2,1370,9,999999999,379,0.0180,0,88,999.000,999.0,99.0 +1987,1,1,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,21.1,74,101600,430,1415,415,54,79,45,7869,7229,5663,780,320,3.1,7,7,32.2,1370,9,999999999,379,0.0180,0,88,999.000,999.0,99.0 +1987,1,1,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,18.9,69,101600,145,1415,392,0,0,0,0,0,0,0,350,3.1,3,3,24.1,77777,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1987,1,1,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,18.9,74,101700,0,12,382,0,0,0,0,0,0,0,360,2.6,2,2,24.1,77777,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1987,1,1,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,18.3,74,101700,0,0,373,0,0,0,0,0,0,0,350,2.1,1,1,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1987,1,1,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,18.9,79,101800,0,0,377,0,0,0,0,0,0,0,290,2.1,2,2,24.1,77777,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1987,1,1,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,20.0,82,101800,0,0,413,0,0,0,0,0,0,0,360,4.1,9,9,11.3,610,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1987,1,1,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,20.0,87,101800,0,0,392,0,0,0,0,0,0,0,20,4.1,7,7,16.1,1370,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1987,1,1,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,18.3,74,101800,0,0,385,0,0,0,0,0,0,0,50,4.1,4,4,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1987,1,2,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,19.4,79,101800,0,0,424,0,0,0,0,0,0,0,70,5.2,10,10,19.3,610,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1987,1,2,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,19.4,87,101800,0,0,404,0,0,0,0,0,0,0,50,5.2,9,9,19.3,610,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1987,1,2,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,19.4,84,101800,0,0,406,0,0,0,0,0,0,0,40,4.1,9,9,19.3,610,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1987,1,2,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,18.9,82,101800,0,0,406,0,0,0,0,0,0,0,50,5.2,9,9,19.3,610,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1987,1,2,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,18.3,76,101800,0,0,393,0,0,0,0,0,0,0,50,5.2,7,7,19.3,610,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1987,1,2,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,18.3,76,101800,0,0,393,0,0,0,0,0,0,0,60,4.1,7,7,19.3,700,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1987,1,2,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,18.9,79,101900,0,0,394,30,19,28,0,0,0,0,70,4.1,7,7,24.1,700,9,999999999,340,0.0460,0,88,999.000,999.0,99.0 +1987,1,2,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,18.9,76,101900,96,1144,397,106,40,95,10600,2700,10400,1270,40,6.7,7,7,40.2,1220,9,999999999,340,0.0460,0,88,999.000,999.0,99.0 +1987,1,2,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,19.4,74,102000,380,1415,395,412,630,128,29900,53100,15600,2490,70,6.7,5,5,40.2,77777,9,999999999,350,0.0460,0,88,999.000,999.0,99.0 +1987,1,2,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,18.9,63,102000,635,1415,411,356,159,262,35600,15900,28400,6320,50,8.2,6,6,40.2,1520,9,999999999,340,0.0460,0,88,999.000,999.0,99.0 +1987,1,2,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,18.9,67,102000,833,1415,409,556,359,311,55300,37900,32800,8050,70,7.7,7,7,40.2,1370,9,999999999,340,0.0460,0,88,999.000,999.0,99.0 +1987,1,2,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,19.4,61,101900,961,1415,422,466,123,378,50700,12700,42100,12480,20,6.7,7,7,40.2,1370,9,999999999,350,0.0460,0,88,999.000,999.0,99.0 +1987,1,2,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,18.3,55,101800,1011,1415,415,551,497,207,61300,51700,24200,5910,40,7.2,5,5,40.2,77777,9,999999999,329,0.0460,0,88,999.000,999.0,99.0 +1987,1,2,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,17.2,51,101700,977,1415,407,571,726,128,66200,72800,15700,3310,60,8.2,3,3,40.2,77777,9,999999999,309,0.0460,0,88,999.000,999.0,99.0 +1987,1,2,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,17.2,54,101700,864,1415,401,439,712,99,56700,71300,13000,2390,60,7.7,3,3,40.2,77777,9,999999999,300,0.0460,0,88,999.000,999.0,99.0 +1987,1,2,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,17.2,56,101700,678,1415,399,219,420,91,31200,41500,11200,1960,60,7.2,3,3,40.2,77777,9,999999999,300,0.0460,0,88,999.000,999.0,99.0 +1987,1,2,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,17.8,62,101700,433,1415,394,62,236,35,11700,21500,5100,720,60,8.2,3,3,32.2,77777,9,999999999,320,0.0460,0,88,999.000,999.0,99.0 +1987,1,2,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,17.2,64,101800,148,1415,387,0,0,0,0,0,0,0,60,7.2,3,3,24.1,77777,9,999999999,300,0.0400,0,88,999.000,999.0,99.0 +1987,1,2,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,17.8,69,101800,0,12,385,0,0,0,0,0,0,0,60,8.2,3,3,24.1,77777,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1987,1,2,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,18.3,69,101800,0,0,388,0,0,0,0,0,0,0,60,7.2,3,3,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1987,1,2,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,18.9,71,101800,0,0,398,0,0,0,0,0,0,0,70,8.2,6,6,16.1,1370,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1987,1,2,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,19.4,76,101900,0,0,407,0,0,0,0,0,0,0,60,8.2,8,8,16.1,1370,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1987,1,2,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,20.0,84,101900,0,0,402,0,0,0,0,0,0,0,70,7.2,8,8,16.1,1370,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1987,1,2,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,19.4,82,101800,0,0,390,0,0,0,0,0,0,0,60,4.6,6,6,16.1,1370,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1987,1,3,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,20.0,84,101800,0,0,391,0,0,0,0,0,0,0,60,3.1,6,6,16.1,1370,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1987,1,3,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,20.6,87,101800,0,0,403,0,0,0,0,0,0,0,50,4.1,8,8,16.1,1370,9,999999999,370,0.0400,0,88,999.000,999.0,99.0 +1987,1,3,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,20.6,87,101700,0,0,423,0,0,0,0,0,0,0,50,4.1,10,10,11.3,610,9,999999999,370,0.0400,0,88,999.000,999.0,99.0 +1987,1,3,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,20.6,90,101700,0,0,385,0,0,0,0,0,0,0,60,2.6,5,5,24.1,77777,9,999999999,370,0.0400,0,88,999.000,999.0,99.0 +1987,1,3,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,20.0,90,101700,0,0,379,0,0,0,0,0,0,0,100,2.1,4,4,24.1,77777,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1987,1,3,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,20.6,90,101700,0,0,393,0,0,0,0,0,0,0,0,0.0,7,7,24.1,1370,9,999999999,370,0.0400,0,88,999.000,999.0,99.0 +1987,1,3,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,20.0,93,101800,0,0,382,44,53,38,0,0,0,0,0,0.0,6,6,24.1,1370,9,999999999,359,0.0430,0,88,999.000,999.0,99.0 +1987,1,3,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,20.0,84,101800,95,1144,378,213,447,92,12000,19800,10200,2050,290,1.5,2,2,40.2,77777,9,999999999,359,0.0430,0,88,999.000,999.0,99.0 +1987,1,3,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,19.4,71,101900,379,1415,392,404,696,90,27900,58100,12300,1550,100,4.6,3,3,40.2,77777,9,999999999,350,0.0430,0,88,999.000,999.0,99.0 +1987,1,3,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,18.9,59,102000,634,1415,417,400,165,303,41200,16600,33700,7550,80,2.6,6,6,40.2,1370,9,999999999,340,0.0430,0,88,999.000,999.0,99.0 +1987,1,3,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,18.9,57,101900,833,1415,419,690,654,244,65600,66700,26200,5810,70,4.1,6,6,40.2,1370,9,999999999,340,0.0430,0,88,999.000,999.0,99.0 +1987,1,3,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,18.9,55,101800,962,1415,413,724,920,65,72700,91800,10100,1900,60,4.6,3,3,40.2,77777,9,999999999,340,0.0430,0,88,999.000,999.0,99.0 +1987,1,3,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,18.9,53,101700,1012,1415,415,594,650,144,65500,66600,17700,4250,110,3.6,3,3,40.2,77777,9,999999999,340,0.0430,0,88,999.000,999.0,99.0 +1987,1,3,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,18.3,51,101600,980,1415,418,453,500,147,52800,51000,17300,4120,70,4.1,4,4,40.2,77777,9,999999999,320,0.0430,0,88,999.000,999.0,99.0 +1987,1,3,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,18.3,53,101600,867,1415,415,445,667,125,57000,67600,15500,3080,90,3.1,4,4,40.2,77777,9,999999999,329,0.0430,0,88,999.000,999.0,99.0 +1987,1,3,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,17.2,49,101600,682,1415,414,234,424,104,32600,41700,12400,2200,60,3.1,4,4,40.2,77777,9,999999999,300,0.0430,0,88,999.000,999.0,99.0 +1987,1,3,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,18.3,58,101700,437,1415,403,62,301,29,13500,27600,5000,600,140,4.1,3,3,32.2,77777,9,999999999,320,0.0430,0,88,999.000,999.0,99.0 +1987,1,3,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,19.4,69,101700,151,1415,392,0,0,0,0,0,0,0,140,3.6,2,2,24.1,77777,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1987,1,3,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,18.9,74,101800,0,35,382,0,0,0,0,0,0,0,110,3.1,2,2,24.1,77777,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1987,1,3,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,18.9,79,101900,0,0,377,0,0,0,0,0,0,0,30,2.1,2,2,24.1,77777,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1987,1,3,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,18.3,79,101900,0,0,373,0,0,0,0,0,0,0,50,3.1,2,2,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1987,1,3,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,18.3,81,101900,0,0,365,0,0,0,0,0,0,0,30,2.6,1,1,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1987,1,3,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,18.3,84,101900,0,0,377,0,0,0,0,0,0,0,300,2.1,5,5,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1987,1,3,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,19.4,87,101900,0,0,389,0,0,0,0,0,0,0,290,2.1,7,7,24.1,1370,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1987,1,4,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,19.4,87,101900,0,0,389,0,0,0,0,0,0,0,330,1.5,7,7,16.1,1370,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1987,1,4,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,20.0,84,101800,0,0,396,0,0,0,0,0,0,0,70,2.6,7,7,24.1,1370,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1987,1,4,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,19.4,82,101700,0,0,395,0,0,0,0,0,0,0,300,2.6,7,7,24.1,1370,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1987,1,4,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,18.9,90,101700,0,0,369,0,0,0,0,0,0,0,0,0.0,3,3,24.1,77777,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1987,1,4,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,18.3,93,101800,0,0,359,0,0,0,0,0,0,0,320,1.5,2,2,24.1,77777,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1987,1,4,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,18.9,93,101800,0,0,358,0,0,0,0,0,0,0,0,0.0,1,1,24.1,77777,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1987,1,4,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,18.3,97,101800,0,0,352,54,310,18,0,0,0,0,0,0.0,1,1,24.1,77777,9,999999999,329,0.0250,0,88,999.000,999.0,99.0 +1987,1,4,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,19.4,90,101900,94,1144,369,229,693,42,9400,36700,6200,300,360,1.5,2,2,40.2,77777,9,999999999,350,0.0250,0,88,999.000,999.0,99.0 +1987,1,4,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,20.0,72,102000,378,1415,392,428,799,68,28000,67900,9800,1100,50,2.6,2,2,40.2,77777,9,999999999,359,0.0250,0,88,999.000,999.0,99.0 +1987,1,4,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,20.6,69,102000,634,1415,399,468,480,184,41300,47000,20100,3810,150,3.6,2,2,40.2,77777,9,999999999,370,0.0250,0,88,999.000,999.0,99.0 +1987,1,4,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,20.6,65,101900,834,1415,415,749,887,143,70200,88900,17600,3340,170,3.6,5,5,40.2,77777,9,999999999,370,0.0250,0,88,999.000,999.0,99.0 +1987,1,4,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,20.6,69,101900,963,1415,418,590,420,288,62200,45100,31400,8010,200,2.6,7,7,40.2,1370,9,999999999,370,0.0250,0,88,999.000,999.0,99.0 +1987,1,4,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,19.4,61,101800,1014,1415,417,609,525,245,66600,54500,27400,7120,40,3.1,6,6,40.2,1370,9,999999999,350,0.0250,0,88,999.000,999.0,99.0 +1987,1,4,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,18.9,55,101600,982,1415,416,613,793,126,71300,79600,15800,3300,60,5.2,4,4,40.2,77777,9,999999999,340,0.0250,0,88,999.000,999.0,99.0 +1987,1,4,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,19.4,59,101600,870,1415,413,412,582,131,52100,58900,15700,3220,60,1.5,4,4,40.2,77777,9,999999999,350,0.0250,0,88,999.000,999.0,99.0 +1987,1,4,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,18.9,57,101600,685,1415,424,128,88,101,16400,9100,12000,2490,60,4.1,7,7,40.2,1370,9,999999999,340,0.0250,0,88,999.000,999.0,99.0 +1987,1,4,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,19.4,65,101700,440,1415,405,57,189,36,11000,17100,5700,630,60,5.2,4,4,40.2,77777,9,999999999,350,0.0250,0,88,999.000,999.0,99.0 +1987,1,4,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,19.4,71,101800,155,1415,392,0,0,0,0,0,0,0,60,4.6,3,3,40.2,77777,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1987,1,4,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,18.9,71,101800,0,35,380,0,0,0,0,0,0,0,70,4.6,1,1,32.2,77777,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1987,1,4,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,18.3,71,101900,0,0,376,0,0,0,0,0,0,0,70,4.6,1,1,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1987,1,4,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,17.8,71,101900,0,0,373,0,0,0,0,0,0,0,60,4.1,1,1,24.1,77777,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1987,1,4,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,17.8,71,101900,0,0,373,0,0,0,0,0,0,0,70,3.6,1,1,24.1,77777,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1987,1,4,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,17.2,73,101900,0,0,360,0,0,0,0,0,0,0,60,3.1,0,0,24.1,77777,9,999999999,300,0.0400,0,88,999.000,999.0,99.0 +1987,1,4,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,16.7,71,101800,0,0,359,0,0,0,0,0,0,0,70,2.1,0,0,24.1,77777,9,999999999,300,0.0400,0,88,999.000,999.0,99.0 +1987,1,5,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,16.7,76,101800,0,0,354,0,0,0,0,0,0,0,80,2.1,0,0,24.1,77777,9,999999999,300,0.0400,0,88,999.000,999.0,99.0 +1987,1,5,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,16.7,79,101700,0,0,351,0,0,0,0,0,0,0,70,2.6,0,0,24.1,77777,9,999999999,300,0.0400,0,88,999.000,999.0,99.0 +1987,1,5,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,16.7,81,101600,0,0,349,0,0,0,0,0,0,0,60,1.5,0,0,24.1,77777,9,999999999,290,0.0400,0,88,999.000,999.0,99.0 +1987,1,5,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,16.7,87,101600,0,0,343,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,300,0.0400,0,88,999.000,999.0,99.0 +1987,1,5,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,16.1,90,101700,0,0,338,0,0,0,0,0,0,0,290,2.6,0,0,24.1,77777,9,999999999,290,0.0400,0,88,999.000,999.0,99.0 +1987,1,5,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,17.2,97,101700,0,0,339,0,0,0,0,0,0,0,320,2.1,0,0,24.1,77777,9,999999999,309,0.0400,0,88,999.000,999.0,99.0 +1987,1,5,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,16.7,90,101700,0,0,340,58,382,14,0,0,0,0,300,2.1,0,0,24.1,77777,9,999999999,290,0.0170,0,88,999.000,999.0,99.0 +1987,1,5,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,17.8,90,101800,93,1144,347,234,769,27,9700,48500,5600,240,310,2.1,0,0,40.2,77777,9,999999999,309,0.0170,0,88,999.000,999.0,99.0 +1987,1,5,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,18.9,74,101900,377,1415,370,442,896,38,29400,78600,8300,890,320,2.1,0,0,40.2,77777,9,999999999,340,0.0170,0,88,999.000,999.0,99.0 +1987,1,5,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,18.3,62,101900,634,1415,393,553,708,134,46500,67800,16000,2610,40,1.5,2,2,40.2,77777,9,999999999,329,0.0170,0,88,999.000,999.0,99.0 +1987,1,5,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,18.9,57,101900,834,1415,416,647,621,223,62000,63400,24500,5260,200,3.1,5,5,40.2,77777,9,999999999,340,0.0170,0,88,999.000,999.0,99.0 +1987,1,5,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,17.8,56,101800,964,1415,423,552,387,275,58600,41600,30200,7600,180,3.6,8,8,40.2,1370,9,999999999,309,0.0170,0,88,999.000,999.0,99.0 +1987,1,5,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,17.8,55,101700,1016,1415,420,397,234,234,44600,25300,26300,6660,180,3.1,7,7,40.2,1370,9,999999999,320,0.0170,0,88,999.000,999.0,99.0 +1987,1,5,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,17.8,55,101600,984,1415,420,467,369,240,53100,38300,26400,6670,200,3.1,7,7,40.2,2740,9,999999999,320,0.0170,0,88,999.000,999.0,99.0 +1987,1,5,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,18.3,60,101500,872,1415,410,404,511,156,49600,51300,17800,3760,180,3.6,6,6,40.2,2740,9,999999999,320,0.0170,0,88,999.000,999.0,99.0 +1987,1,5,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,17.8,58,101600,688,1415,395,266,644,66,40800,63500,9800,1530,170,3.1,2,2,40.2,77777,9,999999999,309,0.0170,0,88,999.000,999.0,99.0 +1987,1,5,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,18.3,64,101600,444,1415,424,56,31,53,6900,2800,6100,1590,160,4.1,9,9,40.2,1370,9,999999999,320,0.0170,0,88,999.000,999.0,99.0 +1987,1,5,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,18.9,69,101600,158,1415,421,0,0,0,0,0,0,0,160,4.1,9,9,32.2,1370,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1987,1,5,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,17.8,69,101700,0,59,399,0,0,0,0,0,0,0,70,3.6,7,7,24.1,1370,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1987,1,5,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,18.3,74,101700,0,0,392,0,0,0,0,0,0,0,60,3.1,6,6,24.1,1370,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1987,1,5,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,18.3,74,101700,0,0,388,0,0,0,0,0,0,0,70,2.6,5,5,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1987,1,5,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,18.3,79,101700,0,0,390,0,0,0,0,0,0,0,60,2.1,7,7,24.1,1370,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1987,1,5,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,18.3,81,101700,0,0,374,0,0,0,0,0,0,0,40,2.1,3,3,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1987,1,5,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,18.3,87,101700,0,0,371,0,0,0,0,0,0,0,330,1.5,4,4,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1987,1,6,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,18.3,87,101700,0,0,374,0,0,0,0,0,0,0,330,1.5,5,5,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1987,1,6,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,17.8,87,101700,0,0,368,0,0,0,0,0,0,0,310,2.6,4,4,24.1,77777,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1987,1,6,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,18.3,87,101600,0,0,377,0,0,0,0,0,0,0,290,3.1,6,6,24.1,1370,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1987,1,6,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,17.8,87,101600,0,0,368,0,0,0,0,0,0,0,0,0.0,4,4,24.1,77777,9,999999999,309,0.0400,0,88,999.000,999.0,99.0 +1987,1,6,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,17.2,90,101500,0,0,355,0,0,0,0,0,0,0,330,2.1,2,2,24.1,77777,9,999999999,300,0.0400,0,88,999.000,999.0,99.0 +1987,1,6,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,17.2,93,101600,0,0,348,0,0,0,0,0,0,0,330,2.1,1,1,24.1,77777,9,999999999,300,0.0400,0,88,999.000,999.0,99.0 +1987,1,6,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,17.2,97,101600,0,0,350,50,207,27,0,0,0,0,300,2.1,2,2,24.1,77777,9,999999999,309,0.0270,0,88,999.000,999.0,99.0 +1987,1,6,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,17.2,79,101600,92,1120,398,158,121,125,14600,8500,13900,1030,0,0.0,9,9,32.2,2130,9,999999999,309,0.0270,0,88,999.000,999.0,99.0 +1987,1,6,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,17.8,74,101600,377,1415,399,404,465,194,31900,39500,21400,4580,0,0.0,8,8,32.2,2130,9,999999999,320,0.0270,0,88,999.000,999.0,99.0 +1987,1,6,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,16.7,54,101700,634,1415,408,526,600,171,45800,58900,19400,3510,300,3.1,6,6,40.2,2130,9,999999999,290,0.0270,0,88,999.000,999.0,99.0 +1987,1,6,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,15.6,47,101600,835,1415,424,381,127,294,40000,13200,32200,7880,330,3.1,8,8,40.2,2130,9,999999999,279,0.0270,0,88,999.000,999.0,99.0 +1987,1,6,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,16.7,46,101500,966,1415,413,704,809,121,71100,81200,15400,3140,220,3.6,3,3,40.2,77777,9,999999999,290,0.0270,0,88,999.000,999.0,99.0 +1987,1,6,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,16.1,45,101400,1018,1415,412,689,817,119,75300,82500,15800,3370,220,4.6,3,3,40.2,77777,9,999999999,290,0.0270,0,88,999.000,999.0,99.0 +1987,1,6,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,17.8,53,101400,987,1415,408,590,774,112,69600,78100,14900,3070,160,5.2,3,3,40.2,77777,9,999999999,320,0.0270,0,88,999.000,999.0,99.0 +1987,1,6,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,17.2,53,101400,875,1415,414,344,438,131,42800,44400,15300,3240,200,5.2,6,6,40.2,1520,9,999999999,309,0.0270,0,88,999.000,999.0,99.0 +1987,1,6,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,18.9,60,101400,691,1415,413,168,132,126,21500,13600,14800,3110,190,4.1,6,6,40.2,1520,9,999999999,329,0.0270,0,88,999.000,999.0,99.0 +1987,1,6,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,18.9,65,101400,447,1415,404,73,266,42,13700,24400,5900,850,180,3.1,5,5,40.2,77777,9,999999999,340,0.0270,0,88,999.000,999.0,99.0 +1987,1,6,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,18.9,71,101500,161,1415,389,0,0,0,0,0,0,0,180,1.5,3,3,32.2,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1987,1,6,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,18.3,76,101500,0,83,380,0,0,0,0,0,0,0,180,1.5,3,3,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1987,1,6,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,18.9,84,101600,0,0,378,0,0,0,0,0,0,0,0,0.0,4,4,24.1,77777,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1987,1,6,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,18.9,79,101600,0,0,383,0,0,0,0,0,0,0,0,0.0,4,4,24.1,77777,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1987,1,6,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,18.9,84,101600,0,0,375,0,0,0,0,0,0,0,300,2.1,3,3,24.1,77777,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1987,1,6,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,17.8,81,101700,0,0,370,0,0,0,0,0,0,0,310,2.1,3,3,24.1,77777,9,999999999,309,0.0400,0,88,999.000,999.0,99.0 +1987,1,6,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,17.8,84,101700,0,0,368,0,0,0,0,0,0,0,0,0.0,3,3,24.1,77777,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1987,1,7,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,17.2,87,101600,0,0,358,0,0,0,0,0,0,0,310,2.6,2,2,24.1,77777,9,999999999,300,0.0400,0,88,999.000,999.0,99.0 +1987,1,7,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,16.1,84,101600,0,0,354,0,0,0,0,0,0,0,310,2.1,2,2,24.1,77777,9,999999999,290,0.0400,0,88,999.000,999.0,99.0 +1987,1,7,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,16.1,87,101600,0,0,346,0,0,0,0,0,0,0,320,2.6,1,1,24.1,77777,9,999999999,290,0.0400,0,88,999.000,999.0,99.0 +1987,1,7,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,15.6,87,101600,0,0,337,0,0,0,0,0,0,0,320,2.1,0,0,24.1,77777,9,999999999,279,0.0400,0,88,999.000,999.0,99.0 +1987,1,7,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,15.6,87,101600,0,0,337,0,0,0,0,0,0,0,330,2.6,0,0,24.1,77777,9,999999999,279,0.0400,0,88,999.000,999.0,99.0 +1987,1,7,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,15.6,87,101600,0,0,337,0,0,0,0,0,0,0,310,1.5,0,0,24.1,77777,9,999999999,279,0.0400,0,88,999.000,999.0,99.0 +1987,1,7,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,15.0,87,101600,0,0,334,44,179,24,0,0,0,0,320,1.5,0,0,24.1,77777,9,999999999,270,0.0700,0,88,999.000,999.0,99.0 +1987,1,7,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,15.6,84,101700,92,1120,339,219,640,47,9800,30300,7300,670,300,2.1,0,0,32.2,77777,9,999999999,279,0.0700,0,88,999.000,999.0,99.0 +1987,1,7,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,16.1,64,101700,376,1415,364,425,795,66,27700,67600,9700,1090,70,1.5,0,0,32.2,77777,9,999999999,290,0.0700,0,88,999.000,999.0,99.0 +1987,1,7,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,17.2,58,101700,634,1415,379,595,866,81,48900,83600,11300,1660,190,2.6,0,0,32.2,77777,9,999999999,300,0.0700,0,88,999.000,999.0,99.0 +1987,1,7,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,16.1,51,101700,836,1415,391,684,836,111,63200,83000,14000,2480,200,3.1,1,1,40.2,77777,9,999999999,290,0.0700,0,88,999.000,999.0,99.0 +1987,1,7,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,16.1,46,101600,967,1415,409,708,749,168,72000,75900,19900,4550,220,3.6,3,3,40.2,77777,9,999999999,290,0.0700,0,88,999.000,999.0,99.0 +1987,1,7,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,16.7,51,101500,1020,1415,407,640,644,190,69000,65200,21900,5500,160,5.2,4,4,40.2,77777,9,999999999,300,0.0700,0,88,999.000,999.0,99.0 +1987,1,7,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,18.9,57,101400,989,1415,409,593,732,139,70000,74900,17400,3970,200,5.2,3,3,40.2,77777,9,999999999,340,0.0700,0,88,999.000,999.0,99.0 +1987,1,7,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,19.4,61,101400,879,1415,407,426,651,108,55400,66400,14000,2740,180,4.1,3,3,32.2,77777,9,999999999,350,0.0700,0,88,999.000,999.0,99.0 +1987,1,7,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,18.3,58,101400,695,1415,399,257,583,73,38300,57400,10000,1640,250,3.1,2,2,32.2,77777,9,999999999,320,0.0700,0,88,999.000,999.0,99.0 +1987,1,7,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,18.3,60,101400,451,1415,396,62,253,34,12600,23400,5100,700,0,0.0,2,2,32.2,77777,9,999999999,320,0.0700,0,88,999.000,999.0,99.0 +1987,1,7,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,17.2,62,101500,165,1415,390,0,0,0,0,0,0,0,50,4.1,3,3,32.2,77777,9,999999999,300,0.0400,0,88,999.000,999.0,99.0 +1987,1,7,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,18.3,71,101500,1,83,376,0,0,0,0,0,0,0,60,3.1,1,1,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1987,1,7,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,17.8,74,101600,0,0,363,0,0,0,0,0,0,0,50,2.1,0,0,24.1,77777,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1987,1,7,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,17.8,76,101600,0,0,360,0,0,0,0,0,0,0,310,2.1,0,0,24.1,77777,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1987,1,7,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,18.3,84,101600,0,0,356,0,0,0,0,0,0,0,320,2.1,0,0,24.1,77777,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1987,1,7,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,17.8,84,101600,0,0,353,0,0,0,0,0,0,0,320,1.5,0,0,24.1,77777,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1987,1,7,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,17.8,90,101500,0,0,347,0,0,0,0,0,0,0,320,1.5,0,0,24.1,77777,9,999999999,309,0.0400,0,88,999.000,999.0,99.0 +1987,1,8,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,17.8,90,101500,0,0,368,0,0,0,0,0,0,0,280,2.1,5,5,24.1,77777,9,999999999,309,0.0400,0,88,999.000,999.0,99.0 +1987,1,8,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,18.3,90,101500,0,0,379,0,0,0,0,0,0,0,310,1.5,7,7,24.1,1520,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1987,1,8,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,18.3,87,101500,0,0,388,0,0,0,0,0,0,0,310,1.5,8,8,24.1,1370,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1987,1,8,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,18.9,87,101500,0,0,400,0,0,0,0,0,0,0,310,2.1,9,9,24.1,1370,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1987,1,8,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,18.9,87,101500,0,0,391,0,0,0,0,0,0,0,310,1.5,8,8,24.1,1370,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1987,1,8,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,18.9,84,101500,0,0,395,0,0,0,0,0,0,0,300,1.5,8,8,24.1,1370,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1987,1,8,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,18.9,84,101600,0,0,403,27,10,26,0,0,0,0,300,1.5,9,9,24.1,1370,9,999999999,340,0.0520,0,88,999.000,999.0,99.0 +1987,1,8,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,19.4,84,101700,91,1120,406,121,49,107,12000,3400,11700,1190,320,1.5,9,9,24.1,1370,9,999999999,350,0.0520,0,88,999.000,999.0,99.0 +1987,1,8,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,19.4,74,101700,376,1415,403,275,245,164,24200,21100,18600,3620,300,1.5,7,7,24.1,2130,9,999999999,350,0.0520,0,88,999.000,999.0,99.0 +1987,1,8,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,19.4,63,101800,634,1415,435,337,99,278,35300,9900,30800,7170,310,2.1,9,9,24.1,2130,9,999999999,350,0.0520,0,88,999.000,999.0,99.0 +1987,1,8,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,19.4,65,101700,836,1415,432,444,151,341,46200,15700,36900,9160,180,3.6,9,9,24.1,2130,9,999999999,350,0.0520,0,88,999.000,999.0,99.0 +1987,1,8,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,20.0,65,101700,969,1415,435,354,157,241,38800,16700,27300,7160,140,4.1,9,9,24.1,2130,9,999999999,359,0.0520,0,88,999.000,999.0,99.0 +1987,1,8,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,20.0,65,101600,1022,1415,435,352,85,293,39100,8700,32800,10830,180,4.1,9,9,24.1,2130,9,999999999,359,0.0520,0,88,999.000,999.0,99.0 +1987,1,8,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,20.0,67,101500,992,1415,445,212,3,210,25200,200,25000,9860,160,3.6,10,10,24.1,1370,9,999999999,359,0.0520,0,88,999.000,999.0,99.0 +1987,1,8,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,18.3,64,101500,882,1415,436,239,5,236,27600,400,27400,10150,220,6.2,10,10,24.1,1370,9,999999999,320,0.0520,0,88,999.000,999.0,99.0 +1987,1,8,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,17.8,69,101500,698,1415,425,136,2,135,15900,100,15900,5910,200,7.7,10,10,24.1,1370,9,999999999,320,0.0520,0,88,999.000,999.0,99.0 +1987,1,8,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,17.8,71,101500,454,1415,422,35,3,34,4300,100,4300,1540,120,4.1,10,10,24.1,1370,9,999999999,309,0.0520,0,88,999.000,999.0,99.0 +1987,1,8,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,17.2,66,101600,168,1415,425,1,0,1,100,0,100,40,50,1.5,10,10,24.1,1370,9,999999999,300,0.0520,0,88,999.000,999.0,99.0 +1987,1,8,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,17.2,66,101600,1,106,425,0,0,0,0,0,0,0,350,1.5,10,10,24.1,1370,9,999999999,300,0.0400,0,88,999.000,999.0,99.0 +1987,1,8,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,17.2,69,101700,0,0,410,0,0,0,0,0,0,0,360,1.5,9,9,24.1,1830,9,999999999,309,0.0400,0,88,999.000,999.0,99.0 +1987,1,8,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,17.2,76,101700,0,0,401,0,0,0,0,0,0,0,0,0.0,9,9,24.1,1830,9,999999999,309,0.0400,0,88,999.000,999.0,99.0 +1987,1,8,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,17.8,79,101700,0,0,402,0,0,0,0,0,0,0,0,0.0,9,9,24.1,1520,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1987,1,8,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,17.2,73,101700,0,0,389,0,0,0,0,0,0,0,0,0.0,7,7,24.1,1520,9,999999999,300,0.0400,0,88,999.000,999.0,99.0 +1987,1,8,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,17.2,79,101700,0,0,361,0,0,0,0,0,0,0,0,0.0,1,1,16.1,77777,9,999999999,309,0.0400,0,88,999.000,999.0,99.0 +1987,1,9,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,17.2,87,101700,0,0,346,0,0,0,0,0,0,0,360,1.5,0,0,16.1,77777,9,999999999,300,0.0400,0,88,999.000,999.0,99.0 +1987,1,9,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,16.7,90,101600,0,0,340,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,290,0.0400,0,88,999.000,999.0,99.0 +1987,1,9,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,17.2,90,101600,0,0,355,0,0,0,0,0,0,0,310,2.1,2,2,24.1,77777,9,999999999,309,0.0400,0,88,999.000,999.0,99.0 +1987,1,9,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,18.3,90,101600,0,0,385,0,0,0,0,0,0,0,340,1.5,8,8,24.1,1680,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1987,1,9,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,17.8,87,101600,0,0,378,0,0,0,0,0,0,0,0,0.0,7,7,24.1,1830,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1987,1,9,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,17.2,90,101600,0,0,378,0,0,0,0,0,0,0,0,0.0,8,8,24.1,1830,9,999999999,309,0.0400,0,88,999.000,999.0,99.0 +1987,1,9,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,17.2,87,101700,0,0,364,49,185,29,0,0,0,0,290,1.5,4,4,24.1,77777,9,999999999,300,0.0500,0,88,999.000,999.0,99.0 +1987,1,9,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,17.8,87,101800,90,1120,365,185,406,77,10400,18000,8900,1640,290,2.6,3,3,32.2,77777,9,999999999,320,0.0500,0,88,999.000,999.0,99.0 +1987,1,9,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,16.1,60,101800,376,1415,369,433,835,57,28300,71600,9200,1040,20,1.5,0,0,32.2,77777,9,999999999,290,0.0500,0,88,999.000,999.0,99.0 +1987,1,9,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,18.9,60,101900,634,1415,407,501,570,163,43800,56000,18700,3330,200,2.1,4,4,32.2,77777,9,999999999,329,0.0500,0,88,999.000,999.0,99.0 +1987,1,9,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,18.9,59,101800,837,1415,422,547,404,269,54400,42800,29000,6760,180,3.1,7,7,32.2,1520,9,999999999,340,0.0500,0,88,999.000,999.0,99.0 +1987,1,9,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,20.0,67,101800,970,1415,433,351,115,268,38400,12200,30000,7970,200,3.1,9,9,24.1,1520,9,999999999,359,0.0500,0,88,999.000,999.0,99.0 +1987,1,9,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,21.1,85,101700,1024,1415,418,341,190,208,38700,20600,23700,5900,360,4.1,9,9,16.1,1370,9,999999999,390,0.0500,0,88,999.000,999.0,99.0 +1987,1,9,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,18.9,65,101600,995,1415,428,303,170,197,35400,18400,22500,5360,20,3.1,9,9,24.1,1830,9,999999999,340,0.0500,0,88,999.000,999.0,99.0 +1987,1,9,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,18.3,60,101600,885,1415,421,254,66,222,29000,6700,24900,7630,330,5.2,8,8,24.1,1830,9,999999999,329,0.0500,0,88,999.000,999.0,99.0 +1987,1,9,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,19.4,71,101600,702,1415,413,185,80,160,22000,7900,18100,5030,300,7.7,8,8,32.2,1220,9,999999999,350,0.0500,0,88,999.000,999.0,99.0 +1987,1,9,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,18.9,71,101700,458,1415,430,40,4,40,5100,200,5000,1790,310,6.7,10,10,16.1,1220,9,999999999,340,0.0500,0,88,999.000,999.0,99.0 +1987,1,9,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,18.9,79,101800,172,1415,409,0,0,0,0,0,0,0,320,3.6,9,9,24.1,1220,9,999999999,340,0.0500,0,88,999.000,999.0,99.0 +1987,1,9,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,17.2,73,101800,1,130,389,0,0,0,0,0,0,0,30,4.1,7,7,16.1,1220,9,999999999,300,0.0400,0,88,999.000,999.0,99.0 +1987,1,9,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,17.2,73,101900,0,0,384,0,0,0,0,0,0,0,350,3.6,6,6,16.1,1220,9,999999999,300,0.0400,0,88,999.000,999.0,99.0 +1987,1,9,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,16.7,73,102000,0,0,372,0,0,0,0,0,0,0,20,3.6,3,3,16.1,77777,9,999999999,300,0.0400,0,88,999.000,999.0,99.0 +1987,1,9,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,16.1,73,102000,0,0,365,0,0,0,0,0,0,0,10,5.7,2,2,16.1,77777,9,999999999,290,0.0400,0,88,999.000,999.0,99.0 +1987,1,9,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,16.1,73,102000,0,0,368,0,0,0,0,0,0,0,350,5.2,3,3,16.1,77777,9,999999999,290,0.0400,0,88,999.000,999.0,99.0 +1987,1,9,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,15.6,73,102000,0,0,365,0,0,0,0,0,0,0,350,3.1,3,3,24.1,77777,9,999999999,279,0.0400,0,88,999.000,999.0,99.0 +1987,1,10,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,15.0,66,102000,0,0,370,0,0,0,0,0,0,0,20,7.2,3,3,24.1,77777,9,999999999,270,0.0400,0,88,999.000,999.0,99.0 +1987,1,10,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,13.9,61,102000,0,0,369,0,0,0,0,0,0,0,10,4.6,3,3,24.1,77777,9,999999999,250,0.0400,0,88,999.000,999.0,99.0 +1987,1,10,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,12.8,59,102000,0,0,364,0,0,0,0,0,0,0,10,4.6,3,3,24.1,77777,9,999999999,229,0.0400,0,88,999.000,999.0,99.0 +1987,1,10,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,12.2,57,102000,0,0,369,0,0,0,0,0,0,0,360,4.1,5,5,24.1,77777,9,999999999,229,0.0400,0,88,999.000,999.0,99.0 +1987,1,10,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,11.7,55,102000,0,0,366,0,0,0,0,0,0,0,20,6.7,4,4,24.1,77777,9,999999999,220,0.0400,0,88,999.000,999.0,99.0 +1987,1,10,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,10.6,53,102000,0,0,362,0,0,0,0,0,0,0,30,3.6,4,4,24.1,77777,9,999999999,209,0.0400,0,88,999.000,999.0,99.0 +1987,1,10,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,11.7,55,102100,0,0,366,38,126,24,0,0,0,0,360,5.2,4,4,24.1,77777,9,999999999,220,0.0450,0,88,999.000,999.0,99.0 +1987,1,10,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,10.6,49,102100,90,1120,368,169,308,87,11000,12500,9900,2180,30,6.2,4,4,32.2,77777,9,999999999,209,0.0450,0,88,999.000,999.0,99.0 +1987,1,10,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,12.8,55,102200,376,1415,390,260,114,208,25900,10500,23100,4100,360,6.2,8,8,32.2,1520,9,999999999,229,0.0450,0,88,999.000,999.0,99.0 +1987,1,10,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,12.8,53,102200,635,1415,393,425,176,320,43600,17800,35600,7790,60,7.2,8,8,32.2,1520,9,999999999,229,0.0450,0,88,999.000,999.0,99.0 +1987,1,10,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,12.2,45,102200,838,1415,393,470,325,247,47400,34500,26900,6110,20,7.7,6,6,32.2,1520,9,999999999,229,0.0450,0,88,999.000,999.0,99.0 +1987,1,10,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,12.2,44,102100,972,1415,390,576,553,175,58600,55900,20000,4750,50,8.2,4,4,24.1,77777,9,999999999,229,0.0450,0,88,999.000,999.0,99.0 +1987,1,10,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,12.8,44,102000,1026,1415,390,607,549,220,67200,57200,25600,6460,20,9.3,3,3,24.1,77777,9,999999999,240,0.0450,0,88,999.000,999.0,99.0 +1987,1,10,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,13.9,47,101900,998,1415,394,605,639,204,68600,64300,23000,5640,30,8.2,4,4,24.1,77777,9,999999999,250,0.0450,0,88,999.000,999.0,99.0 +1987,1,10,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,12.8,45,101900,888,1415,390,339,400,141,43600,41400,17600,3370,40,7.2,4,4,24.1,77777,9,999999999,229,0.0450,0,88,999.000,999.0,99.0 +1987,1,10,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,12.8,47,101900,705,1415,387,212,282,121,28600,28400,14400,2480,30,7.7,4,4,24.1,77777,9,999999999,240,0.0450,0,88,999.000,999.0,99.0 +1987,1,10,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,12.8,52,102000,462,1415,381,58,94,47,8900,8800,6000,820,50,7.7,5,5,24.1,77777,9,999999999,240,0.0450,0,88,999.000,999.0,99.0 +1987,1,10,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,13.3,57,102000,175,1415,376,1,2,1,200,100,200,20,40,5.7,5,5,24.1,77777,9,999999999,240,0.0450,0,88,999.000,999.0,99.0 +1987,1,10,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,13.3,57,102000,1,130,380,0,0,0,0,0,0,0,40,8.2,6,6,16.1,1370,9,999999999,240,0.0400,0,88,999.000,999.0,99.0 +1987,1,10,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,13.9,59,102000,0,0,391,0,0,0,0,0,0,0,60,10.3,8,8,16.1,1370,9,999999999,250,0.0400,0,88,999.000,999.0,99.0 +1987,1,10,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,12.2,52,102100,0,0,392,0,0,0,0,0,0,0,60,10.3,8,8,16.1,1370,9,999999999,229,0.0400,0,88,999.000,999.0,99.0 +1987,1,10,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,11.1,50,102100,0,0,387,0,0,0,0,0,0,0,60,7.2,8,8,16.1,1370,9,999999999,220,0.0400,0,88,999.000,999.0,99.0 +1987,1,10,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,11.7,51,102100,0,0,388,0,0,0,0,0,0,0,60,8.2,8,8,16.1,1370,9,999999999,220,0.0400,0,88,999.000,999.0,99.0 +1987,1,10,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,11.7,53,102100,0,0,369,0,0,0,0,0,0,0,30,4.6,4,4,24.1,77777,9,999999999,220,0.0400,0,88,999.000,999.0,99.0 +1987,1,11,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,14.4,62,102100,0,0,378,0,0,0,0,0,0,0,50,5.7,5,5,24.1,77777,9,999999999,259,0.0400,0,88,999.000,999.0,99.0 +1987,1,11,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,12.8,57,102000,0,0,367,0,0,0,0,0,0,0,40,6.7,3,3,24.1,77777,9,999999999,240,0.0400,0,88,999.000,999.0,99.0 +1987,1,11,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,10.6,49,102000,0,0,361,0,0,0,0,0,0,0,50,5.7,2,2,24.1,77777,9,999999999,209,0.0400,0,88,999.000,999.0,99.0 +1987,1,11,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,12.2,55,102000,0,0,363,0,0,0,0,0,0,0,50,5.2,2,2,24.1,77777,9,999999999,229,0.0400,0,88,999.000,999.0,99.0 +1987,1,11,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,13.3,59,102000,0,0,364,0,0,0,0,0,0,0,40,7.7,2,2,24.1,77777,9,999999999,240,0.0400,0,88,999.000,999.0,99.0 +1987,1,11,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,12.2,55,102100,0,0,358,0,0,0,0,0,0,0,60,7.7,1,1,24.1,77777,9,999999999,229,0.0400,0,88,999.000,999.0,99.0 +1987,1,11,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,12.8,55,102100,0,0,366,47,190,26,0,0,0,0,60,9.3,2,2,24.1,77777,9,999999999,229,0.0520,0,88,999.000,999.0,99.0 +1987,1,11,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,13.3,59,102100,90,1120,368,180,429,65,9600,19300,8000,1330,40,7.2,3,3,40.2,77777,9,999999999,240,0.0520,0,88,999.000,999.0,99.0 +1987,1,11,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,13.3,54,102100,376,1414,372,398,665,97,27500,55000,12800,1630,50,9.8,2,2,40.2,77777,9,999999999,250,0.0520,0,88,999.000,999.0,99.0 +1987,1,11,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,13.3,48,102200,635,1414,381,582,781,117,48700,75400,14700,2340,40,8.2,2,2,40.2,77777,9,999999999,240,0.0520,0,88,999.000,999.0,99.0 +1987,1,11,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,14.4,52,102200,840,1414,382,700,836,123,64000,82600,14800,2630,30,7.2,2,2,40.2,77777,9,999999999,259,0.0520,0,88,999.000,999.0,99.0 +1987,1,11,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,13.9,47,102000,974,1414,382,705,868,73,70400,86600,10500,2060,30,10.8,1,1,40.2,77777,9,999999999,250,0.0520,0,88,999.000,999.0,99.0 +1987,1,11,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,12.2,42,101900,1029,1414,380,748,941,83,80200,94000,11600,2380,40,12.4,1,1,40.2,77777,9,999999999,229,0.0520,0,88,999.000,999.0,99.0 +1987,1,11,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,12.8,44,101800,1001,1414,381,615,867,70,71800,86600,10300,2080,60,10.8,1,1,40.2,77777,9,999999999,240,0.0520,0,88,999.000,999.0,99.0 +1987,1,11,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,13.9,47,101800,892,1414,382,458,790,65,59300,78500,9600,1780,40,12.9,1,1,40.2,77777,9,999999999,250,0.0520,0,88,999.000,999.0,99.0 +1987,1,11,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,15.0,58,101800,709,1414,378,270,619,68,40800,61300,9900,1590,40,10.8,2,2,32.2,77777,9,999999999,270,0.0520,0,88,999.000,999.0,99.0 +1987,1,11,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,14.4,58,101800,465,1414,374,76,331,35,15900,30800,5700,730,40,11.3,2,2,32.2,77777,9,999999999,259,0.0520,0,88,999.000,999.0,99.0 +1987,1,11,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,13.3,55,101800,179,1414,365,3,8,1,300,500,200,20,60,9.3,1,1,24.1,77777,9,999999999,240,0.0520,0,88,999.000,999.0,99.0 +1987,1,11,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,12.8,55,101900,2,153,366,0,0,0,0,0,0,0,60,7.7,2,2,24.1,77777,9,999999999,229,0.0400,0,88,999.000,999.0,99.0 +1987,1,11,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,12.8,55,102000,0,0,366,0,0,0,0,0,0,0,60,5.7,2,2,24.1,77777,9,999999999,229,0.0400,0,88,999.000,999.0,99.0 +1987,1,11,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,13.3,59,102000,0,0,368,0,0,0,0,0,0,0,60,4.6,3,3,24.1,77777,9,999999999,240,0.0400,0,88,999.000,999.0,99.0 +1987,1,11,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,14.4,60,102000,0,0,384,0,0,0,0,0,0,0,80,6.2,6,6,24.1,1370,9,999999999,259,0.0400,0,88,999.000,999.0,99.0 +1987,1,11,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,15.0,64,102000,0,0,382,0,0,0,0,0,0,0,130,3.6,6,6,24.1,1370,9,999999999,270,0.0400,0,88,999.000,999.0,99.0 +1987,1,11,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,13.9,61,102000,0,0,369,0,0,0,0,0,0,0,40,6.2,3,3,24.1,77777,9,999999999,250,0.0400,0,88,999.000,999.0,99.0 +1987,1,12,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,13.9,59,102000,0,0,368,0,0,0,0,0,0,0,50,7.2,2,2,24.1,77777,9,999999999,250,0.0400,0,88,999.000,999.0,99.0 +1987,1,12,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,13.9,59,101900,0,0,371,0,0,0,0,0,0,0,40,6.2,3,3,24.1,77777,9,999999999,250,0.0400,0,88,999.000,999.0,99.0 +1987,1,12,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,13.3,59,101800,0,0,368,0,0,0,0,0,0,0,50,7.2,3,3,24.1,77777,9,999999999,240,0.0400,0,88,999.000,999.0,99.0 +1987,1,12,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,13.3,57,101800,0,0,371,0,0,0,0,0,0,0,50,7.2,3,3,24.1,77777,9,999999999,240,0.0400,0,88,999.000,999.0,99.0 +1987,1,12,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,13.9,59,101800,0,0,374,0,0,0,0,0,0,0,70,6.2,4,4,24.1,77777,9,999999999,250,0.0400,0,88,999.000,999.0,99.0 +1987,1,12,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,15.0,64,101800,0,0,376,0,0,0,0,0,0,0,80,4.6,4,4,24.1,77777,9,999999999,270,0.0400,0,88,999.000,999.0,99.0 +1987,1,12,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,15.0,64,101900,0,0,369,53,282,21,0,0,0,0,70,7.2,2,2,24.1,77777,9,999999999,270,0.0170,0,88,999.000,999.0,99.0 +1987,1,12,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,15.6,64,101900,89,1096,382,229,451,109,14000,18000,12400,3020,50,8.2,5,5,40.2,77777,9,999999999,279,0.0170,0,88,999.000,999.0,99.0 +1987,1,12,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,15.6,62,102000,376,1414,393,222,73,189,22700,6700,20900,3940,70,7.2,7,7,40.2,1220,9,999999999,279,0.0170,0,88,999.000,999.0,99.0 +1987,1,12,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,16.7,66,102000,636,1414,400,266,198,148,25700,20200,16600,3100,60,8.2,8,8,24.1,1220,9,999999999,290,0.0170,0,88,999.000,999.0,99.0 +1987,1,12,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,15.6,58,101900,841,1414,394,547,506,197,53100,51800,22200,4610,70,6.7,6,6,40.2,1220,9,999999999,279,0.0170,0,88,999.000,999.0,99.0 +1987,1,12,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,15.6,56,101800,976,1414,402,454,258,265,48400,27800,29200,7360,50,8.2,7,7,40.2,1220,9,999999999,279,0.0170,0,88,999.000,999.0,99.0 +1987,1,12,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,16.1,60,101700,1031,1414,414,449,209,301,50100,22200,33800,9520,40,7.7,9,9,32.2,1220,9,999999999,290,0.0170,0,88,999.000,999.0,99.0 +1987,1,12,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,15.6,56,101600,1004,1414,417,235,11,227,27700,900,27100,10540,70,9.3,9,9,24.1,1220,9,999999999,279,0.0170,0,88,999.000,999.0,99.0 +1987,1,12,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,15.0,51,101600,895,1414,422,285,125,222,33500,13200,25100,6200,60,7.2,9,9,32.2,1220,9,999999999,270,0.0170,0,88,999.000,999.0,99.0 +1987,1,12,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,15.0,52,101700,713,1414,404,201,250,119,26900,25200,14200,2440,60,7.7,7,7,32.2,1220,9,999999999,270,0.0170,0,88,999.000,999.0,99.0 +1987,1,12,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,15.0,54,101700,469,1414,401,60,93,48,9000,8800,6100,840,60,6.2,7,7,32.2,1370,9,999999999,270,0.0170,0,88,999.000,999.0,99.0 +1987,1,12,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,16.1,62,101700,183,1414,403,5,5,3,500,300,400,60,60,5.2,8,8,24.1,910,9,999999999,290,0.0170,0,88,999.000,999.0,99.0 +1987,1,12,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,17.2,76,101800,2,177,401,0,0,0,0,0,0,0,70,5.2,9,9,24.1,910,9,999999999,309,0.0400,0,88,999.000,999.0,99.0 +1987,1,12,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,16.7,73,101800,0,0,368,0,0,0,0,0,0,0,60,4.6,2,2,24.1,77777,9,999999999,300,0.0400,0,88,999.000,999.0,99.0 +1987,1,12,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,16.1,69,101900,0,0,370,0,0,0,0,0,0,0,60,6.2,2,2,24.1,77777,9,999999999,290,0.0400,0,88,999.000,999.0,99.0 +1987,1,12,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,16.1,69,101900,0,0,370,0,0,0,0,0,0,0,60,5.2,2,2,24.1,77777,9,999999999,290,0.0400,0,88,999.000,999.0,99.0 +1987,1,12,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,16.7,73,101800,0,0,368,0,0,0,0,0,0,0,60,5.2,2,2,24.1,77777,9,999999999,300,0.0400,0,88,999.000,999.0,99.0 +1987,1,12,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,16.7,73,101800,0,0,372,0,0,0,0,0,0,0,60,5.2,3,3,24.1,77777,9,999999999,300,0.0400,0,88,999.000,999.0,99.0 +1987,1,13,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,16.1,71,101800,0,0,374,0,0,0,0,0,0,0,250,2.1,4,4,24.1,77777,9,999999999,290,0.0400,0,88,999.000,999.0,99.0 +1987,1,13,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,16.1,73,101800,0,0,368,0,0,0,0,0,0,0,60,3.1,3,3,24.1,77777,9,999999999,290,0.0400,0,88,999.000,999.0,99.0 +1987,1,13,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,16.7,73,101800,0,0,392,0,0,0,0,0,0,0,60,2.6,8,8,24.1,1370,9,999999999,300,0.0400,0,88,999.000,999.0,99.0 +1987,1,13,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,15.6,73,101700,0,0,365,0,0,0,0,0,0,0,50,4.6,3,3,24.1,77777,9,999999999,279,0.0400,0,88,999.000,999.0,99.0 +1987,1,13,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,16.1,73,101700,0,0,365,0,0,0,0,0,0,0,40,4.1,2,2,24.1,77777,9,999999999,290,0.0400,0,88,999.000,999.0,99.0 +1987,1,13,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,16.1,76,101700,0,0,369,0,0,0,0,0,0,0,70,2.6,4,4,24.1,77777,9,999999999,290,0.0400,0,88,999.000,999.0,99.0 +1987,1,13,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,16.1,71,101700,0,0,385,45,61,39,0,0,0,0,60,6.2,7,7,24.1,1370,9,999999999,290,0.0190,0,88,999.000,999.0,99.0 +1987,1,13,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,16.7,76,101800,89,1096,372,189,368,91,11800,14900,10500,2330,240,1.5,4,4,40.2,77777,9,999999999,300,0.0190,0,88,999.000,999.0,99.0 +1987,1,13,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,16.7,64,101800,376,1414,383,387,578,125,28100,48600,15100,2430,50,3.6,3,3,40.2,77777,9,999999999,300,0.0190,0,88,999.000,999.0,99.0 +1987,1,13,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,16.1,58,101900,637,1414,384,574,824,81,47200,79600,11200,1660,360,2.6,5,2,40.2,77777,9,999999999,290,0.0190,0,88,999.000,999.0,99.0 +1987,1,13,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,15.0,49,101900,842,1414,392,638,758,113,58900,75200,14000,2530,320,1.5,4,2,40.2,77777,9,999999999,270,0.0190,0,88,999.000,999.0,99.0 +1987,1,13,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,15.0,46,101700,978,1414,402,709,753,158,72200,76600,19100,4380,290,3.1,7,3,40.2,77777,9,999999999,270,0.0190,0,88,999.000,999.0,99.0 +1987,1,13,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,17.8,53,101600,1034,1414,411,694,744,164,75600,75900,19900,4950,210,4.1,7,4,40.2,6100,9,999999999,320,0.0190,0,88,999.000,999.0,99.0 +1987,1,13,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,17.2,56,101500,1007,1414,405,513,277,337,57500,29800,36200,10050,220,4.1,8,5,40.2,6100,9,999999999,300,0.0190,0,88,999.000,999.0,99.0 +1987,1,13,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,17.2,56,101400,898,1414,413,357,356,177,43900,36800,20500,4340,240,4.6,7,7,40.2,6100,9,999999999,300,0.0190,0,88,999.000,999.0,99.0 +1987,1,13,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,16.7,60,101400,716,1414,403,225,247,143,29600,25800,16500,3040,120,3.6,7,7,40.2,6100,9,999999999,300,0.0190,0,88,999.000,999.0,99.0 +1987,1,13,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,16.7,62,101400,473,1414,400,46,15,44,5400,1400,5000,1360,60,4.6,7,7,40.2,6100,9,999999999,290,0.0190,0,88,999.000,999.0,99.0 +1987,1,13,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,16.7,71,101400,186,1414,388,5,6,4,600,400,600,80,30,4.1,7,7,32.2,1370,9,999999999,300,0.0190,0,88,999.000,999.0,99.0 +1987,1,13,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,16.7,71,101400,2,177,388,0,0,0,0,0,0,0,30,4.1,7,7,24.1,1370,9,999999999,300,0.0400,0,88,999.000,999.0,99.0 +1987,1,13,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,16.1,71,101500,0,0,368,0,0,0,0,0,0,0,320,4.6,2,2,24.1,77777,9,999999999,290,0.0400,0,88,999.000,999.0,99.0 +1987,1,13,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,16.1,71,101500,0,0,374,0,0,0,0,0,0,0,340,4.6,4,4,24.1,77777,9,999999999,290,0.0400,0,88,999.000,999.0,99.0 +1987,1,13,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,17.2,84,101600,0,0,377,0,0,0,0,0,0,0,340,4.1,7,7,24.1,1370,9,999999999,300,0.0400,0,88,999.000,999.0,99.0 +1987,1,13,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,16.7,84,101500,0,0,374,0,0,0,0,0,0,0,310,2.1,7,7,24.1,760,9,999999999,290,0.0400,0,88,999.000,999.0,99.0 +1987,1,13,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,15.6,81,101500,0,0,366,0,0,0,0,0,0,0,320,3.1,6,6,24.1,1370,9,999999999,279,0.0400,0,88,999.000,999.0,99.0 +1987,1,14,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,15.6,78,101500,0,0,378,0,0,0,0,0,0,0,310,4.6,8,8,24.1,1370,9,999999999,270,0.0400,0,88,999.000,999.0,99.0 +1987,1,14,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,14.4,78,101400,0,0,358,0,0,0,0,0,0,0,20,2.6,5,5,24.1,77777,9,999999999,259,0.0400,0,88,999.000,999.0,99.0 +1987,1,14,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,16.1,87,101400,0,0,373,0,0,0,0,0,0,0,330,2.1,8,8,11.3,1370,9,999999999,279,0.0400,0,88,999.000,999.0,99.0 +1987,1,14,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,16.1,87,101300,0,0,381,0,0,0,0,0,0,0,300,3.6,9,9,16.1,700,9,999999999,279,0.0400,0,88,999.000,999.0,99.0 +1987,1,14,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,15.0,78,101300,0,0,383,0,0,0,0,0,0,0,320,5.2,9,9,16.1,700,9,999999999,270,0.0400,0,88,999.000,999.0,99.0 +1987,1,14,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,16.1,87,101300,0,0,367,0,0,0,0,0,0,0,310,6.2,7,7,16.1,1370,9,999999999,279,0.0400,0,88,999.000,999.0,99.0 +1987,1,14,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,16.1,87,101400,0,0,357,34,47,29,0,0,0,0,320,4.1,4,4,24.1,77777,9,999999999,279,0.0660,0,88,999.000,999.0,99.0 +1987,1,14,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,14.4,71,101400,89,1096,367,191,367,93,11900,14800,10700,2400,350,4.6,5,5,40.2,77777,9,999999999,259,0.0660,0,88,999.000,999.0,99.0 +1987,1,14,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,15.6,73,101500,376,1414,371,383,535,140,28100,44800,16100,2770,350,5.2,5,5,40.2,77777,9,999999999,279,0.0660,0,88,999.000,999.0,99.0 +1987,1,14,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,14.4,60,101500,638,1414,378,508,568,168,44300,55800,19100,3450,360,5.2,4,4,40.2,77777,9,999999999,259,0.0660,0,88,999.000,999.0,99.0 +1987,1,14,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,16.1,69,101500,844,1414,388,503,359,254,50400,38100,27600,6340,330,7.2,7,7,40.2,1370,9,999999999,290,0.0660,0,88,999.000,999.0,99.0 +1987,1,14,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,15.6,66,101400,980,1414,387,724,590,292,73400,61000,31100,8220,10,7.7,7,7,24.1,1370,9,999999999,279,0.0660,0,88,999.000,999.0,99.0 +1987,1,14,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,17.2,79,101300,1036,1414,409,142,3,140,17500,200,17400,7140,360,5.7,10,10,24.1,1220,9,999999999,309,0.0660,0,88,999.000,999.0,99.0 +1987,1,14,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,16.1,66,101200,1010,1414,397,349,254,187,41500,27500,21800,5150,360,4.1,8,8,24.1,1220,9,999999999,279,0.0660,0,88,999.000,999.0,99.0 +1987,1,14,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,15.6,66,101100,902,1414,402,178,64,145,21200,6800,16800,4070,20,3.1,9,9,24.1,1220,9,999999999,279,0.0660,0,88,999.000,999.0,99.0 +1987,1,14,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,15.0,62,101100,720,1414,396,225,188,162,28200,19600,18200,3520,10,4.1,8,8,24.1,1220,9,999999999,270,0.0660,0,88,999.000,999.0,99.0 +1987,1,14,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,15.6,68,101100,477,1414,399,42,22,40,5300,2000,4600,1250,10,5.2,9,9,24.1,1220,9,999999999,270,0.0660,0,88,999.000,999.0,99.0 +1987,1,14,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,15.6,71,101200,190,1414,396,1,1,1,200,100,100,20,330,5.2,9,9,24.1,1220,9,999999999,279,0.0660,0,88,999.000,999.0,99.0 +1987,1,14,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,15.6,73,101200,3,200,385,0,0,0,0,0,0,0,320,3.6,8,8,24.1,1370,9,999999999,279,0.0400,0,88,999.000,999.0,99.0 +1987,1,14,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,15.0,68,101300,0,0,387,0,0,0,0,0,0,0,340,4.6,8,8,24.1,1370,9,999999999,270,0.0400,0,88,999.000,999.0,99.0 +1987,1,14,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,15.6,73,101300,0,0,371,0,0,0,0,0,0,0,360,4.1,5,5,24.1,77777,9,999999999,279,0.0400,0,88,999.000,999.0,99.0 +1987,1,14,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,15.6,78,101300,0,0,356,0,0,0,0,0,0,0,330,3.6,2,2,24.1,77777,9,999999999,270,0.0400,0,88,999.000,999.0,99.0 +1987,1,14,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,15.6,81,101300,0,0,353,0,0,0,0,0,0,0,340,2.6,2,2,24.1,77777,9,999999999,279,0.0400,0,88,999.000,999.0,99.0 +1987,1,14,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,15.0,76,101300,0,0,372,0,0,0,0,0,0,0,320,1.5,7,7,24.1,1370,9,999999999,270,0.0400,0,88,999.000,999.0,99.0 +1987,1,15,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,15.6,81,101300,0,0,357,0,0,0,0,0,0,0,320,3.1,3,3,24.1,77777,9,999999999,279,0.0400,0,88,999.000,999.0,99.0 +1987,1,15,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,15.0,78,101300,0,0,356,0,0,0,0,0,0,0,330,3.6,3,3,24.1,77777,9,999999999,270,0.0400,0,88,999.000,999.0,99.0 +1987,1,15,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,15.6,84,101300,0,0,351,0,0,0,0,0,0,0,340,3.1,2,2,24.1,77777,9,999999999,279,0.0400,0,88,999.000,999.0,99.0 +1987,1,15,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,15.0,78,101200,0,0,353,0,0,0,0,0,0,0,320,3.6,2,2,24.1,77777,9,999999999,270,0.0400,0,88,999.000,999.0,99.0 +1987,1,15,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,15.6,84,101200,0,0,354,0,0,0,0,0,0,0,310,4.1,3,3,24.1,77777,9,999999999,279,0.0400,0,88,999.000,999.0,99.0 +1987,1,15,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,15.0,81,101200,0,0,350,0,0,0,0,0,0,0,320,4.1,2,2,24.1,77777,9,999999999,270,0.0400,0,88,999.000,999.0,99.0 +1987,1,15,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,15.0,78,101300,0,0,356,46,168,27,0,0,0,0,320,4.1,3,3,24.1,77777,9,999999999,270,0.0270,0,88,999.000,999.0,99.0 +1987,1,15,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,15.0,76,101300,89,1096,350,222,677,40,9000,35800,6000,320,320,3.1,1,1,40.2,77777,9,999999999,270,0.0270,0,88,999.000,999.0,99.0 +1987,1,15,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,15.0,64,101300,377,1414,364,401,758,57,26300,65100,8900,1040,350,3.1,1,1,40.2,77777,9,999999999,270,0.0270,0,88,999.000,999.0,99.0 +1987,1,15,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,15.0,58,101300,639,1414,378,593,840,89,48400,80800,11800,1750,10,5.7,2,2,40.2,77777,9,999999999,270,0.0270,0,88,999.000,999.0,99.0 +1987,1,15,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,14.4,52,101300,845,1414,382,689,840,104,63900,83700,13700,2410,10,5.2,2,2,40.2,77777,9,999999999,259,0.0270,0,88,999.000,999.0,99.0 +1987,1,15,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,15.0,51,101300,982,1414,393,729,757,172,73900,76700,20400,4750,30,6.7,3,3,40.2,77777,9,999999999,270,0.0270,0,88,999.000,999.0,99.0 +1987,1,15,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,15.0,52,101200,1039,1414,390,695,747,160,75900,76400,19600,4890,10,5.7,3,3,40.2,77777,9,999999999,270,0.0270,0,88,999.000,999.0,99.0 +1987,1,15,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,14.4,54,101100,1013,1414,389,533,539,189,60700,54600,21500,5430,360,5.7,5,5,40.2,77777,9,999999999,259,0.0270,0,88,999.000,999.0,99.0 +1987,1,15,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,13.9,54,101100,906,1414,389,340,330,172,41900,34100,20000,4240,360,6.7,6,6,40.2,910,9,999999999,250,0.0270,0,88,999.000,999.0,99.0 +1987,1,15,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,13.9,52,101100,724,1414,374,265,599,64,40300,59600,9700,1540,20,6.7,1,1,24.1,77777,9,999999999,250,0.0270,0,88,999.000,999.0,99.0 +1987,1,15,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,14.4,60,101100,481,1414,366,89,485,25,20500,44900,5100,770,360,7.2,1,1,24.1,77777,9,999999999,259,0.0270,0,88,999.000,999.0,99.0 +1987,1,15,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,13.3,61,101100,194,1414,357,9,29,2,800,2100,500,60,360,5.2,1,1,24.1,77777,9,999999999,240,0.0270,0,88,999.000,999.0,99.0 +1987,1,15,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,13.9,68,101200,3,224,352,0,0,0,0,0,0,0,340,3.6,1,1,24.1,77777,9,999999999,250,0.0400,0,88,999.000,999.0,99.0 +1987,1,15,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,13.9,70,101200,0,0,349,0,0,0,0,0,0,0,320,4.1,1,1,24.1,77777,9,999999999,250,0.0400,0,88,999.000,999.0,99.0 +1987,1,15,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,13.9,73,101300,0,0,340,0,0,0,0,0,0,0,320,3.6,0,0,24.1,77777,9,999999999,250,0.0400,0,88,999.000,999.0,99.0 +1987,1,15,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,13.9,78,101300,0,0,335,0,0,0,0,0,0,0,310,2.1,0,0,24.1,77777,9,999999999,250,0.0400,0,88,999.000,999.0,99.0 +1987,1,15,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,14.4,78,101300,0,0,338,0,0,0,0,0,0,0,310,3.1,0,0,24.1,77777,9,999999999,259,0.0400,0,88,999.000,999.0,99.0 +1987,1,15,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,14.4,81,101300,0,0,336,0,0,0,0,0,0,0,320,3.6,0,0,24.1,77777,9,999999999,259,0.0400,0,88,999.000,999.0,99.0 +1987,1,16,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,13.9,78,101300,0,0,335,0,0,0,0,0,0,0,310,4.6,0,0,24.1,77777,9,999999999,250,0.0400,0,88,999.000,999.0,99.0 +1987,1,16,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,14.4,81,101200,0,0,336,0,0,0,0,0,0,0,320,3.6,0,0,24.1,77777,9,999999999,259,0.0400,0,88,999.000,999.0,99.0 +1987,1,16,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,14.4,81,101200,0,0,336,0,0,0,0,0,0,0,320,3.6,0,0,24.1,77777,9,999999999,259,0.0400,0,88,999.000,999.0,99.0 +1987,1,16,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,15.0,84,101100,0,0,336,0,0,0,0,0,0,0,300,4.1,0,0,24.1,77777,9,999999999,270,0.0400,0,88,999.000,999.0,99.0 +1987,1,16,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,15.0,87,101100,0,0,348,0,0,0,0,0,0,0,320,2.1,3,3,24.1,77777,9,999999999,270,0.0400,0,88,999.000,999.0,99.0 +1987,1,16,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,15.6,84,101200,0,0,373,0,0,0,0,0,0,0,240,1.5,8,8,24.1,1370,9,999999999,279,0.0400,0,88,999.000,999.0,99.0 +1987,1,16,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,16.7,84,101200,0,0,380,38,19,36,0,0,0,0,340,4.1,8,8,24.1,1370,9,999999999,290,0.0530,0,88,999.000,999.0,99.0 +1987,1,16,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,16.7,79,101300,89,1096,394,84,68,66,7500,3300,7200,1370,340,3.1,9,9,32.2,700,9,999999999,300,0.0530,0,88,999.000,999.0,99.0 +1987,1,16,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,17.2,76,101400,377,1414,401,144,44,124,14800,3900,13800,3050,350,2.6,9,9,32.2,700,9,999999999,309,0.0530,0,88,999.000,999.0,99.0 +1987,1,16,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,17.2,69,101400,640,1414,410,417,98,358,43900,10000,39400,8320,10,3.6,9,9,32.2,1370,9,999999999,309,0.0530,0,88,999.000,999.0,99.0 +1987,1,16,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,17.8,67,101400,847,1414,408,356,264,172,36600,28200,19700,4030,50,5.2,8,8,32.2,700,9,999999999,320,0.0530,0,88,999.000,999.0,99.0 +1987,1,16,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,17.8,64,101300,984,1414,411,347,198,202,37900,21400,23000,5450,20,4.1,8,8,32.2,700,9,999999999,309,0.0530,0,88,999.000,999.0,99.0 +1987,1,16,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,18.3,74,101200,1042,1414,423,188,9,181,22700,700,22200,8920,50,4.1,10,10,32.2,700,9,999999999,329,0.0530,0,88,999.000,999.0,99.0 +1987,1,16,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,19.4,84,101200,1017,1414,418,157,9,151,19200,700,18800,7580,80,3.6,10,10,24.1,610,9,999999999,340,0.0530,0,88,999.000,999.0,99.0 +1987,1,16,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,19.4,79,101100,909,1414,389,438,570,146,54400,57700,17200,3720,30,4.1,5,5,32.2,77777,9,999999999,350,0.0530,0,88,999.000,999.0,99.0 +1987,1,16,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,17.2,64,101100,728,1414,393,215,351,96,31100,35600,12800,1960,50,4.6,5,5,24.1,77777,9,999999999,300,0.0530,0,88,999.000,999.0,99.0 +1987,1,16,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,19.4,87,101100,484,1414,389,58,19,56,6900,1700,6300,1720,90,3.6,7,7,11.3,1370,9,999999999,350,0.0530,0,88,999.000,999.0,99.0 +1987,1,16,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,18.3,81,101200,197,1414,383,3,4,2,300,300,300,40,20,3.1,6,6,16.1,1370,9,999999999,320,0.0530,0,88,999.000,999.0,99.0 +1987,1,16,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,17.8,81,101200,4,247,379,0,0,0,0,0,0,0,30,3.6,6,6,12.9,1370,9,999999999,309,0.0400,0,88,999.000,999.0,99.0 +1987,1,16,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,18.3,87,101200,0,0,374,0,0,0,0,0,0,0,360,2.6,5,5,16.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1987,1,16,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,17.2,79,101300,0,0,373,0,0,0,0,0,0,0,30,4.1,4,4,16.1,77777,9,999999999,309,0.0400,0,88,999.000,999.0,99.0 +1987,1,16,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,17.2,81,101300,0,0,370,0,0,0,0,0,0,0,330,2.1,4,4,16.1,77777,9,999999999,300,0.0400,0,88,999.000,999.0,99.0 +1987,1,16,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,17.2,84,101300,0,0,367,0,0,0,0,0,0,0,350,1.5,4,4,24.1,77777,9,999999999,300,0.0400,0,88,999.000,999.0,99.0 +1987,1,16,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,17.2,81,101300,0,0,376,0,0,0,0,0,0,0,10,3.1,6,6,16.1,1370,9,999999999,300,0.0400,0,88,999.000,999.0,99.0 +1987,1,17,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,17.2,84,101300,0,0,364,0,0,0,0,0,0,0,40,3.1,3,3,24.1,77777,9,999999999,300,0.0400,0,88,999.000,999.0,99.0 +1987,1,17,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,16.7,84,101200,0,0,361,0,0,0,0,0,0,0,300,2.6,3,3,24.1,77777,9,999999999,290,0.0400,0,88,999.000,999.0,99.0 +1987,1,17,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,16.7,84,101200,0,0,363,0,0,0,0,0,0,0,350,2.1,4,4,24.1,77777,9,999999999,290,0.0400,0,88,999.000,999.0,99.0 +1987,1,17,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,16.7,87,101100,0,0,358,0,0,0,0,0,0,0,310,2.1,3,3,24.1,77777,9,999999999,290,0.0400,0,88,999.000,999.0,99.0 +1987,1,17,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,16.1,93,101100,0,0,362,0,0,0,0,0,0,0,320,2.1,7,7,24.1,1370,9,999999999,279,0.0400,0,88,999.000,999.0,99.0 +1987,1,17,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,16.7,93,101200,0,0,366,0,0,0,0,0,0,0,270,2.1,7,7,24.1,1370,9,999999999,290,0.0400,0,88,999.000,999.0,99.0 +1987,1,17,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,17.2,97,101300,0,0,366,40,40,36,0,0,0,0,280,2.1,7,7,24.1,1370,9,999999999,309,0.0400,0,88,999.000,999.0,99.0 +1987,1,17,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,18.3,90,101300,89,1095,374,137,135,101,11300,6200,10800,2110,0,0.0,6,6,32.2,1370,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1987,1,17,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,18.3,74,101400,378,1414,388,387,519,151,28600,43500,16900,3030,340,2.6,5,5,40.2,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1987,1,17,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,18.3,69,101500,641,1414,402,480,303,297,46100,30100,32300,7190,310,2.6,7,7,40.2,1370,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1987,1,17,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,18.3,62,101500,849,1414,411,561,375,300,55900,39800,31900,7770,320,2.6,7,7,40.2,1370,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1987,1,17,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,18.9,69,101400,987,1414,413,423,303,199,44800,31500,22700,5480,50,2.6,8,8,24.1,1370,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1987,1,17,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,18.9,71,101300,1045,1414,418,361,226,198,41100,24500,22900,5750,140,2.1,9,9,24.1,1370,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1987,1,17,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,18.9,69,101200,1020,1414,421,405,122,326,45400,12900,36100,10200,180,3.1,9,9,24.1,1370,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1987,1,17,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,18.3,69,101200,913,1414,417,286,97,236,33100,10300,26500,6690,180,2.1,9,9,24.1,1370,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1987,1,17,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,17.8,64,101200,732,1414,411,216,196,150,27700,20500,17000,3240,60,2.6,8,8,24.1,1370,9,999999999,309,0.0400,0,88,999.000,999.0,99.0 +1987,1,17,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,17.8,67,101300,488,1414,401,63,115,47,10000,11000,6200,820,40,2.1,7,7,24.1,1370,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1987,1,17,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,18.3,79,101300,201,1414,396,2,2,2,300,100,300,40,330,5.2,8,8,16.1,1370,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1987,1,17,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,17.8,76,101400,4,247,404,0,0,0,0,0,0,0,20,3.6,9,9,16.1,1370,9,999999999,309,0.0400,0,88,999.000,999.0,99.0 +1987,1,17,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,18.3,81,101500,0,0,394,0,0,0,0,0,0,0,310,2.6,8,8,16.1,1370,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1987,1,17,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,16.7,73,101500,0,0,392,0,0,0,0,0,0,0,350,4.1,8,8,16.1,1370,9,999999999,290,0.0400,0,88,999.000,999.0,99.0 +1987,1,17,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,16.7,79,101500,0,0,376,0,0,0,0,0,0,0,340,2.6,6,6,16.1,1370,9,999999999,300,0.0400,0,88,999.000,999.0,99.0 +1987,1,17,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,17.2,87,101500,0,0,374,0,0,0,0,0,0,0,310,2.1,7,7,16.1,1370,9,999999999,300,0.0400,0,88,999.000,999.0,99.0 +1987,1,17,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,17.2,87,101500,0,0,374,0,0,0,0,0,0,0,300,2.6,9,7,24.1,2740,9,999999999,300,0.0400,0,88,999.000,999.0,99.0 +1987,1,18,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,17.2,87,101500,0,0,380,0,0,0,0,0,0,0,340,1.5,10,8,24.1,2740,9,999999999,300,0.0400,0,88,999.000,999.0,99.0 +1987,1,18,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,16.7,84,101400,0,0,357,0,0,0,0,0,0,0,340,2.1,5,2,24.1,77777,9,999999999,290,0.0400,0,88,999.000,999.0,99.0 +1987,1,18,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,15.6,84,101400,0,0,351,0,0,0,0,0,0,0,310,1.5,2,2,24.1,77777,9,999999999,279,0.0400,0,88,999.000,999.0,99.0 +1987,1,18,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,16.7,90,101400,0,0,368,0,0,0,0,0,0,0,330,2.1,10,7,24.1,2740,9,999999999,290,0.0400,0,88,999.000,999.0,99.0 +1987,1,18,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,16.1,81,101400,0,0,373,0,0,0,0,0,0,0,320,1.5,9,7,24.1,2740,9,999999999,279,0.0400,0,88,999.000,999.0,99.0 +1987,1,18,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,15.6,76,101500,0,0,376,0,0,0,0,0,0,0,20,2.6,9,7,24.1,2740,9,999999999,279,0.0400,0,88,999.000,999.0,99.0 +1987,1,18,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,15.0,73,101500,0,0,367,40,102,29,0,0,0,0,10,2.6,7,5,24.1,2740,9,999999999,270,0.0280,0,88,999.000,999.0,99.0 +1987,1,18,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,14.4,66,101600,90,1095,366,162,331,72,9400,14800,8100,1510,360,4.6,3,3,40.2,77777,9,999999999,259,0.0280,0,88,999.000,999.0,99.0 +1987,1,18,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,13.9,56,101700,379,1413,373,422,770,70,28500,65400,10900,1280,360,6.2,2,2,40.2,77777,9,999999999,250,0.0280,0,88,999.000,999.0,99.0 +1987,1,18,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,13.9,49,101800,643,1413,389,571,786,96,47900,76700,12900,2000,360,5.7,3,3,40.2,77777,9,999999999,250,0.0280,0,88,999.000,999.0,99.0 +1987,1,18,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,15.0,52,101700,851,1413,393,707,775,163,65900,77400,19100,3810,20,6.7,4,4,40.2,77777,9,999999999,270,0.0280,0,88,999.000,999.0,99.0 +1987,1,18,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,13.9,45,101700,989,1413,394,749,777,172,75900,78800,20500,4810,20,7.7,3,3,40.2,77777,9,999999999,250,0.0280,0,88,999.000,999.0,99.0 +1987,1,18,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,13.9,44,101600,1048,1413,393,611,671,125,66300,67800,15900,3700,350,6.7,2,2,40.2,77777,9,999999999,250,0.0280,0,88,999.000,999.0,99.0 +1987,1,18,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,14.4,46,101500,1024,1413,394,506,572,136,59500,58800,16800,4120,30,7.2,2,2,40.2,77777,9,999999999,259,0.0280,0,88,999.000,999.0,99.0 +1987,1,18,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,16.7,62,101500,917,1413,400,389,280,244,46400,30000,26900,6350,360,6.7,7,7,24.1,1370,9,999999999,290,0.0280,0,88,999.000,999.0,99.0 +1987,1,18,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,16.7,64,101600,736,1413,397,227,291,127,30500,29400,15100,2660,350,5.7,7,7,24.1,760,9,999999999,300,0.0280,0,88,999.000,999.0,99.0 +1987,1,18,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,16.1,66,101600,492,1413,383,75,209,45,13600,19500,6800,800,360,5.2,5,5,24.1,77777,9,999999999,290,0.0280,0,88,999.000,999.0,99.0 +1987,1,18,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,15.6,66,101700,205,1413,370,12,39,4,1200,2800,800,80,10,6.2,2,2,24.1,77777,9,999999999,279,0.0280,0,88,999.000,999.0,99.0 +1987,1,18,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,14.4,64,101700,5,271,375,0,0,0,0,0,0,0,360,6.7,5,5,24.1,77777,9,999999999,259,0.0400,0,88,999.000,999.0,99.0 +1987,1,18,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,13.9,64,101800,0,0,369,0,0,0,0,0,0,0,360,6.7,4,4,24.1,77777,9,999999999,250,0.0400,0,88,999.000,999.0,99.0 +1987,1,18,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,11.7,57,101800,0,0,357,0,0,0,0,0,0,0,360,6.2,2,2,24.1,77777,9,999999999,220,0.0400,0,88,999.000,999.0,99.0 +1987,1,18,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,10.6,53,101800,0,0,359,0,0,0,0,0,0,0,10,7.2,3,3,24.1,77777,9,999999999,209,0.0400,0,88,999.000,999.0,99.0 +1987,1,18,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,10.6,53,101900,0,0,359,0,0,0,0,0,0,0,20,7.2,3,3,24.1,77777,9,999999999,209,0.0400,0,88,999.000,999.0,99.0 +1987,1,18,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,10.0,51,101900,0,0,368,0,0,0,0,0,0,0,30,8.2,6,6,24.1,1370,9,999999999,200,0.0400,0,88,999.000,999.0,99.0 +1987,1,19,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,10.6,55,101900,0,0,370,0,0,0,0,0,0,0,20,7.7,7,7,24.1,1370,9,999999999,209,0.0400,0,88,999.000,999.0,99.0 +1987,1,19,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,10.0,53,101900,0,0,359,0,0,0,0,0,0,0,30,5.7,6,4,24.1,2740,9,999999999,200,0.0400,0,88,999.000,999.0,99.0 +1987,1,19,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,10.6,55,101900,0,0,365,0,0,0,0,0,0,0,20,8.8,8,6,24.1,2740,9,999999999,209,0.0400,0,88,999.000,999.0,99.0 +1987,1,19,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,10.6,55,101900,0,0,365,0,0,0,0,0,0,0,40,4.6,8,6,24.1,2740,9,999999999,209,0.0400,0,88,999.000,999.0,99.0 +1987,1,19,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,10.0,53,101900,0,0,365,0,0,0,0,0,0,0,30,6.2,8,6,24.1,2740,9,999999999,200,0.0400,0,88,999.000,999.0,99.0 +1987,1,19,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,10.0,55,102000,0,0,366,0,0,0,0,0,0,0,50,1.5,7,7,24.1,2740,9,999999999,200,0.0400,0,88,999.000,999.0,99.0 +1987,1,19,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,10.0,55,102100,0,0,358,47,108,35,0,0,0,0,30,6.7,5,5,24.1,77777,9,999999999,200,0.0590,0,88,999.000,999.0,99.0 +1987,1,19,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,10.0,53,102100,90,1095,359,179,338,88,11300,13800,10100,2210,30,5.2,4,4,32.2,77777,9,999999999,200,0.0590,0,88,999.000,999.0,99.0 +1987,1,19,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,9.4,47,102100,380,1413,366,380,502,150,28100,42200,16800,3000,30,3.1,5,5,24.1,77777,9,999999999,189,0.0590,0,88,999.000,999.0,99.0 +1987,1,19,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,9.4,43,102200,644,1413,375,495,566,153,43400,55800,17900,3110,30,8.2,5,5,24.1,77777,9,999999999,189,0.0590,0,88,999.000,999.0,99.0 +1987,1,19,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,10.0,43,102200,853,1413,375,672,680,194,62500,67300,21700,4410,40,3.6,4,4,24.1,77777,9,999999999,200,0.0590,0,88,999.000,999.0,99.0 +1987,1,19,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,10.6,46,102100,992,1413,370,641,632,170,65100,64200,19900,4780,30,7.7,3,3,24.1,77777,9,999999999,209,0.0590,0,88,999.000,999.0,99.0 +1987,1,19,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,11.1,45,102000,1051,1413,373,730,843,118,79900,85300,16100,3570,30,6.2,2,2,24.1,77777,9,999999999,209,0.0590,0,88,999.000,999.0,99.0 +1987,1,19,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,9.4,39,102000,1027,1413,373,638,764,141,72900,76600,17100,3860,40,7.2,2,2,24.1,77777,9,999999999,189,0.0590,0,88,999.000,999.0,99.0 +1987,1,19,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,11.7,45,101900,921,1413,383,391,433,166,49300,44900,20000,4160,10,6.2,4,4,24.1,77777,9,999999999,220,0.0590,0,88,999.000,999.0,99.0 +1987,1,19,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,11.7,46,101900,740,1413,386,156,111,117,19900,11600,13800,2960,20,5.7,6,6,24.1,910,9,999999999,220,0.0590,0,88,999.000,999.0,99.0 +1987,1,19,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,11.7,51,102000,496,1413,382,72,70,62,9900,6800,7500,1420,20,5.2,7,7,24.1,910,9,999999999,220,0.0590,0,88,999.000,999.0,99.0 +1987,1,19,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,11.7,53,102000,209,1413,380,2,4,1,200,300,200,20,360,3.6,7,7,24.1,910,9,999999999,220,0.0590,0,88,999.000,999.0,99.0 +1987,1,19,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,12.2,59,102100,6,294,370,0,0,0,0,0,0,0,360,4.1,6,6,24.1,910,9,999999999,229,0.0400,0,88,999.000,999.0,99.0 +1987,1,19,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,10.6,53,102100,0,0,365,0,0,0,0,0,0,0,30,4.6,5,5,24.1,77777,9,999999999,209,0.0400,0,88,999.000,999.0,99.0 +1987,1,19,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,11.1,55,102200,0,0,373,0,0,0,0,0,0,0,30,2.1,7,7,24.1,910,9,999999999,209,0.0400,0,88,999.000,999.0,99.0 +1987,1,19,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,12.8,61,102200,0,0,381,0,0,0,0,0,0,0,30,6.2,8,8,24.1,1220,9,999999999,240,0.0400,0,88,999.000,999.0,99.0 +1987,1,19,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,9.4,49,102200,0,0,367,0,0,0,0,0,0,0,30,6.2,6,6,24.1,1220,9,999999999,189,0.0400,0,88,999.000,999.0,99.0 +1987,1,19,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,11.1,55,102200,0,0,387,0,0,0,0,0,0,0,20,5.2,9,9,24.1,1370,9,999999999,209,0.0400,0,88,999.000,999.0,99.0 +1987,1,20,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,10.6,55,102200,0,0,375,0,0,0,0,0,0,0,40,1.5,8,8,24.1,1370,9,999999999,209,0.0400,0,88,999.000,999.0,99.0 +1987,1,20,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,10.0,53,102200,0,0,383,0,0,0,0,0,0,0,330,2.6,9,9,24.1,1220,9,999999999,200,0.0400,0,88,999.000,999.0,99.0 +1987,1,20,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,11.1,55,102100,0,0,387,0,0,0,0,0,0,0,20,4.1,9,9,24.1,1220,9,999999999,209,0.0400,0,88,999.000,999.0,99.0 +1987,1,20,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,8.9,51,102200,0,0,352,0,0,0,0,0,0,0,30,3.6,3,3,24.1,77777,9,999999999,189,0.0400,0,88,999.000,999.0,99.0 +1987,1,20,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,10.0,53,102200,0,0,359,0,0,0,0,0,0,0,10,3.1,6,4,24.1,2740,9,999999999,200,0.0400,0,88,999.000,999.0,99.0 +1987,1,20,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,10.6,55,102200,0,0,359,0,0,0,0,0,0,0,50,3.1,5,4,24.1,77777,9,999999999,209,0.0400,0,88,999.000,999.0,99.0 +1987,1,20,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,9.4,53,102200,0,0,352,44,200,21,0,0,0,0,10,5.2,3,3,24.1,77777,9,999999999,189,0.0270,0,88,999.000,999.0,99.0 +1987,1,20,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,10.0,51,102300,90,1095,364,184,422,69,9900,19000,8300,1430,50,3.1,5,5,32.2,77777,9,999999999,200,0.0270,0,88,999.000,999.0,99.0 +1987,1,20,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,9.4,46,102400,381,1413,360,427,695,108,29400,57200,14000,1760,50,3.6,2,2,32.2,77777,9,999999999,189,0.0270,0,88,999.000,999.0,99.0 +1987,1,20,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,10.0,43,102400,646,1413,372,449,575,100,38200,56100,12500,2070,30,4.6,3,3,32.2,77777,9,999999999,200,0.0270,0,88,999.000,999.0,99.0 +1987,1,20,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,10.6,45,102400,855,1413,386,764,780,214,70400,76700,23800,4780,30,6.2,7,7,32.2,910,9,999999999,209,0.0270,0,88,999.000,999.0,99.0 +1987,1,20,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,10.0,39,102300,995,1413,390,744,605,292,75400,62600,31200,8400,40,6.7,6,6,40.2,910,9,999999999,200,0.0270,0,88,999.000,999.0,99.0 +1987,1,20,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,9.4,36,102300,1055,1413,386,614,603,175,66600,61500,20600,5460,20,6.7,4,4,40.2,77777,9,999999999,189,0.0270,0,88,999.000,999.0,99.0 +1987,1,20,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,11.1,42,102200,1031,1413,396,567,523,225,65800,54500,25900,6680,30,7.2,7,7,40.2,910,9,999999999,209,0.0270,0,88,999.000,999.0,99.0 +1987,1,20,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,11.1,43,102200,925,1413,393,346,255,212,41800,27400,23800,5430,30,7.2,7,7,40.2,910,9,999999999,209,0.0270,0,88,999.000,999.0,99.0 +1987,1,20,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,10.6,42,102100,744,1413,375,272,535,85,39600,53900,11200,1940,60,5.2,2,2,32.2,77777,9,999999999,209,0.0270,0,88,999.000,999.0,99.0 +1987,1,20,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,12.2,52,102200,500,1413,381,81,206,51,14200,19300,7300,910,20,6.7,6,6,32.2,910,9,999999999,229,0.0270,0,88,999.000,999.0,99.0 +1987,1,20,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,13.3,59,102100,212,1413,371,10,35,5,1300,2300,1000,80,70,4.6,4,4,24.1,77777,9,999999999,240,0.0270,0,88,999.000,999.0,99.0 +1987,1,20,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,12.2,57,102200,6,294,373,0,0,0,0,0,0,0,50,6.7,6,6,24.1,910,9,999999999,229,0.0400,0,88,999.000,999.0,99.0 +1987,1,20,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,11.1,53,102200,0,0,365,0,0,0,0,0,0,0,30,5.2,4,4,24.1,77777,9,999999999,209,0.0400,0,88,999.000,999.0,99.0 +1987,1,20,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,11.7,55,102300,0,0,372,0,0,0,0,0,0,0,30,3.6,6,6,24.1,1370,9,999999999,220,0.0400,0,88,999.000,999.0,99.0 +1987,1,20,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,12.8,59,102300,0,0,373,0,0,0,0,0,0,0,20,3.1,6,6,24.1,1370,9,999999999,240,0.0400,0,88,999.000,999.0,99.0 +1987,1,20,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,11.7,55,102300,0,0,376,0,0,0,0,0,0,0,40,3.6,7,7,24.1,1370,9,999999999,220,0.0400,0,88,999.000,999.0,99.0 +1987,1,20,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,11.1,51,102300,0,0,379,0,0,0,0,0,0,0,50,4.6,7,7,24.1,1370,9,999999999,209,0.0400,0,88,999.000,999.0,99.0 +1987,1,21,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,12.2,55,102300,0,0,406,0,0,0,0,0,0,0,40,5.2,10,10,24.1,1220,9,999999999,229,0.0400,0,88,999.000,999.0,99.0 +1987,1,21,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,15.6,76,102300,0,0,401,0,0,0,0,0,0,0,30,2.1,10,10,16.1,1220,9,999999999,279,0.0400,0,88,999.000,999.0,99.0 +1987,1,21,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,14.4,73,102200,0,0,385,0,0,0,0,0,0,0,50,3.6,9,9,16.1,1220,9,999999999,259,0.0400,0,88,999.000,999.0,99.0 +1987,1,21,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,13.9,66,102200,0,0,402,0,0,0,0,0,0,0,60,4.6,10,10,24.1,1220,9,999999999,250,0.0400,0,88,999.000,999.0,99.0 +1987,1,21,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,12.8,59,102200,0,0,403,0,0,0,0,0,0,0,40,7.7,10,10,24.1,1220,9,999999999,240,0.0400,0,88,999.000,999.0,99.0 +1987,1,21,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,14.4,71,102300,0,0,374,0,0,0,0,0,0,0,60,5.2,8,7,24.1,1220,9,999999999,259,0.0400,0,88,999.000,999.0,99.0 +1987,1,21,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,13.9,68,102300,0,0,374,51,80,41,0,0,0,0,60,2.6,8,7,24.1,1220,9,999999999,250,0.0240,0,88,999.000,999.0,99.0 +1987,1,21,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,12.2,57,102300,91,1118,367,174,279,98,11700,11400,10700,2570,50,4.1,4,4,32.2,77777,9,999999999,229,0.0240,0,88,999.000,999.0,99.0 +1987,1,21,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,11.7,48,102400,382,1413,371,397,725,63,26000,62100,9200,1090,60,6.2,2,2,40.2,77777,9,999999999,220,0.0240,0,88,999.000,999.0,99.0 +1987,1,21,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,11.1,46,102400,647,1413,370,617,877,83,50600,84900,11500,1700,70,5.2,2,2,40.2,77777,9,999999999,209,0.0240,0,88,999.000,999.0,99.0 +1987,1,21,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,11.7,43,102400,858,1413,379,729,887,102,67800,88600,13800,2420,60,6.2,2,2,40.2,77777,9,999999999,220,0.0240,0,88,999.000,999.0,99.0 +1987,1,21,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,12.2,45,102300,998,1413,380,758,890,92,75100,88800,12200,2390,30,7.2,2,2,40.2,77777,9,999999999,229,0.0240,0,88,999.000,999.0,99.0 +1987,1,21,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,11.7,42,102200,1058,1413,389,801,923,126,84300,92000,15200,2920,50,8.2,4,4,40.2,77777,9,999999999,220,0.0240,0,88,999.000,999.0,99.0 +1987,1,21,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,11.7,41,102100,1034,1413,398,605,654,177,69700,66500,20800,5320,20,7.2,6,6,40.2,910,9,999999999,220,0.0240,0,88,999.000,999.0,99.0 +1987,1,21,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,15.6,64,102100,929,1413,405,329,124,264,38100,13100,29400,7580,70,6.2,9,9,32.2,700,9,999999999,279,0.0240,0,88,999.000,999.0,99.0 +1987,1,21,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,12.8,50,102100,748,1413,392,201,151,147,25500,15700,17100,3740,30,5.7,7,7,32.2,1370,9,999999999,240,0.0240,0,88,999.000,999.0,99.0 +1987,1,21,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,13.3,52,102100,504,1413,385,101,452,34,21700,42900,6300,820,50,7.2,5,5,32.2,77777,9,999999999,250,0.0240,0,88,999.000,999.0,99.0 +1987,1,21,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,13.9,59,102200,216,1413,380,10,10,8,1200,700,1100,170,60,6.2,6,6,24.1,1370,9,999999999,250,0.0240,0,88,999.000,999.0,99.0 +1987,1,21,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,13.9,59,102200,7,318,385,0,0,0,0,0,0,0,40,7.2,7,7,24.1,760,9,999999999,250,0.0400,0,88,999.000,999.0,99.0 +1987,1,21,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,13.9,61,102200,0,0,378,0,0,0,0,0,0,0,70,6.7,6,6,24.1,1370,9,999999999,250,0.0400,0,88,999.000,999.0,99.0 +1987,1,21,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,12.8,57,102200,0,0,376,0,0,0,0,0,0,0,50,6.2,6,6,24.1,1370,9,999999999,240,0.0400,0,88,999.000,999.0,99.0 +1987,1,21,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,12.2,57,102300,0,0,367,0,0,0,0,0,0,0,60,5.2,4,4,24.1,77777,9,999999999,229,0.0400,0,88,999.000,999.0,99.0 +1987,1,21,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,12.2,57,102200,0,0,369,0,0,0,0,0,0,0,40,5.2,5,5,24.1,77777,9,999999999,229,0.0400,0,88,999.000,999.0,99.0 +1987,1,21,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,12.8,57,102200,0,0,373,0,0,0,0,0,0,0,70,6.2,5,5,24.1,77777,9,999999999,240,0.0400,0,88,999.000,999.0,99.0 +1987,1,22,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,12.2,57,102200,0,0,369,0,0,0,0,0,0,0,80,4.6,5,5,24.1,77777,9,999999999,229,0.0400,0,88,999.000,999.0,99.0 +1987,1,22,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,12.2,57,102100,0,0,369,0,0,0,0,0,0,0,60,6.2,5,5,24.1,77777,9,999999999,229,0.0400,0,88,999.000,999.0,99.0 +1987,1,22,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,15.0,71,102100,0,0,392,0,0,0,0,0,0,0,60,6.2,9,9,24.1,1370,9,999999999,270,0.0400,0,88,999.000,999.0,99.0 +1987,1,22,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,13.3,63,102100,0,0,372,0,0,0,0,0,0,0,50,6.2,6,6,24.1,1370,9,999999999,240,0.0400,0,88,999.000,999.0,99.0 +1987,1,22,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,14.4,66,102100,0,0,394,0,0,0,0,0,0,0,70,6.2,9,9,24.1,1370,9,999999999,259,0.0400,0,88,999.000,999.0,99.0 +1987,1,22,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,15.0,78,102200,0,0,375,0,0,0,0,0,0,0,80,2.6,8,8,24.1,1370,9,999999999,270,0.0400,0,88,999.000,999.0,99.0 +1987,1,22,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,15.6,76,102200,0,0,382,26,35,22,0,0,0,0,50,6.2,8,8,24.1,1370,9,999999999,279,0.0260,0,88,999.000,999.0,99.0 +1987,1,22,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,14.4,68,102200,92,1118,391,120,48,106,11900,3300,11600,1210,60,5.2,9,9,32.2,1370,9,999999999,259,0.0260,0,88,999.000,999.0,99.0 +1987,1,22,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,15.6,68,102300,383,1412,410,272,159,198,25200,13700,21500,4390,50,5.2,10,10,32.2,1370,9,999999999,279,0.0260,0,88,999.000,999.0,99.0 +1987,1,22,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,16.7,76,102300,649,1412,389,283,75,237,29700,7500,26300,6550,70,4.1,8,8,32.2,1370,9,999999999,300,0.0260,0,88,999.000,999.0,99.0 +1987,1,22,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,15.6,60,102200,860,1412,402,543,373,279,54200,39700,30000,7160,90,5.7,8,8,32.2,1370,9,999999999,279,0.0260,0,88,999.000,999.0,99.0 +1987,1,22,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,13.9,49,102200,1001,1412,395,661,609,203,66500,61300,22900,5660,80,7.2,5,5,40.2,77777,9,999999999,250,0.0260,0,88,999.000,999.0,99.0 +1987,1,22,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,12.8,44,102100,1061,1412,399,689,607,244,75700,63200,28000,7670,70,7.7,6,6,40.2,1370,9,999999999,240,0.0260,0,88,999.000,999.0,99.0 +1987,1,22,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,13.9,45,102000,1038,1412,404,609,603,212,68700,60800,23900,6270,60,7.7,6,6,40.2,1370,9,999999999,250,0.0260,0,88,999.000,999.0,99.0 +1987,1,22,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,14.4,54,101900,932,1412,397,405,346,221,48100,35800,24400,5730,50,7.7,7,7,40.2,1370,9,999999999,259,0.0260,0,88,999.000,999.0,99.0 +1987,1,22,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,13.9,50,101900,752,1412,386,303,628,80,44200,62300,10900,1840,60,7.7,3,3,32.2,77777,9,999999999,250,0.0260,0,88,999.000,999.0,99.0 +1987,1,22,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,13.9,50,101900,508,1412,389,92,327,43,17600,31100,6400,900,40,7.7,4,4,32.2,77777,9,999999999,250,0.0260,0,88,999.000,999.0,99.0 +1987,1,22,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,14.4,60,102000,220,1412,378,12,28,8,1500,1800,1200,120,30,6.2,4,4,32.2,77777,9,999999999,259,0.0260,0,88,999.000,999.0,99.0 +1987,1,22,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,15.0,66,102000,8,341,366,0,0,0,0,0,0,0,50,5.2,2,2,24.1,77777,9,999999999,270,0.0400,0,88,999.000,999.0,99.0 +1987,1,22,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,13.9,61,102000,0,0,360,0,0,0,0,0,0,0,60,4.6,1,1,24.1,77777,9,999999999,250,0.0400,0,88,999.000,999.0,99.0 +1987,1,22,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,13.9,64,102100,0,0,357,0,0,0,0,0,0,0,60,3.1,1,1,24.1,77777,9,999999999,250,0.0400,0,88,999.000,999.0,99.0 +1987,1,22,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,13.3,59,102100,0,0,353,0,0,0,0,0,0,0,60,2.6,0,0,24.1,77777,9,999999999,240,0.0400,0,88,999.000,999.0,99.0 +1987,1,22,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,12.8,61,102000,0,0,347,0,0,0,0,0,0,0,70,3.1,0,0,24.1,77777,9,999999999,240,0.0400,0,88,999.000,999.0,99.0 +1987,1,22,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,13.3,59,102000,0,0,353,0,0,0,0,0,0,0,60,4.6,0,0,24.1,77777,9,999999999,240,0.0400,0,88,999.000,999.0,99.0 +1987,1,23,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,14.4,64,102000,0,0,354,0,0,0,0,0,0,0,60,6.7,0,0,24.1,77777,9,999999999,259,0.0400,0,88,999.000,999.0,99.0 +1987,1,23,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,15.0,66,101900,0,0,362,0,0,0,0,0,0,0,70,6.2,1,1,24.1,77777,9,999999999,270,0.0400,0,88,999.000,999.0,99.0 +1987,1,23,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,14.4,66,101800,0,0,363,0,0,0,0,0,0,0,50,5.2,2,2,24.1,77777,9,999999999,259,0.0400,0,88,999.000,999.0,99.0 +1987,1,23,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,15.0,66,101800,0,0,379,0,0,0,0,0,0,0,70,4.1,6,6,24.1,1370,9,999999999,270,0.0400,0,88,999.000,999.0,99.0 +1987,1,23,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,15.0,64,101800,0,0,392,0,0,0,0,0,0,0,60,4.1,8,8,24.1,1370,9,999999999,270,0.0400,0,88,999.000,999.0,99.0 +1987,1,23,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,15.6,71,101800,0,0,377,0,0,0,0,0,0,0,70,5.2,6,6,24.1,1370,9,999999999,279,0.0400,0,88,999.000,999.0,99.0 +1987,1,23,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,16.1,71,101900,0,0,385,46,60,39,0,0,0,0,30,2.1,7,7,24.1,1370,9,999999999,290,0.0250,0,88,999.000,999.0,99.0 +1987,1,23,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,15.6,68,101900,92,1118,371,198,482,66,10300,22000,8300,1350,70,2.6,3,3,32.2,77777,9,999999999,279,0.0250,0,88,999.000,999.0,99.0 +1987,1,23,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,15.6,58,101900,385,1412,385,410,667,101,28300,55500,13200,1690,60,6.2,3,3,40.2,77777,9,999999999,279,0.0250,0,88,999.000,999.0,99.0 +1987,1,23,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,15.0,56,102000,651,1412,390,498,561,155,43700,55400,18100,3170,70,7.2,5,5,40.2,77777,9,999999999,270,0.0250,0,88,999.000,999.0,99.0 +1987,1,23,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,15.6,56,102000,863,1412,402,596,473,260,57100,48400,27500,6390,70,8.2,7,7,40.2,1370,9,999999999,279,0.0250,0,88,999.000,999.0,99.0 +1987,1,23,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,16.1,52,101800,1004,1412,418,525,279,315,55500,30100,34100,9270,70,7.2,8,8,40.2,1370,9,999999999,279,0.0250,0,88,999.000,999.0,99.0 +1987,1,23,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,13.9,41,101700,1065,1412,409,630,581,201,67500,58900,22900,6300,90,7.2,5,5,40.2,77777,9,999999999,250,0.0250,0,88,999.000,999.0,99.0 +1987,1,23,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,12.8,40,101700,1042,1412,399,587,621,176,67500,63200,20700,5370,60,7.2,3,3,40.2,77777,9,999999999,240,0.0250,0,88,999.000,999.0,99.0 +1987,1,23,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,13.9,44,101700,936,1412,400,399,451,159,50800,46800,19600,4050,40,7.2,4,4,40.2,77777,9,999999999,250,0.0250,0,88,999.000,999.0,99.0 +1987,1,23,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,15.0,52,101700,756,1412,393,305,622,82,44200,61700,11000,1880,40,7.2,4,4,32.2,77777,9,999999999,270,0.0250,0,88,999.000,999.0,99.0 +1987,1,23,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,14.4,54,101700,512,1412,386,82,100,66,11500,9700,8000,1200,50,6.2,4,4,32.2,77777,9,999999999,259,0.0250,0,88,999.000,999.0,99.0 +1987,1,23,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,14.4,58,101700,224,1412,374,13,45,7,1800,3100,1300,110,50,5.7,2,2,32.2,77777,9,999999999,259,0.0250,0,88,999.000,999.0,99.0 +1987,1,23,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,15.0,62,101800,9,341,376,0,0,0,0,0,0,0,50,4.1,3,3,24.1,77777,9,999999999,270,0.0400,0,88,999.000,999.0,99.0 +1987,1,23,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,15.6,62,101800,0,0,388,0,0,0,0,0,0,0,60,4.1,6,6,24.1,1370,9,999999999,279,0.0400,0,88,999.000,999.0,99.0 +1987,1,23,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,16.1,64,101800,0,0,400,0,0,0,0,0,0,0,60,4.1,8,8,24.1,1370,9,999999999,290,0.0400,0,88,999.000,999.0,99.0 +1987,1,23,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,16.7,69,101800,0,0,398,0,0,0,0,0,0,0,40,3.6,8,8,24.1,1370,9,999999999,300,0.0400,0,88,999.000,999.0,99.0 +1987,1,23,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,16.7,71,101800,0,0,375,0,0,0,0,0,0,0,60,4.1,3,3,24.1,77777,9,999999999,300,0.0400,0,88,999.000,999.0,99.0 +1987,1,23,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,16.7,73,101800,0,0,368,0,0,0,0,0,0,0,70,2.6,2,2,24.1,77777,9,999999999,300,0.0400,0,88,999.000,999.0,99.0 +1987,1,24,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,16.7,76,101800,0,0,354,0,0,0,0,0,0,0,50,3.6,0,0,24.1,77777,9,999999999,300,0.0400,0,88,999.000,999.0,99.0 +1987,1,24,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,16.1,78,101700,0,0,348,0,0,0,0,0,0,0,60,3.1,0,0,24.1,77777,9,999999999,279,0.0400,0,88,999.000,999.0,99.0 +1987,1,24,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,16.7,79,101700,0,0,358,0,0,0,0,0,0,0,50,3.1,1,1,24.1,77777,9,999999999,300,0.0400,0,88,999.000,999.0,99.0 +1987,1,24,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,16.1,87,101700,0,0,351,0,0,0,0,0,0,0,0,0.0,2,2,24.1,77777,9,999999999,290,0.0400,0,88,999.000,999.0,99.0 +1987,1,24,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,16.1,87,101700,0,0,351,0,0,0,0,0,0,0,290,1.5,2,2,24.1,77777,9,999999999,290,0.0400,0,88,999.000,999.0,99.0 +1987,1,24,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,16.1,78,101700,0,0,366,0,0,0,0,0,0,0,50,2.6,4,4,24.1,77777,9,999999999,279,0.0400,0,88,999.000,999.0,99.0 +1987,1,24,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,16.7,90,101800,0,0,355,49,150,31,0,0,0,0,280,2.1,3,3,24.1,77777,9,999999999,300,0.0440,0,88,999.000,999.0,99.0 +1987,1,24,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,16.1,73,101900,93,1118,365,221,634,47,9900,30400,7300,680,40,2.1,2,2,32.2,77777,9,999999999,290,0.0440,0,88,999.000,999.0,99.0 +1987,1,24,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,16.7,69,101900,386,1412,381,405,604,124,29300,51400,15200,2400,40,4.1,4,4,32.2,77777,9,999999999,300,0.0440,0,88,999.000,999.0,99.0 +1987,1,24,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,16.7,62,102000,653,1412,392,487,530,162,42900,52400,18500,3330,30,3.6,5,5,32.2,77777,9,999999999,300,0.0440,0,88,999.000,999.0,99.0 +1987,1,24,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,17.2,62,101900,865,1412,419,320,179,193,33400,19100,21600,4660,50,5.2,9,9,32.2,1370,9,999999999,309,0.0440,0,88,999.000,999.0,99.0 +1987,1,24,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,16.7,62,101800,1007,1412,415,389,248,202,42400,26900,23200,5600,90,6.2,9,9,32.2,1370,9,999999999,300,0.0440,0,88,999.000,999.0,99.0 +1987,1,24,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,17.2,69,101700,1068,1412,410,448,87,384,49500,9000,42700,14170,10,4.1,9,9,32.2,1370,9,999999999,309,0.0440,0,88,999.000,999.0,99.0 +1987,1,24,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,16.7,62,101600,1046,1412,427,190,14,181,23200,1100,22400,8930,70,4.6,10,10,32.2,1370,9,999999999,300,0.0440,0,88,999.000,999.0,99.0 +1987,1,24,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,15.6,56,101600,941,1412,408,454,375,253,54900,40300,28000,6760,30,4.1,8,8,32.2,1370,9,999999999,279,0.0440,0,88,999.000,999.0,99.0 +1987,1,24,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,15.6,56,101600,760,1412,417,170,31,159,19400,3100,17700,5230,350,3.6,9,9,40.2,1370,9,999999999,279,0.0440,0,88,999.000,999.0,99.0 +1987,1,24,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,15.6,60,101700,516,1412,402,76,107,59,11200,10400,7300,1060,30,3.6,8,8,40.2,1370,9,999999999,279,0.0440,0,88,999.000,999.0,99.0 +1987,1,24,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,15.6,62,101700,227,1412,393,11,15,8,1300,1100,1100,170,30,5.7,7,7,40.2,1520,9,999999999,279,0.0440,0,88,999.000,999.0,99.0 +1987,1,24,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,16.1,66,101800,9,365,397,0,0,0,0,0,0,0,30,6.2,8,8,24.1,1370,9,999999999,290,0.0400,0,88,999.000,999.0,99.0 +1987,1,24,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,17.2,81,101900,0,0,395,0,0,0,0,0,0,0,50,2.6,9,9,16.1,1370,9,999999999,309,0.0400,0,88,999.000,999.0,99.0 +1987,1,24,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,15.6,71,101900,0,0,377,0,0,0,0,0,0,0,20,3.1,6,6,16.1,1370,9,999999999,279,0.0400,0,88,999.000,999.0,99.0 +1987,1,24,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,15.6,68,101900,0,0,380,0,0,0,0,0,0,0,40,2.6,6,6,16.1,1370,9,999999999,279,0.0400,0,88,999.000,999.0,99.0 +1987,1,24,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,16.7,76,101900,0,0,389,0,0,0,0,0,0,0,340,2.1,8,8,16.1,1370,9,999999999,300,0.0400,0,88,999.000,999.0,99.0 +1987,1,24,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,16.7,73,101900,0,0,386,0,0,0,0,0,0,0,50,3.1,7,7,24.1,1370,9,999999999,300,0.0400,0,88,999.000,999.0,99.0 +1987,1,25,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,16.7,73,101900,0,0,386,0,0,0,0,0,0,0,30,3.1,7,7,24.1,1370,9,999999999,300,0.0400,0,88,999.000,999.0,99.0 +1987,1,25,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,15.0,64,101900,0,0,382,0,0,0,0,0,0,0,40,4.6,6,6,24.1,1370,9,999999999,270,0.0400,0,88,999.000,999.0,99.0 +1987,1,25,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,15.0,66,101800,0,0,379,0,0,0,0,0,0,0,30,5.2,6,6,24.1,1370,9,999999999,270,0.0400,0,88,999.000,999.0,99.0 +1987,1,25,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,17.2,81,101800,0,0,387,0,0,0,0,0,0,0,30,4.6,8,8,16.1,760,9,999999999,309,0.0400,0,88,999.000,999.0,99.0 +1987,1,25,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,17.8,93,101800,0,0,378,0,0,0,0,0,0,0,0,0.0,8,8,16.1,760,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1987,1,25,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,16.7,87,101900,0,0,371,0,0,0,0,0,0,0,50,4.1,7,7,24.1,1370,9,999999999,300,0.0400,0,88,999.000,999.0,99.0 +1987,1,25,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,16.7,84,102000,0,0,388,13,11,11,0,0,0,0,80,3.6,9,9,24.1,1370,9,999999999,300,0.0650,0,88,999.000,999.0,99.0 +1987,1,25,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,17.8,93,102000,94,1117,378,82,68,63,7200,3400,6900,1310,310,1.5,8,8,11.3,700,9,999999999,320,0.0650,0,88,999.000,999.0,99.0 +1987,1,25,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,18.3,90,102000,388,1411,385,201,178,118,18100,15700,13700,2610,300,2.1,8,8,11.3,700,9,999999999,329,0.0650,0,88,999.000,999.0,99.0 +1987,1,25,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,18.9,90,102100,656,1411,397,316,188,200,31300,19000,22400,4870,20,2.6,9,9,4.8,610,9,999999999,340,0.0650,0,88,999.000,999.0,99.0 +1987,1,25,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,18.3,90,102100,868,1411,404,112,4,109,13700,300,13500,5400,40,5.7,10,10,3.2,550,9,999999999,329,0.0650,0,88,999.000,999.0,99.0 +1987,1,25,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,17.8,90,102100,1010,1411,400,199,6,194,23700,500,23400,9340,10,4.6,10,10,4.8,550,9,999999999,320,0.0650,0,88,999.000,999.0,99.0 +1987,1,25,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,17.8,90,101900,1072,1411,400,162,2,160,19800,100,19700,8110,10,3.6,10,10,8.0,550,9,999999999,320,0.0650,0,88,999.000,999.0,99.0 +1987,1,25,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,17.2,84,101800,1050,1411,403,157,6,153,19300,400,19000,7750,20,3.6,10,10,9.7,550,9,999999999,309,0.0650,0,88,999.000,999.0,99.0 +1987,1,25,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,15.6,71,101800,945,1411,387,332,377,129,41000,38500,15100,3500,320,4.1,8,8,16.1,610,9,999999999,279,0.0650,0,88,999.000,999.0,99.0 +1987,1,25,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,15.0,68,101800,764,1411,387,180,90,147,22000,9400,16900,3770,10,6.7,8,8,32.2,1370,9,999999999,270,0.0650,0,88,999.000,999.0,99.0 +1987,1,25,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,15.0,66,101800,520,1411,390,64,54,55,8700,5300,6700,1270,20,6.2,8,8,32.2,1370,9,999999999,270,0.0650,0,88,999.000,999.0,99.0 +1987,1,25,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,14.4,66,101900,231,1411,394,4,1,4,600,0,600,180,30,6.2,9,9,32.2,1370,9,999999999,259,0.0650,0,88,999.000,999.0,99.0 +1987,1,25,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,13.9,64,102000,10,388,385,0,0,0,0,0,0,0,350,5.2,8,8,24.1,1370,9,999999999,250,0.0400,0,88,999.000,999.0,99.0 +1987,1,25,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,13.3,63,102000,0,0,376,0,0,0,0,0,0,0,40,5.2,7,7,24.1,1220,9,999999999,240,0.0400,0,88,999.000,999.0,99.0 +1987,1,25,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,12.8,61,102100,0,0,381,0,0,0,0,0,0,0,40,6.2,8,8,16.1,1220,9,999999999,240,0.0400,0,88,999.000,999.0,99.0 +1987,1,25,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,12.8,61,102100,0,0,375,0,0,0,0,0,0,0,30,5.2,7,7,16.1,1220,9,999999999,240,0.0400,0,88,999.000,999.0,99.0 +1987,1,25,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,12.2,61,102100,0,0,371,0,0,0,0,0,0,0,30,5.2,7,7,16.1,1220,9,999999999,229,0.0400,0,88,999.000,999.0,99.0 +1987,1,25,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,11.1,59,102100,0,0,363,0,0,0,0,0,0,0,40,3.6,6,6,16.1,1370,9,999999999,209,0.0400,0,88,999.000,999.0,99.0 +1987,1,26,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,13.3,68,102100,0,0,384,0,0,0,0,0,0,0,20,4.6,9,9,16.1,700,9,999999999,240,0.0400,0,88,999.000,999.0,99.0 +1987,1,26,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,11.7,59,102100,0,0,377,0,0,0,0,0,0,0,30,6.2,8,8,16.1,700,9,999999999,220,0.0400,0,88,999.000,999.0,99.0 +1987,1,26,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,10.0,55,102100,0,0,358,0,0,0,0,0,0,0,20,6.2,5,5,24.1,77777,9,999999999,200,0.0400,0,88,999.000,999.0,99.0 +1987,1,26,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,11.1,59,102000,0,0,373,0,0,0,0,0,0,0,40,3.1,8,8,24.1,1370,9,999999999,209,0.0400,0,88,999.000,999.0,99.0 +1987,1,26,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,11.1,59,102000,0,0,367,0,0,0,0,0,0,0,30,5.2,7,7,24.1,1370,9,999999999,209,0.0400,0,88,999.000,999.0,99.0 +1987,1,26,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,11.1,59,102000,0,0,367,0,0,0,0,0,0,0,60,2.6,7,7,24.1,1370,9,999999999,209,0.0400,0,88,999.000,999.0,99.0 +1987,1,26,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,10.6,59,102000,0,0,354,41,72,32,0,0,0,0,40,3.6,4,4,24.1,77777,9,999999999,209,0.0180,0,88,999.000,999.0,99.0 +1987,1,26,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,9.4,51,102000,95,1117,355,158,277,82,10400,11700,9400,1980,20,4.1,3,3,32.2,77777,9,999999999,189,0.0180,0,88,999.000,999.0,99.0 +1987,1,26,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,10.6,49,102100,389,1411,378,258,249,141,21700,21600,15700,2990,10,6.7,7,7,32.2,910,9,999999999,209,0.0180,0,88,999.000,999.0,99.0 +1987,1,26,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,10.6,45,102100,658,1411,373,601,742,143,50300,71400,16900,2810,50,6.2,3,3,32.2,77777,9,999999999,209,0.0180,0,88,999.000,999.0,99.0 +1987,1,26,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,10.6,45,102100,871,1411,382,592,538,205,57400,55300,23100,4960,360,3.1,6,6,32.2,1520,9,999999999,209,0.0180,0,88,999.000,999.0,99.0 +1987,1,26,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,11.7,48,102000,1013,1411,394,721,612,255,74200,63500,28400,7450,60,6.7,8,8,32.2,910,9,999999999,220,0.0180,0,88,999.000,999.0,99.0 +1987,1,26,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,11.7,43,101900,1076,1411,397,597,460,254,65200,47900,28500,8230,50,6.2,7,7,32.2,910,9,999999999,220,0.0180,0,88,999.000,999.0,99.0 +1987,1,26,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,11.7,43,101800,1054,1411,392,520,449,219,60500,46800,25400,6750,60,7.7,6,6,32.2,910,9,999999999,220,0.0180,0,88,999.000,999.0,99.0 +1987,1,26,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,12.2,47,101800,949,1411,394,362,230,238,43100,24800,26400,6350,50,7.2,7,7,32.2,910,9,999999999,229,0.0180,0,88,999.000,999.0,99.0 +1987,1,26,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,12.2,50,101800,768,1411,395,243,187,174,30200,19700,19500,3910,40,7.2,8,8,32.2,1520,9,999999999,229,0.0180,0,88,999.000,999.0,99.0 +1987,1,26,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,10.6,46,101800,524,1411,379,59,32,54,7300,3000,6200,1700,20,5.2,6,6,32.2,1520,9,999999999,209,0.0180,0,88,999.000,999.0,99.0 +1987,1,26,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,10.0,48,101900,235,1411,370,12,33,7,1600,2300,1200,110,50,4.1,5,5,32.2,77777,9,999999999,200,0.0180,0,88,999.000,999.0,99.0 +1987,1,26,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,10.6,51,101900,11,388,375,0,0,0,0,0,0,0,60,4.6,7,7,24.1,1520,9,999999999,209,0.0400,0,88,999.000,999.0,99.0 +1987,1,26,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,10.6,53,102000,0,0,368,0,0,0,0,0,0,0,50,4.6,6,6,24.1,1370,9,999999999,209,0.0400,0,88,999.000,999.0,99.0 +1987,1,26,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,10.0,51,102000,0,0,362,0,0,0,0,0,0,0,50,5.2,4,4,24.1,77777,9,999999999,200,0.0400,0,88,999.000,999.0,99.0 +1987,1,26,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,11.7,57,102000,0,0,364,0,0,0,0,0,0,0,40,4.1,4,4,24.1,77777,9,999999999,220,0.0400,0,88,999.000,999.0,99.0 +1987,1,26,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,10.6,53,102000,0,0,365,0,0,0,0,0,0,0,70,5.2,5,5,24.1,77777,9,999999999,209,0.0400,0,88,999.000,999.0,99.0 +1987,1,26,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,11.7,57,102000,0,0,370,0,0,0,0,0,0,0,20,3.1,6,6,24.1,1520,9,999999999,220,0.0400,0,88,999.000,999.0,99.0 +1987,1,27,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,11.1,55,102000,0,0,360,0,0,0,0,0,0,0,40,4.6,3,3,24.1,77777,9,999999999,209,0.0400,0,88,999.000,999.0,99.0 +1987,1,27,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,11.7,59,102000,0,0,358,0,0,0,0,0,0,0,30,3.6,3,3,24.1,77777,9,999999999,220,0.0400,0,88,999.000,999.0,99.0 +1987,1,27,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,12.8,66,101900,0,0,356,0,0,0,0,0,0,0,30,2.6,3,3,24.1,77777,9,999999999,240,0.0400,0,88,999.000,999.0,99.0 +1987,1,27,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,13.3,68,101900,0,0,353,0,0,0,0,0,0,0,50,3.6,2,2,24.1,77777,9,999999999,240,0.0400,0,88,999.000,999.0,99.0 +1987,1,27,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,13.3,68,101800,0,0,357,0,0,0,0,0,0,0,60,3.6,3,3,24.1,77777,9,999999999,240,0.0400,0,88,999.000,999.0,99.0 +1987,1,27,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,13.9,76,101800,0,0,349,0,0,0,0,0,0,0,50,3.6,2,2,24.1,77777,9,999999999,250,0.0400,0,88,999.000,999.0,99.0 +1987,1,27,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,15.6,78,101900,0,0,368,42,56,36,0,0,0,0,50,4.6,6,6,24.1,1370,9,999999999,279,0.0360,0,88,999.000,999.0,99.0 +1987,1,27,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,15.0,76,101900,96,1140,355,242,655,59,11200,30300,8500,760,50,5.2,2,2,32.2,77777,9,999999999,270,0.0360,0,88,999.000,999.0,99.0 +1987,1,27,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,15.6,68,101900,391,1411,371,437,708,105,30200,59200,13700,1750,70,4.6,3,3,32.2,77777,9,999999999,279,0.0360,0,88,999.000,999.0,99.0 +1987,1,27,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,14.4,54,101900,660,1411,379,590,792,99,49700,77700,13200,2080,70,5.2,2,2,32.2,77777,9,999999999,259,0.0360,0,88,999.000,999.0,99.0 +1987,1,27,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,15.0,52,101900,873,1411,390,665,664,186,62100,66100,21000,4380,70,7.2,3,3,40.2,77777,9,999999999,270,0.0360,0,88,999.000,999.0,99.0 +1987,1,27,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,14.4,49,101800,1016,1411,402,611,507,224,63800,52800,25700,6520,50,6.7,6,6,40.2,910,9,999999999,259,0.0360,0,88,999.000,999.0,99.0 +1987,1,27,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,15.6,52,101700,1079,1411,403,761,711,229,81000,71700,26000,7280,70,6.7,6,6,40.2,1370,9,999999999,279,0.0360,0,88,999.000,999.0,99.0 +1987,1,27,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,16.1,52,101700,1058,1411,407,542,472,224,63000,49200,25900,6970,90,7.2,6,6,40.2,1370,9,999999999,279,0.0360,0,88,999.000,999.0,99.0 +1987,1,27,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,15.6,54,101600,953,1411,391,572,865,101,71200,86000,12900,2300,60,7.2,3,3,40.2,77777,9,999999999,279,0.0360,0,88,999.000,999.0,99.0 +1987,1,27,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,16.7,60,101700,772,1411,410,228,121,183,27700,12600,20700,4720,50,5.7,8,8,40.2,1370,9,999999999,300,0.0360,0,88,999.000,999.0,99.0 +1987,1,27,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,17.2,73,101700,528,1411,404,46,39,40,6500,3900,5000,920,70,3.1,9,9,24.1,1220,9,999999999,300,0.0360,0,88,999.000,999.0,99.0 +1987,1,27,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,16.7,73,101700,239,1411,381,9,4,8,1000,300,900,230,50,4.1,6,6,32.2,1220,9,999999999,300,0.0360,0,88,999.000,999.0,99.0 +1987,1,27,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,16.7,76,101700,12,411,369,0,0,0,0,0,0,0,60,5.2,3,3,24.1,77777,9,999999999,300,0.0400,0,88,999.000,999.0,99.0 +1987,1,27,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,16.7,76,101700,0,0,375,0,0,0,0,0,0,0,50,5.2,5,5,24.1,77777,9,999999999,300,0.0400,0,88,999.000,999.0,99.0 +1987,1,27,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,17.2,79,101800,0,0,379,0,0,0,0,0,0,0,70,3.1,6,6,24.1,1370,9,999999999,309,0.0400,0,88,999.000,999.0,99.0 +1987,1,27,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,17.8,84,101900,0,0,377,0,0,0,0,0,0,0,50,4.1,7,6,24.1,1370,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1987,1,27,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,17.8,84,101900,0,0,377,0,0,0,0,0,0,0,100,1.5,7,6,24.1,1370,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1987,1,27,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,16.7,84,101900,0,0,361,0,0,0,0,0,0,0,360,2.1,3,3,24.1,77777,9,999999999,300,0.0400,0,88,999.000,999.0,99.0 +1987,1,28,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,17.2,87,101900,0,0,358,0,0,0,0,0,0,0,10,1.5,2,2,24.1,77777,9,999999999,309,0.0400,0,88,999.000,999.0,99.0 +1987,1,28,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,17.2,90,101900,0,0,355,0,0,0,0,0,0,0,270,1.5,2,2,24.1,77777,9,999999999,309,0.0400,0,88,999.000,999.0,99.0 +1987,1,28,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,17.2,90,101800,0,0,378,0,0,0,0,0,0,0,300,1.5,8,8,24.1,1370,9,999999999,309,0.0400,0,88,999.000,999.0,99.0 +1987,1,28,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,16.7,87,101800,0,0,358,0,0,0,0,0,0,0,310,1.5,3,3,24.1,77777,9,999999999,300,0.0400,0,88,999.000,999.0,99.0 +1987,1,28,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,17.2,90,101800,0,0,364,0,0,0,0,0,0,0,310,1.5,5,5,24.1,77777,9,999999999,309,0.0400,0,88,999.000,999.0,99.0 +1987,1,28,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,16.7,87,101800,0,0,364,0,0,0,0,0,0,0,320,2.1,5,5,24.1,77777,9,999999999,300,0.0400,0,88,999.000,999.0,99.0 +1987,1,28,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,16.1,93,101900,0,0,341,52,263,21,0,0,0,0,320,2.1,1,1,24.1,77777,9,999999999,290,0.0410,0,88,999.000,999.0,99.0 +1987,1,28,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,16.1,84,101900,97,1140,354,213,562,55,10100,26500,7700,740,320,2.6,5,2,32.2,77777,9,999999999,290,0.0410,0,88,999.000,999.0,99.0 +1987,1,28,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,15.6,64,101900,393,1410,368,428,760,70,29100,65500,10800,1290,0,0.0,3,1,32.2,77777,9,999999999,279,0.0410,0,88,999.000,999.0,99.0 +1987,1,28,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,15.6,54,102000,663,1410,382,588,840,65,48300,81300,10000,1450,120,2.1,3,1,32.2,77777,9,999999999,279,0.0410,0,88,999.000,999.0,99.0 +1987,1,28,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,15.6,51,101900,876,1410,387,691,819,98,64700,82200,13500,2420,90,1.5,3,1,32.2,77777,9,999999999,279,0.0410,0,88,999.000,999.0,99.0 +1987,1,28,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,15.6,49,101900,1020,1410,395,740,804,123,74800,81100,16000,3490,10,2.6,4,2,32.2,77777,9,999999999,279,0.0410,0,88,999.000,999.0,99.0 +1987,1,28,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,15.6,46,101800,1083,1410,405,753,762,180,81700,77800,21700,5930,60,4.6,5,3,32.2,77777,9,999999999,279,0.0410,0,88,999.000,999.0,99.0 +1987,1,28,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,15.6,51,101700,1062,1410,411,465,325,245,52900,33900,27300,7730,40,3.6,8,7,32.2,1070,9,999999999,279,0.0410,0,88,999.000,999.0,99.0 +1987,1,28,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,15.6,51,101700,957,1410,411,406,387,195,49800,40200,22500,5170,50,5.2,7,7,32.2,7620,9,999999999,279,0.0410,0,88,999.000,999.0,99.0 +1987,1,28,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,16.1,56,101700,776,1410,401,256,305,142,33800,31100,16700,3080,60,6.7,6,6,40.2,1370,9,999999999,290,0.0410,0,88,999.000,999.0,99.0 +1987,1,28,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,16.7,60,101800,532,1410,392,95,222,58,16100,21200,8100,1050,40,6.2,4,4,40.2,77777,9,999999999,300,0.0410,0,88,999.000,999.0,99.0 +1987,1,28,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,16.1,64,101800,242,1410,380,13,31,9,1700,2200,1400,140,40,7.2,3,3,40.2,77777,9,999999999,290,0.0410,0,88,999.000,999.0,99.0 +1987,1,28,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,16.1,69,101800,13,435,374,0,0,0,0,0,0,0,50,4.6,3,3,24.1,77777,9,999999999,290,0.0400,0,88,999.000,999.0,99.0 +1987,1,28,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,16.7,71,101900,0,0,371,0,0,0,0,0,0,0,30,3.1,2,2,24.1,77777,9,999999999,300,0.0400,0,88,999.000,999.0,99.0 +1987,1,28,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,16.1,71,101900,0,0,368,0,0,0,0,0,0,0,40,4.1,2,2,24.1,77777,9,999999999,290,0.0400,0,88,999.000,999.0,99.0 +1987,1,28,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,16.1,73,101900,0,0,365,0,0,0,0,0,0,0,50,3.6,2,2,24.1,77777,9,999999999,290,0.0400,0,88,999.000,999.0,99.0 +1987,1,28,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,16.1,73,101900,0,0,365,0,0,0,0,0,0,0,60,4.1,2,2,24.1,77777,9,999999999,290,0.0400,0,88,999.000,999.0,99.0 +1987,1,28,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,16.1,73,101800,0,0,365,0,0,0,0,0,0,0,60,4.6,2,2,24.1,77777,9,999999999,290,0.0400,0,88,999.000,999.0,99.0 +1987,1,29,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,16.1,73,101800,0,0,353,0,0,0,0,0,0,0,70,3.6,0,0,24.1,77777,9,999999999,290,0.0400,0,88,999.000,999.0,99.0 +1987,1,29,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,16.1,73,101800,0,0,353,0,0,0,0,0,0,0,40,3.6,0,0,24.1,77777,9,999999999,290,0.0400,0,88,999.000,999.0,99.0 +1987,1,29,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,16.1,76,101800,0,0,351,0,0,0,0,0,0,0,50,3.1,0,0,24.1,77777,9,999999999,290,0.0400,0,88,999.000,999.0,99.0 +1987,1,29,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,16.7,79,101700,0,0,351,0,0,0,0,0,0,0,90,3.6,0,0,24.1,77777,9,999999999,300,0.0400,0,88,999.000,999.0,99.0 +1987,1,29,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,16.7,79,101700,0,0,351,0,0,0,0,0,0,0,50,3.6,0,0,24.1,77777,9,999999999,300,0.0400,0,88,999.000,999.0,99.0 +1987,1,29,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,16.7,81,101700,0,0,349,0,0,0,0,0,0,0,50,2.6,0,0,24.1,77777,9,999999999,290,0.0400,0,88,999.000,999.0,99.0 +1987,1,29,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,15.6,87,101700,0,0,337,57,310,20,0,0,0,0,60,1.5,0,0,24.1,77777,9,999999999,279,0.0390,0,88,999.000,999.0,99.0 +1987,1,29,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,16.7,79,101700,99,1140,363,223,611,51,10200,29500,7600,720,0,0.0,2,2,32.2,77777,9,999999999,300,0.0390,0,88,999.000,999.0,99.0 +1987,1,29,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,17.2,69,101700,395,1410,384,424,657,113,29600,54800,14200,1850,80,2.6,4,4,32.2,77777,9,999999999,309,0.0390,0,88,999.000,999.0,99.0 +1987,1,29,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,17.2,60,101700,665,1410,377,643,927,64,52700,89700,10200,1450,70,2.1,0,0,40.2,77777,9,999999999,309,0.0390,0,88,999.000,999.0,99.0 +1987,1,29,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,17.8,60,101700,880,1410,387,755,943,69,69100,93600,10500,1820,140,6.2,1,1,40.2,77777,9,999999999,309,0.0390,0,88,999.000,999.0,99.0 +1987,1,29,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,18.3,60,101600,1023,1410,383,816,963,74,81100,96300,11000,2220,130,4.6,0,0,40.2,77777,9,999999999,329,0.0390,0,88,999.000,999.0,99.0 +1987,1,29,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,17.8,58,101500,1087,1410,383,801,964,73,85600,96600,10900,2420,130,4.6,0,0,40.2,77777,9,999999999,309,0.0390,0,88,999.000,999.0,99.0 +1987,1,29,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,18.3,60,101400,1066,1410,383,698,927,68,80800,92900,10400,2230,120,4.1,0,0,40.2,77777,9,999999999,320,0.0390,0,88,999.000,999.0,99.0 +1987,1,29,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,18.3,60,101400,961,1410,383,552,895,59,70700,89400,9500,1790,160,2.6,0,0,40.2,77777,9,999999999,320,0.0390,0,88,999.000,999.0,99.0 +1987,1,29,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,18.3,60,101400,781,1410,383,348,806,44,52200,79500,8000,1290,100,2.1,0,0,40.2,77777,9,999999999,320,0.0390,0,88,999.000,999.0,99.0 +1987,1,29,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,17.2,54,101400,536,1410,385,126,576,28,26600,54400,5800,850,170,2.1,0,0,40.2,77777,9,999999999,300,0.0390,0,88,999.000,999.0,99.0 +1987,1,29,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,18.3,67,101400,246,1410,382,14,53,7,1900,4100,1200,150,160,1.5,2,1,32.2,77777,9,999999999,329,0.0390,0,88,999.000,999.0,99.0 +1987,1,29,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,17.8,67,101500,14,435,371,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1987,1,29,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,17.8,74,101500,0,0,375,0,0,0,0,0,0,0,0,0.0,2,2,24.1,77777,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1987,1,29,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,17.8,79,101600,0,0,376,0,0,0,0,0,0,0,340,2.1,4,4,24.1,77777,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1987,1,29,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,17.2,79,101600,0,0,370,0,0,0,0,0,0,0,360,1.5,3,3,24.1,77777,9,999999999,309,0.0400,0,88,999.000,999.0,99.0 +1987,1,29,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,17.8,81,101600,0,0,379,0,0,0,0,0,0,0,300,2.1,6,6,24.1,1370,9,999999999,309,0.0400,0,88,999.000,999.0,99.0 +1987,1,29,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,17.8,81,101600,0,0,384,0,0,0,0,0,0,0,60,1.5,7,7,24.1,1520,9,999999999,309,0.0400,0,88,999.000,999.0,99.0 +1987,1,30,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,17.8,87,101600,0,0,374,0,0,0,0,0,0,0,310,1.5,7,6,24.1,7620,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1987,1,30,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,17.2,84,101600,0,0,361,0,0,0,0,0,0,0,300,1.5,3,2,24.1,77777,9,999999999,300,0.0400,0,88,999.000,999.0,99.0 +1987,1,30,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,16.7,93,101500,0,0,349,0,0,0,0,0,0,0,300,1.5,5,2,24.1,77777,9,999999999,290,0.0400,0,88,999.000,999.0,99.0 +1987,1,30,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,17.2,90,101500,0,0,350,0,0,0,0,0,0,0,330,2.1,3,1,16.1,77777,9,999999999,300,0.0400,0,88,999.000,999.0,99.0 +1987,1,30,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,16.7,93,101500,0,0,345,0,0,0,0,0,0,0,0,0.0,3,1,16.1,77777,9,999999999,290,0.0400,0,88,999.000,999.0,99.0 +1987,1,30,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,17.2,93,101500,0,0,348,0,0,0,0,0,0,0,320,2.1,2,1,16.1,77777,9,999999999,300,0.0400,0,88,999.000,999.0,99.0 +1987,1,30,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,16.1,93,101500,0,0,335,49,210,25,0,0,0,0,0,0.0,0,0,11.3,77777,9,999999999,279,0.0760,0,88,999.000,999.0,99.0 +1987,1,30,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,17.2,90,101500,100,1139,344,230,635,50,10400,30900,7600,710,0,0.0,0,0,16.1,77777,9,999999999,300,0.0760,0,88,999.000,999.0,99.0 +1987,1,30,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,18.3,71,101500,398,1410,369,448,793,72,30500,68500,11100,1330,0,0.0,0,0,16.1,77777,9,999999999,329,0.0760,0,88,999.000,999.0,99.0 +1987,1,30,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,18.3,62,101500,668,1410,388,633,877,84,52200,85300,11700,1750,120,2.1,1,1,16.1,77777,9,999999999,320,0.0760,0,88,999.000,999.0,99.0 +1987,1,30,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,18.9,60,101500,883,1410,399,713,758,161,66800,76200,19000,3930,130,3.1,2,2,16.1,77777,9,999999999,329,0.0760,0,88,999.000,999.0,99.0 +1987,1,30,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,18.9,60,101400,1027,1410,399,767,819,134,77000,82300,16800,3750,180,4.1,2,2,16.1,77777,9,999999999,329,0.0760,0,88,999.000,999.0,99.0 +1987,1,30,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,18.9,63,101400,1091,1410,397,768,820,146,82200,82500,18100,4520,180,4.1,2,2,16.1,77777,9,999999999,340,0.0760,0,88,999.000,999.0,99.0 +1987,1,30,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,18.9,60,101300,1070,1410,394,665,842,90,76000,84200,11900,2660,160,4.1,1,1,24.1,77777,9,999999999,329,0.0760,0,88,999.000,999.0,99.0 +1987,1,30,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,20.0,67,101200,965,1410,393,522,771,94,64800,76800,12000,2300,180,4.1,1,1,24.1,77777,9,999999999,359,0.0760,0,88,999.000,999.0,99.0 +1987,1,30,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,18.9,65,101200,785,1410,381,339,731,61,49300,72000,9100,1580,140,2.6,0,0,16.1,77777,9,999999999,340,0.0760,0,88,999.000,999.0,99.0 +1987,1,30,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,18.9,65,101300,540,1410,394,111,354,49,20100,34000,7000,1030,170,2.6,2,2,16.1,77777,9,999999999,340,0.0760,0,88,999.000,999.0,99.0 +1987,1,30,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,19.4,74,101300,250,1410,380,10,26,6,1400,1900,1000,100,220,1.5,1,1,16.1,77777,9,999999999,350,0.0760,0,88,999.000,999.0,99.0 +1987,1,30,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,19.4,79,101300,15,458,375,0,0,0,0,0,0,0,170,2.1,1,1,16.1,77777,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1987,1,30,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,18.9,76,101400,0,0,367,0,0,0,0,0,0,0,0,0.0,0,0,16.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1987,1,30,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,19.4,79,101400,0,0,389,0,0,0,0,0,0,0,180,1.5,5,5,16.1,77777,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1987,1,30,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,19.4,79,101400,0,0,387,0,0,0,0,0,0,0,200,2.6,4,4,16.1,77777,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1987,1,30,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,19.4,79,101400,0,0,380,0,0,0,0,0,0,0,180,2.6,2,2,16.1,77777,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1987,1,30,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,18.9,74,101400,0,0,406,0,0,0,0,0,0,0,230,2.6,8,8,16.1,4270,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1987,1,31,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,19.4,79,101400,0,0,404,0,0,0,0,0,0,0,210,2.1,8,8,16.1,3660,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1987,1,31,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,18.9,76,101400,0,0,397,0,0,0,0,0,0,0,200,2.6,7,7,16.1,3050,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1987,1,31,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,20.6,82,101400,0,0,417,0,0,0,0,0,0,0,190,3.1,9,9,16.1,850,9,999999999,370,0.0400,0,88,999.000,999.0,99.0 +1987,1,31,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,21.1,85,101300,0,0,409,0,0,0,0,0,0,0,220,4.1,8,8,16.1,3050,9,999999999,379,0.0400,0,88,999.000,999.0,99.0 +1987,1,31,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,20.6,82,101400,0,0,402,0,0,0,0,0,0,0,270,3.1,8,7,24.1,3050,9,999999999,370,0.0400,0,88,999.000,999.0,99.0 +1987,1,31,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,21.1,85,101400,0,0,418,0,0,0,0,0,0,0,250,4.1,9,9,12.9,790,9,999999999,390,0.0400,0,88,999.000,999.0,99.0 +1987,1,31,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,19.4,90,101500,0,0,412,23,16,21,0,0,0,0,340,6.7,10,10,9.7,850,9,999999999,350,0.0300,0,88,999.000,999.0,99.0 +1987,1,31,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,19.4,93,101500,102,1163,409,70,10,67,7100,200,7100,1390,330,4.1,10,10,19.3,850,9,999999999,350,0.0300,0,88,999.000,999.0,99.0 +1987,1,31,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,18.9,87,101600,400,1409,411,175,5,173,18700,400,18600,4810,340,5.2,10,10,24.1,1220,9,999999999,340,0.0300,0,88,999.000,999.0,99.0 +1987,1,31,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,17.8,81,101700,671,1409,410,261,2,259,28800,200,28700,8910,340,5.7,10,10,24.1,1220,9,999999999,309,0.0300,0,88,999.000,999.0,99.0 +1987,1,31,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,17.2,79,101700,886,1409,409,432,10,424,47500,1100,46800,14100,310,4.6,10,10,24.1,1220,9,999999999,309,0.0300,0,88,999.000,999.0,99.0 +1987,1,31,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,17.8,87,101700,1030,1409,404,226,8,220,26900,700,26400,10420,350,4.1,10,10,24.1,1220,9,999999999,320,0.0300,0,88,999.000,999.0,99.0 +1987,1,31,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,17.2,71,101600,1095,1409,418,406,2,405,46500,200,46400,16390,340,3.6,10,10,24.1,1220,9,999999999,309,0.0300,0,88,999.000,999.0,99.0 +1987,1,31,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,16.1,62,101500,1074,1409,423,313,5,310,36600,500,36200,13690,330,5.2,10,10,24.1,1220,9,999999999,290,0.0300,0,88,999.000,999.0,99.0 +1987,1,31,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,15.6,60,101600,969,1409,423,280,3,278,32400,300,32200,12030,330,6.2,10,10,24.1,1220,9,999999999,279,0.0300,0,88,999.000,999.0,99.0 +1987,1,31,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,15.6,64,101600,789,1409,416,179,1,178,20800,100,20800,7780,330,5.2,10,10,24.1,1370,9,999999999,279,0.0300,0,88,999.000,999.0,99.0 +1987,1,31,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,15.0,60,101600,544,1409,418,79,1,78,9300,100,9300,3410,350,3.6,10,10,24.1,1370,9,999999999,270,0.0300,0,88,999.000,999.0,99.0 +1987,1,31,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,13.3,57,101700,253,1409,410,11,0,11,1400,0,1400,480,340,4.1,10,10,24.1,1370,9,999999999,240,0.0300,0,88,999.000,999.0,99.0 +1987,1,31,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,12.2,57,101700,16,458,402,0,0,0,0,0,0,0,340,3.1,10,10,24.1,1370,9,999999999,229,0.0400,0,88,999.000,999.0,99.0 +1987,1,31,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,13.3,63,101800,0,0,401,0,0,0,0,0,0,0,340,2.1,10,10,24.1,1370,9,999999999,240,0.0400,0,88,999.000,999.0,99.0 +1987,1,31,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,13.9,66,101800,0,0,402,0,0,0,0,0,0,0,340,1.5,10,10,24.1,1370,9,999999999,250,0.0400,0,88,999.000,999.0,99.0 +1987,1,31,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,14.3,61,101800,0,0,402,0,0,0,0,0,0,0,360,1.6,10,10,24.1,1370,9,999999999,240,0.0400,0,88,999.000,999.0,99.0 +1987,1,31,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,14.7,59,101800,0,0,392,0,0,0,0,0,0,0,340,1.7,9,9,24.1,1370,9,999999999,229,0.0400,0,88,999.000,999.0,99.0 +1987,1,31,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,15.1,57,101800,0,0,392,0,0,0,0,0,0,0,20,1.8,9,9,24.1,1370,9,999999999,229,0.0400,0,88,999.000,999.0,99.0 +1995,2,1,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,15.5,73,101600,0,0,362,0,0,0,0,0,0,0,360,1.8,2,2,19.2,77777,9,999999999,270,0.0980,0,88,0.120,0.0,1.0 +1995,2,1,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,15.9,76,101600,0,0,366,0,0,0,0,0,0,0,300,1.9,3,3,24.0,77777,9,999999999,270,0.0980,0,88,0.120,0.0,1.0 +1995,2,1,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,16.3,73,101500,0,0,358,0,0,0,0,0,0,0,320,2.0,1,1,24.0,77777,9,999999999,270,0.0980,0,88,0.120,0.0,1.0 +1995,2,1,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,16.7,78,101500,0,0,358,0,0,0,0,0,0,0,280,2.1,1,1,24.0,77777,9,999999999,270,0.0980,0,88,0.120,0.0,1.0 +1995,2,1,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,17.2,78,101500,0,0,361,0,0,0,0,0,0,0,270,2.6,1,1,24.0,77777,9,999999999,270,0.0980,0,88,0.120,0.0,1.0 +1995,2,1,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,16.7,78,101500,0,0,358,0,0,0,0,0,0,0,260,2.6,1,1,24.0,77777,9,999999999,259,0.0980,0,88,0.120,0.0,1.0 +1995,2,1,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,17.2,81,101500,0,0,359,0,0,0,0,0,0,0,290,2.6,1,1,24.0,77777,9,999999999,259,0.0980,0,88,0.120,0.0,1.0 +1995,2,1,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,17.8,79,101500,103,1162,373,28,51,23,3000,2300,2800,400,270,2.6,3,3,32.0,77777,9,999999999,259,0.0980,0,88,0.120,0.0,1.0 +1995,2,1,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,17.8,67,101500,403,1409,383,203,402,88,21400,35000,11400,1630,280,3.6,2,2,32.0,77777,9,999999999,259,0.0980,0,88,0.120,0.0,1.0 +1995,2,1,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,17.8,60,101600,674,1409,399,410,538,152,43600,53600,17900,3130,250,4.1,4,4,32.0,77777,9,999999999,259,0.0980,0,88,0.120,0.0,1.0 +1995,2,1,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,17.8,55,101500,890,1409,401,544,572,182,56600,57200,20400,4400,250,4.1,2,2,32.0,77777,9,999999999,250,0.0980,0,88,0.120,0.0,1.0 +1995,2,1,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,18.9,58,101400,1034,1409,407,680,647,204,71400,65400,23300,6050,250,5.2,3,3,32.0,77777,9,999999999,250,0.0980,0,88,0.120,0.0,1.0 +1995,2,1,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,17.2,53,101300,1099,1409,401,763,753,175,81700,77100,21400,5980,240,5.2,2,2,32.0,77777,9,999999999,250,0.0980,0,88,0.120,0.0,1.0 +1995,2,1,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,17.2,53,101300,1078,1409,404,756,730,197,80100,74200,23100,6380,260,5.7,3,3,32.0,77777,9,999999999,250,0.0980,0,88,0.120,0.0,1.0 +1995,2,1,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,17.8,56,101200,974,1409,398,693,733,186,72900,74000,21600,5050,230,6.2,2,2,32.0,77777,9,999999999,250,0.0980,0,88,0.120,0.0,1.0 +1995,2,1,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,17.2,54,101200,793,1409,401,439,442,190,46700,45000,21200,4280,260,6.7,3,3,32.0,77777,9,999999999,250,0.0980,0,88,0.120,0.0,1.0 +1995,2,1,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,17.8,58,101200,548,1409,395,311,484,122,32900,46200,14800,2360,250,4.1,2,2,32.0,77777,9,999999999,240,0.0980,0,88,0.120,0.0,1.0 +1995,2,1,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,18.9,71,101300,257,1409,389,113,277,63,11800,19900,8100,1150,230,4.1,3,3,24.0,77777,9,999999999,240,0.0980,0,88,0.120,0.0,1.0 +1995,2,1,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,18.3,74,101300,17,481,378,3,9,3,0,0,0,0,260,4.1,2,2,24.0,77777,9,999999999,240,0.0980,0,88,0.120,0.0,1.0 +1995,2,1,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,18.9,76,101400,0,0,403,0,0,0,0,0,0,0,260,3.1,8,8,19.2,1372,9,999999999,240,0.0980,0,88,0.120,0.0,1.0 +1995,2,1,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,18.9,79,101400,0,0,394,0,0,0,0,0,0,0,360,2.6,7,7,19.2,1676,9,999999999,240,0.0980,0,88,0.120,0.0,1.0 +1995,2,1,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,18.3,84,101400,0,0,371,0,0,0,0,0,0,0,30,2.6,3,3,19.2,77777,9,999999999,229,0.0980,0,88,0.120,0.0,1.0 +1995,2,1,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,17.8,81,101300,0,0,367,0,0,0,0,0,0,0,60,2.6,2,2,19.2,77777,9,999999999,229,0.0980,0,88,0.120,0.0,1.0 +1995,2,1,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,18.3,84,101300,0,0,362,0,0,0,0,0,0,0,40,1.5,1,1,19.2,77777,9,999999999,229,0.0980,0,88,0.120,0.0,1.0 +1995,2,2,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,17.8,87,101400,0,0,365,0,0,0,0,0,0,0,300,3.6,3,3,24.0,77777,9,999999999,229,0.0990,0,88,0.120,0.0,1.0 +1995,2,2,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,18.3,87,101300,0,0,365,0,0,0,0,0,0,0,310,2.1,2,2,24.0,77777,9,999999999,229,0.0990,0,88,0.120,0.0,1.0 +1995,2,2,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,17.8,84,101300,0,0,368,0,0,0,0,0,0,0,280,2.1,3,3,24.0,77777,9,999999999,229,0.0990,0,88,0.120,0.0,1.0 +1995,2,2,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,18.3,90,101300,0,0,350,0,0,0,0,0,0,0,260,2.1,0,0,24.0,77777,9,999999999,229,0.0990,0,88,0.120,0.0,1.0 +1995,2,2,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,17.8,93,101300,0,0,345,0,0,0,0,0,0,0,0,0.0,0,0,24.0,77777,9,999999999,229,0.0990,0,88,0.120,0.0,1.0 +1995,2,2,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,17.2,93,101300,0,0,341,0,0,0,0,0,0,0,330,1.5,0,0,24.0,77777,9,999999999,229,0.0990,0,88,0.120,0.0,1.0 +1995,2,2,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,16.7,90,101300,0,0,347,0,0,0,0,0,0,0,0,0.0,1,1,24.0,77777,9,999999999,229,0.0990,0,88,0.120,0.0,1.0 +1995,2,2,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,17.2,90,101400,105,1185,350,43,287,18,4600,17500,3000,370,0,0.0,1,1,32.0,77777,9,999999999,229,0.0990,0,88,0.120,0.0,1.0 +1995,2,2,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,17.8,73,101400,405,1408,370,230,641,46,24200,57000,7700,960,0,0.0,1,1,32.0,77777,9,999999999,229,0.0990,0,88,0.120,0.0,1.0 +1995,2,2,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,18.3,66,101500,677,1408,387,441,739,86,46100,72000,11400,1800,220,2.1,2,2,32.0,77777,9,999999999,229,0.0990,0,88,0.120,0.0,1.0 +1995,2,2,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,18.3,60,101500,893,1408,400,634,778,141,67400,78800,17300,3550,210,3.1,3,3,32.0,77777,9,999999999,229,0.0990,0,88,0.120,0.0,1.0 +1995,2,2,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,19.4,64,101400,1038,1408,397,505,518,123,55100,53500,15500,3870,230,3.6,2,2,32.0,77777,9,999999999,229,0.0990,0,88,0.120,0.0,1.0 +1995,2,2,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,18.3,58,101300,1103,1408,403,725,717,163,78000,73600,20200,5660,230,4.6,3,3,32.0,77777,9,999999999,229,0.0990,0,88,0.120,0.0,1.0 +1995,2,2,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,18.3,58,101200,1082,1408,399,785,859,124,83900,87000,16900,3950,270,4.1,2,2,32.0,77777,9,999999999,229,0.0990,0,88,0.120,0.0,1.0 +1995,2,2,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,18.3,58,101200,978,1408,403,671,782,128,70600,78400,15900,3340,250,5.7,3,3,32.0,77777,9,999999999,229,0.0990,0,88,0.120,0.0,1.0 +1995,2,2,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,18.3,60,101100,797,1408,391,564,878,67,59300,86600,10100,1660,240,5.2,1,1,32.0,77777,9,999999999,229,0.0990,0,88,0.120,0.0,1.0 +1995,2,2,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,17.8,62,101200,552,1408,384,333,682,66,34900,64600,9500,1370,250,4.6,1,1,32.0,77777,9,999999999,229,0.0990,0,88,0.120,0.0,1.0 +1995,2,2,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,17.2,64,101200,261,1408,378,127,510,33,13200,39700,5800,670,260,5.7,1,1,32.0,77777,9,999999999,229,0.0990,0,88,0.120,0.0,1.0 +1995,2,2,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,17.8,73,101300,18,505,370,5,61,3,0,0,0,0,280,3.6,1,1,24.0,77777,9,999999999,240,0.0990,0,88,0.120,0.0,1.0 +1995,2,2,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,17.8,76,101300,0,0,360,0,0,0,0,0,0,0,290,2.6,0,0,19.2,77777,9,999999999,240,0.0990,0,88,0.120,0.0,1.0 +1995,2,2,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,17.2,73,101400,0,0,360,0,0,0,0,0,0,0,270,2.6,0,0,16.0,77777,9,999999999,240,0.0990,0,88,0.120,0.0,1.0 +1995,2,2,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,17.8,76,101400,0,0,367,0,0,0,0,0,0,0,270,3.1,1,1,16.0,77777,9,999999999,240,0.0990,0,88,0.120,0.0,1.0 +1995,2,2,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,17.8,79,101400,0,0,358,0,0,0,0,0,0,0,250,3.1,0,0,16.0,77777,9,999999999,240,0.0990,0,88,0.120,0.0,1.0 +1995,2,2,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,17.2,78,101400,0,0,354,0,0,0,0,0,0,0,290,1.5,0,0,24.0,77777,9,999999999,240,0.0990,0,88,0.120,0.0,1.0 +1995,2,3,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,16.7,81,101300,0,0,355,0,0,0,0,0,0,0,0,0.0,1,1,24.0,77777,9,999999999,240,0.1000,0,88,0.120,0.0,1.0 +1995,2,3,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,16.7,84,101300,0,0,361,0,0,0,0,0,0,0,0,0.0,3,3,24.0,77777,9,999999999,240,0.1000,0,88,0.120,0.0,1.0 +1995,2,3,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,16.7,81,101300,0,0,360,0,0,0,0,0,0,0,330,1.5,2,2,24.0,77777,9,999999999,240,0.1000,0,88,0.120,0.0,1.0 +1995,2,3,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,17.8,84,101300,0,0,368,0,0,0,0,0,0,0,270,2.6,3,3,24.0,77777,9,999999999,240,0.1000,0,88,0.120,0.0,1.0 +1995,2,3,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,17.2,87,101200,0,0,358,0,0,0,0,0,0,0,0,0.0,2,2,24.0,77777,9,999999999,240,0.1000,0,88,0.120,0.0,1.0 +1995,2,3,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,17.2,87,101300,0,0,353,0,0,0,0,0,0,0,320,2.6,1,1,24.0,77777,9,999999999,240,0.1000,0,88,0.120,0.0,1.0 +1995,2,3,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,16.7,90,101300,0,0,352,0,0,0,0,0,0,0,0,0.0,2,2,24.0,77777,9,999999999,240,0.1000,0,88,0.120,0.0,1.0 +1995,2,3,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,18.9,82,101300,107,1185,377,41,212,21,4200,11700,3100,390,360,2.1,3,3,24.0,77777,9,999999999,240,0.1000,0,88,0.120,0.0,1.0 +1995,2,3,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,19.4,67,101300,408,1408,404,213,335,116,22500,29800,13800,2330,240,3.1,5,5,24.0,77777,9,999999999,250,0.1000,0,88,0.120,0.0,1.0 +1995,2,3,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,20.0,69,101400,680,1408,405,364,488,127,39400,48800,15700,2580,240,3.1,5,5,24.0,77777,9,999999999,250,0.1000,0,88,0.120,0.0,1.0 +1995,2,3,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,20.6,65,101400,896,1408,415,468,515,140,49800,52200,16400,3540,220,5.2,5,5,32.0,77777,9,999999999,250,0.1000,0,88,0.120,0.0,1.0 +1995,2,3,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,21.1,69,101300,1042,1408,428,494,241,315,53700,26000,34300,9720,250,4.6,8,8,32.0,7010,9,999999999,250,0.1000,0,88,0.120,0.0,1.0 +1995,2,3,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,20.6,63,101200,1107,1408,427,490,239,302,53900,25900,33500,10160,260,5.7,7,7,32.0,7010,9,999999999,250,0.1000,0,88,0.120,0.0,1.0 +1995,2,3,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,20.6,69,101100,1086,1408,424,455,284,236,50900,30900,27000,7460,230,4.6,8,8,32.0,2743,9,999999999,250,0.1000,0,88,0.120,0.0,1.0 +1995,2,3,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,18.3,55,101100,982,1408,405,674,827,97,70100,82400,12400,2390,260,6.2,2,2,32.0,77777,9,999999999,250,0.1000,0,88,0.120,0.0,1.0 +1995,2,3,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,17.2,53,101100,801,1408,404,439,585,106,47100,59100,13300,2500,260,6.7,3,3,32.0,77777,9,999999999,250,0.1000,0,88,0.120,0.0,1.0 +1995,2,3,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,17.8,58,101100,556,1408,395,327,600,90,34200,56900,11700,1780,250,5.7,2,2,32.0,77777,9,999999999,250,0.1000,0,88,0.120,0.0,1.0 +1995,2,3,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,18.9,69,101200,264,1408,395,140,470,52,14300,34900,7700,920,260,4.1,4,4,32.0,77777,9,999999999,250,0.1000,0,88,0.120,0.0,1.0 +1995,2,3,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,19.4,76,101300,19,505,428,2,0,2,0,0,0,0,270,4.1,10,10,16.0,1676,9,999999999,259,0.1000,0,88,0.120,0.0,1.0 +1995,2,3,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,19.4,79,101400,0,0,424,0,0,0,0,0,0,0,340,5.2,10,10,16.0,1676,9,999999999,259,0.1000,0,88,0.120,0.0,1.0 +1995,2,3,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,20.6,93,101400,0,0,390,0,0,0,0,0,0,0,80,1.5,7,7,16.0,2743,9,999999999,259,0.1000,0,88,0.120,0.0,1.0 +1995,2,3,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,20.6,93,101500,0,0,397,0,0,0,0,0,0,0,340,2.1,8,8,16.0,2134,9,999999999,259,0.1000,0,88,0.120,0.0,1.0 +1995,2,3,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,18.9,84,101500,0,0,366,0,0,0,0,0,0,0,360,3.1,1,1,16.0,77777,9,999999999,259,0.1000,0,88,0.120,0.0,1.0 +1995,2,3,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,18.3,84,101500,0,0,371,0,0,0,0,0,0,0,50,3.1,3,3,24.0,77777,9,999999999,259,0.1000,0,88,0.120,0.0,1.0 +1995,2,4,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,18.3,84,101500,0,0,371,0,0,0,0,0,0,0,330,3.6,3,3,24.0,77777,9,999999999,259,0.1000,0,88,0.120,0.0,1.0 +1995,2,4,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,18.3,87,101400,0,0,382,0,0,0,0,0,0,0,340,2.1,7,7,24.0,2438,9,999999999,259,0.1000,0,88,0.120,0.0,1.0 +1995,2,4,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,18.3,87,101400,0,0,396,0,0,0,0,0,0,0,280,2.1,9,9,24.0,2438,9,999999999,259,0.1000,0,88,0.120,0.0,1.0 +1995,2,4,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,18.3,87,101400,0,0,396,0,0,0,0,0,0,0,270,2.1,9,9,24.0,2438,9,999999999,259,0.1000,0,88,0.120,0.0,1.0 +1995,2,4,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,18.3,87,101400,0,0,396,0,0,0,0,0,0,0,310,2.1,9,9,24.0,2438,9,999999999,270,0.1000,0,88,0.120,0.0,1.0 +1995,2,4,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,18.3,87,101500,0,0,382,0,0,0,0,0,0,0,320,2.6,7,7,24.0,2438,9,999999999,270,0.1000,0,88,0.120,0.0,1.0 +1995,2,4,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,17.8,87,101500,0,0,384,0,0,0,0,0,0,0,310,2.6,8,8,24.0,2438,9,999999999,270,0.1000,0,88,0.120,0.0,1.0 +1995,2,4,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,18.3,81,101600,109,1185,388,29,22,26,3100,1400,3000,650,320,2.6,7,7,24.0,2438,9,999999999,270,0.1000,0,88,0.120,0.0,1.0 +1995,2,4,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,18.3,74,101600,411,1408,385,186,293,100,19800,26200,12200,1940,340,2.6,8,4,24.0,77777,9,999999999,270,0.1000,0,88,0.120,0.0,1.0 +1995,2,4,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,17.8,58,101600,683,1408,430,166,43,145,18300,4200,16200,4580,20,2.6,9,9,24.0,2591,9,999999999,270,0.1000,0,88,0.120,0.0,1.0 +1995,2,4,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,17.2,62,101600,900,1408,419,289,69,244,31800,7000,27300,8390,40,5.2,9,9,24.0,2591,9,999999999,270,0.1000,0,88,0.120,0.0,1.0 +1995,2,4,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,17.8,56,101600,1046,1408,417,648,395,355,70000,42600,38200,11230,70,5.2,7,7,24.0,2591,9,999999999,270,0.1000,0,88,0.120,0.0,1.0 +1995,2,4,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,16.7,54,101500,1111,1408,428,530,78,468,58200,8100,51800,17420,50,4.6,9,9,24.0,2286,9,999999999,279,0.1000,0,88,0.120,0.0,1.0 +1995,2,4,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,16.7,56,101400,1091,1408,425,419,87,350,46000,8900,39100,13520,60,5.2,9,9,32.0,2438,9,999999999,279,0.1000,0,88,0.120,0.0,1.0 +1995,2,4,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,17.2,56,101400,986,1408,429,361,68,313,39700,7000,34800,11100,50,6.7,9,9,32.0,2743,9,999999999,279,0.1000,0,88,0.120,0.0,1.0 +1995,2,4,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,16.7,58,101400,805,1408,422,432,260,283,46800,27000,31300,7470,40,6.2,9,9,32.0,1372,9,999999999,279,0.1000,0,88,0.120,0.0,1.0 +1995,2,4,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,16.7,62,101500,560,1408,415,108,44,91,12000,4200,10300,2800,40,6.2,9,9,32.0,2438,9,999999999,279,0.1000,0,88,0.120,0.0,1.0 +1995,2,4,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,16.7,66,101500,268,1408,386,95,139,69,10100,10200,8100,1310,30,5.7,5,5,32.0,77777,9,999999999,279,0.1000,0,88,0.120,0.0,1.0 +1995,2,4,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,17.2,73,101600,20,528,378,3,5,3,400,200,400,60,40,4.6,4,4,32.0,77777,9,999999999,279,0.1000,0,88,0.120,0.0,1.0 +1995,2,4,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,17.2,76,101600,0,0,386,0,0,0,0,0,0,0,360,4.1,7,7,24.0,2896,9,999999999,279,0.1000,0,88,0.120,0.0,1.0 +1995,2,4,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,17.2,73,101700,0,0,395,0,0,0,0,0,0,0,10,3.6,8,8,16.0,2896,9,999999999,290,0.1000,0,88,0.120,0.0,1.0 +1995,2,4,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,17.2,76,101700,0,0,376,0,0,0,0,0,0,0,90,5.2,4,4,16.0,77777,9,999999999,290,0.1000,0,88,0.120,0.0,1.0 +1995,2,4,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,17.2,76,101700,0,0,373,0,0,0,0,0,0,0,50,3.6,3,3,16.0,77777,9,999999999,290,0.1000,0,88,0.120,0.0,1.0 +1995,2,4,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,17.2,76,101600,0,0,364,0,0,0,0,0,0,0,60,3.6,1,1,19.2,77777,9,999999999,290,0.1000,0,88,0.120,0.0,1.0 +1995,2,5,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,17.2,76,101600,0,0,412,0,0,0,0,0,0,0,60,3.6,10,10,16.0,1829,9,999999999,290,0.1010,0,88,0.120,0.0,1.0 +1995,2,5,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,17.2,76,101500,0,0,392,0,0,0,0,0,0,0,60,2.1,8,8,19.2,2134,9,999999999,290,0.1010,0,88,0.120,0.0,1.0 +1995,2,5,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,17.8,79,101400,0,0,413,0,0,0,0,0,0,0,50,2.1,10,10,16.0,1676,9,999999999,290,0.1010,0,88,0.120,0.0,1.0 +1995,2,5,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,17.8,79,101400,0,0,379,0,0,0,0,0,0,0,60,1.5,5,5,19.2,77777,9,999999999,290,0.1010,0,88,0.120,0.0,1.0 +1995,2,5,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,17.8,84,101400,0,0,377,0,0,0,0,0,0,0,0,0.0,6,6,19.2,2438,9,999999999,279,0.1010,0,88,0.120,0.0,1.0 +1995,2,5,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,17.8,81,101400,0,0,376,0,0,0,0,0,0,0,60,2.1,5,5,19.2,77777,9,999999999,279,0.1010,0,88,0.120,0.0,1.0 +1995,2,5,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,17.8,79,101400,0,0,387,0,0,0,0,0,0,0,80,3.1,7,7,19.2,2438,9,999999999,279,0.1010,0,88,0.120,0.0,1.0 +1995,2,5,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,18.9,76,101500,111,1208,424,18,0,18,2100,0,2100,670,130,6.7,10,10,24.0,1341,9,999999999,279,0.1010,0,88,0.120,0.0,1.0 +1995,2,5,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,18.9,71,101500,413,1407,430,67,0,67,7800,0,7800,2720,130,7.7,10,10,19.2,1341,9,999999999,270,0.1010,0,88,0.120,0.0,1.0 +1995,2,5,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,20.0,74,101500,686,1407,423,194,92,149,21600,9500,17000,3680,130,6.7,10,9,24.0,1524,9,999999999,270,0.1010,0,88,0.120,0.0,1.0 +1995,2,5,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,21.7,94,101500,904,1407,424,186,0,186,22000,0,22000,8610,200,3.6,10,10,8.0,823,9,999999999,270,0.1010,0,88,0.120,3.0,1.0 +1995,2,5,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,21.1,96,101500,1050,1407,417,222,0,222,26500,0,26500,10570,170,6.2,10,10,11.2,1219,9,999999999,270,0.1010,0,88,0.120,14.0,1.0 +1995,2,5,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,21.1,93,101400,1115,1407,420,238,0,238,28500,0,28500,11410,180,4.1,10,10,11.2,1158,9,999999999,259,0.1010,0,88,0.120,1.0,1.0 +1995,2,5,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,20.6,74,101300,1095,1407,439,233,0,233,27900,0,27900,11160,210,5.2,10,10,16.0,2134,9,999999999,259,0.1010,0,88,0.120,0.0,1.0 +1995,2,5,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,20.6,74,101200,991,1407,439,208,0,208,24700,0,24700,9810,210,4.6,10,10,32.0,1981,9,999999999,259,0.1010,0,88,0.120,0.0,1.0 +1995,2,5,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,21.1,71,101200,809,1407,425,439,229,307,47400,23700,33700,8120,230,5.2,8,8,32.0,2134,9,999999999,259,0.1010,0,88,0.120,0.0,1.0 +1995,2,5,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,20.6,72,101300,564,1407,396,344,565,117,35300,53000,14000,2220,240,6.2,2,2,32.0,77777,9,999999999,250,0.1010,0,88,0.120,0.0,1.0 +1995,2,5,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,20.6,82,101300,271,1407,394,93,109,72,10100,8400,8500,1550,260,5.2,5,5,32.0,77777,9,999999999,250,0.1010,0,88,0.120,0.0,1.0 +1995,2,5,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,18.3,76,101400,22,528,408,3,0,3,400,0,400,120,250,7.7,9,9,24.0,2134,9,999999999,250,0.1010,0,88,0.120,0.0,1.0 +1995,2,5,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,16.7,60,101400,0,0,418,0,0,0,0,0,0,0,240,4.6,9,9,16.0,1981,9,999999999,240,0.1010,0,88,0.120,0.0,1.0 +1995,2,5,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,20.0,79,101500,0,0,417,0,0,0,0,0,0,0,240,4.6,9,9,16.0,2743,9,999999999,240,0.1010,0,88,0.120,0.0,1.0 +1995,2,5,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,20.6,79,101500,0,0,420,0,0,0,0,0,0,0,240,4.6,9,9,16.0,2438,9,999999999,240,0.1010,0,88,0.120,0.0,1.0 +1995,2,5,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,19.4,87,101500,0,0,415,0,0,0,0,0,0,0,270,5.2,10,10,16.0,1676,9,999999999,240,0.1010,0,88,0.120,0.0,1.0 +1995,2,5,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,19.4,81,101500,0,0,421,0,0,0,0,0,0,0,280,7.2,10,10,16.0,1524,9,999999999,229,0.1010,0,88,0.120,0.0,1.0 +1995,2,6,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,19.4,81,101500,0,0,387,0,0,0,0,0,0,0,260,6.7,5,5,16.0,77777,9,999999999,229,0.1020,0,88,0.120,0.0,1.0 +1995,2,6,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,19.4,84,101400,0,0,374,0,0,0,0,0,0,0,240,4.1,2,2,19.2,77777,9,999999999,229,0.1020,0,88,0.120,0.0,1.0 +1995,2,6,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,18.9,82,101300,0,0,383,0,0,0,0,0,0,0,270,4.6,5,5,19.2,77777,9,999999999,229,0.1020,0,88,0.120,0.0,1.0 +1995,2,6,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,18.9,82,101400,0,0,391,0,0,0,0,0,0,0,290,4.1,7,7,16.0,1676,9,999999999,220,0.1020,0,88,0.120,0.0,1.0 +1995,2,6,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,18.9,79,101400,0,0,400,0,0,0,0,0,0,0,240,3.6,8,8,16.0,2134,9,999999999,220,0.1020,0,88,0.120,0.0,1.0 +1995,2,6,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,18.9,79,101400,0,0,377,0,0,0,0,0,0,0,260,7.2,2,2,19.2,77777,9,999999999,220,0.1020,0,88,0.120,0.0,1.0 +1995,2,6,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,17.8,79,101500,0,0,373,0,0,0,0,0,0,0,340,4.1,3,3,19.2,77777,9,999999999,209,0.1020,0,88,0.120,0.0,1.0 +1995,2,6,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,15.0,61,101500,113,1207,372,38,153,24,4200,7800,3400,420,320,6.2,2,2,32.0,77777,9,999999999,209,0.1020,0,88,0.120,0.0,1.0 +1995,2,6,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,12.8,48,101600,416,1407,381,199,316,105,20600,27800,12400,1980,310,7.7,3,3,32.0,77777,9,999999999,209,0.1020,0,88,0.120,0.0,1.0 +1995,2,6,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,15.0,61,101700,690,1407,404,244,81,204,26800,8000,22800,6090,320,10.3,9,9,24.0,1280,9,999999999,209,0.1020,0,88,0.120,0.0,1.0 +1995,2,6,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,13.3,50,101700,907,1407,391,653,732,181,68300,73400,20800,4490,340,10.3,6,6,32.0,1676,9,999999999,200,0.1020,0,88,0.120,0.0,1.0 +1995,2,6,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,11.1,43,101600,1054,1407,375,688,653,199,72700,66200,22900,6160,320,11.8,2,2,32.0,77777,9,999999999,200,0.1020,0,88,0.120,0.0,1.0 +1995,2,6,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,12.2,45,101500,1119,1407,383,711,590,241,74500,59500,27000,8350,350,10.3,3,3,32.0,77777,9,999999999,200,0.1020,0,88,0.120,0.0,1.0 +1995,2,6,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,10.6,42,101400,1099,1407,375,806,838,151,84700,84200,18600,4740,320,9.8,2,2,32.0,77777,9,999999999,189,0.1020,0,88,0.120,0.0,1.0 +1995,2,6,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,10.6,42,101400,995,1407,378,693,842,97,72000,83900,12500,2440,300,8.2,3,3,32.0,77777,9,999999999,189,0.1020,0,88,0.120,0.0,1.0 +1995,2,6,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,10.6,43,101400,814,1407,367,537,797,76,56200,78600,10600,1780,20,8.8,1,1,32.0,77777,9,999999999,189,0.1020,0,88,0.120,0.0,1.0 +1995,2,6,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,10.0,44,101500,568,1407,370,316,370,167,33600,36600,18800,3550,350,7.7,3,3,32.0,77777,9,999999999,189,0.1020,0,88,0.120,0.0,1.0 +1995,2,6,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,10.6,49,101600,275,1407,361,137,430,53,14000,32500,7600,940,360,6.2,2,2,32.0,77777,9,999999999,179,0.1020,0,88,0.120,0.0,1.0 +1995,2,6,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,11.7,57,101600,23,551,361,5,47,3,600,2000,500,60,360,5.2,3,3,24.0,77777,9,999999999,179,0.1020,0,88,0.120,0.0,1.0 +1995,2,6,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,11.1,59,101700,0,0,351,0,0,0,0,0,0,0,340,3.6,2,2,16.0,77777,9,999999999,179,0.1020,0,88,0.120,0.0,1.0 +1995,2,6,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,11.1,61,101700,0,0,355,0,0,0,0,0,0,0,310,3.1,4,4,16.0,77777,9,999999999,179,0.1020,0,88,0.120,0.0,1.0 +1995,2,6,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,12.8,68,101700,0,0,367,0,0,0,0,0,0,0,300,3.6,7,7,16.0,1494,9,999999999,170,0.1020,0,88,0.120,0.0,1.0 +1995,2,6,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,12.8,68,101800,0,0,380,0,0,0,0,0,0,0,320,4.1,9,9,16.0,1494,9,999999999,170,0.1020,0,88,0.120,0.0,1.0 +1995,2,6,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,11.7,65,101800,0,0,376,0,0,0,0,0,0,0,300,2.6,9,9,16.0,1676,9,999999999,170,0.1020,0,88,0.120,0.0,1.0 +1995,2,7,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,12.2,68,101700,0,0,363,0,0,0,0,0,0,0,320,2.6,7,7,19.2,1524,9,999999999,160,0.1020,0,88,0.120,0.0,1.0 +1995,2,7,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,12.2,65,101700,0,0,390,0,0,0,0,0,0,0,310,2.1,10,10,16.0,1524,9,999999999,160,0.1020,0,88,0.120,0.0,1.0 +1995,2,7,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,12.2,68,101600,0,0,363,0,0,0,0,0,0,0,320,2.6,7,7,16.0,1524,9,999999999,170,0.1020,0,88,0.120,0.0,1.0 +1995,2,7,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,11.1,63,101600,0,0,357,0,0,0,0,0,0,0,330,4.1,6,6,16.0,1524,9,999999999,170,0.1020,0,88,0.120,0.0,1.0 +1995,2,7,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,11.1,63,101600,0,0,375,0,0,0,0,0,0,0,320,2.6,9,9,16.0,1372,9,999999999,170,0.1020,0,88,0.120,0.0,1.0 +1995,2,7,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,11.7,72,101600,0,0,342,0,0,0,0,0,0,0,290,2.6,3,3,19.2,77777,9,999999999,179,0.1020,0,88,0.120,0.0,1.0 +1995,2,7,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,11.7,72,101700,0,0,347,0,0,0,0,0,0,0,290,2.6,5,5,24.0,77777,9,999999999,179,0.1020,0,88,0.120,0.0,1.0 +1995,2,7,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,11.7,59,101700,115,1230,367,35,130,23,3900,6700,3200,400,360,5.2,6,6,32.0,1372,9,999999999,189,0.1020,0,88,0.120,0.0,1.0 +1995,2,7,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,10.6,49,101800,419,1406,361,215,496,67,22400,43900,9300,1270,20,3.6,2,2,32.0,77777,9,999999999,189,0.1020,0,88,0.120,0.0,1.0 +1995,2,7,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,12.2,51,101800,693,1406,392,314,221,205,34300,22600,23100,5080,350,5.7,8,8,32.0,1372,9,999999999,189,0.1020,0,88,0.120,0.0,1.0 +1995,2,7,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,11.1,45,101800,911,1406,382,585,688,138,62300,69900,16900,3570,20,5.7,5,5,32.0,77777,9,999999999,200,0.1020,0,88,0.120,0.0,1.0 +1995,2,7,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,11.7,46,101700,1058,1406,383,701,714,164,75100,73100,20000,5220,10,7.7,5,5,32.0,77777,9,999999999,200,0.1020,0,88,0.120,0.0,1.0 +1995,2,7,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,12.2,48,101600,1123,1406,384,736,716,164,79400,73600,20400,5960,10,5.7,5,5,32.0,77777,9,999999999,209,0.1020,0,88,0.120,0.0,1.0 +1995,2,7,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,12.2,48,101500,1103,1406,387,819,822,174,84800,82000,20200,5260,40,5.7,6,6,32.0,1524,9,999999999,209,0.1020,0,88,0.120,0.0,1.0 +1995,2,7,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,12.2,48,101500,999,1406,387,617,475,279,65100,49200,30100,8090,50,7.7,6,6,32.0,1524,9,999999999,209,0.1020,0,88,0.120,0.0,1.0 +1995,2,7,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,12.8,52,101500,818,1406,376,553,756,113,57500,74800,13800,2460,50,5.7,3,3,32.0,77777,9,999999999,220,0.1020,0,88,0.120,0.0,1.0 +1995,2,7,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,12.2,51,101500,572,1406,369,331,573,97,34400,54500,12200,1920,50,6.7,2,2,32.0,77777,9,999999999,220,0.1020,0,88,0.120,0.0,1.0 +1995,2,7,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,12.2,55,101500,278,1406,367,138,451,49,14200,34400,7400,890,40,6.2,3,3,32.0,77777,9,999999999,229,0.1020,0,88,0.120,0.0,1.0 +1995,2,7,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,12.2,59,101600,24,574,358,7,63,4,800,2700,700,80,40,4.6,2,2,24.0,77777,9,999999999,229,0.1020,0,88,0.120,0.0,1.0 +1995,2,7,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,12.2,61,101600,0,0,350,0,0,0,0,0,0,0,50,3.1,1,1,24.0,77777,9,999999999,229,0.1020,0,88,0.120,0.0,1.0 +1995,2,7,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,12.2,63,101600,0,0,347,0,0,0,0,0,0,0,10,3.6,1,1,24.0,77777,9,999999999,240,0.1020,0,88,0.120,0.0,1.0 +1995,2,7,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,12.2,65,101600,0,0,345,0,0,0,0,0,0,0,340,2.1,1,1,24.0,77777,9,999999999,240,0.1020,0,88,0.120,0.0,1.0 +1995,2,7,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,12.8,75,101700,0,0,331,0,0,0,0,0,0,0,310,3.1,0,0,24.0,77777,9,999999999,250,0.1020,0,88,0.120,0.0,1.0 +1995,2,7,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,12.8,78,101700,0,0,329,0,0,0,0,0,0,0,290,2.1,0,0,19.2,77777,9,999999999,250,0.1020,0,88,0.120,0.0,1.0 +1995,2,8,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,13.3,80,101600,0,0,329,0,0,0,0,0,0,0,290,2.1,0,0,19.2,77777,9,999999999,250,0.1030,0,88,0.120,0.0,1.0 +1995,2,8,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,13.3,80,101500,0,0,336,0,0,0,0,0,0,0,330,2.1,1,1,19.2,77777,9,999999999,259,0.1030,0,88,0.120,0.0,1.0 +1995,2,8,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,13.3,83,101500,0,0,327,0,0,0,0,0,0,0,300,2.1,0,0,19.2,77777,9,999999999,259,0.1030,0,88,0.120,0.0,1.0 +1995,2,8,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,13.3,86,101500,0,0,331,0,0,0,0,0,0,0,290,2.6,1,1,19.2,77777,9,999999999,259,0.1030,0,88,0.120,0.0,1.0 +1995,2,8,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,12.2,80,101400,0,0,330,0,0,0,0,0,0,0,320,1.5,1,1,19.2,77777,9,999999999,259,0.1030,0,88,0.120,0.0,1.0 +1995,2,8,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,12.8,87,101400,0,0,327,0,0,0,0,0,0,0,280,2.1,1,1,19.2,77777,9,999999999,259,0.1030,0,88,0.120,0.0,1.0 +1995,2,8,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,12.8,87,101500,0,0,335,0,0,0,0,0,0,0,300,3.1,3,3,19.2,77777,9,999999999,250,0.1030,0,88,0.120,0.0,1.0 +1995,2,8,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,13.3,80,101500,117,1230,336,51,282,24,5300,15900,3800,440,270,2.1,1,1,32.0,77777,9,999999999,250,0.1030,0,88,0.120,0.0,1.0 +1995,2,8,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,13.9,65,101500,423,1406,355,247,636,56,25500,56800,8400,1100,290,2.6,1,1,32.0,77777,9,999999999,250,0.1030,0,88,0.120,0.0,1.0 +1995,2,8,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,13.3,55,101600,697,1406,370,441,737,75,46900,72600,10800,1680,150,1.5,2,2,32.0,77777,9,999999999,250,0.1030,0,88,0.120,0.0,1.0 +1995,2,8,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,13.3,51,101500,915,1406,379,615,760,120,64500,76000,14900,2910,150,3.1,3,3,32.0,77777,9,999999999,250,0.1030,0,88,0.120,0.0,1.0 +1995,2,8,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,14.4,52,101500,1062,1406,382,744,779,156,77500,78000,18500,4460,140,4.6,2,2,32.0,77777,9,999999999,250,0.1030,0,88,0.120,0.0,1.0 +1995,2,8,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,13.3,47,101400,1127,1406,388,763,751,161,79900,75400,19300,5310,50,4.1,3,3,32.0,77777,9,999999999,250,0.1030,0,88,0.120,0.0,1.0 +1995,2,8,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,13.9,48,101300,1107,1406,380,818,903,107,84900,90300,13500,3130,130,5.2,1,1,32.0,77777,9,999999999,250,0.1030,0,88,0.120,0.0,1.0 +1995,2,8,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,14.4,54,101300,1003,1406,383,731,828,139,76400,82900,17000,3690,150,7.7,3,3,32.0,77777,9,999999999,250,0.1030,0,88,0.120,0.0,1.0 +1995,2,8,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,14.4,54,101300,822,1406,374,562,840,71,59000,83000,10300,1750,140,7.2,1,1,32.0,77777,9,999999999,250,0.1030,0,88,0.120,0.0,1.0 +1995,2,8,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,14.4,57,101300,575,1406,369,366,743,62,38800,71200,9600,1340,140,6.7,1,1,32.0,77777,9,999999999,250,0.1030,0,88,0.120,0.0,1.0 +1995,2,8,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,14.4,61,101400,282,1406,363,152,593,33,15800,47500,6300,690,140,5.7,1,1,32.0,77777,9,999999999,250,0.1030,0,88,0.120,0.0,1.0 +1995,2,8,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,13.9,63,101500,25,574,357,8,93,4,1000,4800,700,100,40,3.6,1,1,24.0,77777,9,999999999,250,0.1030,0,88,0.120,0.0,1.0 +1995,2,8,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,13.9,68,101500,0,0,352,0,0,0,0,0,0,0,60,3.1,1,1,24.0,77777,9,999999999,240,0.1030,0,88,0.120,0.0,1.0 +1995,2,8,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,13.9,73,101500,0,0,340,0,0,0,0,0,0,0,60,2.6,0,0,24.0,77777,9,999999999,240,0.1030,0,88,0.120,0.0,1.0 +1995,2,8,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,13.9,76,101500,0,0,337,0,0,0,0,0,0,0,50,2.6,0,0,24.0,77777,9,999999999,240,0.1030,0,88,0.120,0.0,1.0 +1995,2,8,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,13.9,78,101500,0,0,335,0,0,0,0,0,0,0,300,2.1,0,0,24.0,77777,9,999999999,240,0.1030,0,88,0.120,0.0,1.0 +1995,2,8,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,14.4,84,101500,0,0,333,0,0,0,0,0,0,0,310,2.6,0,0,24.0,77777,9,999999999,240,0.1030,0,88,0.120,0.0,1.0 +1995,2,9,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,15.0,87,101500,0,0,340,0,0,0,0,0,0,0,310,2.6,1,1,24.0,77777,9,999999999,240,0.1030,0,88,0.120,0.0,1.0 +1995,2,9,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,15.0,81,101400,0,0,380,0,0,0,0,0,0,0,350,2.1,9,9,24.0,1128,9,999999999,240,0.1030,0,88,0.120,0.0,1.0 +1995,2,9,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,15.0,78,101400,0,0,394,0,0,0,0,0,0,0,310,2.1,10,10,24.0,1219,9,999999999,240,0.1030,0,88,0.120,0.0,1.0 +1995,2,9,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,15.0,78,101300,0,0,394,0,0,0,0,0,0,0,10,2.1,10,10,24.0,1219,9,999999999,240,0.1030,0,88,0.120,0.0,1.0 +1995,2,9,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,15.6,81,101400,0,0,384,0,0,0,0,0,0,0,310,1.5,9,9,24.0,1250,9,999999999,240,0.1030,0,88,0.120,0.0,1.0 +1995,2,9,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,16.1,84,101400,0,0,385,0,0,0,0,0,0,0,300,2.1,9,9,24.0,1311,9,999999999,240,0.1030,0,88,0.120,0.0,1.0 +1995,2,9,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,15.6,81,101500,0,0,384,0,0,0,0,0,0,0,50,2.1,9,9,32.0,1433,9,999999999,250,0.1030,0,88,0.120,0.0,1.0 +1995,2,9,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,16.1,75,101500,120,1253,366,37,67,31,4000,3200,3700,550,0,0.0,3,3,32.0,77777,9,999999999,250,0.1030,0,88,0.120,0.0,1.0 +1995,2,9,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,16.7,66,101500,426,1405,377,220,406,97,23100,36000,12200,1810,120,2.1,2,2,32.0,77777,9,999999999,250,0.1030,0,88,0.120,0.0,1.0 +1995,2,9,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,17.8,64,101500,700,1405,400,293,84,250,32000,8400,27800,7180,160,5.2,6,6,32.0,2591,9,999999999,250,0.1030,0,88,0.120,0.0,1.0 +1995,2,9,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,17.8,64,101500,919,1405,400,533,397,273,57700,42500,29800,7280,220,3.1,6,6,32.0,3048,9,999999999,250,0.1030,0,88,0.120,0.0,1.0 +1995,2,9,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,18.3,62,101400,1066,1405,400,787,773,201,83200,78400,23600,6370,220,3.6,4,4,32.0,77777,9,999999999,250,0.1030,0,88,0.120,0.0,1.0 +1995,2,9,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,18.3,58,101400,1132,1405,409,723,471,343,76200,49000,36600,12810,170,4.1,5,5,32.0,77777,9,999999999,250,0.1030,0,88,0.120,0.0,1.0 +1995,2,9,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,18.3,60,101300,1112,1405,400,765,655,246,80000,66000,27600,8380,170,4.6,3,3,32.0,77777,9,999999999,250,0.1030,0,88,0.120,0.0,1.0 +1995,2,9,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,18.3,58,101200,1007,1405,399,708,708,200,74300,71500,22900,5700,180,4.1,2,2,32.0,77777,9,999999999,250,0.1030,0,88,0.120,0.0,1.0 +1995,2,9,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,18.9,62,101200,826,1405,404,472,390,243,50900,41400,26500,5970,210,4.1,4,4,32.0,77777,9,999999999,250,0.1030,0,88,0.120,0.0,1.0 +1995,2,9,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,18.9,69,101300,579,1405,421,271,131,217,29100,12900,23800,5120,190,3.6,9,9,32.0,1829,9,999999999,250,0.1030,0,88,0.120,0.0,1.0 +1995,2,9,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,19.4,74,101300,285,1405,410,81,41,72,8800,3400,8100,1810,200,4.1,8,8,24.0,2134,9,999999999,259,0.1030,0,88,0.120,0.0,1.0 +1995,2,9,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,20.6,85,101300,26,597,399,5,2,5,600,100,600,130,200,3.6,7,7,19.2,1981,9,999999999,259,0.1030,0,88,0.120,0.0,1.0 +1995,2,9,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,20.0,84,101300,0,0,385,0,0,0,0,0,0,0,220,2.1,4,4,24.0,77777,9,999999999,259,0.1030,0,88,0.120,0.0,1.0 +1995,2,9,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,19.4,76,101300,0,0,396,0,0,0,0,0,0,0,210,4.1,6,6,24.0,1676,9,999999999,259,0.1030,0,88,0.120,0.0,1.0 +1995,2,9,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,18.9,74,101400,0,0,406,0,0,0,0,0,0,0,220,4.6,8,8,24.0,1524,9,999999999,259,0.1030,0,88,0.120,0.0,1.0 +1995,2,9,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,18.9,74,101300,0,0,395,0,0,0,0,0,0,0,220,4.1,6,6,24.0,2286,9,999999999,259,0.1030,0,88,0.120,0.0,1.0 +1995,2,9,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,19.4,76,101300,0,0,407,0,0,0,0,0,0,0,210,4.6,8,8,24.0,2286,9,999999999,259,0.1030,0,88,0.120,0.0,1.0 +1995,2,10,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,18.9,76,101300,0,0,403,0,0,0,0,0,0,0,230,3.1,8,8,24.0,2438,9,999999999,259,0.1040,0,88,0.120,0.0,1.0 +1995,2,10,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,18.9,74,101200,0,0,400,0,0,0,0,0,0,0,210,4.6,7,7,24.0,2591,9,999999999,259,0.1040,0,88,0.120,0.0,1.0 +1995,2,10,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,18.9,74,101200,0,0,427,0,0,0,0,0,0,0,220,4.6,10,10,16.0,1311,9,999999999,259,0.1040,0,88,0.120,0.0,1.0 +1995,2,10,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,20.6,97,101200,0,0,413,0,0,0,0,0,0,0,270,6.2,10,10,4.0,549,9,999999999,250,0.1040,0,88,0.120,1.0,1.0 +1995,2,10,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,20.0,93,101200,0,0,412,0,0,0,0,0,0,0,260,5.7,10,10,4.8,1250,9,999999999,250,0.1040,0,88,0.120,0.0,1.0 +1995,2,10,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,20.0,93,101200,0,0,412,0,0,0,0,0,0,0,330,5.7,10,10,16.0,975,9,999999999,240,0.1040,0,88,0.120,0.0,1.0 +1995,2,10,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,18.3,84,101300,0,0,410,0,0,0,0,0,0,0,320,6.7,10,10,32.0,945,9,999999999,229,0.1040,0,88,0.120,0.0,1.0 +1995,2,10,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,19.4,93,101400,123,1253,398,29,10,28,3200,600,3100,700,340,3.6,9,9,16.0,1219,9,999999999,229,0.1040,0,88,0.120,0.0,1.0 +1995,2,10,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,19.4,84,101400,429,1405,406,130,47,116,14300,4300,13000,3090,330,6.2,9,9,24.0,1372,9,999999999,220,0.1040,0,88,0.120,0.0,1.0 +1995,2,10,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,18.3,71,101500,704,1405,395,273,215,164,29600,22400,18400,3560,320,7.7,6,6,32.0,3048,9,999999999,220,0.1040,0,88,0.120,0.0,1.0 +1995,2,10,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,17.2,60,101400,923,1405,396,548,568,175,57600,57200,19900,4460,320,8.8,4,4,32.0,77777,9,999999999,209,0.1040,0,88,0.120,0.0,1.0 +1995,2,10,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,16.7,56,101400,1070,1405,386,761,866,101,79000,86600,12900,2830,330,8.2,1,1,40.0,77777,9,999999999,200,0.1040,0,88,0.120,0.0,1.0 +1995,2,10,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,15.0,49,101300,1136,1405,396,830,816,169,86400,81800,20100,5620,330,10.8,3,3,40.0,77777,9,999999999,200,0.1040,0,88,0.120,0.0,1.0 +1995,2,10,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,13.9,47,101200,1116,1405,382,809,888,104,84000,88900,13200,3150,340,9.3,1,1,40.0,77777,9,999999999,189,0.1040,0,88,0.120,0.0,1.0 +1995,2,10,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,13.3,47,101200,1011,1405,372,760,915,102,79000,91300,13100,2560,350,9.3,0,0,48.0,77777,9,999999999,189,0.1040,0,88,0.120,0.0,1.0 +1995,2,10,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,12.8,48,101200,829,1405,372,562,778,102,59200,77500,13300,2350,320,11.8,1,1,32.0,77777,9,999999999,179,0.1040,0,88,0.120,0.0,1.0 +1995,2,10,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,11.1,45,101300,583,1405,368,365,709,71,38200,67800,10000,1470,340,10.8,1,1,32.0,77777,9,999999999,179,0.1040,0,88,0.120,0.0,1.0 +1995,2,10,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,12.2,51,101300,288,1405,364,142,455,49,14700,35300,7400,900,330,9.3,1,1,32.0,77777,9,999999999,170,0.1040,0,88,0.120,0.0,1.0 +1995,2,10,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,11.7,55,101400,28,597,355,7,50,5,800,2200,700,100,350,5.7,1,1,24.0,77777,9,999999999,160,0.1040,0,88,0.120,0.0,1.0 +1995,2,10,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,12.2,59,101500,0,0,353,0,0,0,0,0,0,0,10,2.6,1,1,24.0,77777,9,999999999,160,0.1040,0,88,0.120,0.0,1.0 +1995,2,10,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,12.8,61,101500,0,0,365,0,0,0,0,0,0,0,350,2.6,4,4,24.0,77777,9,999999999,150,0.1040,0,88,0.120,0.0,1.0 +1995,2,10,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,12.8,63,101600,0,0,368,0,0,0,0,0,0,0,320,3.1,6,6,24.0,1676,9,999999999,150,0.1040,0,88,0.120,0.0,1.0 +1995,2,10,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,13.3,68,101600,0,0,357,0,0,0,0,0,0,0,340,3.1,3,3,24.0,77777,9,999999999,139,0.1040,0,88,0.120,0.0,1.0 +1995,2,10,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,12.2,65,101500,0,0,350,0,0,0,0,0,0,0,340,2.6,2,2,24.0,77777,9,999999999,129,0.1040,0,88,0.120,0.0,1.0 +1995,2,11,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,12.2,68,101500,0,0,347,0,0,0,0,0,0,0,330,3.1,2,2,16.0,77777,9,999999999,129,0.1050,0,88,0.120,0.0,1.0 +1995,2,11,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,11.1,59,101500,0,0,354,0,0,0,0,0,0,0,350,5.2,3,3,16.0,77777,9,999999999,120,0.1050,0,88,0.120,0.0,1.0 +1995,2,11,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,11.1,63,101500,0,0,341,0,0,0,0,0,0,0,330,4.6,1,1,16.0,77777,9,999999999,120,0.1050,0,88,0.120,0.0,1.0 +1995,2,11,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,10.6,63,101500,0,0,338,0,0,0,0,0,0,0,320,1.5,1,1,16.0,77777,9,999999999,120,0.1050,0,88,0.120,0.0,1.0 +1995,2,11,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,12.2,75,101400,0,0,348,0,0,0,0,0,0,0,280,3.1,5,5,16.0,77777,9,999999999,120,0.1050,0,88,0.120,0.0,1.0 +1995,2,11,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,12.2,80,101500,0,0,337,0,0,0,0,0,0,0,300,3.1,3,3,16.0,77777,9,999999999,120,0.1050,0,88,0.120,0.0,1.0 +1995,2,11,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,11.7,72,101500,0,0,339,0,0,0,0,0,0,0,290,4.1,2,2,24.0,77777,9,999999999,120,0.1050,0,88,0.120,0.0,1.0 +1995,2,11,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,11.7,67,101600,125,1275,339,39,96,29,4200,4700,3700,510,290,3.1,1,1,32.0,77777,9,999999999,120,0.1050,0,88,0.120,0.0,1.0 +1995,2,11,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,10.6,51,101600,433,1404,358,227,469,83,23400,41500,10600,1530,360,5.7,2,2,32.0,77777,9,999999999,120,0.1050,0,88,0.120,0.0,1.0 +1995,2,11,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,10.6,46,101700,708,1404,373,444,456,213,45800,45600,22800,4630,10,5.7,4,4,32.0,77777,9,999999999,120,0.1050,0,88,0.120,0.0,1.0 +1995,2,11,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,11.1,45,101600,927,1404,382,629,629,213,65100,62600,23600,5290,10,6.2,5,5,32.0,77777,9,999999999,120,0.1050,0,88,0.120,0.0,1.0 +1995,2,11,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,10.6,46,101600,1074,1404,370,692,649,195,73300,66000,22700,6310,350,8.2,3,3,32.0,77777,9,999999999,120,0.1050,0,88,0.120,0.0,1.0 +1995,2,11,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,10.6,40,101500,1140,1404,373,751,654,219,79400,66400,25300,8100,350,6.2,1,1,32.0,77777,9,999999999,120,0.1050,0,88,0.120,0.0,1.0 +1995,2,11,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,11.7,46,101400,1120,1404,377,743,642,231,78200,64900,26300,8100,10,7.7,3,3,32.0,77777,9,999999999,120,0.1050,0,88,0.120,0.0,1.0 +1995,2,11,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,11.1,45,101300,1015,1404,368,678,737,145,73000,75500,18200,4350,50,8.8,1,1,32.0,77777,9,999999999,120,0.1050,0,88,0.120,0.0,1.0 +1995,2,11,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,11.7,46,101300,833,1404,368,563,740,124,60000,74700,15500,2970,50,6.2,1,1,32.0,77777,9,999999999,120,0.1050,0,88,0.120,0.0,1.0 +1995,2,11,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,10.6,46,101200,586,1404,362,345,597,96,36200,57200,12200,1920,20,5.2,1,1,32.0,77777,9,999999999,120,0.1050,0,88,0.120,0.0,1.0 +1995,2,11,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,10.6,49,101300,292,1404,356,133,358,58,14000,27400,8300,1040,10,5.2,1,1,32.0,77777,9,999999999,120,0.1050,0,88,0.120,0.0,1.0 +1995,2,11,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,11.7,59,101300,29,620,350,6,16,6,800,500,800,90,40,4.1,2,1,24.0,77777,9,999999999,120,0.1050,0,88,0.120,0.0,1.0 +1995,2,11,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,12.2,65,101400,0,0,338,0,0,0,0,0,0,0,340,2.1,0,0,24.0,77777,9,999999999,120,0.1050,0,88,0.120,0.0,1.0 +1995,2,11,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,13.3,75,101400,0,0,335,0,0,0,0,0,0,0,310,3.1,0,0,24.0,77777,9,999999999,120,0.1050,0,88,0.120,0.0,1.0 +1995,2,11,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,12.8,75,101400,0,0,331,0,0,0,0,0,0,0,310,3.1,0,0,24.0,77777,9,999999999,120,0.1050,0,88,0.120,0.0,1.0 +1995,2,11,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,12.8,78,101400,0,0,329,0,0,0,0,0,0,0,340,3.1,0,0,24.0,77777,9,999999999,120,0.1050,0,88,0.120,0.0,1.0 +1995,2,11,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,12.2,83,101300,0,0,321,0,0,0,0,0,0,0,340,1.5,0,0,24.0,77777,9,999999999,120,0.1050,0,88,0.120,0.0,1.0 +1995,2,12,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,12.2,83,101200,0,0,321,0,0,0,0,0,0,0,300,2.6,0,0,16.0,77777,9,999999999,120,0.1050,0,88,0.120,0.0,1.0 +1995,2,12,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,12.2,89,101100,0,0,316,0,0,0,0,0,0,0,300,1.5,0,0,16.0,77777,9,999999999,120,0.1050,0,88,0.120,0.0,1.0 +1995,2,12,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,12.2,87,101100,0,0,318,0,0,0,0,0,0,0,290,2.6,0,0,16.0,77777,9,999999999,120,0.1050,0,88,0.120,0.0,1.0 +1995,2,12,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,12.8,90,101100,0,0,319,0,0,0,0,0,0,0,330,2.1,0,0,16.0,77777,9,999999999,129,0.1050,0,88,0.120,0.0,1.0 +1995,2,12,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,12.2,87,101100,0,0,318,0,0,0,0,0,0,0,330,1.5,0,0,16.0,77777,9,999999999,139,0.1050,0,88,0.120,0.0,1.0 +1995,2,12,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,12.2,87,101200,0,0,318,0,0,0,0,0,0,0,270,1.5,0,0,16.0,77777,9,999999999,139,0.1050,0,88,0.120,0.0,1.0 +1995,2,12,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,12.2,93,101200,0,0,319,0,0,0,0,0,0,0,290,3.1,1,1,24.0,77777,9,999999999,150,0.1050,0,88,0.120,0.0,1.0 +1995,2,12,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,13.9,90,101300,128,1275,331,41,103,31,4500,5100,3900,550,290,3.1,1,1,24.0,77777,9,999999999,160,0.1050,0,88,0.120,0.0,1.0 +1995,2,12,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,13.9,70,101300,436,1404,349,232,487,81,24000,43200,10500,1500,320,2.6,1,1,32.0,77777,9,999999999,160,0.1050,0,88,0.120,0.0,1.0 +1995,2,12,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,12.8,55,101300,711,1404,366,426,572,136,44300,56100,15800,2850,60,2.1,2,2,32.0,77777,9,999999999,170,0.1050,0,88,0.120,0.0,1.0 +1995,2,12,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,13.3,53,101300,931,1404,376,629,611,223,67200,63200,25200,5820,140,3.6,3,3,32.0,77777,9,999999999,179,0.1050,0,88,0.120,0.0,1.0 +1995,2,12,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,13.3,51,101200,1078,1404,370,710,716,159,76300,73500,19700,5300,120,5.2,1,1,32.0,77777,9,999999999,179,0.1050,0,88,0.120,0.0,1.0 +1995,2,12,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,14.4,55,101100,1144,1404,372,835,782,196,89000,79900,23700,7410,150,4.6,1,1,32.0,77777,9,999999999,189,0.1050,0,88,0.120,0.0,1.0 +1995,2,12,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,14.4,52,101000,1124,1404,377,764,750,163,79900,75200,19400,5330,170,5.2,1,1,32.0,77777,9,999999999,200,0.1050,0,88,0.120,0.0,1.0 +1995,2,12,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,14.4,52,101000,1020,1404,377,720,736,185,76200,74700,21700,5450,180,3.6,1,1,32.0,77777,9,999999999,200,0.1050,0,88,0.120,0.0,1.0 +1995,2,12,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,15.0,56,101000,837,1404,380,536,643,152,56200,64400,17700,3560,180,4.1,2,2,32.0,77777,9,999999999,209,0.1050,0,88,0.120,0.0,1.0 +1995,2,12,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,14.4,55,100900,590,1404,372,349,589,101,36400,56400,12600,2010,160,2.6,1,1,32.0,77777,9,999999999,220,0.1050,0,88,0.120,0.0,1.0 +1995,2,12,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,14.4,59,101000,295,1404,359,135,350,62,14300,26900,8600,1120,170,2.6,0,0,32.0,77777,9,999999999,220,0.1050,0,88,0.120,0.0,1.0 +1995,2,12,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,15.0,66,101000,30,620,362,6,11,6,800,400,800,120,140,2.1,1,1,16.0,77777,9,999999999,229,0.1050,0,88,0.120,0.0,1.0 +1995,2,12,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,15.6,68,101000,0,0,367,0,0,0,0,0,0,0,160,3.6,2,2,16.0,77777,9,999999999,240,0.1050,0,88,0.120,0.0,1.0 +1995,2,12,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,15.0,70,101100,0,0,403,0,0,0,0,0,0,0,70,2.6,10,10,16.0,1676,9,999999999,250,0.1050,0,88,0.120,0.0,1.0 +1995,2,12,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,16.7,71,101100,0,0,403,0,0,0,0,0,0,0,150,4.1,9,9,16.0,1676,9,999999999,250,0.1050,0,88,0.120,0.0,1.0 +1995,2,12,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,16.7,71,101100,0,0,380,0,0,0,0,0,0,0,170,4.6,5,5,16.0,77777,9,999999999,259,0.1050,0,88,0.120,0.0,1.0 +1995,2,12,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,16.7,71,101000,0,0,403,0,0,0,0,0,0,0,160,5.2,9,9,16.0,1829,9,999999999,270,0.1050,0,88,0.120,0.0,1.0 +1995,2,13,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,17.2,73,101000,0,0,415,0,0,0,0,0,0,0,160,5.7,10,10,16.0,1829,9,999999999,270,0.1060,0,88,0.120,0.0,1.0 +1995,2,13,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,17.2,73,101000,0,0,404,0,0,0,0,0,0,0,160,5.7,9,9,16.0,1829,9,999999999,279,0.1060,0,88,0.120,0.0,1.0 +1995,2,13,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,17.8,73,101000,0,0,419,0,0,0,0,0,0,0,160,4.6,10,10,16.0,945,9,999999999,279,0.1060,0,88,0.120,0.0,1.0 +1995,2,13,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,18.3,79,100900,0,0,396,0,0,0,0,0,0,0,190,2.6,8,8,12.8,1311,9,999999999,290,0.1060,0,88,0.120,0.0,1.0 +1995,2,13,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,16.7,68,100900,0,0,384,0,0,0,0,0,0,0,210,5.2,5,5,16.0,77777,9,999999999,290,0.1060,0,88,0.120,0.0,1.0 +1995,2,13,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,17.2,69,100900,0,0,387,0,0,0,0,0,0,0,170,7.7,5,5,16.0,77777,9,999999999,300,0.1060,0,88,0.120,0.0,1.0 +1995,2,13,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,16.1,64,100900,0,0,385,0,0,0,0,0,0,0,180,7.2,5,5,16.0,77777,9,999999999,300,0.1060,0,88,0.120,0.0,1.0 +1995,2,13,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,16.7,64,101000,131,1298,424,18,0,18,2100,0,2100,680,170,6.7,10,10,19.2,2438,9,999999999,309,0.1060,0,88,0.120,0.0,1.0 +1995,2,13,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,17.8,67,101000,440,1403,397,151,153,103,16600,14200,12200,2310,160,9.3,6,6,19.2,1676,9,999999999,309,0.1060,0,88,0.120,0.0,1.0 +1995,2,13,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,18.3,66,101100,715,1403,412,327,136,258,35400,13900,28200,6480,170,6.7,8,8,19.2,2134,9,999999999,320,0.1060,0,88,0.120,0.0,1.0 +1995,2,13,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,18.9,65,101000,935,1403,412,456,419,176,49900,43500,20900,4530,170,7.7,7,7,19.2,1311,9,999999999,320,0.1060,0,88,0.120,0.0,1.0 +1995,2,13,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,18.9,69,101000,1082,1403,433,235,0,235,28000,0,28000,11200,190,7.7,10,10,19.2,1676,9,999999999,329,0.1060,0,88,0.120,0.0,1.0 +1995,2,13,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,18.9,69,100900,1149,1403,433,250,0,250,30000,0,30000,11970,160,7.2,10,10,19.2,1676,9,999999999,329,0.1060,0,88,0.120,0.0,1.0 +1995,2,13,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,18.9,69,100900,1128,1403,433,246,0,246,29400,0,29400,11770,160,6.7,10,10,19.2,1463,9,999999999,340,0.1060,0,88,0.120,0.0,1.0 +1995,2,13,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,19.4,71,100800,1024,1403,434,221,0,221,26300,0,26300,10440,170,6.2,10,10,19.2,1829,9,999999999,340,0.1060,0,88,0.120,0.0,1.0 +1995,2,13,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,19.4,74,100800,841,1403,431,176,0,176,20700,0,20700,7980,180,7.2,10,10,19.2,1676,9,999999999,350,0.1060,0,88,0.120,0.0,1.0 +1995,2,13,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,20.6,87,100800,593,1403,423,116,0,116,13500,0,13500,4890,180,8.2,10,10,8.0,1219,9,999999999,350,0.1060,0,88,0.120,1.0,1.0 +1995,2,13,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,20.6,87,100800,298,1403,423,48,0,48,5600,0,5600,1860,170,6.2,10,10,16.0,2134,9,999999999,359,0.1060,0,88,0.120,0.0,1.0 +1995,2,13,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,21.1,96,100900,31,643,417,4,0,4,500,0,500,160,220,5.7,10,10,8.0,1128,9,999999999,359,0.1060,0,88,0.120,3.0,1.0 +1995,2,13,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,20.6,97,100900,0,0,413,0,0,0,0,0,0,0,210,6.2,10,10,8.0,762,9,999999999,370,0.1060,0,88,0.120,3.0,1.0 +1995,2,13,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,20.0,87,101000,0,0,419,0,0,0,0,0,0,0,200,3.6,10,10,12.8,1219,9,999999999,370,0.1060,0,88,0.120,0.0,1.0 +1995,2,13,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,20.0,96,101000,0,0,410,0,0,0,0,0,0,0,10,2.6,10,10,9.6,1280,9,999999999,379,0.1060,0,88,0.120,1.0,1.0 +1995,2,13,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,19.4,96,101000,0,0,406,0,0,0,0,0,0,0,320,3.1,10,10,11.2,1097,9,999999999,379,0.1060,0,88,0.120,2.0,1.0 +1995,2,13,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,19.4,96,101000,0,0,406,0,0,0,0,0,0,0,360,3.1,10,10,9.6,671,9,999999999,390,0.1060,0,88,0.120,1.0,1.0 +1995,2,14,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,20.0,100,100900,0,0,406,0,0,0,0,0,0,0,330,2.1,10,10,8.0,610,9,999999999,390,0.1070,0,88,0.120,5.0,1.0 +1995,2,14,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,20.6,100,100900,0,0,410,0,0,0,0,0,0,0,270,3.6,10,10,16.0,1524,9,999999999,390,0.1070,0,88,0.120,3.0,1.0 +1995,2,14,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,20.6,100,100900,0,0,410,0,0,0,0,0,0,0,270,2.6,10,10,9.6,762,9,999999999,390,0.1070,0,88,0.120,1.0,1.0 +1995,2,14,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,20.0,96,101000,0,0,410,0,0,0,0,0,0,0,320,3.1,10,10,16.0,1981,9,999999999,379,0.1070,0,88,0.120,0.0,1.0 +1995,2,14,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,20.0,100,101000,0,0,406,0,0,0,0,0,0,0,270,2.6,10,10,16.0,1981,9,999999999,379,0.1070,0,88,0.120,0.0,1.0 +1995,2,14,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,20.0,96,101000,0,0,410,0,0,0,0,0,0,0,350,2.1,10,10,16.0,2134,9,999999999,370,0.1070,0,88,0.120,0.0,1.0 +1995,2,14,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,20.0,96,101100,0,0,410,0,0,0,0,0,0,0,30,1.5,10,10,16.0,2134,9,999999999,370,0.1070,0,88,0.120,0.0,1.0 +1995,2,14,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,19.4,93,101200,134,1297,383,36,97,26,3900,4900,3400,450,330,3.6,7,7,19.2,2591,9,999999999,359,0.1070,0,88,0.120,0.0,1.0 +1995,2,14,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,19.4,90,101200,443,1403,412,86,0,86,9900,0,9900,3410,260,1.5,10,10,19.2,2896,9,999999999,359,0.1070,0,88,0.120,0.0,1.0 +1995,2,14,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,19.4,81,101200,719,1403,421,152,0,152,17700,0,17700,6600,30,2.1,10,10,19.2,2286,9,999999999,350,0.1070,0,88,0.120,0.0,1.0 +1995,2,14,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,19.4,76,101200,939,1403,428,204,0,204,24100,0,24100,9440,190,2.1,10,10,19.2,2438,9,999999999,350,0.1070,0,88,0.120,0.0,1.0 +1995,2,14,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,20.0,76,101300,1087,1403,419,424,168,293,47100,17900,33100,10010,220,2.6,9,9,19.2,3048,9,999999999,340,0.1070,0,88,0.120,0.0,1.0 +1995,2,14,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,20.0,74,101200,1153,1403,423,549,97,469,60400,10100,52100,18530,230,3.1,9,9,19.2,3353,9,999999999,340,0.1070,0,88,0.120,0.0,1.0 +1995,2,14,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,19.4,74,101200,1133,1403,419,656,124,555,72000,13000,61400,20430,210,4.1,9,9,19.2,3048,9,999999999,329,0.1070,0,88,0.120,0.0,1.0 +1995,2,14,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,18.9,71,101200,1028,1403,418,445,129,350,48600,13700,38600,11140,220,4.6,9,9,19.2,1219,9,999999999,329,0.1070,0,88,0.120,0.0,1.0 +1995,2,14,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,18.3,71,101200,845,1403,426,182,0,182,21400,0,21400,8210,240,4.1,10,10,24.0,1280,9,999999999,320,0.1070,0,88,0.120,0.0,1.0 +1995,2,14,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,20.0,82,101200,597,1403,413,206,63,179,22600,6100,20000,5080,220,4.1,9,9,24.0,1402,9,999999999,320,0.1070,0,88,0.120,0.0,1.0 +1995,2,14,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,19.4,79,101300,301,1403,397,114,121,88,12300,9700,10200,1900,240,2.6,7,7,32.0,3353,9,999999999,309,0.1070,0,88,0.120,0.0,1.0 +1995,2,14,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,17.8,76,101400,33,643,396,6,26,5,800,900,700,80,100,4.1,8,8,32.0,1219,9,999999999,309,0.1070,0,88,0.120,0.0,1.0 +1995,2,14,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,17.2,76,101400,0,0,401,0,0,0,0,0,0,0,360,3.6,9,9,32.0,1280,9,999999999,300,0.1070,0,88,0.120,0.0,1.0 +1995,2,14,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,17.8,84,101500,0,0,387,0,0,0,0,0,0,0,50,2.6,8,8,32.0,3353,9,999999999,300,0.1070,0,88,0.120,0.0,1.0 +1995,2,14,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,17.8,87,101500,0,0,368,0,0,0,0,0,0,0,60,2.1,4,4,16.0,77777,9,999999999,290,0.1070,0,88,0.120,0.0,1.0 +1995,2,14,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,17.2,87,101500,0,0,370,0,0,0,0,0,0,0,300,2.6,6,6,16.0,4572,9,999999999,290,0.1070,0,88,0.120,0.0,1.0 +1995,2,14,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,17.8,93,101500,0,0,365,0,0,0,0,0,0,0,0,0.0,6,5,16.0,3048,9,999999999,279,0.1070,0,88,0.120,0.0,1.0 +1995,2,15,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,17.8,93,101500,0,0,365,0,0,0,0,0,0,0,0,0.0,6,5,16.0,4572,9,999999999,279,0.1070,0,88,0.120,0.0,1.0 +1995,2,15,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,17.2,90,101500,0,0,359,0,0,0,0,0,0,0,40,2.1,4,3,16.0,77777,9,999999999,270,0.1070,0,88,0.120,0.0,1.0 +1995,2,15,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,16.7,93,101400,0,0,338,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,270,0.1070,0,88,0.120,0.0,1.0 +1995,2,15,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,16.7,97,101400,0,0,335,0,0,0,0,0,0,0,300,2.1,0,0,16.0,77777,9,999999999,279,0.1070,0,88,0.120,0.0,1.0 +1995,2,15,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,16.7,97,101400,0,0,335,0,0,0,0,0,0,0,320,2.1,0,0,16.0,77777,9,999999999,279,0.1070,0,88,0.120,0.0,1.0 +1995,2,15,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,16.1,96,101400,0,0,332,0,0,0,0,0,0,0,330,2.6,0,0,16.0,77777,9,999999999,279,0.1070,0,88,0.120,0.0,1.0 +1995,2,15,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,16.1,93,101500,0,0,335,0,0,0,0,0,0,0,320,2.1,0,0,16.0,77777,9,999999999,290,0.1070,0,88,0.120,0.0,1.0 +1995,2,15,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,17.2,93,101500,137,1320,341,53,238,28,5500,13900,4000,500,290,1.5,0,0,32.0,77777,9,999999999,290,0.1070,0,88,0.120,0.0,1.0 +1995,2,15,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,17.8,76,101500,447,1402,360,263,627,63,27700,56800,9500,1230,310,3.1,0,0,32.0,77777,9,999999999,290,0.1070,0,88,0.120,0.0,1.0 +1995,2,15,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,17.2,64,101500,723,1402,378,441,688,86,46500,67800,11400,1890,230,1.5,1,1,32.0,77777,9,999999999,290,0.1070,0,88,0.120,0.0,1.0 +1995,2,15,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,16.7,58,101500,943,1402,383,645,785,117,68200,78800,15000,3000,180,4.1,1,1,32.0,77777,9,999999999,300,0.1070,0,88,0.120,0.0,1.0 +1995,2,15,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,17.8,60,101500,1091,1402,387,725,775,121,77900,78600,16500,3990,140,5.2,1,1,32.0,77777,9,999999999,300,0.1070,0,88,0.120,0.0,1.0 +1995,2,15,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,16.7,54,101400,1157,1402,389,866,905,119,89500,90600,14500,3730,130,5.7,1,1,32.0,77777,9,999999999,300,0.1070,0,88,0.120,0.0,1.0 +1995,2,15,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,16.7,56,101300,1137,1402,395,764,713,186,81900,73000,22500,6960,150,5.2,3,3,32.0,77777,9,999999999,309,0.1070,0,88,0.120,0.0,1.0 +1995,2,15,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,18.3,62,101300,1032,1402,393,723,757,166,77200,77300,20200,5070,130,5.7,2,2,32.0,77777,9,999999999,309,0.1070,0,88,0.120,0.0,1.0 +1995,2,15,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,16.7,56,101400,849,1402,395,555,602,191,59600,61800,22100,4520,140,4.1,3,3,32.0,77777,9,999999999,309,0.1070,0,88,0.120,0.0,1.0 +1995,2,15,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,18.9,69,101400,600,1402,383,367,670,80,39100,65100,11100,1660,140,6.2,1,1,32.0,77777,9,999999999,320,0.1070,0,88,0.120,0.0,1.0 +1995,2,15,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,18.3,71,101400,305,1402,376,154,477,50,15900,37900,7700,920,130,5.2,1,1,24.0,77777,9,999999999,320,0.1070,0,88,0.120,0.0,1.0 +1995,2,15,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,18.3,76,101500,34,666,364,9,54,7,1200,2000,1000,120,140,4.1,0,0,16.0,77777,9,999999999,320,0.1070,0,88,0.120,0.0,1.0 +1995,2,15,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,18.3,76,101500,0,0,364,0,0,0,0,0,0,0,140,3.6,0,0,16.0,77777,9,999999999,320,0.1070,0,88,0.120,0.0,1.0 +1995,2,15,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,18.3,79,101500,0,0,361,0,0,0,0,0,0,0,80,3.6,0,0,16.0,77777,9,999999999,329,0.1070,0,88,0.120,0.0,1.0 +1995,2,15,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,18.3,87,101500,0,0,353,0,0,0,0,0,0,0,60,2.6,0,0,16.0,77777,9,999999999,329,0.1070,0,88,0.120,0.0,1.0 +1995,2,15,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,18.9,90,101500,0,0,361,0,0,0,0,0,0,0,90,1.5,1,1,16.0,77777,9,999999999,329,0.1070,0,88,0.120,0.0,1.0 +1995,2,15,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,18.9,93,101500,0,0,358,0,0,0,0,0,0,0,310,3.1,1,1,16.0,77777,9,999999999,340,0.1070,0,88,0.120,0.0,1.0 +1995,2,16,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,19.4,96,101500,0,0,376,0,0,0,0,0,0,0,300,2.1,6,6,16.0,579,9,999999999,340,0.1080,0,88,0.120,0.0,1.0 +1995,2,16,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,19.4,93,101500,0,0,379,0,0,0,0,0,0,0,320,1.5,6,6,16.0,884,9,999999999,340,0.1080,0,88,0.120,0.0,1.0 +1995,2,16,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,19.4,93,101400,0,0,379,0,0,0,0,0,0,0,0,0.0,6,6,16.0,1219,9,999999999,340,0.1080,0,88,0.120,0.0,1.0 +1995,2,16,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,20.0,100,101400,0,0,381,0,0,0,0,0,0,0,0,0.0,7,7,16.0,671,9,999999999,340,0.1080,0,88,0.120,0.0,1.0 +1995,2,16,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,20.0,100,101300,0,0,352,0,0,0,0,0,0,0,310,2.1,0,0,16.0,77777,9,999999999,340,0.1080,0,88,0.120,0.0,1.0 +1995,2,16,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,20.6,100,101300,0,0,380,0,0,0,0,0,0,0,50,2.1,6,6,16.0,1067,9,999999999,350,0.1080,0,88,0.120,0.0,1.0 +1995,2,16,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,20.6,97,101400,0,0,393,0,0,0,0,0,0,0,290,2.1,8,8,16.0,1219,9,999999999,350,0.1080,0,88,0.120,0.0,1.0 +1995,2,16,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,21.1,96,101400,140,1343,391,30,40,25,3300,2400,3000,520,100,1.5,7,7,24.0,1097,9,999999999,350,0.1080,0,88,0.120,0.0,1.0 +1995,2,16,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,21.7,85,101500,451,1401,395,198,339,89,21200,30700,11200,1650,100,3.1,4,4,24.0,77777,9,999999999,350,0.1080,0,88,0.120,0.0,1.0 +1995,2,16,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,21.7,77,101500,727,1401,404,398,521,128,41800,51500,14900,2750,130,3.6,4,4,24.0,77777,9,999999999,350,0.1080,0,88,0.120,0.0,1.0 +1995,2,16,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,22.2,82,101500,947,1401,429,303,73,253,33400,7400,28300,9030,170,4.1,9,9,24.0,3962,9,999999999,350,0.1080,0,88,0.120,0.0,1.0 +1995,2,16,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,21.7,79,101500,1095,1401,428,466,149,349,51200,15900,38800,12090,210,2.6,9,9,32.0,1676,9,999999999,350,0.1080,0,88,0.120,0.0,1.0 +1995,2,16,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,22.8,82,101400,1161,1401,445,255,0,255,30600,0,30600,12190,200,4.6,10,10,24.0,2286,9,999999999,350,0.1080,0,88,0.120,0.0,1.0 +1995,2,16,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,22.2,76,101300,1141,1401,448,250,0,250,29900,0,29900,11960,200,3.6,10,10,24.0,1829,9,999999999,350,0.1080,0,88,0.120,0.0,1.0 +1995,2,16,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,22.2,70,101200,1036,1401,445,279,189,139,31700,19800,17100,4110,220,3.1,9,9,24.0,2896,9,999999999,350,0.1080,0,88,0.120,0.0,1.0 +1995,2,16,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,22.8,91,101300,852,1401,435,181,0,181,21300,0,21300,8220,230,3.6,10,10,11.2,1829,9,999999999,350,0.1080,0,88,0.120,0.0,1.0 +1995,2,16,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,22.8,97,101200,604,1401,429,121,0,121,14100,0,14100,5090,320,1.5,10,10,12.8,1006,9,999999999,350,0.1080,0,88,0.120,1.0,1.0 +1995,2,16,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,23.3,94,101300,308,1401,436,53,0,53,6100,0,6100,2030,210,3.1,10,10,12.8,1097,9,999999999,350,0.1080,0,88,0.120,0.0,1.0 +1995,2,16,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,22.8,94,101300,35,666,411,6,8,6,800,300,700,120,220,4.1,8,8,16.0,2896,9,999999999,350,0.1080,0,88,0.120,0.0,1.0 +1995,2,16,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,22.8,94,101300,0,0,394,0,0,0,0,0,0,0,200,3.6,6,4,12.8,1006,9,999999999,350,0.1080,0,88,0.120,0.0,1.0 +1995,2,16,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,22.8,94,101400,0,0,400,0,0,0,0,0,0,0,200,4.6,6,6,16.0,2743,9,999999999,359,0.1080,0,88,0.120,0.0,1.0 +1995,2,16,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,22.8,94,101400,0,0,405,0,0,0,0,0,0,0,170,5.2,7,7,16.0,4572,9,999999999,359,0.1080,0,88,0.120,0.0,1.0 +1995,2,16,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,22.2,90,101400,0,0,396,0,0,0,0,0,0,0,170,6.2,5,5,16.0,77777,9,999999999,359,0.1080,0,88,0.120,0.0,1.0 +1995,2,16,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,22.8,94,101400,0,0,405,0,0,0,0,0,0,0,190,4.6,7,7,16.0,2896,9,999999999,359,0.1080,0,88,0.120,0.0,1.0 +1995,2,17,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,22.8,91,101300,0,0,423,0,0,0,0,0,0,0,180,5.7,9,9,16.0,1676,9,999999999,359,0.1090,0,88,0.120,0.0,1.0 +1995,2,17,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,22.2,88,101300,0,0,422,0,0,0,0,0,0,0,180,5.2,9,9,16.0,1036,9,999999999,359,0.1090,0,88,0.120,0.0,1.0 +1995,2,17,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,22.2,88,101300,0,0,422,0,0,0,0,0,0,0,180,5.2,9,9,16.0,3048,9,999999999,359,0.1090,0,88,0.120,0.0,1.0 +1995,2,17,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,22.2,90,101300,0,0,419,0,0,0,0,0,0,0,190,6.2,9,9,16.0,1006,9,999999999,359,0.1090,0,88,0.120,0.0,1.0 +1995,2,17,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,22.2,88,101300,0,0,407,0,0,0,0,0,0,0,200,5.7,9,7,16.0,1006,9,999999999,359,0.1090,0,88,0.120,0.0,1.0 +1995,2,17,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,22.2,88,101300,0,0,422,0,0,0,0,0,0,0,180,5.7,9,9,24.0,3048,9,999999999,359,0.1090,0,88,0.120,0.0,1.0 +1995,2,17,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,22.2,88,101300,0,0,407,0,0,0,0,0,0,0,200,5.7,7,7,24.0,3353,9,999999999,359,0.1090,0,88,0.120,0.0,1.0 +1995,2,17,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,22.2,88,101400,144,1342,434,26,0,26,3000,0,3000,940,170,6.2,10,10,24.0,3048,9,999999999,350,0.1090,0,88,0.120,0.0,1.0 +1995,2,17,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,22.2,84,101500,455,1401,438,108,0,108,12300,0,12300,4090,200,6.7,10,10,24.0,3048,9,999999999,350,0.1090,0,88,0.120,0.0,1.0 +1995,2,17,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,22.8,85,101500,731,1401,442,191,0,191,21900,0,21900,7900,210,6.2,10,10,24.0,3353,9,999999999,350,0.1090,0,88,0.120,0.0,1.0 +1995,2,17,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,22.2,79,101500,951,1401,444,257,0,257,29900,0,29900,11300,200,6.7,10,10,24.0,3353,9,999999999,350,0.1090,0,88,0.120,0.0,1.0 +1995,2,17,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,22.8,82,101300,1099,1401,445,301,0,301,35300,0,35300,13590,160,8.8,10,10,24.0,3962,9,999999999,350,0.1090,0,88,0.120,0.0,1.0 +1995,2,17,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,22.8,79,101300,1165,1401,420,685,351,392,74400,38000,42600,15340,180,7.7,7,7,24.0,7620,9,999999999,350,0.1090,0,88,0.120,0.0,1.0 +1995,2,17,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,22.8,79,101300,1145,1401,449,252,0,252,30200,0,30200,12040,200,6.7,10,10,24.0,518,9,999999999,350,0.1090,0,88,0.120,0.0,1.0 +1995,2,17,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,22.8,77,101200,1039,1401,439,587,86,524,64500,9000,57800,17370,200,6.2,9,9,24.0,2743,9,999999999,350,0.1090,0,88,0.120,0.0,1.0 +1995,2,17,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,22.8,79,101200,856,1401,427,402,152,309,43600,15900,33900,8450,200,5.7,8,8,19.2,4877,9,999999999,350,0.1090,0,88,0.120,0.0,1.0 +1995,2,17,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,22.8,82,101300,607,1401,412,274,386,106,29800,37800,13300,2060,220,6.2,6,6,19.2,5486,9,999999999,350,0.1090,0,88,0.120,0.0,1.0 +1995,2,17,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,22.8,85,101300,311,1401,421,101,166,64,10900,13200,7900,1170,190,4.6,8,8,19.2,2591,9,999999999,350,0.1090,0,88,0.120,0.0,1.0 +1995,2,17,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,22.8,91,101300,37,689,408,6,6,6,700,300,700,160,210,5.2,7,7,16.0,1676,9,999999999,350,0.1090,0,88,0.120,0.0,1.0 +1995,2,17,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,22.8,91,101400,0,0,396,0,0,0,0,0,0,0,190,5.7,4,4,16.0,77777,9,999999999,350,0.1090,0,88,0.120,0.0,1.0 +1995,2,17,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,23.3,96,101400,0,0,406,0,0,0,0,0,0,0,190,6.7,7,7,12.8,1372,9,999999999,350,0.1090,0,88,0.120,0.0,1.0 +1995,2,17,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,23.3,94,101500,0,0,415,0,0,0,0,0,0,0,200,4.6,8,8,16.0,1372,9,999999999,350,0.1090,0,88,0.120,0.0,1.0 +1995,2,17,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,23.3,94,101500,0,0,390,0,0,0,0,0,0,0,190,5.7,2,2,16.0,77777,9,999999999,350,0.1090,0,88,0.120,0.0,1.0 +1995,2,17,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,22.8,91,101400,0,0,403,0,0,0,0,0,0,0,190,4.1,6,6,16.0,7010,9,999999999,340,0.1090,0,88,0.120,0.0,1.0 +1995,2,18,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,23.3,96,101400,0,0,412,0,0,0,0,0,0,0,190,5.2,8,8,16.0,1524,9,999999999,340,0.1090,0,88,0.120,0.0,1.0 +1995,2,18,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,23.3,96,101400,0,0,433,0,0,0,0,0,0,0,200,3.6,10,10,11.2,1067,9,999999999,340,0.1090,0,88,0.120,0.0,1.0 +1995,2,18,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,22.8,94,101300,0,0,432,0,0,0,0,0,0,0,200,5.2,10,10,16.0,792,9,999999999,340,0.1090,0,88,0.120,0.0,1.0 +1995,2,18,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,22.8,91,101300,0,0,435,0,0,0,0,0,0,0,210,5.2,10,10,16.0,1524,9,999999999,340,0.1090,0,88,0.120,0.0,1.0 +1995,2,18,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,22.8,94,101300,0,0,420,0,0,0,0,0,0,0,210,4.6,9,9,16.0,1372,9,999999999,340,0.1090,0,88,0.120,1.0,1.0 +1995,2,18,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,22.8,94,101400,0,0,420,0,0,0,0,0,0,0,210,3.6,9,9,16.0,1219,9,999999999,340,0.1090,0,88,0.120,0.0,1.0 +1995,2,18,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,22.8,94,101400,0,0,420,0,0,0,0,0,0,0,210,3.6,9,9,19.2,1067,9,999999999,340,0.1090,0,88,0.120,0.0,1.0 +1995,2,18,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,22.8,91,101500,147,1365,423,36,8,35,4000,0,4000,1180,240,3.6,9,9,19.2,488,9,999999999,340,0.1090,0,88,0.120,0.0,1.0 +1995,2,18,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,22.8,85,101500,459,1400,430,127,38,115,14000,3500,12800,3160,210,4.6,9,9,19.2,945,9,999999999,340,0.1090,0,88,0.120,0.0,1.0 +1995,2,18,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,22.8,82,101600,736,1400,417,323,154,242,35100,15900,26800,6140,210,4.1,7,7,20.8,1676,9,999999999,340,0.1090,0,88,0.120,0.0,1.0 +1995,2,18,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,23.3,82,101600,956,1400,428,346,44,316,38100,4500,35000,10920,220,3.6,8,8,20.8,1981,9,999999999,340,0.1090,0,88,0.120,0.0,1.0 +1995,2,18,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,23.3,94,101500,1104,1400,436,200,0,200,24200,0,24200,9900,260,3.6,10,10,0.8,305,9,999999999,340,0.1090,0,88,0.120,10.0,1.0 +1995,2,18,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,22.8,82,101500,1170,1400,424,571,224,384,62900,23900,42900,15000,210,3.1,8,8,24.0,884,9,999999999,340,0.1090,0,88,0.120,1.0,1.0 +1995,2,18,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,23.3,77,101400,1149,1400,427,586,430,233,64500,45000,27400,8930,240,4.1,7,7,24.0,4267,9,999999999,329,0.1090,0,88,0.120,0.0,1.0 +1995,2,18,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,23.3,77,101400,1043,1400,443,440,184,303,48700,19600,34000,9830,240,4.1,9,9,24.0,1676,9,999999999,329,0.1090,0,88,0.120,0.0,1.0 +1995,2,18,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,23.3,77,101400,860,1400,408,566,677,150,59700,68100,17700,3620,250,2.6,2,2,32.0,77777,9,999999999,329,0.1090,0,88,0.120,0.0,1.0 +1995,2,18,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,22.8,77,101400,611,1400,408,352,459,152,37000,44800,17400,3060,210,3.6,3,3,32.0,77777,9,999999999,329,0.1090,0,88,0.120,0.0,1.0 +1995,2,18,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,22.8,85,101500,314,1400,396,150,431,53,15500,34600,7700,970,230,2.6,2,2,32.0,77777,9,999999999,329,0.1090,0,88,0.120,0.0,1.0 +1995,2,18,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,22.2,90,101500,38,688,390,10,52,7,1200,2000,1000,120,270,1.5,3,3,24.0,77777,9,999999999,329,0.1090,0,88,0.120,0.0,1.0 +1995,2,18,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,22.8,94,101600,0,0,387,0,0,0,0,0,0,0,240,1.5,2,2,19.2,77777,9,999999999,329,0.1090,0,88,0.120,0.0,1.0 +1995,2,18,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,22.2,90,101600,0,0,411,0,0,0,0,0,0,0,300,2.6,8,8,19.2,853,9,999999999,329,0.1090,0,88,0.120,0.0,1.0 +1995,2,18,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,21.7,91,101700,0,0,382,0,0,0,0,0,0,0,330,2.1,2,2,19.2,77777,9,999999999,329,0.1090,0,88,0.120,0.0,1.0 +1995,2,18,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,21.7,94,101700,0,0,384,0,0,0,0,0,0,0,270,2.6,3,3,19.2,77777,9,999999999,329,0.1090,0,88,0.120,0.0,1.0 +1995,2,18,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,21.7,97,101700,0,0,384,0,0,0,0,0,0,0,0,0.0,4,4,16.0,77777,9,999999999,329,0.1090,0,88,0.120,0.0,1.0 +1995,2,19,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,21.1,96,101700,0,0,369,0,0,0,0,0,0,0,50,2.1,1,1,16.0,77777,9,999999999,329,0.1100,0,88,0.120,0.0,1.0 +1995,2,19,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,20.6,97,101600,0,0,374,0,0,0,0,0,0,0,310,2.6,3,3,16.0,77777,9,999999999,320,0.1100,0,88,0.120,0.0,1.0 +1995,2,19,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,20.6,100,101600,0,0,377,0,0,0,0,0,0,0,270,1.5,5,5,16.0,77777,9,999999999,320,0.1100,0,88,0.120,0.0,1.0 +1995,2,19,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,20.0,100,101600,0,0,373,0,0,0,0,0,0,0,310,2.1,5,5,16.0,77777,9,999999999,320,0.1100,0,88,0.120,0.0,1.0 +1995,2,19,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,19.4,96,101600,0,0,363,0,0,0,0,0,0,0,290,1.5,2,2,16.0,77777,9,999999999,320,0.1100,0,88,0.120,0.0,1.0 +1995,2,19,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,18.9,97,101700,0,0,363,0,0,0,0,0,0,0,300,2.1,3,3,16.0,77777,9,999999999,320,0.1100,0,88,0.120,0.0,1.0 +1995,2,19,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,18.3,96,101700,0,0,352,0,0,0,0,0,0,0,0,0.0,1,1,24.0,77777,9,999999999,320,0.1100,0,88,0.120,0.0,1.0 +1995,2,19,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,19.4,93,101800,151,1388,361,50,128,36,5400,6800,4600,650,320,2.6,1,1,32.0,77777,9,999999999,320,0.1100,0,88,0.120,0.0,1.0 +1995,2,19,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,19.4,79,101800,463,1400,375,245,456,94,26100,41700,12300,1750,300,2.6,1,1,32.0,77777,9,999999999,320,0.1100,0,88,0.120,0.0,1.0 +1995,2,19,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,19.4,67,101800,740,1400,389,467,646,126,49100,64100,15200,2750,270,2.6,1,1,32.0,77777,9,999999999,309,0.1100,0,88,0.120,0.0,1.0 +1995,2,19,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.9,19.4,57,101800,960,1400,409,648,673,186,68100,67900,21400,4990,190,3.1,2,2,32.0,77777,9,999999999,309,0.1100,0,88,0.120,0.0,1.0 +1995,2,19,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,20.6,65,101700,1108,1400,409,633,518,222,66700,52500,25000,7670,200,4.6,3,3,32.0,77777,9,999999999,309,0.1100,0,88,0.120,0.0,1.0 +1995,2,19,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,21.7,69,101700,1174,1400,406,835,773,186,89700,79300,23000,7680,230,4.1,2,2,32.0,77777,9,999999999,309,0.1100,0,88,0.120,0.0,1.0 +1995,2,19,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,22.2,70,101600,1153,1400,414,815,769,181,87600,78900,22400,7100,210,4.1,3,3,32.0,77777,9,999999999,309,0.1100,0,88,0.120,0.0,1.0 +1995,2,19,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,21.7,72,101600,1047,1400,403,714,639,235,74400,64200,26200,7090,190,4.1,2,2,32.0,77777,9,999999999,309,0.1100,0,88,0.120,0.0,1.0 +1995,2,19,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,21.7,74,101500,863,1400,404,533,610,157,56100,61300,18200,3780,190,3.6,3,3,32.0,77777,9,999999999,309,0.1100,0,88,0.120,0.0,1.0 +1995,2,19,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,21.1,74,101600,614,1400,396,364,522,135,38700,51200,16200,2690,170,2.6,2,2,32.0,77777,9,999999999,300,0.1100,0,88,0.120,0.0,1.0 +1995,2,19,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,21.1,79,101600,317,1400,385,137,327,63,14500,26000,8600,1130,180,2.1,1,1,32.0,77777,9,999999999,300,0.1100,0,88,0.120,0.0,1.0 +1995,2,19,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,21.1,84,101700,39,711,380,9,17,8,1000,700,1000,160,0,0.0,1,1,24.0,77777,9,999999999,300,0.1100,0,88,0.120,0.0,1.0 +1995,2,19,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,20.6,85,101700,0,0,376,0,0,0,0,0,0,0,180,1.5,1,1,19.2,77777,9,999999999,300,0.1100,0,88,0.120,0.0,1.0 +1995,2,19,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,20.6,91,101800,0,0,363,0,0,0,0,0,0,0,60,1.5,0,0,19.2,77777,9,999999999,300,0.1100,0,88,0.120,0.0,1.0 +1995,2,19,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,20.0,90,101800,0,0,367,0,0,0,0,0,0,0,60,2.6,1,1,19.2,77777,9,999999999,300,0.1100,0,88,0.120,0.0,1.0 +1995,2,19,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,20.0,90,101800,0,0,360,0,0,0,0,0,0,0,330,2.1,0,0,19.2,77777,9,999999999,300,0.1100,0,88,0.120,0.0,1.0 +1995,2,19,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,19.4,87,101800,0,0,375,0,0,0,0,0,0,0,60,2.6,3,3,16.0,77777,9,999999999,290,0.1100,0,88,0.120,0.0,1.0 +1995,2,20,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,19.4,93,101700,0,0,370,0,0,0,0,0,0,0,0,0.0,3,3,16.0,77777,9,999999999,290,0.1110,0,88,0.120,0.0,1.0 +1995,2,20,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,19.4,93,101700,0,0,366,0,0,0,0,0,0,0,320,1.5,2,2,16.0,77777,9,999999999,290,0.1110,0,88,0.120,0.0,1.0 +1995,2,20,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,18.9,93,101600,0,0,358,0,0,0,0,0,0,0,330,2.1,1,1,16.0,77777,9,999999999,290,0.1110,0,88,0.120,0.0,1.0 +1995,2,20,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,18.3,90,101500,0,0,362,0,0,0,0,0,0,0,320,2.1,2,2,16.0,77777,9,999999999,290,0.1110,0,88,0.120,0.0,1.0 +1995,2,20,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,17.8,93,101500,0,0,351,0,0,0,0,0,0,0,60,2.1,1,1,16.0,77777,9,999999999,290,0.1110,0,88,0.120,0.0,1.0 +1995,2,20,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,17.8,93,101600,0,0,351,0,0,0,0,0,0,0,310,2.6,1,1,16.0,77777,9,999999999,290,0.1110,0,88,0.120,0.0,1.0 +1995,2,20,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,17.2,90,101600,0,0,350,0,0,0,0,0,0,0,330,2.1,1,1,24.0,77777,9,999999999,290,0.1110,0,88,0.120,0.0,1.0 +1995,2,20,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,18.3,87,101700,154,1387,365,46,66,39,5100,3900,4600,820,330,2.6,2,2,24.0,77777,9,999999999,290,0.1110,0,88,0.120,0.0,1.0 +1995,2,20,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,19.4,76,101700,467,1399,387,254,289,158,26600,27000,17600,3360,320,2.6,3,3,24.0,77777,9,999999999,290,0.1110,0,88,0.120,0.0,1.0 +1995,2,20,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,20.0,67,101700,744,1399,393,459,594,143,47800,58600,16600,3070,130,2.1,1,1,32.0,77777,9,999999999,290,0.1110,0,88,0.120,0.0,1.0 +1995,2,20,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,20.6,67,101700,964,1399,396,665,617,239,71000,63900,26800,6560,180,3.1,1,1,32.0,77777,9,999999999,290,0.1110,0,88,0.120,0.0,1.0 +1995,2,20,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,21.1,69,101600,1112,1399,397,773,733,190,82500,74900,22800,6740,220,3.1,1,1,32.0,77777,9,999999999,290,0.1110,0,88,0.120,0.0,1.0 +1995,2,20,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,21.1,67,101500,1178,1399,400,827,703,235,87500,71300,27200,9630,210,3.6,1,1,32.0,77777,9,999999999,279,0.1110,0,88,0.120,0.0,1.0 +1995,2,20,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,21.1,67,101500,1157,1399,405,814,715,222,86200,72700,25900,8650,230,4.1,2,2,32.0,77777,9,999999999,279,0.1110,0,88,0.120,0.0,1.0 +1995,2,20,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,22.2,72,101400,1051,1399,411,719,639,239,75000,64100,26600,7260,220,4.1,3,3,32.0,77777,9,999999999,279,0.1110,0,88,0.120,0.0,1.0 +1995,2,20,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,21.7,69,101500,867,1399,406,544,392,301,58000,41700,32100,7910,210,4.1,2,2,32.0,77777,9,999999999,279,0.1110,0,88,0.120,0.0,1.0 +1995,2,20,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,21.7,77,101500,617,1399,407,319,237,214,34400,23700,23900,5140,230,2.6,5,5,32.0,77777,9,999999999,279,0.1110,0,88,0.120,0.0,1.0 +1995,2,20,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,21.1,79,101500,320,1399,401,84,48,72,9100,4000,8200,1890,260,3.6,5,5,32.0,77777,9,999999999,279,0.1110,0,88,0.120,0.0,1.0 +1995,2,20,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,21.1,82,101600,40,711,397,9,2,8,1000,0,1000,310,260,2.6,5,5,24.0,77777,9,999999999,279,0.1110,0,88,0.120,0.0,1.0 +1995,2,20,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,21.1,84,101600,0,0,385,0,0,0,0,0,0,0,260,2.1,2,2,24.0,77777,9,999999999,279,0.1110,0,88,0.120,0.0,1.0 +1995,2,20,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,20.0,82,101700,0,0,375,0,0,0,0,0,0,0,270,2.1,1,1,24.0,77777,9,999999999,279,0.1110,0,88,0.120,0.0,1.0 +1995,2,20,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,20.0,84,101700,0,0,385,0,0,0,0,0,0,0,270,2.1,4,4,24.0,77777,9,999999999,279,0.1110,0,88,0.120,0.0,1.0 +1995,2,20,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,20.6,87,101700,0,0,392,0,0,0,0,0,0,0,0,0.0,6,6,24.0,2134,9,999999999,279,0.1110,0,88,0.120,0.0,1.0 +1995,2,20,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,20.6,87,101600,0,0,396,0,0,0,0,0,0,0,160,1.5,7,7,16.0,2438,9,999999999,279,0.1110,0,88,0.120,0.0,1.0 +1995,2,21,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,20.6,93,101600,0,0,368,0,0,0,0,0,0,0,0,0.0,1,1,16.0,77777,9,999999999,279,0.1110,0,88,0.120,0.0,1.0 +1995,2,21,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,20.6,97,101600,0,0,374,0,0,0,0,0,0,0,300,1.5,3,3,16.0,77777,9,999999999,279,0.1110,0,88,0.120,0.0,1.0 +1995,2,21,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,20.0,96,101500,0,0,367,0,0,0,0,0,0,0,280,2.1,2,2,16.0,77777,9,999999999,279,0.1110,0,88,0.120,0.0,1.0 +1995,2,21,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,20.0,100,101500,0,0,367,0,0,0,0,0,0,0,280,1.5,8,3,16.0,77777,9,999999999,270,0.1110,0,88,0.120,0.0,1.0 +1995,2,21,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,19.4,96,101500,0,0,363,0,0,0,0,0,0,0,310,2.1,2,2,16.0,77777,9,999999999,270,0.1110,0,88,0.120,0.0,1.0 +1995,2,21,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,19.4,100,101500,0,0,364,0,0,0,0,0,0,0,280,2.1,3,3,16.0,77777,9,999999999,270,0.1110,0,88,0.120,0.0,1.0 +1995,2,21,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,19.4,100,101500,0,12,367,0,0,0,0,0,0,0,300,1.5,4,4,24.0,77777,9,999999999,270,0.1110,0,88,0.120,0.0,1.0 +1995,2,21,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,20.0,93,101600,158,1398,364,57,187,36,6000,10300,4800,640,300,2.6,1,1,32.0,77777,9,999999999,270,0.1110,0,88,0.120,0.0,1.0 +1995,2,21,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,20.6,79,101600,471,1398,382,265,521,89,27300,47200,11300,1660,290,2.1,1,1,32.0,77777,9,999999999,270,0.1110,0,88,0.120,0.0,1.0 +1995,2,21,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,18.3,62,101600,748,1398,388,475,631,138,49700,62500,16200,2990,310,2.6,1,1,32.0,77777,9,999999999,270,0.1110,0,88,0.120,0.0,1.0 +1995,2,21,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,19.4,60,101600,968,1398,403,596,585,190,62500,59000,21500,5160,210,3.1,2,2,32.0,77777,9,999999999,270,0.1110,0,88,0.120,0.0,1.0 +1995,2,21,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,21.1,67,101500,1116,1398,409,841,803,200,89500,81800,23900,7140,240,3.6,3,3,32.0,77777,9,999999999,270,0.1110,0,88,0.120,0.0,1.0 +1995,2,21,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,21.1,67,101400,1182,1398,400,884,868,150,94000,87800,19600,5940,240,3.1,1,1,32.0,77777,9,999999999,270,0.1110,0,88,0.120,0.0,1.0 +1995,2,21,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,21.1,69,101300,1161,1398,397,848,842,148,90000,85100,19100,5540,220,4.1,1,1,32.0,77777,9,999999999,259,0.1110,0,88,0.120,0.0,1.0 +1995,2,21,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,21.1,67,101300,1055,1398,400,725,738,168,77500,75500,20500,5370,190,3.6,2,1,32.0,77777,9,999999999,259,0.1110,0,88,0.120,0.0,1.0 +1995,2,21,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,21.1,69,101300,870,1398,406,580,713,136,61700,72200,16600,3370,220,4.1,3,3,32.0,77777,9,999999999,259,0.1110,0,88,0.120,0.0,1.0 +1995,2,21,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,21.1,71,101300,620,1398,400,367,554,121,38000,53200,14300,2390,210,3.1,2,2,32.0,77777,9,999999999,259,0.1110,0,88,0.120,0.0,1.0 +1995,2,21,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,20.6,77,101400,322,1398,394,125,252,66,13100,20200,8500,1190,190,2.6,3,3,32.0,77777,9,999999999,259,0.1110,0,88,0.120,0.0,1.0 +1995,2,21,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,20.6,85,101400,42,734,381,10,27,9,1200,900,1200,140,220,2.6,2,2,24.0,77777,9,999999999,259,0.1110,0,88,0.120,0.0,1.0 +1995,2,21,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,20.6,87,101500,0,0,373,0,0,0,0,0,0,0,210,1.5,1,1,24.0,77777,9,999999999,259,0.1110,0,88,0.120,0.0,1.0 +1995,2,21,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,20.6,87,101500,0,0,373,0,0,0,0,0,0,0,190,2.1,1,1,24.0,77777,9,999999999,259,0.1110,0,88,0.120,0.0,1.0 +1995,2,21,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,20.6,91,101500,0,0,385,0,0,0,0,0,0,0,50,2.1,5,5,24.0,77777,9,999999999,259,0.1110,0,88,0.120,0.0,1.0 +1995,2,21,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,19.4,87,101500,0,0,372,0,0,0,0,0,0,0,60,2.1,2,2,24.0,77777,9,999999999,259,0.1110,0,88,0.120,0.0,1.0 +1995,2,21,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,19.4,93,101500,0,0,370,0,0,0,0,0,0,0,340,1.5,3,3,16.0,77777,9,999999999,250,0.1110,0,88,0.120,0.0,1.0 +1995,2,22,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,19.4,93,101500,0,0,361,0,0,0,0,0,0,0,0,0.0,1,1,16.0,77777,9,999999999,250,0.1120,0,88,0.120,0.0,1.0 +1995,2,22,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,18.9,93,101500,0,0,358,0,0,0,0,0,0,0,60,2.1,1,1,16.0,77777,9,999999999,250,0.1120,0,88,0.120,0.0,1.0 +1995,2,22,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,18.9,97,101400,0,0,348,0,0,0,0,0,0,0,300,1.5,0,0,16.0,77777,9,999999999,250,0.1120,0,88,0.120,0.0,1.0 +1995,2,22,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,18.9,97,101400,0,0,355,0,0,0,0,0,0,0,310,2.6,1,1,16.0,77777,9,999999999,250,0.1120,0,88,0.120,0.0,1.0 +1995,2,22,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,18.9,97,101400,0,0,355,0,0,0,0,0,0,0,340,1.5,1,1,16.0,77777,9,999999999,250,0.1120,0,88,0.120,0.0,1.0 +1995,2,22,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,18.9,97,101400,0,0,355,0,0,0,0,0,0,0,60,2.1,1,1,16.0,77777,9,999999999,250,0.1120,0,88,0.120,0.0,1.0 +1995,2,22,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,19.4,100,101500,0,35,364,0,0,0,0,0,0,0,300,1.5,3,3,12.8,77777,9,999999999,250,0.1120,0,88,0.120,0.0,1.0 +1995,2,22,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,20.6,97,101500,162,1398,370,58,150,40,6100,8000,5100,730,0,0.0,2,2,32.0,77777,9,999999999,250,0.1120,0,88,0.120,0.0,1.0 +1995,2,22,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,21.1,79,101500,475,1398,401,218,315,111,22900,29000,13000,2110,210,1.5,5,5,24.0,77777,9,999999999,250,0.1120,0,88,0.120,0.0,1.0 +1995,2,22,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,21.1,76,101600,753,1398,412,314,281,163,34600,29600,18600,3610,220,2.1,7,7,24.0,1311,9,999999999,250,0.1120,0,88,0.120,0.0,1.0 +1995,2,22,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,21.1,69,101500,973,1398,428,421,106,347,46300,10900,38700,11970,200,3.6,8,8,24.0,1128,9,999999999,250,0.1120,0,88,0.120,0.0,1.0 +1995,2,22,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,21.7,72,101500,1121,1398,403,815,839,142,86500,84700,18300,4850,200,4.6,2,2,24.0,77777,9,999999999,240,0.1120,0,88,0.120,0.0,1.0 +1995,2,22,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,21.7,67,101400,1186,1398,435,461,237,259,51800,25800,29800,10190,210,5.7,8,8,24.0,1676,9,999999999,240,0.1120,0,88,0.120,0.0,1.0 +1995,2,22,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,21.7,69,101300,1165,1398,406,869,888,129,89600,88800,15300,3990,240,4.1,2,2,24.0,77777,9,999999999,240,0.1120,0,88,0.120,0.0,1.0 +1995,2,22,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,21.1,69,101300,1058,1398,406,702,635,221,73700,64100,25000,6900,240,4.6,3,3,24.0,77777,9,999999999,240,0.1120,0,88,0.120,0.0,1.0 +1995,2,22,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,21.7,69,101300,874,1398,420,394,384,154,43400,39700,18500,3680,220,4.6,6,6,24.0,1158,9,999999999,240,0.1120,0,88,0.120,0.0,1.0 +1995,2,22,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,21.1,71,101300,623,1398,407,274,381,104,30000,37600,13200,2030,260,3.6,4,4,24.0,77777,9,999999999,240,0.1120,0,88,0.120,0.0,1.0 +1995,2,22,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,20.6,77,101300,325,1398,400,128,179,86,13500,14500,10100,1660,260,3.1,5,5,24.0,77777,9,999999999,240,0.1120,0,88,0.120,0.0,1.0 +1995,2,22,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,20.6,82,101400,43,734,388,13,51,10,1500,2000,1400,170,270,3.6,3,3,24.0,77777,9,999999999,240,0.1120,0,88,0.120,0.0,1.0 +1995,2,22,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,20.0,79,101500,0,0,390,0,0,0,0,0,0,0,270,3.1,4,4,24.0,77777,9,999999999,240,0.1120,0,88,0.120,0.0,1.0 +1995,2,22,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,20.0,82,101500,0,0,384,0,0,0,0,0,0,0,270,3.1,3,3,24.0,77777,9,999999999,240,0.1120,0,88,0.120,0.0,1.0 +1995,2,22,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,19.4,79,101500,0,0,380,0,0,0,0,0,0,0,260,2.1,2,2,24.0,77777,9,999999999,240,0.1120,0,88,0.120,0.0,1.0 +1995,2,22,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,20.0,82,101500,0,0,387,0,0,0,0,0,0,0,270,2.6,4,4,24.0,77777,9,999999999,240,0.1120,0,88,0.120,0.0,1.0 +1995,2,22,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,20.0,84,101500,0,0,385,0,0,0,0,0,0,0,280,3.6,4,4,16.0,77777,9,999999999,240,0.1120,0,88,0.120,0.0,1.0 +1995,2,23,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,20.0,87,101500,0,0,375,0,0,0,0,0,0,0,320,2.1,2,2,16.0,77777,9,999999999,229,0.1130,0,88,0.120,0.0,1.0 +1995,2,23,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,20.0,87,101400,0,0,370,0,0,0,0,0,0,0,290,3.1,1,1,16.0,77777,9,999999999,229,0.1130,0,88,0.120,0.0,1.0 +1995,2,23,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,19.4,90,101400,0,0,369,0,0,0,0,0,0,0,300,1.5,2,2,16.0,77777,9,999999999,229,0.1130,0,88,0.120,0.0,1.0 +1995,2,23,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,18.9,93,101300,0,0,366,0,0,0,0,0,0,0,0,0.0,3,3,16.0,77777,9,999999999,229,0.1130,0,88,0.120,0.0,1.0 +1995,2,23,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,19.4,93,101400,0,0,373,0,0,0,0,0,0,0,310,1.5,4,4,16.0,77777,9,999999999,229,0.1130,0,88,0.120,0.0,1.0 +1995,2,23,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,18.9,97,101400,0,0,363,0,0,0,0,0,0,0,80,1.5,3,3,16.0,77777,9,999999999,229,0.1130,0,88,0.120,0.0,1.0 +1995,2,23,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,19.4,93,101500,0,35,383,0,0,0,0,0,0,0,40,2.1,7,7,16.0,853,9,999999999,229,0.1130,0,88,0.120,0.0,1.0 +1995,2,23,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,20.6,91,101500,166,1397,379,48,74,39,5200,4500,4700,820,310,1.5,3,3,32.0,77777,9,999999999,229,0.1130,0,88,0.120,0.0,1.0 +1995,2,23,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,20.6,72,101600,480,1397,390,246,450,91,26400,41600,12000,1690,260,1.5,2,1,32.0,77777,9,999999999,229,0.1130,0,88,0.120,0.0,1.0 +1995,2,23,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,20.6,67,101600,757,1397,409,385,434,150,41700,44100,17800,3240,250,2.1,4,4,32.0,77777,9,999999999,229,0.1130,0,88,0.120,0.0,1.0 +1995,2,23,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,20.6,65,101600,977,1397,405,653,655,195,68500,66000,22200,5360,250,3.6,4,2,32.0,77777,9,999999999,229,0.1130,0,88,0.120,0.0,1.0 +1995,2,23,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,20.6,65,101500,1125,1397,409,737,574,275,79500,59900,31100,10120,250,4.1,3,3,32.0,77777,9,999999999,229,0.1130,0,88,0.120,0.0,1.0 +1995,2,23,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,20.6,65,101400,1190,1397,405,858,705,258,90400,71200,29500,10910,250,4.1,2,2,32.0,77777,9,999999999,229,0.1130,0,88,0.120,0.0,1.0 +1995,2,23,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,21.1,65,101400,1169,1397,412,799,643,261,83800,64800,29400,10370,250,3.6,3,3,32.0,77777,9,999999999,229,0.1130,0,88,0.120,0.0,1.0 +1995,2,23,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,21.1,67,101300,1062,1397,405,722,694,194,76500,70500,22700,6200,250,4.1,4,2,32.0,77777,9,999999999,229,0.1130,0,88,0.120,0.0,1.0 +1995,2,23,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,21.1,69,101300,877,1397,413,304,265,138,33900,27400,16700,3290,250,4.1,5,5,32.0,77777,9,999999999,229,0.1130,0,88,0.120,0.0,1.0 +1995,2,23,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,20.6,72,101300,626,1397,414,262,150,194,28400,15100,21600,4680,250,3.6,7,7,32.0,1219,9,999999999,229,0.1130,0,88,0.120,0.0,1.0 +1995,2,23,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,20.6,77,101400,328,1397,415,91,101,67,10100,8500,8100,1460,220,2.6,8,8,32.0,1097,9,999999999,229,0.1130,0,88,0.120,0.0,1.0 +1995,2,23,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,20.6,79,101400,44,757,397,9,1,9,1100,0,1100,340,230,2.1,5,5,24.0,77777,9,999999999,229,0.1130,0,88,0.120,0.0,1.0 +1995,2,23,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,20.6,82,101500,0,0,388,0,0,0,0,0,0,0,230,2.1,3,3,16.0,77777,9,999999999,229,0.1130,0,88,0.120,0.0,1.0 +1995,2,23,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,20.6,82,101600,0,0,391,0,0,0,0,0,0,0,60,2.1,4,4,16.0,77777,9,999999999,229,0.1130,0,88,0.120,0.0,1.0 +1995,2,23,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,20.6,87,101600,0,0,373,0,0,0,0,0,0,0,40,2.6,1,1,16.0,77777,9,999999999,229,0.1130,0,88,0.120,0.0,1.0 +1995,2,23,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,20.0,87,101600,0,0,375,0,0,0,0,0,0,0,60,2.1,2,2,16.0,77777,9,999999999,229,0.1130,0,88,0.120,0.0,1.0 +1995,2,23,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,20.0,93,101600,0,0,364,0,0,0,0,0,0,0,290,1.5,1,1,16.0,77777,9,999999999,229,0.1130,0,88,0.120,0.0,1.0 +1995,2,24,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,19.4,90,101600,0,0,364,0,0,0,0,0,0,0,310,2.1,1,1,16.0,77777,9,999999999,229,0.1130,0,88,0.120,0.0,1.0 +1995,2,24,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,19.4,93,101600,0,0,361,0,0,0,0,0,0,0,310,2.1,1,1,16.0,77777,9,999999999,229,0.1130,0,88,0.120,0.0,1.0 +1995,2,24,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,19.4,93,101600,0,0,361,0,0,0,0,0,0,0,340,1.5,1,1,16.0,77777,9,999999999,229,0.1130,0,88,0.120,0.0,1.0 +1995,2,24,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,19.4,93,101600,0,0,361,0,0,0,0,0,0,0,320,2.1,1,1,16.0,77777,9,999999999,229,0.1130,0,88,0.120,0.0,1.0 +1995,2,24,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,19.4,96,101600,0,0,367,0,0,0,0,0,0,0,320,2.1,3,3,16.0,77777,9,999999999,229,0.1130,0,88,0.120,0.0,1.0 +1995,2,24,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,19.4,93,101600,0,0,375,0,0,0,0,0,0,0,270,2.6,5,5,16.0,77777,9,999999999,229,0.1130,0,88,0.120,0.0,1.0 +1995,2,24,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,18.9,93,101600,0,58,386,0,0,0,0,0,0,0,90,1.5,8,8,24.0,2134,9,999999999,229,0.1130,0,88,0.120,0.0,1.0 +1995,2,24,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,20.0,84,101700,170,1396,410,73,20,71,8000,1400,7800,1460,90,2.6,9,9,24.0,1981,9,999999999,229,0.1130,0,88,0.120,0.0,1.0 +1995,2,24,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,20.0,76,101800,484,1396,419,139,29,129,15300,2700,14300,3550,90,1.5,9,9,24.0,1829,9,999999999,229,0.1130,0,88,0.120,0.0,1.0 +1995,2,24,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,20.0,71,101900,761,1396,426,118,66,82,13800,7000,10000,2110,290,2.1,9,9,32.0,1524,9,999999999,229,0.1130,0,88,0.120,0.0,1.0 +1995,2,24,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,19.4,64,101800,981,1396,432,453,118,370,49800,12200,41300,12700,180,3.1,10,9,32.0,1402,9,999999999,229,0.1130,0,88,0.120,0.0,1.0 +1995,2,24,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,20.0,71,101700,1129,1396,438,243,0,243,29100,0,29100,11670,120,3.6,10,10,24.0,1676,9,999999999,229,0.1130,0,88,0.120,0.0,1.0 +1995,2,24,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,19.4,67,101600,1195,1396,428,314,136,197,36000,14900,23200,7770,90,3.6,9,9,24.0,1524,9,999999999,229,0.1130,0,88,0.120,0.0,1.0 +1995,2,24,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,21.1,82,101600,1173,1396,433,253,0,253,30400,0,30400,12150,70,5.7,10,10,11.2,1676,9,999999999,229,0.1130,0,88,0.120,0.0,1.0 +1995,2,24,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,20.0,74,101600,1066,1396,423,428,75,371,47200,7700,41300,13920,40,3.6,9,9,19.2,1676,9,999999999,240,0.1130,0,88,0.120,0.0,1.0 +1995,2,24,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,20.0,69,101500,880,1396,429,266,82,214,29300,8300,24100,7430,70,2.6,9,9,19.2,1676,9,999999999,240,0.1130,0,88,0.120,0.0,1.0 +1995,2,24,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,20.0,69,101500,629,1396,420,265,135,204,28700,13600,22600,4920,10,4.1,8,8,24.0,1676,9,999999999,240,0.1130,0,88,0.120,0.0,1.0 +1995,2,24,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,20.0,74,101500,331,1396,396,144,228,90,15200,18600,10800,1750,70,5.2,4,4,24.0,77777,9,999999999,240,0.1130,0,88,0.120,0.0,1.0 +1995,2,24,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,20.6,82,101600,46,756,394,10,26,9,1200,900,1200,140,40,3.6,5,5,16.0,77777,9,999999999,240,0.1130,0,88,0.120,0.0,1.0 +1995,2,24,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,20.6,85,101600,0,0,399,0,0,0,0,0,0,0,70,4.6,7,7,16.0,1311,9,999999999,240,0.1130,0,88,0.120,0.0,1.0 +1995,2,24,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,20.6,85,101700,0,0,414,0,0,0,0,0,0,0,70,3.6,9,9,16.0,1128,9,999999999,240,0.1130,0,88,0.120,0.0,1.0 +1995,2,24,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,20.6,87,101700,0,0,385,0,0,0,0,0,0,0,70,3.6,4,4,16.0,77777,9,999999999,240,0.1130,0,88,0.120,0.0,1.0 +1995,2,24,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,20.6,87,101700,0,0,388,0,0,0,0,0,0,0,70,3.6,5,5,16.0,77777,9,999999999,240,0.1130,0,88,0.120,0.0,1.0 +1995,2,24,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,20.0,84,101700,0,0,373,0,0,0,0,0,0,0,60,2.6,1,1,19.2,77777,9,999999999,240,0.1130,0,88,0.120,0.0,1.0 +1995,2,25,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,20.0,93,101700,0,0,364,0,0,0,0,0,0,0,300,2.1,1,1,19.2,77777,9,999999999,240,0.1140,0,88,0.120,0.0,1.0 +1995,2,25,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,20.0,93,101600,0,0,373,0,0,0,0,0,0,0,290,1.5,3,3,19.2,77777,9,999999999,240,0.1140,0,88,0.120,0.0,1.0 +1995,2,25,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,19.4,96,101600,0,0,358,0,0,0,0,0,0,0,320,1.5,1,1,19.2,77777,9,999999999,240,0.1140,0,88,0.120,0.0,1.0 +1995,2,25,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,19.4,96,101600,0,0,372,0,0,0,0,0,0,0,330,2.1,5,5,19.2,77777,9,999999999,240,0.1140,0,88,0.120,0.0,1.0 +1995,2,25,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,19.4,100,101600,0,0,377,0,0,0,0,0,0,0,0,0.0,7,7,19.2,1524,9,999999999,240,0.1140,0,88,0.120,0.0,1.0 +1995,2,25,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,19.4,96,101600,0,0,386,0,0,0,0,0,0,0,290,1.5,8,8,19.2,1524,9,999999999,250,0.1140,0,88,0.120,0.0,1.0 +1995,2,25,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,19.4,96,101700,0,81,363,0,3,0,0,0,0,0,290,1.5,2,2,32.0,77777,9,999999999,250,0.1140,0,88,0.120,0.0,1.0 +1995,2,25,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,20.6,93,101700,174,1396,377,78,203,52,8100,11400,6600,1000,300,1.5,3,3,32.0,77777,9,999999999,250,0.1140,0,88,0.120,0.0,1.0 +1995,2,25,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,20.0,74,101800,488,1396,389,290,594,82,30200,54700,11000,1580,310,1.5,2,2,32.0,77777,9,999999999,250,0.1140,0,88,0.120,0.0,1.0 +1995,2,25,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,20.0,67,101800,766,1396,402,493,684,118,52300,68500,14600,2670,60,2.1,3,3,32.0,77777,9,999999999,259,0.1140,0,88,0.120,0.0,1.0 +1995,2,25,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,20.6,69,101800,986,1396,406,679,636,229,70400,63600,25400,6240,170,4.1,4,4,32.0,77777,9,999999999,259,0.1140,0,88,0.120,0.0,1.0 +1995,2,25,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,21.1,65,101700,1134,1396,422,517,265,301,57100,28800,33600,10790,240,3.1,6,6,32.0,3048,9,999999999,259,0.1140,0,88,0.120,0.0,1.0 +1995,2,25,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.9,20.6,61,101700,1199,1396,425,856,770,195,92100,79000,24000,8680,200,3.6,6,6,32.0,3048,9,999999999,259,0.1140,0,88,0.120,0.0,1.0 +1995,2,25,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,20.6,67,101600,1177,1396,427,589,194,425,64500,20600,47000,16940,220,4.1,8,8,32.0,2591,9,999999999,270,0.1140,0,88,0.120,0.0,1.0 +1995,2,25,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,20.6,77,101500,1069,1396,424,418,66,368,46100,6800,40900,13890,310,4.6,9,9,32.0,1219,9,999999999,270,0.1140,0,88,0.120,0.0,1.0 +1995,2,25,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,21.1,84,101500,884,1396,418,449,230,303,48900,24100,33600,8470,80,3.6,9,9,32.0,1829,9,999999999,270,0.1140,0,88,0.120,1.0,1.0 +1995,2,25,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,19.4,76,101500,632,1396,416,306,81,269,33400,8100,29800,7070,10,3.1,9,9,24.0,1829,9,999999999,270,0.1140,0,88,0.120,0.0,1.0 +1995,2,25,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,19.4,81,101600,333,1396,421,56,0,56,6500,0,6500,2190,70,3.6,10,10,24.0,1006,9,999999999,279,0.1140,0,88,0.120,0.0,1.0 +1995,2,25,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,20.0,84,101600,47,779,410,8,3,8,900,200,900,210,70,3.1,9,9,24.0,1829,9,999999999,279,0.1140,0,88,0.120,0.0,1.0 +1995,2,25,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,20.0,87,101600,0,0,419,0,0,0,0,0,0,0,70,3.6,10,10,16.0,2134,9,999999999,279,0.1140,0,88,0.120,0.0,1.0 +1995,2,25,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,19.4,84,101700,0,0,418,0,0,0,0,0,0,0,80,2.1,10,10,16.0,2134,9,999999999,279,0.1140,0,88,0.120,0.0,1.0 +1995,2,25,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,19.4,84,101700,0,0,418,0,0,0,0,0,0,0,0,0.0,10,10,16.0,2438,9,999999999,279,0.1140,0,88,0.120,0.0,1.0 +1995,2,25,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,19.4,84,101700,0,0,418,0,0,0,0,0,0,0,220,2.1,10,10,16.0,2438,9,999999999,290,0.1140,0,88,0.120,0.0,1.0 +1995,2,25,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,18.9,82,101700,0,0,406,0,0,0,0,0,0,0,300,2.6,9,9,16.0,2438,9,999999999,290,0.1140,0,88,0.120,0.0,1.0 +1995,2,26,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,18.3,81,101700,0,0,383,0,0,0,0,0,0,0,320,1.5,6,6,19.2,2438,9,999999999,290,0.1140,0,88,0.120,0.0,1.0 +1995,2,26,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,18.3,87,101600,0,0,360,0,0,0,0,0,0,0,70,1.5,1,1,19.2,77777,9,999999999,290,0.1140,0,88,0.120,0.0,1.0 +1995,2,26,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,18.3,90,101500,0,0,357,0,0,0,0,0,0,0,20,2.6,1,1,19.2,77777,9,999999999,290,0.1140,0,88,0.120,0.0,1.0 +1995,2,26,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,17.8,90,101500,0,0,347,0,0,0,0,0,0,0,280,2.1,0,0,19.2,77777,9,999999999,290,0.1140,0,88,0.120,0.0,1.0 +1995,2,26,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,17.8,93,101500,0,0,345,0,0,0,0,0,0,0,310,2.1,0,0,19.2,77777,9,999999999,290,0.1140,0,88,0.120,0.0,1.0 +1995,2,26,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,18.3,96,101500,0,0,345,0,0,0,0,0,0,0,310,2.1,0,0,19.2,77777,9,999999999,290,0.1140,0,88,0.120,0.0,1.0 +1995,2,26,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,17.8,93,101600,1,105,351,0,7,0,0,0,0,0,310,2.1,1,1,24.0,77777,9,999999999,290,0.1140,0,88,0.120,0.0,1.0 +1995,2,26,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,18.9,87,101700,179,1395,363,76,314,36,7700,19600,5200,630,330,2.6,1,1,24.0,77777,9,999999999,290,0.1140,0,88,0.120,0.0,1.0 +1995,2,26,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,18.9,74,101700,493,1395,370,308,717,55,32500,66800,8800,1170,310,4.1,0,0,32.0,77777,9,999999999,290,0.1140,0,88,0.120,0.0,1.0 +1995,2,26,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,18.9,65,101700,770,1395,394,524,753,108,54400,74100,13300,2280,30,3.6,2,2,32.0,77777,9,999999999,290,0.1140,0,88,0.120,0.0,1.0 +1995,2,26,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,17.8,58,101700,990,1395,399,670,753,135,70200,75500,16500,3590,20,4.6,3,3,32.0,77777,9,999999999,290,0.1140,0,88,0.120,0.0,1.0 +1995,2,26,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,17.2,53,101600,1138,1395,395,859,936,96,89400,93800,12600,3230,50,4.6,1,1,32.0,77777,9,999999999,290,0.1140,0,88,0.120,0.0,1.0 +1995,2,26,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,16.7,51,101500,1203,1395,395,851,872,99,88400,87500,12700,3880,60,6.2,1,1,32.0,77777,9,999999999,290,0.1140,0,88,0.120,0.0,1.0 +1995,2,26,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,16.7,51,101400,1180,1395,395,841,878,98,87400,88100,12700,3630,30,4.1,1,1,32.0,77777,9,999999999,290,0.1140,0,88,0.120,0.0,1.0 +1995,2,26,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,17.2,51,101300,1073,1395,398,802,923,92,83500,92400,12300,2760,80,4.6,1,1,32.0,77777,9,999999999,290,0.1140,0,88,0.120,0.0,1.0 +1995,2,26,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,13.9,41,101200,887,1395,394,601,817,81,62800,81100,11100,1990,70,5.7,1,1,32.0,77777,9,999999999,290,0.1140,0,88,0.120,0.0,1.0 +1995,2,26,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,15.0,49,101300,635,1395,387,413,766,64,44200,74800,10000,1440,30,6.2,1,1,32.0,77777,9,999999999,290,0.1140,0,88,0.120,0.0,1.0 +1995,2,26,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,15.6,58,101300,336,1395,376,184,588,42,19000,49600,7000,850,40,6.7,1,1,32.0,77777,9,999999999,290,0.1140,0,88,0.120,0.0,1.0 +1995,2,26,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,16.1,66,101400,48,779,368,17,102,10,1800,4900,1500,190,60,5.7,1,1,24.0,77777,9,999999999,290,0.1140,0,88,0.120,0.0,1.0 +1995,2,26,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,16.1,68,101400,0,0,358,0,0,0,0,0,0,0,50,3.6,0,0,16.0,77777,9,999999999,290,0.1140,0,88,0.120,0.0,1.0 +1995,2,26,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,16.7,73,101500,0,0,357,0,0,0,0,0,0,0,40,3.6,0,0,16.0,77777,9,999999999,290,0.1140,0,88,0.120,0.0,1.0 +1995,2,26,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,16.7,73,101500,0,0,357,0,0,0,0,0,0,0,60,3.6,0,0,16.0,77777,9,999999999,290,0.1140,0,88,0.120,0.0,1.0 +1995,2,26,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,16.7,73,101500,0,0,357,0,0,0,0,0,0,0,70,4.6,0,0,16.0,77777,9,999999999,290,0.1140,0,88,0.120,0.0,1.0 +1995,2,26,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,16.7,76,101500,0,0,354,0,0,0,0,0,0,0,20,2.6,0,0,19.2,77777,9,999999999,290,0.1140,0,88,0.120,0.0,1.0 +1995,2,27,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,16.7,76,101400,0,0,354,0,0,0,0,0,0,0,70,3.6,0,0,19.2,77777,9,999999999,290,0.1150,0,88,0.120,0.0,1.0 +1995,2,27,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,17.2,81,101400,0,0,352,0,0,0,0,0,0,0,350,2.6,0,0,19.2,77777,9,999999999,300,0.1150,0,88,0.120,0.0,1.0 +1995,2,27,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,16.7,90,101300,0,0,340,0,0,0,0,0,0,0,290,2.6,0,0,19.2,77777,9,999999999,300,0.1150,0,88,0.120,0.0,1.0 +1995,2,27,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,16.7,90,101300,0,0,340,0,0,0,0,0,0,0,320,2.6,0,0,19.2,77777,9,999999999,300,0.1150,0,88,0.120,0.0,1.0 +1995,2,27,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,16.7,90,101300,0,0,340,0,0,0,0,0,0,0,330,2.6,0,0,19.2,77777,9,999999999,300,0.1150,0,88,0.120,0.0,1.0 +1995,2,27,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,16.7,93,101300,0,0,338,0,0,0,0,0,0,0,300,2.6,0,0,19.2,77777,9,999999999,300,0.1150,0,88,0.120,0.0,1.0 +1995,2,27,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,16.7,93,101400,1,105,345,0,5,0,0,0,0,0,290,2.1,1,1,24.0,77777,9,999999999,309,0.1150,0,88,0.120,0.0,1.0 +1995,2,27,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,17.8,84,101500,183,1394,368,75,292,36,7600,18500,5100,640,310,2.1,3,3,32.0,77777,9,999999999,309,0.1150,0,88,0.120,0.0,1.0 +1995,2,27,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,17.8,67,101500,497,1394,383,293,538,101,30100,49300,12500,1880,0,0.0,2,2,32.0,77777,9,999999999,309,0.1150,0,88,0.120,0.0,1.0 +1995,2,27,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,18.3,62,101500,775,1394,400,493,663,124,52100,66300,15100,2810,130,5.7,4,4,32.0,77777,9,999999999,309,0.1150,0,88,0.120,0.0,1.0 +1995,2,27,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,18.3,64,101500,995,1394,400,576,339,334,62100,36500,35900,9970,140,5.7,5,5,32.0,77777,9,999999999,309,0.1150,0,88,0.120,0.0,1.0 +1995,2,27,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,18.3,62,101400,1142,1394,400,796,698,224,84200,70900,26000,8470,140,6.2,4,4,32.0,77777,9,999999999,320,0.1150,0,88,0.120,0.0,1.0 +1995,2,27,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,19.4,64,101300,1207,1394,408,708,577,208,75700,59000,24500,9480,130,5.7,5,5,32.0,77777,9,999999999,320,0.1150,0,88,0.120,0.0,1.0 +1995,2,27,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,18.3,60,101300,1184,1394,403,806,717,196,86400,73500,23800,8390,140,5.7,4,4,32.0,77777,9,999999999,320,0.1150,0,88,0.120,0.0,1.0 +1995,2,27,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,18.3,60,101200,1076,1394,415,483,240,297,53000,26000,32900,9660,150,5.7,7,7,32.0,7010,9,999999999,320,0.1150,0,88,0.120,0.0,1.0 +1995,2,27,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,18.9,67,101200,890,1394,425,277,137,190,31200,14500,21800,5340,150,5.7,9,9,32.0,4267,9,999999999,320,0.1150,0,88,0.120,0.0,1.0 +1995,2,27,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,19.4,69,101200,638,1394,425,206,57,180,22600,5600,20100,5310,130,4.6,9,9,32.0,4267,9,999999999,329,0.1150,0,88,0.120,0.0,1.0 +1995,2,27,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,19.4,71,101200,339,1394,434,56,0,56,6500,0,6500,2200,150,4.1,10,10,32.0,1981,9,999999999,329,0.1150,0,88,0.120,0.0,1.0 +1995,2,27,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,20.0,76,101200,50,802,431,7,0,7,900,0,900,280,130,4.1,10,10,24.0,1829,9,999999999,329,0.1150,0,88,0.120,0.0,1.0 +1995,2,27,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,20.6,97,101200,0,0,413,0,0,0,0,0,0,0,100,4.1,10,10,3.2,518,9,999999999,329,0.1150,0,88,0.120,11.0,1.0 +1995,2,27,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,20.6,100,101300,0,0,410,0,0,0,0,0,0,0,30,5.2,10,10,0.8,30,9,999999999,329,0.1150,0,88,0.120,15.0,1.0 +1995,2,27,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,20.6,100,101300,0,0,410,0,0,0,0,0,0,0,70,3.1,10,10,2.0,91,9,999999999,340,0.1150,0,88,0.120,39.0,1.0 +1995,2,27,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,20.6,100,101300,0,0,410,0,0,0,0,0,0,0,20,2.1,10,10,11.2,640,9,999999999,340,0.1150,0,88,0.120,22.0,1.0 +1995,2,27,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,20.6,100,101200,0,0,410,0,0,0,0,0,0,0,30,3.6,10,10,6.4,945,9,999999999,340,0.1150,0,88,0.120,8.0,1.0 +1995,2,28,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,20.6,97,101200,0,0,413,0,0,0,0,0,0,0,310,2.6,10,10,8.0,1067,9,999999999,340,0.1160,0,88,0.120,2.0,1.0 +1995,2,28,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,21.1,93,101100,0,0,420,0,0,0,0,0,0,0,200,3.6,10,10,12.8,1341,9,999999999,340,0.1160,0,88,0.120,0.0,1.0 +1995,2,28,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,20.6,87,101100,0,0,411,0,0,0,0,0,0,0,210,4.1,9,9,16.0,2134,9,999999999,340,0.1160,0,88,0.120,0.0,1.0 +1995,2,28,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,21.1,90,101000,0,0,389,0,0,0,0,0,0,0,210,4.6,5,5,16.0,77777,9,999999999,340,0.1160,0,88,0.120,0.0,1.0 +1995,2,28,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,21.1,90,101100,0,0,389,0,0,0,0,0,0,0,210,3.6,5,5,16.0,77777,9,999999999,340,0.1160,0,88,0.120,0.0,1.0 +1995,2,28,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,20.6,87,101100,0,0,379,0,0,0,0,0,0,0,210,3.6,2,2,16.0,77777,9,999999999,340,0.1160,0,88,0.120,0.0,1.0 +1995,2,28,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,20.0,84,101100,1,128,382,0,2,0,0,0,0,0,200,3.6,3,3,19.2,77777,9,999999999,340,0.1160,0,88,0.120,0.0,1.0 +1995,2,28,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,20.6,79,101100,187,1394,397,68,137,50,7200,8100,6100,940,200,5.2,5,5,32.0,77777,9,999999999,329,0.1160,0,88,0.120,0.0,1.0 +1995,2,28,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,20.6,77,101100,502,1394,415,225,73,199,24600,7000,22100,4970,200,4.6,8,8,32.0,1494,9,999999999,329,0.1160,0,88,0.120,0.0,1.0 +1995,2,28,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,21.1,76,101200,779,1394,407,468,402,243,50100,42300,26400,5850,200,4.6,6,6,32.0,1524,9,999999999,329,0.1160,0,88,0.120,0.0,1.0 +1995,2,28,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,21.7,77,101200,999,1394,422,445,269,252,49000,29100,28100,7230,190,4.1,8,8,32.0,1372,9,999999999,329,0.1160,0,88,0.120,0.0,1.0 +1995,2,28,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,21.7,77,101100,1146,1394,431,473,111,381,51900,11800,42200,14410,200,4.1,9,9,32.0,1494,9,999999999,329,0.1160,0,88,0.120,0.0,1.0 +1995,2,28,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,21.7,74,101100,1211,1394,426,701,106,609,77100,11100,67400,25040,210,6.2,8,8,32.0,1676,9,999999999,329,0.1160,0,88,0.120,0.0,1.0 +1995,2,28,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,22.2,72,100900,1188,1394,426,830,647,278,86800,65100,31200,11680,190,6.2,7,7,32.0,1676,9,999999999,320,0.1160,0,88,0.120,0.0,1.0 +1995,2,28,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,21.7,72,100900,1080,1394,429,632,311,391,68000,33600,41900,13330,220,6.7,8,8,32.0,2438,9,999999999,320,0.1160,0,88,0.120,0.0,1.0 +1995,2,28,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,21.1,74,100900,893,1394,415,349,370,112,37700,37800,13400,2920,220,6.7,7,7,32.0,1829,9,999999999,320,0.1160,0,88,0.120,0.0,1.0 +1995,2,28,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,21.1,79,100900,641,1394,424,209,54,184,22900,5300,20500,5410,220,4.6,9,9,16.0,1676,9,999999999,320,0.1160,0,88,0.120,0.0,1.0 +1995,2,28,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,21.7,94,100900,341,1394,424,57,0,57,6600,0,6600,2240,280,6.7,10,10,6.4,975,9,999999999,320,0.1160,0,88,0.120,0.0,1.0 +1995,2,28,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,20.6,87,101000,51,801,423,7,0,7,900,0,900,280,290,5.2,10,10,16.0,2743,9,999999999,320,0.1160,0,88,0.120,0.0,1.0 +1995,2,28,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,21.1,90,101000,0,0,424,0,0,0,0,0,0,0,270,3.6,10,10,11.2,1372,9,999999999,309,0.1160,0,88,0.120,0.0,1.0 +1995,2,28,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,21.1,96,101100,0,0,397,0,0,0,0,0,0,0,290,2.6,8,8,16.0,1372,9,999999999,309,0.1160,0,88,0.120,0.0,1.0 +1995,2,28,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.5,20.2,100,101100,0,0,372,0,0,0,0,0,0,0,270,2.2,2,2,16.0,77777,9,999999999,309,0.1160,0,88,0.120,0.0,1.0 +1995,2,28,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.4,19.4,94,101100,0,0,374,0,0,0,0,0,0,0,250,1.9,3,3,16.0,77777,9,999999999,309,0.1160,0,88,0.120,0.0,1.0 +1995,2,28,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.2,18.5,94,101100,0,0,385,0,0,0,0,0,0,0,270,1.5,7,7,16.0,3353,9,999999999,309,0.1160,0,88,0.120,0.0,1.0 +1996,3,1,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,17.6,66,101600,0,0,370,0,0,0,0,0,0,0,50,1.1,3,3,16.0,77777,9,999999999,209,0.1170,0,88,0.110,0.0,1.0 +1996,3,1,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.9,16.7,71,101600,0,0,364,0,0,0,0,0,0,0,50,0.7,2,2,16.0,77777,9,999999999,209,0.1170,0,88,0.110,0.0,1.0 +1996,3,1,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.8,15.9,73,101500,0,0,367,0,0,0,0,0,0,0,90,0.4,3,3,16.0,77777,9,999999999,220,0.1170,0,88,0.110,0.0,1.0 +1996,3,1,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,15.0,70,101500,0,0,361,0,0,0,0,0,0,0,0,0.0,2,2,16.0,77777,9,999999999,220,0.1170,0,88,0.110,0.0,1.0 +1996,3,1,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,15.6,73,101400,0,0,357,0,0,0,0,0,0,0,60,4.6,1,1,16.0,77777,9,999999999,229,0.1170,0,88,0.110,0.0,1.0 +1996,3,1,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,16.1,75,101500,0,0,357,0,0,0,0,0,0,0,70,5.2,1,1,19.2,77777,9,999999999,229,0.1170,0,88,0.110,0.0,1.0 +1996,3,1,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,16.1,75,101500,2,174,357,0,4,0,0,0,0,0,360,2.1,1,1,24.0,77777,9,999999999,240,0.1170,0,88,0.110,0.0,1.0 +1996,3,1,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,16.1,66,101500,195,1392,368,75,245,41,7900,15300,5800,730,80,5.2,1,1,32.0,77777,9,999999999,240,0.1170,0,88,0.110,0.0,1.0 +1996,3,1,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,16.7,62,101600,509,1392,377,296,616,70,31300,57900,10000,1400,70,7.2,1,1,32.0,77777,9,999999999,240,0.1170,0,88,0.110,0.0,1.0 +1996,3,1,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,17.2,62,101600,787,1392,419,346,80,301,38000,8100,33400,9000,100,6.2,9,9,24.0,1981,9,999999999,250,0.1170,0,88,0.110,0.0,1.0 +1996,3,1,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,17.8,56,101600,1007,1392,402,612,586,189,64700,59400,21600,5510,70,7.7,3,3,32.0,77777,9,999999999,250,0.1170,0,88,0.110,0.0,1.0 +1996,3,1,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,17.8,56,101500,1153,1392,398,730,702,148,77500,70900,18500,5500,70,7.2,2,2,32.0,77777,9,999999999,259,0.1170,0,88,0.110,0.0,1.0 +1996,3,1,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,17.2,53,101400,1217,1392,404,865,746,212,92600,76300,25600,10040,60,7.2,3,3,32.0,77777,9,999999999,259,0.1170,0,88,0.110,0.0,1.0 +1996,3,1,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,17.2,53,101400,1194,1392,401,840,810,145,89800,82100,19200,6090,70,5.7,2,2,32.0,77777,9,999999999,270,0.1170,0,88,0.110,0.0,1.0 +1996,3,1,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,17.2,51,101300,1085,1392,414,650,561,213,68700,56900,24200,7120,70,6.7,5,5,32.0,77777,9,999999999,270,0.1170,0,88,0.110,0.0,1.0 +1996,3,1,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,17.8,58,101300,898,1392,395,606,755,119,63600,75400,14800,2860,70,7.7,2,2,32.0,77777,9,999999999,279,0.1170,0,88,0.110,0.0,1.0 +1996,3,1,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,17.8,62,101400,646,1392,397,308,349,145,32700,34600,16600,2950,70,6.7,8,4,24.0,77777,9,999999999,279,0.1170,0,88,0.110,0.0,1.0 +1996,3,1,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,17.8,64,101400,345,1392,420,106,36,97,11600,3100,10800,2460,70,6.7,9,9,24.0,2286,9,999999999,290,0.1170,0,88,0.110,0.0,1.0 +1996,3,1,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,17.8,71,101500,53,824,410,10,4,10,1100,200,1100,260,70,4.1,9,9,24.0,2286,9,999999999,290,0.1170,0,88,0.110,0.0,1.0 +1996,3,1,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,17.8,73,101500,0,0,375,0,0,0,0,0,0,0,80,3.6,7,2,16.0,77777,9,999999999,300,0.1170,0,88,0.110,0.0,1.0 +1996,3,1,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,17.8,76,101500,0,0,382,0,0,0,0,0,0,0,80,4.1,5,5,16.0,77777,9,999999999,300,0.1170,0,88,0.110,0.0,1.0 +1996,3,1,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,17.8,76,101400,0,0,372,0,0,0,0,0,0,0,80,3.6,7,2,16.0,77777,9,999999999,309,0.1170,0,88,0.110,0.0,1.0 +1996,3,1,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,18.3,76,101500,0,0,408,0,0,0,0,0,0,0,70,3.1,9,9,16.0,2286,9,999999999,309,0.1170,0,88,0.110,0.0,1.0 +1996,3,1,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,18.3,76,101500,0,0,420,0,0,0,0,0,0,0,90,3.1,10,10,16.0,2134,9,999999999,320,0.1170,0,88,0.110,0.0,1.0 +1996,3,2,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,18.3,74,101500,0,0,423,0,0,0,0,0,0,0,100,3.1,10,10,16.0,2286,9,999999999,320,0.1180,0,88,0.110,0.0,1.0 +1996,3,2,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,18.3,76,101400,0,0,420,0,0,0,0,0,0,0,90,2.1,10,10,16.0,2438,9,999999999,329,0.1180,0,88,0.110,0.0,1.0 +1996,3,2,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,18.9,82,101300,0,0,386,0,0,0,0,0,0,0,80,3.1,10,6,16.0,7010,9,999999999,329,0.1180,0,88,0.110,0.0,1.0 +1996,3,2,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,18.3,81,101200,0,0,414,0,0,0,0,0,0,0,90,2.6,10,10,16.0,7010,9,999999999,329,0.1180,0,88,0.110,0.0,1.0 +1996,3,2,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,18.9,84,101300,0,0,403,0,0,0,0,0,0,0,60,2.6,10,9,16.0,7010,9,999999999,340,0.1180,0,88,0.110,0.0,1.0 +1996,3,2,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,18.9,79,101100,0,0,421,0,0,0,0,0,0,0,60,5.2,10,10,16.0,7620,9,999999999,340,0.1180,0,88,0.110,0.0,1.0 +1996,3,2,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,18.9,79,101100,2,174,421,0,0,0,0,0,0,0,110,4.6,10,10,24.0,7620,9,999999999,340,0.1180,0,88,0.110,0.0,1.0 +1996,3,2,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,18.9,76,101200,199,1392,424,27,0,27,3200,0,3200,1030,90,4.6,10,10,24.0,2438,9,999999999,350,0.1180,0,88,0.110,0.0,1.0 +1996,3,2,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,18.9,71,101200,514,1392,430,93,0,93,10800,0,10800,3870,80,6.2,10,10,24.0,2286,9,999999999,350,0.1180,0,88,0.110,0.0,1.0 +1996,3,2,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,18.9,69,101100,791,1392,433,160,0,160,18800,0,18800,7220,90,7.2,10,10,24.0,2438,9,999999999,350,0.1180,0,88,0.110,0.0,1.0 +1996,3,2,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,18.3,62,101200,1011,1392,439,214,0,214,25500,0,25500,10160,90,6.2,10,10,24.0,2438,9,999999999,350,0.1180,0,88,0.110,0.0,1.0 +1996,3,2,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,18.9,65,101100,1157,1392,440,249,0,249,29900,0,29900,11980,80,6.7,10,10,16.0,2438,9,999999999,359,0.1180,0,88,0.110,0.0,1.0 +1996,3,2,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,18.9,65,101100,1221,1392,440,264,0,264,31900,0,31900,12680,110,7.7,10,10,16.0,2438,9,999999999,359,0.1180,0,88,0.110,0.0,1.0 +1996,3,2,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,18.9,65,100900,1198,1392,440,323,0,323,38300,0,38300,14720,90,6.7,10,10,16.0,3353,9,999999999,359,0.1180,0,88,0.110,0.0,1.0 +1996,3,2,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,18.9,67,100800,1088,1392,437,232,0,232,27800,0,27800,11140,110,5.2,10,10,16.0,1981,9,999999999,370,0.1180,0,88,0.110,0.0,1.0 +1996,3,2,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,18.9,67,100800,901,1392,437,234,0,234,27200,0,27200,10300,90,4.6,10,10,16.0,7620,9,999999999,370,0.1180,0,88,0.110,0.0,1.0 +1996,3,2,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,18.9,69,100900,648,1392,433,156,0,156,17900,0,17900,6410,70,3.6,10,10,16.0,7620,9,999999999,370,0.1180,0,88,0.110,0.0,1.0 +1996,3,2,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,20.0,79,100900,348,1392,428,69,0,69,7900,0,7900,2620,50,2.6,10,10,16.0,3962,9,999999999,370,0.1180,0,88,0.110,0.0,1.0 +1996,3,2,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,20.6,87,101000,54,823,423,8,0,8,1000,0,1000,310,360,3.6,10,10,6.4,2286,9,999999999,379,0.1180,0,88,0.110,1.0,1.0 +1996,3,2,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,20.6,91,100900,0,0,419,0,0,0,0,0,0,0,340,2.1,10,10,16.0,3353,9,999999999,379,0.1180,0,88,0.110,0.0,1.0 +1996,3,2,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,20.6,93,101000,0,0,417,0,0,0,0,0,0,0,50,2.6,10,10,8.0,3962,9,999999999,379,0.1180,0,88,0.110,3.0,1.0 +1996,3,2,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,20.6,93,100900,0,0,417,0,0,0,0,0,0,0,70,4.1,10,10,12.8,1067,9,999999999,390,0.1180,0,88,0.110,2.0,1.0 +1996,3,2,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,20.6,87,100800,0,0,423,0,0,0,0,0,0,0,150,4.1,10,10,16.0,3048,9,999999999,390,0.1180,0,88,0.110,0.0,1.0 +1996,3,2,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,20.6,87,100800,0,0,423,0,0,0,0,0,0,0,130,3.1,10,10,16.0,3962,9,999999999,390,0.1180,0,88,0.110,0.0,1.0 +1996,3,3,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,20.6,93,100800,0,0,417,0,0,0,0,0,0,0,160,3.1,10,10,11.2,579,9,999999999,390,0.1180,0,88,0.110,3.0,1.0 +1996,3,3,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,20.6,97,100800,0,0,413,0,0,0,0,0,0,0,320,1.5,10,10,1.6,244,9,999999999,400,0.1180,0,88,0.110,8.0,1.0 +1996,3,3,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,19.4,96,100500,0,0,406,0,0,0,0,0,0,0,70,3.1,10,10,6.4,610,9,999999999,400,0.1180,0,88,0.110,6.0,1.0 +1996,3,3,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,19.4,90,100400,0,0,412,0,0,0,0,0,0,0,90,6.2,10,10,4.8,762,9,999999999,390,0.1180,0,88,0.110,3.0,1.0 +1996,3,3,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,20.0,93,100500,0,0,412,0,0,0,0,0,0,0,150,8.2,10,10,6.4,884,9,999999999,390,0.1180,0,88,0.110,5.0,1.0 +1996,3,3,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,20.0,93,100500,0,0,412,0,0,0,0,0,0,0,130,5.7,10,10,6.4,610,9,999999999,390,0.1180,0,88,0.110,10.0,1.0 +1996,3,3,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,20.6,97,100600,3,197,413,0,0,0,0,0,0,0,150,4.1,10,10,4.8,457,9,999999999,390,0.1180,0,88,0.110,3.0,1.0 +1996,3,3,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,20.6,93,100400,204,1391,417,31,0,31,3600,0,3600,1170,150,6.2,10,10,11.3,457,9,999999999,379,0.1180,0,88,0.110,1.0,1.0 +1996,3,3,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,21.7,91,100500,519,1391,427,88,0,88,10300,0,10300,3720,160,8.2,10,10,24.0,457,9,999999999,379,0.1180,0,88,0.110,0.0,1.0 +1996,3,3,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,21.1,84,100500,796,1391,430,156,0,156,18400,0,18400,7100,180,9.3,10,10,32.0,762,9,999999999,379,0.1180,0,88,0.110,0.0,1.0 +1996,3,3,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,21.1,84,100600,1015,1391,430,210,0,210,25100,0,25100,10030,180,7.7,10,10,32.0,762,9,999999999,379,0.1180,0,88,0.110,0.0,1.0 +1996,3,3,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,20.6,79,100500,1162,1391,432,246,0,246,29600,0,29600,11870,180,8.8,10,10,32.0,853,9,999999999,379,0.1180,0,88,0.110,0.0,1.0 +1996,3,3,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,21.1,84,100400,1225,1391,430,262,0,262,31600,0,31600,12620,200,6.7,10,10,24.0,853,9,999999999,370,0.1180,0,88,0.110,0.0,1.0 +1996,3,3,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,21.1,84,100300,1201,1391,430,256,0,256,30900,0,30900,12340,220,7.7,10,10,16.0,853,9,999999999,370,0.1180,0,88,0.110,0.0,1.0 +1996,3,3,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,21.1,93,100200,1092,1391,420,229,0,229,27400,0,27400,11040,200,5.7,10,10,6.4,853,9,999999999,370,0.1180,0,88,0.110,9.0,1.0 +1996,3,3,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,21.7,82,100200,904,1391,410,502,287,315,53600,30700,33600,8600,220,5.2,7,7,24.0,1524,9,999999999,370,0.1180,0,88,0.110,0.0,1.0 +1996,3,3,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,21.1,84,100200,651,1391,418,270,119,214,29300,12000,23600,5220,230,5.2,9,9,24.0,914,9,999999999,370,0.1180,0,88,0.110,0.0,1.0 +1996,3,3,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,21.1,82,100200,350,1391,406,138,263,72,14600,21800,9100,1310,240,3.1,7,7,19.2,1524,9,999999999,359,0.1180,0,88,0.110,0.0,1.0 +1996,3,3,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,18.9,74,100300,56,823,395,13,15,12,1500,700,1400,250,260,4.1,6,6,16.0,2743,9,999999999,359,0.1180,0,88,0.110,0.0,1.0 +1996,3,3,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,19.4,76,100300,0,0,401,0,0,0,0,0,0,0,240,4.1,7,7,16.0,7620,9,999999999,359,0.1180,0,88,0.110,0.0,1.0 +1996,3,3,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,18.9,74,100200,0,0,389,0,0,0,0,0,0,0,250,4.1,9,4,16.0,77777,9,999999999,359,0.1180,0,88,0.110,0.0,1.0 +1996,3,3,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,19.4,74,100200,0,0,431,0,0,0,0,0,0,0,220,7.7,10,10,16.0,1981,9,999999999,350,0.1180,0,88,0.110,0.0,1.0 +1996,3,3,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,20.0,76,100200,0,0,431,0,0,0,0,0,0,0,210,8.2,10,10,11.2,1158,9,999999999,350,0.1180,0,88,0.110,0.0,1.0 +1996,3,3,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,20.0,82,100200,0,0,425,0,0,0,0,0,0,0,230,11.8,10,10,3.2,1676,9,999999999,350,0.1180,0,88,0.110,1.0,1.0 +1996,3,4,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,20.0,82,100100,0,0,425,0,0,0,0,0,0,0,230,10.3,10,10,11.2,1463,9,999999999,350,0.1190,0,88,0.110,0.0,1.0 +1996,3,4,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,18.9,79,100100,0,0,400,0,0,0,0,0,0,0,280,7.7,8,8,16.0,1097,9,999999999,350,0.1190,0,88,0.110,0.0,1.0 +1996,3,4,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,18.9,82,100100,0,0,417,0,0,0,0,0,0,0,290,9.3,10,10,11.2,1097,9,999999999,340,0.1190,0,88,0.110,0.0,1.0 +1996,3,4,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,19.4,90,100100,0,0,412,0,0,0,0,0,0,0,290,4.6,10,10,11.2,1036,9,999999999,340,0.1190,0,88,0.110,1.0,1.0 +1996,3,4,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,20.0,90,100200,0,0,404,0,0,0,0,0,0,0,300,4.1,9,9,16.0,1219,9,999999999,340,0.1190,0,88,0.110,0.0,1.0 +1996,3,4,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,18.9,84,100200,0,0,378,0,0,0,0,0,0,0,300,3.1,4,4,16.0,77777,9,999999999,329,0.1190,0,88,0.110,0.0,1.0 +1996,3,4,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,18.3,84,100300,4,220,377,0,0,0,0,0,0,0,60,2.6,5,5,32.0,77777,9,999999999,329,0.1190,0,88,0.110,0.0,1.0 +1996,3,4,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,18.3,79,100400,209,1390,380,77,122,58,8000,7700,6800,1100,350,2.6,4,4,32.0,77777,9,999999999,329,0.1190,0,88,0.110,0.0,1.0 +1996,3,4,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,18.3,66,100500,523,1390,387,249,250,155,26400,24300,17200,3250,320,3.1,5,2,32.0,77777,9,999999999,320,0.1190,0,88,0.110,0.0,1.0 +1996,3,4,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,18.3,62,100500,800,1390,403,341,246,199,37200,26100,22100,4670,340,4.1,5,5,32.0,77777,9,999999999,320,0.1190,0,88,0.110,0.0,1.0 +1996,3,4,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,18.3,64,100600,1020,1390,424,462,145,355,50400,15400,39100,11310,290,5.7,9,9,32.0,1219,9,999999999,320,0.1190,0,88,0.110,0.0,1.0 +1996,3,4,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,18.9,61,100600,1166,1390,425,770,486,362,81200,50600,38600,15160,300,5.2,8,8,32.0,1219,9,999999999,309,0.1190,0,88,0.110,0.0,1.0 +1996,3,4,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,18.3,56,100500,1229,1390,412,782,576,272,82300,58200,30700,13210,340,8.2,5,5,32.0,77777,9,999999999,309,0.1190,0,88,0.110,0.0,1.0 +1996,3,4,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,18.3,56,100500,1205,1390,412,841,652,275,88200,65700,31000,12290,340,7.7,5,5,32.0,77777,9,999999999,309,0.1190,0,88,0.110,0.0,1.0 +1996,3,4,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,18.3,56,100400,1095,1390,412,645,552,210,68200,56100,23900,7200,340,6.2,5,5,32.0,77777,9,999999999,300,0.1190,0,88,0.110,0.0,1.0 +1996,3,4,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,18.9,61,100500,907,1390,410,402,343,178,43900,35500,20600,4480,350,7.7,5,5,32.0,77777,9,999999999,300,0.1190,0,88,0.110,0.0,1.0 +1996,3,4,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,18.9,65,100600,653,1390,404,284,309,138,30300,30700,15900,2800,350,7.7,5,5,32.0,77777,9,999999999,290,0.1190,0,88,0.110,0.0,1.0 +1996,3,4,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,19.4,79,100700,352,1390,389,130,159,90,13900,13400,10400,1740,340,8.2,5,5,24.0,77777,9,999999999,290,0.1190,0,88,0.110,0.0,1.0 +1996,3,4,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,18.9,84,100800,57,846,371,15,42,12,1700,1600,1600,190,340,5.7,2,2,24.0,77777,9,999999999,290,0.1190,0,88,0.110,0.0,1.0 +1996,3,4,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,18.3,79,100800,0,0,377,0,0,0,0,0,0,0,340,4.1,3,3,16.0,77777,9,999999999,279,0.1190,0,88,0.110,0.0,1.0 +1996,3,4,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,17.8,81,100800,0,0,367,0,0,0,0,0,0,0,340,2.6,2,2,16.0,77777,9,999999999,279,0.1190,0,88,0.110,0.0,1.0 +1996,3,4,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,17.8,84,100900,0,0,368,0,0,0,0,0,0,0,310,2.1,3,3,16.0,77777,9,999999999,279,0.1190,0,88,0.110,0.0,1.0 +1996,3,4,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,17.8,90,100900,0,0,354,0,0,0,0,0,0,0,340,2.1,1,1,16.0,77777,9,999999999,270,0.1190,0,88,0.110,0.0,1.0 +1996,3,4,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,17.8,90,100900,0,0,354,0,0,0,0,0,0,0,310,2.6,1,1,16.0,77777,9,999999999,270,0.1190,0,88,0.110,0.0,1.0 +1996,3,5,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,17.2,90,100900,0,0,350,0,0,0,0,0,0,0,310,3.1,1,1,16.0,77777,9,999999999,270,0.1200,0,88,0.110,0.0,1.0 +1996,3,5,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,17.2,87,101000,0,0,358,0,0,0,0,0,0,0,320,3.1,2,2,16.0,77777,9,999999999,259,0.1200,0,88,0.110,0.0,1.0 +1996,3,5,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,18.3,90,100900,0,0,385,0,0,0,0,0,0,0,330,3.1,8,8,16.0,1676,9,999999999,259,0.1200,0,88,0.110,0.0,1.0 +1996,3,5,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,17.2,90,100900,0,0,355,0,0,0,0,0,0,0,330,3.1,2,2,16.0,77777,9,999999999,270,0.1200,0,88,0.110,0.0,1.0 +1996,3,5,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,17.2,93,100900,0,0,356,0,0,0,0,0,0,0,300,2.1,3,3,16.0,77777,9,999999999,270,0.1200,0,88,0.110,0.0,1.0 +1996,3,5,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,17.8,90,101000,0,0,375,0,0,0,0,0,0,0,360,2.1,7,7,16.0,1524,9,999999999,270,0.1200,0,88,0.110,0.0,1.0 +1996,3,5,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,16.7,93,101100,4,243,353,0,12,0,0,0,0,0,0,0.0,3,3,32.0,77777,9,999999999,270,0.1200,0,88,0.110,0.0,1.0 +1996,3,5,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,17.8,84,101100,213,1389,359,95,325,45,9600,22000,6200,780,0,0.0,1,1,32.0,77777,9,999999999,270,0.1200,0,88,0.110,0.0,1.0 +1996,3,5,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,17.8,73,101100,528,1389,370,320,682,61,33700,64400,9100,1280,310,2.1,1,1,32.0,77777,9,999999999,270,0.1200,0,88,0.110,0.0,1.0 +1996,3,5,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,16.7,60,101100,805,1389,385,529,705,120,56300,71100,15000,2820,320,3.6,2,2,32.0,77777,9,999999999,270,0.1200,0,88,0.110,0.0,1.0 +1996,3,5,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,13.9,47,101100,1024,1389,391,741,811,143,77600,81300,17500,4000,350,3.6,3,3,32.0,77777,9,999999999,270,0.1200,0,88,0.110,0.0,1.0 +1996,3,5,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,17.2,58,101100,1170,1389,392,833,803,156,88000,81000,19600,6030,250,3.6,2,2,32.0,77777,9,999999999,270,0.1200,0,88,0.110,0.0,1.0 +1996,3,5,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,16.7,56,101000,1232,1389,395,797,701,175,83900,70600,21100,8120,250,4.1,3,3,32.0,77777,9,999999999,270,0.1200,0,88,0.110,0.0,1.0 +1996,3,5,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,17.2,51,101000,1208,1389,403,893,900,110,92400,90200,13700,4280,230,4.1,2,2,32.0,77777,9,999999999,270,0.1200,0,88,0.110,0.0,1.0 +1996,3,5,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,15.0,47,100900,1098,1389,402,702,596,231,73800,60200,26100,7900,260,4.6,4,4,32.0,77777,9,999999999,270,0.1200,0,88,0.110,0.0,1.0 +1996,3,5,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,16.7,54,100900,909,1389,394,616,767,114,65100,76900,14600,2840,260,3.6,2,2,32.0,77777,9,999999999,270,0.1200,0,88,0.110,0.0,1.0 +1996,3,5,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,16.1,58,100900,656,1389,388,322,480,95,34100,47200,11700,2020,270,4.1,3,3,32.0,77777,9,999999999,270,0.1200,0,88,0.110,0.0,1.0 +1996,3,5,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,15.6,62,101000,355,1389,375,170,329,86,17700,27400,10700,1590,300,3.1,2,2,32.0,77777,9,999999999,279,0.1200,0,88,0.110,0.0,1.0 +1996,3,5,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,16.1,66,101000,58,845,377,20,80,15,2300,3400,2000,260,300,4.1,3,3,24.0,77777,9,999999999,279,0.1200,0,88,0.110,0.0,1.0 +1996,3,5,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,16.1,70,101100,0,0,363,0,0,0,0,0,0,0,280,3.1,1,1,16.0,77777,9,999999999,279,0.1200,0,88,0.110,0.0,1.0 +1996,3,5,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,16.1,73,101100,0,0,368,0,0,0,0,0,0,0,280,1.5,3,3,16.0,77777,9,999999999,279,0.1200,0,88,0.110,0.0,1.0 +1996,3,5,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,16.1,75,101100,0,0,357,0,0,0,0,0,0,0,290,2.1,1,1,16.0,77777,9,999999999,279,0.1200,0,88,0.110,0.0,1.0 +1996,3,5,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,16.1,81,101100,0,0,352,0,0,0,0,0,0,0,10,1.5,1,1,16.0,77777,9,999999999,279,0.1200,0,88,0.110,0.0,1.0 +1996,3,5,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,15.6,81,101100,0,0,353,0,0,0,0,0,0,0,120,1.5,2,2,16.0,77777,9,999999999,279,0.1200,0,88,0.110,0.0,1.0 +1996,3,6,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,15.6,84,101000,0,0,351,0,0,0,0,0,0,0,120,1.5,2,2,16.0,77777,9,999999999,279,0.1200,0,88,0.110,0.0,1.0 +1996,3,6,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,16.1,84,101000,0,0,376,0,0,0,0,0,0,0,70,1.5,8,8,16.0,1006,9,999999999,279,0.1200,0,88,0.110,0.0,1.0 +1996,3,6,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,16.7,81,100900,0,0,391,0,0,0,0,0,0,0,90,1.5,9,9,16.0,1829,9,999999999,279,0.1200,0,88,0.110,0.0,1.0 +1996,3,6,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,17.8,84,100900,0,0,374,0,0,0,0,0,0,0,310,2.1,5,5,16.0,77777,9,999999999,270,0.1200,0,88,0.110,0.0,1.0 +1996,3,6,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,17.2,81,100900,0,0,364,0,0,0,0,0,0,0,300,3.6,2,2,16.0,77777,9,999999999,270,0.1200,0,88,0.110,0.0,1.0 +1996,3,6,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,15.6,71,100900,0,0,371,0,0,0,0,0,0,0,290,2.6,4,4,16.0,77777,9,999999999,259,0.1200,0,88,0.110,0.0,1.0 +1996,3,6,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,16.1,73,101000,5,266,371,0,1,0,0,0,0,0,280,2.6,4,4,32.0,77777,9,999999999,259,0.1200,0,88,0.110,0.0,1.0 +1996,3,6,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,17.8,76,101100,218,1389,385,68,146,45,7300,9600,5800,810,290,4.1,6,6,32.0,1463,9,999999999,259,0.1200,0,88,0.110,0.0,1.0 +1996,3,6,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,17.2,62,101100,533,1389,404,199,68,173,21800,6500,19300,4670,270,6.7,7,7,32.0,1463,9,999999999,250,0.1200,0,88,0.110,0.0,1.0 +1996,3,6,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,17.2,58,101100,809,1389,416,462,397,230,49900,42100,25300,5570,280,8.2,8,8,32.0,1524,9,999999999,250,0.1200,0,88,0.110,0.0,1.0 +1996,3,6,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,18.3,62,101100,1028,1389,411,325,92,256,36200,9800,28900,8240,260,7.2,7,7,32.0,1676,9,999999999,250,0.1200,0,88,0.110,0.0,1.0 +1996,3,6,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,17.2,56,101000,1174,1389,420,623,368,311,66700,38400,34200,13220,280,9.3,8,8,32.0,1463,9,999999999,240,0.1200,0,88,0.110,0.0,1.0 +1996,3,6,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,20.6,77,101000,1236,1389,408,573,311,295,62200,32600,33100,15210,280,6.7,7,7,32.0,1372,9,999999999,240,0.1200,0,88,0.110,0.0,1.0 +1996,3,6,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,18.9,67,100900,1211,1389,416,720,399,371,79000,43400,41100,16420,290,7.2,8,8,32.0,1676,9,999999999,229,0.1200,0,88,0.110,0.0,1.0 +1996,3,6,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,18.9,62,100900,1101,1389,407,786,640,279,84500,66700,31400,9880,280,7.2,5,5,32.0,77777,9,999999999,229,0.1200,0,88,0.110,0.0,1.0 +1996,3,6,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,16.7,56,100900,912,1389,398,453,481,137,48400,49000,16200,3600,280,8.8,4,4,32.0,77777,9,999999999,229,0.1200,0,88,0.110,0.0,1.0 +1996,3,6,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,14.4,50,100900,658,1389,392,414,554,151,44000,55100,17800,3100,290,7.7,4,4,32.0,77777,9,999999999,220,0.1200,0,88,0.110,0.0,1.0 +1996,3,6,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,16.7,62,101000,357,1389,389,153,196,103,16200,16600,11900,2040,290,6.7,4,4,24.0,77777,9,999999999,220,0.1200,0,88,0.110,0.0,1.0 +1996,3,6,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,16.1,66,101000,59,868,391,21,11,21,2400,600,2300,510,340,6.7,7,7,24.0,1433,9,999999999,209,0.1200,0,88,0.110,0.0,1.0 +1996,3,6,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,15.0,64,101100,0,0,373,0,0,0,0,0,0,0,330,5.2,3,3,16.0,77777,9,999999999,209,0.1200,0,88,0.110,0.0,1.0 +1996,3,6,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,14.4,63,101200,0,0,361,0,0,0,0,0,0,0,350,4.6,1,1,16.0,77777,9,999999999,209,0.1200,0,88,0.110,0.0,1.0 +1996,3,6,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,15.0,66,101300,0,0,370,0,0,0,0,0,0,0,340,8.8,3,3,16.0,77777,9,999999999,200,0.1200,0,88,0.110,0.0,1.0 +1996,3,6,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,13.9,63,101300,0,0,369,0,0,0,0,0,0,0,350,6.7,4,4,16.0,77777,9,999999999,200,0.1200,0,88,0.110,0.0,1.0 +1996,3,6,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,12.8,59,101300,0,0,364,0,0,0,0,0,0,0,350,6.7,3,3,16.0,77777,9,999999999,189,0.1200,0,88,0.110,0.0,1.0 +1996,3,7,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,13.9,63,101300,0,0,385,0,0,0,0,0,0,0,340,6.7,8,8,16.0,1524,9,999999999,189,0.1210,0,88,0.110,0.0,1.0 +1996,3,7,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,12.8,63,101300,0,0,372,0,0,0,0,0,0,0,350,3.1,7,7,16.0,1676,9,999999999,189,0.1210,0,88,0.110,0.0,1.0 +1996,3,7,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,12.8,61,101300,0,0,381,0,0,0,0,0,0,0,340,4.6,8,8,16.0,1676,9,999999999,189,0.1210,0,88,0.110,0.0,1.0 +1996,3,7,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,12.8,68,101300,0,0,367,0,0,0,0,0,0,0,360,2.1,7,7,16.0,1676,9,999999999,189,0.1210,0,88,0.110,0.0,1.0 +1996,3,7,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,12.2,61,101300,0,0,377,0,0,0,0,0,0,0,60,1.5,8,8,16.0,1524,9,999999999,189,0.1210,0,88,0.110,0.0,1.0 +1996,3,7,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,12.2,65,101400,0,0,359,0,0,0,0,0,0,0,20,1.5,5,5,16.0,77777,9,999999999,189,0.1210,0,88,0.110,0.0,1.0 +1996,3,7,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,11.1,59,101400,6,266,373,0,0,0,0,0,0,0,40,1.5,8,8,24.0,1524,9,999999999,189,0.1210,0,88,0.110,0.0,1.0 +1996,3,7,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,12.2,61,101500,223,1388,371,69,67,58,7500,4700,6700,1230,340,2.6,7,7,19.2,1524,9,999999999,189,0.1210,0,88,0.110,0.0,1.0 +1996,3,7,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,12.2,53,101600,537,1388,375,200,189,126,21500,18600,14300,2530,360,3.6,5,5,24.0,77777,9,999999999,189,0.1210,0,88,0.110,0.0,1.0 +1996,3,7,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,10.6,45,101600,814,1388,386,414,309,232,44700,32800,25400,5640,350,5.2,7,7,32.0,1524,9,999999999,189,0.1210,0,88,0.110,0.0,1.0 +1996,3,7,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,12.2,46,101600,1032,1388,401,351,95,280,38900,10100,31400,9060,40,3.1,8,8,32.0,1524,9,999999999,189,0.1210,0,88,0.110,0.0,1.0 +1996,3,7,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,12.8,48,101500,1178,1388,395,742,240,538,80000,25300,58500,21770,330,7.7,7,7,32.0,1524,9,999999999,189,0.1210,0,88,0.110,0.0,1.0 +1996,3,7,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,12.8,44,101400,1240,1388,411,314,85,238,35800,9200,27600,11090,330,5.7,8,8,32.0,2743,9,999999999,189,0.1210,0,88,0.110,0.0,1.0 +1996,3,7,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,12.8,42,101300,1214,1388,407,744,366,423,80900,39700,46100,19200,310,5.7,7,7,32.0,1524,9,999999999,189,0.1210,0,88,0.110,0.0,1.0 +1996,3,7,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,13.3,48,101300,1104,1388,426,229,0,229,27500,0,27500,11080,330,4.1,10,10,32.0,1280,9,999999999,189,0.1210,0,88,0.110,0.0,1.0 +1996,3,7,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,14.4,55,101300,915,1388,409,282,10,275,32400,900,31800,11640,30,4.6,9,9,32.0,1524,9,999999999,189,0.1210,0,88,0.110,0.0,1.0 +1996,3,7,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,12.2,46,101300,661,1388,401,355,91,312,38800,9200,34400,8060,330,4.1,8,8,32.0,1524,9,999999999,189,0.1210,0,88,0.110,0.0,1.0 +1996,3,7,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,12.2,51,101400,359,1388,386,116,49,103,12700,4300,11600,2620,330,5.2,7,7,32.0,1311,9,999999999,189,0.1210,0,88,0.110,0.0,1.0 +1996,3,7,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,11.1,51,101500,61,867,368,15,10,14,1600,600,1600,360,350,5.2,4,4,32.0,77777,9,999999999,189,0.1210,0,88,0.110,0.0,1.0 +1996,3,7,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,12.2,61,101500,0,0,350,0,0,0,0,0,0,0,360,4.6,1,1,32.0,77777,9,999999999,189,0.1210,0,88,0.110,0.0,1.0 +1996,3,7,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,11.7,63,101600,0,0,338,0,0,0,0,0,0,0,360,2.1,0,0,16.0,77777,9,999999999,189,0.1210,0,88,0.110,0.0,1.0 +1996,3,7,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,12.2,68,101600,0,0,342,0,0,0,0,0,0,0,340,2.6,1,1,16.0,77777,9,999999999,189,0.1210,0,88,0.110,0.0,1.0 +1996,3,7,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,12.2,70,101600,0,0,340,0,0,0,0,0,0,0,360,1.5,1,1,16.0,77777,9,999999999,189,0.1210,0,88,0.110,0.0,1.0 +1996,3,7,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,12.2,72,101700,0,0,337,0,0,0,0,0,0,0,340,2.6,1,1,16.0,77777,9,999999999,189,0.1210,0,88,0.110,0.0,1.0 +1996,3,8,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,12.2,72,101600,0,0,337,0,0,0,0,0,0,0,350,1.5,1,1,16.0,77777,9,999999999,189,0.1210,0,88,0.110,0.0,1.0 +1996,3,8,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,12.2,80,101600,0,0,330,0,0,0,0,0,0,0,0,0.0,1,1,16.0,77777,9,999999999,189,0.1210,0,88,0.110,0.0,1.0 +1996,3,8,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,12.2,80,101600,0,0,323,0,0,0,0,0,0,0,300,1.5,0,0,16.0,77777,9,999999999,189,0.1210,0,88,0.110,0.0,1.0 +1996,3,8,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,12.2,83,101500,0,0,321,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,189,0.1210,0,88,0.110,0.0,1.0 +1996,3,8,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,12.8,87,101500,0,0,321,0,0,0,0,0,0,0,320,2.1,0,0,16.0,77777,9,999999999,189,0.1210,0,88,0.110,0.0,1.0 +1996,3,8,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,13.3,90,101600,0,0,322,0,0,0,0,0,0,0,310,1.5,0,0,16.0,77777,9,999999999,189,0.1210,0,88,0.110,0.0,1.0 +1996,3,8,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,12.8,87,101600,7,289,321,0,3,0,0,0,0,0,310,1.5,0,0,24.0,77777,9,999999999,189,0.1210,0,88,0.110,0.0,1.0 +1996,3,8,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,15.0,81,101700,227,1387,339,96,293,48,10100,20000,6800,860,330,1.5,0,0,24.0,77777,9,999999999,189,0.1210,0,88,0.110,0.0,1.0 +1996,3,8,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,13.9,61,101700,542,1387,353,330,614,90,34500,58000,11700,1770,320,2.1,0,0,32.0,77777,9,999999999,189,0.1210,0,88,0.110,0.0,1.0 +1996,3,8,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,13.9,54,101700,818,1387,364,570,757,123,60700,76400,15500,2930,80,1.5,0,0,32.0,77777,9,999999999,189,0.1210,0,88,0.110,0.0,1.0 +1996,3,8,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,14.4,50,101700,1037,1387,380,737,781,153,76800,78200,18200,4300,200,3.1,1,1,32.0,77777,9,999999999,189,0.1210,0,88,0.110,0.0,1.0 +1996,3,8,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,15.0,52,101700,1182,1387,381,852,819,153,90400,82800,19600,6190,190,3.1,1,1,32.0,77777,9,999999999,200,0.1210,0,88,0.110,0.0,1.0 +1996,3,8,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,15.6,54,101600,1243,1387,382,948,880,159,101000,89000,21000,7890,180,4.1,1,1,32.0,77777,9,999999999,200,0.1210,0,88,0.110,0.0,1.0 +1996,3,8,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,15.6,54,101600,1218,1387,382,882,826,156,93800,83600,20200,7070,170,4.6,1,1,32.0,77777,9,999999999,200,0.1210,0,88,0.110,0.0,1.0 +1996,3,8,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,15.6,54,101500,1106,1387,382,749,746,154,78700,75000,18700,5070,190,3.1,1,1,32.0,77777,9,999999999,200,0.1210,0,88,0.110,0.0,1.0 +1996,3,8,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,15.6,52,101500,917,1387,393,639,667,197,66500,66800,22200,4970,230,3.1,3,3,32.0,77777,9,999999999,200,0.1210,0,88,0.110,0.0,1.0 +1996,3,8,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,15.6,56,101500,663,1387,384,413,543,153,43800,54000,17900,3150,250,3.1,2,2,32.0,77777,9,999999999,200,0.1210,0,88,0.110,0.0,1.0 +1996,3,8,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,15.6,62,101600,361,1387,379,161,286,86,16800,24000,10500,1590,230,2.1,3,3,32.0,77777,9,999999999,200,0.1210,0,88,0.110,0.0,1.0 +1996,3,8,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,15.6,66,101600,62,867,365,17,47,14,1900,1800,1800,230,0,0.0,1,1,32.0,77777,9,999999999,200,0.1210,0,88,0.110,0.0,1.0 +1996,3,8,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,15.0,68,101700,0,0,359,0,0,0,0,0,0,0,0,0.0,1,1,16.0,77777,9,999999999,200,0.1210,0,88,0.110,0.0,1.0 +1996,3,8,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,15.6,76,101700,0,0,354,0,0,0,0,0,0,0,60,2.1,1,1,16.0,77777,9,999999999,200,0.1210,0,88,0.110,0.0,1.0 +1996,3,8,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,15.6,79,101800,0,0,344,0,0,0,0,0,0,0,330,1.5,0,0,16.0,77777,9,999999999,200,0.1210,0,88,0.110,0.0,1.0 +1996,3,8,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,15.6,84,101800,0,0,339,0,0,0,0,0,0,0,330,1.5,0,0,16.0,77777,9,999999999,209,0.1210,0,88,0.110,0.0,1.0 +1996,3,8,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,15.6,84,101800,0,0,339,0,0,0,0,0,0,0,330,2.1,0,0,16.0,77777,9,999999999,209,0.1210,0,88,0.110,0.0,1.0 +1996,3,9,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,16.1,90,101800,0,0,338,0,0,0,0,0,0,0,320,2.1,0,0,16.0,77777,9,999999999,209,0.1220,0,88,0.110,0.0,1.0 +1996,3,9,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,15.6,87,101800,0,0,337,0,0,0,0,0,0,0,320,2.1,0,0,16.0,77777,9,999999999,209,0.1220,0,88,0.110,0.0,1.0 +1996,3,9,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,15.0,87,101700,0,0,340,0,0,0,0,0,0,0,340,2.1,1,1,16.0,77777,9,999999999,209,0.1220,0,88,0.110,0.0,1.0 +1996,3,9,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,15.6,87,101600,0,0,348,0,0,0,0,0,0,0,0,0.0,2,2,16.0,77777,9,999999999,209,0.1220,0,88,0.110,0.0,1.0 +1996,3,9,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,15.6,87,101600,0,0,352,0,0,0,0,0,0,0,0,0.0,3,3,16.0,77777,9,999999999,209,0.1220,0,88,0.110,0.0,1.0 +1996,3,9,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,15.6,90,101700,0,0,334,0,0,0,0,0,0,0,340,1.5,0,0,16.0,77777,9,999999999,209,0.1220,0,88,0.110,0.0,1.0 +1996,3,9,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,15.0,90,101700,8,312,331,1,2,1,0,0,0,0,300,2.1,0,0,32.0,77777,9,999999999,209,0.1220,0,88,0.110,0.0,1.0 +1996,3,9,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,17.2,90,101800,232,1386,344,95,255,52,9900,17500,7000,940,310,2.1,0,0,32.0,77777,9,999999999,220,0.1220,0,88,0.110,0.0,1.0 +1996,3,9,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,17.2,69,101800,547,1386,365,326,574,99,33800,54100,12400,1920,290,1.5,0,0,32.0,77777,9,999999999,220,0.1220,0,88,0.110,0.0,1.0 +1996,3,9,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,16.7,60,101900,823,1386,380,541,687,133,57300,69200,16100,3160,130,2.1,1,1,32.0,77777,9,999999999,220,0.1220,0,88,0.110,0.0,1.0 +1996,3,9,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,17.8,62,101900,1041,1386,394,624,530,226,67900,55300,26300,7050,130,4.6,3,3,32.0,77777,9,999999999,220,0.1220,0,88,0.110,0.0,1.0 +1996,3,9,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,17.2,60,101900,1185,1386,389,836,736,207,89500,75300,24900,9030,170,5.2,2,2,32.0,77777,9,999999999,220,0.1220,0,88,0.110,0.0,1.0 +1996,3,9,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,17.8,58,101800,1247,1386,406,674,397,317,72900,41500,35400,17170,170,5.2,5,5,32.0,77777,9,999999999,220,0.1220,0,88,0.110,0.0,1.0 +1996,3,9,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,17.2,60,101700,1221,1386,399,822,420,452,89100,45500,48900,21110,170,5.2,5,5,32.0,77777,9,999999999,220,0.1220,0,88,0.110,0.0,1.0 +1996,3,9,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,17.2,58,101700,1109,1386,395,776,689,225,81900,69800,25900,7970,170,5.2,3,3,32.0,77777,9,999999999,220,0.1220,0,88,0.110,0.0,1.0 +1996,3,9,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,17.2,60,101700,920,1386,407,277,135,187,31200,14400,21600,5400,190,4.6,7,7,32.0,1219,9,999999999,229,0.1220,0,88,0.110,0.0,1.0 +1996,3,9,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,18.3,66,101800,665,1386,412,215,122,156,23800,12500,17800,3830,210,4.6,8,8,32.0,1433,9,999999999,229,0.1220,0,88,0.110,0.0,1.0 +1996,3,9,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,16.7,58,101800,363,1386,402,136,192,85,14500,16400,10200,1620,30,3.6,6,6,32.0,1128,9,999999999,229,0.1220,0,88,0.110,0.0,1.0 +1996,3,9,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,16.7,66,101900,63,890,390,15,12,14,1600,700,1600,360,70,4.6,6,6,16.0,1280,9,999999999,229,0.1220,0,88,0.110,0.0,1.0 +1996,3,9,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,16.7,71,101900,0,0,371,0,0,0,0,0,0,0,70,3.1,2,2,16.0,77777,9,999999999,229,0.1220,0,88,0.110,0.0,1.0 +1996,3,9,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,17.2,78,102000,0,0,370,0,0,0,0,0,0,0,80,2.1,3,3,16.0,77777,9,999999999,229,0.1220,0,88,0.110,0.0,1.0 +1996,3,9,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,17.2,81,102100,0,0,364,0,0,0,0,0,0,0,90,2.1,2,2,16.0,77777,9,999999999,229,0.1220,0,88,0.110,0.0,1.0 +1996,3,9,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,16.7,78,102100,0,0,367,0,0,0,0,0,0,0,320,1.5,3,3,16.0,77777,9,999999999,240,0.1220,0,88,0.110,0.0,1.0 +1996,3,9,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,16.7,84,102000,0,0,357,0,0,0,0,0,0,0,0,0.0,2,2,16.0,77777,9,999999999,240,0.1220,0,88,0.110,0.0,1.0 +1996,3,10,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,16.7,87,102000,0,0,350,0,0,0,0,0,0,0,320,2.6,1,1,16.0,77777,9,999999999,240,0.1230,0,88,0.110,0.0,1.0 +1996,3,10,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,16.7,87,102000,0,0,343,0,0,0,0,0,0,0,320,2.1,0,0,16.0,77777,9,999999999,240,0.1230,0,88,0.110,0.0,1.0 +1996,3,10,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,16.7,90,101900,0,0,340,0,0,0,0,0,0,0,330,2.6,0,0,16.0,77777,9,999999999,240,0.1230,0,88,0.110,0.0,1.0 +1996,3,10,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,16.7,93,101900,0,0,338,0,0,0,0,0,0,0,330,2.6,0,0,16.0,77777,9,999999999,240,0.1230,0,88,0.110,0.0,1.0 +1996,3,10,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,16.1,90,101900,0,0,338,0,0,0,0,0,0,0,330,2.1,0,0,16.0,77777,9,999999999,240,0.1230,0,88,0.110,0.0,1.0 +1996,3,10,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,16.7,93,102000,0,0,353,0,0,0,0,0,0,0,290,2.6,3,3,16.0,77777,9,999999999,240,0.1230,0,88,0.110,0.0,1.0 +1996,3,10,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,17.2,84,102000,9,335,370,1,1,1,0,0,0,0,80,2.6,5,5,32.0,77777,9,999999999,240,0.1230,0,88,0.110,0.0,1.0 +1996,3,10,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,18.3,76,102100,237,1386,380,86,149,60,9000,10200,7300,1130,80,1.5,8,3,32.0,77777,9,999999999,240,0.1230,0,88,0.110,0.0,1.0 +1996,3,10,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,18.3,69,102200,551,1386,402,240,219,152,25500,21600,16900,3170,50,2.6,7,7,32.0,6096,9,999999999,240,0.1230,0,88,0.110,0.0,1.0 +1996,3,10,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,17.8,58,102200,827,1386,421,321,231,183,35400,24600,20700,4320,140,6.7,8,8,32.0,6096,9,999999999,240,0.1230,0,88,0.110,0.0,1.0 +1996,3,10,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,17.2,60,102200,1045,1386,407,387,220,221,43300,23900,25300,6680,120,5.7,7,7,32.0,1372,9,999999999,240,0.1230,0,88,0.110,0.0,1.0 +1996,3,10,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,17.8,58,102200,1189,1386,421,712,289,463,76600,31300,49700,20070,160,6.2,8,8,32.0,1372,9,999999999,240,0.1230,0,88,0.110,0.0,1.0 +1996,3,10,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,17.8,60,102100,1250,1386,411,780,470,355,83400,49100,38900,19630,160,3.6,7,7,32.0,1372,9,999999999,240,0.1230,0,88,0.110,0.0,1.0 +1996,3,10,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,18.9,62,102000,1224,1386,422,580,197,405,63900,21000,45300,18220,170,5.2,8,8,32.0,1463,9,999999999,240,0.1230,0,88,0.110,0.0,1.0 +1996,3,10,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,17.8,55,102000,1112,1386,420,608,376,306,64800,39200,33300,11230,150,6.2,7,7,32.0,1676,9,999999999,240,0.1230,0,88,0.110,0.0,1.0 +1996,3,10,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,17.8,58,102000,922,1386,421,511,327,293,55100,35100,31700,8020,150,6.2,8,8,32.0,1524,9,999999999,240,0.1230,0,88,0.110,0.0,1.0 +1996,3,10,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,17.8,56,102000,667,1386,417,321,222,214,34900,22600,24000,5270,100,4.6,7,7,32.0,1524,9,999999999,240,0.1230,0,88,0.110,0.0,1.0 +1996,3,10,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,17.2,60,102100,365,1386,399,164,245,99,17300,21000,11800,1940,60,5.2,5,5,32.0,77777,9,999999999,240,0.1230,0,88,0.110,0.0,1.0 +1996,3,10,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,17.2,66,102100,64,889,393,15,5,14,1600,300,1600,360,80,4.6,6,6,24.0,7010,9,999999999,240,0.1230,0,88,0.110,0.0,1.0 +1996,3,10,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,17.8,71,102100,0,0,388,0,0,0,0,0,0,0,80,4.1,5,5,16.0,77777,9,999999999,240,0.1230,0,88,0.110,0.0,1.0 +1996,3,10,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,18.3,74,102200,0,0,392,0,0,0,0,0,0,0,80,3.6,6,6,16.0,7010,9,999999999,240,0.1230,0,88,0.110,0.0,1.0 +1996,3,10,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,18.3,76,102200,0,0,383,0,0,0,0,0,0,0,80,3.1,4,4,16.0,77777,9,999999999,240,0.1230,0,88,0.110,0.0,1.0 +1996,3,10,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,17.8,73,102200,0,0,370,0,0,0,0,0,0,0,100,4.1,1,1,16.0,77777,9,999999999,240,0.1230,0,88,0.110,0.0,1.0 +1996,3,10,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,17.8,73,102200,0,0,370,0,0,0,0,0,0,0,100,4.6,1,1,16.0,77777,9,999999999,240,0.1230,0,88,0.110,0.0,1.0 +1996,3,11,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,17.8,79,102200,0,0,365,0,0,0,0,0,0,0,30,2.6,1,1,16.0,77777,9,999999999,240,0.1230,0,88,0.110,0.0,1.0 +1996,3,11,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,17.8,81,102200,0,0,367,0,0,0,0,0,0,0,90,2.1,2,2,16.0,77777,9,999999999,240,0.1230,0,88,0.110,0.0,1.0 +1996,3,11,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,17.8,84,102100,0,0,368,0,0,0,0,0,0,0,0,0.0,3,3,16.0,77777,9,999999999,250,0.1230,0,88,0.110,0.0,1.0 +1996,3,11,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,17.8,87,102100,0,0,356,0,0,0,0,0,0,0,10,2.1,1,1,16.0,77777,9,999999999,250,0.1230,0,88,0.110,0.0,1.0 +1996,3,11,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,17.8,90,102100,0,0,368,0,0,0,0,0,0,0,0,0.0,5,5,16.0,77777,9,999999999,250,0.1230,0,88,0.110,0.0,1.0 +1996,3,11,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,17.8,90,102200,0,0,354,0,0,0,0,0,0,0,320,1.5,1,1,19.2,77777,9,999999999,259,0.1230,0,88,0.110,0.0,1.0 +1996,3,11,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,18.3,93,102300,10,358,390,1,0,1,0,0,0,0,340,2.1,9,9,19.2,1372,9,999999999,259,0.1230,0,88,0.110,0.0,1.0 +1996,3,11,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,18.9,84,102200,242,1385,403,47,21,44,5200,1600,5000,1160,320,1.5,9,9,32.0,1372,9,999999999,259,0.1230,0,88,0.110,0.0,1.0 +1996,3,11,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,18.9,69,102300,556,1385,433,97,0,97,11400,0,11400,4140,140,4.6,10,10,32.0,1311,9,999999999,270,0.1230,0,88,0.110,0.0,1.0 +1996,3,11,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,18.9,61,102300,832,1385,410,455,444,188,48800,45600,21400,4420,130,4.6,5,5,32.0,77777,9,999999999,270,0.1230,0,88,0.110,0.0,1.0 +1996,3,11,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,18.3,58,102300,1049,1385,403,587,438,255,63200,45600,28500,8160,160,5.2,3,3,32.0,77777,9,999999999,270,0.1230,0,88,0.110,0.0,1.0 +1996,3,11,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,17.8,55,102200,1193,1385,401,840,759,186,87500,76000,21800,7490,150,4.6,2,2,32.0,77777,9,999999999,279,0.1230,0,88,0.110,0.0,1.0 +1996,3,11,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,19.4,60,102100,1254,1385,407,972,877,178,102500,88300,22300,9090,170,5.7,3,3,32.0,77777,9,999999999,279,0.1230,0,88,0.110,0.0,1.0 +1996,3,11,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,20.0,63,102100,1227,1385,399,882,832,145,94800,84500,19700,6930,170,4.6,1,1,32.0,77777,9,999999999,279,0.1230,0,88,0.110,0.0,1.0 +1996,3,11,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,20.0,65,102000,1114,1385,405,847,818,188,90500,83600,23000,6880,210,3.6,3,3,32.0,77777,9,999999999,290,0.1230,0,88,0.110,0.0,1.0 +1996,3,11,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,20.6,67,102000,924,1385,402,524,453,221,56100,46900,24700,5800,160,3.6,2,2,32.0,77777,9,999999999,290,0.1230,0,88,0.110,0.0,1.0 +1996,3,11,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,19.4,64,102100,669,1385,401,370,477,139,39700,47600,16600,2850,210,2.1,3,3,32.0,77777,9,999999999,290,0.1230,0,88,0.110,0.0,1.0 +1996,3,11,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,19.4,67,102100,367,1385,401,139,164,95,14700,14100,11000,1840,230,2.6,9,4,32.0,77777,9,999999999,300,0.1230,0,88,0.110,0.0,1.0 +1996,3,11,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,19.4,74,102100,65,889,389,17,31,15,2000,1500,1900,310,0,0.0,5,3,24.0,77777,9,999999999,300,0.1230,0,88,0.110,0.0,1.0 +1996,3,11,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,19.4,79,102200,0,0,380,0,0,0,0,0,0,0,0,0.0,5,2,16.0,77777,9,999999999,300,0.1230,0,88,0.110,0.0,1.0 +1996,3,11,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,18.3,81,102300,0,0,365,0,0,0,0,0,0,0,80,3.1,4,1,16.0,77777,9,999999999,309,0.1230,0,88,0.110,0.0,1.0 +1996,3,11,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,17.8,79,102300,0,0,365,0,0,0,0,0,0,0,70,1.5,2,1,16.0,77777,9,999999999,309,0.1230,0,88,0.110,0.0,1.0 +1996,3,11,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,18.3,84,102400,0,0,371,0,0,0,0,0,0,0,360,2.6,4,3,16.0,77777,9,999999999,309,0.1230,0,88,0.110,0.0,1.0 +1996,3,11,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,17.2,81,102300,0,0,364,0,0,0,0,0,0,0,70,2.1,4,2,16.0,77777,9,999999999,320,0.1230,0,88,0.110,0.0,1.0 +1996,3,12,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,17.2,81,102300,0,0,352,0,0,0,0,0,0,0,310,1.5,0,0,16.0,77777,9,999999999,320,0.1240,0,88,0.110,0.0,1.0 +1996,3,12,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,17.2,84,102200,0,0,364,0,0,0,0,0,0,0,330,2.6,6,3,16.0,77777,9,999999999,320,0.1240,0,88,0.110,0.0,1.0 +1996,3,12,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,17.2,87,102100,0,0,358,0,0,0,0,0,0,0,330,2.1,7,2,16.0,77777,9,999999999,320,0.1240,0,88,0.110,0.0,1.0 +1996,3,12,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,17.2,84,102100,0,0,373,0,0,0,0,0,0,0,320,2.1,8,6,16.0,7620,9,999999999,320,0.1240,0,88,0.110,0.0,1.0 +1996,3,12,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,17.8,81,102100,0,0,384,0,0,0,0,0,0,0,0,0.0,7,7,16.0,4572,9,999999999,329,0.1240,0,88,0.110,0.0,1.0 +1996,3,12,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,17.2,84,102100,0,0,367,0,0,0,0,0,0,0,30,1.5,4,4,19.2,77777,9,999999999,329,0.1240,0,88,0.110,0.0,1.0 +1996,3,12,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,17.8,84,102100,11,381,371,1,4,1,0,0,0,0,350,1.5,4,4,24.0,77777,9,999999999,329,0.1240,0,88,0.110,0.0,1.0 +1996,3,12,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,18.9,82,102200,246,1384,377,103,233,61,10600,16500,7700,1110,320,2.6,6,3,24.0,77777,9,999999999,329,0.1240,0,88,0.110,0.0,1.0 +1996,3,12,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,20.6,72,102200,561,1384,403,262,367,113,28100,35400,13700,2180,110,2.6,4,4,24.0,77777,9,999999999,329,0.1240,0,88,0.110,0.0,1.0 +1996,3,12,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,21.7,72,102200,836,1384,410,548,631,167,57300,63000,19100,3900,150,3.1,8,4,24.0,77777,9,999999999,329,0.1240,0,88,0.110,0.0,1.0 +1996,3,12,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,21.7,72,102200,1053,1384,422,427,245,241,47600,26600,27300,7460,160,4.6,7,7,24.0,7010,9,999999999,329,0.1240,0,88,0.110,0.0,1.0 +1996,3,12,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,21.7,69,102100,1197,1384,432,510,178,355,56500,19000,40000,15030,190,3.6,8,8,24.0,7010,9,999999999,329,0.1240,0,88,0.110,0.0,1.0 +1996,3,12,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,21.7,69,102000,1257,1384,413,863,643,278,90900,65000,31700,15310,170,4.6,7,4,24.0,77777,9,999999999,329,0.1240,0,88,0.110,0.0,1.0 +1996,3,12,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,21.7,69,102000,1230,1384,410,795,651,216,85100,66600,25800,10920,170,5.2,6,3,24.0,77777,9,999999999,329,0.1240,0,88,0.110,0.0,1.0 +1996,3,12,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,21.1,69,101900,1117,1384,421,577,232,390,63300,24700,43300,14240,170,5.7,7,7,24.0,7010,9,999999999,340,0.1240,0,88,0.110,0.0,1.0 +1996,3,12,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,21.1,69,101900,927,1384,428,495,338,268,53700,36300,29400,7250,180,4.6,8,8,24.0,7010,9,999999999,340,0.1240,0,88,0.110,0.0,1.0 +1996,3,12,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,21.1,71,101900,671,1384,434,263,52,238,28900,5200,26300,6800,190,3.6,9,9,19.2,3962,9,999999999,340,0.1240,0,88,0.110,0.0,1.0 +1996,3,12,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,21.1,76,102000,369,1384,440,70,0,70,8000,0,8000,2720,200,3.1,10,10,16.0,3962,9,999999999,340,0.1240,0,88,0.110,0.0,1.0 +1996,3,12,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,21.1,79,102000,67,911,436,14,0,14,1600,0,1600,520,190,2.1,10,10,16.0,3962,9,999999999,340,0.1240,0,88,0.110,0.0,1.0 +1996,3,12,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,21.7,82,102100,0,0,437,0,0,0,0,0,0,0,200,1.5,10,10,16.0,2896,9,999999999,340,0.1240,0,88,0.110,0.0,1.0 +1996,3,12,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,21.7,82,102100,0,0,425,0,0,0,0,0,0,0,110,2.1,9,9,16.0,2438,9,999999999,340,0.1240,0,88,0.110,0.0,1.0 +1996,3,12,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,21.7,85,102100,0,0,395,0,0,0,0,0,0,0,180,2.1,9,4,16.0,77777,9,999999999,340,0.1240,0,88,0.110,0.0,1.0 +1996,3,12,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,21.1,84,102100,0,0,418,0,0,0,0,0,0,0,0,0.0,9,9,16.0,7620,9,999999999,340,0.1240,0,88,0.110,0.0,1.0 +1996,3,12,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,21.1,87,102100,0,0,426,0,0,0,0,0,0,0,80,2.1,10,10,16.0,4572,9,999999999,350,0.1240,0,88,0.110,0.0,1.0 +1996,3,13,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,21.1,82,101900,0,0,433,0,0,0,0,0,0,0,150,4.1,10,10,16.0,4572,9,999999999,350,0.1240,0,88,0.110,0.0,1.0 +1996,3,13,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,21.1,84,101900,0,0,430,0,0,0,0,0,0,0,180,3.1,10,10,16.0,4572,9,999999999,350,0.1240,0,88,0.110,0.0,1.0 +1996,3,13,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,21.1,87,101800,0,0,426,0,0,0,0,0,0,0,70,2.6,10,10,16.0,457,9,999999999,340,0.1240,0,88,0.110,0.0,1.0 +1996,3,13,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,20.6,87,101800,0,0,423,0,0,0,0,0,0,0,320,2.1,10,10,16.0,4572,9,999999999,340,0.1240,0,88,0.110,0.0,1.0 +1996,3,13,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,20.6,91,101800,0,0,399,0,0,0,0,0,0,0,340,2.1,8,8,16.0,7620,9,999999999,340,0.1240,0,88,0.110,0.0,1.0 +1996,3,13,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,20.0,87,101900,0,0,392,0,0,0,0,0,0,0,90,2.6,7,7,16.0,1829,9,999999999,340,0.1240,0,88,0.110,0.0,1.0 +1996,3,13,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,20.0,87,101900,12,403,384,1,0,1,0,0,0,0,300,1.5,5,5,16.0,77777,9,999999999,329,0.1240,0,88,0.110,0.0,1.0 +1996,3,13,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,20.6,82,102000,251,1383,391,77,99,59,8500,7400,7100,1260,0,0.0,5,4,32.0,77777,9,999999999,329,0.1240,0,88,0.110,0.0,1.0 +1996,3,13,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,21.7,74,102000,565,1383,407,258,206,174,28100,20400,19700,4100,170,2.6,5,4,32.0,77777,9,999999999,329,0.1240,0,88,0.110,0.0,1.0 +1996,3,13,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,21.7,72,102000,841,1383,413,384,130,305,41700,13600,33400,8310,180,4.1,6,5,32.0,7620,9,999999999,320,0.1240,0,88,0.110,0.0,1.0 +1996,3,13,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,22.2,74,102000,1057,1383,429,456,187,313,50400,19900,35200,10490,180,4.6,8,8,32.0,4267,9,999999999,320,0.1240,0,88,0.110,0.0,1.0 +1996,3,13,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,22.2,82,102000,1200,1383,429,454,109,359,50300,11700,40200,15350,180,4.6,9,9,32.0,1219,9,999999999,320,0.1240,0,88,0.110,0.0,1.0 +1996,3,13,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,22.2,72,101900,1260,1383,433,583,207,394,64600,22100,44400,19700,180,5.7,8,8,32.0,1829,9,999999999,320,0.1240,0,88,0.110,0.0,1.0 +1996,3,13,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,21.7,67,101800,1233,1383,419,820,311,543,87800,33600,57700,27060,170,5.2,7,5,32.0,7620,9,999999999,309,0.1240,0,88,0.110,0.0,1.0 +1996,3,13,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,21.7,67,101700,1120,1383,413,725,553,277,78200,57700,31300,10320,200,4.6,8,3,32.0,77777,9,999999999,309,0.1240,0,88,0.110,0.0,1.0 +1996,3,13,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,21.7,67,101700,929,1383,416,636,619,220,68300,64100,25100,5810,190,4.1,5,4,32.0,77777,9,999999999,309,0.1240,0,88,0.110,0.0,1.0 +1996,3,13,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,21.1,74,101800,673,1383,410,306,257,180,32900,26500,19900,3950,190,2.6,8,6,32.0,1372,9,999999999,300,0.1240,0,88,0.110,0.0,1.0 +1996,3,13,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,21.1,74,101900,371,1383,410,134,97,108,14600,8500,12300,2380,240,2.6,6,6,24.0,2134,9,999999999,300,0.1240,0,88,0.110,0.0,1.0 +1996,3,13,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,19.4,71,102000,68,911,392,17,15,16,1900,900,1800,410,80,3.6,3,3,24.0,77777,9,999999999,300,0.1240,0,88,0.110,0.0,1.0 +1996,3,13,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,18.9,71,102000,0,0,380,0,0,0,0,0,0,0,60,4.1,1,1,16.0,77777,9,999999999,300,0.1240,0,88,0.110,0.0,1.0 +1996,3,13,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,18.9,74,102100,0,0,377,0,0,0,0,0,0,0,80,3.6,1,1,16.0,77777,9,999999999,290,0.1240,0,88,0.110,0.0,1.0 +1996,3,13,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,18.9,76,102100,0,0,367,0,0,0,0,0,0,0,70,3.1,0,0,16.0,77777,9,999999999,290,0.1240,0,88,0.110,0.0,1.0 +1996,3,13,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,18.9,79,102100,0,0,365,0,0,0,0,0,0,0,60,3.1,0,0,16.0,77777,9,999999999,290,0.1240,0,88,0.110,0.0,1.0 +1996,3,13,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,18.9,79,102100,0,0,372,0,0,0,0,0,0,0,80,3.1,1,1,16.0,77777,9,999999999,279,0.1240,0,88,0.110,0.0,1.0 +1996,3,14,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,18.9,76,102000,0,0,389,0,0,0,0,0,0,0,80,3.6,5,5,16.0,77777,9,999999999,279,0.1250,0,88,0.110,0.0,1.0 +1996,3,14,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,18.9,76,101900,0,0,383,0,0,0,0,0,0,0,80,4.1,3,3,16.0,77777,9,999999999,279,0.1250,0,88,0.110,0.0,1.0 +1996,3,14,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,18.9,76,101900,0,0,374,0,0,0,0,0,0,0,60,4.1,1,1,16.0,77777,9,999999999,279,0.1250,0,88,0.110,0.0,1.0 +1996,3,14,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,18.9,79,101900,0,0,386,0,0,0,0,0,0,0,60,3.1,5,5,16.0,77777,9,999999999,279,0.1250,0,88,0.110,0.0,1.0 +1996,3,14,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,18.9,79,101900,0,0,377,0,0,0,0,0,0,0,70,4.1,2,2,16.0,77777,9,999999999,270,0.1250,0,88,0.110,0.0,1.0 +1996,3,14,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,18.9,76,101900,0,0,392,0,0,0,0,0,0,0,80,4.6,6,6,16.0,1372,9,999999999,270,0.1250,0,88,0.110,0.0,1.0 +1996,3,14,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,18.3,76,102000,14,426,385,3,13,3,0,0,0,0,90,3.6,5,5,32.0,77777,9,999999999,270,0.1250,0,88,0.110,0.0,1.0 +1996,3,14,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,18.3,69,102000,256,1383,397,99,198,62,10500,14300,7800,1160,90,5.2,6,6,32.0,1219,9,999999999,270,0.1250,0,88,0.110,0.0,1.0 +1996,3,14,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,17.2,58,102100,570,1383,402,287,332,150,30800,33100,17100,3120,110,6.2,5,5,32.0,77777,9,999999999,270,0.1250,0,88,0.110,0.0,1.0 +1996,3,14,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,17.2,53,102100,845,1383,411,511,515,196,54800,52900,22300,4680,90,6.7,5,5,32.0,77777,9,999999999,259,0.1250,0,88,0.110,0.0,1.0 +1996,3,14,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,18.3,55,102100,1061,1383,415,702,719,150,73600,72200,18000,4510,120,7.7,5,5,32.0,77777,9,999999999,259,0.1250,0,88,0.110,0.0,1.0 +1996,3,14,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,17.8,55,102100,1204,1383,408,795,721,167,83900,72700,20400,7220,150,5.2,8,4,32.0,77777,9,999999999,259,0.1250,0,88,0.110,0.0,1.0 +1996,3,14,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.9,19.4,57,102000,1263,1383,417,863,727,198,93300,74800,24800,11510,160,6.2,5,4,32.0,77777,9,999999999,259,0.1250,0,88,0.110,0.0,1.0 +1996,3,14,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,19.4,59,101900,1235,1383,420,850,668,253,90100,67800,29300,12970,150,7.2,8,6,32.0,1676,9,999999999,259,0.1250,0,88,0.110,0.0,1.0 +1996,3,14,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,20.0,63,101900,1122,1383,423,490,369,190,54800,38700,23300,6990,150,6.7,7,7,32.0,1524,9,999999999,259,0.1250,0,88,0.110,0.0,1.0 +1996,3,14,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,18.3,56,101900,931,1383,427,515,286,322,55200,30700,34500,9050,120,3.6,8,8,32.0,1676,9,999999999,250,0.1250,0,88,0.110,0.0,1.0 +1996,3,14,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,17.2,53,101900,675,1383,411,394,520,140,42400,52000,16900,2880,80,5.2,5,5,32.0,77777,9,999999999,250,0.1250,0,88,0.110,0.0,1.0 +1996,3,14,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,17.8,58,101900,373,1383,399,214,512,76,21900,43300,10200,1370,60,6.2,3,3,32.0,77777,9,999999999,250,0.1250,0,88,0.110,0.0,1.0 +1996,3,14,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,18.9,69,102000,69,910,388,23,133,12,2400,7000,1800,230,60,5.2,2,2,24.0,77777,9,999999999,250,0.1250,0,88,0.110,0.0,1.0 +1996,3,14,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,18.3,69,102100,0,0,388,0,0,0,0,0,0,0,70,5.7,3,3,19.2,77777,9,999999999,250,0.1250,0,88,0.110,0.0,1.0 +1996,3,14,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,18.3,71,102100,0,0,376,0,0,0,0,0,0,0,70,5.2,1,1,19.2,77777,9,999999999,250,0.1250,0,88,0.110,0.0,1.0 +1996,3,14,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,18.9,74,102200,0,0,377,0,0,0,0,0,0,0,70,4.1,1,1,19.2,77777,9,999999999,240,0.1250,0,88,0.110,0.0,1.0 +1996,3,14,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,18.9,76,102200,0,0,374,0,0,0,0,0,0,0,70,3.6,1,1,19.2,77777,9,999999999,240,0.1250,0,88,0.110,0.0,1.0 +1996,3,14,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,19.4,79,102100,0,0,375,0,0,0,0,0,0,0,50,3.6,1,1,19.2,77777,9,999999999,240,0.1250,0,88,0.110,0.0,1.0 +1996,3,15,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,19.4,81,102100,0,0,372,0,0,0,0,0,0,0,70,3.6,1,1,19.2,77777,9,999999999,240,0.1250,0,88,0.110,0.0,1.0 +1996,3,15,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,18.9,79,102000,0,0,372,0,0,0,0,0,0,0,60,3.6,1,1,19.2,77777,9,999999999,240,0.1250,0,88,0.110,0.0,1.0 +1996,3,15,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,18.9,79,102000,0,0,372,0,0,0,0,0,0,0,70,4.1,1,1,19.2,77777,9,999999999,240,0.1250,0,88,0.110,0.0,1.0 +1996,3,15,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,18.3,79,102000,0,0,368,0,0,0,0,0,0,0,80,3.6,1,1,19.2,77777,9,999999999,240,0.1250,0,88,0.110,0.0,1.0 +1996,3,15,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,17.8,76,102000,0,0,367,0,0,0,0,0,0,0,80,3.1,1,1,19.2,77777,9,999999999,240,0.1250,0,88,0.110,0.0,1.0 +1996,3,15,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,17.2,76,102000,0,0,364,0,0,0,0,0,0,0,60,2.6,1,1,16.0,77777,9,999999999,240,0.1250,0,88,0.110,0.0,1.0 +1996,3,15,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,17.8,71,102000,15,449,382,2,3,2,0,0,0,0,120,4.6,3,3,32.0,77777,9,999999999,240,0.1250,0,88,0.110,0.0,1.0 +1996,3,15,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,17.8,62,102100,261,1382,390,113,287,59,11800,21000,7900,1070,90,4.6,2,2,32.0,77777,9,999999999,240,0.1250,0,88,0.110,0.0,1.0 +1996,3,15,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,18.3,58,102100,575,1382,403,307,349,162,32800,34800,18300,3430,80,2.6,3,3,32.0,77777,9,999999999,240,0.1250,0,88,0.110,0.0,1.0 +1996,3,15,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,18.3,55,102200,849,1382,412,559,622,177,58300,62000,20000,4170,100,5.7,4,4,32.0,77777,9,999999999,240,0.1250,0,88,0.110,0.0,1.0 +1996,3,15,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,18.9,61,102100,1065,1382,413,664,497,280,70900,51800,30900,9330,150,6.2,6,6,32.0,1128,9,999999999,240,0.1250,0,88,0.110,0.0,1.0 +1996,3,15,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.9,18.3,53,102100,1207,1382,418,804,545,327,86200,56900,36300,15680,70,5.2,5,5,32.0,77777,9,999999999,240,0.1250,0,88,0.110,0.0,1.0 +1996,3,15,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,19.4,60,102000,1266,1382,414,769,563,253,81800,57300,29100,14740,120,4.1,5,5,32.0,77777,9,999999999,240,0.1250,0,88,0.110,0.0,1.0 +1996,3,15,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,17.8,53,102000,1238,1382,418,803,579,284,84400,58400,31900,14610,80,6.2,6,6,32.0,1463,9,999999999,240,0.1250,0,88,0.110,0.0,1.0 +1996,3,15,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,29.4,18.9,53,101900,1124,1382,422,666,533,231,70100,54000,26000,8540,90,7.2,5,5,32.0,77777,9,999999999,240,0.1250,0,88,0.110,0.0,1.0 +1996,3,15,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,20.0,61,101900,933,1382,421,628,497,292,65500,51200,30800,7970,70,6.2,6,6,32.0,1829,9,999999999,240,0.1250,0,88,0.110,0.0,1.0 +1996,3,15,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,18.9,61,101900,677,1382,407,321,262,193,34500,27100,21200,4300,60,5.7,4,4,32.0,77777,9,999999999,240,0.1250,0,88,0.110,0.0,1.0 +1996,3,15,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,18.9,65,101900,375,1382,394,184,391,77,19400,33400,10300,1400,70,6.2,2,2,24.0,77777,9,999999999,240,0.1250,0,88,0.110,0.0,1.0 +1996,3,15,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,18.9,69,102000,70,933,392,21,44,17,2300,1800,2100,280,60,5.2,3,3,24.0,77777,9,999999999,240,0.1250,0,88,0.110,0.0,1.0 +1996,3,15,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,18.9,74,102100,0,0,395,0,0,0,0,0,0,0,80,3.1,6,6,16.0,1676,9,999999999,240,0.1250,0,88,0.110,0.0,1.0 +1996,3,15,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,18.9,74,102100,0,0,392,0,0,0,0,0,0,0,80,3.1,5,5,16.0,77777,9,999999999,240,0.1250,0,88,0.110,0.0,1.0 +1996,3,15,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,18.9,76,102200,0,0,379,0,0,0,0,0,0,0,80,2.1,2,2,16.0,77777,9,999999999,240,0.1250,0,88,0.110,0.0,1.0 +1996,3,15,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,18.3,74,102200,0,0,366,0,0,0,0,0,0,0,80,3.6,0,0,16.0,77777,9,999999999,240,0.1250,0,88,0.110,0.0,1.0 +1996,3,15,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,17.8,73,102100,0,0,363,0,0,0,0,0,0,0,70,3.1,0,0,16.0,77777,9,999999999,240,0.1250,0,88,0.110,0.0,1.0 +1996,3,16,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,18.3,79,102100,0,0,361,0,0,0,0,0,0,0,70,3.6,0,0,16.0,77777,9,999999999,240,0.1260,0,88,0.110,0.0,1.0 +1996,3,16,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,18.3,79,102000,0,0,361,0,0,0,0,0,0,0,70,3.6,0,0,16.0,77777,9,999999999,240,0.1260,0,88,0.110,0.0,1.0 +1996,3,16,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,17.2,76,102000,0,0,357,0,0,0,0,0,0,0,60,2.6,0,0,16.0,77777,9,999999999,240,0.1260,0,88,0.110,0.0,1.0 +1996,3,16,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,17.2,76,101900,0,0,357,0,0,0,0,0,0,0,60,2.6,0,0,16.0,77777,9,999999999,240,0.1260,0,88,0.110,0.0,1.0 +1996,3,16,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,17.8,84,101900,0,0,353,0,0,0,0,0,0,0,320,3.1,0,0,16.0,77777,9,999999999,240,0.1260,0,88,0.110,0.0,1.0 +1996,3,16,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,18.3,87,102000,0,0,360,0,0,0,0,0,0,0,330,3.1,1,1,16.0,77777,9,999999999,229,0.1260,0,88,0.110,0.0,1.0 +1996,3,16,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,17.8,81,102000,17,449,367,3,10,2,0,0,0,0,40,2.1,2,2,32.0,77777,9,999999999,229,0.1260,0,88,0.110,0.0,1.0 +1996,3,16,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,17.2,66,102000,266,1381,384,112,284,57,11800,21000,7700,1030,90,4.1,3,3,32.0,77777,9,999999999,229,0.1260,0,88,0.110,0.0,1.0 +1996,3,16,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,17.2,58,102100,579,1381,405,233,299,107,25200,29100,12900,2070,120,2.1,6,6,32.0,1524,9,999999999,229,0.1260,0,88,0.110,0.0,1.0 +1996,3,16,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,17.2,58,102100,854,1381,399,510,486,210,54400,50000,23400,5100,110,3.1,4,4,32.0,77777,9,999999999,229,0.1260,0,88,0.110,0.0,1.0 +1996,3,16,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,16.1,49,102100,1069,1381,413,705,577,257,76000,60200,29300,8590,90,4.6,6,6,32.0,1524,9,999999999,229,0.1260,0,88,0.110,0.0,1.0 +1996,3,16,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,15.6,46,102000,1211,1381,405,860,742,209,92200,76000,25400,10020,100,5.2,3,3,32.0,77777,9,999999999,229,0.1260,0,88,0.110,0.0,1.0 +1996,3,16,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.9,16.1,46,101900,1269,1381,405,910,786,187,95600,79000,22700,10320,70,6.2,2,2,32.0,77777,9,999999999,229,0.1260,0,88,0.110,0.0,1.0 +1996,3,16,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,29.4,15.6,43,101900,1241,1381,411,872,715,229,93100,73000,27300,12130,90,7.2,3,3,32.0,77777,9,999999999,229,0.1260,0,88,0.110,0.0,1.0 +1996,3,16,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.9,16.1,46,101800,1127,1381,405,789,792,143,83900,80100,18400,5110,60,7.2,2,2,32.0,77777,9,999999999,220,0.1260,0,88,0.110,0.0,1.0 +1996,3,16,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,16.1,48,101800,935,1381,406,592,600,186,62100,60400,21100,4900,50,6.2,3,3,32.0,77777,9,999999999,220,0.1260,0,88,0.110,0.0,1.0 +1996,3,16,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,16.1,52,101800,679,1381,393,433,599,138,44800,58400,16000,2820,80,6.7,2,2,32.0,77777,9,999999999,220,0.1260,0,88,0.110,0.0,1.0 +1996,3,16,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,17.2,58,101900,377,1381,399,201,445,80,21300,38100,10900,1460,60,6.2,4,4,32.0,77777,9,999999999,220,0.1260,0,88,0.110,0.0,1.0 +1996,3,16,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,17.2,64,101900,71,932,383,20,63,15,2200,2600,2000,250,70,5.7,2,2,24.0,77777,9,999999999,220,0.1260,0,88,0.110,0.0,1.0 +1996,3,16,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,17.2,64,102000,0,0,407,0,0,0,0,0,0,0,80,5.2,8,8,16.0,1676,9,999999999,220,0.1260,0,88,0.110,0.0,1.0 +1996,3,16,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,18.9,76,102000,0,0,424,0,0,0,0,0,0,0,70,5.7,10,10,16.0,1676,9,999999999,220,0.1260,0,88,0.110,0.0,1.0 +1996,3,16,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,20.0,87,102100,0,0,419,0,0,0,0,0,0,0,70,6.2,10,10,12.8,1128,9,999999999,220,0.1260,0,88,0.110,0.0,1.0 +1996,3,16,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,19.4,84,102000,0,0,406,0,0,0,0,0,0,0,70,3.6,9,9,16.0,1524,9,999999999,220,0.1260,0,88,0.110,0.0,1.0 +1996,3,16,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,18.9,79,102000,0,0,386,0,0,0,0,0,0,0,80,5.2,5,5,16.0,77777,9,999999999,209,0.1260,0,88,0.110,0.0,1.0 +1996,3,17,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,18.9,79,102000,0,0,400,0,0,0,0,0,0,0,70,6.2,8,8,16.0,1676,9,999999999,209,0.1270,0,88,0.110,0.0,1.0 +1996,3,17,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,18.9,84,101900,0,0,371,0,0,0,0,0,0,0,70,2.1,2,2,16.0,77777,9,999999999,209,0.1270,0,88,0.110,0.0,1.0 +1996,3,17,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,18.9,82,101800,0,0,377,0,0,0,0,0,0,0,80,3.6,3,3,16.0,77777,9,999999999,209,0.1270,0,88,0.110,0.0,1.0 +1996,3,17,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,18.3,79,101800,0,0,382,0,0,0,0,0,0,0,100,4.6,5,5,16.0,77777,9,999999999,209,0.1270,0,88,0.110,0.0,1.0 +1996,3,17,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,18.9,82,101800,0,0,397,0,0,0,0,0,0,0,70,4.1,8,8,16.0,1433,9,999999999,209,0.1270,0,88,0.110,0.0,1.0 +1996,3,17,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,19.4,84,101900,0,0,406,0,0,0,0,0,0,0,60,3.1,9,9,16.0,1524,9,999999999,209,0.1270,0,88,0.110,0.0,1.0 +1996,3,17,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,18.3,79,101900,18,472,382,4,18,3,0,0,0,0,70,5.2,5,5,24.0,77777,9,999999999,209,0.1270,0,88,0.110,0.0,1.0 +1996,3,17,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,18.3,76,102000,271,1380,383,106,276,51,11200,20600,7200,910,80,5.2,4,4,32.0,77777,9,999999999,209,0.1270,0,88,0.110,0.0,1.0 +1996,3,17,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,18.3,66,102000,584,1380,394,315,485,109,34000,47300,14000,2110,70,6.7,4,4,32.0,77777,9,999999999,209,0.1270,0,88,0.110,0.0,1.0 +1996,3,17,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,17.2,56,102000,858,1380,395,507,534,175,55100,55100,20800,4200,70,7.7,2,2,32.0,77777,9,999999999,209,0.1270,0,88,0.110,0.0,1.0 +1996,3,17,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,17.2,53,102000,1073,1380,404,740,735,168,79400,75300,20700,5720,70,8.2,3,3,32.0,77777,9,999999999,209,0.1270,0,88,0.110,0.0,1.0 +1996,3,17,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,17.2,53,102000,1214,1380,401,911,882,134,93600,88300,15700,5020,70,8.8,2,2,32.0,77777,9,999999999,209,0.1270,0,88,0.110,0.0,1.0 +1996,3,17,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,17.2,51,101900,1272,1380,414,859,650,259,91200,66000,30100,15570,60,8.2,5,5,32.0,77777,9,999999999,200,0.1270,0,88,0.110,0.0,1.0 +1996,3,17,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.9,17.2,49,101800,1243,1380,417,679,546,187,73600,56200,22800,10150,60,8.8,5,5,32.0,77777,9,999999999,200,0.1270,0,88,0.110,0.0,1.0 +1996,3,17,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,18.3,58,101700,1129,1380,409,799,734,198,85200,75000,23700,7540,60,7.7,5,5,32.0,77777,9,999999999,200,0.1270,0,88,0.110,0.0,1.0 +1996,3,17,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,18.9,61,101700,937,1380,407,626,646,187,65600,65000,21300,4940,70,5.7,4,4,32.0,77777,9,999999999,200,0.1270,0,88,0.110,0.0,1.0 +1996,3,17,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,18.9,69,101700,681,1380,395,349,506,99,37000,50100,12200,2140,70,7.7,4,4,32.0,77777,9,999999999,200,0.1270,0,88,0.110,0.0,1.0 +1996,3,17,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,18.3,64,101800,378,1380,397,222,529,76,22600,45100,10300,1370,80,8.8,4,4,32.0,77777,9,999999999,200,0.1270,0,88,0.110,0.0,1.0 +1996,3,17,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,17.8,71,101900,72,932,385,27,102,19,2900,4700,2600,330,70,5.7,4,4,32.0,77777,9,999999999,200,0.1270,0,88,0.110,0.0,1.0 +1996,3,17,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,17.8,71,102000,0,0,378,0,0,0,0,0,0,0,70,5.7,2,2,16.0,77777,9,999999999,200,0.1270,0,88,0.110,0.0,1.0 +1996,3,17,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,18.3,74,102000,0,0,382,0,0,0,0,0,0,0,70,6.7,3,3,16.0,77777,9,999999999,200,0.1270,0,88,0.110,0.0,1.0 +1996,3,17,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,17.8,71,102100,0,0,378,0,0,0,0,0,0,0,70,5.7,2,2,16.0,77777,9,999999999,200,0.1270,0,88,0.110,0.0,1.0 +1996,3,17,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,18.3,74,102100,0,0,382,0,0,0,0,0,0,0,70,6.2,3,3,16.0,77777,9,999999999,200,0.1270,0,88,0.110,0.0,1.0 +1996,3,17,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,17.8,71,102000,0,0,385,0,0,0,0,0,0,0,80,5.7,4,4,16.0,77777,9,999999999,200,0.1270,0,88,0.110,0.0,1.0 +1996,3,18,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,17.8,73,102000,0,0,382,0,0,0,0,0,0,0,70,4.6,4,4,16.0,77777,9,999999999,200,0.1270,0,88,0.110,0.0,1.0 +1996,3,18,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,17.8,73,101900,0,0,382,0,0,0,0,0,0,0,70,5.2,4,4,16.0,77777,9,999999999,200,0.1270,0,88,0.110,0.0,1.0 +1996,3,18,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,17.8,73,101900,0,0,375,0,0,0,0,0,0,0,70,5.2,2,2,16.0,77777,9,999999999,189,0.1270,0,88,0.110,0.0,1.0 +1996,3,18,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,17.8,73,101800,0,0,379,0,0,0,0,0,0,0,70,4.6,3,3,16.0,77777,9,999999999,189,0.1270,0,88,0.110,0.0,1.0 +1996,3,18,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,17.8,76,101900,0,0,379,0,0,0,0,0,0,0,80,5.7,4,4,16.0,77777,9,999999999,189,0.1270,0,88,0.110,0.0,1.0 +1996,3,18,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,17.2,73,101900,0,0,395,0,0,0,0,0,0,0,60,5.7,8,8,16.0,1829,9,999999999,189,0.1270,0,88,0.110,0.0,1.0 +1996,3,18,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,16.7,68,102000,20,494,406,3,5,3,400,200,400,60,60,5.7,9,9,32.0,1829,9,999999999,189,0.1270,0,88,0.110,0.0,1.0 +1996,3,18,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,15.6,58,102000,276,1379,388,125,185,88,13000,13800,10200,1750,60,5.7,8,4,32.0,77777,9,999999999,189,0.1270,0,88,0.110,0.0,1.0 +1996,3,18,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,14.4,50,102000,589,1379,385,364,542,132,38600,52800,16000,2610,70,7.7,7,2,32.0,77777,9,999999999,189,0.1270,0,88,0.110,0.0,1.0 +1996,3,18,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,15.0,49,102100,862,1379,402,627,708,184,65200,70600,20900,4380,60,6.2,5,5,32.0,77777,9,999999999,189,0.1270,0,88,0.110,0.0,1.0 +1996,3,18,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,15.0,46,102000,1077,1379,405,758,753,170,81300,77200,20900,5830,60,7.7,7,4,32.0,77777,9,999999999,189,0.1270,0,88,0.110,0.0,1.0 +1996,3,18,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,15.6,47,102000,1218,1379,406,744,492,309,80400,51500,34800,15400,70,7.2,8,4,32.0,77777,9,999999999,189,0.1270,0,88,0.110,0.0,1.0 +1996,3,18,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,16.7,53,101900,1275,1379,415,758,401,387,80700,41900,41800,24450,70,7.2,9,7,32.0,7620,9,999999999,189,0.1270,0,88,0.110,0.0,1.0 +1996,3,18,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,16.7,53,101800,1246,1379,404,764,518,296,83300,54300,34100,16310,90,6.7,9,4,32.0,77777,9,999999999,189,0.1270,0,88,0.110,0.0,1.0 +1996,3,18,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,16.1,49,101700,1131,1379,406,690,565,227,73000,57300,25800,8590,60,6.7,9,4,32.0,77777,9,999999999,189,0.1270,0,88,0.110,0.0,1.0 +1996,3,18,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,16.1,49,101700,939,1379,403,640,589,239,68300,61000,26700,6460,70,6.2,8,3,32.0,77777,9,999999999,189,0.1270,0,88,0.110,0.0,1.0 +1996,3,18,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,15.6,52,101700,683,1379,400,214,167,131,23600,17400,15000,2740,70,6.7,5,5,32.0,77777,9,999999999,189,0.1270,0,88,0.110,0.0,1.0 +1996,3,18,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,16.7,58,101800,380,1379,398,144,272,69,15500,23400,9000,1240,60,6.7,5,5,32.0,77777,9,999999999,179,0.1270,0,88,0.110,0.0,1.0 +1996,3,18,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,16.1,62,101800,74,954,389,21,12,20,2300,700,2200,500,70,5.7,5,5,24.0,77777,9,999999999,179,0.1270,0,88,0.110,0.0,1.0 +1996,3,18,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,16.7,66,101900,0,0,380,0,0,0,0,0,0,0,80,6.2,3,3,16.0,77777,9,999999999,179,0.1270,0,88,0.110,0.0,1.0 +1996,3,18,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,16.1,64,101900,0,0,376,0,0,0,0,0,0,0,70,5.7,2,2,16.0,77777,9,999999999,179,0.1270,0,88,0.110,0.0,1.0 +1996,3,18,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,16.7,64,102000,0,0,404,0,0,0,0,0,0,0,70,6.2,8,8,16.0,1676,9,999999999,179,0.1270,0,88,0.110,0.0,1.0 +1996,3,18,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,17.2,69,102000,0,0,395,0,0,0,0,0,0,0,70,6.2,7,7,16.0,1524,9,999999999,179,0.1270,0,88,0.110,0.0,1.0 +1996,3,18,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,16.7,66,101900,0,0,409,0,0,0,0,0,0,0,60,4.6,9,9,16.0,1524,9,999999999,179,0.1270,0,88,0.110,0.0,1.0 +1996,3,19,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,16.7,66,101900,0,0,409,0,0,0,0,0,0,0,60,5.7,9,9,16.0,1676,9,999999999,179,0.1280,0,88,0.110,0.0,1.0 +1996,3,19,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,16.1,64,101800,0,0,393,0,0,0,0,0,0,0,60,4.6,7,7,16.0,1524,9,999999999,179,0.1280,0,88,0.110,0.0,1.0 +1996,3,19,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,16.1,68,101800,0,0,374,0,0,0,0,0,0,0,60,4.6,3,3,16.0,77777,9,999999999,179,0.1280,0,88,0.110,0.0,1.0 +1996,3,19,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,16.7,71,101800,0,0,388,0,0,0,0,0,0,0,80,5.2,7,7,16.0,1524,9,999999999,179,0.1280,0,88,0.110,0.0,1.0 +1996,3,19,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,15.0,64,101800,0,0,392,0,0,0,0,0,0,0,70,2.6,8,8,16.0,1829,9,999999999,179,0.1280,0,88,0.110,0.0,1.0 +1996,3,19,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,15.6,66,101800,0,0,382,0,0,0,0,0,0,0,90,5.2,6,6,16.0,1524,9,999999999,179,0.1280,0,88,0.110,0.0,1.0 +1996,3,19,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,15.0,66,101900,22,517,370,5,3,5,600,100,600,130,80,4.6,8,3,24.0,77777,9,999999999,189,0.1280,0,88,0.110,0.0,1.0 +1996,3,19,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,14.4,59,101900,281,1379,371,124,237,75,13000,17900,9400,1440,60,4.6,5,2,32.0,77777,9,999999999,189,0.1280,0,88,0.110,0.0,1.0 +1996,3,19,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,15.6,54,101900,593,1379,391,335,406,160,34900,39500,17800,3240,70,4.6,6,3,32.0,77777,9,999999999,189,0.1280,0,88,0.110,0.0,1.0 +1996,3,19,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,16.1,52,102000,866,1379,393,573,638,172,60000,63900,19700,4170,80,5.7,5,2,32.0,77777,9,999999999,189,0.1280,0,88,0.110,0.0,1.0 +1996,3,19,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,16.1,49,102000,1081,1379,413,595,419,266,64100,43700,29700,9150,70,6.2,8,6,32.0,7620,9,999999999,189,0.1280,0,88,0.110,0.0,1.0 +1996,3,19,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,16.7,51,101900,1221,1379,407,812,544,329,87200,56900,36700,16670,60,6.7,5,4,32.0,77777,9,999999999,189,0.1280,0,88,0.110,0.0,1.0 +1996,3,19,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,15.6,47,101700,1278,1379,424,820,427,423,86400,44500,45000,27280,70,7.7,8,8,32.0,7620,9,999999999,189,0.1280,0,88,0.110,0.0,1.0 +1996,3,19,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,16.7,53,101700,1248,1379,410,901,574,381,95700,59900,41300,21500,60,6.2,6,6,32.0,7620,9,999999999,189,0.1280,0,88,0.110,0.0,1.0 +1996,3,19,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,17.2,53,101600,1133,1379,404,741,611,238,78000,61800,27000,9030,60,7.7,5,3,32.0,77777,9,999999999,189,0.1280,0,88,0.110,0.0,1.0 +1996,3,19,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,17.2,54,101600,941,1379,397,649,688,179,68300,69500,20700,4790,60,7.2,2,2,32.0,77777,9,999999999,189,0.1280,0,88,0.110,0.0,1.0 +1996,3,19,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,17.2,58,101600,684,1379,405,288,251,164,31400,26000,18500,3550,60,6.2,6,6,32.0,7620,9,999999999,200,0.1280,0,88,0.110,0.0,1.0 +1996,3,19,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,17.2,60,101600,382,1379,389,186,375,82,19600,32300,10700,1500,60,6.2,2,2,32.0,77777,9,999999999,200,0.1280,0,88,0.110,0.0,1.0 +1996,3,19,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,16.7,66,101700,75,954,380,21,22,19,2300,1100,2200,390,40,3.6,3,3,24.0,77777,9,999999999,200,0.1280,0,88,0.110,0.0,1.0 +1996,3,19,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,16.7,68,101700,0,0,374,0,0,0,0,0,0,0,50,4.6,2,2,16.0,77777,9,999999999,200,0.1280,0,88,0.110,0.0,1.0 +1996,3,19,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,16.7,68,101700,0,0,378,0,0,0,0,0,0,0,30,4.1,3,3,16.0,77777,9,999999999,200,0.1280,0,88,0.110,0.0,1.0 +1996,3,19,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,17.2,73,101800,0,0,372,0,0,0,0,0,0,0,30,2.6,2,2,16.0,77777,9,999999999,200,0.1280,0,88,0.110,0.0,1.0 +1996,3,19,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,17.2,76,101800,0,0,376,0,0,0,0,0,0,0,330,2.1,4,4,16.0,77777,9,999999999,200,0.1280,0,88,0.110,0.0,1.0 +1996,3,19,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,17.8,73,101700,0,0,393,0,0,0,0,0,0,0,100,2.1,7,7,16.0,1463,9,999999999,200,0.1280,0,88,0.110,0.0,1.0 +1996,3,20,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,17.8,76,101700,0,0,379,0,0,0,0,0,0,0,50,2.6,4,4,16.0,77777,9,999999999,200,0.1280,0,88,0.110,0.0,1.0 +1996,3,20,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,17.8,87,101600,0,0,365,0,0,0,0,0,0,0,340,2.1,3,3,16.0,77777,9,999999999,200,0.1280,0,88,0.110,0.0,1.0 +1996,3,20,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,17.8,84,101600,0,0,371,0,0,0,0,0,0,0,340,2.1,4,4,16.0,77777,9,999999999,209,0.1280,0,88,0.110,0.0,1.0 +1996,3,20,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,17.8,81,101600,0,0,390,0,0,0,0,0,0,0,360,3.1,8,8,16.0,1676,9,999999999,209,0.1280,0,88,0.110,0.0,1.0 +1996,3,20,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,18.9,90,101600,0,0,383,0,0,0,0,0,0,0,10,3.1,7,7,16.0,1524,9,999999999,209,0.1280,0,88,0.110,0.0,1.0 +1996,3,20,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,19.4,93,101600,0,0,409,0,0,0,0,0,0,0,340,3.1,10,10,16.0,1219,9,999999999,209,0.1280,0,88,0.110,0.0,1.0 +1996,3,20,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,18.9,90,101700,23,540,408,3,0,3,400,0,400,120,10,3.1,10,10,16.0,1219,9,999999999,220,0.1280,0,88,0.110,0.0,1.0 +1996,3,20,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,19.4,93,101700,285,1378,409,40,0,40,4700,0,4700,1580,330,4.1,10,10,16.0,975,9,999999999,220,0.1280,0,88,0.110,0.0,1.0 +1996,3,20,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,19.4,84,101700,598,1378,418,109,0,109,12800,0,12800,4700,340,3.6,10,10,16.0,1158,9,999999999,220,0.1280,0,88,0.110,0.0,1.0 +1996,3,20,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,19.4,76,101700,871,1378,416,395,152,299,43100,16000,32900,8350,330,3.1,9,9,16.0,1250,9,999999999,220,0.1280,0,88,0.110,0.0,1.0 +1996,3,20,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,18.9,69,101700,1084,1378,433,229,0,229,27500,0,27500,11040,360,2.1,10,10,16.0,975,9,999999999,229,0.1280,0,88,0.110,0.0,1.0 +1996,3,20,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,18.3,62,101600,1224,1378,439,263,0,263,31800,0,31800,12680,170,3.1,10,10,16.0,1097,9,999999999,229,0.1280,0,88,0.110,0.0,1.0 +1996,3,20,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,19.4,81,101600,1281,1378,421,277,0,277,33600,0,33600,13330,0,0.0,10,10,11.2,975,9,999999999,229,0.1280,0,88,0.110,0.0,1.0 +1996,3,20,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,18.9,61,101500,1251,1378,446,270,0,270,32700,0,32700,13000,340,1.5,10,10,16.0,1219,9,999999999,229,0.1280,0,88,0.110,0.0,1.0 +1996,3,20,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,19.4,79,101400,1135,1378,424,242,0,242,29100,0,29100,11680,30,5.2,10,10,11.2,1219,9,999999999,240,0.1280,0,88,0.110,0.0,1.0 +1996,3,20,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,19.4,81,101300,942,1378,421,194,0,194,23100,0,23100,9160,30,5.2,10,10,11.2,1219,9,999999999,240,0.1280,0,88,0.110,0.0,1.0 +1996,3,20,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,18.9,67,101300,686,1378,425,145,40,125,16000,3900,14100,4070,60,4.1,9,9,24.0,1676,9,999999999,240,0.1280,0,88,0.110,0.0,1.0 +1996,3,20,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,14.4,54,101400,383,1378,386,177,275,100,18800,24100,12100,1950,330,5.2,4,4,32.0,77777,9,999999999,240,0.1280,0,88,0.110,0.0,1.0 +1996,3,20,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,16.1,64,101400,76,953,389,18,32,16,2100,1600,2000,330,360,6.2,6,6,16.0,1676,9,999999999,250,0.1280,0,88,0.110,0.0,1.0 +1996,3,20,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,16.1,68,101500,0,0,377,0,0,0,0,0,0,0,360,3.6,4,4,16.0,77777,9,999999999,250,0.1280,0,88,0.110,0.0,1.0 +1996,3,20,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,15.6,71,101500,0,0,364,0,0,0,0,0,0,0,360,3.1,2,2,16.0,77777,9,999999999,250,0.1280,0,88,0.110,0.0,1.0 +1996,3,20,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,15.6,73,101500,0,0,357,0,0,0,0,0,0,0,310,2.1,1,1,16.0,77777,9,999999999,250,0.1280,0,88,0.110,0.0,1.0 +1996,3,20,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,16.1,78,101500,0,0,366,0,0,0,0,0,0,0,350,3.1,4,4,16.0,77777,9,999999999,259,0.1280,0,88,0.110,0.0,1.0 +1996,3,20,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,17.8,87,101500,0,0,368,0,0,0,0,0,0,0,320,2.6,4,4,16.0,77777,9,999999999,259,0.1280,0,88,0.110,0.0,1.0 +1996,3,21,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,17.8,81,101500,0,0,390,0,0,0,0,0,0,0,340,3.6,8,8,16.0,1128,9,999999999,259,0.1290,0,88,0.110,0.0,1.0 +1996,3,21,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,17.2,78,101400,0,0,379,0,0,0,0,0,0,0,320,3.1,6,6,16.0,1829,9,999999999,259,0.1290,0,88,0.110,0.0,1.0 +1996,3,21,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,17.8,84,101300,0,0,387,0,0,0,0,0,0,0,340,2.6,8,8,16.0,1829,9,999999999,259,0.1290,0,88,0.110,0.0,1.0 +1996,3,21,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,16.7,87,101300,0,0,361,0,0,0,0,0,0,0,320,2.6,4,4,16.0,77777,9,999999999,259,0.1290,0,88,0.110,0.0,1.0 +1996,3,21,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,17.2,87,101300,0,0,370,0,0,0,0,0,0,0,320,1.5,6,6,16.0,2134,9,999999999,250,0.1290,0,88,0.110,0.0,1.0 +1996,3,21,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,16.7,87,101400,0,0,364,0,0,0,0,0,0,0,340,3.1,5,5,16.0,77777,9,999999999,250,0.1290,0,88,0.110,0.0,1.0 +1996,3,21,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,16.7,87,101400,25,562,361,6,29,4,700,1000,600,70,10,2.1,4,4,19.2,77777,9,999999999,240,0.1290,0,88,0.110,0.0,1.0 +1996,3,21,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,16.7,73,101500,290,1377,368,143,434,51,14700,34000,7500,930,60,2.6,2,2,32.0,77777,9,999999999,240,0.1290,0,88,0.110,0.0,1.0 +1996,3,21,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,15.6,62,101500,602,1377,385,282,404,105,30800,39700,13300,2040,20,5.7,5,5,32.0,77777,9,999999999,240,0.1290,0,88,0.110,0.0,1.0 +1996,3,21,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,15.0,56,101500,875,1377,390,550,648,138,58500,65700,16700,3490,20,6.2,5,5,32.0,77777,9,999999999,229,0.1290,0,88,0.110,0.0,1.0 +1996,3,21,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,14.4,54,101500,1088,1377,383,739,643,231,77700,65000,26200,7900,40,5.7,3,3,32.0,77777,9,999999999,229,0.1290,0,88,0.110,0.0,1.0 +1996,3,21,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,13.9,48,101400,1227,1377,392,828,528,357,88300,55100,39000,18670,10,5.7,4,4,32.0,77777,9,999999999,229,0.1290,0,88,0.110,0.0,1.0 +1996,3,21,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,13.3,48,101400,1284,1377,405,575,172,414,63600,18400,46400,22880,50,4.1,8,8,24.0,1341,9,999999999,220,0.1290,0,88,0.110,0.0,1.0 +1996,3,21,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,12.2,45,101300,1253,1377,397,669,389,315,72500,40700,35400,18060,30,8.2,7,7,24.0,1829,9,999999999,220,0.1290,0,88,0.110,0.0,1.0 +1996,3,21,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,12.8,45,101200,1137,1377,408,414,95,335,45900,10200,37400,12760,10,6.2,8,8,24.0,1981,9,999999999,220,0.1290,0,88,0.110,0.0,1.0 +1996,3,21,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,12.2,43,101200,944,1377,383,643,614,221,69100,63700,25300,5990,350,5.2,2,2,32.0,77777,9,999999999,209,0.1290,0,88,0.110,0.0,1.0 +1996,3,21,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,12.8,48,101200,688,1377,381,332,427,119,36400,42900,14900,2430,10,5.2,3,3,32.0,77777,9,999999999,209,0.1290,0,88,0.110,0.0,1.0 +1996,3,21,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,11.7,46,101300,385,1377,374,193,512,50,20400,44800,7900,970,340,5.7,2,2,32.0,77777,9,999999999,209,0.1290,0,88,0.110,0.0,1.0 +1996,3,21,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,12.8,57,101300,77,975,367,27,97,20,3000,4500,2600,350,10,5.7,3,3,32.0,77777,9,999999999,200,0.1290,0,88,0.110,0.0,1.0 +1996,3,21,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,13.9,68,101400,0,0,357,0,0,0,0,0,0,0,350,4.1,2,2,16.0,77777,9,999999999,200,0.1290,0,88,0.110,0.0,1.0 +1996,3,21,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,13.9,70,101500,0,0,376,0,0,0,0,0,0,0,40,5.7,8,8,16.0,1372,9,999999999,200,0.1290,0,88,0.110,0.0,1.0 +1996,3,21,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,13.9,73,101500,0,0,351,0,0,0,0,0,0,0,360,4.1,2,2,16.0,77777,9,999999999,189,0.1290,0,88,0.110,0.0,1.0 +1996,3,21,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,14.4,75,101500,0,0,361,0,0,0,0,0,0,0,320,2.6,5,5,16.0,77777,9,999999999,189,0.1290,0,88,0.110,0.0,1.0 +1996,3,21,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,13.9,81,101500,0,0,343,0,0,0,0,0,0,0,310,3.1,2,2,16.0,77777,9,999999999,179,0.1290,0,88,0.110,0.0,1.0 +1996,3,22,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,13.9,81,101500,0,0,339,0,0,0,0,0,0,0,300,3.1,1,1,16.0,77777,9,999999999,179,0.1300,0,88,0.110,0.0,1.0 +1996,3,22,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,13.9,81,101400,0,0,339,0,0,0,0,0,0,0,360,3.6,1,1,16.0,77777,9,999999999,179,0.1300,0,88,0.110,0.0,1.0 +1996,3,22,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,13.9,81,101400,0,0,343,0,0,0,0,0,0,0,320,3.6,2,2,16.0,77777,9,999999999,179,0.1300,0,88,0.110,0.0,1.0 +1996,3,22,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,13.9,84,101400,0,0,344,0,0,0,0,0,0,0,340,2.1,3,3,16.0,77777,9,999999999,179,0.1300,0,88,0.110,0.0,1.0 +1996,3,22,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,14.4,78,101400,0,0,366,0,0,0,0,0,0,0,340,3.6,7,7,16.0,1981,9,999999999,179,0.1300,0,88,0.110,0.0,1.0 +1996,3,22,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,13.9,81,101400,0,0,347,0,0,0,0,0,0,0,360,2.6,3,3,19.2,77777,9,999999999,179,0.1300,0,88,0.110,0.0,1.0 +1996,3,22,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,13.3,78,101500,27,585,343,6,20,5,700,600,700,80,360,3.6,2,2,24.0,77777,9,999999999,179,0.1300,0,88,0.110,0.0,1.0 +1996,3,22,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,12.8,63,101500,295,1376,368,123,188,82,12900,14600,9700,1590,360,6.2,6,6,24.0,1829,9,999999999,179,0.1300,0,88,0.110,0.0,1.0 +1996,3,22,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,14.4,63,101600,607,1376,366,366,596,103,38300,57600,12800,2090,340,4.6,2,2,24.0,77777,9,999999999,179,0.1300,0,88,0.110,0.0,1.0 +1996,3,22,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,13.9,55,101500,879,1376,383,422,430,147,46800,44500,18300,3570,350,4.6,5,5,32.0,77777,9,999999999,179,0.1300,0,88,0.110,0.0,1.0 +1996,3,22,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,13.3,48,101500,1092,1376,388,617,541,188,65900,55300,21900,6630,340,6.7,4,4,32.0,77777,9,999999999,179,0.1300,0,88,0.110,0.0,1.0 +1996,3,22,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,13.3,45,101500,1231,1376,411,417,117,311,46700,12600,35400,14540,20,5.2,8,8,32.0,1372,9,999999999,179,0.1300,0,88,0.110,0.0,1.0 +1996,3,22,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,14.4,50,101400,1286,1376,404,876,632,285,92500,63900,32600,18540,340,6.2,7,7,24.0,1311,9,999999999,179,0.1300,0,88,0.110,0.0,1.0 +1996,3,22,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,14.4,50,101300,1255,1376,410,487,159,341,54400,17100,38800,17120,40,6.7,8,8,24.0,1219,9,999999999,179,0.1300,0,88,0.110,0.0,1.0 +1996,3,22,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,15.0,52,101300,1139,1376,420,433,94,355,47800,9600,39800,14940,30,4.6,9,9,24.0,1311,9,999999999,179,0.1300,0,88,0.110,0.0,1.0 +1996,3,22,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,15.0,54,101300,946,1376,390,579,566,190,60700,57000,21400,5100,60,5.7,4,4,24.0,77777,9,999999999,179,0.1300,0,88,0.110,0.0,1.0 +1996,3,22,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,15.0,57,101300,689,1376,395,277,316,118,30300,31800,14400,2410,50,3.6,7,7,24.0,1676,9,999999999,179,0.1300,0,88,0.110,0.0,1.0 +1996,3,22,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,14.4,59,101400,386,1376,378,171,249,101,18200,21900,12000,1970,40,4.6,4,4,24.0,77777,9,999999999,179,0.1300,0,88,0.110,0.0,1.0 +1996,3,22,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,15.0,66,101500,78,975,384,19,25,17,2200,1300,2100,350,360,5.2,7,7,24.0,1494,9,999999999,179,0.1300,0,88,0.110,0.0,1.0 +1996,3,22,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,16.1,81,101500,0,0,363,0,0,0,0,0,0,0,90,2.1,4,4,16.0,77777,9,999999999,179,0.1300,0,88,0.110,0.0,1.0 +1996,3,22,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,15.6,73,101500,0,0,379,0,0,0,0,0,0,0,360,3.6,7,7,16.0,1676,9,999999999,189,0.1300,0,88,0.110,0.0,1.0 +1996,3,22,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,15.6,76,101600,0,0,362,0,0,0,0,0,0,0,360,4.6,3,3,16.0,77777,9,999999999,189,0.1300,0,88,0.110,0.0,1.0 +1996,3,22,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,16.1,78,101600,0,0,359,0,0,0,0,0,0,0,350,4.6,2,2,16.0,77777,9,999999999,189,0.1300,0,88,0.110,0.0,1.0 +1996,3,22,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,15.6,84,101500,0,0,354,0,0,0,0,0,0,0,300,2.6,3,3,16.0,77777,9,999999999,189,0.1300,0,88,0.110,0.0,1.0 +1996,3,23,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,16.1,78,101500,0,0,382,0,0,0,0,0,0,0,10,2.6,8,8,16.0,1219,9,999999999,189,0.1300,0,88,0.110,0.0,1.0 +1996,3,23,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,15.6,84,101500,0,0,351,0,0,0,0,0,0,0,340,3.1,2,2,16.0,77777,9,999999999,189,0.1300,0,88,0.110,0.0,1.0 +1996,3,23,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,16.1,84,101500,0,0,376,0,0,0,0,0,0,0,300,2.6,8,8,16.0,1311,9,999999999,189,0.1300,0,88,0.110,0.0,1.0 +1996,3,23,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,16.1,84,101500,0,0,363,0,0,0,0,0,0,0,350,2.1,5,5,16.0,77777,9,999999999,189,0.1300,0,88,0.110,0.0,1.0 +1996,3,23,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,16.1,84,101400,0,0,363,0,0,0,0,0,0,0,350,3.6,8,5,16.0,1067,9,999999999,189,0.1300,0,88,0.110,0.0,1.0 +1996,3,23,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,16.1,87,101500,0,0,360,0,0,0,0,0,0,0,300,3.1,5,5,16.0,77777,9,999999999,189,0.1300,0,88,0.110,0.0,1.0 +1996,3,23,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,15.6,87,101500,29,607,354,6,14,5,700,400,600,80,310,3.1,4,4,16.0,77777,9,999999999,189,0.1300,0,88,0.110,0.0,1.0 +1996,3,23,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,16.7,78,101500,300,1375,369,130,281,68,13500,21900,8800,1240,310,3.1,4,4,32.0,77777,9,999999999,200,0.1300,0,88,0.110,0.0,1.0 +1996,3,23,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,16.7,71,101600,611,1375,394,190,184,108,21100,18700,12700,2150,350,3.1,8,8,32.0,1067,9,999999999,200,0.1300,0,88,0.110,0.0,1.0 +1996,3,23,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,16.1,60,101600,883,1375,399,537,332,324,57200,35400,34400,8820,360,4.1,7,7,32.0,1158,9,999999999,200,0.1300,0,88,0.110,0.0,1.0 +1996,3,23,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,16.1,60,101600,1095,1375,406,505,137,395,55100,14500,43500,14090,40,5.7,8,8,32.0,1463,9,999999999,200,0.1300,0,88,0.110,0.0,1.0 +1996,3,23,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,16.7,54,101600,1234,1375,413,528,250,304,59200,27300,34600,14590,40,5.2,7,7,32.0,1067,9,999999999,200,0.1300,0,88,0.110,0.0,1.0 +1996,3,23,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,16.1,51,101500,1289,1375,421,634,178,467,69700,19000,51900,26490,40,6.7,8,8,32.0,1524,9,999999999,200,0.1300,0,88,0.110,0.0,1.0 +1996,3,23,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,15.6,47,101500,1257,1375,417,716,426,326,77400,44600,36500,19180,60,6.2,7,7,32.0,1524,9,999999999,209,0.1300,0,88,0.110,0.0,1.0 +1996,3,23,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,16.7,56,101400,1141,1375,416,681,458,301,73100,47800,33300,12050,60,6.7,8,8,32.0,1676,9,999999999,209,0.1300,0,88,0.110,0.0,1.0 +1996,3,23,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,16.1,54,101400,947,1375,408,518,392,248,55100,40600,27100,6820,30,5.2,7,7,32.0,1676,9,999999999,209,0.1300,0,88,0.110,0.0,1.0 +1996,3,23,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,16.1,58,101400,691,1375,409,240,163,158,26700,16800,18200,3940,60,6.2,8,8,32.0,1676,9,999999999,209,0.1300,0,88,0.110,0.0,1.0 +1996,3,23,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,16.1,66,101500,388,1375,391,129,93,103,14100,8300,11800,2280,40,6.7,7,7,24.0,1676,9,999999999,209,0.1300,0,88,0.110,0.0,1.0 +1996,3,23,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,17.2,81,101500,79,974,376,28,12,27,3100,700,3000,650,20,5.2,8,6,16.0,1219,9,999999999,209,0.1300,0,88,0.110,0.0,1.0 +1996,3,23,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,15.6,71,101500,0,0,374,0,0,0,0,0,0,0,10,4.1,5,5,16.0,77777,9,999999999,209,0.1300,0,88,0.110,0.0,1.0 +1996,3,23,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,15.0,66,101600,0,0,373,0,0,0,0,0,0,0,30,5.7,4,4,16.0,77777,9,999999999,220,0.1300,0,88,0.110,0.0,1.0 +1996,3,23,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,16.1,75,101700,0,0,405,0,0,0,0,0,0,0,20,4.6,10,10,11.2,1158,9,999999999,220,0.1300,0,88,0.110,0.0,1.0 +1996,3,23,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,16.1,75,101700,0,0,405,0,0,0,0,0,0,0,360,3.1,10,10,11.2,1219,9,999999999,220,0.1300,0,88,0.110,0.0,1.0 +1996,3,23,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,15.6,71,101600,0,0,407,0,0,0,0,0,0,0,350,3.6,10,10,16.0,1676,9,999999999,220,0.1300,0,88,0.110,0.0,1.0 +1996,3,24,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,15.0,68,101600,0,0,406,0,0,0,0,0,0,0,20,3.6,10,10,11.2,1676,9,999999999,220,0.1310,0,88,0.110,0.0,1.0 +1996,3,24,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,14.4,68,101600,0,0,391,0,0,0,0,0,0,0,340,3.1,9,9,16.0,1676,9,999999999,220,0.1310,0,88,0.110,0.0,1.0 +1996,3,24,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,12.8,59,101500,0,0,403,0,0,0,0,0,0,0,10,4.1,10,10,16.0,1829,9,999999999,220,0.1310,0,88,0.110,0.0,1.0 +1996,3,24,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,12.2,63,101400,0,0,374,0,0,0,0,0,0,0,360,3.1,8,8,16.0,1829,9,999999999,220,0.1310,0,88,0.110,0.0,1.0 +1996,3,24,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,13.3,70,101400,0,0,367,0,0,0,0,0,0,0,330,3.6,7,7,16.0,1829,9,999999999,220,0.1310,0,88,0.110,0.0,1.0 +1996,3,24,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,12.8,61,101500,0,0,381,0,0,0,0,0,0,0,10,3.6,8,8,16.0,1829,9,999999999,220,0.1310,0,88,0.110,0.0,1.0 +1996,3,24,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,12.8,63,101500,31,630,362,6,13,6,800,500,800,120,360,3.6,4,4,32.0,77777,9,999999999,220,0.1310,0,88,0.110,0.0,1.0 +1996,3,24,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,12.8,57,101600,305,1375,370,128,219,80,13600,17300,9800,1530,40,5.7,4,4,32.0,77777,9,999999999,220,0.1310,0,88,0.110,0.0,1.0 +1996,3,24,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,12.8,52,101600,616,1375,378,275,358,115,29900,35300,14000,2270,10,6.2,4,4,32.0,77777,9,999999999,220,0.1310,0,88,0.110,0.0,1.0 +1996,3,24,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,13.3,48,101600,887,1375,388,482,364,246,52400,39000,27100,6380,30,5.7,4,4,32.0,77777,9,999999999,220,0.1310,0,88,0.110,0.0,1.0 +1996,3,24,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,13.3,48,101600,1099,1375,391,651,444,296,69600,46300,32500,10730,50,6.7,5,5,32.0,77777,9,999999999,220,0.1310,0,88,0.110,0.0,1.0 +1996,3,24,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,11.7,45,101600,1237,1375,400,490,150,355,54600,16100,40100,16940,40,6.7,8,8,32.0,2134,9,999999999,220,0.1310,0,88,0.110,0.0,1.0 +1996,3,24,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,13.3,45,101500,1291,1375,397,1039,858,232,106900,85400,26500,14190,40,7.2,5,5,32.0,77777,9,999999999,220,0.1310,0,88,0.110,0.0,1.0 +1996,3,24,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,13.9,48,101400,1259,1375,392,870,624,298,91400,62900,33600,17100,40,7.2,4,4,32.0,77777,9,999999999,209,0.1310,0,88,0.110,0.0,1.0 +1996,3,24,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,13.3,48,101400,1142,1375,388,701,597,205,74800,60900,24000,8160,60,7.2,4,4,32.0,77777,9,999999999,209,0.1310,0,88,0.110,0.0,1.0 +1996,3,24,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,13.3,50,101300,949,1375,385,515,427,220,55500,44300,24800,6010,50,7.2,4,4,32.0,77777,9,999999999,209,0.1310,0,88,0.110,0.0,1.0 +1996,3,24,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,13.3,53,101300,692,1375,379,328,442,105,34700,43800,12600,2280,40,7.2,4,4,32.0,77777,9,999999999,209,0.1310,0,88,0.110,0.0,1.0 +1996,3,24,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,13.3,57,101300,390,1375,362,191,462,60,20000,40300,8500,1140,30,4.6,1,1,32.0,77777,9,999999999,209,0.1310,0,88,0.110,0.0,1.0 +1996,3,24,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,13.3,63,101400,80,997,359,23,68,17,2500,2900,2300,280,20,7.2,2,2,24.0,77777,9,999999999,209,0.1310,0,88,0.110,0.0,1.0 +1996,3,24,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,12.8,63,101400,0,0,359,0,0,0,0,0,0,0,360,4.1,3,3,16.0,77777,9,999999999,209,0.1310,0,88,0.110,0.0,1.0 +1996,3,24,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,12.8,66,101500,0,0,353,0,0,0,0,0,0,0,330,4.1,2,2,16.0,77777,9,999999999,209,0.1310,0,88,0.110,0.0,1.0 +1996,3,24,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,12.8,66,101500,0,0,356,0,0,0,0,0,0,0,350,4.1,3,3,16.0,77777,9,999999999,209,0.1310,0,88,0.110,0.0,1.0 +1996,3,24,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,12.8,68,101500,0,0,357,0,0,0,0,0,0,0,10,3.1,4,4,16.0,77777,9,999999999,209,0.1310,0,88,0.110,0.0,1.0 +1996,3,24,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,12.8,68,101500,0,0,359,0,0,0,0,0,0,0,320,2.6,5,5,16.0,77777,9,999999999,209,0.1310,0,88,0.110,0.0,1.0 +1996,3,25,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,13.3,78,101400,0,0,346,0,0,0,0,0,0,0,310,3.1,3,3,16.0,77777,9,999999999,209,0.1310,0,88,0.110,0.0,1.0 +1996,3,25,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,13.3,80,101400,0,0,340,0,0,0,0,0,0,0,320,3.1,2,2,16.0,77777,9,999999999,209,0.1310,0,88,0.110,0.0,1.0 +1996,3,25,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,13.3,78,101400,0,0,355,0,0,0,0,0,0,0,360,3.1,6,6,16.0,1829,9,999999999,209,0.1310,0,88,0.110,0.0,1.0 +1996,3,25,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,13.3,80,101400,0,0,349,0,0,0,0,0,0,0,320,3.1,5,5,16.0,77777,9,999999999,209,0.1310,0,88,0.110,0.0,1.0 +1996,3,25,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,14.4,80,101400,0,0,369,0,0,0,0,0,0,0,320,2.6,8,8,16.0,1676,9,999999999,209,0.1310,0,88,0.110,0.0,1.0 +1996,3,25,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,13.9,76,101400,0,0,365,0,0,0,0,0,0,0,40,2.6,7,7,16.0,1524,9,999999999,209,0.1310,0,88,0.110,0.0,1.0 +1996,3,25,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,13.3,68,101500,34,653,376,7,10,7,900,400,900,140,360,3.6,8,8,32.0,1524,9,999999999,200,0.1310,0,88,0.110,0.0,1.0 +1996,3,25,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,14.4,68,101500,310,1374,360,161,453,59,16500,36200,8400,1060,330,5.2,2,2,32.0,77777,9,999999999,200,0.1310,0,88,0.110,0.0,1.0 +1996,3,25,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,13.3,55,101600,620,1374,374,347,530,107,36200,51400,13000,2180,360,4.6,3,3,32.0,77777,9,999999999,200,0.1310,0,88,0.110,0.0,1.0 +1996,3,25,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,13.3,50,101500,891,1374,378,626,839,82,65400,83400,11200,2040,20,3.6,2,2,32.0,77777,9,999999999,200,0.1310,0,88,0.110,0.0,1.0 +1996,3,25,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,12.8,45,101500,1102,1374,378,757,826,95,78800,82700,12200,3080,330,3.6,1,1,32.0,77777,9,999999999,200,0.1310,0,88,0.110,0.0,1.0 +1996,3,25,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,12.8,42,101400,1239,1374,389,910,908,90,94700,91200,12100,4340,10,4.1,2,2,32.0,77777,9,999999999,200,0.1310,0,88,0.110,0.0,1.0 +1996,3,25,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,12.8,45,101400,1294,1374,397,791,572,252,84400,58300,29300,17380,220,3.1,6,6,32.0,1676,9,999999999,200,0.1310,0,88,0.110,0.0,1.0 +1996,3,25,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,12.8,44,101300,1261,1374,393,620,367,282,68000,38500,32500,16900,170,5.7,4,4,32.0,77777,9,999999999,200,0.1310,0,88,0.110,0.0,1.0 +1996,3,25,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,13.3,45,101300,1144,1374,394,730,467,341,77400,48700,36800,13930,170,5.2,4,4,32.0,77777,9,999999999,200,0.1310,0,88,0.110,0.0,1.0 +1996,3,25,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,14.4,50,101300,950,1374,385,668,807,110,71400,81400,14900,3000,180,3.6,2,2,32.0,77777,9,999999999,200,0.1310,0,88,0.110,0.0,1.0 +1996,3,25,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,14.4,55,101300,693,1374,386,370,531,101,39200,52800,12500,2210,30,4.1,5,5,32.0,77777,9,999999999,200,0.1310,0,88,0.110,0.0,1.0 +1996,3,25,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,14.4,55,101300,391,1374,409,105,77,82,11500,7000,9500,1820,80,4.6,9,9,24.0,1189,9,999999999,200,0.1310,0,88,0.110,0.0,1.0 +1996,3,25,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,13.3,59,101400,82,996,371,20,30,17,2200,1600,2100,350,50,4.6,4,4,24.0,77777,9,999999999,200,0.1310,0,88,0.110,0.0,1.0 +1996,3,25,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,12.8,59,101500,0,0,373,0,0,0,0,0,0,0,360,4.1,6,6,16.0,1524,9,999999999,200,0.1310,0,88,0.110,0.0,1.0 +1996,3,25,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,12.8,61,101500,0,0,368,0,0,0,0,0,0,0,360,3.6,5,5,16.0,77777,9,999999999,200,0.1310,0,88,0.110,0.0,1.0 +1996,3,25,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,13.3,68,101600,0,0,365,0,0,0,0,0,0,0,30,3.1,6,6,16.0,1341,9,999999999,200,0.1310,0,88,0.110,0.0,1.0 +1996,3,25,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,13.3,65,101600,0,0,379,0,0,0,0,0,0,0,360,2.6,8,8,16.0,1676,9,999999999,200,0.1310,0,88,0.110,0.0,1.0 +1996,3,25,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,13.3,70,101600,0,0,367,0,0,0,0,0,0,0,360,2.6,7,7,16.0,1341,9,999999999,200,0.1310,0,88,0.110,0.0,1.0 +1996,3,26,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,13.3,68,101500,0,0,370,0,0,0,0,0,0,0,340,2.6,7,7,16.0,1676,9,999999999,200,0.1320,0,88,0.110,0.0,1.0 +1996,3,26,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,13.9,70,101500,0,0,376,0,0,0,0,0,0,0,330,2.6,8,8,16.0,1676,9,999999999,200,0.1320,0,88,0.110,0.0,1.0 +1996,3,26,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,13.9,73,101400,0,0,364,0,0,0,0,0,0,0,350,3.1,6,6,16.0,1676,9,999999999,200,0.1320,0,88,0.110,0.0,1.0 +1996,3,26,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,12.8,73,101400,0,0,348,0,0,0,0,0,0,0,350,2.6,3,3,16.0,77777,9,999999999,200,0.1320,0,88,0.110,0.0,1.0 +1996,3,26,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,12.8,78,101400,0,0,335,0,0,0,0,0,0,0,340,2.6,1,1,16.0,77777,9,999999999,200,0.1320,0,88,0.110,0.0,1.0 +1996,3,26,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,12.8,78,101400,0,0,329,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,200,0.1320,0,88,0.110,0.0,1.0 +1996,3,26,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,12.8,78,101400,36,675,329,11,88,6,1200,4100,1000,120,330,2.1,0,0,32.0,77777,9,999999999,200,0.1320,0,88,0.110,0.0,1.0 +1996,3,26,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,12.8,59,101500,314,1373,349,172,570,42,17800,47300,6900,830,0,0.0,0,0,32.0,77777,9,999999999,200,0.1320,0,88,0.110,0.0,1.0 +1996,3,26,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,13.3,51,101500,625,1373,363,423,785,66,45200,76600,10200,1470,120,2.1,0,0,32.0,77777,9,999999999,200,0.1320,0,88,0.110,0.0,1.0 +1996,3,26,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,11.7,41,101600,895,1373,380,633,845,82,66100,84000,11200,2050,220,2.6,1,1,32.0,77777,9,999999999,200,0.1320,0,88,0.110,0.0,1.0 +1996,3,26,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,13.9,42,101600,1105,1373,396,818,871,116,84500,87100,14200,3430,220,3.6,2,2,32.0,77777,9,999999999,200,0.1320,0,88,0.110,0.0,1.0 +1996,3,26,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,15.0,49,101500,1242,1373,396,888,750,210,95600,76900,25800,11570,260,3.6,3,3,32.0,77777,9,999999999,200,0.1320,0,88,0.110,0.0,1.0 +1996,3,26,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,14.4,45,101400,1296,1373,401,898,746,193,94400,75000,23300,12660,240,4.1,4,4,32.0,77777,9,999999999,200,0.1320,0,88,0.110,0.0,1.0 +1996,3,26,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,15.6,51,101400,1263,1373,397,892,762,191,93600,76600,22900,10540,180,4.1,3,3,32.0,77777,9,999999999,200,0.1320,0,88,0.110,0.0,1.0 +1996,3,26,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,15.6,51,101300,1146,1373,400,781,712,186,83800,73000,22700,7550,230,3.6,4,4,32.0,77777,9,999999999,200,0.1320,0,88,0.110,0.0,1.0 +1996,3,26,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,15.6,54,101300,952,1373,397,634,555,249,67500,57500,27500,6910,170,4.1,5,5,32.0,77777,9,999999999,200,0.1320,0,88,0.110,0.0,1.0 +1996,3,26,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,15.6,54,101300,695,1373,405,378,521,114,39800,51500,13600,2450,170,4.1,7,7,32.0,1676,9,999999999,200,0.1320,0,88,0.110,0.0,1.0 +1996,3,26,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,15.6,60,101400,392,1373,402,118,59,101,12900,5300,11400,2690,180,3.1,8,8,24.0,1250,9,999999999,200,0.1320,0,88,0.110,0.0,1.0 +1996,3,26,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,15.6,62,101400,83,995,408,17,30,14,1900,1600,1800,290,170,3.6,9,9,19.2,1219,9,999999999,200,0.1320,0,88,0.110,0.0,1.0 +1996,3,26,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,16.1,68,101500,0,0,394,0,0,0,0,0,0,0,60,3.6,8,8,16.0,1463,9,999999999,200,0.1320,0,88,0.110,0.0,1.0 +1996,3,26,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,15.6,68,101500,0,0,384,0,0,0,0,0,0,0,360,3.6,7,7,16.0,1219,9,999999999,200,0.1320,0,88,0.110,0.0,1.0 +1996,3,26,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,15.6,71,101600,0,0,374,0,0,0,0,0,0,0,340,3.1,5,5,16.0,77777,9,999999999,200,0.1320,0,88,0.110,0.0,1.0 +1996,3,26,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,15.6,73,101500,0,0,362,0,0,0,0,0,0,0,20,2.6,2,2,16.0,77777,9,999999999,209,0.1320,0,88,0.110,0.0,1.0 +1996,3,26,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,15.0,78,101500,0,0,348,0,0,0,0,0,0,0,330,2.6,1,1,16.0,77777,9,999999999,209,0.1320,0,88,0.110,0.0,1.0 +1996,3,27,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,15.0,81,101500,0,0,345,0,0,0,0,0,0,0,350,2.1,1,1,16.0,77777,9,999999999,209,0.1320,0,88,0.110,0.0,1.0 +1996,3,27,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,15.0,81,101400,0,0,366,0,0,0,0,0,0,0,330,2.6,7,7,16.0,1433,9,999999999,209,0.1320,0,88,0.110,0.0,1.0 +1996,3,27,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,15.0,81,101400,0,0,372,0,0,0,0,0,0,0,340,2.6,8,8,16.0,1494,9,999999999,200,0.1320,0,88,0.110,0.0,1.0 +1996,3,27,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,15.0,84,101300,0,0,343,0,0,0,0,0,0,0,320,2.6,1,1,16.0,77777,9,999999999,200,0.1320,0,88,0.110,0.0,1.0 +1996,3,27,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,14.4,84,101400,0,0,339,0,0,0,0,0,0,0,350,1.5,1,1,16.0,77777,9,999999999,200,0.1320,0,88,0.110,0.0,1.0 +1996,3,27,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,13.9,84,101400,0,0,336,0,0,0,0,0,0,0,330,2.6,1,1,24.0,77777,9,999999999,200,0.1320,0,88,0.110,0.0,1.0 +1996,3,27,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,14.4,84,101400,38,675,339,10,50,7,1200,1900,1000,120,320,2.6,1,1,32.0,77777,9,999999999,200,0.1320,0,88,0.110,0.0,1.0 +1996,3,27,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,15.0,66,101500,319,1372,362,153,390,63,16400,31400,9000,1130,340,3.1,1,1,32.0,77777,9,999999999,200,0.1320,0,88,0.110,0.0,1.0 +1996,3,27,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,14.4,55,101500,629,1372,372,408,721,78,42800,70000,10700,1640,20,4.1,1,1,32.0,77777,9,999999999,200,0.1320,0,88,0.110,0.0,1.0 +1996,3,27,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,13.9,52,101500,898,1372,379,543,585,160,57400,59100,18600,4110,330,5.2,2,2,32.0,77777,9,999999999,189,0.1320,0,88,0.110,0.0,1.0 +1996,3,27,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,13.9,52,101500,1109,1372,388,611,469,231,67000,49100,27200,8480,200,1.5,5,5,32.0,77777,9,999999999,189,0.1320,0,88,0.110,0.0,1.0 +1996,3,27,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,15.0,50,101400,1245,1372,389,931,895,118,96000,89800,14400,5400,180,4.1,2,2,32.0,77777,9,999999999,189,0.1320,0,88,0.110,0.0,1.0 +1996,3,27,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,15.6,49,101300,1298,1372,399,967,762,246,103400,77800,29600,17580,200,4.1,3,3,32.0,77777,9,999999999,189,0.1320,0,88,0.110,0.0,1.0 +1996,3,27,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,15.6,51,101200,1265,1372,393,915,844,136,94000,84600,15800,6480,220,4.1,2,2,32.0,77777,9,999999999,189,0.1320,0,88,0.110,0.0,1.0 +1996,3,27,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,15.0,49,101200,1147,1372,387,827,830,133,85100,83000,15500,4080,190,4.1,1,1,32.0,77777,9,999999999,189,0.1320,0,88,0.110,0.0,1.0 +1996,3,27,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,15.0,50,101200,953,1372,389,584,635,142,62600,64900,17300,4010,220,3.6,2,2,32.0,77777,9,999999999,189,0.1320,0,88,0.110,0.0,1.0 +1996,3,27,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,15.6,52,101200,696,1372,393,317,437,95,33800,43600,11700,2100,230,3.1,3,3,32.0,77777,9,999999999,179,0.1320,0,88,0.110,0.0,1.0 +1996,3,27,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,15.6,58,101300,394,1372,399,100,31,91,11000,2800,10200,2480,200,2.6,7,7,32.0,1372,9,999999999,179,0.1320,0,88,0.110,0.0,1.0 +1996,3,27,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,14.4,57,101400,84,1018,397,17,12,16,1900,700,1800,420,70,4.1,8,8,32.0,1463,9,999999999,179,0.1320,0,88,0.110,0.0,1.0 +1996,3,27,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,14.4,61,101500,0,0,368,0,0,0,0,0,0,0,20,4.1,2,2,16.0,77777,9,999999999,179,0.1320,0,88,0.110,0.0,1.0 +1996,3,27,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,15.0,66,101500,0,0,373,0,0,0,0,0,0,0,50,3.6,4,4,16.0,77777,9,999999999,179,0.1320,0,88,0.110,0.0,1.0 +1996,3,27,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,15.6,76,101500,0,0,359,0,0,0,0,0,0,0,300,1.5,2,2,16.0,77777,9,999999999,179,0.1320,0,88,0.110,0.0,1.0 +1996,3,27,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,15.6,79,101500,0,0,344,0,0,0,0,0,0,0,330,3.6,0,0,16.0,77777,9,999999999,179,0.1320,0,88,0.110,0.0,1.0 +1996,3,27,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,15.0,78,101500,0,0,341,0,0,0,0,0,0,0,320,3.6,0,0,16.0,77777,9,999999999,170,0.1320,0,88,0.110,0.0,1.0 +1996,3,28,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,14.4,78,101500,0,0,338,0,0,0,0,0,0,0,330,3.1,0,0,16.0,77777,9,999999999,170,0.1330,0,88,0.110,0.0,1.0 +1996,3,28,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,14.4,80,101400,0,0,336,0,0,0,0,0,0,0,330,2.6,0,0,16.0,77777,9,999999999,170,0.1330,0,88,0.110,0.0,1.0 +1996,3,28,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,13.9,76,101300,0,0,337,0,0,0,0,0,0,0,360,1.5,0,0,16.0,77777,9,999999999,170,0.1330,0,88,0.110,0.0,1.0 +1996,3,28,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,13.3,80,101300,0,0,336,0,0,0,0,0,0,0,330,2.1,1,1,16.0,77777,9,999999999,179,0.1330,0,88,0.110,0.0,1.0 +1996,3,28,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,13.9,81,101300,0,0,332,0,0,0,0,0,0,0,340,2.1,0,0,16.0,77777,9,999999999,179,0.1330,0,88,0.110,0.0,1.0 +1996,3,28,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,13.9,81,101400,0,0,339,0,0,0,0,0,0,0,360,1.5,1,1,24.0,77777,9,999999999,179,0.1330,0,88,0.110,0.0,1.0 +1996,3,28,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,14.4,86,101500,41,697,337,10,24,8,1100,800,1000,130,320,2.1,1,1,32.0,77777,9,999999999,179,0.1330,0,88,0.110,0.0,1.0 +1996,3,28,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,15.6,71,101500,324,1371,359,148,363,62,15800,29400,8800,1110,340,3.6,1,1,32.0,77777,9,999999999,179,0.1330,0,88,0.110,0.0,1.0 +1996,3,28,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,15.0,57,101500,633,1371,372,383,607,103,40300,59300,12900,2140,350,2.6,1,1,32.0,77777,9,999999999,179,0.1330,0,88,0.110,0.0,1.0 +1996,3,28,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,14.4,48,101600,902,1371,383,623,742,134,66600,75600,16700,3540,30,3.1,1,1,32.0,77777,9,999999999,189,0.1330,0,88,0.110,0.0,1.0 +1996,3,28,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,14.4,43,101600,1112,1371,400,791,655,259,82600,65900,29000,9350,140,4.6,2,2,32.0,77777,9,999999999,189,0.1330,0,88,0.110,0.0,1.0 +1996,3,28,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,15.6,47,101500,1248,1371,402,888,727,227,95100,74300,27300,12790,210,4.1,3,3,32.0,77777,9,999999999,189,0.1330,0,88,0.110,0.0,1.0 +1996,3,28,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,16.1,48,101400,1301,1371,402,948,781,207,99000,78300,24500,13920,230,4.1,2,2,32.0,77777,9,999999999,189,0.1330,0,88,0.110,0.0,1.0 +1996,3,28,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,16.1,49,101400,1267,1371,403,942,771,229,100900,78800,27900,14030,270,4.6,3,3,32.0,77777,9,999999999,189,0.1330,0,88,0.110,0.0,1.0 +1996,3,28,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,16.7,51,101300,1149,1371,400,807,750,178,84000,75100,20900,6530,270,3.6,2,2,32.0,77777,9,999999999,189,0.1330,0,88,0.110,0.0,1.0 +1996,3,28,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,16.7,49,101300,955,1371,417,500,322,275,54400,34700,30200,7740,220,3.1,6,6,32.0,1311,9,999999999,200,0.1330,0,88,0.110,0.0,1.0 +1996,3,28,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,15.0,52,101300,697,1371,404,346,346,169,37600,36000,19200,3700,50,7.2,7,7,32.0,1433,9,999999999,200,0.1330,0,88,0.110,0.0,1.0 +1996,3,28,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,15.0,56,101400,395,1371,387,182,216,120,19200,19200,13600,2430,50,4.6,4,4,32.0,77777,9,999999999,200,0.1330,0,88,0.110,0.0,1.0 +1996,3,28,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,16.1,64,101500,85,1017,383,28,16,27,3100,1000,3000,660,70,5.2,4,4,32.0,77777,9,999999999,200,0.1330,0,88,0.110,0.0,1.0 +1996,3,28,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,16.1,66,101600,0,0,380,0,0,0,0,0,0,0,70,5.2,4,4,16.0,77777,9,999999999,200,0.1330,0,88,0.110,0.0,1.0 +1996,3,28,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,15.6,66,101600,0,0,370,0,0,0,0,0,0,0,70,3.1,2,2,16.0,77777,9,999999999,200,0.1330,0,88,0.110,0.0,1.0 +1996,3,28,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,15.6,68,101600,0,0,362,0,0,0,0,0,0,0,30,1.5,1,1,16.0,77777,9,999999999,209,0.1330,0,88,0.110,0.0,1.0 +1996,3,28,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,15.6,71,101700,0,0,364,0,0,0,0,0,0,0,90,1.5,2,2,16.0,77777,9,999999999,209,0.1330,0,88,0.110,0.0,1.0 +1996,3,28,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,15.6,71,101600,0,0,359,0,0,0,0,0,0,0,90,2.1,1,1,16.0,77777,9,999999999,209,0.1330,0,88,0.110,0.0,1.0 +1996,3,29,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,15.6,73,101600,0,0,357,0,0,0,0,0,0,0,70,1.5,1,1,16.0,77777,9,999999999,209,0.1330,0,88,0.110,0.0,1.0 +1996,3,29,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,16.1,81,101600,0,0,352,0,0,0,0,0,0,0,320,1.5,1,1,16.0,77777,9,999999999,209,0.1330,0,88,0.110,0.0,1.0 +1996,3,29,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,16.1,84,101500,0,0,349,0,0,0,0,0,0,0,330,2.1,1,1,16.0,77777,9,999999999,209,0.1330,0,88,0.110,0.0,1.0 +1996,3,29,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,16.1,87,101500,0,0,346,0,0,0,0,0,0,0,320,2.6,1,1,16.0,77777,9,999999999,209,0.1330,0,88,0.110,0.0,1.0 +1996,3,29,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,16.1,87,101500,0,0,346,0,0,0,0,0,0,0,20,2.6,1,1,16.0,77777,9,999999999,220,0.1330,0,88,0.110,0.0,1.0 +1996,3,29,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,16.1,87,101500,0,0,346,0,0,0,0,0,0,0,330,2.6,1,1,16.0,77777,9,999999999,220,0.1330,0,88,0.110,0.0,1.0 +1996,3,29,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,15.6,84,101500,43,720,346,10,3,9,1000,200,1000,240,300,2.6,1,1,24.0,77777,9,999999999,220,0.1330,0,88,0.110,0.0,1.0 +1996,3,29,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,17.2,73,101600,328,1371,367,132,206,83,14100,16900,10000,1590,350,1.5,1,1,32.0,77777,9,999999999,220,0.1330,0,88,0.110,0.0,1.0 +1996,3,29,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,16.7,58,101600,637,1371,383,358,449,149,38000,44500,17200,3040,10,2.1,1,1,32.0,77777,9,999999999,220,0.1330,0,88,0.110,0.0,1.0 +1996,3,29,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,15.6,49,101600,906,1371,395,584,547,222,62500,56500,25000,5770,60,6.7,2,2,32.0,77777,9,999999999,220,0.1330,0,88,0.110,0.0,1.0 +1996,3,29,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,15.0,44,101600,1115,1371,404,722,519,300,77300,54100,33200,11380,70,6.2,3,3,32.0,77777,9,999999999,220,0.1330,0,88,0.110,0.0,1.0 +1996,3,29,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.9,15.6,44,101500,1250,1371,412,802,483,360,85700,50500,39500,21040,90,7.2,4,4,32.0,77777,9,999999999,220,0.1330,0,88,0.110,0.0,1.0 +1996,3,29,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.0,15.0,40,101500,1303,1371,420,890,546,370,95500,57100,41100,28080,90,6.7,5,5,32.0,77777,9,999999999,229,0.1330,0,88,0.110,0.0,1.0 +1996,3,29,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,29.4,16.7,46,101400,1269,1371,416,832,541,331,90000,56600,37400,20900,90,7.7,4,4,32.0,77777,9,999999999,229,0.1330,0,88,0.110,0.0,1.0 +1996,3,29,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,17.2,51,101400,1150,1371,407,705,475,306,75700,49600,33900,12710,60,7.7,3,3,32.0,77777,9,999999999,229,0.1330,0,88,0.110,0.0,1.0 +1996,3,29,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,16.7,51,101300,956,1371,400,644,590,232,69100,61200,26300,6450,60,8.2,2,2,32.0,77777,9,999999999,229,0.1330,0,88,0.110,0.0,1.0 +1996,3,29,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,17.2,56,101300,699,1371,399,398,386,201,42800,40200,22200,4550,70,7.7,3,3,32.0,77777,9,999999999,229,0.1330,0,88,0.110,0.0,1.0 +1996,3,29,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,17.2,62,101300,397,1371,386,181,281,100,19400,25000,12100,1940,70,7.2,2,2,32.0,77777,9,999999999,229,0.1330,0,88,0.110,0.0,1.0 +1996,3,29,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,17.8,69,101400,86,1016,385,22,8,21,2400,500,2300,530,50,7.7,3,3,24.0,77777,9,999999999,229,0.1330,0,88,0.110,0.0,1.0 +1996,3,29,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,17.8,73,101500,0,0,385,0,0,0,0,0,0,0,70,5.2,5,5,16.0,77777,9,999999999,229,0.1330,0,88,0.110,0.0,1.0 +1996,3,29,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,17.8,73,101600,0,0,388,0,0,0,0,0,0,0,100,4.1,6,6,16.0,1311,9,999999999,240,0.1330,0,88,0.110,0.0,1.0 +1996,3,29,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,17.2,71,101600,0,0,381,0,0,0,0,0,0,0,80,4.1,4,4,16.0,77777,9,999999999,240,0.1330,0,88,0.110,0.0,1.0 +1996,3,29,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,17.2,73,101700,0,0,395,0,0,0,0,0,0,0,130,3.6,8,8,16.0,2134,9,999999999,240,0.1330,0,88,0.110,0.0,1.0 +1996,3,29,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,17.2,73,101600,0,0,367,0,0,0,0,0,0,0,110,4.6,1,1,16.0,77777,9,999999999,240,0.1330,0,88,0.110,0.0,1.0 +1996,3,30,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,16.7,73,101500,0,0,357,0,0,0,0,0,0,0,50,2.6,0,0,16.0,77777,9,999999999,240,0.1340,0,88,0.110,0.0,1.0 +1996,3,30,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,16.1,68,101500,0,0,358,0,0,0,0,0,0,0,40,2.1,0,0,16.0,77777,9,999999999,240,0.1340,0,88,0.110,0.0,1.0 +1996,3,30,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,16.7,73,101500,0,0,357,0,0,0,0,0,0,0,70,3.1,0,0,16.0,77777,9,999999999,240,0.1340,0,88,0.110,0.0,1.0 +1996,3,30,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,16.1,70,101400,0,0,356,0,0,0,0,0,0,0,60,3.6,0,0,16.0,77777,9,999999999,240,0.1340,0,88,0.110,0.0,1.0 +1996,3,30,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,16.7,71,101500,0,0,371,0,0,0,0,0,0,0,40,3.6,4,2,16.0,77777,9,999999999,240,0.1340,0,88,0.110,0.0,1.0 +1996,3,30,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,16.7,73,101500,0,0,378,0,0,0,0,0,0,0,90,3.6,5,5,16.0,77777,9,999999999,250,0.1340,0,88,0.110,0.0,1.0 +1996,3,30,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,16.1,68,101500,45,742,388,13,5,12,1400,300,1300,310,60,3.6,7,7,24.0,2438,9,999999999,250,0.1340,0,88,0.110,0.0,1.0 +1996,3,30,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,16.1,62,101600,333,1370,386,146,230,90,15400,19000,10800,1750,70,6.7,4,4,32.0,77777,9,999999999,250,0.1340,0,88,0.110,0.0,1.0 +1996,3,30,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,16.1,56,101600,642,1370,388,393,603,111,41200,58800,13600,2290,70,7.7,5,2,32.0,77777,9,999999999,250,0.1340,0,88,0.110,0.0,1.0 +1996,3,30,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,16.1,52,101600,909,1370,397,597,632,177,62700,63700,20300,4570,60,7.7,5,3,32.0,77777,9,999999999,250,0.1340,0,88,0.110,0.0,1.0 +1996,3,30,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,16.1,48,101600,1118,1370,409,554,534,119,60100,54400,15600,4440,50,6.7,4,4,32.0,77777,9,999999999,250,0.1340,0,88,0.110,0.0,1.0 +1996,3,30,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.9,16.7,48,101500,1253,1370,416,754,501,295,82300,52500,34100,17340,80,6.7,5,5,32.0,77777,9,999999999,250,0.1340,0,88,0.110,0.0,1.0 +1996,3,30,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.9,16.1,46,101500,1305,1370,424,835,492,365,89700,51500,40600,28170,50,5.7,7,7,32.0,3353,9,999999999,250,0.1340,0,88,0.110,0.0,1.0 +1996,3,30,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,29.4,16.7,46,101400,1270,1370,419,925,655,318,96900,65800,35700,19500,60,6.2,5,5,32.0,77777,9,999999999,250,0.1340,0,88,0.110,0.0,1.0 +1996,3,30,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,29.4,16.1,45,101400,1152,1370,418,698,563,224,74000,57300,25700,9170,70,5.7,5,5,32.0,77777,9,999999999,250,0.1340,0,88,0.110,0.0,1.0 +1996,3,30,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.9,17.2,49,101400,957,1370,410,644,669,176,68000,67800,20500,4890,50,7.2,3,3,32.0,77777,9,999999999,250,0.1340,0,88,0.110,0.0,1.0 +1996,3,30,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,17.2,53,101400,700,1370,395,454,712,90,47500,69900,11700,1930,50,7.7,1,1,32.0,77777,9,999999999,250,0.1340,0,88,0.110,0.0,1.0 +1996,3,30,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,17.8,62,101400,398,1370,384,215,543,57,22600,47900,8600,1100,50,7.7,1,1,32.0,77777,9,999999999,250,0.1340,0,88,0.110,0.0,1.0 +1996,3,30,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,18.3,69,101500,87,1016,379,31,153,18,3300,8300,2600,340,50,6.7,1,1,24.0,77777,9,999999999,259,0.1340,0,88,0.110,0.0,1.0 +1996,3,30,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,18.3,71,101500,0,0,376,0,0,0,0,0,0,0,50,5.2,1,1,16.0,77777,9,999999999,259,0.1340,0,88,0.110,0.0,1.0 +1996,3,30,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,18.3,71,101600,0,0,376,0,0,0,0,0,0,0,60,6.7,1,1,16.0,77777,9,999999999,259,0.1340,0,88,0.110,0.0,1.0 +1996,3,30,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,19.4,79,101600,0,0,383,0,0,0,0,0,0,0,90,4.6,3,3,16.0,77777,9,999999999,259,0.1340,0,88,0.110,0.0,1.0 +1996,3,30,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,19.4,81,101600,0,0,377,0,0,0,0,0,0,0,100,2.6,2,2,16.0,77777,9,999999999,259,0.1340,0,88,0.110,0.0,1.0 +1996,3,30,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,19.4,79,101600,0,0,404,0,0,0,0,0,0,0,110,4.6,8,8,16.0,853,9,999999999,259,0.1340,0,88,0.110,0.0,1.0 +1996,3,31,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,19.4,79,101600,0,0,404,0,0,0,0,0,0,0,90,3.1,8,8,16.0,732,9,999999999,259,0.1340,0,88,0.110,0.0,1.0 +1996,3,31,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,19.4,81,101500,0,0,421,0,0,0,0,0,0,0,30,3.1,10,10,16.0,823,9,999999999,259,0.1340,0,88,0.110,0.0,1.0 +1996,3,31,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,21.1,93,101500,0,0,420,0,0,0,0,0,0,0,90,4.1,10,10,16.0,1067,9,999999999,259,0.1340,0,88,0.110,1.0,1.0 +1996,3,31,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,21.1,93,101400,0,0,420,0,0,0,0,0,0,0,350,3.1,10,10,16.0,732,9,999999999,259,0.1340,0,88,0.110,0.0,1.0 +1996,3,31,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,21.1,93,101400,0,0,420,0,0,0,0,0,0,0,60,2.1,10,10,16.0,762,9,999999999,259,0.1340,0,88,0.110,0.0,1.0 +1996,3,31,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,20.6,91,101500,0,0,419,0,0,0,0,0,0,0,70,4.6,10,10,16.0,823,9,999999999,270,0.1340,0,88,0.110,0.0,1.0 +1996,3,31,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,20.6,87,101500,48,764,403,13,7,12,1400,400,1300,310,80,5.7,8,8,32.0,1829,9,999999999,270,0.1340,0,88,0.110,0.0,1.0 +1996,3,31,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,20.6,85,101600,338,1369,414,72,27,65,7900,2300,7300,1770,80,4.6,9,9,32.0,1372,9,999999999,270,0.1340,0,88,0.110,0.0,1.0 +1996,3,31,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,20.0,76,101600,646,1369,419,232,93,188,25500,9200,21100,5580,80,5.7,9,9,32.0,1006,9,999999999,270,0.1340,0,88,0.110,0.0,1.0 +1996,3,31,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,20.0,71,101700,913,1369,438,186,0,186,22100,0,22100,8760,90,6.7,10,10,32.0,914,9,999999999,270,0.1340,0,88,0.110,0.0,1.0 +1996,3,31,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,20.6,74,101700,1121,1369,439,238,0,238,28600,0,28600,11510,70,5.2,10,10,32.0,914,9,999999999,270,0.1340,0,88,0.110,0.0,1.0 +1996,3,31,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,20.6,65,101600,1255,1369,424,782,312,495,84600,33800,53500,27360,90,6.7,7,7,32.0,1372,9,999999999,270,0.1340,0,88,0.110,0.0,1.0 +1996,3,31,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,20.6,63,101500,1307,1369,433,568,179,397,63200,19200,44900,25040,90,7.7,8,8,32.0,7620,9,999999999,270,0.1340,0,88,0.110,0.0,1.0 +1996,3,31,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.9,20.0,59,101500,1272,1369,429,745,224,536,81100,23800,58900,29140,90,7.7,10,7,32.0,7620,9,999999999,279,0.1340,0,88,0.110,0.0,1.0 +1996,3,31,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,20.0,61,101400,1153,1369,442,459,104,371,50600,11100,41300,14740,90,7.2,10,9,32.0,7620,9,999999999,279,0.1340,0,88,0.110,0.0,1.0 +1996,3,31,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,20.0,63,101500,958,1369,451,198,0,198,23600,0,23600,9400,80,7.7,10,10,32.0,1311,9,999999999,279,0.1340,0,88,0.110,0.0,1.0 +1996,3,31,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,20.0,69,101500,701,1369,441,134,0,134,15800,0,15800,5970,80,6.7,10,10,32.0,1219,9,999999999,279,0.1340,0,88,0.110,0.0,1.0 +1996,3,31,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,20.0,74,101500,399,1369,423,90,17,85,10300,900,10000,3270,90,6.2,9,9,32.0,823,9,999999999,279,0.1340,0,88,0.110,0.0,1.0 +1996,3,31,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,20.0,79,101500,88,1038,397,31,23,29,3400,1400,3300,700,70,6.7,8,6,32.0,7620,9,999999999,279,0.1340,0,88,0.110,0.0,1.0 +1996,3,31,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,20.0,79,101600,0,0,417,0,0,0,0,0,0,0,80,5.2,9,9,16.0,914,9,999999999,279,0.1340,0,88,0.110,0.0,1.0 +1996,3,31,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,19.4,76,101700,0,0,393,0,0,0,0,0,0,0,80,6.2,5,5,16.0,77777,9,999999999,279,0.1340,0,88,0.110,0.0,1.0 +1996,3,31,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,18.5,79,101700,0,0,396,0,0,0,0,0,0,0,70,6.5,7,7,16.0,1219,9,999999999,290,0.1340,0,88,0.110,0.0,1.0 +1996,3,31,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,17.5,82,101700,0,0,385,0,0,0,0,0,0,0,80,6.8,5,5,16.0,77777,9,999999999,290,0.1340,0,88,0.110,0.0,1.0 +1996,3,31,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,16.6,82,101700,0,0,377,0,0,0,0,0,0,0,80,7.1,4,4,16.0,77777,9,999999999,290,0.1340,0,88,0.110,0.0,1.0 +1987,4,1,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,15.6,70,102000,0,0,399,0,0,0,0,0,0,0,40,7.3,9,9,16.1,760,9,999999999,250,0.0400,0,88,999.000,999.0,99.0 +1987,4,1,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,14.7,70,101900,0,0,386,0,0,0,0,0,0,0,30,7.6,8,8,24.1,1370,9,999999999,250,0.0400,0,88,999.000,999.0,99.0 +1987,4,1,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,13.7,68,101900,0,0,366,0,0,0,0,0,0,0,60,7.9,4,4,24.1,77777,9,999999999,240,0.0400,0,88,999.000,999.0,99.0 +1987,4,1,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,12.8,63,101900,0,0,362,0,0,0,0,0,0,0,60,8.2,4,4,24.1,77777,9,999999999,229,0.0400,0,88,999.000,999.0,99.0 +1987,4,1,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,11.7,59,102000,0,0,367,0,0,0,0,0,0,0,60,7.2,6,6,24.1,1370,9,999999999,220,0.0400,0,88,999.000,999.0,99.0 +1987,4,1,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,10.0,55,102000,0,0,372,28,36,24,0,0,0,0,40,7.7,8,8,24.1,7620,9,999999999,200,0.0400,0,88,999.000,999.0,99.0 +1987,4,1,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,11.7,59,102000,49,764,377,130,157,91,10200,6100,9800,1890,50,8.2,8,8,24.1,7620,9,999999999,220,0.0400,0,88,999.000,999.0,99.0 +1987,4,1,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,12.2,55,102100,338,1369,370,234,234,124,18800,19400,14000,2590,40,10.3,8,4,24.1,77777,9,999999999,229,0.0400,0,88,999.000,999.0,99.0 +1987,4,1,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,12.2,52,102100,646,1369,375,623,703,155,49800,67400,17900,3010,50,11.3,8,4,16.1,77777,9,999999999,229,0.0400,0,88,999.000,999.0,99.0 +1987,4,1,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,12.2,47,102200,914,1369,386,757,700,183,68200,70400,21000,4730,50,11.3,8,5,16.1,7620,9,999999999,229,0.0400,0,88,999.000,999.0,99.0 +1987,4,1,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,12.2,45,102100,1122,1369,393,795,513,324,79200,53500,35200,12600,60,9.3,8,6,16.1,7620,9,999999999,229,0.0400,0,88,999.000,999.0,99.0 +1987,4,1,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,11.7,42,102000,1256,1369,392,858,528,354,90000,55200,39200,21300,40,11.8,8,5,16.1,7620,9,999999999,220,0.0400,0,88,999.000,999.0,99.0 +1987,4,1,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,12.2,45,102000,1307,1369,393,827,618,252,90000,63000,29700,19320,40,12.4,8,6,16.1,7620,9,999999999,229,0.0400,0,88,999.000,999.0,99.0 +1987,4,1,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,12.2,44,101900,1272,1369,393,678,489,265,79700,51300,31800,17020,40,10.3,8,5,16.1,7620,9,999999999,229,0.0400,0,88,999.000,999.0,99.0 +1987,4,1,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,12.2,44,101900,1153,1369,396,644,521,278,77800,54500,31800,11620,40,7.7,9,6,16.1,7620,9,999999999,229,0.0400,0,88,999.000,999.0,99.0 +1987,4,1,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,12.2,45,101900,959,1369,389,364,302,209,45600,31400,23600,5800,40,8.2,7,5,16.1,7620,9,999999999,229,0.0400,0,88,999.000,999.0,99.0 +1987,4,1,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,12.8,50,101900,701,1369,379,157,304,68,24500,30700,8700,1560,40,7.7,3,3,16.1,77777,9,999999999,240,0.0400,0,88,999.000,999.0,99.0 +1987,4,1,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,12.2,52,102000,400,1369,369,45,163,24,8000,14800,3700,500,30,9.8,2,2,16.1,77777,9,999999999,229,0.0400,0,88,999.000,999.0,99.0 +1987,4,1,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,12.8,57,102000,89,1038,364,0,0,0,0,0,0,0,50,7.2,2,2,16.1,77777,9,999999999,240,0.0400,0,88,999.000,999.0,99.0 +1987,4,1,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,12.8,59,102100,0,0,361,0,0,0,0,0,0,0,60,6.2,2,2,16.1,77777,9,999999999,240,0.0400,0,88,999.000,999.0,99.0 +1987,4,1,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,12.8,59,102200,0,0,361,0,0,0,0,0,0,0,60,5.7,2,2,16.1,77777,9,999999999,240,0.0400,0,88,999.000,999.0,99.0 +1987,4,1,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,12.8,59,102200,0,0,361,0,0,0,0,0,0,0,70,6.7,2,2,16.1,77777,9,999999999,240,0.0400,0,88,999.000,999.0,99.0 +1987,4,1,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,12.8,59,102200,0,0,364,0,0,0,0,0,0,0,70,7.7,3,3,16.1,77777,9,999999999,240,0.0400,0,88,999.000,999.0,99.0 +1987,4,1,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,12.2,55,102300,0,0,376,0,0,0,0,0,0,0,50,5.7,6,6,16.1,1370,9,999999999,229,0.0400,0,88,999.000,999.0,99.0 +1987,4,2,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,11.1,53,102200,0,0,362,0,0,0,0,0,0,0,60,6.2,3,3,16.1,77777,9,999999999,209,0.0400,0,88,999.000,999.0,99.0 +1987,4,2,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,13.3,59,102200,0,0,388,0,0,0,0,0,0,0,60,6.7,8,8,16.1,1370,9,999999999,240,0.0400,0,88,999.000,999.0,99.0 +1987,4,2,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,13.3,61,102200,0,0,378,0,0,0,0,0,0,0,50,6.7,7,7,16.1,1370,9,999999999,240,0.0400,0,88,999.000,999.0,99.0 +1987,4,2,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,12.2,59,102100,0,0,367,0,0,0,0,0,0,0,60,6.2,5,5,16.1,77777,9,999999999,229,0.0400,0,88,999.000,999.0,99.0 +1987,4,2,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,12.8,61,102100,0,0,362,0,0,0,0,0,0,0,60,7.2,3,3,16.1,77777,9,999999999,240,0.0400,0,88,999.000,999.0,99.0 +1987,4,2,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,13.3,61,102200,0,0,362,25,63,17,0,0,0,0,50,7.2,2,2,16.1,77777,9,999999999,240,0.0860,0,88,999.000,999.0,99.0 +1987,4,2,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,12.2,57,102200,51,787,355,178,501,53,8200,19400,6900,630,70,6.7,1,1,19.3,77777,9,999999999,229,0.0860,0,88,999.000,999.0,99.0 +1987,4,2,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,13.9,57,102300,343,1368,374,403,563,136,27400,46000,15800,2700,50,6.2,3,3,16.1,77777,9,999999999,250,0.0860,0,88,999.000,999.0,99.0 +1987,4,2,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,13.9,57,102300,651,1368,377,695,807,155,55200,77500,18200,3030,30,5.2,4,4,16.1,77777,9,999999999,250,0.0860,0,88,999.000,999.0,99.0 +1987,4,2,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,12.8,45,102300,917,1368,390,705,545,258,65800,56300,28000,6900,60,7.2,4,4,16.1,77777,9,999999999,240,0.0860,0,88,999.000,999.0,99.0 +1987,4,2,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,14.4,47,102300,1125,1368,398,919,760,219,89500,77300,25800,8380,50,7.7,4,4,16.1,77777,9,999999999,259,0.0860,0,88,999.000,999.0,99.0 +1987,4,2,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,15.0,49,102200,1258,1368,402,1009,802,241,104500,81800,29000,14340,40,8.2,5,5,16.1,77777,9,999999999,270,0.0860,0,88,999.000,999.0,99.0 +1987,4,2,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,13.9,45,102100,1309,1368,398,786,551,273,85100,56000,31400,21210,50,7.2,4,4,16.1,77777,9,999999999,250,0.0860,0,88,999.000,999.0,99.0 +1987,4,2,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,13.3,42,102000,1274,1368,402,669,380,348,75600,39700,38500,22800,70,7.7,5,5,16.1,77777,9,999999999,240,0.0860,0,88,999.000,999.0,99.0 +1987,4,2,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,12.8,42,102000,1154,1368,399,497,379,231,60900,39700,27300,9620,50,9.3,5,5,16.1,77777,9,999999999,229,0.0860,0,88,999.000,999.0,99.0 +1987,4,2,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,13.3,47,101900,960,1368,394,440,557,153,58100,56800,18100,4350,60,8.8,5,5,32.2,77777,9,999999999,240,0.0860,0,88,999.000,999.0,99.0 +1987,4,2,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,13.9,50,101900,702,1368,392,185,299,97,28100,30300,12500,1980,70,7.7,5,5,32.2,77777,9,999999999,250,0.0860,0,88,999.000,999.0,99.0 +1987,4,2,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,14.4,58,102000,401,1368,383,40,81,30,6300,7300,4100,500,50,9.3,5,5,24.1,77777,9,999999999,259,0.0860,0,88,999.000,999.0,99.0 +1987,4,2,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,14.4,62,102000,90,1037,372,0,0,0,0,0,0,0,50,7.7,3,3,24.1,77777,9,999999999,259,0.0400,0,88,999.000,999.0,99.0 +1987,4,2,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,13.9,59,102000,0,0,368,0,0,0,0,0,0,0,70,7.2,2,2,24.1,77777,9,999999999,250,0.0400,0,88,999.000,999.0,99.0 +1987,4,2,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,13.9,59,102100,0,0,368,0,0,0,0,0,0,0,60,7.7,2,2,24.1,77777,9,999999999,250,0.0400,0,88,999.000,999.0,99.0 +1987,4,2,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,13.9,61,102100,0,0,360,0,0,0,0,0,0,0,60,6.2,1,1,24.1,77777,9,999999999,250,0.0400,0,88,999.000,999.0,99.0 +1987,4,2,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,13.9,61,102200,0,0,360,0,0,0,0,0,0,0,60,5.7,1,1,24.1,77777,9,999999999,250,0.0400,0,88,999.000,999.0,99.0 +1987,4,2,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,14.4,64,102200,0,0,366,0,0,0,0,0,0,0,70,6.2,2,2,24.1,77777,9,999999999,259,0.0400,0,88,999.000,999.0,99.0 +1987,4,3,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,13.9,61,102100,0,0,365,0,0,0,0,0,0,0,60,5.2,2,2,24.1,77777,9,999999999,250,0.0400,0,88,999.000,999.0,99.0 +1987,4,3,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,15.0,68,102100,0,0,363,0,0,0,0,0,0,0,70,4.6,2,2,24.1,77777,9,999999999,270,0.0400,0,88,999.000,999.0,99.0 +1987,4,3,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,15.6,68,102000,0,0,374,0,0,0,0,0,0,0,70,3.1,4,4,24.1,77777,9,999999999,279,0.0400,0,88,999.000,999.0,99.0 +1987,4,3,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,15.6,71,102000,0,0,371,0,0,0,0,0,0,0,60,3.6,4,4,24.1,77777,9,999999999,279,0.0400,0,88,999.000,999.0,99.0 +1987,4,3,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,16.1,73,102100,0,0,382,0,0,0,0,0,0,0,60,3.6,7,7,24.1,1370,9,999999999,290,0.0400,0,88,999.000,999.0,99.0 +1987,4,3,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,15.6,73,102100,0,0,365,41,147,21,0,0,0,0,50,3.1,3,3,24.1,77777,9,999999999,279,0.0280,0,88,999.000,999.0,99.0 +1987,4,3,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,16.1,73,102100,54,809,365,215,687,42,8100,32100,5900,130,50,5.2,2,2,24.1,77777,9,999999999,290,0.0280,0,88,999.000,999.0,99.0 +1987,4,3,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,16.1,64,102200,347,1367,376,370,575,96,24900,47700,12800,1800,80,4.1,2,2,16.1,77777,9,999999999,290,0.0280,0,88,999.000,999.0,99.0 +1987,4,3,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,16.1,58,102200,655,1367,391,641,786,113,51300,77000,14400,2360,90,4.1,4,4,16.1,77777,9,999999999,290,0.0280,0,88,999.000,999.0,99.0 +1987,4,3,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,16.1,54,102200,921,1367,400,804,753,183,72400,75800,21200,4790,50,4.1,5,5,16.1,77777,9,999999999,290,0.0280,0,88,999.000,999.0,99.0 +1987,4,3,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,16.7,58,102200,1127,1367,406,564,221,360,59200,24000,39400,13630,60,4.1,7,7,16.1,7620,9,999999999,300,0.0280,0,88,999.000,999.0,99.0 +1987,4,3,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,16.1,52,102200,1260,1367,412,922,629,318,93900,63100,35600,18810,70,4.6,7,7,16.1,7620,9,999999999,290,0.0280,0,88,999.000,999.0,99.0 +1987,4,3,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,16.1,51,102100,1311,1367,410,795,456,369,86800,47700,40900,30080,70,6.2,6,6,16.1,7620,9,999999999,290,0.0280,0,88,999.000,999.0,99.0 +1987,4,3,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,16.1,49,102100,1275,1367,434,503,150,376,57500,16100,42500,20800,70,5.2,9,9,16.1,1370,9,999999999,290,0.0280,0,88,999.000,999.0,99.0 +1987,4,3,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,15.6,54,102000,1156,1367,420,369,93,304,42800,10000,34300,12170,70,7.2,9,9,16.1,1370,9,999999999,279,0.0280,0,88,999.000,999.0,99.0 +1987,4,3,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,15.0,52,102000,961,1367,411,355,275,213,45200,29700,24300,5840,60,7.2,8,8,24.1,1370,9,999999999,270,0.0280,0,88,999.000,999.0,99.0 +1987,4,3,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,16.1,56,101900,704,1367,398,227,461,92,35300,46100,11500,2050,50,6.7,5,5,24.1,77777,9,999999999,290,0.0280,0,88,999.000,999.0,99.0 +1987,4,3,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,15.6,58,102000,402,1367,391,62,225,33,10900,20300,4900,680,50,6.7,5,5,24.1,77777,9,999999999,279,0.0280,0,88,999.000,999.0,99.0 +1987,4,3,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,15.6,64,102000,91,1037,373,0,0,0,0,0,0,0,60,6.2,2,2,16.1,77777,9,999999999,279,0.0400,0,88,999.000,999.0,99.0 +1987,4,3,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,15.0,62,102000,0,0,367,0,0,0,0,0,0,0,70,5.2,1,1,16.1,77777,9,999999999,270,0.0400,0,88,999.000,999.0,99.0 +1987,4,3,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,15.0,66,102100,0,0,362,0,0,0,0,0,0,0,60,5.2,1,1,16.1,77777,9,999999999,270,0.0400,0,88,999.000,999.0,99.0 +1987,4,3,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,15.0,66,102100,0,0,362,0,0,0,0,0,0,0,60,3.6,1,1,16.1,77777,9,999999999,270,0.0400,0,88,999.000,999.0,99.0 +1987,4,3,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,14.4,66,102100,0,0,358,0,0,0,0,0,0,0,40,2.6,1,1,16.1,77777,9,999999999,259,0.0400,0,88,999.000,999.0,99.0 +1987,4,3,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,15.0,68,102100,0,0,359,0,0,0,0,0,0,0,70,3.6,1,1,19.3,77777,9,999999999,270,0.0400,0,88,999.000,999.0,99.0 +1987,4,4,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,15.6,68,102000,0,0,362,0,0,0,0,0,0,0,70,2.6,1,1,19.3,77777,9,999999999,279,0.0400,0,88,999.000,999.0,99.0 +1987,4,4,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,15.0,66,102000,0,0,362,0,0,0,0,0,0,0,0,0.0,1,1,19.3,77777,9,999999999,270,0.0400,0,88,999.000,999.0,99.0 +1987,4,4,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,15.0,71,102000,0,0,356,0,0,0,0,0,0,0,30,2.1,1,1,19.3,77777,9,999999999,270,0.0400,0,88,999.000,999.0,99.0 +1987,4,4,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,15.0,71,102000,0,0,356,0,0,0,0,0,0,0,60,2.6,1,1,19.3,77777,9,999999999,270,0.0400,0,88,999.000,999.0,99.0 +1987,4,4,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,15.6,76,102000,0,0,354,0,0,0,0,0,0,0,40,1.5,1,1,19.3,77777,9,999999999,279,0.0400,0,88,999.000,999.0,99.0 +1987,4,4,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,15.0,73,102000,0,0,362,42,184,19,0,0,0,0,0,0.0,3,3,19.3,77777,9,999999999,270,0.0170,0,88,999.000,999.0,99.0 +1987,4,4,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,16.1,71,102100,57,831,385,125,137,90,10000,5600,9600,1870,60,3.6,7,7,19.3,760,9,999999999,290,0.0170,0,88,999.000,999.0,99.0 +1987,4,4,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,16.1,69,102100,352,1367,383,354,479,124,24800,39700,14600,2410,40,4.6,6,6,16.1,1370,9,999999999,290,0.0170,0,88,999.000,999.0,99.0 +1987,4,4,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,17.2,73,102100,658,1367,404,398,88,339,41700,8900,37300,8550,60,4.6,9,9,16.1,1220,9,999999999,300,0.0170,0,88,999.000,999.0,99.0 +1987,4,4,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,17.2,62,102100,924,1367,410,435,128,329,45300,13500,36100,9670,50,5.2,8,8,24.1,1370,9,999999999,309,0.0170,0,88,999.000,999.0,99.0 +1987,4,4,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,16.1,52,102100,1130,1367,407,813,579,278,81900,60500,31700,10990,50,5.2,6,6,24.1,1370,9,999999999,290,0.0170,0,88,999.000,999.0,99.0 +1987,4,4,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,15.6,46,102000,1263,1367,415,1054,851,235,109300,86900,28700,14390,80,6.2,6,6,24.1,1370,9,999999999,279,0.0170,0,88,999.000,999.0,99.0 +1987,4,4,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,16.1,48,102000,1313,1367,412,841,674,211,93000,69300,26200,17160,80,5.2,5,5,24.1,77777,9,999999999,290,0.0170,0,88,999.000,999.0,99.0 +1987,4,4,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,15.0,49,101900,1276,1367,426,460,14,448,54000,1400,52700,18850,50,5.7,9,9,24.1,1370,9,999999999,270,0.0170,0,88,999.000,999.0,99.0 +1987,4,4,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,15.6,47,101800,1157,1367,406,451,322,224,55100,33800,26400,9410,60,8.2,4,4,32.2,77777,9,999999999,279,0.0170,0,88,999.000,999.0,99.0 +1987,4,4,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,15.6,47,101800,962,1367,412,377,309,217,48300,33400,24700,5970,40,8.2,6,6,32.2,1370,9,999999999,279,0.0170,0,88,999.000,999.0,99.0 +1987,4,4,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,16.1,52,101800,705,1367,412,208,285,124,29700,28800,14800,2580,60,8.2,7,7,32.2,1370,9,999999999,279,0.0170,0,88,999.000,999.0,99.0 +1987,4,4,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,16.1,60,101800,403,1367,399,48,51,42,6600,4700,5200,940,40,8.2,7,7,24.1,1370,9,999999999,290,0.0170,0,88,999.000,999.0,99.0 +1987,4,4,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,16.7,66,101800,92,1059,390,0,0,0,0,0,0,0,60,7.2,6,6,24.1,1370,9,999999999,290,0.0400,0,88,999.000,999.0,99.0 +1987,4,4,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,16.1,66,101900,0,0,380,0,0,0,0,0,0,0,60,7.2,4,4,24.1,77777,9,999999999,290,0.0400,0,88,999.000,999.0,99.0 +1987,4,4,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,16.1,66,102000,0,0,391,0,0,0,0,0,0,0,60,7.2,7,7,24.1,1370,9,999999999,290,0.0400,0,88,999.000,999.0,99.0 +1987,4,4,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,16.1,66,102000,0,0,380,0,0,0,0,0,0,0,50,7.2,4,4,24.1,77777,9,999999999,290,0.0400,0,88,999.000,999.0,99.0 +1987,4,4,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,16.1,69,102000,0,0,380,0,0,0,0,0,0,0,70,6.2,5,5,24.1,77777,9,999999999,290,0.0400,0,88,999.000,999.0,99.0 +1987,4,4,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,17.2,79,102000,0,0,366,0,0,0,0,0,0,0,50,4.1,2,2,24.1,77777,9,999999999,309,0.0400,0,88,999.000,999.0,99.0 +1987,4,5,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,16.1,71,102000,0,0,363,0,0,0,0,0,0,0,60,4.1,1,1,24.1,77777,9,999999999,290,0.0400,0,88,999.000,999.0,99.0 +1987,4,5,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,16.7,76,101900,0,0,361,0,0,0,0,0,0,0,50,4.1,1,1,24.1,77777,9,999999999,300,0.0400,0,88,999.000,999.0,99.0 +1987,4,5,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,16.1,71,101900,0,0,371,0,0,0,0,0,0,0,50,4.1,3,3,24.1,77777,9,999999999,290,0.0400,0,88,999.000,999.0,99.0 +1987,4,5,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,16.7,79,101800,0,0,367,0,0,0,0,0,0,0,50,3.1,3,3,24.1,77777,9,999999999,300,0.0400,0,88,999.000,999.0,99.0 +1987,4,5,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,16.7,76,101800,0,0,378,0,0,0,0,0,0,0,30,3.1,6,6,24.1,1370,9,999999999,300,0.0400,0,88,999.000,999.0,99.0 +1987,4,5,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,16.7,73,101800,0,0,400,13,9,12,0,0,0,0,110,2.1,9,9,24.1,760,9,999999999,300,0.0320,0,88,999.000,999.0,99.0 +1987,4,5,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,15.6,68,101900,59,854,367,198,605,42,8300,26300,6400,600,60,2.6,2,2,24.1,77777,9,999999999,279,0.0320,0,88,999.000,999.0,99.0 +1987,4,5,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,16.1,64,102000,356,1366,385,366,592,80,23800,49300,10900,1410,70,3.6,5,5,32.2,77777,9,999999999,290,0.0320,0,88,999.000,999.0,99.0 +1987,4,5,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,16.1,60,102000,662,1366,399,467,236,307,44800,23800,33300,7580,50,4.6,7,7,32.2,1520,9,999999999,290,0.0320,0,88,999.000,999.0,99.0 +1987,4,5,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,16.1,51,102000,927,1366,410,858,776,214,77000,77500,24200,5530,70,6.7,6,6,32.2,1520,9,999999999,290,0.0320,0,88,999.000,999.0,99.0 +1987,4,5,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,14.4,44,102000,1133,1366,411,772,581,234,75600,58900,26600,9140,90,5.7,6,6,32.2,1520,9,999999999,259,0.0320,0,88,999.000,999.0,99.0 +1987,4,5,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,12.2,35,102000,1265,1366,410,765,522,263,79200,53000,30000,16220,70,4.1,4,4,32.2,77777,9,999999999,229,0.0320,0,88,999.000,999.0,99.0 +1987,4,5,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,12.8,37,101900,1314,1366,405,963,851,167,105600,86300,22400,13140,50,8.2,3,3,40.2,77777,9,999999999,229,0.0320,0,88,999.000,999.0,99.0 +1987,4,5,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,13.3,38,101800,1278,1366,405,732,639,189,85600,65900,23800,12630,60,6.7,3,3,40.2,77777,9,999999999,240,0.0320,0,88,999.000,999.0,99.0 +1987,4,5,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,15.6,44,101800,1158,1366,408,657,717,151,80600,72500,19000,6020,60,8.8,3,3,40.2,77777,9,999999999,270,0.0320,0,88,999.000,999.0,99.0 +1987,4,5,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,15.0,46,101800,963,1366,408,483,712,116,65800,71800,15000,3200,70,8.2,5,5,40.2,77777,9,999999999,270,0.0320,0,88,999.000,999.0,99.0 +1987,4,5,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,13.3,44,101800,706,1366,400,208,336,109,31400,34000,13800,2250,60,8.2,5,5,24.1,77777,9,999999999,240,0.0320,0,88,999.000,999.0,99.0 +1987,4,5,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,15.6,56,101800,405,1366,394,49,146,31,8700,13000,4800,530,60,8.2,5,5,24.1,77777,9,999999999,279,0.0320,0,88,999.000,999.0,99.0 +1987,4,5,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,16.1,64,101800,93,1058,389,0,0,0,0,0,0,0,60,8.2,6,6,24.1,7620,9,999999999,290,0.0400,0,88,999.000,999.0,99.0 +1987,4,5,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,16.1,64,101900,0,0,385,0,0,0,0,0,0,0,70,7.2,5,5,24.1,77777,9,999999999,290,0.0400,0,88,999.000,999.0,99.0 +1987,4,5,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,16.1,64,101900,0,0,385,0,0,0,0,0,0,0,70,7.2,5,5,24.1,77777,9,999999999,290,0.0400,0,88,999.000,999.0,99.0 +1987,4,5,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,16.1,66,102000,0,0,380,0,0,0,0,0,0,0,60,5.2,4,4,24.1,77777,9,999999999,290,0.0400,0,88,999.000,999.0,99.0 +1987,4,5,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,15.6,64,101900,0,0,382,0,0,0,0,0,0,0,60,5.2,5,5,24.1,77777,9,999999999,279,0.0400,0,88,999.000,999.0,99.0 +1987,4,5,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,15.6,62,102000,0,0,393,0,0,0,0,0,0,0,70,4.1,7,7,24.1,1370,9,999999999,279,0.0400,0,88,999.000,999.0,99.0 +1987,4,6,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,15.0,62,101900,0,0,372,0,0,0,0,0,0,0,50,4.6,2,2,24.1,77777,9,999999999,270,0.0400,0,88,999.000,999.0,99.0 +1987,4,6,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,15.6,64,101800,0,0,379,0,0,0,0,0,0,0,70,3.1,4,4,24.1,77777,9,999999999,279,0.0400,0,88,999.000,999.0,99.0 +1987,4,6,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,13.9,59,101800,0,0,368,0,0,0,0,0,0,0,70,5.2,2,2,24.1,77777,9,999999999,250,0.0400,0,88,999.000,999.0,99.0 +1987,4,6,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,13.9,57,101700,0,0,371,0,0,0,0,0,0,0,90,6.2,2,2,24.1,77777,9,999999999,250,0.0400,0,88,999.000,999.0,99.0 +1987,4,6,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,13.3,59,101700,0,0,371,0,0,0,0,0,0,0,90,2.6,4,4,24.1,77777,9,999999999,240,0.0400,0,88,999.000,999.0,99.0 +1987,4,6,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,14.4,62,101800,0,0,385,33,24,30,0,0,0,0,60,3.6,7,7,24.1,910,9,999999999,259,0.0360,0,88,999.000,999.0,99.0 +1987,4,6,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,13.3,57,101800,62,876,380,133,121,102,11100,5000,10700,2130,50,5.2,7,6,32.2,7620,9,999999999,240,0.0360,0,88,999.000,999.0,99.0 +1987,4,6,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,14.4,56,101900,361,1365,390,364,476,132,25800,39800,15200,2590,70,4.6,8,6,32.2,7620,9,999999999,259,0.0360,0,88,999.000,999.0,99.0 +1987,4,6,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,13.9,45,102000,666,1365,401,543,520,189,46100,51800,20800,4010,60,6.2,6,5,32.2,7620,9,999999999,250,0.0360,0,88,999.000,999.0,99.0 +1987,4,6,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,15.0,52,102000,931,1365,404,533,232,341,54300,24400,37600,10090,40,5.7,8,7,24.1,7620,9,999999999,270,0.0360,0,88,999.000,999.0,99.0 +1987,4,6,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,13.3,40,101900,1135,1365,412,644,372,299,65400,38800,33000,12070,100,5.7,8,6,24.1,7620,9,999999999,240,0.0360,0,88,999.000,999.0,99.0 +1987,4,6,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,14.4,47,101900,1267,1365,401,763,474,305,81300,49700,35100,19520,80,5.7,8,5,24.1,7620,9,999999999,259,0.0360,0,88,999.000,999.0,99.0 +1987,4,6,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,12.8,38,101800,1316,1365,411,804,569,270,87200,57900,31200,22480,80,5.7,8,6,24.1,7620,9,999999999,229,0.0360,0,88,999.000,999.0,99.0 +1987,4,6,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,14.4,46,101700,1279,1365,412,742,563,263,84000,57200,30300,17470,90,4.6,8,7,24.1,7620,9,999999999,259,0.0360,0,88,999.000,999.0,99.0 +1987,4,6,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,16.1,49,101700,1159,1365,418,555,446,239,68100,46800,28300,10170,40,5.2,8,7,24.1,7620,9,999999999,290,0.0360,0,88,999.000,999.0,99.0 +1987,4,6,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,15.6,49,101600,964,1365,420,397,276,254,49300,29800,28200,7170,70,6.2,8,8,32.2,7620,9,999999999,279,0.0360,0,88,999.000,999.0,99.0 +1987,4,6,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,16.1,51,101600,707,1365,406,169,256,93,25500,26000,12000,1900,60,7.7,5,5,32.2,77777,9,999999999,290,0.0360,0,88,999.000,999.0,99.0 +1987,4,6,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,16.7,58,101700,406,1365,395,47,149,28,8600,13300,4600,480,60,7.7,4,4,24.1,77777,9,999999999,300,0.0360,0,88,999.000,999.0,99.0 +1987,4,6,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,17.8,69,101700,94,1058,405,0,0,0,0,0,0,0,70,5.2,8,8,24.1,7620,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1987,4,6,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,17.8,71,101800,0,0,402,0,0,0,0,0,0,0,70,4.1,8,8,24.1,7620,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1987,4,6,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,18.3,76,101800,0,0,393,0,0,0,0,0,0,0,70,4.1,7,7,24.1,1370,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1987,4,6,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,17.8,74,101800,0,0,379,0,0,0,0,0,0,0,60,4.1,3,3,24.1,77777,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1987,4,6,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,17.2,71,101800,0,0,381,0,0,0,0,0,0,0,60,6.2,4,4,24.1,77777,9,999999999,309,0.0400,0,88,999.000,999.0,99.0 +1987,4,6,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,17.2,69,101800,0,0,395,0,0,0,0,0,0,0,70,3.6,7,7,24.1,1370,9,999999999,309,0.0400,0,88,999.000,999.0,99.0 +1987,4,7,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,16.7,66,101800,0,0,394,0,0,0,0,0,0,0,80,4.6,7,7,24.1,1370,9,999999999,290,0.0400,0,88,999.000,999.0,99.0 +1987,4,7,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,16.1,64,101700,0,0,420,0,0,0,0,0,0,0,60,4.1,10,10,24.1,1370,9,999999999,290,0.0400,0,88,999.000,999.0,99.0 +1987,4,7,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,17.2,71,101700,0,0,392,0,0,0,0,0,0,0,60,2.6,7,7,24.1,1370,9,999999999,309,0.0400,0,88,999.000,999.0,99.0 +1987,4,7,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,17.2,71,101700,0,0,392,0,0,0,0,0,0,0,70,3.1,7,7,24.1,1370,9,999999999,309,0.0400,0,88,999.000,999.0,99.0 +1987,4,7,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,17.2,71,101700,0,0,398,0,0,0,0,0,0,0,70,2.1,8,8,24.1,1370,9,999999999,309,0.0400,0,88,999.000,999.0,99.0 +1987,4,7,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,16.1,71,101700,0,0,374,44,154,24,0,0,0,0,60,3.1,4,4,24.1,77777,9,999999999,290,0.0230,0,88,999.000,999.0,99.0 +1987,4,7,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,16.1,66,101800,65,898,391,174,211,118,13300,8700,12600,2470,50,2.1,7,7,24.1,1370,9,999999999,290,0.0230,0,88,999.000,999.0,99.0 +1987,4,7,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,16.7,62,101800,365,1364,400,301,287,161,24200,24500,17700,3570,70,2.6,7,7,24.1,1370,9,999999999,300,0.0230,0,88,999.000,999.0,99.0 +1987,4,7,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,16.1,56,101900,670,1364,412,368,204,229,35700,20800,25500,5670,110,2.6,8,8,24.1,1370,9,999999999,290,0.0230,0,88,999.000,999.0,99.0 +1987,4,7,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,15.0,46,101900,934,1364,416,631,376,317,61800,40400,34100,9010,90,4.1,7,7,32.2,1520,9,999999999,270,0.0230,0,88,999.000,999.0,99.0 +1987,4,7,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,15.6,46,101800,1138,1364,411,968,777,245,94100,78600,28300,9690,80,5.2,5,5,32.2,77777,9,999999999,279,0.0230,0,88,999.000,999.0,99.0 +1987,4,7,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,17.8,51,101800,1269,1364,418,1101,932,200,111500,93500,24300,11730,140,7.2,5,5,32.2,77777,9,999999999,320,0.0230,0,88,999.000,999.0,99.0 +1987,4,7,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,16.1,46,101700,1317,1364,409,847,672,216,93600,69100,26700,18460,150,7.7,3,3,40.2,77777,9,999999999,290,0.0230,0,88,999.000,999.0,99.0 +1987,4,7,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,17.8,53,101700,1280,1364,408,823,795,146,91500,79600,16500,7640,150,7.7,3,3,40.2,77777,9,999999999,320,0.0230,0,88,999.000,999.0,99.0 +1987,4,7,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,17.2,53,101700,1160,1364,414,528,463,201,63700,47400,23300,8610,150,4.6,6,6,32.2,1370,9,999999999,309,0.0230,0,88,999.000,999.0,99.0 +1987,4,7,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,17.2,51,101600,964,1364,429,294,160,211,36100,17300,23800,5820,220,5.2,8,8,32.2,1370,9,999999999,300,0.0230,0,88,999.000,999.0,99.0 +1987,4,7,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,17.2,53,101700,708,1364,426,165,120,129,21600,12500,15100,3250,190,4.1,8,8,32.2,1370,9,999999999,309,0.0230,0,88,999.000,999.0,99.0 +1987,4,7,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,16.7,58,101700,407,1364,406,41,53,34,5800,4800,4300,570,200,3.1,7,7,24.1,1370,9,999999999,300,0.0230,0,88,999.000,999.0,99.0 +1987,4,7,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,16.7,62,101800,95,1080,406,0,0,0,0,0,0,0,130,4.1,8,8,24.1,7620,9,999999999,300,0.0400,0,88,999.000,999.0,99.0 +1987,4,7,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,17.8,69,101800,0,0,405,0,0,0,0,0,0,0,70,4.1,8,8,24.1,1370,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1987,4,7,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,18.3,74,101900,0,0,411,0,0,0,0,0,0,0,60,5.2,9,9,24.1,1370,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1987,4,7,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,17.8,74,102000,0,0,408,0,0,0,0,0,0,0,0,0.0,9,9,16.1,1370,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1987,4,7,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,19.4,87,102000,0,0,404,0,0,0,0,0,0,0,40,1.5,9,9,24.1,1370,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1987,4,7,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,19.4,84,102000,0,0,392,0,0,0,0,0,0,0,50,2.1,7,7,24.1,1370,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1987,4,8,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,18.3,84,101900,0,0,377,0,0,0,0,0,0,0,0,0.0,5,5,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1987,4,8,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,18.3,84,101800,0,0,384,0,0,0,0,0,0,0,0,0.0,7,7,24.1,7620,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1987,4,8,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,18.3,84,101700,0,0,384,0,0,0,0,0,0,0,320,1.5,7,7,24.1,7620,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1987,4,8,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,18.3,87,101700,0,0,388,0,0,0,0,0,0,0,0,0.0,8,8,24.1,1370,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1987,4,8,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,18.3,84,101700,0,0,384,0,0,0,0,0,0,0,310,2.1,7,7,24.1,1370,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1987,4,8,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,18.3,81,101800,0,0,394,28,44,22,0,0,0,0,0,0.0,8,8,24.1,1370,9,999999999,329,0.0320,0,88,999.000,999.0,99.0 +1987,4,8,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,18.3,76,101800,68,920,393,169,239,105,11700,8900,11000,2950,40,2.6,7,7,32.2,1370,9,999999999,329,0.0320,0,88,999.000,999.0,99.0 +1987,4,8,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,17.8,69,101900,369,1363,414,245,118,187,23800,10800,20900,3970,40,3.1,9,9,24.1,1370,9,999999999,320,0.0320,0,88,999.000,999.0,99.0 +1987,4,8,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,17.2,66,102000,674,1363,413,458,236,296,44100,23900,32200,7350,70,3.1,9,9,24.1,1370,9,999999999,309,0.0320,0,88,999.000,999.0,99.0 +1987,4,8,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,18.3,62,102000,937,1363,427,462,108,371,48900,11100,41300,12430,120,3.1,9,9,24.1,1370,9,999999999,329,0.0320,0,88,999.000,999.0,99.0 +1987,4,8,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,17.8,55,102000,1140,1363,427,455,59,399,49500,6100,44400,16740,210,3.6,8,8,32.2,1370,9,999999999,320,0.0320,0,88,999.000,999.0,99.0 +1987,4,8,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,18.3,57,101900,1271,1363,412,794,590,223,83100,60400,26600,14450,170,4.6,5,5,32.2,77777,9,999999999,329,0.0320,0,88,999.000,999.0,99.0 +1987,4,8,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,17.8,53,101800,1319,1363,414,870,682,228,95700,69900,27900,19780,170,4.6,5,5,32.2,77777,9,999999999,320,0.0320,0,88,999.000,999.0,99.0 +1987,4,8,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,18.9,59,101700,1281,1363,413,692,569,207,80200,58500,25100,14200,140,5.2,5,5,32.2,77777,9,999999999,340,0.0320,0,88,999.000,999.0,99.0 +1987,4,8,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,17.8,53,101700,1161,1363,414,602,549,213,72600,56000,24700,9130,150,3.6,6,5,32.2,7620,9,999999999,320,0.0320,0,88,999.000,999.0,99.0 +1987,4,8,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,16.7,49,101600,965,1363,437,370,260,234,46200,28100,26300,6550,210,5.2,9,9,32.2,1370,9,999999999,290,0.0320,0,88,999.000,999.0,99.0 +1987,4,8,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,16.7,56,101700,709,1363,425,130,37,119,15300,3600,13400,3980,70,5.2,9,9,24.1,1370,9,999999999,300,0.0320,0,88,999.000,999.0,99.0 +1987,4,8,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,16.7,58,101700,408,1363,413,42,33,38,5600,3100,4700,850,60,3.6,8,8,24.1,1370,9,999999999,300,0.0320,0,88,999.000,999.0,99.0 +1987,4,8,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,17.2,66,101700,97,1079,398,0,0,0,0,0,0,0,40,3.6,7,7,24.1,1370,9,999999999,300,0.0400,0,88,999.000,999.0,99.0 +1987,4,8,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,17.2,66,101800,0,0,387,0,0,0,0,0,0,0,50,2.1,4,4,24.1,77777,9,999999999,300,0.0400,0,88,999.000,999.0,99.0 +1987,4,8,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,17.8,71,101900,0,0,382,0,0,0,0,0,0,0,50,3.6,3,3,24.1,77777,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1987,4,8,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,17.8,74,101900,0,0,375,0,0,0,0,0,0,0,120,1.5,2,2,24.1,77777,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1987,4,8,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,17.8,74,101900,0,0,379,0,0,0,0,0,0,0,60,3.1,3,3,24.1,77777,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1987,4,8,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,19.4,84,101900,0,0,392,0,0,0,0,0,0,0,10,2.1,7,7,24.1,1370,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1987,4,9,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,18.9,84,101800,0,0,403,0,0,0,0,0,0,0,60,3.1,9,9,24.1,1370,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1987,4,9,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,18.9,84,101800,0,0,395,0,0,0,0,0,0,0,40,1.5,8,8,24.1,1370,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1987,4,9,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,18.9,82,101700,0,0,391,0,0,0,0,0,0,0,60,2.1,7,7,24.1,1370,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1987,4,9,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,17.2,73,101700,0,0,384,0,0,0,0,0,0,0,70,3.1,6,6,24.1,1370,9,999999999,300,0.0400,0,88,999.000,999.0,99.0 +1987,4,9,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,17.8,79,101700,0,0,387,0,0,0,0,0,0,0,60,2.1,7,7,24.1,1370,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1987,4,9,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,17.2,76,101800,0,0,376,29,34,25,0,0,0,0,50,3.1,4,4,24.1,77777,9,999999999,309,0.0910,0,88,999.000,999.0,99.0 +1987,4,9,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,17.8,79,101800,71,920,379,108,69,89,10200,4600,9800,1170,80,2.6,5,5,40.2,77777,9,999999999,320,0.0910,0,88,999.000,999.0,99.0 +1987,4,9,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,18.3,71,101900,373,1362,388,468,662,139,32000,56100,16600,2740,60,3.1,4,4,32.2,77777,9,999999999,329,0.0910,0,88,999.000,999.0,99.0 +1987,4,9,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,17.8,56,101900,677,1362,405,659,664,201,55100,66200,22100,4320,90,4.6,4,4,32.2,77777,9,999999999,309,0.0910,0,88,999.000,999.0,99.0 +1987,4,9,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,17.8,58,102000,940,1362,421,739,410,395,71800,43900,41400,11810,50,7.7,8,8,24.1,1370,9,999999999,320,0.0910,0,88,999.000,999.0,99.0 +1987,4,9,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,18.9,59,101900,1143,1362,428,602,277,342,63200,30100,37800,13400,70,6.2,8,8,24.1,1370,9,999999999,340,0.0910,0,88,999.000,999.0,99.0 +1987,4,9,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,17.8,55,101900,1273,1362,427,627,242,392,68300,26300,43600,23270,70,5.7,8,8,32.2,1370,9,999999999,320,0.0910,0,88,999.000,999.0,99.0 +1987,4,9,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,16.1,45,101800,1320,1362,412,874,706,208,96800,72700,26200,18410,80,7.7,3,3,40.2,77777,9,999999999,290,0.0910,0,88,999.000,999.0,99.0 +1987,4,9,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,15.0,40,101700,1282,1362,404,848,849,123,95000,85200,14700,6930,60,7.2,1,1,40.2,77777,9,999999999,270,0.0910,0,88,999.000,999.0,99.0 +1987,4,9,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,15.6,43,101600,1161,1362,402,632,708,129,79200,72100,17600,5410,50,6.2,1,1,32.2,77777,9,999999999,279,0.0910,0,88,999.000,999.0,99.0 +1987,4,9,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,16.7,49,101600,966,1362,397,435,627,108,59300,63400,14200,3070,60,7.7,1,1,32.2,77777,9,999999999,290,0.0910,0,88,999.000,999.0,99.0 +1987,4,9,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,16.7,53,101600,710,1362,391,226,567,56,38800,56800,9200,1400,60,6.7,1,1,32.2,77777,9,999999999,300,0.0910,0,88,999.000,999.0,99.0 +1987,4,9,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,17.2,58,101600,410,1362,395,39,90,28,6500,8100,4100,480,50,6.2,3,3,32.2,77777,9,999999999,300,0.0910,0,88,999.000,999.0,99.0 +1987,4,9,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,17.8,67,101700,98,1079,397,0,0,0,0,0,0,0,60,5.2,6,6,32.2,1370,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1987,4,9,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,17.8,67,101700,0,0,417,0,0,0,0,0,0,0,90,4.6,9,9,24.1,1370,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1987,4,9,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,17.2,64,101800,0,0,396,0,0,0,0,0,0,0,60,5.2,6,6,24.1,1370,9,999999999,300,0.0400,0,88,999.000,999.0,99.0 +1987,4,9,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,16.7,64,101800,0,0,380,0,0,0,0,0,0,0,70,3.6,2,2,24.1,77777,9,999999999,300,0.0400,0,88,999.000,999.0,99.0 +1987,4,9,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,17.2,66,101900,0,0,375,0,0,0,0,0,0,0,60,4.6,1,1,24.1,77777,9,999999999,300,0.0400,0,88,999.000,999.0,99.0 +1987,4,9,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,17.2,69,101900,0,0,381,0,0,0,0,0,0,0,70,3.1,3,3,24.1,77777,9,999999999,309,0.0400,0,88,999.000,999.0,99.0 +1987,4,10,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,16.7,66,101800,0,0,377,0,0,0,0,0,0,0,60,3.1,2,2,24.1,77777,9,999999999,290,0.0400,0,88,999.000,999.0,99.0 +1987,4,10,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,17.8,71,101700,0,0,385,0,0,0,0,0,0,0,60,3.6,4,4,24.1,77777,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1987,4,10,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,17.2,69,101700,0,0,395,0,0,0,0,0,0,0,40,3.1,7,7,24.1,1370,9,999999999,309,0.0400,0,88,999.000,999.0,99.0 +1987,4,10,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,16.7,69,101700,0,0,381,0,0,0,0,0,0,0,80,3.1,4,4,24.1,77777,9,999999999,300,0.0400,0,88,999.000,999.0,99.0 +1987,4,10,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,16.1,64,101700,0,0,383,0,0,0,0,0,0,0,80,4.1,4,4,24.1,77777,9,999999999,290,0.0400,0,88,999.000,999.0,99.0 +1987,4,10,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,16.7,73,101800,0,0,372,27,47,22,0,0,0,0,50,2.6,3,3,24.1,77777,9,999999999,300,0.0870,0,88,999.000,999.0,99.0 +1987,4,10,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,17.2,71,101800,74,942,381,151,270,77,9700,10700,8800,1860,70,2.1,4,4,40.2,77777,9,999999999,309,0.0870,0,88,999.000,999.0,99.0 +1987,4,10,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,18.3,64,101900,377,1362,397,267,240,147,22000,20900,16200,3150,70,5.2,4,4,40.2,77777,9,999999999,329,0.0870,0,88,999.000,999.0,99.0 +1987,4,10,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,16.7,53,101900,681,1362,404,573,565,183,48800,56500,20500,3900,70,5.2,4,4,40.2,77777,9,999999999,300,0.0870,0,88,999.000,999.0,99.0 +1987,4,10,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,16.7,46,102000,943,1362,434,500,192,339,51500,20300,37400,10170,70,6.2,8,8,40.2,1370,9,999999999,290,0.0870,0,88,999.000,999.0,99.0 +1987,4,10,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,17.2,54,101900,1145,1362,416,582,152,439,61900,16100,48300,17390,70,7.2,7,7,40.2,1370,9,999999999,300,0.0870,0,88,999.000,999.0,99.0 +1987,4,10,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,18.3,57,101800,1274,1362,421,828,423,418,86100,44100,44700,28530,120,8.8,7,7,40.2,1370,9,999999999,329,0.0870,0,88,999.000,999.0,99.0 +1987,4,10,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,17.2,51,101700,1321,1362,429,661,264,412,74000,28700,46000,32500,140,8.2,8,8,32.2,1370,9,999999999,309,0.0870,0,88,999.000,999.0,99.0 +1987,4,10,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,18.9,59,101700,1283,1362,428,599,237,397,68600,25800,44200,24870,160,7.2,8,8,32.2,1370,9,999999999,340,0.0870,0,88,999.000,999.0,99.0 +1987,4,10,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,17.2,49,101600,1162,1362,421,584,482,241,72000,50500,28700,10440,60,7.7,6,6,32.2,1370,9,999999999,300,0.0870,0,88,999.000,999.0,99.0 +1987,4,10,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,16.7,49,101600,967,1362,410,421,377,224,53100,39200,25200,6370,70,6.2,4,4,32.2,77777,9,999999999,290,0.0870,0,88,999.000,999.0,99.0 +1987,4,10,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,16.7,54,101600,710,1362,394,228,488,81,36400,49100,10700,1850,70,5.2,2,2,32.2,77777,9,999999999,290,0.0870,0,88,999.000,999.0,99.0 +1987,4,10,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,18.3,62,101600,411,1362,393,47,137,30,8400,12300,4700,520,70,6.7,2,2,32.2,77777,9,999999999,320,0.0870,0,88,999.000,999.0,99.0 +1987,4,10,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,17.8,69,101700,99,1101,376,0,0,0,0,0,0,0,50,5.2,1,1,24.1,77777,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1987,4,10,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,17.8,71,101700,0,0,395,0,0,0,0,0,0,0,0,0.0,7,7,24.1,2130,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1987,4,10,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,17.8,71,101800,0,0,391,0,0,0,0,0,0,0,130,1.5,6,6,24.1,1520,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1987,4,10,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,18.3,74,101800,0,0,388,0,0,0,0,0,0,0,360,1.5,5,5,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1987,4,10,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,18.3,76,101900,0,0,400,0,0,0,0,0,0,0,60,3.1,8,8,24.1,1370,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1987,4,10,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,18.3,76,101800,0,0,380,0,0,0,0,0,0,0,40,2.6,3,3,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1987,4,11,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,18.3,81,101700,0,0,370,0,0,0,0,0,0,0,300,2.1,2,2,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1987,4,11,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,17.8,84,101700,0,0,364,0,0,0,0,0,0,0,290,2.6,2,2,24.1,77777,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1987,4,11,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,18.3,87,101600,0,0,374,0,0,0,0,0,0,0,310,1.5,5,5,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1987,4,11,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,18.3,84,101600,0,0,391,0,0,0,0,0,0,0,0,0.0,8,8,24.1,1520,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1987,4,11,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,18.3,84,101600,0,0,391,0,0,0,0,0,0,0,0,0.0,8,8,24.1,1520,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1987,4,11,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,17.8,79,101600,0,0,387,38,76,29,0,0,0,0,310,1.5,7,7,24.1,1520,9,999999999,320,0.0500,0,88,999.000,999.0,99.0 +1987,4,11,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,18.3,79,101700,77,964,390,123,97,96,11200,6600,10700,1200,0,0.0,7,7,24.1,1520,9,999999999,329,0.0500,0,88,999.000,999.0,99.0 +1987,4,11,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,17.8,69,101700,381,1361,399,405,461,173,30800,40100,19500,3880,320,2.1,7,7,24.1,2440,9,999999999,320,0.0500,0,88,999.000,999.0,99.0 +1987,4,11,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,17.8,62,101800,684,1361,414,488,272,299,46600,27600,32600,7470,180,2.6,8,8,24.1,2440,9,999999999,320,0.0500,0,88,999.000,999.0,99.0 +1987,4,11,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,17.2,58,101800,945,1361,416,488,106,398,51800,11000,44200,13240,220,2.1,9,8,24.1,1370,9,999999999,309,0.0500,0,88,999.000,999.0,99.0 +1987,4,11,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,17.2,60,101800,1147,1361,423,558,218,354,59000,23700,39000,14120,130,4.1,9,9,24.1,1370,9,999999999,309,0.0500,0,88,999.000,999.0,99.0 +1987,4,11,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,17.8,67,101800,1276,1361,428,428,5,422,50200,500,49700,18170,70,4.6,10,10,16.1,1370,9,999999999,320,0.0500,0,88,999.000,999.0,99.0 +1987,4,11,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,16.7,60,101700,1323,1361,430,191,0,191,24000,0,24000,9840,50,5.2,10,10,16.1,760,9,999999999,300,0.0500,0,88,999.000,999.0,99.0 +1987,4,11,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,20.0,87,101700,1284,1361,419,202,16,188,22700,1600,21100,11130,310,5.2,10,10,16.1,760,9,999999999,359,0.0500,0,88,999.000,999.0,99.0 +1987,4,11,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,20.0,82,101600,1163,1361,425,267,10,260,32300,800,31600,12460,360,2.1,10,10,16.1,1370,9,999999999,359,0.0500,0,88,999.000,999.0,99.0 +1987,4,11,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,18.3,58,101500,968,1361,406,349,282,201,45000,30500,23200,5550,0,0.0,6,4,32.2,5490,9,999999999,320,0.0500,0,88,999.000,999.0,99.0 +1987,4,11,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,18.3,62,101500,711,1361,393,226,546,61,37900,54600,9300,1500,180,2.1,2,2,32.2,77777,9,999999999,320,0.0500,0,88,999.000,999.0,99.0 +1987,4,11,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,18.3,67,101500,412,1361,391,54,224,27,10500,20500,4300,560,170,2.1,3,3,32.2,77777,9,999999999,329,0.0500,0,88,999.000,999.0,99.0 +1987,4,11,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,18.3,74,101600,100,1100,385,0,0,0,0,0,0,0,180,1.5,4,4,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1987,4,11,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,18.3,81,101700,0,0,380,0,0,0,0,0,0,0,0,0.0,5,5,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1987,4,11,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,18.9,79,101700,0,0,400,0,0,0,0,0,0,0,0,0.0,8,8,24.1,1370,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1987,4,11,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,18.9,79,101700,0,0,409,0,0,0,0,0,0,0,30,1.5,9,9,24.1,1370,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1987,4,11,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,18.9,79,101700,0,0,409,0,0,0,0,0,0,0,0,0.0,9,9,24.1,1370,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1987,4,11,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,18.9,79,101700,0,0,400,0,0,0,0,0,0,0,0,0.0,8,8,24.1,1100,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1987,4,12,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,17.8,74,101600,0,0,393,0,0,0,0,0,0,0,50,2.1,7,7,24.1,1520,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1987,4,12,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,16.1,73,101700,0,0,371,0,0,0,0,0,0,0,0,0.0,4,4,24.1,77777,9,999999999,290,0.0400,0,88,999.000,999.0,99.0 +1987,4,12,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,16.7,81,101500,0,0,360,0,0,0,0,0,0,0,0,0.0,2,2,24.1,77777,9,999999999,290,0.0400,0,88,999.000,999.0,99.0 +1987,4,12,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,17.2,84,101500,0,0,361,0,0,0,0,0,0,0,0,0.0,2,2,24.1,77777,9,999999999,300,0.0400,0,88,999.000,999.0,99.0 +1987,4,12,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,16.7,87,101500,0,0,355,0,0,0,0,0,0,0,0,0.0,2,2,24.1,77777,9,999999999,300,0.0400,0,88,999.000,999.0,99.0 +1987,4,12,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,17.2,87,101500,0,0,353,47,199,22,0,0,0,0,0,0.0,1,1,24.1,77777,9,999999999,300,0.0330,0,88,999.000,999.0,99.0 +1987,4,12,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,17.8,87,101600,80,986,365,159,352,60,8600,15900,7300,1210,10,1.5,3,3,24.1,77777,9,999999999,320,0.0330,0,88,999.000,999.0,99.0 +1987,4,12,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,18.3,76,101600,385,1360,400,297,280,156,24200,24600,17200,3390,60,2.1,8,8,24.1,1370,9,999999999,329,0.0330,0,88,999.000,999.0,99.0 +1987,4,12,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,18.3,69,101700,688,1360,417,356,106,282,36800,10700,31300,7900,350,3.1,9,9,24.1,1370,9,999999999,329,0.0330,0,88,999.000,999.0,99.0 +1987,4,12,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,18.9,71,101700,948,1360,418,423,259,203,42800,28000,23200,5480,290,2.6,9,9,24.1,1370,9,999999999,340,0.0330,0,88,999.000,999.0,99.0 +1987,4,12,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,20.6,82,101700,1150,1360,417,462,223,252,49600,24300,29000,9770,270,3.1,9,9,24.1,1370,9,999999999,370,0.0330,0,88,999.000,999.0,99.0 +1987,4,12,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,20.0,79,101600,1278,1360,417,461,226,240,51900,24700,28600,14290,330,2.6,9,9,24.1,1370,9,999999999,359,0.0330,0,88,999.000,999.0,99.0 +1987,4,12,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,19.4,69,101600,1324,1360,425,525,117,415,58800,12500,46600,30480,190,3.6,9,9,24.1,1370,9,999999999,350,0.0330,0,88,999.000,999.0,99.0 +1987,4,12,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,17.2,54,101500,1285,1360,423,600,405,254,71000,42600,30600,18200,50,6.7,8,8,32.2,1370,9,999999999,300,0.0330,0,88,999.000,999.0,99.0 +1987,4,12,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,17.2,49,101400,1164,1360,417,408,229,245,49800,25000,28400,9810,60,5.7,5,5,32.2,77777,9,999999999,300,0.0330,0,88,999.000,999.0,99.0 +1987,4,12,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,16.1,48,101400,968,1360,406,412,468,167,53200,47600,19200,4810,70,7.2,3,3,32.2,77777,9,999999999,290,0.0330,0,88,999.000,999.0,99.0 +1987,4,12,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,16.7,54,101500,712,1360,389,239,607,55,39400,59500,8100,1440,40,6.7,1,1,32.2,77777,9,999999999,290,0.0330,0,88,999.000,999.0,99.0 +1987,4,12,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,17.2,60,101500,413,1360,389,50,175,28,9000,16000,4100,580,70,5.2,2,2,32.2,77777,9,999999999,309,0.0330,0,88,999.000,999.0,99.0 +1987,4,12,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,17.2,66,101600,101,1099,375,0,0,0,0,0,0,0,70,5.2,1,1,24.1,77777,9,999999999,300,0.0400,0,88,999.000,999.0,99.0 +1987,4,12,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,17.2,69,101700,0,0,377,0,0,0,0,0,0,0,70,3.6,2,2,24.1,77777,9,999999999,309,0.0400,0,88,999.000,999.0,99.0 +1987,4,12,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,17.2,69,101700,0,0,381,0,0,0,0,0,0,0,60,3.1,3,3,24.1,77777,9,999999999,309,0.0400,0,88,999.000,999.0,99.0 +1987,4,12,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,17.2,71,101800,0,0,370,0,0,0,0,0,0,0,70,3.1,1,1,24.1,77777,9,999999999,309,0.0400,0,88,999.000,999.0,99.0 +1987,4,12,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,17.2,71,101800,0,0,375,0,0,0,0,0,0,0,30,3.6,2,2,24.1,77777,9,999999999,309,0.0400,0,88,999.000,999.0,99.0 +1987,4,12,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,17.8,76,101700,0,0,372,0,0,0,0,0,0,0,70,3.6,2,2,24.1,77777,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1987,4,13,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,17.2,73,101700,0,0,375,0,0,0,0,0,0,0,40,3.1,3,3,24.1,77777,9,999999999,300,0.0400,0,88,999.000,999.0,99.0 +1987,4,13,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,17.2,73,101600,0,0,372,0,0,0,0,0,0,0,50,3.1,2,2,24.1,77777,9,999999999,300,0.0400,0,88,999.000,999.0,99.0 +1987,4,13,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,17.2,73,101600,0,0,378,0,0,0,0,0,0,0,60,2.6,4,4,24.1,77777,9,999999999,300,0.0400,0,88,999.000,999.0,99.0 +1987,4,13,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,17.8,79,101600,0,0,370,0,0,0,0,0,0,0,30,2.6,2,2,24.1,77777,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1987,4,13,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,17.8,79,101600,0,0,370,0,0,0,0,0,0,0,350,2.6,2,2,24.1,77777,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1987,4,13,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,18.3,84,101700,0,0,374,32,52,26,0,0,0,0,40,3.1,4,4,24.1,77777,9,999999999,329,0.0220,0,88,999.000,999.0,99.0 +1987,4,13,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,18.3,81,101700,83,1008,383,201,416,82,10900,18600,9300,1770,50,3.6,6,6,24.1,1370,9,999999999,329,0.0220,0,88,999.000,999.0,99.0 +1987,4,13,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,18.9,76,101800,389,1359,412,218,156,139,19700,13900,15700,3090,60,5.2,9,9,24.1,1370,9,999999999,340,0.0220,0,88,999.000,999.0,99.0 +1987,4,13,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,17.8,64,101800,691,1359,400,565,420,271,50900,43500,28700,6550,60,7.2,6,6,24.1,3050,9,999999999,309,0.0220,0,88,999.000,999.0,99.0 +1987,4,13,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,18.3,60,101800,951,1359,403,832,811,145,73900,80900,17200,3650,70,7.2,4,4,32.2,77777,9,999999999,329,0.0220,0,88,999.000,999.0,99.0 +1987,4,13,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,16.7,49,101800,1152,1359,410,758,564,226,74700,57400,26000,9470,60,7.2,4,4,40.2,77777,9,999999999,290,0.0220,0,88,999.000,999.0,99.0 +1987,4,13,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,16.7,48,101800,1279,1359,420,887,580,321,94300,60800,37000,22510,60,8.2,6,6,40.2,1370,9,999999999,300,0.0220,0,88,999.000,999.0,99.0 +1987,4,13,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,16.1,48,101700,1325,1359,409,969,774,236,106600,79300,29200,22230,60,8.8,4,4,40.2,77777,9,999999999,290,0.0220,0,88,999.000,999.0,99.0 +1987,4,13,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,17.2,53,101600,1286,1359,419,760,438,384,85400,45800,42000,28110,70,8.2,7,7,40.2,1370,9,999999999,309,0.0220,0,88,999.000,999.0,99.0 +1987,4,13,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,17.8,53,101600,1164,1359,414,553,436,242,67900,45700,28600,10620,60,7.2,5,5,40.2,77777,9,999999999,320,0.0220,0,88,999.000,999.0,99.0 +1987,4,13,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,17.2,53,101600,969,1359,411,441,593,130,59800,60900,16300,3850,60,7.2,5,5,40.2,77777,9,999999999,309,0.0220,0,88,999.000,999.0,99.0 +1987,4,13,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,16.7,54,101600,713,1359,394,235,602,52,38900,59000,7900,1400,60,7.7,2,2,32.2,77777,9,999999999,290,0.0220,0,88,999.000,999.0,99.0 +1987,4,13,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,16.7,60,101600,414,1359,389,42,120,27,7600,10800,4300,460,70,7.7,3,3,32.2,77777,9,999999999,300,0.0220,0,88,999.000,999.0,99.0 +1987,4,13,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,17.2,66,101700,103,1121,384,0,0,0,0,0,0,0,60,7.7,3,3,32.2,77777,9,999999999,300,0.0400,0,88,999.000,999.0,99.0 +1987,4,13,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,17.8,76,101700,0,0,376,0,0,0,0,0,0,0,60,7.2,3,3,24.1,77777,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1987,4,13,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,18.3,76,101800,0,0,376,0,0,0,0,0,0,0,50,7.2,2,2,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1987,4,13,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,17.2,71,101900,0,0,375,0,0,0,0,0,0,0,60,7.2,2,2,24.1,77777,9,999999999,309,0.0400,0,88,999.000,999.0,99.0 +1987,4,13,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,16.7,69,101900,0,0,374,0,0,0,0,0,0,0,50,6.7,2,2,24.1,77777,9,999999999,300,0.0400,0,88,999.000,999.0,99.0 +1987,4,13,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,16.7,69,101900,0,0,374,0,0,0,0,0,0,0,30,7.2,2,2,24.1,77777,9,999999999,300,0.0400,0,88,999.000,999.0,99.0 +1987,4,14,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,17.2,76,101900,0,0,369,0,0,0,0,0,0,0,40,4.6,2,2,19.3,77777,9,999999999,309,0.0400,0,88,999.000,999.0,99.0 +1987,4,14,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,16.7,73,101900,0,0,368,0,0,0,0,0,0,0,50,5.2,2,2,19.3,77777,9,999999999,300,0.0400,0,88,999.000,999.0,99.0 +1987,4,14,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,16.7,71,101800,0,0,371,0,0,0,0,0,0,0,60,7.7,2,2,24.1,77777,9,999999999,300,0.0400,0,88,999.000,999.0,99.0 +1987,4,14,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,16.7,71,101700,0,0,375,0,0,0,0,0,0,0,30,4.6,3,3,24.1,77777,9,999999999,300,0.0400,0,88,999.000,999.0,99.0 +1987,4,14,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,17.2,73,101800,0,0,384,0,0,0,0,0,0,0,50,6.7,6,6,19.3,1370,9,999999999,300,0.0400,0,88,999.000,999.0,99.0 +1987,4,14,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,16.7,79,101800,0,0,369,50,130,34,0,0,0,0,40,5.7,4,4,24.1,77777,9,999999999,300,0.0480,0,88,999.000,999.0,99.0 +1987,4,14,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,17.2,76,101800,86,1030,382,144,166,96,11200,7900,10500,2010,40,5.2,6,6,24.1,1370,9,999999999,309,0.0480,0,88,999.000,999.0,99.0 +1987,4,14,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,17.2,71,101900,393,1359,398,320,382,125,23900,33200,14300,2410,70,4.1,8,8,24.1,1370,9,999999999,309,0.0480,0,88,999.000,999.0,99.0 +1987,4,14,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,19.4,82,102000,694,1359,410,274,129,183,27500,13300,20700,4590,60,4.1,9,9,24.1,1370,9,999999999,350,0.0480,0,88,999.000,999.0,99.0 +1987,4,14,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,17.2,62,102000,954,1359,419,353,164,214,36600,17700,24100,5860,60,7.2,9,9,32.2,1370,9,999999999,309,0.0480,0,88,999.000,999.0,99.0 +1987,4,14,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,17.2,60,101900,1154,1359,423,739,293,463,76600,31700,49600,19490,60,7.2,9,9,32.2,1370,9,999999999,309,0.0480,0,88,999.000,999.0,99.0 +1987,4,14,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,16.1,48,101900,1281,1359,409,1063,916,168,105300,91600,18700,8620,60,7.2,4,4,40.2,77777,9,999999999,290,0.0480,0,88,999.000,999.0,99.0 +1987,4,14,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,15.6,46,101800,1326,1359,408,916,753,202,98500,75700,24500,18180,60,10.3,4,4,40.2,77777,9,999999999,279,0.0480,0,88,999.000,999.0,99.0 +1987,4,14,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,16.1,51,101700,1287,1359,410,560,187,400,64200,20000,45200,24010,60,9.8,6,6,40.2,1370,9,999999999,290,0.0480,0,88,999.000,999.0,99.0 +1987,4,14,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,15.6,46,101700,1165,1359,411,584,550,191,71300,56400,22800,8460,60,9.3,5,5,40.2,77777,9,999999999,279,0.0480,0,88,999.000,999.0,99.0 +1987,4,14,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,15.6,46,101600,970,1359,408,442,539,159,58000,55000,18700,4620,60,7.7,4,4,40.2,77777,9,999999999,279,0.0480,0,88,999.000,999.0,99.0 +1987,4,14,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,16.1,52,101600,714,1359,400,217,450,79,34300,45400,10300,1810,70,7.2,4,4,40.2,77777,9,999999999,279,0.0480,0,88,999.000,999.0,99.0 +1987,4,14,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,16.7,58,101700,416,1359,402,52,73,43,7500,6700,5400,740,70,7.2,6,6,32.2,1370,9,999999999,300,0.0480,0,88,999.000,999.0,99.0 +1987,4,14,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,17.2,66,101800,104,1121,384,0,0,0,0,0,0,0,50,7.2,3,3,24.1,77777,9,999999999,300,0.0400,0,88,999.000,999.0,99.0 +1987,4,14,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,16.7,66,101800,0,0,380,0,0,0,0,0,0,0,70,7.2,3,3,24.1,77777,9,999999999,290,0.0400,0,88,999.000,999.0,99.0 +1987,4,14,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,16.7,64,101900,0,0,386,0,0,0,0,0,0,0,60,6.7,4,4,24.1,77777,9,999999999,300,0.0400,0,88,999.000,999.0,99.0 +1987,4,14,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,16.7,66,102000,0,0,380,0,0,0,0,0,0,0,50,5.2,3,3,24.1,77777,9,999999999,290,0.0400,0,88,999.000,999.0,99.0 +1987,4,14,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,17.2,71,102000,0,0,398,0,0,0,0,0,0,0,70,6.2,8,8,24.1,1370,9,999999999,309,0.0400,0,88,999.000,999.0,99.0 +1987,4,14,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,17.2,71,102000,0,0,392,0,0,0,0,0,0,0,70,3.6,7,7,19.3,1830,9,999999999,309,0.0400,0,88,999.000,999.0,99.0 +1987,4,15,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,17.2,71,102000,0,0,381,0,0,0,0,0,0,0,50,5.2,4,4,19.3,77777,9,999999999,309,0.0400,0,88,999.000,999.0,99.0 +1987,4,15,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,16.7,71,101900,0,0,384,0,0,0,0,0,0,0,70,3.6,6,6,19.3,1370,9,999999999,300,0.0400,0,88,999.000,999.0,99.0 +1987,4,15,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,18.3,81,101900,0,0,383,0,0,0,0,0,0,0,40,5.2,6,6,19.3,1370,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1987,4,15,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,18.3,84,101900,0,0,380,0,0,0,0,0,0,0,60,2.6,6,6,19.3,1370,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1987,4,15,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,18.3,90,101800,0,0,379,0,0,0,0,0,0,0,50,3.6,7,7,19.3,1370,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1987,4,15,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,18.3,87,101900,0,0,388,24,26,21,0,0,0,0,50,2.1,8,8,19.3,1370,9,999999999,329,0.0270,0,88,999.000,999.0,99.0 +1987,4,15,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,18.3,87,101900,89,1030,396,100,100,71,8300,5000,7800,1480,70,6.2,9,9,11.3,1370,9,999999999,329,0.0270,0,88,999.000,999.0,99.0 +1987,4,15,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,17.8,81,101900,397,1358,398,208,159,126,18700,14300,14500,2810,60,7.2,9,9,11.3,1370,9,999999999,309,0.0270,0,88,999.000,999.0,99.0 +1987,4,15,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,17.8,74,101900,697,1358,419,182,12,174,20800,900,20300,7310,60,7.7,10,10,11.3,1370,9,999999999,320,0.0270,0,88,999.000,999.0,99.0 +1987,4,15,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,17.8,67,102000,956,1358,428,242,21,224,28200,1700,27000,10390,50,7.7,10,10,11.3,1370,9,999999999,320,0.0270,0,88,999.000,999.0,99.0 +1987,4,15,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,17.2,58,102000,1156,1358,425,423,206,228,45800,22500,26600,8940,60,7.2,9,9,16.1,1370,9,999999999,309,0.0270,0,88,999.000,999.0,99.0 +1987,4,15,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,16.7,54,101900,1282,1358,428,375,86,291,42200,9300,33400,17170,70,7.2,9,9,32.2,1370,9,999999999,300,0.0270,0,88,999.000,999.0,99.0 +1987,4,15,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,16.1,49,101800,1327,1358,434,254,101,159,30600,11100,19700,13060,60,8.2,9,9,32.2,1370,9,999999999,290,0.0270,0,88,999.000,999.0,99.0 +1987,4,15,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,15.6,49,101700,1287,1358,420,777,503,345,88900,52600,38800,25590,60,7.2,8,8,32.2,1370,9,999999999,279,0.0270,0,88,999.000,999.0,99.0 +1987,4,15,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,15.6,49,101600,1166,1358,429,405,93,338,46500,10000,37900,14040,60,8.2,9,9,32.2,7620,9,999999999,279,0.0270,0,88,999.000,999.0,99.0 +1987,4,15,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,15.6,49,101600,970,1358,409,389,412,172,51800,43000,21000,4850,70,6.2,6,6,40.2,7620,9,999999999,279,0.0270,0,88,999.000,999.0,99.0 +1987,4,15,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,16.1,54,101600,715,1358,404,168,59,150,20000,5800,16900,4910,40,9.3,8,6,32.2,7620,9,999999999,279,0.0270,0,88,999.000,999.0,99.0 +1987,4,15,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,16.1,62,101600,417,1358,392,57,38,52,7300,3500,6200,1160,70,6.2,8,6,32.2,7620,9,999999999,290,0.0270,0,88,999.000,999.0,99.0 +1987,4,15,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,16.1,64,101700,105,1120,393,0,0,0,0,0,0,0,60,6.7,8,7,24.1,1370,9,999999999,290,0.0400,0,88,999.000,999.0,99.0 +1987,4,15,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,16.1,64,101800,0,0,400,0,0,0,0,0,0,0,60,7.7,8,8,24.1,1370,9,999999999,290,0.0400,0,88,999.000,999.0,99.0 +1987,4,15,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,16.1,64,101800,0,0,400,0,0,0,0,0,0,0,50,6.2,8,8,24.1,1370,9,999999999,290,0.0400,0,88,999.000,999.0,99.0 +1987,4,15,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,16.1,66,101900,0,0,397,0,0,0,0,0,0,0,60,6.2,8,8,24.1,1370,9,999999999,290,0.0400,0,88,999.000,999.0,99.0 +1987,4,15,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,15.6,64,101900,0,0,405,0,0,0,0,0,0,0,40,4.1,9,9,24.1,1370,9,999999999,279,0.0400,0,88,999.000,999.0,99.0 +1987,4,15,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,15.0,64,101800,0,0,373,0,0,0,0,0,0,0,40,6.2,3,3,24.1,77777,9,999999999,270,0.0400,0,88,999.000,999.0,99.0 +1987,4,16,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,14.4,62,101800,0,0,372,0,0,0,0,0,0,0,70,5.2,3,3,24.1,77777,9,999999999,259,0.0400,0,88,999.000,999.0,99.0 +1987,4,16,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,14.4,62,101700,0,0,381,0,0,0,0,0,0,0,40,4.1,6,6,24.1,1370,9,999999999,259,0.0400,0,88,999.000,999.0,99.0 +1987,4,16,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,16.1,71,101700,0,0,381,0,0,0,0,0,0,0,60,5.2,6,6,24.1,1370,9,999999999,290,0.0400,0,88,999.000,999.0,99.0 +1987,4,16,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,15.6,68,101700,0,0,380,0,0,0,0,0,0,0,50,5.7,6,6,19.3,1370,9,999999999,279,0.0400,0,88,999.000,999.0,99.0 +1987,4,16,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,16.1,69,101700,0,0,383,0,0,0,0,0,0,0,50,6.7,6,6,19.3,1370,9,999999999,290,0.0400,0,88,999.000,999.0,99.0 +1987,4,16,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,16.1,71,101700,0,0,381,52,174,31,0,0,0,0,50,7.7,6,6,24.1,1370,9,999999999,290,0.0170,0,88,999.000,999.0,99.0 +1987,4,16,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,17.2,76,101800,92,1052,382,153,240,82,10200,10400,9200,1960,60,5.7,6,6,24.1,1370,9,999999999,309,0.0170,0,88,999.000,999.0,99.0 +1987,4,16,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,16.7,62,101800,401,1357,400,306,117,245,30400,11100,27100,4780,80,5.2,7,7,32.2,1370,9,999999999,300,0.0170,0,88,999.000,999.0,99.0 +1987,4,16,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,17.2,64,101900,700,1357,407,417,340,177,38300,35500,20000,3920,60,6.2,8,8,32.2,760,9,999999999,300,0.0170,0,88,999.000,999.0,99.0 +1987,4,16,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,18.3,69,101900,958,1357,408,510,374,191,49900,38900,22400,5330,30,6.2,8,8,24.1,760,9,999999999,329,0.0170,0,88,999.000,999.0,99.0 +1987,4,16,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,18.9,74,101900,1157,1357,415,413,136,285,45100,14600,32600,11650,60,6.2,9,9,16.1,760,9,999999999,340,0.0170,0,88,999.000,999.0,99.0 +1987,4,16,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,17.8,58,101800,1283,1357,421,617,448,178,65800,46300,21900,12840,60,7.2,8,8,16.1,760,9,999999999,320,0.0170,0,88,999.000,999.0,99.0 +1987,4,16,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,18.3,62,101800,1328,1357,427,279,46,235,31200,4700,26600,16440,60,6.7,9,9,24.1,760,9,999999999,320,0.0170,0,88,999.000,999.0,99.0 +1987,4,16,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,17.8,60,101700,1288,1357,426,353,103,264,41300,11100,30700,16040,30,7.2,9,9,16.1,760,9,999999999,309,0.0170,0,88,999.000,999.0,99.0 +1987,4,16,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,17.2,56,101600,1166,1357,420,427,278,227,51700,29200,26600,10050,70,6.2,8,8,24.1,760,9,999999999,300,0.0170,0,88,999.000,999.0,99.0 +1987,4,16,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,17.8,64,101600,971,1357,411,335,202,228,41300,21900,25700,6440,60,7.2,8,8,32.2,1370,9,999999999,309,0.0170,0,88,999.000,999.0,99.0 +1987,4,16,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,17.2,64,101600,715,1357,401,211,270,128,29600,27400,15200,2690,60,7.7,7,7,32.2,1370,9,999999999,300,0.0170,0,88,999.000,999.0,99.0 +1987,4,16,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,17.2,66,101700,418,1357,413,46,47,40,6400,4400,5000,900,70,8.2,9,9,24.1,1220,9,999999999,300,0.0170,0,88,999.000,999.0,99.0 +1987,4,16,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,17.8,71,101700,106,1142,410,0,0,0,0,0,0,0,60,7.2,9,9,24.1,1220,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1987,4,16,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,18.3,76,101800,0,0,408,0,0,0,0,0,0,0,70,7.2,9,9,24.1,1220,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1987,4,16,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,17.8,76,101800,0,0,396,0,0,0,0,0,0,0,60,8.2,8,8,24.1,1220,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1987,4,16,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,17.2,73,101800,0,0,389,0,0,0,0,0,0,0,50,7.7,7,7,24.1,1370,9,999999999,300,0.0400,0,88,999.000,999.0,99.0 +1987,4,16,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,17.2,73,101800,0,0,389,0,0,0,0,0,0,0,60,9.3,7,7,24.1,1370,9,999999999,300,0.0400,0,88,999.000,999.0,99.0 +1987,4,16,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,17.2,76,101800,0,0,392,0,0,0,0,0,0,0,60,5.7,8,8,24.1,1370,9,999999999,309,0.0400,0,88,999.000,999.0,99.0 +1987,4,17,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,17.2,71,101800,0,0,392,0,0,0,0,0,0,0,60,5.2,7,7,24.1,1370,9,999999999,309,0.0400,0,88,999.000,999.0,99.0 +1987,4,17,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,16.1,66,101700,0,0,386,0,0,0,0,0,0,0,70,7.7,6,6,24.1,1370,9,999999999,290,0.0400,0,88,999.000,999.0,99.0 +1987,4,17,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,16.7,69,101700,0,0,391,0,0,0,0,0,0,0,50,8.2,7,7,24.1,1370,9,999999999,300,0.0400,0,88,999.000,999.0,99.0 +1987,4,17,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,16.1,66,101700,0,0,391,0,0,0,0,0,0,0,70,7.2,7,7,24.1,1370,9,999999999,290,0.0400,0,88,999.000,999.0,99.0 +1987,4,17,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,16.1,66,101700,0,0,383,0,0,0,0,0,0,0,40,6.2,5,5,24.1,77777,9,999999999,290,0.0400,0,88,999.000,999.0,99.0 +1987,4,17,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,16.1,66,101700,0,0,386,45,63,38,0,0,0,0,40,7.2,6,6,24.1,1370,9,999999999,290,0.0270,0,88,999.000,999.0,99.0 +1987,4,17,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,17.2,71,101800,96,1074,392,219,336,119,14200,14300,12900,3330,70,3.6,7,7,24.1,1370,9,999999999,309,0.0270,0,88,999.000,999.0,99.0 +1987,4,17,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,17.8,67,101900,404,1356,397,436,444,205,34100,39500,22300,4790,60,6.2,6,6,32.2,1370,9,999999999,320,0.0270,0,88,999.000,999.0,99.0 +1987,4,17,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,18.9,76,101900,703,1356,412,362,269,171,33900,28100,19200,3770,60,6.2,9,9,32.2,760,9,999999999,340,0.0270,0,88,999.000,999.0,99.0 +1987,4,17,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,18.3,67,101900,961,1356,412,271,85,199,29300,9100,22800,6100,50,7.2,8,8,32.2,760,9,999999999,329,0.0270,0,88,999.000,999.0,99.0 +1987,4,17,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,18.9,71,101800,1159,1356,430,259,7,253,31200,600,30700,12200,90,5.2,10,10,24.1,760,9,999999999,340,0.0270,0,88,999.000,999.0,99.0 +1987,4,17,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,18.3,64,101800,1285,1356,424,395,92,305,44300,9900,34900,18320,70,7.2,9,9,24.1,760,9,999999999,329,0.0270,0,88,999.000,999.0,99.0 +1987,4,17,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,17.8,60,101800,1329,1356,417,762,588,203,84800,60600,25300,20510,30,5.7,8,8,32.2,760,9,999999999,320,0.0270,0,88,999.000,999.0,99.0 +1987,4,17,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,17.8,56,101700,1288,1356,432,344,137,226,41100,15000,26800,14460,50,7.7,9,9,32.2,760,9,999999999,309,0.0270,0,88,999.000,999.0,99.0 +1987,4,17,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,17.2,53,101700,1167,1356,426,438,325,205,54400,34100,24900,9070,50,7.2,8,8,32.2,760,9,999999999,309,0.0270,0,88,999.000,999.0,99.0 +1987,4,17,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,18.3,67,101700,971,1356,421,191,33,174,21900,3300,19500,6820,50,4.6,9,9,24.1,760,9,999999999,329,0.0270,0,88,999.000,999.0,99.0 +1987,4,17,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,16.7,56,101600,716,1356,409,184,203,121,25600,21300,14300,2550,50,7.2,7,7,32.2,1220,9,999999999,290,0.0270,0,88,999.000,999.0,99.0 +1987,4,17,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,17.2,64,101600,419,1356,401,51,72,42,7400,6600,5300,720,50,6.7,7,7,32.2,1220,9,999999999,300,0.0270,0,88,999.000,999.0,99.0 +1987,4,17,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,17.8,74,101700,108,1141,393,0,0,0,0,0,0,0,50,7.2,7,7,32.2,1220,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1987,4,17,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,17.8,79,101700,0,0,387,0,0,0,0,0,0,0,50,4.6,7,7,24.1,1370,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1987,4,17,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,18.3,79,101800,0,0,396,0,0,0,0,0,0,0,80,5.2,8,8,16.1,1220,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1987,4,17,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,18.3,81,101800,0,0,383,0,0,0,0,0,0,0,80,4.6,6,6,16.1,1220,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1987,4,17,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,17.8,79,101800,0,0,383,0,0,0,0,0,0,0,50,5.2,6,6,24.1,1220,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1987,4,17,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,17.2,79,101800,0,0,389,0,0,0,0,0,0,0,50,6.2,8,8,16.1,1370,9,999999999,309,0.0400,0,88,999.000,999.0,99.0 +1987,4,18,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,18.3,81,101800,0,0,394,0,0,0,0,0,0,0,50,2.6,8,8,16.1,1370,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1987,4,18,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,17.2,76,101700,0,0,392,0,0,0,0,0,0,0,60,6.2,8,8,16.1,1370,9,999999999,309,0.0400,0,88,999.000,999.0,99.0 +1987,4,18,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,17.2,76,101700,0,0,392,0,0,0,0,0,0,0,40,4.1,8,8,16.1,1370,9,999999999,309,0.0400,0,88,999.000,999.0,99.0 +1987,4,18,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,17.2,73,101700,0,0,395,0,0,0,0,0,0,0,50,6.2,8,8,16.1,1370,9,999999999,300,0.0400,0,88,999.000,999.0,99.0 +1987,4,18,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,17.8,81,101700,0,0,390,0,0,0,0,0,0,0,80,4.1,8,8,16.1,1370,9,999999999,309,0.0400,0,88,999.000,999.0,99.0 +1987,4,18,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,16.7,73,101800,0,0,392,26,36,21,0,0,0,0,80,4.6,8,8,16.1,1370,9,999999999,300,0.0210,0,88,999.000,999.0,99.0 +1987,4,18,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,17.2,76,101800,99,1096,401,92,42,79,9000,2800,8700,1320,40,4.6,9,9,16.1,1370,9,999999999,309,0.0210,0,88,999.000,999.0,99.0 +1987,4,18,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,17.2,69,101800,408,1355,390,342,312,180,28000,28000,19600,4030,60,5.7,8,6,24.1,7620,9,999999999,309,0.0210,0,88,999.000,999.0,99.0 +1987,4,18,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,16.7,58,101800,706,1355,398,551,459,224,47800,46100,23800,4960,60,6.2,5,5,32.2,77777,9,999999999,300,0.0210,0,88,999.000,999.0,99.0 +1987,4,18,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,16.1,51,101800,963,1355,400,782,713,171,71900,72500,20300,4890,70,7.2,3,3,32.2,77777,9,999999999,290,0.0210,0,88,999.000,999.0,99.0 +1987,4,18,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,16.1,49,101800,1161,1355,403,1000,907,137,94000,90700,16000,4520,50,7.7,3,3,32.2,77777,9,999999999,290,0.0210,0,88,999.000,999.0,99.0 +1987,4,18,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,15.6,46,101800,1286,1355,405,771,571,211,81400,58700,25600,15460,60,7.7,3,3,32.2,77777,9,999999999,279,0.0210,0,88,999.000,999.0,99.0 +1987,4,18,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,15.0,43,101700,1329,1355,404,998,986,59,108100,99400,10400,5440,40,7.7,2,2,32.2,77777,9,999999999,270,0.0210,0,88,999.000,999.0,99.0 +1987,4,18,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,14.4,41,101600,1289,1355,403,774,743,133,86300,74500,15300,7940,70,8.2,2,2,32.2,77777,9,999999999,259,0.0210,0,88,999.000,999.0,99.0 +1987,4,18,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,16.1,49,101600,1167,1355,394,697,853,85,85500,85700,11500,3480,70,8.2,1,1,32.2,77777,9,999999999,290,0.0210,0,88,999.000,999.0,99.0 +1987,4,18,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,16.1,52,101600,972,1355,407,392,285,242,49300,30800,27200,6900,50,6.2,6,6,40.2,4570,9,999999999,279,0.0210,0,88,999.000,999.0,99.0 +1987,4,18,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,15.6,51,101600,717,1355,400,255,595,71,41600,59300,10200,1690,70,7.2,4,4,40.2,77777,9,999999999,279,0.0210,0,88,999.000,999.0,99.0 +1987,4,18,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,15.6,58,101600,420,1355,381,60,264,27,12100,24300,4600,570,60,5.7,2,2,40.2,77777,9,999999999,279,0.0210,0,88,999.000,999.0,99.0 +1987,4,18,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,15.6,62,101700,109,1141,370,0,0,0,0,0,0,0,80,4.1,1,1,32.2,77777,9,999999999,279,0.0400,0,88,999.000,999.0,99.0 +1987,4,18,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,16.1,66,101700,0,0,368,0,0,0,0,0,0,0,60,4.6,1,1,24.1,77777,9,999999999,290,0.0400,0,88,999.000,999.0,99.0 +1987,4,18,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,16.7,69,101700,0,0,374,0,0,0,0,0,0,0,60,4.6,2,2,24.1,77777,9,999999999,300,0.0400,0,88,999.000,999.0,99.0 +1987,4,18,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,17.2,73,101800,0,0,372,0,0,0,0,0,0,0,60,2.6,2,2,24.1,77777,9,999999999,300,0.0400,0,88,999.000,999.0,99.0 +1987,4,18,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,16.7,71,101700,0,0,371,0,0,0,0,0,0,0,50,3.1,2,2,24.1,77777,9,999999999,300,0.0400,0,88,999.000,999.0,99.0 +1987,4,18,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,17.2,76,101700,0,0,373,0,0,0,0,0,0,0,60,4.1,3,3,24.1,77777,9,999999999,309,0.0400,0,88,999.000,999.0,99.0 +1987,4,19,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,16.7,73,101600,0,0,372,0,0,0,0,0,0,0,60,4.1,3,3,24.1,77777,9,999999999,300,0.0400,0,88,999.000,999.0,99.0 +1987,4,19,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,16.7,76,101600,0,0,369,0,0,0,0,0,0,0,60,3.1,3,3,24.1,77777,9,999999999,300,0.0400,0,88,999.000,999.0,99.0 +1987,4,19,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,16.7,76,101600,0,0,375,0,0,0,0,0,0,0,340,2.1,5,5,24.1,77777,9,999999999,300,0.0400,0,88,999.000,999.0,99.0 +1987,4,19,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,17.2,79,101500,0,0,379,0,0,0,0,0,0,0,60,2.1,6,6,24.1,1370,9,999999999,309,0.0400,0,88,999.000,999.0,99.0 +1987,4,19,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,17.2,81,101600,0,0,381,0,0,0,0,0,0,0,20,2.1,7,7,16.1,1370,9,999999999,300,0.0400,0,88,999.000,999.0,99.0 +1987,4,19,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,17.8,87,101600,0,0,371,43,96,31,0,0,0,0,310,2.6,5,5,16.1,77777,9,999999999,320,0.0280,0,88,999.000,999.0,99.0 +1987,4,19,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,18.9,90,101700,102,1118,389,109,74,86,10100,5100,9600,1370,320,3.1,8,8,24.1,1370,9,999999999,340,0.0280,0,88,999.000,999.0,99.0 +1987,4,19,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,18.9,87,101800,411,1355,385,326,318,160,26500,28700,17800,3460,0,0.0,7,7,32.2,1370,9,999999999,340,0.0280,0,88,999.000,999.0,99.0 +1987,4,19,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,18.9,71,101700,709,1355,403,687,564,285,60900,58600,30100,7010,20,3.1,7,7,32.2,1370,9,999999999,340,0.0280,0,88,999.000,999.0,99.0 +1987,4,19,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,17.8,58,101800,965,1355,409,647,386,316,64000,41600,34200,9320,50,5.2,6,6,32.2,1370,9,999999999,320,0.0280,0,88,999.000,999.0,99.0 +1987,4,19,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,16.7,51,101800,1162,1355,400,945,913,77,90000,91700,11100,3200,70,6.2,2,2,32.2,77777,9,999999999,300,0.0280,0,88,999.000,999.0,99.0 +1987,4,19,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,17.2,51,101600,1287,1355,403,1000,863,152,99500,86400,17200,8630,70,6.7,2,2,40.2,77777,9,999999999,300,0.0280,0,88,999.000,999.0,99.0 +1987,4,19,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,16.1,49,101600,1330,1355,409,1052,902,192,114100,90900,24500,18900,50,5.2,5,5,40.2,77777,9,999999999,290,0.0280,0,88,999.000,999.0,99.0 +1987,4,19,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,16.1,45,101600,1289,1355,415,861,739,224,99900,75800,27600,16810,70,5.7,4,4,40.2,77777,9,999999999,290,0.0280,0,88,999.000,999.0,99.0 +1987,4,19,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,17.2,51,101500,1167,1355,414,454,347,205,56600,36500,25100,9130,40,6.2,5,5,24.1,77777,9,999999999,300,0.0280,0,88,999.000,999.0,99.0 +1987,4,19,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,17.2,49,101500,972,1355,417,461,678,102,63700,68800,14200,3000,40,8.2,5,5,32.2,77777,9,999999999,300,0.0280,0,88,999.000,999.0,99.0 +1987,4,19,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,17.8,64,101500,718,1355,405,188,317,90,29300,32300,12200,1850,40,6.7,7,7,32.2,1520,9,999999999,309,0.0280,0,88,999.000,999.0,99.0 +1987,4,19,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,17.8,58,101500,421,1355,421,62,143,45,10200,12900,6200,790,30,6.7,8,8,24.1,1520,9,999999999,309,0.0280,0,88,999.000,999.0,99.0 +1987,4,19,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,18.9,87,101600,110,1163,400,0,0,0,0,0,0,0,50,4.6,9,9,16.1,1220,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1987,4,19,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,18.9,84,101700,0,0,384,0,0,0,0,0,0,0,10,4.1,6,6,24.1,1220,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1987,4,19,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,17.8,74,101700,0,0,385,0,0,0,0,0,0,0,40,4.6,5,5,24.1,77777,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1987,4,19,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,18.3,69,101800,0,0,384,0,0,0,0,0,0,0,360,2.1,2,2,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1987,4,19,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,17.8,74,101700,0,0,399,0,0,0,0,0,0,0,50,3.6,8,8,24.1,1370,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1987,4,19,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,18.9,79,101700,0,0,386,0,0,0,0,0,0,0,320,2.6,5,5,24.1,77777,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1987,4,20,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,18.9,87,101600,0,0,385,0,0,0,0,0,0,0,30,3.6,7,7,24.1,1370,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1987,4,20,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,18.3,79,101500,0,0,373,0,0,0,0,0,0,0,310,2.6,2,2,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1987,4,20,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,17.8,87,101500,0,0,361,0,0,0,0,0,0,0,300,2.1,2,2,24.1,77777,9,999999999,309,0.0400,0,88,999.000,999.0,99.0 +1987,4,20,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,17.8,87,101500,0,0,368,0,0,0,0,0,0,0,340,1.5,4,4,24.1,77777,9,999999999,309,0.0400,0,88,999.000,999.0,99.0 +1987,4,20,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,17.8,84,101500,0,0,359,0,0,0,0,0,0,0,60,1.5,1,1,24.1,77777,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1987,4,20,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,17.8,87,101500,0,0,361,55,238,26,0,0,0,0,300,1.5,2,2,24.1,77777,9,999999999,309,0.0180,0,88,999.000,999.0,99.0 +1987,4,20,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,18.3,87,101500,105,1117,365,242,628,50,10700,31900,7700,730,300,2.6,2,2,32.2,77777,9,999999999,329,0.0180,0,88,999.000,999.0,99.0 +1987,4,20,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,18.9,76,101600,415,1354,379,465,719,87,31500,63200,12100,1580,360,1.5,2,2,32.2,77777,9,999999999,340,0.0180,0,88,999.000,999.0,99.0 +1987,4,20,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,18.3,67,101600,712,1354,391,616,678,132,51100,67000,15800,2850,160,3.1,3,3,32.2,77777,9,999999999,329,0.0180,0,88,999.000,999.0,99.0 +1987,4,20,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,18.3,62,101600,967,1354,407,728,572,236,69400,59400,26800,6800,0,0.0,6,6,32.2,1370,9,999999999,320,0.0180,0,88,999.000,999.0,99.0 +1987,4,20,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,17.8,56,101500,1164,1354,408,874,679,228,86300,69100,26700,10050,70,3.6,5,5,32.2,77777,9,999999999,309,0.0180,0,88,999.000,999.0,99.0 +1987,4,20,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,19.4,59,101500,1288,1354,410,957,801,169,99400,81100,22100,11980,140,6.7,3,3,40.2,77777,9,999999999,350,0.0180,0,88,999.000,999.0,99.0 +1987,4,20,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,18.9,57,101400,1331,1354,405,942,831,149,98900,83300,16800,12520,130,6.7,2,2,40.2,77777,9,999999999,340,0.0180,0,88,999.000,999.0,99.0 +1987,4,20,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,19.4,61,101300,1290,1354,398,839,916,49,97700,92400,9500,3490,140,7.7,1,1,40.2,77777,9,999999999,350,0.0180,0,88,999.000,999.0,99.0 +1987,4,20,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,19.4,63,101300,1168,1354,400,666,878,34,84900,88500,8300,1640,140,7.7,2,2,40.2,77777,9,999999999,350,0.0180,0,88,999.000,999.0,99.0 +1987,4,20,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,18.9,60,101300,973,1354,399,481,830,41,68000,83200,8100,1440,150,6.7,2,2,40.2,77777,9,999999999,329,0.0180,0,88,999.000,999.0,99.0 +1987,4,20,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,17.8,58,101300,719,1354,409,157,170,104,22000,17900,12500,2160,160,5.2,6,6,32.2,1370,9,999999999,309,0.0180,0,88,999.000,999.0,99.0 +1987,4,20,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,18.3,64,101300,422,1354,390,55,226,27,10900,20800,4400,570,130,4.6,2,2,32.2,77777,9,999999999,320,0.0180,0,88,999.000,999.0,99.0 +1987,4,20,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,17.2,66,101300,112,1162,384,0,0,0,0,0,0,0,170,2.1,3,3,24.1,77777,9,999999999,300,0.0400,0,88,999.000,999.0,99.0 +1987,4,20,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,17.8,69,101400,0,0,394,0,0,0,0,0,0,0,50,2.6,6,6,24.1,1370,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1987,4,20,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,17.2,71,101400,0,0,375,0,0,0,0,0,0,0,0,0.0,2,2,24.1,77777,9,999999999,309,0.0400,0,88,999.000,999.0,99.0 +1987,4,20,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,17.8,76,101400,0,0,367,0,0,0,0,0,0,0,0,0.0,1,1,24.1,77777,9,999999999,309,0.0400,0,88,999.000,999.0,99.0 +1987,4,20,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,17.8,76,101400,0,0,367,0,0,0,0,0,0,0,0,0.0,1,1,24.1,77777,9,999999999,309,0.0400,0,88,999.000,999.0,99.0 +1987,4,20,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,17.8,79,101400,0,0,379,0,0,0,0,0,0,0,0,0.0,5,5,24.1,77777,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1987,4,21,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,17.8,79,101300,0,0,387,0,0,0,0,0,0,0,0,0.0,7,7,24.1,1370,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1987,4,21,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,17.8,81,101200,0,0,376,0,0,0,0,0,0,0,10,1.5,5,5,24.1,77777,9,999999999,309,0.0400,0,88,999.000,999.0,99.0 +1987,4,21,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,17.2,87,101100,0,0,358,0,0,0,0,0,0,0,0,0.0,2,2,24.1,77777,9,999999999,300,0.0400,0,88,999.000,999.0,99.0 +1987,4,21,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,17.2,87,101100,0,0,374,0,0,0,0,0,0,0,0,0.0,7,7,24.1,1370,9,999999999,300,0.0400,0,88,999.000,999.0,99.0 +1987,4,21,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,17.8,81,101100,0,0,398,0,0,0,0,0,0,0,0,0.0,9,9,24.1,1370,9,999999999,309,0.0400,0,88,999.000,999.0,99.0 +1987,4,21,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,17.8,81,101100,0,0,398,34,19,32,0,0,0,0,0,0.0,9,9,24.1,1520,9,999999999,309,0.0180,0,88,999.000,999.0,99.0 +1987,4,21,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,18.9,87,101200,108,1139,411,48,3,47,5100,0,5100,1340,0,0.0,10,10,16.1,1370,9,999999999,329,0.0180,0,88,999.000,999.0,99.0 +1987,4,21,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,18.9,82,101200,418,1353,406,188,93,139,18400,8600,15700,3560,110,1.5,9,9,24.1,1370,9,999999999,340,0.0180,0,88,999.000,999.0,99.0 +1987,4,21,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,19.4,82,101200,714,1353,410,398,63,353,42200,6400,38800,9480,130,1.5,9,9,32.2,1370,9,999999999,350,0.0180,0,88,999.000,999.0,99.0 +1987,4,21,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,18.9,65,101200,970,1353,404,862,769,198,78700,77600,22900,5640,250,1.5,5,5,32.2,77777,9,999999999,340,0.0180,0,88,999.000,999.0,99.0 +1987,4,21,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,18.3,55,101200,1165,1353,412,702,427,295,71700,44700,33100,13320,200,3.6,4,4,32.2,77777,9,999999999,329,0.0180,0,88,999.000,999.0,99.0 +1987,4,21,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,18.9,57,101100,1289,1353,416,828,479,356,87600,50100,39800,27420,200,3.6,5,5,32.2,77777,9,999999999,340,0.0180,0,88,999.000,999.0,99.0 +1987,4,21,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,18.9,67,101100,1331,1353,437,508,6,503,59500,600,59000,20630,160,5.2,10,10,16.1,1370,9,999999999,340,0.0180,0,88,999.000,999.0,99.0 +1987,4,21,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,20.0,74,101000,1290,1353,435,209,8,203,26300,600,25700,10350,140,5.2,10,10,16.1,1370,9,999999999,359,0.0180,0,88,999.000,999.0,99.0 +1987,4,21,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,19.4,67,101000,1168,1353,428,526,354,271,62900,37100,30900,12280,180,2.1,9,9,24.1,1370,9,999999999,350,0.0180,0,88,999.000,999.0,99.0 +1987,4,21,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,20.0,76,100900,973,1353,431,267,61,235,30800,6200,26400,8940,150,8.2,10,10,24.1,1370,9,999999999,350,0.0180,0,88,999.000,999.0,99.0 +1987,4,21,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,19.4,82,100900,719,1353,421,78,16,73,9100,1600,8200,2570,150,6.7,10,10,19.3,1220,9,999999999,350,0.0180,0,88,999.000,999.0,99.0 +1987,4,21,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,17.8,76,100900,424,1353,416,23,3,23,3000,100,3000,1060,170,3.6,10,10,19.3,1220,9,999999999,309,0.0180,0,88,999.000,999.0,99.0 +1987,4,21,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,20.0,93,101000,113,1161,412,0,0,0,0,0,0,0,280,3.1,10,10,11.3,700,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1987,4,21,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,18.3,90,101100,0,0,393,0,0,0,0,0,0,0,360,4.1,9,9,16.1,700,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1987,4,21,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,18.3,87,101200,0,0,377,0,0,0,0,0,0,0,350,2.6,6,6,16.1,1220,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1987,4,21,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,17.2,79,101200,0,0,373,0,0,0,0,0,0,0,10,4.6,4,4,24.1,77777,9,999999999,309,0.0400,0,88,999.000,999.0,99.0 +1987,4,21,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,16.1,76,101200,0,0,366,0,0,0,0,0,0,0,350,2.1,3,3,24.1,77777,9,999999999,290,0.0400,0,88,999.000,999.0,99.0 +1987,4,21,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,14.4,71,101200,0,0,353,0,0,0,0,0,0,0,40,5.2,1,1,24.1,77777,9,999999999,259,0.0400,0,88,999.000,999.0,99.0 +1987,4,22,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,15.6,76,101100,0,0,347,0,0,0,0,0,0,0,10,3.1,0,0,24.1,77777,9,999999999,279,0.0400,0,88,999.000,999.0,99.0 +1987,4,22,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,15.0,78,101100,0,0,348,0,0,0,0,0,0,0,300,2.1,1,1,24.1,77777,9,999999999,270,0.0400,0,88,999.000,999.0,99.0 +1987,4,22,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,15.6,87,101100,0,0,348,0,0,0,0,0,0,0,0,0.0,2,2,24.1,77777,9,999999999,279,0.0400,0,88,999.000,999.0,99.0 +1987,4,22,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,16.1,84,101100,0,0,371,0,0,0,0,0,0,0,0,0.0,7,7,24.1,1520,9,999999999,279,0.0400,0,88,999.000,999.0,99.0 +1987,4,22,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,15.6,84,101100,0,0,357,0,0,0,0,0,0,0,330,2.1,4,4,24.1,77777,9,999999999,270,0.0400,0,88,999.000,999.0,99.0 +1987,4,22,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,15.0,84,101100,0,0,347,50,186,28,0,0,0,0,290,2.1,2,2,24.1,77777,9,999999999,270,0.0630,0,88,999.000,999.0,99.0 +1987,4,22,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,16.1,84,101200,111,1161,354,263,631,66,12200,30800,9200,840,330,2.1,2,2,32.2,77777,9,999999999,279,0.0630,0,88,999.000,999.0,99.0 +1987,4,22,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,16.1,66,101200,421,1352,373,502,770,93,34000,67800,12800,1670,360,2.1,2,2,40.2,77777,9,999999999,279,0.0630,0,88,999.000,999.0,99.0 +1987,4,22,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,16.1,60,101300,717,1352,391,586,519,213,50800,52300,23000,4720,10,2.6,5,5,40.2,77777,9,999999999,290,0.0630,0,88,999.000,999.0,99.0 +1987,4,22,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,15.0,54,101300,971,1352,396,707,583,202,65200,58800,22800,5760,60,3.1,6,6,40.2,1220,9,999999999,270,0.0630,0,88,999.000,999.0,99.0 +1987,4,22,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,15.6,54,101200,1167,1352,405,866,553,337,86900,57700,37000,15420,10,4.1,7,7,40.2,1220,9,999999999,279,0.0630,0,88,999.000,999.0,99.0 +1987,4,22,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,15.0,46,101200,1290,1352,405,924,723,211,97500,74300,26400,16120,110,4.6,4,4,40.2,77777,9,999999999,270,0.0630,0,88,999.000,999.0,99.0 +1987,4,22,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,16.1,49,101100,1332,1352,413,1028,812,252,112900,83000,30900,27370,60,6.2,6,6,40.2,1220,9,999999999,279,0.0630,0,88,999.000,999.0,99.0 +1987,4,22,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,15.6,46,101100,1291,1352,415,772,615,240,88700,62900,28500,18330,50,6.2,6,6,40.2,1220,9,999999999,279,0.0630,0,88,999.000,999.0,99.0 +1987,4,22,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,16.1,49,101000,1168,1352,406,598,543,207,72400,55600,24300,9360,50,5.2,4,4,40.2,77777,9,999999999,279,0.0630,0,88,999.000,999.0,99.0 +1987,4,22,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,16.7,51,101000,974,1352,410,467,650,121,62600,65600,15300,3420,50,5.7,5,5,40.2,77777,9,999999999,290,0.0630,0,88,999.000,999.0,99.0 +1987,4,22,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,17.8,64,101000,720,1352,405,209,205,145,28100,21600,16600,3140,60,6.7,7,7,40.2,1220,9,999999999,309,0.0630,0,88,999.000,999.0,99.0 +1987,4,22,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,17.2,62,101100,425,1352,386,54,164,33,9900,14900,5200,570,60,2.6,2,2,40.2,77777,9,999999999,300,0.0630,0,88,999.000,999.0,99.0 +1987,4,22,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,16.7,66,101100,114,1183,380,0,0,0,0,0,0,0,310,2.6,3,3,24.1,77777,9,999999999,290,0.0400,0,88,999.000,999.0,99.0 +1987,4,22,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,16.7,69,101200,0,0,374,0,0,0,0,0,0,0,20,3.6,2,2,24.1,77777,9,999999999,300,0.0400,0,88,999.000,999.0,99.0 +1987,4,22,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,16.7,71,101300,0,0,371,0,0,0,0,0,0,0,360,2.1,2,2,24.1,77777,9,999999999,290,0.0400,0,88,999.000,999.0,99.0 +1987,4,22,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,16.7,73,101300,0,0,368,0,0,0,0,0,0,0,0,0.0,2,2,24.1,77777,9,999999999,290,0.0400,0,88,999.000,999.0,99.0 +1987,4,22,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,17.2,73,101300,0,0,375,0,0,0,0,0,0,0,30,3.6,3,3,24.1,77777,9,999999999,300,0.0400,0,88,999.000,999.0,99.0 +1987,4,22,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,17.2,79,101300,0,0,366,0,0,0,0,0,0,0,0,0.0,2,2,24.1,77777,9,999999999,309,0.0400,0,88,999.000,999.0,99.0 +1987,4,23,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,17.2,79,101300,0,0,366,0,0,0,0,0,0,0,320,1.5,2,2,24.1,77777,9,999999999,309,0.0400,0,88,999.000,999.0,99.0 +1987,4,23,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,17.8,79,101200,0,0,373,0,0,0,0,0,0,0,10,2.1,3,3,24.1,77777,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1987,4,23,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,17.2,81,101200,0,0,359,0,0,0,0,0,0,0,310,2.1,1,1,24.1,77777,9,999999999,300,0.0400,0,88,999.000,999.0,99.0 +1987,4,23,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,17.2,81,101200,0,0,364,0,0,0,0,0,0,0,0,0.0,2,2,24.1,77777,9,999999999,300,0.0400,0,88,999.000,999.0,99.0 +1987,4,23,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,17.2,84,101200,0,0,356,0,0,0,0,0,0,0,0,0.0,1,1,24.1,77777,9,999999999,300,0.0400,0,88,999.000,999.0,99.0 +1987,4,23,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,17.2,87,101300,0,0,353,55,274,21,0,0,0,0,300,1.5,1,1,24.1,77777,9,999999999,300,0.0280,0,88,999.000,999.0,99.0 +1987,4,23,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,17.8,81,101400,114,1183,367,263,691,47,11400,36400,7700,720,310,3.1,2,2,32.2,77777,9,999999999,309,0.0280,0,88,999.000,999.0,99.0 +1987,4,23,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,17.8,69,101400,424,1352,376,479,809,49,31900,73400,8800,1040,320,3.1,1,1,32.2,77777,9,999999999,320,0.0280,0,88,999.000,999.0,99.0 +1987,4,23,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,17.8,60,101400,720,1352,399,650,675,163,53900,66100,18600,3410,150,1.5,4,4,32.2,77777,9,999999999,309,0.0280,0,88,999.000,999.0,99.0 +1987,4,23,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,17.2,51,101500,973,1352,414,591,332,304,59000,35800,33200,9020,100,3.1,5,5,32.2,77777,9,999999999,300,0.0280,0,88,999.000,999.0,99.0 +1987,4,23,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,18.3,57,101400,1168,1352,421,659,360,315,67300,37600,34700,14450,110,3.1,7,7,32.2,1370,9,999999999,329,0.0280,0,88,999.000,999.0,99.0 +1987,4,23,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,18.3,57,101400,1291,1352,416,861,609,260,89700,62000,30400,19880,170,5.2,6,6,32.2,1370,9,999999999,329,0.0280,0,88,999.000,999.0,99.0 +1987,4,23,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,18.3,57,101300,1332,1352,416,909,676,262,99400,68900,31200,28860,210,3.6,6,6,32.2,1370,9,999999999,329,0.0280,0,88,999.000,999.0,99.0 +1987,4,23,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,19.4,65,101300,1291,1352,416,553,339,260,65000,35600,30900,20290,220,3.1,7,7,32.2,1370,9,999999999,350,0.0280,0,88,999.000,999.0,99.0 +1987,4,23,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,20.6,82,101300,1169,1352,417,303,138,203,37000,15100,23900,8280,250,3.1,9,9,24.1,1370,9,999999999,370,0.0280,0,88,999.000,999.0,99.0 +1987,4,23,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,20.0,65,101200,974,1352,426,247,101,194,30200,10800,22400,6050,270,4.1,8,8,32.2,1370,9,999999999,359,0.0280,0,88,999.000,999.0,99.0 +1987,4,23,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,19.4,71,101300,721,1352,422,100,70,79,13600,7400,9600,2010,260,4.1,9,9,24.1,1220,9,999999999,350,0.0280,0,88,999.000,999.0,99.0 +1987,4,23,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,19.4,74,101300,426,1352,410,28,29,24,4000,2700,3100,540,160,2.1,8,8,24.1,760,9,999999999,350,0.0280,0,88,999.000,999.0,99.0 +1987,4,23,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,17.8,69,101400,116,1183,388,0,0,0,0,0,0,0,60,2.1,4,4,24.1,77777,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1987,4,23,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,18.3,74,101400,0,0,382,0,0,0,0,0,0,0,30,3.1,3,3,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1987,4,23,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,19.4,82,101500,0,0,410,0,0,0,0,0,0,0,360,1.5,9,9,24.1,1220,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1987,4,23,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,18.9,79,101500,0,0,390,0,0,0,0,0,0,0,360,2.6,6,6,24.1,1370,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1987,4,23,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,18.9,82,101500,0,0,374,0,0,0,0,0,0,0,40,2.1,2,2,24.1,77777,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1987,4,23,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,18.9,82,101500,0,0,369,0,0,0,0,0,0,0,30,2.6,1,1,24.1,77777,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1987,4,24,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,18.9,84,101400,0,0,366,0,0,0,0,0,0,0,60,2.1,1,1,24.1,77777,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1987,4,24,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,18.3,81,101300,0,0,370,0,0,0,0,0,0,0,0,0.0,2,2,24.1,77777,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1987,4,24,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,18.9,84,101300,0,0,388,0,0,0,0,0,0,0,320,2.1,7,7,24.1,1370,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1987,4,24,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,18.9,87,101300,0,0,385,0,0,0,0,0,0,0,0,0.0,7,7,24.1,1370,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1987,4,24,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,18.9,82,101400,0,0,391,0,0,0,0,0,0,0,0,0.0,7,7,24.1,1370,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1987,4,24,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,18.9,84,101400,0,0,388,38,34,34,0,0,0,0,0,0.0,7,7,24.1,1370,9,999999999,340,0.0870,0,88,999.000,999.0,99.0 +1987,4,24,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,19.4,84,101500,117,1182,374,236,507,76,12100,25500,9500,1560,0,0.0,2,2,32.2,77777,9,999999999,350,0.0870,0,88,999.000,999.0,99.0 +1987,4,24,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,18.9,69,101500,427,1351,392,486,664,131,34900,59500,16000,2540,300,1.5,3,3,40.2,77777,9,999999999,340,0.0870,0,88,999.000,999.0,99.0 +1987,4,24,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,19.4,67,101500,722,1351,401,641,579,222,55200,58400,23900,4960,150,2.1,4,4,40.2,77777,9,999999999,350,0.0870,0,88,999.000,999.0,99.0 +1987,4,24,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,20.6,69,101500,975,1351,406,820,723,193,75300,73200,22400,5590,120,4.1,4,4,40.2,77777,9,999999999,370,0.0870,0,88,999.000,999.0,99.0 +1987,4,24,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,20.6,67,101500,1169,1351,420,694,247,458,73400,26200,50600,19450,160,4.1,7,7,40.2,6710,9,999999999,370,0.0870,0,88,999.000,999.0,99.0 +1987,4,24,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,20.6,63,101400,1291,1351,418,776,393,387,81600,41100,42300,30780,200,4.6,5,5,40.2,77777,9,999999999,370,0.0870,0,88,999.000,999.0,99.0 +1987,4,24,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,20.0,61,101400,1333,1351,414,805,499,327,89700,52300,37900,37560,180,3.6,4,4,40.2,77777,9,999999999,359,0.0870,0,88,999.000,999.0,99.0 +1987,4,24,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,20.0,59,101300,1291,1351,417,780,627,237,89800,64100,28300,18340,180,3.6,4,4,40.2,77777,9,999999999,359,0.0870,0,88,999.000,999.0,99.0 +1987,4,24,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,19.4,59,101200,1169,1351,410,670,650,201,81900,66600,24100,9160,200,4.6,3,3,40.2,77777,9,999999999,350,0.0870,0,88,999.000,999.0,99.0 +1987,4,24,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,19.4,59,101200,975,1351,410,460,622,128,62600,64000,16300,3860,190,3.6,3,3,40.2,77777,9,999999999,350,0.0870,0,88,999.000,999.0,99.0 +1987,4,24,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,20.0,63,101200,721,1351,404,241,514,79,38400,52000,10600,1830,210,4.1,2,2,40.2,77777,9,999999999,359,0.0870,0,88,999.000,999.0,99.0 +1987,4,24,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,20.0,67,101200,427,1351,398,48,144,30,8900,13100,4800,520,240,2.6,2,2,40.2,77777,9,999999999,359,0.0870,0,88,999.000,999.0,99.0 +1987,4,24,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,19.4,71,101300,117,1182,389,0,0,0,0,0,0,0,230,3.1,5,2,32.2,77777,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1987,4,24,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,19.4,74,101300,0,0,389,0,0,0,0,0,0,0,270,2.1,5,3,24.1,77777,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1987,4,24,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,20.0,76,101400,0,0,396,0,0,0,0,0,0,0,270,2.6,5,5,24.1,77777,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1987,4,24,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,20.0,79,101500,0,0,387,0,0,0,0,0,0,0,280,1.5,3,3,24.1,77777,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1987,4,24,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,20.0,82,101500,0,0,387,0,0,0,0,0,0,0,260,1.5,4,4,24.1,77777,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1987,4,24,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,21.1,90,101400,0,0,412,0,0,0,0,0,0,0,270,1.5,9,9,16.1,760,9,999999999,379,0.0400,0,88,999.000,999.0,99.0 +1987,4,25,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,20.6,90,101400,0,0,385,0,0,0,0,0,0,0,0,0.0,5,5,24.1,77777,9,999999999,370,0.0400,0,88,999.000,999.0,99.0 +1987,4,25,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,18.9,87,101300,0,0,377,0,0,0,0,0,0,0,0,0.0,5,5,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1987,4,25,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,20.0,90,101200,0,0,390,0,0,0,0,0,0,0,350,1.5,7,7,16.1,1370,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1987,4,25,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,20.0,87,101200,0,0,407,0,0,0,0,0,0,0,0,0.0,9,9,16.1,610,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1987,4,25,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,19.4,82,101200,0,0,401,0,0,0,0,0,0,0,230,3.1,8,8,16.1,610,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1987,4,25,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,19.4,79,101300,0,0,397,49,50,43,0,0,0,0,210,2.6,7,7,24.1,7620,9,999999999,350,0.0430,0,88,999.000,999.0,99.0 +1987,4,25,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,18.9,74,101300,120,1204,392,165,203,100,12400,10700,11300,2100,250,3.1,5,5,24.1,77777,9,999999999,340,0.0430,0,88,999.000,999.0,99.0 +1987,4,25,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,19.4,69,101300,430,1350,416,395,235,269,35600,21200,28900,6080,220,4.1,8,8,32.2,1370,9,999999999,350,0.0430,0,88,999.000,999.0,99.0 +1987,4,25,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,19.4,71,101400,724,1350,422,380,107,302,39400,10900,33600,8660,250,3.6,9,9,32.2,1220,9,999999999,350,0.0430,0,88,999.000,999.0,99.0 +1987,4,25,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,19.4,67,101400,977,1350,419,568,290,316,57000,31300,34300,9480,230,5.2,8,8,32.2,2740,9,999999999,350,0.0430,0,88,999.000,999.0,99.0 +1987,4,25,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,19.4,61,101300,1171,1350,429,791,446,363,79500,46500,39100,16980,250,4.1,8,8,40.2,2740,9,999999999,350,0.0430,0,88,999.000,999.0,99.0 +1987,4,25,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,19.4,61,101300,1292,1350,429,661,269,395,72300,29300,44200,27500,220,4.6,8,8,40.2,1370,9,999999999,350,0.0430,0,88,999.000,999.0,99.0 +1987,4,25,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,19.4,61,101200,1333,1350,429,588,178,417,66000,19100,47100,36390,240,5.7,8,8,40.2,1370,9,999999999,350,0.0430,0,88,999.000,999.0,99.0 +1987,4,25,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,19.4,65,101100,1291,1350,423,562,246,348,65300,26800,39500,23920,260,6.2,8,8,40.2,1220,9,999999999,350,0.0430,0,88,999.000,999.0,99.0 +1987,4,25,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,20.0,63,101100,1169,1350,418,574,381,298,67900,39800,33300,13720,230,5.7,6,6,40.2,1220,9,999999999,359,0.0430,0,88,999.000,999.0,99.0 +1987,4,25,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,17.8,53,101000,975,1350,423,420,367,224,53000,38200,25300,6530,260,6.2,7,7,40.2,1520,9,999999999,309,0.0430,0,88,999.000,999.0,99.0 +1987,4,25,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,18.3,58,101000,722,1350,409,202,399,76,31600,40400,9900,1770,260,6.2,5,5,40.2,77777,9,999999999,320,0.0430,0,88,999.000,999.0,99.0 +1987,4,25,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,18.9,74,101100,428,1350,400,51,93,40,8000,8600,5300,690,310,7.2,7,7,32.2,1520,9,999999999,340,0.0430,0,88,999.000,999.0,99.0 +1987,4,25,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,17.8,71,101100,119,1204,382,0,0,0,0,0,0,0,320,3.1,5,3,32.2,77777,9,999999999,309,0.0400,0,88,999.000,999.0,99.0 +1987,4,25,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,18.3,76,101100,0,0,380,0,0,0,0,0,0,0,300,2.6,3,3,24.1,77777,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1987,4,25,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,18.3,76,101200,0,0,376,0,0,0,0,0,0,0,310,2.6,2,2,24.1,77777,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1987,4,25,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,17.8,76,101300,0,0,367,0,0,0,0,0,0,0,320,2.1,1,1,24.1,77777,9,999999999,309,0.0400,0,88,999.000,999.0,99.0 +1987,4,25,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,17.8,76,101300,0,0,367,0,0,0,0,0,0,0,340,2.6,1,1,24.1,77777,9,999999999,309,0.0400,0,88,999.000,999.0,99.0 +1987,4,25,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,17.8,79,101300,0,0,365,0,0,0,0,0,0,0,350,2.6,1,1,24.1,77777,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1987,4,26,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,17.8,79,101200,0,0,365,0,0,0,0,0,0,0,340,1.5,1,1,24.1,77777,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1987,4,26,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,17.2,73,101200,0,0,367,0,0,0,0,0,0,0,340,2.6,1,1,24.1,77777,9,999999999,300,0.0400,0,88,999.000,999.0,99.0 +1987,4,26,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,16.7,79,101100,0,0,363,0,0,0,0,0,0,0,350,2.1,2,2,24.1,77777,9,999999999,300,0.0400,0,88,999.000,999.0,99.0 +1987,4,26,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,16.1,76,101100,0,0,366,0,0,0,0,0,0,0,320,2.1,3,3,24.1,77777,9,999999999,290,0.0400,0,88,999.000,999.0,99.0 +1987,4,26,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,16.7,76,101200,0,0,378,0,0,0,0,0,0,0,330,3.1,6,6,24.1,1370,9,999999999,290,0.0400,0,88,999.000,999.0,99.0 +1987,4,26,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,18.3,90,101300,0,0,393,26,21,23,0,0,0,0,320,3.6,9,9,11.3,1370,9,999999999,320,0.0170,0,88,999.000,999.0,99.0 +1987,4,26,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,18.9,90,101300,123,1226,408,56,2,55,5900,0,5900,1490,0,0.0,10,10,16.1,1370,9,999999999,340,0.0170,0,88,999.000,999.0,99.0 +1987,4,26,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,17.8,81,101400,433,1349,410,144,8,140,15800,600,15600,4810,350,2.6,10,10,12.9,1370,9,999999999,309,0.0170,0,88,999.000,999.0,99.0 +1987,4,26,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,17.2,73,101500,727,1349,404,236,96,166,24300,10000,18900,4250,330,3.1,9,9,16.1,1370,9,999999999,300,0.0170,0,88,999.000,999.0,99.0 +1987,4,26,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,17.2,71,101500,979,1349,407,675,226,478,68700,23700,51500,15040,20,7.2,9,9,24.1,1370,9,999999999,309,0.0170,0,88,999.000,999.0,99.0 +1987,4,26,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,16.7,60,101500,1172,1349,410,768,260,518,80600,27500,56700,22180,30,7.2,8,8,24.1,1520,9,999999999,300,0.0170,0,88,999.000,999.0,99.0 +1987,4,26,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,16.1,58,101500,1293,1349,398,845,500,350,89700,52300,39400,28260,20,6.2,8,6,32.2,7620,9,999999999,290,0.0170,0,88,999.000,999.0,99.0 +1987,4,26,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,15.6,52,101500,1334,1349,414,750,319,444,83800,34700,49400,44500,40,6.2,9,8,32.2,1370,9,999999999,279,0.0170,0,88,999.000,999.0,99.0 +1987,4,26,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,16.1,56,101500,1292,1349,421,467,124,360,53600,13300,40800,23080,350,7.7,9,9,32.2,1370,9,999999999,290,0.0170,0,88,999.000,999.0,99.0 +1987,4,26,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,16.1,56,101500,1169,1349,433,313,40,284,35300,4100,31800,13250,10,5.7,10,10,24.1,1370,9,999999999,290,0.0170,0,88,999.000,999.0,99.0 +1987,4,26,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,15.6,56,101500,975,1349,408,288,239,160,37300,25000,19200,4580,20,6.2,9,8,24.1,1370,9,999999999,279,0.0170,0,88,999.000,999.0,99.0 +1987,4,26,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,16.1,62,101500,723,1349,403,185,241,109,26600,24500,13400,2290,360,5.2,8,8,24.1,3050,9,999999999,290,0.0170,0,88,999.000,999.0,99.0 +1987,4,26,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,16.1,69,101500,429,1349,380,67,201,42,12200,18300,6300,740,20,4.1,5,5,24.1,77777,9,999999999,290,0.0170,0,88,999.000,999.0,99.0 +1987,4,26,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,15.6,71,101600,120,1203,381,0,0,0,0,0,0,0,350,4.6,7,7,24.1,3050,9,999999999,279,0.0400,0,88,999.000,999.0,99.0 +1987,4,26,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,15.6,73,101700,0,0,374,0,0,0,0,0,0,0,360,4.1,6,6,24.1,3050,9,999999999,279,0.0400,0,88,999.000,999.0,99.0 +1987,4,26,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,15.6,73,101800,0,0,365,0,0,0,0,0,0,0,360,2.1,3,3,24.1,77777,9,999999999,279,0.0400,0,88,999.000,999.0,99.0 +1987,4,26,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,15.6,71,101800,0,0,387,0,0,0,0,0,0,0,10,4.1,8,8,24.1,700,9,999999999,279,0.0400,0,88,999.000,999.0,99.0 +1987,4,26,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,15.6,73,101800,0,0,374,0,0,0,0,0,0,0,20,3.1,6,6,24.1,700,9,999999999,279,0.0400,0,88,999.000,999.0,99.0 +1987,4,26,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,15.6,73,101800,0,0,368,0,0,0,0,0,0,0,350,3.6,4,4,24.1,77777,9,999999999,279,0.0400,0,88,999.000,999.0,99.0 +1987,4,27,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,15.0,71,101700,0,0,361,0,0,0,0,0,0,0,320,3.1,2,2,24.1,77777,9,999999999,270,0.0400,0,88,999.000,999.0,99.0 +1987,4,27,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,15.0,71,101700,0,0,361,0,0,0,0,0,0,0,10,5.2,2,2,24.1,77777,9,999999999,270,0.0400,0,88,999.000,999.0,99.0 +1987,4,27,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,15.0,73,101700,0,0,362,0,0,0,0,0,0,0,10,4.1,3,3,24.1,77777,9,999999999,270,0.0400,0,88,999.000,999.0,99.0 +1987,4,27,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,15.0,73,101700,0,0,364,0,0,0,0,0,0,0,350,2.6,4,4,24.1,77777,9,999999999,270,0.0400,0,88,999.000,999.0,99.0 +1987,4,27,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,13.9,68,101700,0,0,363,0,0,0,0,0,0,0,360,5.2,4,4,24.1,77777,9,999999999,250,0.0400,0,88,999.000,999.0,99.0 +1987,4,27,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,13.9,68,101800,0,0,360,49,165,28,0,0,0,0,30,9.3,3,3,24.1,77777,9,999999999,250,0.0450,0,88,999.000,999.0,99.0 +1987,4,27,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,13.3,66,101800,126,1248,362,269,550,91,13900,28000,11000,1930,40,6.7,4,4,32.2,77777,9,999999999,240,0.0450,0,88,999.000,999.0,99.0 +1987,4,27,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,13.9,59,101900,436,1349,374,458,538,167,34100,48300,18400,3360,40,7.2,10,4,24.1,77777,9,999999999,250,0.0450,0,88,999.000,999.0,99.0 +1987,4,27,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,12.8,50,101900,729,1349,379,557,485,204,48900,49000,22300,4530,40,7.2,10,3,24.1,77777,9,999999999,240,0.0450,0,88,999.000,999.0,99.0 +1987,4,27,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,12.2,48,101900,980,1349,378,758,525,301,71800,54400,32100,9080,40,9.3,10,3,24.1,77777,9,999999999,229,0.0450,0,88,999.000,999.0,99.0 +1987,4,27,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,12.2,44,102000,1173,1349,387,980,830,183,94500,83300,21900,7680,40,8.2,7,3,24.1,77777,9,999999999,229,0.0450,0,88,999.000,999.0,99.0 +1987,4,27,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,12.8,45,102000,1293,1349,384,981,819,170,102100,82900,22300,12900,40,8.2,5,2,24.1,77777,9,999999999,240,0.0450,0,88,999.000,999.0,99.0 +1987,4,27,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,12.2,42,101900,1334,1349,385,935,805,163,103400,81800,22300,18460,50,8.2,4,2,24.1,77777,9,999999999,229,0.0450,0,88,999.000,999.0,99.0 +1987,4,27,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,11.7,41,101800,1292,1349,385,848,768,182,97300,77500,22900,13530,40,8.8,4,2,24.1,77777,9,999999999,220,0.0450,0,88,999.000,999.0,99.0 +1987,4,27,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,11.7,43,101800,1169,1349,374,682,850,66,84400,85500,10100,2940,40,9.3,3,1,32.2,77777,9,999999999,220,0.0450,0,88,999.000,999.0,99.0 +1987,4,27,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,11.1,42,101800,976,1349,373,496,785,75,67400,78500,10400,2230,40,7.7,1,1,40.2,77777,9,999999999,209,0.0450,0,88,999.000,999.0,99.0 +1987,4,27,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,11.7,45,101800,724,1349,371,250,541,78,40100,54700,10700,1820,40,6.7,1,1,40.2,77777,9,999999999,220,0.0450,0,88,999.000,999.0,99.0 +1987,4,27,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,11.7,50,101900,431,1349,363,59,309,21,13800,28900,4500,540,40,7.7,1,1,40.2,77777,9,999999999,220,0.0450,0,88,999.000,999.0,99.0 +1987,4,27,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,11.7,51,102000,122,1225,360,0,0,0,0,0,0,0,40,6.2,1,1,24.1,77777,9,999999999,220,0.0400,0,88,999.000,999.0,99.0 +1987,4,27,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,12.2,57,102000,0,0,364,0,0,0,0,0,0,0,50,6.2,3,3,24.1,77777,9,999999999,229,0.0400,0,88,999.000,999.0,99.0 +1987,4,27,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,13.3,63,102100,0,0,359,0,0,0,0,0,0,0,40,6.2,2,2,24.1,77777,9,999999999,240,0.0400,0,88,999.000,999.0,99.0 +1987,4,27,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,13.9,64,102100,0,0,362,0,0,0,0,0,0,0,30,6.2,2,2,24.1,77777,9,999999999,250,0.0400,0,88,999.000,999.0,99.0 +1987,4,27,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,13.9,66,102100,0,0,360,0,0,0,0,0,0,0,40,6.7,2,2,24.1,77777,9,999999999,250,0.0400,0,88,999.000,999.0,99.0 +1987,4,27,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,13.9,66,102000,0,0,363,0,0,0,0,0,0,0,40,5.7,3,3,24.1,77777,9,999999999,250,0.0400,0,88,999.000,999.0,99.0 +1987,4,28,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,13.9,68,102000,0,0,360,0,0,0,0,0,0,0,30,4.6,3,3,24.1,77777,9,999999999,250,0.0400,0,88,999.000,999.0,99.0 +1987,4,28,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,14.4,68,102000,0,0,367,0,0,0,0,0,0,0,10,3.6,4,4,24.1,77777,9,999999999,259,0.0400,0,88,999.000,999.0,99.0 +1987,4,28,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,15.0,73,101900,0,0,371,0,0,0,0,0,0,0,10,3.6,6,6,24.1,1520,9,999999999,270,0.0400,0,88,999.000,999.0,99.0 +1987,4,28,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,15.0,73,101900,0,0,371,0,0,0,0,0,0,0,350,2.6,6,6,24.1,1370,9,999999999,270,0.0400,0,88,999.000,999.0,99.0 +1987,4,28,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,14.4,73,102000,0,0,361,0,0,0,0,0,0,0,310,1.5,4,4,24.1,77777,9,999999999,259,0.0400,0,88,999.000,999.0,99.0 +1987,4,28,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,14.4,71,102000,0,0,370,50,60,43,0,0,0,0,10,3.1,6,6,24.1,1220,9,999999999,259,0.0580,0,88,999.000,999.0,99.0 +1987,4,28,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,14.4,71,102000,129,1247,364,240,516,72,12200,26900,9300,1450,50,7.7,5,4,32.2,77777,9,999999999,259,0.0580,0,88,999.000,999.0,99.0 +1987,4,28,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,14.4,62,102100,439,1348,385,381,325,205,31700,29900,22000,4710,40,7.2,7,7,24.1,7620,9,999999999,259,0.0580,0,88,999.000,999.0,99.0 +1987,4,28,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,14.4,56,102100,731,1348,384,539,517,162,47500,52500,19000,3520,20,8.2,4,4,40.2,77777,9,999999999,259,0.0580,0,88,999.000,999.0,99.0 +1987,4,28,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,14.4,54,102100,982,1348,386,925,873,163,82300,86900,18900,4220,20,6.7,4,4,40.2,77777,9,999999999,259,0.0580,0,88,999.000,999.0,99.0 +1987,4,28,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,13.9,49,102100,1174,1348,395,1099,878,255,107600,88900,30000,11680,50,12.4,5,5,40.2,77777,9,999999999,250,0.0580,0,88,999.000,999.0,99.0 +1987,4,28,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,13.3,47,102100,1294,1348,391,875,666,215,92400,68400,26500,17330,40,8.2,4,4,40.2,77777,9,999999999,250,0.0580,0,88,999.000,999.0,99.0 +1987,4,28,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,13.3,45,102000,1334,1348,394,974,861,148,102400,86300,16800,14170,40,12.4,4,4,40.2,77777,9,999999999,240,0.0580,0,88,999.000,999.0,99.0 +1987,4,28,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,13.9,50,102000,1292,1348,386,852,814,145,94800,81600,16500,9030,30,9.3,3,3,40.2,77777,9,999999999,250,0.0580,0,88,999.000,999.0,99.0 +1987,4,28,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,12.8,47,101900,1170,1348,380,515,543,122,64700,55400,16500,5510,30,10.3,2,2,40.2,77777,9,999999999,240,0.0580,0,88,999.000,999.0,99.0 +1987,4,28,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,12.8,47,101900,976,1348,375,481,767,69,65600,76700,9900,2120,10,9.8,1,1,40.2,77777,9,999999999,240,0.0580,0,88,999.000,999.0,99.0 +1987,4,28,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,13.3,52,101900,724,1348,370,249,635,47,41200,62500,7600,1330,30,8.2,1,1,40.2,77777,9,999999999,240,0.0580,0,88,999.000,999.0,99.0 +1987,4,28,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,12.8,53,101900,432,1348,364,60,274,26,12800,25500,4600,650,30,7.2,1,1,40.2,77777,9,999999999,229,0.0580,0,88,999.000,999.0,99.0 +1987,4,28,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,12.2,57,102000,123,1224,355,0,0,0,0,0,0,0,60,7.2,1,1,24.1,77777,9,999999999,229,0.0400,0,88,999.000,999.0,99.0 +1987,4,28,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,12.2,57,102000,0,0,349,0,0,0,0,0,0,0,40,7.2,0,0,24.1,77777,9,999999999,229,0.0400,0,88,999.000,999.0,99.0 +1987,4,28,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,12.8,59,102100,0,0,349,0,0,0,0,0,0,0,50,7.7,0,0,24.1,77777,9,999999999,240,0.0400,0,88,999.000,999.0,99.0 +1987,4,28,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,12.8,61,102200,0,0,347,0,0,0,0,0,0,0,40,6.7,0,0,24.1,77777,9,999999999,240,0.0400,0,88,999.000,999.0,99.0 +1987,4,28,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,12.8,61,102100,0,0,347,0,0,0,0,0,0,0,50,7.2,0,0,24.1,77777,9,999999999,240,0.0400,0,88,999.000,999.0,99.0 +1987,4,28,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,12.8,61,102100,0,0,354,0,0,0,0,0,0,0,50,7.2,1,1,24.1,77777,9,999999999,240,0.0400,0,88,999.000,999.0,99.0 +1987,4,29,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,13.3,63,102100,0,0,354,0,0,0,0,0,0,0,40,4.1,1,1,24.1,77777,9,999999999,240,0.0400,0,88,999.000,999.0,99.0 +1987,4,29,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,13.9,66,102100,0,0,369,0,0,0,0,0,0,0,40,6.2,5,5,24.1,77777,9,999999999,250,0.0400,0,88,999.000,999.0,99.0 +1987,4,29,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,13.9,66,102000,0,0,363,0,0,0,0,0,0,0,40,6.2,3,3,24.1,77777,9,999999999,250,0.0400,0,88,999.000,999.0,99.0 +1987,4,29,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,13.9,68,102000,0,0,374,0,0,0,0,0,0,0,40,3.6,7,7,24.1,1370,9,999999999,250,0.0400,0,88,999.000,999.0,99.0 +1987,4,29,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,13.3,66,102000,0,0,365,0,0,0,0,0,0,0,50,3.6,5,5,24.1,77777,9,999999999,240,0.0400,0,88,999.000,999.0,99.0 +1987,4,29,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,13.3,66,102000,0,0,373,61,113,48,0,0,0,0,40,2.1,7,7,24.1,1370,9,999999999,240,0.0210,0,88,999.000,999.0,99.0 +1987,4,29,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,13.3,61,102100,132,1269,371,196,294,99,12800,14500,11200,2410,350,1.5,5,5,40.2,77777,9,999999999,240,0.0210,0,88,999.000,999.0,99.0 +1987,4,29,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,13.9,56,102100,442,1347,391,418,303,253,36700,27600,27700,5740,50,5.2,7,7,32.2,1370,9,999999999,250,0.0210,0,88,999.000,999.0,99.0 +1987,4,29,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,13.3,52,102200,733,1347,388,700,706,183,58100,68900,20600,3800,40,4.1,6,6,40.2,1370,9,999999999,250,0.0210,0,88,999.000,999.0,99.0 +1987,4,29,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,13.3,48,102200,983,1347,394,754,597,232,72200,62100,26700,6890,60,7.2,6,6,40.2,2440,9,999999999,240,0.0210,0,88,999.000,999.0,99.0 +1987,4,29,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,13.3,47,102100,1174,1347,397,838,581,279,82400,58500,31200,12730,60,9.3,6,6,40.2,1520,9,999999999,250,0.0210,0,88,999.000,999.0,99.0 +1987,4,29,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,13.9,44,102100,1294,1347,412,683,350,336,73000,36700,37700,27770,60,9.3,7,7,40.2,1520,9,999999999,250,0.0210,0,88,999.000,999.0,99.0 +1987,4,29,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,12.8,41,102100,1334,1347,402,1007,863,178,110400,87400,23600,20640,60,7.7,5,5,40.2,77777,9,999999999,240,0.0210,0,88,999.000,999.0,99.0 +1987,4,29,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,12.8,40,102000,1292,1347,402,782,765,117,87800,76800,13900,7740,70,7.2,4,4,40.2,77777,9,999999999,240,0.0210,0,88,999.000,999.0,99.0 +1987,4,29,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,12.8,41,102000,1170,1347,402,663,600,227,79600,61100,26400,10380,50,6.7,5,5,40.2,77777,9,999999999,240,0.0210,0,88,999.000,999.0,99.0 +1987,4,29,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,13.3,45,101900,976,1347,387,476,730,83,63900,72900,10900,2360,40,8.8,3,2,40.2,77777,9,999999999,240,0.0210,0,88,999.000,999.0,99.0 +1987,4,29,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,13.9,50,101900,725,1347,382,252,627,51,41100,61600,7900,1400,40,6.7,3,2,40.2,77777,9,999999999,250,0.0210,0,88,999.000,999.0,99.0 +1987,4,29,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,13.3,52,102000,433,1347,375,57,290,22,13200,27100,4500,560,50,6.7,2,2,40.2,77777,9,999999999,240,0.0210,0,88,999.000,999.0,99.0 +1987,4,29,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,13.3,55,102000,125,1224,370,0,0,0,0,0,0,0,50,6.2,2,2,40.2,77777,9,999999999,240,0.0400,0,88,999.000,999.0,99.0 +1987,4,29,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,13.3,57,102100,0,0,362,0,0,0,0,0,0,0,50,5.2,1,1,24.1,77777,9,999999999,240,0.0400,0,88,999.000,999.0,99.0 +1987,4,29,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,13.9,61,102100,0,0,360,0,0,0,0,0,0,0,50,6.2,1,1,24.1,77777,9,999999999,250,0.0400,0,88,999.000,999.0,99.0 +1987,4,29,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,15.0,64,102200,0,0,369,0,0,0,0,0,0,0,50,6.2,2,2,24.1,77777,9,999999999,270,0.0400,0,88,999.000,999.0,99.0 +1987,4,29,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,14.4,64,102200,0,0,372,0,0,0,0,0,0,0,80,4.1,4,4,24.1,77777,9,999999999,259,0.0400,0,88,999.000,999.0,99.0 +1987,4,29,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,15.0,66,102200,0,0,384,0,0,0,0,0,0,0,60,5.7,7,7,24.1,1370,9,999999999,270,0.0400,0,88,999.000,999.0,99.0 +1987,4,30,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,15.6,71,102200,0,0,381,0,0,0,0,0,0,0,40,3.1,7,7,24.1,1370,9,999999999,279,0.0400,0,88,999.000,999.0,99.0 +1987,4,30,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,15.0,66,102100,0,0,390,0,0,0,0,0,0,0,80,3.1,8,8,24.1,1370,9,999999999,270,0.0400,0,88,999.000,999.0,99.0 +1987,4,30,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,13.9,61,102100,0,0,369,0,0,0,0,0,0,0,50,3.1,3,3,24.1,77777,9,999999999,250,0.0400,0,88,999.000,999.0,99.0 +1987,4,30,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,13.9,66,102100,0,0,360,0,0,0,0,0,0,0,40,2.1,2,2,24.1,77777,9,999999999,250,0.0400,0,88,999.000,999.0,99.0 +1987,4,30,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,15.6,68,102100,0,0,384,0,0,0,0,0,0,0,100,2.1,7,7,24.1,1370,9,999999999,279,0.0400,0,88,999.000,999.0,99.0 +1987,4,30,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,15.0,68,102100,0,0,387,29,29,25,0,0,0,0,50,2.6,8,8,24.1,1370,9,999999999,270,0.0470,0,88,999.000,999.0,99.0 +1987,4,30,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,15.6,68,102200,135,1290,399,156,52,139,15600,3900,15200,1460,0,0.0,9,9,32.2,1220,9,999999999,279,0.0470,0,88,999.000,999.0,99.0 +1987,4,30,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,14.4,54,102200,444,1347,397,323,225,200,29100,20800,22200,4540,60,4.1,9,7,32.2,7620,9,999999999,259,0.0470,0,88,999.000,999.0,99.0 +1987,4,30,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,13.9,49,102200,735,1347,398,588,515,212,51600,52100,23100,4760,90,5.2,9,6,32.2,7620,9,999999999,250,0.0470,0,88,999.000,999.0,99.0 +1987,4,30,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,13.3,42,102200,984,1347,402,670,495,237,64600,51500,26900,7080,90,7.7,9,5,40.2,7620,9,999999999,240,0.0470,0,88,999.000,999.0,99.0 +1987,4,30,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,13.3,41,102200,1175,1347,406,865,596,292,88200,62400,33600,13840,60,8.2,8,5,40.2,7620,9,999999999,240,0.0470,0,88,999.000,999.0,99.0 +1987,4,30,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,13.3,41,102200,1295,1347,414,610,153,459,66900,16300,51200,30410,40,9.3,8,7,40.2,7620,9,999999999,240,0.0470,0,88,999.000,999.0,99.0 +1987,4,30,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,13.3,40,102100,1334,1347,412,943,675,294,102300,68400,34300,35830,50,7.2,9,6,40.2,7620,9,999999999,240,0.0470,0,88,999.000,999.0,99.0 +1987,4,30,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,13.3,41,102000,1292,1347,414,742,528,283,83700,53500,32200,22430,60,8.8,9,7,40.2,7620,9,999999999,240,0.0470,0,88,999.000,999.0,99.0 +1987,4,30,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,13.3,41,102000,1170,1347,409,665,565,255,78700,57200,28900,11580,60,10.8,8,6,40.2,7620,9,999999999,240,0.0470,0,88,999.000,999.0,99.0 +1987,4,30,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,15.6,49,102000,977,1347,420,274,80,231,32400,8600,26200,7250,50,5.7,8,8,32.2,7620,9,999999999,279,0.0470,0,88,999.000,999.0,99.0 +1987,4,30,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,13.9,47,102000,726,1347,394,198,331,92,30700,33800,12500,1920,60,6.2,7,4,32.2,7620,9,999999999,250,0.0470,0,88,999.000,999.0,99.0 +1987,4,30,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,16.1,60,102000,434,1347,399,56,40,51,7400,3800,6100,1150,60,8.2,10,7,32.2,7620,9,999999999,290,0.0470,0,88,999.000,999.0,99.0 +1987,4,30,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,16.1,64,102100,126,1246,393,0,0,0,0,0,0,0,30,7.7,10,7,24.1,7620,9,999999999,290,0.0400,0,88,999.000,999.0,99.0 +1987,4,30,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,16.1,66,102100,0,0,391,0,0,0,0,0,0,0,70,5.7,10,7,24.1,7620,9,999999999,290,0.0400,0,88,999.000,999.0,99.0 +1987,4,30,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,16.7,69,102200,0,0,384,0,0,0,0,0,0,0,50,6.7,8,5,24.1,7620,9,999999999,300,0.0400,0,88,999.000,999.0,99.0 +1987,4,30,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.6,16.7,69,102200,0,0,380,0,0,0,0,0,0,0,60,6.2,6,4,24.1,7620,9,999999999,300,0.0400,0,88,999.000,999.0,99.0 +1987,4,30,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.3,16.7,76,102200,0,0,415,0,0,0,0,0,0,0,50,5.7,10,10,24.1,1370,9,999999999,309,0.0400,0,88,999.000,999.0,99.0 +1987,4,30,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.1,16.7,81,102200,0,0,414,0,0,0,0,0,0,0,60,5.2,10,10,24.1,1370,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1986,5,1,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.8,16.7,76,101700,0,0,378,0,0,0,0,0,0,0,70,4.6,5,5,24.1,77777,9,999999999,320,0.0450,0,88,999.000,999.0,99.0 +1986,5,1,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.6,16.7,73,101700,0,0,375,0,0,0,0,0,0,0,40,4.1,4,4,24.1,77777,9,999999999,300,0.0450,0,88,999.000,999.0,99.0 +1986,5,1,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.3,16.7,73,101600,0,0,370,0,0,0,0,0,0,0,50,3.6,4,3,24.1,77777,9,999999999,300,0.0450,0,88,999.000,999.0,99.0 +1986,5,1,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,16.7,76,101600,0,0,365,0,0,0,0,0,0,0,50,3.1,3,2,24.1,77777,9,999999999,300,0.0450,0,88,999.000,999.0,99.0 +1986,5,1,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,15.6,68,101700,0,0,371,0,0,0,0,0,0,0,50,3.1,5,3,24.1,77777,9,999999999,279,0.0450,0,88,999.000,999.0,99.0 +1986,5,1,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,15.0,68,101700,0,0,367,61,337,21,0,0,0,0,60,2.1,4,3,24.1,77777,9,999999999,270,0.0290,0,88,999.000,999.0,99.0 +1986,5,1,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,16.1,66,101800,139,1290,377,252,513,81,13100,27100,10100,1660,40,3.6,4,3,24.1,77777,9,999999999,290,0.0290,0,88,999.000,999.0,99.0 +1986,5,1,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,15.6,56,101800,447,1346,388,487,693,107,34300,61800,13700,1910,60,6.2,5,3,40.2,77777,9,999999999,279,0.0290,0,88,999.000,999.0,99.0 +1986,5,1,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,16.1,54,101800,737,1346,394,667,720,139,55800,71500,16600,3060,40,6.2,5,3,40.2,77777,9,999999999,290,0.0290,0,88,999.000,999.0,99.0 +1986,5,1,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,16.7,53,101800,986,1346,407,812,805,107,72200,80300,13200,2680,50,6.2,7,5,40.2,7620,9,999999999,300,0.0290,0,88,999.000,999.0,99.0 +1986,5,1,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,16.7,49,101700,1176,1346,410,919,771,175,89200,77500,21200,7590,50,7.7,7,4,40.2,7620,9,999999999,290,0.0290,0,88,999.000,999.0,99.0 +1986,5,1,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,16.1,46,101700,1295,1346,415,1010,776,239,105900,79400,29300,19650,60,7.7,8,5,40.2,7620,9,999999999,290,0.0290,0,88,999.000,999.0,99.0 +1986,5,1,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,16.1,46,101600,1335,1346,409,958,824,165,105800,83700,22600,19870,50,7.7,5,3,40.2,77777,9,999999999,290,0.0290,0,88,999.000,999.0,99.0 +1986,5,1,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,15.0,44,101600,1292,1346,404,689,519,238,79100,53100,27900,19130,50,6.2,6,3,40.2,77777,9,999999999,270,0.0290,0,88,999.000,999.0,99.0 +1986,5,1,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,15.0,43,101600,1170,1346,408,650,778,85,79400,78100,11300,3590,50,6.7,6,3,40.2,77777,9,999999999,270,0.0290,0,88,999.000,999.0,99.0 +1986,5,1,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,14.4,43,101500,977,1346,404,466,628,127,63300,64700,16200,3880,30,7.2,8,3,40.2,77777,9,999999999,259,0.0290,0,88,999.000,999.0,99.0 +1986,5,1,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,15.0,49,101500,727,1346,399,191,346,80,29000,35000,10100,1870,60,7.2,8,4,40.2,77777,9,999999999,270,0.0290,0,88,999.000,999.0,99.0 +1986,5,1,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,15.0,52,101500,436,1346,390,55,156,36,10100,14300,5500,630,40,8.2,7,3,32.2,77777,9,999999999,270,0.0290,0,88,999.000,999.0,99.0 +1986,5,1,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,15.6,62,101600,128,1245,385,0,0,0,0,0,0,0,60,5.2,8,5,24.1,7620,9,999999999,279,0.0450,0,88,999.000,999.0,99.0 +1986,5,1,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,14.4,60,101600,0,0,381,0,0,0,0,0,0,0,50,5.2,8,5,24.1,7620,9,999999999,259,0.0450,0,88,999.000,999.0,99.0 +1986,5,1,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,15.0,62,101700,0,0,381,0,0,0,0,0,0,0,60,5.2,8,5,24.1,7620,9,999999999,270,0.0450,0,88,999.000,999.0,99.0 +1986,5,1,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,13.9,59,101700,0,0,371,0,0,0,0,0,0,0,30,3.6,6,3,24.1,77777,9,999999999,250,0.0450,0,88,999.000,999.0,99.0 +1986,5,1,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,13.9,59,101700,0,0,368,0,0,0,0,0,0,0,50,2.6,4,2,24.1,77777,9,999999999,250,0.0450,0,88,999.000,999.0,99.0 +1986,5,1,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,14.4,64,101700,0,0,354,0,0,0,0,0,0,0,70,3.1,3,0,24.1,77777,9,999999999,259,0.0450,0,88,999.000,999.0,99.0 +1986,5,2,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,15.0,66,101700,0,0,366,0,0,0,0,0,0,0,0,0.0,3,2,24.1,77777,9,999999999,270,0.0440,0,88,999.000,999.0,99.0 +1986,5,2,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,15.0,66,101700,0,0,366,0,0,0,0,0,0,0,0,0.0,3,2,24.1,77777,9,999999999,270,0.0440,0,88,999.000,999.0,99.0 +1986,5,2,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,15.6,71,101600,0,0,368,0,0,0,0,0,0,0,270,1.5,3,3,24.1,77777,9,999999999,279,0.0440,0,88,999.000,999.0,99.0 +1986,5,2,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,15.6,76,101600,0,0,365,0,0,0,0,0,0,0,0,0.0,4,4,24.1,77777,9,999999999,279,0.0440,0,88,999.000,999.0,99.0 +1986,5,2,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,16.1,78,101600,0,0,366,0,0,0,0,0,0,0,290,1.5,5,4,24.1,77777,9,999999999,279,0.0440,0,88,999.000,999.0,99.0 +1986,5,2,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,16.7,73,101600,0,0,372,56,193,33,0,0,0,0,70,3.6,7,3,24.1,77777,9,999999999,300,0.0310,0,88,999.000,999.0,99.0 +1986,5,2,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,16.7,73,101600,142,1312,378,265,521,91,14000,27500,10900,1910,0,0.0,9,5,32.2,7010,9,999999999,290,0.0310,0,88,999.000,999.0,99.0 +1986,5,2,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,16.7,62,101700,450,1345,395,462,593,135,34200,54000,16100,2620,50,4.1,10,6,40.2,7620,9,999999999,300,0.0310,0,88,999.000,999.0,99.0 +1986,5,2,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,16.1,54,101700,739,1345,404,625,426,312,57200,44600,32700,7920,50,4.1,10,6,40.2,7620,9,999999999,290,0.0310,0,88,999.000,999.0,99.0 +1986,5,2,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,15.6,49,101800,987,1345,414,584,255,360,59800,27000,39900,11470,50,6.2,10,7,40.2,7620,9,999999999,279,0.0310,0,88,999.000,999.0,99.0 +1986,5,2,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,15.6,49,101700,1177,1345,420,615,153,467,65600,16200,51400,20420,50,6.2,10,8,40.2,7620,9,999999999,279,0.0310,0,88,999.000,999.0,99.0 +1986,5,2,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,16.1,49,101700,1296,1345,424,872,460,415,91300,48000,44900,35340,50,6.2,9,8,40.2,7620,9,999999999,290,0.0310,0,88,999.000,999.0,99.0 +1986,5,2,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,16.1,51,101600,1335,1345,410,632,265,377,71600,28900,42800,40810,60,6.2,8,6,40.2,7620,9,999999999,290,0.0310,0,88,999.000,999.0,99.0 +1986,5,2,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,16.7,54,101600,1292,1345,408,719,571,221,83100,58600,26600,17900,60,6.2,8,6,40.2,7620,9,999999999,290,0.0310,0,88,999.000,999.0,99.0 +1986,5,2,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,16.7,49,101600,1170,1345,417,521,378,247,63500,39600,28900,11470,50,7.2,8,6,40.2,7620,9,999999999,290,0.0310,0,88,999.000,999.0,99.0 +1986,5,2,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,16.7,51,101500,977,1345,410,434,582,119,59100,60100,15400,3660,70,6.7,8,5,40.2,7620,9,999999999,300,0.0310,0,88,999.000,999.0,99.0 +1986,5,2,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,16.7,53,101500,727,1345,404,166,216,96,24100,22000,12100,2010,60,7.7,7,4,40.2,7620,9,999999999,300,0.0310,0,88,999.000,999.0,99.0 +1986,5,2,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,16.1,58,101600,437,1345,388,57,249,27,12100,23200,4500,570,70,6.2,5,3,32.2,77777,9,999999999,290,0.0310,0,88,999.000,999.0,99.0 +1986,5,2,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,17.8,69,101600,130,1267,381,0,0,0,0,0,0,0,80,5.2,3,2,24.1,77777,9,999999999,320,0.0440,0,88,999.000,999.0,99.0 +1986,5,2,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,18.3,76,101700,0,0,376,0,0,0,0,0,0,0,70,4.1,3,2,24.1,77777,9,999999999,329,0.0440,0,88,999.000,999.0,99.0 +1986,5,2,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,17.8,76,101700,0,0,372,0,0,0,0,0,0,0,80,5.2,2,2,24.1,77777,9,999999999,320,0.0440,0,88,999.000,999.0,99.0 +1986,5,2,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,18.3,79,101800,0,0,390,0,0,0,0,0,0,0,70,4.6,7,7,24.1,1370,9,999999999,329,0.0440,0,88,999.000,999.0,99.0 +1986,5,2,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,17.8,76,101800,0,0,385,0,0,0,0,0,0,0,60,4.1,6,6,24.1,1370,9,999999999,320,0.0440,0,88,999.000,999.0,99.0 +1986,5,2,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,17.8,76,101700,0,0,376,0,0,0,0,0,0,0,60,7.2,3,3,24.1,77777,9,999999999,320,0.0440,0,88,999.000,999.0,99.0 +1986,5,3,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,17.8,76,101700,0,0,379,0,0,0,0,0,0,0,70,4.1,4,4,24.1,77777,9,999999999,320,0.0440,0,88,999.000,999.0,99.0 +1986,5,3,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,17.2,73,101600,0,0,389,0,0,0,0,0,0,0,60,5.2,7,7,24.1,1370,9,999999999,300,0.0440,0,88,999.000,999.0,99.0 +1986,5,3,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,17.8,76,101600,0,0,396,0,0,0,0,0,0,0,60,5.2,8,8,24.1,1370,9,999999999,320,0.0440,0,88,999.000,999.0,99.0 +1986,5,3,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,17.8,79,101600,0,0,376,0,0,0,0,0,0,0,60,4.1,4,4,24.1,77777,9,999999999,320,0.0440,0,88,999.000,999.0,99.0 +1986,5,3,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,17.8,76,101600,0,0,376,0,0,0,0,0,0,0,70,5.2,3,3,24.1,77777,9,999999999,320,0.0440,0,88,999.000,999.0,99.0 +1986,5,3,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,17.8,76,101600,0,0,372,59,159,40,0,0,0,0,70,4.1,2,2,24.1,77777,9,999999999,320,0.0880,0,88,999.000,999.0,99.0 +1986,5,3,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,17.8,74,101700,144,1333,382,226,390,95,13000,20700,10700,2010,70,5.2,4,4,32.2,77777,9,999999999,320,0.0880,0,88,999.000,999.0,99.0 +1986,5,3,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,17.8,64,101800,452,1344,390,478,573,162,35700,52100,18200,3240,70,3.6,5,3,40.2,77777,9,999999999,309,0.0880,0,88,999.000,999.0,99.0 +1986,5,3,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,17.2,56,101800,741,1344,399,637,566,220,55500,57300,23800,4980,70,6.2,5,3,40.2,77777,9,999999999,309,0.0880,0,88,999.000,999.0,99.0 +1986,5,3,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,17.2,53,101800,988,1344,404,830,731,188,76700,74200,22100,5640,50,7.7,5,3,40.2,77777,9,999999999,309,0.0880,0,88,999.000,999.0,99.0 +1986,5,3,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,17.2,51,101700,1178,1344,403,943,759,210,93700,77700,25500,10000,70,7.2,4,2,40.2,77777,9,999999999,309,0.0880,0,88,999.000,999.0,99.0 +1986,5,3,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,17.2,51,101700,1296,1344,398,960,835,129,96100,83800,15100,8750,50,7.2,3,1,40.2,77777,9,999999999,309,0.0880,0,88,999.000,999.0,99.0 +1986,5,3,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,16.7,48,101700,1335,1344,406,933,783,179,102200,79300,23300,22050,50,7.7,4,2,40.2,77777,9,999999999,300,0.0880,0,88,999.000,999.0,99.0 +1986,5,3,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,17.2,51,101600,1292,1344,403,832,718,206,97200,73900,26000,16800,70,7.7,4,2,40.2,77777,9,999999999,300,0.0880,0,88,999.000,999.0,99.0 +1986,5,3,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,17.8,56,101600,1170,1344,417,541,383,262,65300,40100,30300,12230,50,7.7,7,7,40.2,1370,9,999999999,309,0.0880,0,88,999.000,999.0,99.0 +1986,5,3,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,17.2,56,101600,978,1344,408,386,396,172,51200,41400,21100,4990,30,7.7,6,6,24.1,1370,9,999999999,300,0.0880,0,88,999.000,999.0,99.0 +1986,5,3,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,18.3,67,101600,728,1344,412,185,174,129,25000,18400,15000,2770,60,6.2,8,8,24.1,1220,9,999999999,329,0.0880,0,88,999.000,999.0,99.0 +1986,5,3,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,17.8,67,101600,438,1344,417,20,0,20,2600,0,2600,940,50,4.6,9,9,24.1,1220,9,999999999,320,0.0880,0,88,999.000,999.0,99.0 +1986,5,3,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,17.8,71,101700,131,1266,410,0,0,0,0,0,0,0,70,5.7,9,9,24.1,1220,9,999999999,309,0.0440,0,88,999.000,999.0,99.0 +1986,5,3,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,17.8,74,101700,0,0,408,0,0,0,0,0,0,0,60,5.2,9,9,24.1,1220,9,999999999,320,0.0440,0,88,999.000,999.0,99.0 +1986,5,3,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,17.8,74,101800,0,0,399,0,0,0,0,0,0,0,60,6.2,8,8,24.1,1220,9,999999999,320,0.0440,0,88,999.000,999.0,99.0 +1986,5,3,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,17.2,69,101800,0,0,395,0,0,0,0,0,0,0,60,6.2,7,7,24.1,1220,9,999999999,309,0.0440,0,88,999.000,999.0,99.0 +1986,5,3,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,17.2,69,101800,0,0,401,0,0,0,0,0,0,0,50,4.1,8,8,24.1,1370,9,999999999,309,0.0440,0,88,999.000,999.0,99.0 +1986,5,3,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,17.2,69,101800,0,0,401,0,0,0,0,0,0,0,70,5.2,8,8,24.1,1370,9,999999999,309,0.0440,0,88,999.000,999.0,99.0 +1986,5,4,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,17.2,71,101700,0,0,381,0,0,0,0,0,0,0,60,6.2,4,4,24.1,77777,9,999999999,309,0.0440,0,88,999.000,999.0,99.0 +1986,5,4,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,17.2,71,101700,0,0,381,0,0,0,0,0,0,0,40,4.1,4,4,24.1,77777,9,999999999,309,0.0440,0,88,999.000,999.0,99.0 +1986,5,4,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,17.8,74,101600,0,0,393,0,0,0,0,0,0,0,60,5.2,7,7,24.1,1370,9,999999999,320,0.0440,0,88,999.000,999.0,99.0 +1986,5,4,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,17.8,74,101600,0,0,399,0,0,0,0,0,0,0,70,5.2,8,8,24.1,1370,9,999999999,320,0.0440,0,88,999.000,999.0,99.0 +1986,5,4,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,18.3,79,101600,0,0,390,0,0,0,0,0,0,0,60,5.2,7,7,24.1,1370,9,999999999,329,0.0440,0,88,999.000,999.0,99.0 +1986,5,4,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,18.9,82,101600,0,0,397,47,21,44,0,0,0,0,330,2.1,8,8,24.1,1370,9,999999999,340,0.0850,0,88,999.000,999.0,99.0 +1986,5,4,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,18.9,82,101700,147,1333,406,116,65,94,11000,4700,10500,1600,10,3.6,9,9,24.1,610,9,999999999,340,0.0850,0,88,999.000,999.0,99.0 +1986,5,4,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,20.0,87,101800,454,1344,407,174,6,170,18900,500,18700,5530,30,4.1,9,9,24.1,610,9,999999999,359,0.0850,0,88,999.000,999.0,99.0 +1986,5,4,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,20.0,76,101800,742,1344,419,249,67,199,26000,6700,22300,6410,130,2.6,9,9,24.1,610,9,999999999,359,0.0850,0,88,999.000,999.0,99.0 +1986,5,4,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,20.0,69,101800,989,1344,420,493,347,188,49000,36200,22300,5600,50,3.6,8,8,24.1,760,9,999999999,359,0.0850,0,88,999.000,999.0,99.0 +1986,5,4,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,18.9,60,101800,1178,1344,425,516,156,365,55700,16700,41000,16040,50,4.1,8,8,32.2,760,9,999999999,329,0.0850,0,88,999.000,999.0,99.0 +1986,5,4,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,18.3,51,101800,1296,1344,430,892,577,318,95600,60500,37100,27210,50,3.6,7,7,40.2,760,9,999999999,320,0.0850,0,88,999.000,999.0,99.0 +1986,5,4,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,17.8,53,101700,1335,1344,439,562,178,390,63400,19100,44400,38120,50,4.6,9,9,40.2,760,9,999999999,320,0.0850,0,88,999.000,999.0,99.0 +1986,5,4,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,18.9,53,101700,1292,1344,437,545,271,309,64300,29600,35800,21980,60,5.2,8,8,40.2,850,9,999999999,340,0.0850,0,88,999.000,999.0,99.0 +1986,5,4,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,18.9,57,101600,1170,1344,440,332,55,291,37600,5600,32700,13660,60,6.7,9,9,40.2,850,9,999999999,340,0.0850,0,88,999.000,999.0,99.0 +1986,5,4,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,18.9,67,101600,978,1344,425,296,80,252,34300,8100,28400,9600,40,6.7,9,9,24.1,2440,9,999999999,340,0.0850,0,88,999.000,999.0,99.0 +1986,5,4,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,18.3,62,101600,729,1344,418,175,97,144,22100,10200,16600,3700,60,6.7,8,8,24.1,2440,9,999999999,320,0.0850,0,88,999.000,999.0,99.0 +1986,5,4,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,18.3,64,101600,439,1344,409,49,142,32,9300,13000,5000,560,50,7.2,7,7,24.1,6710,9,999999999,329,0.0850,0,88,999.000,999.0,99.0 +1986,5,4,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,18.3,69,101700,133,1265,397,0,0,0,0,0,0,0,60,5.7,6,6,24.1,6710,9,999999999,329,0.0440,0,88,999.000,999.0,99.0 +1986,5,4,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,18.9,76,101800,0,0,397,0,0,0,0,0,0,0,70,4.1,7,7,19.3,1220,9,999999999,340,0.0440,0,88,999.000,999.0,99.0 +1986,5,4,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,18.9,76,101800,0,0,397,0,0,0,0,0,0,0,70,3.6,7,7,24.1,1370,9,999999999,340,0.0440,0,88,999.000,999.0,99.0 +1986,5,4,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,18.9,76,101800,0,0,392,0,0,0,0,0,0,0,60,4.1,6,6,24.1,6710,9,999999999,340,0.0440,0,88,999.000,999.0,99.0 +1986,5,4,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,19.4,82,101800,0,0,384,0,0,0,0,0,0,0,70,4.1,6,4,24.1,6710,9,999999999,350,0.0440,0,88,999.000,999.0,99.0 +1986,5,4,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,20.0,87,101800,0,0,399,0,0,0,0,0,0,0,70,6.2,8,8,16.1,1370,9,999999999,359,0.0440,0,88,999.000,999.0,99.0 +1986,5,5,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,19.4,84,101800,0,0,398,0,0,0,0,0,0,0,60,6.2,8,8,16.1,1370,9,999999999,350,0.0440,0,88,999.000,999.0,99.0 +1986,5,5,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,19.4,82,101700,0,0,401,0,0,0,0,0,0,0,70,5.2,8,8,24.1,1370,9,999999999,350,0.0440,0,88,999.000,999.0,99.0 +1986,5,5,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,18.9,79,101600,0,0,386,0,0,0,0,0,0,0,60,7.2,5,5,24.1,77777,9,999999999,340,0.0440,0,88,999.000,999.0,99.0 +1986,5,5,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,18.9,79,101600,0,0,383,0,0,0,0,0,0,0,60,6.7,4,4,24.1,77777,9,999999999,340,0.0440,0,88,999.000,999.0,99.0 +1986,5,5,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,18.3,79,101700,0,0,390,0,0,0,0,0,0,0,60,5.2,7,7,24.1,7620,9,999999999,329,0.0440,0,88,999.000,999.0,99.0 +1986,5,5,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,18.3,79,101700,0,11,396,39,23,36,0,0,0,0,40,6.2,8,8,24.1,7620,9,999999999,329,0.0790,0,88,999.000,999.0,99.0 +1986,5,5,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,18.3,74,101700,150,1343,411,198,153,146,16300,8000,15400,3080,60,5.2,9,9,32.2,7620,9,999999999,329,0.0790,0,88,999.000,999.0,99.0 +1986,5,5,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,18.3,67,101700,456,1343,405,382,268,234,34200,24800,25700,5330,60,6.2,10,7,40.2,7620,9,999999999,329,0.0790,0,88,999.000,999.0,99.0 +1986,5,5,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,18.3,60,101800,744,1343,415,514,317,280,48200,33300,29700,6940,60,6.2,10,7,40.2,7620,9,999999999,329,0.0790,0,88,999.000,999.0,99.0 +1986,5,5,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,18.3,57,101800,990,1343,416,660,405,304,65700,43800,33400,9270,60,5.2,10,6,40.2,7620,9,999999999,329,0.0790,0,88,999.000,999.0,99.0 +1986,5,5,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,17.8,53,101800,1179,1343,423,693,287,415,72700,31200,45300,18940,50,7.2,10,7,40.2,7620,9,999999999,320,0.0790,0,88,999.000,999.0,99.0 +1986,5,5,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,17.8,50,101700,1296,1343,420,883,591,295,91500,59800,33700,24630,50,7.7,10,5,40.2,77777,9,999999999,320,0.0790,0,88,999.000,999.0,99.0 +1986,5,5,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,17.8,48,101700,1335,1343,424,882,617,288,95900,62600,33500,37770,70,6.2,7,5,40.2,7620,9,999999999,320,0.0790,0,88,999.000,999.0,99.0 +1986,5,5,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,17.2,48,101600,1292,1343,435,491,165,347,56800,17700,39700,23020,70,6.2,10,8,40.2,7620,9,999999999,309,0.0790,0,88,999.000,999.0,99.0 +1986,5,5,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,17.8,50,101600,1170,1343,424,424,131,328,49400,14000,37100,14160,60,6.7,10,6,40.2,7620,9,999999999,320,0.0790,0,88,999.000,999.0,99.0 +1986,5,5,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,17.8,53,101500,978,1343,418,329,210,215,41100,22800,24500,6160,70,6.7,9,6,40.2,7620,9,999999999,320,0.0790,0,88,999.000,999.0,99.0 +1986,5,5,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,18.3,55,101500,729,1343,419,211,228,136,29000,24100,15900,2940,60,6.2,9,6,40.2,7620,9,999999999,329,0.0790,0,88,999.000,999.0,99.0 +1986,5,5,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,18.3,60,101500,441,1343,410,54,35,50,7100,3300,6000,1130,60,6.2,10,6,40.2,7620,9,999999999,320,0.0790,0,88,999.000,999.0,99.0 +1986,5,5,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,18.3,67,101600,135,1287,401,0,0,0,0,0,0,0,70,4.6,10,6,32.2,7620,9,999999999,329,0.0440,0,88,999.000,999.0,99.0 +1986,5,5,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,18.3,69,101600,0,0,397,0,0,0,0,0,0,0,70,4.1,10,6,24.1,7620,9,999999999,329,0.0440,0,88,999.000,999.0,99.0 +1986,5,5,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,18.3,69,101700,0,0,429,0,0,0,0,0,0,0,70,5.2,10,10,24.1,7620,9,999999999,329,0.0440,0,88,999.000,999.0,99.0 +1986,5,5,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,17.8,67,101700,0,0,397,0,0,0,0,0,0,0,60,4.6,10,6,24.1,7620,9,999999999,320,0.0440,0,88,999.000,999.0,99.0 +1986,5,5,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,17.8,69,101700,0,0,394,0,0,0,0,0,0,0,40,6.2,10,6,24.1,7620,9,999999999,320,0.0440,0,88,999.000,999.0,99.0 +1986,5,5,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,17.2,66,101700,0,0,393,0,0,0,0,0,0,0,70,6.2,8,6,24.1,7620,9,999999999,300,0.0440,0,88,999.000,999.0,99.0 +1986,5,6,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,17.2,66,101600,0,0,390,0,0,0,0,0,0,0,60,6.2,5,5,24.1,77777,9,999999999,300,0.0440,0,88,999.000,999.0,99.0 +1986,5,6,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,17.8,71,101500,0,0,385,0,0,0,0,0,0,0,60,5.2,4,4,24.1,77777,9,999999999,309,0.0440,0,88,999.000,999.0,99.0 +1986,5,6,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,18.3,74,101500,0,0,388,0,0,0,0,0,0,0,60,7.2,5,5,24.1,77777,9,999999999,329,0.0440,0,88,999.000,999.0,99.0 +1986,5,6,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,18.3,74,101400,0,0,396,0,0,0,0,0,0,0,60,7.2,7,7,24.1,7620,9,999999999,329,0.0440,0,88,999.000,999.0,99.0 +1986,5,6,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,18.9,76,101400,0,0,412,0,0,0,0,0,0,0,70,6.2,9,9,24.1,7620,9,999999999,329,0.0440,0,88,999.000,999.0,99.0 +1986,5,6,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,18.9,79,101500,0,11,409,36,0,36,0,0,0,0,70,3.1,9,9,24.1,7620,9,999999999,340,0.0370,0,88,999.000,999.0,99.0 +1986,5,6,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,18.9,74,101500,152,1342,415,148,66,126,14400,4900,13900,1610,70,6.2,9,9,32.2,7620,9,999999999,340,0.0370,0,88,999.000,999.0,99.0 +1986,5,6,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,17.8,62,101600,458,1342,403,363,266,215,32300,24800,23900,4900,40,6.2,10,6,32.2,7620,9,999999999,320,0.0370,0,88,999.000,999.0,99.0 +1986,5,6,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,17.2,53,101500,745,1342,411,581,431,262,53300,45300,28100,6400,60,6.7,10,5,32.2,77777,9,999999999,309,0.0370,0,88,999.000,999.0,99.0 +1986,5,6,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,17.2,51,101500,991,1342,417,909,731,266,83100,72700,29300,7650,50,7.2,10,6,32.2,7620,9,999999999,300,0.0370,0,88,999.000,999.0,99.0 +1986,5,6,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,17.2,46,101600,1179,1342,432,784,354,441,81600,38400,47800,20330,50,6.2,10,7,32.2,7620,9,999999999,300,0.0370,0,88,999.000,999.0,99.0 +1986,5,6,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,17.2,48,101500,1296,1342,435,820,478,343,87300,50100,38900,29740,50,6.2,10,8,32.2,7620,9,999999999,309,0.0370,0,88,999.000,999.0,99.0 +1986,5,6,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,17.8,46,101500,1335,1342,443,735,300,446,82200,32700,49700,51160,70,6.7,10,8,32.2,7620,9,999999999,309,0.0370,0,88,999.000,999.0,99.0 +1986,5,6,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,17.8,46,101500,1292,1342,443,438,162,297,51300,17700,34200,21230,50,5.2,10,8,32.2,7620,9,999999999,309,0.0370,0,88,999.000,999.0,99.0 +1986,5,6,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,17.8,50,101400,1170,1342,436,522,269,326,62200,29300,36600,14180,70,5.7,10,8,32.2,7620,9,999999999,320,0.0370,0,88,999.000,999.0,99.0 +1986,5,6,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,17.2,49,101400,979,1342,442,287,103,231,34300,11000,26300,7300,60,6.2,10,9,24.1,7010,9,999999999,300,0.0370,0,88,999.000,999.0,99.0 +1986,5,6,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,17.8,53,101400,730,1342,439,181,46,166,21100,4600,18600,5450,50,7.7,10,9,24.1,7620,9,999999999,320,0.0370,0,88,999.000,999.0,99.0 +1986,5,6,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,18.3,60,101400,442,1342,430,36,13,34,4300,1200,3900,1060,50,5.2,10,9,24.1,7010,9,999999999,320,0.0370,0,88,999.000,999.0,99.0 +1986,5,6,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,18.3,67,101400,136,1287,412,0,0,0,0,0,0,0,90,4.1,9,8,24.1,5490,9,999999999,329,0.0440,0,88,999.000,999.0,99.0 +1986,5,6,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,18.9,71,101500,0,0,403,0,0,0,0,0,0,0,60,3.6,9,7,24.1,6710,9,999999999,329,0.0440,0,88,999.000,999.0,99.0 +1986,5,6,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,18.9,71,101500,0,0,403,0,0,0,0,0,0,0,60,3.6,9,7,24.1,6710,9,999999999,329,0.0440,0,88,999.000,999.0,99.0 +1986,5,6,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,18.9,74,101600,0,0,389,0,0,0,0,0,0,0,70,3.6,8,4,24.1,77777,9,999999999,340,0.0440,0,88,999.000,999.0,99.0 +1986,5,6,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,18.9,74,101600,0,0,389,0,0,0,0,0,0,0,70,4.1,8,4,24.1,77777,9,999999999,340,0.0440,0,88,999.000,999.0,99.0 +1986,5,6,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,18.9,76,101600,0,0,392,0,0,0,0,0,0,0,60,5.2,8,6,24.1,7620,9,999999999,340,0.0440,0,88,999.000,999.0,99.0 +1986,5,7,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,18.3,74,101500,0,0,388,0,0,0,0,0,0,0,50,5.2,5,5,24.1,77777,9,999999999,329,0.0440,0,88,999.000,999.0,99.0 +1986,5,7,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,18.9,76,101400,0,0,397,0,0,0,0,0,0,0,110,2.1,7,7,24.1,7620,9,999999999,329,0.0440,0,88,999.000,999.0,99.0 +1986,5,7,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,18.9,79,101400,0,0,409,0,0,0,0,0,0,0,60,4.1,9,9,24.1,1370,9,999999999,340,0.0440,0,88,999.000,999.0,99.0 +1986,5,7,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,19.4,82,101400,0,0,410,0,0,0,0,0,0,0,40,3.1,9,9,24.1,1370,9,999999999,350,0.0440,0,88,999.000,999.0,99.0 +1986,5,7,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,19.4,84,101300,0,0,406,0,0,0,0,0,0,0,60,3.1,9,9,24.1,1370,9,999999999,350,0.0440,0,88,999.000,999.0,99.0 +1986,5,7,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,19.4,87,101300,0,34,395,52,13,50,0,0,0,0,60,3.6,8,8,24.1,7620,9,999999999,350,0.0220,0,88,999.000,999.0,99.0 +1986,5,7,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,18.9,71,101400,155,1342,418,184,58,164,18400,4500,17900,1340,60,4.1,9,9,32.2,1370,9,999999999,329,0.0220,0,88,999.000,999.0,99.0 +1986,5,7,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,18.9,67,101400,460,1342,416,362,175,265,35400,17000,29500,5630,60,3.6,9,8,32.2,7620,9,999999999,340,0.0220,0,88,999.000,999.0,99.0 +1986,5,7,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,18.3,58,101500,746,1342,424,468,217,307,46000,22400,33500,7990,80,4.1,10,8,32.2,7620,9,999999999,320,0.0220,0,88,999.000,999.0,99.0 +1986,5,7,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,17.8,53,101500,992,1342,423,666,471,252,64400,49000,28100,7700,60,6.2,9,7,32.2,7620,9,999999999,320,0.0220,0,88,999.000,999.0,99.0 +1986,5,7,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,17.2,48,101400,1179,1342,435,842,339,514,87100,36700,54800,24240,90,5.7,9,8,32.2,7620,9,999999999,309,0.0220,0,88,999.000,999.0,99.0 +1986,5,7,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,18.3,51,101400,1296,1342,446,427,94,333,47700,10100,37900,22850,90,6.2,10,9,32.2,7620,9,999999999,320,0.0220,0,88,999.000,999.0,99.0 +1986,5,7,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,18.3,53,101400,1334,1342,456,342,52,292,38200,5300,33000,24280,60,6.7,10,10,32.2,1370,9,999999999,329,0.0220,0,88,999.000,999.0,99.0 +1986,5,7,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,18.3,53,101300,1291,1342,456,409,0,408,48300,0,48300,17920,50,7.2,10,10,32.2,7620,9,999999999,329,0.0220,0,88,999.000,999.0,99.0 +1986,5,7,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,18.9,55,101200,1170,1342,456,334,11,326,39800,1000,38900,14870,80,6.2,10,10,32.2,7620,9,999999999,340,0.0220,0,88,999.000,999.0,99.0 +1986,5,7,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,18.3,57,101200,979,1342,449,250,5,247,29500,400,29200,11370,50,6.2,10,10,32.2,7620,9,999999999,329,0.0220,0,88,999.000,999.0,99.0 +1986,5,7,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,18.3,57,101200,731,1342,449,131,9,129,15900,600,15600,5950,50,5.2,10,10,32.2,7620,9,999999999,329,0.0220,0,88,999.000,999.0,99.0 +1986,5,7,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,19.4,65,101300,443,1342,444,48,1,48,5900,0,5800,2120,50,5.2,10,10,32.2,7620,9,999999999,350,0.0220,0,88,999.000,999.0,99.0 +1986,5,7,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,18.9,67,101300,138,1308,425,0,0,0,0,0,0,0,30,7.2,10,9,32.2,7620,9,999999999,340,0.0440,0,88,999.000,999.0,99.0 +1986,5,7,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,19.4,74,101300,0,0,410,0,0,0,0,0,0,0,60,3.1,9,8,24.1,7620,9,999999999,350,0.0440,0,88,999.000,999.0,99.0 +1986,5,7,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,19.4,76,101400,0,0,407,0,0,0,0,0,0,0,50,3.1,9,8,24.1,7620,9,999999999,350,0.0440,0,88,999.000,999.0,99.0 +1986,5,7,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,19.4,76,101400,0,0,407,0,0,0,0,0,0,0,50,3.1,9,8,24.1,7620,9,999999999,350,0.0440,0,88,999.000,999.0,99.0 +1986,5,7,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,20.0,79,101400,0,0,408,0,0,0,0,0,0,0,90,2.6,9,8,24.1,7620,9,999999999,359,0.0440,0,88,999.000,999.0,99.0 +1986,5,7,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,20.0,76,101400,0,0,411,0,0,0,0,0,0,0,90,2.1,9,8,24.1,760,9,999999999,359,0.0440,0,88,999.000,999.0,99.0 +1986,5,8,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,20.6,87,101300,0,0,411,0,0,0,0,0,0,0,0,0.0,9,9,24.1,1370,9,999999999,370,0.0440,0,88,999.000,999.0,99.0 +1986,5,8,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,20.0,90,101200,0,0,376,0,0,0,0,0,0,0,0,0.0,5,3,24.1,77777,9,999999999,359,0.0440,0,88,999.000,999.0,99.0 +1986,5,8,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,19.4,90,101200,0,0,369,0,0,0,0,0,0,0,0,0.0,5,2,24.1,77777,9,999999999,350,0.0440,0,88,999.000,999.0,99.0 +1986,5,8,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,20.0,93,101100,0,0,373,0,0,0,0,0,0,0,300,2.1,7,3,24.1,77777,9,999999999,359,0.0440,0,88,999.000,999.0,99.0 +1986,5,8,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,18.9,90,101200,0,0,361,0,0,0,0,0,0,0,310,1.5,3,1,24.1,77777,9,999999999,340,0.0440,0,88,999.000,999.0,99.0 +1986,5,8,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,18.9,93,101200,0,34,369,56,44,51,0,0,0,0,320,1.5,6,4,24.1,7620,9,999999999,329,0.0230,0,88,999.000,999.0,99.0 +1986,5,8,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,20.6,87,101300,157,1341,403,167,126,123,14000,7000,13200,2590,0,0.0,10,8,32.2,7620,9,999999999,370,0.0230,0,88,999.000,999.0,99.0 +1986,5,8,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,20.6,79,101300,462,1341,432,210,9,205,22500,800,22300,6070,0,0.0,10,10,32.2,3660,9,999999999,370,0.0230,0,88,999.000,999.0,99.0 +1986,5,8,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,20.0,69,101300,748,1341,429,393,138,290,39600,14300,31700,7550,130,2.6,9,9,24.1,7620,9,999999999,359,0.0230,0,88,999.000,999.0,99.0 +1986,5,8,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,20.0,65,101300,992,1341,426,644,441,256,62400,45900,28400,7850,110,3.1,9,8,24.1,7620,9,999999999,359,0.0230,0,88,999.000,999.0,99.0 +1986,5,8,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,18.9,60,101300,1180,1341,425,583,234,356,62000,25500,39500,16100,50,3.6,8,8,24.1,7620,9,999999999,329,0.0230,0,88,999.000,999.0,99.0 +1986,5,8,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,20.0,59,101200,1296,1341,429,873,475,399,91700,49600,43600,35080,120,3.1,8,7,32.2,7620,9,999999999,359,0.0230,0,88,999.000,999.0,99.0 +1986,5,8,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,19.4,53,101200,1334,1341,430,887,600,308,95800,60700,35300,41930,130,2.6,7,6,32.2,7620,9,999999999,350,0.0230,0,88,999.000,999.0,99.0 +1986,5,8,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,17.8,48,101200,1291,1341,432,433,178,277,51100,19500,32300,19850,200,3.1,7,7,32.2,7620,9,999999999,309,0.0230,0,88,999.000,999.0,99.0 +1986,5,8,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,19.4,55,101100,1170,1341,431,442,152,331,51700,16300,37500,14350,150,4.6,7,7,32.2,1370,9,999999999,350,0.0230,0,88,999.000,999.0,99.0 +1986,5,8,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,21.1,63,101100,979,1341,431,481,467,227,61500,48600,25900,6740,140,6.2,7,7,32.2,7620,9,999999999,379,0.0230,0,88,999.000,999.0,99.0 +1986,5,8,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,21.1,65,101100,732,1341,427,197,180,137,26200,19000,15800,2970,130,5.2,7,7,24.1,1370,9,999999999,379,0.0230,0,88,999.000,999.0,99.0 +1986,5,8,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,21.1,69,101100,444,1341,428,42,31,38,5700,3000,4700,860,130,6.2,8,8,24.1,1370,9,999999999,379,0.0230,0,88,999.000,999.0,99.0 +1986,5,8,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,20.6,72,101200,140,1308,414,0,0,0,0,0,0,0,60,3.6,7,7,24.1,1370,9,999999999,370,0.0440,0,88,999.000,999.0,99.0 +1986,5,8,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,20.0,72,101200,0,0,417,0,0,0,0,0,0,0,70,3.1,8,8,24.1,1370,9,999999999,359,0.0440,0,88,999.000,999.0,99.0 +1986,5,8,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,20.0,69,101300,0,0,420,0,0,0,0,0,0,0,110,4.1,8,8,24.1,1370,9,999999999,359,0.0440,0,88,999.000,999.0,99.0 +1986,5,8,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,20.0,76,101300,0,0,381,0,0,0,0,0,0,0,50,2.6,1,1,24.1,77777,9,999999999,359,0.0440,0,88,999.000,999.0,99.0 +1986,5,8,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,20.0,79,101300,0,0,384,0,0,0,0,0,0,0,60,2.1,2,2,16.1,77777,9,999999999,359,0.0440,0,88,999.000,999.0,99.0 +1986,5,8,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,19.4,76,101300,0,0,396,0,0,0,0,0,0,0,0,0.0,6,6,16.1,2440,9,999999999,350,0.0440,0,88,999.000,999.0,99.0 +1986,5,9,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,20.6,82,101200,0,0,394,0,0,0,0,0,0,0,20,1.5,5,5,16.1,77777,9,999999999,370,0.0440,0,88,999.000,999.0,99.0 +1986,5,9,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,20.0,79,101200,0,0,390,0,0,0,0,0,0,0,30,4.1,4,4,16.1,77777,9,999999999,359,0.0440,0,88,999.000,999.0,99.0 +1986,5,9,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,20.0,76,101100,0,0,393,0,0,0,0,0,0,0,50,4.1,4,4,19.3,77777,9,999999999,359,0.0440,0,88,999.000,999.0,99.0 +1986,5,9,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,20.0,76,101100,0,0,411,0,0,0,0,0,0,0,70,1.5,8,8,19.3,700,9,999999999,359,0.0440,0,88,999.000,999.0,99.0 +1986,5,9,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,20.6,79,101100,0,0,400,0,0,0,0,0,0,0,90,5.2,6,6,19.3,1370,9,999999999,370,0.0440,0,88,999.000,999.0,99.0 +1986,5,9,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,20.6,79,101200,0,56,432,24,3,24,0,0,0,0,110,4.1,10,10,19.3,700,9,999999999,370,0.0350,0,88,999.000,999.0,99.0 +1986,5,9,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,20.6,76,101200,159,1341,436,128,6,126,12800,400,12700,1280,120,3.1,10,10,19.3,1370,9,999999999,370,0.0350,0,88,999.000,999.0,99.0 +1986,5,9,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,20.6,69,101300,464,1341,446,259,3,257,27400,300,27300,6360,90,4.6,10,10,24.1,2440,9,999999999,370,0.0350,0,88,999.000,999.0,99.0 +1986,5,9,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,20.6,65,101400,749,1341,440,377,49,341,40300,5000,37500,9720,110,5.2,9,9,16.1,2440,9,999999999,370,0.0350,0,88,999.000,999.0,99.0 +1986,5,9,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,19.4,59,101400,993,1341,441,562,198,388,58200,20900,42600,12500,110,5.2,9,9,16.1,2440,9,999999999,350,0.0350,0,88,999.000,999.0,99.0 +1986,5,9,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,18.9,55,101400,1180,1341,435,815,496,335,82700,51800,37000,16530,110,4.6,8,8,16.1,1370,9,999999999,340,0.0350,0,88,999.000,999.0,99.0 +1986,5,9,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,18.9,51,101300,1296,1341,441,1007,621,388,106000,64900,43100,34230,140,4.1,8,8,16.1,2440,9,999999999,329,0.0350,0,88,999.000,999.0,99.0 +1986,5,9,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,19.4,55,101300,1334,1341,460,560,175,391,63200,18800,44500,40430,110,3.1,10,10,16.1,1370,9,999999999,350,0.0350,0,88,999.000,999.0,99.0 +1986,5,9,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,19.4,57,101300,1291,1341,457,403,40,368,45000,4100,41100,22610,150,4.6,10,10,16.1,2440,9,999999999,350,0.0350,0,88,999.000,999.0,99.0 +1986,5,9,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,20.0,57,101300,1170,1341,461,313,3,311,37300,300,37100,14370,70,5.7,10,10,16.1,2440,9,999999999,359,0.0350,0,88,999.000,999.0,99.0 +1986,5,9,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,19.4,57,101200,980,1341,457,234,8,230,28000,700,27500,10780,70,4.1,10,10,16.1,2440,9,999999999,350,0.0350,0,88,999.000,999.0,99.0 +1986,5,9,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,20.0,63,101200,732,1341,451,137,7,134,16400,500,16100,6140,50,5.7,10,10,16.1,2440,9,999999999,359,0.0350,0,88,999.000,999.0,99.0 +1986,5,9,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,20.0,67,101300,446,1341,445,43,2,43,5300,100,5300,1920,70,3.6,10,10,16.1,2440,9,999999999,359,0.0350,0,88,999.000,999.0,99.0 +1986,5,9,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,20.6,72,101300,142,1329,442,0,0,0,0,0,0,0,80,4.6,10,10,16.1,2440,9,999999999,370,0.0440,0,88,999.000,999.0,99.0 +1986,5,9,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,21.7,74,101400,0,0,447,0,0,0,0,0,0,0,110,5.2,10,10,16.1,2440,9,999999999,400,0.0440,0,88,999.000,999.0,99.0 +1986,5,9,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,21.7,77,101500,0,0,444,0,0,0,0,0,0,0,120,2.1,10,10,16.1,2440,9,999999999,400,0.0440,0,88,999.000,999.0,99.0 +1986,5,9,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,21.7,85,101600,0,0,434,0,0,0,0,0,0,0,60,1.5,10,10,14.5,1370,9,999999999,400,0.0440,0,88,999.000,999.0,99.0 +1986,5,9,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,21.7,85,101600,0,0,434,0,0,0,0,0,0,0,20,3.1,10,10,14.5,1370,9,999999999,400,0.0440,0,88,999.000,999.0,99.0 +1986,5,9,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,22.2,88,101600,0,0,434,0,0,0,0,0,0,0,30,1.5,10,10,16.1,1370,9,999999999,409,0.0440,0,88,999.000,999.0,99.0 +1986,5,10,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,21.7,90,101600,0,0,427,0,0,0,0,0,0,0,10,2.1,10,10,11.3,1220,9,999999999,390,0.0440,0,88,999.000,999.0,99.0 +1986,5,10,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,21.1,90,101500,0,0,424,0,0,0,0,0,0,0,40,4.1,10,10,11.3,1220,9,999999999,379,0.0440,0,88,999.000,999.0,99.0 +1986,5,10,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,21.7,94,101500,0,0,424,0,0,0,0,0,0,0,0,0.0,10,10,11.3,1220,9,999999999,400,0.0440,0,88,999.000,999.0,99.0 +1986,5,10,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,21.1,90,101400,0,0,424,0,0,0,0,0,0,0,70,6.2,10,10,16.1,1220,9,999999999,379,0.0440,0,88,999.000,999.0,99.0 +1986,5,10,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,21.7,90,101400,0,0,427,0,0,0,0,0,0,0,80,3.1,10,10,16.1,1220,9,999999999,390,0.0440,0,88,999.000,999.0,99.0 +1986,5,10,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,21.1,85,101400,0,78,430,23,3,23,0,0,0,0,60,6.2,10,10,16.1,1220,9,999999999,390,0.0350,0,88,999.000,999.0,99.0 +1986,5,10,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,21.7,87,101500,161,1340,431,87,2,86,9000,100,9000,1820,60,4.1,10,10,16.1,1370,9,999999999,390,0.0350,0,88,999.000,999.0,99.0 +1986,5,10,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,21.7,85,101500,465,1340,434,166,0,165,18200,0,18200,5550,60,3.1,10,10,24.1,1370,9,999999999,400,0.0350,0,88,999.000,999.0,99.0 +1986,5,10,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,21.7,79,101500,750,1340,441,368,0,368,40400,0,40400,11920,100,4.1,10,10,24.1,2440,9,999999999,400,0.0350,0,88,999.000,999.0,99.0 +1986,5,10,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,21.7,77,101600,994,1340,444,436,2,435,49300,200,49100,16500,60,5.2,10,10,16.1,1370,9,999999999,400,0.0350,0,88,999.000,999.0,99.0 +1986,5,10,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,21.1,72,101600,1180,1340,446,458,1,456,52900,100,52800,18610,120,3.6,10,10,16.1,1370,9,999999999,390,0.0350,0,88,999.000,999.0,99.0 +1986,5,10,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,21.1,69,101600,1296,1340,449,472,0,471,55200,0,55200,19700,360,3.1,10,10,16.1,1370,9,999999999,379,0.0350,0,88,999.000,999.0,99.0 +1986,5,10,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,20.6,65,101600,1334,1340,452,492,1,491,57800,100,57700,20430,10,4.6,10,10,16.1,1370,9,999999999,370,0.0350,0,88,999.000,999.0,99.0 +1986,5,10,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,21.1,69,101600,1291,1340,449,454,1,453,53400,100,53300,19200,50,4.6,10,10,16.1,1370,9,999999999,379,0.0350,0,88,999.000,999.0,99.0 +1986,5,10,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,20.6,67,101500,1170,1340,449,375,1,374,44000,100,43900,16380,60,6.7,10,10,16.1,1370,9,999999999,370,0.0350,0,88,999.000,999.0,99.0 +1986,5,10,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,20.0,65,101600,980,1340,448,261,0,261,30600,0,30600,11870,60,4.6,10,10,16.1,1370,9,999999999,359,0.0350,0,88,999.000,999.0,99.0 +1986,5,10,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,20.0,67,101500,733,1340,445,157,0,157,18400,0,18400,6980,60,5.2,10,10,16.1,1370,9,999999999,359,0.0350,0,88,999.000,999.0,99.0 +1986,5,10,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,20.0,69,101600,447,1340,441,47,1,47,5700,0,5700,2090,50,5.2,10,10,16.1,1370,9,999999999,359,0.0350,0,88,999.000,999.0,99.0 +1986,5,10,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,20.0,72,101600,143,1329,438,0,0,0,0,0,0,0,50,5.2,10,10,16.1,1370,9,999999999,359,0.0440,0,88,999.000,999.0,99.0 +1986,5,10,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,20.0,76,101600,0,0,431,0,0,0,0,0,0,0,50,5.2,10,10,16.1,1370,9,999999999,359,0.0440,0,88,999.000,999.0,99.0 +1986,5,10,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,20.0,76,101600,0,0,431,0,0,0,0,0,0,0,50,5.2,10,10,16.1,1370,9,999999999,359,0.0440,0,88,999.000,999.0,99.0 +1986,5,10,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,19.4,74,101700,0,0,431,0,0,0,0,0,0,0,50,4.1,10,10,16.1,1370,9,999999999,350,0.0440,0,88,999.000,999.0,99.0 +1986,5,10,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,18.9,71,101700,0,0,430,0,0,0,0,0,0,0,70,3.1,10,10,16.1,1370,9,999999999,340,0.0440,0,88,999.000,999.0,99.0 +1986,5,10,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,18.3,71,101700,0,0,388,0,0,0,0,0,0,0,60,3.6,4,4,24.1,77777,9,999999999,329,0.0440,0,88,999.000,999.0,99.0 +1986,5,11,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,18.3,71,101700,0,0,385,0,0,0,0,0,0,0,50,4.6,3,3,24.1,77777,9,999999999,329,0.0440,0,88,999.000,999.0,99.0 +1986,5,11,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,18.3,74,101600,0,0,382,0,0,0,0,0,0,0,70,4.1,3,3,24.1,77777,9,999999999,329,0.0440,0,88,999.000,999.0,99.0 +1986,5,11,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,17.8,69,101500,0,0,391,0,0,0,0,0,0,0,60,4.1,5,5,24.1,77777,9,999999999,320,0.0440,0,88,999.000,999.0,99.0 +1986,5,11,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,17.8,71,101500,0,0,388,0,0,0,0,0,0,0,70,3.6,5,5,24.1,77777,9,999999999,309,0.0440,0,88,999.000,999.0,99.0 +1986,5,11,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,17.8,71,101500,0,0,395,2,1,2,0,0,0,0,60,3.1,7,7,24.1,1370,9,999999999,309,0.0230,0,88,999.000,999.0,99.0 +1986,5,11,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,17.8,71,101500,0,78,402,47,68,39,0,0,0,0,60,6.2,8,8,24.1,1370,9,999999999,309,0.0230,0,88,999.000,999.0,99.0 +1986,5,11,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,17.8,71,101500,164,1339,402,261,426,112,16000,22800,13200,2760,60,3.6,8,8,24.1,7620,9,999999999,309,0.0230,0,88,999.000,999.0,99.0 +1986,5,11,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,18.3,67,101600,467,1339,412,314,137,237,31000,13200,26400,5400,90,4.6,8,8,32.2,7620,9,999999999,329,0.0230,0,88,999.000,999.0,99.0 +1986,5,11,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,17.8,56,101600,751,1339,412,835,823,222,69300,79700,24500,4520,100,4.6,6,6,32.2,7620,9,999999999,309,0.0230,0,88,999.000,999.0,99.0 +1986,5,11,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,17.2,53,101600,994,1339,414,919,827,189,85000,84000,22500,5770,80,6.2,7,6,32.2,7620,9,999999999,309,0.0230,0,88,999.000,999.0,99.0 +1986,5,11,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,17.8,51,101600,1180,1339,414,694,410,296,71300,42900,33400,14580,60,7.2,7,4,32.2,7620,9,999999999,309,0.0230,0,88,999.000,999.0,99.0 +1986,5,11,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,17.8,50,101500,1296,1339,420,885,585,301,91600,59100,34300,25800,70,7.2,7,5,32.2,7620,9,999999999,320,0.0230,0,88,999.000,999.0,99.0 +1986,5,11,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,18.3,50,101500,1334,1339,428,929,726,228,102900,74600,28500,32470,60,6.2,7,6,32.2,7620,9,999999999,329,0.0230,0,88,999.000,999.0,99.0 +1986,5,11,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,18.3,53,101400,1291,1339,422,844,721,213,98300,74100,26700,17820,60,7.2,8,6,32.2,7620,9,999999999,329,0.0230,0,88,999.000,999.0,99.0 +1986,5,11,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,18.3,55,101400,1170,1339,419,548,446,222,68200,46800,27200,10450,70,8.2,8,6,32.2,7620,9,999999999,329,0.0230,0,88,999.000,999.0,99.0 +1986,5,11,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,18.3,57,101400,980,1339,421,363,321,187,46600,33500,22000,5510,50,5.2,9,7,32.2,7620,9,999999999,329,0.0230,0,88,999.000,999.0,99.0 +1986,5,11,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,18.9,63,101400,734,1339,431,137,21,130,15700,2100,14500,4420,50,5.2,10,9,32.2,1370,9,999999999,340,0.0230,0,88,999.000,999.0,99.0 +1986,5,11,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,17.8,60,101400,448,1339,411,59,43,54,7900,4100,6500,1220,50,5.2,9,7,24.1,7620,9,999999999,309,0.0230,0,88,999.000,999.0,99.0 +1986,5,11,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,18.3,67,101500,145,1328,412,0,0,0,0,0,0,0,70,5.2,9,8,24.1,7620,9,999999999,329,0.0440,0,88,999.000,999.0,99.0 +1986,5,11,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,18.3,69,101600,0,0,402,0,0,0,0,0,0,0,60,3.6,8,7,24.1,7620,9,999999999,329,0.0440,0,88,999.000,999.0,99.0 +1986,5,11,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,18.9,74,101600,0,0,389,0,0,0,0,0,0,0,50,4.1,7,4,24.1,7620,9,999999999,340,0.0440,0,88,999.000,999.0,99.0 +1986,5,11,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,18.9,71,101600,0,0,409,0,0,0,0,0,0,0,70,5.2,8,8,24.1,1370,9,999999999,329,0.0440,0,88,999.000,999.0,99.0 +1986,5,11,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,18.9,74,101600,0,0,427,0,0,0,0,0,0,0,70,4.1,10,10,24.1,1370,9,999999999,340,0.0440,0,88,999.000,999.0,99.0 +1986,5,11,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,18.9,74,101600,0,0,415,0,0,0,0,0,0,0,50,2.6,9,9,24.1,1370,9,999999999,340,0.0440,0,88,999.000,999.0,99.0 +1986,5,12,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,18.9,74,101600,0,0,406,0,0,0,0,0,0,0,60,4.6,8,8,24.1,7620,9,999999999,340,0.0440,0,88,999.000,999.0,99.0 +1986,5,12,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,18.9,79,101500,0,0,394,0,0,0,0,0,0,0,60,2.6,7,7,24.1,7620,9,999999999,340,0.0440,0,88,999.000,999.0,99.0 +1986,5,12,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,18.3,74,101500,0,0,396,0,0,0,0,0,0,0,60,4.6,7,7,24.1,7620,9,999999999,329,0.0440,0,88,999.000,999.0,99.0 +1986,5,12,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,18.9,76,101500,0,0,424,0,0,0,0,0,0,0,60,1.5,10,10,24.1,1370,9,999999999,329,0.0440,0,88,999.000,999.0,99.0 +1986,5,12,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,18.9,76,101500,0,0,424,0,0,0,0,0,0,0,50,2.1,10,10,24.1,1370,9,999999999,329,0.0470,0,88,999.000,999.0,99.0 +1986,5,12,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,18.9,76,101500,1,78,412,51,22,48,0,0,0,0,60,2.6,9,9,24.1,1370,9,999999999,340,0.0470,0,88,999.000,999.0,99.0 +1986,5,12,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,18.9,71,101500,166,1339,395,206,324,93,13200,17600,11000,2130,70,5.7,5,5,24.1,77777,9,999999999,329,0.0470,0,88,999.000,999.0,99.0 +1986,5,12,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,18.3,64,101500,468,1339,400,374,352,176,31100,33300,19500,3830,100,3.1,5,5,32.2,77777,9,999999999,320,0.0470,0,88,999.000,999.0,99.0 +1986,5,12,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,18.3,60,101600,752,1339,406,711,699,191,59800,68400,21300,4040,60,5.2,5,5,24.1,77777,9,999999999,329,0.0470,0,88,999.000,999.0,99.0 +1986,5,12,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,17.8,55,101500,995,1339,427,702,371,375,69900,40000,40100,11960,60,6.7,8,8,24.1,7620,9,999999999,320,0.0470,0,88,999.000,999.0,99.0 +1986,5,12,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,17.8,48,101500,1180,1339,432,686,307,388,72200,33400,42700,17850,60,5.7,7,7,32.2,7620,9,999999999,320,0.0470,0,88,999.000,999.0,99.0 +1986,5,12,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,17.2,48,101500,1296,1339,428,1071,803,270,111600,81700,32300,23340,30,4.1,7,7,32.2,7620,9,999999999,309,0.0470,0,88,999.000,999.0,99.0 +1986,5,12,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,18.3,57,101500,1333,1339,421,560,216,351,63700,23600,40100,42810,140,5.2,7,7,32.2,7620,9,999999999,329,0.0470,0,88,999.000,999.0,99.0 +1986,5,12,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,19.4,59,101400,1290,1339,416,696,445,306,80700,46700,35600,26050,120,5.7,5,5,32.2,77777,9,999999999,350,0.0470,0,88,999.000,999.0,99.0 +1986,5,12,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,18.3,57,101300,1170,1339,421,466,268,270,56800,29200,31100,11660,140,5.7,7,7,32.2,1370,9,999999999,329,0.0470,0,88,999.000,999.0,99.0 +1986,5,12,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,18.9,57,101300,981,1339,431,402,300,237,50700,32500,26800,6920,140,7.2,8,8,32.2,1370,9,999999999,340,0.0470,0,88,999.000,999.0,99.0 +1986,5,12,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,19.4,63,101300,735,1339,425,147,106,112,19500,11200,13300,2890,70,6.2,8,8,32.2,1370,9,999999999,350,0.0470,0,88,999.000,999.0,99.0 +1986,5,12,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,18.3,62,101300,450,1339,411,50,97,39,8300,9200,5200,670,70,6.2,7,7,24.1,7620,9,999999999,320,0.0470,0,88,999.000,999.0,99.0 +1986,5,12,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,18.9,69,101400,147,1339,398,0,0,0,0,0,0,0,60,4.1,5,5,24.1,77777,9,999999999,340,0.0440,0,88,999.000,999.0,99.0 +1986,5,12,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,18.9,71,101500,0,11,392,0,0,0,0,0,0,0,50,4.6,4,4,24.1,77777,9,999999999,329,0.0440,0,88,999.000,999.0,99.0 +1986,5,12,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,18.9,71,101500,0,0,392,0,0,0,0,0,0,0,30,3.1,4,4,24.1,77777,9,999999999,329,0.0440,0,88,999.000,999.0,99.0 +1986,5,12,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,19.4,76,101600,0,0,387,0,0,0,0,0,0,0,50,2.1,3,3,24.1,77777,9,999999999,350,0.0440,0,88,999.000,999.0,99.0 +1986,5,12,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,19.4,76,101600,0,0,387,0,0,0,0,0,0,0,70,3.6,3,3,24.1,77777,9,999999999,350,0.0440,0,88,999.000,999.0,99.0 +1986,5,12,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,19.4,79,101600,0,0,383,0,0,0,0,0,0,0,50,2.6,4,3,24.1,77777,9,999999999,350,0.0440,0,88,999.000,999.0,99.0 +1986,5,13,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,19.4,82,101500,0,0,384,0,0,0,0,0,0,0,60,2.1,4,4,24.1,77777,9,999999999,350,0.0440,0,88,999.000,999.0,99.0 +1986,5,13,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,19.4,84,101400,0,0,381,0,0,0,0,0,0,0,0,0.0,4,4,24.1,77777,9,999999999,350,0.0440,0,88,999.000,999.0,99.0 +1986,5,13,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,19.4,87,101400,0,0,378,0,0,0,0,0,0,0,320,1.5,4,4,24.1,77777,9,999999999,350,0.0440,0,88,999.000,999.0,99.0 +1986,5,13,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,19.4,90,101400,0,0,372,0,0,0,0,0,0,0,350,2.1,3,3,24.1,77777,9,999999999,350,0.0440,0,88,999.000,999.0,99.0 +1986,5,13,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,19.4,84,101400,0,0,384,1,1,1,0,0,0,0,40,2.1,5,5,24.1,77777,9,999999999,350,0.0860,0,88,999.000,999.0,99.0 +1986,5,13,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,20.0,84,101500,1,100,410,51,24,48,0,0,0,0,0,0.0,10,9,24.1,1370,9,999999999,359,0.0860,0,88,999.000,999.0,99.0 +1986,5,13,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,19.4,79,101500,167,1338,404,174,84,144,16700,6400,15900,1760,10,2.6,8,8,24.1,1370,9,999999999,350,0.0860,0,88,999.000,999.0,99.0 +1986,5,13,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,20.0,72,101500,470,1338,411,428,422,190,35000,40000,20900,4210,40,2.6,7,7,24.1,1370,9,999999999,359,0.0860,0,88,999.000,999.0,99.0 +1986,5,13,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,18.9,65,101600,753,1338,419,500,248,315,48900,25600,34400,8240,100,2.6,8,8,24.1,1370,9,999999999,340,0.0860,0,88,999.000,999.0,99.0 +1986,5,13,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,18.9,55,101600,995,1338,428,444,91,363,47400,9400,40500,13270,180,3.1,7,7,24.1,1370,9,999999999,340,0.0860,0,88,999.000,999.0,99.0 +1986,5,13,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,19.4,55,101500,1180,1338,426,922,595,345,93000,62100,38000,17190,150,4.1,6,6,24.1,7620,9,999999999,350,0.0860,0,88,999.000,999.0,99.0 +1986,5,13,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,20.6,67,101500,1295,1338,420,927,526,402,97400,54900,44000,36000,140,6.7,7,7,24.1,1370,9,999999999,370,0.0860,0,88,999.000,999.0,99.0 +1986,5,13,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,20.6,65,101500,1333,1338,424,739,414,340,82200,43400,38800,50830,130,6.7,7,7,24.1,1370,9,999999999,370,0.0860,0,88,999.000,999.0,99.0 +1986,5,13,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,18.3,47,101400,1290,1338,431,725,478,306,84200,50100,35700,26120,90,4.6,5,5,24.1,77777,9,999999999,329,0.0860,0,88,999.000,999.0,99.0 +1986,5,13,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,20.0,63,101400,1170,1338,423,546,396,255,66200,41500,29800,12110,150,7.2,7,7,24.1,3050,9,999999999,359,0.0860,0,88,999.000,999.0,99.0 +1986,5,13,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,20.0,65,101400,981,1338,426,303,174,207,37500,18900,23600,5960,140,6.2,8,8,24.1,3050,9,999999999,359,0.0860,0,88,999.000,999.0,99.0 +1986,5,13,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,20.0,63,101400,735,1338,439,165,106,130,21400,11100,15200,3360,130,8.2,9,9,24.1,1370,9,999999999,359,0.0860,0,88,999.000,999.0,99.0 +1986,5,13,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,18.9,63,101400,451,1338,431,38,17,36,4600,1500,4100,1130,60,5.2,9,9,24.1,1370,9,999999999,340,0.0860,0,88,999.000,999.0,99.0 +1986,5,13,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,18.9,69,101500,149,1338,421,0,0,0,0,0,0,0,70,4.6,9,9,24.1,3050,9,999999999,340,0.0440,0,88,999.000,999.0,99.0 +1986,5,13,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,18.9,71,101600,0,11,418,0,0,0,0,0,0,0,70,3.1,9,9,24.1,3050,9,999999999,329,0.0440,0,88,999.000,999.0,99.0 +1986,5,13,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,18.9,71,101600,0,0,430,0,0,0,0,0,0,0,60,5.2,10,10,24.1,3050,9,999999999,329,0.0440,0,88,999.000,999.0,99.0 +1986,5,13,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,18.9,74,101700,0,0,427,0,0,0,0,0,0,0,60,5.2,10,10,24.1,7620,9,999999999,340,0.0440,0,88,999.000,999.0,99.0 +1986,5,13,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,18.9,74,101700,0,0,427,0,0,0,0,0,0,0,70,4.1,10,10,24.1,7620,9,999999999,340,0.0440,0,88,999.000,999.0,99.0 +1986,5,13,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,18.9,74,101600,0,0,427,0,0,0,0,0,0,0,70,4.1,10,10,24.1,7620,9,999999999,340,0.0440,0,88,999.000,999.0,99.0 +1986,5,14,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,18.9,74,101600,0,0,400,0,0,0,0,0,0,0,60,4.1,7,7,24.1,7620,9,999999999,340,0.0440,0,88,999.000,999.0,99.0 +1986,5,14,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,19.4,79,101500,0,0,393,0,0,0,0,0,0,0,60,3.6,6,6,24.1,7620,9,999999999,350,0.0440,0,88,999.000,999.0,99.0 +1986,5,14,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,18.9,79,101400,0,0,390,0,0,0,0,0,0,0,60,1.5,6,6,24.1,7620,9,999999999,340,0.0440,0,88,999.000,999.0,99.0 +1986,5,14,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,19.4,82,101400,0,0,410,0,0,0,0,0,0,0,70,1.5,9,9,24.1,3050,9,999999999,350,0.0440,0,88,999.000,999.0,99.0 +1986,5,14,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,19.4,82,101400,0,0,395,3,0,3,0,0,0,0,50,1.5,7,7,24.1,3050,9,999999999,350,0.0220,0,88,999.000,999.0,99.0 +1986,5,14,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,19.4,87,101400,1,100,384,67,114,53,0,0,0,0,60,1.5,7,6,24.1,3050,9,999999999,350,0.0220,0,88,999.000,999.0,99.0 +1986,5,14,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,20.0,82,101500,169,1337,394,269,451,110,15500,25500,12300,2360,60,1.5,7,6,24.1,7620,9,999999999,359,0.0220,0,88,999.000,999.0,99.0 +1986,5,14,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,19.4,67,101600,471,1337,408,388,430,145,30400,39800,16400,2850,80,2.1,7,6,24.1,7620,9,999999999,350,0.0220,0,88,999.000,999.0,99.0 +1986,5,14,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,19.4,63,101600,753,1337,400,682,800,85,57200,79800,12100,2000,150,2.6,3,2,32.2,77777,9,999999999,350,0.0220,0,88,999.000,999.0,99.0 +1986,5,14,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,20.0,61,101600,995,1337,411,822,766,144,74800,76900,17500,4090,140,4.6,3,3,32.2,77777,9,999999999,359,0.0220,0,88,999.000,999.0,99.0 +1986,5,14,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,20.0,61,101600,1180,1337,414,988,790,221,98100,80700,26700,10810,160,6.2,4,4,32.2,77777,9,999999999,359,0.0220,0,88,999.000,999.0,99.0 +1986,5,14,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,20.6,65,101500,1295,1337,415,864,577,288,89800,58500,33000,24960,160,6.7,5,5,32.2,77777,9,999999999,370,0.0220,0,88,999.000,999.0,99.0 +1986,5,14,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,20.6,69,101500,1333,1337,409,882,617,285,95800,62700,33200,41800,160,6.2,5,5,32.2,77777,9,999999999,370,0.0220,0,88,999.000,999.0,99.0 +1986,5,14,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,21.1,67,101400,1290,1337,419,647,436,265,76300,45800,32000,22600,180,5.7,6,6,32.2,1370,9,999999999,379,0.0220,0,88,999.000,999.0,99.0 +1986,5,14,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,20.6,61,101400,1170,1337,425,691,639,222,83300,65200,26100,10480,150,4.1,6,6,32.2,1370,9,999999999,370,0.0220,0,88,999.000,999.0,99.0 +1986,5,14,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,20.0,61,101400,981,1337,421,366,246,231,45800,26700,26200,6740,190,5.2,6,6,32.2,1370,9,999999999,359,0.0220,0,88,999.000,999.0,99.0 +1986,5,14,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,21.7,85,101400,736,1337,422,156,204,88,22900,20900,11400,1850,310,2.6,9,9,24.1,700,9,999999999,400,0.0220,0,88,999.000,999.0,99.0 +1986,5,14,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,21.7,90,101500,452,1337,415,26,23,23,3700,2200,3000,520,270,3.1,9,9,24.1,700,9,999999999,390,0.0220,0,88,999.000,999.0,99.0 +1986,5,14,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,21.1,87,101500,151,1337,426,0,0,0,0,0,0,0,270,1.5,10,10,11.3,700,9,999999999,379,0.0440,0,88,999.000,999.0,99.0 +1986,5,14,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,21.7,90,101600,0,33,415,0,0,0,0,0,0,0,290,1.5,9,9,24.1,700,9,999999999,390,0.0440,0,88,999.000,999.0,99.0 +1986,5,14,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,20.6,82,101600,0,0,417,0,0,0,0,0,0,0,90,2.6,9,9,24.1,700,9,999999999,370,0.0440,0,88,999.000,999.0,99.0 +1986,5,14,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,20.0,82,101700,0,0,398,0,0,0,0,0,0,0,50,3.6,7,7,24.1,1370,9,999999999,359,0.0440,0,88,999.000,999.0,99.0 +1986,5,14,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,20.0,82,101700,0,0,390,0,0,0,0,0,0,0,70,3.6,5,5,24.1,77777,9,999999999,359,0.0440,0,88,999.000,999.0,99.0 +1986,5,14,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,20.0,84,101600,0,0,382,0,0,0,0,0,0,0,80,2.1,3,3,24.1,77777,9,999999999,359,0.0440,0,88,999.000,999.0,99.0 +1986,5,15,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,20.0,87,101600,0,0,379,0,0,0,0,0,0,0,0,0.0,3,3,24.1,77777,9,999999999,359,0.0440,0,88,999.000,999.0,99.0 +1986,5,15,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,20.0,90,101500,0,0,379,0,0,0,0,0,0,0,320,2.1,4,4,24.1,77777,9,999999999,359,0.0440,0,88,999.000,999.0,99.0 +1986,5,15,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,20.0,93,101400,0,0,376,0,0,0,0,0,0,0,310,2.1,4,4,24.1,77777,9,999999999,359,0.0440,0,88,999.000,999.0,99.0 +1986,5,15,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,19.4,93,101400,0,0,373,0,0,0,0,0,0,0,0,0.0,4,4,24.1,77777,9,999999999,350,0.0440,0,88,999.000,999.0,99.0 +1986,5,15,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,20.6,90,101400,0,0,389,3,5,2,0,0,0,0,350,2.1,6,6,24.1,1370,9,999999999,370,0.0270,0,88,999.000,999.0,99.0 +1986,5,15,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,20.6,90,101500,1,123,393,74,66,65,0,0,0,0,350,2.1,7,7,24.1,1370,9,999999999,370,0.0270,0,88,999.000,999.0,99.0 +1986,5,15,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,20.6,90,101600,171,1337,385,303,558,106,16600,31800,12500,2250,0,0.0,5,5,24.1,77777,9,999999999,370,0.0270,0,88,999.000,999.0,99.0 +1986,5,15,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,20.6,74,101600,472,1337,397,387,488,111,29900,45400,13800,2110,70,3.1,3,3,32.2,77777,9,999999999,370,0.0270,0,88,999.000,999.0,99.0 +1986,5,15,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,20.0,65,101600,754,1337,405,678,726,136,57400,72500,16400,3080,80,4.1,3,3,40.2,77777,9,999999999,359,0.0270,0,88,999.000,999.0,99.0 +1986,5,15,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,19.4,59,101600,996,1337,410,819,780,128,75200,78700,16500,3780,70,4.1,3,3,40.2,77777,9,999999999,350,0.0270,0,88,999.000,999.0,99.0 +1986,5,15,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,21.1,67,101500,1180,1337,409,937,762,197,93700,78200,24400,9720,150,6.2,3,3,40.2,77777,9,999999999,379,0.0270,0,88,999.000,999.0,99.0 +1986,5,15,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,21.1,65,101500,1295,1337,412,974,811,164,102000,82300,22100,13780,140,7.7,3,3,40.2,77777,9,999999999,379,0.0270,0,88,999.000,999.0,99.0 +1986,5,15,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,20.0,59,101500,1332,1337,414,938,751,212,100800,75400,25500,30050,150,7.2,3,3,40.2,77777,9,999999999,359,0.0270,0,88,999.000,999.0,99.0 +1986,5,15,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,20.6,61,101400,1290,1337,418,845,800,143,93800,80200,16300,9550,140,6.2,4,4,40.2,77777,9,999999999,370,0.0270,0,88,999.000,999.0,99.0 +1986,5,15,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,20.0,57,101400,1170,1337,423,722,749,171,87100,75400,20900,7490,150,6.2,5,5,40.2,77777,9,999999999,359,0.0270,0,88,999.000,999.0,99.0 +1986,5,15,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,21.7,77,101400,982,1337,431,160,45,135,19500,4900,15900,4290,140,4.1,10,9,32.2,700,9,999999999,400,0.0270,0,88,999.000,999.0,99.0 +1986,5,15,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,21.7,90,101500,737,1337,427,75,3,74,9400,200,9300,3670,60,3.6,10,10,1.6,700,9,999999999,390,0.0270,0,88,999.000,999.0,99.0 +1986,5,15,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,21.7,90,101500,453,1337,427,30,4,29,3800,200,3800,1340,0,0.0,10,10,6.4,700,9,999999999,390,0.0270,0,88,999.000,999.0,99.0 +1986,5,15,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,21.7,87,101600,152,1337,419,0,0,0,0,0,0,0,70,2.6,9,9,24.1,700,9,999999999,390,0.0440,0,88,999.000,999.0,99.0 +1986,5,15,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,21.1,85,101600,0,33,418,0,0,0,0,0,0,0,70,2.6,10,9,24.1,700,9,999999999,390,0.0440,0,88,999.000,999.0,99.0 +1986,5,15,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,21.1,85,101700,0,0,430,0,0,0,0,0,0,0,70,2.6,10,10,24.1,700,9,999999999,390,0.0440,0,88,999.000,999.0,99.0 +1986,5,15,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,20.6,85,101700,0,0,391,0,0,0,0,0,0,0,90,2.6,7,5,24.1,7620,9,999999999,370,0.0440,0,88,999.000,999.0,99.0 +1986,5,15,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,20.0,82,101700,0,0,390,0,0,0,0,0,0,0,80,4.6,8,5,24.1,7620,9,999999999,359,0.0440,0,88,999.000,999.0,99.0 +1986,5,15,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,20.0,82,101600,0,0,387,0,0,0,0,0,0,0,60,6.2,8,4,24.1,77777,9,999999999,359,0.0440,0,88,999.000,999.0,99.0 +1986,5,16,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,19.4,79,101500,0,0,383,0,0,0,0,0,0,0,70,4.6,4,3,24.1,77777,9,999999999,350,0.0440,0,88,999.000,999.0,99.0 +1986,5,16,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,19.4,82,101600,0,0,381,0,0,0,0,0,0,0,70,2.6,3,3,24.1,77777,9,999999999,350,0.0440,0,88,999.000,999.0,99.0 +1986,5,16,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,18.9,82,101500,0,0,377,0,0,0,0,0,0,0,60,2.6,3,3,24.1,77777,9,999999999,340,0.0440,0,88,999.000,999.0,99.0 +1986,5,16,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,18.9,84,101500,0,0,371,0,0,0,0,0,0,0,60,2.6,2,2,24.1,77777,9,999999999,340,0.0440,0,88,999.000,999.0,99.0 +1986,5,16,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,18.9,82,101500,0,0,374,5,16,2,0,0,0,0,60,2.6,2,2,24.1,77777,9,999999999,340,0.0250,0,88,999.000,999.0,99.0 +1986,5,16,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,19.4,84,101500,1,122,378,71,278,35,0,0,0,0,70,3.1,3,3,24.1,77777,9,999999999,350,0.0250,0,88,999.000,999.0,99.0 +1986,5,16,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,20.0,82,101600,173,1336,384,248,469,82,13700,27300,10200,1640,60,4.6,5,3,24.1,77777,9,999999999,359,0.0250,0,88,999.000,999.0,99.0 +1986,5,16,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,20.0,69,101700,473,1336,405,539,722,130,38800,64800,15800,2260,70,5.2,5,5,32.2,77777,9,999999999,359,0.0250,0,88,999.000,999.0,99.0 +1986,5,16,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,19.4,61,101700,755,1336,429,561,396,265,52000,41700,28400,6520,60,5.2,8,8,40.2,7620,9,999999999,350,0.0250,0,88,999.000,999.0,99.0 +1986,5,16,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,18.9,57,101600,996,1336,431,638,275,395,65200,29100,43500,12810,70,7.7,8,8,40.2,7620,9,999999999,340,0.0250,0,88,999.000,999.0,99.0 +1986,5,16,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,18.9,57,101600,1180,1336,440,514,18,496,58900,1900,57200,19510,80,6.2,9,9,40.2,1370,9,999999999,340,0.0250,0,88,999.000,999.0,99.0 +1986,5,16,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,20.6,67,101600,1295,1336,427,705,353,352,75200,37000,39300,31610,140,7.7,8,8,40.2,1370,9,999999999,370,0.0250,0,88,999.000,999.0,99.0 +1986,5,16,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,17.8,51,101500,1332,1336,433,568,242,333,64800,26400,38400,42330,60,8.2,8,8,40.2,1370,9,999999999,309,0.0250,0,88,999.000,999.0,99.0 +1986,5,16,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,18.3,51,101500,1289,1336,421,624,408,266,73400,42900,32000,22790,70,8.2,5,5,40.2,77777,9,999999999,320,0.0250,0,88,999.000,999.0,99.0 +1986,5,16,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,18.9,51,101500,1170,1336,419,623,636,155,75800,64300,19300,6950,40,7.7,3,3,40.2,77777,9,999999999,329,0.0250,0,88,999.000,999.0,99.0 +1986,5,16,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,18.3,50,101400,982,1336,418,400,462,145,52200,47400,17300,4470,40,7.2,4,3,40.2,77777,9,999999999,329,0.0250,0,88,999.000,999.0,99.0 +1986,5,16,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,18.3,53,101400,738,1336,408,260,614,53,41500,60500,8000,1450,50,6.2,3,2,40.2,77777,9,999999999,329,0.0250,0,88,999.000,999.0,99.0 +1986,5,16,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,18.3,60,101500,455,1336,403,60,106,48,9600,10100,6200,840,60,6.7,6,4,40.2,7620,9,999999999,320,0.0250,0,88,999.000,999.0,99.0 +1986,5,16,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,18.3,64,101500,154,1336,394,0,0,0,0,0,0,0,60,5.2,5,3,40.2,77777,9,999999999,320,0.0440,0,88,999.000,999.0,99.0 +1986,5,16,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,18.3,69,101500,0,33,388,0,0,0,0,0,0,0,70,6.2,4,3,32.2,77777,9,999999999,329,0.0440,0,88,999.000,999.0,99.0 +1986,5,16,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,18.9,71,101600,0,0,385,0,0,0,0,0,0,0,60,5.2,3,2,32.2,77777,9,999999999,329,0.0440,0,88,999.000,999.0,99.0 +1986,5,16,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,18.9,71,101600,0,0,380,0,0,0,0,0,0,0,60,5.2,1,1,24.1,77777,9,999999999,329,0.0440,0,88,999.000,999.0,99.0 +1986,5,16,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,19.4,74,101600,0,0,380,0,0,0,0,0,0,0,60,5.2,1,1,24.1,77777,9,999999999,350,0.0440,0,88,999.000,999.0,99.0 +1986,5,16,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,18.9,74,101600,0,0,377,0,0,0,0,0,0,0,60,4.1,1,1,24.1,77777,9,999999999,340,0.0440,0,88,999.000,999.0,99.0 +1986,5,17,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,18.9,74,101600,0,0,382,0,0,0,0,0,0,0,60,3.6,2,2,24.1,77777,9,999999999,340,0.0440,0,88,999.000,999.0,99.0 +1986,5,17,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,18.9,76,101500,0,0,379,0,0,0,0,0,0,0,50,4.1,2,2,24.1,77777,9,999999999,340,0.0440,0,88,999.000,999.0,99.0 +1986,5,17,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,18.3,74,101500,0,0,378,0,0,0,0,0,0,0,40,3.6,2,2,24.1,77777,9,999999999,329,0.0440,0,88,999.000,999.0,99.0 +1986,5,17,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,18.3,74,101500,0,0,378,0,0,0,0,0,0,0,70,3.1,2,2,24.1,77777,9,999999999,329,0.0440,0,88,999.000,999.0,99.0 +1986,5,17,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,17.8,71,101500,0,0,378,4,9,2,0,0,0,0,70,4.1,2,2,24.1,77777,9,999999999,309,0.0300,0,88,999.000,999.0,99.0 +1986,5,17,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,17.2,64,101600,1,145,396,79,155,59,0,0,0,0,90,4.6,6,6,24.1,1370,9,999999999,300,0.0300,0,88,999.000,999.0,99.0 +1986,5,17,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,17.8,64,101600,174,1336,400,220,119,178,20900,9500,19600,1620,80,3.6,6,6,24.1,1370,9,999999999,309,0.0300,0,88,999.000,999.0,99.0 +1986,5,17,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,17.2,56,101600,474,1336,402,569,793,119,40600,71700,15100,2130,70,6.2,4,4,40.2,77777,9,999999999,300,0.0300,0,88,999.000,999.0,99.0 +1986,5,17,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,17.2,51,101600,755,1336,407,705,790,114,58000,77800,13900,2400,60,5.2,3,3,40.2,77777,9,999999999,300,0.0300,0,88,999.000,999.0,99.0 +1986,5,17,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,16.7,48,101700,996,1336,410,792,679,191,73800,68900,22300,5880,90,7.2,3,3,40.2,77777,9,999999999,300,0.0300,0,88,999.000,999.0,99.0 +1986,5,17,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,16.7,45,101600,1180,1336,416,974,827,171,95100,83300,21300,7800,70,8.2,3,3,40.2,77777,9,999999999,300,0.0300,0,88,999.000,999.0,99.0 +1986,5,17,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,16.7,43,101600,1294,1336,426,908,619,290,94300,62700,33400,25270,70,8.2,5,5,40.2,77777,9,999999999,290,0.0300,0,88,999.000,999.0,99.0 +1986,5,17,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,16.7,42,101500,1332,1336,428,850,564,304,91800,57100,34800,46000,60,8.2,5,5,40.2,77777,9,999999999,300,0.0300,0,88,999.000,999.0,99.0 +1986,5,17,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,16.7,42,101500,1289,1336,437,935,747,279,106200,75800,32900,23400,60,7.2,7,7,40.2,7620,9,999999999,300,0.0300,0,88,999.000,999.0,99.0 +1986,5,17,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,17.2,45,101400,1170,1336,435,521,355,260,62700,37200,30000,12440,60,7.2,7,7,40.2,7620,9,999999999,309,0.0300,0,88,999.000,999.0,99.0 +1986,5,17,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,15.6,43,101400,982,1336,417,317,166,225,38700,18000,25400,6570,60,7.2,7,5,40.2,7620,9,999999999,279,0.0300,0,88,999.000,999.0,99.0 +1986,5,17,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,17.2,51,101500,739,1336,414,246,428,101,36200,43100,12300,2340,50,6.7,9,5,40.2,7620,9,999999999,300,0.0300,0,88,999.000,999.0,99.0 +1986,5,17,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,17.8,58,101500,456,1336,414,66,81,56,9600,7800,7000,1270,50,6.2,9,7,32.2,7620,9,999999999,309,0.0300,0,88,999.000,999.0,99.0 +1986,5,17,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,17.8,62,101500,156,1336,423,0,0,0,0,0,0,0,40,4.1,10,9,32.2,7620,9,999999999,320,0.0440,0,88,999.000,999.0,99.0 +1986,5,17,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,18.3,69,101600,0,56,408,0,0,0,0,0,0,0,60,5.2,10,8,24.1,1370,9,999999999,329,0.0440,0,88,999.000,999.0,99.0 +1986,5,17,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,18.3,69,101600,0,0,394,0,0,0,0,0,0,0,60,3.6,10,5,24.1,77777,9,999999999,329,0.0440,0,88,999.000,999.0,99.0 +1986,5,17,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,18.3,71,101700,0,0,388,0,0,0,0,0,0,0,60,3.6,10,4,24.1,77777,9,999999999,329,0.0440,0,88,999.000,999.0,99.0 +1986,5,17,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,17.8,69,101700,0,0,385,0,0,0,0,0,0,0,60,3.6,7,3,24.1,77777,9,999999999,320,0.0440,0,88,999.000,999.0,99.0 +1986,5,17,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,18.9,76,101700,0,0,386,0,0,0,0,0,0,0,60,2.6,5,4,24.1,77777,9,999999999,340,0.0440,0,88,999.000,999.0,99.0 +1986,5,18,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,17.2,71,101700,0,0,375,0,0,0,0,0,0,0,80,2.1,3,2,24.1,77777,9,999999999,309,0.0440,0,88,999.000,999.0,99.0 +1986,5,18,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,18.9,76,101600,0,0,389,0,0,0,0,0,0,0,60,2.6,6,5,24.1,7620,9,999999999,340,0.0440,0,88,999.000,999.0,99.0 +1986,5,18,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,19.4,79,101600,0,0,393,0,0,0,0,0,0,0,40,4.1,7,6,24.1,1370,9,999999999,350,0.0440,0,88,999.000,999.0,99.0 +1986,5,18,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,19.4,82,101600,0,0,381,0,0,0,0,0,0,0,20,1.5,4,3,24.1,77777,9,999999999,350,0.0440,0,88,999.000,999.0,99.0 +1986,5,18,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,18.9,82,101600,0,0,377,5,15,2,0,0,0,0,90,2.1,3,3,24.1,77777,9,999999999,340,0.0210,0,88,999.000,999.0,99.0 +1986,5,18,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,18.9,76,101700,1,145,386,58,182,34,0,0,0,0,60,3.1,8,4,24.1,77777,9,999999999,340,0.0210,0,88,999.000,999.0,99.0 +1986,5,18,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,18.9,69,101700,176,1335,395,234,368,103,15000,20900,12200,2400,70,4.1,8,4,24.1,77777,9,999999999,340,0.0210,0,88,999.000,999.0,99.0 +1986,5,18,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,19.4,69,101700,475,1335,416,330,174,232,31000,16400,25200,5330,70,3.6,8,8,32.2,2440,9,999999999,350,0.0210,0,88,999.000,999.0,99.0 +1986,5,18,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,19.4,61,101800,756,1335,411,666,677,159,56400,67100,18300,3520,50,7.2,4,4,40.2,77777,9,999999999,350,0.0210,0,88,999.000,999.0,99.0 +1986,5,18,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,18.9,57,101800,996,1335,424,635,377,300,63500,40800,33000,9280,90,6.2,7,7,40.2,1370,9,999999999,340,0.0210,0,88,999.000,999.0,99.0 +1986,5,18,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,18.3,51,101700,1180,1335,437,730,395,346,74300,41200,37700,17360,60,7.2,8,8,40.2,1370,9,999999999,320,0.0210,0,88,999.000,999.0,99.0 +1986,5,18,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,18.9,50,101700,1294,1335,437,1046,795,252,109500,81100,30600,22130,70,6.2,7,7,40.2,7620,9,999999999,340,0.0210,0,88,999.000,999.0,99.0 +1986,5,18,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,20.0,63,101700,1331,1335,430,679,339,352,75100,35500,39600,55630,140,7.2,8,8,40.2,1370,9,999999999,359,0.0210,0,88,999.000,999.0,99.0 +1986,5,18,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,19.4,53,101700,1289,1335,442,600,181,440,68100,19300,49300,30040,140,6.2,8,8,40.2,7620,9,999999999,350,0.0210,0,88,999.000,999.0,99.0 +1986,5,18,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,19.4,52,101600,1170,1335,438,450,254,263,54800,27700,30400,11430,40,3.1,7,7,40.2,7620,9,999999999,350,0.0210,0,88,999.000,999.0,99.0 +1986,5,18,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,20.0,55,101600,983,1335,420,482,630,134,64800,64800,16900,4170,70,6.7,6,3,40.2,77777,9,999999999,359,0.0210,0,88,999.000,999.0,99.0 +1986,5,18,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,20.0,59,101600,740,1335,414,269,566,76,42000,56600,10600,1830,60,6.2,6,3,32.2,77777,9,999999999,359,0.0210,0,88,999.000,999.0,99.0 +1986,5,18,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,19.4,61,101600,458,1335,403,64,325,25,15500,30800,5000,630,50,5.2,5,2,32.2,77777,9,999999999,350,0.0210,0,88,999.000,999.0,99.0 +1986,5,18,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,19.4,67,101600,158,1335,401,0,0,0,0,0,0,0,60,5.7,8,4,24.1,77777,9,999999999,350,0.0440,0,88,999.000,999.0,99.0 +1986,5,18,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,18.3,67,101700,0,56,394,0,0,0,0,0,0,0,50,6.2,8,4,24.1,77777,9,999999999,329,0.0440,0,88,999.000,999.0,99.0 +1986,5,18,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,19.4,74,101800,0,0,392,0,0,0,0,0,0,0,70,5.2,5,4,24.1,77777,9,999999999,350,0.0440,0,88,999.000,999.0,99.0 +1986,5,18,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,20.0,79,101800,0,0,384,0,0,0,0,0,0,0,70,5.2,3,2,24.1,77777,9,999999999,359,0.0440,0,88,999.000,999.0,99.0 +1986,5,18,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,19.4,74,101800,0,0,389,0,0,0,0,0,0,0,80,4.1,3,3,24.1,77777,9,999999999,350,0.0440,0,88,999.000,999.0,99.0 +1986,5,18,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,20.0,79,101800,0,0,387,0,0,0,0,0,0,0,60,4.6,3,3,24.1,77777,9,999999999,359,0.0440,0,88,999.000,999.0,99.0 +1986,5,19,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,20.0,79,101800,0,0,393,0,0,0,0,0,0,0,70,4.1,5,5,24.1,77777,9,999999999,359,0.0440,0,88,999.000,999.0,99.0 +1986,5,19,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,20.0,84,101700,0,0,388,0,0,0,0,0,0,0,70,3.1,5,5,24.1,77777,9,999999999,359,0.0440,0,88,999.000,999.0,99.0 +1986,5,19,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,18.9,76,101700,0,0,389,0,0,0,0,0,0,0,60,4.1,5,5,24.1,77777,9,999999999,340,0.0440,0,88,999.000,999.0,99.0 +1986,5,19,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,18.9,79,101700,0,0,383,0,0,0,0,0,0,0,70,3.6,4,4,24.1,77777,9,999999999,340,0.0440,0,88,999.000,999.0,99.0 +1986,5,19,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,18.3,76,101700,0,0,380,5,11,2,0,0,0,0,40,2.1,3,3,24.1,77777,9,999999999,329,0.0370,0,88,999.000,999.0,99.0 +1986,5,19,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,17.8,76,101700,2,145,376,68,168,46,0,0,0,0,50,2.1,6,3,24.1,77777,9,999999999,320,0.0370,0,88,999.000,999.0,99.0 +1986,5,19,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,18.3,69,101800,177,1335,384,285,596,73,14600,34800,10000,1020,70,2.1,3,2,24.1,77777,9,999999999,329,0.0370,0,88,999.000,999.0,99.0 +1986,5,19,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,18.3,60,101800,476,1335,400,431,477,161,33700,44200,17800,3210,60,4.1,3,3,40.2,77777,9,999999999,329,0.0370,0,88,999.000,999.0,99.0 +1986,5,19,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,17.8,53,101800,756,1335,408,564,531,167,50400,54200,19600,3730,70,6.2,3,3,40.2,77777,9,999999999,320,0.0370,0,88,999.000,999.0,99.0 +1986,5,19,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,17.8,48,101800,996,1335,417,877,803,165,81800,82100,20300,5170,40,5.2,3,3,40.2,77777,9,999999999,320,0.0370,0,88,999.000,999.0,99.0 +1986,5,19,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,17.8,46,101700,1179,1335,436,932,605,344,94000,63200,38000,17270,90,5.2,7,7,40.2,7620,9,999999999,309,0.0370,0,88,999.000,999.0,99.0 +1986,5,19,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,19.4,53,101700,1293,1335,442,813,419,394,85700,43800,43100,35640,70,6.7,8,8,40.2,7620,9,999999999,350,0.0370,0,88,999.000,999.0,99.0 +1986,5,19,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,18.9,55,101600,1331,1335,435,718,369,361,79100,38600,40500,57650,120,8.2,8,8,40.2,7620,9,999999999,340,0.0370,0,88,999.000,999.0,99.0 +1986,5,19,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,18.9,51,101600,1289,1335,441,710,443,321,81800,46400,36900,27790,140,8.8,8,8,40.2,7620,9,999999999,329,0.0370,0,88,999.000,999.0,99.0 +1986,5,19,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,17.8,50,101600,1170,1335,420,642,551,237,76500,56100,27200,11220,60,8.2,5,5,40.2,77777,9,999999999,320,0.0370,0,88,999.000,999.0,99.0 +1986,5,19,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,18.3,50,101600,983,1335,424,482,615,142,64200,63200,17600,4400,40,4.6,5,5,40.2,77777,9,999999999,329,0.0370,0,88,999.000,999.0,99.0 +1986,5,19,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,18.3,58,101600,740,1335,406,231,366,107,34800,37400,14000,2280,60,6.7,8,4,32.2,77777,9,999999999,320,0.0370,0,88,999.000,999.0,99.0 +1986,5,19,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,18.3,58,101600,459,1335,406,67,200,43,12900,18600,6500,760,70,6.7,8,4,32.2,77777,9,999999999,320,0.0370,0,88,999.000,999.0,99.0 +1986,5,19,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,18.3,64,101700,160,1335,397,0,0,0,0,0,0,0,60,6.7,9,4,24.1,77777,9,999999999,329,0.0440,0,88,999.000,999.0,99.0 +1986,5,19,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,18.3,69,101800,0,78,388,0,0,0,0,0,0,0,70,5.7,5,3,24.1,77777,9,999999999,329,0.0440,0,88,999.000,999.0,99.0 +1986,5,19,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,17.2,64,101900,0,0,387,0,0,0,0,0,0,0,50,3.1,3,3,24.1,77777,9,999999999,300,0.0440,0,88,999.000,999.0,99.0 +1986,5,19,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,18.3,71,101900,0,0,381,0,0,0,0,0,0,0,70,4.6,2,2,24.1,77777,9,999999999,329,0.0440,0,88,999.000,999.0,99.0 +1986,5,19,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,18.3,71,101900,0,0,381,0,0,0,0,0,0,0,70,5.2,2,2,24.1,77777,9,999999999,329,0.0440,0,88,999.000,999.0,99.0 +1986,5,19,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,17.2,69,101900,0,0,377,0,0,0,0,0,0,0,80,2.6,2,2,24.1,77777,9,999999999,309,0.0440,0,88,999.000,999.0,99.0 +1986,5,20,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,17.8,69,101800,0,0,381,0,0,0,0,0,0,0,80,5.2,2,2,24.1,77777,9,999999999,320,0.0440,0,88,999.000,999.0,99.0 +1986,5,20,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,17.8,71,101700,0,0,378,0,0,0,0,0,0,0,60,4.1,2,2,24.1,77777,9,999999999,309,0.0440,0,88,999.000,999.0,99.0 +1986,5,20,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,18.3,76,101700,0,0,376,0,0,0,0,0,0,0,90,3.1,2,2,24.1,77777,9,999999999,329,0.0440,0,88,999.000,999.0,99.0 +1986,5,20,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,17.8,71,101700,0,0,378,0,0,0,0,0,0,0,80,3.1,2,2,24.1,77777,9,999999999,320,0.0440,0,88,999.000,999.0,99.0 +1986,5,20,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,17.2,71,101700,0,0,375,4,11,2,0,0,0,0,60,3.6,2,2,24.1,77777,9,999999999,309,0.0340,0,88,999.000,999.0,99.0 +1986,5,20,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,17.2,71,101700,2,167,375,84,372,35,0,0,0,0,70,2.6,2,2,24.1,77777,9,999999999,309,0.0340,0,88,999.000,999.0,99.0 +1986,5,20,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,17.8,69,101700,178,1334,381,264,536,72,13900,31600,9600,1020,50,1.5,2,2,24.1,77777,9,999999999,320,0.0340,0,88,999.000,999.0,99.0 +1986,5,20,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,16.7,56,101800,477,1334,391,514,804,57,36200,75000,9300,1200,90,4.1,2,2,40.2,77777,9,999999999,300,0.0340,0,88,999.000,999.0,99.0 +1986,5,20,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,15.6,49,101800,757,1334,395,710,802,109,58600,79200,13600,2350,110,3.6,2,2,40.2,77777,9,999999999,279,0.0340,0,88,999.000,999.0,99.0 +1986,5,20,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,14.4,44,101800,996,1334,401,879,833,141,80200,83700,17500,4060,110,4.1,3,3,40.2,77777,9,999999999,259,0.0340,0,88,999.000,999.0,99.0 +1986,5,20,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,16.7,49,101700,1179,1334,407,889,712,197,89000,73100,24200,9770,140,6.2,3,3,40.2,77777,9,999999999,290,0.0340,0,88,999.000,999.0,99.0 +1986,5,20,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,16.1,46,101700,1293,1334,409,938,777,161,98400,78900,21700,13640,130,7.2,6,3,40.2,77777,9,999999999,290,0.0340,0,88,999.000,999.0,99.0 +1986,5,20,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,17.2,48,101600,1330,1334,413,887,791,122,93800,79400,14400,15960,150,6.7,6,3,40.2,77777,9,999999999,309,0.0340,0,88,999.000,999.0,99.0 +1986,5,20,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,18.9,55,101600,1288,1334,409,830,786,139,92200,78800,15900,9450,160,5.2,4,2,40.2,77777,9,999999999,340,0.0340,0,88,999.000,999.0,99.0 +1986,5,20,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,18.9,57,101500,1170,1334,405,679,733,138,84200,74500,18700,6360,150,5.7,3,2,40.2,77777,9,999999999,340,0.0340,0,88,999.000,999.0,99.0 +1986,5,20,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,18.9,59,101500,983,1334,417,362,330,179,46900,34500,21400,5320,180,3.1,6,6,32.2,1370,9,999999999,340,0.0340,0,88,999.000,999.0,99.0 +1986,5,20,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,19.4,63,101500,741,1334,414,216,210,144,29000,22200,16700,3170,140,2.6,6,6,32.2,1370,9,999999999,350,0.0340,0,88,999.000,999.0,99.0 +1986,5,20,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,19.4,65,101600,460,1334,408,74,320,36,16100,30200,5700,760,190,2.1,5,5,24.1,77777,9,999999999,350,0.0340,0,88,999.000,999.0,99.0 +1986,5,20,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,19.4,69,101600,162,1334,402,0,0,0,0,0,0,0,170,3.1,5,5,24.1,77777,9,999999999,350,0.0440,0,88,999.000,999.0,99.0 +1986,5,20,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,18.9,69,101700,0,78,398,0,0,0,0,0,0,0,110,1.5,5,5,24.1,77777,9,999999999,340,0.0440,0,88,999.000,999.0,99.0 +1986,5,20,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,18.3,67,101700,0,0,401,0,0,0,0,0,0,0,90,2.6,6,6,24.1,1370,9,999999999,329,0.0440,0,88,999.000,999.0,99.0 +1986,5,20,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,18.3,67,101700,0,0,401,0,0,0,0,0,0,0,60,3.1,6,6,24.1,1370,9,999999999,329,0.0440,0,88,999.000,999.0,99.0 +1986,5,20,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,19.4,76,101800,0,0,396,0,0,0,0,0,0,0,50,1.5,6,6,24.1,1370,9,999999999,350,0.0440,0,88,999.000,999.0,99.0 +1986,5,20,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,18.3,79,101700,0,0,377,0,0,0,0,0,0,0,0,0.0,3,3,24.1,77777,9,999999999,329,0.0440,0,88,999.000,999.0,99.0 +1986,5,21,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,18.9,87,101700,0,0,372,0,0,0,0,0,0,0,300,2.6,3,3,24.1,77777,9,999999999,340,0.0440,0,88,999.000,999.0,99.0 +1986,5,21,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,18.3,87,101600,0,0,365,0,0,0,0,0,0,0,300,2.1,2,2,24.1,77777,9,999999999,329,0.0440,0,88,999.000,999.0,99.0 +1986,5,21,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,18.3,87,101600,0,0,365,0,0,0,0,0,0,0,0,0.0,2,2,24.1,77777,9,999999999,329,0.0440,0,88,999.000,999.0,99.0 +1986,5,21,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,17.8,87,101600,0,0,365,0,0,0,0,0,0,0,0,0.0,3,3,24.1,77777,9,999999999,320,0.0440,0,88,999.000,999.0,99.0 +1986,5,21,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,18.3,87,101600,0,0,377,1,2,1,0,0,0,0,0,0.0,6,6,24.1,3050,9,999999999,329,0.0660,0,88,999.000,999.0,99.0 +1986,5,21,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,18.3,87,101600,2,167,377,53,152,33,0,0,0,0,290,2.1,6,6,24.1,2440,9,999999999,329,0.0660,0,88,999.000,999.0,99.0 +1986,5,21,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,18.3,79,101700,180,1334,390,183,164,124,14900,10000,13600,2620,0,0.0,7,7,24.1,1370,9,999999999,329,0.0660,0,88,999.000,999.0,99.0 +1986,5,21,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,16.7,62,101700,478,1334,406,393,210,273,36400,19700,29300,6280,0,0.0,8,8,40.2,1370,9,999999999,300,0.0660,0,88,999.000,999.0,99.0 +1986,5,21,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,16.1,49,101700,757,1334,403,682,680,173,57800,67100,19600,3780,0,0.0,3,3,40.2,77777,9,999999999,290,0.0660,0,88,999.000,999.0,99.0 +1986,5,21,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,16.1,45,101700,996,1334,395,907,913,98,81000,91200,12700,2690,180,2.1,0,0,40.2,77777,9,999999999,290,0.0660,0,88,999.000,999.0,99.0 +1986,5,21,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,17.2,51,101600,1179,1334,390,991,914,103,94400,91700,13200,4370,140,6.2,0,0,40.2,77777,9,999999999,300,0.0660,0,88,999.000,999.0,99.0 +1986,5,21,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,17.2,49,101600,1293,1334,393,1030,926,105,103800,93100,13400,7870,160,6.7,0,0,40.2,77777,9,999999999,300,0.0660,0,88,999.000,999.0,99.0 +1986,5,21,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,18.3,53,101600,1330,1334,395,994,921,103,105800,92600,13200,13840,140,6.7,0,0,40.2,77777,9,999999999,329,0.0660,0,88,999.000,999.0,99.0 +1986,5,21,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,18.9,57,101600,1288,1334,392,896,909,97,101200,91400,12700,7110,170,5.7,0,0,40.2,77777,9,999999999,340,0.0660,0,88,999.000,999.0,99.0 +1986,5,21,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,18.9,57,101500,1170,1334,392,732,875,86,89000,87900,11700,3740,180,4.1,0,0,40.2,77777,9,999999999,340,0.0660,0,88,999.000,999.0,99.0 +1986,5,21,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,17.2,51,101500,984,1334,398,501,780,68,67600,78100,9900,2150,190,4.6,1,1,40.2,77777,9,999999999,300,0.0660,0,88,999.000,999.0,99.0 +1986,5,21,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,17.2,51,101500,742,1334,398,270,642,50,43100,63300,7800,1410,200,3.1,1,1,32.2,77777,9,999999999,300,0.0660,0,88,999.000,999.0,99.0 +1986,5,21,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,18.3,58,101500,462,1334,399,63,258,32,13500,24400,5000,680,160,3.6,2,2,32.2,77777,9,999999999,320,0.0660,0,88,999.000,999.0,99.0 +1986,5,21,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,16.7,56,101500,163,1334,386,2,1,1,200,100,100,20,180,1.5,1,1,24.1,77777,9,999999999,290,0.0660,0,88,999.000,999.0,99.0 +1986,5,21,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,17.2,62,101600,1,100,373,0,0,0,0,0,0,0,120,3.1,0,0,24.1,77777,9,999999999,300,0.0440,0,88,999.000,999.0,99.0 +1986,5,21,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,18.3,69,101600,0,0,372,0,0,0,0,0,0,0,60,2.6,0,0,24.1,77777,9,999999999,329,0.0440,0,88,999.000,999.0,99.0 +1986,5,21,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,17.8,71,101700,0,0,366,0,0,0,0,0,0,0,50,2.6,0,0,24.1,77777,9,999999999,320,0.0440,0,88,999.000,999.0,99.0 +1986,5,21,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,17.2,71,101700,0,0,363,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,309,0.0440,0,88,999.000,999.0,99.0 +1986,5,21,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,16.7,79,101700,0,0,351,0,0,0,0,0,0,0,300,2.1,0,0,24.1,77777,9,999999999,300,0.0440,0,88,999.000,999.0,99.0 +1986,5,22,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,16.7,79,101600,0,0,367,0,0,0,0,0,0,0,0,0.0,3,3,24.1,77777,9,999999999,300,0.0440,0,88,999.000,999.0,99.0 +1986,5,22,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,17.2,73,101600,0,0,404,0,0,0,0,0,0,0,300,2.6,9,9,24.1,1520,9,999999999,300,0.0440,0,88,999.000,999.0,99.0 +1986,5,22,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,17.8,79,101500,0,0,379,0,0,0,0,0,0,0,0,0.0,5,5,24.1,77777,9,999999999,320,0.0440,0,88,999.000,999.0,99.0 +1986,5,22,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,17.8,79,101500,0,0,393,0,0,0,0,0,0,0,0,0.0,8,8,24.1,1520,9,999999999,320,0.0440,0,88,999.000,999.0,99.0 +1986,5,22,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,17.2,73,101500,0,0,395,0,1,0,0,0,0,0,320,2.6,8,8,24.1,1520,9,999999999,300,0.0730,0,88,999.000,999.0,99.0 +1986,5,22,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,17.2,73,101500,2,167,404,40,21,37,0,0,0,0,310,2.1,9,9,24.1,1520,9,999999999,300,0.0730,0,88,999.000,999.0,99.0 +1986,5,22,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,17.2,69,101600,181,1333,395,222,271,124,15700,15600,13600,3070,350,2.1,7,7,32.2,1370,9,999999999,309,0.0730,0,88,999.000,999.0,99.0 +1986,5,22,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,16.7,56,101600,478,1333,398,480,500,196,38900,47700,21700,4370,10,2.1,4,4,40.2,77777,9,999999999,290,0.0730,0,88,999.000,999.0,99.0 +1986,5,22,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,16.1,52,101600,757,1333,403,661,524,268,58000,53100,27800,6310,90,2.1,5,5,40.2,77777,9,999999999,279,0.0730,0,88,999.000,999.0,99.0 +1986,5,22,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,15.6,47,101600,996,1333,409,881,760,208,81600,76800,24100,6360,360,3.1,5,5,40.2,77777,9,999999999,270,0.0730,0,88,999.000,999.0,99.0 +1986,5,22,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,15.6,47,101600,1178,1333,417,690,387,314,70800,40500,34900,15720,0,0.0,7,7,40.2,1070,9,999999999,270,0.0730,0,88,999.000,999.0,99.0 +1986,5,22,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,17.8,55,101500,1292,1333,405,999,837,162,104700,85000,22100,13730,150,5.2,3,3,40.2,77777,9,999999999,320,0.0730,0,88,999.000,999.0,99.0 +1986,5,22,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,19.4,55,101500,1329,1333,412,907,736,194,98300,74200,24100,29740,200,5.2,2,2,40.2,77777,9,999999999,350,0.0730,0,88,999.000,999.0,99.0 +1986,5,22,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,17.8,50,101500,1288,1333,410,812,746,156,94600,75800,21200,12820,210,4.1,2,2,40.2,77777,9,999999999,320,0.0730,0,88,999.000,999.0,99.0 +1986,5,22,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,16.7,48,101500,1170,1333,406,728,813,127,86600,81400,14900,4820,220,4.6,2,2,40.2,77777,9,999999999,300,0.0730,0,88,999.000,999.0,99.0 +1986,5,22,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,17.2,49,101400,984,1333,406,543,798,99,71500,79700,12500,2640,210,5.2,2,2,40.2,77777,9,999999999,300,0.0730,0,88,999.000,999.0,99.0 +1986,5,22,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,16.1,48,101400,743,1333,406,269,460,110,39100,46300,13200,2540,180,4.6,3,3,40.2,77777,9,999999999,290,0.0730,0,88,999.000,999.0,99.0 +1986,5,22,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,16.1,51,101400,463,1333,403,60,133,44,10400,12400,6100,780,200,3.6,4,4,32.2,77777,9,999999999,290,0.0730,0,88,999.000,999.0,99.0 +1986,5,22,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,17.2,60,101500,165,1333,396,2,0,2,300,0,300,90,210,2.6,5,4,24.1,77777,9,999999999,309,0.0730,0,88,999.000,999.0,99.0 +1986,5,22,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,17.8,67,101500,1,100,390,0,0,0,0,0,0,0,30,3.6,5,4,24.1,77777,9,999999999,320,0.0440,0,88,999.000,999.0,99.0 +1986,5,22,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,18.3,74,101500,0,0,382,0,0,0,0,0,0,0,60,3.6,6,3,24.1,77777,9,999999999,329,0.0440,0,88,999.000,999.0,99.0 +1986,5,22,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,17.8,71,101600,0,0,382,0,0,0,0,0,0,0,20,2.1,7,3,24.1,77777,9,999999999,309,0.0440,0,88,999.000,999.0,99.0 +1986,5,22,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,17.2,76,101600,0,0,373,0,0,0,0,0,0,0,0,0.0,7,3,24.1,77777,9,999999999,309,0.0440,0,88,999.000,999.0,99.0 +1986,5,22,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,17.8,79,101500,0,0,373,0,0,0,0,0,0,0,320,2.1,7,3,24.1,77777,9,999999999,320,0.0440,0,88,999.000,999.0,99.0 +1986,5,23,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,17.2,81,101400,0,0,373,0,0,0,0,0,0,0,300,1.5,5,5,24.1,77777,9,999999999,300,0.0440,0,88,999.000,999.0,99.0 +1986,5,23,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,17.2,84,101400,0,0,370,0,0,0,0,0,0,0,320,2.1,5,5,24.1,77777,9,999999999,300,0.0440,0,88,999.000,999.0,99.0 +1986,5,23,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,16.7,84,101400,0,0,366,0,0,0,0,0,0,0,320,1.5,5,5,24.1,77777,9,999999999,290,0.0440,0,88,999.000,999.0,99.0 +1986,5,23,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,16.1,81,101300,0,0,366,0,0,0,0,0,0,0,310,2.1,5,5,24.1,77777,9,999999999,279,0.0440,0,88,999.000,999.0,99.0 +1986,5,23,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,16.1,81,101400,0,0,366,4,10,2,0,0,0,0,310,2.1,5,5,24.1,77777,9,999999999,279,0.0350,0,88,999.000,999.0,99.0 +1986,5,23,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,16.7,87,101400,2,167,361,69,167,47,0,0,0,0,330,2.1,4,4,32.2,77777,9,999999999,290,0.0350,0,88,999.000,999.0,99.0 +1986,5,23,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,18.3,76,101400,182,1332,393,228,152,173,20900,12100,19300,1820,0,0.0,7,7,40.2,7620,9,999999999,329,0.0350,0,88,999.000,999.0,99.0 +1986,5,23,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,17.8,62,101500,479,1332,400,406,359,201,34100,34200,21800,4520,90,2.1,8,5,40.2,7620,9,999999999,320,0.0350,0,88,999.000,999.0,99.0 +1986,5,23,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,17.8,58,101500,757,1332,406,554,459,210,49600,46700,23000,4810,130,2.6,9,5,40.2,7620,9,999999999,309,0.0350,0,88,999.000,999.0,99.0 +1986,5,23,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,16.7,49,101500,996,1332,413,596,412,231,58500,42900,26300,7150,180,3.1,9,5,40.2,7620,9,999999999,290,0.0350,0,88,999.000,999.0,99.0 +1986,5,23,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,17.2,46,101500,1178,1332,420,872,675,216,87000,69000,25800,10660,180,3.1,9,4,40.2,77777,9,999999999,300,0.0350,0,88,999.000,999.0,99.0 +1986,5,23,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,17.8,46,101500,1292,1332,421,968,808,160,101600,82100,21800,13580,210,4.1,7,3,40.2,77777,9,999999999,309,0.0350,0,88,999.000,999.0,99.0 +1986,5,23,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,17.8,50,101500,1329,1332,410,849,704,167,93600,71500,22100,26060,200,3.6,5,2,40.2,77777,9,999999999,320,0.0350,0,88,999.000,999.0,99.0 +1986,5,23,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,17.8,50,101400,1288,1332,410,818,772,139,90800,77400,15800,9500,220,4.6,4,2,40.2,77777,9,999999999,320,0.0350,0,88,999.000,999.0,99.0 +1986,5,23,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,18.3,53,101400,1170,1332,408,685,754,128,81400,75500,14900,4850,180,4.1,4,2,40.2,77777,9,999999999,329,0.0350,0,88,999.000,999.0,99.0 +1986,5,23,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,18.9,55,101400,985,1332,409,468,616,125,63200,63600,16100,3940,190,3.6,4,2,40.2,77777,9,999999999,340,0.0350,0,88,999.000,999.0,99.0 +1986,5,23,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,19.4,61,101300,744,1332,403,207,349,86,30500,35400,10700,2040,200,3.1,4,2,40.2,77777,9,999999999,350,0.0350,0,88,999.000,999.0,99.0 +1986,5,23,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,18.9,60,101400,464,1332,399,70,311,32,15600,29500,5300,680,220,2.1,3,2,40.2,77777,9,999999999,329,0.0350,0,88,999.000,999.0,99.0 +1986,5,23,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,18.9,67,101400,167,1332,395,2,4,1,200,200,200,20,220,2.1,5,3,32.2,77777,9,999999999,340,0.0350,0,88,999.000,999.0,99.0 +1986,5,23,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,18.9,69,101500,1,122,392,0,0,0,0,0,0,0,210,1.5,6,3,24.1,77777,9,999999999,340,0.0440,0,88,999.000,999.0,99.0 +1986,5,23,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,19.4,76,101500,0,0,393,0,0,0,0,0,0,0,180,1.5,5,5,24.1,77777,9,999999999,350,0.0440,0,88,999.000,999.0,99.0 +1986,5,23,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,19.4,76,101600,0,0,387,0,0,0,0,0,0,0,0,0.0,4,3,24.1,77777,9,999999999,350,0.0440,0,88,999.000,999.0,99.0 +1986,5,23,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,18.9,79,101600,0,0,380,0,0,0,0,0,0,0,0,0.0,4,3,24.1,77777,9,999999999,340,0.0440,0,88,999.000,999.0,99.0 +1986,5,23,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,19.4,76,101600,0,0,401,0,0,0,0,0,0,0,0,0.0,7,7,24.1,1370,9,999999999,350,0.0440,0,88,999.000,999.0,99.0 +1986,5,24,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,19.4,82,101600,0,0,381,0,0,0,0,0,0,0,0,0.0,3,3,24.1,77777,9,999999999,350,0.0440,0,88,999.000,999.0,99.0 +1986,5,24,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,18.9,84,101500,0,0,371,0,0,0,0,0,0,0,70,1.5,2,2,24.1,77777,9,999999999,340,0.0440,0,88,999.000,999.0,99.0 +1986,5,24,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,19.4,87,101500,0,0,375,0,0,0,0,0,0,0,0,0.0,3,3,24.1,77777,9,999999999,350,0.0440,0,88,999.000,999.0,99.0 +1986,5,24,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,19.4,90,101500,0,0,372,0,0,0,0,0,0,0,0,0.0,3,3,24.1,77777,9,999999999,350,0.0440,0,88,999.000,999.0,99.0 +1986,5,24,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,18.9,87,101500,0,0,368,8,30,3,0,0,0,0,0,0.0,2,2,24.1,77777,9,999999999,340,0.0220,0,88,999.000,999.0,99.0 +1986,5,24,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,18.9,90,101500,2,189,366,87,388,34,0,0,0,0,0,0.0,2,2,24.1,77777,9,999999999,340,0.0220,0,88,999.000,999.0,99.0 +1986,5,24,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,19.4,79,101600,183,1332,375,296,711,39,13300,48000,6700,600,0,0.0,1,1,32.2,77777,9,999999999,350,0.0220,0,88,999.000,999.0,99.0 +1986,5,24,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,19.4,67,101600,480,1332,389,506,826,34,35300,77100,7500,960,0,0.0,1,1,40.2,77777,9,999999999,350,0.0220,0,88,999.000,999.0,99.0 +1986,5,24,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,19.4,61,101600,757,1332,422,504,247,319,49400,25500,34900,8390,180,3.1,7,7,40.2,3660,9,999999999,350,0.0220,0,88,999.000,999.0,99.0 +1986,5,24,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,18.3,51,101700,995,1332,430,710,457,305,68200,47400,32600,9640,190,3.1,7,7,40.2,3660,9,999999999,320,0.0220,0,88,999.000,999.0,99.0 +1986,5,24,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,13.9,35,101700,1177,1332,425,730,465,278,75300,48700,32100,13840,200,4.1,5,5,40.2,77777,9,999999999,250,0.0220,0,88,999.000,999.0,99.0 +1986,5,24,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,17.8,48,101600,1291,1332,413,904,771,134,90600,77300,15400,9560,190,5.2,2,2,40.2,77777,9,999999999,320,0.0220,0,88,999.000,999.0,99.0 +1986,5,24,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,19.4,53,101600,1329,1332,419,914,788,151,95900,79000,16900,19950,200,5.2,3,3,40.2,77777,9,999999999,350,0.0220,0,88,999.000,999.0,99.0 +1986,5,24,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,19.4,53,101600,1287,1332,419,650,550,166,76900,57100,21600,14380,220,5.7,5,3,40.2,77777,9,999999999,350,0.0220,0,88,999.000,999.0,99.0 +1986,5,24,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,19.4,53,101600,1170,1332,419,659,716,130,82400,73000,18100,6090,210,5.2,5,3,40.2,77777,9,999999999,350,0.0220,0,88,999.000,999.0,99.0 +1986,5,24,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,18.9,51,101600,985,1332,415,478,705,84,63200,70500,10900,2450,220,5.2,4,2,40.2,77777,9,999999999,329,0.0220,0,88,999.000,999.0,99.0 +1986,5,24,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,17.8,55,101600,745,1332,408,262,484,94,39300,49000,11900,2210,200,3.1,7,4,40.2,6710,9,999999999,320,0.0220,0,88,999.000,999.0,99.0 +1986,5,24,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,18.3,57,101600,466,1332,412,58,145,40,10600,13600,5800,710,210,3.1,5,5,40.2,77777,9,999999999,329,0.0220,0,88,999.000,999.0,99.0 +1986,5,24,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,20.0,67,101600,169,1332,402,3,4,2,300,300,300,40,230,3.1,3,3,40.2,77777,9,999999999,359,0.0220,0,88,999.000,999.0,99.0 +1986,5,24,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,19.4,69,101700,1,122,396,0,0,0,0,0,0,0,270,2.1,3,3,32.2,77777,9,999999999,350,0.0440,0,88,999.000,999.0,99.0 +1986,5,24,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,20.0,72,101800,0,0,396,0,0,0,0,0,0,0,110,3.6,3,3,24.1,77777,9,999999999,359,0.0440,0,88,999.000,999.0,99.0 +1986,5,24,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,19.4,74,101800,0,0,389,0,0,0,0,0,0,0,50,2.6,3,3,24.1,77777,9,999999999,350,0.0440,0,88,999.000,999.0,99.0 +1986,5,24,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,20.0,79,101900,0,0,393,0,0,0,0,0,0,0,320,2.1,7,5,24.1,6710,9,999999999,359,0.0440,0,88,999.000,999.0,99.0 +1986,5,24,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,19.4,76,101800,0,0,401,0,0,0,0,0,0,0,300,2.1,8,7,24.1,6710,9,999999999,350,0.0440,0,88,999.000,999.0,99.0 +1986,5,25,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,19.4,79,101800,0,0,397,0,0,0,0,0,0,0,320,2.6,8,7,24.1,2440,9,999999999,350,0.0440,0,88,999.000,999.0,99.0 +1986,5,25,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,20.0,79,101700,0,0,417,0,0,0,0,0,0,0,0,0.0,10,9,24.1,1370,9,999999999,359,0.0440,0,88,999.000,999.0,99.0 +1986,5,25,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,20.0,82,101700,0,0,398,0,0,0,0,0,0,0,0,0.0,8,7,24.1,2440,9,999999999,359,0.0440,0,88,999.000,999.0,99.0 +1986,5,25,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,19.4,84,101700,0,0,374,0,0,0,0,0,0,0,320,1.5,3,2,24.1,77777,9,999999999,350,0.0440,0,88,999.000,999.0,99.0 +1986,5,25,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,18.9,84,101700,0,0,371,6,23,2,0,0,0,0,300,2.6,2,2,24.1,77777,9,999999999,340,0.0330,0,88,999.000,999.0,99.0 +1986,5,25,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,18.9,90,101700,3,189,366,78,290,38,0,0,0,0,0,0.0,3,2,24.1,77777,9,999999999,340,0.0330,0,88,999.000,999.0,99.0 +1986,5,25,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,19.4,76,101700,183,1331,371,309,748,38,13800,50700,6800,600,300,2.6,0,0,32.2,77777,9,999999999,350,0.0330,0,88,999.000,999.0,99.0 +1986,5,25,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,18.9,65,101800,480,1331,381,545,862,53,38300,80200,9300,1160,340,2.1,0,0,40.2,77777,9,999999999,340,0.0330,0,88,999.000,999.0,99.0 +1986,5,25,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,18.3,57,101800,757,1331,397,712,837,84,59900,83600,12200,2000,360,3.1,1,1,40.2,77777,9,999999999,329,0.0330,0,88,999.000,999.0,99.0 +1986,5,25,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,19.4,55,101800,995,1331,419,836,794,131,76700,80100,16800,3870,220,4.1,4,4,40.2,77777,9,999999999,350,0.0330,0,88,999.000,999.0,99.0 +1986,5,25,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,19.4,63,101800,1177,1331,410,820,560,276,81100,56500,31000,13360,180,4.1,5,5,32.2,77777,9,999999999,350,0.0330,0,88,999.000,999.0,99.0 +1986,5,25,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,20.0,67,101800,1291,1331,412,667,290,377,73300,31600,42600,29170,190,4.1,6,6,32.2,1370,9,999999999,359,0.0330,0,88,999.000,999.0,99.0 +1986,5,25,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,20.0,69,101800,1328,1331,409,916,616,319,98600,62200,36400,51880,210,4.1,6,6,32.2,1370,9,999999999,359,0.0330,0,88,999.000,999.0,99.0 +1986,5,25,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,20.0,72,101700,1287,1331,411,825,674,232,95100,69100,28200,19900,180,2.1,7,7,32.2,1370,9,999999999,359,0.0330,0,88,999.000,999.0,99.0 +1986,5,25,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,20.0,65,101700,1170,1331,426,373,189,233,45400,20600,27200,10130,230,2.6,8,8,32.2,1370,9,999999999,359,0.0330,0,88,999.000,999.0,99.0 +1986,5,25,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,18.9,63,101700,985,1331,422,358,224,233,44400,24300,26400,6890,40,3.6,8,8,32.2,1370,9,999999999,340,0.0330,0,88,999.000,999.0,99.0 +1986,5,25,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,18.3,57,101700,746,1331,427,192,167,134,25500,17700,15600,2930,20,5.2,8,8,32.2,1370,9,999999999,329,0.0330,0,88,999.000,999.0,99.0 +1986,5,25,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,18.3,60,101700,467,1331,410,51,84,41,8200,8100,5400,710,20,4.6,6,6,32.2,1370,9,999999999,329,0.0330,0,88,999.000,999.0,99.0 +1986,5,25,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,19.4,69,101700,171,1331,410,2,2,2,300,100,300,40,360,5.2,7,7,24.1,1370,9,999999999,350,0.0330,0,88,999.000,999.0,99.0 +1986,5,25,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,19.4,79,101800,1,122,397,0,0,0,0,0,0,0,20,4.1,7,7,24.1,1220,9,999999999,350,0.0440,0,88,999.000,999.0,99.0 +1986,5,25,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,19.4,79,101800,0,0,393,0,0,0,0,0,0,0,10,4.1,6,6,24.1,1370,9,999999999,350,0.0440,0,88,999.000,999.0,99.0 +1986,5,25,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,18.9,76,101800,0,0,389,0,0,0,0,0,0,0,10,2.1,5,5,24.1,77777,9,999999999,340,0.0440,0,88,999.000,999.0,99.0 +1986,5,25,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,18.3,71,101900,0,0,399,0,0,0,0,0,0,0,140,1.5,7,7,24.1,1370,9,999999999,329,0.0440,0,88,999.000,999.0,99.0 +1986,5,25,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,18.3,76,101800,0,0,385,0,0,0,0,0,0,0,360,3.1,5,5,24.1,77777,9,999999999,329,0.0440,0,88,999.000,999.0,99.0 +1986,5,26,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,18.9,76,101800,0,0,403,0,0,0,0,0,0,0,50,1.5,8,8,24.1,1370,9,999999999,340,0.0440,0,88,999.000,999.0,99.0 +1986,5,26,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,18.3,76,101700,0,0,389,0,0,0,0,0,0,0,360,2.1,6,6,24.1,1370,9,999999999,329,0.0440,0,88,999.000,999.0,99.0 +1986,5,26,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,18.3,76,101700,0,0,389,0,0,0,0,0,0,0,360,2.6,6,6,24.1,1370,9,999999999,329,0.0440,0,88,999.000,999.0,99.0 +1986,5,26,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,18.3,76,101700,0,0,385,0,0,0,0,0,0,0,360,1.5,5,5,24.1,77777,9,999999999,329,0.0440,0,88,999.000,999.0,99.0 +1986,5,26,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,18.3,81,101700,0,0,374,5,9,3,0,0,0,0,300,2.6,3,3,24.1,77777,9,999999999,329,0.0280,0,88,999.000,999.0,99.0 +1986,5,26,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,17.8,79,101700,3,189,370,91,439,31,0,0,0,0,10,3.6,2,2,24.1,77777,9,999999999,320,0.0280,0,88,999.000,999.0,99.0 +1986,5,26,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,18.3,74,101800,184,1331,382,288,584,77,15200,34800,10400,1070,320,2.1,3,3,32.2,77777,9,999999999,329,0.0280,0,88,999.000,999.0,99.0 +1986,5,26,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,17.8,64,101800,480,1331,393,438,512,146,34000,47700,16800,2870,30,3.6,4,4,32.2,77777,9,999999999,309,0.0280,0,88,999.000,999.0,99.0 +1986,5,26,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,17.2,56,101800,757,1331,402,637,608,182,56400,62000,21100,4110,20,5.7,4,4,40.2,77777,9,999999999,309,0.0280,0,88,999.000,999.0,99.0 +1986,5,26,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,17.8,53,101800,995,1331,408,837,753,169,78100,76900,20500,5290,50,6.2,3,3,40.2,77777,9,999999999,320,0.0280,0,88,999.000,999.0,99.0 +1986,5,26,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,17.2,49,101800,1177,1331,410,926,749,198,92600,76900,24500,9820,10,6.2,3,3,40.2,77777,9,999999999,300,0.0280,0,88,999.000,999.0,99.0 +1986,5,26,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,17.2,48,101700,1290,1331,416,939,754,184,97100,76100,23100,15360,30,5.7,4,4,32.2,77777,9,999999999,309,0.0280,0,88,999.000,999.0,99.0 +1986,5,26,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,16.7,43,101700,1328,1331,419,981,898,111,104000,90200,13800,15390,30,5.7,3,3,32.2,77777,9,999999999,290,0.0280,0,88,999.000,999.0,99.0 +1986,5,26,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,16.1,43,101600,1287,1331,415,869,777,185,99200,78400,23200,15020,10,6.2,3,3,40.2,77777,9,999999999,290,0.0280,0,88,999.000,999.0,99.0 +1986,5,26,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,16.7,46,101600,1170,1331,413,710,842,86,86100,84600,11600,3770,30,7.2,3,3,40.2,77777,9,999999999,290,0.0280,0,88,999.000,999.0,99.0 +1986,5,26,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,16.7,48,101600,986,1331,413,524,703,131,68900,70800,16400,3800,50,7.2,4,4,40.2,77777,9,999999999,300,0.0280,0,88,999.000,999.0,99.0 +1986,5,26,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,17.2,53,101500,746,1331,404,256,404,115,38100,41300,14900,2480,40,6.2,3,3,40.2,77777,9,999999999,309,0.0280,0,88,999.000,999.0,99.0 +1986,5,26,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,17.2,58,101600,468,1331,392,79,418,26,18600,38900,4900,800,50,5.2,2,2,40.2,77777,9,999999999,300,0.0280,0,88,999.000,999.0,99.0 +1986,5,26,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,17.2,64,101600,172,1331,383,5,9,3,500,500,500,40,40,4.6,2,2,40.2,77777,9,999999999,300,0.0280,0,88,999.000,999.0,99.0 +1986,5,26,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,17.2,66,101600,1,144,380,0,0,0,0,0,0,0,30,3.6,2,2,24.1,77777,9,999999999,300,0.0440,0,88,999.000,999.0,99.0 +1986,5,26,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,17.8,71,101700,0,0,378,0,0,0,0,0,0,0,50,4.6,2,2,24.1,77777,9,999999999,320,0.0440,0,88,999.000,999.0,99.0 +1986,5,26,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,17.8,74,101700,0,0,379,0,0,0,0,0,0,0,0,0.0,3,3,24.1,77777,9,999999999,320,0.0440,0,88,999.000,999.0,99.0 +1986,5,26,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,19.4,84,101800,0,0,384,0,0,0,0,0,0,0,30,2.6,5,5,24.1,77777,9,999999999,350,0.0440,0,88,999.000,999.0,99.0 +1986,5,26,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,18.9,79,101700,0,0,400,0,0,0,0,0,0,0,40,5.2,8,8,24.1,1370,9,999999999,340,0.0440,0,88,999.000,999.0,99.0 +1986,5,27,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,17.8,76,101700,0,0,382,0,0,0,0,0,0,0,40,3.1,8,5,24.1,1370,9,999999999,320,0.0440,0,88,999.000,999.0,99.0 +1986,5,27,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,18.3,76,101700,0,0,408,0,0,0,0,0,0,0,360,6.2,9,9,24.1,1370,9,999999999,329,0.0440,0,88,999.000,999.0,99.0 +1986,5,27,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,18.9,79,101600,0,0,409,0,0,0,0,0,0,0,310,2.1,9,9,24.1,1370,9,999999999,340,0.0440,0,88,999.000,999.0,99.0 +1986,5,27,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,17.8,74,101600,0,0,408,0,0,0,0,0,0,0,20,2.1,9,9,24.1,1370,9,999999999,320,0.0440,0,88,999.000,999.0,99.0 +1986,5,27,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,18.3,79,101600,0,0,405,2,1,2,0,0,0,0,310,2.6,9,9,24.1,1370,9,999999999,329,0.0520,0,88,999.000,999.0,99.0 +1986,5,27,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,18.3,76,101600,3,188,400,53,17,51,0,0,0,0,320,3.1,8,8,24.1,1370,9,999999999,329,0.0520,0,88,999.000,999.0,99.0 +1986,5,27,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,18.3,74,101600,185,1331,402,231,116,189,22100,9400,20800,1740,340,3.1,8,8,32.2,1370,9,999999999,329,0.0520,0,88,999.000,999.0,99.0 +1986,5,27,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,19.4,79,101700,481,1331,404,200,143,119,18800,13800,13800,2730,30,3.1,8,8,16.1,700,9,999999999,350,0.0520,0,88,999.000,999.0,99.0 +1986,5,27,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,18.9,71,101700,757,1331,418,197,13,188,22700,1000,22100,8180,340,3.1,9,9,16.1,700,9,999999999,340,0.0520,0,88,999.000,999.0,99.0 +1986,5,27,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,16.7,60,101700,994,1331,418,486,129,371,51000,13700,40800,12080,40,5.2,9,9,24.1,1370,9,999999999,300,0.0520,0,88,999.000,999.0,99.0 +1986,5,27,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,15.6,44,101700,1176,1331,430,507,120,390,54800,12800,43500,17550,70,2.6,8,8,32.2,1370,9,999999999,270,0.0520,0,88,999.000,999.0,99.0 +1986,5,27,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,16.1,45,101600,1290,1331,434,496,53,443,54700,5500,49400,27630,50,7.2,8,8,32.2,1370,9,999999999,290,0.0520,0,88,999.000,999.0,99.0 +1986,5,27,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,16.1,42,101600,1327,1331,434,794,384,422,89300,41800,47500,58980,40,6.7,7,7,32.2,1370,9,999999999,290,0.0520,0,88,999.000,999.0,99.0 +1986,5,27,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,16.1,43,101600,1287,1331,421,807,681,207,93900,70100,26000,17890,360,6.7,5,5,40.2,77777,9,999999999,279,0.0520,0,88,999.000,999.0,99.0 +1986,5,27,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,16.1,45,101500,1170,1331,415,663,626,198,80600,64200,23900,9620,40,6.2,4,4,40.2,77777,9,999999999,290,0.0520,0,88,999.000,999.0,99.0 +1986,5,27,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,16.7,51,101500,986,1331,419,408,386,192,52800,40300,22800,5790,40,8.2,7,7,40.2,1370,9,999999999,300,0.0520,0,88,999.000,999.0,99.0 +1986,5,27,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,16.7,54,101500,747,1331,413,187,127,142,24100,13400,16600,3700,40,8.2,7,7,40.2,1370,9,999999999,290,0.0520,0,88,999.000,999.0,99.0 +1986,5,27,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,16.1,54,101500,470,1331,408,59,87,47,9000,8400,6000,830,50,7.2,7,7,40.2,1370,9,999999999,279,0.0520,0,88,999.000,999.0,99.0 +1986,5,27,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,16.1,58,101500,174,1331,402,2,2,1,200,100,200,20,40,6.2,7,7,40.2,2440,9,999999999,290,0.0520,0,88,999.000,999.0,99.0 +1986,5,27,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,16.1,62,101600,2,144,389,0,0,0,0,0,0,0,40,5.2,5,5,24.1,77777,9,999999999,290,0.0440,0,88,999.000,999.0,99.0 +1986,5,27,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,16.1,64,101600,0,0,385,0,0,0,0,0,0,0,360,2.6,5,5,24.1,77777,9,999999999,290,0.0440,0,88,999.000,999.0,99.0 +1986,5,27,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,16.1,64,101600,0,0,383,0,0,0,0,0,0,0,360,3.6,4,4,24.1,77777,9,999999999,290,0.0440,0,88,999.000,999.0,99.0 +1986,5,27,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,16.1,64,101600,0,0,380,0,0,0,0,0,0,0,10,3.6,3,3,24.1,77777,9,999999999,290,0.0440,0,88,999.000,999.0,99.0 +1986,5,27,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,16.1,66,101600,0,0,368,0,0,0,0,0,0,0,320,3.1,1,1,24.1,77777,9,999999999,290,0.0440,0,88,999.000,999.0,99.0 +1986,5,28,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,16.1,71,101600,0,0,363,0,0,0,0,0,0,0,310,3.1,1,1,24.1,77777,9,999999999,290,0.0440,0,88,999.000,999.0,99.0 +1986,5,28,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,16.1,76,101600,0,0,357,0,0,0,0,0,0,0,310,2.6,1,1,24.1,77777,9,999999999,290,0.0440,0,88,999.000,999.0,99.0 +1986,5,28,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,16.7,79,101500,0,0,363,0,0,0,0,0,0,0,310,2.1,2,2,24.1,77777,9,999999999,300,0.0440,0,88,999.000,999.0,99.0 +1986,5,28,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,16.7,81,101500,0,0,355,0,0,0,0,0,0,0,320,2.6,1,1,24.1,77777,9,999999999,290,0.0440,0,88,999.000,999.0,99.0 +1986,5,28,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,16.7,84,101500,0,0,357,4,19,1,0,0,0,0,310,3.1,2,2,24.1,77777,9,999999999,290,0.0490,0,88,999.000,999.0,99.0 +1986,5,28,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,17.2,84,101600,3,211,364,67,173,43,0,0,0,0,300,3.1,3,3,24.1,77777,9,999999999,300,0.0490,0,88,999.000,999.0,99.0 +1986,5,28,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,17.8,84,101600,185,1330,368,256,375,119,16800,22100,13700,2870,290,2.1,3,3,32.2,77777,9,999999999,320,0.0490,0,88,999.000,999.0,99.0 +1986,5,28,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,18.3,71,101700,481,1330,399,479,549,165,36900,51000,18400,3300,70,3.1,7,7,24.1,1370,9,999999999,329,0.0490,0,88,999.000,999.0,99.0 +1986,5,28,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,18.9,71,101700,757,1330,409,333,205,179,32500,21700,20100,4110,340,2.1,8,8,24.1,1370,9,999999999,340,0.0490,0,88,999.000,999.0,99.0 +1986,5,28,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,17.2,58,101700,994,1330,416,500,131,384,52500,13900,42100,12500,40,3.6,8,8,24.1,1370,9,999999999,300,0.0490,0,88,999.000,999.0,99.0 +1986,5,28,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,17.2,48,101600,1175,1330,423,978,690,307,95600,69200,34400,14690,30,5.7,6,6,32.2,1370,9,999999999,309,0.0490,0,88,999.000,999.0,99.0 +1986,5,28,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,17.2,51,101600,1289,1330,414,988,837,151,98500,83900,17000,10420,360,5.2,5,5,32.2,77777,9,999999999,300,0.0490,0,88,999.000,999.0,99.0 +1986,5,28,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,17.2,49,101600,1327,1330,421,611,193,425,68800,20700,48100,51050,30,6.2,6,6,32.2,1370,9,999999999,300,0.0490,0,88,999.000,999.0,99.0 +1986,5,28,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,17.8,53,101500,1286,1330,418,895,761,225,103700,78100,28000,19420,30,7.7,6,6,24.1,1370,9,999999999,320,0.0490,0,88,999.000,999.0,99.0 +1986,5,28,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,18.3,55,101500,1170,1330,419,512,442,183,61900,45500,21700,8950,350,5.7,6,6,32.2,1370,9,999999999,329,0.0490,0,88,999.000,999.0,99.0 +1986,5,28,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,17.2,51,101500,987,1330,414,390,327,207,49300,34100,23900,6280,10,6.7,5,5,40.2,77777,9,999999999,300,0.0490,0,88,999.000,999.0,99.0 +1986,5,28,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,16.7,51,101400,748,1330,410,253,280,154,34600,29700,17800,3440,50,6.2,5,5,40.2,77777,9,999999999,300,0.0490,0,88,999.000,999.0,99.0 +1986,5,28,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,16.1,54,101500,471,1330,397,78,207,51,14200,19400,7300,910,40,7.2,4,4,40.2,77777,9,999999999,279,0.0490,0,88,999.000,999.0,99.0 +1986,5,28,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,16.1,60,101500,176,1330,385,3,8,1,300,500,200,20,30,4.1,3,3,40.2,77777,9,999999999,290,0.0490,0,88,999.000,999.0,99.0 +1986,5,28,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,16.7,64,101600,2,166,386,0,0,0,0,0,0,0,40,4.1,4,4,24.1,77777,9,999999999,300,0.0440,0,88,999.000,999.0,99.0 +1986,5,28,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,16.1,62,101600,0,0,389,0,0,0,0,0,0,0,360,3.6,5,5,24.1,77777,9,999999999,290,0.0440,0,88,999.000,999.0,99.0 +1986,5,28,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,16.7,64,101700,0,0,389,0,0,0,0,0,0,0,20,3.1,5,5,24.1,77777,9,999999999,300,0.0440,0,88,999.000,999.0,99.0 +1986,5,28,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,16.7,69,101700,0,0,378,0,0,0,0,0,0,0,60,2.1,3,3,24.1,77777,9,999999999,300,0.0440,0,88,999.000,999.0,99.0 +1986,5,28,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,17.8,71,101700,0,0,391,0,0,0,0,0,0,0,70,2.6,6,6,24.1,1370,9,999999999,309,0.0440,0,88,999.000,999.0,99.0 +1986,5,29,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,18.3,74,101600,0,0,411,0,0,0,0,0,0,0,60,3.1,9,9,24.1,700,9,999999999,329,0.0440,0,88,999.000,999.0,99.0 +1986,5,29,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,18.9,84,101600,0,0,384,0,0,0,0,0,0,0,310,4.1,6,6,24.1,700,9,999999999,340,0.0440,0,88,999.000,999.0,99.0 +1986,5,29,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,18.3,87,101500,0,0,368,0,0,0,0,0,0,0,330,2.1,3,3,24.1,77777,9,999999999,329,0.0440,0,88,999.000,999.0,99.0 +1986,5,29,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,17.2,84,101500,0,0,356,0,0,0,0,0,0,0,60,2.1,1,1,24.1,77777,9,999999999,300,0.0440,0,88,999.000,999.0,99.0 +1986,5,29,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,17.2,79,101500,0,0,354,6,25,2,0,0,0,0,310,1.5,0,0,24.1,77777,9,999999999,309,0.0450,0,88,999.000,999.0,99.0 +1986,5,29,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,18.3,90,101500,3,211,350,90,463,25,0,0,0,0,310,1.5,0,0,32.2,77777,9,999999999,329,0.0450,0,88,999.000,999.0,99.0 +1986,5,29,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,18.9,84,101600,186,1330,375,276,484,100,16000,29300,11900,2050,310,1.5,3,3,40.2,77777,9,999999999,340,0.0450,0,88,999.000,999.0,99.0 +1986,5,29,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,18.3,69,101600,481,1330,402,406,373,193,34000,35700,21100,4280,10,3.1,7,7,24.1,700,9,999999999,329,0.0450,0,88,999.000,999.0,99.0 +1986,5,29,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,18.3,62,101700,757,1330,407,714,698,191,60400,68500,21300,4100,10,3.1,6,6,24.1,1370,9,999999999,320,0.0450,0,88,999.000,999.0,99.0 +1986,5,29,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,18.9,60,101700,994,1330,418,488,212,299,50000,22900,32800,9260,60,2.6,7,7,24.1,1370,9,999999999,329,0.0450,0,88,999.000,999.0,99.0 +1986,5,29,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,18.3,57,101700,1175,1330,421,794,416,390,80000,43300,41600,19710,40,5.7,7,7,24.1,1370,9,999999999,329,0.0450,0,88,999.000,999.0,99.0 +1986,5,29,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,18.9,63,101700,1288,1330,422,487,252,235,54000,26500,28300,20950,50,6.2,8,8,16.1,700,9,999999999,340,0.0450,0,88,999.000,999.0,99.0 +1986,5,29,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,19.4,63,101600,1326,1330,435,397,148,254,46300,16200,30100,34770,70,4.6,9,9,24.1,700,9,999999999,350,0.0450,0,88,999.000,999.0,99.0 +1986,5,29,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,18.9,63,101600,1286,1330,422,572,207,389,65500,22600,43600,29550,70,6.2,8,8,24.1,1370,9,999999999,340,0.0450,0,88,999.000,999.0,99.0 +1986,5,29,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,18.3,60,101600,1170,1330,421,590,422,277,70800,44200,31800,13550,70,7.7,8,8,24.1,1370,9,999999999,329,0.0450,0,88,999.000,999.0,99.0 +1986,5,29,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,18.3,60,101500,987,1330,421,393,346,198,50100,36100,23200,6000,60,6.2,8,8,24.1,1370,9,999999999,320,0.0450,0,88,999.000,999.0,99.0 +1986,5,29,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,18.9,67,101500,749,1330,425,118,1,118,14300,100,14200,5590,60,7.2,9,9,24.1,700,9,999999999,340,0.0450,0,88,999.000,999.0,99.0 +1986,5,29,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,19.4,76,101600,473,1330,416,34,35,29,5000,3400,3800,660,90,5.2,9,9,24.1,700,9,999999999,350,0.0450,0,88,999.000,999.0,99.0 +1986,5,29,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,18.3,74,101600,178,1330,411,0,1,0,0,0,0,0,70,4.1,9,9,24.1,700,9,999999999,329,0.0450,0,88,999.000,999.0,99.0 +1986,5,29,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,17.2,66,101700,2,166,413,0,0,0,0,0,0,0,70,6.2,9,9,24.1,700,9,999999999,300,0.0440,0,88,999.000,999.0,99.0 +1986,5,29,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,17.2,66,101700,0,0,413,0,0,0,0,0,0,0,60,7.2,9,9,24.1,700,9,999999999,300,0.0440,0,88,999.000,999.0,99.0 +1986,5,29,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,16.7,64,101800,0,0,412,0,0,0,0,0,0,0,70,7.2,9,9,24.1,760,9,999999999,300,0.0440,0,88,999.000,999.0,99.0 +1986,5,29,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,16.1,62,101800,0,0,412,0,0,0,0,0,0,0,70,7.2,9,9,24.1,790,9,999999999,290,0.0440,0,88,999.000,999.0,99.0 +1986,5,29,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,16.1,64,101800,0,0,420,0,0,0,0,0,0,0,60,6.2,10,10,24.1,790,9,999999999,290,0.0440,0,88,999.000,999.0,99.0 +1986,5,30,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,16.1,64,101800,0,0,420,0,0,0,0,0,0,0,50,5.2,10,10,24.1,790,9,999999999,290,0.0440,0,88,999.000,999.0,99.0 +1986,5,30,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,15.6,62,101700,0,0,393,0,0,0,0,0,0,0,50,5.2,7,7,24.1,790,9,999999999,279,0.0440,0,88,999.000,999.0,99.0 +1986,5,30,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,15.0,62,101600,0,0,376,0,0,0,0,0,0,0,40,5.2,3,3,24.1,77777,9,999999999,270,0.0440,0,88,999.000,999.0,99.0 +1986,5,30,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,14.4,62,101600,0,0,356,0,0,0,0,0,0,0,30,3.6,0,0,24.1,77777,9,999999999,259,0.0440,0,88,999.000,999.0,99.0 +1986,5,30,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,13.9,61,101600,0,0,353,8,42,2,0,0,0,0,20,1.5,0,0,24.1,77777,9,999999999,250,0.0270,0,88,999.000,999.0,99.0 +1986,5,30,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,15.0,68,101600,3,210,359,85,455,21,0,0,0,0,40,1.5,1,1,32.2,77777,9,999999999,270,0.0270,0,88,999.000,999.0,99.0 +1986,5,30,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,16.1,62,101700,186,1329,374,303,719,41,13800,48800,7000,610,50,2.6,1,1,32.2,77777,9,999999999,290,0.0270,0,88,999.000,999.0,99.0 +1986,5,30,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,16.1,56,101700,481,1329,382,518,820,49,36500,76400,8800,1140,50,7.2,1,1,40.2,77777,9,999999999,290,0.0270,0,88,999.000,999.0,99.0 +1986,5,30,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,16.1,52,101700,757,1329,388,719,885,56,59100,87400,9300,1530,50,8.8,1,1,40.2,77777,9,999999999,279,0.0270,0,88,999.000,999.0,99.0 +1986,5,30,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,15.6,47,101700,993,1329,393,791,798,84,71000,79800,11200,2490,60,6.2,1,1,40.2,77777,9,999999999,279,0.0270,0,88,999.000,999.0,99.0 +1986,5,30,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,16.7,48,101700,1174,1329,406,966,876,115,91900,87800,14100,4680,50,7.7,2,2,32.2,77777,9,999999999,300,0.0270,0,88,999.000,999.0,99.0 +1986,5,30,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,16.1,48,101700,1288,1329,402,969,801,168,101200,81200,22300,14110,60,9.3,2,2,32.2,77777,9,999999999,290,0.0270,0,88,999.000,999.0,99.0 +1986,5,30,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,16.7,48,101700,1326,1329,406,877,724,175,96100,73400,22800,27520,60,7.7,2,2,32.2,77777,9,999999999,300,0.0270,0,88,999.000,999.0,99.0 +1986,5,30,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,15.6,46,101600,1286,1329,396,832,875,60,95500,88200,9900,4740,40,9.8,1,1,32.2,77777,9,999999999,279,0.0270,0,88,999.000,999.0,99.0 +1986,5,30,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,15.0,44,101600,1171,1329,395,704,869,57,86800,87500,9600,2740,50,9.3,1,1,32.2,77777,9,999999999,270,0.0270,0,88,999.000,999.0,99.0 +1986,5,30,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,14.4,46,101600,988,1329,394,488,661,116,65100,66900,15200,3510,60,11.3,2,2,32.2,77777,9,999999999,259,0.0270,0,88,999.000,999.0,99.0 +1986,5,30,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,15.6,51,101600,750,1329,400,259,459,97,38400,46500,12100,2290,60,8.2,4,4,32.2,77777,9,999999999,279,0.0270,0,88,999.000,999.0,99.0 +1986,5,30,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,14.4,54,101600,474,1329,383,90,448,31,21400,42600,6100,760,60,9.3,3,3,24.1,77777,9,999999999,259,0.0270,0,88,999.000,999.0,99.0 +1986,5,30,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,13.9,54,101700,179,1329,376,7,25,3,800,1700,500,60,50,9.3,2,2,24.1,77777,9,999999999,250,0.0270,0,88,999.000,999.0,99.0 +1986,5,30,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,15.6,62,101700,2,166,375,0,0,0,0,0,0,0,60,8.2,2,2,24.1,77777,9,999999999,279,0.0440,0,88,999.000,999.0,99.0 +1986,5,30,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,15.0,60,101700,0,0,369,0,0,0,0,0,0,0,60,8.2,1,1,24.1,77777,9,999999999,270,0.0440,0,88,999.000,999.0,99.0 +1986,5,30,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,15.6,64,101800,0,0,368,0,0,0,0,0,0,0,70,7.2,1,1,24.1,77777,9,999999999,279,0.0440,0,88,999.000,999.0,99.0 +1986,5,30,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,15.6,64,101800,0,0,368,0,0,0,0,0,0,0,60,7.7,1,1,24.1,77777,9,999999999,279,0.0440,0,88,999.000,999.0,99.0 +1986,5,30,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,15.6,64,101700,0,0,361,0,0,0,0,0,0,0,50,6.2,0,0,24.1,77777,9,999999999,279,0.0440,0,88,999.000,999.0,99.0 +1986,5,31,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,15.0,64,101700,0,0,357,0,0,0,0,0,0,0,50,7.2,0,0,24.1,77777,9,999999999,270,0.0440,0,88,999.000,999.0,99.0 +1986,5,31,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,15.0,64,101600,0,0,357,0,0,0,0,0,0,0,50,7.7,0,0,24.1,77777,9,999999999,270,0.0440,0,88,999.000,999.0,99.0 +1986,5,31,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,15.0,64,101600,0,0,357,0,0,0,0,0,0,0,60,7.2,0,0,24.1,77777,9,999999999,270,0.0440,0,88,999.000,999.0,99.0 +1986,5,31,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,15.0,64,101600,0,0,357,0,0,0,0,0,0,0,60,8.2,0,0,24.1,77777,9,999999999,270,0.0440,0,88,999.000,999.0,99.0 +1986,5,31,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,15.0,64,101600,0,0,357,7,36,2,0,0,0,0,50,6.7,0,0,24.1,77777,9,999999999,270,0.0330,0,88,999.000,999.0,99.0 +1986,5,31,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,15.6,66,101600,3,210,358,94,511,22,0,0,0,0,40,6.7,0,0,24.1,77777,9,999999999,279,0.0330,0,88,999.000,999.0,99.0 +1986,5,31,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,15.0,60,101700,187,1329,369,306,753,32,14400,55100,6700,510,50,5.7,1,1,24.1,77777,9,999999999,270,0.0330,0,88,999.000,999.0,99.0 +1986,5,31,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,15.0,54,101700,481,1329,378,508,785,59,36000,73400,9400,1230,70,7.2,1,1,32.2,77777,9,999999999,270,0.0330,0,88,999.000,999.0,99.0 +1986,5,31,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,14.4,49,101800,756,1329,383,713,861,67,58500,84900,10100,1670,50,7.2,1,1,32.2,77777,9,999999999,259,0.0330,0,88,999.000,999.0,99.0 +1986,5,31,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,15.0,47,101800,993,1329,389,794,782,102,71200,78100,12700,2730,60,8.8,1,1,32.2,77777,9,999999999,270,0.0330,0,88,999.000,999.0,99.0 +1986,5,31,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,14.4,44,101800,1174,1329,397,969,876,118,92100,87800,14300,4750,70,7.7,2,2,32.2,77777,9,999999999,259,0.0330,0,88,999.000,999.0,99.0 +1986,5,31,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,14.4,43,101700,1287,1329,404,982,860,122,98400,86300,14600,8820,60,8.2,3,3,32.2,77777,9,999999999,259,0.0330,0,88,999.000,999.0,99.0 +1986,5,31,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,15.0,44,101700,1325,1329,404,1007,910,125,106300,91400,14900,16830,60,8.8,3,3,32.2,77777,9,999999999,270,0.0330,0,88,999.000,999.0,99.0 +1986,5,31,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,15.6,46,101600,1286,1329,405,882,805,172,101600,81500,22500,14200,60,8.8,3,3,32.2,77777,9,999999999,279,0.0330,0,88,999.000,999.0,99.0 +1986,5,31,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,15.6,47,101600,1171,1329,402,509,485,148,63200,50300,18800,7360,50,7.7,4,3,32.2,77777,9,999999999,270,0.0330,0,88,999.000,999.0,99.0 +1986,5,31,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,15.0,47,101500,988,1329,420,255,35,235,28900,3500,26200,9220,60,9.3,8,8,32.2,7620,9,999999999,270,0.0330,0,88,999.000,999.0,99.0 +1986,5,31,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,15.0,52,101500,751,1329,420,221,63,198,25700,6300,22200,6480,70,7.2,9,9,32.2,7620,9,999999999,270,0.0330,0,88,999.000,999.0,99.0 +1986,5,31,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,15.6,56,101500,475,1329,417,43,27,39,5700,2600,4800,890,70,7.7,9,9,24.1,7620,9,999999999,279,0.0330,0,88,999.000,999.0,99.0 +1986,5,31,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,14.4,56,101600,181,1329,409,2,1,2,200,100,200,60,60,7.7,9,9,24.1,7620,9,999999999,259,0.0330,0,88,999.000,999.0,99.0 +1986,5,31,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,15.0,60,101600,2,188,407,0,0,0,0,0,0,0,70,6.2,9,9,24.1,7620,9,999999999,270,0.0440,0,88,999.000,999.0,99.0 +1986,5,31,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,16.1,66,101700,0,0,391,0,0,0,0,0,0,0,60,8.2,7,7,24.1,7620,9,999999999,290,0.0440,0,88,999.000,999.0,99.0 +1986,5,31,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.9,16.6,69,101700,0,0,392,0,0,0,0,0,0,0,70,7.7,7,7,24.1,7620,9,999999999,300,0.0440,0,88,999.000,999.0,99.0 +1986,5,31,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.9,17.0,66,101700,0,0,392,0,0,0,0,0,0,0,60,7.3,7,7,24.1,7620,9,999999999,290,0.0440,0,88,999.000,999.0,99.0 +1986,5,31,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.0,17.5,66,101700,0,0,386,0,0,0,0,0,0,0,120,6.8,5,5,24.1,77777,9,999999999,279,0.0440,0,88,999.000,999.0,99.0 +1977,6,1,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,23.0,17.9,69,101800,0,0,371,0,0,0,0,0,0,0,50,6.4,1,1,24.1,77777,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1977,6,1,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.1,18.4,71,101700,0,0,372,0,0,0,0,0,0,0,50,5.9,1,1,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1977,6,1,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,23.1,18.8,75,101700,0,0,385,0,0,0,0,0,0,0,50,5.5,4,4,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1977,6,1,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,23.2,19.3,78,101600,0,0,392,0,0,0,0,0,0,0,60,5.0,6,6,24.1,77777,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1977,6,1,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,19.4,82,101600,0,0,410,1,2,0,0,0,0,0,60,4.6,9,9,24.1,760,9,999999999,350,0.0430,0,88,999.000,999.0,99.0 +1977,6,1,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,23.2,19.5,80,101600,3,210,412,40,35,35,0,0,0,0,60,4.8,9,9,24.1,963,9,999999999,350,0.0430,0,88,999.000,999.0,99.0 +1977,6,1,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,23.5,19.6,78,101700,187,1328,405,174,152,118,14400,9600,13000,2500,70,5.0,8,8,24.1,1167,9,999999999,350,0.0430,0,88,999.000,999.0,99.0 +1977,6,1,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,19.4,76,101700,481,1328,407,221,121,152,21300,11600,17100,3490,70,5.2,8,8,24.1,1370,9,999999999,350,0.0430,0,88,999.000,999.0,99.0 +1977,6,1,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,25.2,19.8,72,101700,756,1328,404,550,368,274,51400,38800,29300,6810,70,6.2,6,6,24.1,77777,9,999999999,350,0.0430,0,88,999.000,999.0,99.0 +1977,6,1,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,26.5,20.0,67,101700,992,1328,407,808,619,259,77400,64400,29100,8070,70,7.2,5,5,24.1,77777,9,999999999,359,0.0430,0,88,999.000,999.0,99.0 +1977,6,1,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,20.0,63,101700,1173,1328,408,833,655,197,83500,67300,24000,9740,70,8.2,3,3,40.2,77777,9,999999999,359,0.0430,0,88,999.000,999.0,99.0 +1977,6,1,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,27.6,20.2,64,101700,1287,1328,410,894,651,243,93800,66600,29100,21240,70,7.9,4,4,40.2,77777,9,999999999,359,0.0430,0,88,999.000,999.0,99.0 +1977,6,1,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,27.4,20.2,64,101800,1325,1328,416,662,361,312,74000,37900,36100,51440,60,7.5,6,6,40.2,77777,9,999999999,359,0.0430,0,88,999.000,999.0,99.0 +1977,6,1,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,20.0,65,101800,1285,1328,420,618,300,353,72000,32700,40300,26780,60,7.2,7,7,32.2,1370,9,999999999,359,0.0430,0,88,999.000,999.0,99.0 +1977,6,1,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,26.8,20.2,66,101800,1171,1328,418,524,446,193,63200,45800,22700,9480,60,7.5,7,7,32.2,1370,9,999999999,359,0.0430,0,88,999.000,999.0,99.0 +1977,6,1,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,26.5,20.1,68,101700,989,1328,422,373,247,234,46500,26800,26500,6980,60,7.9,8,8,32.2,1370,9,999999999,359,0.0430,0,88,999.000,999.0,99.0 +1977,6,1,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,20.0,69,101700,752,1328,420,222,190,154,29000,20100,17600,3450,60,8.2,8,8,32.2,1370,9,999999999,359,0.0430,0,88,999.000,999.0,99.0 +1977,6,1,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,25.4,20.0,71,101800,477,1328,410,67,69,58,9500,6700,7100,1330,60,8.0,7,7,32.2,1370,9,999999999,359,0.0430,0,88,999.000,999.0,99.0 +1977,6,1,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.6,19.7,74,101800,183,1328,405,1,4,0,0,0,0,0,60,7.9,7,7,32.2,1370,9,999999999,350,0.0430,0,88,999.000,999.0,99.0 +1977,6,1,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,19.4,76,101800,3,188,396,0,0,0,0,0,0,0,60,7.7,6,6,24.1,1370,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1977,6,1,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,23.7,19.8,78,101800,0,0,400,0,0,0,0,0,0,0,60,6.3,7,7,24.1,1370,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1977,6,1,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,23.5,20.0,80,101900,0,0,406,0,0,0,0,0,0,0,70,5.0,9,8,24.1,1370,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1977,6,1,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,20.0,82,101900,0,0,413,0,0,0,0,0,0,0,70,3.6,10,9,24.1,1370,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1977,6,1,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,23.5,19.8,79,101900,0,0,414,0,0,0,0,0,0,0,70,4.1,9,9,24.1,1370,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1977,6,2,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,23.7,19.5,77,101800,0,0,406,0,0,0,0,0,0,0,60,4.7,9,8,24.1,1370,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1977,6,2,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,18.9,74,101800,0,0,406,0,0,0,0,0,0,0,60,5.2,8,8,24.1,1370,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1977,6,2,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,23.7,19.1,75,101800,0,0,399,0,0,0,0,0,0,0,60,5.7,7,7,24.1,77777,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1977,6,2,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,23.5,19.1,75,101800,0,0,394,0,0,0,0,0,0,0,60,6.2,6,6,24.1,77777,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1977,6,2,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,18.9,76,101800,0,0,389,5,11,3,0,0,0,0,60,6.7,5,5,24.1,77777,9,999999999,340,0.0380,0,88,999.000,999.0,99.0 +1977,6,2,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,23.5,19.0,75,101800,3,210,393,81,148,60,0,0,0,0,70,5.7,6,6,24.1,77777,9,999999999,340,0.0380,0,88,999.000,999.0,99.0 +1977,6,2,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,23.7,19.1,75,101900,187,1328,406,110,33,98,11200,2500,10800,1870,70,4.6,8,8,24.1,77777,9,999999999,340,0.0380,0,88,999.000,999.0,99.0 +1977,6,2,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,18.9,74,101900,481,1328,415,207,61,172,21200,5800,19100,4510,80,3.6,9,9,24.1,700,9,999999999,340,0.0380,0,88,999.000,999.0,99.0 +1977,6,2,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.6,19.1,71,101900,755,1328,419,340,85,276,35600,8600,30700,8480,70,5.1,9,9,24.1,923,9,999999999,340,0.0380,0,88,999.000,999.0,99.0 +1977,6,2,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,25.4,19.1,68,101900,991,1328,415,662,400,308,66200,43200,33800,9570,70,6.7,9,8,24.1,1147,9,999999999,340,0.0380,0,88,999.000,999.0,99.0 +1977,6,2,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,18.9,65,101900,1172,1328,419,423,204,224,46200,22300,26400,9880,60,8.2,9,8,32.2,1370,9,999999999,340,0.0380,0,88,999.000,999.0,99.0 +1977,6,2,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,27.0,18.4,59,101800,1286,1328,412,701,319,382,76900,34800,43200,29320,60,8.6,7,6,32.2,77777,9,999999999,329,0.0380,0,88,999.000,999.0,99.0 +1977,6,2,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,28.0,17.6,54,101800,1324,1328,409,941,775,190,102300,78200,24000,29140,50,8.9,4,4,32.2,77777,9,999999999,320,0.0380,0,88,999.000,999.0,99.0 +1977,6,2,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,16.7,48,101700,1285,1328,406,869,849,119,97000,85200,14300,8570,50,9.3,2,2,40.2,77777,9,999999999,300,0.0380,0,88,999.000,999.0,99.0 +1977,6,2,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,28.5,17.4,51,101700,1171,1328,405,711,797,117,84700,79900,14000,4690,50,9.1,2,2,40.2,77777,9,999999999,309,0.0380,0,88,999.000,999.0,99.0 +1977,6,2,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,28.2,17.9,53,101700,989,1328,408,565,835,92,74300,83500,12000,2600,50,9.0,3,3,40.2,77777,9,999999999,320,0.0380,0,88,999.000,999.0,99.0 +1977,6,2,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,18.3,56,101600,753,1328,406,311,700,61,48200,69100,9000,1590,50,8.8,3,3,40.2,77777,9,999999999,320,0.0380,0,88,999.000,999.0,99.0 +1977,6,2,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,26.7,18.1,59,101700,478,1328,400,77,294,37,15800,28000,5700,780,50,8.3,3,3,40.2,77777,9,999999999,320,0.0380,0,88,999.000,999.0,99.0 +1977,6,2,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,25.5,17.7,61,101700,185,1328,389,5,20,2,600,1400,400,40,60,7.7,2,2,40.2,77777,9,999999999,309,0.0380,0,88,999.000,999.0,99.0 +1977,6,2,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,17.2,64,101700,3,210,383,0,0,0,0,0,0,0,60,7.2,2,2,24.1,77777,9,999999999,300,0.0400,0,88,999.000,999.0,99.0 +1977,6,2,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.4,17.8,66,101800,0,0,387,0,0,0,0,0,0,0,60,7.0,3,3,24.1,77777,9,999999999,309,0.0400,0,88,999.000,999.0,99.0 +1977,6,2,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.4,18.1,67,101800,0,0,391,0,0,0,0,0,0,0,60,6.9,4,4,24.1,77777,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1977,6,2,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,18.3,69,101800,0,0,394,0,0,0,0,0,0,0,60,6.7,5,5,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1977,6,2,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.2,18.5,70,101800,0,0,393,0,0,0,0,0,0,0,60,6.4,5,5,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1977,6,3,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.1,18.5,70,101800,0,0,393,0,0,0,0,0,0,0,60,6.0,5,5,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1977,6,3,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,18.3,71,101800,0,0,391,0,0,0,0,0,0,0,60,5.7,5,5,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1977,6,3,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,23.3,18.7,75,101800,0,0,389,0,0,0,0,0,0,0,50,5.0,5,5,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1977,6,3,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,22.8,18.9,78,101800,0,0,383,0,0,0,0,0,0,0,40,4.3,4,4,24.1,77777,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1977,6,3,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,18.9,82,101800,0,0,380,8,31,3,0,0,0,0,30,3.6,4,4,24.1,77777,9,999999999,340,0.0230,0,88,999.000,999.0,99.0 +1977,6,3,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,22.9,19.0,78,101800,3,210,384,73,182,47,0,0,0,0,40,4.8,4,4,24.1,77777,9,999999999,340,0.0230,0,88,999.000,999.0,99.0 +1977,6,3,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,23.7,19.1,75,101800,187,1328,391,245,429,89,14400,26300,10700,1780,50,6.0,5,5,24.1,77777,9,999999999,340,0.0230,0,88,999.000,999.0,99.0 +1977,6,3,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,18.9,71,101900,481,1328,395,564,743,140,41000,66800,16800,2410,60,7.2,5,5,40.2,77777,9,999999999,340,0.0230,0,88,999.000,999.0,99.0 +1977,6,3,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,25.5,18.7,66,101900,755,1328,404,784,801,185,65900,78700,21000,3990,60,7.5,6,6,40.2,77777,9,999999999,329,0.0230,0,88,999.000,999.0,99.0 +1977,6,3,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,26.7,18.4,60,101900,991,1328,410,572,402,216,56400,41900,25000,6640,60,7.9,6,6,40.2,77777,9,999999999,329,0.0230,0,88,999.000,999.0,99.0 +1977,6,3,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,17.8,55,101900,1172,1328,420,730,457,286,75100,47900,32800,14160,60,8.2,7,7,40.2,1520,9,999999999,320,0.0230,0,88,999.000,999.0,99.0 +1977,6,3,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,28.2,17.4,52,101800,1285,1328,417,911,681,231,95900,69800,28200,20160,60,7.5,6,6,40.2,77777,9,999999999,309,0.0230,0,88,999.000,999.0,99.0 +1977,6,3,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,28.5,16.9,49,101800,1324,1328,414,848,577,288,91900,58600,33300,45530,70,6.9,5,5,40.2,77777,9,999999999,300,0.0230,0,88,999.000,999.0,99.0 +1977,6,3,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,16.1,46,101800,1285,1328,412,779,690,170,89600,69900,21800,14120,70,6.2,4,4,40.2,77777,9,999999999,290,0.0230,0,88,999.000,999.0,99.0 +1977,6,3,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,28.3,16.7,49,101700,1171,1328,413,587,452,250,71600,47400,29700,12280,70,6.4,5,5,40.2,77777,9,999999999,290,0.0230,0,88,999.000,999.0,99.0 +1977,6,3,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,27.8,17.0,51,101700,990,1328,411,475,629,118,62900,63700,15300,3580,80,6.5,5,5,40.2,77777,9,999999999,300,0.0230,0,88,999.000,999.0,99.0 +1977,6,3,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,17.2,54,101700,754,1328,411,235,341,113,34400,35000,14500,2460,80,6.7,6,6,40.2,1370,9,999999999,300,0.0230,0,88,999.000,999.0,99.0 +1977,6,3,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,26.1,16.8,56,101700,479,1328,405,66,92,54,10000,8900,6700,960,70,5.7,6,6,40.2,77777,9,999999999,300,0.0230,0,88,999.000,999.0,99.0 +1977,6,3,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,25.0,16.3,58,101700,187,1328,395,5,15,3,700,1000,500,50,50,4.6,5,5,40.2,77777,9,999999999,290,0.0230,0,88,999.000,999.0,99.0 +1977,6,3,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,15.6,60,101800,3,210,388,0,0,0,0,0,0,0,40,3.6,5,5,24.1,77777,9,999999999,279,0.0400,0,88,999.000,999.0,99.0 +1977,6,3,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,23.9,16.0,61,101800,0,0,392,0,0,0,0,0,0,0,50,3.9,6,6,24.1,77777,9,999999999,279,0.0400,0,88,999.000,999.0,99.0 +1977,6,3,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,23.9,16.1,61,101800,0,0,392,0,0,0,0,0,0,0,50,4.3,6,6,24.1,77777,9,999999999,279,0.0400,0,88,999.000,999.0,99.0 +1977,6,3,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,16.1,62,101800,0,0,397,0,0,0,0,0,0,0,60,4.6,7,7,24.1,1370,9,999999999,290,0.0400,0,88,999.000,999.0,99.0 +1977,6,3,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,23.9,16.5,63,101800,0,0,397,0,0,0,0,0,0,0,60,4.8,7,7,24.1,1370,9,999999999,290,0.0400,0,88,999.000,999.0,99.0 +1977,6,4,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,23.9,16.7,63,101800,0,0,397,0,0,0,0,0,0,0,60,5.0,7,7,24.1,1370,9,999999999,290,0.0400,0,88,999.000,999.0,99.0 +1977,6,4,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,16.7,64,101700,0,0,397,0,0,0,0,0,0,0,60,5.2,7,7,24.1,1370,9,999999999,300,0.0400,0,88,999.000,999.0,99.0 +1977,6,4,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,23.9,16.7,63,101700,0,0,404,0,0,0,0,0,0,0,60,5.2,8,8,24.1,1370,9,999999999,290,0.0400,0,88,999.000,999.0,99.0 +1977,6,4,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,23.9,16.5,63,101700,0,0,403,0,0,0,0,0,0,0,60,5.2,8,8,24.1,1370,9,999999999,290,0.0400,0,88,999.000,999.0,99.0 +1977,6,4,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,16.1,62,101700,0,0,412,5,10,3,0,0,0,0,60,5.2,9,9,24.1,1370,9,999999999,290,0.0280,0,88,999.000,999.0,99.0 +1977,6,4,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.3,17.1,64,101800,3,210,415,58,12,56,0,0,0,0,60,5.2,9,9,24.1,1320,9,999999999,300,0.0280,0,88,999.000,999.0,99.0 +1977,6,4,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.6,18.2,67,101800,187,1327,418,196,139,145,16700,8600,15500,3080,50,5.2,9,9,24.1,1270,9,999999999,320,0.0280,0,88,999.000,999.0,99.0 +1977,6,4,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,18.9,69,101800,480,1327,421,298,81,251,30600,7900,27700,5730,50,5.2,9,9,40.2,1220,9,999999999,340,0.0280,0,88,999.000,999.0,99.0 +1977,6,4,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,25.9,18.0,62,101800,754,1327,416,432,197,285,43000,20400,31400,7490,40,5.0,8,8,40.2,1270,9,999999999,320,0.0280,0,88,999.000,999.0,99.0 +1977,6,4,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,26.9,16.9,54,101800,990,1327,420,517,191,348,53800,20300,38600,11300,40,4.8,8,8,40.2,1320,9,999999999,300,0.0280,0,88,999.000,999.0,99.0 +1977,6,4,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,15.6,47,101800,1171,1327,417,691,367,334,70500,38300,36600,16640,30,4.6,7,7,40.2,1370,9,999999999,279,0.0280,0,88,999.000,999.0,99.0 +1977,6,4,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,28.0,16.0,47,101700,1285,1327,414,573,214,359,63300,23300,40600,27360,40,4.4,6,6,40.2,77777,9,999999999,279,0.0280,0,88,999.000,999.0,99.0 +1977,6,4,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,28.1,16.1,48,101700,1324,1327,408,1046,840,232,111200,83900,27300,34680,40,4.3,4,4,40.2,77777,9,999999999,279,0.0280,0,88,999.000,999.0,99.0 +1977,6,4,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,16.1,48,101600,1285,1327,406,836,807,123,93200,81000,14500,8820,50,4.1,3,3,40.2,77777,9,999999999,290,0.0280,0,88,999.000,999.0,99.0 +1977,6,4,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,28.1,16.3,48,101600,1171,1327,405,721,880,64,88400,88500,10100,3030,40,5.1,3,3,40.2,77777,9,999999999,290,0.0280,0,88,999.000,999.0,99.0 +1977,6,4,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,28.0,16.2,49,101500,990,1327,400,382,447,129,50300,46100,15800,4120,30,6.2,2,2,40.2,77777,9,999999999,290,0.0280,0,88,999.000,999.0,99.0 +1977,6,4,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,16.1,49,101500,755,1327,399,257,552,58,41400,55800,9600,1520,20,7.2,2,2,40.2,77777,9,999999999,290,0.0280,0,88,999.000,999.0,99.0 +1977,6,4,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,26.7,16.6,54,101500,481,1327,398,86,337,39,17700,32100,6100,820,40,6.3,3,3,40.2,77777,9,999999999,290,0.0280,0,88,999.000,999.0,99.0 +1977,6,4,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,25.5,17.0,59,101600,188,1327,392,8,25,3,800,1800,500,60,50,5.5,3,3,40.2,77777,9,999999999,300,0.0280,0,88,999.000,999.0,99.0 +1977,6,4,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,17.2,64,101600,4,232,390,0,0,0,0,0,0,0,70,4.6,4,4,24.1,77777,9,999999999,300,0.0400,0,88,999.000,999.0,99.0 +1977,6,4,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.4,17.6,65,101600,0,0,397,0,0,0,0,0,0,0,70,4.3,6,6,24.1,77777,9,999999999,309,0.0400,0,88,999.000,999.0,99.0 +1977,6,4,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.4,17.8,65,101700,0,0,401,0,0,0,0,0,0,0,70,3.9,7,7,24.1,77777,9,999999999,309,0.0400,0,88,999.000,999.0,99.0 +1977,6,4,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,17.8,66,101700,0,0,417,0,0,0,0,0,0,0,70,3.6,9,9,24.1,1370,9,999999999,309,0.0400,0,88,999.000,999.0,99.0 +1977,6,4,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.2,18.3,69,101700,0,0,416,0,0,0,0,0,0,0,80,3.4,9,9,24.1,1370,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1977,6,5,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.1,18.7,71,101600,0,0,416,0,0,0,0,0,0,0,80,3.3,9,9,24.1,1370,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1977,6,5,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,18.9,74,101600,0,0,415,0,0,0,0,0,0,0,90,3.1,9,9,24.1,1370,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1977,6,5,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,23.7,19.1,75,101600,0,0,414,0,0,0,0,0,0,0,50,2.8,9,9,24.1,1370,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1977,6,5,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,23.5,19.1,75,101600,0,0,413,0,0,0,0,0,0,0,10,2.4,10,9,24.1,1370,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1977,6,5,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,18.9,76,101600,0,0,412,3,3,3,0,0,0,0,330,2.1,10,9,24.1,1370,9,999999999,340,0.0330,0,88,999.000,999.0,99.0 +1977,6,5,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,23.9,19.0,74,101600,3,210,407,65,19,62,0,0,0,0,20,2.1,9,8,24.1,1370,9,999999999,340,0.0330,0,88,999.000,999.0,99.0 +1977,6,5,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.4,19.1,71,101600,187,1327,409,167,14,162,16400,1100,16300,1210,80,2.1,8,8,24.1,1370,9,999999999,340,0.0330,0,88,999.000,999.0,99.0 +1977,6,5,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,18.9,69,101600,480,1327,406,389,395,163,32200,37900,18400,3470,130,2.1,7,7,40.2,1370,9,999999999,340,0.0330,0,88,999.000,999.0,99.0 +1977,6,5,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,25.7,19.1,66,101600,754,1327,417,443,119,354,46200,12200,39200,10110,80,2.1,8,8,40.2,1320,9,999999999,340,0.0330,0,88,999.000,999.0,99.0 +1977,6,5,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,26.5,19.1,63,101600,990,1327,421,528,233,322,53900,25200,35100,10060,40,2.1,8,8,40.2,1270,9,999999999,340,0.0330,0,88,999.000,999.0,99.0 +1977,6,5,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,18.9,60,101600,1170,1327,434,696,270,434,73100,29300,47200,20260,350,2.1,9,9,40.2,1220,9,999999999,329,0.0330,0,88,999.000,999.0,99.0 +1977,6,5,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,27.0,19.1,61,101600,1284,1327,433,733,199,534,79500,21100,59000,37230,360,3.1,9,9,40.2,1117,9,999999999,329,0.0330,0,88,999.000,999.0,99.0 +1977,6,5,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,26.9,19.1,61,101500,1323,1327,445,536,1,535,62600,100,62500,21490,360,4.2,10,10,40.2,1013,9,999999999,340,0.0330,0,88,999.000,999.0,99.0 +1977,6,5,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,18.9,62,101500,1285,1327,443,308,14,295,37500,1200,36400,14130,10,5.2,10,10,40.2,910,9,999999999,329,0.0330,0,88,999.000,999.0,99.0 +1977,6,5,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,26.5,18.7,61,101500,1171,1327,442,322,7,317,38500,600,37900,14610,20,5.2,10,10,40.2,1013,9,999999999,329,0.0330,0,88,999.000,999.0,99.0 +1977,6,5,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,26.3,18.3,61,101500,991,1327,428,372,103,313,43000,11000,34800,10180,30,5.2,10,9,40.2,1117,9,999999999,320,0.0330,0,88,999.000,999.0,99.0 +1977,6,5,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,17.8,60,101500,756,1327,426,161,40,147,18800,4000,16500,5030,40,5.2,10,9,40.2,1220,9,999999999,309,0.0330,0,88,999.000,999.0,99.0 +1977,6,5,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,25.0,18.7,68,101500,482,1327,421,53,24,50,6500,2200,5700,1570,60,4.7,10,9,40.2,1270,9,999999999,329,0.0330,0,88,999.000,999.0,99.0 +1977,6,5,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,23.9,19.4,76,101500,190,1327,416,1,1,1,200,100,100,20,90,4.1,10,9,40.2,1320,9,999999999,350,0.0330,0,88,999.000,999.0,99.0 +1977,6,5,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,20.0,84,101600,4,232,410,0,0,0,0,0,0,0,110,3.6,10,9,24.1,1370,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1977,6,5,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,22.8,19.6,81,101600,0,0,410,0,0,0,0,0,0,0,90,3.3,9,9,24.1,1370,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1977,6,5,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,22.8,19.1,79,101600,0,0,401,0,0,0,0,0,0,0,60,2.9,9,8,24.1,1370,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1977,6,5,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,18.3,76,101600,0,0,400,0,0,0,0,0,0,0,40,2.6,8,8,24.1,1370,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1977,6,5,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,22.4,18.7,79,101600,0,0,398,0,0,0,0,0,0,0,30,1.7,8,8,24.1,1420,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1977,6,6,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,22.1,18.9,81,101600,0,0,390,0,0,0,0,0,0,0,10,0.9,7,7,24.1,1470,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1977,6,6,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,18.9,84,101500,0,0,388,0,0,0,0,0,0,0,0,0.0,7,7,24.1,1520,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1977,6,6,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,21.5,18.9,84,101500,0,0,379,0,0,0,0,0,0,0,10,0.9,5,5,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1977,6,6,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,21.3,18.7,84,101500,0,0,372,0,0,0,0,0,0,0,10,1.7,3,3,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1977,6,6,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,18.3,84,101400,0,0,362,9,42,2,0,0,0,0,20,2.6,1,1,24.1,77777,9,999999999,320,0.0200,0,88,999.000,999.0,99.0 +1977,6,6,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,22.4,18.0,77,101500,3,210,368,90,464,24,0,0,0,0,20,2.4,1,1,24.1,77777,9,999999999,320,0.0200,0,88,999.000,999.0,99.0 +1977,6,6,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,23.7,17.8,69,101500,187,1326,375,296,710,38,13600,48700,6700,610,10,2.3,1,1,24.1,77777,9,999999999,309,0.0200,0,88,999.000,999.0,99.0 +1977,6,6,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,17.2,62,101600,479,1326,381,519,847,37,36500,79100,7900,1010,10,2.1,1,1,40.2,77777,9,999999999,300,0.0200,0,88,999.000,999.0,99.0 +1977,6,6,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,25.7,17.4,59,101600,753,1326,390,694,817,83,58600,81700,12100,1980,30,4.0,2,2,40.2,77777,9,999999999,300,0.0200,0,88,999.000,999.0,99.0 +1977,6,6,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,26.5,17.4,57,101500,989,1326,401,682,512,229,66300,53400,26400,7050,40,5.8,4,4,40.2,77777,9,999999999,300,0.0200,0,88,999.000,999.0,99.0 +1977,6,6,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,17.2,54,101500,1170,1326,408,617,413,216,65000,43400,26600,10540,60,7.7,5,5,40.2,77777,9,999999999,300,0.0200,0,88,999.000,999.0,99.0 +1977,6,6,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,27.2,17.4,54,101500,1284,1326,411,849,546,304,91500,57300,35900,26860,50,6.3,6,6,40.2,77777,9,999999999,300,0.0200,0,88,999.000,999.0,99.0 +1977,6,6,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,27.2,17.4,54,101500,1323,1326,411,803,517,301,90300,54300,36000,48230,50,5.0,6,6,40.2,77777,9,999999999,300,0.0200,0,88,999.000,999.0,99.0 +1977,6,6,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,17.2,54,101400,1285,1326,416,746,590,225,85900,60500,27200,19700,40,3.6,7,7,40.2,1220,9,999999999,300,0.0200,0,88,999.000,999.0,99.0 +1977,6,6,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,26.7,17.2,55,101400,1172,1326,413,756,676,250,89700,68600,28900,12160,50,4.5,7,7,40.2,1270,9,999999999,300,0.0200,0,88,999.000,999.0,99.0 +1977,6,6,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,26.1,17.0,57,101400,992,1326,410,299,226,170,37900,23600,20200,5170,60,5.3,7,7,40.2,1320,9,999999999,300,0.0200,0,88,999.000,999.0,99.0 +1977,6,6,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,16.7,58,101400,757,1326,406,197,178,133,26400,18900,15500,2930,70,6.2,7,7,40.2,1370,9,999999999,300,0.0200,0,88,999.000,999.0,99.0 +1977,6,6,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,25.0,17.2,62,101400,483,1326,396,68,212,38,12700,20200,5300,800,60,5.5,5,5,40.2,77777,9,999999999,300,0.0200,0,88,999.000,999.0,99.0 +1977,6,6,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.5,17.6,65,101500,191,1326,391,11,36,4,1100,2500,700,80,60,4.8,4,4,40.2,77777,9,999999999,309,0.0200,0,88,999.000,999.0,99.0 +1977,6,6,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,17.8,69,101500,4,232,381,0,0,0,0,0,0,0,50,4.1,2,2,24.1,77777,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1977,6,6,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,23.7,18.0,70,101500,0,0,387,0,0,0,0,0,0,0,60,4.1,4,4,24.1,77777,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1977,6,6,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,23.5,18.0,70,101600,0,0,392,0,0,0,0,0,0,0,70,4.1,6,6,24.1,77777,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1977,6,6,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,17.8,71,101600,0,0,402,0,0,0,0,0,0,0,80,4.1,8,8,24.1,1520,9,999999999,309,0.0400,0,88,999.000,999.0,99.0 +1977,6,6,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,23.1,18.0,72,101600,0,0,390,0,0,0,0,0,0,0,70,4.3,6,6,24.1,77777,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1977,6,7,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,23.0,18.0,73,101500,0,0,380,0,0,0,0,0,0,0,70,4.4,3,3,24.1,77777,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1977,6,7,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,17.8,74,101500,0,0,370,0,0,0,0,0,0,0,60,4.6,1,1,24.1,77777,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1977,6,7,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,22.6,18.2,76,101500,0,0,370,0,0,0,0,0,0,0,60,4.1,1,1,24.1,77777,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1977,6,7,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,22.4,18.4,77,101500,0,0,362,0,0,0,0,0,0,0,60,3.6,0,0,24.1,77777,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1977,6,7,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,18.3,79,101500,0,0,361,10,45,2,0,0,0,0,60,3.1,0,0,24.1,77777,9,999999999,329,0.0240,0,88,999.000,999.0,99.0 +1977,6,7,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,23.1,18.4,75,101500,3,210,372,95,543,18,0,0,0,0,90,2.9,1,1,24.1,77777,9,999999999,329,0.0240,0,88,999.000,999.0,99.0 +1977,6,7,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.1,18.5,71,101600,187,1326,378,286,636,55,14300,40200,8700,890,120,2.8,1,1,24.1,77777,9,999999999,329,0.0240,0,88,999.000,999.0,99.0 +1977,6,7,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,18.3,67,101600,479,1326,387,512,751,84,37000,69700,11800,1620,150,2.6,2,2,40.2,77777,9,999999999,329,0.0240,0,88,999.000,999.0,99.0 +1977,6,7,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,25.9,18.3,63,101600,753,1326,399,765,838,138,64500,83700,16900,3130,120,3.8,4,4,40.2,77777,9,999999999,329,0.0240,0,88,999.000,999.0,99.0 +1977,6,7,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,26.9,18.2,59,101600,988,1326,411,496,276,251,50600,29900,28200,7560,90,5.0,6,6,40.2,77777,9,999999999,320,0.0240,0,88,999.000,999.0,99.0 +1977,6,7,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,17.8,55,101600,1169,1326,427,541,228,319,57900,24800,35900,14380,60,6.2,8,8,40.2,1680,9,999999999,320,0.0240,0,88,999.000,999.0,99.0 +1977,6,7,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,27.4,18.0,56,101600,1283,1326,425,748,355,393,81800,38700,44300,29940,60,6.2,8,8,40.2,1577,9,999999999,320,0.0240,0,88,999.000,999.0,99.0 +1977,6,7,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,27.1,18.0,57,101500,1322,1326,423,655,382,285,74000,40100,33900,45420,70,6.2,8,8,40.2,1473,9,999999999,320,0.0240,0,88,999.000,999.0,99.0 +1977,6,7,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,17.8,58,101500,1284,1326,421,674,420,302,78000,44100,35200,26940,70,6.2,8,8,40.2,1370,9,999999999,309,0.0240,0,88,999.000,999.0,99.0 +1977,6,7,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,26.7,18.0,58,101500,1172,1326,421,461,256,269,55800,27900,31100,12060,60,6.2,8,8,40.2,1420,9,999999999,309,0.0240,0,88,999.000,999.0,99.0 +1977,6,7,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,26.7,17.9,58,101500,992,1326,430,298,84,250,35000,9000,28300,8140,60,6.2,9,9,40.2,1470,9,999999999,309,0.0240,0,88,999.000,999.0,99.0 +1977,6,7,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,17.8,58,101500,758,1326,430,216,180,151,28300,19100,17300,3390,50,6.2,9,9,40.2,1520,9,999999999,309,0.0240,0,88,999.000,999.0,99.0 +1977,6,7,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,25.8,18.1,62,101500,485,1326,409,64,81,52,9400,7900,6500,930,40,4.6,7,7,40.2,77777,9,999999999,320,0.0240,0,88,999.000,999.0,99.0 +1977,6,7,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.8,18.3,67,101600,193,1326,400,7,14,5,900,900,700,80,40,3.1,6,6,40.2,77777,9,999999999,320,0.0240,0,88,999.000,999.0,99.0 +1977,6,7,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,18.3,71,101600,4,254,388,0,0,0,0,0,0,0,30,1.5,4,4,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1977,6,7,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,23.9,18.7,72,101600,0,0,389,0,0,0,0,0,0,0,40,2.4,4,4,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1977,6,7,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,23.9,18.9,73,101700,0,0,386,0,0,0,0,0,0,0,50,3.2,3,3,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1977,6,7,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,18.9,74,101700,0,0,386,0,0,0,0,0,0,0,60,4.1,3,3,24.1,77777,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1977,6,7,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,23.5,19.1,76,101700,0,0,380,0,0,0,0,0,0,0,60,3.6,2,2,24.1,77777,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1977,6,8,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,23.2,19.1,77,101600,0,0,379,0,0,0,0,0,0,0,50,3.1,2,2,24.1,77777,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1977,6,8,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,18.9,79,101600,0,0,372,0,0,0,0,0,0,0,50,2.6,1,1,24.1,77777,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1977,6,8,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,22.2,19.1,82,101600,0,0,369,0,0,0,0,0,0,0,20,2.6,1,1,24.1,77777,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1977,6,8,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,21.7,19.1,84,101600,0,0,366,0,0,0,0,0,0,0,350,2.6,1,1,24.1,77777,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1977,6,8,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,18.9,87,101600,0,0,363,10,48,2,0,0,0,0,320,2.6,1,1,24.1,77777,9,999999999,340,0.0180,0,88,999.000,999.0,99.0 +1977,6,8,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,22.8,19.1,80,101600,3,210,377,86,372,33,0,0,0,0,350,2.8,2,2,24.1,77777,9,999999999,340,0.0180,0,88,999.000,999.0,99.0 +1977,6,8,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.4,19.5,74,101700,187,1326,386,293,666,52,14500,42400,8500,850,10,2.9,2,2,24.1,77777,9,999999999,350,0.0180,0,88,999.000,999.0,99.0 +1977,6,8,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,19.4,67,101700,478,1326,398,494,711,90,35900,65700,12200,1720,40,3.1,3,3,40.2,77777,9,999999999,350,0.0180,0,88,999.000,999.0,99.0 +1977,6,8,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,26.7,19.2,63,101700,752,1326,404,530,371,253,49600,39100,27300,6180,80,4.0,4,4,40.2,77777,9,999999999,340,0.0180,0,88,999.000,999.0,99.0 +1977,6,8,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,27.2,18.9,60,101700,987,1326,413,893,767,215,82500,77400,24700,6500,120,4.8,6,6,40.2,77777,9,999999999,329,0.0180,0,88,999.000,999.0,99.0 +1977,6,8,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,18.3,56,101700,1168,1326,421,801,506,310,81700,52900,34900,15300,160,5.7,7,7,40.2,1520,9,999999999,320,0.0180,0,88,999.000,999.0,99.0 +1977,6,8,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,27.8,19.1,58,101700,1282,1326,422,845,554,292,87700,56100,33300,24970,150,5.9,7,7,40.2,1470,9,999999999,340,0.0180,0,88,999.000,999.0,99.0 +1977,6,8,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,27.8,19.6,61,101600,1322,1326,422,765,410,367,84100,42900,41200,58420,140,6.0,7,7,40.2,1420,9,999999999,350,0.0180,0,88,999.000,999.0,99.0 +1977,6,8,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,20.0,63,101600,1284,1326,423,633,345,328,72200,36200,37100,29370,130,6.2,7,7,40.2,1370,9,999999999,359,0.0180,0,88,999.000,999.0,99.0 +1977,6,8,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,27.1,20.0,65,101600,1172,1326,426,459,236,283,55200,25700,32400,12760,120,5.7,8,8,40.2,1370,9,999999999,359,0.0180,0,88,999.000,999.0,99.0 +1977,6,8,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,26.3,19.7,67,101600,993,1326,421,491,471,222,62600,49100,25800,6880,100,5.1,8,8,40.2,1370,9,999999999,350,0.0180,0,88,999.000,999.0,99.0 +1977,6,8,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,19.4,69,101600,759,1326,425,152,59,130,18600,6200,15100,3420,90,4.6,9,9,40.2,1370,9,999999999,350,0.0180,0,88,999.000,999.0,99.0 +1977,6,8,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.7,19.8,74,101600,486,1326,421,66,89,53,9800,8700,6600,950,90,3.9,9,9,40.2,1370,9,999999999,350,0.0180,0,88,999.000,999.0,99.0 +1977,6,8,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,23.7,19.9,79,101700,195,1326,415,3,0,3,400,0,400,130,100,3.3,10,9,40.2,1370,9,999999999,359,0.0180,0,88,999.000,999.0,99.0 +1977,6,8,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,20.0,84,101700,5,254,410,0,0,0,0,0,0,0,100,2.6,10,9,24.1,1370,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1977,6,8,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,22.4,20.4,87,101700,0,0,409,0,0,0,0,0,0,0,70,3.5,10,9,24.1,1370,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1977,6,8,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,22.1,20.6,90,101700,0,0,407,0,0,0,0,0,0,0,30,4.3,10,9,24.1,1370,9,999999999,370,0.0400,0,88,999.000,999.0,99.0 +1977,6,8,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,20.6,93,101800,0,0,405,0,0,0,0,0,0,0,360,5.2,10,9,24.1,1370,9,999999999,370,0.0400,0,88,999.000,999.0,99.0 +1977,6,8,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,22.1,20.8,91,101700,0,0,408,0,0,0,0,0,0,0,360,4.0,10,9,24.1,1370,9,999999999,370,0.0400,0,88,999.000,999.0,99.0 +1977,6,9,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,22.4,20.8,89,101700,0,0,409,0,0,0,0,0,0,0,10,2.7,9,9,24.1,1370,9,999999999,370,0.0400,0,88,999.000,999.0,99.0 +1977,6,9,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,20.6,87,101600,0,0,411,0,0,0,0,0,0,0,10,1.5,9,9,24.1,1370,9,999999999,370,0.0400,0,88,999.000,999.0,99.0 +1977,6,9,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,22.2,20.4,88,101600,0,0,393,0,0,0,0,0,0,0,350,1.5,7,7,24.1,77777,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1977,6,9,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,21.7,20.0,89,101600,0,0,379,0,0,0,0,0,0,0,320,1.5,4,4,24.1,77777,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1977,6,9,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,19.4,90,101600,0,0,369,7,24,3,0,0,0,0,300,1.5,2,2,24.1,77777,9,999999999,350,0.0340,0,88,999.000,999.0,99.0 +1977,6,9,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,22.4,19.7,85,101700,3,210,379,74,252,39,0,0,0,0,350,2.5,3,3,24.1,77777,9,999999999,350,0.0340,0,88,999.000,999.0,99.0 +1977,6,9,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,23.7,20.0,79,101700,186,1325,392,240,388,99,14600,23600,11300,2020,50,3.6,5,5,24.1,77777,9,999999999,359,0.0340,0,88,999.000,999.0,99.0 +1977,6,9,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,20.0,74,101700,478,1325,403,430,423,189,35500,40400,20900,4170,100,4.6,6,6,40.2,1370,9,999999999,359,0.0340,0,88,999.000,999.0,99.0 +1977,6,9,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,26.1,20.0,69,101700,751,1325,413,569,304,342,55000,31300,37300,8980,100,5.5,7,7,40.2,1473,9,999999999,359,0.0340,0,88,999.000,999.0,99.0 +1977,6,9,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,27.2,19.8,64,101700,987,1325,419,587,230,384,60500,24300,42300,12440,100,6.3,7,7,40.2,1577,9,999999999,359,0.0340,0,88,999.000,999.0,99.0 +1977,6,9,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,19.4,59,101700,1168,1325,432,499,129,373,53900,13800,41800,16610,100,7.2,8,8,40.2,1680,9,999999999,350,0.0340,0,88,999.000,999.0,99.0 +1977,6,9,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,28.3,19.1,57,101700,1282,1325,431,627,252,375,68900,27500,42300,28380,90,6.9,8,8,40.2,1680,9,999999999,340,0.0340,0,88,999.000,999.0,99.0 +1977,6,9,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,28.3,18.5,55,101700,1322,1325,424,673,334,349,74300,35000,39300,55280,70,6.5,7,7,40.2,1680,9,999999999,329,0.0340,0,88,999.000,999.0,99.0 +1977,6,9,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,17.8,53,101600,1284,1325,423,648,287,394,74600,31300,44300,30440,60,6.2,7,7,40.2,1680,9,999999999,320,0.0340,0,88,999.000,999.0,99.0 +1977,6,9,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,28.3,17.8,52,101600,1172,1325,414,410,305,181,51400,32100,22900,8900,60,6.9,5,5,40.2,77777,9,999999999,309,0.0340,0,88,999.000,999.0,99.0 +1977,6,9,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,28.3,17.5,52,101600,993,1325,411,399,415,162,50700,42500,18800,5120,60,7.5,4,4,40.2,77777,9,999999999,309,0.0340,0,88,999.000,999.0,99.0 +1977,6,9,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,17.2,51,101500,760,1325,403,299,624,70,46700,62800,10600,1760,60,8.2,2,2,40.2,77777,9,999999999,300,0.0340,0,88,999.000,999.0,99.0 +1977,6,9,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,27.0,17.7,57,101600,487,1325,397,88,353,36,18300,33700,5900,870,60,7.5,2,2,40.2,77777,9,999999999,309,0.0340,0,88,999.000,999.0,99.0 +1977,6,9,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,25.7,18.1,63,101600,196,1325,385,9,32,3,900,2300,600,60,70,6.9,1,1,40.2,77777,9,999999999,320,0.0340,0,88,999.000,999.0,99.0 +1977,6,9,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,18.3,69,101700,5,254,379,0,0,0,0,0,0,0,70,6.2,1,1,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1977,6,9,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.2,18.5,70,101700,0,0,378,0,0,0,0,0,0,0,60,5.7,1,1,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1977,6,9,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.1,18.5,70,101700,0,0,371,0,0,0,0,0,0,0,60,5.1,0,0,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1977,6,9,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,18.3,71,101800,0,0,369,0,0,0,0,0,0,0,50,4.6,0,0,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1977,6,9,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,23.7,18.5,72,101700,0,0,369,0,0,0,0,0,0,0,50,5.1,0,0,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1977,6,10,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,23.5,18.5,73,101700,0,0,368,0,0,0,0,0,0,0,60,5.7,0,0,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1977,6,10,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,18.3,74,101600,0,0,366,0,0,0,0,0,0,0,60,6.2,0,0,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1977,6,10,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,23.1,18.3,74,101600,0,0,372,0,0,0,0,0,0,0,60,5.7,1,1,24.1,77777,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1977,6,10,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,23.0,18.2,74,101600,0,0,372,0,0,0,0,0,0,0,70,5.1,1,1,24.1,77777,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1977,6,10,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,17.8,74,101600,0,0,375,3,7,1,0,0,0,0,70,4.6,2,2,24.1,77777,9,999999999,320,0.0700,0,88,999.000,999.0,99.0 +1977,6,10,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,23.9,18.0,70,101700,3,210,381,80,251,44,0,0,0,0,70,5.1,2,2,24.1,77777,9,999999999,320,0.0700,0,88,999.000,999.0,99.0 +1977,6,10,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,25.0,18.4,66,101700,186,1325,387,282,495,103,16400,30000,12200,2130,60,5.7,2,2,24.1,77777,9,999999999,320,0.0700,0,88,999.000,999.0,99.0 +1977,6,10,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,18.3,62,101800,477,1325,393,403,447,149,31800,41600,16800,2940,60,6.2,2,2,40.2,77777,9,999999999,320,0.0700,0,88,999.000,999.0,99.0 +1977,6,10,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,27.2,18.0,57,101800,751,1325,398,710,758,144,60100,75500,17200,3240,60,6.2,2,2,40.2,77777,9,999999999,320,0.0700,0,88,999.000,999.0,99.0 +1977,6,10,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,28.3,17.4,51,101800,986,1325,403,791,739,138,72400,74300,17000,3980,60,6.2,2,2,40.2,77777,9,999999999,309,0.0700,0,88,999.000,999.0,99.0 +1977,6,10,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,16.7,46,101800,1167,1325,408,947,829,143,93800,84200,19500,6660,60,6.2,2,2,40.2,77777,9,999999999,290,0.0700,0,88,999.000,999.0,99.0 +1977,6,10,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,29.4,17.1,47,101700,1281,1325,413,978,822,156,102600,83600,21600,12910,70,6.5,3,3,40.2,77777,9,999999999,300,0.0700,0,88,999.000,999.0,99.0 +1977,6,10,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,29.4,17.2,47,101700,1321,1325,413,819,604,232,90200,62000,28200,35650,70,6.9,3,3,40.2,77777,9,999999999,300,0.0700,0,88,999.000,999.0,99.0 +1977,6,10,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,17.2,48,101700,1284,1325,416,738,585,220,85100,60100,26700,19410,80,7.2,4,4,40.2,77777,9,999999999,309,0.0700,0,88,999.000,999.0,99.0 +1977,6,10,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,28.9,17.6,50,101700,1173,1325,411,731,815,119,86700,81700,14200,4810,70,7.5,3,3,40.2,77777,9,999999999,309,0.0700,0,88,999.000,999.0,99.0 +1977,6,10,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,28.3,17.7,53,101600,994,1325,408,514,620,158,66900,63500,19100,5010,60,7.9,3,3,40.2,77777,9,999999999,309,0.0700,0,88,999.000,999.0,99.0 +1977,6,10,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,17.8,55,101600,761,1325,401,291,573,81,44100,57400,11100,1970,50,8.2,2,2,40.2,77777,9,999999999,320,0.0700,0,88,999.000,999.0,99.0 +1977,6,10,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,26.9,18.0,58,101700,489,1325,397,86,282,45,16300,26900,6300,940,50,7.4,2,2,40.2,77777,9,999999999,320,0.0700,0,88,999.000,999.0,99.0 +1977,6,10,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,25.9,17.9,61,101700,198,1325,386,6,16,4,800,1100,700,60,60,6.5,1,1,40.2,77777,9,999999999,320,0.0700,0,88,999.000,999.0,99.0 +1977,6,10,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,17.8,64,101800,5,276,381,0,0,0,0,0,0,0,60,5.7,1,1,24.1,77777,9,999999999,309,0.0400,0,88,999.000,999.0,99.0 +1977,6,10,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.8,18.2,66,101800,0,0,381,0,0,0,0,0,0,0,60,6.5,1,1,24.1,77777,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1977,6,10,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.6,18.3,67,101800,0,0,380,0,0,0,0,0,0,0,60,7.4,1,1,24.1,77777,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1977,6,10,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,18.3,69,101900,0,0,379,0,0,0,0,0,0,0,60,8.2,1,1,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1977,6,10,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.2,18.1,68,101800,0,0,383,0,0,0,0,0,0,0,60,7.5,2,2,24.1,77777,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1977,6,11,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.1,17.8,67,101800,0,0,382,0,0,0,0,0,0,0,60,6.9,2,2,24.1,77777,9,999999999,309,0.0400,0,88,999.000,999.0,99.0 +1977,6,11,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,17.2,66,101800,0,0,384,0,0,0,0,0,0,0,60,6.2,3,3,24.1,77777,9,999999999,300,0.0400,0,88,999.000,999.0,99.0 +1977,6,11,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,23.9,17.6,67,101800,0,0,384,0,0,0,0,0,0,0,50,6.5,3,3,24.1,77777,9,999999999,309,0.0400,0,88,999.000,999.0,99.0 +1977,6,11,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,23.9,17.8,68,101700,0,0,385,0,0,0,0,0,0,0,50,6.9,3,3,24.1,77777,9,999999999,309,0.0400,0,88,999.000,999.0,99.0 +1977,6,11,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,17.8,69,101700,0,0,385,5,14,3,0,0,0,0,40,7.2,3,3,24.1,77777,9,999999999,320,0.0360,0,88,999.000,999.0,99.0 +1977,6,11,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.5,17.7,66,101800,3,210,391,64,123,47,0,0,0,0,50,7.0,4,4,24.1,77777,9,999999999,320,0.0360,0,88,999.000,999.0,99.0 +1977,6,11,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,25.0,17.6,63,101800,186,1325,396,221,326,103,14800,19400,12100,2350,50,6.9,5,5,24.1,77777,9,999999999,309,0.0360,0,88,999.000,999.0,99.0 +1977,6,11,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,17.2,60,101900,477,1325,402,442,555,127,34100,51800,15400,2450,60,6.7,6,6,40.2,1370,9,999999999,309,0.0360,0,88,999.000,999.0,99.0 +1977,6,11,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,26.3,17.8,59,101900,750,1325,407,464,145,356,48000,14900,39500,10110,60,6.9,6,6,40.2,1370,9,999999999,309,0.0360,0,88,999.000,999.0,99.0 +1977,6,11,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,27.1,18.1,57,101900,985,1325,412,680,436,295,65500,45300,31700,9210,60,7.0,6,6,40.2,1370,9,999999999,320,0.0360,0,88,999.000,999.0,99.0 +1977,6,11,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,18.3,56,101900,1166,1325,416,774,472,317,78900,49300,35400,15590,60,7.2,6,6,40.2,1370,9,999999999,320,0.0360,0,88,999.000,999.0,99.0 +1977,6,11,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,28.3,18.3,54,101800,1281,1325,415,808,537,272,84200,54600,31300,23180,60,8.2,5,5,40.2,77777,9,999999999,320,0.0360,0,88,999.000,999.0,99.0 +1977,6,11,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,28.9,18.2,51,101800,1321,1325,418,616,356,270,69800,37400,32400,42300,60,9.3,5,5,40.2,77777,9,999999999,320,0.0360,0,88,999.000,999.0,99.0 +1977,6,11,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,17.8,49,101700,1284,1325,417,795,618,248,90800,63100,29400,21820,60,10.3,4,4,40.2,77777,9,999999999,309,0.0360,0,88,999.000,999.0,99.0 +1977,6,11,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,28.7,18.2,52,101700,1173,1325,417,813,823,195,96000,82400,22900,8710,60,9.6,5,5,40.2,77777,9,999999999,320,0.0360,0,88,999.000,999.0,99.0 +1977,6,11,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,27.9,18.3,55,101700,995,1325,416,255,143,172,31800,15600,20100,5030,60,8.9,6,6,40.2,77777,9,999999999,320,0.0360,0,88,999.000,999.0,99.0 +1977,6,11,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,18.3,58,101700,761,1325,417,184,93,150,23000,9800,17300,3960,60,8.2,7,7,40.2,1370,9,999999999,320,0.0360,0,88,999.000,999.0,99.0 +1977,6,11,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,26.5,18.3,60,101700,490,1325,409,63,48,55,8400,4700,6700,1270,60,7.7,6,6,40.2,77777,9,999999999,320,0.0360,0,88,999.000,999.0,99.0 +1977,6,11,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,25.7,18.1,62,101700,199,1325,398,6,15,3,700,1000,600,50,50,7.2,4,4,40.2,77777,9,999999999,320,0.0360,0,88,999.000,999.0,99.0 +1977,6,11,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,17.8,64,101800,6,276,390,0,0,0,0,0,0,0,50,6.7,3,3,24.1,77777,9,999999999,309,0.0400,0,88,999.000,999.0,99.0 +1977,6,11,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.8,18.0,65,101800,0,0,390,0,0,0,0,0,0,0,50,7.2,3,3,24.1,77777,9,999999999,309,0.0400,0,88,999.000,999.0,99.0 +1977,6,11,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.6,18.0,65,101800,0,0,389,0,0,0,0,0,0,0,60,7.7,3,3,24.1,77777,9,999999999,309,0.0400,0,88,999.000,999.0,99.0 +1977,6,11,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,17.8,66,101900,0,0,387,0,0,0,0,0,0,0,60,8.2,3,3,24.1,77777,9,999999999,309,0.0400,0,88,999.000,999.0,99.0 +1977,6,11,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.0,18.3,69,101800,0,0,389,0,0,0,0,0,0,0,50,7.4,4,4,24.1,77777,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1977,6,12,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,23.7,18.7,73,101800,0,0,388,0,0,0,0,0,0,0,50,6.5,4,4,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1977,6,12,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,18.9,76,101800,0,0,389,0,0,0,0,0,0,0,40,5.7,5,5,24.1,77777,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1977,6,12,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,23.5,18.9,74,101700,0,0,390,0,0,0,0,0,0,0,40,5.9,5,5,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1977,6,12,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,23.7,18.7,73,101700,0,0,388,0,0,0,0,0,0,0,40,6.0,4,4,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1977,6,12,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,18.3,71,101700,0,0,388,5,8,4,0,0,0,0,40,6.2,4,4,24.1,77777,9,999999999,329,0.0350,0,88,999.000,999.0,99.0 +1977,6,12,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.5,18.4,69,101700,3,210,392,74,125,57,0,0,0,0,50,6.9,4,4,24.1,77777,9,999999999,329,0.0350,0,88,999.000,999.0,99.0 +1977,6,12,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,25.0,18.5,66,101800,185,1325,397,210,172,148,17400,10600,16000,3140,50,7.5,5,5,24.1,77777,9,999999999,329,0.0350,0,88,999.000,999.0,99.0 +1977,6,12,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,18.3,64,101800,476,1325,400,416,519,121,32200,48400,14800,2320,60,8.2,5,5,40.2,77777,9,999999999,329,0.0350,0,88,999.000,999.0,99.0 +1977,6,12,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,26.7,18.1,59,101800,749,1325,406,682,674,180,57800,66300,20200,3880,70,8.2,5,5,40.2,77777,9,999999999,320,0.0350,0,88,999.000,999.0,99.0 +1977,6,12,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,27.8,17.8,54,101900,984,1325,412,787,664,202,73300,67200,23200,6130,70,8.2,5,5,40.2,77777,9,999999999,309,0.0350,0,88,999.000,999.0,99.0 +1977,6,12,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,17.2,49,101900,1165,1325,417,984,814,195,94700,81400,22800,8470,80,8.2,5,5,40.2,77777,9,999999999,300,0.0350,0,88,999.000,999.0,99.0 +1977,6,12,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,29.1,17.8,50,101800,1280,1325,419,871,654,217,91800,67200,26700,18620,70,8.9,5,5,40.2,77777,9,999999999,309,0.0350,0,88,999.000,999.0,99.0 +1977,6,12,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,29.2,18.1,50,101800,1321,1325,423,685,431,266,77800,45300,32600,41530,70,9.6,6,6,40.2,77777,9,999999999,320,0.0350,0,88,999.000,999.0,99.0 +1977,6,12,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,18.3,51,101800,1284,1325,425,805,580,290,90300,58800,33200,25390,60,10.3,6,6,40.2,1520,9,999999999,320,0.0350,0,88,999.000,999.0,99.0 +1977,6,12,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,28.5,18.7,55,101800,1173,1325,425,497,360,226,60800,37800,27200,11250,60,9.3,7,7,40.2,1470,9,999999999,329,0.0350,0,88,999.000,999.0,99.0 +1977,6,12,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,27.6,18.8,58,101700,995,1325,427,462,514,167,59100,52500,19600,5290,60,8.2,8,8,40.2,1420,9,999999999,329,0.0350,0,88,999.000,999.0,99.0 +1977,6,12,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,18.9,62,101700,762,1325,431,150,19,143,17000,1900,15900,4940,60,7.2,9,9,40.2,1370,9,999999999,340,0.0350,0,88,999.000,999.0,99.0 +1977,6,12,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,25.9,19.1,65,101700,491,1325,411,69,73,58,9800,7200,7200,1340,60,7.2,7,7,40.2,77777,9,999999999,340,0.0350,0,88,999.000,999.0,99.0 +1977,6,12,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,25.2,19.0,68,101700,200,1325,399,9,10,7,1000,700,900,150,60,7.2,6,5,40.2,77777,9,999999999,340,0.0350,0,88,999.000,999.0,99.0 +1977,6,12,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,18.9,71,101700,6,276,389,0,0,0,0,0,0,0,60,7.2,4,3,24.1,77777,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1977,6,12,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.4,18.7,69,101800,0,0,385,0,0,0,0,0,0,0,60,6.9,3,2,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1977,6,12,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.4,18.4,68,101800,0,0,384,0,0,0,0,0,0,0,70,6.5,2,2,24.1,77777,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1977,6,12,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,17.8,66,101800,0,0,378,0,0,0,0,0,0,0,70,6.2,1,1,24.1,77777,9,999999999,309,0.0400,0,88,999.000,999.0,99.0 +1977,6,12,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.2,18.1,68,101800,0,0,383,0,0,0,0,0,0,0,70,5.5,2,2,24.1,77777,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1977,6,13,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.1,18.3,69,101700,0,0,386,0,0,0,0,0,0,0,60,4.8,3,3,24.1,77777,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1977,6,13,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,18.3,71,101700,0,0,388,0,0,0,0,0,0,0,60,4.1,4,4,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1977,6,13,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,23.5,18.7,74,101700,0,0,390,0,0,0,0,0,0,0,60,4.8,5,5,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1977,6,13,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,23.2,18.9,76,101700,0,0,392,0,0,0,0,0,0,0,50,5.5,6,6,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1977,6,13,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,18.9,79,101700,0,0,394,2,2,1,0,0,0,0,50,6.2,7,7,24.1,1370,9,999999999,340,0.0760,0,88,999.000,999.0,99.0 +1977,6,13,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,23.3,19.1,77,101700,3,210,397,76,63,67,0,0,0,0,50,7.1,7,7,24.1,1320,9,999999999,340,0.0760,0,88,999.000,999.0,99.0 +1977,6,13,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,23.9,19.5,76,101800,184,1324,396,219,176,155,18100,10700,16600,3290,60,7.9,6,6,24.1,1270,9,999999999,350,0.0760,0,88,999.000,999.0,99.0 +1977,6,13,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,19.4,74,101800,475,1324,399,382,354,181,32100,33800,19900,3950,60,8.8,6,6,40.2,1220,9,999999999,350,0.0760,0,88,999.000,999.0,99.0 +1977,6,13,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,25.5,19.4,69,101800,748,1324,409,458,135,357,47400,13800,39600,10120,60,8.4,7,7,40.2,1067,9,999999999,350,0.0760,0,88,999.000,999.0,99.0 +1977,6,13,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,26.7,19.3,63,101800,983,1324,416,763,561,268,73100,58300,29700,8290,60,8.1,7,7,40.2,913,9,999999999,340,0.0760,0,88,999.000,999.0,99.0 +1977,6,13,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,18.9,58,101800,1165,1324,428,602,272,338,63900,29600,37800,15190,60,7.7,8,8,40.2,760,9,999999999,340,0.0760,0,88,999.000,999.0,99.0 +1977,6,13,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,28.3,18.7,55,101800,1279,1324,424,1007,684,322,103300,68800,36700,27070,60,8.1,7,7,40.2,77777,9,999999999,329,0.0760,0,88,999.000,999.0,99.0 +1977,6,13,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,28.9,18.4,52,101700,1320,1324,422,773,426,359,85100,44600,40500,56090,50,8.4,6,6,40.2,77777,9,999999999,320,0.0760,0,88,999.000,999.0,99.0 +1977,6,13,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,17.8,49,101700,1284,1324,420,907,834,167,104600,84600,22400,14150,50,8.8,5,5,40.2,77777,9,999999999,309,0.0760,0,88,999.000,999.0,99.0 +1977,6,13,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,28.9,18.0,51,101700,1173,1324,415,603,549,190,73100,56500,22900,9540,50,9.0,4,4,40.2,77777,9,999999999,320,0.0760,0,88,999.000,999.0,99.0 +1977,6,13,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,28.3,17.9,53,101600,996,1324,411,486,565,160,62700,57900,19100,5100,60,9.1,4,4,40.2,77777,9,999999999,320,0.0760,0,88,999.000,999.0,99.0 +1977,6,13,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,17.8,55,101600,763,1324,405,308,603,84,46300,60300,11400,2020,60,9.3,3,3,40.2,77777,9,999999999,320,0.0760,0,88,999.000,999.0,99.0 +1977,6,13,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,26.9,18.3,60,101600,492,1324,404,71,125,52,11300,12200,6800,930,60,8.8,4,4,40.2,77777,9,999999999,329,0.0760,0,88,999.000,999.0,99.0 +1977,6,13,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,25.9,18.7,64,101700,202,1324,399,4,11,2,500,700,400,30,50,8.2,4,4,40.2,77777,9,999999999,329,0.0760,0,88,999.000,999.0,99.0 +1977,6,13,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,18.9,69,101700,6,298,398,0,0,0,0,0,0,0,50,7.7,5,5,24.1,77777,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1977,6,13,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,25.0,19.1,69,101700,0,0,402,0,0,0,0,0,0,0,60,7.5,6,6,24.1,77777,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1977,6,13,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,25.0,19.1,69,101800,0,0,402,0,0,0,0,0,0,0,60,7.4,6,6,24.1,77777,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1977,6,13,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,18.9,69,101800,0,0,406,0,0,0,0,0,0,0,70,7.2,7,7,24.1,760,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1977,6,13,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.8,19.1,70,101800,0,0,405,0,0,0,0,0,0,0,70,6.9,7,7,24.1,760,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1977,6,14,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.6,19.1,70,101800,0,0,411,0,0,0,0,0,0,0,60,6.5,8,8,24.1,760,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1977,6,14,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,18.9,71,101800,0,0,409,0,0,0,0,0,0,0,60,6.2,8,8,24.1,760,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1977,6,14,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.0,19.5,75,101700,0,0,408,0,0,0,0,0,0,0,60,5.7,8,8,24.1,963,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1977,6,14,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,23.7,19.9,78,101700,0,0,400,0,0,0,0,0,0,0,60,5.1,7,7,24.1,1167,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1977,6,14,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,20.0,82,101700,0,0,398,4,7,3,0,0,0,0,60,4.6,7,7,24.1,1370,9,999999999,359,0.0180,0,88,999.000,999.0,99.0 +1977,6,14,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.1,20.3,79,101700,3,210,398,59,99,45,0,0,0,0,60,5.1,6,6,24.1,77777,9,999999999,370,0.0180,0,88,999.000,999.0,99.0 +1977,6,14,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.8,20.6,77,101700,184,1324,396,261,500,81,14600,30400,10400,1590,60,5.7,4,4,24.1,77777,9,999999999,370,0.0180,0,88,999.000,999.0,99.0 +1977,6,14,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,20.6,74,101800,474,1324,397,476,667,97,34600,61300,12600,1820,60,6.2,3,3,24.1,77777,9,999999999,370,0.0180,0,88,999.000,999.0,99.0 +1977,6,14,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,26.7,20.4,68,101800,747,1324,403,641,704,117,54700,70800,14700,2700,60,6.7,3,3,24.1,77777,9,999999999,370,0.0180,0,88,999.000,999.0,99.0 +1977,6,14,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,27.8,20.0,63,101700,982,1324,408,859,819,137,78400,82400,17200,3940,70,7.2,3,3,24.1,77777,9,999999999,359,0.0180,0,88,999.000,999.0,99.0 +1977,6,14,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,19.4,57,101700,1164,1324,413,971,830,166,94700,83700,20900,7460,70,7.7,3,3,40.2,77777,9,999999999,350,0.0180,0,88,999.000,999.0,99.0 +1977,6,14,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,28.9,19.6,57,101700,1279,1324,417,912,748,165,95200,75900,21800,13450,70,7.9,4,4,40.2,77777,9,999999999,350,0.0180,0,88,999.000,999.0,99.0 +1977,6,14,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,28.9,19.6,57,101700,1320,1324,417,839,657,201,93500,67800,25700,30580,60,8.0,4,4,40.2,77777,9,999999999,350,0.0180,0,88,999.000,999.0,99.0 +1977,6,14,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,19.4,57,101700,1284,1324,420,715,530,245,81400,54200,28800,21690,60,8.2,5,5,40.2,77777,9,999999999,350,0.0180,0,88,999.000,999.0,99.0 +1977,6,14,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,28.7,19.6,58,101700,1174,1324,419,666,594,219,79700,60700,25800,10920,60,7.9,5,5,40.2,77777,9,999999999,350,0.0180,0,88,999.000,999.0,99.0 +1977,6,14,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,28.5,19.5,58,101600,996,1324,418,400,454,138,52000,46800,16700,4460,60,7.5,5,5,40.2,77777,9,999999999,350,0.0180,0,88,999.000,999.0,99.0 +1977,6,14,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,19.4,59,101600,764,1324,416,267,455,98,38900,46200,12200,2350,60,7.2,5,5,40.2,77777,9,999999999,350,0.0180,0,88,999.000,999.0,99.0 +1977,6,14,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,27.0,19.8,65,101700,493,1324,410,79,205,48,14400,19500,7100,860,60,7.0,5,5,40.2,77777,9,999999999,359,0.0180,0,88,999.000,999.0,99.0 +1977,6,14,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,25.7,19.9,70,101700,203,1324,400,12,39,6,1500,2600,1100,100,60,6.9,4,4,40.2,77777,9,999999999,359,0.0180,0,88,999.000,999.0,99.0 +1977,6,14,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,20.0,76,101800,6,298,393,0,0,0,0,0,0,0,60,6.7,4,4,24.1,77777,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1977,6,14,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.4,20.2,76,101800,0,0,396,0,0,0,0,0,0,0,60,6.7,5,5,24.1,77777,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1977,6,14,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.4,20.2,76,101900,0,0,404,0,0,0,0,0,0,0,60,6.7,7,7,24.1,77777,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1977,6,14,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,20.0,76,101900,0,0,411,0,0,0,0,0,0,0,60,6.7,8,8,24.1,1220,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1977,6,14,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.4,19.4,73,101900,0,0,403,0,0,0,0,0,0,0,40,5.3,7,7,24.1,77777,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1977,6,15,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.4,18.7,69,101900,0,0,394,0,0,0,0,0,0,0,20,4.0,5,5,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1977,6,15,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,17.8,66,101800,0,0,390,0,0,0,0,0,0,0,360,2.6,4,4,24.1,77777,9,999999999,309,0.0400,0,88,999.000,999.0,99.0 +1977,6,15,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.4,18.4,68,101800,0,0,394,0,0,0,0,0,0,0,10,3.3,5,5,24.1,77777,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1977,6,15,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.4,18.8,69,101800,0,0,403,0,0,0,0,0,0,0,30,3.9,7,7,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1977,6,15,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,18.9,71,101800,0,0,409,1,3,1,0,0,0,0,40,4.6,8,8,24.1,1220,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1977,6,15,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,25.0,19.1,70,101800,3,210,413,49,48,42,0,0,0,0,50,5.5,8,8,24.1,1220,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1977,6,15,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,25.5,19.5,68,101800,183,1324,416,255,251,165,20100,15100,18000,3500,50,6.3,8,8,24.1,1220,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1977,6,15,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,19.4,67,101800,473,1324,419,288,26,273,30000,2700,29000,6640,60,7.2,8,8,40.2,1220,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1977,6,15,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,27.0,19.4,63,101800,746,1324,418,671,641,194,58900,65200,22000,4380,60,7.2,7,7,40.2,77777,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1977,6,15,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,28.0,19.3,59,101800,982,1324,418,493,265,260,50400,28700,29100,7810,60,7.2,6,6,40.2,77777,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1977,6,15,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,18.9,55,101800,1163,1324,419,871,657,235,86300,66900,27400,11230,60,7.2,5,5,40.2,77777,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1977,6,15,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,29.1,18.5,53,101800,1278,1324,416,955,794,162,99900,80600,21800,13200,60,7.9,4,4,40.2,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1977,6,15,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,29.2,18.0,50,101800,1320,1324,416,929,714,235,102200,73200,29000,35550,60,8.6,4,4,40.2,77777,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1977,6,15,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,17.2,48,101800,1284,1324,413,897,831,159,104000,84400,21900,13590,60,9.3,3,3,40.2,77777,9,999999999,309,0.0400,0,88,999.000,999.0,99.0 +1977,6,15,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,29.2,17.6,49,101700,1174,1324,409,704,824,84,85000,82800,11400,3830,50,8.6,2,2,40.2,77777,9,999999999,309,0.0400,0,88,999.000,999.0,99.0 +1977,6,15,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,29.1,17.7,50,101700,997,1324,408,505,705,98,65300,70500,12200,2730,50,7.9,2,2,40.2,77777,9,999999999,309,0.0400,0,88,999.000,999.0,99.0 +1977,6,15,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,17.8,51,101700,765,1324,402,295,634,59,44900,62700,8600,1580,40,7.2,1,1,40.2,77777,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1977,6,15,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,27.6,18.1,56,101700,494,1324,395,97,443,30,20900,41700,5300,890,50,6.7,1,1,40.2,77777,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1977,6,15,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,26.3,18.3,62,101700,204,1324,389,9,35,4,1100,2500,700,80,50,6.2,1,1,40.2,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1977,6,15,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,18.3,67,101800,7,298,382,0,0,0,0,0,0,0,60,5.7,1,1,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1977,6,15,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,25.0,18.5,67,101800,0,0,382,0,0,0,0,0,0,0,60,5.9,1,1,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1977,6,15,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,25.0,18.5,67,101900,0,0,387,0,0,0,0,0,0,0,60,6.0,2,2,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1977,6,15,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,18.3,67,101900,0,0,387,0,0,0,0,0,0,0,60,6.2,2,2,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1977,6,15,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.8,18.1,66,101800,0,0,386,0,0,0,0,0,0,0,60,6.5,2,2,24.1,77777,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1977,6,16,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.6,17.8,65,101800,0,0,388,0,0,0,0,0,0,0,60,6.9,3,3,24.1,77777,9,999999999,309,0.0400,0,88,999.000,999.0,99.0 +1977,6,16,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,17.2,64,101700,0,0,387,0,0,0,0,0,0,0,60,7.2,3,3,24.1,77777,9,999999999,300,0.0400,0,88,999.000,999.0,99.0 +1977,6,16,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.2,17.8,66,101700,0,0,386,0,0,0,0,0,0,0,60,6.5,3,3,24.1,77777,9,999999999,309,0.0400,0,88,999.000,999.0,99.0 +1977,6,16,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.1,18.2,69,101700,0,0,382,0,0,0,0,0,0,0,60,5.9,2,2,24.1,77777,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1977,6,16,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,18.3,71,101700,0,0,381,5,23,2,0,0,0,0,60,5.2,2,2,24.1,77777,9,999999999,329,0.0380,0,88,999.000,999.0,99.0 +1977,6,16,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.5,18.6,70,101700,3,210,389,63,136,44,0,0,0,0,60,5.5,3,3,24.1,77777,9,999999999,329,0.0380,0,88,999.000,999.0,99.0 +1977,6,16,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,25.0,18.9,68,101700,182,1324,395,234,363,104,15300,21300,12300,2390,60,5.9,4,4,24.1,77777,9,999999999,329,0.0380,0,88,999.000,999.0,99.0 +1977,6,16,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,18.9,67,101700,473,1324,401,492,552,179,37800,51000,19500,3630,60,6.2,5,5,40.2,77777,9,999999999,340,0.0380,0,88,999.000,999.0,99.0 +1977,6,16,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,26.7,18.9,62,101700,745,1324,407,681,603,232,59500,61200,24900,5340,60,7.2,5,5,40.2,77777,9,999999999,340,0.0380,0,88,999.000,999.0,99.0 +1977,6,16,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,27.8,18.7,58,101800,981,1324,413,757,601,228,70300,60400,25400,6770,60,8.3,5,5,40.2,77777,9,999999999,329,0.0380,0,88,999.000,999.0,99.0 +1977,6,16,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,18.3,53,101800,1162,1324,418,811,566,263,80100,57300,29700,12430,60,9.3,5,5,40.2,77777,9,999999999,329,0.0380,0,88,999.000,999.0,99.0 +1977,6,16,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,29.3,18.5,52,101700,1278,1324,421,763,479,285,82600,50300,34000,24570,60,9.1,5,5,40.2,77777,9,999999999,329,0.0380,0,88,999.000,999.0,99.0 +1977,6,16,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,29.6,18.5,51,101700,1319,1324,419,915,748,188,99300,75600,23800,27230,70,9.0,4,4,40.2,77777,9,999999999,329,0.0380,0,88,999.000,999.0,99.0 +1977,6,16,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,18.3,50,101600,1284,1324,421,835,708,206,97000,72900,26100,18430,70,8.8,4,4,40.2,77777,9,999999999,329,0.0380,0,88,999.000,999.0,99.0 +1977,6,16,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,29.3,18.5,52,101600,1174,1324,418,680,679,169,81500,68500,20600,7880,70,8.8,4,4,40.2,77777,9,999999999,329,0.0380,0,88,999.000,999.0,99.0 +1977,6,16,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,28.5,18.4,54,101600,998,1324,413,379,352,176,49300,36800,21400,5450,60,8.8,4,4,40.2,77777,9,999999999,329,0.0380,0,88,999.000,999.0,99.0 +1977,6,16,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,18.3,56,101500,766,1324,409,292,561,83,43800,56200,11200,2010,60,8.8,4,4,40.2,77777,9,999999999,320,0.0380,0,88,999.000,999.0,99.0 +1977,6,16,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,27.1,18.5,59,101600,496,1324,406,75,82,62,10700,8100,7600,1430,70,7.8,4,4,40.2,77777,9,999999999,329,0.0380,0,88,999.000,999.0,99.0 +1977,6,16,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,26.3,18.4,61,101600,206,1324,398,8,22,5,1100,1500,900,80,70,6.7,3,3,40.2,77777,9,999999999,320,0.0380,0,88,999.000,999.0,99.0 +1977,6,16,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,18.3,64,101700,7,298,394,0,0,0,0,0,0,0,80,5.7,3,3,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1977,6,16,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,25.4,18.5,65,101700,0,0,396,0,0,0,0,0,0,0,80,5.5,4,4,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1977,6,16,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,25.2,18.5,66,101700,0,0,398,0,0,0,0,0,0,0,80,5.4,5,5,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1977,6,16,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,18.3,67,101800,0,0,401,0,0,0,0,0,0,0,80,5.2,6,6,24.1,1370,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1977,6,16,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,25.0,18.5,67,101700,0,0,406,0,0,0,0,0,0,0,70,5.2,7,7,24.1,1370,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1977,6,17,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,25.0,18.5,67,101700,0,0,406,0,0,0,0,0,0,0,70,5.2,7,7,24.1,1370,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1977,6,17,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,18.3,67,101600,0,0,412,0,0,0,0,0,0,0,60,5.2,8,8,24.1,1370,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1977,6,17,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.4,18.9,71,101600,0,0,409,0,0,0,0,0,0,0,60,5.5,8,8,24.1,1370,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1977,6,17,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,23.9,19.3,75,101600,0,0,407,0,0,0,0,0,0,0,70,5.9,8,8,24.1,1370,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1977,6,17,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,19.4,79,101600,0,0,404,2,3,1,0,0,0,0,70,6.2,8,8,24.1,1370,9,999999999,350,0.0380,0,88,999.000,999.0,99.0 +1977,6,17,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.1,19.5,76,101700,3,187,402,78,69,69,0,0,0,0,70,5.7,7,7,24.1,1370,9,999999999,350,0.0380,0,88,999.000,999.0,99.0 +1977,6,17,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.8,19.6,72,101700,181,1323,406,214,175,151,17700,10600,16200,3200,60,5.1,7,7,24.1,1370,9,999999999,350,0.0380,0,88,999.000,999.0,99.0 +1977,6,17,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,19.4,69,101800,472,1323,405,295,191,187,27300,18100,20800,4290,60,4.6,6,6,40.2,1370,9,999999999,350,0.0380,0,88,999.000,999.0,99.0 +1977,6,17,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,26.7,19.6,65,101800,744,1323,416,576,399,280,53500,42000,29800,6970,60,6.0,7,7,40.2,1187,9,999999999,350,0.0380,0,88,999.000,999.0,99.0 +1977,6,17,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,27.8,19.6,61,101800,980,1323,422,794,618,249,76000,64300,28300,7620,60,7.4,7,7,40.2,1003,9,999999999,350,0.0380,0,88,999.000,999.0,99.0 +1977,6,17,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,19.4,57,101800,1162,1323,435,668,242,433,70900,25800,48200,19100,60,8.8,8,8,40.2,820,9,999999999,350,0.0380,0,88,999.000,999.0,99.0 +1977,6,17,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,29.1,19.4,56,101700,1277,1323,436,697,284,413,76000,30900,46100,30910,60,8.3,8,8,40.2,3087,9,999999999,350,0.0380,0,88,999.000,999.0,99.0 +1977,6,17,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,29.2,19.3,54,101700,1319,1323,437,657,388,279,74100,40800,33400,43030,60,7.7,8,8,40.2,5353,9,999999999,340,0.0380,0,88,999.000,999.0,99.0 +1977,6,17,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,18.9,53,101700,1284,1323,437,794,470,376,89500,49200,41700,34380,60,7.2,8,8,40.2,7620,9,999999999,340,0.0380,0,88,999.000,999.0,99.0 +1977,6,17,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,28.9,19.3,56,101600,1175,1323,435,551,341,294,64900,35700,33100,14930,60,7.2,8,8,40.2,5537,9,999999999,340,0.0380,0,88,999.000,999.0,99.0 +1977,6,17,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,28.3,19.4,58,101600,998,1323,441,278,89,226,33000,9500,25800,7430,50,7.2,9,9,40.2,3453,9,999999999,350,0.0380,0,88,999.000,999.0,99.0 +1977,6,17,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,19.4,61,101600,767,1323,438,166,80,136,20700,8500,15800,3600,50,7.2,9,9,40.2,1370,9,999999999,350,0.0380,0,88,999.000,999.0,99.0 +1977,6,17,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,26.9,19.8,65,101600,497,1323,433,69,29,64,8300,2700,7300,1990,50,7.2,9,9,40.2,2133,9,999999999,359,0.0380,0,88,999.000,999.0,99.0 +1977,6,17,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,25.9,19.9,70,101700,207,1323,428,5,2,4,500,100,500,120,50,7.2,9,9,40.2,2897,9,999999999,359,0.0380,0,88,999.000,999.0,99.0 +1977,6,17,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,20.0,74,101700,7,320,423,0,0,0,0,0,0,0,50,7.2,9,9,24.1,3660,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1977,6,17,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,25.2,19.8,72,101800,0,0,424,0,0,0,0,0,0,0,60,7.0,9,9,24.1,2847,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1977,6,17,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,25.4,19.5,69,101800,0,0,415,0,0,0,0,0,0,0,60,6.9,8,8,24.1,2033,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1977,6,17,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,18.9,67,101800,0,0,416,0,0,0,0,0,0,0,70,6.7,8,8,24.1,1220,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1977,6,17,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,25.6,19.1,67,101800,0,0,416,0,0,0,0,0,0,0,70,5.8,8,8,24.1,1270,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1977,6,18,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,25.6,19.1,67,101700,0,0,425,0,0,0,0,0,0,0,70,5.0,9,9,24.1,1320,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1977,6,18,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,18.9,67,101700,0,0,425,0,0,0,0,0,0,0,70,4.1,9,9,24.1,1370,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1977,6,18,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,25.2,19.1,68,101700,0,0,407,0,0,0,0,0,0,0,70,4.8,7,7,24.1,77777,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1977,6,18,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.8,19.1,70,101700,0,0,401,0,0,0,0,0,0,0,60,5.5,6,6,24.1,77777,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1977,6,18,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,18.9,71,101700,0,0,392,1,3,1,0,0,0,0,60,6.2,4,4,24.1,77777,9,999999999,340,0.0700,0,88,999.000,999.0,99.0 +1977,6,18,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,25.2,19.0,68,101700,3,187,399,71,228,40,0,0,0,0,60,6.5,5,5,24.1,77777,9,999999999,340,0.0700,0,88,999.000,999.0,99.0 +1977,6,18,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,25.9,19.1,65,101800,180,1323,411,155,73,128,14900,5600,14200,1980,60,6.9,7,7,24.1,77777,9,999999999,340,0.0700,0,88,999.000,999.0,99.0 +1977,6,18,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,18.9,62,101800,471,1323,422,307,79,262,31600,7700,28900,5780,60,7.2,8,8,40.2,1370,9,999999999,340,0.0700,0,88,999.000,999.0,99.0 +1977,6,18,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,27.6,18.7,58,101800,743,1323,420,320,98,247,33200,9900,27600,7720,60,7.5,7,7,40.2,77777,9,999999999,329,0.0700,0,88,999.000,999.0,99.0 +1977,6,18,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,28.5,18.4,53,101800,979,1323,416,818,684,216,75700,69000,24500,6440,70,7.9,5,5,40.2,77777,9,999999999,320,0.0700,0,88,999.000,999.0,99.0 +1977,6,18,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,17.8,49,101900,1161,1323,417,870,650,241,86100,66100,27900,11430,70,8.2,4,4,40.2,77777,9,999999999,309,0.0700,0,88,999.000,999.0,99.0 +1977,6,18,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,29.6,18.0,49,101800,1277,1323,419,797,552,246,83500,56400,28900,20710,70,8.6,4,4,40.2,77777,9,999999999,309,0.0700,0,88,999.000,999.0,99.0 +1977,6,18,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,29.8,18.0,48,101800,1319,1323,416,700,513,201,77800,53000,24800,30330,60,8.9,3,3,40.2,77777,9,999999999,309,0.0700,0,88,999.000,999.0,99.0 +1977,6,18,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,17.8,48,101800,1284,1323,417,891,759,215,103100,78000,27100,19290,60,9.3,3,3,40.2,77777,9,999999999,320,0.0700,0,88,999.000,999.0,99.0 +1977,6,18,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,29.6,18.2,50,101800,1175,1323,416,743,787,148,90800,79800,19700,7110,60,9.8,3,3,40.2,77777,9,999999999,320,0.0700,0,88,999.000,999.0,99.0 +1977,6,18,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,29.3,18.3,51,101700,999,1323,414,462,504,170,58800,51500,19800,5420,70,10.3,3,3,40.2,77777,9,999999999,320,0.0700,0,88,999.000,999.0,99.0 +1977,6,18,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,18.3,53,101700,768,1323,412,291,495,105,42100,50100,13000,2510,70,10.8,3,3,40.2,77777,9,999999999,329,0.0700,0,88,999.000,999.0,99.0 +1977,6,18,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,27.6,18.5,58,101700,498,1323,405,55,90,41,8800,8800,5400,720,70,9.3,3,3,40.2,77777,9,999999999,329,0.0700,0,88,999.000,999.0,99.0 +1977,6,18,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,26.3,18.4,62,101700,208,1323,398,6,8,5,800,600,700,110,60,7.7,3,3,40.2,77777,9,999999999,329,0.0700,0,88,999.000,999.0,99.0 +1977,6,18,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,18.3,67,101800,8,320,391,0,0,0,0,0,0,0,60,6.2,3,3,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1977,6,18,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,25.0,18.7,68,101800,0,0,398,0,0,0,0,0,0,0,60,6.0,5,5,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1977,6,18,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,25.0,18.9,68,101800,0,0,401,0,0,0,0,0,0,0,60,5.9,6,6,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1977,6,18,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,18.9,69,101900,0,0,413,0,0,0,0,0,0,0,60,5.7,8,8,24.1,1370,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1977,6,18,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.8,18.9,69,101800,0,0,405,0,0,0,0,0,0,0,70,5.9,7,7,24.1,1370,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1977,6,19,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.6,18.7,69,101800,0,0,404,0,0,0,0,0,0,0,70,6.0,7,7,24.1,1370,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1977,6,19,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,18.3,69,101700,0,0,397,0,0,0,0,0,0,0,80,6.2,6,6,24.1,1370,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1977,6,19,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.4,18.3,68,101700,0,0,394,0,0,0,0,0,0,0,80,6.2,5,5,24.1,77777,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1977,6,19,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.4,18.2,67,101700,0,0,391,0,0,0,0,0,0,0,70,6.2,4,4,24.1,77777,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1977,6,19,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,17.8,66,101700,0,0,387,8,20,4,0,0,0,0,70,6.2,3,3,24.1,77777,9,999999999,309,0.0260,0,88,999.000,999.0,99.0 +1977,6,19,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.8,18.0,65,101700,3,187,393,67,195,40,0,0,0,0,70,6.9,4,4,24.1,77777,9,999999999,320,0.0260,0,88,999.000,999.0,99.0 +1977,6,19,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,25.2,18.4,65,101700,179,1323,402,249,431,95,14600,25700,11200,1940,70,7.5,6,6,24.1,77777,9,999999999,320,0.0260,0,88,999.000,999.0,99.0 +1977,6,19,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,18.3,64,101800,470,1323,409,440,463,179,35800,44100,20100,3900,70,8.2,7,7,40.2,1370,9,999999999,329,0.0260,0,88,999.000,999.0,99.0 +1977,6,19,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,26.7,18.0,59,101800,742,1323,406,763,802,168,64000,79100,19500,3650,70,8.7,5,5,40.2,77777,9,999999999,320,0.0260,0,88,999.000,999.0,99.0 +1977,6,19,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,27.8,17.4,53,101800,978,1323,408,807,721,172,75100,73500,20600,5270,70,9.3,4,4,40.2,77777,9,999999999,309,0.0260,0,88,999.000,999.0,99.0 +1977,6,19,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,16.7,48,101800,1160,1323,406,919,802,144,90900,81400,19400,6590,70,9.8,2,2,40.2,77777,9,999999999,300,0.0260,0,88,999.000,999.0,99.0 +1977,6,19,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,29.1,17.1,48,101700,1276,1323,407,974,852,123,97400,85500,14700,8520,70,9.8,2,2,40.2,77777,9,999999999,300,0.0260,0,88,999.000,999.0,99.0 +1977,6,19,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,29.2,17.2,48,101700,1319,1323,408,927,855,95,98300,86000,12400,12190,60,9.8,2,2,40.2,77777,9,999999999,300,0.0260,0,88,999.000,999.0,99.0 +1977,6,19,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,17.2,48,101700,1284,1323,409,860,840,112,95800,84400,13700,8420,60,9.8,2,2,40.2,77777,9,999999999,309,0.0260,0,88,999.000,999.0,99.0 +1977,6,19,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,29.0,17.8,50,101700,1175,1323,412,688,700,159,83100,70800,20000,7550,60,9.3,3,3,40.2,77777,9,999999999,309,0.0260,0,88,999.000,999.0,99.0 +1977,6,19,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,28.7,18.1,53,101600,999,1323,414,471,657,90,61100,65700,11300,2640,70,8.7,4,4,40.2,77777,9,999999999,320,0.0260,0,88,999.000,999.0,99.0 +1977,6,19,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,18.3,55,101600,769,1323,415,208,212,128,28400,22600,15200,2840,70,8.2,5,5,40.2,77777,9,999999999,329,0.0260,0,88,999.000,999.0,99.0 +1977,6,19,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,27.0,18.7,60,101700,499,1323,408,80,157,56,13100,15000,7500,1020,70,7.9,5,5,40.2,77777,9,999999999,329,0.0260,0,88,999.000,999.0,99.0 +1977,6,19,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,25.7,18.8,66,101700,209,1323,405,10,21,7,1300,1400,1000,110,70,7.5,6,6,40.2,77777,9,999999999,340,0.0260,0,88,999.000,999.0,99.0 +1977,6,19,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,18.9,71,101700,8,320,398,0,0,0,0,0,0,0,70,7.2,6,6,24.1,1370,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1977,6,19,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.4,18.9,70,101800,0,0,395,0,0,0,0,0,0,0,70,6.9,5,5,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1977,6,19,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.4,18.7,70,101800,0,0,388,0,0,0,0,0,0,0,70,6.5,3,3,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1977,6,19,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,18.3,69,101800,0,0,384,0,0,0,0,0,0,0,70,6.2,2,2,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1977,6,19,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.4,18.5,69,101800,0,0,384,0,0,0,0,0,0,0,60,5.7,2,2,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1977,6,20,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.4,18.5,69,101700,0,0,388,0,0,0,0,0,0,0,60,5.1,3,3,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1977,6,20,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,18.3,69,101700,0,0,388,0,0,0,0,0,0,0,50,4.6,3,3,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1977,6,20,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.2,18.7,71,101700,0,0,387,0,0,0,0,0,0,0,50,4.6,3,3,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1977,6,20,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.1,18.9,72,101700,0,0,383,0,0,0,0,0,0,0,60,4.6,2,2,24.1,77777,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1977,6,20,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,18.9,74,101700,0,0,382,7,23,3,0,0,0,0,60,4.6,2,2,24.1,77777,9,999999999,340,0.0330,0,88,999.000,999.0,99.0 +1977,6,20,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.6,19.0,71,101700,2,187,390,58,190,32,0,0,0,0,70,4.8,4,3,24.1,77777,9,999999999,340,0.0330,0,88,999.000,999.0,99.0 +1977,6,20,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,25.4,19.1,68,101700,178,1323,400,231,264,137,17500,16000,15400,2900,70,5.0,6,5,24.1,77777,9,999999999,340,0.0330,0,88,999.000,999.0,99.0 +1977,6,20,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,18.9,65,101800,469,1323,407,279,102,221,28100,9800,24600,5250,80,5.2,8,6,40.2,7620,9,999999999,340,0.0330,0,88,999.000,999.0,99.0 +1977,6,20,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,27.0,19.5,63,101800,741,1323,413,628,599,184,55400,61000,21100,4120,80,5.5,9,6,40.2,7620,9,999999999,350,0.0330,0,88,999.000,999.0,99.0 +1977,6,20,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,28.0,19.8,61,101800,977,1323,424,547,296,287,55400,32000,31700,8700,70,5.9,9,7,40.2,7620,9,999999999,359,0.0330,0,88,999.000,999.0,99.0 +1977,6,20,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,20.0,59,101800,1159,1323,429,695,397,311,71100,41500,34600,15030,70,6.2,10,7,40.2,7620,9,999999999,359,0.0330,0,88,999.000,999.0,99.0 +1977,6,20,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,28.9,20.4,60,101800,1276,1323,430,871,424,447,94100,46100,49500,33430,60,6.7,10,7,40.2,7620,9,999999999,370,0.0330,0,88,999.000,999.0,99.0 +1977,6,20,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,28.9,20.6,60,101800,1318,1323,430,754,458,309,84400,48100,36400,47520,40,7.2,10,7,40.2,7620,9,999999999,370,0.0330,0,88,999.000,999.0,99.0 +1977,6,20,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,20.6,61,101800,1284,1323,430,665,285,411,76200,31000,45900,32480,30,7.7,10,7,40.2,7620,9,999999999,370,0.0330,0,88,999.000,999.0,99.0 +1977,6,20,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,28.9,20.4,60,101700,1176,1323,425,638,408,330,74400,42600,36500,16940,40,8.1,9,6,40.2,7620,9,999999999,370,0.0330,0,88,999.000,999.0,99.0 +1977,6,20,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,28.9,19.9,58,101700,1000,1323,424,366,277,205,45600,28900,23600,6440,50,8.4,8,6,40.2,7620,9,999999999,359,0.0330,0,88,999.000,999.0,99.0 +1977,6,20,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,19.4,57,101700,769,1323,420,262,354,128,37100,36400,15900,2850,60,8.8,7,5,40.2,7620,9,999999999,350,0.0330,0,88,999.000,999.0,99.0 +1977,6,20,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,28.0,19.8,61,101700,500,1323,419,65,89,51,9800,8700,6400,910,60,7.9,8,6,40.2,5537,9,999999999,359,0.0330,0,88,999.000,999.0,99.0 +1977,6,20,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,27.0,19.9,65,101700,210,1323,414,9,22,6,1200,1500,900,90,60,7.1,8,6,40.2,3453,9,999999999,359,0.0330,0,88,999.000,999.0,99.0 +1977,6,20,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,20.0,69,101800,8,320,413,0,0,0,0,0,0,0,60,6.2,9,7,24.1,1370,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1977,6,20,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,25.9,20.2,70,101800,0,0,408,0,0,0,0,0,0,0,60,6.2,8,6,24.1,3453,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1977,6,20,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,25.8,20.2,70,101800,0,0,407,0,0,0,0,0,0,0,60,6.2,8,6,24.1,5537,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1977,6,20,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,20.0,71,101900,0,0,402,0,0,0,0,0,0,0,60,6.2,7,5,24.1,7620,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1977,6,20,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,25.4,20.0,71,101800,0,0,401,0,0,0,0,0,0,0,60,6.2,6,5,24.1,77777,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1977,6,21,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,25.2,19.8,71,101800,0,0,397,0,0,0,0,0,0,0,60,6.2,5,4,24.1,77777,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1977,6,21,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,19.4,71,101700,0,0,395,0,0,0,0,0,0,0,60,6.2,4,4,24.1,77777,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1977,6,21,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,25.2,19.4,70,101700,0,0,403,0,0,0,0,0,0,0,70,6.2,6,6,24.1,77777,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1977,6,21,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,25.4,19.3,68,101700,0,0,409,0,0,0,0,0,0,0,70,6.2,7,7,24.1,77777,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1977,6,21,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,18.9,67,101700,0,0,425,1,2,0,0,0,0,0,80,6.2,9,9,24.1,850,9,999999999,340,0.0420,0,88,999.000,999.0,99.0 +1977,6,21,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,26.1,18.4,63,101700,2,187,407,61,123,45,0,0,0,0,80,7.6,6,6,24.1,77777,9,999999999,329,0.0420,0,88,999.000,999.0,99.0 +1977,6,21,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,26.7,18.0,58,101800,177,1322,403,234,427,82,13500,25500,10100,1630,70,8.9,4,4,24.1,77777,9,999999999,320,0.0420,0,88,999.000,999.0,99.0 +1977,6,21,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,17.2,54,101800,467,1322,392,496,797,47,34700,74000,8500,1110,70,10.3,1,1,40.2,77777,9,999999999,300,0.0420,0,88,999.000,999.0,99.0 +1977,6,21,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,27.9,17.8,53,101800,740,1322,402,681,807,83,57200,80500,12000,1960,70,9.4,2,2,40.2,77777,9,999999999,309,0.0420,0,88,999.000,999.0,99.0 +1977,6,21,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,28.7,18.1,52,101800,976,1322,414,773,674,179,71800,68600,21100,5440,70,8.6,4,4,40.2,77777,9,999999999,320,0.0420,0,88,999.000,999.0,99.0 +1977,6,21,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,18.3,51,101800,1159,1322,421,693,407,300,71100,42600,33700,14450,70,7.7,5,5,40.2,77777,9,999999999,320,0.0420,0,88,999.000,999.0,99.0 +1977,6,21,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,29.6,18.5,51,101800,1275,1322,426,527,189,338,58400,20600,38500,24790,60,7.7,6,6,40.2,77777,9,999999999,329,0.0420,0,88,999.000,999.0,99.0 +1977,6,21,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,29.8,18.5,50,101800,1318,1322,427,776,443,345,85800,46400,39400,53090,50,7.7,7,6,40.2,77777,9,999999999,329,0.0420,0,88,999.000,999.0,99.0 +1977,6,21,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,18.3,50,101800,1284,1322,433,703,490,267,79200,49900,30700,23910,40,7.7,8,7,40.2,1370,9,999999999,329,0.0420,0,88,999.000,999.0,99.0 +1977,6,21,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,29.4,18.5,52,101700,1176,1322,430,497,363,223,61000,38100,27000,11290,50,7.4,8,7,40.2,1370,9,999999999,329,0.0420,0,88,999.000,999.0,99.0 +1977,6,21,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,28.9,18.4,53,101700,1001,1322,422,482,546,164,61800,55900,19400,5280,50,7.0,8,6,40.2,1370,9,999999999,329,0.0420,0,88,999.000,999.0,99.0 +1977,6,21,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,18.3,55,101700,770,1322,419,280,422,120,38900,42600,14100,2840,60,6.7,8,6,40.2,1370,9,999999999,329,0.0420,0,88,999.000,999.0,99.0 +1977,6,21,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,27.4,18.7,59,101700,501,1322,411,84,182,56,14200,17400,7600,1020,60,6.4,7,5,40.2,77777,9,999999999,329,0.0420,0,88,999.000,999.0,99.0 +1977,6,21,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,26.5,18.8,63,101700,211,1322,403,9,15,7,1200,1000,1000,110,60,6.0,5,4,40.2,77777,9,999999999,340,0.0420,0,88,999.000,999.0,99.0 +1977,6,21,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,18.9,67,101800,8,342,395,0,0,0,0,0,0,0,60,5.7,4,3,24.1,77777,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1977,6,21,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,25.4,18.9,67,101800,0,0,394,0,0,0,0,0,0,0,60,6.5,4,3,24.1,77777,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1977,6,21,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,25.2,18.7,67,101800,0,0,393,0,0,0,0,0,0,0,60,7.4,3,3,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1977,6,21,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,18.3,67,101800,0,0,391,0,0,0,0,0,0,0,60,8.2,3,3,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1977,6,21,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.8,18.5,68,101800,0,0,390,0,0,0,0,0,0,0,60,6.8,3,3,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1977,6,22,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.6,18.5,68,101700,0,0,385,0,0,0,0,0,0,0,70,5.5,2,2,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1977,6,22,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,18.3,69,101700,0,0,384,0,0,0,0,0,0,0,70,4.1,2,2,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1977,6,22,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.6,18.9,70,101700,0,0,386,0,0,0,0,0,0,0,70,4.8,2,2,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1977,6,22,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.8,19.3,70,101700,0,0,391,0,0,0,0,0,0,0,60,5.5,3,3,24.1,77777,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1977,6,22,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,19.4,71,101700,0,0,392,4,15,1,0,0,0,0,60,6.2,3,3,24.1,77777,9,999999999,350,0.0420,0,88,999.000,999.0,99.0 +1977,6,22,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,25.4,19.9,71,101800,2,165,401,74,177,50,0,0,0,0,70,6.2,5,5,24.1,77777,9,999999999,359,0.0420,0,88,999.000,999.0,99.0 +1977,6,22,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,25.7,20.4,72,101800,176,1322,412,190,137,142,16200,8200,15200,3010,70,6.2,7,7,24.1,77777,9,999999999,359,0.0420,0,88,999.000,999.0,99.0 +1977,6,22,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,20.6,72,101900,466,1322,430,285,100,228,28700,9600,25300,5330,80,6.2,9,9,40.2,1370,9,999999999,370,0.0420,0,88,999.000,999.0,99.0 +1977,6,22,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,26.8,20.6,68,101900,739,1322,425,431,187,293,42900,19300,32100,7640,70,6.4,8,8,40.2,1420,9,999999999,370,0.0420,0,88,999.000,999.0,99.0 +1977,6,22,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,27.6,20.4,65,101900,975,1322,429,519,225,321,53600,23900,35900,10280,70,6.5,8,8,40.2,1470,9,999999999,370,0.0420,0,88,999.000,999.0,99.0 +1977,6,22,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,20.0,61,101900,1158,1322,426,764,387,390,79800,42000,42900,17550,60,6.7,7,7,40.2,1520,9,999999999,359,0.0420,0,88,999.000,999.0,99.0 +1977,6,22,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,28.7,20.2,60,101800,1275,1322,428,664,315,350,73200,34400,40000,25670,60,7.0,7,7,40.2,1520,9,999999999,359,0.0420,0,88,999.000,999.0,99.0 +1977,6,22,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,29.0,20.2,58,101800,1318,1322,425,712,399,323,79100,41900,37300,49630,70,7.4,6,6,40.2,1520,9,999999999,359,0.0420,0,88,999.000,999.0,99.0 +1977,6,22,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,20.0,57,101800,1284,1322,427,627,284,374,72500,31000,42300,29520,70,7.7,6,6,40.2,1520,9,999999999,359,0.0420,0,88,999.000,999.0,99.0 +1977,6,22,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,28.9,19.6,57,101700,1176,1322,424,515,388,221,63400,40800,27000,11210,70,7.5,6,6,40.2,77777,9,999999999,350,0.0420,0,88,999.000,999.0,99.0 +1977,6,22,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,28.3,19.0,56,101700,1001,1322,416,492,614,134,65100,63300,17000,4390,80,7.4,5,5,40.2,77777,9,999999999,329,0.0420,0,88,999.000,999.0,99.0 +1977,6,22,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,18.3,56,101700,771,1322,412,289,477,109,41500,48300,13300,2610,80,7.2,5,5,40.2,77777,9,999999999,320,0.0420,0,88,999.000,999.0,99.0 +1977,6,22,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,26.9,18.7,60,101700,502,1322,405,102,363,45,20000,34900,6700,950,70,6.2,4,4,40.2,77777,9,999999999,329,0.0420,0,88,999.000,999.0,99.0 +1977,6,22,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,25.9,18.8,65,101700,212,1322,396,11,33,6,1400,2300,1100,100,70,5.1,3,3,40.2,77777,9,999999999,329,0.0420,0,88,999.000,999.0,99.0 +1977,6,22,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,18.9,69,101800,8,342,388,0,0,0,0,0,0,0,60,4.1,2,2,24.1,77777,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1977,6,22,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.8,18.9,69,101800,0,0,387,0,0,0,0,0,0,0,60,4.5,2,2,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1977,6,22,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.6,18.7,69,101800,0,0,380,0,0,0,0,0,0,0,60,4.8,1,1,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1977,6,22,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,18.3,69,101900,0,0,379,0,0,0,0,0,0,0,60,5.2,1,1,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1977,6,22,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.4,18.5,69,101800,0,0,384,0,0,0,0,0,0,0,60,5.7,2,2,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1977,6,23,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.4,18.5,69,101800,0,0,384,0,0,0,0,0,0,0,60,6.2,2,2,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1977,6,23,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,18.3,69,101800,0,0,388,0,0,0,0,0,0,0,60,6.7,3,3,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1977,6,23,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.2,18.5,70,101800,0,0,383,0,0,0,0,0,0,0,60,6.0,2,2,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1977,6,23,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.1,18.5,70,101700,0,0,383,0,0,0,0,0,0,0,70,5.3,2,2,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1977,6,23,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,18.3,71,101700,0,0,376,4,14,2,0,0,0,0,70,4.6,1,1,24.1,77777,9,999999999,329,0.0520,0,88,999.000,999.0,99.0 +1977,6,23,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.5,18.4,69,101700,2,165,385,82,329,38,0,0,0,0,70,5.1,2,2,24.1,77777,9,999999999,329,0.0520,0,88,999.000,999.0,99.0 +1977,6,23,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,25.0,18.5,66,101800,175,1322,387,289,639,62,14300,38300,9200,930,60,5.7,2,2,24.1,77777,9,999999999,329,0.0520,0,88,999.000,999.0,99.0 +1977,6,23,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,18.3,64,101800,465,1322,394,499,702,105,36000,63900,13500,1930,60,6.2,3,3,40.2,77777,9,999999999,329,0.0520,0,88,999.000,999.0,99.0 +1977,6,23,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,26.5,18.1,60,101800,738,1322,402,667,689,158,56400,68200,18200,3460,60,6.5,4,4,40.2,77777,9,999999999,320,0.0520,0,88,999.000,999.0,99.0 +1977,6,23,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,27.4,17.8,55,101800,974,1322,409,785,638,225,72600,64100,25200,6620,70,6.9,5,5,40.2,77777,9,999999999,309,0.0520,0,88,999.000,999.0,99.0 +1977,6,23,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,17.2,51,101800,1157,1322,417,777,545,250,76900,55300,28400,11710,70,7.2,6,6,40.2,910,9,999999999,309,0.0520,0,88,999.000,999.0,99.0 +1977,6,23,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,28.3,17.4,51,101800,1275,1322,422,861,521,340,91500,54600,38700,28980,60,7.5,7,7,40.2,910,9,999999999,309,0.0520,0,88,999.000,999.0,99.0 +1977,6,23,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,28.3,17.4,51,101700,1318,1322,422,850,472,391,92700,49400,43400,60230,60,7.9,7,7,40.2,910,9,999999999,309,0.0520,0,88,999.000,999.0,99.0 +1977,6,23,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,17.2,51,101700,1285,1322,429,607,187,440,68900,20000,49400,31680,50,8.2,8,8,40.2,910,9,999999999,309,0.0520,0,88,999.000,999.0,99.0 +1977,6,23,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,27.9,18.0,54,101700,1177,1322,428,480,276,271,58300,30100,31400,12480,60,7.9,8,8,40.2,1113,9,999999999,320,0.0520,0,88,999.000,999.0,99.0 +1977,6,23,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,27.6,18.5,57,101700,1002,1322,427,322,137,242,38800,14700,27700,8010,60,7.5,8,8,40.2,1317,9,999999999,329,0.0520,0,88,999.000,999.0,99.0 +1977,6,23,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,18.9,60,101700,772,1322,425,181,60,158,21300,6000,17800,5440,70,7.2,8,8,40.2,1520,9,999999999,329,0.0520,0,88,999.000,999.0,99.0 +1977,6,23,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,26.5,18.9,62,101700,502,1322,414,61,11,59,7000,1000,6600,1860,70,7.0,7,7,40.2,77777,9,999999999,329,0.0520,0,88,999.000,999.0,99.0 +1977,6,23,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,25.7,18.6,65,101700,213,1322,405,9,15,6,1000,1000,900,90,60,6.9,6,6,40.2,77777,9,999999999,329,0.0520,0,88,999.000,999.0,99.0 +1977,6,23,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,18.3,67,101800,9,342,397,0,0,0,0,0,0,0,60,6.7,5,5,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1977,6,23,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.8,18.3,67,101800,0,0,393,0,0,0,0,0,0,0,60,6.2,4,4,24.1,77777,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1977,6,23,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.6,18.2,66,101800,0,0,392,0,0,0,0,0,0,0,60,5.7,4,4,24.1,77777,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1977,6,23,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,17.8,66,101800,0,0,387,0,0,0,0,0,0,0,60,5.2,3,3,24.1,77777,9,999999999,309,0.0400,0,88,999.000,999.0,99.0 +1977,6,23,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.2,18.0,67,101800,0,0,383,0,0,0,0,0,0,0,60,5.0,2,2,24.1,77777,9,999999999,309,0.0400,0,88,999.000,999.0,99.0 +1977,6,24,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.1,18.0,68,101700,0,0,382,0,0,0,0,0,0,0,70,4.8,2,2,24.1,77777,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1977,6,24,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,17.8,69,101700,0,0,376,0,0,0,0,0,0,0,70,4.6,1,1,24.1,77777,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1977,6,24,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,23.9,18.0,69,101700,0,0,381,0,0,0,0,0,0,0,60,4.1,2,2,24.1,77777,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1977,6,24,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,23.9,18.0,69,101700,0,0,381,0,0,0,0,0,0,0,50,3.6,2,2,24.1,77777,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1977,6,24,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,17.8,69,101700,0,0,385,2,3,1,0,0,0,0,40,3.1,3,3,24.1,77777,9,999999999,320,0.0630,0,88,999.000,999.0,99.0 +1977,6,24,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.6,18.4,68,101700,2,165,392,71,264,36,0,0,0,0,30,3.6,4,4,24.1,77777,9,999999999,329,0.0630,0,88,999.000,999.0,99.0 +1977,6,24,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,25.4,19.1,68,101700,174,1322,404,219,251,130,16600,15000,14600,2750,30,4.1,6,6,24.1,77777,9,999999999,340,0.0630,0,88,999.000,999.0,99.0 +1977,6,24,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,19.4,67,101800,464,1322,413,372,172,275,36500,16800,30600,5840,20,4.6,7,7,40.2,1370,9,999999999,350,0.0630,0,88,999.000,999.0,99.0 +1977,6,24,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,26.8,19.8,65,101800,737,1322,417,539,313,308,50700,32800,32300,7820,30,5.1,7,7,40.2,1370,9,999999999,350,0.0630,0,88,999.000,999.0,99.0 +1977,6,24,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,27.6,20.0,63,101700,974,1322,429,608,221,415,62500,23300,45300,13270,50,5.7,8,8,40.2,1370,9,999999999,359,0.0630,0,88,999.000,999.0,99.0 +1977,6,24,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,20.0,61,101700,1157,1322,433,681,316,375,71600,34300,41400,16750,60,6.2,8,8,40.2,1370,9,999999999,359,0.0630,0,88,999.000,999.0,99.0 +1977,6,24,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,28.5,20.0,60,101700,1274,1322,434,582,104,478,63900,10800,53500,28610,60,7.4,8,8,40.2,1320,9,999999999,359,0.0630,0,88,999.000,999.0,99.0 +1977,6,24,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,28.7,19.8,58,101700,1318,1322,435,599,221,383,67400,24100,43300,48630,70,8.6,8,8,40.2,1270,9,999999999,350,0.0630,0,88,999.000,999.0,99.0 +1977,6,24,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,19.4,57,101700,1285,1322,435,601,290,343,70100,31600,39300,27060,70,9.8,8,8,40.2,1220,9,999999999,350,0.0630,0,88,999.000,999.0,99.0 +1977,6,24,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,28.9,19.4,56,101600,1177,1322,435,539,212,378,62300,23100,41800,17960,70,9.5,8,8,40.2,1270,9,999999999,350,0.0630,0,88,999.000,999.0,99.0 +1977,6,24,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,28.9,19.2,56,101600,1002,1322,428,476,457,210,61100,47700,24800,6640,70,9.1,7,7,40.2,1320,9,999999999,340,0.0630,0,88,999.000,999.0,99.0 +1977,6,24,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,18.9,55,101600,773,1322,428,256,295,144,34700,30300,17000,3240,70,8.8,7,7,40.2,1370,9,999999999,340,0.0630,0,88,999.000,999.0,99.0 +1977,6,24,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,27.8,18.9,58,101600,503,1322,417,80,108,62,11700,10600,7700,1130,70,7.8,6,6,40.2,77777,9,999999999,329,0.0630,0,88,999.000,999.0,99.0 +1977,6,24,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,26.7,18.6,61,101700,214,1322,410,8,6,8,1000,400,900,230,80,6.7,6,6,40.2,77777,9,999999999,329,0.0630,0,88,999.000,999.0,99.0 +1977,6,24,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,18.3,64,101700,9,342,400,0,0,0,0,0,0,0,80,5.7,5,5,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1977,6,24,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,25.4,18.5,65,101700,0,0,399,0,0,0,0,0,0,0,80,6.0,5,5,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1977,6,24,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,25.2,18.5,66,101700,0,0,395,0,0,0,0,0,0,0,70,6.4,4,4,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1977,6,24,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,18.3,67,101800,0,0,394,0,0,0,0,0,0,0,70,6.7,4,4,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1977,6,24,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.6,18.3,68,101700,0,0,392,0,0,0,0,0,0,0,60,6.5,4,4,24.1,77777,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1977,6,25,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.3,18.2,68,101700,0,0,390,0,0,0,0,0,0,0,60,6.4,4,4,24.1,77777,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1977,6,25,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,17.8,69,101700,0,0,388,0,0,0,0,0,0,0,50,6.2,4,4,24.1,77777,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1977,6,25,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.1,18.2,69,101600,0,0,396,0,0,0,0,0,0,0,50,5.2,6,6,24.1,77777,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1977,6,25,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.2,18.4,69,101600,0,0,401,0,0,0,0,0,0,0,50,4.1,8,7,24.1,77777,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1977,6,25,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,18.3,69,101600,0,0,417,1,1,1,0,0,0,0,50,3.1,10,9,24.1,850,9,999999999,329,0.0310,0,88,999.000,999.0,99.0 +1977,6,25,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.6,18.9,71,101600,2,165,419,52,15,50,0,0,0,0,40,4.0,10,9,24.1,973,9,999999999,340,0.0310,0,88,999.000,999.0,99.0 +1977,6,25,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.8,19.7,72,101700,173,1322,421,202,75,176,20000,6000,19300,1650,40,4.8,9,9,24.1,1097,9,999999999,350,0.0310,0,88,999.000,999.0,99.0 +1977,6,25,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,20.0,74,101700,463,1322,423,228,32,209,23900,2800,22900,6200,30,5.7,9,9,40.2,1220,9,999999999,359,0.0310,0,88,999.000,999.0,99.0 +1977,6,25,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,26.5,19.5,66,101700,736,1322,422,583,409,281,53800,43000,29900,6980,40,6.2,8,8,40.2,77777,9,999999999,350,0.0310,0,88,999.000,999.0,99.0 +1977,6,25,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,27.9,18.7,57,101700,973,1322,417,880,773,202,81100,78200,23500,6020,60,6.7,6,6,40.2,77777,9,999999999,329,0.0310,0,88,999.000,999.0,99.0 +1977,6,25,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,17.8,49,101700,1156,1322,420,931,728,227,92000,74200,26900,10680,70,7.2,5,5,40.2,77777,9,999999999,309,0.0310,0,88,999.000,999.0,99.0 +1977,6,25,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,29.6,18.2,49,101700,1274,1322,422,929,678,251,96800,69200,29900,20800,70,7.7,5,5,40.2,77777,9,999999999,320,0.0310,0,88,999.000,999.0,99.0 +1977,6,25,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,29.8,18.3,50,101600,1318,1322,423,675,420,266,76600,44200,32500,40760,70,8.3,5,5,40.2,77777,9,999999999,320,0.0310,0,88,999.000,999.0,99.0 +1977,6,25,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,18.3,50,101600,1285,1322,424,815,645,240,93200,66000,28900,21780,70,8.8,5,5,40.2,77777,9,999999999,329,0.0310,0,88,999.000,999.0,99.0 +1977,6,25,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,29.1,18.1,51,101500,1177,1322,419,610,611,146,74100,62000,18700,7130,70,8.6,5,5,40.2,77777,9,999999999,320,0.0310,0,88,999.000,999.0,99.0 +1977,6,25,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,28.1,17.7,53,101500,1003,1322,410,515,651,135,66500,65600,16600,4080,60,8.4,4,4,40.2,77777,9,999999999,309,0.0310,0,88,999.000,999.0,99.0 +1977,6,25,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,17.2,54,101400,773,1322,404,321,648,75,49300,65200,11100,1890,60,8.2,4,4,40.2,77777,9,999999999,300,0.0310,0,88,999.000,999.0,99.0 +1977,6,25,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,26.5,17.7,58,101500,504,1322,401,85,134,64,13100,13200,8000,1170,60,7.4,4,4,40.2,77777,9,999999999,309,0.0310,0,88,999.000,999.0,99.0 +1977,6,25,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,25.7,18.1,63,101500,215,1322,398,11,29,7,1500,2000,1200,110,60,6.5,4,4,40.2,77777,9,999999999,320,0.0310,0,88,999.000,999.0,99.0 +1977,6,25,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,18.3,67,101500,9,341,394,0,0,0,0,0,0,0,60,5.7,4,4,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1977,6,25,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.8,18.5,68,101600,0,0,393,0,0,0,0,0,0,0,60,5.2,4,4,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1977,6,25,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.6,18.5,68,101600,0,0,395,0,0,0,0,0,0,0,70,4.6,5,5,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1977,6,25,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,18.3,69,101700,0,0,394,0,0,0,0,0,0,0,70,4.1,5,5,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1977,6,25,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.2,18.7,71,101600,0,0,397,0,0,0,0,0,0,0,30,3.4,6,6,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1977,6,26,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.1,18.9,72,101600,0,0,401,0,0,0,0,0,0,0,350,2.8,7,7,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1977,6,26,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,18.9,74,101600,0,0,406,0,0,0,0,0,0,0,310,2.1,8,8,24.1,1370,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1977,6,26,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,23.7,19.1,75,101600,0,0,399,0,0,0,0,0,0,0,330,2.4,7,7,24.1,77777,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1977,6,26,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,23.5,19.1,75,101500,0,0,394,0,0,0,0,0,0,0,360,2.8,6,6,24.1,77777,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1977,6,26,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,18.9,76,101500,0,0,389,4,10,3,0,0,0,0,20,3.1,5,5,24.1,77777,9,999999999,340,0.0260,0,88,999.000,999.0,99.0 +1977,6,26,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.1,19.1,74,101600,2,143,393,64,136,47,0,0,0,0,10,2.8,5,5,24.1,77777,9,999999999,340,0.0260,0,88,999.000,999.0,99.0 +1977,6,26,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.8,19.5,71,101600,171,1322,395,269,473,103,15400,27300,11900,2160,360,2.4,4,4,24.1,77777,9,999999999,340,0.0260,0,88,999.000,999.0,99.0 +1977,6,26,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,19.4,69,101700,462,1322,399,508,682,127,36800,61100,15400,2210,350,2.1,4,4,40.2,77777,9,999999999,350,0.0260,0,88,999.000,999.0,99.0 +1977,6,26,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,26.7,19.4,64,101700,735,1322,405,514,436,192,46000,44300,21300,4300,10,3.1,4,4,40.2,77777,9,999999999,350,0.0260,0,88,999.000,999.0,99.0 +1977,6,26,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,27.8,19.3,60,101600,972,1322,410,723,538,251,69400,56000,28200,7600,20,4.2,4,4,40.2,77777,9,999999999,340,0.0260,0,88,999.000,999.0,99.0 +1977,6,26,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,18.9,55,101600,1155,1322,416,901,699,225,89100,71300,26600,10570,40,5.2,4,4,40.2,77777,9,999999999,340,0.0260,0,88,999.000,999.0,99.0 +1977,6,26,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,29.5,18.7,52,101600,1273,1322,419,944,798,147,93800,80000,16600,9580,40,5.7,4,4,40.2,77777,9,999999999,329,0.0260,0,88,999.000,999.0,99.0 +1977,6,26,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,30.0,18.4,49,101500,1318,1322,418,951,798,174,103900,80900,23100,25140,40,6.2,3,3,40.2,77777,9,999999999,320,0.0260,0,88,999.000,999.0,99.0 +1977,6,26,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,17.8,46,101500,1285,1322,421,863,781,166,99300,79200,22100,14480,40,6.7,3,3,40.2,77777,9,999999999,309,0.0260,0,88,999.000,999.0,99.0 +1977,6,26,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,30.2,18.4,48,101500,1178,1322,419,714,732,158,86300,74100,20100,7620,50,5.7,3,3,40.2,77777,9,999999999,320,0.0260,0,88,999.000,999.0,99.0 +1977,6,26,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,29.8,18.7,51,101400,1004,1322,417,552,747,115,73400,75800,15700,3640,70,4.6,3,3,40.2,77777,9,999999999,329,0.0260,0,88,999.000,999.0,99.0 +1977,6,26,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,18.9,53,101400,774,1322,415,274,494,85,40900,50400,11300,2090,80,3.6,3,3,40.2,77777,9,999999999,329,0.0260,0,88,999.000,999.0,99.0 +1977,6,26,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,27.9,18.9,58,101500,505,1322,403,106,430,37,22300,41300,6500,900,70,4.1,2,2,40.2,77777,9,999999999,329,0.0260,0,88,999.000,999.0,99.0 +1977,6,26,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,26.5,18.6,62,101500,216,1322,395,16,56,7,1900,4200,1200,150,70,4.7,2,2,40.2,77777,9,999999999,329,0.0260,0,88,999.000,999.0,99.0 +1977,6,26,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,18.3,67,101600,9,363,382,0,0,0,0,0,0,0,60,5.2,1,1,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1977,6,26,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.8,18.5,68,101600,0,0,381,0,0,0,0,0,0,0,40,4.3,1,1,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1977,6,26,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.6,18.5,68,101600,0,0,380,0,0,0,0,0,0,0,10,3.5,1,1,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1977,6,26,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,18.3,69,101600,0,0,379,0,0,0,0,0,0,0,350,2.6,1,1,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1977,6,26,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.2,18.7,71,101600,0,0,378,0,0,0,0,0,0,0,10,2.6,1,1,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1977,6,27,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.1,18.9,72,101600,0,0,378,0,0,0,0,0,0,0,40,2.6,1,1,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1977,6,27,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,18.9,74,101500,0,0,377,0,0,0,0,0,0,0,60,2.6,1,1,24.1,77777,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1977,6,27,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,23.7,19.1,75,101500,0,0,376,0,0,0,0,0,0,0,50,2.8,1,1,24.1,77777,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1977,6,27,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,23.5,19.1,75,101500,0,0,375,0,0,0,0,0,0,0,50,2.9,1,1,24.1,77777,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1977,6,27,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,18.9,76,101500,0,0,374,6,29,1,0,0,0,0,40,3.1,1,1,24.1,77777,9,999999999,340,0.0250,0,88,999.000,999.0,99.0 +1977,6,27,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.1,19.1,74,101500,2,143,378,81,460,21,0,0,0,0,40,2.9,1,1,24.1,77777,9,999999999,340,0.0250,0,88,999.000,999.0,99.0 +1977,6,27,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.8,19.5,71,101600,170,1322,382,281,710,32,12900,50500,6400,440,50,2.8,1,1,24.1,77777,9,999999999,340,0.0250,0,88,999.000,999.0,99.0 +1977,6,27,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,19.4,69,101600,460,1322,386,499,817,43,34700,75700,8300,1070,50,2.6,1,1,40.2,77777,9,999999999,350,0.0250,0,88,999.000,999.0,99.0 +1977,6,27,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,26.5,20.0,67,101600,734,1322,397,675,811,77,55200,79700,10800,1720,80,4.3,2,2,40.2,77777,9,999999999,359,0.0250,0,88,999.000,999.0,99.0 +1977,6,27,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,27.4,20.4,65,101600,971,1322,406,841,832,111,74800,83000,13700,2720,120,6.0,3,3,40.2,77777,9,999999999,359,0.0250,0,88,999.000,999.0,99.0 +1977,6,27,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,20.6,63,101600,1155,1322,415,891,627,285,87200,63100,32000,13090,150,7.7,4,4,40.2,77777,9,999999999,370,0.0250,0,88,999.000,999.0,99.0 +1977,6,27,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,28.3,20.8,63,101600,1273,1322,418,920,690,230,96300,70700,28100,19050,160,7.7,5,5,40.2,77777,9,999999999,370,0.0250,0,88,999.000,999.0,99.0 +1977,6,27,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,28.3,20.8,63,101500,1317,1322,422,873,660,230,96000,67800,28300,34500,160,7.7,6,6,40.2,77777,9,999999999,370,0.0250,0,88,999.000,999.0,99.0 +1977,6,27,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,20.6,63,101500,1285,1322,427,727,396,374,81700,41400,41400,34980,170,7.7,7,7,40.2,1370,9,999999999,370,0.0250,0,88,999.000,999.0,99.0 +1977,6,27,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,28.1,20.4,62,101400,1178,1322,425,442,193,295,52400,21000,33500,13770,130,7.0,7,7,40.2,1420,9,999999999,359,0.0250,0,88,999.000,999.0,99.0 +1977,6,27,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,28.0,19.9,62,101400,1004,1322,424,454,374,234,56300,39000,26600,7480,80,6.4,7,7,40.2,1470,9,999999999,359,0.0250,0,88,999.000,999.0,99.0 +1977,6,27,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,19.4,61,101400,775,1322,422,232,175,165,29700,18600,18700,3800,40,5.7,7,7,40.2,1520,9,999999999,350,0.0250,0,88,999.000,999.0,99.0 +1977,6,27,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,27.1,19.6,64,101400,506,1322,414,103,164,77,15600,16100,9500,1440,30,5.3,6,6,40.2,77777,9,999999999,350,0.0250,0,88,999.000,999.0,99.0 +1977,6,27,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,26.3,19.5,66,101500,216,1322,406,13,21,10,1600,1400,1400,160,30,5.0,5,5,40.2,77777,9,999999999,350,0.0250,0,88,999.000,999.0,99.0 +1977,6,27,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,19.4,69,101500,9,363,399,0,0,0,0,0,0,0,20,4.6,4,4,24.1,77777,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1977,6,27,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,25.4,19.6,70,101500,0,0,398,0,0,0,0,0,0,0,30,4.6,4,4,24.1,77777,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1977,6,27,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,25.2,19.6,70,101600,0,0,394,0,0,0,0,0,0,0,50,4.6,3,3,24.1,77777,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1977,6,27,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,19.4,71,101600,0,0,392,0,0,0,0,0,0,0,60,4.6,3,3,24.1,77777,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1977,6,27,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.6,19.6,73,101600,0,0,390,0,0,0,0,0,0,0,70,3.9,3,3,24.1,77777,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1977,6,28,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.3,19.6,74,101500,0,0,385,0,0,0,0,0,0,0,70,3.3,2,2,24.1,77777,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1977,6,28,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,19.4,76,101500,0,0,383,0,0,0,0,0,0,0,80,2.6,2,2,24.1,77777,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1977,6,28,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,23.2,19.4,79,101500,0,0,379,0,0,0,0,0,0,0,50,1.7,2,2,24.1,77777,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1977,6,28,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,22.4,19.3,81,101400,0,0,370,0,0,0,0,0,0,0,30,0.9,1,1,24.1,77777,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1977,6,28,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,18.9,84,101400,0,0,366,6,16,2,0,0,0,0,0,0.0,1,1,24.1,77777,9,999999999,340,0.0340,0,88,999.000,999.0,99.0 +1977,6,28,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,23.4,19.3,78,101500,1,143,375,80,351,35,0,0,0,0,360,0.5,1,1,24.1,77777,9,999999999,350,0.0340,0,88,999.000,999.0,99.0 +1977,6,28,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,25.0,19.9,73,101500,169,1322,389,275,633,54,13200,37800,8400,850,10,1.0,2,2,24.1,77777,9,999999999,350,0.0340,0,88,999.000,999.0,99.0 +1977,6,28,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,20.0,67,101500,459,1322,398,382,424,146,30000,39000,16400,2870,10,1.5,2,2,40.2,77777,9,999999999,359,0.0340,0,88,999.000,999.0,99.0 +1977,6,28,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,27.6,20.0,63,101500,733,1322,407,706,742,159,59200,73300,18500,3460,30,3.2,3,3,40.2,77777,9,999999999,359,0.0340,0,88,999.000,999.0,99.0 +1977,6,28,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,28.5,19.8,59,101500,970,1322,415,805,681,208,74300,68700,23700,6140,40,5.0,4,4,40.2,77777,9,999999999,350,0.0340,0,88,999.000,999.0,99.0 +1977,6,28,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,19.4,55,101500,1154,1322,423,893,634,282,87600,63800,31700,12940,60,6.7,5,5,40.2,77777,9,999999999,350,0.0340,0,88,999.000,999.0,99.0 +1977,6,28,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,28.9,19.8,58,101500,1273,1322,424,890,656,234,93100,67200,28300,19330,10,6.0,6,6,40.2,77777,9,999999999,350,0.0340,0,88,999.000,999.0,99.0 +1977,6,28,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,28.3,20.0,60,101500,1317,1322,421,762,497,277,86100,52200,33900,42540,330,5.3,7,6,40.2,77777,9,999999999,359,0.0340,0,88,999.000,999.0,99.0 +1977,6,28,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,20.0,63,101500,1285,1322,423,626,261,393,71900,28400,44200,31500,280,4.6,8,7,40.2,1370,9,999999999,359,0.0340,0,88,999.000,999.0,99.0 +1977,6,28,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,27.6,20.0,63,101400,1179,1322,422,517,288,298,62200,31400,34100,13940,320,4.6,8,7,40.2,2133,9,999999999,359,0.0340,0,88,999.000,999.0,99.0 +1977,6,28,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,27.4,19.7,63,101400,1005,1322,420,308,198,192,38800,21500,22400,5790,10,4.6,7,7,40.2,2897,9,999999999,350,0.0340,0,88,999.000,999.0,99.0 +1977,6,28,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,19.4,63,101400,775,1322,419,249,307,131,34500,31500,16000,2940,50,4.6,7,7,40.2,3660,9,999999999,350,0.0340,0,88,999.000,999.0,99.0 +1977,6,28,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,26.7,19.8,66,101400,506,1322,408,76,103,59,11200,10100,7400,1070,50,4.6,5,5,40.2,77777,9,999999999,350,0.0340,0,88,999.000,999.0,99.0 +1977,6,28,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,26.1,19.9,68,101500,217,1322,402,11,24,7,1300,1600,1100,110,60,4.6,4,4,40.2,77777,9,999999999,350,0.0340,0,88,999.000,999.0,99.0 +1977,6,28,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,20.0,71,101500,10,363,392,0,0,0,0,0,0,0,60,4.6,2,2,24.1,77777,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1977,6,28,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,25.2,20.2,73,101600,0,0,391,0,0,0,0,0,0,0,60,4.3,2,2,24.1,77777,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1977,6,28,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.8,20.2,74,101600,0,0,383,0,0,0,0,0,0,0,50,3.9,1,1,24.1,77777,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1977,6,28,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,20.0,76,101600,0,0,381,0,0,0,0,0,0,0,50,3.6,1,1,24.1,77777,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1977,6,28,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.0,20.0,77,101600,0,0,379,0,0,0,0,0,0,0,50,3.1,1,1,24.1,77777,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1977,6,29,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,23.7,19.8,78,101600,0,0,377,0,0,0,0,0,0,0,40,2.6,2,1,24.1,77777,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1977,6,29,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,19.4,79,101600,0,0,375,0,0,0,0,0,0,0,40,2.1,2,1,24.1,77777,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1977,6,29,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,22.6,19.6,83,101600,0,0,371,0,0,0,0,0,0,0,10,2.3,2,1,24.1,77777,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1977,6,29,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,21.8,19.6,86,101500,0,0,367,0,0,0,0,0,0,0,350,2.4,3,1,24.1,77777,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1977,6,29,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,19.4,90,101500,0,0,364,6,20,2,0,0,0,0,320,2.6,3,1,24.1,77777,9,999999999,350,0.0270,0,88,999.000,999.0,99.0 +1977,6,29,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,22.8,19.5,82,101500,1,143,372,75,388,26,0,0,0,0,350,2.6,3,1,24.1,77777,9,999999999,350,0.0270,0,88,999.000,999.0,99.0 +1977,6,29,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.4,19.6,75,101600,167,1322,386,286,656,57,13700,38700,8800,870,20,2.6,2,2,24.1,77777,9,999999999,350,0.0270,0,88,999.000,999.0,99.0 +1977,6,29,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,19.4,67,101600,458,1322,394,480,729,74,34200,67200,10900,1440,50,2.6,2,2,40.2,77777,9,999999999,350,0.0270,0,88,999.000,999.0,99.0 +1977,6,29,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,27.6,19.6,62,101600,732,1322,406,672,686,167,56500,67600,19000,3590,60,4.7,3,3,40.2,77777,9,999999999,350,0.0270,0,88,999.000,999.0,99.0 +1977,6,29,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,29.1,19.6,57,101600,969,1322,415,843,760,178,78100,77300,21200,5350,70,6.7,3,3,40.2,77777,9,999999999,350,0.0270,0,88,999.000,999.0,99.0 +1977,6,29,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,19.4,52,101600,1154,1322,426,756,506,267,77600,53000,31200,12600,80,8.8,4,4,40.2,77777,9,999999999,350,0.0270,0,88,999.000,999.0,99.0 +1977,6,29,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,30.6,19.4,51,101500,1272,1322,426,852,617,236,89200,63200,28300,19450,80,8.8,4,4,40.2,77777,9,999999999,350,0.0270,0,88,999.000,999.0,99.0 +1977,6,29,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,30.6,19.3,51,101500,1317,1322,426,839,599,256,91600,61200,30400,38380,70,8.8,5,4,40.2,77777,9,999999999,340,0.0270,0,88,999.000,999.0,99.0 +1977,6,29,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,18.9,50,101400,1285,1322,425,731,558,233,83600,57200,27800,21370,70,8.8,5,4,40.2,77777,9,999999999,340,0.0270,0,88,999.000,999.0,99.0 +1977,6,29,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,29.7,19.1,53,101400,1179,1322,421,701,694,173,83600,69900,21000,8240,60,7.6,5,4,40.2,77777,9,999999999,340,0.0270,0,88,999.000,999.0,99.0 +1977,6,29,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,28.7,19.0,55,101400,1005,1322,415,475,554,150,61700,56900,18200,4920,60,6.4,4,4,40.2,77777,9,999999999,340,0.0270,0,88,999.000,999.0,99.0 +1977,6,29,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,18.9,58,101300,776,1322,410,244,412,86,35800,42100,11000,2120,50,5.2,4,4,40.2,77777,9,999999999,329,0.0270,0,88,999.000,999.0,99.0 +1977,6,29,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,27.1,19.4,62,101400,507,1322,404,117,463,41,24000,44400,6900,970,70,4.8,3,3,40.2,77777,9,999999999,340,0.0270,0,88,999.000,999.0,99.0 +1977,6,29,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,26.3,19.8,67,101400,217,1322,400,14,34,9,1800,2400,1400,150,80,4.5,3,3,40.2,77777,9,999999999,350,0.0270,0,88,999.000,999.0,99.0 +1977,6,29,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,20.0,71,101500,10,363,392,0,0,0,0,0,0,0,100,4.1,2,2,24.1,77777,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1977,6,29,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,25.4,20.0,71,101500,0,0,391,0,0,0,0,0,0,0,90,4.1,2,2,24.1,77777,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1977,6,29,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,25.2,19.8,71,101500,0,0,394,0,0,0,0,0,0,0,70,4.1,3,3,24.1,77777,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1977,6,29,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,19.4,71,101600,0,0,392,0,0,0,0,0,0,0,60,4.1,3,3,24.1,77777,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1977,6,29,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.8,19.8,73,101500,0,0,398,0,0,0,0,0,0,0,60,3.6,5,5,24.1,77777,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1977,6,30,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.6,20.0,74,101500,0,0,405,0,0,0,0,0,0,0,60,3.1,7,7,24.1,77777,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1977,6,30,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,20.0,76,101400,0,0,419,0,0,0,0,0,0,0,60,2.6,9,9,24.1,3660,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1977,6,30,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.4,19.8,74,101400,0,0,404,0,0,0,0,0,0,0,60,3.3,7,7,24.1,77777,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1977,6,30,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.4,19.5,73,101400,0,0,399,0,0,0,0,0,0,0,60,3.9,6,6,24.1,77777,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1977,6,30,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,18.9,71,101400,0,0,392,6,18,2,0,0,0,0,60,4.6,4,4,24.1,77777,9,999999999,329,0.0290,0,88,999.000,999.0,99.0 +1977,6,30,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,25.0,19.0,69,101400,1,121,392,72,273,37,0,0,0,0,60,5.0,3,3,24.1,77777,9,999999999,340,0.0290,0,88,999.000,999.0,99.0 +1977,6,30,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,25.5,19.1,67,101400,166,1321,395,201,351,79,11900,20100,9400,1570,60,5.3,3,3,24.1,77777,9,999999999,340,0.0290,0,88,999.000,999.0,99.0 +1977,6,30,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,18.9,65,101500,456,1321,394,467,676,91,33500,61700,12100,1710,60,5.7,2,2,40.2,77777,9,999999999,340,0.0290,0,88,999.000,999.0,99.0 +1977,6,30,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,27.4,18.7,59,101500,731,1321,404,651,701,136,55000,69800,16300,3030,60,6.7,3,3,40.2,77777,9,999999999,329,0.0290,0,88,999.000,999.0,99.0 +1977,6,30,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,28.7,18.4,54,101400,968,1321,414,807,709,186,74700,72000,21800,5550,70,7.8,4,4,40.2,77777,9,999999999,329,0.0290,0,88,999.000,999.0,99.0 +1977,6,30,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,17.8,48,101400,1153,1321,424,741,481,277,76000,50400,32000,13070,70,8.8,5,5,40.2,77777,9,999999999,320,0.0290,0,88,999.000,999.0,99.0 +1977,6,30,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,29.8,17.8,48,101400,1272,1321,423,937,664,273,97000,67500,31900,22310,70,8.3,5,5,40.2,77777,9,999999999,309,0.0290,0,88,999.000,999.0,99.0 +1977,6,30,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,29.6,17.6,48,101400,1317,1321,418,1039,880,181,113000,89000,24000,26180,60,7.7,4,4,40.2,77777,9,999999999,309,0.0290,0,88,999.000,999.0,99.0 +1977,6,30,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,17.2,48,101400,1286,1321,416,869,753,196,97900,75800,24000,16960,60,7.2,4,4,40.2,77777,9,999999999,300,0.0290,0,88,999.000,999.0,99.0 +1977,6,30,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,29.2,17.8,50,101300,1179,1321,413,675,740,111,79800,74200,13400,4780,70,7.0,3,3,40.2,77777,9,999999999,309,0.0290,0,88,999.000,999.0,99.0 +1977,6,30,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,29.1,18.1,51,101300,1006,1321,409,522,695,114,69300,70600,15500,3630,70,6.9,2,2,40.2,77777,9,999999999,320,0.0290,0,88,999.000,999.0,99.0 +1977,6,30,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,18.3,53,101300,776,1321,402,302,613,67,47000,61900,10500,1740,80,6.7,1,1,40.2,77777,9,999999999,329,0.0290,0,88,999.000,999.0,99.0 +1977,6,30,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,27.6,18.5,58,101300,507,1321,396,108,457,33,23400,44100,6400,820,70,6.4,1,1,40.2,77777,9,999999999,329,0.0290,0,88,999.000,999.0,99.0 +1977,6,30,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,26.3,18.4,62,101300,218,1321,389,13,56,6,1800,4200,1100,130,70,6.0,1,1,40.2,77777,9,999999999,329,0.0290,0,88,999.000,999.0,99.0 +1977,6,30,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,18.3,67,101400,10,363,382,0,0,0,0,0,0,0,60,5.7,1,1,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1977,6,30,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.8,18.5,68,101400,0,0,381,0,0,0,0,0,0,0,50,4.8,1,1,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1977,6,30,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.7,18.5,68,101500,0,0,374,0,0,0,0,0,0,0,50,4.8,0,0,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1977,6,30,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.5,18.4,69,101500,0,0,372,0,0,0,0,0,0,0,40,4.7,0,0,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1977,6,30,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.4,18.4,73,101500,0,0,372,0,0,0,0,0,0,0,10,4.7,0,0,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1989,7,1,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.3,18.4,76,101700,0,0,387,0,0,0,0,0,0,0,70,4.7,3,3,24.1,77777,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1989,7,1,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.2,18.4,71,101700,0,0,383,0,0,0,0,0,0,0,60,4.7,2,2,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1989,7,1,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.0,18.3,71,101700,0,0,382,0,0,0,0,0,0,0,70,4.6,2,2,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1989,7,1,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,18.3,71,101700,0,0,376,0,0,0,0,0,0,0,70,4.6,1,1,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1989,7,1,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,18.3,74,101700,0,0,382,2,4,1,0,0,0,0,50,3.6,3,3,24.1,77777,9,999999999,329,0.0590,0,88,999.000,999.0,99.0 +1989,7,1,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,17.8,69,101700,1,121,381,74,261,41,0,0,0,0,60,3.6,2,2,32.2,77777,9,999999999,320,0.0590,0,88,999.000,999.0,99.0 +1989,7,1,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,17.8,67,101700,164,1321,383,275,589,70,13800,33200,9600,970,80,4.1,2,2,32.2,77777,9,999999999,320,0.0590,0,88,999.000,999.0,99.0 +1989,7,1,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,18.9,60,101800,455,1321,399,507,780,74,34800,71200,10300,1340,70,4.1,2,2,40.2,77777,9,999999999,329,0.0590,0,88,999.000,999.0,99.0 +1989,7,1,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,18.3,55,101800,729,1321,405,678,755,123,57000,75500,15300,2780,50,4.6,2,2,40.2,77777,9,999999999,329,0.0590,0,88,999.000,999.0,99.0 +1989,7,1,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,18.3,50,101800,967,1321,418,603,441,217,58800,45900,25000,6450,50,5.2,3,3,40.2,77777,9,999999999,329,0.0590,0,88,999.000,999.0,99.0 +1989,7,1,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,18.3,47,101800,1152,1321,424,948,776,199,94100,79600,24600,9340,70,6.2,3,3,40.2,77777,9,999999999,329,0.0590,0,88,999.000,999.0,99.0 +1989,7,1,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,17.2,42,101700,1272,1321,426,927,710,217,97300,72900,27000,17870,70,6.7,3,3,40.2,77777,9,999999999,309,0.0590,0,88,999.000,999.0,99.0 +1989,7,1,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,16.7,41,101700,1317,1321,421,1020,924,120,107300,92800,14600,15080,50,6.7,2,2,40.2,77777,9,999999999,300,0.0590,0,88,999.000,999.0,99.0 +1989,7,1,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,16.7,41,101600,1286,1321,421,815,731,161,94000,74200,21500,14260,50,7.7,2,2,40.2,77777,9,999999999,300,0.0590,0,88,999.000,999.0,99.0 +1989,7,1,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,17.2,43,101600,1180,1321,418,642,605,180,78200,62400,22300,9380,60,6.7,2,2,40.2,77777,9,999999999,300,0.0590,0,88,999.000,999.0,99.0 +1989,7,1,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,16.7,43,101600,1006,1321,415,485,562,155,62800,57700,18700,5080,50,6.7,2,2,40.2,77777,9,999999999,290,0.0590,0,88,999.000,999.0,99.0 +1989,7,1,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,17.2,46,101600,777,1321,412,293,516,95,43200,52500,12200,2320,80,4.1,2,2,40.2,77777,9,999999999,300,0.0590,0,88,999.000,999.0,99.0 +1989,7,1,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,18.3,55,101600,508,1321,405,105,369,44,20400,35600,6700,930,80,5.7,2,2,40.2,77777,9,999999999,329,0.0590,0,88,999.000,999.0,99.0 +1989,7,1,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,18.3,60,101600,218,1321,396,10,30,6,1400,2100,1100,100,50,5.7,2,2,32.2,77777,9,999999999,329,0.0590,0,88,999.000,999.0,99.0 +1989,7,1,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,17.8,62,101700,10,363,384,0,0,0,0,0,0,0,50,5.2,1,1,24.1,77777,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1989,7,1,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,17.8,64,101700,0,0,387,0,0,0,0,0,0,0,50,4.6,2,2,24.1,77777,9,999999999,309,0.0400,0,88,999.000,999.0,99.0 +1989,7,1,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,18.9,69,101800,0,0,388,0,0,0,0,0,0,0,50,4.1,2,2,24.1,77777,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1989,7,1,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,18.9,67,101800,0,0,391,0,0,0,0,0,0,0,60,6.2,2,2,24.1,77777,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1989,7,1,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,18.9,69,101800,0,0,392,0,0,0,0,0,0,0,60,4.6,3,3,24.1,77777,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1989,7,2,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,19.4,74,101700,0,0,389,0,0,0,0,0,0,0,70,4.6,3,3,24.1,77777,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1989,7,2,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,19.4,74,101700,0,0,392,0,0,0,0,0,0,0,50,4.1,4,4,24.1,77777,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1989,7,2,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,18.9,71,101600,0,0,389,0,0,0,0,0,0,0,60,4.1,3,3,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1989,7,2,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,18.9,71,101600,0,0,389,0,0,0,0,0,0,0,60,4.1,3,3,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1989,7,2,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,18.9,71,101600,0,0,392,3,6,2,0,0,0,0,90,3.6,4,4,24.1,77777,9,999999999,329,0.0210,0,88,999.000,999.0,99.0 +1989,7,2,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,18.9,71,101700,1,121,398,53,37,48,0,0,0,0,70,4.1,6,6,32.2,1370,9,999999999,340,0.0210,0,88,999.000,999.0,99.0 +1989,7,2,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,20.0,76,101700,163,1321,400,158,110,121,14600,8200,13500,1780,80,2.1,6,6,32.2,1370,9,999999999,359,0.0210,0,88,999.000,999.0,99.0 +1989,7,2,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,18.9,67,101800,454,1321,395,461,638,107,33200,57500,13400,1930,70,3.1,3,3,32.2,77777,9,999999999,340,0.0210,0,88,999.000,999.0,99.0 +1989,7,2,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,19.4,59,101800,728,1321,410,577,566,161,51000,57600,19200,3530,80,5.7,3,3,32.2,77777,9,999999999,350,0.0210,0,88,999.000,999.0,99.0 +1989,7,2,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,18.3,53,101800,966,1321,422,862,774,185,79500,78600,21900,5510,70,5.7,6,6,32.2,1370,9,999999999,329,0.0210,0,88,999.000,999.0,99.0 +1989,7,2,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,17.2,45,101800,1152,1321,423,938,769,196,93200,78900,24300,9190,70,5.2,4,4,32.2,77777,9,999999999,309,0.0210,0,88,999.000,999.0,99.0 +1989,7,2,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,17.2,43,101700,1271,1321,418,998,860,138,99100,86200,15900,9040,60,4.6,2,2,32.2,77777,9,999999999,300,0.0210,0,88,999.000,999.0,99.0 +1989,7,2,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,18.9,48,101700,1317,1321,425,960,817,162,105500,83100,22500,23660,80,7.2,3,3,32.2,77777,9,999999999,340,0.0210,0,88,999.000,999.0,99.0 +1989,7,2,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,18.3,47,101600,1286,1321,424,835,808,113,92900,81200,13700,8740,60,6.7,3,3,32.2,77777,9,999999999,329,0.0210,0,88,999.000,999.0,99.0 +1989,7,2,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,17.8,46,101600,1180,1321,421,712,716,166,85400,72300,20600,8020,60,5.7,3,3,32.2,77777,9,999999999,309,0.0210,0,88,999.000,999.0,99.0 +1989,7,2,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,17.2,45,101600,1007,1321,416,483,634,110,64200,64500,14900,3540,60,6.2,2,2,32.2,77777,9,999999999,309,0.0210,0,88,999.000,999.0,99.0 +1989,7,2,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,17.2,49,101600,778,1321,406,294,572,73,44700,57700,10700,1860,50,5.7,2,2,32.2,77777,9,999999999,300,0.0210,0,88,999.000,999.0,99.0 +1989,7,2,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,17.8,55,101600,509,1321,405,93,236,54,16600,22600,7900,980,50,6.7,3,3,32.2,77777,9,999999999,320,0.0210,0,88,999.000,999.0,99.0 +1989,7,2,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,18.9,63,101600,219,1321,397,15,60,7,2000,4500,1200,150,50,6.7,2,2,32.2,77777,9,999999999,340,0.0210,0,88,999.000,999.0,99.0 +1989,7,2,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,18.9,67,101700,10,363,391,0,0,0,0,0,0,0,50,5.7,2,2,24.1,77777,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1989,7,2,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,18.9,67,101700,0,0,391,0,0,0,0,0,0,0,70,5.7,2,2,24.1,77777,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1989,7,2,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,18.9,67,101800,0,0,416,0,0,0,0,0,0,0,60,5.2,8,8,24.1,1370,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1989,7,2,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,18.9,69,101800,0,0,388,0,0,0,0,0,0,0,50,6.2,2,2,24.1,77777,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1989,7,2,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,18.9,71,101800,0,0,389,0,0,0,0,0,0,0,60,3.1,3,3,24.1,77777,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1989,7,3,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,18.3,67,101800,0,0,391,0,0,0,0,0,0,0,50,4.6,3,3,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1989,7,3,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,18.3,69,101700,0,0,384,0,0,0,0,0,0,0,70,4.1,2,2,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1989,7,3,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,18.3,69,101700,0,0,384,0,0,0,0,0,0,0,60,4.1,2,2,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1989,7,3,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,20.0,79,101700,0,0,393,0,0,0,0,0,0,0,80,3.1,5,5,24.1,77777,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1989,7,3,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,18.9,71,101700,0,0,409,1,1,1,0,0,0,0,60,4.6,8,8,24.1,1370,9,999999999,340,0.0590,0,88,999.000,999.0,99.0 +1989,7,3,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,18.3,71,101700,1,99,391,69,155,50,0,0,0,0,50,2.6,5,5,32.2,77777,9,999999999,329,0.0590,0,88,999.000,999.0,99.0 +1989,7,3,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,18.3,64,101700,161,1321,400,216,305,110,14400,16300,12400,2690,50,6.2,5,5,32.2,77777,9,999999999,329,0.0590,0,88,999.000,999.0,99.0 +1989,7,3,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,18.9,60,101800,452,1321,399,473,662,106,33900,59700,13400,1920,60,4.1,2,2,32.2,77777,9,999999999,329,0.0590,0,88,999.000,999.0,99.0 +1989,7,3,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,18.3,55,101800,727,1321,405,680,739,137,57000,73500,16500,3040,60,6.7,2,2,32.2,77777,9,999999999,329,0.0590,0,88,999.000,999.0,99.0 +1989,7,3,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,18.3,57,101800,966,1321,409,645,477,228,62400,49700,26100,6780,60,7.2,4,4,32.2,77777,9,999999999,329,0.0590,0,88,999.000,999.0,99.0 +1989,7,3,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,18.3,47,101800,1151,1321,431,889,673,239,87500,68400,27800,11030,70,6.2,5,5,32.2,77777,9,999999999,329,0.0590,0,88,999.000,999.0,99.0 +1989,7,3,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,17.8,46,101800,1271,1321,427,722,350,373,79100,38100,42300,26930,60,6.7,5,5,32.2,77777,9,999999999,309,0.0590,0,88,999.000,999.0,99.0 +1989,7,3,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,17.8,45,101700,1317,1321,427,830,596,248,90600,61000,29600,37430,50,7.2,4,4,32.2,77777,9,999999999,320,0.0590,0,88,999.000,999.0,99.0 +1989,7,3,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,17.8,44,101700,1286,1321,427,831,705,200,96500,72700,25600,18610,50,7.2,3,3,32.2,77777,9,999999999,320,0.0590,0,88,999.000,999.0,99.0 +1989,7,3,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,17.8,45,101700,1181,1321,430,708,678,191,86100,69700,23700,9950,50,7.2,5,5,32.2,77777,9,999999999,320,0.0590,0,88,999.000,999.0,99.0 +1989,7,3,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,18.3,48,101700,1007,1321,432,479,456,211,61400,47600,24900,6740,60,8.2,6,6,32.2,7620,9,999999999,329,0.0590,0,88,999.000,999.0,99.0 +1989,7,3,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,17.8,50,101600,778,1321,417,270,461,93,39600,47000,11800,2280,50,6.7,4,4,32.2,77777,9,999999999,320,0.0590,0,88,999.000,999.0,99.0 +1989,7,3,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,18.3,55,101600,509,1321,415,80,135,58,12600,13300,7400,1050,50,6.2,5,5,32.2,77777,9,999999999,329,0.0590,0,88,999.000,999.0,99.0 +1989,7,3,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,18.3,60,101700,219,1321,421,2,3,2,300,200,300,40,50,6.2,8,8,32.2,7620,9,999999999,329,0.0590,0,88,999.000,999.0,99.0 +1989,7,3,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,17.8,62,101700,10,363,423,0,0,0,0,0,0,0,50,5.7,9,9,24.1,7620,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1989,7,3,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,18.3,64,101700,0,0,424,0,0,0,0,0,0,0,60,5.2,9,9,24.1,7620,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1989,7,3,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,18.9,67,101800,0,0,416,0,0,0,0,0,0,0,60,6.7,8,8,24.1,7620,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1989,7,3,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,18.9,69,101800,0,0,398,0,0,0,0,0,0,0,50,6.2,5,5,24.1,77777,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1989,7,3,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,18.9,69,101800,0,0,406,0,0,0,0,0,0,0,60,4.6,7,7,24.1,7620,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1989,7,4,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,20.0,76,101800,0,0,404,0,0,0,0,0,0,0,80,5.2,7,7,24.1,7620,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1989,7,4,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,19.4,76,101800,0,0,390,0,0,0,0,0,0,0,40,5.2,4,4,24.1,77777,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1989,7,4,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,18.9,71,101700,0,0,385,0,0,0,0,0,0,0,60,5.7,2,2,24.1,77777,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1989,7,4,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,18.3,69,101700,0,0,384,0,0,0,0,0,0,0,60,6.2,2,2,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1989,7,4,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,17.2,66,101800,0,0,384,3,4,1,0,0,0,0,50,4.6,3,3,24.1,77777,9,999999999,300,0.0230,0,88,999.000,999.0,99.0 +1989,7,4,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,17.8,67,101800,1,99,387,61,227,34,0,0,0,0,50,3.1,3,3,32.2,77777,9,999999999,320,0.0230,0,88,999.000,999.0,99.0 +1989,7,4,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,18.9,69,101800,160,1321,406,185,184,122,14700,10500,13400,2570,60,5.2,7,7,32.2,1370,9,999999999,340,0.0230,0,88,999.000,999.0,99.0 +1989,7,4,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,17.8,56,101800,451,1321,402,446,636,95,32000,57600,12300,1760,80,6.2,3,3,32.2,77777,9,999999999,309,0.0230,0,88,999.000,999.0,99.0 +1989,7,4,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,18.3,55,101800,726,1321,409,475,414,171,42600,42100,19500,3760,70,6.7,3,3,32.2,77777,9,999999999,329,0.0230,0,88,999.000,999.0,99.0 +1989,7,4,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,17.8,51,101800,965,1321,411,809,794,115,74400,80300,15600,3370,80,7.7,3,3,32.2,77777,9,999999999,320,0.0230,0,88,999.000,999.0,99.0 +1989,7,4,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,18.3,50,101800,1151,1321,414,956,871,116,90300,87300,14100,4430,70,7.2,2,2,32.2,77777,9,999999999,329,0.0230,0,88,999.000,999.0,99.0 +1989,7,4,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,17.8,45,101800,1271,1321,419,874,671,204,92200,69100,25600,16760,70,8.2,2,2,32.2,77777,9,999999999,320,0.0230,0,88,999.000,999.0,99.0 +1989,7,4,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,17.2,45,101700,1317,1321,416,928,845,104,98000,85000,13100,13340,60,8.2,2,2,32.2,77777,9,999999999,309,0.0230,0,88,999.000,999.0,99.0 +1989,7,4,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,17.8,45,101700,1287,1321,419,871,851,109,97000,85500,13500,8520,60,8.2,2,2,32.2,77777,9,999999999,320,0.0230,0,88,999.000,999.0,99.0 +1989,7,4,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,17.8,46,101700,1181,1321,421,737,851,87,88300,85500,11700,4050,60,6.7,3,3,32.2,77777,9,999999999,309,0.0230,0,88,999.000,999.0,99.0 +1989,7,4,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,17.8,48,101700,1008,1321,421,472,546,150,61100,56100,18200,4940,70,6.2,9,4,40.2,77777,9,999999999,320,0.0230,0,88,999.000,999.0,99.0 +1989,7,4,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,18.3,53,101600,779,1321,422,283,430,118,39600,43500,14000,2820,60,5.7,9,6,40.2,7620,9,999999999,329,0.0230,0,88,999.000,999.0,99.0 +1989,7,4,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,18.9,59,101600,509,1321,410,67,57,57,9200,5700,7000,1320,50,4.6,5,4,32.2,77777,9,999999999,340,0.0230,0,88,999.000,999.0,99.0 +1989,7,4,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,18.9,63,101700,219,1321,404,15,28,11,1900,1900,1600,170,70,6.2,4,4,32.2,77777,9,999999999,340,0.0230,0,88,999.000,999.0,99.0 +1989,7,4,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,18.9,67,101700,10,363,398,0,0,0,0,0,0,0,70,5.2,4,4,24.1,77777,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1989,7,4,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,18.9,67,101700,0,0,398,0,0,0,0,0,0,0,70,4.6,4,4,24.1,77777,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1989,7,4,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,18.9,69,101800,0,0,388,0,0,0,0,0,0,0,70,4.1,2,2,24.1,77777,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1989,7,4,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,18.9,69,101800,0,0,383,0,0,0,0,0,0,0,80,5.2,1,1,24.1,77777,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1989,7,4,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,19.4,71,101800,0,0,383,0,0,0,0,0,0,0,70,4.6,1,1,24.1,77777,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1989,7,5,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,19.4,69,101700,0,0,386,0,0,0,0,0,0,0,90,5.2,1,1,24.1,77777,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1989,7,5,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,20.0,72,101700,0,0,406,0,0,0,0,0,0,0,90,6.2,6,6,24.1,1220,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1989,7,5,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,20.0,72,101700,0,0,399,0,0,0,0,0,0,0,60,6.2,4,4,24.1,77777,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1989,7,5,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,19.4,74,101700,0,0,392,0,0,0,0,0,0,0,60,4.1,4,4,24.1,77777,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1989,7,5,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,19.4,71,101700,0,0,395,0,1,0,0,0,0,0,100,4.6,4,4,24.1,77777,9,999999999,350,0.0740,0,88,999.000,999.0,99.0 +1989,7,5,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,20.0,74,101700,1,99,396,50,99,38,0,0,0,0,90,4.1,6,4,32.2,7620,9,999999999,359,0.0740,0,88,999.000,999.0,99.0 +1989,7,5,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,20.0,74,101800,158,1321,403,217,325,105,14100,17200,12000,2540,80,4.6,8,6,32.2,1370,9,999999999,359,0.0740,0,88,999.000,999.0,99.0 +1989,7,5,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,20.6,76,101800,449,1321,415,289,191,183,26500,17900,20400,4170,70,5.2,8,8,24.1,1370,9,999999999,370,0.0740,0,88,999.000,999.0,99.0 +1989,7,5,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,20.0,65,101800,725,1321,426,485,332,242,45300,34900,26200,5790,60,5.7,8,8,24.1,1370,9,999999999,359,0.0740,0,88,999.000,999.0,99.0 +1989,7,5,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,20.0,59,101800,964,1321,424,756,557,270,72000,57800,29700,8110,60,8.2,6,6,24.1,7620,9,999999999,359,0.0740,0,88,999.000,999.0,99.0 +1989,7,5,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,20.0,53,101800,1150,1321,427,951,773,206,94200,79100,25100,9580,60,8.2,4,4,32.2,77777,9,999999999,359,0.0740,0,88,999.000,999.0,99.0 +1989,7,5,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,19.4,50,101800,1271,1321,425,965,769,196,98500,77400,23900,14970,60,8.2,3,3,32.2,77777,9,999999999,350,0.0740,0,88,999.000,999.0,99.0 +1989,7,5,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,19.4,48,101700,1317,1321,429,941,753,206,100700,75700,25000,29790,60,7.7,3,3,32.2,77777,9,999999999,350,0.0740,0,88,999.000,999.0,99.0 +1989,7,5,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,19.4,50,101700,1287,1321,429,838,722,192,94600,72800,23600,16850,60,7.2,4,4,32.2,77777,9,999999999,350,0.0740,0,88,999.000,999.0,99.0 +1989,7,5,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,19.4,52,101600,1181,1321,429,619,504,234,72900,51400,26900,12070,60,6.7,5,5,32.2,77777,9,999999999,350,0.0740,0,88,999.000,999.0,99.0 +1989,7,5,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,20.0,53,101600,1008,1321,427,579,707,162,75300,72500,19900,5310,60,7.7,4,4,32.2,77777,9,999999999,359,0.0740,0,88,999.000,999.0,99.0 +1989,7,5,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,20.0,57,101600,779,1321,420,274,386,125,39300,39700,15900,2810,60,6.7,4,4,32.2,77777,9,999999999,359,0.0740,0,88,999.000,999.0,99.0 +1989,7,5,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,19.4,59,101600,510,1321,413,84,155,58,13400,14900,7700,1060,60,7.2,4,4,24.1,77777,9,999999999,350,0.0740,0,88,999.000,999.0,99.0 +1989,7,5,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,20.0,69,101700,219,1321,405,7,8,6,900,600,800,130,60,6.7,6,5,24.1,7620,9,999999999,359,0.0740,0,88,999.000,999.0,99.0 +1989,7,5,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,20.0,72,101700,10,363,396,0,0,0,0,0,0,0,70,6.2,3,3,24.1,77777,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1989,7,5,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,20.6,76,101800,0,0,408,0,0,0,0,0,0,0,70,5.7,7,7,24.1,1220,9,999999999,370,0.0400,0,88,999.000,999.0,99.0 +1989,7,5,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,20.0,74,101800,0,0,393,0,0,0,0,0,0,0,70,7.2,3,3,24.1,77777,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1989,7,5,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,20.6,76,101900,0,0,415,0,0,0,0,0,0,0,60,6.2,8,8,16.1,1220,9,999999999,370,0.0400,0,88,999.000,999.0,99.0 +1989,7,5,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,19.4,71,101800,0,0,413,0,0,0,0,0,0,0,40,5.7,8,8,19.3,1220,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1989,7,6,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,19.4,74,101800,0,0,403,0,0,0,0,0,0,0,110,4.1,7,7,19.3,1220,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1989,7,6,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,20.0,76,101800,0,0,400,0,0,0,0,0,0,0,60,3.6,6,6,24.1,1220,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1989,7,6,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,19.4,74,101700,0,0,395,0,0,0,0,0,0,0,60,5.2,5,5,24.1,77777,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1989,7,6,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,19.4,74,101700,0,0,395,0,0,0,0,0,0,0,70,5.2,5,5,24.1,77777,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1989,7,6,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,18.9,71,101700,0,0,392,2,1,1,0,0,0,0,60,4.1,4,4,24.1,77777,9,999999999,340,0.0520,0,88,999.000,999.0,99.0 +1989,7,6,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,18.9,71,101700,0,77,392,75,343,34,0,0,0,0,70,5.2,4,4,24.1,77777,9,999999999,340,0.0520,0,88,999.000,999.0,99.0 +1989,7,6,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,18.3,62,101800,157,1321,418,166,93,134,15700,7000,14800,1670,60,3.1,8,8,24.1,1220,9,999999999,320,0.0520,0,88,999.000,999.0,99.0 +1989,7,6,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,17.8,60,101800,448,1321,417,461,511,179,35100,46500,19300,3630,60,2.1,8,8,24.1,1220,9,999999999,320,0.0520,0,88,999.000,999.0,99.0 +1989,7,6,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,18.3,55,101800,724,1321,415,618,483,264,56100,50600,28300,6430,300,1.5,5,5,32.2,77777,9,999999999,329,0.0520,0,88,999.000,999.0,99.0 +1989,7,6,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,19.4,61,101900,963,1321,422,431,203,254,44300,22000,28300,7440,70,5.2,7,7,32.2,1370,9,999999999,350,0.0520,0,88,999.000,999.0,99.0 +1989,7,6,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,18.9,57,101900,1150,1321,424,609,234,384,64400,25400,42200,16890,60,7.2,7,7,32.2,1370,9,999999999,340,0.0520,0,88,999.000,999.0,99.0 +1989,7,6,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,18.9,50,101800,1270,1321,429,924,635,288,95200,64300,33200,23230,80,5.2,5,5,32.2,77777,9,999999999,340,0.0520,0,88,999.000,999.0,99.0 +1989,7,6,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,19.4,48,101700,1317,1321,435,740,516,236,81000,52900,28100,35850,70,6.2,5,5,32.2,77777,9,999999999,350,0.0520,0,88,999.000,999.0,99.0 +1989,7,6,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,19.4,50,101700,1287,1321,429,788,564,282,88300,57200,32400,26080,50,7.2,4,4,32.2,77777,9,999999999,350,0.0520,0,88,999.000,999.0,99.0 +1989,7,6,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,18.9,57,101700,1182,1321,424,627,446,286,74800,46700,32900,15000,60,7.2,7,7,32.2,1370,9,999999999,340,0.0520,0,88,999.000,999.0,99.0 +1989,7,6,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,18.9,51,101600,1009,1321,422,476,598,123,62000,60500,15600,3870,50,7.7,4,4,32.2,77777,9,999999999,329,0.0520,0,88,999.000,999.0,99.0 +1989,7,6,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,18.3,53,101600,779,1321,427,221,189,149,29100,20100,17200,3390,70,7.7,7,7,32.2,1220,9,999999999,329,0.0520,0,88,999.000,999.0,99.0 +1989,7,6,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,18.9,59,101600,510,1321,407,98,268,53,16900,25700,7000,1110,40,7.2,3,3,32.2,77777,9,999999999,340,0.0520,0,88,999.000,999.0,99.0 +1989,7,6,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,18.9,65,101700,219,1321,398,9,10,8,1200,700,1100,170,70,5.2,3,3,32.2,77777,9,999999999,340,0.0520,0,88,999.000,999.0,99.0 +1989,7,6,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,18.9,69,101700,10,363,388,0,0,0,0,0,0,0,50,4.6,2,2,24.1,77777,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1989,7,6,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,18.9,69,101800,0,0,401,0,0,0,0,0,0,0,20,4.1,6,6,24.1,1220,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1989,7,6,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,18.9,71,101800,0,0,392,0,0,0,0,0,0,0,70,4.6,4,4,24.1,77777,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1989,7,6,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,18.9,71,101900,0,0,392,0,0,0,0,0,0,0,70,4.6,4,4,24.1,77777,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1989,7,6,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,18.9,71,101800,0,0,395,0,0,0,0,0,0,0,60,3.6,5,5,24.1,77777,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1989,7,7,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,18.9,71,101800,0,0,398,0,0,0,0,0,0,0,70,3.6,6,6,24.1,1220,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1989,7,7,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,18.9,74,101700,0,0,386,0,0,0,0,0,0,0,40,3.1,3,3,24.1,77777,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1989,7,7,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,18.3,71,101700,0,0,391,0,0,0,0,0,0,0,70,5.2,5,5,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1989,7,7,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,18.9,74,101700,0,0,400,0,0,0,0,0,0,0,70,3.6,7,7,19.3,1220,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1989,7,7,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,18.3,71,101700,0,0,381,4,4,1,0,0,0,0,60,4.1,2,2,24.1,77777,9,999999999,329,0.0230,0,88,999.000,999.0,99.0 +1989,7,7,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,18.9,74,101700,0,77,395,63,214,38,0,0,0,0,80,3.1,6,6,24.1,1220,9,999999999,340,0.0230,0,88,999.000,999.0,99.0 +1989,7,7,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,18.9,71,101800,155,1321,392,229,402,92,13100,21800,10500,1920,70,3.1,4,4,32.2,77777,9,999999999,340,0.0230,0,88,999.000,999.0,99.0 +1989,7,7,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,18.9,63,101800,447,1321,401,443,604,111,32000,54000,13700,1980,70,5.7,3,3,32.2,77777,9,999999999,340,0.0230,0,88,999.000,999.0,99.0 +1989,7,7,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,17.8,56,101800,723,1321,405,615,641,146,51800,63500,17000,3190,70,5.7,4,4,32.2,77777,9,999999999,309,0.0230,0,88,999.000,999.0,99.0 +1989,7,7,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,17.8,53,101800,962,1321,408,737,635,183,68300,64500,21300,5420,110,4.6,3,3,40.2,77777,9,999999999,320,0.0230,0,88,999.000,999.0,99.0 +1989,7,7,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,18.3,51,101800,1149,1321,421,999,871,159,97200,88000,20500,6890,90,6.2,5,5,40.2,77777,9,999999999,320,0.0230,0,88,999.000,999.0,99.0 +1989,7,7,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,18.3,48,101800,1270,1321,425,976,789,187,100000,79600,23400,14320,70,7.2,4,4,40.2,77777,9,999999999,329,0.0230,0,88,999.000,999.0,99.0 +1989,7,7,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,18.9,48,101700,1317,1321,425,948,869,100,100200,87400,12800,12950,70,5.7,3,3,40.2,77777,9,999999999,340,0.0230,0,88,999.000,999.0,99.0 +1989,7,7,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,18.9,50,101700,1287,1321,422,905,854,140,99700,85600,16100,10480,80,6.2,3,3,40.2,77777,9,999999999,340,0.0230,0,88,999.000,999.0,99.0 +1989,7,7,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,18.9,50,101700,1182,1321,422,699,732,139,85800,74500,19000,6980,70,5.2,3,3,40.2,77777,9,999999999,340,0.0230,0,88,999.000,999.0,99.0 +1989,7,7,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,18.9,53,101600,1009,1321,415,535,714,113,71000,72500,15500,3630,60,7.2,3,3,32.2,77777,9,999999999,340,0.0230,0,88,999.000,999.0,99.0 +1989,7,7,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,18.3,51,101600,780,1321,411,335,700,65,50300,69200,9300,1690,60,7.2,2,2,24.1,77777,9,999999999,320,0.0230,0,88,999.000,999.0,99.0 +1989,7,7,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,18.9,57,101600,510,1321,409,114,489,33,23700,46200,5800,960,60,6.7,3,3,24.1,77777,9,999999999,340,0.0230,0,88,999.000,999.0,99.0 +1989,7,7,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,18.9,63,101700,219,1321,401,12,39,7,1700,2700,1300,110,60,6.7,3,3,24.1,77777,9,999999999,340,0.0230,0,88,999.000,999.0,99.0 +1989,7,7,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,19.4,69,101700,10,363,392,0,0,0,0,0,0,0,60,7.2,2,2,24.1,77777,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1989,7,7,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,18.3,64,101800,0,0,390,0,0,0,0,0,0,0,70,4.6,2,2,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1989,7,7,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,18.9,67,101800,0,0,391,0,0,0,0,0,0,0,70,5.7,2,2,24.1,77777,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1989,7,7,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,17.8,67,101800,0,0,378,0,0,0,0,0,0,0,70,4.1,1,1,24.1,77777,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1989,7,7,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,18.3,69,101800,0,0,384,0,0,0,0,0,0,0,60,4.1,2,2,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1989,7,8,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,17.8,67,101700,0,0,383,0,0,0,0,0,0,0,60,4.1,2,2,24.1,77777,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1989,7,8,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,17.8,67,101700,0,0,378,0,0,0,0,0,0,0,50,4.1,1,1,24.1,77777,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1989,7,8,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,18.3,71,101700,0,0,381,0,0,0,0,0,0,0,70,3.6,2,2,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1989,7,8,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,18.9,71,101700,0,0,385,0,0,0,0,0,0,0,70,3.6,2,2,24.1,77777,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1989,7,8,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,17.8,71,101700,0,0,378,4,6,1,0,0,0,0,70,3.6,2,2,24.1,77777,9,999999999,309,0.0190,0,88,999.000,999.0,99.0 +1989,7,8,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,17.8,69,101700,0,55,381,71,339,31,0,0,0,0,60,3.6,2,2,24.1,77777,9,999999999,320,0.0190,0,88,999.000,999.0,99.0 +1989,7,8,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,18.3,67,101700,153,1321,387,281,678,51,12700,38500,8200,790,70,3.6,2,2,32.2,77777,9,999999999,329,0.0190,0,88,999.000,999.0,99.0 +1989,7,8,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,18.3,58,101800,445,1321,399,500,774,76,35100,70700,11300,1460,50,5.7,2,2,32.2,77777,9,999999999,320,0.0190,0,88,999.000,999.0,99.0 +1989,7,8,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,18.3,53,101800,722,1321,408,701,825,98,57400,81500,12800,2130,60,6.2,2,2,32.2,77777,9,999999999,329,0.0190,0,88,999.000,999.0,99.0 +1989,7,8,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,17.2,46,101800,962,1321,416,748,637,192,69100,64500,22100,5640,70,6.2,3,3,32.2,77777,9,999999999,300,0.0190,0,88,999.000,999.0,99.0 +1989,7,8,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,17.2,45,101800,1149,1321,423,920,752,196,91400,77200,24200,9100,60,5.7,4,4,32.2,77777,9,999999999,309,0.0190,0,88,999.000,999.0,99.0 +1989,7,8,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,17.8,45,101700,1270,1321,427,991,785,206,100500,78800,24700,15550,90,6.2,4,4,32.2,77777,9,999999999,320,0.0190,0,88,999.000,999.0,99.0 +1989,7,8,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,17.8,44,101700,1317,1321,433,730,435,305,81500,45700,35900,47670,60,5.2,5,5,32.2,77777,9,999999999,320,0.0190,0,88,999.000,999.0,99.0 +1989,7,8,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,17.8,44,101700,1288,1321,433,816,719,172,93300,72800,22200,15370,70,7.2,5,5,32.2,77777,9,999999999,320,0.0190,0,88,999.000,999.0,99.0 +1989,7,8,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,17.2,43,101700,1182,1321,429,668,663,160,80200,67100,20000,7850,70,6.7,5,5,32.2,77777,9,999999999,300,0.0190,0,88,999.000,999.0,99.0 +1989,7,8,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,17.8,48,101600,1009,1321,427,463,526,152,59700,54000,18300,5020,70,6.2,6,6,32.2,7620,9,999999999,320,0.0190,0,88,999.000,999.0,99.0 +1989,7,8,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,17.2,48,101600,780,1321,428,231,212,149,30700,22600,17300,3390,60,7.2,7,7,24.1,7620,9,999999999,309,0.0190,0,88,999.000,999.0,99.0 +1989,7,8,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,18.3,57,101600,510,1321,421,90,155,64,14100,15300,8200,1170,70,6.7,7,7,24.1,7620,9,999999999,329,0.0190,0,88,999.000,999.0,99.0 +1989,7,8,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,16.7,56,101700,219,1321,401,16,58,8,2000,4300,1300,170,70,5.2,5,5,24.1,77777,9,999999999,300,0.0190,0,88,999.000,999.0,99.0 +1989,7,8,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,17.8,64,101700,10,363,387,0,0,0,0,0,0,0,60,4.1,2,2,24.1,77777,9,999999999,309,0.0400,0,88,999.000,999.0,99.0 +1989,7,8,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,17.8,64,101800,0,0,387,0,0,0,0,0,0,0,80,3.6,2,2,24.1,77777,9,999999999,309,0.0400,0,88,999.000,999.0,99.0 +1989,7,8,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,17.2,64,101800,0,0,383,0,0,0,0,0,0,0,50,3.1,2,2,24.1,77777,9,999999999,300,0.0400,0,88,999.000,999.0,99.0 +1989,7,8,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,17.2,64,101800,0,0,383,0,0,0,0,0,0,0,40,4.1,2,2,24.1,77777,9,999999999,300,0.0400,0,88,999.000,999.0,99.0 +1989,7,8,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,18.3,71,101800,0,0,381,0,0,0,0,0,0,0,50,3.1,2,2,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1989,7,9,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,18.9,74,101700,0,0,382,0,0,0,0,0,0,0,70,4.1,2,2,24.1,77777,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1989,7,9,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,19.4,74,101700,0,0,385,0,0,0,0,0,0,0,50,5.2,2,2,24.1,77777,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1989,7,9,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,18.9,79,101700,0,0,372,0,0,0,0,0,0,0,320,2.6,1,1,24.1,77777,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1989,7,9,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,18.9,82,101700,0,0,374,0,0,0,0,0,0,0,300,1.5,2,2,24.1,77777,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1989,7,9,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,20.0,82,101700,0,0,387,3,3,1,0,0,0,0,70,3.6,4,4,24.1,77777,9,999999999,359,0.0250,0,88,999.000,999.0,99.0 +1989,7,9,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,20.0,76,101700,0,55,404,50,102,38,0,0,0,0,40,3.6,7,7,24.1,7620,9,999999999,359,0.0250,0,88,999.000,999.0,99.0 +1989,7,9,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,20.6,76,101800,152,1321,408,175,170,118,14000,9400,12900,2480,70,3.6,7,7,32.2,7620,9,999999999,370,0.0250,0,88,999.000,999.0,99.0 +1989,7,9,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,20.6,69,101800,444,1321,409,486,675,116,34600,60100,14400,2040,60,4.1,5,5,32.2,77777,9,999999999,370,0.0250,0,88,999.000,999.0,99.0 +1989,7,9,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,19.4,57,101800,721,1321,417,627,648,154,52700,64000,17700,3320,90,5.2,4,4,32.2,77777,9,999999999,350,0.0250,0,88,999.000,999.0,99.0 +1989,7,9,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,19.4,55,101800,961,1321,431,759,617,221,69900,62000,24700,6360,90,4.1,7,7,32.2,1370,9,999999999,350,0.0250,0,88,999.000,999.0,99.0 +1989,7,9,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,20.0,52,101800,1148,1321,442,885,632,275,86500,63700,31000,12400,30,6.2,7,7,32.2,1370,9,999999999,359,0.0250,0,88,999.000,999.0,99.0 +1989,7,9,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,20.0,48,101800,1270,1321,439,919,655,264,95200,66700,31000,21290,50,6.2,5,5,32.2,77777,9,999999999,359,0.0250,0,88,999.000,999.0,99.0 +1989,7,9,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,20.0,52,101800,1317,1321,433,999,811,206,106800,81600,25300,30020,20,8.2,5,5,32.2,77777,9,999999999,359,0.0250,0,88,999.000,999.0,99.0 +1989,7,9,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,19.4,48,101700,1288,1321,432,771,611,223,88400,62700,27200,20930,40,5.7,4,4,32.2,77777,9,999999999,350,0.0250,0,88,999.000,999.0,99.0 +1989,7,9,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,18.9,47,101700,1183,1321,428,701,703,163,84100,71100,20400,7980,40,7.2,3,3,32.2,77777,9,999999999,340,0.0250,0,88,999.000,999.0,99.0 +1989,7,9,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,18.9,50,101700,1010,1321,422,469,579,127,62200,59900,16300,4250,50,7.7,3,3,32.2,77777,9,999999999,340,0.0250,0,88,999.000,999.0,99.0 +1989,7,9,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,18.3,51,101600,780,1321,411,320,668,62,48100,66100,8900,1650,60,7.7,2,2,32.2,77777,9,999999999,320,0.0250,0,88,999.000,999.0,99.0 +1989,7,9,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,18.9,55,101600,510,1321,409,106,359,47,20300,34600,6900,990,70,5.7,2,2,24.1,77777,9,999999999,340,0.0250,0,88,999.000,999.0,99.0 +1989,7,9,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,18.9,63,101700,219,1321,397,14,28,10,1800,1900,1400,160,60,6.2,2,2,24.1,77777,9,999999999,340,0.0250,0,88,999.000,999.0,99.0 +1989,7,9,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,18.9,65,101700,10,363,394,0,0,0,0,0,0,0,70,5.7,2,2,24.1,77777,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1989,7,9,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,19.4,67,101800,0,0,398,0,0,0,0,0,0,0,70,4.6,3,3,24.1,77777,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1989,7,9,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,19.4,67,101800,0,0,413,0,0,0,0,0,0,0,60,5.7,7,7,24.1,1220,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1989,7,9,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,19.4,67,101800,0,0,419,0,0,0,0,0,0,0,60,4.6,8,8,24.1,1370,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1989,7,9,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,19.4,67,101800,0,0,419,0,0,0,0,0,0,0,60,4.1,8,8,24.1,1370,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1989,7,10,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,19.4,69,101700,0,0,425,0,0,0,0,0,0,0,50,5.7,9,9,19.3,1370,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1989,7,10,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,20.6,74,101700,0,0,418,0,0,0,0,0,0,0,50,5.2,8,8,19.3,1220,9,999999999,370,0.0400,0,88,999.000,999.0,99.0 +1989,7,10,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,20.6,74,101600,0,0,418,0,0,0,0,0,0,0,70,4.1,8,8,19.3,1220,9,999999999,370,0.0400,0,88,999.000,999.0,99.0 +1989,7,10,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,20.6,76,101600,0,0,400,0,0,0,0,0,0,0,70,5.2,5,5,24.1,77777,9,999999999,370,0.0400,0,88,999.000,999.0,99.0 +1989,7,10,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,20.6,74,101600,0,0,418,0,0,0,0,0,0,0,60,5.2,8,8,24.1,1370,9,999999999,370,0.0400,0,88,999.000,999.0,99.0 +1989,7,10,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,21.1,82,101600,0,55,421,34,31,30,0,0,0,0,60,3.6,9,9,24.1,1220,9,999999999,379,0.0180,0,88,999.000,999.0,99.0 +1989,7,10,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,20.6,74,101700,150,1322,407,207,222,132,15800,12000,14500,2780,60,6.2,6,6,24.1,1220,9,999999999,370,0.0180,0,88,999.000,999.0,99.0 +1989,7,10,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,21.7,79,101700,442,1322,419,244,208,130,21200,19500,14600,2640,70,5.2,8,8,32.2,1220,9,999999999,400,0.0180,0,88,999.000,999.0,99.0 +1989,7,10,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,21.1,69,101700,719,1322,421,473,167,351,47000,17100,37700,9050,70,4.6,7,7,32.2,1220,9,999999999,379,0.0180,0,88,999.000,999.0,99.0 +1989,7,10,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,21.1,65,101700,960,1322,434,599,436,219,58200,45400,25100,6440,50,6.2,8,8,32.2,1070,9,999999999,379,0.0180,0,88,999.000,999.0,99.0 +1989,7,10,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,20.6,59,101700,1148,1322,449,493,162,336,53100,17400,38000,14380,70,6.2,9,9,32.2,1220,9,999999999,370,0.0180,0,88,999.000,999.0,99.0 +1989,7,10,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,20.0,50,101600,1270,1322,440,672,379,293,72400,39800,34100,24140,80,7.7,6,6,32.2,1220,9,999999999,359,0.0180,0,88,999.000,999.0,99.0 +1989,7,10,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,20.6,55,101600,1318,1322,440,641,323,325,71000,33900,37100,51010,70,6.7,7,7,32.2,1370,9,999999999,370,0.0180,0,88,999.000,999.0,99.0 +1989,7,10,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,20.0,55,101600,1288,1322,435,716,453,309,82400,47500,36000,29580,40,8.2,7,7,32.2,1370,9,999999999,359,0.0180,0,88,999.000,999.0,99.0 +1989,7,10,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,20.6,52,101500,1183,1322,446,565,348,299,66400,36400,33700,15780,40,7.2,7,7,32.2,1370,9,999999999,370,0.0180,0,88,999.000,999.0,99.0 +1989,7,10,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,20.6,57,101500,1010,1322,431,486,525,176,61600,53600,20500,5740,70,7.2,6,6,24.1,1370,9,999999999,370,0.0180,0,88,999.000,999.0,99.0 +1989,7,10,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,20.6,63,101500,780,1322,427,186,164,123,24900,17500,14600,2740,60,6.7,7,7,24.1,1370,9,999999999,370,0.0180,0,88,999.000,999.0,99.0 +1989,7,10,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,20.6,65,101500,510,1322,412,101,313,49,18500,30100,6900,1030,60,5.2,4,4,24.1,77777,9,999999999,370,0.0180,0,88,999.000,999.0,99.0 +1989,7,10,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,21.1,77,101600,219,1322,407,11,17,9,1400,1300,1200,190,60,5.7,6,6,24.1,1370,9,999999999,390,0.0180,0,88,999.000,999.0,99.0 +1989,7,10,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,21.7,85,101600,10,363,406,0,0,0,0,0,0,0,60,5.7,7,7,24.1,1370,9,999999999,400,0.0400,0,88,999.000,999.0,99.0 +1989,7,10,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,21.1,77,101600,0,0,419,0,0,0,0,0,0,0,70,4.6,8,8,24.1,1370,9,999999999,390,0.0400,0,88,999.000,999.0,99.0 +1989,7,10,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,21.1,79,101700,0,0,415,0,0,0,0,0,0,0,60,5.2,8,8,24.1,1370,9,999999999,379,0.0400,0,88,999.000,999.0,99.0 +1989,7,10,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,20.6,74,101700,0,0,427,0,0,0,0,0,0,0,60,6.2,9,9,24.1,1370,9,999999999,370,0.0400,0,88,999.000,999.0,99.0 +1989,7,10,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,20.0,72,101700,0,0,411,0,0,0,0,0,0,0,60,7.7,7,7,24.1,1370,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1989,7,11,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,20.6,74,101600,0,0,418,0,0,0,0,0,0,0,70,7.2,8,8,24.1,1220,9,999999999,370,0.0400,0,88,999.000,999.0,99.0 +1989,7,11,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,20.0,72,101600,0,0,426,0,0,0,0,0,0,0,60,6.2,9,9,24.1,1220,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1989,7,11,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,21.1,79,101600,0,0,424,0,0,0,0,0,0,0,60,6.2,9,9,16.1,1220,9,999999999,379,0.0400,0,88,999.000,999.0,99.0 +1989,7,11,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,21.1,79,101500,0,0,415,0,0,0,0,0,0,0,60,6.2,8,8,24.1,1220,9,999999999,379,0.0400,0,88,999.000,999.0,99.0 +1989,7,11,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,21.1,79,101600,0,0,424,0,0,0,0,0,0,0,60,7.2,9,9,24.1,1220,9,999999999,379,0.0400,0,88,999.000,999.0,99.0 +1989,7,11,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,20.6,74,101600,0,33,418,55,104,44,0,0,0,0,60,7.2,8,8,24.1,1220,9,999999999,370,0.0260,0,88,999.000,999.0,99.0 +1989,7,11,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,20.0,72,101600,148,1322,399,257,492,92,13800,26000,10900,1940,60,6.2,4,4,32.2,77777,9,999999999,359,0.0260,0,88,999.000,999.0,99.0 +1989,7,11,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,20.0,65,101700,441,1322,405,472,780,46,32300,71700,8400,1070,50,4.1,3,3,32.2,77777,9,999999999,359,0.0260,0,88,999.000,999.0,99.0 +1989,7,11,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,19.4,59,101700,718,1322,410,705,797,124,58800,79500,15500,2760,60,7.7,3,3,32.2,77777,9,999999999,350,0.0260,0,88,999.000,999.0,99.0 +1989,7,11,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,19.4,55,101700,959,1322,419,776,698,169,71900,71100,20200,5020,40,6.2,4,4,32.2,77777,9,999999999,350,0.0260,0,88,999.000,999.0,99.0 +1989,7,11,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,19.4,52,101700,1147,1322,429,881,579,324,88700,60500,36100,15120,40,7.7,5,5,32.2,77777,9,999999999,350,0.0260,0,88,999.000,999.0,99.0 +1989,7,11,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,20.6,53,101700,1270,1322,434,897,617,281,92700,62600,32400,22530,70,6.7,5,5,32.2,77777,9,999999999,370,0.0260,0,88,999.000,999.0,99.0 +1989,7,11,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,20.0,50,101700,1318,1322,440,792,481,322,88000,50500,37600,50600,70,6.2,6,6,32.2,1370,9,999999999,359,0.0260,0,88,999.000,999.0,99.0 +1989,7,11,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,20.0,52,101700,1288,1322,437,693,471,270,81200,49500,32800,25810,40,9.3,6,6,32.2,1370,9,999999999,359,0.0260,0,88,999.000,999.0,99.0 +1989,7,11,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,20.6,61,101600,1183,1322,430,580,466,223,68500,47600,25700,11620,60,7.2,7,7,32.2,1370,9,999999999,370,0.0260,0,88,999.000,999.0,99.0 +1989,7,11,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,20.0,59,101600,1010,1322,429,360,208,237,44200,22600,26900,7370,60,7.2,7,7,32.2,1370,9,999999999,359,0.0260,0,88,999.000,999.0,99.0 +1989,7,11,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,19.4,61,101600,780,1322,411,264,167,199,33100,17600,22700,5330,60,7.2,4,4,24.1,77777,9,999999999,350,0.0260,0,88,999.000,999.0,99.0 +1989,7,11,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,20.0,65,101600,510,1322,420,84,149,60,13400,14700,7700,1090,60,6.7,7,7,24.1,1370,9,999999999,359,0.0260,0,88,999.000,999.0,99.0 +1989,7,11,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,20.0,69,101600,218,1322,405,14,46,8,1900,3200,1400,130,60,4.6,5,5,24.1,77777,9,999999999,359,0.0260,0,88,999.000,999.0,99.0 +1989,7,11,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,20.0,72,101700,9,363,399,0,0,0,0,0,0,0,60,5.2,4,4,24.1,77777,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1989,7,11,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,20.6,74,101800,0,0,418,0,0,0,0,0,0,0,60,6.7,8,8,24.1,1370,9,999999999,370,0.0400,0,88,999.000,999.0,99.0 +1989,7,11,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,20.6,76,101800,0,0,424,0,0,0,0,0,0,0,70,5.2,9,9,24.1,1370,9,999999999,370,0.0400,0,88,999.000,999.0,99.0 +1989,7,11,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,20.0,74,101800,0,0,423,0,0,0,0,0,0,0,60,5.7,9,9,24.1,1370,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1989,7,11,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,19.4,71,101800,0,0,402,0,0,0,0,0,0,0,70,7.2,6,6,24.1,1370,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1989,7,12,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,19.4,69,101700,0,0,410,0,0,0,0,0,0,0,70,6.2,7,7,24.1,1370,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1989,7,12,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,20.0,74,101700,0,0,399,0,0,0,0,0,0,0,60,7.2,5,5,24.1,77777,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1989,7,12,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,18.9,67,101700,0,0,401,0,0,0,0,0,0,0,70,7.2,5,5,24.1,77777,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1989,7,12,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,18.3,64,101600,0,0,397,0,0,0,0,0,0,0,60,7.2,4,4,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1989,7,12,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,19.4,69,101700,0,0,410,0,0,0,0,0,0,0,70,7.2,7,7,24.1,1370,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1989,7,12,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,18.9,69,101700,0,33,406,43,55,37,0,0,0,0,60,6.2,7,7,24.1,7620,9,999999999,340,0.0680,0,88,999.000,999.0,99.0 +1989,7,12,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,18.3,64,101800,147,1322,400,224,400,89,12500,21000,10200,1860,60,7.7,5,5,32.2,77777,9,999999999,329,0.0680,0,88,999.000,999.0,99.0 +1989,7,12,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,17.8,55,101800,440,1322,408,528,735,127,37200,64700,15700,2160,60,4.1,4,4,32.2,77777,9,999999999,320,0.0680,0,88,999.000,999.0,99.0 +1989,7,12,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,17.2,48,101800,717,1322,413,702,766,145,58500,75800,17200,3150,80,5.2,3,3,32.2,77777,9,999999999,309,0.0680,0,88,999.000,999.0,99.0 +1989,7,12,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,17.8,48,101800,959,1322,417,855,826,136,77200,82900,16900,3750,60,6.2,3,3,32.2,77777,9,999999999,320,0.0680,0,88,999.000,999.0,99.0 +1989,7,12,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,17.8,48,101800,1147,1322,421,912,701,237,89700,71300,27700,10780,50,6.2,4,4,32.2,77777,9,999999999,320,0.0680,0,88,999.000,999.0,99.0 +1989,7,12,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,18.3,51,101800,1270,1322,425,897,568,329,95200,59500,37900,27110,50,7.7,6,6,32.2,1370,9,999999999,320,0.0680,0,88,999.000,999.0,99.0 +1989,7,12,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,18.3,50,101700,1318,1322,428,824,575,262,89500,58700,30800,40080,50,7.7,6,6,32.2,1220,9,999999999,329,0.0680,0,88,999.000,999.0,99.0 +1989,7,12,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,18.3,47,101700,1288,1322,431,709,419,333,80800,43900,37900,32020,70,7.7,5,5,32.2,77777,9,999999999,329,0.0680,0,88,999.000,999.0,99.0 +1989,7,12,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,18.3,47,101600,1184,1322,431,686,674,170,81800,68000,20800,8280,60,8.8,5,5,32.2,77777,9,999999999,329,0.0680,0,88,999.000,999.0,99.0 +1989,7,12,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,17.8,48,101600,1010,1322,424,376,338,176,48600,35400,21500,5600,60,8.8,5,5,32.2,77777,9,999999999,320,0.0680,0,88,999.000,999.0,99.0 +1989,7,12,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,17.2,49,101600,781,1322,414,262,359,123,37400,36900,15600,2760,60,8.8,4,4,32.2,77777,9,999999999,300,0.0680,0,88,999.000,999.0,99.0 +1989,7,12,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,18.3,57,101600,510,1322,406,82,243,42,14900,23500,5900,900,60,8.2,3,3,24.1,77777,9,999999999,329,0.0680,0,88,999.000,999.0,99.0 +1989,7,12,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,18.3,62,101700,218,1322,393,7,23,4,1000,1600,800,60,60,8.2,2,2,24.1,77777,9,999999999,320,0.0680,0,88,999.000,999.0,99.0 +1989,7,12,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,18.9,65,101700,9,363,401,0,0,0,0,0,0,0,60,5.2,4,4,24.1,77777,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1989,7,12,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,18.9,69,101800,0,0,398,0,0,0,0,0,0,0,60,4.6,5,5,24.1,77777,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1989,7,12,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,18.3,67,101800,0,0,387,0,0,0,0,0,0,0,60,6.2,2,2,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1989,7,12,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,18.9,67,101900,0,0,405,0,0,0,0,0,0,0,60,6.7,6,6,24.1,1370,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1989,7,12,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,18.3,67,101800,0,0,412,0,0,0,0,0,0,0,90,8.2,8,8,24.1,1370,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1989,7,13,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,20.0,76,101800,0,0,419,0,0,0,0,0,0,0,70,8.2,9,9,16.1,1220,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1989,7,13,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,19.4,74,101700,0,0,410,0,0,0,0,0,0,0,60,6.2,8,8,16.1,1370,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1989,7,13,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,19.4,79,101700,0,0,393,0,0,0,0,0,0,0,60,6.2,6,6,24.1,1370,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1989,7,13,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,19.4,79,101600,0,0,397,0,0,0,0,0,0,0,60,6.2,7,7,24.1,1370,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1989,7,13,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,20.0,79,101600,0,0,390,0,0,0,0,0,0,0,60,6.2,4,4,24.1,77777,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1989,7,13,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,19.4,79,101700,0,33,404,36,45,31,0,0,0,0,60,7.2,8,8,24.1,1370,9,999999999,350,0.0210,0,88,999.000,999.0,99.0 +1989,7,13,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,20.0,74,101700,145,1322,423,212,164,157,17400,8400,16500,3310,50,7.7,9,9,24.1,1220,9,999999999,359,0.0210,0,88,999.000,999.0,99.0 +1989,7,13,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,20.0,74,101700,438,1322,407,238,58,207,24700,5500,22800,4830,60,5.2,7,7,24.1,2740,9,999999999,359,0.0210,0,88,999.000,999.0,99.0 +1989,7,13,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,19.4,63,101700,716,1322,419,405,263,214,38400,27600,23400,4980,50,4.1,7,7,32.2,1370,9,999999999,350,0.0210,0,88,999.000,999.0,99.0 +1989,7,13,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,19.4,53,101700,958,1322,435,516,204,339,53300,21600,37600,10640,50,5.7,7,7,32.2,1370,9,999999999,350,0.0210,0,88,999.000,999.0,99.0 +1989,7,13,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,18.3,50,101700,1147,1322,421,891,756,163,86600,76300,20200,6960,70,10.3,4,4,32.2,77777,9,999999999,329,0.0210,0,88,999.000,999.0,99.0 +1989,7,13,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,18.9,50,101700,1269,1322,422,865,716,150,90700,72900,20500,11680,60,8.8,3,3,32.2,77777,9,999999999,340,0.0210,0,88,999.000,999.0,99.0 +1989,7,13,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,19.4,50,101700,1318,1322,429,529,355,182,58900,36800,22100,28060,60,8.2,4,4,32.2,77777,9,999999999,350,0.0210,0,88,999.000,999.0,99.0 +1989,7,13,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,18.3,47,101600,1289,1322,424,849,826,108,94500,83000,13300,8590,60,7.2,3,3,32.2,77777,9,999999999,329,0.0210,0,88,999.000,999.0,99.0 +1989,7,13,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,18.9,50,101600,1184,1322,422,694,715,146,84500,72600,19300,7310,60,9.3,3,3,32.2,77777,9,999999999,340,0.0210,0,88,999.000,999.0,99.0 +1989,7,13,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,18.9,51,101600,1011,1322,415,542,816,59,72100,81900,9300,2050,60,7.2,2,2,32.2,77777,9,999999999,329,0.0210,0,88,999.000,999.0,99.0 +1989,7,13,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,18.9,55,101500,781,1322,409,326,648,76,49800,65300,11200,1920,70,8.8,2,2,32.2,77777,9,999999999,340,0.0210,0,88,999.000,999.0,99.0 +1989,7,13,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,19.4,61,101500,510,1322,407,95,320,42,18200,30900,6300,900,70,6.2,3,3,24.1,77777,9,999999999,350,0.0210,0,88,999.000,999.0,99.0 +1989,7,13,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,19.4,67,101600,217,1322,408,13,29,8,1600,2000,1200,120,60,7.7,6,6,24.1,1370,9,999999999,350,0.0210,0,88,999.000,999.0,99.0 +1989,7,13,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,19.4,67,101600,9,341,419,0,0,0,0,0,0,0,70,7.7,8,8,24.1,1370,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1989,7,13,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,20.0,72,101700,0,0,426,0,0,0,0,0,0,0,60,6.2,9,9,24.1,1370,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1989,7,13,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,19.4,71,101700,0,0,422,0,0,0,0,0,0,0,60,7.2,9,9,24.1,1370,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1989,7,13,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,19.4,69,101700,0,0,425,0,0,0,0,0,0,0,60,7.2,9,9,24.1,1370,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1989,7,13,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,19.4,69,101600,0,0,425,0,0,0,0,0,0,0,60,7.2,9,9,24.1,1370,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1989,7,14,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,18.9,67,101600,0,0,425,0,0,0,0,0,0,0,60,7.2,9,9,24.1,1370,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1989,7,14,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,18.3,64,101500,0,0,415,0,0,0,0,0,0,0,70,5.2,8,8,24.1,1370,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1989,7,14,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,18.9,67,101500,0,0,416,0,0,0,0,0,0,0,90,5.2,8,8,24.1,1370,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1989,7,14,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,19.4,71,101500,0,0,407,0,0,0,0,0,0,0,70,6.2,7,7,24.1,7620,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1989,7,14,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,18.9,67,101500,0,0,416,0,0,0,0,0,0,0,90,4.6,8,8,24.1,1370,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1989,7,14,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,19.4,71,101500,0,11,422,59,37,55,0,0,0,0,70,6.2,9,9,24.1,1370,9,999999999,350,0.0220,0,88,999.000,999.0,99.0 +1989,7,14,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,20.0,72,101600,143,1322,426,131,63,110,12600,4500,12100,1560,60,6.2,9,9,32.2,1370,9,999999999,359,0.0220,0,88,999.000,999.0,99.0 +1989,7,14,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,20.0,69,101600,437,1322,420,221,124,153,20900,11600,17100,3470,80,6.2,8,8,24.1,3050,9,999999999,359,0.0220,0,88,999.000,999.0,99.0 +1989,7,14,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,20.0,61,101600,715,1322,426,595,401,304,54600,41900,31900,7640,70,6.7,7,7,32.2,3050,9,999999999,359,0.0220,0,88,999.000,999.0,99.0 +1989,7,14,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,20.0,55,101600,957,1322,423,847,790,160,78200,80700,19700,4760,50,6.7,4,4,32.2,77777,9,999999999,359,0.0220,0,88,999.000,999.0,99.0 +1989,7,14,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,19.4,53,101600,1146,1322,419,960,828,163,93100,83500,20500,6950,60,6.7,3,3,32.2,77777,9,999999999,350,0.0220,0,88,999.000,999.0,99.0 +1989,7,14,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,20.0,53,101600,1269,1322,423,967,791,177,99700,80000,22700,13510,70,7.2,3,3,32.2,77777,9,999999999,359,0.0220,0,88,999.000,999.0,99.0 +1989,7,14,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,20.6,57,101500,1318,1322,443,719,285,440,80100,31000,49100,57460,60,7.2,8,8,32.2,1370,9,999999999,370,0.0220,0,88,999.000,999.0,99.0 +1989,7,14,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,20.6,55,101500,1289,1322,428,722,536,240,82000,54900,28400,22620,60,6.7,4,4,32.2,77777,9,999999999,370,0.0220,0,88,999.000,999.0,99.0 +1989,7,14,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,20.6,53,101500,1184,1322,427,656,660,150,79400,66900,19300,7480,70,7.2,3,3,32.2,77777,9,999999999,370,0.0220,0,88,999.000,999.0,99.0 +1989,7,14,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,20.6,57,101400,1011,1322,427,461,533,145,59800,54900,17700,4820,70,7.7,5,5,32.2,77777,9,999999999,370,0.0220,0,88,999.000,999.0,99.0 +1989,7,14,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,20.6,63,101400,781,1322,418,307,436,138,43700,44800,17200,3120,70,9.3,5,5,32.2,77777,9,999999999,370,0.0220,0,88,999.000,999.0,99.0 +1989,7,14,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,20.6,67,101500,509,1322,420,102,108,84,14200,10700,10100,1950,80,7.7,7,7,24.1,1370,9,999999999,370,0.0220,0,88,999.000,999.0,99.0 +1989,7,14,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,20.6,72,101500,217,1322,409,12,14,10,1500,1000,1300,210,60,7.2,6,6,24.1,1370,9,999999999,370,0.0220,0,88,999.000,999.0,99.0 +1989,7,14,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,20.6,72,101500,9,341,414,0,0,0,0,0,0,0,60,7.2,7,7,24.1,1220,9,999999999,370,0.0400,0,88,999.000,999.0,99.0 +1989,7,14,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,21.7,82,101600,0,0,425,0,0,0,0,0,0,0,60,4.1,9,9,16.1,610,9,999999999,400,0.0400,0,88,999.000,999.0,99.0 +1989,7,14,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,21.7,85,101600,0,0,413,0,0,0,0,0,0,0,60,5.2,8,8,24.1,1220,9,999999999,400,0.0400,0,88,999.000,999.0,99.0 +1989,7,14,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,21.1,79,101600,0,0,424,0,0,0,0,0,0,0,70,5.2,9,9,24.1,610,9,999999999,379,0.0400,0,88,999.000,999.0,99.0 +1989,7,14,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,21.7,85,101600,0,0,434,0,0,0,0,0,0,0,60,8.2,10,10,11.3,610,9,999999999,400,0.0400,0,88,999.000,999.0,99.0 +1989,7,15,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,20.6,76,101500,0,0,424,0,0,0,0,0,0,0,50,5.2,9,9,16.1,610,9,999999999,370,0.0400,0,88,999.000,999.0,99.0 +1989,7,15,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,20.6,76,101500,0,0,424,0,0,0,0,0,0,0,60,5.2,9,9,16.1,1220,9,999999999,370,0.0400,0,88,999.000,999.0,99.0 +1989,7,15,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,20.6,79,101500,0,0,400,0,0,0,0,0,0,0,60,5.2,6,6,16.1,2740,9,999999999,370,0.0400,0,88,999.000,999.0,99.0 +1989,7,15,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,20.6,76,101500,0,0,408,0,0,0,0,0,0,0,60,5.2,7,7,24.1,2740,9,999999999,370,0.0400,0,88,999.000,999.0,99.0 +1989,7,15,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,20.0,74,101500,0,0,407,0,0,0,0,0,0,0,60,7.2,7,7,24.1,1220,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1989,7,15,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,20.6,76,101500,0,11,424,46,14,45,0,0,0,0,70,6.2,9,9,24.1,1220,9,999999999,370,0.0530,0,88,999.000,999.0,99.0 +1989,7,15,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,20.0,72,101600,142,1322,417,138,84,111,13000,6100,12300,1540,70,5.2,8,8,32.2,2740,9,999999999,359,0.0530,0,88,999.000,999.0,99.0 +1989,7,15,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,20.6,69,101600,435,1322,433,305,255,167,26100,23700,18300,3610,70,6.2,9,9,32.2,1370,9,999999999,370,0.0530,0,88,999.000,999.0,99.0 +1989,7,15,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,20.0,61,101600,714,1322,414,540,430,228,49300,45100,24900,5370,80,5.7,4,4,32.2,77777,9,999999999,359,0.0530,0,88,999.000,999.0,99.0 +1989,7,15,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,20.6,61,101700,957,1322,421,778,696,172,71800,70800,20400,5070,70,5.7,5,5,32.2,77777,9,999999999,370,0.0530,0,88,999.000,999.0,99.0 +1989,7,15,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,20.6,55,101600,1146,1322,440,789,483,324,79700,50500,35800,15040,80,6.7,7,7,32.2,1370,9,999999999,370,0.0530,0,88,999.000,999.0,99.0 +1989,7,15,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,20.6,59,101600,1269,1322,433,802,377,426,86900,41000,47400,30540,90,5.7,7,7,32.2,1370,9,999999999,370,0.0530,0,88,999.000,999.0,99.0 +1989,7,15,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,20.6,53,101600,1318,1322,450,742,302,448,82700,32900,49900,58520,70,7.2,8,8,32.2,1370,9,999999999,370,0.0530,0,88,999.000,999.0,99.0 +1989,7,15,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,20.6,52,101600,1289,1322,437,828,608,282,93000,61700,32600,26430,80,5.7,5,5,32.2,77777,9,999999999,370,0.0530,0,88,999.000,999.0,99.0 +1989,7,15,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,20.0,52,101500,1184,1322,426,721,804,105,85500,80700,13000,4690,60,8.8,3,3,32.2,77777,9,999999999,359,0.0530,0,88,999.000,999.0,99.0 +1989,7,15,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,20.0,53,101500,1011,1322,434,446,409,204,57000,42800,24200,6550,60,9.3,6,6,32.2,7620,9,999999999,359,0.0530,0,88,999.000,999.0,99.0 +1989,7,15,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,20.0,55,101500,780,1322,427,274,326,149,37400,33500,17600,3390,70,7.7,5,5,32.2,77777,9,999999999,359,0.0530,0,88,999.000,999.0,99.0 +1989,7,15,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,20.6,63,101600,509,1322,427,89,155,63,14000,15300,8100,1150,50,8.2,7,7,32.2,7620,9,999999999,370,0.0530,0,88,999.000,999.0,99.0 +1989,7,15,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,20.6,67,101600,216,1322,427,7,0,7,900,0,900,300,80,6.2,8,8,32.2,3050,9,999999999,370,0.0530,0,88,999.000,999.0,99.0 +1989,7,15,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,20.6,69,101700,9,342,433,0,0,0,0,0,0,0,100,5.7,9,9,24.1,1220,9,999999999,370,0.0400,0,88,999.000,999.0,99.0 +1989,7,15,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,20.6,69,101700,0,0,413,0,0,0,0,0,0,0,90,6.2,6,6,24.1,3050,9,999999999,370,0.0400,0,88,999.000,999.0,99.0 +1989,7,15,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,21.7,79,101700,0,0,428,0,0,0,0,0,0,0,80,5.2,9,9,24.1,760,9,999999999,400,0.0400,0,88,999.000,999.0,99.0 +1989,7,15,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,21.7,82,101800,0,0,425,0,0,0,0,0,0,0,90,5.7,9,9,24.1,1220,9,999999999,400,0.0400,0,88,999.000,999.0,99.0 +1989,7,15,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,20.0,72,101800,0,0,426,0,0,0,0,0,0,0,70,4.6,9,9,24.1,1100,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1989,7,16,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,20.0,69,101800,0,0,441,0,0,0,0,0,0,0,60,6.2,10,10,24.1,1220,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1989,7,16,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,18.9,67,101800,0,0,409,0,0,0,0,0,0,0,60,6.2,7,7,24.1,1220,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1989,7,16,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,19.4,69,101800,0,0,425,0,0,0,0,0,0,0,50,4.1,9,9,19.3,2740,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1989,7,16,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,19.4,71,101800,0,0,407,0,0,0,0,0,0,0,60,5.2,7,7,19.3,2740,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1989,7,16,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,20.0,74,101800,0,0,399,0,0,0,0,0,0,0,70,5.7,5,5,24.1,77777,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1989,7,16,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,19.4,71,101700,0,0,395,39,55,32,0,0,0,0,60,4.1,4,4,24.1,77777,9,999999999,350,0.0220,0,88,999.000,999.0,99.0 +1989,7,16,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,19.4,69,101800,140,1311,416,168,108,132,15500,8000,14700,1530,70,6.2,8,8,32.2,3050,9,999999999,350,0.0220,0,88,999.000,999.0,99.0 +1989,7,16,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,18.9,63,101900,434,1322,422,267,98,214,26800,9300,23800,4890,40,6.2,8,8,32.2,7620,9,999999999,340,0.0220,0,88,999.000,999.0,99.0 +1989,7,16,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,18.9,57,101900,713,1322,419,521,390,237,47800,40900,25700,5620,70,7.2,6,6,32.2,7620,9,999999999,340,0.0220,0,88,999.000,999.0,99.0 +1989,7,16,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,18.9,53,101900,956,1322,431,522,197,351,53900,20800,38800,10990,40,4.6,7,7,32.2,7620,9,999999999,340,0.0220,0,88,999.000,999.0,99.0 +1989,7,16,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,19.4,52,101800,1146,1322,438,959,675,308,92900,67500,34200,13570,40,8.2,7,7,32.2,7620,9,999999999,350,0.0220,0,88,999.000,999.0,99.0 +1989,7,16,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,19.4,52,101800,1269,1322,445,648,243,404,70500,26500,45100,28820,50,8.8,8,8,32.2,7620,9,999999999,350,0.0220,0,88,999.000,999.0,99.0 +1989,7,16,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,20.6,57,101800,1318,1322,443,591,284,313,67600,31000,36600,40370,60,7.2,8,8,32.2,7620,9,999999999,370,0.0220,0,88,999.000,999.0,99.0 +1989,7,16,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,18.9,51,101800,1289,1322,434,594,358,273,69200,37600,32400,26240,60,5.7,7,7,32.2,7620,9,999999999,329,0.0220,0,88,999.000,999.0,99.0 +1989,7,16,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,20.0,52,101700,1184,1322,442,761,667,250,89900,67800,29000,12950,50,9.3,7,7,32.2,7620,9,999999999,359,0.0220,0,88,999.000,999.0,99.0 +1989,7,16,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,20.0,55,101600,1011,1322,452,314,113,247,37400,12100,28100,8270,60,8.2,9,9,32.2,1370,9,999999999,359,0.0220,0,88,999.000,999.0,99.0 +1989,7,16,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,20.6,61,101600,780,1322,446,192,49,173,22300,4900,19400,5930,60,8.2,9,9,32.2,1370,9,999999999,370,0.0220,0,88,999.000,999.0,99.0 +1989,7,16,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,20.6,67,101700,509,1322,436,51,29,46,6700,2900,5600,1070,60,7.2,9,9,24.1,1370,9,999999999,370,0.0220,0,88,999.000,999.0,99.0 +1989,7,16,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,20.0,67,101700,215,1322,433,9,4,8,1000,300,900,230,60,7.7,9,9,24.1,1370,9,999999999,359,0.0220,0,88,999.000,999.0,99.0 +1989,7,16,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,21.1,74,101800,8,342,431,0,0,0,0,0,0,0,60,8.2,9,9,16.1,1370,9,999999999,379,0.0400,0,88,999.000,999.0,99.0 +1989,7,16,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,19.4,67,101800,0,0,419,0,0,0,0,0,0,0,70,7.2,8,8,24.1,1370,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1989,7,16,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,20.0,72,101900,0,0,406,0,0,0,0,0,0,0,60,8.2,6,6,24.1,7620,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1989,7,16,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,19.4,69,101900,0,0,405,0,0,0,0,0,0,0,50,7.2,6,6,24.1,7620,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1989,7,16,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,20.0,72,101900,0,0,411,0,0,0,0,0,0,0,90,4.1,7,7,24.1,7620,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1989,7,17,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,20.0,72,101800,0,0,406,0,0,0,0,0,0,0,70,6.2,6,6,24.1,7620,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1989,7,17,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,19.4,69,101800,0,0,405,0,0,0,0,0,0,0,60,6.7,6,6,24.1,7620,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1989,7,17,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,19.4,69,101800,0,0,410,0,0,0,0,0,0,0,70,6.2,7,7,24.1,7620,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1989,7,17,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,20.6,79,101800,0,0,411,0,0,0,0,0,0,0,60,4.6,8,8,24.1,1220,9,999999999,370,0.0400,0,88,999.000,999.0,99.0 +1989,7,17,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,20.0,76,101700,0,0,396,0,0,0,0,0,0,0,50,6.2,5,5,24.1,77777,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1989,7,17,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,20.0,74,101800,0,0,423,51,0,51,0,0,0,0,60,5.2,9,9,24.1,2740,9,999999999,359,0.0200,0,88,999.000,999.0,99.0 +1989,7,17,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,20.6,74,101800,138,1311,439,198,138,153,18100,10400,17000,1340,40,5.7,10,10,24.1,1220,9,999999999,370,0.0200,0,88,999.000,999.0,99.0 +1989,7,17,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,20.6,65,101800,433,1322,412,440,580,126,32600,52600,15300,2430,60,5.7,4,4,32.2,77777,9,999999999,370,0.0200,0,88,999.000,999.0,99.0 +1989,7,17,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,21.1,63,101800,712,1322,431,599,510,229,52100,51400,24400,5150,60,8.2,7,7,32.2,1370,9,999999999,390,0.0200,0,88,999.000,999.0,99.0 +1989,7,17,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,21.1,65,101900,955,1322,427,473,275,234,48000,29800,26400,6700,60,8.2,7,7,32.2,1370,9,999999999,379,0.0200,0,88,999.000,999.0,99.0 +1989,7,17,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,20.6,55,101900,1145,1322,428,883,749,162,85800,75600,20100,6880,80,7.7,4,4,40.2,77777,9,999999999,370,0.0200,0,88,999.000,999.0,99.0 +1989,7,17,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,20.6,55,101800,1269,1322,435,978,705,273,101000,71600,32100,21740,60,8.2,6,6,32.2,1370,9,999999999,370,0.0200,0,88,999.000,999.0,99.0 +1989,7,17,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,20.6,55,101800,1318,1322,435,1079,843,254,117500,86200,31400,38790,70,8.2,6,6,32.2,1370,9,999999999,370,0.0200,0,88,999.000,999.0,99.0 +1989,7,17,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,20.6,53,101700,1290,1322,438,774,575,258,87600,58600,30200,24290,70,8.2,6,6,32.2,3050,9,999999999,370,0.0200,0,88,999.000,999.0,99.0 +1989,7,17,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,21.1,55,101700,1185,1322,450,492,204,335,57500,22200,37600,16110,60,8.2,8,8,32.2,1370,9,999999999,379,0.0200,0,88,999.000,999.0,99.0 +1989,7,17,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,20.6,61,101700,1011,1322,446,278,72,235,32100,7300,26500,9470,40,7.2,9,9,24.1,1220,9,999999999,370,0.0200,0,88,999.000,999.0,99.0 +1989,7,17,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,18.9,57,101700,780,1322,424,221,211,140,29700,22500,16400,3160,70,8.8,7,7,32.2,1220,9,999999999,340,0.0200,0,88,999.000,999.0,99.0 +1989,7,17,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,19.4,59,101700,508,1322,413,102,389,39,20800,37400,6400,940,80,7.7,4,4,32.2,77777,9,999999999,350,0.0200,0,88,999.000,999.0,99.0 +1989,7,17,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,18.9,63,101700,215,1322,401,16,47,9,2000,3200,1500,150,60,7.2,3,3,32.2,77777,9,999999999,340,0.0200,0,88,999.000,999.0,99.0 +1989,7,17,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,19.4,67,101800,8,342,398,0,0,0,0,0,0,0,60,6.2,3,3,24.1,77777,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1989,7,17,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,20.0,69,101800,0,0,402,0,0,0,0,0,0,0,60,7.2,4,4,24.1,77777,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1989,7,17,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,20.0,69,101800,0,0,405,0,0,0,0,0,0,0,50,7.7,5,5,24.1,77777,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1989,7,17,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,19.4,69,101800,0,0,405,0,0,0,0,0,0,0,50,7.7,6,6,24.1,1220,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1989,7,17,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,18.9,67,101800,0,0,405,0,0,0,0,0,0,0,50,6.7,6,6,19.3,1220,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1989,7,18,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,18.9,67,101700,0,0,405,0,0,0,0,0,0,0,70,6.7,6,6,24.1,1220,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1989,7,18,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,17.8,62,101600,0,0,394,0,0,0,0,0,0,0,70,5.7,3,3,24.1,77777,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1989,7,18,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,18.3,67,101600,0,0,401,0,0,0,0,0,0,0,80,4.1,6,6,24.1,1370,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1989,7,18,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,17.8,64,101600,0,0,387,0,0,0,0,0,0,0,40,7.2,2,2,24.1,77777,9,999999999,309,0.0400,0,88,999.000,999.0,99.0 +1989,7,18,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,18.9,67,101600,0,0,409,0,0,0,0,0,0,0,60,5.7,7,7,24.1,1220,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1989,7,18,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,17.8,62,101600,0,0,403,53,89,43,0,0,0,0,70,5.2,6,6,24.1,7620,9,999999999,320,0.0470,0,88,999.000,999.0,99.0 +1989,7,18,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,16.1,54,101700,137,1311,390,255,566,69,12500,29300,9300,900,60,4.6,2,2,32.2,77777,9,999999999,290,0.0470,0,88,999.000,999.0,99.0 +1989,7,18,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,17.2,54,101700,431,1322,401,461,654,108,32500,57900,13600,1910,70,7.7,3,3,40.2,77777,9,999999999,300,0.0470,0,88,999.000,999.0,99.0 +1989,7,18,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,17.2,49,101700,711,1322,414,621,602,184,53800,60900,20900,4040,60,8.2,4,4,40.2,77777,9,999999999,300,0.0470,0,88,999.000,999.0,99.0 +1989,7,18,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,15.6,42,101600,955,1322,414,861,772,189,78700,78200,22200,5490,60,10.3,3,3,40.2,77777,9,999999999,279,0.0470,0,88,999.000,999.0,99.0 +1989,7,18,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,16.7,43,101700,1145,1322,426,753,478,293,76600,50000,33200,13470,50,7.2,5,5,40.2,77777,9,999999999,290,0.0470,0,88,999.000,999.0,99.0 +1989,7,18,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,18.3,48,101600,1269,1322,432,844,526,318,89900,55100,36900,25970,60,7.2,6,6,40.2,1370,9,999999999,329,0.0470,0,88,999.000,999.0,99.0 +1989,7,18,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,17.8,50,101600,1318,1322,429,864,533,344,95500,55900,39700,53900,60,7.7,7,7,32.2,1370,9,999999999,320,0.0470,0,88,999.000,999.0,99.0 +1989,7,18,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,17.8,51,101600,1290,1322,426,551,183,386,63100,19600,43900,28810,50,7.7,7,7,32.2,1370,9,999999999,309,0.0470,0,88,999.000,999.0,99.0 +1989,7,18,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,17.8,50,101500,1185,1322,429,501,325,253,60200,34100,29500,13310,50,7.7,7,7,32.2,1370,9,999999999,320,0.0470,0,88,999.000,999.0,99.0 +1989,7,18,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,17.8,53,101500,1011,1322,423,439,417,192,56600,43600,23200,6140,60,7.2,7,7,24.1,1370,9,999999999,320,0.0470,0,88,999.000,999.0,99.0 +1989,7,18,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,17.8,55,101500,780,1322,415,316,589,89,46600,59000,11800,2150,70,7.2,6,6,24.1,1370,9,999999999,320,0.0470,0,88,999.000,999.0,99.0 +1989,7,18,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,17.8,58,101500,508,1322,406,83,226,46,14500,21800,6200,970,60,6.7,5,5,24.1,77777,9,999999999,309,0.0470,0,88,999.000,999.0,99.0 +1989,7,18,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,17.2,58,101500,214,1322,399,11,36,6,1500,2500,1100,100,60,5.7,4,4,24.1,77777,9,999999999,300,0.0470,0,88,999.000,999.0,99.0 +1989,7,18,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,17.8,62,101500,8,320,394,0,0,0,0,0,0,0,60,6.2,3,3,24.1,77777,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1989,7,18,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,17.8,62,101600,0,0,403,0,0,0,0,0,0,0,60,8.2,6,6,24.1,1370,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1989,7,18,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,18.3,64,101600,0,0,404,0,0,0,0,0,0,0,60,5.7,6,6,24.1,1370,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1989,7,18,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,17.8,64,101600,0,0,411,0,0,0,0,0,0,0,70,5.2,8,8,24.1,7620,9,999999999,309,0.0400,0,88,999.000,999.0,99.0 +1989,7,18,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,17.8,64,101600,0,0,393,0,0,0,0,0,0,0,50,4.1,4,4,24.1,77777,9,999999999,309,0.0400,0,88,999.000,999.0,99.0 +1989,7,19,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,19.4,76,101600,0,0,416,0,0,0,0,0,0,0,60,4.1,9,9,24.1,1220,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1989,7,19,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,18.9,74,101500,0,0,386,0,0,0,0,0,0,0,40,5.2,3,3,24.1,77777,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1989,7,19,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,18.9,74,101500,0,0,382,0,0,0,0,0,0,0,60,5.7,2,2,24.1,77777,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1989,7,19,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,18.9,74,101500,0,0,382,0,0,0,0,0,0,0,70,3.6,2,2,24.1,77777,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1989,7,19,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,20.0,79,101500,0,0,408,0,0,0,0,0,0,0,70,3.6,8,8,24.1,730,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1989,7,19,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,20.0,82,101500,0,0,394,43,49,38,0,0,0,0,40,5.2,6,6,24.1,1220,9,999999999,359,0.0550,0,88,999.000,999.0,99.0 +1989,7,19,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,19.4,71,101500,135,1290,392,250,426,111,15200,20900,12900,2830,50,2.1,3,3,32.2,77777,9,999999999,350,0.0550,0,88,999.000,999.0,99.0 +1989,7,19,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,18.9,63,101500,430,1323,401,471,622,136,34600,56100,16300,2650,60,7.2,3,3,40.2,77777,9,999999999,340,0.0550,0,88,999.000,999.0,99.0 +1989,7,19,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,19.4,59,101500,710,1323,410,690,721,169,57300,70600,19300,3530,40,5.2,3,3,40.2,77777,9,999999999,350,0.0550,0,88,999.000,999.0,99.0 +1989,7,19,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,18.9,53,101500,954,1323,415,842,768,176,77400,78100,21000,5150,60,7.2,3,3,40.2,77777,9,999999999,340,0.0550,0,88,999.000,999.0,99.0 +1989,7,19,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,18.9,51,101500,1145,1323,425,959,776,212,94500,79300,25600,9630,60,9.3,5,5,40.2,77777,9,999999999,329,0.0550,0,88,999.000,999.0,99.0 +1989,7,19,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,19.4,52,101500,1269,1323,429,893,616,277,92200,62500,32000,21980,60,8.2,5,5,40.2,77777,9,999999999,350,0.0550,0,88,999.000,999.0,99.0 +1989,7,19,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,19.4,53,101500,1319,1323,423,1001,818,201,107300,82400,25000,29220,60,9.3,4,4,40.2,77777,9,999999999,350,0.0550,0,88,999.000,999.0,99.0 +1989,7,19,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,20.0,55,101500,1290,1323,423,838,728,184,94900,73500,23100,16510,50,10.3,4,4,40.2,77777,9,999999999,359,0.0550,0,88,999.000,999.0,99.0 +1989,7,19,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,20.0,55,101400,1185,1323,435,464,266,260,56400,29000,30400,12250,60,7.2,7,7,40.2,7620,9,999999999,359,0.0550,0,88,999.000,999.0,99.0 +1989,7,19,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,20.0,59,101400,1011,1323,417,493,583,148,64100,60000,18200,4900,80,7.7,4,4,32.2,77777,9,999999999,359,0.0550,0,88,999.000,999.0,99.0 +1989,7,19,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,20.0,61,101400,779,1323,414,287,465,108,41000,47200,13200,2610,60,7.7,4,4,24.1,77777,9,999999999,359,0.0550,0,88,999.000,999.0,99.0 +1989,7,19,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,21.1,69,101400,507,1323,421,80,100,63,11500,9800,7700,1150,90,6.2,7,7,24.1,1370,9,999999999,379,0.0550,0,88,999.000,999.0,99.0 +1989,7,19,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,21.1,74,101400,213,1323,415,9,7,8,1000,500,900,230,60,7.7,7,7,24.1,1370,9,999999999,379,0.0550,0,88,999.000,999.0,99.0 +1989,7,19,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,20.6,72,101400,8,320,414,0,0,0,0,0,0,0,60,5.2,7,7,24.1,1220,9,999999999,370,0.0400,0,88,999.000,999.0,99.0 +1989,7,19,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,21.1,77,101500,0,0,428,0,0,0,0,0,0,0,60,6.7,9,9,24.1,1220,9,999999999,390,0.0400,0,88,999.000,999.0,99.0 +1989,7,19,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,22.2,85,101500,0,0,438,0,0,0,0,0,0,0,60,6.2,10,10,16.1,610,9,999999999,409,0.0400,0,88,999.000,999.0,99.0 +1989,7,19,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,21.7,79,101500,0,0,428,0,0,0,0,0,0,0,60,6.2,9,9,24.1,610,9,999999999,400,0.0400,0,88,999.000,999.0,99.0 +1989,7,19,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,21.7,79,101500,0,0,413,0,0,0,0,0,0,0,60,6.2,7,7,24.1,1220,9,999999999,400,0.0400,0,88,999.000,999.0,99.0 +1989,7,20,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,21.7,82,101400,0,0,405,0,0,0,0,0,0,0,50,7.2,6,6,24.1,2740,9,999999999,400,0.0400,0,88,999.000,999.0,99.0 +1989,7,20,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,21.7,79,101400,0,0,408,0,0,0,0,0,0,0,60,6.7,6,6,24.1,2740,9,999999999,400,0.0400,0,88,999.000,999.0,99.0 +1989,7,20,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,21.7,77,101300,0,0,422,0,0,0,0,0,0,0,80,5.7,8,8,24.1,1220,9,999999999,400,0.0400,0,88,999.000,999.0,99.0 +1989,7,20,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,22.2,82,101300,0,0,414,0,0,0,0,0,0,0,50,7.2,7,7,24.1,2740,9,999999999,409,0.0400,0,88,999.000,999.0,99.0 +1989,7,20,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,22.2,82,101300,0,0,409,0,0,0,0,0,0,0,70,6.2,6,6,24.1,2740,9,999999999,409,0.0400,0,88,999.000,999.0,99.0 +1989,7,20,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,22.2,82,101300,0,0,420,54,78,45,0,0,0,0,60,6.2,8,8,24.1,1220,9,999999999,409,0.0290,0,88,999.000,999.0,99.0 +1989,7,20,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,22.2,77,101400,133,1290,415,184,145,137,15300,7600,14500,2880,50,7.2,6,6,32.2,2740,9,999999999,409,0.0290,0,88,999.000,999.0,99.0 +1989,7,20,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,22.8,82,101400,428,1323,433,145,37,125,15000,3400,13900,3360,90,6.2,9,9,24.1,1220,9,999999999,419,0.0290,0,88,999.000,999.0,99.0 +1989,7,20,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,22.2,67,101400,709,1323,448,251,85,189,25800,8500,21300,6030,90,8.2,9,9,24.1,1220,9,999999999,409,0.0290,0,88,999.000,999.0,99.0 +1989,7,20,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,23.3,88,101500,954,1323,443,246,62,192,26200,6200,21700,7490,110,8.2,10,10,16.1,1220,9,999999999,440,0.0290,0,88,999.000,999.0,99.0 +1989,7,20,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,22.8,74,101500,1144,1323,443,607,157,456,64700,16700,50200,19330,110,7.2,9,9,24.1,1220,9,999999999,419,0.0290,0,88,999.000,999.0,99.0 +1989,7,20,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,21.7,61,101400,1269,1323,454,589,144,445,64500,15400,49700,28990,90,7.2,9,9,24.1,1220,9,999999999,400,0.0290,0,88,999.000,999.0,99.0 +1989,7,20,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,22.8,85,101400,1319,1323,442,187,6,181,23700,400,23200,9410,90,6.2,10,10,11.3,460,9,999999999,419,0.0290,0,88,999.000,999.0,99.0 +1989,7,20,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,23.9,85,101400,1290,1323,450,354,28,329,39500,2900,36700,21950,120,8.2,10,10,16.1,1220,9,999999999,450,0.0290,0,88,999.000,999.0,99.0 +1989,7,20,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,22.8,79,101500,1185,1323,449,289,0,289,34700,0,34700,13670,110,8.8,10,10,24.1,610,9,999999999,419,0.0290,0,88,999.000,999.0,99.0 +1989,7,20,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,21.7,77,101400,1011,1323,444,256,4,253,30300,300,30100,11810,130,6.2,10,10,24.1,1220,9,999999999,400,0.0290,0,88,999.000,999.0,99.0 +1989,7,20,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,22.8,82,101400,779,1323,445,152,1,152,18100,100,18100,7040,120,4.6,10,10,24.1,1220,9,999999999,419,0.0290,0,88,999.000,999.0,99.0 +1989,7,20,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,22.2,82,101500,506,1323,441,56,4,55,6900,200,6800,2500,60,3.6,10,10,24.1,1220,9,999999999,409,0.0290,0,88,999.000,999.0,99.0 +1989,7,20,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,21.7,79,101500,211,1323,441,6,0,6,800,0,800,260,10,2.6,10,10,16.1,610,9,999999999,400,0.0290,0,88,999.000,999.0,99.0 +1989,7,20,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,22.2,88,101600,7,320,434,0,0,0,0,0,0,0,220,2.6,10,10,4.8,460,9,999999999,409,0.0400,0,88,999.000,999.0,99.0 +1989,7,20,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,21.7,87,101600,0,0,431,0,0,0,0,0,0,0,70,2.1,10,10,4.8,460,9,999999999,390,0.0400,0,88,999.000,999.0,99.0 +1989,7,20,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,22.2,90,101700,0,0,431,0,0,0,0,0,0,0,80,5.2,10,10,8.0,460,9,999999999,409,0.0400,0,88,999.000,999.0,99.0 +1989,7,20,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,22.8,97,101700,0,0,429,0,0,0,0,0,0,0,250,1.5,10,10,11.3,520,9,999999999,419,0.0400,0,88,999.000,999.0,99.0 +1989,7,20,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,22.8,94,101700,0,0,432,0,0,0,0,0,0,0,60,2.6,10,10,11.3,550,9,999999999,430,0.0400,0,88,999.000,999.0,99.0 +1989,7,21,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,21.7,85,101600,0,0,434,0,0,0,0,0,0,0,130,4.6,10,10,11.3,700,9,999999999,400,0.0400,0,88,999.000,999.0,99.0 +1989,7,21,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,22.2,90,101600,0,0,431,0,0,0,0,0,0,0,200,2.1,10,10,24.1,1070,9,999999999,409,0.0400,0,88,999.000,999.0,99.0 +1989,7,21,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,22.2,90,101600,0,0,431,0,0,0,0,0,0,0,310,2.1,10,10,24.1,1070,9,999999999,409,0.0400,0,88,999.000,999.0,99.0 +1989,7,21,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,22.8,94,101600,0,0,432,0,0,0,0,0,0,0,350,2.6,10,10,24.1,1220,9,999999999,419,0.0400,0,88,999.000,999.0,99.0 +1989,7,21,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,21.7,87,101600,0,0,431,0,0,0,0,0,0,0,0,0.0,10,10,24.1,1370,9,999999999,390,0.0400,0,88,999.000,999.0,99.0 +1989,7,21,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,22.2,90,101600,0,0,431,41,0,41,0,0,0,0,60,2.1,10,10,24.1,2440,9,999999999,409,0.0380,0,88,999.000,999.0,99.0 +1989,7,21,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,22.8,88,101700,132,1268,426,110,1,110,11100,100,11100,1270,0,0.0,9,9,24.1,2440,9,999999999,419,0.0380,0,88,999.000,999.0,99.0 +1989,7,21,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,22.8,82,101700,427,1323,445,166,10,160,17900,700,17700,5180,90,2.1,10,10,24.1,2440,9,999999999,419,0.0380,0,88,999.000,999.0,99.0 +1989,7,21,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,22.8,79,101700,708,1323,449,278,2,276,31000,200,30900,10110,40,3.1,10,10,24.1,1370,9,999999999,419,0.0380,0,88,999.000,999.0,99.0 +1989,7,21,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,22.8,79,101700,953,1323,449,384,2,382,43600,200,43400,15100,50,3.6,10,10,24.1,1370,9,999999999,419,0.0380,0,88,999.000,999.0,99.0 +1989,7,21,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,22.8,74,101700,1144,1323,455,391,11,380,45600,1000,44700,16500,130,3.1,10,10,24.1,1370,9,999999999,419,0.0380,0,88,999.000,999.0,99.0 +1989,7,21,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,22.8,70,101800,1269,1323,462,363,4,360,43500,400,43200,16400,10,4.1,10,10,24.1,1370,9,999999999,430,0.0380,0,88,999.000,999.0,99.0 +1989,7,21,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,22.2,65,101700,1319,1323,464,424,3,421,50400,300,50100,18520,80,6.7,10,10,32.2,2440,9,999999999,409,0.0380,0,88,999.000,999.0,99.0 +1989,7,21,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,22.2,63,101600,1290,1323,468,354,1,353,42500,100,42400,16240,50,7.2,10,10,32.2,2440,9,999999999,409,0.0380,0,88,999.000,999.0,99.0 +1989,7,21,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,22.2,65,101600,1185,1323,464,367,5,363,43400,500,43000,16170,60,7.2,10,10,32.2,2440,9,999999999,409,0.0380,0,88,999.000,999.0,99.0 +1989,7,21,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,21.7,61,101600,1011,1323,467,265,3,263,31300,300,31100,12160,60,6.2,10,10,24.1,2740,9,999999999,400,0.0380,0,88,999.000,999.0,99.0 +1989,7,21,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,21.1,63,101600,779,1323,460,176,0,176,20700,0,20700,7910,60,6.2,10,10,24.1,2740,9,999999999,379,0.0380,0,88,999.000,999.0,99.0 +1989,7,21,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,21.7,69,101600,505,1323,454,65,0,65,7800,0,7800,2900,70,7.2,10,10,24.1,2740,9,999999999,390,0.0380,0,88,999.000,999.0,99.0 +1989,7,21,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,21.7,74,101600,210,1323,435,7,4,6,700,300,700,180,60,6.2,9,9,24.1,2740,9,999999999,400,0.0380,0,88,999.000,999.0,99.0 +1989,7,21,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,21.1,72,101700,7,298,446,0,0,0,0,0,0,0,60,6.2,10,10,24.1,2740,9,999999999,390,0.0400,0,88,999.000,999.0,99.0 +1989,7,21,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,21.1,74,101700,0,0,431,0,0,0,0,0,0,0,60,5.7,9,9,24.1,2740,9,999999999,379,0.0400,0,88,999.000,999.0,99.0 +1989,7,21,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,21.1,74,101700,0,0,431,0,0,0,0,0,0,0,60,7.2,9,9,24.1,7620,9,999999999,379,0.0400,0,88,999.000,999.0,99.0 +1989,7,21,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,21.1,74,101800,0,0,443,0,0,0,0,0,0,0,70,4.6,10,10,24.1,7620,9,999999999,379,0.0400,0,88,999.000,999.0,99.0 +1989,7,21,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,21.1,74,101700,0,0,415,0,0,0,0,0,0,0,60,5.2,7,7,24.1,7620,9,999999999,379,0.0400,0,88,999.000,999.0,99.0 +1989,7,22,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,21.1,77,101700,0,0,404,0,0,0,0,0,0,0,70,5.2,5,5,24.1,77777,9,999999999,390,0.0400,0,88,999.000,999.0,99.0 +1989,7,22,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,21.1,77,101700,0,0,404,0,0,0,0,0,0,0,70,4.6,5,5,24.1,77777,9,999999999,390,0.0400,0,88,999.000,999.0,99.0 +1989,7,22,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,21.1,77,101600,0,0,398,0,0,0,0,0,0,0,60,4.1,3,3,24.1,77777,9,999999999,390,0.0400,0,88,999.000,999.0,99.0 +1989,7,22,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,21.1,77,101600,0,0,412,0,0,0,0,0,0,0,60,4.6,7,7,24.1,2740,9,999999999,390,0.0400,0,88,999.000,999.0,99.0 +1989,7,22,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,21.7,79,101600,0,0,441,0,0,0,0,0,0,0,60,7.2,10,10,24.1,1220,9,999999999,400,0.0400,0,88,999.000,999.0,99.0 +1989,7,22,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,21.7,79,101600,0,0,419,57,68,49,0,0,0,0,60,6.2,8,8,24.1,2740,9,999999999,400,0.0270,0,88,999.000,999.0,99.0 +1989,7,22,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,16.7,60,101600,130,1268,418,128,37,116,13000,2700,12700,1530,40,5.2,9,9,24.1,1220,9,999999999,300,0.0270,0,88,999.000,999.0,99.0 +1989,7,22,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,15.6,52,101600,426,1323,435,193,3,191,20700,200,20700,5560,70,4.1,10,10,24.1,2440,9,999999999,279,0.0270,0,88,999.000,999.0,99.0 +1989,7,22,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,22.8,74,101600,707,1323,455,343,8,337,37500,800,37100,11040,60,5.7,10,10,24.1,2440,9,999999999,419,0.0270,0,88,999.000,999.0,99.0 +1989,7,22,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,23.9,88,101700,952,1323,447,226,18,211,26700,1500,25600,10010,90,6.2,10,10,16.1,460,9,999999999,450,0.0270,0,88,999.000,999.0,99.0 +1989,7,22,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,22.8,70,101700,1144,1323,462,394,1,393,46000,100,45900,16860,70,6.7,10,10,19.3,1220,9,999999999,430,0.0270,0,88,999.000,999.0,99.0 +1989,7,22,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,21.7,65,101700,1269,1323,460,464,4,460,54400,400,54000,19350,60,5.7,10,10,24.1,1220,9,999999999,400,0.0270,0,88,999.000,999.0,99.0 +1989,7,22,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,22.2,65,101700,1319,1323,464,414,3,411,49300,300,49000,18210,60,7.2,10,10,19.3,1220,9,999999999,409,0.0270,0,88,999.000,999.0,99.0 +1989,7,22,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,22.2,70,101600,1290,1323,457,466,5,462,54900,500,54400,19530,70,7.2,10,10,24.1,1220,9,999999999,409,0.0270,0,88,999.000,999.0,99.0 +1989,7,22,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,22.2,72,101600,1185,1323,454,339,3,337,40400,300,40100,15340,60,6.7,10,10,24.1,1220,9,999999999,409,0.0270,0,88,999.000,999.0,99.0 +1989,7,22,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,22.8,67,101600,1010,1323,465,281,2,280,33100,200,32900,12740,70,7.7,10,10,24.1,2440,9,999999999,419,0.0270,0,88,999.000,999.0,99.0 +1989,7,22,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,21.7,69,101600,778,1323,454,175,0,174,20400,0,20400,7840,80,6.7,10,10,24.1,1220,9,999999999,390,0.0270,0,88,999.000,999.0,99.0 +1989,7,22,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,22.8,85,101600,504,1323,442,39,0,39,4900,0,4900,1830,110,6.2,10,10,19.3,1220,9,999999999,430,0.0270,0,88,999.000,999.0,99.0 +1989,7,22,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,23.3,88,101600,209,1323,443,4,0,4,500,0,500,180,80,4.1,10,10,19.3,1220,9,999999999,440,0.0270,0,88,999.000,999.0,99.0 +1989,7,22,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,22.8,82,101700,7,298,445,0,0,0,0,0,0,0,100,5.2,10,10,19.3,1220,9,999999999,419,0.0400,0,88,999.000,999.0,99.0 +1989,7,22,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,22.8,85,101700,0,0,430,0,0,0,0,0,0,0,70,3.6,9,9,19.3,2440,9,999999999,430,0.0400,0,88,999.000,999.0,99.0 +1989,7,22,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,22.2,82,101800,0,0,429,0,0,0,0,0,0,0,80,3.6,9,9,19.3,2440,9,999999999,409,0.0400,0,88,999.000,999.0,99.0 +1989,7,22,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,21.1,77,101800,0,0,407,0,0,0,0,0,0,0,70,3.1,6,6,19.3,7620,9,999999999,390,0.0400,0,88,999.000,999.0,99.0 +1989,7,22,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,21.7,82,101800,0,0,416,0,0,0,0,0,0,0,60,3.1,8,8,24.1,2440,9,999999999,400,0.0400,0,88,999.000,999.0,99.0 +1989,7,23,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,21.7,79,101700,0,0,428,0,0,0,0,0,0,0,70,4.1,9,9,24.1,2740,9,999999999,400,0.0400,0,88,999.000,999.0,99.0 +1989,7,23,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,21.7,79,101700,0,0,428,0,0,0,0,0,0,0,60,4.6,9,9,24.1,2740,9,999999999,400,0.0400,0,88,999.000,999.0,99.0 +1989,7,23,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,21.1,77,101600,0,0,412,0,0,0,0,0,0,0,80,4.1,7,7,24.1,2740,9,999999999,390,0.0400,0,88,999.000,999.0,99.0 +1989,7,23,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,21.7,82,101600,0,0,416,0,0,0,0,0,0,0,60,4.1,8,8,24.1,2740,9,999999999,400,0.0400,0,88,999.000,999.0,99.0 +1989,7,23,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,21.7,82,101700,0,0,437,0,0,0,0,0,0,0,70,3.1,10,10,24.1,2740,9,999999999,400,0.0400,0,88,999.000,999.0,99.0 +1989,7,23,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,21.7,82,101700,0,0,425,54,19,51,0,0,0,0,80,3.1,9,9,24.1,1220,9,999999999,400,0.0160,0,88,999.000,999.0,99.0 +1989,7,23,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,21.7,77,101700,128,1268,431,200,121,161,18700,9200,17700,1130,60,4.6,9,9,24.1,2740,9,999999999,400,0.0160,0,88,999.000,999.0,99.0 +1989,7,23,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,21.7,72,101800,424,1323,438,284,58,253,29500,5600,27800,5210,60,3.1,9,9,24.1,2740,9,999999999,400,0.0160,0,88,999.000,999.0,99.0 +1989,7,23,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,21.7,69,101800,706,1323,454,307,4,305,34000,400,33800,10590,70,5.2,10,10,24.1,2740,9,999999999,400,0.0160,0,88,999.000,999.0,99.0 +1989,7,23,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,21.7,63,101800,952,1323,451,545,213,361,56000,22500,39800,11240,70,6.2,9,9,24.1,2740,9,999999999,400,0.0160,0,88,999.000,999.0,99.0 +1989,7,23,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,21.7,59,101800,1144,1323,458,573,217,365,60700,23600,40300,15640,60,7.2,9,9,24.1,2740,9,999999999,400,0.0160,0,88,999.000,999.0,99.0 +1989,7,23,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,21.7,65,101800,1269,1323,448,571,148,423,62700,15800,47400,27460,60,6.2,9,9,24.1,2740,9,999999999,400,0.0160,0,88,999.000,999.0,99.0 +1989,7,23,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,21.7,63,101800,1319,1323,451,588,210,383,66200,22900,43300,48470,60,6.2,9,9,24.1,2740,9,999999999,400,0.0160,0,88,999.000,999.0,99.0 +1989,7,23,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,21.1,61,101800,1290,1323,450,500,106,404,56500,11400,45400,30090,60,8.2,9,9,24.1,2740,9,999999999,379,0.0160,0,88,999.000,999.0,99.0 +1989,7,23,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,20.6,59,101700,1185,1323,440,557,303,325,66400,33000,36800,15560,60,7.2,8,8,24.1,2740,9,999999999,370,0.0160,0,88,999.000,999.0,99.0 +1989,7,23,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,21.1,63,101700,1010,1323,437,394,202,274,47200,21900,30500,8650,70,8.2,8,8,24.1,2740,9,999999999,379,0.0160,0,88,999.000,999.0,99.0 +1989,7,23,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,20.6,61,101700,778,1323,430,199,127,150,25400,13400,17500,4000,60,6.7,7,7,24.1,7620,9,999999999,370,0.0160,0,88,999.000,999.0,99.0 +1989,7,23,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,20.0,63,101700,503,1323,411,102,407,37,21300,39100,6400,900,60,6.2,6,4,24.1,7620,9,999999999,359,0.0160,0,88,999.000,999.0,99.0 +1989,7,23,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,20.6,69,101700,208,1323,413,14,14,11,1600,1000,1400,230,90,6.2,6,6,24.1,7620,9,999999999,370,0.0160,0,88,999.000,999.0,99.0 +1989,7,23,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,21.1,74,101800,6,298,407,0,0,0,0,0,0,0,60,4.6,5,5,24.1,77777,9,999999999,379,0.0400,0,88,999.000,999.0,99.0 +1989,7,23,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,21.7,79,101900,0,0,413,0,0,0,0,0,0,0,70,4.6,7,7,24.1,2740,9,999999999,400,0.0400,0,88,999.000,999.0,99.0 +1989,7,23,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,21.7,79,101900,0,0,419,0,0,0,0,0,0,0,70,4.6,8,8,24.1,1220,9,999999999,400,0.0400,0,88,999.000,999.0,99.0 +1989,7,23,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,21.1,77,102000,0,0,419,0,0,0,0,0,0,0,70,6.2,8,8,24.1,1220,9,999999999,390,0.0400,0,88,999.000,999.0,99.0 +1989,7,23,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,21.7,82,101900,0,0,410,0,0,0,0,0,0,0,60,5.2,7,7,24.1,1220,9,999999999,400,0.0400,0,88,999.000,999.0,99.0 +1989,7,24,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,20.6,76,101900,0,0,403,0,0,0,0,0,0,0,60,5.2,6,6,24.1,1220,9,999999999,370,0.0400,0,88,999.000,999.0,99.0 +1989,7,24,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,18.9,71,101800,0,0,385,0,0,0,0,0,0,0,70,4.1,2,2,24.1,77777,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1989,7,24,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,19.4,74,101800,0,0,389,0,0,0,0,0,0,0,60,5.2,3,3,24.1,77777,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1989,7,24,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,19.4,74,101800,0,0,380,0,0,0,0,0,0,0,60,5.2,1,1,24.1,77777,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1989,7,24,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,19.4,74,101800,0,0,380,0,0,0,0,0,0,0,60,5.2,1,1,24.1,77777,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1989,7,24,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,19.4,74,101800,0,0,385,59,297,26,0,0,0,0,70,6.2,2,2,24.1,77777,9,999999999,350,0.0240,0,88,999.000,999.0,99.0 +1989,7,24,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,20.0,72,101900,127,1246,396,248,587,59,11700,30600,8400,830,60,5.2,3,3,32.2,77777,9,999999999,359,0.0240,0,88,999.000,999.0,99.0 +1989,7,24,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,19.4,63,101900,423,1324,400,445,688,78,30900,61800,11100,1470,70,6.2,2,2,32.2,77777,9,999999999,350,0.0240,0,88,999.000,999.0,99.0 +1989,7,24,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,20.0,59,101900,706,1324,404,662,846,52,53200,83100,8800,1410,70,6.2,1,1,32.2,77777,9,999999999,359,0.0240,0,88,999.000,999.0,99.0 +1989,7,24,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,18.9,53,101900,951,1324,406,814,850,78,72100,84900,10900,2260,60,8.2,1,1,32.2,77777,9,999999999,340,0.0240,0,88,999.000,999.0,99.0 +1989,7,24,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,18.9,51,101900,1144,1324,409,933,901,67,88800,90600,10400,2940,60,6.7,1,1,40.2,77777,9,999999999,340,0.0240,0,88,999.000,999.0,99.0 +1989,7,24,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,17.8,48,101900,1269,1324,408,813,679,135,86000,69400,19400,10460,70,10.3,1,1,40.2,77777,9,999999999,320,0.0240,0,88,999.000,999.0,99.0 +1989,7,24,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,17.8,46,101800,1319,1324,411,976,932,65,104400,93900,10500,8470,70,7.2,1,1,40.2,77777,9,999999999,309,0.0240,0,88,999.000,999.0,99.0 +1989,7,24,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,17.8,46,101800,1290,1324,411,861,901,52,98400,90800,9600,4490,60,8.2,1,1,40.2,77777,9,999999999,309,0.0240,0,88,999.000,999.0,99.0 +1989,7,24,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,18.3,50,101800,1185,1324,408,711,858,55,87000,86400,9400,2810,60,8.2,1,1,40.2,77777,9,999999999,329,0.0240,0,88,999.000,999.0,99.0 +1989,7,24,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,19.4,55,101700,1010,1324,419,519,604,163,66900,61900,19600,5330,70,8.8,4,4,32.2,77777,9,999999999,350,0.0240,0,88,999.000,999.0,99.0 +1989,7,24,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,18.3,53,101700,777,1324,412,312,625,74,48000,63000,11000,1870,40,8.8,3,3,32.2,77777,9,999999999,329,0.0240,0,88,999.000,999.0,99.0 +1989,7,24,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,18.3,57,101800,502,1324,402,104,417,38,21700,40000,6500,910,50,7.7,2,2,32.2,77777,9,999999999,329,0.0240,0,88,999.000,999.0,99.0 +1989,7,24,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,18.3,62,101800,206,1324,393,13,44,6,1500,3200,1000,130,70,6.2,2,2,32.2,77777,9,999999999,320,0.0240,0,88,999.000,999.0,99.0 +1989,7,24,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,18.3,64,101900,6,276,385,0,0,0,0,0,0,0,80,6.7,1,1,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1989,7,24,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,18.3,67,101900,0,0,382,0,0,0,0,0,0,0,60,6.2,1,1,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1989,7,24,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,18.9,67,101900,0,0,405,0,0,0,0,0,0,0,60,6.7,6,6,24.1,1370,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1989,7,24,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,18.9,69,102000,0,0,398,0,0,0,0,0,0,0,50,4.6,5,5,24.1,77777,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1989,7,24,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,18.9,71,101900,0,0,385,0,0,0,0,0,0,0,60,4.1,2,2,24.1,77777,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1989,7,25,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,18.9,71,101800,0,0,385,0,0,0,0,0,0,0,80,4.6,2,2,24.1,77777,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1989,7,25,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,18.9,74,101800,0,0,382,0,0,0,0,0,0,0,60,4.6,2,2,24.1,77777,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1989,7,25,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,18.9,74,101700,0,0,382,0,0,0,0,0,0,0,60,6.2,2,2,24.1,77777,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1989,7,25,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,18.9,74,101700,0,0,382,0,0,0,0,0,0,0,70,6.2,2,2,24.1,77777,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1989,7,25,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,18.3,71,101700,0,0,381,0,0,0,0,0,0,0,70,5.7,2,2,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1989,7,25,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,18.9,74,101800,0,0,386,52,147,35,0,0,0,0,70,3.6,3,3,24.1,77777,9,999999999,340,0.0320,0,88,999.000,999.0,99.0 +1989,7,25,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,20.0,79,101900,125,1247,401,181,207,114,13800,10800,12600,2390,70,3.6,7,7,24.1,1370,9,999999999,359,0.0320,0,88,999.000,999.0,99.0 +1989,7,25,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,18.9,67,101900,422,1324,398,410,499,143,30600,44700,16400,2810,50,3.6,4,4,24.1,77777,9,999999999,340,0.0320,0,88,999.000,999.0,99.0 +1989,7,25,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,20.0,69,101900,705,1324,420,525,369,259,48200,38500,27700,6240,70,5.2,8,8,24.1,1370,9,999999999,359,0.0320,0,88,999.000,999.0,99.0 +1989,7,25,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,18.9,60,101900,951,1324,413,676,337,383,66700,36200,40600,11800,60,6.7,6,6,24.1,1370,9,999999999,340,0.0320,0,88,999.000,999.0,99.0 +1989,7,25,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,18.9,53,101900,1143,1324,419,832,620,236,81800,63000,27200,10540,60,3.6,4,4,32.2,77777,9,999999999,340,0.0320,0,88,999.000,999.0,99.0 +1989,7,25,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,17.8,48,101800,1269,1324,413,991,835,157,103200,84800,21600,11960,70,6.2,2,2,32.2,77777,9,999999999,320,0.0320,0,88,999.000,999.0,99.0 +1989,7,25,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,18.9,53,101800,1319,1324,411,963,816,165,105400,82900,22600,23500,50,6.2,2,2,32.2,77777,9,999999999,340,0.0320,0,88,999.000,999.0,99.0 +1989,7,25,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,17.8,48,101700,1291,1324,413,853,792,143,93800,79400,16200,10730,60,8.2,2,2,32.2,77777,9,999999999,320,0.0320,0,88,999.000,999.0,99.0 +1989,7,25,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,17.2,46,101700,1185,1324,412,688,761,106,81500,76400,13000,4700,60,8.2,2,2,32.2,77777,9,999999999,300,0.0320,0,88,999.000,999.0,99.0 +1989,7,25,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,17.8,50,101700,1009,1324,414,510,679,110,67900,69000,15200,3540,40,8.2,3,3,40.2,77777,9,999999999,320,0.0320,0,88,999.000,999.0,99.0 +1989,7,25,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,17.2,51,101700,776,1324,410,311,605,80,46900,60800,11200,1980,60,8.2,4,4,32.2,77777,9,999999999,309,0.0320,0,88,999.000,999.0,99.0 +1989,7,25,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,18.3,57,101700,501,1324,416,71,166,45,12500,15900,6500,810,60,8.2,6,6,32.2,7620,9,999999999,329,0.0320,0,88,999.000,999.0,99.0 +1989,7,25,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,18.9,63,101700,204,1324,422,9,5,8,1000,400,900,230,60,7.2,8,8,24.1,1370,9,999999999,340,0.0320,0,88,999.000,999.0,99.0 +1989,7,25,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,20.0,76,101800,6,276,419,0,0,0,0,0,0,0,70,7.7,9,9,16.1,610,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1989,7,25,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,18.9,71,101800,0,0,418,0,0,0,0,0,0,0,40,5.2,9,9,16.1,610,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1989,7,25,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,19.4,74,101900,0,0,410,0,0,0,0,0,0,0,60,7.2,8,8,24.1,1220,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1989,7,25,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,18.9,71,101900,0,0,389,0,0,0,0,0,0,0,60,6.2,3,3,24.1,77777,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1989,7,25,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,20.0,84,101900,0,0,391,0,0,0,0,0,0,0,40,4.1,6,6,19.3,1220,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1989,7,26,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,19.4,79,101800,0,0,380,0,0,0,0,0,0,0,60,3.1,2,2,24.1,77777,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1989,7,26,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,19.4,79,101800,0,0,380,0,0,0,0,0,0,0,60,3.6,2,2,19.3,77777,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1989,7,26,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,19.4,79,101700,0,0,380,0,0,0,0,0,0,0,60,4.6,2,2,19.3,77777,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1989,7,26,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,20.0,82,101700,0,0,380,0,0,0,0,0,0,0,70,3.6,2,2,19.3,77777,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1989,7,26,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,19.4,79,101700,0,0,380,0,0,0,0,0,0,0,50,4.1,2,2,24.1,77777,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1989,7,26,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,19.4,82,101700,0,0,381,61,353,20,0,0,0,0,40,3.1,3,3,24.1,77777,9,999999999,350,0.0260,0,88,999.000,999.0,99.0 +1989,7,26,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,19.4,74,101800,124,1225,389,209,455,64,10800,23500,8400,1260,50,2.1,3,3,32.2,77777,9,999999999,350,0.0260,0,88,999.000,999.0,99.0 +1989,7,26,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,19.4,65,101800,420,1324,397,496,777,81,33800,69400,11700,1510,70,4.1,2,2,32.2,77777,9,999999999,350,0.0260,0,88,999.000,999.0,99.0 +1989,7,26,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,20.0,63,101800,704,1324,404,682,834,81,55800,82700,11700,1850,80,5.2,2,2,32.2,77777,9,999999999,359,0.0260,0,88,999.000,999.0,99.0 +1989,7,26,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,19.4,57,101900,950,1324,404,821,886,54,73000,88700,9200,1780,70,5.7,1,1,40.2,77777,9,999999999,350,0.0260,0,88,999.000,999.0,99.0 +1989,7,26,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,18.9,51,101800,1143,1324,415,948,873,108,89200,87500,13500,4110,70,5.2,2,2,40.2,77777,9,999999999,329,0.0260,0,88,999.000,999.0,99.0 +1989,7,26,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,18.9,50,101800,1269,1324,418,953,833,120,94700,83600,14400,7850,70,6.7,2,2,40.2,77777,9,999999999,340,0.0260,0,88,999.000,999.0,99.0 +1989,7,26,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,18.9,50,101800,1319,1324,418,853,721,147,94400,73600,20900,20910,60,6.2,2,2,40.2,77777,9,999999999,340,0.0260,0,88,999.000,999.0,99.0 +1989,7,26,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,18.9,48,101700,1291,1324,421,936,934,98,104600,93900,12900,7880,60,7.2,2,2,40.2,77777,9,999999999,340,0.0260,0,88,999.000,999.0,99.0 +1989,7,26,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,19.4,52,101600,1185,1324,419,577,599,119,71900,61300,16900,6110,60,8.8,2,2,40.2,77777,9,999999999,350,0.0260,0,88,999.000,999.0,99.0 +1989,7,26,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,19.4,53,101700,1009,1324,419,520,750,78,68000,75100,10600,2470,60,8.2,3,3,40.2,77777,9,999999999,350,0.0260,0,88,999.000,999.0,99.0 +1989,7,26,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,18.9,55,101600,775,1324,413,241,392,92,34900,39900,11500,2250,60,8.2,3,3,40.2,77777,9,999999999,340,0.0260,0,88,999.000,999.0,99.0 +1989,7,26,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,20.0,63,101700,500,1324,411,78,79,66,11000,7800,8100,1530,70,8.2,4,4,32.2,77777,9,999999999,359,0.0260,0,88,999.000,999.0,99.0 +1989,7,26,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,19.4,67,101700,203,1324,401,13,46,6,1500,3300,1000,130,60,7.2,4,4,24.1,77777,9,999999999,350,0.0260,0,88,999.000,999.0,99.0 +1989,7,26,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,19.4,69,101800,5,276,399,0,0,0,0,0,0,0,70,7.2,4,4,24.1,77777,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1989,7,26,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,19.4,71,101900,0,0,392,0,0,0,0,0,0,0,70,7.2,3,3,24.1,77777,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1989,7,26,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,19.4,71,102000,0,0,395,0,0,0,0,0,0,0,70,6.2,4,4,24.1,77777,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1989,7,26,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,19.4,71,102000,0,0,407,0,0,0,0,0,0,0,60,4.1,7,7,24.1,1220,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1989,7,26,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,18.9,71,101900,0,0,392,0,0,0,0,0,0,0,70,4.1,4,4,24.1,77777,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1989,7,27,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,18.9,69,101900,0,0,388,0,0,0,0,0,0,0,70,4.1,2,2,24.1,77777,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1989,7,27,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,19.4,74,101800,0,0,392,0,0,0,0,0,0,0,60,4.1,4,4,24.1,77777,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1989,7,27,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,19.4,74,101800,0,0,389,0,0,0,0,0,0,0,70,4.6,3,3,24.1,77777,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1989,7,27,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,20.0,79,101800,0,0,390,0,0,0,0,0,0,0,70,4.1,4,4,24.1,77777,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1989,7,27,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,20.0,79,101800,0,0,387,0,0,0,0,0,0,0,70,3.6,3,3,24.1,77777,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1989,7,27,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,20.0,76,101800,0,0,386,55,199,31,0,0,0,0,70,4.1,2,2,24.1,77777,9,999999999,359,0.0600,0,88,999.000,999.0,99.0 +1989,7,27,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,19.4,74,101900,122,1225,385,226,499,67,11500,25600,8800,1330,60,5.2,2,2,32.2,77777,9,999999999,350,0.0600,0,88,999.000,999.0,99.0 +1989,7,27,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,20.0,67,101900,419,1324,393,461,748,62,30600,67300,9300,1180,50,5.2,1,1,32.2,77777,9,999999999,359,0.0600,0,88,999.000,999.0,99.0 +1989,7,27,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,19.4,59,101900,703,1324,401,667,809,84,54400,80100,11800,1900,60,7.7,1,1,32.2,77777,9,999999999,350,0.0600,0,88,999.000,999.0,99.0 +1989,7,27,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,18.9,51,101900,950,1324,415,834,798,143,74600,79800,17200,3790,80,7.2,2,2,32.2,77777,9,999999999,340,0.0600,0,88,999.000,999.0,99.0 +1989,7,27,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,19.4,53,101900,1143,1324,415,951,840,143,93000,85200,19300,6150,60,6.7,2,2,32.2,77777,9,999999999,350,0.0600,0,88,999.000,999.0,99.0 +1989,7,27,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,18.9,50,101900,1269,1324,418,979,863,116,97300,86700,14100,7630,70,7.7,2,2,32.2,77777,9,999999999,340,0.0600,0,88,999.000,999.0,99.0 +1989,7,27,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,20.6,61,101800,1319,1324,425,740,527,225,81200,54200,27100,32660,60,9.3,6,6,32.2,1370,9,999999999,370,0.0600,0,88,999.000,999.0,99.0 +1989,7,27,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,19.4,52,101800,1291,1324,429,803,622,244,91300,63600,29100,22800,50,7.7,5,5,32.2,77777,9,999999999,350,0.0600,0,88,999.000,999.0,99.0 +1989,7,27,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,18.3,48,101700,1185,1324,425,808,838,168,97100,84600,21300,8150,60,7.7,4,4,32.2,77777,9,999999999,329,0.0600,0,88,999.000,999.0,99.0 +1989,7,27,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,19.4,53,101700,1009,1324,426,468,510,168,59600,52200,19700,5460,60,8.2,5,5,32.2,77777,9,999999999,350,0.0600,0,88,999.000,999.0,99.0 +1989,7,27,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,18.9,55,101700,775,1324,413,320,645,76,49200,64900,11200,1910,60,8.2,3,3,32.2,77777,9,999999999,340,0.0600,0,88,999.000,999.0,99.0 +1989,7,27,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,19.4,61,101700,499,1324,407,91,246,53,16700,23500,7800,960,60,6.2,3,3,32.2,77777,9,999999999,350,0.0600,0,88,999.000,999.0,99.0 +1989,7,27,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,19.4,65,101800,201,1324,401,7,21,4,900,1400,700,60,60,7.7,3,3,24.1,77777,9,999999999,350,0.0600,0,88,999.000,999.0,99.0 +1989,7,27,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,19.4,69,101800,5,254,396,0,0,0,0,0,0,0,70,8.2,3,3,24.1,77777,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1989,7,27,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,19.4,69,101800,0,0,396,0,0,0,0,0,0,0,60,7.2,3,3,24.1,77777,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1989,7,27,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,19.4,69,101900,0,0,392,0,0,0,0,0,0,0,60,8.2,2,2,24.1,77777,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1989,7,27,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,19.4,69,101900,0,0,396,0,0,0,0,0,0,0,70,7.7,3,3,24.1,77777,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1989,7,27,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,20.6,79,101900,0,0,400,0,0,0,0,0,0,0,60,6.7,6,6,19.3,1370,9,999999999,370,0.0400,0,88,999.000,999.0,99.0 +1989,7,28,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,19.4,74,101800,0,0,392,0,0,0,0,0,0,0,60,3.6,4,4,24.1,77777,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1989,7,28,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,19.4,74,101800,0,0,389,0,0,0,0,0,0,0,50,4.1,3,3,19.3,77777,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1989,7,28,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,19.4,74,101800,0,0,385,0,0,0,0,0,0,0,60,4.1,2,2,24.1,77777,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1989,7,28,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,20.0,76,101700,0,0,390,0,0,0,0,0,0,0,60,4.1,3,3,24.1,77777,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1989,7,28,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,20.6,85,101700,0,0,399,0,0,0,0,0,0,0,70,3.6,7,7,19.3,1370,9,999999999,370,0.0400,0,88,999.000,999.0,99.0 +1989,7,28,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,20.0,79,101800,0,0,401,44,85,34,0,0,0,0,60,6.2,7,7,24.1,1220,9,999999999,359,0.0300,0,88,999.000,999.0,99.0 +1989,7,28,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,20.0,76,101800,120,1225,400,203,372,85,11600,18700,9700,1780,60,5.7,6,6,24.1,1220,9,999999999,359,0.0300,0,88,999.000,999.0,99.0 +1989,7,28,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,20.0,67,101800,418,1325,405,502,731,114,34700,63700,14500,1960,70,4.6,4,4,32.2,77777,9,999999999,359,0.0300,0,88,999.000,999.0,99.0 +1989,7,28,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,20.0,63,101900,702,1325,414,751,825,158,61500,80900,18500,3320,60,5.7,5,5,32.2,77777,9,999999999,359,0.0300,0,88,999.000,999.0,99.0 +1989,7,28,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,19.4,55,101900,949,1325,423,690,458,294,65400,47400,31400,8660,100,4.6,5,5,32.2,77777,9,999999999,350,0.0300,0,88,999.000,999.0,99.0 +1989,7,28,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,19.4,55,101900,1143,1325,423,763,499,283,77500,52200,32400,12820,80,7.2,5,5,32.2,77777,9,999999999,350,0.0300,0,88,999.000,999.0,99.0 +1989,7,28,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,20.0,61,101800,1269,1325,421,745,398,348,78900,41700,38900,28050,50,6.7,6,6,32.2,1220,9,999999999,359,0.0300,0,88,999.000,999.0,99.0 +1989,7,28,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,18.9,50,101800,1319,1325,432,790,479,322,87700,50200,37600,47450,80,6.2,6,6,32.2,2740,9,999999999,340,0.0300,0,88,999.000,999.0,99.0 +1989,7,28,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,20.0,59,101800,1291,1325,429,739,466,321,84800,48900,37100,30590,90,6.2,7,7,32.2,1070,9,999999999,359,0.0300,0,88,999.000,999.0,99.0 +1989,7,28,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,20.0,55,101700,1184,1325,430,656,593,203,78900,60900,24400,10570,50,5.7,6,6,32.2,2740,9,999999999,359,0.0300,0,88,999.000,999.0,99.0 +1989,7,28,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,19.4,55,101700,1008,1325,416,475,587,130,62900,60600,16600,4310,50,7.7,3,3,40.2,77777,9,999999999,350,0.0300,0,88,999.000,999.0,99.0 +1989,7,28,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,19.4,57,101700,774,1325,413,305,583,85,45600,58400,11400,2060,60,7.7,3,3,32.2,77777,9,999999999,350,0.0300,0,88,999.000,999.0,99.0 +1989,7,28,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,19.4,65,101700,497,1325,408,82,239,45,14700,22900,6100,950,70,6.7,5,5,24.1,77777,9,999999999,350,0.0300,0,88,999.000,999.0,99.0 +1989,7,28,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,20.6,74,101700,199,1325,393,11,36,5,1200,2600,800,100,60,6.7,2,2,24.1,77777,9,999999999,370,0.0300,0,88,999.000,999.0,99.0 +1989,7,28,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,19.4,69,101800,5,254,392,0,0,0,0,0,0,0,50,6.7,2,2,24.1,77777,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1989,7,28,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,18.9,67,101800,0,0,386,0,0,0,0,0,0,0,50,6.7,1,1,24.1,77777,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1989,7,28,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,18.9,69,101800,0,0,383,0,0,0,0,0,0,0,50,6.2,1,1,24.1,77777,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1989,7,28,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,18.3,67,101800,0,0,382,0,0,0,0,0,0,0,60,7.2,1,1,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1989,7,28,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,19.4,74,101800,0,0,380,0,0,0,0,0,0,0,60,4.6,1,1,24.1,77777,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1989,7,29,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,19.4,74,101800,0,0,392,0,0,0,0,0,0,0,80,5.2,4,4,24.1,77777,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1989,7,29,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,20.0,79,101700,0,0,387,0,0,0,0,0,0,0,80,5.2,3,3,24.1,77777,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1989,7,29,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,20.0,79,101600,0,0,384,0,0,0,0,0,0,0,50,4.6,2,2,24.1,77777,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1989,7,29,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,20.0,79,101600,0,0,390,0,0,0,0,0,0,0,50,6.2,4,4,24.1,77777,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1989,7,29,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,20.0,79,101700,0,0,384,0,0,0,0,0,0,0,80,4.1,2,2,24.1,77777,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1989,7,29,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,20.0,79,101700,0,0,390,50,205,27,0,0,0,0,80,4.1,4,4,24.1,77777,9,999999999,359,0.0260,0,88,999.000,999.0,99.0 +1989,7,29,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,20.0,76,101700,119,1204,390,158,262,75,10100,12500,8800,1680,60,4.6,3,3,32.2,77777,9,999999999,359,0.0260,0,88,999.000,999.0,99.0 +1989,7,29,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,20.0,67,101700,417,1325,398,463,751,64,30600,67400,9400,1200,40,6.2,2,2,32.2,77777,9,999999999,359,0.0260,0,88,999.000,999.0,99.0 +1989,7,29,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,20.0,63,101800,701,1325,408,574,581,156,49800,58800,18600,3340,50,6.2,3,3,32.2,77777,9,999999999,359,0.0260,0,88,999.000,999.0,99.0 +1989,7,29,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,20.6,65,101800,949,1325,409,804,754,152,74100,77100,18800,4460,50,6.2,3,3,32.2,77777,9,999999999,370,0.0260,0,88,999.000,999.0,99.0 +1989,7,29,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,18.9,55,101800,1143,1325,416,963,811,183,92000,81300,21800,7420,70,6.7,4,4,32.2,77777,9,999999999,340,0.0260,0,88,999.000,999.0,99.0 +1989,7,29,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,18.9,51,101800,1269,1325,419,929,754,176,95600,76200,22400,13140,60,7.2,3,3,32.2,77777,9,999999999,329,0.0260,0,88,999.000,999.0,99.0 +1989,7,29,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,19.4,52,101700,1319,1325,429,924,755,186,99800,76300,23600,25420,60,9.8,5,5,32.2,77777,9,999999999,350,0.0260,0,88,999.000,999.0,99.0 +1989,7,29,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,19.4,52,101700,1290,1325,426,767,563,263,86600,57400,30600,24370,70,9.3,4,4,32.2,77777,9,999999999,350,0.0260,0,88,999.000,999.0,99.0 +1989,7,29,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,18.9,51,101600,1184,1325,419,738,800,127,86700,80200,14900,5230,60,8.8,3,3,32.2,77777,9,999999999,329,0.0260,0,88,999.000,999.0,99.0 +1989,7,29,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,18.9,55,101600,1007,1325,409,519,731,91,67400,73100,11600,2680,70,9.3,2,2,32.2,77777,9,999999999,340,0.0260,0,88,999.000,999.0,99.0 +1989,7,29,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,18.9,57,101600,773,1325,409,334,668,83,50800,67000,11600,2030,70,8.2,3,3,32.2,77777,9,999999999,340,0.0260,0,88,999.000,999.0,99.0 +1989,7,29,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,19.4,61,101600,496,1325,411,84,169,58,13800,16100,7700,1050,70,7.2,4,4,24.1,77777,9,999999999,350,0.0260,0,88,999.000,999.0,99.0 +1989,7,29,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,19.4,67,101700,197,1325,401,10,16,7,1100,1000,1000,110,70,6.7,4,4,24.1,77777,9,999999999,350,0.0260,0,88,999.000,999.0,99.0 +1989,7,29,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,18.9,67,101700,4,232,395,0,0,0,0,0,0,0,70,5.2,3,3,24.1,77777,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1989,7,29,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,18.9,69,101700,0,0,383,0,0,0,0,0,0,0,70,6.2,1,1,24.1,77777,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1989,7,29,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,18.3,67,101800,0,0,382,0,0,0,0,0,0,0,50,4.1,1,1,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1989,7,29,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,18.9,69,101800,0,0,383,0,0,0,0,0,0,0,60,5.2,1,1,24.1,77777,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1989,7,29,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,18.9,69,101700,0,0,388,0,0,0,0,0,0,0,70,6.2,2,2,24.1,77777,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1989,7,30,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,18.9,69,101700,0,0,392,0,0,0,0,0,0,0,70,7.7,3,3,24.1,77777,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1989,7,30,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,18.3,67,101600,0,0,391,0,0,0,0,0,0,0,70,7.7,3,3,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1989,7,30,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,17.8,67,101600,0,0,387,0,0,0,0,0,0,0,60,7.7,3,3,24.1,77777,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1989,7,30,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,17.8,67,101600,0,0,387,0,0,0,0,0,0,0,360,7.2,3,3,24.1,77777,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1989,7,30,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,18.9,71,101600,0,0,403,0,0,0,0,0,0,0,80,6.2,7,7,24.1,1370,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1989,7,30,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,18.3,69,101600,0,0,408,33,15,31,0,0,0,0,60,7.2,8,8,24.1,7620,9,999999999,329,0.0390,0,88,999.000,999.0,99.0 +1989,7,30,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,18.9,71,101700,117,1204,418,129,9,126,12600,600,12600,650,60,8.2,9,9,32.2,3050,9,999999999,340,0.0390,0,88,999.000,999.0,99.0 +1989,7,30,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,18.9,60,101700,415,1325,403,432,645,90,29900,57000,12000,1640,60,4.1,5,3,32.2,77777,9,999999999,329,0.0390,0,88,999.000,999.0,99.0 +1989,7,30,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,18.9,57,101700,700,1325,416,549,497,192,47800,50100,21300,4200,90,6.7,5,5,32.2,77777,9,999999999,340,0.0390,0,88,999.000,999.0,99.0 +1989,7,30,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,18.9,53,101700,949,1325,419,811,776,140,72700,77700,16900,3720,50,8.2,4,4,32.2,77777,9,999999999,340,0.0390,0,88,999.000,999.0,99.0 +1989,7,30,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,17.8,48,101700,1143,1325,413,908,777,161,87900,78400,20100,6720,80,7.2,2,2,32.2,77777,9,999999999,320,0.0390,0,88,999.000,999.0,99.0 +1989,7,30,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,17.2,46,101700,1269,1325,412,1001,881,121,99400,88400,14600,7840,70,5.7,2,2,32.2,77777,9,999999999,300,0.0390,0,88,999.000,999.0,99.0 +1989,7,30,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,16.7,42,101600,1320,1325,418,957,860,118,100500,86400,14200,13910,80,8.2,2,2,32.2,77777,9,999999999,300,0.0390,0,88,999.000,999.0,99.0 +1989,7,30,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,16.1,45,101600,1290,1325,408,753,621,196,87300,64100,24700,18290,60,8.8,2,2,32.2,77777,9,999999999,290,0.0390,0,88,999.000,999.0,99.0 +1989,7,30,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,16.7,45,101600,1184,1325,412,727,827,96,86700,83000,12400,4340,90,8.2,2,2,32.2,77777,9,999999999,300,0.0390,0,88,999.000,999.0,99.0 +1989,7,30,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,17.2,48,101600,1007,1325,404,530,799,62,70500,80100,9500,2110,50,8.8,1,1,32.2,77777,9,999999999,309,0.0390,0,88,999.000,999.0,99.0 +1989,7,30,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,17.2,49,101600,772,1325,401,300,629,63,45200,62200,8900,1650,70,7.7,1,1,32.2,77777,9,999999999,300,0.0390,0,88,999.000,999.0,99.0 +1989,7,30,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,17.2,53,101600,494,1325,401,91,338,40,18300,32400,6200,850,60,8.2,2,2,32.2,77777,9,999999999,309,0.0390,0,88,999.000,999.0,99.0 +1989,7,30,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,17.8,60,101600,195,1325,387,9,32,3,900,2300,600,60,60,7.2,1,1,24.1,77777,9,999999999,309,0.0390,0,88,999.000,999.0,99.0 +1989,7,30,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,17.8,62,101700,4,232,384,0,0,0,0,0,0,0,80,6.2,1,1,24.1,77777,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1989,7,30,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,17.2,60,101700,0,0,384,0,0,0,0,0,0,0,80,8.8,1,1,24.1,77777,9,999999999,309,0.0400,0,88,999.000,999.0,99.0 +1989,7,30,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,17.8,64,101800,0,0,381,0,0,0,0,0,0,0,70,6.7,1,1,24.1,77777,9,999999999,309,0.0400,0,88,999.000,999.0,99.0 +1989,7,30,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,17.8,64,101800,0,0,381,0,0,0,0,0,0,0,70,4.6,1,1,24.1,77777,9,999999999,309,0.0400,0,88,999.000,999.0,99.0 +1989,7,30,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,17.8,64,101800,0,0,381,0,0,0,0,0,0,0,70,5.2,1,1,24.1,77777,9,999999999,309,0.0400,0,88,999.000,999.0,99.0 +1989,7,31,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,17.8,67,101700,0,0,378,0,0,0,0,0,0,0,70,5.2,1,1,24.1,77777,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1989,7,31,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,17.8,67,101700,0,0,378,0,0,0,0,0,0,0,60,4.6,1,1,24.1,77777,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1989,7,31,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,18.3,69,101700,0,0,379,0,0,0,0,0,0,0,70,5.7,1,1,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1989,7,31,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,18.3,71,101700,0,0,376,0,0,0,0,0,0,0,70,4.1,1,1,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1989,7,31,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,18.3,71,101700,0,0,376,0,0,0,0,0,0,0,80,4.1,1,1,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1989,7,31,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,18.3,69,101700,0,0,384,59,266,28,0,0,0,0,70,4.6,2,2,24.1,77777,9,999999999,329,0.0160,0,88,999.000,999.0,99.0 +1989,7,31,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,18.9,71,101700,116,1182,385,239,617,45,10600,32900,7200,700,60,4.1,2,2,24.1,77777,9,999999999,340,0.0160,0,88,999.000,999.0,99.0 +1989,7,31,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,19.4,67,101700,414,1326,401,414,523,137,30500,46600,15900,2670,60,6.2,4,4,32.2,77777,9,999999999,350,0.0160,0,88,999.000,999.0,99.0 +1989,7,31,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,20.0,65,101800,700,1326,405,707,834,109,56500,81500,13400,2190,90,4.1,3,3,32.2,77777,9,999999999,359,0.0160,0,88,999.000,999.0,99.0 +1989,7,31,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,19.4,61,101800,948,1326,414,693,541,226,66200,56200,25900,6500,50,4.6,5,5,32.2,77777,9,999999999,350,0.0160,0,88,999.000,999.0,99.0 +1989,7,31,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,19.4,57,101800,1142,1326,420,816,587,253,80000,59400,28700,11140,50,6.7,5,5,32.2,77777,9,999999999,350,0.0160,0,88,999.000,999.0,99.0 +1989,7,31,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,21.1,67,101700,1269,1326,416,790,484,307,84400,50800,35700,24520,50,8.2,5,5,32.2,77777,9,999999999,379,0.0160,0,88,999.000,999.0,99.0 +1989,7,31,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,18.3,51,101700,1320,1326,418,927,749,196,99600,75500,24300,26160,50,7.2,4,4,32.2,77777,9,999999999,320,0.0160,0,88,999.000,999.0,99.0 +1989,7,31,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,18.3,48,101700,1290,1326,421,900,876,115,99900,88000,14000,8870,40,7.2,3,3,32.2,77777,9,999999999,329,0.0160,0,88,999.000,999.0,99.0 +1989,7,31,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,18.9,51,101600,1183,1326,422,758,821,133,89100,82200,15500,5350,70,7.7,4,4,32.2,77777,9,999999999,329,0.0160,0,88,999.000,999.0,99.0 +1989,7,31,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,18.3,50,101600,1006,1326,421,426,553,103,56900,56300,14100,3340,70,8.2,4,4,32.2,77777,9,999999999,329,0.0160,0,88,999.000,999.0,99.0 +1989,7,31,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,18.3,53,101600,770,1326,412,290,596,66,45400,60200,10300,1700,70,7.7,3,3,32.2,77777,9,999999999,329,0.0160,0,88,999.000,999.0,99.0 +1989,7,31,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,18.3,57,101600,493,1326,406,78,238,43,14400,22800,5900,910,70,7.2,3,3,24.1,77777,9,999999999,329,0.0160,0,88,999.000,999.0,99.0 +1989,7,31,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,19.4,67,101700,193,1326,398,9,11,8,1200,800,1100,170,70,6.2,3,3,24.1,77777,9,999999999,350,0.0160,0,88,999.000,999.0,99.0 +1989,7,31,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,20.0,74,101800,4,210,396,0,0,0,0,0,0,0,70,4.6,4,4,24.1,77777,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1989,7,31,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,19.4,71,101800,0,0,402,0,0,0,0,0,0,0,70,4.1,6,6,24.1,1370,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1989,7,31,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.9,19.6,71,101900,0,0,406,0,0,0,0,0,0,0,90,4.0,7,7,24.1,1370,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1989,7,31,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.8,19.7,67,101800,0,0,406,0,0,0,0,0,0,0,70,4.0,7,7,24.1,1370,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1989,7,31,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.7,19.9,69,101800,0,0,401,0,0,0,0,0,0,0,60,3.9,6,6,24.1,1220,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1985,8,1,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.7,20.1,79,101600,0,0,388,0,0,0,0,0,0,0,60,3.8,2,2,24.1,77777,9,999999999,370,0.0500,0,88,999.000,999.0,99.0 +1985,8,1,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.6,20.3,79,101600,0,0,388,0,0,0,0,0,0,0,70,3.7,2,2,24.1,77777,9,999999999,359,0.0500,0,88,999.000,999.0,99.0 +1985,8,1,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.5,20.4,79,101500,0,0,382,0,0,0,0,0,0,0,60,3.7,1,1,24.1,77777,9,999999999,359,0.0500,0,88,999.000,999.0,99.0 +1985,8,1,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,20.6,79,101500,0,0,387,0,0,0,0,0,0,0,60,3.6,2,2,24.1,77777,9,999999999,370,0.0500,0,88,999.000,999.0,99.0 +1985,8,1,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,20.6,79,101500,0,0,387,0,0,0,0,0,0,0,60,4.6,2,2,24.1,77777,9,999999999,370,0.0500,0,88,999.000,999.0,99.0 +1985,8,1,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,20.0,76,101500,0,0,386,58,258,28,0,0,0,0,50,4.6,2,2,24.1,77777,9,999999999,359,0.0340,0,88,999.000,999.0,99.0 +1985,8,1,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,20.6,76,101600,115,1182,403,198,313,101,12800,14600,11400,2540,60,4.1,6,6,24.1,1370,9,999999999,370,0.0340,0,88,999.000,999.0,99.0 +1985,8,1,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,21.7,77,101600,413,1326,411,493,656,146,35300,58300,17200,2880,70,3.1,6,6,24.1,1370,9,999999999,400,0.0340,0,88,999.000,999.0,99.0 +1985,8,1,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,21.7,72,101600,699,1326,413,661,691,166,54600,67500,18900,3430,70,5.7,5,5,32.2,77777,9,999999999,400,0.0340,0,88,999.000,999.0,99.0 +1985,8,1,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,21.1,61,101600,948,1326,425,502,368,184,49300,38400,21800,5210,60,5.2,5,5,32.2,77777,9,999999999,379,0.0340,0,88,999.000,999.0,99.0 +1985,8,1,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,21.7,67,101700,1142,1326,428,767,481,305,77600,50300,34100,13800,90,4.1,7,7,24.1,790,9,999999999,390,0.0340,0,88,999.000,999.0,99.0 +1985,8,1,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,20.6,52,101600,1269,1326,437,908,666,244,94400,68000,29200,19060,80,6.2,5,5,32.2,77777,9,999999999,370,0.0340,0,88,999.000,999.0,99.0 +1985,8,1,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,20.6,53,101600,1320,1326,459,524,187,341,59400,20400,39000,40010,40,4.1,9,9,32.2,1370,9,999999999,370,0.0340,0,88,999.000,999.0,99.0 +1985,8,1,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,20.6,57,101500,1290,1326,436,629,290,370,72800,31600,42000,29720,60,4.6,7,7,32.2,1370,9,999999999,370,0.0340,0,88,999.000,999.0,99.0 +1985,8,1,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,20.6,53,101500,1183,1326,443,698,594,245,82300,60400,28300,12470,50,6.2,7,7,32.2,1370,9,999999999,370,0.0340,0,88,999.000,999.0,99.0 +1985,8,1,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,20.6,59,101500,1005,1326,433,387,253,239,48000,27500,27100,7340,70,7.7,7,7,32.2,1370,9,999999999,370,0.0340,0,88,999.000,999.0,99.0 +1985,8,1,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,21.1,63,101500,769,1326,437,179,23,171,20400,2300,19000,5810,60,8.2,8,8,32.2,1370,9,999999999,379,0.0340,0,88,999.000,999.0,99.0 +1985,8,1,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,21.1,67,101500,491,1326,413,76,96,62,11100,9400,7600,1120,60,8.2,4,4,32.2,77777,9,999999999,379,0.0340,0,88,999.000,999.0,99.0 +1985,8,1,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,21.1,72,101600,191,1326,403,7,26,3,800,1800,600,60,70,7.2,3,3,24.1,77777,9,999999999,390,0.0340,0,88,999.000,999.0,99.0 +1985,8,1,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,21.7,77,101600,3,210,397,0,0,0,0,0,0,0,60,6.2,2,2,24.1,77777,9,999999999,400,0.0500,0,88,999.000,999.0,99.0 +1985,8,1,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,21.7,77,101700,0,0,422,0,0,0,0,0,0,0,60,5.2,8,8,24.1,1370,9,999999999,400,0.0500,0,88,999.000,999.0,99.0 +1985,8,1,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,22.2,82,101700,0,0,420,0,0,0,0,0,0,0,70,3.6,8,8,19.3,1370,9,999999999,409,0.0500,0,88,999.000,999.0,99.0 +1985,8,1,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,22.8,91,101800,0,0,435,0,0,0,0,0,0,0,90,4.1,10,10,16.1,700,9,999999999,419,0.0500,0,88,999.000,999.0,99.0 +1985,8,1,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,21.7,82,101700,0,0,425,0,0,0,0,0,0,0,70,3.1,9,9,24.1,1370,9,999999999,400,0.0500,0,88,999.000,999.0,99.0 +1985,8,2,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,20.6,74,101700,0,0,427,0,0,0,0,0,0,0,70,5.7,9,9,24.1,1370,9,999999999,370,0.0490,0,88,999.000,999.0,99.0 +1985,8,2,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,20.0,69,101700,0,0,429,0,0,0,0,0,0,0,70,6.2,9,9,24.1,1370,9,999999999,359,0.0490,0,88,999.000,999.0,99.0 +1985,8,2,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,20.6,74,101600,0,0,439,0,0,0,0,0,0,0,60,6.2,10,10,24.1,1370,9,999999999,370,0.0490,0,88,999.000,999.0,99.0 +1985,8,2,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,19.4,71,101600,0,0,392,0,0,0,0,0,0,0,70,4.1,3,3,24.1,77777,9,999999999,350,0.0490,0,88,999.000,999.0,99.0 +1985,8,2,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,20.6,76,101600,0,0,415,0,0,0,0,0,0,0,60,7.2,8,8,24.1,1370,9,999999999,370,0.0490,0,88,999.000,999.0,99.0 +1985,8,2,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,20.0,76,101600,0,0,400,48,168,29,0,0,0,0,80,4.1,6,6,24.1,1370,9,999999999,359,0.0270,0,88,999.000,999.0,99.0 +1985,8,2,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,20.0,74,101700,113,1183,407,177,162,126,14300,8100,13500,2650,60,3.6,7,7,24.1,1370,9,999999999,359,0.0270,0,88,999.000,999.0,99.0 +1985,8,2,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,20.0,63,101700,412,1326,414,437,607,117,31500,54100,14700,2230,50,4.6,5,5,32.2,77777,9,999999999,359,0.0270,0,88,999.000,999.0,99.0 +1985,8,2,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,19.4,57,101700,698,1326,417,480,453,156,42400,45800,18200,3330,50,5.2,4,4,32.2,77777,9,999999999,350,0.0270,0,88,999.000,999.0,99.0 +1985,8,2,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,18.9,51,101700,947,1326,422,651,544,181,60200,55200,20700,5190,50,6.2,4,4,32.2,77777,9,999999999,329,0.0270,0,88,999.000,999.0,99.0 +1985,8,2,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,18.9,48,101700,1142,1326,428,898,676,249,87800,68500,28600,10950,60,8.2,4,4,32.2,77777,9,999999999,340,0.0270,0,88,999.000,999.0,99.0 +1985,8,2,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,18.3,50,101700,1269,1326,418,966,828,139,95600,83000,16000,8630,20,7.2,3,3,32.2,77777,9,999999999,329,0.0270,0,88,999.000,999.0,99.0 +1985,8,2,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,17.2,43,101600,1320,1326,423,902,739,180,97700,74800,23100,23680,50,6.2,3,3,32.2,77777,9,999999999,300,0.0270,0,88,999.000,999.0,99.0 +1985,8,2,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,18.9,51,101600,1290,1326,422,711,552,216,81500,56800,26200,19850,60,7.7,4,4,32.2,77777,9,999999999,329,0.0270,0,88,999.000,999.0,99.0 +1985,8,2,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,17.8,44,101600,1183,1326,427,722,756,147,88100,76700,19500,7200,60,7.7,3,3,32.2,77777,9,999999999,320,0.0270,0,88,999.000,999.0,99.0 +1985,8,2,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,16.7,43,101500,1004,1326,415,498,729,73,65500,73000,10100,2340,60,7.2,2,2,40.2,77777,9,999999999,290,0.0270,0,88,999.000,999.0,99.0 +1985,8,2,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,17.2,46,101500,768,1326,416,297,617,67,46600,62200,10500,1720,90,7.2,3,3,40.2,77777,9,999999999,300,0.0270,0,88,999.000,999.0,99.0 +1985,8,2,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,18.9,55,101600,489,1326,419,66,89,53,9800,8700,6600,950,60,7.2,5,5,32.2,77777,9,999999999,340,0.0270,0,88,999.000,999.0,99.0 +1985,8,2,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,18.9,63,101600,189,1326,411,8,10,6,900,700,800,130,60,6.2,6,6,24.1,1370,9,999999999,340,0.0270,0,88,999.000,999.0,99.0 +1985,8,2,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,19.4,67,101700,3,188,419,0,0,0,0,0,0,0,60,6.2,8,8,19.3,790,9,999999999,350,0.0490,0,88,999.000,999.0,99.0 +1985,8,2,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,19.4,67,101700,0,0,419,0,0,0,0,0,0,0,70,6.2,8,8,19.3,790,9,999999999,350,0.0490,0,88,999.000,999.0,99.0 +1985,8,2,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,17.8,62,101700,0,0,408,0,0,0,0,0,0,0,60,5.2,7,7,24.1,1370,9,999999999,320,0.0490,0,88,999.000,999.0,99.0 +1985,8,2,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,17.8,62,101700,0,0,408,0,0,0,0,0,0,0,60,5.2,7,7,24.1,1370,9,999999999,320,0.0490,0,88,999.000,999.0,99.0 +1985,8,2,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,18.3,64,101700,0,0,400,0,0,0,0,0,0,0,50,5.2,5,5,24.1,77777,9,999999999,329,0.0490,0,88,999.000,999.0,99.0 +1985,8,3,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,18.3,67,101700,0,0,394,0,0,0,0,0,0,0,90,6.2,4,4,24.1,77777,9,999999999,329,0.0490,0,88,999.000,999.0,99.0 +1985,8,3,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,18.3,67,101600,0,0,405,0,0,0,0,0,0,0,80,3.1,7,7,24.1,1370,9,999999999,329,0.0490,0,88,999.000,999.0,99.0 +1985,8,3,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,20.0,76,101600,0,0,431,0,0,0,0,0,0,0,50,5.7,10,10,16.1,760,9,999999999,359,0.0490,0,88,999.000,999.0,99.0 +1985,8,3,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,19.4,76,101600,0,0,401,0,0,0,0,0,0,0,50,3.1,7,7,19.3,790,9,999999999,350,0.0490,0,88,999.000,999.0,99.0 +1985,8,3,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,18.9,71,101600,0,0,398,0,0,0,0,0,0,0,70,6.2,6,6,24.1,1370,9,999999999,329,0.0490,0,88,999.000,999.0,99.0 +1985,8,3,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,19.4,76,101600,0,0,396,43,177,23,0,0,0,0,80,4.6,6,6,19.3,1370,9,999999999,350,0.0280,0,88,999.000,999.0,99.0 +1985,8,3,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,19.4,74,101600,112,1161,399,214,400,90,12100,19600,10100,1930,70,4.6,6,6,24.1,1370,9,999999999,350,0.0280,0,88,999.000,999.0,99.0 +1985,8,3,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,20.0,76,101600,411,1327,404,350,270,208,30700,24400,23100,4680,50,5.2,7,7,24.1,1370,9,999999999,359,0.0280,0,88,999.000,999.0,99.0 +1985,8,3,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,19.4,65,101700,697,1327,432,215,103,141,21900,10700,16300,3570,50,6.2,9,9,24.1,1370,9,999999999,350,0.0280,0,88,999.000,999.0,99.0 +1985,8,3,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,19.4,61,101700,947,1327,438,273,65,217,29100,6600,24400,8280,50,6.2,9,9,24.1,1370,9,999999999,350,0.0280,0,88,999.000,999.0,99.0 +1985,8,3,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,20.6,63,101700,1142,1327,422,783,474,328,78800,49500,36100,14850,70,6.2,6,6,24.1,1370,9,999999999,370,0.0280,0,88,999.000,999.0,99.0 +1985,8,3,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,18.9,55,101600,1269,1327,444,644,164,480,70100,17500,53300,30650,80,7.2,9,9,24.1,1370,9,999999999,340,0.0280,0,88,999.000,999.0,99.0 +1985,8,3,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,19.4,53,101600,1319,1327,430,909,611,313,97400,61700,35800,42060,60,6.7,6,6,24.1,1370,9,999999999,350,0.0280,0,88,999.000,999.0,99.0 +1985,8,3,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,20.6,59,101500,1290,1327,428,629,398,272,73300,41800,32500,25230,60,5.2,6,6,24.1,1370,9,999999999,370,0.0280,0,88,999.000,999.0,99.0 +1985,8,3,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,18.9,53,101500,1182,1327,437,478,376,192,59800,39600,24500,9770,60,8.2,8,8,24.1,1370,9,999999999,340,0.0280,0,88,999.000,999.0,99.0 +1985,8,3,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,20.6,61,101500,1004,1327,421,391,419,148,50200,43100,17500,4800,60,7.2,5,5,24.1,77777,9,999999999,370,0.0280,0,88,999.000,999.0,99.0 +1985,8,3,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,18.9,57,101500,767,1327,409,280,472,105,40600,47800,12900,2500,60,8.2,3,3,24.1,77777,9,999999999,340,0.0280,0,88,999.000,999.0,99.0 +1985,8,3,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,18.9,60,101500,487,1327,407,71,131,52,11500,12800,6800,930,70,8.2,4,4,24.1,77777,9,999999999,329,0.0280,0,88,999.000,999.0,99.0 +1985,8,3,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,19.4,69,101500,186,1327,396,6,8,4,600,500,600,80,60,8.2,3,3,24.1,77777,9,999999999,350,0.0280,0,88,999.000,999.0,99.0 +1985,8,3,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,19.4,71,101600,2,188,407,0,0,0,0,0,0,0,60,7.7,7,7,24.1,1370,9,999999999,350,0.0490,0,88,999.000,999.0,99.0 +1985,8,3,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,20.0,76,101600,0,0,411,0,0,0,0,0,0,0,70,6.2,8,8,24.1,1370,9,999999999,359,0.0490,0,88,999.000,999.0,99.0 +1985,8,3,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,20.0,79,101700,0,0,401,0,0,0,0,0,0,0,70,6.2,7,7,24.1,1370,9,999999999,359,0.0490,0,88,999.000,999.0,99.0 +1985,8,3,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,19.4,79,101700,0,0,397,0,0,0,0,0,0,0,70,6.2,7,7,24.1,1370,9,999999999,350,0.0490,0,88,999.000,999.0,99.0 +1985,8,3,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,20.0,79,101700,0,0,401,0,0,0,0,0,0,0,60,5.7,7,7,24.1,1370,9,999999999,359,0.0490,0,88,999.000,999.0,99.0 +1985,8,4,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,20.0,79,101600,0,0,397,0,0,0,0,0,0,0,60,3.1,6,6,24.1,1370,9,999999999,359,0.0490,0,88,999.000,999.0,99.0 +1985,8,4,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,20.0,79,101600,0,0,417,0,0,0,0,0,0,0,60,4.6,9,9,24.1,1370,9,999999999,359,0.0490,0,88,999.000,999.0,99.0 +1985,8,4,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,19.4,76,101500,0,0,401,0,0,0,0,0,0,0,60,4.6,7,7,24.1,1370,9,999999999,350,0.0490,0,88,999.000,999.0,99.0 +1985,8,4,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,20.6,85,101500,0,0,414,0,0,0,0,0,0,0,70,4.1,9,9,24.1,1370,9,999999999,370,0.0490,0,88,999.000,999.0,99.0 +1985,8,4,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,20.0,82,101500,0,0,413,0,0,0,0,0,0,0,30,3.1,9,9,24.1,1370,9,999999999,359,0.0490,0,88,999.000,999.0,99.0 +1985,8,4,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,20.0,79,101500,0,0,401,31,29,27,0,0,0,0,60,4.1,7,7,24.1,1370,9,999999999,359,0.0850,0,88,999.000,999.0,99.0 +1985,8,4,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,20.0,79,101600,110,1161,401,145,108,112,13300,7700,12500,1420,70,3.1,7,7,32.2,1370,9,999999999,359,0.0850,0,88,999.000,999.0,99.0 +1985,8,4,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,20.6,76,101600,409,1327,408,384,364,192,31000,32900,20900,4360,60,4.6,7,7,32.2,1370,9,999999999,370,0.0850,0,88,999.000,999.0,99.0 +1985,8,4,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,20.0,63,101600,697,1327,418,634,612,196,54200,61600,21800,4280,70,4.6,6,6,32.2,1370,9,999999999,359,0.0850,0,88,999.000,999.0,99.0 +1985,8,4,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,18.9,53,101600,947,1327,422,784,675,202,71700,68000,23000,5690,90,4.1,5,5,32.2,77777,9,999999999,340,0.0850,0,88,999.000,999.0,99.0 +1985,8,4,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,18.9,51,101500,1142,1327,425,889,649,267,86700,65500,30200,11630,60,5.7,5,5,32.2,77777,9,999999999,329,0.0850,0,88,999.000,999.0,99.0 +1985,8,4,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,17.8,46,101500,1269,1327,421,1008,788,223,105300,80800,27800,17360,80,7.2,3,3,32.2,77777,9,999999999,309,0.0850,0,88,999.000,999.0,99.0 +1985,8,4,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,18.3,48,101500,1319,1327,428,853,588,280,92200,59800,32600,37340,60,7.2,5,5,32.2,77777,9,999999999,329,0.0850,0,88,999.000,999.0,99.0 +1985,8,4,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,18.9,48,101400,1290,1327,428,800,695,179,91000,70300,22500,15440,70,7.2,4,4,32.2,77777,9,999999999,329,0.0850,0,88,999.000,999.0,99.0 +1985,8,4,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,18.9,50,101400,1182,1327,429,526,353,258,63100,37000,30000,13210,60,7.2,5,5,32.2,77777,9,999999999,340,0.0850,0,88,999.000,999.0,99.0 +1985,8,4,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,18.9,53,101400,1003,1327,437,291,96,236,34700,10300,26900,7780,60,8.2,8,8,32.2,1370,9,999999999,329,0.0850,0,88,999.000,999.0,99.0 +1985,8,4,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,18.3,51,101400,765,1327,418,223,314,107,32500,32300,13900,2340,70,8.2,4,4,32.2,77777,9,999999999,320,0.0850,0,88,999.000,999.0,99.0 +1985,8,4,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,18.9,59,101400,485,1327,410,77,260,40,14900,24800,5800,840,70,8.2,4,4,32.2,77777,9,999999999,340,0.0850,0,88,999.000,999.0,99.0 +1985,8,4,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,18.9,65,101400,184,1327,401,3,5,2,400,300,300,30,60,7.7,4,4,24.1,77777,9,999999999,340,0.0850,0,88,999.000,999.0,99.0 +1985,8,4,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,18.9,67,101500,2,166,405,0,0,0,0,0,0,0,70,7.2,6,6,24.1,1370,9,999999999,340,0.0490,0,88,999.000,999.0,99.0 +1985,8,4,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,19.4,69,101500,0,0,399,0,0,0,0,0,0,0,70,7.2,4,4,24.1,77777,9,999999999,350,0.0490,0,88,999.000,999.0,99.0 +1985,8,4,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,18.9,67,101600,0,0,398,0,0,0,0,0,0,0,70,7.7,4,4,24.1,77777,9,999999999,340,0.0490,0,88,999.000,999.0,99.0 +1985,8,4,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,18.3,64,101600,0,0,409,0,0,0,0,0,0,0,60,7.7,7,7,24.1,1370,9,999999999,320,0.0490,0,88,999.000,999.0,99.0 +1985,8,4,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,18.9,67,101600,0,0,405,0,0,0,0,0,0,0,60,5.2,6,6,24.1,1370,9,999999999,340,0.0490,0,88,999.000,999.0,99.0 +1985,8,5,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,20.0,79,101500,0,0,408,0,0,0,0,0,0,0,50,6.2,8,8,16.1,1370,9,999999999,359,0.0490,0,88,999.000,999.0,99.0 +1985,8,5,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,20.6,79,101500,0,0,420,0,0,0,0,0,0,0,60,3.6,9,9,16.1,790,9,999999999,370,0.0490,0,88,999.000,999.0,99.0 +1985,8,5,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,20.0,76,101500,0,0,419,0,0,0,0,0,0,0,70,4.1,9,9,24.1,790,9,999999999,359,0.0490,0,88,999.000,999.0,99.0 +1985,8,5,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,20.6,79,101400,0,0,405,0,0,0,0,0,0,0,60,4.6,7,7,24.1,1370,9,999999999,370,0.0490,0,88,999.000,999.0,99.0 +1985,8,5,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,19.4,74,101400,0,0,395,0,0,0,0,0,0,0,70,5.2,5,5,24.1,77777,9,999999999,350,0.0490,0,88,999.000,999.0,99.0 +1985,8,5,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,19.4,74,101500,0,0,399,46,69,38,0,0,0,0,70,5.2,6,6,24.1,1370,9,999999999,350,0.0220,0,88,999.000,999.0,99.0 +1985,8,5,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,19.4,74,101500,109,1162,399,149,160,99,11700,8200,10900,2070,70,3.1,6,6,24.1,7620,9,999999999,350,0.0220,0,88,999.000,999.0,99.0 +1985,8,5,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,19.4,71,101500,408,1327,402,375,424,152,29300,38400,17500,3230,60,6.2,6,6,24.1,7620,9,999999999,350,0.0220,0,88,999.000,999.0,99.0 +1985,8,5,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,18.9,55,101500,696,1327,419,675,687,184,57400,69200,21000,3990,50,5.7,6,5,32.2,7620,9,999999999,340,0.0220,0,88,999.000,999.0,99.0 +1985,8,5,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,18.9,55,101500,946,1327,423,702,432,329,68700,46500,35500,9780,60,6.2,7,6,32.2,7620,9,999999999,340,0.0220,0,88,999.000,999.0,99.0 +1985,8,5,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,18.9,50,101500,1142,1327,429,993,846,182,94900,84800,21800,7310,60,6.7,6,5,32.2,7620,9,999999999,340,0.0220,0,88,999.000,999.0,99.0 +1985,8,5,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,17.8,45,101500,1269,1327,430,963,709,256,99700,72300,30400,19760,60,7.2,6,5,32.2,7620,9,999999999,320,0.0220,0,88,999.000,999.0,99.0 +1985,8,5,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,17.8,48,101500,1319,1327,432,772,421,362,84600,44100,40700,49210,70,7.7,8,7,32.2,7620,9,999999999,320,0.0220,0,88,999.000,999.0,99.0 +1985,8,5,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,18.3,45,101400,1289,1327,443,713,449,312,82000,47100,36200,28710,70,8.8,8,7,32.2,7620,9,999999999,329,0.0220,0,88,999.000,999.0,99.0 +1985,8,5,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,18.3,47,101400,1181,1327,446,479,313,242,57700,32900,28400,12320,60,7.7,8,8,32.2,7620,9,999999999,329,0.0220,0,88,999.000,999.0,99.0 +1985,8,5,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,18.9,51,101400,1002,1327,434,281,191,170,35900,20800,20100,5010,60,7.2,7,7,24.1,7620,9,999999999,329,0.0220,0,88,999.000,999.0,99.0 +1985,8,5,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,18.3,51,101400,764,1327,425,194,128,147,24900,13500,17200,3880,50,8.2,6,6,24.1,7620,9,999999999,320,0.0220,0,88,999.000,999.0,99.0 +1985,8,5,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,18.3,57,101500,483,1327,412,78,260,41,14900,24800,5800,860,50,7.7,5,5,24.1,77777,9,999999999,329,0.0220,0,88,999.000,999.0,99.0 +1985,8,5,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,17.8,60,101500,181,1327,396,7,20,4,900,1300,700,60,60,7.7,3,3,24.1,77777,9,999999999,309,0.0220,0,88,999.000,999.0,99.0 +1985,8,5,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,18.3,64,101600,2,166,390,0,0,0,0,0,0,0,60,6.7,2,2,24.1,77777,9,999999999,320,0.0490,0,88,999.000,999.0,99.0 +1985,8,5,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,18.9,67,101600,0,0,391,0,0,0,0,0,0,0,60,5.2,2,2,24.1,77777,9,999999999,340,0.0490,0,88,999.000,999.0,99.0 +1985,8,5,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,19.4,71,101600,0,0,389,0,0,0,0,0,0,0,70,5.7,2,2,24.1,77777,9,999999999,350,0.0490,0,88,999.000,999.0,99.0 +1985,8,5,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,17.8,64,101600,0,0,387,0,0,0,0,0,0,0,70,5.2,2,2,24.1,77777,9,999999999,309,0.0490,0,88,999.000,999.0,99.0 +1985,8,5,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,18.3,67,101600,0,0,387,0,0,0,0,0,0,0,70,5.2,2,2,24.1,77777,9,999999999,329,0.0490,0,88,999.000,999.0,99.0 +1985,8,6,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,18.3,69,101600,0,0,379,0,0,0,0,0,0,0,60,3.6,1,1,24.1,77777,9,999999999,329,0.0490,0,88,999.000,999.0,99.0 +1985,8,6,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,18.3,69,101500,0,0,384,0,0,0,0,0,0,0,70,4.6,2,2,24.1,77777,9,999999999,329,0.0490,0,88,999.000,999.0,99.0 +1985,8,6,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,18.3,69,101500,0,0,384,0,0,0,0,0,0,0,60,6.2,2,2,24.1,77777,9,999999999,329,0.0490,0,88,999.000,999.0,99.0 +1985,8,6,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,18.3,69,101500,0,0,379,0,0,0,0,0,0,0,80,5.7,1,1,24.1,77777,9,999999999,329,0.0490,0,88,999.000,999.0,99.0 +1985,8,6,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,18.3,69,101500,0,0,384,0,0,0,0,0,0,0,60,5.7,2,2,24.1,77777,9,999999999,329,0.0490,0,88,999.000,999.0,99.0 +1985,8,6,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,18.3,71,101600,0,0,385,35,68,27,0,0,0,0,60,4.6,3,3,24.1,77777,9,999999999,329,0.0340,0,88,999.000,999.0,99.0 +1985,8,6,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,20.0,82,101600,108,1140,387,228,468,84,12200,22800,9900,1780,70,4.1,4,4,32.2,77777,9,999999999,359,0.0340,0,88,999.000,999.0,99.0 +1985,8,6,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,19.4,65,101600,407,1328,405,380,427,156,29700,38700,17900,3340,70,5.2,4,4,32.2,77777,9,999999999,350,0.0340,0,88,999.000,999.0,99.0 +1985,8,6,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,19.4,61,101700,695,1328,411,652,691,158,53700,67600,18200,3290,60,6.7,4,4,32.2,77777,9,999999999,350,0.0340,0,88,999.000,999.0,99.0 +1985,8,6,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,19.4,53,101700,946,1328,430,759,690,165,69900,70200,19700,4760,50,6.2,6,6,32.2,1370,9,999999999,350,0.0340,0,88,999.000,999.0,99.0 +1985,8,6,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,20.6,61,101700,1142,1328,425,856,626,256,83700,63300,29100,11160,50,6.7,6,6,32.2,1370,9,999999999,370,0.0340,0,88,999.000,999.0,99.0 +1985,8,6,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,20.0,59,101700,1269,1328,420,927,685,244,96300,70000,29200,18820,60,6.2,5,5,32.2,77777,9,999999999,359,0.0340,0,88,999.000,999.0,99.0 +1985,8,6,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,20.6,57,101700,1319,1328,436,661,372,299,73900,39100,35000,40040,60,7.7,7,7,32.2,3050,9,999999999,370,0.0340,0,88,999.000,999.0,99.0 +1985,8,6,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,20.0,57,101600,1289,1328,420,826,619,273,93000,62900,31800,24330,60,8.2,7,4,32.2,3050,9,999999999,359,0.0340,0,88,999.000,999.0,99.0 +1985,8,6,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,19.4,55,101600,1180,1328,426,604,400,301,71200,41900,33900,15400,60,7.2,8,6,32.2,3050,9,999999999,350,0.0340,0,88,999.000,999.0,99.0 +1985,8,6,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,18.9,53,101600,1000,1328,431,366,313,185,46700,32700,22000,5740,70,7.2,7,7,24.1,3050,9,999999999,340,0.0340,0,88,999.000,999.0,99.0 +1985,8,6,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,19.4,63,101600,762,1328,425,195,122,151,24900,12900,17500,3980,60,6.7,8,8,24.1,1370,9,999999999,350,0.0340,0,88,999.000,999.0,99.0 +1985,8,6,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,19.4,65,101600,481,1328,423,66,82,54,9600,7900,6700,960,80,5.2,8,8,24.1,1370,9,999999999,350,0.0340,0,88,999.000,999.0,99.0 +1985,8,6,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,19.4,67,101600,179,1328,413,4,4,3,500,300,400,60,60,4.6,7,7,24.1,1370,9,999999999,350,0.0340,0,88,999.000,999.0,99.0 +1985,8,6,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,18.3,64,101700,2,144,404,0,0,0,0,0,0,0,80,4.1,6,6,24.1,1370,9,999999999,329,0.0490,0,88,999.000,999.0,99.0 +1985,8,6,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,18.9,67,101700,0,0,405,0,0,0,0,0,0,0,70,6.2,6,6,24.1,1370,9,999999999,340,0.0490,0,88,999.000,999.0,99.0 +1985,8,6,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,18.9,67,101700,0,0,405,0,0,0,0,0,0,0,70,5.7,6,6,24.1,1370,9,999999999,340,0.0490,0,88,999.000,999.0,99.0 +1985,8,6,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,18.9,69,101700,0,0,398,0,0,0,0,0,0,0,60,5.2,5,5,24.1,77777,9,999999999,340,0.0490,0,88,999.000,999.0,99.0 +1985,8,6,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,18.3,67,101700,0,0,394,0,0,0,0,0,0,0,90,3.1,4,4,24.1,77777,9,999999999,329,0.0490,0,88,999.000,999.0,99.0 +1985,8,7,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,18.9,69,101700,0,0,401,0,0,0,0,0,0,0,70,5.7,6,6,24.1,1370,9,999999999,340,0.0490,0,88,999.000,999.0,99.0 +1985,8,7,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,18.9,69,101600,0,0,401,0,0,0,0,0,0,0,60,6.2,6,6,24.1,1370,9,999999999,340,0.0490,0,88,999.000,999.0,99.0 +1985,8,7,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,18.9,69,101600,0,0,401,0,0,0,0,0,0,0,60,4.1,6,6,24.1,1370,9,999999999,340,0.0490,0,88,999.000,999.0,99.0 +1985,8,7,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,18.3,69,101600,0,0,402,0,0,0,0,0,0,0,70,4.6,7,7,24.1,1370,9,999999999,329,0.0490,0,88,999.000,999.0,99.0 +1985,8,7,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,18.3,69,101600,0,0,402,0,0,0,0,0,0,0,60,4.1,7,7,24.1,1370,9,999999999,329,0.0490,0,88,999.000,999.0,99.0 +1985,8,7,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,17.8,67,101600,0,0,387,51,230,24,0,0,0,0,70,3.6,3,3,24.1,77777,9,999999999,320,0.0350,0,88,999.000,999.0,99.0 +1985,8,7,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,17.8,62,101700,106,1140,390,215,544,48,9800,28000,7100,720,50,5.7,2,2,32.2,77777,9,999999999,320,0.0350,0,88,999.000,999.0,99.0 +1985,8,7,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,18.3,60,101700,406,1328,396,498,835,59,32300,74600,9400,1130,60,6.2,2,2,32.2,77777,9,999999999,329,0.0350,0,88,999.000,999.0,99.0 +1985,8,7,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,18.3,55,101700,695,1328,405,614,706,110,50800,70300,13900,2430,60,7.2,2,2,32.2,77777,9,999999999,329,0.0350,0,88,999.000,999.0,99.0 +1985,8,7,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,17.2,48,101700,946,1328,409,798,786,120,72200,79200,15600,3330,60,6.2,2,2,32.2,77777,9,999999999,309,0.0350,0,88,999.000,999.0,99.0 +1985,8,7,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,18.3,48,101700,1141,1328,421,910,753,189,90000,77300,23400,8440,60,6.7,3,3,32.2,77777,9,999999999,329,0.0350,0,88,999.000,999.0,99.0 +1985,8,7,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,17.8,44,101700,1269,1328,427,1036,887,152,102300,88900,17200,9060,70,7.2,3,3,32.2,77777,9,999999999,320,0.0350,0,88,999.000,999.0,99.0 +1985,8,7,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,17.8,44,101600,1319,1328,423,942,840,124,98700,84300,14700,13300,60,7.2,2,2,32.2,77777,9,999999999,320,0.0350,0,88,999.000,999.0,99.0 +1985,8,7,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,18.3,45,101600,1289,1328,423,938,940,99,104900,94500,12900,7560,70,6.2,2,2,32.2,77777,9,999999999,329,0.0350,0,88,999.000,999.0,99.0 +1985,8,7,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,19.4,48,101500,1180,1328,425,674,750,106,80000,75300,13000,4540,50,7.7,2,2,32.2,77777,9,999999999,350,0.0350,0,88,999.000,999.0,99.0 +1985,8,7,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,20.0,52,101500,999,1328,422,518,735,94,67300,73500,11900,2670,50,7.2,2,2,24.1,77777,9,999999999,359,0.0350,0,88,999.000,999.0,99.0 +1985,8,7,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,20.0,55,101500,760,1328,416,278,535,83,42500,54500,11200,2010,50,6.2,2,2,24.1,77777,9,999999999,359,0.0350,0,88,999.000,999.0,99.0 +1985,8,7,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,20.6,61,101500,479,1328,415,73,197,46,13500,18600,6800,820,80,4.6,3,3,24.1,77777,9,999999999,370,0.0350,0,88,999.000,999.0,99.0 +1985,8,7,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,20.6,67,101600,176,1328,409,4,8,3,500,500,500,40,70,4.1,4,4,24.1,77777,9,999999999,370,0.0350,0,88,999.000,999.0,99.0 +1985,8,7,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,21.1,74,101600,1,122,415,0,0,0,0,0,0,0,70,6.2,7,7,24.1,1370,9,999999999,379,0.0490,0,88,999.000,999.0,99.0 +1985,8,7,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,21.1,77,101700,0,0,404,0,0,0,0,0,0,0,60,5.7,5,5,24.1,77777,9,999999999,390,0.0490,0,88,999.000,999.0,99.0 +1985,8,7,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,22.2,85,101700,0,0,405,0,0,0,0,0,0,0,40,4.1,6,6,19.3,1370,9,999999999,409,0.0490,0,88,999.000,999.0,99.0 +1985,8,7,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,22.2,82,101700,0,0,414,0,0,0,0,0,0,0,60,5.2,7,7,19.3,1370,9,999999999,409,0.0490,0,88,999.000,999.0,99.0 +1985,8,7,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,20.6,72,101700,0,0,409,0,0,0,0,0,0,0,60,4.1,6,6,24.1,1370,9,999999999,370,0.0490,0,88,999.000,999.0,99.0 +1985,8,8,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,20.6,72,101700,0,0,409,0,0,0,0,0,0,0,90,6.2,6,6,24.1,1370,9,999999999,370,0.0490,0,88,999.000,999.0,99.0 +1985,8,8,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,21.1,74,101600,0,0,410,0,0,0,0,0,0,0,60,5.2,6,6,24.1,1370,9,999999999,379,0.0490,0,88,999.000,999.0,99.0 +1985,8,8,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,20.6,72,101600,0,0,406,0,0,0,0,0,0,0,90,6.7,5,5,24.1,77777,9,999999999,370,0.0490,0,88,999.000,999.0,99.0 +1985,8,8,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,21.1,77,101600,0,0,407,0,0,0,0,0,0,0,60,5.7,6,6,24.1,1370,9,999999999,390,0.0490,0,88,999.000,999.0,99.0 +1985,8,8,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,20.6,74,101600,0,0,400,0,0,0,0,0,0,0,60,6.7,4,4,24.1,77777,9,999999999,370,0.0490,0,88,999.000,999.0,99.0 +1985,8,8,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,20.6,74,101600,0,0,400,56,219,31,0,0,0,0,70,6.2,4,4,24.1,77777,9,999999999,370,0.0490,0,88,999.000,999.0,99.0 +1985,8,8,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,20.6,72,101600,105,1118,403,196,428,65,10300,21000,8200,1300,60,6.7,4,4,32.2,77777,9,999999999,370,0.0490,0,88,999.000,999.0,99.0 +1985,8,8,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,20.0,69,101600,405,1329,399,467,653,125,33100,57800,15500,2410,60,8.2,3,3,32.2,77777,9,999999999,359,0.0490,0,88,999.000,999.0,99.0 +1985,8,8,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,19.4,55,101700,694,1329,416,671,741,142,55000,72900,16900,3010,60,7.7,3,3,32.2,77777,9,999999999,350,0.0490,0,88,999.000,999.0,99.0 +1985,8,8,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,20.6,57,101700,945,1329,436,729,556,251,69100,57700,27900,7220,50,8.2,7,7,32.2,1370,9,999999999,370,0.0490,0,88,999.000,999.0,99.0 +1985,8,8,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,21.1,63,101700,1141,1329,447,401,87,318,43900,9300,35800,13220,70,8.2,9,9,32.2,1370,9,999999999,379,0.0490,0,88,999.000,999.0,99.0 +1985,8,8,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,20.6,57,101700,1269,1329,443,715,277,439,77300,30100,48500,30280,70,8.2,8,8,32.2,1370,9,999999999,370,0.0490,0,88,999.000,999.0,99.0 +1985,8,8,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,20.6,63,101600,1319,1329,443,577,102,478,64100,10500,53600,36960,70,8.2,9,9,24.1,1370,9,999999999,370,0.0490,0,88,999.000,999.0,99.0 +1985,8,8,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,20.0,57,101600,1288,1329,448,547,113,446,61500,12100,49700,31560,60,8.8,9,9,24.1,1370,9,999999999,359,0.0490,0,88,999.000,999.0,99.0 +1985,8,8,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,20.0,52,101600,1179,1329,442,647,530,247,76100,53900,28200,12260,60,8.2,7,7,24.1,1370,9,999999999,359,0.0490,0,88,999.000,999.0,99.0 +1985,8,8,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,20.0,55,101500,998,1329,435,461,497,175,58400,50700,20300,5520,40,7.2,7,7,24.1,1370,9,999999999,359,0.0490,0,88,999.000,999.0,99.0 +1985,8,8,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,18.9,53,101500,759,1329,419,232,314,118,33200,32200,14800,2580,50,8.2,4,4,24.1,77777,9,999999999,340,0.0490,0,88,999.000,999.0,99.0 +1985,8,8,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,20.0,63,101500,477,1329,423,64,93,52,9800,9000,6500,920,50,7.7,7,7,24.1,1370,9,999999999,359,0.0490,0,88,999.000,999.0,99.0 +1985,8,8,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,20.6,69,101600,173,1329,433,0,1,0,0,0,0,0,40,6.2,9,9,24.1,1370,9,999999999,370,0.0490,0,88,999.000,999.0,99.0 +1985,8,8,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,20.6,72,101600,1,122,430,0,0,0,0,0,0,0,50,5.2,9,9,24.1,1370,9,999999999,370,0.0490,0,88,999.000,999.0,99.0 +1985,8,8,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,20.6,74,101700,0,0,427,0,0,0,0,0,0,0,60,4.1,9,9,24.1,1370,9,999999999,370,0.0490,0,88,999.000,999.0,99.0 +1985,8,8,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,20.0,72,101700,0,0,411,0,0,0,0,0,0,0,60,5.7,7,7,24.1,1370,9,999999999,359,0.0490,0,88,999.000,999.0,99.0 +1985,8,8,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,20.0,72,101700,0,0,426,0,0,0,0,0,0,0,70,5.2,9,9,24.1,1370,9,999999999,359,0.0490,0,88,999.000,999.0,99.0 +1985,8,8,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,20.0,72,101700,0,0,411,0,0,0,0,0,0,0,80,4.6,7,7,24.1,1370,9,999999999,359,0.0490,0,88,999.000,999.0,99.0 +1985,8,9,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,19.4,67,101600,0,0,413,0,0,0,0,0,0,0,90,5.2,7,7,24.1,1370,9,999999999,350,0.0490,0,88,999.000,999.0,99.0 +1985,8,9,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,19.4,67,101600,0,0,404,0,0,0,0,0,0,0,70,5.2,5,5,24.1,77777,9,999999999,350,0.0490,0,88,999.000,999.0,99.0 +1985,8,9,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,19.4,67,101600,0,0,401,0,0,0,0,0,0,0,70,5.2,4,4,24.1,77777,9,999999999,350,0.0490,0,88,999.000,999.0,99.0 +1985,8,9,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,19.4,69,101500,0,0,396,0,0,0,0,0,0,0,70,4.1,3,3,24.1,77777,9,999999999,350,0.0490,0,88,999.000,999.0,99.0 +1985,8,9,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,20.6,74,101500,0,0,411,0,0,0,0,0,0,0,70,4.6,7,7,24.1,1370,9,999999999,370,0.0490,0,88,999.000,999.0,99.0 +1985,8,9,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,20.6,76,101500,0,0,408,34,47,29,0,0,0,0,70,3.6,7,7,24.1,1370,9,999999999,370,0.0320,0,88,999.000,999.0,99.0 +1985,8,9,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,20.6,74,101600,104,1119,407,186,244,112,13000,10900,11900,3000,60,6.7,6,6,24.1,1370,9,999999999,370,0.0320,0,88,999.000,999.0,99.0 +1985,8,9,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,21.1,72,101600,404,1329,418,325,234,203,28800,21000,22400,4550,60,6.2,7,7,24.1,1370,9,999999999,390,0.0320,0,88,999.000,999.0,99.0 +1985,8,9,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,20.0,61,101600,693,1329,421,652,613,215,55500,61600,23300,4740,60,7.2,6,6,32.2,1370,9,999999999,359,0.0320,0,88,999.000,999.0,99.0 +1985,8,9,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,20.0,53,101600,945,1329,423,822,792,140,73400,79300,16900,3680,60,8.2,3,3,40.2,77777,9,999999999,359,0.0320,0,88,999.000,999.0,99.0 +1985,8,9,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,20.6,53,101600,1141,1329,430,907,787,155,88200,79500,19700,6430,70,7.2,4,4,40.2,77777,9,999999999,370,0.0320,0,88,999.000,999.0,99.0 +1985,8,9,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,19.4,48,101600,1269,1329,429,874,702,176,90000,71000,22100,12760,60,8.2,3,3,40.2,77777,9,999999999,350,0.0320,0,88,999.000,999.0,99.0 +1985,8,9,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,20.0,52,101600,1319,1329,442,757,326,440,84400,35500,49100,47780,50,8.2,7,7,40.2,1370,9,999999999,359,0.0320,0,88,999.000,999.0,99.0 +1985,8,9,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,20.0,52,101500,1288,1329,430,852,751,184,96700,75800,23100,15310,60,8.2,4,4,40.2,77777,9,999999999,359,0.0320,0,88,999.000,999.0,99.0 +1985,8,9,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,19.4,47,101500,1178,1329,438,659,607,201,79500,62300,24200,10080,60,8.2,5,5,40.2,77777,9,999999999,350,0.0320,0,88,999.000,999.0,99.0 +1985,8,9,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,19.4,52,101400,997,1329,423,418,468,149,53900,48100,17800,4750,60,9.3,3,3,40.2,77777,9,999999999,350,0.0320,0,88,999.000,999.0,99.0 +1985,8,9,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,20.0,57,101400,757,1329,413,308,696,56,47800,68700,8500,1530,60,8.8,2,2,40.2,77777,9,999999999,359,0.0320,0,88,999.000,999.0,99.0 +1985,8,9,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,20.0,61,101400,474,1329,407,80,369,31,18200,35100,5700,760,70,7.7,2,2,24.1,77777,9,999999999,359,0.0320,0,88,999.000,999.0,99.0 +1985,8,9,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,20.0,67,101500,170,1329,398,6,12,2,500,700,400,30,80,7.2,2,2,24.1,77777,9,999999999,359,0.0320,0,88,999.000,999.0,99.0 +1985,8,9,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,20.6,72,101500,1,100,390,0,0,0,0,0,0,0,60,6.2,1,1,24.1,77777,9,999999999,370,0.0490,0,88,999.000,999.0,99.0 +1985,8,9,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,20.0,72,101600,0,0,387,0,0,0,0,0,0,0,60,5.7,1,1,24.1,77777,9,999999999,359,0.0490,0,88,999.000,999.0,99.0 +1985,8,9,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,19.4,69,101600,0,0,386,0,0,0,0,0,0,0,60,4.6,1,1,24.1,77777,9,999999999,350,0.0490,0,88,999.000,999.0,99.0 +1985,8,9,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,20.0,74,101600,0,0,384,0,0,0,0,0,0,0,60,3.6,1,1,24.1,77777,9,999999999,359,0.0490,0,88,999.000,999.0,99.0 +1985,8,9,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,19.4,71,101600,0,0,383,0,0,0,0,0,0,0,70,4.6,1,1,24.1,77777,9,999999999,350,0.0490,0,88,999.000,999.0,99.0 +1985,8,10,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,20.0,74,101600,0,0,384,0,0,0,0,0,0,0,70,4.1,1,1,24.1,77777,9,999999999,359,0.0490,0,88,999.000,999.0,99.0 +1985,8,10,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,20.0,76,101500,0,0,381,0,0,0,0,0,0,0,80,3.1,1,1,24.1,77777,9,999999999,359,0.0490,0,88,999.000,999.0,99.0 +1985,8,10,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,18.9,71,101500,0,0,380,0,0,0,0,0,0,0,60,3.1,1,1,24.1,77777,9,999999999,329,0.0490,0,88,999.000,999.0,99.0 +1985,8,10,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,19.4,74,101500,0,0,389,0,0,0,0,0,0,0,70,2.6,3,3,24.1,77777,9,999999999,350,0.0490,0,88,999.000,999.0,99.0 +1985,8,10,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,19.4,74,101500,0,0,389,0,0,0,0,0,0,0,60,3.6,3,3,24.1,77777,9,999999999,350,0.0490,0,88,999.000,999.0,99.0 +1985,8,10,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,19.4,74,101500,0,0,389,36,66,28,0,0,0,0,50,4.1,3,3,24.1,77777,9,999999999,350,0.0210,0,88,999.000,999.0,99.0 +1985,8,10,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,20.0,74,101600,102,1119,389,195,472,52,9400,23700,7100,740,70,4.1,2,2,24.1,77777,9,999999999,359,0.0210,0,88,999.000,999.0,99.0 +1985,8,10,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,19.4,61,101600,403,1330,403,430,647,92,29300,56500,12200,1640,60,8.2,2,2,40.2,77777,9,999999999,350,0.0210,0,88,999.000,999.0,99.0 +1985,8,10,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,19.4,57,101600,693,1330,409,671,815,91,54100,80200,12200,1970,70,7.7,2,2,40.2,77777,9,999999999,350,0.0210,0,88,999.000,999.0,99.0 +1985,8,10,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,19.4,53,101600,944,1330,415,830,839,109,75600,84900,15200,3100,70,8.2,2,2,40.2,77777,9,999999999,350,0.0210,0,88,999.000,999.0,99.0 +1985,8,10,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,18.9,51,101600,1141,1330,419,943,892,89,89000,89500,12000,3550,60,8.2,3,3,40.2,77777,9,999999999,329,0.0210,0,88,999.000,999.0,99.0 +1985,8,10,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,18.3,45,101600,1269,1330,423,983,876,112,98000,88000,13800,7170,70,8.8,2,2,40.2,77777,9,999999999,329,0.0210,0,88,999.000,999.0,99.0 +1985,8,10,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,18.3,47,101500,1318,1330,424,736,573,179,82200,59400,23100,22440,70,8.2,3,3,40.2,77777,9,999999999,329,0.0210,0,88,999.000,999.0,99.0 +1985,8,10,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,18.3,47,101500,1287,1330,420,849,864,81,95800,87000,11400,6240,70,7.7,2,2,24.1,77777,9,999999999,329,0.0210,0,88,999.000,999.0,99.0 +1985,8,10,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,18.3,45,101500,1177,1330,423,683,752,117,80800,75400,13900,4780,70,8.2,2,2,24.1,77777,9,999999999,329,0.0210,0,88,999.000,999.0,99.0 +1985,8,10,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,18.3,47,101400,995,1330,414,538,883,33,74500,88700,8000,1250,60,7.2,1,1,40.2,77777,9,999999999,329,0.0210,0,88,999.000,999.0,99.0 +1985,8,10,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,18.3,50,101400,755,1330,408,284,649,51,44400,64100,7900,1440,50,6.7,1,1,40.2,77777,9,999999999,329,0.0210,0,88,999.000,999.0,99.0 +1985,8,10,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,18.9,57,101400,472,1330,400,82,415,28,18800,38700,5000,840,70,4.6,1,1,40.2,77777,9,999999999,340,0.0210,0,88,999.000,999.0,99.0 +1985,8,10,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,17.2,58,101500,167,1330,386,7,19,2,500,1300,400,40,60,4.6,1,1,32.2,77777,9,999999999,300,0.0210,0,88,999.000,999.0,99.0 +1985,8,10,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,18.9,67,101600,1,78,386,0,0,0,0,0,0,0,80,6.7,1,1,24.1,77777,9,999999999,340,0.0490,0,88,999.000,999.0,99.0 +1985,8,10,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,19.4,69,101600,0,0,386,0,0,0,0,0,0,0,70,5.7,1,1,24.1,77777,9,999999999,350,0.0490,0,88,999.000,999.0,99.0 +1985,8,10,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,19.4,71,101600,0,0,389,0,0,0,0,0,0,0,70,4.1,2,2,24.1,77777,9,999999999,350,0.0490,0,88,999.000,999.0,99.0 +1985,8,10,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,18.9,69,101700,0,0,388,0,0,0,0,0,0,0,70,6.7,2,2,24.1,77777,9,999999999,340,0.0490,0,88,999.000,999.0,99.0 +1985,8,10,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,18.9,69,101600,0,0,388,0,0,0,0,0,0,0,60,2.6,2,2,24.1,77777,9,999999999,340,0.0490,0,88,999.000,999.0,99.0 +1985,8,11,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,20.0,74,101600,0,0,389,0,0,0,0,0,0,0,70,4.1,2,2,24.1,77777,9,999999999,359,0.0490,0,88,999.000,999.0,99.0 +1985,8,11,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,19.4,71,101500,0,0,389,0,0,0,0,0,0,0,70,3.1,2,2,24.1,77777,9,999999999,350,0.0490,0,88,999.000,999.0,99.0 +1985,8,11,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,20.0,76,101500,0,0,381,0,0,0,0,0,0,0,60,4.1,1,1,24.1,77777,9,999999999,359,0.0490,0,88,999.000,999.0,99.0 +1985,8,11,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,19.4,82,101500,0,0,377,0,0,0,0,0,0,0,0,0.0,2,2,24.1,77777,9,999999999,350,0.0490,0,88,999.000,999.0,99.0 +1985,8,11,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,19.4,84,101500,0,0,369,0,0,0,0,0,0,0,0,0.0,1,1,24.1,77777,9,999999999,350,0.0490,0,88,999.000,999.0,99.0 +1985,8,11,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,19.4,82,101500,0,0,372,48,193,26,0,0,0,0,0,0.0,1,1,24.1,77777,9,999999999,350,0.0770,0,88,999.000,999.0,99.0 +1985,8,11,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,20.0,84,101600,101,1097,373,225,544,60,10700,26400,8200,790,330,2.1,1,1,32.2,77777,9,999999999,359,0.0770,0,88,999.000,999.0,99.0 +1985,8,11,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,20.0,65,101600,401,1330,401,451,620,128,32100,54600,15600,2480,60,6.2,2,2,40.2,77777,9,999999999,359,0.0770,0,88,999.000,999.0,99.0 +1985,8,11,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,20.6,67,101600,692,1330,416,588,478,248,52600,49800,26700,5890,60,5.2,6,6,40.2,1370,9,999999999,370,0.0770,0,88,999.000,999.0,99.0 +1985,8,11,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,21.1,61,101600,944,1330,440,632,414,276,60200,42900,29700,7980,70,7.2,8,8,32.2,1520,9,999999999,379,0.0770,0,88,999.000,999.0,99.0 +1985,8,11,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,19.4,50,101500,1141,1330,432,603,310,307,63700,33700,34700,12630,70,5.2,5,5,32.2,77777,9,999999999,350,0.0770,0,88,999.000,999.0,99.0 +1985,8,11,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,20.0,53,101600,1268,1330,434,855,519,339,90400,54300,38500,26310,70,3.1,6,6,32.2,1520,9,999999999,359,0.0770,0,88,999.000,999.0,99.0 +1985,8,11,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,19.4,50,101500,1318,1330,436,740,467,286,83100,49100,34400,35920,60,6.2,6,6,40.2,1520,9,999999999,350,0.0770,0,88,999.000,999.0,99.0 +1985,8,11,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,19.4,45,101500,1287,1330,442,544,333,248,63900,35000,30000,21790,90,6.2,5,5,40.2,77777,9,999999999,340,0.0770,0,88,999.000,999.0,99.0 +1985,8,11,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,20.0,50,101400,1176,1330,436,804,793,208,97600,81200,25600,10310,40,7.2,5,5,40.2,77777,9,999999999,359,0.0770,0,88,999.000,999.0,99.0 +1985,8,11,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,20.6,52,101400,994,1330,434,370,347,172,48200,36300,21000,5240,70,6.2,4,4,32.2,77777,9,999999999,370,0.0770,0,88,999.000,999.0,99.0 +1985,8,11,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,20.6,55,101400,753,1330,424,275,521,89,41600,52900,11600,2120,60,6.2,3,3,32.2,77777,9,999999999,370,0.0770,0,88,999.000,999.0,99.0 +1985,8,11,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,21.1,63,101400,469,1330,415,74,299,36,15600,28400,5600,760,70,5.7,3,3,32.2,77777,9,999999999,379,0.0770,0,88,999.000,999.0,99.0 +1985,8,11,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,21.1,69,101500,164,1330,416,2,0,2,300,0,300,90,60,5.2,6,6,32.2,1370,9,999999999,379,0.0770,0,88,999.000,999.0,99.0 +1985,8,11,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,21.1,72,101600,0,78,418,0,0,0,0,0,0,0,80,3.1,7,7,24.1,1370,9,999999999,390,0.0490,0,88,999.000,999.0,99.0 +1985,8,11,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,21.7,79,101600,0,0,408,0,0,0,0,0,0,0,70,3.1,6,6,24.1,1370,9,999999999,400,0.0490,0,88,999.000,999.0,99.0 +1985,8,11,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,21.1,74,101700,0,0,410,0,0,0,0,0,0,0,60,4.6,6,6,24.1,1370,9,999999999,379,0.0490,0,88,999.000,999.0,99.0 +1985,8,11,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,20.6,72,101700,0,0,403,0,0,0,0,0,0,0,60,4.6,4,4,24.1,77777,9,999999999,370,0.0490,0,88,999.000,999.0,99.0 +1985,8,11,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,20.6,74,101700,0,0,400,0,0,0,0,0,0,0,60,4.1,4,4,24.1,77777,9,999999999,370,0.0490,0,88,999.000,999.0,99.0 +1985,8,12,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,20.0,72,101600,0,0,406,0,0,0,0,0,0,0,80,3.1,6,6,24.1,1370,9,999999999,359,0.0490,0,88,999.000,999.0,99.0 +1985,8,12,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,20.6,74,101600,0,0,411,0,0,0,0,0,0,0,60,5.2,7,7,24.1,1370,9,999999999,370,0.0490,0,88,999.000,999.0,99.0 +1985,8,12,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,20.0,72,101500,0,0,399,0,0,0,0,0,0,0,60,4.6,4,4,24.1,77777,9,999999999,359,0.0490,0,88,999.000,999.0,99.0 +1985,8,12,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,20.0,74,101500,0,0,396,0,0,0,0,0,0,0,60,3.6,4,4,24.1,77777,9,999999999,359,0.0490,0,88,999.000,999.0,99.0 +1985,8,12,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,20.0,74,101500,0,0,389,0,0,0,0,0,0,0,60,3.6,2,2,24.1,77777,9,999999999,359,0.0490,0,88,999.000,999.0,99.0 +1985,8,12,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,20.0,74,101500,0,0,389,53,221,27,0,0,0,0,70,4.1,2,2,24.1,77777,9,999999999,359,0.0450,0,88,999.000,999.0,99.0 +1985,8,12,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,20.0,74,101600,100,1098,389,212,449,76,11200,21500,9100,1580,60,3.1,2,2,24.1,77777,9,999999999,359,0.0450,0,88,999.000,999.0,99.0 +1985,8,12,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,20.0,63,101600,400,1330,408,487,759,92,32600,66100,12700,1640,60,6.2,3,3,40.2,77777,9,999999999,359,0.0450,0,88,999.000,999.0,99.0 +1985,8,12,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,20.0,57,101600,691,1330,417,673,781,118,55200,77500,14800,2570,60,7.2,3,3,40.2,77777,9,999999999,359,0.0450,0,88,999.000,999.0,99.0 +1985,8,12,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,20.0,55,101600,944,1330,423,769,642,216,70000,64400,24200,5970,60,8.2,4,4,40.2,77777,9,999999999,359,0.0450,0,88,999.000,999.0,99.0 +1985,8,12,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,19.4,55,101500,1141,1330,419,827,638,216,81400,65100,25400,9470,60,8.2,4,4,40.2,77777,9,999999999,350,0.0450,0,88,999.000,999.0,99.0 +1985,8,12,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,18.3,45,101500,1268,1330,431,956,700,260,98900,71300,30700,19590,50,8.2,4,4,40.2,77777,9,999999999,329,0.0450,0,88,999.000,999.0,99.0 +1985,8,12,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,18.3,45,101400,1318,1330,427,616,394,234,70700,41500,29500,28920,70,7.7,3,3,40.2,77777,9,999999999,329,0.0450,0,88,999.000,999.0,99.0 +1985,8,12,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,18.9,47,101400,1286,1330,428,842,738,186,95300,74500,23100,15090,70,8.8,3,3,40.2,77777,9,999999999,340,0.0450,0,88,999.000,999.0,99.0 +1985,8,12,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,17.8,45,101300,1175,1330,423,768,826,148,94000,83800,19800,6950,60,8.2,3,3,40.2,77777,9,999999999,309,0.0450,0,88,999.000,999.0,99.0 +1985,8,12,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,18.9,50,101300,992,1330,422,491,545,180,62300,55500,20800,5580,60,6.2,3,3,32.2,77777,9,999999999,340,0.0450,0,88,999.000,999.0,99.0 +1985,8,12,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,18.9,53,101300,751,1330,419,256,458,93,38000,46400,11700,2200,60,8.2,4,4,32.2,77777,9,999999999,329,0.0450,0,88,999.000,999.0,99.0 +1985,8,12,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,18.9,59,101300,466,1330,403,73,375,26,17900,35700,5400,660,60,6.2,3,2,32.2,77777,9,999999999,340,0.0450,0,88,999.000,999.0,99.0 +1985,8,12,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,18.9,63,101400,161,1330,404,3,1,2,200,100,200,60,70,5.7,5,4,32.2,77777,9,999999999,340,0.0450,0,88,999.000,999.0,99.0 +1985,8,12,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,18.9,65,101400,0,55,401,0,0,0,0,0,0,0,70,4.6,4,4,24.1,77777,9,999999999,340,0.0490,0,88,999.000,999.0,99.0 +1985,8,12,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,20.0,69,101500,0,0,409,0,0,0,0,0,0,0,70,5.2,6,6,24.1,1370,9,999999999,359,0.0490,0,88,999.000,999.0,99.0 +1985,8,12,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,19.4,69,101600,0,0,405,0,0,0,0,0,0,0,60,4.1,6,6,24.1,1370,9,999999999,350,0.0490,0,88,999.000,999.0,99.0 +1985,8,12,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,20.0,72,101600,0,0,417,0,0,0,0,0,0,0,60,5.2,8,8,24.1,1370,9,999999999,359,0.0490,0,88,999.000,999.0,99.0 +1985,8,12,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,20.0,72,101500,0,0,417,0,0,0,0,0,0,0,60,4.1,8,8,24.1,1370,9,999999999,359,0.0490,0,88,999.000,999.0,99.0 +1985,8,13,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,19.4,71,101500,0,0,413,0,0,0,0,0,0,0,60,4.1,8,8,24.1,1370,9,999999999,350,0.0490,0,88,999.000,999.0,99.0 +1985,8,13,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,20.6,79,101500,0,0,411,0,0,0,0,0,0,0,70,3.6,8,8,24.1,1370,9,999999999,370,0.0490,0,88,999.000,999.0,99.0 +1985,8,13,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,20.6,85,101400,0,0,426,0,0,0,0,0,0,0,60,5.2,10,10,16.1,1370,9,999999999,370,0.0490,0,88,999.000,999.0,99.0 +1985,8,13,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,20.6,82,101400,0,0,429,0,0,0,0,0,0,0,80,4.1,10,10,16.1,1370,9,999999999,370,0.0490,0,88,999.000,999.0,99.0 +1985,8,13,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,20.0,82,101400,0,0,405,0,0,0,0,0,0,0,40,3.1,8,8,24.1,1370,9,999999999,359,0.0490,0,88,999.000,999.0,99.0 +1985,8,13,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,20.6,85,101400,0,0,414,42,17,40,0,0,0,0,130,3.1,9,9,24.1,1370,9,999999999,370,0.0340,0,88,999.000,999.0,99.0 +1985,8,13,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,20.6,82,101500,99,1098,409,100,69,79,9300,4700,8800,1330,350,1.5,9,8,24.1,1370,9,999999999,370,0.0340,0,88,999.000,999.0,99.0 +1985,8,13,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,20.0,69,101500,399,1331,399,368,456,130,27100,40100,15100,2520,70,3.6,6,3,24.1,77777,9,999999999,359,0.0340,0,88,999.000,999.0,99.0 +1985,8,13,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,19.4,57,101500,691,1331,413,652,734,131,53500,72400,15800,2800,50,4.6,4,3,24.1,77777,9,999999999,350,0.0340,0,88,999.000,999.0,99.0 +1985,8,13,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,18.9,53,101500,943,1331,415,886,885,125,79500,89000,16200,3400,50,6.7,4,3,24.1,77777,9,999999999,340,0.0340,0,88,999.000,999.0,99.0 +1985,8,13,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,18.9,48,101500,1140,1331,421,930,856,112,87500,85800,13800,4090,60,8.2,3,2,24.1,77777,9,999999999,329,0.0340,0,88,999.000,999.0,99.0 +1985,8,13,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,18.3,45,101400,1268,1331,423,943,853,96,94400,85700,12500,6270,50,8.2,3,2,24.1,77777,9,999999999,329,0.0340,0,88,999.000,999.0,99.0 +1985,8,13,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,18.9,45,101400,1318,1331,427,933,832,126,97800,83500,14800,12450,60,6.7,3,2,24.1,77777,9,999999999,329,0.0340,0,88,999.000,999.0,99.0 +1985,8,13,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,18.3,45,101400,1285,1331,423,850,768,169,97500,77800,22100,13740,70,7.7,3,2,24.1,77777,9,999999999,320,0.0340,0,88,999.000,999.0,99.0 +1985,8,13,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,17.8,48,101300,1174,1331,413,692,746,134,85700,75900,18600,6360,50,8.8,3,2,24.1,77777,9,999999999,309,0.0340,0,88,999.000,999.0,99.0 +1985,8,13,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,18.3,48,101300,991,1331,417,498,761,67,66600,76200,9700,2160,50,6.2,3,2,32.2,77777,9,999999999,329,0.0340,0,88,999.000,999.0,99.0 +1985,8,13,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,18.9,53,101200,748,1331,419,235,385,99,33900,38900,12000,2330,50,5.7,4,4,32.2,77777,9,999999999,329,0.0340,0,88,999.000,999.0,99.0 +1985,8,13,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,18.9,59,101300,464,1331,407,69,246,38,13600,23200,5500,800,60,5.7,3,3,32.2,77777,9,999999999,340,0.0340,0,88,999.000,999.0,99.0 +1985,8,13,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,18.9,65,101300,158,1331,394,4,4,1,200,200,200,20,70,6.2,2,2,32.2,77777,9,999999999,340,0.0340,0,88,999.000,999.0,99.0 +1985,8,13,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,18.3,64,101400,0,33,390,0,0,0,0,0,0,0,60,4.6,2,2,24.1,77777,9,999999999,320,0.0490,0,88,999.000,999.0,99.0 +1985,8,13,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,18.9,67,101500,0,0,391,0,0,0,0,0,0,0,60,4.6,2,2,24.1,77777,9,999999999,340,0.0490,0,88,999.000,999.0,99.0 +1985,8,13,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,19.4,69,101500,0,0,396,0,0,0,0,0,0,0,60,5.2,3,3,24.1,77777,9,999999999,350,0.0490,0,88,999.000,999.0,99.0 +1985,8,13,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,19.4,71,101500,0,0,392,0,0,0,0,0,0,0,70,3.6,3,3,24.1,77777,9,999999999,350,0.0490,0,88,999.000,999.0,99.0 +1985,8,13,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,18.9,69,101500,0,0,392,0,0,0,0,0,0,0,60,4.1,3,3,24.1,77777,9,999999999,340,0.0490,0,88,999.000,999.0,99.0 +1985,8,14,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,19.4,71,101500,0,0,398,0,0,0,0,0,0,0,60,3.6,5,5,24.1,77777,9,999999999,350,0.0490,0,88,999.000,999.0,99.0 +1985,8,14,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,18.9,69,101400,0,0,392,0,0,0,0,0,0,0,60,4.6,3,3,24.1,77777,9,999999999,340,0.0490,0,88,999.000,999.0,99.0 +1985,8,14,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,18.9,71,101400,0,0,385,0,0,0,0,0,0,0,60,3.1,2,2,24.1,77777,9,999999999,329,0.0490,0,88,999.000,999.0,99.0 +1985,8,14,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,18.9,74,101400,0,0,377,0,0,0,0,0,0,0,50,3.1,1,1,24.1,77777,9,999999999,340,0.0490,0,88,999.000,999.0,99.0 +1985,8,14,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,18.9,74,101400,0,0,377,0,0,0,0,0,0,0,40,3.6,1,1,24.1,77777,9,999999999,340,0.0490,0,88,999.000,999.0,99.0 +1985,8,14,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,18.9,82,101400,0,0,369,50,267,19,0,0,0,0,340,2.1,1,1,24.1,77777,9,999999999,340,0.0390,0,88,999.000,999.0,99.0 +1985,8,14,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,19.4,79,101400,98,1076,375,232,648,38,9300,36500,5900,400,0,0.0,1,1,32.2,77777,9,999999999,350,0.0390,0,88,999.000,999.0,99.0 +1985,8,14,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,19.4,65,101500,398,1331,392,451,765,53,29200,68300,8700,1060,70,2.6,1,1,24.1,77777,9,999999999,350,0.0390,0,88,999.000,999.0,99.0 +1985,8,14,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,18.9,57,101500,690,1331,400,640,813,63,50900,79500,9600,1530,30,4.1,1,1,40.2,77777,9,999999999,340,0.0390,0,88,999.000,999.0,99.0 +1985,8,14,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,18.9,51,101500,943,1331,415,829,842,106,72800,83900,13300,2510,70,7.2,2,2,40.2,77777,9,999999999,329,0.0390,0,88,999.000,999.0,99.0 +1985,8,14,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,19.4,50,101500,1140,1331,421,947,844,140,92600,85600,19000,5880,60,6.2,2,2,40.2,77777,9,999999999,350,0.0390,0,88,999.000,999.0,99.0 +1985,8,14,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,18.3,44,101500,1268,1331,426,985,857,134,97700,85900,15600,8070,60,7.2,2,2,40.2,77777,9,999999999,329,0.0390,0,88,999.000,999.0,99.0 +1985,8,14,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,18.3,47,101400,1317,1331,420,914,770,167,99900,78200,22400,18980,50,5.7,2,2,40.2,77777,9,999999999,329,0.0390,0,88,999.000,999.0,99.0 +1985,8,14,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,18.9,51,101400,1285,1331,419,816,710,187,92300,71600,23000,14890,60,6.2,3,3,40.2,77777,9,999999999,329,0.0390,0,88,999.000,999.0,99.0 +1985,8,14,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,18.3,45,101400,1173,1331,427,683,689,167,81800,69500,20400,7570,50,6.2,3,3,40.2,77777,9,999999999,320,0.0390,0,88,999.000,999.0,99.0 +1985,8,14,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,18.3,47,101300,989,1331,424,428,503,144,55900,51700,17400,4530,60,7.7,3,3,32.2,77777,9,999999999,329,0.0390,0,88,999.000,999.0,99.0 +1985,8,14,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,18.3,50,101300,746,1331,418,288,597,79,44500,59700,10900,1900,60,6.2,3,3,32.2,77777,9,999999999,329,0.0390,0,88,999.000,999.0,99.0 +1985,8,14,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,18.9,57,101400,461,1331,405,62,274,30,13900,25900,4900,640,70,6.7,2,2,32.2,77777,9,999999999,340,0.0390,0,88,999.000,999.0,99.0 +1985,8,14,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,18.9,63,101400,154,1331,397,0,0,0,0,0,0,0,60,5.2,2,2,32.2,77777,9,999999999,340,0.0490,0,88,999.000,999.0,99.0 +1985,8,14,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,20.0,69,101500,0,33,399,0,0,0,0,0,0,0,90,4.6,3,3,24.1,77777,9,999999999,359,0.0490,0,88,999.000,999.0,99.0 +1985,8,14,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,20.6,76,101600,0,0,397,0,0,0,0,0,0,0,70,4.1,4,4,24.1,77777,9,999999999,370,0.0490,0,88,999.000,999.0,99.0 +1985,8,14,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,20.0,74,101600,0,0,389,0,0,0,0,0,0,0,70,3.6,2,2,24.1,77777,9,999999999,359,0.0490,0,88,999.000,999.0,99.0 +1985,8,14,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,20.0,76,101600,0,0,381,0,0,0,0,0,0,0,60,2.1,1,1,24.1,77777,9,999999999,359,0.0490,0,88,999.000,999.0,99.0 +1985,8,14,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,20.0,74,101600,0,0,389,0,0,0,0,0,0,0,40,4.1,2,2,24.1,77777,9,999999999,359,0.0490,0,88,999.000,999.0,99.0 +1985,8,15,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,20.0,74,101600,0,0,389,0,0,0,0,0,0,0,60,5.2,2,2,24.1,77777,9,999999999,359,0.0490,0,88,999.000,999.0,99.0 +1985,8,15,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,20.0,74,101500,0,0,393,0,0,0,0,0,0,0,60,6.2,3,3,24.1,77777,9,999999999,359,0.0490,0,88,999.000,999.0,99.0 +1985,8,15,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,20.0,76,101500,0,0,390,0,0,0,0,0,0,0,60,5.2,3,3,24.1,77777,9,999999999,359,0.0490,0,88,999.000,999.0,99.0 +1985,8,15,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,20.0,76,101400,0,0,386,0,0,0,0,0,0,0,70,4.1,2,2,24.1,77777,9,999999999,359,0.0490,0,88,999.000,999.0,99.0 +1985,8,15,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,20.0,76,101400,0,0,386,0,0,0,0,0,0,0,60,4.1,2,2,24.1,77777,9,999999999,359,0.0490,0,88,999.000,999.0,99.0 +1985,8,15,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,19.4,74,101500,0,0,392,50,150,32,0,0,0,0,50,3.1,4,4,24.1,77777,9,999999999,350,0.0250,0,88,999.000,999.0,99.0 +1985,8,15,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,20.0,72,101500,96,1077,396,222,521,66,10900,24300,8600,810,60,5.2,3,3,40.2,77777,9,999999999,359,0.0250,0,88,999.000,999.0,99.0 +1985,8,15,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,19.4,63,101600,397,1332,400,408,589,102,28000,50700,12900,1770,50,2.6,2,2,24.1,77777,9,999999999,350,0.0250,0,88,999.000,999.0,99.0 +1985,8,15,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,19.4,61,101600,689,1332,407,581,610,148,48000,59800,17000,3090,60,6.2,3,3,24.1,77777,9,999999999,350,0.0250,0,88,999.000,999.0,99.0 +1985,8,15,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,18.9,55,101600,943,1332,419,667,501,237,63500,52000,26600,6740,60,5.2,5,5,24.1,77777,9,999999999,340,0.0250,0,88,999.000,999.0,99.0 +1985,8,15,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,18.9,48,101600,1140,1332,425,678,529,173,67800,54500,21000,7660,70,6.2,3,3,24.1,77777,9,999999999,329,0.0250,0,88,999.000,999.0,99.0 +1985,8,15,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,18.3,45,101600,1268,1332,427,852,621,237,88800,63500,28200,17710,70,6.7,3,3,24.1,77777,9,999999999,329,0.0250,0,88,999.000,999.0,99.0 +1985,8,15,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,17.8,42,101500,1317,1332,429,664,447,231,72700,45900,27200,26910,50,7.7,3,3,24.1,77777,9,999999999,309,0.0250,0,88,999.000,999.0,99.0 +1985,8,15,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,17.8,41,101500,1284,1332,433,870,836,131,96400,83900,15300,8880,60,5.7,3,3,24.1,77777,9,999999999,320,0.0250,0,88,999.000,999.0,99.0 +1985,8,15,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,17.8,44,101400,1172,1332,427,623,628,154,75300,63600,19200,7050,80,5.7,3,3,24.1,77777,9,999999999,320,0.0250,0,88,999.000,999.0,99.0 +1985,8,15,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,17.2,43,101400,987,1332,418,520,766,88,68400,76600,11500,2520,50,5.7,2,2,32.2,77777,9,999999999,300,0.0250,0,88,999.000,999.0,99.0 +1985,8,15,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,17.8,55,101400,744,1332,401,271,644,46,43100,63600,7500,1340,60,5.7,2,2,32.2,77777,9,999999999,320,0.0250,0,88,999.000,999.0,99.0 +1985,8,15,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,18.9,60,101400,458,1332,399,72,360,28,17100,34000,5400,700,60,5.7,2,2,32.2,77777,9,999999999,329,0.0250,0,88,999.000,999.0,99.0 +1985,8,15,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,18.9,65,101500,151,1332,394,0,0,0,0,0,0,0,40,6.2,2,2,32.2,77777,9,999999999,340,0.0490,0,88,999.000,999.0,99.0 +1985,8,15,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,18.9,67,101500,0,11,386,0,0,0,0,0,0,0,60,4.1,1,1,24.1,77777,9,999999999,340,0.0490,0,88,999.000,999.0,99.0 +1985,8,15,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,18.9,69,101600,0,0,383,0,0,0,0,0,0,0,70,3.1,1,1,24.1,77777,9,999999999,340,0.0490,0,88,999.000,999.0,99.0 +1985,8,15,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,20.0,72,101600,0,0,387,0,0,0,0,0,0,0,70,4.6,1,1,24.1,77777,9,999999999,359,0.0490,0,88,999.000,999.0,99.0 +1985,8,15,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,19.4,71,101600,0,0,383,0,0,0,0,0,0,0,70,4.6,1,1,24.1,77777,9,999999999,350,0.0490,0,88,999.000,999.0,99.0 +1985,8,15,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,20.0,74,101600,0,0,384,0,0,0,0,0,0,0,70,5.2,1,1,24.1,77777,9,999999999,359,0.0490,0,88,999.000,999.0,99.0 +1985,8,16,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,20.0,74,101600,0,0,384,0,0,0,0,0,0,0,50,5.2,1,1,24.1,77777,9,999999999,359,0.0490,0,88,999.000,999.0,99.0 +1985,8,16,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,19.4,74,101500,0,0,385,0,0,0,0,0,0,0,60,4.1,2,2,24.1,77777,9,999999999,350,0.0490,0,88,999.000,999.0,99.0 +1985,8,16,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,20.0,76,101500,0,0,390,0,0,0,0,0,0,0,60,5.2,3,3,24.1,77777,9,999999999,359,0.0490,0,88,999.000,999.0,99.0 +1985,8,16,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,20.0,79,101400,0,0,390,0,0,0,0,0,0,0,50,3.1,4,4,24.1,77777,9,999999999,359,0.0490,0,88,999.000,999.0,99.0 +1985,8,16,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,21.1,85,101400,0,0,403,0,0,0,0,0,0,0,40,3.1,7,7,19.3,1370,9,999999999,390,0.0490,0,88,999.000,999.0,99.0 +1985,8,16,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,20.6,90,101500,0,0,389,55,209,30,0,0,0,0,320,2.1,6,6,24.1,1370,9,999999999,370,0.0210,0,88,999.000,999.0,99.0 +1985,8,16,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,21.1,85,101500,95,1077,398,197,302,106,12800,13100,11600,2800,340,2.1,6,6,32.2,1370,9,999999999,390,0.0210,0,88,999.000,999.0,99.0 +1985,8,16,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,21.1,77,101500,396,1332,407,456,520,187,34800,46300,21000,4250,60,3.1,6,6,24.1,1370,9,999999999,390,0.0210,0,88,999.000,999.0,99.0 +1985,8,16,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,20.6,63,101500,689,1332,418,562,521,192,48400,52400,21200,4160,90,4.1,5,5,24.1,77777,9,999999999,370,0.0210,0,88,999.000,999.0,99.0 +1985,8,16,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,20.0,57,101500,942,1332,427,667,428,299,63100,44300,31700,8660,60,5.7,6,6,24.1,1370,9,999999999,359,0.0210,0,88,999.000,999.0,99.0 +1985,8,16,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,20.6,57,101500,1140,1332,431,537,281,269,57200,30600,30900,10850,60,7.2,6,6,24.1,1370,9,999999999,370,0.0210,0,88,999.000,999.0,99.0 +1985,8,16,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,19.4,50,101400,1267,1332,429,981,944,45,100200,95200,9400,3190,60,7.2,4,4,24.1,77777,9,999999999,350,0.0210,0,88,999.000,999.0,99.0 +1985,8,16,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,18.3,45,101400,1316,1332,423,845,726,142,94000,74100,20600,15870,70,6.7,3,2,24.1,77777,9,999999999,320,0.0210,0,88,999.000,999.0,99.0 +1985,8,16,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,18.9,45,101300,1283,1332,427,866,904,67,98400,91100,10500,5030,20,7.2,3,2,24.1,77777,9,999999999,329,0.0210,0,88,999.000,999.0,99.0 +1985,8,16,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,19.4,48,101300,1170,1332,425,642,714,110,76300,71600,13200,4450,40,8.2,3,2,24.1,77777,9,999999999,340,0.0210,0,88,999.000,999.0,99.0 +1985,8,16,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,18.9,48,101200,986,1332,425,530,776,94,69500,77500,12000,2590,30,7.2,3,3,40.2,77777,9,999999999,329,0.0210,0,88,999.000,999.0,99.0 +1985,8,16,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,19.4,53,101200,742,1332,419,198,365,71,30200,37200,9400,1710,40,8.8,5,3,40.2,77777,9,999999999,350,0.0210,0,88,999.000,999.0,99.0 +1985,8,16,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,18.9,57,101300,455,1332,409,63,270,31,13700,25500,5000,660,50,5.2,5,3,40.2,77777,9,999999999,340,0.0210,0,88,999.000,999.0,99.0 +1985,8,16,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,18.3,60,101300,148,1321,400,0,0,0,0,0,0,0,60,4.6,4,3,32.2,77777,9,999999999,320,0.0490,0,88,999.000,999.0,99.0 +1985,8,16,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,18.3,64,101300,0,0,394,0,0,0,0,0,0,0,50,5.7,4,3,24.1,77777,9,999999999,320,0.0490,0,88,999.000,999.0,99.0 +1985,8,16,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,18.9,67,101400,0,0,395,0,0,0,0,0,0,0,40,1.5,4,3,24.1,77777,9,999999999,340,0.0490,0,88,999.000,999.0,99.0 +1985,8,16,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,18.9,67,101400,0,0,398,0,0,0,0,0,0,0,50,2.6,5,4,24.1,77777,9,999999999,340,0.0490,0,88,999.000,999.0,99.0 +1985,8,16,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,20.6,74,101400,0,0,411,0,0,0,0,0,0,0,50,5.2,7,7,24.1,1370,9,999999999,370,0.0490,0,88,999.000,999.0,99.0 +1985,8,16,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,20.0,74,101400,0,0,399,0,0,0,0,0,0,0,70,4.1,5,5,24.1,77777,9,999999999,359,0.0490,0,88,999.000,999.0,99.0 +1985,8,17,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,20.0,76,101400,0,0,396,0,0,0,0,0,0,0,60,4.1,5,5,24.1,77777,9,999999999,359,0.0490,0,88,999.000,999.0,99.0 +1985,8,17,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,20.0,79,101300,0,0,387,0,0,0,0,0,0,0,60,4.1,3,3,24.1,77777,9,999999999,359,0.0490,0,88,999.000,999.0,99.0 +1985,8,17,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,20.0,79,101300,0,0,387,0,0,0,0,0,0,0,70,3.1,3,3,24.1,77777,9,999999999,359,0.0490,0,88,999.000,999.0,99.0 +1985,8,17,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,19.4,74,101300,0,0,385,0,0,0,0,0,0,0,60,5.2,2,2,24.1,77777,9,999999999,350,0.0490,0,88,999.000,999.0,99.0 +1985,8,17,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,19.4,82,101300,0,0,377,0,0,0,0,0,0,0,30,1.5,2,2,24.1,77777,9,999999999,350,0.0490,0,88,999.000,999.0,99.0 +1985,8,17,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,18.9,79,101300,0,0,383,48,202,24,0,0,0,0,70,2.1,4,4,24.1,77777,9,999999999,340,0.0200,0,88,999.000,999.0,99.0 +1985,8,17,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,20.0,82,101300,94,1055,398,185,242,113,13600,11600,12500,2370,290,1.5,7,7,32.2,2740,9,999999999,359,0.0200,0,88,999.000,999.0,99.0 +1985,8,17,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,20.0,67,101400,395,1333,412,301,212,191,26800,18900,21100,4270,40,3.1,7,6,24.1,7620,9,999999999,359,0.0200,0,88,999.000,999.0,99.0 +1985,8,17,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,20.0,63,101400,688,1333,414,602,569,199,51500,57100,21900,4330,70,4.6,7,5,24.1,7620,9,999999999,359,0.0200,0,88,999.000,999.0,99.0 +1985,8,17,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,20.0,57,101400,942,1333,423,636,436,262,60600,45200,28500,7490,50,4.6,8,5,24.1,7010,9,999999999,359,0.0200,0,88,999.000,999.0,99.0 +1985,8,17,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,19.4,50,101400,1140,1333,432,861,632,258,84000,63900,29300,11020,80,4.1,8,5,24.1,7010,9,999999999,350,0.0200,0,88,999.000,999.0,99.0 +1985,8,17,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,19.4,48,101300,1267,1333,435,847,595,258,87800,60600,30100,19020,70,3.1,8,5,24.1,7010,9,999999999,350,0.0200,0,88,999.000,999.0,99.0 +1985,8,17,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,19.4,52,101300,1316,1333,426,927,751,201,99300,75600,24500,21540,80,8.2,7,4,24.1,7010,9,999999999,350,0.0200,0,88,999.000,999.0,99.0 +1985,8,17,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,20.6,59,101200,1282,1333,418,757,617,213,87300,63400,26100,17550,240,1.5,6,3,24.1,77777,9,999999999,370,0.0200,0,88,999.000,999.0,99.0 +1985,8,17,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,21.1,54,101200,1169,1333,434,501,350,241,60700,36700,28400,11560,250,4.6,5,4,24.1,77777,9,999999999,390,0.0200,0,88,999.000,999.0,99.0 +1985,8,17,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,21.7,61,101200,984,1333,433,388,427,149,49900,43800,17500,4620,220,4.6,6,6,24.1,7010,9,999999999,390,0.0200,0,88,999.000,999.0,99.0 +1985,8,17,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,21.1,59,101200,739,1333,444,182,97,149,22800,10200,17200,3860,250,4.1,8,8,24.1,1370,9,999999999,379,0.0200,0,88,999.000,999.0,99.0 +1985,8,17,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,21.1,65,101200,452,1333,434,53,63,46,7800,6100,5800,1040,220,1.5,8,8,24.1,1370,9,999999999,379,0.0200,0,88,999.000,999.0,99.0 +1985,8,17,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,20.6,69,101200,144,1300,413,0,0,0,0,0,0,0,50,3.6,8,6,24.1,7620,9,999999999,370,0.0490,0,88,999.000,999.0,99.0 +1985,8,17,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,20.0,72,101300,0,0,396,0,0,0,0,0,0,0,60,3.1,5,3,24.1,77777,9,999999999,359,0.0490,0,88,999.000,999.0,99.0 +1985,8,17,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,20.0,74,101400,0,0,393,0,0,0,0,0,0,0,30,2.6,3,3,24.1,77777,9,999999999,359,0.0490,0,88,999.000,999.0,99.0 +1985,8,17,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,20.0,76,101400,0,0,386,0,0,0,0,0,0,0,0,0.0,2,2,24.1,77777,9,999999999,359,0.0490,0,88,999.000,999.0,99.0 +1985,8,17,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,20.6,82,101400,0,0,384,0,0,0,0,0,0,0,310,2.6,2,2,24.1,77777,9,999999999,370,0.0490,0,88,999.000,999.0,99.0 +1985,8,17,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,20.6,85,101400,0,0,381,0,0,0,0,0,0,0,320,3.1,2,2,24.1,77777,9,999999999,370,0.0490,0,88,999.000,999.0,99.0 +1985,8,18,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,20.6,85,101300,0,0,376,0,0,0,0,0,0,0,320,3.1,1,1,24.1,77777,9,999999999,370,0.0490,0,88,999.000,999.0,99.0 +1985,8,18,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,20.0,84,101300,0,0,373,0,0,0,0,0,0,0,340,2.6,1,1,24.1,77777,9,999999999,359,0.0490,0,88,999.000,999.0,99.0 +1985,8,18,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,19.4,84,101300,0,0,369,0,0,0,0,0,0,0,290,2.1,1,1,24.1,77777,9,999999999,350,0.0490,0,88,999.000,999.0,99.0 +1985,8,18,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,19.4,87,101300,0,0,367,0,0,0,0,0,0,0,340,2.1,1,1,24.1,77777,9,999999999,350,0.0490,0,88,999.000,999.0,99.0 +1985,8,18,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,20.0,87,101300,0,0,379,0,0,0,0,0,0,0,350,1.5,3,3,24.1,77777,9,999999999,359,0.0490,0,88,999.000,999.0,99.0 +1985,8,18,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,19.4,90,101300,0,0,357,50,239,21,0,0,0,0,270,2.1,0,0,24.1,77777,9,999999999,350,0.0550,0,88,999.000,999.0,99.0 +1985,8,18,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,20.0,84,101400,93,1056,366,238,659,42,9500,36100,6200,350,0,0.0,0,0,24.1,77777,9,999999999,359,0.0550,0,88,999.000,999.0,99.0 +1985,8,18,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,20.0,67,101400,394,1333,385,477,804,61,30400,71000,9400,1130,0,0.0,0,0,40.2,77777,9,999999999,359,0.0550,0,88,999.000,999.0,99.0 +1985,8,18,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,20.0,61,101400,687,1333,394,697,876,77,55300,85500,11100,1610,220,1.5,0,0,40.2,77777,9,999999999,359,0.0550,0,88,999.000,999.0,99.0 +1985,8,18,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,21.1,59,101400,942,1333,404,868,911,87,76200,90900,11800,2330,220,2.6,0,0,40.2,77777,9,999999999,379,0.0550,0,88,999.000,999.0,99.0 +1985,8,18,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,21.7,57,101500,1139,1333,419,861,784,113,81000,78600,13700,4070,220,4.1,1,1,40.2,77777,9,999999999,390,0.0550,0,88,999.000,999.0,99.0 +1985,8,18,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,21.1,55,101500,1267,1333,418,960,892,77,96600,89800,11100,5100,220,4.1,1,1,40.2,77777,9,999999999,379,0.0550,0,88,999.000,999.0,99.0 +1985,8,18,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,21.7,57,101400,1315,1333,419,936,882,84,99400,88800,11600,8150,220,4.1,1,1,40.2,77777,9,999999999,390,0.0550,0,88,999.000,999.0,99.0 +1985,8,18,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,21.7,55,101400,1281,1333,422,836,865,74,94800,87100,10800,5390,220,4.1,1,1,40.2,77777,9,999999999,390,0.0550,0,88,999.000,999.0,99.0 +1985,8,18,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,21.1,55,101400,1168,1333,424,678,741,128,84400,75500,18100,5940,210,3.6,2,2,40.2,77777,9,999999999,379,0.0550,0,88,999.000,999.0,99.0 +1985,8,18,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,21.1,57,101400,982,1333,421,503,697,114,67300,70600,15200,3410,200,4.1,2,2,40.2,77777,9,999999999,379,0.0550,0,88,999.000,999.0,99.0 +1985,8,18,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,21.1,59,101400,736,1333,417,258,608,49,40800,59900,7600,1390,170,3.6,2,2,40.2,77777,9,999999999,379,0.0550,0,88,999.000,999.0,99.0 +1985,8,18,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,21.1,63,101400,449,1333,406,68,343,26,16000,32300,5100,650,170,3.1,1,1,40.2,77777,9,999999999,379,0.0550,0,88,999.000,999.0,99.0 +1985,8,18,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,21.1,67,101400,140,1300,392,0,0,0,0,0,0,0,240,2.6,0,0,24.1,77777,9,999999999,379,0.0490,0,88,999.000,999.0,99.0 +1985,8,18,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,21.7,74,101500,0,0,387,0,0,0,0,0,0,0,320,3.1,0,0,24.1,77777,9,999999999,400,0.0490,0,88,999.000,999.0,99.0 +1985,8,18,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,20.6,72,101500,0,0,383,0,0,0,0,0,0,0,360,2.6,0,0,24.1,77777,9,999999999,370,0.0490,0,88,999.000,999.0,99.0 +1985,8,18,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,19.4,71,101500,0,0,376,0,0,0,0,0,0,0,60,2.6,0,0,24.1,77777,9,999999999,350,0.0490,0,88,999.000,999.0,99.0 +1985,8,18,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,20.6,76,101500,0,0,377,0,0,0,0,0,0,0,50,2.1,0,0,24.1,77777,9,999999999,370,0.0490,0,88,999.000,999.0,99.0 +1985,8,18,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,20.0,76,101500,0,0,374,0,0,0,0,0,0,0,310,2.1,0,0,24.1,77777,9,999999999,359,0.0490,0,88,999.000,999.0,99.0 +1985,8,19,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,20.6,82,101500,0,0,372,0,0,0,0,0,0,0,290,2.6,0,0,24.1,77777,9,999999999,370,0.0490,0,88,999.000,999.0,99.0 +1985,8,19,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,20.6,85,101500,0,0,369,0,0,0,0,0,0,0,300,2.6,0,0,24.1,77777,9,999999999,370,0.0490,0,88,999.000,999.0,99.0 +1985,8,19,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,20.6,82,101400,0,0,384,0,0,0,0,0,0,0,300,2.1,2,2,24.1,77777,9,999999999,370,0.0490,0,88,999.000,999.0,99.0 +1985,8,19,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,20.6,85,101500,0,0,391,0,0,0,0,0,0,0,320,2.1,5,5,24.1,77777,9,999999999,370,0.0490,0,88,999.000,999.0,99.0 +1985,8,19,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,20.6,85,101500,0,0,388,0,0,0,0,0,0,0,300,2.1,4,4,24.1,77777,9,999999999,370,0.0490,0,88,999.000,999.0,99.0 +1985,8,19,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,21.1,87,101500,0,0,385,53,232,25,0,0,0,0,340,2.1,3,3,24.1,77777,9,999999999,379,0.0220,0,88,999.000,999.0,99.0 +1985,8,19,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,21.7,82,101600,92,1056,391,247,663,51,10800,32300,7800,720,260,2.1,2,2,40.2,77777,9,999999999,400,0.0220,0,88,999.000,999.0,99.0 +1985,8,19,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,21.7,69,101600,393,1334,406,460,702,98,30800,60400,13000,1710,230,1.5,2,2,32.2,77777,9,999999999,390,0.0220,0,88,999.000,999.0,99.0 +1985,8,19,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,22.2,67,101600,687,1334,420,529,539,148,45800,54300,17800,3120,50,2.6,4,4,32.2,77777,9,999999999,409,0.0220,0,88,999.000,999.0,99.0 +1985,8,19,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,21.7,61,101600,941,1334,426,784,712,174,71600,72200,20500,4920,0,0.0,4,4,32.2,77777,9,999999999,400,0.0220,0,88,999.000,999.0,99.0 +1985,8,19,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,22.8,65,101600,1139,1334,427,915,664,283,88800,66700,31700,11920,220,5.7,4,4,24.1,77777,9,999999999,419,0.0220,0,88,999.000,999.0,99.0 +1985,8,19,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,22.8,63,101500,1266,1334,430,819,513,312,87300,53800,36100,23300,210,4.6,4,4,24.1,77777,9,999999999,419,0.0220,0,88,999.000,999.0,99.0 +1985,8,19,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,22.8,59,101500,1315,1334,444,763,540,243,83400,55300,28800,26690,240,5.7,6,6,24.1,1370,9,999999999,419,0.0220,0,88,999.000,999.0,99.0 +1985,8,19,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,22.8,59,101500,1280,1334,440,792,605,261,89800,61600,30500,20890,220,5.7,5,5,24.1,77777,9,999999999,419,0.0220,0,88,999.000,999.0,99.0 +1985,8,19,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,23.3,61,101400,1166,1334,450,586,433,266,70600,45400,30900,12650,230,5.2,7,7,24.1,7620,9,999999999,430,0.0220,0,88,999.000,999.0,99.0 +1985,8,19,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,22.2,61,101400,980,1334,449,406,385,192,52400,40200,22800,5700,220,4.1,8,8,24.1,1370,9,999999999,409,0.0220,0,88,999.000,999.0,99.0 +1985,8,19,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,22.8,65,101400,734,1334,456,146,38,133,17000,3800,15000,4520,100,4.1,9,9,24.1,1370,9,999999999,419,0.0220,0,88,999.000,999.0,99.0 +1985,8,19,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,22.2,63,101500,445,1334,430,60,249,29,12500,23400,4700,610,70,5.2,5,5,24.1,77777,9,999999999,409,0.0220,0,88,999.000,999.0,99.0 +1985,8,19,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,21.7,67,101500,137,1278,409,0,0,0,0,0,0,0,80,4.1,2,2,24.1,77777,9,999999999,390,0.0490,0,88,999.000,999.0,99.0 +1985,8,19,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,22.2,74,101600,0,0,398,0,0,0,0,0,0,0,70,2.1,1,1,24.1,77777,9,999999999,409,0.0490,0,88,999.000,999.0,99.0 +1985,8,19,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,21.7,74,101600,0,0,395,0,0,0,0,0,0,0,70,2.6,1,1,24.1,77777,9,999999999,400,0.0490,0,88,999.000,999.0,99.0 +1985,8,19,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,22.2,77,101700,0,0,401,0,0,0,0,0,0,0,60,4.1,2,2,24.1,77777,9,999999999,409,0.0490,0,88,999.000,999.0,99.0 +1985,8,19,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,21.7,74,101700,0,0,407,0,0,0,0,0,0,0,70,4.6,4,4,24.1,77777,9,999999999,400,0.0490,0,88,999.000,999.0,99.0 +1985,8,19,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,21.7,77,101700,0,0,397,0,0,0,0,0,0,0,70,3.6,2,2,24.1,77777,9,999999999,400,0.0490,0,88,999.000,999.0,99.0 +1985,8,20,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,21.7,77,101700,0,0,397,0,0,0,0,0,0,0,90,3.1,2,2,24.1,77777,9,999999999,400,0.0490,0,88,999.000,999.0,99.0 +1985,8,20,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,21.7,77,101600,0,0,397,0,0,0,0,0,0,0,90,3.6,2,2,24.1,77777,9,999999999,400,0.0490,0,88,999.000,999.0,99.0 +1985,8,20,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,21.1,77,101600,0,0,394,0,0,0,0,0,0,0,80,2.6,2,2,24.1,77777,9,999999999,390,0.0490,0,88,999.000,999.0,99.0 +1985,8,20,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,21.1,79,101600,0,0,391,0,0,0,0,0,0,0,60,2.6,2,2,24.1,77777,9,999999999,379,0.0490,0,88,999.000,999.0,99.0 +1985,8,20,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,21.1,79,101600,0,0,391,0,0,0,0,0,0,0,50,2.6,2,2,24.1,77777,9,999999999,379,0.0490,0,88,999.000,999.0,99.0 +1985,8,20,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,20.6,74,101600,0,0,393,52,237,24,0,0,0,0,90,2.6,2,2,24.1,77777,9,999999999,370,0.0310,0,88,999.000,999.0,99.0 +1985,8,20,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,20.6,74,101700,91,1034,400,170,208,109,12900,9900,12000,2280,100,2.6,4,4,24.1,77777,9,999999999,370,0.0310,0,88,999.000,999.0,99.0 +1985,8,20,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,21.1,67,101800,392,1334,424,406,434,182,31600,38500,20200,4110,60,3.6,7,7,32.2,1370,9,999999999,379,0.0310,0,88,999.000,999.0,99.0 +1985,8,20,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,20.6,61,101800,686,1334,437,442,229,279,42700,23400,30600,7030,70,4.6,8,8,32.2,1370,9,999999999,370,0.0310,0,88,999.000,999.0,99.0 +1985,8,20,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,20.6,53,101800,941,1334,443,823,586,321,76300,60500,33600,9330,50,6.7,7,7,32.2,1370,9,999999999,370,0.0310,0,88,999.000,999.0,99.0 +1985,8,20,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,19.4,48,101800,1139,1334,435,811,618,223,79800,63000,25900,9590,110,5.2,5,5,32.2,77777,9,999999999,350,0.0310,0,88,999.000,999.0,99.0 +1985,8,20,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,20.0,48,101800,1266,1334,436,949,794,164,98200,80500,21700,11410,40,6.2,4,4,32.2,77777,9,999999999,359,0.0310,0,88,999.000,999.0,99.0 +1985,8,20,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,19.4,47,101700,1314,1334,435,877,686,215,96600,70600,26900,23350,40,7.2,4,4,32.2,77777,9,999999999,350,0.0310,0,88,999.000,999.0,99.0 +1985,8,20,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,20.0,48,101700,1279,1334,436,807,766,135,89300,76800,15500,8620,50,8.8,4,4,32.2,77777,9,999999999,359,0.0310,0,88,999.000,999.0,99.0 +1985,8,20,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,18.9,45,101600,1165,1334,434,736,735,193,89900,75500,23900,9120,70,7.2,4,4,32.2,77777,9,999999999,329,0.0310,0,88,999.000,999.0,99.0 +1985,8,20,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,19.4,48,101600,978,1334,429,429,569,114,58200,58800,14900,3560,100,5.2,3,3,32.2,77777,9,999999999,350,0.0310,0,88,999.000,999.0,99.0 +1985,8,20,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,19.4,53,101600,731,1334,415,264,620,54,41600,61000,8100,1460,70,7.2,2,2,32.2,77777,9,999999999,350,0.0310,0,88,999.000,999.0,99.0 +1985,8,20,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,19.4,57,101600,442,1334,409,59,262,27,12700,24600,4600,570,50,6.2,2,2,32.2,77777,9,999999999,350,0.0310,0,88,999.000,999.0,99.0 +1985,8,20,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,19.4,65,101700,133,1257,405,0,0,0,0,0,0,0,50,6.2,7,4,24.1,7620,9,999999999,350,0.0490,0,88,999.000,999.0,99.0 +1985,8,20,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,18.9,65,101800,0,0,394,0,0,0,0,0,0,0,60,4.6,5,2,24.1,77777,9,999999999,340,0.0490,0,88,999.000,999.0,99.0 +1985,8,20,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,18.9,65,101800,0,0,394,0,0,0,0,0,0,0,60,5.2,5,2,24.1,77777,9,999999999,340,0.0490,0,88,999.000,999.0,99.0 +1985,8,20,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,18.9,65,101900,0,0,394,0,0,0,0,0,0,0,50,4.1,5,2,24.1,77777,9,999999999,340,0.0490,0,88,999.000,999.0,99.0 +1985,8,20,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,18.9,65,101800,0,0,398,0,0,0,0,0,0,0,70,5.2,4,3,24.1,77777,9,999999999,340,0.0490,0,88,999.000,999.0,99.0 +1985,8,20,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,20.0,69,101800,0,0,402,0,0,0,0,0,0,0,60,6.7,5,4,24.1,77777,9,999999999,359,0.0490,0,88,999.000,999.0,99.0 +1985,8,21,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,19.4,69,101800,0,0,396,0,0,0,0,0,0,0,50,5.7,4,3,24.1,77777,9,999999999,350,0.0490,0,88,999.000,999.0,99.0 +1985,8,21,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,18.9,67,101700,0,0,395,0,0,0,0,0,0,0,60,6.2,4,3,24.1,77777,9,999999999,340,0.0490,0,88,999.000,999.0,99.0 +1985,8,21,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,19.4,69,101700,0,0,392,0,0,0,0,0,0,0,50,7.7,3,2,24.1,77777,9,999999999,350,0.0490,0,88,999.000,999.0,99.0 +1985,8,21,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,19.4,71,101700,0,0,392,0,0,0,0,0,0,0,60,5.2,3,3,24.1,77777,9,999999999,350,0.0490,0,88,999.000,999.0,99.0 +1985,8,21,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,18.9,67,101700,0,0,395,0,0,0,0,0,0,0,40,6.2,3,3,24.1,77777,9,999999999,340,0.0490,0,88,999.000,999.0,99.0 +1985,8,21,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,18.9,67,101700,0,0,416,38,22,35,0,0,0,0,60,5.7,8,8,24.1,1370,9,999999999,340,0.0610,0,88,999.000,999.0,99.0 +1985,8,21,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,19.4,71,101700,90,1035,407,136,102,106,12400,7100,11800,1290,50,5.7,7,7,24.1,7620,9,999999999,350,0.0610,0,88,999.000,999.0,99.0 +1985,8,21,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,20.6,74,101800,391,1335,411,269,223,154,23400,20000,17600,3440,60,5.2,7,7,24.1,1370,9,999999999,370,0.0610,0,88,999.000,999.0,99.0 +1985,8,21,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,19.4,61,101800,686,1335,417,415,179,289,40900,18300,31500,7280,40,7.7,6,6,24.1,7620,9,999999999,350,0.0610,0,88,999.000,999.0,99.0 +1985,8,21,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,19.4,61,101800,941,1335,422,721,481,310,67700,49700,32600,8970,70,5.7,7,7,32.2,1370,9,999999999,350,0.0610,0,88,999.000,999.0,99.0 +1985,8,21,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,17.8,55,101800,1138,1335,415,756,504,276,76800,52700,31700,11990,80,7.2,6,6,32.2,1370,9,999999999,320,0.0610,0,88,999.000,999.0,99.0 +1985,8,21,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,18.3,55,101800,1266,1335,419,1020,775,255,105600,79000,30600,18420,50,7.2,6,6,32.2,7620,9,999999999,329,0.0610,0,88,999.000,999.0,99.0 +1985,8,21,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,17.8,50,101700,1313,1335,420,980,745,263,106500,75900,31600,27960,50,6.2,5,5,32.2,77777,9,999999999,320,0.0610,0,88,999.000,999.0,99.0 +1985,8,21,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,18.3,53,101600,1278,1335,418,766,703,150,89100,71600,20400,11400,60,5.2,5,5,32.2,77777,9,999999999,329,0.0610,0,88,999.000,999.0,99.0 +1985,8,21,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,18.3,48,101600,1163,1335,428,686,725,152,83500,73400,19400,6710,70,9.3,5,5,32.2,77777,9,999999999,329,0.0610,0,88,999.000,999.0,99.0 +1985,8,21,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,18.3,48,101500,976,1335,417,489,712,97,67300,72500,14200,2970,50,9.8,2,2,32.2,77777,9,999999999,329,0.0610,0,88,999.000,999.0,99.0 +1985,8,21,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,17.8,51,101500,728,1335,407,256,548,73,40200,54700,10200,1760,90,7.7,2,2,32.2,77777,9,999999999,309,0.0610,0,88,999.000,999.0,99.0 +1985,8,21,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,18.3,57,101600,439,1335,409,59,208,33,11200,19400,4800,690,50,5.2,4,4,32.2,77777,9,999999999,329,0.0610,0,88,999.000,999.0,99.0 +1985,8,21,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,19.4,67,101500,130,1235,408,0,0,0,0,0,0,0,60,7.2,6,6,24.1,1370,9,999999999,350,0.0490,0,88,999.000,999.0,99.0 +1985,8,21,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,19.4,69,101600,0,0,399,0,0,0,0,0,0,0,70,6.2,4,4,24.1,77777,9,999999999,350,0.0490,0,88,999.000,999.0,99.0 +1985,8,21,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,18.9,67,101700,0,0,395,0,0,0,0,0,0,0,60,6.2,3,3,24.1,77777,9,999999999,340,0.0490,0,88,999.000,999.0,99.0 +1985,8,21,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,18.9,67,101700,0,0,398,0,0,0,0,0,0,0,70,4.6,4,4,24.1,77777,9,999999999,340,0.0490,0,88,999.000,999.0,99.0 +1985,8,21,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,19.4,71,101700,0,0,392,0,0,0,0,0,0,0,70,5.7,3,3,24.1,77777,9,999999999,350,0.0490,0,88,999.000,999.0,99.0 +1985,8,21,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,19.4,71,101600,0,0,392,0,0,0,0,0,0,0,70,5.2,3,3,24.1,77777,9,999999999,350,0.0490,0,88,999.000,999.0,99.0 +1985,8,22,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,20.0,74,101700,0,0,403,0,0,0,0,0,0,0,50,4.1,6,6,19.3,1370,9,999999999,359,0.0490,0,88,999.000,999.0,99.0 +1985,8,22,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,20.0,79,101600,0,0,397,0,0,0,0,0,0,0,70,5.2,6,6,19.3,1370,9,999999999,359,0.0490,0,88,999.000,999.0,99.0 +1985,8,22,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,20.0,79,101600,0,0,387,0,0,0,0,0,0,0,50,4.6,3,3,24.1,77777,9,999999999,359,0.0490,0,88,999.000,999.0,99.0 +1985,8,22,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,20.0,76,101500,0,0,386,0,0,0,0,0,0,0,50,5.2,2,2,24.1,77777,9,999999999,359,0.0490,0,88,999.000,999.0,99.0 +1985,8,22,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,19.4,74,101500,0,0,385,0,0,0,0,0,0,0,70,3.6,2,2,24.1,77777,9,999999999,350,0.0490,0,88,999.000,999.0,99.0 +1985,8,22,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,19.4,74,101600,0,0,389,48,178,26,0,0,0,0,70,5.2,3,3,24.1,77777,9,999999999,350,0.0430,0,88,999.000,999.0,99.0 +1985,8,22,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,18.9,69,101600,89,1035,388,217,554,54,10000,26400,7600,740,60,4.6,2,2,24.1,77777,9,999999999,340,0.0430,0,88,999.000,999.0,99.0 +1985,8,22,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,18.9,65,101700,390,1336,398,458,676,111,30900,57400,14100,1860,70,5.2,3,3,24.1,77777,9,999999999,340,0.0430,0,88,999.000,999.0,99.0 +1985,8,22,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,18.9,59,101600,685,1336,410,692,820,114,56400,81300,14600,2470,70,6.7,4,4,32.2,77777,9,999999999,340,0.0430,0,88,999.000,999.0,99.0 +1985,8,22,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,18.9,53,101600,940,1336,415,803,789,129,72000,79200,16100,3430,70,6.7,3,3,32.2,77777,9,999999999,340,0.0430,0,88,999.000,999.0,99.0 +1985,8,22,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,18.3,48,101600,1138,1336,428,957,748,246,93300,75800,28500,10430,60,7.2,5,5,32.2,77777,9,999999999,329,0.0430,0,88,999.000,999.0,99.0 +1985,8,22,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,17.8,45,101600,1265,1336,430,767,491,283,82500,51500,33600,20720,30,6.7,5,5,32.2,77777,9,999999999,320,0.0430,0,88,999.000,999.0,99.0 +1985,8,22,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,17.8,44,101600,1313,1336,437,681,372,324,75500,39000,37100,34810,70,8.2,6,6,32.2,1370,9,999999999,320,0.0430,0,88,999.000,999.0,99.0 +1985,8,22,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,17.2,41,101500,1277,1336,435,818,697,209,94900,71700,26100,16340,60,6.2,5,5,32.2,77777,9,999999999,309,0.0430,0,88,999.000,999.0,99.0 +1985,8,22,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,16.1,40,101500,1162,1336,424,744,853,118,88800,85500,14300,4460,60,6.2,4,4,32.2,77777,9,999999999,279,0.0430,0,88,999.000,999.0,99.0 +1985,8,22,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,17.2,49,101400,973,1336,414,483,657,122,63900,66300,15500,3510,70,7.7,4,4,40.2,77777,9,999999999,300,0.0430,0,88,999.000,999.0,99.0 +1985,8,22,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,18.3,51,101400,725,1336,430,196,182,136,26200,19200,15700,2940,60,7.7,7,7,40.2,1370,9,999999999,320,0.0430,0,88,999.000,999.0,99.0 +1985,8,22,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,18.3,55,101500,435,1336,419,49,96,37,7900,9000,5000,630,60,7.2,6,6,32.2,1370,9,999999999,329,0.0430,0,88,999.000,999.0,99.0 +1985,8,22,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,17.8,60,101500,126,1235,402,0,0,0,0,0,0,0,70,7.2,5,5,24.1,77777,9,999999999,309,0.0490,0,88,999.000,999.0,99.0 +1985,8,22,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,18.3,64,101500,0,0,394,0,0,0,0,0,0,0,60,5.2,3,3,24.1,77777,9,999999999,320,0.0490,0,88,999.000,999.0,99.0 +1985,8,22,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,18.9,65,101600,0,0,412,0,0,0,0,0,0,0,60,6.2,7,7,24.1,1370,9,999999999,340,0.0490,0,88,999.000,999.0,99.0 +1985,8,22,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,20.6,82,101600,0,0,409,0,0,0,0,0,0,0,40,5.2,8,8,19.3,1370,9,999999999,370,0.0490,0,88,999.000,999.0,99.0 +1985,8,22,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,19.4,74,101600,0,0,410,0,0,0,0,0,0,0,70,6.2,8,8,24.1,1370,9,999999999,350,0.0490,0,88,999.000,999.0,99.0 +1985,8,22,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,18.3,69,101600,0,0,391,0,0,0,0,0,0,0,50,3.6,4,4,24.1,77777,9,999999999,329,0.0490,0,88,999.000,999.0,99.0 +1985,8,23,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,18.3,67,101500,0,0,405,0,0,0,0,0,0,0,70,4.1,7,7,24.1,1370,9,999999999,329,0.0490,0,88,999.000,999.0,99.0 +1985,8,23,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,18.3,69,101500,0,0,391,0,0,0,0,0,0,0,60,3.6,4,4,24.1,77777,9,999999999,329,0.0490,0,88,999.000,999.0,99.0 +1985,8,23,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,17.8,67,101400,0,0,390,0,0,0,0,0,0,0,60,4.6,4,4,24.1,77777,9,999999999,320,0.0490,0,88,999.000,999.0,99.0 +1985,8,23,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,18.3,67,101400,0,0,397,0,0,0,0,0,0,0,50,4.1,5,5,24.1,77777,9,999999999,329,0.0490,0,88,999.000,999.0,99.0 +1985,8,23,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,18.3,67,101400,0,0,401,0,0,0,0,0,0,0,60,3.6,6,6,24.1,1370,9,999999999,329,0.0490,0,88,999.000,999.0,99.0 +1985,8,23,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,18.9,71,101400,0,0,398,44,55,37,0,0,0,0,50,2.6,6,6,24.1,1370,9,999999999,329,0.0230,0,88,999.000,999.0,99.0 +1985,8,23,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,18.3,67,101500,88,1036,397,151,164,103,11900,7800,11200,2150,60,3.6,5,5,24.1,77777,9,999999999,329,0.0230,0,88,999.000,999.0,99.0 +1985,8,23,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,17.8,56,101500,389,1336,402,394,598,86,26500,51700,11500,1540,90,4.1,3,3,32.2,77777,9,999999999,309,0.0230,0,88,999.000,999.0,99.0 +1985,8,23,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,17.8,51,101500,684,1336,411,624,716,118,51000,70900,14600,2540,60,5.7,3,3,32.2,77777,9,999999999,309,0.0230,0,88,999.000,999.0,99.0 +1985,8,23,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,18.3,50,101500,940,1336,424,646,319,373,63700,34200,39500,11200,60,6.7,5,5,32.2,77777,9,999999999,329,0.0230,0,88,999.000,999.0,99.0 +1985,8,23,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,17.8,45,101500,1138,1336,434,715,478,261,73100,50100,30300,11260,70,6.2,6,6,32.2,1370,9,999999999,320,0.0230,0,88,999.000,999.0,99.0 +1985,8,23,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,16.7,39,101500,1265,1336,439,792,556,244,82400,56800,28500,17450,40,4.1,6,6,32.2,1370,9,999999999,290,0.0230,0,88,999.000,999.0,99.0 +1985,8,23,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,16.7,41,101400,1312,1336,436,804,560,267,87200,57000,31100,27520,90,5.2,6,6,32.2,1520,9,999999999,300,0.0230,0,88,999.000,999.0,99.0 +1985,8,23,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,16.1,38,101300,1276,1336,434,878,743,229,101000,76100,28100,17640,60,5.2,5,5,32.2,77777,9,999999999,279,0.0230,0,88,999.000,999.0,99.0 +1985,8,23,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,17.2,42,101300,1160,1336,429,730,801,144,89900,81200,19200,6330,60,6.2,4,4,32.2,77777,9,999999999,300,0.0230,0,88,999.000,999.0,99.0 +1985,8,23,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,18.3,53,101200,971,1336,418,388,461,136,50900,47400,16400,4130,70,8.2,5,5,40.2,77777,9,999999999,329,0.0230,0,88,999.000,999.0,99.0 +1985,8,23,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,17.8,50,101200,722,1336,414,215,345,102,32500,35200,13400,2140,60,9.3,3,3,40.2,77777,9,999999999,320,0.0230,0,88,999.000,999.0,99.0 +1985,8,23,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,17.2,51,101200,431,1336,407,76,387,27,17100,36100,5400,670,50,8.8,3,3,32.2,77777,9,999999999,300,0.0230,0,88,999.000,999.0,99.0 +1985,8,23,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,17.8,60,101300,123,1214,402,0,0,0,0,0,0,0,60,7.2,5,5,24.1,77777,9,999999999,309,0.0490,0,88,999.000,999.0,99.0 +1985,8,23,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,19.4,69,101400,0,0,405,0,0,0,0,0,0,0,70,6.2,6,6,24.1,1370,9,999999999,350,0.0490,0,88,999.000,999.0,99.0 +1985,8,23,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,18.9,67,101400,0,0,409,0,0,0,0,0,0,0,60,4.6,7,7,24.1,1370,9,999999999,340,0.0490,0,88,999.000,999.0,99.0 +1985,8,23,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,18.9,69,101500,0,0,401,0,0,0,0,0,0,0,70,5.2,6,6,24.1,1370,9,999999999,340,0.0490,0,88,999.000,999.0,99.0 +1985,8,23,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,18.9,67,101500,0,0,416,0,0,0,0,0,0,0,60,4.1,8,8,24.1,1370,9,999999999,340,0.0490,0,88,999.000,999.0,99.0 +1985,8,23,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,18.9,69,101500,0,0,401,0,0,0,0,0,0,0,70,3.6,6,6,24.1,1370,9,999999999,340,0.0490,0,88,999.000,999.0,99.0 +1985,8,24,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,18.9,71,101400,0,0,380,0,0,0,0,0,0,0,80,3.1,1,1,24.1,77777,9,999999999,329,0.0490,0,88,999.000,999.0,99.0 +1985,8,24,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,18.3,76,101400,0,0,380,0,0,0,0,0,0,0,0,0.0,3,3,24.1,77777,9,999999999,329,0.0490,0,88,999.000,999.0,99.0 +1985,8,24,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,18.3,74,101400,0,0,378,0,0,0,0,0,0,0,40,2.1,2,2,24.1,77777,9,999999999,329,0.0490,0,88,999.000,999.0,99.0 +1985,8,24,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,18.3,79,101300,0,0,368,0,0,0,0,0,0,0,60,2.1,1,1,24.1,77777,9,999999999,329,0.0490,0,88,999.000,999.0,99.0 +1985,8,24,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,17.8,81,101300,0,0,362,0,0,0,0,0,0,0,320,2.1,1,1,24.1,77777,9,999999999,309,0.0490,0,88,999.000,999.0,99.0 +1985,8,24,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,18.3,84,101400,0,0,371,54,268,22,0,0,0,0,340,2.1,3,3,24.1,77777,9,999999999,320,0.0270,0,88,999.000,999.0,99.0 +1985,8,24,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,18.3,76,101400,87,1014,389,172,275,92,11300,11600,10200,2320,340,2.1,6,6,32.2,1370,9,999999999,329,0.0270,0,88,999.000,999.0,99.0 +1985,8,24,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,18.3,64,101400,388,1337,424,192,77,152,19000,7100,17000,3670,330,2.1,9,9,32.2,1370,9,999999999,320,0.0270,0,88,999.000,999.0,99.0 +1985,8,24,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,18.9,57,101400,684,1337,431,372,135,277,37900,13600,31000,7870,100,3.6,8,8,32.2,1370,9,999999999,340,0.0270,0,88,999.000,999.0,99.0 +1985,8,24,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,18.3,50,101400,939,1337,428,479,250,266,48300,27000,29300,7520,180,4.1,6,6,32.2,1370,9,999999999,329,0.0270,0,88,999.000,999.0,99.0 +1985,8,24,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,20.0,55,101500,1137,1337,430,965,663,336,95900,69200,36900,14650,130,6.2,6,6,32.2,1370,9,999999999,359,0.0270,0,88,999.000,999.0,99.0 +1985,8,24,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,19.4,53,101400,1264,1337,426,894,702,203,94000,72300,25500,14550,130,6.2,5,5,32.2,77777,9,999999999,350,0.0270,0,88,999.000,999.0,99.0 +1985,8,24,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,20.0,55,101400,1311,1337,427,848,640,234,92900,65600,28400,23860,170,5.2,5,5,32.2,77777,9,999999999,359,0.0270,0,88,999.000,999.0,99.0 +1985,8,24,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,19.4,55,101300,1275,1337,431,808,593,292,90700,60000,33300,21960,150,5.2,8,7,32.2,1370,9,999999999,350,0.0270,0,88,999.000,999.0,99.0 +1985,8,24,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,20.0,61,101200,1158,1337,442,418,82,358,47400,8400,40100,16220,150,5.2,9,9,32.2,1370,9,999999999,359,0.0270,0,88,999.000,999.0,99.0 +1985,8,24,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,20.0,63,101200,969,1337,439,268,16,260,31900,1400,30800,11780,140,5.2,9,9,32.2,1370,9,999999999,359,0.0270,0,88,999.000,999.0,99.0 +1985,8,24,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,20.6,67,101200,719,1337,436,161,63,141,19300,6200,16000,4710,140,4.1,9,9,32.2,1370,9,999999999,370,0.0270,0,88,999.000,999.0,99.0 +1985,8,24,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,20.6,69,101200,428,1337,433,56,85,45,8300,7900,5700,780,150,3.1,9,9,24.1,1370,9,999999999,370,0.0270,0,88,999.000,999.0,99.0 +1985,8,24,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,20.6,72,101300,119,1192,430,0,0,0,0,0,0,0,140,3.1,9,9,24.1,1370,9,999999999,370,0.0490,0,88,999.000,999.0,99.0 +1985,8,24,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,21.1,77,101300,0,0,428,0,0,0,0,0,0,0,70,3.1,9,9,16.1,1370,9,999999999,390,0.0490,0,88,999.000,999.0,99.0 +1985,8,24,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,21.1,85,101400,0,0,430,0,0,0,0,0,0,0,300,2.1,10,10,16.1,1370,9,999999999,390,0.0490,0,88,999.000,999.0,99.0 +1985,8,24,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,22.2,88,101500,0,0,434,0,0,0,0,0,0,0,310,2.1,10,10,19.3,1370,9,999999999,409,0.0490,0,88,999.000,999.0,99.0 +1985,8,24,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,21.7,87,101400,0,0,399,0,0,0,0,0,0,0,320,3.1,6,6,24.1,1370,9,999999999,390,0.0490,0,88,999.000,999.0,99.0 +1985,8,24,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,21.7,90,101400,0,0,400,0,0,0,0,0,0,0,300,2.1,7,7,24.1,1370,9,999999999,390,0.0490,0,88,999.000,999.0,99.0 +1985,8,25,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,21.1,87,101400,0,0,406,0,0,0,0,0,0,0,0,0.0,8,8,24.1,1370,9,999999999,379,0.0490,0,88,999.000,999.0,99.0 +1985,8,25,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,22.2,94,101300,0,0,416,0,0,0,0,0,0,0,50,1.5,9,9,16.1,1370,9,999999999,409,0.0490,0,88,999.000,999.0,99.0 +1985,8,25,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,20.6,90,101300,0,0,408,0,0,0,0,0,0,0,10,3.6,9,9,24.1,1370,9,999999999,370,0.0490,0,88,999.000,999.0,99.0 +1985,8,25,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,20.6,90,101300,0,0,408,0,0,0,0,0,0,0,350,2.1,9,9,19.3,1370,9,999999999,370,0.0490,0,88,999.000,999.0,99.0 +1985,8,25,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,21.1,94,101300,0,0,420,0,0,0,0,0,0,0,0,0.0,10,10,24.1,1370,9,999999999,379,0.0490,0,88,999.000,999.0,99.0 +1985,8,25,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,21.1,90,101300,0,0,403,39,22,37,0,0,0,0,30,2.6,8,8,24.1,1370,9,999999999,379,0.0290,0,88,999.000,999.0,99.0 +1985,8,25,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,21.1,90,101300,86,1014,424,118,4,117,11600,200,11600,360,360,2.6,10,10,32.2,1370,9,999999999,379,0.0290,0,88,999.000,999.0,99.0 +1985,8,25,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,21.1,82,101400,387,1337,421,267,87,222,26900,8100,24500,4520,340,1.5,9,9,32.2,1370,9,999999999,379,0.0290,0,88,999.000,999.0,99.0 +1985,8,25,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,20.6,74,101400,683,1337,427,409,155,299,40500,15800,32400,7520,310,1.5,9,9,32.2,1370,9,999999999,370,0.0290,0,88,999.000,999.0,99.0 +1985,8,25,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,19.4,61,101500,939,1337,438,467,99,383,49700,10200,42600,13010,210,2.1,9,9,32.2,1370,9,999999999,350,0.0290,0,88,999.000,999.0,99.0 +1985,8,25,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,20.6,59,101500,1137,1337,440,669,373,315,67800,39000,34600,13640,140,3.6,8,8,32.2,1370,9,999999999,370,0.0290,0,88,999.000,999.0,99.0 +1985,8,25,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,21.1,65,101400,1263,1337,443,275,8,266,33400,600,32800,12950,140,4.6,9,9,32.2,1370,9,999999999,379,0.0290,0,88,999.000,999.0,99.0 +1985,8,25,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,21.7,65,101400,1310,1337,431,856,642,242,93700,65700,29100,24270,150,5.2,7,7,32.2,1370,9,999999999,400,0.0290,0,88,999.000,999.0,99.0 +1985,8,25,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,21.7,65,101300,1273,1337,426,613,437,233,69700,44700,27000,17510,150,4.6,6,6,32.2,1370,9,999999999,390,0.0290,0,88,999.000,999.0,99.0 +1985,8,25,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,20.6,59,101300,1156,1337,440,427,200,281,50900,21800,32000,11750,160,5.2,8,8,32.2,1370,9,999999999,370,0.0290,0,88,999.000,999.0,99.0 +1985,8,25,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,21.1,67,101300,966,1337,431,321,226,199,40700,24500,22900,5590,160,5.7,8,8,32.2,1370,9,999999999,379,0.0290,0,88,999.000,999.0,99.0 +1985,8,25,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,20.6,67,101300,716,1337,436,154,74,130,19200,7700,15000,3320,160,4.1,9,9,24.1,1370,9,999999999,370,0.0290,0,88,999.000,999.0,99.0 +1985,8,25,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,20.6,72,101300,424,1337,430,60,70,51,8400,6600,6300,1150,70,3.6,9,9,24.1,1370,9,999999999,370,0.0290,0,88,999.000,999.0,99.0 +1985,8,25,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,21.7,79,101400,115,1170,413,0,0,0,0,0,0,0,80,2.6,7,7,24.1,1370,9,999999999,400,0.0490,0,88,999.000,999.0,99.0 +1985,8,25,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,20.6,79,101400,0,0,420,0,0,0,0,0,0,0,310,3.6,9,9,24.1,1520,9,999999999,370,0.0490,0,88,999.000,999.0,99.0 +1985,8,25,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,20.0,76,101500,0,0,396,0,0,0,0,0,0,0,300,1.5,5,5,24.1,77777,9,999999999,359,0.0490,0,88,999.000,999.0,99.0 +1985,8,25,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,21.1,85,101500,0,0,392,0,0,0,0,0,0,0,70,2.1,4,4,24.1,77777,9,999999999,390,0.0490,0,88,999.000,999.0,99.0 +1985,8,25,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,21.1,87,101500,0,0,385,0,0,0,0,0,0,0,0,0.0,3,3,24.1,77777,9,999999999,379,0.0490,0,88,999.000,999.0,99.0 +1985,8,25,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,20.6,87,101500,0,0,373,0,0,0,0,0,0,0,0,0.0,1,1,24.1,77777,9,999999999,370,0.0490,0,88,999.000,999.0,99.0 +1985,8,26,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,20.0,84,101500,0,0,382,0,0,0,0,0,0,0,10,2.1,3,3,24.1,77777,9,999999999,359,0.0490,0,88,999.000,999.0,99.0 +1985,8,26,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,18.9,82,101400,0,0,377,0,0,0,0,0,0,0,0,0.0,3,3,24.1,77777,9,999999999,340,0.0490,0,88,999.000,999.0,99.0 +1985,8,26,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,20.0,87,101400,0,0,370,0,0,0,0,0,0,0,350,1.5,1,1,24.1,77777,9,999999999,359,0.0490,0,88,999.000,999.0,99.0 +1985,8,26,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,20.0,93,101400,0,0,364,0,0,0,0,0,0,0,320,2.1,1,1,24.1,77777,9,999999999,359,0.0490,0,88,999.000,999.0,99.0 +1985,8,26,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,19.4,87,101400,0,0,372,0,0,0,0,0,0,0,300,2.1,2,2,24.1,77777,9,999999999,350,0.0490,0,88,999.000,999.0,99.0 +1985,8,26,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,19.4,87,101400,0,0,367,39,129,24,0,0,0,0,310,1.5,1,1,24.1,77777,9,999999999,350,0.0880,0,88,999.000,999.0,99.0 +1985,8,26,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,20.0,90,101500,85,1015,376,220,498,75,11200,22700,9100,1580,0,0.0,3,3,32.2,77777,9,999999999,359,0.0880,0,88,999.000,999.0,99.0 +1985,8,26,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,21.1,77,101500,387,1338,398,410,487,160,29700,42000,17600,3220,0,0.0,3,3,32.2,77777,9,999999999,390,0.0880,0,88,999.000,999.0,99.0 +1985,8,26,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,20.0,61,101600,683,1338,407,650,730,136,52900,71700,16300,2860,80,3.1,2,2,32.2,77777,9,999999999,359,0.0880,0,88,999.000,999.0,99.0 +1985,8,26,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,20.0,59,101600,938,1338,414,809,704,209,73400,70700,23700,5700,50,3.6,3,3,32.2,77777,9,999999999,359,0.0880,0,88,999.000,999.0,99.0 +1985,8,26,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,20.0,53,101600,1136,1338,423,903,690,249,88100,69900,28600,10430,40,4.6,3,3,32.2,77777,9,999999999,359,0.0880,0,88,999.000,999.0,99.0 +1985,8,26,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,20.0,52,101600,1263,1338,426,871,647,235,90700,66200,28100,16510,30,5.7,3,3,32.2,77777,9,999999999,359,0.0880,0,88,999.000,999.0,99.0 +1985,8,26,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,20.0,48,101500,1309,1338,436,937,762,209,100100,76500,25000,19360,40,6.2,5,4,32.2,77777,9,999999999,359,0.0880,0,88,999.000,999.0,99.0 +1985,8,26,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,20.6,50,101500,1272,1338,437,783,666,205,90900,68500,25500,15310,50,7.7,6,4,32.2,7620,9,999999999,370,0.0880,0,88,999.000,999.0,99.0 +1985,8,26,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,21.1,55,101500,1154,1338,431,575,401,284,68400,42000,32100,12870,90,5.7,6,4,32.2,7620,9,999999999,379,0.0880,0,88,999.000,999.0,99.0 +1985,8,26,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,21.1,57,101400,963,1338,435,412,429,181,54200,44700,21900,5180,30,6.2,6,6,32.2,7620,9,999999999,379,0.0880,0,88,999.000,999.0,99.0 +1985,8,26,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,21.1,61,101400,713,1338,433,178,172,123,24100,18100,14400,2610,50,5.2,7,7,32.2,1370,9,999999999,379,0.0880,0,88,999.000,999.0,99.0 +1985,8,26,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,20.6,67,101500,420,1338,416,51,75,42,7500,6900,5300,720,70,5.2,6,6,24.1,1370,9,999999999,370,0.0880,0,88,999.000,999.0,99.0 +1985,8,26,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,21.7,77,101500,112,1148,407,0,0,0,0,0,0,0,70,4.6,5,5,24.1,77777,9,999999999,400,0.0490,0,88,999.000,999.0,99.0 +1985,8,26,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,21.7,77,101600,0,0,404,0,0,0,0,0,0,0,80,5.7,4,4,24.1,77777,9,999999999,400,0.0490,0,88,999.000,999.0,99.0 +1985,8,26,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,21.1,77,101700,0,0,398,0,0,0,0,0,0,0,40,5.7,3,3,24.1,77777,9,999999999,390,0.0490,0,88,999.000,999.0,99.0 +1985,8,26,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,21.1,77,101700,0,0,398,0,0,0,0,0,0,0,80,5.2,3,3,24.1,77777,9,999999999,390,0.0490,0,88,999.000,999.0,99.0 +1985,8,26,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,20.0,69,101700,0,0,399,0,0,0,0,0,0,0,60,6.7,3,3,24.1,77777,9,999999999,359,0.0490,0,88,999.000,999.0,99.0 +1985,8,26,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,20.6,74,101700,0,0,397,0,0,0,0,0,0,0,70,3.6,3,3,24.1,77777,9,999999999,370,0.0490,0,88,999.000,999.0,99.0 +1985,8,27,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,20.6,74,101700,0,0,407,0,0,0,0,0,0,0,70,4.6,6,6,24.1,1370,9,999999999,370,0.0490,0,88,999.000,999.0,99.0 +1985,8,27,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,21.1,77,101700,0,0,412,0,0,0,0,0,0,0,60,5.2,7,7,24.1,1370,9,999999999,390,0.0490,0,88,999.000,999.0,99.0 +1985,8,27,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,20.6,76,101600,0,0,415,0,0,0,0,0,0,0,70,4.1,8,8,24.1,1370,9,999999999,370,0.0490,0,88,999.000,999.0,99.0 +1985,8,27,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,20.6,76,101600,0,0,403,0,0,0,0,0,0,0,90,3.1,6,6,24.1,1370,9,999999999,370,0.0490,0,88,999.000,999.0,99.0 +1985,8,27,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,20.0,72,101600,0,0,402,0,0,0,0,0,0,0,50,5.7,5,5,24.1,77777,9,999999999,359,0.0490,0,88,999.000,999.0,99.0 +1985,8,27,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,20.0,72,101700,0,0,406,28,37,23,0,0,0,0,60,5.2,6,6,24.1,1370,9,999999999,359,0.1120,0,88,999.000,999.0,99.0 +1985,8,27,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,20.0,69,101700,84,993,409,164,197,107,12500,9200,11700,2240,70,4.6,6,6,32.2,1370,9,999999999,359,0.1120,0,88,999.000,999.0,99.0 +1985,8,27,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,20.0,63,101700,386,1338,411,348,353,168,27600,31100,18600,3720,60,6.2,4,4,40.2,77777,9,999999999,359,0.1120,0,88,999.000,999.0,99.0 +1985,8,27,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,19.4,55,101800,682,1338,416,471,406,185,41200,40700,20400,3970,70,7.7,3,3,40.2,77777,9,999999999,350,0.1120,0,88,999.000,999.0,99.0 +1985,8,27,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,20.0,53,101800,938,1338,434,601,315,333,59500,33900,35700,9750,60,7.2,6,6,40.2,1370,9,999999999,359,0.1120,0,88,999.000,999.0,99.0 +1985,8,27,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,18.9,48,101800,1136,1338,431,876,603,305,87900,63000,34300,13110,70,8.2,5,5,40.2,77777,9,999999999,340,0.1120,0,88,999.000,999.0,99.0 +1985,8,27,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,18.3,45,101700,1262,1338,431,921,687,246,95600,70100,29300,17120,40,8.2,4,4,40.2,77777,9,999999999,329,0.1120,0,88,999.000,999.0,99.0 +1985,8,27,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,18.3,45,101700,1308,1338,431,950,705,277,102900,71600,32600,26780,90,8.2,4,4,40.2,77777,9,999999999,329,0.1120,0,88,999.000,999.0,99.0 +1985,8,27,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,18.3,45,101600,1271,1338,434,688,497,258,77800,50600,29600,18820,60,8.2,5,5,40.2,77777,9,999999999,329,0.1120,0,88,999.000,999.0,99.0 +1985,8,27,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,18.9,48,101600,1152,1338,425,633,606,194,76900,62200,23300,8700,60,8.2,7,3,40.2,77777,9,999999999,329,0.1120,0,88,999.000,999.0,99.0 +1985,8,27,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,19.4,50,101600,961,1338,436,332,276,184,42200,28800,21500,5250,50,7.2,6,6,32.2,7620,9,999999999,350,0.1120,0,88,999.000,999.0,99.0 +1985,8,27,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,19.4,55,101600,710,1338,423,207,312,108,30500,31700,13600,2250,50,8.2,5,5,32.2,77777,9,999999999,350,0.1120,0,88,999.000,999.0,99.0 +1985,8,27,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,19.4,61,101600,416,1338,411,42,86,31,6800,7900,4300,520,40,7.7,4,4,32.2,77777,9,999999999,350,0.1120,0,88,999.000,999.0,99.0 +1985,8,27,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,18.9,65,101700,108,1127,401,0,0,0,0,0,0,0,90,6.7,5,4,24.1,77777,9,999999999,340,0.0490,0,88,999.000,999.0,99.0 +1985,8,27,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,18.9,65,101700,0,0,398,0,0,0,0,0,0,0,50,7.2,4,3,24.1,77777,9,999999999,340,0.0490,0,88,999.000,999.0,99.0 +1985,8,27,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,18.3,64,101800,0,0,390,0,0,0,0,0,0,0,60,7.7,2,2,24.1,77777,9,999999999,329,0.0490,0,88,999.000,999.0,99.0 +1985,8,27,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,18.9,67,101900,0,0,391,0,0,0,0,0,0,0,50,6.7,2,2,24.1,77777,9,999999999,340,0.0490,0,88,999.000,999.0,99.0 +1985,8,27,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,18.9,67,101900,0,0,391,0,0,0,0,0,0,0,60,7.2,2,2,24.1,77777,9,999999999,340,0.0490,0,88,999.000,999.0,99.0 +1985,8,27,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,19.4,69,101800,0,0,392,0,0,0,0,0,0,0,60,3.1,2,2,24.1,77777,9,999999999,350,0.0490,0,88,999.000,999.0,99.0 +1985,8,28,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,20.0,74,101800,0,0,396,0,0,0,0,0,0,0,60,5.7,4,4,24.1,77777,9,999999999,359,0.0490,0,88,999.000,999.0,99.0 +1985,8,28,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,20.6,74,101800,0,0,397,0,0,0,0,0,0,0,60,4.6,3,3,24.1,77777,9,999999999,370,0.0490,0,88,999.000,999.0,99.0 +1985,8,28,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,20.6,76,101700,0,0,400,0,0,0,0,0,0,0,60,5.2,5,5,24.1,77777,9,999999999,370,0.0490,0,88,999.000,999.0,99.0 +1985,8,28,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,21.1,79,101700,0,0,401,0,0,0,0,0,0,0,60,4.1,7,5,24.1,7620,9,999999999,379,0.0490,0,88,999.000,999.0,99.0 +1985,8,28,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,20.6,76,101700,0,0,403,0,0,0,0,0,0,0,60,3.6,8,6,24.1,7620,9,999999999,370,0.0490,0,88,999.000,999.0,99.0 +1985,8,28,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,21.1,82,101700,0,0,397,37,46,31,0,0,0,0,60,3.6,7,5,24.1,7620,9,999999999,379,0.0600,0,88,999.000,999.0,99.0 +1985,8,28,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,20.6,76,101700,83,993,394,224,499,80,11500,22500,9500,1710,60,3.6,7,3,40.2,77777,9,999999999,370,0.0600,0,88,999.000,999.0,99.0 +1985,8,28,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,21.1,72,101700,385,1339,410,358,415,146,27500,36600,16900,3110,90,3.6,6,5,40.2,7620,9,999999999,390,0.0600,0,88,999.000,999.0,99.0 +1985,8,28,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,20.6,63,101800,681,1339,427,407,205,262,39500,21000,28800,6570,80,5.7,7,7,32.2,1370,9,999999999,370,0.0600,0,88,999.000,999.0,99.0 +1985,8,28,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,20.6,59,101800,937,1339,433,882,717,272,81800,74200,29700,7700,80,6.2,7,7,32.2,1370,9,999999999,370,0.0600,0,88,999.000,999.0,99.0 +1985,8,28,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,19.4,50,101800,1135,1339,432,887,607,313,88800,63400,34900,13440,90,7.7,5,5,40.2,77777,9,999999999,350,0.0600,0,88,999.000,999.0,99.0 +1985,8,28,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,20.0,50,101700,1261,1339,433,949,750,214,99400,77000,26600,14890,70,8.2,4,4,40.2,77777,9,999999999,359,0.0600,0,88,999.000,999.0,99.0 +1985,8,28,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,18.9,45,101600,1307,1339,431,921,762,195,99100,76700,24000,17620,50,9.3,3,3,40.2,77777,9,999999999,329,0.0600,0,88,999.000,999.0,99.0 +1985,8,28,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,18.9,45,101600,1269,1339,431,894,848,162,103500,86000,21800,11210,70,9.3,3,3,40.2,77777,9,999999999,329,0.0600,0,88,999.000,999.0,99.0 +1985,8,28,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,19.4,50,101600,1150,1339,425,714,819,123,85200,82000,14600,4340,60,8.8,3,3,40.2,77777,9,999999999,350,0.0600,0,88,999.000,999.0,99.0 +1985,8,28,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,20.0,55,101600,958,1339,430,444,543,154,58000,55500,18200,4510,60,8.8,6,6,40.2,1370,9,999999999,359,0.0600,0,88,999.000,999.0,99.0 +1985,8,28,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,20.0,57,101600,706,1339,427,193,261,111,27600,26500,13600,2310,60,8.2,6,6,32.2,1370,9,999999999,359,0.0600,0,88,999.000,999.0,99.0 +1985,8,28,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,20.6,63,101600,412,1339,427,53,83,42,7700,7600,5400,720,60,7.7,7,7,32.2,1370,9,999999999,370,0.0600,0,88,999.000,999.0,99.0 +1985,8,28,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,20.6,69,101600,105,1105,418,0,0,0,0,0,0,0,70,6.7,7,7,24.1,1370,9,999999999,370,0.0490,0,88,999.000,999.0,99.0 +1985,8,28,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,20.6,72,101700,0,0,421,0,0,0,0,0,0,0,50,5.2,8,8,24.1,1370,9,999999999,370,0.0490,0,88,999.000,999.0,99.0 +1985,8,28,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,21.1,77,101800,0,0,412,0,0,0,0,0,0,0,60,5.2,7,7,24.1,1370,9,999999999,390,0.0490,0,88,999.000,999.0,99.0 +1985,8,28,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,21.1,77,101800,0,0,412,0,0,0,0,0,0,0,60,4.6,7,7,24.1,1370,9,999999999,390,0.0490,0,88,999.000,999.0,99.0 +1985,8,28,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,20.6,74,101800,0,0,403,0,0,0,0,0,0,0,50,7.7,5,5,24.1,77777,9,999999999,370,0.0490,0,88,999.000,999.0,99.0 +1985,8,28,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,20.0,72,101800,0,0,402,0,0,0,0,0,0,0,60,5.2,5,5,24.1,77777,9,999999999,359,0.0490,0,88,999.000,999.0,99.0 +1985,8,29,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,20.0,74,101800,0,0,396,0,0,0,0,0,0,0,60,4.1,4,4,24.1,77777,9,999999999,359,0.0490,0,88,999.000,999.0,99.0 +1985,8,29,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,20.0,74,101700,0,0,393,0,0,0,0,0,0,0,60,5.2,3,3,24.1,77777,9,999999999,359,0.0490,0,88,999.000,999.0,99.0 +1985,8,29,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,19.4,71,101700,0,0,392,0,0,0,0,0,0,0,60,4.1,3,3,24.1,77777,9,999999999,350,0.0490,0,88,999.000,999.0,99.0 +1985,8,29,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,19.4,71,101600,0,0,395,0,0,0,0,0,0,0,60,5.2,4,4,24.1,77777,9,999999999,350,0.0490,0,88,999.000,999.0,99.0 +1985,8,29,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,19.4,74,101600,0,0,389,0,0,0,0,0,0,0,60,4.6,3,3,24.1,77777,9,999999999,350,0.0490,0,88,999.000,999.0,99.0 +1985,8,29,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,18.3,69,101600,0,0,384,49,212,23,0,0,0,0,70,4.6,3,2,24.1,77777,9,999999999,329,0.0420,0,88,999.000,999.0,99.0 +1985,8,29,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,18.9,67,101700,82,994,398,206,462,73,10600,20900,8800,1530,70,4.1,5,4,32.2,77777,9,999999999,340,0.0420,0,88,999.000,999.0,99.0 +1985,8,29,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,18.9,63,101700,384,1340,401,335,456,103,24200,39600,12800,1940,60,7.2,3,3,40.2,77777,9,999999999,340,0.0420,0,88,999.000,999.0,99.0 +1985,8,29,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,18.3,53,101700,681,1340,412,627,698,138,51200,68400,16300,2880,50,7.7,3,3,40.2,77777,9,999999999,329,0.0420,0,88,999.000,999.0,99.0 +1985,8,29,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,18.9,55,101700,937,1340,416,730,621,202,66600,62500,22800,5510,60,8.8,4,4,40.2,77777,9,999999999,340,0.0420,0,88,999.000,999.0,99.0 +1985,8,29,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,18.3,50,101700,1135,1340,433,458,213,257,49200,23200,29500,10040,60,7.2,7,7,40.2,1370,9,999999999,329,0.0420,0,88,999.000,999.0,99.0 +1985,8,29,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,17.8,48,101600,1261,1340,427,827,588,251,85800,59900,29300,17200,70,8.2,6,6,40.2,1370,9,999999999,320,0.0420,0,88,999.000,999.0,99.0 +1985,8,29,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,18.3,47,101600,1306,1340,439,812,457,377,88600,47800,41800,36420,70,8.2,7,7,40.2,7620,9,999999999,329,0.0420,0,88,999.000,999.0,99.0 +1985,8,29,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,17.8,44,101500,1267,1340,442,643,475,233,73200,48600,27100,16660,60,8.8,7,7,40.2,7620,9,999999999,320,0.0420,0,88,999.000,999.0,99.0 +1985,8,29,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,18.3,47,101400,1148,1340,434,585,506,221,69700,51600,25400,9650,60,8.2,6,6,40.2,7620,9,999999999,329,0.0420,0,88,999.000,999.0,99.0 +1985,8,29,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,17.8,46,101400,955,1340,427,419,476,166,53800,48500,19100,4800,70,7.7,7,5,40.2,7620,9,999999999,309,0.0420,0,88,999.000,999.0,99.0 +1985,8,29,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,18.3,51,101400,703,1340,425,194,185,137,26000,19400,15800,2930,70,6.7,7,6,32.2,7620,9,999999999,320,0.0420,0,88,999.000,999.0,99.0 +1985,8,29,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,18.3,55,101400,408,1340,424,46,80,36,7000,7300,4800,610,60,7.7,7,7,32.2,7620,9,999999999,329,0.0420,0,88,999.000,999.0,99.0 +1985,8,29,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,19.4,67,101500,101,1105,408,0,0,0,0,0,0,0,50,6.2,7,6,24.1,7620,9,999999999,350,0.0490,0,88,999.000,999.0,99.0 +1985,8,29,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,20.0,74,101500,0,0,399,0,0,0,0,0,0,0,60,5.2,5,5,24.1,77777,9,999999999,359,0.0490,0,88,999.000,999.0,99.0 +1985,8,29,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,20.0,74,101600,0,0,396,0,0,0,0,0,0,0,60,5.2,5,4,24.1,77777,9,999999999,359,0.0490,0,88,999.000,999.0,99.0 +1985,8,29,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,20.0,74,101600,0,0,403,0,0,0,0,0,0,0,70,4.6,6,6,24.1,7620,9,999999999,359,0.0490,0,88,999.000,999.0,99.0 +1985,8,29,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,19.4,71,101600,0,0,402,0,0,0,0,0,0,0,60,4.1,6,6,24.1,7620,9,999999999,350,0.0490,0,88,999.000,999.0,99.0 +1985,8,29,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,19.4,74,101600,0,0,395,0,0,0,0,0,0,0,60,3.6,5,5,24.1,77777,9,999999999,350,0.0490,0,88,999.000,999.0,99.0 +1985,8,30,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,20.0,79,101500,0,0,397,0,0,0,0,0,0,0,60,3.1,6,6,24.1,1370,9,999999999,359,0.0490,0,88,999.000,999.0,99.0 +1985,8,30,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,19.4,74,101500,0,0,410,0,0,0,0,0,0,0,60,4.6,8,8,24.1,1370,9,999999999,350,0.0490,0,88,999.000,999.0,99.0 +1985,8,30,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,20.0,76,101400,0,0,419,0,0,0,0,0,0,0,60,4.6,9,9,24.1,1370,9,999999999,359,0.0490,0,88,999.000,999.0,99.0 +1985,8,30,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,20.0,84,101400,0,0,410,0,0,0,0,0,0,0,50,3.1,9,9,24.1,790,9,999999999,359,0.0490,0,88,999.000,999.0,99.0 +1985,8,30,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,19.4,79,101400,0,0,393,0,0,0,0,0,0,0,60,3.6,6,6,24.1,1370,9,999999999,350,0.0490,0,88,999.000,999.0,99.0 +1985,8,30,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,20.0,79,101500,0,0,401,41,35,36,0,0,0,0,50,3.1,8,7,24.1,1370,9,999999999,359,0.0370,0,88,999.000,999.0,99.0 +1985,8,30,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,19.4,76,101500,81,994,383,215,537,61,10200,24100,8100,750,70,4.1,3,2,32.2,77777,9,999999999,350,0.0370,0,88,999.000,999.0,99.0 +1985,8,30,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,18.3,60,101500,383,1340,400,370,457,137,26900,39400,15600,2690,60,7.2,3,3,40.2,77777,9,999999999,320,0.0370,0,88,999.000,999.0,99.0 +1985,8,30,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,17.8,51,101600,680,1340,411,630,718,127,51400,70700,15400,2690,60,7.2,3,3,40.2,77777,9,999999999,309,0.0370,0,88,999.000,999.0,99.0 +1985,8,30,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,17.8,46,101600,936,1340,421,866,864,132,77100,86600,16500,3440,60,7.2,3,3,40.2,77777,9,999999999,309,0.0370,0,88,999.000,999.0,99.0 +1985,8,30,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,18.3,48,101500,1134,1340,425,927,730,238,90500,74100,27600,9890,70,8.2,4,4,40.2,77777,9,999999999,329,0.0370,0,88,999.000,999.0,99.0 +1985,8,30,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,18.3,45,101500,1260,1340,450,524,184,344,57700,20100,38800,20990,40,7.7,8,8,40.2,7620,9,999999999,329,0.0370,0,88,999.000,999.0,99.0 +1985,8,30,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,18.3,48,101400,1305,1340,444,759,408,371,82800,42700,41200,35250,40,8.2,8,8,40.2,7620,9,999999999,329,0.0370,0,88,999.000,999.0,99.0 +1985,8,30,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,18.3,44,101300,1266,1340,453,573,318,299,65700,33300,34100,21450,70,6.2,8,8,40.2,7620,9,999999999,329,0.0370,0,88,999.000,999.0,99.0 +1985,8,30,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,18.9,47,101300,1146,1340,444,665,657,194,81200,67400,23400,8490,60,8.2,7,7,40.2,7620,9,999999999,340,0.0370,0,88,999.000,999.0,99.0 +1985,8,30,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,18.9,51,101300,953,1340,415,458,708,84,61300,70700,11000,2310,50,8.8,5,2,32.2,77777,9,999999999,329,0.0370,0,88,999.000,999.0,99.0 +1985,8,30,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,18.9,51,101300,700,1340,419,234,573,58,39300,57300,9300,1440,40,6.7,5,3,32.2,77777,9,999999999,329,0.0370,0,88,999.000,999.0,99.0 +1985,8,30,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,19.4,61,101300,404,1340,407,54,172,32,9800,15400,5200,550,50,6.2,5,3,24.1,77777,9,999999999,350,0.0370,0,88,999.000,999.0,99.0 +1985,8,30,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,20.0,69,101400,98,1083,399,0,0,0,0,0,0,0,60,6.2,6,3,24.1,77777,9,999999999,359,0.0490,0,88,999.000,999.0,99.0 +1985,8,30,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,20.0,72,101400,0,0,396,0,0,0,0,0,0,0,70,5.2,6,3,24.1,77777,9,999999999,359,0.0490,0,88,999.000,999.0,99.0 +1985,8,30,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,20.0,74,101500,0,0,396,0,0,0,0,0,0,0,70,4.1,6,4,24.1,7620,9,999999999,359,0.0490,0,88,999.000,999.0,99.0 +1985,8,30,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,19.4,71,101500,0,0,392,0,0,0,0,0,0,0,80,4.6,4,3,24.1,77777,9,999999999,350,0.0490,0,88,999.000,999.0,99.0 +1985,8,30,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,19.4,71,101500,0,0,392,0,0,0,0,0,0,0,70,4.6,5,3,24.1,77777,9,999999999,350,0.0490,0,88,999.000,999.0,99.0 +1985,8,30,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,19.4,71,101500,0,0,392,0,0,0,0,0,0,0,60,4.1,3,3,24.1,77777,9,999999999,350,0.0490,0,88,999.000,999.0,99.0 +1985,8,31,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,18.9,69,101500,0,0,392,0,0,0,0,0,0,0,70,4.6,3,3,24.1,77777,9,999999999,340,0.0490,0,88,999.000,999.0,99.0 +1985,8,31,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,18.9,71,101500,0,0,385,0,0,0,0,0,0,0,80,2.6,2,2,24.1,77777,9,999999999,329,0.0490,0,88,999.000,999.0,99.0 +1985,8,31,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,19.4,74,101400,0,0,385,0,0,0,0,0,0,0,60,3.6,2,2,24.1,77777,9,999999999,350,0.0490,0,88,999.000,999.0,99.0 +1985,8,31,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,18.9,71,101500,0,0,385,0,0,0,0,0,0,0,80,3.6,2,2,24.1,77777,9,999999999,329,0.0490,0,88,999.000,999.0,99.0 +1985,8,31,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,18.9,71,101500,0,0,385,0,0,0,0,0,0,0,70,4.1,2,2,24.1,77777,9,999999999,329,0.0490,0,88,999.000,999.0,99.0 +1985,8,31,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,18.9,71,101500,0,0,385,52,242,22,0,0,0,0,50,3.6,2,2,24.1,77777,9,999999999,329,0.0230,0,88,999.000,999.0,99.0 +1985,8,31,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,18.3,69,101600,80,972,384,212,585,45,9300,28000,6800,660,70,4.1,2,2,32.2,77777,9,999999999,329,0.0230,0,88,999.000,999.0,99.0 +1985,8,31,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,18.9,63,101600,382,1341,397,462,795,57,29000,69700,9100,1070,60,5.2,2,2,40.2,77777,9,999999999,340,0.0230,0,88,999.000,999.0,99.0 +1985,8,31,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,18.9,55,101600,679,1341,413,583,615,152,47800,59900,17400,3110,70,6.2,3,3,40.2,77777,9,999999999,340,0.0230,0,88,999.000,999.0,99.0 +1985,8,31,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,18.9,53,101600,936,1341,415,858,865,124,76800,86900,16000,3300,60,7.7,3,3,40.2,77777,9,999999999,340,0.0230,0,88,999.000,999.0,99.0 +1985,8,31,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,18.3,50,101600,1134,1341,418,878,753,168,84500,75700,20300,6460,60,8.2,3,3,40.2,77777,9,999999999,329,0.0230,0,88,999.000,999.0,99.0 +1985,8,31,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,18.3,45,101500,1259,1341,431,964,838,146,95600,84000,16600,7660,60,8.2,4,4,40.2,77777,9,999999999,329,0.0230,0,88,999.000,999.0,99.0 +1985,8,31,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,17.8,42,101500,1304,1341,433,860,616,276,93100,62600,32100,25020,50,8.2,4,4,40.2,77777,9,999999999,309,0.0230,0,88,999.000,999.0,99.0 +1985,8,31,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,17.8,44,101400,1264,1341,427,902,876,150,100000,87700,17000,8040,70,8.2,3,3,40.2,77777,9,999999999,320,0.0230,0,88,999.000,999.0,99.0 +1985,8,31,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,17.8,45,101400,1143,1341,423,620,694,124,77700,70700,17300,5240,60,9.3,3,3,40.2,77777,9,999999999,309,0.0230,0,88,999.000,999.0,99.0 +1985,8,31,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,17.8,46,101400,950,1341,421,462,688,100,63500,69800,14000,2890,60,7.7,3,3,32.2,77777,9,999999999,309,0.0230,0,88,999.000,999.0,99.0 +1985,8,31,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,18.3,53,101500,696,1341,408,240,624,50,39600,61100,7800,1360,70,6.7,2,2,32.2,77777,9,999999999,329,0.0230,0,88,999.000,999.0,99.0 +1985,8,31,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,18.9,59,101500,400,1341,403,60,283,25,12300,25900,4500,620,60,7.2,2,2,32.2,77777,9,999999999,340,0.0230,0,88,999.000,999.0,99.0 +1985,8,31,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,18.3,62,101600,94,1062,397,0,0,0,0,0,0,0,60,5.7,3,3,24.1,77777,9,999999999,320,0.0490,0,88,999.000,999.0,99.0 +1985,8,31,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,18.3,64,101600,0,0,394,0,0,0,0,0,0,0,50,5.2,3,3,24.1,77777,9,999999999,329,0.0490,0,88,999.000,999.0,99.0 +1985,8,31,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,18.3,64,101700,0,0,394,0,0,0,0,0,0,0,60,3.6,3,3,24.1,77777,9,999999999,329,0.0490,0,88,999.000,999.0,99.0 +1985,8,31,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,18.9,69,101800,0,0,391,0,0,0,0,0,0,0,60,3.3,2,2,24.1,77777,9,999999999,340,0.0490,0,88,999.000,999.0,99.0 +1985,8,31,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,19.6,69,101800,0,0,392,0,0,0,0,0,0,0,70,3.0,2,2,24.1,77777,9,999999999,340,0.0490,0,88,999.000,999.0,99.0 +1985,8,31,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,20.2,71,101700,0,0,393,0,0,0,0,0,0,0,60,2.7,2,2,24.1,77777,9,999999999,340,0.0490,0,88,999.000,999.0,99.0 +2005,9,1,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,20.9,69,101600,0,0,393,0,0,0,0,0,0,0,60,2.4,5,2,16.0,77777,9,999999999,300,0.0880,0,88,0.110,0.0,1.0 +2005,9,1,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,21.5,69,101500,0,0,398,0,0,0,0,0,0,0,60,2.1,5,3,16.0,77777,9,999999999,309,0.0880,0,88,0.110,0.0,1.0 +2005,9,1,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,22.2,77,101500,0,0,429,0,0,0,0,0,0,0,80,1.8,10,9,16.0,17008,9,999999999,309,0.0880,0,88,0.110,0.0,1.0 +2005,9,1,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,22.8,85,101400,0,0,442,0,0,0,0,0,0,0,10,1.5,10,10,11.2,2438,9,999999999,309,0.0880,0,88,0.110,1.0,1.0 +2005,9,1,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,22.2,82,101400,0,0,395,0,0,0,0,0,0,0,0,0.0,5,2,16.0,77777,9,999999999,309,0.0880,0,88,0.110,0.0,1.0 +2005,9,1,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,22.8,82,101500,0,0,445,0,0,0,0,0,0,0,20,2.6,10,10,14.4,10912,9,999999999,309,0.0880,0,88,0.110,0.0,1.0 +2005,9,1,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,22.2,79,101500,79,973,432,11,76,7,1500,4200,1100,140,40,5.2,10,9,16.0,1280,9,999999999,320,0.0880,0,88,0.110,0.0,1.0 +2005,9,1,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,22.8,79,101500,381,1342,427,86,5,85,9800,300,9800,3230,50,1.5,9,8,16.0,1189,9,999999999,320,0.0880,0,88,0.110,0.0,1.0 +2005,9,1,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,22.2,72,101600,678,1342,417,171,11,166,19800,900,19400,7010,50,5.7,9,5,16.0,77777,9,999999999,329,0.0880,0,88,0.110,0.0,1.0 +2005,9,1,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,21.7,67,101600,935,1342,419,405,146,302,44400,15500,33600,9110,20,3.1,9,5,16.0,77777,9,999999999,329,0.0880,0,88,0.110,0.0,1.0 +2005,9,1,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,23.3,79,101600,1133,1342,440,212,12,202,26000,900,25200,10120,110,3.6,10,9,8.0,9997,9,999999999,329,0.0880,0,88,0.110,0.0,1.0 +2005,9,1,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.0,21.1,59,101500,1258,1342,453,576,185,402,63900,19800,45300,22830,80,7.7,10,9,16.0,12131,9,999999999,329,0.0880,0,88,0.110,0.0,1.0 +2005,9,1,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,31.1,21.1,55,101500,1302,1342,434,871,613,275,92600,62300,32000,24460,70,5.7,9,5,16.0,77777,9,999999999,329,0.0880,0,88,0.110,0.0,1.0 +2005,9,1,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,32.2,20.6,50,101400,1262,1342,433,926,719,248,98700,73300,29600,16960,80,5.7,5,3,16.0,77777,9,999999999,329,0.0880,0,88,0.110,0.0,1.0 +2005,9,1,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.6,21.7,59,101300,1141,1342,432,337,67,280,37300,6800,31500,12670,70,6.2,9,5,16.0,77777,9,999999999,329,0.0880,0,88,0.110,0.0,1.0 +2005,9,1,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,31.7,20.6,52,101300,946,1342,430,661,614,227,71100,63800,26100,6400,40,7.2,5,3,16.0,77777,9,999999999,340,0.0880,0,88,0.110,0.0,1.0 +2005,9,1,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,31.1,20.0,52,101300,692,1342,422,466,640,135,48500,63000,15900,2860,60,7.2,5,2,16.0,77777,9,999999999,340,0.0880,0,88,0.110,0.0,1.0 +2005,9,1,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,29.4,21.1,61,101300,395,1342,418,219,340,118,23000,30400,14100,2370,50,5.2,5,3,16.0,77777,9,999999999,340,0.0880,0,88,0.110,0.0,1.0 +2005,9,1,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,21.1,65,101400,90,1040,408,17,130,9,2300,7300,1600,180,70,6.2,5,2,16.0,77777,9,999999999,340,0.0880,0,88,0.110,0.0,1.0 +2005,9,1,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,21.7,69,101400,0,0,417,0,0,0,0,0,0,0,60,5.7,9,5,16.0,77777,9,999999999,340,0.0880,0,88,0.110,0.0,1.0 +2005,9,1,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,22.2,74,101500,0,0,451,0,0,0,0,0,0,0,50,5.7,10,10,16.0,18532,9,999999999,329,0.0880,0,88,0.110,0.0,1.0 +2005,9,1,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,21.7,72,101500,0,0,407,0,0,0,0,0,0,0,70,2.6,5,3,16.0,77777,9,999999999,329,0.0880,0,88,0.110,0.0,1.0 +2005,9,1,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,21.7,74,101600,0,0,400,0,0,0,0,0,0,0,30,2.1,5,2,16.0,77777,9,999999999,329,0.0880,0,88,0.110,0.0,1.0 +2005,9,1,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,21.7,72,101500,0,0,407,0,0,0,0,0,0,0,80,4.6,5,3,16.0,77777,9,999999999,320,0.0880,0,88,0.110,0.0,1.0 +2005,9,2,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,21.7,74,101500,0,0,404,0,0,0,0,0,0,0,60,3.1,6,3,16.0,77777,9,999999999,309,0.0880,0,88,0.110,0.0,1.0 +2005,9,2,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,21.7,79,101400,0,0,394,0,0,0,0,0,0,0,40,2.1,6,2,16.0,77777,9,999999999,309,0.0880,0,88,0.110,0.0,1.0 +2005,9,2,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,21.1,74,101400,0,0,400,0,0,0,0,0,0,0,20,1.5,6,3,16.0,77777,9,999999999,309,0.0880,0,88,0.110,0.0,1.0 +2005,9,2,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,21.1,79,101400,0,0,391,0,0,0,0,0,0,0,0,0.0,6,2,16.0,77777,9,999999999,309,0.0880,0,88,0.110,0.0,1.0 +2005,9,2,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,21.1,82,101400,0,0,391,0,0,0,0,0,0,0,0,0.0,6,3,16.0,77777,9,999999999,309,0.0880,0,88,0.110,0.0,1.0 +2005,9,2,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,21.1,79,101500,0,0,391,0,0,0,0,0,0,0,310,2.6,6,2,16.0,77777,9,999999999,300,0.0880,0,88,0.110,0.0,1.0 +2005,9,2,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,21.1,76,101500,78,973,398,13,150,6,2000,9600,1200,210,0,0.0,6,3,16.0,77777,9,999999999,290,0.0880,0,88,0.110,0.0,1.0 +2005,9,2,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,21.1,65,101500,380,1342,408,202,519,55,21200,45500,8300,1060,40,1.5,6,2,16.0,77777,9,999999999,279,0.0880,0,88,0.110,0.0,1.0 +2005,9,2,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.0,21.7,61,101600,678,1342,422,438,696,86,46000,68300,11400,1860,70,4.6,6,3,16.0,77777,9,999999999,279,0.0880,0,88,0.110,0.0,1.0 +2005,9,2,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,31.1,20.6,54,101600,934,1342,423,636,697,149,67800,71100,18200,4200,60,5.2,6,2,16.0,77777,9,999999999,279,0.0880,0,88,0.110,0.0,1.0 +2005,9,2,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,32.2,20.0,49,101600,1132,1342,432,758,617,237,80100,62600,27100,9740,70,8.2,6,3,16.0,77777,9,999999999,279,0.0880,0,88,0.110,0.0,1.0 +2005,9,2,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,32.8,18.9,44,101500,1257,1342,430,903,723,224,96900,74100,27300,14930,60,6.2,6,2,16.0,77777,9,999999999,279,0.0880,0,88,0.110,0.0,1.0 +2005,9,2,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,33.3,19.4,44,101500,1301,1342,438,975,871,128,100000,87400,15100,9200,50,5.7,6,3,16.0,77777,9,999999999,279,0.0880,0,88,0.110,0.0,1.0 +2005,9,2,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,32.8,20.0,47,101400,1260,1342,432,907,707,242,96900,72200,28900,16350,80,7.2,6,2,16.0,77777,9,999999999,279,0.0880,0,88,0.110,0.0,1.0 +2005,9,2,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,32.8,19.4,45,101400,1138,1342,435,854,769,200,91300,78700,24300,8490,30,7.7,6,3,16.0,77777,9,999999999,279,0.0880,0,88,0.110,0.0,1.0 +2005,9,2,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,32.2,20.6,50,101400,943,1342,466,434,168,316,47600,17800,35100,9610,80,7.7,10,9,16.0,2438,9,999999999,279,0.0880,0,88,0.110,0.0,1.0 +2005,9,2,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,31.1,20.6,54,101400,688,1342,459,426,466,187,44700,46800,20700,4030,50,5.7,10,9,16.0,2743,9,999999999,279,0.0880,0,88,0.110,0.0,1.0 +2005,9,2,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.0,20.6,57,101400,391,1342,453,235,412,114,24000,35900,13600,2170,50,7.2,10,9,16.0,2743,9,999999999,279,0.0880,0,88,0.110,0.0,1.0 +2005,9,2,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.9,20.6,61,101400,87,1018,415,17,153,8,2400,9500,1600,200,50,5.7,6,3,16.0,77777,9,999999999,279,0.0880,0,88,0.110,0.0,1.0 +2005,9,2,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,20.6,63,101500,0,0,408,0,0,0,0,0,0,0,60,6.2,6,2,16.0,77777,9,999999999,279,0.0880,0,88,0.110,0.0,1.0 +2005,9,2,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,21.7,69,101600,0,0,410,0,0,0,0,0,0,0,40,6.2,6,3,16.0,77777,9,999999999,279,0.0880,0,88,0.110,0.0,1.0 +2005,9,2,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,21.7,72,101600,0,0,403,0,0,0,0,0,0,0,80,4.6,6,2,16.0,77777,9,999999999,290,0.0880,0,88,0.110,0.0,1.0 +2005,9,2,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,21.1,69,101600,0,0,406,0,0,0,0,0,0,0,80,5.7,6,3,16.0,77777,9,999999999,290,0.0880,0,88,0.110,0.0,1.0 +2005,9,2,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,21.1,71,101600,0,0,400,0,0,0,0,0,0,0,100,2.6,6,2,16.0,77777,9,999999999,300,0.0880,0,88,0.110,0.0,1.0 +2005,9,3,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,21.7,72,101600,0,0,403,0,0,0,0,0,0,0,60,4.6,2,2,16.0,77777,9,999999999,320,0.0870,0,88,0.110,0.0,1.0 +2005,9,3,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,21.1,69,101500,0,0,406,0,0,0,0,0,0,0,70,4.1,3,3,16.0,77777,9,999999999,329,0.0870,0,88,0.110,0.0,1.0 +2005,9,3,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,21.1,69,101500,0,0,402,0,0,0,0,0,0,0,50,6.2,2,2,16.0,77777,9,999999999,329,0.0870,0,88,0.110,0.0,1.0 +2005,9,3,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,21.1,69,101500,0,0,406,0,0,0,0,0,0,0,60,5.2,3,3,16.0,77777,9,999999999,329,0.0870,0,88,0.110,0.0,1.0 +2005,9,3,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,21.1,71,101500,0,0,400,0,0,0,0,0,0,0,50,3.6,2,2,16.0,77777,9,999999999,329,0.0870,0,88,0.110,0.0,1.0 +2005,9,3,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,21.1,71,101500,0,0,403,0,0,0,0,0,0,0,10,3.6,3,3,16.0,77777,9,999999999,320,0.0870,0,88,0.110,0.0,1.0 +2005,9,3,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,21.1,69,101600,77,951,413,10,48,8,1400,2300,1200,130,40,4.1,5,5,16.0,77777,9,999999999,309,0.0870,0,88,0.110,0.0,1.0 +2005,9,3,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.9,21.1,63,101600,379,1343,422,186,356,86,19700,30800,10900,1590,40,4.6,5,5,16.0,77777,9,999999999,309,0.0870,0,88,0.110,0.0,1.0 +2005,9,3,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,29.4,20.6,59,101600,677,1343,424,423,599,121,44400,59000,14500,2570,80,3.6,5,5,16.0,77777,9,999999999,309,0.0870,0,88,0.110,0.0,1.0 +2005,9,3,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.0,20.0,55,101600,934,1343,452,609,633,169,64500,64200,19800,4680,70,4.6,9,9,16.0,18532,9,999999999,309,0.0870,0,88,0.110,0.0,1.0 +2005,9,3,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,31.7,20.6,52,101600,1131,1343,463,647,338,361,70800,36700,39800,14390,60,4.6,9,9,16.0,18532,9,999999999,309,0.0870,0,88,0.110,0.0,1.0 +2005,9,3,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,31.7,20.0,50,101500,1256,1343,436,932,806,176,98600,81400,22300,10930,80,5.2,5,5,16.0,77777,9,999999999,309,0.0870,0,88,0.110,0.0,1.0 +2005,9,3,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,33.3,20.6,47,101500,1299,1343,446,848,583,282,89800,59200,32500,24240,50,9.3,5,5,16.0,77777,9,999999999,309,0.0870,0,88,0.110,0.0,1.0 +2005,9,3,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,33.3,20.0,46,101400,1258,1343,446,927,786,188,97400,79100,23100,11700,50,6.2,5,5,16.0,77777,9,999999999,309,0.0870,0,88,0.110,0.0,1.0 +2005,9,3,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,32.8,20.0,47,101400,1136,1343,443,841,854,117,86700,85500,14200,4000,40,7.7,5,5,16.0,77777,9,999999999,309,0.0870,0,88,0.110,0.0,1.0 +2005,9,3,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,32.8,20.0,47,101400,940,1343,443,627,645,174,66200,65400,20300,4850,50,7.2,5,5,16.0,77777,9,999999999,320,0.0870,0,88,0.110,0.0,1.0 +2005,9,3,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,31.7,20.0,50,101400,684,1343,436,419,408,211,44900,42400,23200,4820,60,8.2,5,5,16.0,77777,9,999999999,320,0.0870,0,88,0.110,0.0,1.0 +2005,9,3,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,31.1,20.6,54,101400,387,1343,427,66,0,66,7700,0,7700,2670,60,5.7,3,3,16.0,77777,9,999999999,329,0.0870,0,88,0.110,0.0,1.0 +2005,9,3,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.0,21.7,61,101500,83,996,429,4,0,4,500,0,500,170,40,4.6,5,5,16.0,77777,9,999999999,329,0.0870,0,88,0.110,0.0,1.0 +2005,9,3,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.5,20.2,68,101500,0,0,408,0,0,0,0,0,0,0,20,4.1,5,5,16.0,77777,9,999999999,340,0.0870,0,88,0.110,0.0,1.0 +2005,9,3,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.0,21.5,76,101600,0,0,406,0,0,0,0,0,0,0,40,4.1,5,5,16.0,77777,9,999999999,340,0.0870,0,88,0.110,0.0,1.0 +2005,9,3,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,22.3,82,101700,0,0,429,0,0,0,0,0,0,0,110,2.6,9,9,16.0,18532,9,999999999,350,0.0870,0,88,0.110,0.0,1.0 +2005,9,3,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.2,20.3,74,101600,0,0,401,0,0,0,0,0,0,0,70,5.2,5,5,16.0,77777,9,999999999,350,0.0870,0,88,0.110,0.0,1.0 +2005,9,3,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.4,21.5,79,101600,0,0,427,0,0,0,0,0,0,0,80,3.1,9,9,16.0,18532,9,999999999,350,0.0870,0,88,0.110,0.0,1.0 +2005,9,4,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.9,20.4,76,101600,0,0,423,0,0,0,0,0,0,0,50,5.7,9,9,16.0,2743,9,999999999,359,0.0870,0,88,0.110,0.0,1.0 +2005,9,4,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.6,20.9,80,101500,0,0,406,0,0,0,0,0,0,0,50,4.1,7,7,16.0,20056,9,999999999,359,0.0870,0,88,0.110,0.0,1.0 +2005,9,4,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.6,21.6,83,101500,0,0,423,0,0,0,0,0,0,0,80,5.7,9,9,16.0,15484,9,999999999,359,0.0870,0,88,0.110,0.0,1.0 +2005,9,4,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.1,21.8,87,101500,0,0,397,0,0,0,0,0,0,0,60,3.1,5,5,16.0,77777,9,999999999,359,0.0870,0,88,0.110,0.0,1.0 +2005,9,4,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.3,21.0,82,101500,0,0,420,0,0,0,0,0,0,0,40,3.1,9,9,16.0,18532,9,999999999,359,0.0870,0,88,0.110,0.0,1.0 +2005,9,4,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,22.0,83,101500,0,0,425,0,0,0,0,0,0,0,50,4.1,9,9,16.0,20056,9,999999999,370,0.0870,0,88,0.110,0.0,1.0 +2005,9,4,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,20.9,75,101500,77,952,427,9,31,7,1100,1500,1000,110,50,4.1,9,9,16.0,2134,9,999999999,370,0.0870,0,88,0.110,0.0,1.0 +2005,9,4,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.8,21.0,71,101600,378,1344,419,89,10,86,10100,500,10000,3240,60,5.2,7,7,16.0,1981,9,999999999,370,0.0870,0,88,0.110,0.0,1.0 +2005,9,4,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.0,21.1,66,101600,676,1344,442,409,508,153,43700,51000,18000,3210,60,7.2,9,9,16.0,2134,9,999999999,359,0.0870,0,88,0.110,0.0,1.0 +2005,9,4,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,29.0,21.0,62,101600,933,1344,412,599,638,154,63700,65000,18400,4310,50,6.7,2,2,16.0,77777,9,999999999,359,0.0870,0,88,0.110,0.0,1.0 +2005,9,4,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.4,21.5,59,101600,1130,1344,424,780,658,225,82600,66900,26100,9220,60,7.7,3,3,16.0,77777,9,999999999,350,0.0870,0,88,0.110,0.0,1.0 +2005,9,4,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.6,20.6,55,101600,1255,1344,420,885,699,231,94800,71500,27800,15110,60,7.2,2,2,16.0,77777,9,999999999,329,0.0870,0,88,0.110,0.0,1.0 +2005,9,4,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.7,20.0,53,101600,1298,1344,424,908,727,204,95000,73000,24300,16230,60,8.8,3,3,16.0,77777,9,999999999,309,0.0870,0,88,0.110,0.0,1.0 +2005,9,4,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,31.7,20.4,51,101500,1256,1344,426,864,641,263,91600,65100,30600,17200,60,8.2,2,2,16.0,77777,9,999999999,290,0.0870,0,88,0.110,0.0,1.0 +2005,9,4,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.9,20.8,55,101400,1133,1344,426,722,531,274,78400,55500,31500,11480,60,11.8,3,3,16.0,77777,9,999999999,290,0.0870,0,88,0.110,0.0,1.0 +2005,9,4,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.7,20.4,54,101400,937,1344,431,649,671,181,68400,67900,21000,4990,60,9.8,5,5,16.0,77777,9,999999999,290,0.0870,0,88,0.110,0.0,1.0 +2005,9,4,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.6,20.6,55,101400,681,1344,431,462,681,116,48500,67300,14300,2490,60,10.3,5,5,16.0,77777,9,999999999,300,0.0870,0,88,0.110,0.0,1.0 +2005,9,4,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.8,20.4,54,101500,382,1344,421,242,536,89,24500,45800,11500,1570,70,7.7,2,2,16.0,77777,9,999999999,309,0.0870,0,88,0.110,0.0,1.0 +2005,9,4,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.0,20.6,57,101500,80,974,453,14,184,5,2300,11800,1300,180,50,8.8,9,9,16.0,15484,9,999999999,309,0.0870,0,88,0.110,0.0,1.0 +2005,9,4,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.4,20.9,64,101600,0,0,419,0,0,0,0,0,0,0,50,8.2,5,5,16.0,77777,9,999999999,320,0.0870,0,88,0.110,0.0,1.0 +2005,9,4,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.4,21.8,67,101700,0,0,445,0,0,0,0,0,0,0,70,6.7,9,9,16.0,18532,9,999999999,320,0.0870,0,88,0.110,0.0,1.0 +2005,9,4,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.8,20.7,69,101700,0,0,400,0,0,0,0,0,0,0,60,6.7,2,2,16.0,77777,9,999999999,320,0.0870,0,88,0.110,0.0,1.0 +2005,9,4,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.7,21.6,78,101700,0,0,399,0,0,0,0,0,0,0,60,4.1,3,3,16.0,77777,9,999999999,320,0.0870,0,88,0.110,0.0,1.0 +2005,9,4,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.3,21.4,79,101700,0,0,392,0,0,0,0,0,0,0,70,4.6,2,2,16.0,77777,9,999999999,320,0.0870,0,88,0.110,0.0,1.0 +2005,9,5,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.1,21.9,82,101700,0,0,392,0,0,0,0,0,0,0,60,3.6,2,2,16.0,77777,9,999999999,329,0.0860,0,88,0.110,0.0,1.0 +2005,9,5,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.1,21.7,81,101600,0,0,402,0,0,0,0,0,0,0,60,4.6,5,5,16.0,77777,9,999999999,329,0.0860,0,88,0.110,0.0,1.0 +2005,9,5,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.6,21.7,84,101600,0,0,389,0,0,0,0,0,0,0,60,4.1,2,2,16.0,77777,9,999999999,329,0.0860,0,88,0.110,0.0,1.0 +2005,9,5,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,21.1,82,101500,0,0,391,0,0,0,0,0,0,0,60,3.6,3,3,16.0,77777,9,999999999,320,0.0860,0,88,0.110,0.0,1.0 +2005,9,5,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.7,21.1,80,101600,0,0,389,0,0,0,0,0,0,0,70,4.1,2,2,16.0,77777,9,999999999,320,0.0860,0,88,0.110,0.0,1.0 +2005,9,5,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.7,20.6,78,101600,0,0,392,0,0,0,0,0,0,0,80,4.6,3,3,16.0,77777,9,999999999,320,0.0860,0,88,0.110,0.0,1.0 +2005,9,5,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.5,21.5,79,101700,76,952,394,12,140,6,1900,8900,1200,210,50,5.2,2,2,16.0,77777,9,999999999,309,0.0860,0,88,0.110,0.0,1.0 +2005,9,5,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.0,21.9,74,101700,377,1344,406,197,466,66,20400,40300,9100,1230,70,6.2,3,3,16.0,77777,9,999999999,309,0.0860,0,88,0.110,0.0,1.0 +2005,9,5,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.4,21.7,67,101700,675,1344,409,399,513,141,43000,51600,17000,2930,60,7.2,2,2,16.0,77777,9,999999999,309,0.0860,0,88,0.110,0.0,1.0 +2005,9,5,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.0,21.1,59,101800,932,1344,422,651,732,142,69700,74800,17700,4000,50,8.8,3,3,16.0,77777,9,999999999,309,0.0860,0,88,0.110,0.0,1.0 +2005,9,5,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.4,20.5,56,101700,1129,1344,419,786,652,237,82900,66100,27200,9620,60,8.8,2,2,16.0,77777,9,999999999,309,0.0860,0,88,0.110,0.0,1.0 +2005,9,5,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,31.6,21.3,54,101700,1254,1344,437,740,406,360,79300,42400,39600,23870,60,9.3,5,5,16.0,77777,9,999999999,309,0.0860,0,88,0.110,0.0,1.0 +2005,9,5,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,31.4,22.1,58,101700,1296,1344,437,939,703,259,100100,71600,30800,21620,60,8.8,5,5,16.0,77777,9,999999999,309,0.0860,0,88,0.110,0.0,1.0 +2005,9,5,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,31.1,21.2,56,101600,1254,1344,428,921,822,152,99000,83500,20800,9480,50,8.8,3,3,16.0,77777,9,999999999,300,0.0860,0,88,0.110,0.0,1.0 +2005,9,5,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,31.5,20.6,52,101500,1130,1344,425,816,806,136,87300,81800,18400,5400,60,10.3,2,2,16.0,77777,9,999999999,309,0.0860,0,88,0.110,0.0,1.0 +2005,9,5,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,31.4,20.8,53,101500,933,1344,436,679,795,125,71300,79800,15800,3290,50,8.2,5,5,16.0,77777,9,999999999,309,0.0860,0,88,0.110,0.0,1.0 +2005,9,5,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,31.1,19.6,50,101500,677,1344,422,422,539,150,45200,54100,17900,3140,60,9.3,2,2,16.0,77777,9,999999999,309,0.0860,0,88,0.110,0.0,1.0 +2005,9,5,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.6,20.6,55,101600,378,1344,424,246,508,103,25400,43800,13100,1940,60,8.8,3,3,16.0,77777,9,999999999,309,0.0860,0,88,0.110,0.0,1.0 +2005,9,5,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,29.4,20.6,59,101600,76,952,413,13,167,5,2100,10700,1200,180,50,8.2,2,2,16.0,77777,9,999999999,309,0.0860,0,88,0.110,0.0,1.0 +2005,9,5,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.6,20.0,67,101600,0,0,402,0,0,0,0,0,0,0,60,7.7,3,3,16.0,77777,9,999999999,309,0.0860,0,88,0.110,0.0,1.0 +2005,9,5,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.6,19.6,65,101700,0,0,397,0,0,0,0,0,0,0,60,8.8,2,2,16.0,77777,9,999999999,309,0.0860,0,88,0.110,0.0,1.0 +2005,9,5,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.2,20.1,69,101700,0,0,400,0,0,0,0,0,0,0,60,8.2,3,3,16.0,77777,9,999999999,309,0.0860,0,88,0.110,0.0,1.0 +2005,9,5,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.2,20.0,69,101700,0,0,396,0,0,0,0,0,0,0,60,7.2,2,2,16.0,77777,9,999999999,309,0.0860,0,88,0.110,0.0,1.0 +2005,9,5,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.8,20.6,73,101700,0,0,404,0,0,0,0,0,0,0,80,6.2,5,5,16.0,77777,9,999999999,309,0.0860,0,88,0.110,0.0,1.0 +2005,9,6,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.4,21.1,77,101700,0,0,403,0,0,0,0,0,0,0,50,4.1,9,5,16.0,77777,9,999999999,309,0.0850,0,88,0.110,0.0,1.0 +2005,9,6,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.4,20.6,75,101600,0,0,402,0,0,0,0,0,0,0,50,5.2,9,5,16.0,77777,9,999999999,309,0.0850,0,88,0.110,0.0,1.0 +2005,9,6,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.4,20.0,72,101600,0,0,401,0,0,0,0,0,0,0,50,6.7,9,5,16.0,77777,9,999999999,320,0.0850,0,88,0.110,0.0,1.0 +2005,9,6,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.7,20.6,78,101600,0,0,398,0,0,0,0,0,0,0,50,5.7,9,5,16.0,77777,9,999999999,329,0.0850,0,88,0.110,0.0,1.0 +2005,9,6,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.7,20.0,75,101600,0,0,398,0,0,0,0,0,0,0,60,6.7,9,5,16.0,77777,9,999999999,340,0.0850,0,88,0.110,0.0,1.0 +2005,9,6,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.3,20.0,72,101600,0,0,391,0,0,0,0,0,0,0,50,6.7,7,2,16.0,77777,9,999999999,350,0.0850,0,88,0.110,0.0,1.0 +2005,9,6,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.4,19.8,71,101700,75,953,395,12,165,5,2100,10500,1200,180,50,5.2,8,3,16.0,77777,9,999999999,359,0.0850,0,88,0.110,0.0,1.0 +2005,9,6,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.1,20.2,66,101700,376,1345,401,208,570,48,21500,50100,7500,970,70,9.3,7,2,16.0,77777,9,999999999,359,0.0850,0,88,0.110,0.0,1.0 +2005,9,6,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.2,20.4,63,101700,675,1345,411,423,644,99,44900,64000,12700,2160,60,8.8,8,3,16.0,77777,9,999999999,350,0.0850,0,88,0.110,0.0,1.0 +2005,9,6,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.9,20.0,59,101800,931,1345,420,615,656,159,65200,66700,18900,4410,60,9.3,9,5,16.0,77777,9,999999999,329,0.0850,0,88,0.110,0.0,1.0 +2005,9,6,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.0,18.3,50,101700,1129,1345,418,831,830,132,85300,83000,15400,4120,60,9.3,8,3,16.0,77777,9,999999999,320,0.0850,0,88,0.110,0.0,1.0 +2005,9,6,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.0,18.9,51,101700,1252,1345,415,909,741,217,97700,76000,26700,13990,70,9.8,7,2,16.0,77777,9,999999999,300,0.0850,0,88,0.110,0.0,1.0 +2005,9,6,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,31.1,18.3,47,101600,1294,1345,424,806,511,313,88100,53600,36400,26310,50,8.8,8,3,16.0,77777,9,999999999,290,0.0850,0,88,0.110,0.0,1.0 +2005,9,6,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.6,18.3,48,101500,1252,1345,428,858,641,260,91100,65200,30200,16550,60,9.8,9,5,16.0,77777,9,999999999,279,0.0850,0,88,0.110,0.0,1.0 +2005,9,6,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.0,17.8,48,101500,1128,1345,417,717,525,275,77600,54900,31500,11310,70,8.2,8,3,16.0,77777,9,999999999,270,0.0850,0,88,0.110,0.0,1.0 +2005,9,6,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,29.4,17.8,50,101500,930,1345,410,558,410,274,58800,42400,29400,7640,70,9.3,7,2,16.0,77777,9,999999999,270,0.0850,0,88,0.110,0.0,1.0 +2005,9,6,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,18.9,57,101500,673,1345,440,232,39,213,25500,3900,23600,6370,50,6.2,10,9,16.0,15484,9,999999999,259,0.0850,0,88,0.110,0.0,1.0 +2005,9,6,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,18.9,58,101500,373,1345,403,236,232,172,25000,20300,19300,3820,60,6.7,7,2,16.0,77777,9,999999999,270,0.0850,0,88,0.110,0.0,1.0 +2005,9,6,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,18.9,62,101500,73,930,397,11,73,8,1500,3900,1200,160,50,7.2,7,2,16.0,77777,9,999999999,270,0.0850,0,88,0.110,0.0,1.0 +2005,9,6,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,18.9,62,101500,0,0,397,0,0,0,0,0,0,0,70,7.7,7,2,16.0,77777,9,999999999,270,0.0850,0,88,0.110,0.0,1.0 +2005,9,6,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,18.3,62,101600,0,0,397,0,0,0,0,0,0,0,60,10.3,8,3,16.0,77777,9,999999999,279,0.0850,0,88,0.110,0.0,1.0 +2005,9,6,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,19.4,67,101600,0,0,394,0,0,0,0,0,0,0,50,8.8,7,2,16.0,77777,9,999999999,290,0.0850,0,88,0.110,0.0,1.0 +2005,9,6,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,18.3,64,101600,0,0,394,0,0,0,0,0,0,0,70,6.2,8,3,16.0,77777,9,999999999,300,0.0850,0,88,0.110,0.0,1.0 +2005,9,6,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,18.9,67,101600,0,0,391,0,0,0,0,0,0,0,50,7.2,7,2,16.0,77777,9,999999999,279,0.0850,0,88,0.110,0.0,1.0 +2005,9,7,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,18.9,67,101600,0,0,391,0,0,0,0,0,0,0,50,7.2,2,2,16.0,77777,9,999999999,259,0.0850,0,88,0.110,0.0,1.0 +2005,9,7,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,18.9,67,101500,0,0,395,0,0,0,0,0,0,0,60,6.2,3,3,16.0,77777,9,999999999,240,0.0850,0,88,0.110,0.0,1.0 +2005,9,7,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,20.6,79,101500,0,0,420,0,0,0,0,0,0,0,70,5.2,9,9,16.0,17008,9,999999999,250,0.0850,0,88,0.110,0.0,1.0 +2005,9,7,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,19.4,71,101500,0,0,392,0,0,0,0,0,0,0,50,6.2,3,3,16.0,77777,9,999999999,259,0.0850,0,88,0.110,0.0,1.0 +2005,9,7,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,18.9,69,101500,0,0,375,0,0,0,0,0,0,0,60,6.7,0,0,16.0,77777,9,999999999,270,0.0850,0,88,0.110,0.0,1.0 +2005,9,7,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,18.9,69,101500,0,0,392,0,0,0,0,0,0,0,70,6.2,3,3,16.0,77777,9,999999999,279,0.0850,0,88,0.110,0.0,1.0 +2005,9,7,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,18.9,69,101500,74,931,388,13,199,4,2300,12700,1200,150,70,7.2,2,2,16.0,77777,9,999999999,300,0.0850,0,88,0.110,0.0,1.0 +2005,9,7,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,18.9,62,101500,375,1346,401,211,637,33,22400,56500,6600,860,70,8.2,3,3,16.0,77777,9,999999999,309,0.0850,0,88,0.110,0.0,1.0 +2005,9,7,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,18.9,58,101600,674,1346,403,451,775,62,47400,75600,9400,1490,60,9.3,2,2,16.0,77777,9,999999999,309,0.0850,0,88,0.110,0.0,1.0 +2005,9,7,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,20.0,61,101600,931,1346,411,657,796,104,70300,80500,14500,2880,50,10.3,3,3,16.0,77777,9,999999999,300,0.0850,0,88,0.110,0.0,1.0 +2005,9,7,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,29.4,19.4,55,101500,1128,1346,412,786,646,243,82700,65400,27700,9760,70,9.8,2,2,16.0,77777,9,999999999,300,0.0850,0,88,0.110,0.0,1.0 +2005,9,7,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.0,18.9,51,101500,1251,1346,425,612,239,389,67500,26000,43300,22510,60,10.3,5,5,16.0,77777,9,999999999,290,0.0850,0,88,0.110,0.0,1.0 +2005,9,7,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.6,18.3,48,101400,1293,1346,428,873,631,265,92900,64200,31000,21380,50,9.3,5,5,16.0,77777,9,999999999,270,0.0850,0,88,0.110,0.0,1.0 +2005,9,7,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.0,17.8,48,101400,1250,1346,424,758,417,369,81000,43600,40400,23870,50,6.2,5,5,16.0,77777,9,999999999,250,0.0850,0,88,0.110,0.0,1.0 +2005,9,7,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.0,18.9,51,101300,1125,1346,415,684,433,321,72900,45200,35000,13200,50,8.8,2,2,16.0,77777,9,999999999,259,0.0850,0,88,0.110,0.0,1.0 +2005,9,7,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,29.4,18.9,53,101300,927,1346,415,587,497,244,62500,51500,27000,6700,70,7.7,3,3,16.0,77777,9,999999999,279,0.0850,0,88,0.110,0.0,1.0 +2005,9,7,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.9,18.3,53,101300,669,1346,408,350,234,233,37900,23900,26000,5790,50,7.7,2,2,16.0,77777,9,999999999,290,0.0850,0,88,0.110,0.0,1.0 +2005,9,7,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,18.3,56,101400,369,1346,406,142,48,128,15400,4300,14300,3160,60,7.7,3,3,16.0,77777,9,999999999,290,0.0850,0,88,0.110,0.0,1.0 +2005,9,7,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,18.9,62,101400,70,908,397,6,15,5,700,600,700,80,50,4.6,2,2,16.0,77777,9,999999999,300,0.0850,0,88,0.110,0.0,1.0 +2005,9,7,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,19.4,69,101500,0,0,402,0,0,0,0,0,0,0,70,5.2,5,5,16.0,77777,9,999999999,309,0.0850,0,88,0.110,0.0,1.0 +2005,9,7,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,19.4,69,101500,0,0,402,0,0,0,0,0,0,0,60,6.7,5,5,16.0,77777,9,999999999,309,0.0850,0,88,0.110,0.0,1.0 +2005,9,7,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,19.4,69,101500,0,0,396,0,0,0,0,0,0,0,70,7.2,3,3,16.0,77777,9,999999999,309,0.0850,0,88,0.110,0.0,1.0 +2005,9,7,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,20.6,77,101500,0,0,424,0,0,0,0,0,0,0,70,4.6,9,9,16.0,18532,9,999999999,320,0.0850,0,88,0.110,0.0,1.0 +2005,9,7,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,19.4,69,101500,0,0,396,0,0,0,0,0,0,0,50,6.7,3,3,16.0,77777,9,999999999,320,0.0850,0,88,0.110,0.0,1.0 +2005,9,8,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,19.4,69,101500,0,0,425,0,0,0,0,0,0,0,50,5.2,9,9,16.0,2134,9,999999999,320,0.0840,0,88,0.110,0.0,1.0 +2005,9,8,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,19.4,69,101400,0,0,392,0,0,0,0,0,0,0,60,6.2,2,2,16.0,77777,9,999999999,320,0.0840,0,88,0.110,0.0,1.0 +2005,9,8,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,19.4,71,101400,0,0,392,0,0,0,0,0,0,0,60,6.7,3,3,16.0,77777,9,999999999,320,0.0840,0,88,0.110,0.0,1.0 +2005,9,8,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,19.4,71,101400,0,0,389,0,0,0,0,0,0,0,70,6.7,2,2,16.0,77777,9,999999999,320,0.0840,0,88,0.110,0.0,1.0 +2005,9,8,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,19.4,71,101400,0,0,392,0,0,0,0,0,0,0,70,6.2,3,3,16.0,77777,9,999999999,320,0.0840,0,88,0.110,0.0,1.0 +2005,9,8,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,18.9,69,101400,0,0,398,0,0,0,0,0,0,0,60,6.7,5,5,16.0,77777,9,999999999,320,0.0840,0,88,0.110,0.0,1.0 +2005,9,8,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,20.0,76,101400,73,931,390,10,111,5,1600,6800,1100,130,40,5.2,3,3,16.0,77777,9,999999999,329,0.0840,0,88,0.110,0.0,1.0 +2005,9,8,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,21.1,79,101500,374,1346,409,148,183,97,15800,16000,11300,1880,80,4.1,7,7,16.0,1676,9,999999999,329,0.0840,0,88,0.110,0.0,1.0 +2005,9,8,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,20.6,72,101500,673,1346,430,190,17,181,21700,1400,21000,7410,70,6.2,9,9,16.0,18532,9,999999999,329,0.0840,0,88,0.110,0.0,1.0 +2005,9,8,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.9,19.4,57,101500,930,1346,420,336,82,279,37000,8300,31200,9970,70,6.2,5,5,16.0,77777,9,999999999,329,0.0840,0,88,0.110,0.0,1.0 +2005,9,8,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,19.4,59,101500,1127,1346,416,702,474,304,75200,49500,33700,12510,50,7.7,5,5,16.0,77777,9,999999999,340,0.0840,0,88,0.110,0.0,1.0 +2005,9,8,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,29.4,19.4,55,101400,1250,1346,448,903,741,214,97200,76000,26400,13550,60,7.2,9,9,16.0,14569,9,999999999,329,0.0840,0,88,0.110,0.0,1.0 +2005,9,8,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,22.2,76,101300,1291,1346,435,982,883,133,100700,88600,15600,8550,40,5.2,9,9,8.0,18532,9,999999999,329,0.0840,0,88,0.110,0.0,1.0 +2005,9,8,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,29.4,19.4,55,101300,1247,1346,412,891,720,222,95500,73700,27000,13860,50,7.7,2,2,16.0,77777,9,999999999,320,0.0840,0,88,0.110,0.0,1.0 +2005,9,8,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.0,19.4,53,101200,1122,1346,426,777,678,211,82600,69100,24900,8440,50,7.7,5,5,16.0,77777,9,999999999,329,0.0840,0,88,0.110,0.0,1.0 +2005,9,8,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.0,19.4,53,101200,923,1346,426,495,298,290,53600,32000,31500,8120,60,7.7,5,5,16.0,77777,9,999999999,329,0.0840,0,88,0.110,0.0,1.0 +2005,9,8,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,19.4,60,101200,665,1346,438,451,574,167,47600,57400,19200,3510,50,6.7,9,9,16.0,2438,9,999999999,340,0.0840,0,88,0.110,0.0,1.0 +2005,9,8,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,19.4,60,101300,364,1346,403,231,488,99,23900,41500,12600,1860,60,6.2,2,2,16.0,77777,9,999999999,320,0.0840,0,88,0.110,0.0,1.0 +2005,9,8,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,19.4,64,101300,67,886,408,9,139,4,1600,8700,1000,150,60,4.6,5,5,16.0,77777,9,999999999,309,0.0840,0,88,0.110,0.0,1.0 +2005,9,8,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,19.4,67,101300,0,0,404,0,0,0,0,0,0,0,60,4.1,5,5,16.0,77777,9,999999999,290,0.0840,0,88,0.110,0.0,1.0 +2005,9,8,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,20.6,74,101400,0,0,427,0,0,0,0,0,0,0,80,4.6,9,9,16.0,2438,9,999999999,290,0.0840,0,88,0.110,0.0,1.0 +2005,9,8,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,19.4,67,101400,0,0,404,0,0,0,0,0,0,0,60,6.2,5,5,16.0,77777,9,999999999,290,0.0840,0,88,0.110,0.0,1.0 +2005,9,8,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,20.0,71,101400,0,0,396,0,0,0,0,0,0,0,80,4.6,3,3,16.0,77777,9,999999999,290,0.0840,0,88,0.110,0.0,1.0 +2005,9,8,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,21.1,82,101400,0,0,421,0,0,0,0,0,0,0,90,6.2,9,9,8.0,2286,9,999999999,290,0.0840,0,88,0.110,0.0,1.0 +2005,9,9,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,21.1,87,101400,0,0,415,0,0,0,0,0,0,0,40,3.1,9,9,16.0,2438,9,999999999,300,0.0840,0,88,0.110,0.0,1.0 +2005,9,9,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,21.1,82,101300,0,0,412,0,0,0,0,0,0,0,60,3.6,8,8,16.0,2286,9,999999999,300,0.0840,0,88,0.110,0.0,1.0 +2005,9,9,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,20.6,79,101300,0,0,397,0,0,0,0,0,0,0,110,2.6,5,5,16.0,77777,9,999999999,309,0.0840,0,88,0.110,0.0,1.0 +2005,9,9,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,20.6,79,101300,0,0,420,0,0,0,0,0,0,0,60,4.1,9,9,16.0,2438,9,999999999,320,0.0840,0,88,0.110,0.0,1.0 +2005,9,9,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,20.0,76,101300,0,0,386,0,0,0,0,0,0,0,30,2.6,2,2,16.0,77777,9,999999999,329,0.0840,0,88,0.110,0.0,1.0 +2005,9,9,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,20.6,79,101300,0,0,420,0,0,0,0,0,0,0,30,2.1,9,9,16.0,2286,9,999999999,340,0.0840,0,88,0.110,0.0,1.0 +2005,9,9,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,19.4,71,101400,73,932,389,7,22,6,900,900,900,90,60,3.1,2,2,16.0,77777,9,999999999,340,0.0840,0,88,0.110,0.0,1.0 +2005,9,9,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,20.0,69,101400,373,1347,399,163,240,96,17300,21000,11500,1860,50,3.6,3,3,16.0,77777,9,999999999,350,0.0840,0,88,0.110,0.0,1.0 +2005,9,9,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,20.0,63,101400,672,1347,404,408,553,132,42500,54200,15400,2750,50,4.6,2,2,16.0,77777,9,999999999,350,0.0840,0,88,0.110,0.0,1.0 +2005,9,9,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.9,20.0,59,101500,929,1347,414,525,357,278,57000,38400,30500,7770,40,5.2,3,3,16.0,77777,9,999999999,340,0.0840,0,88,0.110,0.0,1.0 +2005,9,9,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.9,20.0,59,101500,1126,1347,410,753,617,236,79400,62600,27000,9420,50,4.1,2,2,16.0,77777,9,999999999,340,0.0840,0,88,0.110,0.0,1.0 +2005,9,9,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,29.4,20.0,57,101400,1249,1347,423,839,663,223,90000,67900,26900,13950,70,5.7,5,5,16.0,77777,9,999999999,329,0.0840,0,88,0.110,0.0,1.0 +2005,9,9,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,31.1,17.8,45,101400,1289,1347,419,849,595,278,90000,60400,32000,21630,70,5.7,2,2,16.0,77777,9,999999999,309,0.0840,0,88,0.110,0.0,1.0 +2005,9,9,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.6,18.9,50,101300,1245,1347,422,891,684,257,94500,69500,30100,15680,70,6.2,3,3,16.0,77777,9,999999999,290,0.0840,0,88,0.110,0.0,1.0 +2005,9,9,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,29.4,20.0,57,101300,1119,1347,448,618,287,379,67300,31100,41300,14700,60,8.2,9,9,16.0,15484,9,999999999,300,0.0840,0,88,0.110,0.0,1.0 +2005,9,9,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,21.7,67,101300,920,1347,444,496,274,308,53400,29400,33200,8680,50,6.2,9,9,16.0,18532,9,999999999,320,0.0840,0,88,0.110,0.0,1.0 +2005,9,9,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,20.6,65,101300,660,1347,440,277,117,219,30100,11900,24200,5420,60,4.6,9,9,16.0,2134,9,999999999,329,0.0840,0,88,0.110,0.0,1.0 +2005,9,9,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,20.0,65,101300,360,1347,411,221,312,137,22800,26700,15600,2900,60,5.2,5,5,16.0,77777,9,999999999,329,0.0840,0,88,0.110,0.0,1.0 +2005,9,9,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,20.6,69,101400,64,864,399,7,84,4,1200,5100,800,110,70,3.6,2,2,16.0,77777,9,999999999,340,0.0840,0,88,0.110,0.0,1.0 +2005,9,9,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,21.1,74,101400,0,0,421,0,0,0,0,0,0,0,40,3.1,8,8,16.0,2134,9,999999999,350,0.0840,0,88,0.110,0.0,1.0 +2005,9,9,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,22.2,79,101500,0,0,398,0,0,0,0,0,0,0,60,3.1,2,2,16.0,77777,9,999999999,359,0.0840,0,88,0.110,0.0,1.0 +2005,9,9,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,21.7,77,101500,0,0,401,0,0,0,0,0,0,0,80,4.1,3,3,16.0,77777,9,999999999,370,0.0840,0,88,0.110,0.0,1.0 +2005,9,9,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,21.7,77,101500,0,0,407,0,0,0,0,0,0,0,60,5.7,5,5,16.0,77777,9,999999999,379,0.0840,0,88,0.110,0.0,1.0 +2005,9,9,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,21.1,74,101500,0,0,400,0,0,0,0,0,0,0,70,4.6,3,3,16.0,77777,9,999999999,370,0.0840,0,88,0.110,0.0,1.0 +2005,9,10,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,21.7,79,101500,0,0,428,0,0,0,0,0,0,0,50,2.1,9,9,16.0,13350,9,999999999,370,0.0830,0,88,0.110,0.0,1.0 +2005,9,10,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,21.7,79,101400,0,0,405,0,0,0,0,0,0,0,60,4.6,5,5,16.0,77777,9,999999999,359,0.0830,0,88,0.110,0.0,1.0 +2005,9,10,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,21.7,79,101400,0,0,405,0,0,0,0,0,0,0,50,4.1,5,5,16.0,77777,9,999999999,370,0.0830,0,88,0.110,0.0,1.0 +2005,9,10,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,21.7,82,101400,0,0,401,0,0,0,0,0,0,0,50,2.1,5,5,16.0,77777,9,999999999,370,0.0830,0,88,0.110,0.0,1.0 +2005,9,10,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,22.8,94,101400,0,0,432,0,0,0,0,0,0,0,30,2.6,10,10,4.0,7559,9,999999999,379,0.0830,0,88,0.110,0.0,1.0 +2005,9,10,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,22.2,88,101500,0,0,422,0,0,0,0,0,0,0,20,2.6,9,9,16.0,19446,9,999999999,379,0.0830,0,88,0.110,0.0,1.0 +2005,9,10,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,22.8,94,101600,72,932,420,4,0,4,500,0,500,170,0,0.0,9,9,16.0,20056,9,999999999,370,0.0830,0,88,0.110,0.0,1.0 +2005,9,10,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,22.2,79,101600,372,1348,416,125,94,99,13700,8400,11400,2190,60,5.2,7,7,16.0,2438,9,999999999,370,0.0830,0,88,0.110,0.0,1.0 +2005,9,10,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,22.2,74,101600,671,1348,438,380,376,192,40800,39000,21300,4280,60,4.6,9,9,16.0,2743,9,999999999,359,0.0830,0,88,0.110,0.0,1.0 +2005,9,10,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,29.4,21.7,63,101700,928,1348,426,415,158,306,45500,16700,34000,9130,60,7.7,5,5,16.0,77777,9,999999999,350,0.0830,0,88,0.110,0.0,1.0 +2005,9,10,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.0,21.1,59,101700,1125,1348,428,569,237,370,62000,25700,40500,14460,60,6.7,5,5,16.0,77777,9,999999999,340,0.0830,0,88,0.110,0.0,1.0 +2005,9,10,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.6,20.6,55,101600,1247,1348,431,735,400,363,78600,41800,39800,22960,50,7.2,5,5,16.0,77777,9,999999999,340,0.0830,0,88,0.110,0.0,1.0 +2005,9,10,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,31.1,20.6,54,101500,1287,1348,427,655,246,419,72100,26800,46500,28910,60,8.8,3,3,16.0,77777,9,999999999,350,0.0830,0,88,0.110,0.0,1.0 +2005,9,10,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,31.1,20.6,54,101500,1243,1348,423,759,423,367,81000,44200,40100,22750,50,8.8,2,2,16.0,77777,9,999999999,350,0.0830,0,88,0.110,0.0,1.0 +2005,9,10,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.6,20.0,53,101500,1116,1348,423,685,452,310,73200,47200,34100,12370,40,8.8,3,3,16.0,77777,9,999999999,350,0.0830,0,88,0.110,0.0,1.0 +2005,9,10,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.0,20.6,57,101500,916,1348,417,532,392,265,57900,42200,29200,7250,60,9.3,2,2,16.0,77777,9,999999999,350,0.0830,0,88,0.110,0.0,1.0 +2005,9,10,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,29.4,20.6,59,101500,656,1348,418,370,372,189,39800,38400,21000,4190,50,8.8,3,3,16.0,77777,9,999999999,350,0.0830,0,88,0.110,0.0,1.0 +2005,9,10,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,20.6,63,101500,355,1348,408,195,281,121,20300,24000,14000,2490,60,8.2,2,2,16.0,77777,9,999999999,350,0.0830,0,88,0.110,0.0,1.0 +2005,9,10,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,21.7,74,101600,61,842,404,5,72,3,900,4500,600,120,60,6.7,3,3,16.0,77777,9,999999999,340,0.0830,0,88,0.110,0.0,1.0 +2005,9,10,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,21.7,74,101600,0,0,400,0,0,0,0,0,0,0,60,6.7,2,2,16.0,77777,9,999999999,340,0.0830,0,88,0.110,0.0,1.0 +2005,9,10,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,21.1,71,101700,0,0,403,0,0,0,0,0,0,0,60,7.2,3,3,16.0,77777,9,999999999,340,0.0830,0,88,0.110,0.0,1.0 +2005,9,10,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,21.7,74,101700,0,0,411,0,0,0,0,0,0,0,60,8.2,5,5,16.0,77777,9,999999999,340,0.0830,0,88,0.110,0.0,1.0 +2005,9,10,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,20.6,72,101700,0,0,400,0,0,0,0,0,0,0,60,6.7,3,3,16.0,77777,9,999999999,329,0.0830,0,88,0.110,0.0,1.0 +2005,9,10,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,20.6,72,101700,0,0,396,0,0,0,0,0,0,0,60,7.2,2,2,16.0,77777,9,999999999,340,0.0830,0,88,0.110,0.0,1.0 +2005,9,11,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,20.0,71,101700,0,0,402,0,0,0,0,0,0,0,60,5.2,10,5,16.0,77777,9,999999999,350,0.0820,0,88,0.110,0.0,1.0 +2005,9,11,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,20.0,69,101600,0,0,405,0,0,0,0,0,0,0,60,5.7,10,5,16.0,77777,9,999999999,350,0.0820,0,88,0.110,0.0,1.0 +2005,9,11,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,20.0,74,101600,0,0,423,0,0,0,0,0,0,0,40,5.2,10,9,16.0,13960,9,999999999,350,0.0820,0,88,0.110,0.0,1.0 +2005,9,11,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,20.6,74,101500,0,0,427,0,0,0,0,0,0,0,50,4.6,10,9,16.0,13045,9,999999999,340,0.0820,0,88,0.110,0.0,1.0 +2005,9,11,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,21.1,76,101600,0,0,404,0,0,0,0,0,0,0,50,6.7,10,5,16.0,77777,9,999999999,340,0.0820,0,88,0.110,0.0,1.0 +2005,9,11,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,19.4,69,101600,0,0,396,0,0,0,0,0,0,0,60,6.2,8,3,16.0,77777,9,999999999,340,0.0820,0,88,0.110,0.0,1.0 +2005,9,11,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,19.4,69,101600,71,910,402,9,88,5,1400,5400,1000,130,80,3.1,10,5,16.0,77777,9,999999999,340,0.0820,0,88,0.110,0.0,1.0 +2005,9,11,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,20.6,69,101700,371,1348,409,184,422,68,19000,36200,9000,1260,90,4.6,10,5,16.0,77777,9,999999999,340,0.0820,0,88,0.110,0.0,1.0 +2005,9,11,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,20.0,61,101700,670,1348,407,389,496,142,41800,49800,17000,2940,60,6.2,7,2,16.0,77777,9,999999999,340,0.0820,0,88,0.110,0.0,1.0 +2005,9,11,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.9,19.4,57,101700,927,1348,420,546,427,251,57900,44200,27400,6900,60,7.2,10,5,16.0,77777,9,999999999,329,0.0820,0,88,0.110,0.0,1.0 +2005,9,11,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.9,20.0,59,101700,1123,1348,420,703,528,262,76500,55200,30300,10550,50,6.2,10,5,16.0,77777,9,999999999,329,0.0820,0,88,0.110,0.0,1.0 +2005,9,11,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.9,20.0,59,101700,1246,1348,445,875,615,305,91700,61900,34300,18320,60,9.8,10,9,16.0,1463,9,999999999,329,0.0820,0,88,0.110,0.0,1.0 +2005,9,11,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.0,20.0,55,101600,1285,1348,452,558,150,415,61900,16000,46600,25950,70,7.7,10,9,16.0,1463,9,999999999,329,0.0820,0,88,0.110,0.0,1.0 +2005,9,11,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.0,20.0,55,101500,1240,1348,442,892,659,284,93900,66600,32500,16720,60,6.2,10,8,16.0,1311,9,999999999,320,0.0820,0,88,0.110,0.0,1.0 +2005,9,11,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.0,19.4,53,101500,1113,1348,415,832,849,130,85600,84900,15300,3870,60,5.7,7,2,16.0,77777,9,999999999,320,0.0820,0,88,0.110,0.0,1.0 +2005,9,11,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,29.4,20.0,57,101500,912,1348,423,591,566,206,63700,58700,23900,5460,50,7.2,10,5,16.0,77777,9,999999999,320,0.0820,0,88,0.110,0.0,1.0 +2005,9,11,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,20.0,61,101500,652,1348,407,389,478,157,41200,47600,18100,3250,50,6.7,7,2,16.0,77777,9,999999999,320,0.0820,0,88,0.110,0.0,1.0 +2005,9,11,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,20.0,63,101600,350,1348,408,215,476,91,22300,39900,11900,1690,60,8.2,8,3,16.0,77777,9,999999999,320,0.0820,0,88,0.110,0.0,1.0 +2005,9,11,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,20.0,67,101700,58,820,398,5,114,2,1200,7000,600,80,50,5.7,7,2,16.0,77777,9,999999999,320,0.0820,0,88,0.110,0.0,1.0 +2005,9,11,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,19.4,67,101700,0,0,398,0,0,0,0,0,0,0,60,8.8,8,3,16.0,77777,9,999999999,329,0.0820,0,88,0.110,0.0,1.0 +2005,9,11,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,20.0,67,101800,0,0,398,0,0,0,0,0,0,0,60,6.7,7,2,16.0,77777,9,999999999,329,0.0820,0,88,0.110,0.0,1.0 +2005,9,11,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,20.6,72,101800,0,0,430,0,0,0,0,0,0,0,50,7.7,10,9,16.0,17008,9,999999999,340,0.0820,0,88,0.110,0.0,1.0 +2005,9,11,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,21.1,79,101800,0,0,424,0,0,0,0,0,0,0,60,7.2,10,9,16.0,17008,9,999999999,350,0.0820,0,88,0.110,0.0,1.0 +2005,9,11,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,20.6,74,101800,0,0,403,0,0,0,0,0,0,0,70,6.2,10,5,16.0,77777,9,999999999,350,0.0820,0,88,0.110,0.0,1.0 +2005,9,12,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,20.6,74,101800,0,0,403,0,0,0,0,0,0,0,60,7.2,5,5,16.0,77777,9,999999999,350,0.0820,0,88,0.110,0.0,1.0 +2005,9,12,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,20.0,71,101700,0,0,402,0,0,0,0,0,0,0,50,5.7,5,5,16.0,77777,9,999999999,350,0.0820,0,88,0.110,0.0,1.0 +2005,9,12,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,20.6,77,101700,0,0,394,0,0,0,0,0,0,0,70,6.7,3,3,16.0,77777,9,999999999,350,0.0820,0,88,0.110,0.0,1.0 +2005,9,12,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,19.4,71,101700,0,0,389,0,0,0,0,0,0,0,60,6.2,2,2,16.0,77777,9,999999999,359,0.0820,0,88,0.110,0.0,1.0 +2005,9,12,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,19.4,71,101600,0,0,392,0,0,0,0,0,0,0,50,8.2,3,3,16.0,77777,9,999999999,370,0.0820,0,88,0.110,0.0,1.0 +2005,9,12,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,19.4,71,101700,0,0,389,0,0,0,0,0,0,0,60,6.2,2,2,16.0,77777,9,999999999,370,0.0820,0,88,0.110,0.0,1.0 +2005,9,12,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,20.0,71,101700,70,911,396,11,109,7,1800,6600,1200,180,60,6.7,3,3,16.0,77777,9,999999999,370,0.0820,0,88,0.110,0.0,1.0 +2005,9,12,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,20.0,69,101700,370,1349,395,140,151,98,15300,13400,11600,2170,60,5.2,2,2,16.0,77777,9,999999999,370,0.0820,0,88,0.110,0.0,1.0 +2005,9,12,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,20.0,63,101800,669,1349,414,337,279,198,36100,28900,21700,4440,50,7.2,5,5,16.0,77777,9,999999999,370,0.0820,0,88,0.110,0.0,1.0 +2005,9,12,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.9,19.4,57,101800,926,1349,420,583,574,188,61100,57900,21300,5040,70,6.7,5,5,16.0,77777,9,999999999,359,0.0820,0,88,0.110,0.0,1.0 +2005,9,12,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.9,20.0,59,101700,1122,1349,420,747,617,233,78900,62600,26700,9180,60,8.8,5,5,16.0,77777,9,999999999,359,0.0820,0,88,0.110,0.0,1.0 +2005,9,12,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.0,20.0,55,101700,1244,1349,427,863,693,222,92500,71000,26900,13480,60,6.2,5,5,16.0,77777,9,999999999,350,0.0820,0,88,0.110,0.0,1.0 +2005,9,12,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.6,19.4,51,101600,1283,1349,429,825,571,281,87400,57900,32100,20770,70,7.2,5,5,16.0,77777,9,999999999,350,0.0820,0,88,0.110,0.0,1.0 +2005,9,12,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.6,18.3,48,101500,1238,1349,428,804,563,286,84600,56900,32200,16590,80,7.7,5,5,16.0,77777,9,999999999,350,0.0820,0,88,0.110,0.0,1.0 +2005,9,12,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.0,18.9,51,101500,1110,1349,419,740,605,241,77800,61200,27300,9150,50,6.7,3,3,16.0,77777,9,999999999,350,0.0820,0,88,0.110,0.0,1.0 +2005,9,12,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,29.4,18.9,53,101500,908,1349,422,548,442,250,58000,45700,27200,6700,90,6.7,5,5,16.0,77777,9,999999999,350,0.0820,0,88,0.110,0.0,1.0 +2005,9,12,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,19.4,59,101500,648,1349,416,416,590,132,43100,57400,15400,2680,40,6.7,5,5,16.0,77777,9,999999999,359,0.0820,0,88,0.110,0.0,1.0 +2005,9,12,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,19.4,62,101500,345,1349,410,204,379,107,20800,31500,12700,2040,50,6.7,5,5,16.0,77777,9,999999999,359,0.0820,0,88,0.110,0.0,1.0 +2005,9,12,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,20.6,72,101600,55,821,430,4,85,2,900,5200,500,80,40,5.7,9,9,16.0,15484,9,999999999,350,0.0820,0,88,0.110,0.0,1.0 +2005,9,12,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,19.4,67,101600,0,0,394,0,0,0,0,0,0,0,40,5.2,2,2,16.0,77777,9,999999999,350,0.0820,0,88,0.110,0.0,1.0 +2005,9,12,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,21.7,79,101700,0,0,398,0,0,0,0,0,0,0,60,7.2,3,3,16.0,77777,9,999999999,350,0.0820,0,88,0.110,0.0,1.0 +2005,9,12,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,20.6,74,101700,0,0,427,0,0,0,0,0,0,0,70,5.7,9,9,16.0,10302,9,999999999,350,0.0820,0,88,0.110,0.0,1.0 +2005,9,12,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,21.1,76,101700,0,0,404,0,0,0,0,0,0,0,60,6.2,5,5,16.0,77777,9,999999999,350,0.0820,0,88,0.110,0.0,1.0 +2005,9,12,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,20.0,71,101700,0,0,426,0,0,0,0,0,0,0,60,5.7,9,9,16.0,1372,9,999999999,350,0.0820,0,88,0.110,0.0,1.0 +2005,9,13,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,21.1,76,101600,0,0,428,0,0,0,0,0,0,0,60,5.2,9,9,16.0,14569,9,999999999,350,0.0810,0,88,0.110,0.0,1.0 +2005,9,13,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,20.0,71,101600,0,0,396,0,0,0,0,0,0,0,70,6.7,3,3,16.0,77777,9,999999999,350,0.0810,0,88,0.110,0.0,1.0 +2005,9,13,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,20.0,71,101500,0,0,392,0,0,0,0,0,0,0,60,6.2,2,2,16.0,77777,9,999999999,359,0.0810,0,88,0.110,0.0,1.0 +2005,9,13,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,20.0,74,101500,0,0,399,0,0,0,0,0,0,0,60,5.7,5,5,16.0,77777,9,999999999,370,0.0810,0,88,0.110,0.0,1.0 +2005,9,13,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,20.0,74,101500,0,0,389,0,0,0,0,0,0,0,70,6.7,2,2,16.0,77777,9,999999999,370,0.0810,0,88,0.110,0.0,1.0 +2005,9,13,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,20.0,74,101600,0,0,393,0,0,0,0,0,0,0,80,7.2,3,3,16.0,77777,9,999999999,370,0.0810,0,88,0.110,0.0,1.0 +2005,9,13,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,20.0,71,101600,69,911,392,9,86,5,1400,5200,1000,130,70,8.2,2,2,16.0,77777,9,999999999,370,0.0810,0,88,0.110,0.0,1.0 +2005,9,13,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,20.0,67,101600,369,1350,402,165,318,78,17500,27200,10000,1420,70,7.2,3,3,16.0,77777,9,999999999,370,0.0810,0,88,0.110,0.0,1.0 +2005,9,13,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,19.4,60,101700,668,1350,403,389,484,148,41500,48500,17500,3070,70,7.2,2,2,16.0,77777,9,999999999,370,0.0810,0,88,0.110,0.0,1.0 +2005,9,13,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,29.4,19.4,55,101700,925,1350,416,635,673,173,67000,68100,20200,4680,60,8.8,3,3,16.0,77777,9,999999999,370,0.0810,0,88,0.110,0.0,1.0 +2005,9,13,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.0,18.9,51,101700,1121,1350,415,697,516,268,75700,54000,30700,10700,70,9.3,2,2,16.0,77777,9,999999999,370,0.0810,0,88,0.110,0.0,1.0 +2005,9,13,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.6,20.0,53,101600,1243,1350,423,752,442,344,80800,46200,38200,21060,30,8.2,3,3,16.0,77777,9,999999999,370,0.0810,0,88,0.110,0.0,1.0 +2005,9,13,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.0,20.6,57,101600,1281,1350,453,583,174,417,64600,18600,46900,25400,70,7.7,9,9,16.0,17008,9,999999999,379,0.0810,0,88,0.110,0.0,1.0 +2005,9,13,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,29.4,21.1,61,101500,1235,1350,440,867,599,318,93900,62700,36400,18770,40,6.7,8,8,16.0,1829,9,999999999,379,0.0810,0,88,0.110,0.0,1.0 +2005,9,13,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,29.4,21.1,61,101500,1107,1350,450,674,403,342,71100,42000,36600,13360,60,7.2,9,9,16.0,15484,9,999999999,379,0.0810,0,88,0.110,0.0,1.0 +2005,9,13,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,29.4,21.1,61,101400,905,1350,418,664,760,154,70500,77100,18600,4100,50,6.7,3,3,16.0,77777,9,999999999,390,0.0810,0,88,0.110,0.0,1.0 +2005,9,13,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,21.1,65,101400,643,1350,419,400,486,168,42000,48300,19000,3490,70,7.2,5,5,16.0,77777,9,999999999,390,0.0810,0,88,0.110,0.0,1.0 +2005,9,13,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,21.1,67,101500,341,1350,416,193,281,122,20000,23500,14100,2530,70,7.2,5,5,16.0,77777,9,999999999,400,0.0810,0,88,0.110,0.0,1.0 +2005,9,13,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,21.7,74,101500,52,799,400,3,59,2,700,3600,400,80,70,7.2,2,2,16.0,77777,9,999999999,400,0.0810,0,88,0.110,0.0,1.0 +2005,9,13,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,21.7,77,101500,0,0,401,0,0,0,0,0,0,0,70,5.7,3,3,16.0,77777,9,999999999,400,0.0810,0,88,0.110,0.0,1.0 +2005,9,13,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,21.7,79,101600,0,0,405,0,0,0,0,0,0,0,70,6.2,5,5,16.0,77777,9,999999999,400,0.0810,0,88,0.110,0.0,1.0 +2005,9,13,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,21.7,77,101600,0,0,407,0,0,0,0,0,0,0,60,6.2,5,5,16.0,77777,9,999999999,400,0.0810,0,88,0.110,0.0,1.0 +2005,9,13,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,21.7,79,101600,0,0,394,0,0,0,0,0,0,0,70,6.2,2,2,16.0,77777,9,999999999,400,0.0810,0,88,0.110,0.0,1.0 +2005,9,13,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,21.7,79,101600,0,0,398,0,0,0,0,0,0,0,80,5.7,3,3,16.0,77777,9,999999999,400,0.0810,0,88,0.110,0.0,1.0 +2005,9,14,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,21.1,76,101500,0,0,398,0,0,0,0,0,0,0,80,6.7,3,3,16.0,77777,9,999999999,400,0.0810,0,88,0.110,0.0,1.0 +2005,9,14,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,21.1,76,101400,0,0,394,0,0,0,0,0,0,0,80,5.7,2,2,16.0,77777,9,999999999,400,0.0810,0,88,0.110,0.0,1.0 +2005,9,14,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,20.6,74,101400,0,0,381,0,0,0,0,0,0,0,60,3.1,0,0,16.0,77777,9,999999999,400,0.0810,0,88,0.110,0.0,1.0 +2005,9,14,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,21.1,76,101400,0,0,394,0,0,0,0,0,0,0,60,6.7,2,2,16.0,77777,9,999999999,390,0.0810,0,88,0.110,0.0,1.0 +2005,9,14,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,20.6,74,101400,0,0,397,0,0,0,0,0,0,0,50,5.2,3,3,16.0,77777,9,999999999,390,0.0810,0,88,0.110,0.0,1.0 +2005,9,14,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,21.1,76,101400,0,0,394,0,0,0,0,0,0,0,60,4.6,2,2,16.0,77777,9,999999999,390,0.0810,0,88,0.110,0.0,1.0 +2005,9,14,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,21.1,76,101500,69,912,404,10,130,5,1700,8200,1000,180,60,4.6,6,5,16.0,77777,9,999999999,390,0.0810,0,88,0.110,0.0,1.0 +2005,9,14,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,21.7,74,101500,368,1351,411,172,322,84,18100,27500,10600,1550,60,6.2,6,5,16.0,77777,9,999999999,390,0.0810,0,88,0.110,0.0,1.0 +2005,9,14,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,21.7,69,101600,667,1351,417,426,604,127,44400,59200,15100,2650,50,7.7,6,5,16.0,77777,9,999999999,390,0.0810,0,88,0.110,0.0,1.0 +2005,9,14,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.9,21.1,63,101600,924,1351,447,551,451,242,58700,46700,26700,6590,70,8.8,9,9,16.0,1524,9,999999999,390,0.0810,0,88,0.110,0.0,1.0 +2005,9,14,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.9,21.1,63,101600,1120,1351,422,653,379,337,71600,41200,37400,12810,80,9.8,6,5,16.0,77777,9,999999999,390,0.0810,0,88,0.110,0.0,1.0 +2005,9,14,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.0,21.7,61,101500,1241,1351,418,764,520,285,83700,54500,33500,17140,60,9.3,2,2,16.0,77777,9,999999999,390,0.0810,0,88,0.110,0.0,1.0 +2005,9,14,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.6,21.1,57,101500,1279,1351,425,789,487,327,85700,51000,37300,24060,50,6.7,3,3,16.0,77777,9,999999999,400,0.0810,0,88,0.110,0.0,1.0 +2005,9,14,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.0,21.7,61,101400,1232,1351,429,849,654,251,90100,66500,29300,14270,60,7.2,6,5,16.0,77777,9,999999999,400,0.0810,0,88,0.110,0.0,1.0 +2005,9,14,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.6,21.7,59,101400,1103,1351,432,808,831,127,83100,83100,15000,3710,70,9.3,6,5,16.0,77777,9,999999999,400,0.0810,0,88,0.110,0.0,1.0 +2005,9,14,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.0,21.7,61,101300,901,1351,429,651,773,134,67600,77100,16000,3220,70,7.2,6,5,16.0,77777,9,999999999,400,0.0810,0,88,0.110,0.0,1.0 +2005,9,14,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,21.7,67,101300,639,1351,444,393,447,181,40900,44300,19900,3790,70,7.7,9,9,16.0,15484,9,999999999,400,0.0810,0,88,0.110,0.0,1.0 +2005,9,14,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,21.7,69,101400,336,1351,441,132,52,119,14400,4600,13300,2860,60,5.7,9,9,16.0,2134,9,999999999,390,0.0810,0,88,0.110,0.0,1.0 +2005,9,14,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,22.2,76,101400,49,777,435,1,10,1,200,500,200,20,60,5.2,9,9,16.0,930,9,999999999,390,0.0810,0,88,0.110,0.0,1.0 +2005,9,14,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,22.2,82,101500,0,0,414,0,0,0,0,0,0,0,90,3.6,7,7,16.0,1494,9,999999999,379,0.0810,0,88,0.110,0.0,1.0 +2005,9,14,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,22.2,79,101600,0,0,432,0,0,0,0,0,0,0,50,4.6,9,9,16.0,14874,9,999999999,390,0.0810,0,88,0.110,0.0,1.0 +2005,9,14,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,22.8,85,101600,0,0,430,0,0,0,0,0,0,0,40,4.1,9,9,16.0,14265,9,999999999,390,0.0810,0,88,0.110,0.0,1.0 +2005,9,14,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,22.2,88,101600,0,0,393,0,0,0,0,0,0,0,0,0.0,3,3,16.0,77777,9,999999999,400,0.0810,0,88,0.110,0.0,1.0 +2005,9,14,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,22.8,91,101700,0,0,423,0,0,0,0,0,0,0,80,4.1,9,9,6.4,10912,9,999999999,409,0.0810,0,88,0.110,1.0,1.0 +2005,9,15,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,21.7,88,101500,0,0,419,0,0,0,0,0,0,0,80,3.1,10,9,16.0,15484,9,999999999,430,0.0800,0,88,0.110,0.0,1.0 +2005,9,15,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,20.6,82,101500,0,0,409,0,0,0,0,0,0,0,40,4.1,9,8,16.0,2134,9,999999999,450,0.0800,0,88,0.110,0.0,1.0 +2005,9,15,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,21.1,82,101500,0,0,375,0,0,0,0,0,0,0,60,4.1,0,0,16.0,77777,9,999999999,430,0.0800,0,88,0.110,0.0,1.0 +2005,9,15,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,21.7,82,101400,0,0,395,0,0,0,0,0,0,0,60,6.2,6,3,16.0,77777,9,999999999,419,0.0800,0,88,0.110,0.0,1.0 +2005,9,15,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,21.7,79,101400,0,0,394,0,0,0,0,0,0,0,50,5.2,6,2,16.0,77777,9,999999999,409,0.0800,0,88,0.110,0.0,1.0 +2005,9,15,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,21.7,79,101500,0,0,398,0,0,0,0,0,0,0,40,6.7,6,3,16.0,77777,9,999999999,400,0.0800,0,88,0.110,0.0,1.0 +2005,9,15,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,21.7,79,101500,68,890,394,9,110,5,1600,6700,1100,130,70,5.7,6,2,16.0,77777,9,999999999,400,0.0800,0,88,0.110,0.0,1.0 +2005,9,15,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,22.2,76,101600,367,1351,405,187,468,59,19400,40300,8400,1110,70,6.7,6,3,16.0,77777,9,999999999,400,0.0800,0,88,0.110,0.0,1.0 +2005,9,15,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,22.2,72,101600,666,1351,417,393,535,128,40800,52400,14900,2660,80,6.2,9,5,16.0,77777,9,999999999,400,0.0800,0,88,0.110,0.0,1.0 +2005,9,15,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,29.4,21.1,61,101700,923,1351,425,567,527,206,61300,54700,23900,5520,80,6.7,9,5,16.0,77777,9,999999999,400,0.0800,0,88,0.110,0.0,1.0 +2005,9,15,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.9,22.2,67,101700,1118,1351,448,686,480,288,73900,50100,32300,11430,80,7.2,10,9,16.0,13960,9,999999999,400,0.0800,0,88,0.110,0.0,1.0 +2005,9,15,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.6,21.7,59,101600,1239,1351,432,869,651,271,91800,66000,31200,15740,80,6.7,9,5,16.0,77777,9,999999999,419,0.0800,0,88,0.110,0.0,1.0 +2005,9,15,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.0,22.2,63,101600,1277,1351,430,929,775,194,97400,77900,23500,12810,60,8.8,9,5,16.0,77777,9,999999999,430,0.0800,0,88,0.110,0.0,1.0 +2005,9,15,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.9,21.7,65,101500,1230,1351,416,836,635,256,88500,64500,29600,14320,60,8.2,6,3,16.0,77777,9,999999999,450,0.0800,0,88,0.110,0.0,1.0 +2005,9,15,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,29.4,20.6,59,101500,1100,1351,424,688,465,309,73400,48500,33800,11760,70,8.2,9,5,16.0,77777,9,999999999,440,0.0800,0,88,0.110,0.0,1.0 +2005,9,15,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,22.8,82,101500,897,1351,433,645,723,163,67900,73100,19300,4250,60,8.2,10,9,9.6,1067,9,999999999,430,0.0800,0,88,0.110,0.0,1.0 +2005,9,15,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,22.8,82,101500,634,1351,433,386,441,179,40300,43600,19700,3730,70,8.2,10,9,14.4,1829,9,999999999,419,0.0800,0,88,0.110,0.0,1.0 +2005,9,15,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,21.7,74,101500,331,1351,435,186,296,113,19300,24500,13300,2310,60,9.3,10,9,16.0,1829,9,999999999,419,0.0800,0,88,0.110,0.0,1.0 +2005,9,15,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,21.7,77,101600,46,755,431,1,53,1,500,3200,300,40,50,6.7,10,9,16.0,18532,9,999999999,419,0.0800,0,88,0.110,0.0,1.0 +2005,9,15,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,21.7,79,101700,0,0,419,0,0,0,0,0,0,0,80,5.2,9,8,16.0,1067,9,999999999,419,0.0800,0,88,0.110,0.0,1.0 +2005,9,15,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,21.1,76,101700,0,0,428,0,0,0,0,0,0,0,60,7.2,10,9,16.0,15484,9,999999999,419,0.0800,0,88,0.110,0.0,1.0 +2005,9,15,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,21.1,76,101700,0,0,404,0,0,0,0,0,0,0,60,8.2,9,5,16.0,77777,9,999999999,430,0.0800,0,88,0.110,0.0,1.0 +2005,9,15,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,21.7,79,101700,0,0,405,0,0,0,0,0,0,0,60,5.7,9,5,16.0,77777,9,999999999,430,0.0800,0,88,0.110,0.0,1.0 +2005,9,15,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,21.7,79,101700,0,0,405,0,0,0,0,0,0,0,50,7.7,9,5,16.0,77777,9,999999999,450,0.0800,0,88,0.110,0.0,1.0 +2005,9,16,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,21.7,79,101700,0,0,398,0,0,0,0,0,0,0,60,6.7,3,3,16.0,77777,9,999999999,459,0.0800,0,88,0.110,0.0,1.0 +2005,9,16,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,21.1,76,101600,0,0,394,0,0,0,0,0,0,0,70,6.2,2,2,16.0,77777,9,999999999,469,0.0800,0,88,0.110,0.0,1.0 +2005,9,16,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,21.1,76,101600,0,0,398,0,0,0,0,0,0,0,50,7.2,3,3,16.0,77777,9,999999999,459,0.0800,0,88,0.110,0.0,1.0 +2005,9,16,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,21.7,82,101600,0,0,401,0,0,0,0,0,0,0,50,6.2,5,5,16.0,77777,9,999999999,450,0.0800,0,88,0.110,0.0,1.0 +2005,9,16,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.0,22.0,94,101700,0,0,426,0,0,0,0,0,0,0,30,3.6,10,10,16.1,1230,9,999999999,440,0.0800,0,88,0.110,0.0,1.0 +2005,9,16,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,21.7,82,101700,0,0,437,0,0,0,0,0,0,0,70,4.1,10,10,16.0,2743,9,999999999,440,0.0800,0,88,0.110,0.0,1.0 +2005,9,16,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,21.7,82,101700,67,890,425,7,69,5,1200,3700,900,100,60,3.6,9,9,16.0,12436,9,999999999,430,0.0800,0,88,0.110,0.0,1.0 +2005,9,16,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,21.7,79,101800,366,1352,413,157,229,95,16700,19800,11300,1840,70,8.8,7,7,16.0,1524,9,999999999,430,0.0800,0,88,0.110,0.0,1.0 +2005,9,16,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,21.7,74,101800,665,1352,411,161,17,153,18700,1300,18100,6500,80,7.7,5,5,16.0,77777,9,999999999,430,0.0800,0,88,0.110,0.0,1.0 +2005,9,16,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,21.7,72,101900,922,1352,438,184,6,180,22000,500,21700,8610,70,7.7,9,9,16.0,13350,9,999999999,430,0.0800,0,88,0.110,0.0,1.0 +2005,9,16,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,22.2,74,101900,1117,1352,438,463,113,370,51100,12000,41100,14110,50,7.7,9,9,16.0,1158,9,999999999,440,0.0800,0,88,0.110,0.0,1.0 +2005,9,16,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,21.1,69,101900,1237,1352,437,216,6,210,26600,500,26200,10590,70,7.7,9,9,16.0,15484,9,999999999,440,0.0800,0,88,0.110,0.0,1.0 +2005,9,16,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,21.7,72,101800,1275,1352,438,267,6,262,32700,500,32200,12790,50,8.2,9,9,16.0,18532,9,999999999,450,0.0800,0,88,0.110,0.0,1.0 +2005,9,16,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,21.7,72,101700,1227,1352,413,241,0,241,29400,0,29400,11860,60,8.2,5,5,16.0,77777,9,999999999,459,0.0800,0,88,0.110,0.0,1.0 +2005,9,16,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.9,21.7,65,101700,1097,1352,448,328,18,313,38500,1600,37200,14140,60,7.2,9,9,16.0,2438,9,999999999,450,0.0800,0,88,0.110,0.0,1.0 +2005,9,16,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,21.7,74,101700,893,1352,435,399,119,321,44000,12200,35900,10730,70,7.2,9,9,16.0,18532,9,999999999,440,0.0800,0,88,0.110,0.0,1.0 +2005,9,16,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,21.1,67,101700,630,1352,416,224,40,206,24700,4000,22800,5950,60,7.7,5,5,16.0,77777,9,999999999,440,0.0800,0,88,0.110,0.0,1.0 +2005,9,16,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,21.1,71,101700,326,1352,410,52,0,52,6100,0,6100,2060,70,8.2,5,5,16.0,77777,9,999999999,430,0.0800,0,88,0.110,0.0,1.0 +2005,9,16,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,20.6,72,101800,43,732,430,0,0,0,0,0,0,0,70,8.2,9,9,16.0,18532,9,999999999,430,0.0800,0,88,0.110,0.0,1.0 +2005,9,16,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,20.6,72,101800,0,0,414,0,0,0,0,0,0,0,60,6.7,7,7,16.0,20056,9,999999999,430,0.0800,0,88,0.110,0.0,1.0 +2005,9,16,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,21.7,77,101900,0,0,431,0,0,0,0,0,0,0,60,6.2,9,9,16.0,18532,9,999999999,419,0.0800,0,88,0.110,0.0,1.0 +2005,9,16,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,20.6,74,101900,0,0,439,0,0,0,0,0,0,0,60,5.7,10,10,16.0,13350,9,999999999,409,0.0800,0,88,0.110,0.0,1.0 +2005,9,16,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,20.6,74,101900,0,0,427,0,0,0,0,0,0,0,70,6.7,9,9,16.0,2134,9,999999999,400,0.0800,0,88,0.110,0.0,1.0 +2005,9,16,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,19.4,69,101900,0,0,392,0,0,0,0,0,0,0,60,7.2,2,2,16.0,77777,9,999999999,400,0.0800,0,88,0.110,0.0,1.0 +2005,9,17,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,19.4,71,101900,0,0,389,0,0,0,0,0,0,0,30,4.1,2,2,16.0,77777,9,999999999,409,0.0790,0,88,0.110,0.0,1.0 +2005,9,17,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,20.6,77,101800,0,0,415,0,0,0,0,0,0,0,40,3.6,8,8,16.0,11521,9,999999999,409,0.0790,0,88,0.110,0.0,1.0 +2005,9,17,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,20.0,76,101800,0,0,386,0,0,0,0,0,0,0,50,5.2,2,2,16.0,77777,9,999999999,409,0.0790,0,88,0.110,0.0,1.0 +2005,9,17,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,19.4,74,101700,0,0,389,0,0,0,0,0,0,0,60,4.6,3,3,16.0,77777,9,999999999,409,0.0790,0,88,0.110,0.0,1.0 +2005,9,17,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,18.9,71,101700,0,0,385,0,0,0,0,0,0,0,120,1.5,2,2,16.0,77777,9,999999999,409,0.0790,0,88,0.110,0.0,1.0 +2005,9,17,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,20.0,74,101700,0,0,393,0,0,0,0,0,0,0,80,6.7,3,3,16.0,77777,9,999999999,400,0.0790,0,88,0.110,0.0,1.0 +2005,9,17,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,20.0,74,101800,66,891,399,6,48,5,1000,2600,800,100,50,5.2,5,5,16.0,77777,9,999999999,390,0.0790,0,88,0.110,0.0,1.0 +2005,9,17,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,19.4,67,101800,364,1353,398,171,369,72,18300,31500,9800,1300,70,5.2,3,3,16.0,77777,9,999999999,379,0.0790,0,88,0.110,0.0,1.0 +2005,9,17,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,18.9,58,101800,664,1353,403,374,427,164,39600,42700,18600,3430,60,5.7,2,2,16.0,77777,9,999999999,370,0.0790,0,88,0.110,0.0,1.0 +2005,9,17,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,18.9,57,101800,921,1353,409,646,767,122,67900,77000,15300,3140,70,8.8,3,3,16.0,77777,9,999999999,359,0.0790,0,88,0.110,0.0,1.0 +2005,9,17,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,29.4,18.3,51,101800,1115,1353,411,826,913,71,86500,91700,10600,2710,60,6.7,2,2,16.0,77777,9,999999999,359,0.0790,0,88,0.110,0.0,1.0 +2005,9,17,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,29.4,17.8,50,101800,1235,1353,414,928,908,96,96100,91200,12600,4820,40,8.2,3,3,16.0,77777,9,999999999,359,0.0790,0,88,0.110,0.0,1.0 +2005,9,17,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.0,18.3,50,101700,1273,1353,414,887,715,212,95600,73400,26300,14620,60,8.8,2,2,16.0,77777,9,999999999,370,0.0790,0,88,0.110,0.0,1.0 +2005,9,17,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.6,18.9,50,101600,1224,1353,422,856,720,203,92100,73900,25100,11200,60,7.7,3,3,16.0,77777,9,999999999,370,0.0790,0,88,0.110,0.0,1.0 +2005,9,17,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,29.4,18.3,51,101600,1093,1353,411,769,734,175,82600,75300,21600,6510,50,8.2,2,2,16.0,77777,9,999999999,370,0.0790,0,88,0.110,0.0,1.0 +2005,9,17,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.9,18.3,53,101600,889,1353,412,618,736,132,66000,75000,16500,3490,90,8.2,3,3,16.0,77777,9,999999999,370,0.0790,0,88,0.110,0.0,1.0 +2005,9,17,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,17.8,53,101600,625,1353,391,407,640,110,42500,62300,13600,2260,50,7.2,0,0,16.0,77777,9,999999999,370,0.0790,0,88,0.110,0.0,1.0 +2005,9,17,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,19.4,64,101600,321,1353,401,196,410,99,20000,33000,12100,1880,40,5.7,3,3,16.0,77777,9,999999999,370,0.0790,0,88,0.110,0.0,1.0 +2005,9,17,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,18.9,65,101600,41,710,394,1,62,0,0,0,0,0,80,5.2,2,2,16.0,77777,9,999999999,370,0.0790,0,88,0.110,0.0,1.0 +2005,9,17,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,18.9,67,101700,0,0,395,0,0,0,0,0,0,0,60,4.6,3,3,16.0,77777,9,999999999,359,0.0790,0,88,0.110,0.0,1.0 +2005,9,17,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,18.9,67,101800,0,0,401,0,0,0,0,0,0,0,80,4.6,5,5,16.0,77777,9,999999999,359,0.0790,0,88,0.110,0.0,1.0 +2005,9,17,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,18.9,69,101800,0,0,392,0,0,0,0,0,0,0,80,5.2,3,3,16.0,77777,9,999999999,359,0.0790,0,88,0.110,0.0,1.0 +2005,9,17,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,19.4,71,101800,0,0,398,0,0,0,0,0,0,0,50,4.1,5,5,16.0,77777,9,999999999,350,0.0790,0,88,0.110,0.0,1.0 +2005,9,17,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,19.4,71,101700,0,0,392,0,0,0,0,0,0,0,60,2.6,3,3,16.0,77777,9,999999999,350,0.0790,0,88,0.110,0.0,1.0 +2005,9,18,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,18.3,66,101700,0,0,375,0,0,0,0,0,0,0,80,4.6,1,0,16.0,77777,9,999999999,350,0.0780,0,88,0.110,0.0,1.0 +2005,9,18,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,18.9,71,101600,0,0,372,0,0,0,0,0,0,0,50,3.1,1,0,16.0,77777,9,999999999,350,0.0780,0,88,0.110,0.0,1.0 +2005,9,18,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,19.4,76,101600,0,0,393,0,0,0,0,0,0,0,20,1.5,10,5,16.0,77777,9,999999999,350,0.0780,0,88,0.110,0.0,1.0 +2005,9,18,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,19.4,76,101500,0,0,383,0,0,0,0,0,0,0,70,2.1,7,2,16.0,77777,9,999999999,340,0.0780,0,88,0.110,0.0,1.0 +2005,9,18,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,18.9,74,101500,0,0,386,0,0,0,0,0,0,0,0,0.0,8,3,16.0,77777,9,999999999,340,0.0780,0,88,0.110,0.0,1.0 +2005,9,18,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,18.9,76,101600,0,0,379,0,0,0,0,0,0,0,0,0.0,7,2,16.0,77777,9,999999999,329,0.0780,0,88,0.110,0.0,1.0 +2005,9,18,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,19.4,81,101600,65,891,381,6,47,4,900,2500,700,80,0,0.0,8,3,16.0,77777,9,999999999,320,0.0780,0,88,0.110,0.0,1.0 +2005,9,18,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,19.4,67,101600,363,1354,394,164,290,86,17200,24600,10500,1590,30,4.1,7,2,16.0,77777,9,999999999,300,0.0780,0,88,0.110,0.0,1.0 +2005,9,18,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,18.3,60,101700,663,1354,400,445,700,101,47000,69200,13100,2170,30,6.2,8,3,16.0,77777,9,999999999,300,0.0780,0,88,0.110,0.0,1.0 +2005,9,18,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,18.9,58,101700,919,1354,413,572,533,209,61700,55300,24100,5570,30,4.1,10,5,16.0,77777,9,999999999,300,0.0780,0,88,0.110,0.0,1.0 +2005,9,18,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.9,18.9,55,101600,1114,1354,413,731,599,237,77000,60700,26900,9030,20,5.7,8,3,16.0,77777,9,999999999,290,0.0780,0,88,0.110,0.0,1.0 +2005,9,18,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.0,18.3,50,101600,1234,1354,414,916,836,152,98100,84800,20600,8270,40,5.2,7,2,16.0,77777,9,999999999,290,0.0780,0,88,0.110,0.0,1.0 +2005,9,18,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.0,17.8,48,101500,1270,1354,417,936,770,212,100900,79100,26500,14380,50,8.2,8,3,16.0,77777,9,999999999,290,0.0780,0,88,0.110,0.0,1.0 +2005,9,18,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,29.4,16.7,46,101400,1221,1354,408,723,381,378,79600,41400,42100,18920,40,9.8,7,2,16.0,77777,9,999999999,290,0.0780,0,88,0.110,0.0,1.0 +2005,9,18,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.9,17.8,51,101300,1090,1354,411,703,557,254,76400,58200,29400,9280,30,7.7,8,3,16.0,77777,9,999999999,290,0.0780,0,88,0.110,0.0,1.0 +2005,9,18,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.9,18.3,53,101300,885,1354,408,582,656,152,61600,66400,18000,3930,30,9.3,7,2,16.0,77777,9,999999999,290,0.0780,0,88,0.110,0.0,1.0 +2005,9,18,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,17.8,55,101300,621,1354,388,391,509,157,41200,50200,18000,3210,40,9.3,1,0,16.0,77777,9,999999999,290,0.0780,0,88,0.110,0.0,1.0 +2005,9,18,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,18.9,62,101300,316,1354,384,165,181,123,17600,14900,14100,2680,40,7.2,1,0,16.0,77777,9,999999999,290,0.0780,0,88,0.110,0.0,1.0 +2005,9,18,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,18.3,64,101400,38,688,378,0,25,0,0,0,0,0,40,2.1,1,0,16.0,77777,9,999999999,279,0.0780,0,88,0.110,0.0,1.0 +2005,9,18,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,18.3,66,101400,0,0,375,0,0,0,0,0,0,0,30,2.1,1,0,16.0,77777,9,999999999,279,0.0780,0,88,0.110,0.0,1.0 +2005,9,18,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,18.3,66,101500,0,0,375,0,0,0,0,0,0,0,30,3.1,1,0,16.0,77777,9,999999999,270,0.0780,0,88,0.110,0.0,1.0 +2005,9,18,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,18.9,69,101500,0,0,388,0,0,0,0,0,0,0,20,2.1,7,2,16.0,77777,9,999999999,270,0.0780,0,88,0.110,0.0,1.0 +2005,9,18,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,18.9,71,101500,0,0,389,0,0,0,0,0,0,0,0,0.0,8,3,16.0,77777,9,999999999,270,0.0780,0,88,0.110,0.0,1.0 +2005,9,18,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,18.9,74,101500,0,0,382,0,0,0,0,0,0,0,30,2.6,7,2,16.0,77777,9,999999999,270,0.0780,0,88,0.110,0.0,1.0 +2005,9,19,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,18.9,74,101500,0,0,382,0,0,0,0,0,0,0,20,1.5,2,2,16.0,77777,9,999999999,270,0.0780,0,88,0.110,0.0,1.0 +2005,9,19,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,18.9,76,101400,0,0,367,0,0,0,0,0,0,0,320,2.1,0,0,16.0,77777,9,999999999,259,0.0780,0,88,0.110,0.0,1.0 +2005,9,19,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,18.9,79,101400,0,0,365,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,259,0.0780,0,88,0.110,0.0,1.0 +2005,9,19,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,19.4,81,101300,0,0,365,0,0,0,0,0,0,0,310,1.5,0,0,16.0,77777,9,999999999,259,0.0780,0,88,0.110,0.0,1.0 +2005,9,19,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,19.4,84,101400,0,0,374,0,0,0,0,0,0,0,330,2.6,2,2,16.0,77777,9,999999999,259,0.0780,0,88,0.110,0.0,1.0 +2005,9,19,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,19.4,84,101400,0,0,378,0,0,0,0,0,0,0,0,0.0,3,3,16.0,77777,9,999999999,270,0.0780,0,88,0.110,0.0,1.0 +2005,9,19,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,18.9,79,101400,64,869,377,8,96,5,1400,5800,1000,130,310,3.1,2,2,16.0,77777,9,999999999,270,0.0780,0,88,0.110,0.0,1.0 +2005,9,19,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,19.4,76,101500,362,1354,387,134,145,96,14700,12700,11300,2120,340,2.1,3,3,16.0,77777,9,999999999,270,0.0780,0,88,0.110,0.0,1.0 +2005,9,19,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,19.4,69,101500,662,1354,425,411,563,135,42500,54900,15700,2760,10,2.6,9,9,16.0,2134,9,999999999,270,0.0780,0,88,0.110,0.0,1.0 +2005,9,19,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,18.3,56,101500,918,1354,412,661,784,128,69100,78500,15800,3210,30,4.1,5,5,16.0,77777,9,999999999,279,0.0780,0,88,0.110,0.0,1.0 +2005,9,19,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,29.4,18.3,51,101500,1112,1354,421,586,302,337,64200,32800,37200,12540,90,3.6,5,5,16.0,77777,9,999999999,279,0.0780,0,88,0.110,0.0,1.0 +2005,9,19,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,29.4,17.2,48,101400,1232,1354,420,893,717,239,95000,73100,28400,13390,60,2.6,5,5,16.0,77777,9,999999999,279,0.0780,0,88,0.110,0.0,1.0 +2005,9,19,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.0,18.3,50,101400,1268,1354,450,699,343,378,77500,37400,42400,22660,30,7.2,9,9,16.0,2286,9,999999999,279,0.0780,0,88,0.110,0.0,1.0 +2005,9,19,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,29.4,18.3,51,101300,1218,1354,421,755,460,340,80900,48100,37600,18470,50,6.7,5,5,16.0,77777,9,999999999,279,0.0780,0,88,0.110,0.0,1.0 +2005,9,19,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,29.4,17.8,50,101200,1086,1354,410,583,263,371,63200,28500,40300,13310,40,7.2,2,2,16.0,77777,9,999999999,290,0.0780,0,88,0.110,0.0,1.0 +2005,9,19,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,17.2,51,101200,881,1354,407,641,750,153,67900,75900,18400,3920,30,7.2,3,3,16.0,77777,9,999999999,290,0.0780,0,88,0.110,0.0,1.0 +2005,9,19,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,18.9,58,101300,616,1354,437,419,576,156,44100,56800,18200,3180,30,7.7,9,9,16.0,2286,9,999999999,290,0.0780,0,88,0.110,0.0,1.0 +2005,9,19,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,17.8,56,101300,311,1354,402,171,275,107,17700,22000,12600,2180,350,5.2,3,3,16.0,77777,9,999999999,290,0.0780,0,88,0.110,0.0,1.0 +2005,9,19,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,18.9,67,101400,36,666,391,0,0,0,0,0,0,0,20,4.6,2,2,16.0,77777,9,999999999,290,0.0780,0,88,0.110,0.0,1.0 +2005,9,19,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,18.9,67,101500,0,0,401,0,0,0,0,0,0,0,10,3.1,5,5,16.0,77777,9,999999999,279,0.0780,0,88,0.110,0.0,1.0 +2005,9,19,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,20.6,72,101500,0,0,396,0,0,0,0,0,0,0,340,3.1,2,2,16.0,77777,9,999999999,290,0.0780,0,88,0.110,0.0,1.0 +2005,9,19,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,19.4,74,101500,0,0,389,0,0,0,0,0,0,0,350,2.6,3,3,16.0,77777,9,999999999,290,0.0780,0,88,0.110,0.0,1.0 +2005,9,19,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,18.9,71,101500,0,0,372,0,0,0,0,0,0,0,20,1.5,0,0,16.0,77777,9,999999999,290,0.0780,0,88,0.110,0.0,1.0 +2005,9,19,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,19.4,74,101500,0,0,389,0,0,0,0,0,0,0,0,0.0,3,3,16.0,77777,9,999999999,290,0.0780,0,88,0.110,0.0,1.0 +2005,9,20,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,19.4,81,101500,0,0,381,0,0,0,0,0,0,0,270,1.5,4,3,16.0,77777,9,999999999,290,0.0770,0,88,0.110,0.0,1.0 +2005,9,20,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,19.4,79,101400,0,0,380,0,0,0,0,0,0,0,300,1.5,4,2,16.0,77777,9,999999999,279,0.0770,0,88,0.110,0.0,1.0 +2005,9,20,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,19.4,79,101400,0,0,368,0,0,0,0,0,0,0,320,2.6,0,0,16.0,77777,9,999999999,290,0.0770,0,88,0.110,0.0,1.0 +2005,9,20,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,20.0,82,101400,0,0,380,0,0,0,0,0,0,0,330,2.6,4,2,16.0,77777,9,999999999,290,0.0770,0,88,0.110,0.0,1.0 +2005,9,20,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,20.0,82,101400,0,0,390,0,0,0,0,0,0,0,320,2.1,8,5,16.0,77777,9,999999999,290,0.0770,0,88,0.110,0.0,1.0 +2005,9,20,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,20.0,84,101400,0,0,378,0,0,0,0,0,0,0,0,0.0,4,2,16.0,77777,9,999999999,290,0.0770,0,88,0.110,0.0,1.0 +2005,9,20,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,20.6,85,101500,64,870,391,6,53,4,900,2800,700,80,20,1.5,8,5,16.0,77777,9,999999999,300,0.0770,0,88,0.110,0.0,1.0 +2005,9,20,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,20.6,79,101500,361,1355,397,105,52,91,11500,4600,10300,2410,30,2.6,7,5,16.0,77777,9,999999999,300,0.0770,0,88,0.110,0.0,1.0 +2005,9,20,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,19.4,62,101500,661,1355,435,435,626,129,45200,61100,15300,2660,30,3.6,9,9,16.0,2896,9,999999999,300,0.0770,0,88,0.110,0.0,1.0 +2005,9,20,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,18.9,57,101500,917,1355,416,635,790,99,68200,79900,14000,2690,50,3.6,7,5,16.0,77777,9,999999999,309,0.0770,0,88,0.110,0.0,1.0 +2005,9,20,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.9,19.4,57,101500,1111,1355,420,798,812,130,85500,82400,17700,4820,20,6.2,8,5,16.0,77777,9,999999999,320,0.0770,0,88,0.110,0.0,1.0 +2005,9,20,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.0,19.4,53,101400,1230,1355,426,893,729,230,95300,74500,27600,12780,30,7.2,7,5,16.0,77777,9,999999999,329,0.0770,0,88,0.110,0.0,1.0 +2005,9,20,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,20.0,61,101400,1265,1355,442,371,54,320,41100,5500,35900,17590,60,8.2,9,9,16.0,2286,9,999999999,329,0.0770,0,88,0.110,0.0,1.0 +2005,9,20,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,29.4,20.0,57,101300,1215,1355,423,851,593,317,91800,62000,36000,16920,30,8.2,7,5,16.0,77777,9,999999999,340,0.0770,0,88,0.110,0.0,1.0 +2005,9,20,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,29.4,18.9,53,101300,1082,1355,415,771,753,168,80100,75400,19700,5400,40,7.2,4,3,16.0,77777,9,999999999,340,0.0770,0,88,0.110,0.0,1.0 +2005,9,20,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.9,18.9,55,101300,877,1355,409,599,706,140,63600,71700,17100,3610,30,5.7,4,2,16.0,77777,9,999999999,340,0.0770,0,88,0.110,0.0,1.0 +2005,9,20,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.0,19.0,58,101300,612,1355,414,403,630,118,41800,60800,14300,2370,20,5.7,8,5,16.1,77777,9,999999999,340,0.0770,0,88,0.110,0.0,1.0 +2005,9,20,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,19.4,64,101300,306,1355,408,176,279,113,18200,22200,13200,2350,40,5.2,8,5,16.0,77777,9,999999999,329,0.0770,0,88,0.110,0.0,1.0 +2005,9,20,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,19.4,69,101400,34,644,402,0,0,0,0,0,0,0,40,3.6,8,5,16.0,77777,9,999999999,320,0.0770,0,88,0.110,0.0,1.0 +2005,9,20,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,20.0,74,101400,0,0,399,0,0,0,0,0,0,0,30,4.1,7,5,16.0,77777,9,999999999,309,0.0770,0,88,0.110,0.0,1.0 +2005,9,20,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,20.0,76,101500,0,0,396,0,0,0,0,0,0,0,20,3.6,7,5,16.0,77777,9,999999999,309,0.0770,0,88,0.110,0.0,1.0 +2005,9,20,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,20.0,74,101500,0,0,399,0,0,0,0,0,0,0,10,2.6,7,5,16.0,77777,9,999999999,309,0.0770,0,88,0.110,0.0,1.0 +2005,9,20,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,20.0,74,101500,0,0,423,0,0,0,0,0,0,0,30,4.1,9,9,16.0,1500,9,999999999,309,0.0770,0,88,0.110,0.0,1.0 +2005,9,20,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,20.0,76,101400,0,0,396,0,0,0,0,0,0,0,40,2.6,7,5,16.0,77777,9,999999999,320,0.0770,0,88,0.110,0.0,1.0 +2005,9,21,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,20.0,76,101400,0,0,396,0,0,0,0,0,0,0,50,3.1,10,5,16.0,77777,9,999999999,329,0.0770,0,88,0.110,0.0,1.0 +2005,9,21,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,19.4,76,101400,0,0,393,0,0,0,0,0,0,0,340,2.6,10,5,16.0,77777,9,999999999,340,0.0770,0,88,0.110,0.0,1.0 +2005,9,21,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,20.0,82,101300,0,0,380,0,0,0,0,0,0,0,0,0.0,7,2,16.0,77777,9,999999999,350,0.0770,0,88,0.110,0.0,1.0 +2005,9,21,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,20.0,82,101300,0,0,390,0,0,0,0,0,0,0,320,2.1,10,5,16.0,77777,9,999999999,359,0.0770,0,88,0.110,0.0,1.0 +2005,9,21,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,19.4,79,101300,0,0,380,0,0,0,0,0,0,0,340,2.1,7,2,16.0,77777,9,999999999,370,0.0770,0,88,0.110,0.0,1.0 +2005,9,21,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,19.4,79,101300,0,0,383,0,0,0,0,0,0,0,330,2.6,8,3,16.0,77777,9,999999999,350,0.0770,0,88,0.110,0.0,1.0 +2005,9,21,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,20.0,82,101300,63,870,380,8,156,3,1700,9700,900,120,330,3.1,7,2,16.0,77777,9,999999999,320,0.0770,0,88,0.110,0.0,1.0 +2005,9,21,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,20.0,71,101300,360,1356,396,188,533,47,19900,45900,7700,910,360,2.6,8,3,16.0,77777,9,999999999,300,0.0770,0,88,0.110,0.0,1.0 +2005,9,21,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,19.4,62,101300,660,1356,400,430,700,89,44800,68200,11500,1850,20,4.6,7,2,16.0,77777,9,999999999,290,0.0770,0,88,0.110,0.0,1.0 +2005,9,21,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,18.9,57,101300,915,1356,409,593,609,181,62200,61400,20700,4760,20,4.6,8,3,16.0,77777,9,999999999,290,0.0770,0,88,0.110,0.0,1.0 +2005,9,21,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.9,18.3,53,101300,1109,1356,408,709,563,247,74300,56800,27700,9200,60,5.2,7,2,16.0,77777,9,999999999,290,0.0770,0,88,0.110,0.0,1.0 +2005,9,21,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.0,18.3,50,101200,1227,1356,418,899,771,200,93500,77200,23400,9970,20,6.7,8,3,16.0,77777,9,999999999,290,0.0770,0,88,0.110,0.0,1.0 +2005,9,21,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.0,18.3,50,101200,1263,1356,414,730,343,410,80300,37300,45500,24030,30,5.2,7,2,16.0,77777,9,999999999,290,0.0770,0,88,0.110,0.0,1.0 +2005,9,21,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,31.1,18.9,48,101100,1212,1356,425,889,757,211,95300,77500,25800,10960,50,6.2,8,3,16.0,77777,9,999999999,290,0.0770,0,88,0.110,0.0,1.0 +2005,9,21,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.0,19.4,53,101000,1079,1356,426,792,869,98,82000,87000,12600,3070,30,6.2,10,5,16.0,77777,9,999999999,300,0.0770,0,88,0.110,0.0,1.0 +2005,9,21,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.9,20.0,59,101000,872,1356,445,636,694,188,66100,69400,21300,4620,40,4.6,10,9,16.0,2286,9,999999999,300,0.0770,0,88,0.110,0.0,1.0 +2005,9,21,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,20.6,69,101000,607,1356,433,264,146,199,28700,14700,22100,4790,40,4.1,10,9,16.0,2896,9,999999999,300,0.0770,0,88,0.110,0.0,1.0 +2005,9,21,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,20.6,69,101100,301,1356,409,162,179,122,17200,14400,14000,2650,50,5.2,10,5,16.0,77777,9,999999999,309,0.0770,0,88,0.110,0.0,1.0 +2005,9,21,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,20.6,72,101100,31,621,406,0,0,0,0,0,0,0,50,5.2,10,5,16.0,77777,9,999999999,320,0.0770,0,88,0.110,0.0,1.0 +2005,9,21,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,21.1,76,101200,0,0,419,0,0,0,0,0,0,0,40,4.1,10,8,16.0,2438,9,999999999,329,0.0770,0,88,0.110,0.0,1.0 +2005,9,21,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,21.1,79,101200,0,0,401,0,0,0,0,0,0,0,70,5.2,10,5,16.0,77777,9,999999999,340,0.0770,0,88,0.110,0.0,1.0 +2005,9,21,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,20.0,74,101300,0,0,423,0,0,0,0,0,0,0,50,5.2,10,9,16.0,20056,9,999999999,350,0.0770,0,88,0.110,0.0,1.0 +2005,9,21,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,20.6,74,101200,0,0,403,0,0,0,0,0,0,0,60,5.2,10,5,16.0,77777,9,999999999,359,0.0770,0,88,0.110,0.0,1.0 +2005,9,21,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,20.6,77,101200,0,0,424,0,0,0,0,0,0,0,70,5.2,10,9,16.0,20056,9,999999999,390,0.0770,0,88,0.110,0.0,1.0 +2005,9,22,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,20.6,77,101100,0,0,394,0,0,0,0,0,0,0,70,3.6,3,3,16.0,77777,9,999999999,419,0.0760,0,88,0.110,0.0,1.0 +2005,9,22,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,20.6,77,101100,0,0,390,0,0,0,0,0,0,0,80,3.6,2,2,16.0,77777,9,999999999,450,0.0760,0,88,0.110,0.0,1.0 +2005,9,22,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,20.6,77,101100,0,0,400,0,0,0,0,0,0,0,50,1.5,5,5,16.0,77777,9,999999999,440,0.0760,0,88,0.110,0.0,1.0 +2005,9,22,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,20.6,77,101000,0,0,424,0,0,0,0,0,0,0,30,1.5,9,9,16.0,17008,9,999999999,430,0.0760,0,88,0.110,0.0,1.0 +2005,9,22,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,20.0,79,101000,0,0,401,0,0,0,0,0,0,0,0,0.0,7,7,16.0,77777,9,999999999,419,0.0760,0,88,0.110,0.0,1.0 +2005,9,22,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,20.0,79,101100,0,0,393,0,0,0,0,0,0,0,0,0.0,5,5,16.0,77777,9,999999999,419,0.0760,0,88,0.110,0.0,1.0 +2005,9,22,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,20.0,76,101100,62,871,390,7,137,3,1500,8500,800,120,360,2.6,3,3,16.0,77777,9,999999999,419,0.0760,0,88,0.110,0.0,1.0 +2005,9,22,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,20.0,67,101100,358,1357,398,202,605,42,21100,52600,7200,880,0,0.0,2,2,16.0,77777,9,999999999,409,0.0760,0,88,0.110,0.0,1.0 +2005,9,22,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,20.0,61,101100,658,1357,411,411,614,112,43100,60300,13700,2360,30,3.6,3,3,16.0,77777,9,999999999,409,0.0760,0,88,0.110,0.0,1.0 +2005,9,22,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.9,20.6,61,101100,914,1357,421,556,439,260,58700,45300,28000,6990,70,5.7,5,5,16.0,77777,9,999999999,409,0.0760,0,88,0.110,0.0,1.0 +2005,9,22,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.0,20.0,55,101100,1107,1357,427,419,89,346,46200,9100,38800,14320,60,6.2,5,5,16.0,77777,9,999999999,409,0.0760,0,88,0.110,0.0,1.0 +2005,9,22,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.0,20.6,57,101000,1225,1357,427,648,299,378,71500,32500,42000,19030,50,5.2,5,5,16.0,77777,9,999999999,400,0.0760,0,88,0.110,0.0,1.0 +2005,9,22,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,31.1,20.6,54,100900,1260,1357,434,767,451,347,82500,47200,38600,22400,60,5.2,5,5,16.0,77777,9,999999999,400,0.0760,0,88,0.110,0.0,1.0 +2005,9,22,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.6,20.0,53,100900,1209,1357,430,655,291,395,71800,31600,43500,18920,70,6.2,5,5,16.0,77777,9,999999999,390,0.0760,0,88,0.110,0.0,1.0 +2005,9,22,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,31.1,19.4,50,100800,1075,1357,425,584,282,360,63400,30500,39100,12580,80,7.7,3,3,16.0,77777,9,999999999,390,0.0760,0,88,0.110,0.0,1.0 +2005,9,22,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.0,20.6,57,100800,868,1357,417,579,588,201,62100,60700,23200,5010,40,6.7,2,2,16.0,77777,9,999999999,379,0.0760,0,88,0.110,0.0,1.0 +2005,9,22,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.9,20.6,61,100900,602,1357,415,425,746,93,44800,72600,12500,1920,30,6.7,3,3,16.0,77777,9,999999999,379,0.0760,0,88,0.110,0.0,1.0 +2005,9,22,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,20.6,63,100900,296,1357,443,210,470,107,20900,36300,13000,2070,40,5.2,9,9,16.0,3300,9,999999999,390,0.0760,0,88,0.110,0.0,1.0 +2005,9,22,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,20.6,67,101000,29,599,412,0,0,0,0,0,0,0,70,5.2,5,5,16.0,77777,9,999999999,390,0.0760,0,88,0.110,0.0,1.0 +2005,9,22,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,21.1,71,101100,0,0,418,0,0,0,0,0,0,0,70,5.7,7,7,16.0,3048,9,999999999,400,0.0760,0,88,0.110,0.0,1.0 +2005,9,22,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,21.1,74,101100,0,0,431,0,0,0,0,0,0,0,40,3.1,9,9,16.0,3600,9,999999999,400,0.0760,0,88,0.110,0.0,1.0 +2005,9,22,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,21.1,74,101200,0,0,431,0,0,0,0,0,0,0,80,5.7,9,9,16.0,3300,9,999999999,409,0.0760,0,88,0.110,0.0,1.0 +2005,9,22,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,21.1,74,101100,0,0,400,0,0,0,0,0,0,0,60,4.6,3,3,16.0,77777,9,999999999,419,0.0760,0,88,0.110,0.0,1.0 +2005,9,22,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,21.1,74,101100,0,0,431,0,0,0,0,0,0,0,60,3.6,9,9,16.0,18532,9,999999999,419,0.0760,0,88,0.110,0.0,1.0 +2005,9,23,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,21.1,76,101100,0,0,394,0,0,0,0,0,0,0,40,1.5,2,2,16.0,77777,9,999999999,419,0.0760,0,88,0.110,0.0,1.0 +2005,9,23,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,21.1,79,101000,0,0,394,0,0,0,0,0,0,0,350,2.1,3,3,16.0,77777,9,999999999,419,0.0760,0,88,0.110,0.0,1.0 +2005,9,23,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,21.1,82,101000,0,0,387,0,0,0,0,0,0,0,0,0.0,2,2,16.0,77777,9,999999999,409,0.0760,0,88,0.110,0.0,1.0 +2005,9,23,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,21.1,82,101000,0,0,375,0,0,0,0,0,0,0,330,2.1,0,0,16.0,77777,9,999999999,409,0.0760,0,88,0.110,0.0,1.0 +2005,9,23,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,21.7,85,101000,0,0,388,0,0,0,0,0,0,0,320,2.1,2,2,16.0,77777,9,999999999,400,0.0760,0,88,0.110,0.0,1.0 +2005,9,23,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,21.1,87,101000,0,0,391,0,0,0,0,0,0,0,40,1.5,6,5,16.0,77777,9,999999999,400,0.0760,0,88,0.110,0.0,1.0 +2005,9,23,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,21.7,88,101100,61,848,386,4,17,4,600,700,600,60,0,0.0,2,2,16.0,77777,9,999999999,390,0.0760,0,88,0.110,0.0,1.0 +2005,9,23,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,22.2,76,101100,357,1357,405,130,98,104,14100,8500,11900,2290,360,2.1,3,3,16.0,77777,9,999999999,390,0.0760,0,88,0.110,0.0,1.0 +2005,9,23,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,21.7,69,101100,657,1357,417,312,233,198,33200,24000,21600,4420,80,1.5,6,5,16.0,77777,9,999999999,379,0.0760,0,88,0.110,0.0,1.0 +2005,9,23,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,23.3,77,101200,912,1357,419,656,784,127,68500,78400,15600,3160,150,4.6,6,5,16.0,77777,9,999999999,370,0.0760,0,88,0.110,0.0,1.0 +2005,9,23,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,23.3,74,101200,1105,1357,421,753,622,245,78900,62800,27600,9020,150,4.6,6,5,16.0,77777,9,999999999,370,0.0760,0,88,0.110,0.0,1.0 +2005,9,23,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,29.4,22.8,68,101100,1223,1357,427,368,54,319,40700,5500,35800,15920,150,5.2,6,5,16.0,77777,9,999999999,370,0.0760,0,88,0.110,0.0,1.0 +2005,9,23,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,22.8,72,101100,1257,1357,421,231,12,220,28500,900,27700,11030,150,5.2,6,5,16.0,77777,9,999999999,370,0.0760,0,88,0.110,0.0,1.0 +2005,9,23,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,23.3,79,101000,1205,1357,431,680,303,411,74300,32900,45000,19540,150,5.7,8,8,16.0,2438,9,999999999,370,0.0760,0,88,0.110,0.0,1.0 +2005,9,23,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,24.4,85,101000,1071,1357,441,605,318,353,65700,34400,38400,12210,150,4.1,9,9,16.0,2438,9,999999999,370,0.0760,0,88,0.110,0.0,1.0 +2005,9,23,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,22.8,74,101000,864,1357,455,594,582,223,63100,59900,24900,5580,150,4.1,10,10,16.0,2134,9,999999999,370,0.0760,0,88,0.110,0.0,1.0 +2005,9,23,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,23.9,82,101000,598,1357,441,222,73,190,24400,7200,21200,5410,140,3.1,9,9,16.0,2438,9,999999999,370,0.0760,0,88,0.110,0.0,1.0 +2005,9,23,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,22.2,74,101000,291,1357,451,153,176,115,16300,14000,13200,2490,30,2.6,10,10,16.0,15484,9,999999999,379,0.0760,0,88,0.110,0.0,1.0 +2005,9,23,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,22.2,76,101100,27,577,435,0,0,0,0,0,0,0,60,3.1,9,9,16.0,15484,9,999999999,379,0.0760,0,88,0.110,0.0,1.0 +2005,9,23,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,21.7,79,101200,0,0,398,0,0,0,0,0,0,0,10,2.1,3,3,16.0,77777,9,999999999,390,0.0760,0,88,0.110,0.0,1.0 +2005,9,23,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,22.2,82,101200,0,0,395,0,0,0,0,0,0,0,110,3.1,2,2,16.0,77777,9,999999999,390,0.0760,0,88,0.110,0.0,1.0 +2005,9,23,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,22.2,84,101200,0,0,396,0,0,0,0,0,0,0,360,1.5,3,3,16.0,77777,9,999999999,390,0.0760,0,88,0.110,0.0,1.0 +2005,9,23,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,21.7,82,101200,0,0,401,0,0,0,0,0,0,0,0,0.0,6,5,16.0,77777,9,999999999,390,0.0760,0,88,0.110,0.0,1.0 +2005,9,23,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,22.2,88,101200,0,0,399,0,0,0,0,0,0,0,0,0.0,6,5,16.0,77777,9,999999999,400,0.0760,0,88,0.110,0.0,1.0 +2005,9,24,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,22.2,88,101200,0,0,399,0,0,0,0,0,0,0,0,0.0,5,5,16.0,77777,9,999999999,409,0.0750,0,88,0.110,0.0,1.0 +2005,9,24,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,22.2,88,101200,0,0,399,0,0,0,0,0,0,0,10,1.5,5,5,16.0,77777,9,999999999,419,0.0750,0,88,0.110,0.0,1.0 +2005,9,24,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,22.2,90,101100,0,0,390,0,0,0,0,0,0,0,0,0.0,3,3,16.0,77777,9,999999999,419,0.0750,0,88,0.110,0.0,1.0 +2005,9,24,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,21.7,91,101100,0,0,386,0,0,0,0,0,0,0,0,0.0,3,3,16.0,77777,9,999999999,419,0.0750,0,88,0.110,0.0,1.0 +2005,9,24,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,21.7,91,101200,0,0,386,0,0,0,0,0,0,0,360,1.5,3,3,16.0,77777,9,999999999,419,0.0750,0,88,0.110,0.0,1.0 +2005,9,24,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,21.7,91,101200,0,0,382,0,0,0,0,0,0,0,10,2.1,2,2,16.0,77777,9,999999999,419,0.0750,0,88,0.110,0.0,1.0 +2005,9,24,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,21.7,85,101300,60,849,398,5,61,3,900,3700,600,80,340,2.1,5,5,16.0,77777,9,999999999,419,0.0750,0,88,0.110,0.0,1.0 +2005,9,24,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,22.2,82,101400,356,1358,395,148,253,81,15800,21700,10100,1530,350,1.5,2,2,16.0,77777,9,999999999,409,0.0750,0,88,0.110,0.0,1.0 +2005,9,24,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,22.2,72,101400,655,1358,411,359,392,169,37700,39000,18800,3530,50,2.6,3,3,16.0,77777,9,999999999,409,0.0750,0,88,0.110,0.0,1.0 +2005,9,24,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,22.8,72,101400,911,1358,421,572,579,182,59800,58300,20600,4740,140,5.2,5,5,16.0,77777,9,999999999,419,0.0750,0,88,0.110,0.0,1.0 +2005,9,24,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.9,22.2,67,101400,1104,1358,417,737,628,225,77700,63700,25800,8310,150,4.6,3,3,16.0,77777,9,999999999,419,0.0750,0,88,0.110,0.0,1.0 +2005,9,24,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,29.4,22.8,68,101300,1221,1358,416,754,508,296,82000,53200,34000,15940,140,5.2,2,2,16.0,77777,9,999999999,419,0.0750,0,88,0.110,0.0,1.0 +2005,9,24,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.0,23.3,67,101300,1254,1358,424,852,662,240,91000,67500,28400,14650,160,5.7,3,3,16.0,77777,9,999999999,419,0.0750,0,88,0.110,0.0,1.0 +2005,9,24,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.9,23.3,72,101300,1202,1358,414,840,654,259,88500,66300,29700,12690,140,5.7,2,2,16.0,77777,9,999999999,419,0.0750,0,88,0.110,0.0,1.0 +2005,9,24,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,29.4,22.8,68,101200,1067,1358,420,673,533,253,72800,55600,29000,8730,150,5.2,3,3,16.0,77777,9,999999999,430,0.0750,0,88,0.110,0.0,1.0 +2005,9,24,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.9,23.3,72,101300,860,1358,425,536,470,238,56500,48300,25900,5960,150,5.7,5,5,16.0,77777,9,999999999,430,0.0750,0,88,0.110,0.0,1.0 +2005,9,24,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,23.3,77,101300,593,1358,443,277,180,198,30000,18000,22100,4740,140,5.7,9,9,16.0,15484,9,999999999,440,0.0750,0,88,0.110,0.0,1.0 +2005,9,24,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.0,23.0,79,101300,286,1358,438,159,268,102,16400,20600,12000,2090,140,4.1,9,9,16.1,870,9,999999999,440,0.0750,0,88,0.110,0.0,1.0 +2005,9,24,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,23.3,79,101400,25,555,452,0,0,0,0,0,0,0,140,3.6,10,10,16.0,8473,9,999999999,440,0.0750,0,88,0.110,0.0,1.0 +2005,9,24,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,23.3,79,101500,0,0,424,0,0,0,0,0,0,0,140,2.6,7,7,16.0,7864,9,999999999,430,0.0750,0,88,0.110,0.0,1.0 +2005,9,24,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,22.2,76,101500,0,0,405,0,0,0,0,0,0,0,40,1.5,3,3,16.0,77777,9,999999999,440,0.0750,0,88,0.110,0.0,1.0 +2005,9,24,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,22.2,79,101600,0,0,408,0,0,0,0,0,0,0,30,2.6,5,5,16.0,77777,9,999999999,440,0.0750,0,88,0.110,0.0,1.0 +2005,9,24,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,22.2,82,101600,0,0,414,0,0,0,0,0,0,0,0,0.0,7,7,16.0,77777,9,999999999,440,0.0750,0,88,0.110,0.0,1.0 +2005,9,24,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,22.2,82,101600,0,0,429,0,0,0,0,0,0,0,0,0.0,9,9,16.0,9388,9,999999999,450,0.0750,0,88,0.110,0.0,1.0 +2005,9,25,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,22.2,84,101500,0,0,405,0,0,0,0,0,0,0,0,0.0,6,6,16.0,77777,9,999999999,459,0.0750,0,88,0.110,0.0,1.0 +2005,9,25,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,22.2,84,101500,0,0,396,0,0,0,0,0,0,0,0,0.0,3,3,16.0,77777,9,999999999,469,0.0750,0,88,0.110,0.0,1.0 +2005,9,25,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,21.7,85,101500,0,0,388,0,0,0,0,0,0,0,0,0.0,2,2,16.0,77777,9,999999999,469,0.0750,0,88,0.110,0.0,1.0 +2005,9,25,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,21.7,85,101500,0,0,392,0,0,0,0,0,0,0,350,1.5,3,3,16.0,77777,9,999999999,459,0.0750,0,88,0.110,0.0,1.0 +2005,9,25,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,21.1,87,101500,0,0,382,0,0,0,0,0,0,0,10,1.5,2,2,16.0,77777,9,999999999,450,0.0750,0,88,0.110,0.0,1.0 +2005,9,25,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,20.6,82,101500,0,0,388,0,0,0,0,0,0,0,350,1.5,3,3,16.0,77777,9,999999999,450,0.0750,0,88,0.110,0.0,1.0 +2005,9,25,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,21.1,84,101600,60,849,385,5,107,2,1100,6600,600,80,320,1.5,2,2,16.0,77777,9,999999999,440,0.0750,0,88,0.110,0.0,1.0 +2005,9,25,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,21.7,74,101700,354,1359,387,180,490,52,18900,41800,7900,990,350,1.5,0,0,16.0,77777,9,999999999,440,0.0750,0,88,0.110,0.0,1.0 +2005,9,25,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,21.7,67,101700,654,1359,409,410,546,147,43800,54400,17500,3020,50,2.6,2,2,16.0,77777,9,999999999,450,0.0750,0,88,0.110,0.0,1.0 +2005,9,25,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.9,21.7,65,101700,909,1359,416,257,29,237,28300,2900,26300,8470,190,3.6,3,3,16.0,77777,9,999999999,450,0.0750,0,88,0.110,0.0,1.0 +2005,9,25,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,29.4,22.8,68,101700,1102,1359,427,480,130,374,52700,13800,41500,13760,180,3.6,5,5,16.0,77777,9,999999999,450,0.0750,0,88,0.110,0.0,1.0 +2005,9,25,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.0,22.8,65,101700,1218,1359,456,649,311,369,71500,33800,41100,17990,180,3.6,9,9,16.0,14874,9,999999999,440,0.0750,0,88,0.110,0.0,1.0 +2005,9,25,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.0,22.2,63,101600,1252,1359,455,554,144,421,61200,15400,47000,22010,200,3.1,9,9,16.0,12436,9,999999999,430,0.0750,0,88,0.110,0.0,1.0 +2005,9,25,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.0,22.2,63,101500,1199,1359,445,388,30,361,42800,3100,40100,16940,210,1.5,8,8,16.0,13045,9,999999999,419,0.0750,0,88,0.110,0.0,1.0 +2005,9,25,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,29.4,23.3,70,101500,1064,1359,428,404,55,361,44600,5700,40100,14030,230,5.2,5,5,16.0,77777,9,999999999,419,0.0750,0,88,0.110,0.0,1.0 +2005,9,25,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.0,22.2,63,101500,855,1359,455,515,388,270,55400,41400,29300,7010,40,5.2,9,9,16.0,12131,9,999999999,419,0.0750,0,88,0.110,0.0,1.0 +2005,9,25,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,29.4,21.1,61,101500,588,1359,414,377,556,136,40000,54300,16400,2700,40,5.2,2,2,16.0,77777,9,999999999,409,0.0750,0,88,0.110,0.0,1.0 +2005,9,25,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,21.7,67,101500,281,1359,413,142,111,119,15000,8700,13200,2570,40,5.2,3,3,16.0,77777,9,999999999,400,0.0750,0,88,0.110,0.0,1.0 +2005,9,25,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,21.7,72,101600,23,532,403,0,0,0,0,0,0,0,80,4.1,2,2,16.0,77777,9,999999999,390,0.0750,0,88,0.110,0.0,1.0 +2005,9,25,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,21.7,74,101600,0,0,404,0,0,0,0,0,0,0,50,4.6,3,3,16.0,77777,9,999999999,379,0.0750,0,88,0.110,0.0,1.0 +2005,9,25,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,21.7,74,101700,0,0,400,0,0,0,0,0,0,0,40,3.6,2,2,16.0,77777,9,999999999,370,0.0750,0,88,0.110,0.0,1.0 +2005,9,25,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,21.1,74,101700,0,0,400,0,0,0,0,0,0,0,20,3.1,3,3,16.0,77777,9,999999999,370,0.0750,0,88,0.110,0.0,1.0 +2005,9,25,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,21.1,74,101700,0,0,396,0,0,0,0,0,0,0,0,0.0,2,2,16.0,77777,9,999999999,359,0.0750,0,88,0.110,0.0,1.0 +2005,9,25,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,22.2,79,101700,0,0,408,0,0,0,0,0,0,0,60,6.7,5,5,16.0,77777,9,999999999,370,0.0750,0,88,0.110,0.0,1.0 +2005,9,26,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,22.2,82,101600,0,0,429,0,0,0,0,0,0,0,50,4.1,9,9,16.0,15484,9,999999999,379,0.0740,0,88,0.110,0.0,1.0 +2005,9,26,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,21.7,79,101600,0,0,382,0,0,0,0,0,0,0,60,4.6,0,0,16.0,77777,9,999999999,390,0.0740,0,88,0.110,0.0,1.0 +2005,9,26,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,21.7,79,101500,0,0,398,0,0,0,0,0,0,0,70,5.2,3,3,16.0,77777,9,999999999,379,0.0740,0,88,0.110,0.0,1.0 +2005,9,26,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,21.7,79,101500,0,0,428,0,0,0,0,0,0,0,40,4.1,9,9,16.0,18532,9,999999999,370,0.0740,0,88,0.110,0.0,1.0 +2005,9,26,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,20.6,72,101500,0,0,400,0,0,0,0,0,0,0,70,5.7,3,3,16.0,77777,9,999999999,359,0.0740,0,88,0.110,0.0,1.0 +2005,9,26,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,20.6,72,101500,0,0,430,0,0,0,0,0,0,0,70,5.2,9,9,16.0,15484,9,999999999,350,0.0740,0,88,0.110,0.0,1.0 +2005,9,26,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,21.1,76,101600,59,850,412,4,12,3,500,500,400,40,50,2.1,7,7,16.0,77777,9,999999999,340,0.0740,0,88,0.110,0.0,1.0 +2005,9,26,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,21.1,74,101600,353,1360,407,133,124,101,14500,10800,11700,2220,50,7.2,5,5,16.0,77777,9,999999999,329,0.0740,0,88,0.110,0.0,1.0 +2005,9,26,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,21.1,69,101600,653,1360,413,306,205,208,33400,20900,23300,5110,40,6.2,5,5,16.0,77777,9,999999999,329,0.0740,0,88,0.110,0.0,1.0 +2005,9,26,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.9,20.0,59,101600,907,1360,420,535,427,249,56500,44100,27000,6600,50,8.2,5,5,16.0,77777,9,999999999,329,0.0740,0,88,0.110,0.0,1.0 +2005,9,26,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.9,19.4,57,101600,1100,1360,420,703,563,247,73700,56800,27600,8910,50,8.2,5,5,16.0,77777,9,999999999,329,0.0740,0,88,0.110,0.0,1.0 +2005,9,26,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,29.4,19.4,55,101600,1216,1360,448,818,681,207,87800,69800,25100,10800,50,6.7,9,9,16.0,15484,9,999999999,329,0.0740,0,88,0.110,0.0,1.0 +2005,9,26,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.0,19.4,53,101500,1249,1360,451,847,668,232,90500,68200,27600,13730,30,7.2,9,9,16.0,13045,9,999999999,329,0.0740,0,88,0.110,0.0,1.0 +2005,9,26,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,29.4,18.9,53,101400,1195,1360,431,739,460,333,79100,48100,36700,16370,40,7.7,7,7,16.0,14569,9,999999999,329,0.0740,0,88,0.110,0.0,1.0 +2005,9,26,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.9,19.4,57,101300,1060,1360,445,633,417,308,67100,43400,33200,10580,30,6.2,9,9,16.0,14874,9,999999999,329,0.0740,0,88,0.110,0.0,1.0 +2005,9,26,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,20.0,61,101300,851,1360,442,524,495,213,55700,50900,23800,5230,60,6.2,9,9,16.0,14874,9,999999999,329,0.0740,0,88,0.110,0.0,1.0 +2005,9,26,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,20.0,63,101300,583,1360,439,316,382,152,33100,37200,17100,3050,60,7.2,9,9,16.0,15179,9,999999999,329,0.0740,0,88,0.110,0.0,1.0 +2005,9,26,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,21.1,71,101400,276,1360,434,173,371,98,17300,27800,11700,1890,60,6.7,9,9,14.4,17008,9,999999999,320,0.0740,0,88,0.110,0.0,1.0 +2005,9,26,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,20.0,69,101400,21,510,429,0,0,0,0,0,0,0,60,6.7,9,9,16.0,15484,9,999999999,309,0.0740,0,88,0.110,0.0,1.0 +2005,9,26,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,20.6,74,101500,0,0,411,0,0,0,0,0,0,0,60,7.2,7,7,16.0,1524,9,999999999,309,0.0740,0,88,0.110,0.0,1.0 +2005,9,26,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,21.7,79,101600,0,0,405,0,0,0,0,0,0,0,60,7.2,5,5,16.0,77777,9,999999999,309,0.0740,0,88,0.110,0.0,1.0 +2005,9,26,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,18.9,67,101600,0,0,391,0,0,0,0,0,0,0,60,9.3,2,2,16.0,77777,9,999999999,309,0.0740,0,88,0.110,0.0,1.0 +2005,9,26,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,19.4,67,101600,0,0,404,0,0,0,0,0,0,0,60,6.7,5,5,16.0,77777,9,999999999,320,0.0740,0,88,0.110,0.0,1.0 +2005,9,26,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,20.6,72,101500,0,0,430,0,0,0,0,0,0,0,70,4.6,9,9,16.0,17008,9,999999999,320,0.0740,0,88,0.110,0.0,1.0 +2005,9,27,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,19.4,69,101500,0,0,402,0,0,0,0,0,0,0,60,4.6,5,5,16.0,77777,9,999999999,329,0.0740,0,88,0.110,0.0,1.0 +2005,9,27,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,18.3,64,101500,0,0,394,0,0,0,0,0,0,0,60,7.2,3,3,16.0,77777,9,999999999,329,0.0740,0,88,0.110,0.0,1.0 +2005,9,27,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,17.8,64,101500,0,0,387,0,0,0,0,0,0,0,60,6.2,2,2,16.0,77777,9,999999999,329,0.0740,0,88,0.110,0.0,1.0 +2005,9,27,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,17.2,64,101500,0,0,387,0,0,0,0,0,0,0,60,5.7,3,3,16.0,77777,9,999999999,320,0.0740,0,88,0.110,0.0,1.0 +2005,9,27,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,17.2,64,101500,0,0,383,0,0,0,0,0,0,0,70,6.2,2,2,16.0,77777,9,999999999,320,0.0740,0,88,0.110,0.0,1.0 +2005,9,27,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,17.2,62,101500,0,0,396,0,0,0,0,0,0,0,60,5.7,5,5,16.0,77777,9,999999999,309,0.0740,0,88,0.110,0.0,1.0 +2005,9,27,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,17.8,64,101500,58,828,396,5,118,2,1200,7300,700,80,60,7.2,5,5,16.0,77777,9,999999999,300,0.0740,0,88,0.110,0.0,1.0 +2005,9,27,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,17.2,58,101500,352,1361,402,193,603,37,20400,52400,6900,800,70,7.7,5,5,16.0,77777,9,999999999,290,0.0740,0,88,0.110,0.0,1.0 +2005,9,27,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,17.2,53,101600,651,1361,401,419,727,70,44600,71400,10300,1570,60,7.7,2,2,16.0,77777,9,999999999,290,0.0740,0,88,0.110,0.0,1.0 +2005,9,27,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,17.2,51,101600,906,1361,410,624,655,187,65200,65800,21300,4800,50,6.7,4,4,16.0,77777,9,999999999,279,0.0740,0,88,0.110,0.0,1.0 +2005,9,27,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.9,17.2,49,101600,1098,1361,417,324,36,295,35800,3700,32900,12310,60,6.2,5,5,16.0,77777,9,999999999,279,0.0740,0,88,0.110,0.0,1.0 +2005,9,27,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.9,16.7,48,101500,1214,1361,441,210,12,200,26000,900,25200,10120,70,8.8,9,9,16.0,10912,9,999999999,279,0.0740,0,88,0.110,0.0,1.0 +2005,9,27,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,29.4,16.1,45,101500,1246,1361,418,774,457,354,82900,47800,39000,21090,80,7.2,5,5,16.0,77777,9,999999999,279,0.0740,0,88,0.110,0.0,1.0 +2005,9,27,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.0,17.2,46,101400,1192,1361,423,898,842,158,95200,85100,20400,7080,50,6.7,5,5,16.0,77777,9,999999999,270,0.0740,0,88,0.110,0.0,1.0 +2005,9,27,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.9,17.8,51,101300,1056,1361,418,722,674,197,76400,68600,23000,6570,60,8.8,5,5,16.0,77777,9,999999999,279,0.0740,0,88,0.110,0.0,1.0 +2005,9,27,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,18.3,55,101300,847,1361,452,517,477,220,54900,49000,24300,5390,50,8.8,10,10,16.0,18532,9,999999999,290,0.0740,0,88,0.110,0.0,1.0 +2005,9,27,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,19.4,64,101300,579,1361,432,354,524,130,37500,51000,15800,2560,60,7.7,9,9,14.4,1676,9,999999999,300,0.0740,0,88,0.110,0.0,1.0 +2005,9,27,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,17.2,56,101400,271,1361,405,155,200,116,16500,15300,13400,2500,50,5.7,5,5,16.0,77777,9,999999999,300,0.0740,0,88,0.110,0.0,1.0 +2005,9,27,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,17.2,58,101400,19,488,425,0,0,0,0,0,0,0,60,6.7,9,9,16.0,2134,9,999999999,300,0.0740,0,88,0.110,0.0,1.0 +2005,9,27,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,17.8,62,101500,0,0,400,0,0,0,0,0,0,0,60,6.7,5,5,16.0,77777,9,999999999,290,0.0740,0,88,0.110,0.0,1.0 +2005,9,27,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,19.4,74,101600,0,0,419,0,0,0,0,0,0,0,60,8.8,9,9,16.0,2134,9,999999999,300,0.0740,0,88,0.110,0.0,1.0 +2005,9,27,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,18.3,69,101600,0,0,388,0,0,0,0,0,0,0,50,6.7,3,3,16.0,77777,9,999999999,300,0.0740,0,88,0.110,0.0,1.0 +2005,9,27,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,17.2,62,101600,0,0,373,0,0,0,0,0,0,0,50,5.7,0,0,16.0,77777,9,999999999,300,0.0740,0,88,0.110,0.0,1.0 +2005,9,27,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,19.4,74,101600,0,0,419,0,0,0,0,0,0,0,50,6.7,9,9,16.0,17008,9,999999999,309,0.0740,0,88,0.110,0.0,1.0 +2005,9,28,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,18.9,71,101600,0,0,389,0,0,0,0,0,0,0,50,6.7,3,3,16.0,77777,9,999999999,320,0.0730,0,88,0.110,0.0,1.0 +2005,9,28,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,18.9,71,101600,0,0,385,0,0,0,0,0,0,0,60,5.2,2,2,16.0,77777,9,999999999,320,0.0730,0,88,0.110,0.0,1.0 +2005,9,28,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,18.3,69,101500,0,0,394,0,0,0,0,0,0,0,90,4.6,5,5,16.0,77777,9,999999999,309,0.0730,0,88,0.110,0.0,1.0 +2005,9,28,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,18.9,74,101600,0,0,392,0,0,0,0,0,0,0,50,3.1,5,5,16.0,77777,9,999999999,300,0.0730,0,88,0.110,0.0,1.0 +2005,9,28,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,18.9,79,101600,0,0,409,0,0,0,0,0,0,0,60,3.1,9,9,16.0,18532,9,999999999,290,0.0730,0,88,0.110,0.0,1.0 +2005,9,28,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,18.9,76,101600,0,0,389,0,0,0,0,0,0,0,60,2.6,5,5,16.0,77777,9,999999999,279,0.0730,0,88,0.110,0.0,1.0 +2005,9,28,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,18.9,74,101700,57,828,392,3,20,3,600,900,500,50,50,4.6,5,5,16.0,77777,9,999999999,279,0.0730,0,88,0.110,0.0,1.0 +2005,9,28,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,18.9,69,101700,350,1361,406,111,67,94,12200,5900,10700,2440,80,2.1,7,7,16.0,2438,9,999999999,279,0.0730,0,88,0.110,0.0,1.0 +2005,9,28,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,19.4,67,101800,649,1361,428,306,239,192,32800,24600,21000,4250,40,3.6,9,9,16.0,2134,9,999999999,279,0.0730,0,88,0.110,0.0,1.0 +2005,9,28,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,18.3,56,101800,904,1361,437,535,445,239,56800,46000,26200,6280,30,5.7,9,9,16.0,2438,9,999999999,279,0.0730,0,88,0.110,0.0,1.0 +2005,9,28,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,18.3,56,101700,1095,1361,437,714,599,231,75100,60600,26200,8280,50,9.3,9,9,16.0,2438,9,999999999,290,0.0730,0,88,0.110,0.0,1.0 +2005,9,28,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,29.4,17.8,50,101700,1211,1361,420,807,663,215,86300,67800,25700,10920,60,9.8,5,5,16.0,77777,9,999999999,290,0.0730,0,88,0.110,0.0,1.0 +2005,9,28,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,29.4,18.3,51,101600,1243,1361,421,811,595,266,85700,60300,30400,15100,80,7.7,5,5,16.0,77777,9,999999999,290,0.0730,0,88,0.110,0.0,1.0 +2005,9,28,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,19.4,59,101600,1188,1361,425,765,551,282,83100,57700,32600,13370,20,5.2,7,7,16.0,2438,9,999999999,300,0.0730,0,88,0.110,0.0,1.0 +2005,9,28,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.9,17.8,51,101600,1052,1361,411,722,693,185,76800,70700,22000,6150,60,8.8,3,3,16.0,77777,9,999999999,300,0.0730,0,88,0.110,0.0,1.0 +2005,9,28,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.9,18.9,55,101500,842,1361,419,570,659,161,59700,66100,18700,3870,40,4.6,5,5,16.0,77777,9,999999999,290,0.0730,0,88,0.110,0.0,1.0 +2005,9,28,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.0,18.0,55,101600,574,1361,450,310,337,168,33100,33700,18800,3580,40,6.7,10,10,16.1,2400,9,999999999,290,0.0730,0,88,0.110,0.0,1.0 +2005,9,28,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,17.8,58,101600,266,1361,406,163,279,109,16700,20500,12700,2310,60,7.7,5,5,16.0,77777,9,999999999,290,0.0730,0,88,0.110,0.0,1.0 +2005,9,28,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,17.8,60,101700,18,465,380,0,0,0,0,0,0,0,70,6.2,0,0,16.0,77777,9,999999999,290,0.0730,0,88,0.110,0.0,1.0 +2005,9,28,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,20.0,79,101800,0,0,384,0,0,0,0,0,0,0,60,3.6,2,2,16.0,77777,9,999999999,279,0.0730,0,88,0.110,0.0,1.0 +2005,9,28,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,19.4,71,101800,0,0,398,0,0,0,0,0,0,0,70,3.6,5,5,16.0,77777,9,999999999,290,0.0730,0,88,0.110,0.0,1.0 +2005,9,28,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,19.4,74,101800,0,0,385,0,0,0,0,0,0,0,60,5.2,2,2,16.0,77777,9,999999999,290,0.0730,0,88,0.110,0.0,1.0 +2005,9,28,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,19.4,74,101800,0,0,389,0,0,0,0,0,0,0,70,4.6,3,3,16.0,77777,9,999999999,290,0.0730,0,88,0.110,0.0,1.0 +2005,9,28,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,18.9,69,101800,0,0,388,0,0,0,0,0,0,0,80,6.2,2,2,16.0,77777,9,999999999,279,0.0730,0,88,0.110,0.0,1.0 +2005,9,29,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,18.9,71,101800,0,0,385,0,0,0,0,0,0,0,60,4.6,2,2,16.0,77777,9,999999999,270,0.0730,0,88,0.110,0.0,1.0 +2005,9,29,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,18.9,74,101700,0,0,392,0,0,0,0,0,0,0,20,4.6,5,5,16.0,77777,9,999999999,259,0.0730,0,88,0.110,0.0,1.0 +2005,9,29,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,18.3,69,101700,0,0,384,0,0,0,0,0,0,0,30,5.2,2,2,16.0,77777,9,999999999,270,0.0730,0,88,0.110,0.0,1.0 +2005,9,29,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,18.3,69,101700,0,0,388,0,0,0,0,0,0,0,50,6.2,3,3,16.0,77777,9,999999999,270,0.0730,0,88,0.110,0.0,1.0 +2005,9,29,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,18.3,69,101700,0,0,384,0,0,0,0,0,0,0,60,5.2,2,2,16.0,77777,9,999999999,279,0.0730,0,88,0.110,0.0,1.0 +2005,9,29,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,17.8,67,101700,0,0,387,0,0,0,0,0,0,0,40,3.1,3,3,16.0,77777,9,999999999,279,0.0730,0,88,0.110,0.0,1.0 +2005,9,29,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,18.9,71,101800,56,829,385,4,105,2,1100,6500,600,80,60,4.6,2,2,16.0,77777,9,999999999,290,0.0730,0,88,0.110,0.0,1.0 +2005,9,29,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,18.3,62,101800,349,1362,397,182,530,46,19200,45100,7600,890,30,4.6,3,3,16.0,77777,9,999999999,290,0.0730,0,88,0.110,0.0,1.0 +2005,9,29,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,17.8,56,101800,648,1362,398,395,608,105,41500,59700,13100,2210,40,7.2,2,2,16.0,77777,9,999999999,290,0.0730,0,88,0.110,0.0,1.0 +2005,9,29,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,18.3,56,101900,902,1362,406,587,638,164,61900,64500,19100,4260,40,6.2,3,3,16.0,77777,9,999999999,300,0.0730,0,88,0.110,0.0,1.0 +2005,9,29,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.9,17.8,51,101900,1093,1362,407,726,628,220,76500,63700,25200,7880,40,7.7,2,2,16.0,77777,9,999999999,300,0.0730,0,88,0.110,0.0,1.0 +2005,9,29,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,17.8,53,101800,1208,1362,414,866,753,196,93200,77400,24400,9900,30,7.2,5,5,16.0,77777,9,999999999,290,0.0730,0,88,0.110,0.0,1.0 +2005,9,29,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,20.0,67,101700,1240,1362,408,890,770,188,93200,77400,22600,9780,20,5.2,5,5,16.0,77777,9,999999999,270,0.0730,0,88,0.110,0.0,1.0 +2005,9,29,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.9,18.9,55,101700,1185,1362,419,848,758,187,88200,76000,22000,7820,40,6.2,5,5,16.0,77777,9,999999999,250,0.0730,0,88,0.110,0.0,1.0 +2005,9,29,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,29.4,18.3,51,101600,1048,1362,421,702,638,211,74000,64600,24200,6850,40,7.2,5,5,16.0,77777,9,999999999,259,0.0730,0,88,0.110,0.0,1.0 +2005,9,29,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,19.4,60,101600,838,1362,414,497,383,260,53400,40800,28300,6610,40,6.7,5,5,16.0,77777,9,999999999,259,0.0730,0,88,0.110,0.0,1.0 +2005,9,29,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,20.6,74,101600,569,1362,439,275,202,190,29700,20000,21300,4500,40,7.2,10,10,14.4,1829,9,999999999,270,0.0730,0,88,0.110,0.0,1.0 +2005,9,29,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,21.1,76,101600,261,1362,440,143,77,129,15600,6400,14400,2600,50,3.6,10,10,11.2,14874,9,999999999,279,0.0730,0,88,0.110,0.0,1.0 +2005,9,29,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,21.7,88,101700,16,443,431,0,0,0,0,0,0,0,20,3.6,10,10,16.0,12436,9,999999999,290,0.0730,0,88,0.110,0.0,1.0 +2005,9,29,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,21.7,94,101700,0,0,424,0,0,0,0,0,0,0,10,2.6,10,10,9.6,1097,9,999999999,290,0.0730,0,88,0.110,0.0,1.0 +2005,9,29,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,22.2,94,101700,0,0,428,0,0,0,0,0,0,0,40,2.6,10,10,11.2,9083,9,999999999,300,0.0730,0,88,0.110,0.0,1.0 +2005,9,29,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,22.2,90,101700,0,0,431,0,0,0,0,0,0,0,70,7.7,10,10,9.6,9083,9,999999999,309,0.0730,0,88,0.110,0.0,1.0 +2005,9,29,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,21.7,85,101600,0,0,434,0,0,0,0,0,0,0,60,3.1,10,10,16.0,1158,9,999999999,320,0.0730,0,88,0.110,0.0,1.0 +2005,9,29,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,22.2,84,101600,0,0,426,0,0,0,0,0,0,0,50,7.7,9,9,16.0,1128,9,999999999,340,0.0730,0,88,0.110,0.0,1.0 +2005,9,30,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,21.7,85,101600,0,0,434,0,0,0,0,0,0,0,50,8.2,10,10,14.4,10912,9,999999999,350,0.0720,0,88,0.110,0.0,1.0 +2005,9,30,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,21.7,85,101500,0,0,434,0,0,0,0,0,0,0,90,4.6,10,10,14.4,1158,9,999999999,359,0.0720,0,88,0.110,0.0,1.0 +2005,9,30,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,21.1,82,101500,0,0,433,0,0,0,0,0,0,0,50,4.1,10,10,16.0,12436,9,999999999,350,0.0720,0,88,0.110,0.0,1.0 +2005,9,30,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,22.2,90,101500,0,0,431,0,0,0,0,0,0,0,70,4.1,10,10,14.4,13960,9,999999999,340,0.0720,0,88,0.110,0.0,1.0 +2005,9,30,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,22.2,90,101500,0,0,419,0,0,0,0,0,0,0,60,6.7,9,9,16.0,13960,9,999999999,329,0.0720,0,88,0.110,0.0,1.0 +2005,9,30,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,22.2,90,101500,0,0,419,0,0,0,0,0,0,0,70,7.2,9,9,16.0,15179,9,999999999,329,0.0720,0,88,0.110,0.0,1.0 +2005,9,30,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,21.7,88,101600,55,829,419,4,46,3,700,2400,600,60,50,4.1,9,9,9.6,2591,9,999999999,329,0.0720,0,88,0.110,0.0,1.0 +2005,9,30,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,22.8,91,101600,347,1363,408,75,5,73,8500,200,8400,2750,50,6.2,7,7,8.0,1250,9,999999999,320,0.0720,0,88,0.110,0.0,1.0 +2005,9,30,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,22.8,91,101600,646,1363,423,160,6,157,18400,500,18200,6500,40,5.7,9,9,6.4,11217,9,999999999,320,0.0720,0,88,0.110,0.0,1.0 +2005,9,30,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,22.8,91,101600,900,1363,435,204,12,197,24200,1000,23600,9130,90,4.1,10,10,16.0,11521,9,999999999,320,0.0720,0,88,0.110,0.0,1.0 +2005,9,30,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,22.2,84,101600,1091,1363,426,402,47,364,44300,4800,40400,14550,60,8.8,9,9,8.0,11521,9,999999999,320,0.0720,0,88,0.110,1.0,1.0 +2005,9,30,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,22.2,74,101500,1206,1363,414,638,275,394,69800,29900,43300,18400,60,8.2,5,5,16.0,77777,9,999999999,329,0.0720,0,88,0.110,0.0,1.0 +2005,9,30,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,21.7,67,101500,1237,1363,444,714,355,391,78500,38600,43400,20130,50,8.8,9,9,16.0,11826,9,999999999,329,0.0720,0,88,0.110,0.0,1.0 +2005,9,30,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,21.7,67,101400,1181,1363,428,823,661,249,86900,67000,28600,11240,60,8.2,7,7,16.0,1463,9,999999999,340,0.0720,0,88,0.110,0.0,1.0 +2005,9,30,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,21.7,67,101300,1044,1363,444,554,276,342,60100,29800,37200,11210,50,7.2,9,9,16.0,1463,9,999999999,340,0.0720,0,88,0.110,0.0,1.0 +2005,9,30,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,21.1,65,101300,833,1363,443,267,25,252,30700,2200,29300,10490,70,10.8,9,9,16.0,14265,9,999999999,340,0.0720,0,88,0.110,0.0,1.0 +2005,9,30,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,21.1,69,101400,564,1363,437,295,284,177,31200,28300,19500,3820,40,5.7,9,9,16.0,1006,9,999999999,350,0.0720,0,88,0.110,0.0,1.0 +2005,9,30,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,21.1,74,101400,256,1363,431,182,338,118,18300,24200,13800,2590,60,9.3,9,9,16.0,1280,9,999999999,350,0.0720,0,88,0.110,0.0,1.0 +2005,9,30,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,21.1,76,101400,15,420,428,0,0,0,0,0,0,0,60,8.2,9,9,16.0,1067,9,999999999,350,0.0720,0,88,0.110,0.0,1.0 +2005,9,30,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,21.1,76,101500,0,0,412,0,0,0,0,0,0,0,80,6.2,7,7,16.0,1036,9,999999999,350,0.0720,0,88,0.110,0.0,1.0 +2005,9,30,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,20.6,74,101600,0,0,397,0,0,0,0,0,0,0,60,8.2,3,3,16.0,77777,9,999999999,350,0.0720,0,88,0.110,0.0,1.0 +2005,9,30,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.5,20.5,74,101600,0,0,392,0,0,0,0,0,0,0,70,7.5,2,2,16.0,77777,9,999999999,350,0.0720,0,88,0.110,0.0,1.0 +2005,9,30,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.4,20.4,76,101600,0,0,402,0,0,0,0,0,0,0,60,6.9,5,5,16.0,77777,9,999999999,350,0.0720,0,88,0.110,0.0,1.0 +2005,9,30,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.3,20.3,79,101600,0,0,401,0,0,0,0,0,0,0,60,6.2,5,5,16.0,77777,9,999999999,359,0.0720,0,88,0.110,0.0,1.0 +1988,10,1,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.3,20.3,74,101700,0,0,391,0,0,0,0,0,0,0,50,5.6,2,2,24.1,77777,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1988,10,1,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.2,20.2,74,101600,0,0,391,0,0,0,0,0,0,0,30,4.9,2,2,24.1,77777,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1988,10,1,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.1,20.1,74,101600,0,0,390,0,0,0,0,0,0,0,40,4.3,2,2,24.1,77777,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1988,10,1,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,20.0,74,101500,0,0,389,0,0,0,0,0,0,0,50,3.6,2,2,24.1,77777,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1988,10,1,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,20.0,84,101600,0,0,378,0,0,0,0,0,0,0,310,2.1,2,2,24.1,77777,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1988,10,1,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,20.0,87,101600,0,0,379,38,129,21,0,0,0,0,290,1.5,3,3,24.1,77777,9,999999999,359,0.0500,0,88,999.000,999.0,99.0 +1988,10,1,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,20.6,87,101600,54,807,373,187,569,41,7900,24300,6100,580,290,1.5,1,1,32.2,77777,9,999999999,370,0.0500,0,88,999.000,999.0,99.0 +1988,10,1,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,20.6,69,101600,345,1365,394,417,758,56,25000,64000,8800,1000,320,3.1,1,1,40.2,77777,9,999999999,370,0.0500,0,88,999.000,999.0,99.0 +1988,10,1,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,20.0,57,101700,645,1365,407,616,816,76,48700,79700,11000,1650,60,6.2,1,1,40.2,77777,9,999999999,359,0.0500,0,88,999.000,999.0,99.0 +1988,10,1,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,19.4,52,101700,898,1365,419,775,776,153,70400,78600,18500,3980,60,5.2,2,2,40.2,77777,9,999999999,350,0.0500,0,88,999.000,999.0,99.0 +1988,10,1,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,18.9,47,101600,1089,1365,428,592,413,226,61000,43200,26500,8030,60,5.2,3,3,40.2,77777,9,999999999,340,0.0500,0,88,999.000,999.0,99.0 +1988,10,1,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,18.3,44,101600,1203,1365,430,899,799,173,92500,80500,21300,7830,40,5.2,3,3,40.2,77777,9,999999999,329,0.0500,0,88,999.000,999.0,99.0 +1988,10,1,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,18.9,42,101500,1234,1365,437,919,906,133,98000,90800,15600,5710,60,6.2,3,3,40.2,77777,9,999999999,329,0.0500,0,88,999.000,999.0,99.0 +1988,10,1,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,17.8,41,101400,1178,1365,433,769,803,154,90100,81200,19800,6540,90,7.2,3,3,40.2,77777,9,999999999,320,0.0500,0,88,999.000,999.0,99.0 +1988,10,1,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,18.9,44,101400,1040,1365,441,499,530,176,61900,54100,20500,5710,60,7.2,5,5,40.2,77777,9,999999999,340,0.0500,0,88,999.000,999.0,99.0 +1988,10,1,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,19.4,47,101400,829,1365,438,242,163,175,30400,17400,19800,4140,360,6.7,5,5,40.2,77777,9,999999999,350,0.0500,0,88,999.000,999.0,99.0 +1988,10,1,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,20.0,53,101500,559,1365,430,93,105,73,13100,10500,8800,1360,280,4.1,5,5,40.2,77777,9,999999999,359,0.0500,0,88,999.000,999.0,99.0 +1988,10,1,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,19.4,61,101500,251,1365,422,10,6,9,1100,500,1000,270,50,4.1,7,7,40.2,1220,9,999999999,350,0.0500,0,88,999.000,999.0,99.0 +1988,10,1,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,19.4,65,101600,13,398,416,0,0,0,0,0,0,0,50,3.6,7,7,24.1,1220,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1988,10,1,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,19.4,67,101600,0,0,408,0,0,0,0,0,0,0,60,3.6,6,6,24.1,7620,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1988,10,1,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,20.0,72,101700,0,0,392,0,0,0,0,0,0,0,40,3.6,2,2,24.1,77777,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1988,10,1,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,19.4,74,101700,0,0,373,0,0,0,0,0,0,0,110,1.5,0,0,24.1,77777,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1988,10,1,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,19.4,79,101700,0,0,368,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1988,10,1,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,18.9,84,101600,0,0,359,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1988,10,2,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,20.0,82,101600,0,0,368,0,0,0,0,0,0,0,310,1.5,0,0,24.1,77777,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1988,10,2,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,20.0,87,101500,0,0,363,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1988,10,2,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,19.4,82,101500,0,0,365,0,0,0,0,0,0,0,30,1.5,0,0,24.1,77777,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1988,10,2,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,19.4,87,101500,0,0,360,0,0,0,0,0,0,0,340,1.5,0,0,24.1,77777,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1988,10,2,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,20.0,90,101400,0,0,360,0,0,0,0,0,0,0,290,1.5,0,0,24.1,77777,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1988,10,2,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,18.9,87,101500,0,0,363,41,209,15,0,0,0,0,310,1.5,1,1,24.1,77777,9,999999999,340,0.0250,0,88,999.000,999.0,99.0 +1988,10,2,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,19.4,87,101600,53,808,367,197,656,29,7100,33300,4700,330,300,2.1,1,1,32.2,77777,9,999999999,350,0.0250,0,88,999.000,999.0,99.0 +1988,10,2,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,20.0,69,101600,344,1365,390,427,811,42,26000,70000,8300,870,0,0.0,1,1,40.2,77777,9,999999999,359,0.0250,0,88,999.000,999.0,99.0 +1988,10,2,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,19.4,57,101600,643,1365,413,604,682,152,48500,65500,17500,2960,50,3.6,3,3,40.2,77777,9,999999999,350,0.0250,0,88,999.000,999.0,99.0 +1988,10,2,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,18.9,51,101600,896,1365,422,734,746,137,67000,75900,17000,3600,140,3.1,4,4,40.2,77777,9,999999999,329,0.0250,0,88,999.000,999.0,99.0 +1988,10,2,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,20.0,55,101600,1087,1365,420,872,796,169,83500,79700,19900,5360,120,5.2,3,3,40.2,77777,9,999999999,359,0.0250,0,88,999.000,999.0,99.0 +1988,10,2,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,21.1,59,101500,1201,1365,425,908,812,172,93400,81800,21200,7690,150,7.2,4,4,40.2,77777,9,999999999,379,0.0250,0,88,999.000,999.0,99.0 +1988,10,2,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,20.6,53,101400,1230,1365,430,831,714,214,92100,73100,26000,11550,160,7.2,4,4,40.2,77777,9,999999999,370,0.0250,0,88,999.000,999.0,99.0 +1988,10,2,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,19.4,47,101300,1174,1365,438,605,524,206,70300,53600,24100,9170,140,7.2,5,5,40.2,77777,9,999999999,350,0.0250,0,88,999.000,999.0,99.0 +1988,10,2,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,19.4,48,101300,1035,1365,432,581,774,112,75500,78600,15700,3560,120,7.7,4,4,40.2,77777,9,999999999,350,0.0250,0,88,999.000,999.0,99.0 +1988,10,2,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,18.9,48,101300,824,1365,425,334,605,86,48600,60800,11700,2140,80,5.2,3,3,40.2,77777,9,999999999,329,0.0250,0,88,999.000,999.0,99.0 +1988,10,2,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,18.9,53,101300,554,1365,415,91,238,47,15800,23200,6300,1010,50,5.2,3,3,40.2,77777,9,999999999,329,0.0250,0,88,999.000,999.0,99.0 +1988,10,2,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,19.4,61,101300,246,1365,407,14,42,8,2000,3000,1400,130,40,4.6,3,3,32.2,77777,9,999999999,350,0.0250,0,88,999.000,999.0,99.0 +1988,10,2,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,20.6,72,101400,12,375,396,0,0,0,0,0,0,0,10,3.6,2,2,24.1,77777,9,999999999,370,0.0400,0,88,999.000,999.0,99.0 +1988,10,2,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,20.0,72,101500,0,0,387,0,0,0,0,0,0,0,60,3.1,1,1,24.1,77777,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1988,10,2,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,20.6,74,101500,0,0,388,0,0,0,0,0,0,0,50,3.1,1,1,24.1,77777,9,999999999,370,0.0400,0,88,999.000,999.0,99.0 +1988,10,2,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,20.6,74,101600,0,0,397,0,0,0,0,0,0,0,60,2.6,3,3,24.1,77777,9,999999999,370,0.0400,0,88,999.000,999.0,99.0 +1988,10,2,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,20.6,76,101500,0,0,385,0,0,0,0,0,0,0,60,3.1,1,1,24.1,77777,9,999999999,370,0.0400,0,88,999.000,999.0,99.0 +1988,10,2,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,20.6,79,101500,0,0,382,0,0,0,0,0,0,0,50,2.6,1,1,24.1,77777,9,999999999,370,0.0400,0,88,999.000,999.0,99.0 +1988,10,3,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,20.0,76,101500,0,0,381,0,0,0,0,0,0,0,60,3.1,1,1,24.1,77777,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1988,10,3,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,20.0,82,101400,0,0,375,0,0,0,0,0,0,0,80,2.1,1,1,24.1,77777,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1988,10,3,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,19.4,76,101400,0,0,378,0,0,0,0,0,0,0,340,1.5,1,1,24.1,77777,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1988,10,3,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,18.9,79,101400,0,0,372,0,0,0,0,0,0,0,50,3.1,1,1,24.1,77777,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1988,10,3,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,18.9,87,101400,0,0,363,0,0,0,0,0,0,0,310,2.1,1,1,24.1,77777,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1988,10,3,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,18.9,87,101400,0,0,363,40,207,13,0,0,0,0,280,1.5,1,1,24.1,77777,9,999999999,340,0.0210,0,88,999.000,999.0,99.0 +1988,10,3,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,18.9,84,101500,53,808,366,190,602,37,7200,29000,5200,230,320,1.5,1,1,32.2,77777,9,999999999,340,0.0210,0,88,999.000,999.0,99.0 +1988,10,3,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,19.4,67,101500,342,1366,389,378,645,72,23800,53200,10500,1280,340,2.1,1,1,40.2,77777,9,999999999,350,0.0210,0,88,999.000,999.0,99.0 +1988,10,3,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,18.9,57,101500,641,1366,400,619,864,50,48200,83700,8800,1300,60,4.1,1,1,40.2,77777,9,999999999,340,0.0210,0,88,999.000,999.0,99.0 +1988,10,3,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,18.3,50,101500,894,1366,418,782,811,134,69000,80700,16000,3130,150,4.1,3,3,40.2,77777,9,999999999,329,0.0210,0,88,999.000,999.0,99.0 +1988,10,3,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,20.0,55,101500,1084,1366,416,679,625,129,66900,63300,16500,4390,150,6.2,2,2,40.2,77777,9,999999999,359,0.0210,0,88,999.000,999.0,99.0 +1988,10,3,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,18.9,48,101400,1198,1366,421,936,966,64,95900,97200,10400,2970,140,7.2,2,2,40.2,77777,9,999999999,329,0.0210,0,88,999.000,999.0,99.0 +1988,10,3,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,17.2,41,101300,1227,1366,424,817,782,144,91200,79500,19600,7340,70,5.2,2,2,40.2,77777,9,999999999,309,0.0210,0,88,999.000,999.0,99.0 +1988,10,3,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,16.7,39,101300,1170,1366,424,751,862,97,86800,86500,12500,3750,60,7.2,2,2,40.2,77777,9,999999999,290,0.0210,0,88,999.000,999.0,99.0 +1988,10,3,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,18.3,45,101200,1031,1366,417,586,899,44,77000,90200,8600,1610,60,8.2,1,1,40.2,77777,9,999999999,320,0.0210,0,88,999.000,999.0,99.0 +1988,10,3,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,18.9,50,101300,820,1366,412,362,821,30,56300,81600,7200,1000,60,6.7,1,1,40.2,77777,9,999999999,340,0.0210,0,88,999.000,999.0,99.0 +1988,10,3,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,18.9,55,101300,550,1366,403,125,562,25,27100,53500,5500,790,70,6.7,1,1,40.2,77777,9,999999999,340,0.0210,0,88,999.000,999.0,99.0 +1988,10,3,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,20.0,65,101300,241,1366,395,17,75,6,2300,5800,1200,130,70,6.7,1,1,40.2,77777,9,999999999,359,0.0210,0,88,999.000,999.0,99.0 +1988,10,3,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,20.0,69,101400,10,353,382,0,0,0,0,0,0,0,60,5.2,0,0,24.1,77777,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1988,10,3,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,20.0,72,101400,0,0,380,0,0,0,0,0,0,0,70,4.6,0,0,24.1,77777,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1988,10,3,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,25.0,20.0,74,101400,0,0,377,0,0,0,0,0,0,0,50,4.2,0,0,24.1,77777,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1988,10,3,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.5,19.9,76,101500,0,0,374,0,0,0,0,0,0,0,30,3.8,0,0,24.1,77777,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1988,10,3,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,23.9,19.6,78,101500,0,0,371,0,0,0,0,0,0,0,360,3.4,0,0,24.1,77777,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1988,10,3,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,23.4,19.6,80,101500,0,0,368,0,0,0,0,0,0,0,340,3.0,0,0,24.1,77777,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1988,10,4,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,19.4,82,101500,0,0,365,0,0,0,0,0,0,0,320,2.6,0,0,24.1,77777,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1988,10,4,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,19.4,82,101500,0,0,365,0,0,0,0,0,0,0,320,2.6,0,0,24.1,77777,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1988,10,4,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,19.4,87,101400,0,0,360,0,0,0,0,0,0,0,310,1.5,0,0,24.1,77777,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1988,10,4,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,19.4,87,101400,0,0,360,0,0,0,0,0,0,0,310,2.1,0,0,24.1,77777,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1988,10,4,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,19.4,87,101400,0,0,360,0,0,0,0,0,0,0,320,1.5,0,0,24.1,77777,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1988,10,4,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,19.4,90,101500,0,0,357,37,167,16,0,0,0,0,300,1.5,0,0,24.1,77777,9,999999999,350,0.0430,0,88,999.000,999.0,99.0 +1988,10,4,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,19.4,87,101500,52,786,360,200,656,35,7400,31800,5200,260,310,2.1,0,0,40.2,77777,9,999999999,350,0.0430,0,88,999.000,999.0,99.0 +1988,10,4,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,20.6,74,101600,340,1367,381,442,824,53,26200,69400,8900,970,300,2.1,0,0,32.2,77777,9,999999999,370,0.0430,0,88,999.000,999.0,99.0 +1988,10,4,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,18.9,55,101600,639,1367,396,659,901,67,51200,87100,10400,1460,120,2.1,0,0,40.2,77777,9,999999999,340,0.0430,0,88,999.000,999.0,99.0 +1988,10,4,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,18.3,50,101600,892,1367,418,778,773,163,70400,78000,19300,4160,140,5.2,3,3,40.2,77777,9,999999999,329,0.0430,0,88,999.000,999.0,99.0 +1988,10,4,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,20.0,53,101500,1082,1367,427,540,367,217,55900,38400,25400,7540,140,5.2,4,4,40.2,77777,9,999999999,359,0.0430,0,88,999.000,999.0,99.0 +1988,10,4,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,21.1,55,101500,1195,1367,428,862,756,181,88100,75900,21600,7800,140,7.2,3,3,40.2,77777,9,999999999,379,0.0430,0,88,999.000,999.0,99.0 +1988,10,4,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,21.1,55,101400,1224,1367,431,733,614,206,81300,63000,24800,10800,140,7.2,4,4,32.2,77777,9,999999999,379,0.0430,0,88,999.000,999.0,99.0 +1988,10,4,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,18.9,48,101300,1167,1367,428,597,558,176,70500,57400,21400,7710,80,5.2,4,4,32.2,77777,9,999999999,329,0.0430,0,88,999.000,999.0,99.0 +1988,10,4,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,19.4,47,101300,1027,1367,432,451,521,139,57500,53600,17100,4480,60,7.2,3,3,32.2,77777,9,999999999,350,0.0430,0,88,999.000,999.0,99.0 +1988,10,4,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,20.6,53,101300,815,1367,427,330,540,114,46700,54700,14000,2770,70,6.2,3,3,32.2,77777,9,999999999,370,0.0430,0,88,999.000,999.0,99.0 +1988,10,4,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,19.4,57,101400,545,1367,417,112,187,79,17200,18600,9800,1480,70,6.2,4,4,32.2,77777,9,999999999,350,0.0430,0,88,999.000,999.0,99.0 +1988,10,4,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,20.0,63,101400,236,1367,414,8,12,6,1000,800,900,90,50,5.7,5,5,32.2,77777,9,999999999,359,0.0430,0,88,999.000,999.0,99.0 +1988,10,4,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,19.4,65,101500,9,353,397,0,0,0,0,0,0,0,40,5.2,2,2,24.1,77777,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1988,10,4,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,20.0,69,101600,0,0,390,0,0,0,0,0,0,0,50,4.1,1,1,24.1,77777,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1988,10,4,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,20.6,72,101600,0,0,390,0,0,0,0,0,0,0,70,3.6,1,1,24.1,77777,9,999999999,370,0.0400,0,88,999.000,999.0,99.0 +1988,10,4,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,20.6,74,101600,0,0,388,0,0,0,0,0,0,0,50,3.6,1,1,24.1,77777,9,999999999,370,0.0400,0,88,999.000,999.0,99.0 +1988,10,4,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,20.6,74,101600,0,0,388,0,0,0,0,0,0,0,60,4.1,1,1,24.1,77777,9,999999999,370,0.0400,0,88,999.000,999.0,99.0 +1988,10,4,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,20.6,74,101600,0,0,388,0,0,0,0,0,0,0,50,3.1,1,1,24.1,77777,9,999999999,370,0.0400,0,88,999.000,999.0,99.0 +1988,10,5,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,20.0,74,101600,0,0,377,0,0,0,0,0,0,0,40,2.6,0,0,24.1,77777,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1988,10,5,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,20.6,76,101500,0,0,385,0,0,0,0,0,0,0,40,2.6,1,1,24.1,77777,9,999999999,370,0.0400,0,88,999.000,999.0,99.0 +1988,10,5,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,20.6,76,101500,0,0,385,0,0,0,0,0,0,0,30,3.6,1,1,24.1,77777,9,999999999,370,0.0400,0,88,999.000,999.0,99.0 +1988,10,5,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,20.0,76,101500,0,0,381,0,0,0,0,0,0,0,50,3.1,1,1,24.1,77777,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1988,10,5,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,20.0,76,101500,0,0,381,0,0,0,0,0,0,0,30,4.1,1,1,24.1,77777,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1988,10,5,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,20.0,74,101600,0,0,389,29,73,20,0,0,0,0,40,3.1,2,2,24.1,77777,9,999999999,359,0.0680,0,88,999.000,999.0,99.0 +1988,10,5,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,20.6,74,101600,51,787,397,160,293,86,10100,9800,9400,2310,60,3.6,3,3,40.2,77777,9,999999999,370,0.0680,0,88,999.000,999.0,99.0 +1988,10,5,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,21.1,72,101700,339,1368,434,196,107,146,18800,9500,16500,3260,60,5.2,9,9,32.2,610,9,999999999,390,0.0680,0,88,999.000,999.0,99.0 +1988,10,5,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,20.0,59,101700,637,1368,417,519,468,212,45600,47800,23200,4790,70,8.2,4,4,40.2,77777,9,999999999,359,0.0680,0,88,999.000,999.0,99.0 +1988,10,5,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,20.6,57,101700,890,1368,436,678,441,329,65700,47100,34900,9060,90,7.7,7,7,40.2,1370,9,999999999,370,0.0680,0,88,999.000,999.0,99.0 +1988,10,5,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,19.4,52,101700,1079,1368,433,719,461,315,72000,48000,34000,11130,70,7.2,6,6,40.2,1370,9,999999999,350,0.0680,0,88,999.000,999.0,99.0 +1988,10,5,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,18.9,48,101600,1192,1368,428,939,799,223,98000,81500,26800,10370,60,8.2,4,4,40.2,77777,9,999999999,340,0.0680,0,88,999.000,999.0,99.0 +1988,10,5,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,18.3,47,101600,1220,1368,431,638,479,229,70000,48900,26300,11740,60,9.3,5,5,40.2,77777,9,999999999,329,0.0680,0,88,999.000,999.0,99.0 +1988,10,5,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,18.3,44,101500,1163,1368,434,829,849,191,94600,84800,22300,7240,60,7.7,4,4,40.2,77777,9,999999999,329,0.0680,0,88,999.000,999.0,99.0 +1988,10,5,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,18.3,47,101500,1023,1368,424,537,690,126,68300,69700,16100,3780,70,6.7,3,3,40.2,77777,9,999999999,329,0.0680,0,88,999.000,999.0,99.0 +1988,10,5,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,19.4,52,101500,810,1368,419,344,721,57,51200,71400,8700,1580,70,6.7,2,2,40.2,77777,9,999999999,350,0.0680,0,88,999.000,999.0,99.0 +1988,10,5,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,19.4,57,101500,540,1368,420,92,207,57,15900,20000,8000,1040,100,5.2,5,5,40.2,77777,9,999999999,350,0.0680,0,88,999.000,999.0,99.0 +1988,10,5,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,20.0,63,101500,231,1368,414,9,17,6,1100,1200,900,90,70,5.2,5,5,32.2,77777,9,999999999,359,0.0680,0,88,999.000,999.0,99.0 +1988,10,5,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,21.1,74,101600,8,331,400,0,0,0,0,0,0,0,50,5.2,3,3,24.1,77777,9,999999999,379,0.0400,0,88,999.000,999.0,99.0 +1988,10,5,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,20.6,69,101700,0,0,399,0,0,0,0,0,0,0,70,3.6,2,2,24.1,77777,9,999999999,370,0.0400,0,88,999.000,999.0,99.0 +1988,10,5,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,20.0,72,101700,0,0,396,0,0,0,0,0,0,0,50,5.2,3,3,24.1,77777,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1988,10,5,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,20.6,72,101700,0,0,390,0,0,0,0,0,0,0,80,5.7,1,1,24.1,77777,9,999999999,370,0.0400,0,88,999.000,999.0,99.0 +1988,10,5,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,20.0,69,101700,0,0,390,0,0,0,0,0,0,0,50,6.2,1,1,24.1,77777,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1988,10,5,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,20.0,72,101700,0,0,387,0,0,0,0,0,0,0,60,4.1,1,1,24.1,77777,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1988,10,6,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,20.0,72,101700,0,0,392,0,0,0,0,0,0,0,80,2.1,2,2,24.1,77777,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1988,10,6,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,20.6,74,101600,0,0,393,0,0,0,0,0,0,0,50,4.1,2,2,24.1,77777,9,999999999,370,0.0400,0,88,999.000,999.0,99.0 +1988,10,6,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,20.0,74,101500,0,0,384,0,0,0,0,0,0,0,50,3.6,1,1,24.1,77777,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1988,10,6,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,19.4,74,101500,0,0,385,0,0,0,0,0,0,0,40,1.5,2,2,24.1,77777,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1988,10,6,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,20.6,76,101600,0,0,385,0,0,0,0,0,0,0,50,3.1,1,1,24.1,77777,9,999999999,370,0.0400,0,88,999.000,999.0,99.0 +1988,10,6,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,20.6,79,101600,0,0,387,32,103,19,0,0,0,0,40,3.1,2,2,24.1,77777,9,999999999,370,0.0310,0,88,999.000,999.0,99.0 +1988,10,6,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,20.6,74,101600,50,787,400,139,207,88,9700,6900,9200,2390,10,2.6,4,4,40.2,77777,9,999999999,370,0.0310,0,88,999.000,999.0,99.0 +1988,10,6,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,20.6,65,101700,337,1369,409,408,666,96,25900,53300,12800,1570,70,6.2,3,3,40.2,77777,9,999999999,370,0.0310,0,88,999.000,999.0,99.0 +1988,10,6,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,19.4,55,101700,635,1369,416,643,848,89,50000,82000,11800,1780,60,4.6,3,3,40.2,77777,9,999999999,350,0.0310,0,88,999.000,999.0,99.0 +1988,10,6,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,20.6,57,101700,888,1369,421,760,759,159,68800,76700,18900,4040,60,3.6,3,3,40.2,77777,9,999999999,370,0.0310,0,88,999.000,999.0,99.0 +1988,10,6,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,21.1,57,101700,1076,1369,428,774,567,279,77800,59100,31200,9710,70,7.2,4,4,24.1,77777,9,999999999,379,0.0310,0,88,999.000,999.0,99.0 +1988,10,6,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,21.1,63,101700,1189,1369,431,648,299,381,70200,32500,41900,16690,60,5.2,7,7,24.1,1220,9,999999999,379,0.0310,0,88,999.000,999.0,99.0 +1988,10,6,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,20.0,52,101700,1217,1369,437,942,831,235,103700,84700,28200,11850,60,7.2,6,6,32.2,1220,9,999999999,359,0.0310,0,88,999.000,999.0,99.0 +1988,10,6,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,20.0,52,101500,1159,1369,433,776,820,163,90400,82600,20200,6360,60,6.2,5,5,32.2,77777,9,999999999,359,0.0310,0,88,999.000,999.0,99.0 +1988,10,6,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,20.0,55,101500,1019,1369,435,433,405,193,54600,42300,23000,5870,60,6.7,7,7,32.2,6100,9,999999999,359,0.0310,0,88,999.000,999.0,99.0 +1988,10,6,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,20.6,57,101500,806,1369,427,271,361,129,38000,37100,16100,2900,50,6.7,9,5,40.2,7010,9,999999999,370,0.0310,0,88,999.000,999.0,99.0 +1988,10,6,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,20.0,61,101500,535,1369,417,90,262,46,16300,25300,6300,980,50,6.7,9,5,32.2,7010,9,999999999,359,0.0310,0,88,999.000,999.0,99.0 +1988,10,6,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,20.0,65,101600,226,1369,411,9,7,8,1000,500,900,230,60,5.7,9,5,24.1,7620,9,999999999,359,0.0310,0,88,999.000,999.0,99.0 +1988,10,6,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,20.6,69,101600,7,308,406,0,0,0,0,0,0,0,70,5.7,8,4,24.1,77777,9,999999999,370,0.0400,0,88,999.000,999.0,99.0 +1988,10,6,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,20.0,67,101700,0,0,398,0,0,0,0,0,0,0,50,5.2,3,2,24.1,77777,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1988,10,6,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,20.0,67,101700,0,0,402,0,0,0,0,0,0,0,40,5.2,4,3,24.1,77777,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1988,10,6,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,20.6,69,101800,0,0,399,0,0,0,0,0,0,0,60,5.7,3,2,24.1,77777,9,999999999,370,0.0400,0,88,999.000,999.0,99.0 +1988,10,6,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,20.6,72,101800,0,0,396,0,0,0,0,0,0,0,60,4.6,2,2,24.1,77777,9,999999999,370,0.0400,0,88,999.000,999.0,99.0 +1988,10,6,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,20.6,72,101700,0,0,400,0,0,0,0,0,0,0,60,4.1,3,3,24.1,77777,9,999999999,370,0.0400,0,88,999.000,999.0,99.0 +1988,10,7,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,20.0,69,101700,0,0,390,0,0,0,0,0,0,0,60,5.7,1,1,24.1,77777,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1988,10,7,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,20.0,69,101600,0,0,395,0,0,0,0,0,0,0,60,5.7,2,2,24.1,77777,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1988,10,7,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,20.0,72,101600,0,0,387,0,0,0,0,0,0,0,50,4.1,1,1,24.1,77777,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1988,10,7,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,19.4,69,101600,0,0,386,0,0,0,0,0,0,0,70,4.1,1,1,24.1,77777,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1988,10,7,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,20.0,72,101500,0,0,392,0,0,0,0,0,0,0,50,6.2,2,2,24.1,77777,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1988,10,7,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,20.0,72,101500,0,0,396,36,58,29,0,0,0,0,50,5.2,3,3,24.1,77777,9,999999999,359,0.0310,0,88,999.000,999.0,99.0 +1988,10,7,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,20.0,72,101600,49,765,402,144,162,103,11300,6200,10900,2150,70,4.6,5,5,40.2,77777,9,999999999,359,0.0310,0,88,999.000,999.0,99.0 +1988,10,7,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,20.6,63,101600,335,1369,415,216,247,101,16900,20400,11900,2010,60,6.2,4,4,40.2,77777,9,999999999,370,0.0310,0,88,999.000,999.0,99.0 +1988,10,7,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,20.0,59,101700,633,1369,429,439,190,315,42600,18900,33800,7670,70,5.2,7,7,32.2,1220,9,999999999,359,0.0310,0,88,999.000,999.0,99.0 +1988,10,7,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,22.2,85,101700,885,1369,438,182,12,173,21500,900,20900,8150,50,4.1,10,10,16.1,1220,9,999999999,409,0.0310,0,88,999.000,999.0,99.0 +1988,10,7,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,21.7,61,101600,1074,1369,422,845,774,171,83500,79300,21100,5920,70,5.2,7,3,32.2,77777,9,999999999,400,0.0310,0,88,999.000,999.0,99.0 +1988,10,7,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,20.6,53,101600,1186,1369,450,563,229,359,61300,24900,39700,15470,50,7.2,8,8,24.1,1220,9,999999999,370,0.0310,0,88,999.000,999.0,99.0 +1988,10,7,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,20.6,63,101500,1213,1369,443,471,108,380,52700,11500,42400,17260,60,5.7,9,9,24.1,1220,9,999999999,370,0.0310,0,88,999.000,999.0,99.0 +1988,10,7,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,21.1,59,101500,1155,1369,444,430,104,352,48700,11100,39300,14030,70,4.1,8,8,24.1,7620,9,999999999,379,0.0310,0,88,999.000,999.0,99.0 +1988,10,7,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,21.1,63,101400,1014,1369,437,276,82,228,32500,8800,25900,7340,70,5.7,8,8,24.1,7620,9,999999999,379,0.0310,0,88,999.000,999.0,99.0 +1988,10,7,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,20.6,63,101400,801,1369,433,166,74,137,20500,7800,15900,3650,70,6.2,8,8,24.1,7620,9,999999999,370,0.0310,0,88,999.000,999.0,99.0 +1988,10,7,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,20.6,69,101400,530,1369,424,81,116,63,12300,11500,7800,1150,50,5.2,8,8,24.1,7620,9,999999999,370,0.0310,0,88,999.000,999.0,99.0 +1988,10,7,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,21.1,72,101400,221,1369,425,5,2,5,600,100,600,150,60,5.2,8,8,24.1,7620,9,999999999,390,0.0310,0,88,999.000,999.0,99.0 +1988,10,7,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,21.1,79,101500,6,285,415,0,0,0,0,0,0,0,90,4.1,8,8,19.3,7620,9,999999999,379,0.0400,0,88,999.000,999.0,99.0 +1988,10,7,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,20.6,74,101600,0,0,400,0,0,0,0,0,0,0,10,3.6,4,4,24.1,77777,9,999999999,370,0.0400,0,88,999.000,999.0,99.0 +1988,10,7,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,21.7,85,101600,0,0,395,0,0,0,0,0,0,0,20,2.6,4,4,24.1,77777,9,999999999,400,0.0400,0,88,999.000,999.0,99.0 +1988,10,7,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,21.1,77,101600,0,0,412,0,0,0,0,0,0,0,80,3.1,7,7,19.3,1220,9,999999999,390,0.0400,0,88,999.000,999.0,99.0 +1988,10,7,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,21.1,77,101600,0,0,407,0,0,0,0,0,0,0,60,3.6,6,6,19.3,1220,9,999999999,390,0.0400,0,88,999.000,999.0,99.0 +1988,10,7,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,20.6,76,101600,0,0,394,0,0,0,0,0,0,0,50,4.1,3,3,24.1,77777,9,999999999,370,0.0400,0,88,999.000,999.0,99.0 +1988,10,8,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,20.0,74,101500,0,0,389,0,0,0,0,0,0,0,70,3.1,2,2,24.1,77777,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1988,10,8,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,20.6,79,101500,0,0,391,0,0,0,0,0,0,0,80,2.6,3,3,24.1,77777,9,999999999,370,0.0400,0,88,999.000,999.0,99.0 +1988,10,8,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,20.0,79,101400,0,0,384,0,0,0,0,0,0,0,60,2.1,2,2,24.1,77777,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1988,10,8,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,20.6,79,101400,0,0,391,0,0,0,0,0,0,0,60,3.1,3,3,24.1,77777,9,999999999,370,0.0400,0,88,999.000,999.0,99.0 +1988,10,8,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,20.0,76,101400,0,0,386,0,0,0,0,0,0,0,50,3.1,2,2,24.1,77777,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1988,10,8,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,20.6,82,101400,0,0,388,33,105,19,0,0,0,0,90,2.1,3,3,24.1,77777,9,999999999,370,0.0300,0,88,999.000,999.0,99.0 +1988,10,8,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,20.6,76,101400,48,765,397,164,282,94,10600,9100,10000,2660,80,2.1,4,4,40.2,77777,9,999999999,370,0.0300,0,88,999.000,999.0,99.0 +1988,10,8,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,20.6,67,101500,333,1370,412,351,491,123,24200,39700,14500,2410,50,5.7,5,5,40.2,77777,9,999999999,370,0.0300,0,88,999.000,999.0,99.0 +1988,10,8,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,20.0,57,101500,631,1370,417,542,579,167,45400,57100,19100,3440,70,4.1,7,3,32.2,77777,9,999999999,359,0.0300,0,88,999.000,999.0,99.0 +1988,10,8,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,19.4,53,101500,883,1370,419,671,643,165,61000,64800,19100,4140,60,4.1,7,3,32.2,77777,9,999999999,350,0.0300,0,88,999.000,999.0,99.0 +1988,10,8,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,18.3,48,101500,1071,1370,444,443,140,321,47600,14900,35900,11120,60,6.2,8,8,32.2,7620,9,999999999,329,0.0300,0,88,999.000,999.0,99.0 +1988,10,8,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,18.3,45,101400,1183,1370,443,530,253,306,58400,27600,34500,12840,70,5.7,9,7,32.2,7620,9,999999999,329,0.0300,0,88,999.000,999.0,99.0 +1988,10,8,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,17.8,41,101300,1210,1370,440,763,590,265,82900,59700,30000,12830,60,6.2,8,5,40.2,7620,9,999999999,320,0.0300,0,88,999.000,999.0,99.0 +1988,10,8,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,18.3,44,101300,1151,1370,446,613,468,266,71800,49000,30500,11000,50,6.2,8,7,40.2,7620,9,999999999,329,0.0300,0,88,999.000,999.0,99.0 +1988,10,8,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,17.2,42,101200,1010,1370,458,336,92,282,38600,9400,31700,10700,60,7.2,9,9,40.2,7620,9,999999999,300,0.0300,0,88,999.000,999.0,99.0 +1988,10,8,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,17.2,45,101200,797,1370,442,230,142,175,28800,14900,20100,4650,60,7.2,8,8,40.2,7620,9,999999999,309,0.0300,0,88,999.000,999.0,99.0 +1988,10,8,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,18.9,55,101300,526,1370,444,59,31,54,7300,2900,6200,1720,60,7.2,9,9,32.2,1370,9,999999999,340,0.0300,0,88,999.000,999.0,99.0 +1988,10,8,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,18.3,58,101300,216,1370,433,5,3,4,500,200,500,120,60,6.2,9,9,24.1,1370,9,999999999,320,0.0300,0,88,999.000,999.0,99.0 +1988,10,8,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,18.9,65,101300,5,263,428,0,0,0,0,0,0,0,50,5.2,9,9,24.1,1370,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1988,10,8,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,19.4,67,101400,0,0,419,0,0,0,0,0,0,0,50,5.2,8,8,24.1,7620,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1988,10,8,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,20.0,72,101400,0,0,417,0,0,0,0,0,0,0,60,4.6,8,8,24.1,7620,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1988,10,8,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,20.0,72,101400,0,0,417,0,0,0,0,0,0,0,60,4.1,8,8,24.1,7620,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1988,10,8,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,20.6,74,101400,0,0,427,0,0,0,0,0,0,0,70,4.6,9,9,24.1,7620,9,999999999,370,0.0400,0,88,999.000,999.0,99.0 +1988,10,8,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,21.1,87,101400,0,0,395,0,0,0,0,0,0,0,50,2.1,7,6,24.1,7620,9,999999999,379,0.0400,0,88,999.000,999.0,99.0 +1988,10,9,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,20.6,82,101300,0,0,394,0,0,0,0,0,0,0,60,2.1,8,5,24.1,7620,9,999999999,370,0.0400,0,88,999.000,999.0,99.0 +1988,10,9,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,20.6,82,101300,0,0,394,0,0,0,0,0,0,0,50,2.6,8,5,24.1,7620,9,999999999,370,0.0400,0,88,999.000,999.0,99.0 +1988,10,9,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,20.0,84,101300,0,0,385,0,0,0,0,0,0,0,50,2.1,7,4,24.1,7620,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1988,10,9,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,20.6,87,101300,0,0,385,0,0,0,0,0,0,0,300,2.1,6,4,24.1,7620,9,999999999,370,0.0400,0,88,999.000,999.0,99.0 +1988,10,9,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,20.0,84,101200,0,0,382,0,0,0,0,0,0,0,350,2.6,5,3,24.1,77777,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1988,10,9,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,20.0,84,101300,0,0,382,32,38,27,0,0,0,0,330,2.6,5,3,24.1,77777,9,999999999,359,0.0160,0,88,999.000,999.0,99.0 +1988,10,9,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,20.0,82,101300,47,766,394,109,151,72,8300,6100,7900,1500,340,1.5,8,6,32.2,7620,9,999999999,359,0.0160,0,88,999.000,999.0,99.0 +1988,10,9,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,20.6,69,101400,331,1371,418,315,278,186,26300,22800,20800,4080,90,2.6,7,7,32.2,7620,9,999999999,370,0.0160,0,88,999.000,999.0,99.0 +1988,10,9,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,20.6,63,101400,629,1371,422,477,322,268,43200,32700,28100,6420,120,2.6,6,6,32.2,7620,9,999999999,370,0.0160,0,88,999.000,999.0,99.0 +1988,10,9,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,20.6,59,101400,880,1371,440,568,294,337,55800,31400,35700,9260,190,4.1,8,8,32.2,7620,9,999999999,370,0.0160,0,88,999.000,999.0,99.0 +1988,10,9,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,21.1,59,101400,1068,1371,444,600,287,351,62400,31100,38200,11870,130,5.2,8,8,32.2,7620,9,999999999,379,0.0160,0,88,999.000,999.0,99.0 +1988,10,9,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,20.0,53,101300,1179,1371,446,683,389,338,71800,40600,36700,15320,140,6.2,8,8,32.2,7620,9,999999999,359,0.0160,0,88,999.000,999.0,99.0 +1988,10,9,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,20.6,59,101200,1206,1371,433,694,430,332,76200,44900,36600,16380,160,5.7,7,7,32.2,7620,9,999999999,370,0.0160,0,88,999.000,999.0,99.0 +1988,10,9,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,19.4,53,101200,1147,1371,442,356,40,326,39700,4100,36300,14120,180,5.7,8,8,32.2,7620,9,999999999,350,0.0160,0,88,999.000,999.0,99.0 +1988,10,9,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,21.1,61,101100,1006,1371,450,297,91,244,34800,9700,27600,7770,160,5.7,9,9,32.2,7620,9,999999999,379,0.0160,0,88,999.000,999.0,99.0 +1988,10,9,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,20.6,63,101100,792,1371,455,170,4,168,20000,300,19800,7560,140,6.2,10,10,32.2,3050,9,999999999,370,0.0160,0,88,999.000,999.0,99.0 +1988,10,9,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,21.1,67,101200,521,1371,440,53,4,53,6700,200,6600,2420,180,4.1,9,9,24.1,1370,9,999999999,379,0.0160,0,88,999.000,999.0,99.0 +1988,10,9,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,21.7,72,101200,212,1371,450,2,0,2,300,0,300,90,180,3.1,10,10,16.1,1370,9,999999999,400,0.0160,0,88,999.000,999.0,99.0 +1988,10,9,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,22.2,90,101300,5,240,431,0,0,0,0,0,0,0,230,3.1,10,10,16.1,1220,9,999999999,409,0.0400,0,88,999.000,999.0,99.0 +1988,10,9,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,22.2,94,101400,0,0,428,0,0,0,0,0,0,0,230,3.1,10,10,16.1,1220,9,999999999,409,0.0400,0,88,999.000,999.0,99.0 +1988,10,9,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,21.7,87,101400,0,0,431,0,0,0,0,0,0,0,270,2.1,10,10,16.1,1220,9,999999999,390,0.0400,0,88,999.000,999.0,99.0 +1988,10,9,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,21.1,85,101400,0,0,430,0,0,0,0,0,0,0,290,2.6,10,10,24.1,1220,9,999999999,390,0.0400,0,88,999.000,999.0,99.0 +1988,10,9,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,21.1,87,101400,0,0,400,0,0,0,0,0,0,0,320,3.1,7,7,24.1,7620,9,999999999,379,0.0400,0,88,999.000,999.0,99.0 +1988,10,9,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,20.6,85,101300,0,0,394,0,0,0,0,0,0,0,310,3.1,6,6,24.1,7010,9,999999999,370,0.0400,0,88,999.000,999.0,99.0 +1988,10,10,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,21.1,87,101300,0,0,391,0,0,0,0,0,0,0,300,2.1,7,5,24.1,7010,9,999999999,379,0.0400,0,88,999.000,999.0,99.0 +1988,10,10,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,20.6,87,101300,0,0,392,0,0,0,0,0,0,0,310,3.1,8,6,24.1,7010,9,999999999,370,0.0400,0,88,999.000,999.0,99.0 +1988,10,10,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,20.6,87,101200,0,0,388,0,0,0,0,0,0,0,320,2.1,8,5,24.1,7010,9,999999999,370,0.0400,0,88,999.000,999.0,99.0 +1988,10,10,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,20.6,90,101200,0,0,376,0,0,0,0,0,0,0,320,2.6,3,2,24.1,77777,9,999999999,370,0.0400,0,88,999.000,999.0,99.0 +1988,10,10,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,20.0,87,101300,0,0,370,0,0,0,0,0,0,0,270,2.1,2,1,24.1,77777,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1988,10,10,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,20.0,90,101300,0,0,372,31,80,21,0,0,0,0,320,2.1,3,2,24.1,77777,9,999999999,359,0.0510,0,88,999.000,999.0,99.0 +1988,10,10,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,20.0,90,101300,46,743,372,174,455,64,8700,16900,7600,1370,0,0.0,3,2,32.2,77777,9,999999999,359,0.0510,0,88,999.000,999.0,99.0 +1988,10,10,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,21.1,77,101400,329,1372,401,348,393,166,26200,31900,18500,3820,340,2.1,4,4,32.2,77777,9,999999999,390,0.0510,0,88,999.000,999.0,99.0 +1988,10,10,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,20.6,65,101500,627,1372,409,525,626,122,42400,60500,14600,2450,270,2.1,3,3,32.2,77777,9,999999999,370,0.0510,0,88,999.000,999.0,99.0 +1988,10,10,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,21.1,59,101500,878,1372,417,737,753,149,66900,76200,18000,3760,220,2.6,2,2,32.2,77777,9,999999999,379,0.0510,0,88,999.000,999.0,99.0 +1988,10,10,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,21.7,65,101500,1065,1372,420,823,670,246,80000,67400,27600,8010,150,4.6,4,4,32.2,77777,9,999999999,400,0.0510,0,88,999.000,999.0,99.0 +1988,10,10,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,22.2,63,101500,1176,1372,430,811,700,194,85400,71800,23600,8590,180,5.2,5,5,32.2,77777,9,999999999,409,0.0510,0,88,999.000,999.0,99.0 +1988,10,10,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,21.7,61,101400,1203,1372,429,854,764,214,94600,78100,25900,10230,160,5.7,5,5,32.2,77777,9,999999999,400,0.0510,0,88,999.000,999.0,99.0 +1988,10,10,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,21.7,63,101400,1143,1372,441,401,194,258,47100,21100,29400,9660,160,4.1,8,8,32.2,7010,9,999999999,390,0.0510,0,88,999.000,999.0,99.0 +1988,10,10,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,21.7,61,101300,1002,1372,438,431,393,204,53800,41000,23800,6020,220,3.6,7,7,32.2,3050,9,999999999,390,0.0510,0,88,999.000,999.0,99.0 +1988,10,10,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,21.7,61,101300,788,1372,445,257,232,170,33500,24600,19300,3890,200,5.2,8,8,32.2,1370,9,999999999,390,0.0510,0,88,999.000,999.0,99.0 +1988,10,10,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,21.7,67,101400,516,1372,444,63,28,59,7700,2600,6700,1850,200,3.6,9,9,24.1,1220,9,999999999,390,0.0510,0,88,999.000,999.0,99.0 +1988,10,10,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,21.7,72,101400,207,1372,438,2,1,2,200,100,200,60,180,3.1,9,9,24.1,1220,9,999999999,400,0.0510,0,88,999.000,999.0,99.0 +1988,10,10,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,21.7,74,101500,4,217,447,0,0,0,0,0,0,0,180,2.1,10,10,16.1,610,9,999999999,400,0.0400,0,88,999.000,999.0,99.0 +1988,10,10,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,21.7,74,101600,0,0,447,0,0,0,0,0,0,0,360,3.1,10,10,16.1,610,9,999999999,400,0.0400,0,88,999.000,999.0,99.0 +1988,10,10,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,21.7,79,101600,0,0,408,0,0,0,0,0,0,0,60,3.1,6,6,16.1,7620,9,999999999,400,0.0400,0,88,999.000,999.0,99.0 +1988,10,10,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,21.1,79,101600,0,0,404,0,0,0,0,0,0,0,90,3.1,6,6,24.1,7620,9,999999999,379,0.0400,0,88,999.000,999.0,99.0 +1988,10,10,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,21.1,79,101600,0,0,409,0,0,0,0,0,0,0,70,3.1,7,7,24.1,7620,9,999999999,379,0.0400,0,88,999.000,999.0,99.0 +1988,10,10,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,21.1,79,101600,0,0,398,0,0,0,0,0,0,0,60,2.6,5,4,24.1,77777,9,999999999,379,0.0400,0,88,999.000,999.0,99.0 +1988,10,11,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,21.1,82,101600,0,0,387,0,0,0,0,0,0,0,60,2.6,3,2,24.1,77777,9,999999999,379,0.0400,0,88,999.000,999.0,99.0 +1988,10,11,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,21.1,85,101600,0,0,385,0,0,0,0,0,0,0,0,0.0,3,2,24.1,77777,9,999999999,390,0.0400,0,88,999.000,999.0,99.0 +1988,10,11,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,21.1,90,101600,0,0,374,0,0,0,0,0,0,0,0,0.0,2,1,24.1,77777,9,999999999,379,0.0400,0,88,999.000,999.0,99.0 +1988,10,11,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,20.0,87,101500,0,0,370,0,0,0,0,0,0,0,310,2.1,1,1,24.1,77777,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1988,10,11,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,20.0,87,101600,0,0,370,0,0,0,0,0,0,0,280,1.5,1,1,24.1,77777,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1988,10,11,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,20.0,87,101600,0,0,370,35,175,13,0,0,0,0,310,2.1,1,1,24.1,77777,9,999999999,359,0.0240,0,88,999.000,999.0,99.0 +1988,10,11,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,20.6,90,101600,45,744,370,189,659,30,6800,31800,4700,280,310,2.1,1,1,32.2,77777,9,999999999,370,0.0240,0,88,999.000,999.0,99.0 +1988,10,11,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,20.6,69,101700,327,1373,394,421,846,33,24900,72200,7600,800,0,0.0,1,1,40.2,77777,9,999999999,370,0.0240,0,88,999.000,999.0,99.0 +1988,10,11,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,20.0,59,101700,624,1373,404,610,873,49,47300,84300,8800,1270,100,2.6,1,1,40.2,77777,9,999999999,359,0.0240,0,88,999.000,999.0,99.0 +1988,10,11,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,20.0,53,101800,875,1373,419,665,650,158,60400,65500,18500,3940,70,3.6,2,2,40.2,77777,9,999999999,359,0.0240,0,88,999.000,999.0,99.0 +1988,10,11,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,18.9,47,101700,1062,1373,424,843,878,88,80100,87900,11800,2730,70,4.1,2,2,40.2,77777,9,999999999,340,0.0240,0,88,999.000,999.0,99.0 +1988,10,11,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,18.9,45,101700,1173,1373,434,813,716,184,85800,73600,22800,8080,70,5.2,4,4,40.2,77777,9,999999999,329,0.0240,0,88,999.000,999.0,99.0 +1988,10,11,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,18.9,42,101600,1199,1373,437,869,904,115,93500,90600,14100,4470,60,5.2,3,3,40.2,77777,9,999999999,329,0.0240,0,88,999.000,999.0,99.0 +1988,10,11,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,19.4,52,101600,1139,1373,429,727,778,159,84800,78300,19600,5830,60,5.2,5,5,32.2,77777,9,999999999,350,0.0240,0,88,999.000,999.0,99.0 +1988,10,11,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,20.0,50,101600,997,1373,430,557,777,111,72600,78700,15200,3260,50,5.7,3,3,32.2,77777,9,999999999,359,0.0240,0,88,999.000,999.0,99.0 +1988,10,11,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,19.4,52,101600,783,1373,429,224,278,119,31000,28500,14700,2600,60,6.2,5,5,32.2,77777,9,999999999,350,0.0240,0,88,999.000,999.0,99.0 +1988,10,11,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,20.6,61,101600,512,1373,421,86,268,46,15900,25600,6300,970,60,5.2,5,5,32.2,77777,9,999999999,370,0.0240,0,88,999.000,999.0,99.0 +1988,10,11,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,20.0,67,101600,202,1373,405,7,18,4,900,1200,700,60,60,4.1,4,4,24.1,77777,9,999999999,359,0.0240,0,88,999.000,999.0,99.0 +1988,10,11,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,19.4,67,101700,3,194,401,0,0,0,0,0,0,0,60,4.6,4,4,24.1,77777,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1988,10,11,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,20.0,69,101800,0,0,399,0,0,0,0,0,0,0,60,4.6,3,3,24.1,77777,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1988,10,11,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,20.0,69,101900,0,0,395,0,0,0,0,0,0,0,60,4.6,2,2,24.1,77777,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1988,10,11,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,20.0,72,101900,0,0,392,0,0,0,0,0,0,0,80,2.6,2,2,24.1,77777,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1988,10,11,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,20.0,72,101900,0,0,392,0,0,0,0,0,0,0,60,3.1,2,2,24.1,77777,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1988,10,11,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,20.0,72,101900,0,0,396,0,0,0,0,0,0,0,120,4.1,3,3,24.1,77777,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1988,10,12,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,20.0,76,101800,0,0,381,0,0,0,0,0,0,0,60,3.1,1,1,24.1,77777,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1988,10,12,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,20.6,79,101800,0,0,382,0,0,0,0,0,0,0,40,3.1,1,1,24.1,77777,9,999999999,370,0.0400,0,88,999.000,999.0,99.0 +1988,10,12,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,20.6,79,101700,0,0,382,0,0,0,0,0,0,0,60,3.6,1,1,24.1,77777,9,999999999,370,0.0400,0,88,999.000,999.0,99.0 +1988,10,12,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,20.0,76,101700,0,0,381,0,0,0,0,0,0,0,40,2.6,1,1,24.1,77777,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1988,10,12,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,20.0,74,101700,0,0,389,0,0,0,0,0,0,0,30,2.6,2,2,24.1,77777,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1988,10,12,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,19.4,74,101800,0,0,380,24,60,17,0,0,0,0,60,2.6,1,1,24.1,77777,9,999999999,350,0.0810,0,88,999.000,999.0,99.0 +1988,10,12,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,20.0,74,101800,44,744,389,167,423,66,8600,15400,7600,1430,20,2.6,2,2,32.2,77777,9,999999999,359,0.0810,0,88,999.000,999.0,99.0 +1988,10,12,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,20.0,63,101900,325,1373,404,402,649,105,26200,52100,13800,2010,70,2.1,2,2,40.2,77777,9,999999999,359,0.0810,0,88,999.000,999.0,99.0 +1988,10,12,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,20.0,57,101900,622,1373,413,590,736,119,47000,71100,14700,2390,70,4.1,2,2,40.2,77777,9,999999999,359,0.0810,0,88,999.000,999.0,99.0 +1988,10,12,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,20.6,55,102000,873,1373,435,647,517,246,60500,53200,26600,6210,70,6.7,6,6,32.2,7620,9,999999999,370,0.0810,0,88,999.000,999.0,99.0 +1988,10,12,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,20.6,57,101900,1059,1373,443,644,296,390,66500,32000,41800,13210,40,6.7,8,8,24.1,1370,9,999999999,370,0.0810,0,88,999.000,999.0,99.0 +1988,10,12,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,20.6,53,101800,1170,1373,450,543,249,325,59400,27100,36300,13190,60,5.2,8,8,24.1,1370,9,999999999,370,0.0810,0,88,999.000,999.0,99.0 +1988,10,12,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,21.7,61,101800,1195,1373,467,366,11,357,43200,1000,42300,15850,50,6.2,10,10,24.1,1370,9,999999999,400,0.0810,0,88,999.000,999.0,99.0 +1988,10,12,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,21.7,65,101700,1135,1373,448,442,174,315,51100,18600,35700,12020,60,6.7,9,9,24.1,1220,9,999999999,400,0.0810,0,88,999.000,999.0,99.0 +1988,10,12,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,22.2,67,101600,993,1373,448,298,122,229,35600,13000,26100,7170,40,4.6,9,9,24.1,1220,9,999999999,409,0.0810,0,88,999.000,999.0,99.0 +1988,10,12,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,20.6,61,101700,779,1373,437,211,123,166,26400,12900,19100,4350,60,5.7,8,8,24.1,1220,9,999999999,370,0.0810,0,88,999.000,999.0,99.0 +1988,10,12,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,21.1,65,101600,507,1373,422,76,106,61,11400,10300,7500,1100,60,5.2,6,6,24.1,7620,9,999999999,379,0.0810,0,88,999.000,999.0,99.0 +1988,10,12,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,21.1,69,101700,198,1373,413,3,1,3,400,100,300,90,60,5.7,5,5,24.1,77777,9,999999999,379,0.0810,0,88,999.000,999.0,99.0 +1988,10,12,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,20.6,69,101700,3,195,406,0,0,0,0,0,0,0,60,5.2,4,4,24.1,77777,9,999999999,370,0.0400,0,88,999.000,999.0,99.0 +1988,10,12,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,20.6,69,101800,0,0,399,0,0,0,0,0,0,0,60,3.6,2,2,24.1,77777,9,999999999,370,0.0400,0,88,999.000,999.0,99.0 +1988,10,12,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,20.6,69,101800,0,0,399,0,0,0,0,0,0,0,60,3.6,2,2,24.1,77777,9,999999999,370,0.0400,0,88,999.000,999.0,99.0 +1988,10,12,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,20.6,72,101800,0,0,390,0,0,0,0,0,0,0,60,4.6,1,1,24.1,77777,9,999999999,370,0.0400,0,88,999.000,999.0,99.0 +1988,10,12,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,20.6,72,101800,0,0,396,0,0,0,0,0,0,0,60,4.6,2,2,24.1,77777,9,999999999,370,0.0400,0,88,999.000,999.0,99.0 +1988,10,12,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,21.1,74,101800,0,0,396,0,0,0,0,0,0,0,50,3.6,2,2,24.1,77777,9,999999999,379,0.0400,0,88,999.000,999.0,99.0 +1988,10,13,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,21.1,74,101700,0,0,396,0,0,0,0,0,0,0,40,5.2,2,2,24.1,77777,9,999999999,379,0.0400,0,88,999.000,999.0,99.0 +1988,10,13,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,21.1,74,101700,0,0,400,0,0,0,0,0,0,0,40,4.6,3,3,24.1,77777,9,999999999,379,0.0400,0,88,999.000,999.0,99.0 +1988,10,13,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,21.1,74,101700,0,0,400,0,0,0,0,0,0,0,60,5.2,3,3,24.1,77777,9,999999999,379,0.0400,0,88,999.000,999.0,99.0 +1988,10,13,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,21.1,77,101600,0,0,398,0,0,0,0,0,0,0,60,4.6,3,3,24.1,77777,9,999999999,390,0.0400,0,88,999.000,999.0,99.0 +1988,10,13,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,21.1,79,101700,0,0,391,0,0,0,0,0,0,0,60,4.1,2,2,24.1,77777,9,999999999,379,0.0400,0,88,999.000,999.0,99.0 +1988,10,13,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,21.1,79,101700,0,0,394,37,140,19,0,0,0,0,60,4.1,3,3,24.1,77777,9,999999999,379,0.0160,0,88,999.000,999.0,99.0 +1988,10,13,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,20.6,74,101700,43,722,397,195,545,65,9200,18000,8000,590,50,4.1,3,3,32.2,77777,9,999999999,370,0.0160,0,88,999.000,999.0,99.0 +1988,10,13,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,20.6,69,101800,323,1374,406,358,603,84,22600,47800,11400,1410,40,3.6,4,4,32.2,77777,9,999999999,370,0.0160,0,88,999.000,999.0,99.0 +1988,10,13,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,20.6,63,101800,620,1374,415,608,743,134,48300,71200,16100,2620,60,4.6,4,4,32.2,77777,9,999999999,370,0.0160,0,88,999.000,999.0,99.0 +1988,10,13,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,21.7,67,101800,870,1374,423,729,631,241,67600,64900,26400,6050,50,3.1,6,6,32.2,1220,9,999999999,400,0.0160,0,88,999.000,999.0,99.0 +1988,10,13,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,20.0,53,101800,1056,1374,430,854,751,213,83300,76000,24700,6900,50,5.7,5,5,32.2,77777,9,999999999,359,0.0160,0,88,999.000,999.0,99.0 +1988,10,13,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,20.0,55,101700,1166,1374,435,854,637,299,87400,63800,33100,12260,70,6.2,7,7,24.1,1370,9,999999999,359,0.0160,0,88,999.000,999.0,99.0 +1988,10,13,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,20.6,53,101600,1192,1374,438,476,199,312,53900,21700,35000,13310,70,6.2,6,6,32.2,1370,9,999999999,370,0.0160,0,88,999.000,999.0,99.0 +1988,10,13,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,18.9,47,101500,1131,1374,432,726,735,194,85500,75200,23400,7540,60,7.2,4,4,32.2,77777,9,999999999,340,0.0160,0,88,999.000,999.0,99.0 +1988,10,13,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,18.3,47,101500,989,1374,424,490,634,130,63500,65200,16500,3900,80,6.7,3,3,32.2,77777,9,999999999,329,0.0160,0,88,999.000,999.0,99.0 +1988,10,13,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,20.0,55,101500,774,1374,420,331,691,76,50300,69200,11200,1850,60,6.7,3,3,32.2,77777,9,999999999,359,0.0160,0,88,999.000,999.0,99.0 +1988,10,13,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,20.0,59,101500,502,1374,414,65,163,42,11900,15500,6200,750,70,7.2,3,3,24.1,77777,9,999999999,359,0.0160,0,88,999.000,999.0,99.0 +1988,10,13,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,20.0,65,101500,193,1374,401,10,23,4,900,1500,700,60,70,6.2,3,2,24.1,77777,9,999999999,359,0.0160,0,88,999.000,999.0,99.0 +1988,10,13,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,20.0,67,101600,2,172,398,0,0,0,0,0,0,0,70,5.2,2,2,24.1,77777,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1988,10,13,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,20.0,69,101600,0,0,399,0,0,0,0,0,0,0,70,4.1,3,3,24.1,77777,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1988,10,13,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,20.6,72,101700,0,0,414,0,0,0,0,0,0,0,80,3.6,7,7,24.1,1220,9,999999999,370,0.0400,0,88,999.000,999.0,99.0 +1988,10,13,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,21.1,77,101700,0,0,401,0,0,0,0,0,0,0,60,3.6,4,4,24.1,77777,9,999999999,390,0.0400,0,88,999.000,999.0,99.0 +1988,10,13,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,20.6,76,101700,0,0,394,0,0,0,0,0,0,0,40,3.6,3,3,24.1,77777,9,999999999,370,0.0400,0,88,999.000,999.0,99.0 +1988,10,13,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,20.6,76,101600,0,0,390,0,0,0,0,0,0,0,50,3.6,2,2,24.1,77777,9,999999999,370,0.0400,0,88,999.000,999.0,99.0 +1988,10,14,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,20.6,79,101600,0,0,387,0,0,0,0,0,0,0,90,2.1,2,2,24.1,77777,9,999999999,370,0.0400,0,88,999.000,999.0,99.0 +1988,10,14,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,20.6,82,101500,0,0,388,0,0,0,0,0,0,0,0,0.0,3,3,24.1,77777,9,999999999,370,0.0400,0,88,999.000,999.0,99.0 +1988,10,14,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,20.6,82,101400,0,0,384,0,0,0,0,0,0,0,20,4.1,2,2,24.1,77777,9,999999999,370,0.0400,0,88,999.000,999.0,99.0 +1988,10,14,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,20.6,85,101400,0,0,385,0,0,0,0,0,0,0,270,2.1,3,3,24.1,77777,9,999999999,370,0.0400,0,88,999.000,999.0,99.0 +1988,10,14,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,20.6,82,101400,0,0,379,0,0,0,0,0,0,0,40,2.1,1,1,24.1,77777,9,999999999,370,0.0400,0,88,999.000,999.0,99.0 +1988,10,14,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,20.6,85,101400,0,0,369,35,172,13,0,0,0,0,320,2.1,0,0,24.1,77777,9,999999999,370,0.0320,0,88,999.000,999.0,99.0 +1988,10,14,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,21.1,85,101500,42,722,389,178,523,54,8100,18500,6900,590,320,2.6,3,3,32.2,77777,9,999999999,390,0.0320,0,88,999.000,999.0,99.0 +1988,10,14,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,21.1,69,101500,321,1375,397,392,687,80,24200,54500,11400,1360,40,2.1,1,1,40.2,77777,9,999999999,379,0.0320,0,88,999.000,999.0,99.0 +1988,10,14,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,21.1,63,101500,617,1375,411,599,812,83,46500,78300,11300,1680,130,2.6,2,2,40.2,77777,9,999999999,379,0.0320,0,88,999.000,999.0,99.0 +1988,10,14,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,21.7,59,101500,867,1375,429,750,817,119,66300,81400,14800,2780,230,3.1,4,4,40.2,77777,9,999999999,400,0.0320,0,88,999.000,999.0,99.0 +1988,10,14,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,21.7,57,101500,1053,1375,432,826,747,190,81000,76100,22600,6190,220,3.6,4,4,40.2,77777,9,999999999,390,0.0320,0,88,999.000,999.0,99.0 +1988,10,14,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,21.7,57,101400,1163,1375,432,838,795,148,87300,80400,19100,5880,150,5.2,4,4,40.2,77777,9,999999999,390,0.0320,0,88,999.000,999.0,99.0 +1988,10,14,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,21.1,54,101300,1188,1375,438,748,671,195,83300,68800,23700,8870,170,4.1,5,5,40.2,77777,9,999999999,390,0.0320,0,88,999.000,999.0,99.0 +1988,10,14,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,20.6,59,101300,1127,1375,433,485,189,348,55600,20200,39000,13070,340,5.2,7,7,40.2,1220,9,999999999,370,0.0320,0,88,999.000,999.0,99.0 +1988,10,14,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,21.1,57,101200,984,1375,447,324,248,184,40800,26900,21500,5070,90,3.1,8,8,40.2,1220,9,999999999,379,0.0320,0,88,999.000,999.0,99.0 +1988,10,14,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,21.1,57,101200,770,1375,440,231,268,133,31200,27400,15800,2900,60,4.1,7,7,24.1,2740,9,999999999,379,0.0320,0,88,999.000,999.0,99.0 +1988,10,14,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,20.6,61,101200,498,1375,446,48,30,44,6400,2900,5400,1010,50,3.1,9,9,24.1,1220,9,999999999,370,0.0320,0,88,999.000,999.0,99.0 +1988,10,14,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,21.1,67,101200,189,1375,424,3,4,2,300,300,300,40,60,4.6,7,7,24.1,1220,9,999999999,379,0.0320,0,88,999.000,999.0,99.0 +1988,10,14,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,21.1,72,101300,2,149,425,0,0,0,0,0,0,0,30,3.1,8,8,24.1,1220,9,999999999,379,0.0400,0,88,999.000,999.0,99.0 +1988,10,14,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,21.1,74,101300,0,0,421,0,0,0,0,0,0,0,30,3.1,8,8,24.1,7620,9,999999999,379,0.0400,0,88,999.000,999.0,99.0 +1988,10,14,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,21.1,74,101400,0,0,396,0,0,0,0,0,0,0,70,2.6,2,2,24.1,77777,9,999999999,379,0.0400,0,88,999.000,999.0,99.0 +1988,10,14,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,21.7,82,101400,0,0,379,0,0,0,0,0,0,0,50,2.1,0,0,24.1,77777,9,999999999,400,0.0400,0,88,999.000,999.0,99.0 +1988,10,14,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,21.1,85,101300,0,0,373,0,0,0,0,0,0,0,320,2.1,0,0,24.1,77777,9,999999999,379,0.0400,0,88,999.000,999.0,99.0 +1988,10,14,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,21.1,85,101300,0,0,373,0,0,0,0,0,0,0,310,2.1,0,0,24.1,77777,9,999999999,379,0.0400,0,88,999.000,999.0,99.0 +1988,10,15,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,20.6,87,101200,0,0,366,0,0,0,0,0,0,0,320,2.1,0,0,24.1,77777,9,999999999,370,0.0400,0,88,999.000,999.0,99.0 +1988,10,15,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,20.6,87,101100,0,0,392,0,0,0,0,0,0,0,0,0.0,6,6,24.1,2740,9,999999999,370,0.0400,0,88,999.000,999.0,99.0 +1988,10,15,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,20.6,90,101100,0,0,379,0,0,0,0,0,0,0,310,3.1,3,3,24.1,77777,9,999999999,370,0.0400,0,88,999.000,999.0,99.0 +1988,10,15,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,20.6,90,101000,0,0,363,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,370,0.0400,0,88,999.000,999.0,99.0 +1988,10,15,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,20.6,93,101000,0,0,361,0,0,0,0,0,0,0,320,2.6,0,0,24.1,77777,9,999999999,370,0.0400,0,88,999.000,999.0,99.0 +1988,10,15,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,20.6,90,101100,0,0,389,31,75,21,0,0,0,0,320,2.1,6,6,24.1,2740,9,999999999,370,0.0230,0,88,999.000,999.0,99.0 +1988,10,15,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,20.6,90,101100,41,722,399,129,81,110,12400,5400,12000,540,0,0.0,8,8,32.2,2740,9,999999999,370,0.0230,0,88,999.000,999.0,99.0 +1988,10,15,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,20.0,67,101200,319,1376,408,260,279,135,20400,22400,15200,2930,0,0.0,7,5,32.2,7620,9,999999999,359,0.0230,0,88,999.000,999.0,99.0 +1988,10,15,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,20.6,63,101300,615,1376,433,346,153,249,34000,15300,27100,6000,0,0.0,8,8,32.2,3050,9,999999999,370,0.0230,0,88,999.000,999.0,99.0 +1988,10,15,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,20.6,61,101300,865,1376,430,514,212,351,52200,22100,38300,9770,280,3.1,8,7,32.2,7620,9,999999999,370,0.0230,0,88,999.000,999.0,99.0 +1988,10,15,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,21.7,59,101200,1050,1376,436,612,276,378,63400,29800,40600,12540,220,3.6,8,6,32.2,7620,9,999999999,400,0.0230,0,88,999.000,999.0,99.0 +1988,10,15,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,21.7,59,101200,1159,1376,432,838,745,193,88100,76300,23600,8060,220,4.1,6,5,32.2,7620,9,999999999,390,0.0230,0,88,999.000,999.0,99.0 +1988,10,15,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,21.1,52,101100,1184,1376,437,746,673,194,83200,69000,23600,8700,230,5.2,5,4,40.2,77777,9,999999999,379,0.0230,0,88,999.000,999.0,99.0 +1988,10,15,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,22.2,57,101000,1123,1376,436,433,340,190,52400,35700,23200,7110,220,5.2,4,4,40.2,77777,9,999999999,400,0.0230,0,88,999.000,999.0,99.0 +1988,10,15,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,22.2,59,100900,980,1376,429,512,714,113,66500,72200,14900,3200,220,5.2,4,3,40.2,77777,9,999999999,400,0.0230,0,88,999.000,999.0,99.0 +1988,10,15,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,21.7,57,100900,765,1376,428,289,507,106,41500,51100,13000,2450,230,4.6,6,3,40.2,77777,9,999999999,390,0.0230,0,88,999.000,999.0,99.0 +1988,10,15,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,21.1,61,101000,493,1376,418,76,229,45,13900,21700,6000,940,230,5.2,6,3,32.2,77777,9,999999999,379,0.0230,0,88,999.000,999.0,99.0 +1988,10,15,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,20.6,65,101000,185,1376,409,5,12,2,500,700,400,30,230,2.6,6,3,24.1,77777,9,999999999,370,0.0230,0,88,999.000,999.0,99.0 +1988,10,15,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,21.1,72,101100,1,126,407,0,0,0,0,0,0,0,290,2.1,4,4,24.1,77777,9,999999999,379,0.0400,0,88,999.000,999.0,99.0 +1988,10,15,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,21.1,74,101200,0,0,396,0,0,0,0,0,0,0,300,4.1,2,2,24.1,77777,9,999999999,379,0.0400,0,88,999.000,999.0,99.0 +1988,10,15,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,21.1,79,101200,0,0,385,0,0,0,0,0,0,0,0,0.0,1,1,24.1,77777,9,999999999,379,0.0400,0,88,999.000,999.0,99.0 +1988,10,15,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,20.6,82,101300,0,0,372,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,370,0.0400,0,88,999.000,999.0,99.0 +1988,10,15,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,21.1,85,101300,0,0,373,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,379,0.0400,0,88,999.000,999.0,99.0 +1988,10,15,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,20.6,82,101300,0,0,372,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,370,0.0400,0,88,999.000,999.0,99.0 +1988,10,16,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,20.0,84,101200,0,0,366,0,0,0,0,0,0,0,320,2.1,0,0,24.1,77777,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1988,10,16,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,20.0,87,101200,0,0,382,0,0,0,0,0,0,0,320,3.1,4,4,24.1,77777,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1988,10,16,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,20.0,84,101100,0,0,378,0,0,0,0,0,0,0,320,2.1,2,2,24.1,77777,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1988,10,16,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,20.0,87,101100,0,0,379,0,0,0,0,0,0,0,310,2.1,3,3,24.1,77777,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1988,10,16,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,20.6,87,101100,0,0,366,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,370,0.0400,0,88,999.000,999.0,99.0 +1988,10,16,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,20.0,87,101200,0,0,363,34,192,11,0,0,0,0,300,2.1,0,0,24.1,77777,9,999999999,359,0.0200,0,88,999.000,999.0,99.0 +1988,10,16,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,20.6,90,101300,40,700,379,129,279,63,7400,9900,6800,1360,320,2.1,3,3,32.2,77777,9,999999999,370,0.0200,0,88,999.000,999.0,99.0 +1988,10,16,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,20.6,72,101300,316,1377,390,366,697,53,21400,57100,8300,920,10,1.5,1,1,40.2,77777,9,999999999,370,0.0200,0,88,999.000,999.0,99.0 +1988,10,16,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,20.6,63,101300,612,1377,408,608,885,50,47000,85200,8900,1270,20,1.5,2,2,40.2,77777,9,999999999,370,0.0200,0,88,999.000,999.0,99.0 +1988,10,16,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,20.6,55,101400,862,1377,424,743,775,150,67100,78200,18000,3690,220,2.1,3,3,40.2,77777,9,999999999,370,0.0200,0,88,999.000,999.0,99.0 +1988,10,16,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,21.1,57,101300,1047,1377,435,911,849,193,89000,86300,23100,6180,180,4.1,6,6,32.2,1370,9,999999999,379,0.0200,0,88,999.000,999.0,99.0 +1988,10,16,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,21.7,57,101300,1156,1377,451,647,445,263,69400,46600,30200,10850,170,5.2,8,8,32.2,1370,9,999999999,390,0.0200,0,88,999.000,999.0,99.0 +1988,10,16,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,21.7,82,101300,1180,1377,425,436,114,342,48900,12200,38400,14170,40,3.6,9,9,24.1,670,9,999999999,400,0.0200,0,88,999.000,999.0,99.0 +1988,10,16,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,20.6,59,101200,1119,1377,428,689,688,199,80800,70200,23600,7440,140,2.6,6,6,32.2,7620,9,999999999,370,0.0200,0,88,999.000,999.0,99.0 +1988,10,16,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,20.6,59,101200,976,1377,440,377,220,255,45200,23800,28300,7240,100,1.5,8,8,32.2,1370,9,999999999,370,0.0200,0,88,999.000,999.0,99.0 +1988,10,16,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,21.1,67,101200,761,1377,453,102,10,98,12600,700,12200,4730,40,2.6,10,10,24.1,1220,9,999999999,379,0.0200,0,88,999.000,999.0,99.0 +1988,10,16,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,20.6,67,101200,489,1377,412,71,286,33,15000,27200,5300,700,360,3.1,5,5,24.1,77777,9,999999999,370,0.0200,0,88,999.000,999.0,99.0 +1988,10,16,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,20.6,74,101200,180,1377,427,3,0,3,400,0,400,130,80,2.6,9,9,24.1,3050,9,999999999,370,0.0200,0,88,999.000,999.0,99.0 +1988,10,16,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,20.6,76,101300,1,103,415,0,0,0,0,0,0,0,10,3.1,8,8,24.1,3050,9,999999999,370,0.0400,0,88,999.000,999.0,99.0 +1988,10,16,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,20.6,76,101300,0,0,415,0,0,0,0,0,0,0,30,2.1,8,8,19.3,3050,9,999999999,370,0.0400,0,88,999.000,999.0,99.0 +1988,10,16,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,20.6,79,101400,0,0,405,0,0,0,0,0,0,0,0,0.0,7,7,19.3,3050,9,999999999,370,0.0400,0,88,999.000,999.0,99.0 +1988,10,16,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,20.6,79,101400,0,0,405,0,0,0,0,0,0,0,320,2.6,7,7,19.3,3050,9,999999999,370,0.0400,0,88,999.000,999.0,99.0 +1988,10,16,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,20.0,74,101400,0,0,435,0,0,0,0,0,0,0,20,2.6,10,10,19.3,2740,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1988,10,16,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,19.4,74,101400,0,0,419,0,0,0,0,0,0,0,340,5.2,9,9,24.1,2740,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1988,10,17,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,20.0,79,101400,0,0,417,0,0,0,0,0,0,0,360,6.2,9,9,24.1,1220,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1988,10,17,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,20.0,82,101300,0,0,413,0,0,0,0,0,0,0,310,5.2,9,9,24.1,1220,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1988,10,17,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,18.9,74,101300,0,0,427,0,0,0,0,0,0,0,20,4.1,10,10,24.1,1220,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1988,10,17,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,18.3,71,101300,0,0,426,0,0,0,0,0,0,0,320,2.1,10,10,24.1,1220,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1988,10,17,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,17.2,66,101300,0,0,413,0,0,0,0,0,0,0,320,4.6,9,9,24.1,1220,9,999999999,300,0.0400,0,88,999.000,999.0,99.0 +1988,10,17,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,17.2,66,101300,0,0,404,16,23,13,0,0,0,0,360,4.1,8,8,24.1,2740,9,999999999,300,0.0390,0,88,999.000,999.0,99.0 +1988,10,17,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,17.2,69,101400,39,700,401,100,97,78,8400,3600,8200,1620,320,2.1,8,8,24.1,1370,9,999999999,309,0.0390,0,88,999.000,999.0,99.0 +1988,10,17,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,17.8,67,101400,314,1377,408,219,101,173,21300,8900,19300,3370,300,3.6,8,8,32.2,2440,9,999999999,320,0.0390,0,88,999.000,999.0,99.0 +1988,10,17,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,18.3,62,101500,610,1377,418,355,129,274,36200,12900,30500,7030,10,3.1,8,8,32.2,2440,9,999999999,320,0.0390,0,88,999.000,999.0,99.0 +1988,10,17,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,18.3,55,101500,859,1377,430,538,248,349,54300,25900,38100,9670,360,3.1,8,8,32.2,2440,9,999999999,329,0.0390,0,88,999.000,999.0,99.0 +1988,10,17,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,18.3,55,101400,1044,1377,430,530,305,274,55700,33100,30600,8560,80,4.1,8,8,32.2,2440,9,999999999,329,0.0390,0,88,999.000,999.0,99.0 +1988,10,17,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,17.8,50,101400,1152,1377,458,466,2,464,53400,200,53200,18370,60,4.6,10,10,32.2,1370,9,999999999,320,0.0390,0,88,999.000,999.0,99.0 +1988,10,17,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,17.8,53,101300,1176,1377,451,339,8,333,40100,700,39500,15010,40,5.2,10,10,32.2,1370,9,999999999,320,0.0390,0,88,999.000,999.0,99.0 +1988,10,17,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,17.2,51,101200,1115,1377,438,333,167,215,39700,18200,24900,7390,40,5.2,9,9,32.2,2440,9,999999999,300,0.0390,0,88,999.000,999.0,99.0 +1988,10,17,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,16.1,48,101200,971,1377,436,313,88,265,36100,8900,29800,9740,20,4.1,9,9,32.2,2440,9,999999999,290,0.0390,0,88,999.000,999.0,99.0 +1988,10,17,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,17.2,53,101200,756,1377,435,172,53,153,20100,5300,17200,5110,60,4.1,9,9,32.2,2440,9,999999999,309,0.0390,0,88,999.000,999.0,99.0 +1988,10,17,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,16.7,54,101300,484,1377,428,61,131,44,10400,12300,6100,780,40,4.1,9,9,32.2,2440,9,999999999,290,0.0390,0,88,999.000,999.0,99.0 +1988,10,17,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,17.2,60,101300,176,1377,414,3,2,2,300,100,300,40,350,3.1,8,8,24.1,2440,9,999999999,300,0.0390,0,88,999.000,999.0,99.0 +1988,10,17,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,17.8,64,101300,1,103,420,0,0,0,0,0,0,0,10,3.6,9,9,24.1,2440,9,999999999,309,0.0400,0,88,999.000,999.0,99.0 +1988,10,17,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,18.3,69,101400,0,0,408,0,0,0,0,0,0,0,350,2.6,8,8,24.1,2740,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1988,10,17,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,17.8,67,101400,0,0,408,0,0,0,0,0,0,0,320,1.5,8,8,24.1,2740,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1988,10,17,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,18.3,76,101400,0,0,376,0,0,0,0,0,0,0,320,2.6,2,2,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1988,10,17,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,18.3,79,101400,0,0,368,0,0,0,0,0,0,0,300,2.1,1,1,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1988,10,17,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,18.3,81,101300,0,0,358,0,0,0,0,0,0,0,320,3.1,0,0,24.1,77777,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1988,10,18,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,18.3,81,101300,0,0,358,0,0,0,0,0,0,0,320,4.1,0,0,24.1,77777,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1988,10,18,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,18.3,81,101300,0,0,358,0,0,0,0,0,0,0,320,3.6,0,0,24.1,77777,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1988,10,18,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,18.3,81,101300,0,0,358,0,0,0,0,0,0,0,320,3.1,0,0,24.1,77777,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1988,10,18,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,17.8,81,101300,0,0,355,0,0,0,0,0,0,0,340,2.6,0,0,24.1,77777,9,999999999,309,0.0400,0,88,999.000,999.0,99.0 +1988,10,18,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,17.8,87,101300,0,0,350,0,0,0,0,0,0,0,340,1.5,0,0,24.1,77777,9,999999999,309,0.0400,0,88,999.000,999.0,99.0 +1988,10,18,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,17.8,87,101300,0,0,365,34,117,18,0,0,0,0,310,2.6,3,3,24.1,77777,9,999999999,309,0.0240,0,88,999.000,999.0,99.0 +1988,10,18,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,18.3,87,101400,38,701,377,150,288,84,9500,8400,9100,2350,0,0.0,6,6,24.1,7620,9,999999999,329,0.0240,0,88,999.000,999.0,99.0 +1988,10,18,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,18.9,74,101400,312,1378,386,376,591,113,24600,46400,14100,2200,300,2.1,4,3,40.2,77777,9,999999999,340,0.0240,0,88,999.000,999.0,99.0 +1988,10,18,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,17.8,60,101400,607,1378,396,542,655,132,43200,62500,15600,2560,0,0.0,4,3,40.2,77777,9,999999999,309,0.0240,0,88,999.000,999.0,99.0 +1988,10,18,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,17.2,49,101400,856,1378,406,744,846,101,66500,84800,13700,2460,170,3.6,2,2,40.2,77777,9,999999999,300,0.0240,0,88,999.000,999.0,99.0 +1988,10,18,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,17.8,50,101400,1041,1378,417,651,546,194,64200,55500,22200,6110,160,4.1,4,4,40.2,77777,9,999999999,320,0.0240,0,88,999.000,999.0,99.0 +1988,10,18,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,17.8,50,101300,1149,1378,445,486,136,370,53300,14500,41200,14370,170,4.6,9,9,32.2,3050,9,999999999,320,0.0240,0,88,999.000,999.0,99.0 +1988,10,18,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,18.9,57,101300,1172,1378,440,442,130,336,49700,13900,37800,13660,180,4.1,9,9,32.2,2740,9,999999999,340,0.0240,0,88,999.000,999.0,99.0 +1988,10,18,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,18.3,51,101300,1111,1378,446,405,160,292,47000,17100,33100,10630,210,3.6,9,9,32.2,2740,9,999999999,320,0.0240,0,88,999.000,999.0,99.0 +1988,10,18,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,18.3,50,101200,967,1378,440,286,126,217,34300,13500,24800,6590,220,4.1,8,8,32.2,2740,9,999999999,329,0.0240,0,88,999.000,999.0,99.0 +1988,10,18,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,18.3,55,101200,752,1378,430,252,423,104,35800,42500,12500,2380,200,3.1,8,8,32.2,2740,9,999999999,329,0.0240,0,88,999.000,999.0,99.0 +1988,10,18,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,18.3,58,101200,480,1378,433,72,26,69,8600,2400,7800,2080,220,2.1,9,9,24.1,2740,9,999999999,320,0.0240,0,88,999.000,999.0,99.0 +1988,10,18,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,18.9,65,101300,172,1378,428,2,1,2,200,100,200,60,170,1.5,9,9,24.1,2740,9,999999999,340,0.0240,0,88,999.000,999.0,99.0 +1988,10,18,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,18.9,67,101300,0,80,425,0,0,0,0,0,0,0,60,3.1,9,9,24.1,2740,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1988,10,18,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,17.8,67,101400,0,0,387,0,0,0,0,0,0,0,50,2.1,3,3,24.1,77777,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1988,10,18,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,17.2,66,101500,0,0,375,0,0,0,0,0,0,0,0,0.0,1,1,24.1,77777,9,999999999,300,0.0400,0,88,999.000,999.0,99.0 +1988,10,18,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,17.2,71,101500,0,0,363,0,0,0,0,0,0,0,320,2.6,0,0,24.1,77777,9,999999999,309,0.0400,0,88,999.000,999.0,99.0 +1988,10,18,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,17.2,73,101400,0,0,367,0,0,0,0,0,0,0,320,2.6,1,1,24.1,77777,9,999999999,300,0.0400,0,88,999.000,999.0,99.0 +1988,10,18,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,17.8,79,101400,0,0,370,0,0,0,0,0,0,0,310,2.1,2,2,24.1,77777,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1988,10,19,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,18.3,84,101400,0,0,362,0,0,0,0,0,0,0,320,3.1,1,1,24.1,77777,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1988,10,19,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,18.3,84,101400,0,0,362,0,0,0,0,0,0,0,330,2.6,1,1,24.1,77777,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1988,10,19,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,18.3,87,101300,0,0,382,0,0,0,0,0,0,0,300,2.6,7,7,24.1,2440,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1988,10,19,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,17.8,87,101300,0,0,356,0,0,0,0,0,0,0,320,2.1,1,1,24.1,77777,9,999999999,309,0.0400,0,88,999.000,999.0,99.0 +1988,10,19,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,17.2,84,101300,0,0,356,0,0,0,0,0,0,0,0,0.0,1,1,24.1,77777,9,999999999,300,0.0400,0,88,999.000,999.0,99.0 +1988,10,19,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,16.7,84,101400,0,0,361,29,75,19,0,0,0,0,330,2.6,3,3,24.1,77777,9,999999999,290,0.0470,0,88,999.000,999.0,99.0 +1988,10,19,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,17.2,87,101500,37,678,361,125,217,76,8400,6300,8100,2040,310,2.6,3,3,24.1,77777,9,999999999,300,0.0470,0,88,999.000,999.0,99.0 +1988,10,19,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,18.3,69,101500,309,1379,384,396,690,91,24400,53100,12400,1460,320,2.6,2,2,40.2,77777,9,999999999,329,0.0470,0,88,999.000,999.0,99.0 +1988,10,19,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,17.8,56,101500,604,1379,398,536,674,116,42700,64700,14300,2300,120,1.5,2,2,40.2,77777,9,999999999,309,0.0470,0,88,999.000,999.0,99.0 +1988,10,19,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,16.7,46,101500,853,1379,413,700,701,169,63000,70200,19500,4040,50,1.5,3,3,40.2,77777,9,999999999,290,0.0470,0,88,999.000,999.0,99.0 +1988,10,19,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,17.8,48,101400,1037,1379,417,793,709,201,77500,71900,23300,6260,150,4.1,7,3,40.2,77777,9,999999999,320,0.0470,0,88,999.000,999.0,99.0 +1988,10,19,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,17.2,48,101400,1145,1379,420,694,478,287,73800,49900,32200,11500,150,4.6,5,5,40.2,77777,9,999999999,300,0.0470,0,88,999.000,999.0,99.0 +1988,10,19,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,18.3,48,101300,1169,1379,428,776,749,171,84500,75300,20500,6610,180,4.1,6,5,40.2,7620,9,999999999,329,0.0470,0,88,999.000,999.0,99.0 +1988,10,19,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,18.3,51,101300,1106,1379,430,372,71,322,41900,7300,36000,13170,240,4.1,8,7,32.2,2440,9,999999999,320,0.0470,0,88,999.000,999.0,99.0 +1988,10,19,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,18.3,53,101300,963,1379,434,240,100,185,28900,10700,21400,5590,260,2.6,8,8,32.2,1370,9,999999999,329,0.0470,0,88,999.000,999.0,99.0 +1988,10,19,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,18.3,58,101300,748,1379,424,168,125,125,21900,13100,14800,3210,10,2.6,8,8,32.2,1370,9,999999999,320,0.0470,0,88,999.000,999.0,99.0 +1988,10,19,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,18.3,60,101200,476,1379,421,66,51,59,8800,4900,7100,1340,40,4.1,8,8,32.2,1370,9,999999999,320,0.0470,0,88,999.000,999.0,99.0 +1988,10,19,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,18.3,64,101300,168,1379,400,0,0,0,0,0,0,0,40,3.1,5,5,32.2,77777,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1988,10,19,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,17.8,67,101400,0,57,383,0,0,0,0,0,0,0,30,3.6,2,2,24.1,77777,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1988,10,19,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,18.3,71,101400,0,0,376,0,0,0,0,0,0,0,10,2.6,1,1,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1988,10,19,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,17.8,71,101500,0,0,373,0,0,0,0,0,0,0,350,2.1,1,1,24.1,77777,9,999999999,309,0.0400,0,88,999.000,999.0,99.0 +1988,10,19,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,18.3,79,101500,0,0,368,0,0,0,0,0,0,0,300,2.1,1,1,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1988,10,19,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,18.3,81,101500,0,0,374,0,0,0,0,0,0,0,310,2.6,3,3,24.1,77777,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1988,10,19,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,18.3,84,101500,0,0,371,0,0,0,0,0,0,0,330,3.6,3,3,24.1,77777,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1988,10,20,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,18.3,84,101500,0,0,367,0,0,0,0,0,0,0,300,2.6,2,2,24.1,77777,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1988,10,20,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,18.3,87,101400,0,0,368,0,0,0,0,0,0,0,330,2.1,3,3,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1988,10,20,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,17.8,84,101300,0,0,364,0,0,0,0,0,0,0,300,2.6,2,2,24.1,77777,9,999999999,309,0.0400,0,88,999.000,999.0,99.0 +1988,10,20,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,18.3,87,101300,0,0,360,0,0,0,0,0,0,0,340,2.6,2,1,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1988,10,20,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,17.8,84,101300,0,0,359,0,0,0,0,0,0,0,320,2.1,2,1,24.1,77777,9,999999999,309,0.0400,0,88,999.000,999.0,99.0 +1988,10,20,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,17.8,84,101300,0,0,364,32,111,18,0,0,0,0,0,0.0,4,2,24.1,77777,9,999999999,309,0.0280,0,88,999.000,999.0,99.0 +1988,10,20,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,18.3,87,101400,36,678,374,157,362,75,8600,12000,7900,1730,0,0.0,10,5,24.1,77777,9,999999999,329,0.0280,0,88,999.000,999.0,99.0 +1988,10,20,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,18.9,74,101400,307,1380,427,177,3,176,18400,200,18400,3590,320,2.6,10,10,32.2,7620,9,999999999,340,0.0280,0,88,999.000,999.0,99.0 +1988,10,20,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,18.3,60,101400,602,1380,442,248,40,223,26300,3900,24600,6060,360,2.6,10,10,32.2,7620,9,999999999,320,0.0280,0,88,999.000,999.0,99.0 +1988,10,20,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,17.2,49,101400,850,1380,454,311,2,310,35100,200,35000,11990,110,2.1,10,10,32.2,7620,9,999999999,300,0.0280,0,88,999.000,999.0,99.0 +1988,10,20,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,18.3,53,101400,1034,1380,418,647,497,233,65700,51800,26800,7260,210,2.1,9,5,32.2,7620,9,999999999,329,0.0280,0,88,999.000,999.0,99.0 +1988,10,20,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,18.3,48,101300,1141,1380,428,672,399,333,70400,41600,35900,13320,130,1.5,9,5,32.2,7620,9,999999999,329,0.0280,0,88,999.000,999.0,99.0 +1988,10,20,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,18.9,51,101300,1165,1380,463,337,4,334,39700,400,39400,14990,250,4.1,10,10,32.2,3050,9,999999999,329,0.0280,0,88,999.000,999.0,99.0 +1988,10,20,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,17.8,51,101200,1102,1380,442,535,401,255,62500,41900,28900,9150,60,5.2,9,9,32.2,1370,9,999999999,309,0.0280,0,88,999.000,999.0,99.0 +1988,10,20,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,17.8,51,101200,959,1380,442,349,151,268,41300,16000,30100,8070,50,3.6,9,9,32.2,7620,9,999999999,309,0.0280,0,88,999.000,999.0,99.0 +1988,10,20,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,19.4,57,101200,743,1380,445,176,35,164,20200,3500,18300,5370,240,3.1,9,9,32.2,1220,9,999999999,350,0.0280,0,88,999.000,999.0,99.0 +1988,10,20,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,19.4,63,101200,471,1380,425,52,19,49,6200,1700,5600,1520,80,2.6,8,8,32.2,2740,9,999999999,350,0.0280,0,88,999.000,999.0,99.0 +1988,10,20,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,19.4,69,101300,164,1380,402,0,0,0,0,0,0,0,50,3.1,5,5,24.1,77777,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1988,10,20,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,18.9,69,101400,0,34,413,0,0,0,0,0,0,0,60,3.1,8,8,24.1,2740,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1988,10,20,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,18.9,67,101400,0,0,409,0,0,0,0,0,0,0,60,3.1,7,7,24.1,7620,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1988,10,20,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,19.4,71,101500,0,0,407,0,0,0,0,0,0,0,350,2.6,7,7,24.1,3050,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1988,10,20,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,19.4,74,101500,0,0,403,0,0,0,0,0,0,0,300,2.1,7,7,24.1,3050,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1988,10,20,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,19.4,79,101500,0,0,383,0,0,0,0,0,0,0,310,2.6,3,3,24.1,77777,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1988,10,20,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,19.4,82,101400,0,0,381,0,0,0,0,0,0,0,320,1.5,3,3,24.1,77777,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1988,10,21,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,19.4,84,101400,0,0,374,0,0,0,0,0,0,0,330,3.1,2,2,24.1,77777,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1988,10,21,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,19.4,87,101300,0,0,378,0,0,0,0,0,0,0,330,3.1,4,4,24.1,77777,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1988,10,21,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,19.4,84,101300,0,0,381,0,0,0,0,0,0,0,290,2.6,4,4,24.1,77777,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1988,10,21,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,19.4,82,101300,0,0,377,0,0,0,0,0,0,0,300,2.1,2,2,24.1,77777,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1988,10,21,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,19.4,87,101300,0,0,375,0,0,0,0,0,0,0,330,3.1,3,3,24.1,77777,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1988,10,21,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,19.4,87,101300,0,0,375,23,60,16,0,0,0,0,0,0.0,3,3,24.1,77777,9,999999999,350,0.0380,0,88,999.000,999.0,99.0 +1988,10,21,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,20.0,90,101300,35,656,379,97,86,78,8300,3000,8100,1620,310,2.6,4,4,24.1,77777,9,999999999,359,0.0380,0,88,999.000,999.0,99.0 +1988,10,21,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,20.6,74,101400,304,1381,400,338,531,105,22300,41300,13100,2020,300,3.6,4,4,32.2,77777,9,999999999,370,0.0380,0,88,999.000,999.0,99.0 +1988,10,21,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,20.6,65,101400,599,1381,430,339,84,287,35300,8400,31700,7120,320,3.1,8,8,40.2,7620,9,999999999,370,0.0380,0,88,999.000,999.0,99.0 +1988,10,21,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,20.0,55,101400,847,1381,442,373,101,297,39500,10300,33100,9500,40,5.2,8,8,40.2,2740,9,999999999,359,0.0380,0,88,999.000,999.0,99.0 +1988,10,21,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,20.0,55,101400,1030,1381,442,433,229,243,46000,24800,27400,7310,90,5.2,8,8,40.2,2740,9,999999999,359,0.0380,0,88,999.000,999.0,99.0 +1988,10,21,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,18.9,48,101300,1138,1381,457,383,117,284,42600,12600,32300,10780,90,5.2,9,9,32.2,1220,9,999999999,329,0.0380,0,88,999.000,999.0,99.0 +1988,10,21,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,20.0,50,101200,1161,1381,462,422,134,315,47700,14400,35600,12470,70,8.2,9,9,32.2,2740,9,999999999,359,0.0380,0,88,999.000,999.0,99.0 +1988,10,21,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,20.0,55,101200,1098,1381,452,320,76,267,36300,7700,30100,11090,70,7.7,9,9,32.2,1220,9,999999999,359,0.0380,0,88,999.000,999.0,99.0 +1988,10,21,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,20.0,59,101200,954,1381,445,332,76,291,37900,7700,32500,10340,60,8.2,9,9,32.2,1070,9,999999999,359,0.0380,0,88,999.000,999.0,99.0 +1988,10,21,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,19.4,52,101200,739,1381,429,229,306,125,31800,31100,15100,2650,80,4.6,9,5,40.2,7620,9,999999999,350,0.0380,0,88,999.000,999.0,99.0 +1988,10,21,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,18.9,53,101200,467,1381,419,59,47,53,8000,4500,6400,1200,60,4.1,9,4,40.2,77777,9,999999999,329,0.0380,0,88,999.000,999.0,99.0 +1988,10,21,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,19.4,63,101300,160,1381,425,0,0,0,0,0,0,0,60,2.6,8,8,40.2,2440,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1988,10,21,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,20.0,69,101400,0,35,420,0,0,0,0,0,0,0,60,2.6,8,8,24.1,2440,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1988,10,21,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,19.4,69,101500,0,0,396,0,0,0,0,0,0,0,60,4.1,3,3,24.1,77777,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1988,10,21,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,20.0,72,101500,0,0,392,0,0,0,0,0,0,0,90,3.6,2,2,24.1,77777,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1988,10,21,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,20.6,74,101500,0,0,397,0,0,0,0,0,0,0,70,3.1,3,3,24.1,77777,9,999999999,370,0.0400,0,88,999.000,999.0,99.0 +1988,10,21,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,20.6,76,101500,0,0,390,0,0,0,0,0,0,0,90,2.1,2,2,24.1,77777,9,999999999,370,0.0400,0,88,999.000,999.0,99.0 +1988,10,21,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,20.0,82,101500,0,0,380,0,0,0,0,0,0,0,290,2.1,2,2,24.1,77777,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1988,10,22,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,20.0,84,101500,0,0,378,0,0,0,0,0,0,0,310,2.6,2,2,24.1,77777,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1988,10,22,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,20.0,87,101400,0,0,375,0,0,0,0,0,0,0,340,2.6,2,2,24.1,77777,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1988,10,22,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,19.4,87,101400,0,0,372,0,0,0,0,0,0,0,290,2.1,2,2,24.1,77777,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1988,10,22,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,20.0,87,101400,0,0,379,0,0,0,0,0,0,0,340,2.6,3,3,24.1,77777,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1988,10,22,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,19.4,84,101400,0,0,378,0,0,0,0,0,0,0,290,2.6,3,3,24.1,77777,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1988,10,22,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,19.4,87,101400,0,0,389,25,14,23,0,0,0,0,310,2.6,7,7,24.1,1220,9,999999999,350,0.0550,0,88,999.000,999.0,99.0 +1988,10,22,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,20.0,84,101500,34,656,391,107,31,100,10900,2000,10800,540,0,0.0,6,6,24.1,2740,9,999999999,359,0.0550,0,88,999.000,999.0,99.0 +1988,10,22,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,21.1,74,101500,302,1381,407,304,372,142,22600,28900,16200,3180,320,3.1,5,5,32.2,77777,9,999999999,379,0.0550,0,88,999.000,999.0,99.0 +1988,10,22,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,20.6,61,101500,596,1381,411,559,737,106,44200,70800,13600,2120,120,3.1,2,2,40.2,77777,9,999999999,370,0.0550,0,88,999.000,999.0,99.0 +1988,10,22,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,20.0,55,101600,844,1381,427,605,515,220,56600,52800,24300,5310,130,3.6,5,5,40.2,77777,9,999999999,359,0.0550,0,88,999.000,999.0,99.0 +1988,10,22,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,20.6,55,101500,1027,1381,435,777,685,211,75700,69200,24100,6380,160,5.2,6,6,40.2,1220,9,999999999,370,0.0550,0,88,999.000,999.0,99.0 +1988,10,22,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,20.6,53,101400,1134,1381,438,896,811,212,93300,82600,25300,8110,190,5.2,6,6,40.2,1220,9,999999999,370,0.0550,0,88,999.000,999.0,99.0 +1988,10,22,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,20.6,59,101300,1157,1381,433,861,760,255,93700,76700,29200,10180,160,6.2,7,7,32.2,1220,9,999999999,370,0.0550,0,88,999.000,999.0,99.0 +1988,10,22,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,21.7,63,101300,1094,1381,441,472,419,183,57700,43900,22800,6320,150,6.2,8,8,24.1,610,9,999999999,390,0.0550,0,88,999.000,999.0,99.0 +1988,10,22,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,21.7,72,101200,950,1381,438,228,157,144,28800,17000,17100,3700,40,5.2,9,9,24.1,610,9,999999999,400,0.0550,0,88,999.000,999.0,99.0 +1988,10,22,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,21.7,74,101300,735,1381,435,176,52,158,20500,5200,17700,5170,50,4.1,9,9,24.1,640,9,999999999,400,0.0550,0,88,999.000,999.0,99.0 +1988,10,22,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,22.2,88,101300,463,1381,422,47,8,46,5900,400,5800,2050,290,4.1,9,9,24.1,1370,9,999999999,409,0.0550,0,88,999.000,999.0,99.0 +1988,10,22,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,20.6,82,101300,156,1381,409,0,0,0,0,0,0,0,60,2.6,8,8,24.1,1370,9,999999999,370,0.0400,0,88,999.000,999.0,99.0 +1988,10,22,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,19.4,74,101400,0,12,403,0,0,0,0,0,0,0,50,4.6,7,7,24.1,1370,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1988,10,22,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,19.4,71,101400,0,0,402,0,0,0,0,0,0,0,60,2.6,6,6,24.1,1370,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1988,10,22,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,20.0,76,101500,0,0,390,0,0,0,0,0,0,0,300,2.1,3,3,24.1,77777,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1988,10,22,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,20.6,87,101400,0,0,379,0,0,0,0,0,0,0,320,2.1,2,2,24.1,77777,9,999999999,370,0.0400,0,88,999.000,999.0,99.0 +1988,10,22,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,20.6,87,101400,0,0,379,0,0,0,0,0,0,0,330,2.6,2,2,24.1,77777,9,999999999,370,0.0400,0,88,999.000,999.0,99.0 +1988,10,22,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,20.0,87,101400,0,0,375,0,0,0,0,0,0,0,300,2.1,2,2,24.1,77777,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1988,10,23,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,20.0,87,101400,0,0,379,0,0,0,0,0,0,0,300,2.1,3,3,24.1,77777,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1988,10,23,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,20.0,90,101300,0,0,372,0,0,0,0,0,0,0,320,2.6,2,2,24.1,77777,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1988,10,23,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,20.0,90,101300,0,0,372,0,0,0,0,0,0,0,310,1.5,2,2,24.1,77777,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1988,10,23,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,19.4,90,101300,0,0,369,0,0,0,0,0,0,0,290,2.1,2,2,24.1,77777,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1988,10,23,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,19.4,90,101300,0,0,364,0,0,0,0,0,0,0,310,2.1,1,1,24.1,77777,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1988,10,23,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,20.0,93,101300,0,0,364,29,70,20,0,0,0,0,350,1.5,1,1,24.1,77777,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1988,10,23,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,19.4,90,101400,33,657,369,147,403,58,7400,13300,6700,1250,0,0.0,2,2,32.2,77777,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1988,10,23,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,21.1,79,101500,299,1382,394,407,733,90,24600,55600,12600,1430,320,3.1,3,3,40.2,77777,9,999999999,379,0.0400,0,88,999.000,999.0,99.0 +1988,10,23,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,21.1,67,101500,593,1382,409,539,698,112,42700,66800,14000,2210,310,3.6,3,3,40.2,77777,9,999999999,379,0.0400,0,88,999.000,999.0,99.0 +1988,10,23,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,19.4,50,101500,840,1382,425,802,903,130,70000,89200,15600,2790,40,5.2,3,3,40.2,77777,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1988,10,23,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,20.0,53,101500,1024,1382,427,610,493,205,62600,51400,24300,6200,60,3.1,4,4,40.2,77777,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1988,10,23,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,20.6,53,101400,1130,1382,438,662,418,312,69800,43600,34000,12040,100,3.6,6,6,40.2,1370,9,999999999,370,0.0400,0,88,999.000,999.0,99.0 +1988,10,23,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,19.4,50,101300,1153,1382,436,664,481,282,73900,50300,31900,11450,30,3.6,6,6,32.2,1370,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1988,10,23,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,20.6,63,101200,1090,1382,427,426,184,299,49400,19700,33900,10500,220,1.5,7,7,32.2,1370,9,999999999,370,0.0400,0,88,999.000,999.0,99.0 +1988,10,23,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,21.1,67,101200,946,1382,431,379,217,263,44900,23400,28900,7240,230,2.6,8,8,32.2,1370,9,999999999,379,0.0400,0,88,999.000,999.0,99.0 +1988,10,23,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,21.1,69,101200,731,1382,428,211,117,171,25900,12200,19400,4350,340,3.1,8,8,32.2,1370,9,999999999,379,0.0400,0,88,999.000,999.0,99.0 +1988,10,23,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,20.6,63,101200,459,1382,422,45,81,35,7200,7700,4700,600,60,4.1,6,6,32.2,2740,9,999999999,370,0.0400,0,88,999.000,999.0,99.0 +1988,10,23,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,20.0,67,101300,152,1371,412,0,0,0,0,0,0,0,90,3.1,6,6,24.1,2740,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1988,10,23,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,20.6,72,101300,0,0,403,0,0,0,0,0,0,0,70,4.6,4,4,24.1,77777,9,999999999,370,0.0400,0,88,999.000,999.0,99.0 +1988,10,23,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,20.6,74,101400,0,0,400,0,0,0,0,0,0,0,50,5.2,4,4,24.1,77777,9,999999999,370,0.0400,0,88,999.000,999.0,99.0 +1988,10,23,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,20.6,74,101500,0,0,411,0,0,0,0,0,0,0,70,3.1,7,7,24.1,1220,9,999999999,370,0.0400,0,88,999.000,999.0,99.0 +1988,10,23,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,20.6,82,101500,0,0,391,0,0,0,0,0,0,0,0,0.0,4,4,24.1,77777,9,999999999,370,0.0400,0,88,999.000,999.0,99.0 +1988,10,23,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,20.6,85,101500,0,0,388,0,0,0,0,0,0,0,320,2.1,4,4,24.1,77777,9,999999999,370,0.0400,0,88,999.000,999.0,99.0 +1988,10,23,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,20.6,85,101400,0,0,394,0,0,0,0,0,0,0,330,1.5,6,6,24.1,2440,9,999999999,370,0.0400,0,88,999.000,999.0,99.0 +1988,10,24,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,20.0,84,101400,0,0,391,0,0,0,0,0,0,0,0,0.0,6,6,24.1,2440,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1988,10,24,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,20.6,87,101300,0,0,385,0,0,0,0,0,0,0,0,0.0,4,4,24.1,77777,9,999999999,370,0.0400,0,88,999.000,999.0,99.0 +1988,10,24,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,20.6,90,101300,0,0,379,0,0,0,0,0,0,0,0,0.0,3,3,24.1,77777,9,999999999,370,0.0400,0,88,999.000,999.0,99.0 +1988,10,24,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,20.0,90,101300,0,0,376,0,0,0,0,0,0,0,0,0.0,3,3,24.1,77777,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1988,10,24,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,20.0,90,101300,0,0,367,0,0,0,0,0,0,0,0,0.0,1,1,24.1,77777,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1988,10,24,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,20.0,90,101300,0,0,372,26,86,15,0,0,0,0,0,0.0,2,2,24.1,77777,9,999999999,359,0.0510,0,88,999.000,999.0,99.0 +1988,10,24,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,20.6,90,101400,31,634,376,129,298,64,7300,9600,6800,1420,0,0.0,2,2,24.1,77777,9,999999999,370,0.0510,0,88,999.000,999.0,99.0 +1988,10,24,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,21.1,77,101400,297,1383,404,281,337,136,21100,25900,15500,3020,340,2.1,5,5,32.2,77777,9,999999999,390,0.0510,0,88,999.000,999.0,99.0 +1988,10,24,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,20.0,63,101500,590,1383,411,522,591,162,43100,57400,18500,3280,340,2.1,4,4,40.2,77777,9,999999999,359,0.0510,0,88,999.000,999.0,99.0 +1988,10,24,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,20.6,59,101500,837,1383,433,538,421,226,50700,43100,24500,5430,60,5.2,7,7,32.2,1220,9,999999999,370,0.0510,0,88,999.000,999.0,99.0 +1988,10,24,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,20.6,59,101400,1020,1383,440,710,476,321,70400,49300,33900,9980,360,4.1,8,8,32.2,1220,9,999999999,370,0.0510,0,88,999.000,999.0,99.0 +1988,10,24,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,21.1,65,101400,1126,1383,443,191,54,146,22100,5800,17400,5410,40,7.7,9,9,24.1,610,9,999999999,379,0.0510,0,88,999.000,999.0,99.0 +1988,10,24,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,22.8,82,101400,1149,1383,417,728,587,265,78800,59100,29600,10270,30,4.1,7,7,40.2,1220,9,999999999,419,0.0510,0,88,999.000,999.0,99.0 +1988,10,24,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,21.7,72,101300,1086,1383,422,502,362,253,58200,37800,28400,8720,50,4.1,7,7,40.2,1220,9,999999999,400,0.0510,0,88,999.000,999.0,99.0 +1988,10,24,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,20.0,61,101200,942,1383,421,301,190,200,36700,20500,22700,5270,50,3.6,6,6,40.2,1370,9,999999999,359,0.0510,0,88,999.000,999.0,99.0 +1988,10,24,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,19.4,63,101200,727,1383,410,178,136,133,23100,14200,15600,3370,60,5.2,5,5,32.2,77777,9,999999999,350,0.0510,0,88,999.000,999.0,99.0 +1988,10,24,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,20.0,63,101200,455,1383,408,65,211,39,11800,19600,5400,810,60,5.2,3,3,32.2,77777,9,999999999,359,0.0510,0,88,999.000,999.0,99.0 +1988,10,24,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,20.0,69,101300,148,1371,399,0,0,0,0,0,0,0,70,4.6,3,3,24.1,77777,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1988,10,24,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,20.6,76,101400,0,0,394,0,0,0,0,0,0,0,60,3.6,3,3,24.1,77777,9,999999999,370,0.0400,0,88,999.000,999.0,99.0 +1988,10,24,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,20.0,74,101400,0,0,389,0,0,0,0,0,0,0,50,3.6,2,2,24.1,77777,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1988,10,24,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,19.4,74,101500,0,0,385,0,0,0,0,0,0,0,40,2.6,2,2,24.1,77777,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1988,10,24,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,20.0,76,101500,0,0,381,0,0,0,0,0,0,0,60,2.1,1,1,24.1,77777,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1988,10,24,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,19.4,82,101500,0,0,372,0,0,0,0,0,0,0,0,0.0,1,1,24.1,77777,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1988,10,24,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,19.4,84,101500,0,0,369,0,0,0,0,0,0,0,310,1.5,1,1,24.1,77777,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1988,10,25,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,20.0,87,101500,0,0,370,0,0,0,0,0,0,0,0,0.0,1,1,24.1,77777,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1988,10,25,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,20.0,87,101400,0,0,370,0,0,0,0,0,0,0,320,1.5,1,1,24.1,77777,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1988,10,25,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,20.0,90,101400,0,0,367,0,0,0,0,0,0,0,0,0.0,1,1,24.1,77777,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1988,10,25,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,20.0,87,101400,0,0,370,0,0,0,0,0,0,0,0,0.0,1,1,24.1,77777,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1988,10,25,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,19.4,90,101400,0,0,364,0,0,0,0,0,0,0,0,0.0,1,1,24.1,77777,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1988,10,25,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,20.0,90,101400,0,0,367,27,112,13,0,0,0,0,310,1.5,1,1,24.1,77777,9,999999999,359,0.0270,0,88,999.000,999.0,99.0 +1988,10,25,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,20.0,90,101400,30,634,372,151,483,47,6800,15800,6000,530,0,0.0,2,2,32.2,77777,9,999999999,359,0.0270,0,88,999.000,999.0,99.0 +1988,10,25,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,20.6,72,101500,294,1384,403,266,311,133,20200,23800,15100,2940,40,3.1,4,4,24.1,77777,9,999999999,370,0.0270,0,88,999.000,999.0,99.0 +1988,10,25,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,20.0,63,101600,587,1384,408,519,568,175,42900,55000,19500,3570,50,4.6,3,3,24.1,77777,9,999999999,359,0.0270,0,88,999.000,999.0,99.0 +1988,10,25,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,19.4,55,101600,834,1384,416,737,853,106,65300,85000,13900,2460,40,6.2,3,3,32.2,77777,9,999999999,350,0.0270,0,88,999.000,999.0,99.0 +1988,10,25,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,18.3,50,101500,1016,1384,414,810,849,117,79300,85900,16000,3460,50,6.2,2,2,40.2,77777,9,999999999,329,0.0270,0,88,999.000,999.0,99.0 +1988,10,25,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,18.9,48,101500,1123,1384,431,856,719,258,88000,72400,29100,9340,50,3.6,5,5,40.2,77777,9,999999999,329,0.0270,0,88,999.000,999.0,99.0 +1988,10,25,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,18.3,45,101400,1145,1384,434,648,534,228,70900,54200,25900,8870,50,3.6,5,5,40.2,77777,9,999999999,320,0.0270,0,88,999.000,999.0,99.0 +1988,10,25,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,18.9,50,101300,1082,1384,422,610,658,161,72800,67600,19800,5570,50,6.7,3,3,40.2,77777,9,999999999,340,0.0270,0,88,999.000,999.0,99.0 +1988,10,25,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,17.8,46,101300,938,1384,421,476,806,52,63400,80500,8700,1640,50,5.7,3,3,40.2,77777,9,999999999,309,0.0270,0,88,999.000,999.0,99.0 +1988,10,25,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,18.3,51,101300,723,1384,411,279,630,72,43200,62600,10400,1690,50,6.2,2,2,40.2,77777,9,999999999,320,0.0270,0,88,999.000,999.0,99.0 +1988,10,25,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,18.3,58,101300,451,1384,403,66,298,30,14100,27800,5100,630,40,6.2,3,3,32.2,77777,9,999999999,320,0.0270,0,88,999.000,999.0,99.0 +1988,10,25,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,18.3,62,101400,145,1349,393,0,0,0,0,0,0,0,50,5.2,2,2,24.1,77777,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1988,10,25,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,18.9,67,101400,0,0,386,0,0,0,0,0,0,0,40,5.2,1,1,24.1,77777,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1988,10,25,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,18.3,67,101500,0,0,382,0,0,0,0,0,0,0,40,5.2,1,1,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1988,10,25,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,18.3,67,101600,0,0,382,0,0,0,0,0,0,0,30,4.1,1,1,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1988,10,25,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,17.8,71,101600,0,0,366,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,309,0.0400,0,88,999.000,999.0,99.0 +1988,10,25,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,17.8,74,101600,0,0,363,0,0,0,0,0,0,0,20,2.1,0,0,24.1,77777,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1988,10,25,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,18.3,69,101600,0,0,379,0,0,0,0,0,0,0,40,2.6,1,1,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1988,10,26,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,17.8,74,101600,0,0,370,0,0,0,0,0,0,0,0,0.0,1,1,24.1,77777,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1988,10,26,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,18.3,84,101500,0,0,362,0,0,0,0,0,0,0,300,1.5,1,1,24.1,77777,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1988,10,26,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,18.9,87,101500,0,0,363,0,0,0,0,0,0,0,0,0.0,1,1,24.1,77777,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1988,10,26,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,18.9,84,101400,0,0,366,0,0,0,0,0,0,0,0,0.0,1,1,24.1,77777,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1988,10,26,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,18.9,87,101500,0,0,363,0,0,0,0,0,0,0,0,0.0,1,1,24.1,77777,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1988,10,26,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,18.3,87,101500,0,0,360,27,141,11,0,0,0,0,0,0.0,1,1,24.1,77777,9,999999999,329,0.0280,0,88,999.000,999.0,99.0 +1988,10,26,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,18.3,87,101600,29,612,365,152,544,36,6200,19300,5100,480,0,0.0,2,2,32.2,77777,9,999999999,329,0.0280,0,88,999.000,999.0,99.0 +1988,10,26,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,20.0,76,101700,291,1385,390,369,597,115,23700,45300,14200,2260,300,2.1,3,3,32.2,77777,9,999999999,359,0.0280,0,88,999.000,999.0,99.0 +1988,10,26,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,18.3,57,101700,584,1385,402,554,750,101,43600,71900,13200,2010,40,2.6,3,2,40.2,77777,9,999999999,329,0.0280,0,88,999.000,999.0,99.0 +1988,10,26,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,17.2,48,101800,830,1385,409,701,756,145,63100,75900,17400,3440,40,3.1,3,2,40.2,77777,9,999999999,309,0.0280,0,88,999.000,999.0,99.0 +1988,10,26,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,18.9,51,101700,1013,1385,415,797,868,92,75700,86700,12100,2520,60,6.2,2,2,40.2,77777,9,999999999,329,0.0280,0,88,999.000,999.0,99.0 +1988,10,26,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,18.9,50,101600,1119,1385,422,736,694,161,78100,71400,20200,6040,60,7.7,3,3,40.2,77777,9,999999999,340,0.0280,0,88,999.000,999.0,99.0 +1988,10,26,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,18.3,48,101500,1141,1385,421,682,685,146,75500,69200,18300,5360,60,7.2,3,3,40.2,77777,9,999999999,329,0.0280,0,88,999.000,999.0,99.0 +1988,10,26,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,18.9,48,101400,1078,1385,425,632,702,157,75900,72100,19600,5390,50,5.7,4,3,40.2,77777,9,999999999,329,0.0280,0,88,999.000,999.0,99.0 +1988,10,26,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,18.9,50,101400,934,1385,422,408,583,103,53200,58900,13400,2760,40,5.7,4,3,40.2,77777,9,999999999,340,0.0280,0,88,999.000,999.0,99.0 +1988,10,26,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,18.9,53,101400,719,1385,415,226,452,79,34000,45500,10300,1800,60,6.7,4,3,40.2,77777,9,999999999,329,0.0280,0,88,999.000,999.0,99.0 +1988,10,26,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,18.9,57,101400,447,1385,409,60,277,27,13000,25800,4700,570,60,5.7,4,3,40.2,77777,9,999999999,340,0.0280,0,88,999.000,999.0,99.0 +1988,10,26,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,19.4,67,101500,141,1327,413,0,0,0,0,0,0,0,30,4.1,8,7,24.1,1370,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1988,10,26,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,19.4,67,101500,0,0,419,0,0,0,0,0,0,0,30,4.1,8,8,24.1,1370,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1988,10,26,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,19.4,71,101600,0,0,392,0,0,0,0,0,0,0,60,3.1,3,3,24.1,77777,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1988,10,26,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,20.0,76,101600,0,0,411,0,0,0,0,0,0,0,50,2.1,8,8,24.1,1370,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1988,10,26,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,19.4,71,101600,0,0,407,0,0,0,0,0,0,0,40,3.1,7,7,24.1,2740,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1988,10,26,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,19.4,74,101600,0,0,410,0,0,0,0,0,0,0,360,2.6,8,8,24.1,7620,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1988,10,26,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,19.4,74,101600,0,0,410,0,0,0,0,0,0,0,0,0.0,8,8,24.1,7620,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1988,10,27,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,18.9,74,101600,0,0,406,0,0,0,0,0,0,0,360,2.1,8,8,24.1,7620,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1988,10,27,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,18.9,74,101500,0,0,392,0,0,0,0,0,0,0,60,1.5,5,5,24.1,77777,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1988,10,27,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,18.9,76,101500,0,0,397,0,0,0,0,0,0,0,10,1.5,7,7,24.1,7620,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1988,10,27,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,18.9,79,101500,0,0,390,0,0,0,0,0,0,0,10,1.5,6,6,24.1,7620,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1988,10,27,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,18.3,79,101500,0,0,377,0,0,0,0,0,0,0,280,2.1,3,3,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1988,10,27,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,18.3,81,101500,0,0,374,24,75,14,0,0,0,0,310,2.1,3,3,24.1,77777,9,999999999,320,0.0600,0,88,999.000,999.0,99.0 +1988,10,27,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,18.3,81,101600,28,612,374,144,326,75,8700,8300,8200,2080,0,0.0,3,3,32.2,77777,9,999999999,329,0.0600,0,88,999.000,999.0,99.0 +1988,10,27,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,18.9,65,101600,288,1385,394,364,599,111,23300,45200,13900,2170,60,3.6,2,2,32.2,77777,9,999999999,340,0.0600,0,88,999.000,999.0,99.0 +1988,10,27,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,17.8,55,101700,581,1385,401,558,744,110,43800,70900,14000,2160,50,4.6,2,2,40.2,77777,9,999999999,320,0.0600,0,88,999.000,999.0,99.0 +1988,10,27,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,18.3,51,101700,827,1385,415,760,809,167,67800,80600,19500,3850,60,4.6,3,3,40.2,77777,9,999999999,320,0.0600,0,88,999.000,999.0,99.0 +1988,10,27,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,17.8,50,101600,1009,1385,414,853,832,180,83400,84600,21600,5350,60,4.6,3,3,40.2,77777,9,999999999,320,0.0600,0,88,999.000,999.0,99.0 +1988,10,27,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,16.7,45,101500,1115,1385,416,783,725,185,82300,74200,22400,6790,60,4.6,3,3,40.2,77777,9,999999999,300,0.0600,0,88,999.000,999.0,99.0 +1988,10,27,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,16.7,45,101500,1137,1385,416,735,635,240,80200,64200,27300,9060,60,6.2,3,3,40.2,77777,9,999999999,300,0.0600,0,88,999.000,999.0,99.0 +1988,10,27,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,17.2,46,101400,1074,1385,416,659,758,147,77300,76200,18000,4560,60,5.2,3,3,40.2,77777,9,999999999,300,0.0600,0,88,999.000,999.0,99.0 +1988,10,27,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,17.8,48,101300,930,1385,417,449,644,114,57900,64700,14300,2940,60,5.7,3,3,40.2,77777,9,999999999,320,0.0600,0,88,999.000,999.0,99.0 +1988,10,27,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,17.2,49,101300,715,1385,410,262,633,58,42300,63200,9600,1430,70,8.8,3,3,40.2,77777,9,999999999,300,0.0600,0,88,999.000,999.0,99.0 +1988,10,27,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,17.8,55,101400,443,1385,405,41,109,28,7500,10000,4300,480,70,7.7,3,3,32.2,77777,9,999999999,320,0.0600,0,88,999.000,999.0,99.0 +1988,10,27,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,18.3,62,101400,138,1328,397,0,0,0,0,0,0,0,40,7.2,3,3,24.1,77777,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1988,10,27,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,18.3,64,101400,0,0,390,0,0,0,0,0,0,0,50,5.2,2,2,24.1,77777,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1988,10,27,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,18.3,67,101500,0,0,382,0,0,0,0,0,0,0,40,4.1,1,1,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1988,10,27,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,18.3,69,101500,0,0,379,0,0,0,0,0,0,0,60,4.1,1,1,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1988,10,27,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,18.9,69,101600,0,0,392,0,0,0,0,0,0,0,70,4.1,3,3,24.1,77777,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1988,10,27,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,18.9,71,101500,0,0,380,0,0,0,0,0,0,0,60,4.1,1,1,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1988,10,27,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,18.3,71,101500,0,0,376,0,0,0,0,0,0,0,0,0.0,1,1,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1988,10,28,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,18.9,79,101500,0,0,372,0,0,0,0,0,0,0,0,0.0,2,1,24.1,77777,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1988,10,28,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,18.9,82,101500,0,0,374,0,0,0,0,0,0,0,280,1.5,2,2,24.1,77777,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1988,10,28,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,18.3,81,101500,0,0,365,0,0,0,0,0,0,0,300,2.6,1,1,24.1,77777,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1988,10,28,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,18.9,84,101500,0,0,366,0,0,0,0,0,0,0,340,2.1,1,1,24.1,77777,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1988,10,28,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,18.9,84,101500,0,0,366,0,0,0,0,0,0,0,0,0.0,1,1,24.1,77777,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1988,10,28,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,18.3,81,101500,0,0,370,23,83,13,0,0,0,0,0,0.0,2,2,24.1,77777,9,999999999,320,0.0360,0,88,999.000,999.0,99.0 +1988,10,28,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,18.9,82,101500,27,589,374,132,415,45,6200,13200,5500,510,280,1.5,2,2,24.1,77777,9,999999999,340,0.0360,0,88,999.000,999.0,99.0 +1988,10,28,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,19.4,67,101600,286,1386,394,376,749,61,21900,57400,10000,1070,40,4.6,2,2,32.2,77777,9,999999999,350,0.0360,0,88,999.000,999.0,99.0 +1988,10,28,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,19.4,57,101600,578,1386,409,548,776,84,41900,73700,11100,1610,70,6.7,2,2,32.2,77777,9,999999999,350,0.0360,0,88,999.000,999.0,99.0 +1988,10,28,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,19.4,57,101600,824,1386,413,724,797,142,65000,80000,17200,3340,60,4.6,3,3,32.2,77777,9,999999999,350,0.0360,0,88,999.000,999.0,99.0 +1988,10,28,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,18.3,50,101600,1006,1386,418,748,719,168,73500,73300,20200,4990,70,6.2,3,3,32.2,77777,9,999999999,329,0.0360,0,88,999.000,999.0,99.0 +1988,10,28,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,18.9,51,101600,1111,1386,429,768,639,244,79300,64500,27500,8610,50,5.7,6,6,32.2,1370,9,999999999,329,0.0360,0,88,999.000,999.0,99.0 +1988,10,28,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,18.3,47,101400,1133,1386,434,529,286,307,59800,31100,34300,11190,60,5.7,6,6,32.2,1370,9,999999999,329,0.0360,0,88,999.000,999.0,99.0 +1988,10,28,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,18.9,48,101300,1070,1386,425,657,783,130,78300,79200,17000,4130,70,7.2,3,3,32.2,77777,9,999999999,329,0.0360,0,88,999.000,999.0,99.0 +1988,10,28,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,18.9,50,101300,926,1386,422,403,457,167,52100,47400,20300,4300,70,5.7,3,3,32.2,77777,9,999999999,340,0.0360,0,88,999.000,999.0,99.0 +1988,10,28,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,18.9,53,101300,711,1386,411,246,541,72,37500,53600,9900,1670,70,8.2,2,2,40.2,77777,9,999999999,329,0.0360,0,88,999.000,999.0,99.0 +1988,10,28,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,18.9,59,101400,440,1386,403,68,313,29,14300,29000,5100,710,60,8.2,2,2,32.2,77777,9,999999999,340,0.0360,0,88,999.000,999.0,99.0 +1988,10,28,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,19.4,65,101400,135,1305,401,0,0,0,0,0,0,0,70,8.2,3,3,24.1,77777,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1988,10,28,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,19.4,69,101500,0,0,396,0,0,0,0,0,0,0,60,7.2,3,3,24.1,77777,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1988,10,28,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,19.4,69,101500,0,0,392,0,0,0,0,0,0,0,60,8.2,2,2,24.1,77777,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1988,10,28,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,19.4,69,101600,0,0,392,0,0,0,0,0,0,0,70,7.7,2,2,24.1,77777,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1988,10,28,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,20.0,72,101600,0,0,396,0,0,0,0,0,0,0,60,7.2,3,3,24.1,77777,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1988,10,28,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,20.0,72,101600,0,0,406,0,0,0,0,0,0,0,70,7.2,6,6,24.1,1220,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1988,10,28,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,19.4,71,101500,0,0,395,0,0,0,0,0,0,0,60,5.2,4,4,24.1,77777,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1988,10,29,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,18.9,69,101500,0,0,383,0,0,0,0,0,0,0,50,4.6,1,1,24.1,77777,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1988,10,29,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,18.9,71,101500,0,0,380,0,0,0,0,0,0,0,60,4.1,1,1,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1988,10,29,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,18.3,71,101500,0,0,376,0,0,0,0,0,0,0,70,3.6,1,1,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1988,10,29,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,17.8,69,101500,0,0,376,0,0,0,0,0,0,0,60,4.6,1,1,24.1,77777,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1988,10,29,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,17.8,74,101500,0,0,379,0,0,0,0,0,0,0,360,1.5,3,3,24.1,77777,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1988,10,29,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,18.3,81,101500,0,0,374,25,59,18,0,0,0,0,300,2.6,3,3,24.1,77777,9,999999999,320,0.0430,0,88,999.000,999.0,99.0 +1988,10,29,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,18.9,82,101600,26,589,386,132,245,82,8800,5900,8500,2410,0,0.0,6,6,32.2,1220,9,999999999,340,0.0430,0,88,999.000,999.0,99.0 +1988,10,29,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,18.9,69,101600,283,1387,395,323,436,140,23000,32600,16300,3180,30,2.6,4,4,32.2,77777,9,999999999,340,0.0430,0,88,999.000,999.0,99.0 +1988,10,29,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,18.9,65,101600,575,1387,407,503,535,185,41600,51500,20200,3800,80,3.6,6,6,32.2,1220,9,999999999,340,0.0430,0,88,999.000,999.0,99.0 +1988,10,29,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,19.4,65,101600,820,1387,423,672,556,268,61600,56600,28000,6470,60,5.7,8,8,24.1,1220,9,999999999,350,0.0430,0,88,999.000,999.0,99.0 +1988,10,29,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,18.9,55,101600,1002,1387,423,628,469,252,63300,48700,27900,7430,70,5.2,6,6,32.2,1220,9,999999999,340,0.0430,0,88,999.000,999.0,99.0 +1988,10,29,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,17.2,45,101500,1107,1387,420,822,802,165,84100,80400,19700,5330,50,5.2,3,3,32.2,77777,9,999999999,309,0.0430,0,88,999.000,999.0,99.0 +1988,10,29,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,17.8,48,101400,1129,1387,421,737,760,149,81300,76700,18600,5240,70,7.2,4,4,32.2,77777,9,999999999,320,0.0430,0,88,999.000,999.0,99.0 +1988,10,29,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,18.9,50,101300,1066,1387,425,587,641,158,70100,65800,19400,5270,50,6.7,4,4,32.2,77777,9,999999999,340,0.0430,0,88,999.000,999.0,99.0 +1988,10,29,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,18.3,48,101300,922,1387,421,440,578,144,56300,58800,17100,3820,70,7.2,3,3,32.2,77777,9,999999999,329,0.0430,0,88,999.000,999.0,99.0 +1988,10,29,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,18.3,51,101300,707,1387,425,195,201,131,25900,21000,15200,2760,60,8.2,6,6,40.2,1370,9,999999999,320,0.0430,0,88,999.000,999.0,99.0 +1988,10,29,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,18.9,59,101400,436,1387,422,55,118,41,9000,10900,5500,710,60,7.7,7,7,32.2,1370,9,999999999,340,0.0430,0,88,999.000,999.0,99.0 +1988,10,29,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,18.9,63,101500,132,1283,404,0,0,0,0,0,0,0,40,7.2,4,4,24.1,77777,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1988,10,29,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,18.9,65,101500,0,0,407,0,0,0,0,0,0,0,70,7.2,6,6,24.1,1220,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1988,10,29,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,18.9,65,101600,0,0,412,0,0,0,0,0,0,0,70,7.7,7,7,24.1,1220,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1988,10,29,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,18.9,67,101600,0,0,409,0,0,0,0,0,0,0,60,7.2,7,7,24.1,1220,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1988,10,29,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,20.6,76,101600,0,0,415,0,0,0,0,0,0,0,70,6.2,8,8,16.1,1220,9,999999999,370,0.0400,0,88,999.000,999.0,99.0 +1988,10,29,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,20.0,76,101600,0,0,393,0,0,0,0,0,0,0,60,5.2,4,4,24.1,77777,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1988,10,29,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,19.4,71,101600,0,0,402,0,0,0,0,0,0,0,50,3.1,6,6,24.1,1370,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1988,10,30,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,18.9,69,101600,0,0,398,0,0,0,0,0,0,0,60,4.1,5,5,24.1,77777,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1988,10,30,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,19.4,74,101500,0,0,380,0,0,0,0,0,0,0,70,4.1,1,1,24.1,77777,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1988,10,30,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,19.4,74,101500,0,0,385,0,0,0,0,0,0,0,60,4.1,2,2,24.1,77777,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1988,10,30,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,19.4,74,101500,0,0,385,0,0,0,0,0,0,0,70,3.1,2,2,24.1,77777,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1988,10,30,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,20.0,76,101500,0,0,393,0,0,0,0,0,0,0,50,3.6,4,4,24.1,77777,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1988,10,30,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,20.0,79,101600,0,0,408,17,21,15,0,0,0,0,60,3.1,8,8,24.1,1370,9,999999999,359,0.0250,0,88,999.000,999.0,99.0 +1988,10,30,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,20.6,82,101600,25,567,409,63,72,48,5300,2500,5200,990,50,3.6,8,8,32.2,1220,9,999999999,370,0.0250,0,88,999.000,999.0,99.0 +1988,10,30,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,20.0,76,101700,280,1388,411,247,154,183,23200,13300,20500,3070,60,5.7,8,8,32.2,6710,9,999999999,359,0.0250,0,88,999.000,999.0,99.0 +1988,10,30,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,20.6,67,101700,571,1388,420,371,220,241,35400,21600,26400,5690,50,4.6,7,7,32.2,6710,9,999999999,370,0.0250,0,88,999.000,999.0,99.0 +1988,10,30,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,19.4,57,101800,817,1388,428,562,424,255,54200,44900,27700,6330,60,6.2,7,7,32.2,6710,9,999999999,350,0.0250,0,88,999.000,999.0,99.0 +1988,10,30,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,19.4,61,101700,998,1388,429,566,291,333,58500,31400,35900,10020,70,5.7,8,8,32.2,1220,9,999999999,350,0.0250,0,88,999.000,999.0,99.0 +1988,10,30,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,20.0,57,101600,1103,1388,432,415,159,286,46100,17000,32500,10180,60,7.2,7,7,32.2,7620,9,999999999,359,0.0250,0,88,999.000,999.0,99.0 +1988,10,30,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,19.4,53,101500,1125,1388,435,661,399,354,74000,43300,38800,12910,90,6.7,7,7,32.2,7620,9,999999999,350,0.0250,0,88,999.000,999.0,99.0 +1988,10,30,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,19.4,53,101400,1062,1388,426,525,495,195,60800,50300,22200,6320,70,6.2,5,5,40.2,77777,9,999999999,350,0.0250,0,88,999.000,999.0,99.0 +1988,10,30,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,19.4,53,101400,918,1388,426,409,519,144,52000,52800,16900,3800,70,5.7,5,5,40.2,77777,9,999999999,350,0.0250,0,88,999.000,999.0,99.0 +1988,10,30,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,19.4,53,101400,703,1388,430,247,472,99,36000,47000,12100,2170,60,5.7,6,6,40.2,7620,9,999999999,350,0.0250,0,88,999.000,999.0,99.0 +1988,10,30,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,18.9,57,101500,433,1388,424,57,23,54,6800,2100,6100,1610,60,7.7,7,7,32.2,7620,9,999999999,340,0.0250,0,88,999.000,999.0,99.0 +1988,10,30,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,18.9,63,101500,129,1284,407,0,0,0,0,0,0,0,60,7.2,5,5,24.1,77777,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1988,10,30,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,20.0,72,101600,0,0,417,0,0,0,0,0,0,0,60,7.2,8,8,16.1,610,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1988,10,30,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,20.0,72,101600,0,0,417,0,0,0,0,0,0,0,70,6.2,8,8,16.1,610,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1988,10,30,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,20.0,72,101600,0,0,426,0,0,0,0,0,0,0,70,7.2,9,9,16.1,610,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1988,10,30,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,20.6,79,101600,0,0,397,0,0,0,0,0,0,0,310,1.5,5,5,24.1,77777,9,999999999,370,0.0400,0,88,999.000,999.0,99.0 +1988,10,30,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,20.0,72,101600,0,0,417,0,0,0,0,0,0,0,60,3.6,8,8,24.1,610,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1988,10,30,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,19.4,69,101600,0,0,405,0,0,0,0,0,0,0,50,3.1,6,6,24.1,1370,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1988,10,31,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,18.9,69,101600,0,0,398,0,0,0,0,0,0,0,60,3.6,5,5,24.1,77777,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1988,10,31,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,19.4,71,101600,0,0,395,0,0,0,0,0,0,0,60,5.7,4,4,24.1,77777,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1988,10,31,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,18.9,71,101500,0,0,392,0,0,0,0,0,0,0,60,4.1,4,4,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1988,10,31,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,18.9,71,101500,0,0,392,0,0,0,0,0,0,0,50,3.6,4,4,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1988,10,31,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,18.9,69,101500,0,0,392,0,0,0,0,0,0,0,70,2.6,3,3,24.1,77777,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1988,10,31,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,18.3,69,101600,0,0,391,21,36,17,0,0,0,0,70,4.6,4,4,24.1,77777,9,999999999,329,0.0300,0,88,999.000,999.0,99.0 +1988,10,31,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,18.9,69,101600,24,567,392,133,450,43,6000,13900,5400,490,60,4.1,3,3,40.2,77777,9,999999999,340,0.0300,0,88,999.000,999.0,99.0 +1988,10,31,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,18.9,65,101700,277,1388,398,357,647,90,21500,47000,12100,1380,60,5.2,3,3,32.2,77777,9,999999999,340,0.0300,0,88,999.000,999.0,99.0 +1988,10,31,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,18.3,55,101700,568,1388,409,525,609,166,42900,58500,18800,3350,70,4.1,3,3,32.2,77777,9,999999999,329,0.0300,0,88,999.000,999.0,99.0 +1988,10,31,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,18.3,51,101700,813,1388,415,451,414,154,43300,42500,18300,3490,60,5.2,3,3,40.2,77777,9,999999999,320,0.0300,0,88,999.000,999.0,99.0 +1988,10,31,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,18.9,50,101700,994,1388,422,528,435,182,54500,45400,22000,5180,70,5.7,3,3,40.2,77777,9,999999999,340,0.0300,0,88,999.000,999.0,99.0 +1988,10,31,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,17.8,45,101600,1099,1388,427,758,713,179,79700,73000,21700,6330,60,5.2,4,4,40.2,77777,9,999999999,320,0.0300,0,88,999.000,999.0,99.0 +1988,10,31,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,17.2,45,101500,1121,1388,423,758,770,168,82400,77200,19900,5580,70,5.7,4,4,40.2,77777,9,999999999,309,0.0300,0,88,999.000,999.0,99.0 +1988,10,31,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,17.8,46,101400,1058,1388,421,591,630,174,69900,64400,20700,5660,60,3.6,7,3,32.2,77777,9,999999999,309,0.0300,0,88,999.000,999.0,99.0 +1988,10,31,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,19.4,57,101400,914,1388,423,385,347,208,47000,35900,23300,5350,50,5.2,6,6,32.2,7620,9,999999999,350,0.0300,0,88,999.000,999.0,99.0 +1988,10,31,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,19.4,61,101400,699,1388,429,166,107,132,20900,11100,15300,3290,60,7.2,8,8,32.2,1370,9,999999999,350,0.0300,0,88,999.000,999.0,99.0 +1988,10,31,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,20.6,76,101400,429,1388,400,55,177,34,10400,16000,5400,590,60,7.2,5,5,32.2,77777,9,999999999,370,0.0300,0,88,999.000,999.0,99.0 +1988,10,31,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,18.9,67,101500,126,1261,401,0,0,0,0,0,0,0,60,7.2,5,5,24.1,77777,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1988,10,31,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,20.0,74,101500,0,0,399,0,0,0,0,0,0,0,70,5.2,5,5,24.1,77777,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1988,10,31,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,19.4,71,101600,0,0,407,0,0,0,0,0,0,0,90,4.1,7,7,24.1,1220,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1988,10,31,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,18.9,71,101600,0,0,392,0,0,0,0,0,0,0,40,5.2,4,4,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1988,10,31,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.3,19.1,74,101700,0,0,388,0,0,0,0,0,0,0,50,5.6,3,3,24.1,77777,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1988,10,31,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.3,19.2,71,101700,0,0,388,0,0,0,0,0,0,0,60,5.9,3,3,24.1,77777,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1988,10,31,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.2,19.4,74,101600,0,0,391,0,0,0,0,0,0,0,40,6.3,4,4,24.1,77777,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1979,11,1,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.1,19.5,87,101500,0,0,429,0,0,0,0,0,0,0,50,6.6,10,10,12.9,610,9,999999999,370,0.0400,0,88,999.000,999.0,99.0 +1979,11,1,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.0,19.7,85,101500,0,0,429,0,0,0,0,0,0,0,80,7.0,10,10,19.3,1370,9,999999999,390,0.0400,0,88,999.000,999.0,99.0 +1979,11,1,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.0,19.8,85,101400,0,0,417,0,0,0,0,0,0,0,80,7.3,10,9,24.1,610,9,999999999,390,0.0400,0,88,999.000,999.0,99.0 +1979,11,1,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,20.0,79,101400,0,0,408,0,0,0,0,0,0,0,60,7.7,8,8,24.1,1520,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1979,11,1,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,20.6,79,101400,0,0,420,0,0,0,0,0,0,0,30,3.6,9,9,24.1,1520,9,999999999,370,0.0400,0,88,999.000,999.0,99.0 +1979,11,1,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,20.6,82,101500,0,0,417,5,0,5,0,0,0,0,60,4.1,9,9,24.1,610,9,999999999,370,0.0320,0,88,999.000,999.0,99.0 +1979,11,1,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,20.6,79,101500,24,567,420,70,70,56,6000,2300,5900,1160,40,4.1,10,9,24.1,610,9,999999999,370,0.0320,0,88,999.000,999.0,99.0 +1979,11,1,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,21.1,79,101500,276,1388,409,262,200,180,22600,14900,19600,3890,70,5.2,8,7,40.2,1520,9,999999999,379,0.0320,0,88,999.000,999.0,99.0 +1979,11,1,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,20.6,74,101600,567,1388,411,311,149,223,30400,14600,24400,5260,80,3.6,8,7,40.2,1520,9,999999999,370,0.0320,0,88,999.000,999.0,99.0 +1979,11,1,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,21.1,74,101600,812,1388,431,640,412,343,61200,43400,35700,9080,60,5.2,9,9,32.2,1370,9,999999999,379,0.0320,0,88,999.000,999.0,99.0 +1979,11,1,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,21.1,77,101600,994,1388,428,298,92,224,32500,9800,25500,6940,60,4.1,10,9,19.3,550,9,999999999,390,0.0320,0,88,999.000,999.0,99.0 +1979,11,1,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,21.1,67,101500,1099,1388,440,427,310,171,47000,32500,21100,5880,80,8.2,10,9,19.3,550,9,999999999,379,0.0400,0,88,999.000,999.0,99.0 +1979,11,1,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,21.1,67,101500,1120,1388,440,407,277,190,46300,29100,22800,6890,70,6.7,10,9,19.3,610,9,999999999,379,0.0400,0,88,999.000,999.0,99.0 +1979,11,1,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,20.6,72,101400,1057,1388,430,296,9,289,34700,800,34100,13020,60,8.8,9,9,24.1,1220,9,999999999,370,0.0400,0,88,999.000,999.0,99.0 +1979,11,1,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,21.1,74,101400,913,1388,431,203,185,110,26600,19300,13900,2720,60,6.2,9,9,24.1,1220,9,999999999,379,0.0400,0,88,999.000,999.0,99.0 +1979,11,1,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,20.6,72,101400,699,1388,430,98,14,93,11100,1400,10400,3140,90,6.2,9,9,32.2,610,9,999999999,370,0.0320,0,88,999.000,999.0,99.0 +1979,11,1,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,20.0,67,101300,428,1388,408,55,124,40,9000,11200,5500,700,60,9.3,5,5,40.2,77777,9,999999999,359,0.0320,0,88,999.000,999.0,99.0 +1979,11,1,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,20.6,79,101400,126,1261,405,0,0,0,0,0,0,0,60,7.2,7,7,24.1,1220,9,999999999,370,0.0400,0,88,999.000,999.0,99.0 +1979,11,1,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,21.1,85,101500,0,0,430,0,0,0,0,0,0,0,70,5.7,10,10,19.3,610,9,999999999,390,0.0400,0,88,999.000,999.0,99.0 +1979,11,1,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,20.6,79,101500,0,0,391,0,0,0,0,0,0,0,70,5.7,3,3,24.1,77777,9,999999999,370,0.0400,0,88,999.000,999.0,99.0 +1979,11,1,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,20.0,76,101600,0,0,390,0,0,0,0,0,0,0,80,6.2,3,3,24.1,77777,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1979,11,1,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,20.0,76,101600,0,0,386,0,0,0,0,0,0,0,80,5.2,2,2,24.1,77777,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1979,11,1,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,20.0,74,101600,0,0,389,0,0,0,0,0,0,0,70,5.2,2,2,24.1,77777,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1979,11,1,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,20.6,79,101600,0,0,400,0,0,0,0,0,0,0,50,6.2,6,6,24.1,1220,9,999999999,370,0.0400,0,88,999.000,999.0,99.0 +1979,11,2,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,20.0,74,101600,0,0,396,0,0,0,0,0,0,0,50,5.7,4,4,24.1,77777,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1979,11,2,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,20.0,76,101500,0,0,393,0,0,0,0,0,0,0,50,5.2,4,4,24.1,77777,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1979,11,2,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,19.4,76,101500,0,0,387,0,0,0,0,0,0,0,60,2.6,3,3,24.1,77777,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1979,11,2,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,19.4,84,101500,0,0,374,0,0,0,0,0,0,0,290,2.6,2,2,24.1,77777,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1979,11,2,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,19.4,84,101500,0,0,369,0,0,0,0,0,0,0,330,2.1,1,1,24.1,77777,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1979,11,2,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,19.4,87,101500,0,0,372,22,66,14,0,0,0,0,300,1.5,2,2,24.1,77777,9,999999999,350,0.0360,0,88,999.000,999.0,99.0 +1979,11,2,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,19.4,84,101600,23,544,374,126,429,41,5700,13200,5100,480,340,3.1,2,2,24.1,77777,9,999999999,350,0.0360,0,88,999.000,999.0,99.0 +1979,11,2,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,20.6,72,101600,273,1389,396,363,714,71,21200,52800,10700,1180,90,2.1,2,2,40.2,77777,9,999999999,370,0.0360,0,88,999.000,999.0,99.0 +1979,11,2,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,20.0,65,101700,564,1389,405,510,669,118,40100,63000,14400,2250,80,4.6,3,3,40.2,77777,9,999999999,359,0.0360,0,88,999.000,999.0,99.0 +1979,11,2,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,21.1,61,101700,809,1389,422,591,528,215,55100,53900,23600,5010,80,6.2,4,4,40.2,77777,9,999999999,379,0.0400,0,88,999.000,999.0,99.0 +1979,11,2,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,21.1,61,101600,990,1389,425,705,565,258,70400,58600,28500,7460,80,6.2,5,5,40.2,77777,9,999999999,379,0.0400,0,88,999.000,999.0,99.0 +1979,11,2,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,20.6,57,101600,1095,1389,427,752,660,213,77500,67000,24600,7310,60,6.2,5,5,40.2,77777,9,999999999,370,0.0400,0,88,999.000,999.0,99.0 +1979,11,2,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,20.6,59,101500,1116,1389,428,700,683,178,78000,70000,21600,6530,60,6.2,6,6,40.2,1520,9,999999999,370,0.0400,0,88,999.000,999.0,99.0 +1979,11,2,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,20.6,57,101400,1053,1389,427,640,850,76,75500,85100,10800,2410,70,7.2,5,5,40.2,77777,9,999999999,370,0.0400,0,88,999.000,999.0,99.0 +1979,11,2,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,20.0,55,101400,909,1389,423,478,696,126,62600,71100,15900,3330,70,9.3,4,4,40.2,77777,9,999999999,359,0.0360,0,88,999.000,999.0,99.0 +1979,11,2,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,19.4,55,101400,695,1389,412,245,595,61,39100,59100,9400,1460,60,7.7,2,2,40.2,77777,9,999999999,350,0.0360,0,88,999.000,999.0,99.0 +1979,11,2,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,19.4,61,101400,425,1389,398,61,338,20,13400,30700,3900,640,60,7.2,1,1,40.2,77777,9,999999999,350,0.0360,0,88,999.000,999.0,99.0 +1979,11,2,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,19.4,65,101500,123,1262,392,0,0,0,0,0,0,0,70,6.7,1,1,24.1,77777,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1979,11,2,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,20.0,69,101500,0,0,390,0,0,0,0,0,0,0,80,7.2,1,1,24.1,77777,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1979,11,2,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,20.0,71,101600,0,0,387,0,0,0,0,0,0,0,60,5.2,1,1,24.1,77777,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1979,11,2,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,19.4,71,101600,0,0,383,0,0,0,0,0,0,0,70,5.2,1,1,24.1,77777,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1979,11,2,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,20.0,74,101700,0,0,384,0,0,0,0,0,0,0,60,6.2,1,1,24.1,77777,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1979,11,2,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,19.4,71,101700,0,0,383,0,0,0,0,0,0,0,60,3.1,1,1,24.1,77777,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1979,11,2,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,19.4,71,101600,0,0,389,0,0,0,0,0,0,0,70,5.7,2,2,24.1,77777,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1979,11,3,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,20.0,74,101600,0,0,389,0,0,0,0,0,0,0,70,5.2,2,2,24.1,77777,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1979,11,3,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,19.4,71,101500,0,0,392,0,0,0,0,0,0,0,70,4.1,3,3,24.1,77777,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1979,11,3,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,19.4,74,101500,0,0,389,0,0,0,0,0,0,0,50,4.1,3,3,24.1,77777,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1979,11,3,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,18.9,74,101500,0,0,382,0,0,0,0,0,0,0,350,1.5,2,2,24.1,77777,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1979,11,3,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,18.9,76,101500,0,0,379,0,0,0,0,0,0,0,350,2.6,2,2,24.1,77777,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1979,11,3,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,18.9,76,101600,0,0,379,24,108,10,0,0,0,0,350,2.1,2,2,24.1,77777,9,999999999,340,0.0200,0,88,999.000,999.0,99.0 +1979,11,3,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,20.0,76,101600,22,544,386,123,381,48,6100,11200,5500,1020,50,6.2,3,2,40.2,77777,9,999999999,359,0.0200,0,88,999.000,999.0,99.0 +1979,11,3,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,20.0,67,101600,270,1390,398,312,527,98,19900,38600,12400,1900,110,3.1,3,2,40.2,77777,9,999999999,359,0.0200,0,88,999.000,999.0,99.0 +1979,11,3,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,20.0,61,101700,561,1390,411,546,781,90,42500,74400,12400,1790,60,6.7,4,3,40.2,77777,9,999999999,359,0.0200,0,88,999.000,999.0,99.0 +1979,11,3,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,20.6,61,101700,805,1390,415,564,543,173,52600,55600,20300,3930,70,8.2,4,3,40.2,77777,9,999999999,370,0.0400,0,88,999.000,999.0,99.0 +1979,11,3,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,20.6,59,101700,986,1390,421,736,696,184,71600,70500,21400,5210,80,8.2,5,4,40.2,77777,9,999999999,370,0.0400,0,88,999.000,999.0,99.0 +1979,11,3,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,19.4,53,101600,1091,1390,419,792,810,139,82200,81800,17800,4520,60,8.8,4,3,40.2,77777,9,999999999,350,0.0200,0,88,999.000,999.0,99.0 +1979,11,3,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,18.9,50,101500,1112,1390,422,740,791,139,82100,79900,17900,4750,70,7.7,4,3,40.2,77777,9,999999999,340,0.0200,0,88,999.000,999.0,99.0 +1979,11,3,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,18.9,51,101400,1049,1390,422,686,806,157,79700,80600,18600,4480,60,6.2,4,4,40.2,77777,9,999999999,329,0.0200,0,88,999.000,999.0,99.0 +1979,11,3,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,19.4,53,101400,906,1390,419,448,697,98,59300,70300,13300,2550,80,7.7,4,3,40.2,77777,9,999999999,350,0.0200,0,88,999.000,999.0,99.0 +1979,11,3,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,18.9,53,101400,692,1390,415,225,507,69,35100,50900,9600,1560,70,8.2,3,3,40.2,77777,9,999999999,329,0.0200,0,88,999.000,999.0,99.0 +1979,11,3,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,19.4,59,101400,422,1390,406,62,303,26,13200,27900,4700,640,70,8.2,3,2,40.2,77777,9,999999999,350,0.0200,0,88,999.000,999.0,99.0 +1979,11,3,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,19.4,65,101400,120,1239,397,0,0,0,0,0,0,0,80,8.2,2,2,40.2,77777,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1979,11,3,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,19.4,67,101500,0,0,394,0,0,0,0,0,0,0,70,7.2,2,2,24.1,77777,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1979,11,3,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,20.0,69,101600,0,0,395,0,0,0,0,0,0,0,70,7.7,3,2,24.1,77777,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1979,11,3,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,20.0,71,101600,0,0,392,0,0,0,0,0,0,0,70,7.2,4,2,24.1,77777,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1979,11,3,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,20.0,71,101600,0,0,392,0,0,0,0,0,0,0,60,6.7,4,2,24.1,77777,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1979,11,3,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,20.0,74,101600,0,0,389,0,0,0,0,0,0,0,80,5.2,3,2,24.1,77777,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1979,11,3,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,20.6,76,101600,0,0,390,0,0,0,0,0,0,0,70,4.6,3,2,24.1,77777,9,999999999,370,0.0400,0,88,999.000,999.0,99.0 +1979,11,4,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,18.9,71,101600,0,0,385,0,0,0,0,0,0,0,60,3.6,3,2,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1979,11,4,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,19.4,71,101600,0,0,389,0,0,0,0,0,0,0,70,5.7,3,2,24.1,77777,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1979,11,4,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,20.0,74,101500,0,0,389,0,0,0,0,0,0,0,70,5.2,2,2,24.1,77777,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1979,11,4,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,19.4,74,101500,0,0,385,0,0,0,0,0,0,0,80,4.6,2,2,24.1,77777,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1979,11,4,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,19.4,71,101500,0,0,389,0,0,0,0,0,0,0,50,6.2,2,2,24.1,77777,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1979,11,4,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,18.9,69,101600,0,0,392,19,29,15,0,0,0,0,70,5.7,3,3,24.1,77777,9,999999999,340,0.0460,0,88,999.000,999.0,99.0 +1979,11,4,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,18.9,69,101600,21,521,392,139,400,61,7100,11100,6600,1390,70,5.2,3,3,32.2,77777,9,999999999,340,0.0460,0,88,999.000,999.0,99.0 +1979,11,4,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,19.4,65,101700,267,1391,401,264,370,114,18800,26900,13600,2460,80,5.2,3,3,40.2,77777,9,999999999,350,0.0460,0,88,999.000,999.0,99.0 +1979,11,4,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,18.9,55,101700,557,1391,413,475,589,133,38900,56600,16200,2610,90,6.7,3,3,40.2,77777,9,999999999,340,0.0460,0,88,999.000,999.0,99.0 +1979,11,4,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,18.9,51,101700,802,1391,419,527,445,210,49200,45400,23000,4850,100,6.7,3,3,40.2,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1979,11,4,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,19.4,55,101700,982,1391,423,544,266,334,56200,28600,35900,9870,70,5.2,5,5,40.2,77777,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1979,11,4,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,18.3,48,101600,1087,1391,425,785,735,192,81600,74900,22800,6540,80,9.3,4,4,40.2,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1979,11,4,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,18.3,48,101600,1109,1391,421,822,942,65,85900,94600,10300,2370,80,9.8,3,3,40.2,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1979,11,4,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,18.3,48,101400,1045,1391,421,575,639,158,68600,65500,19200,5050,80,8.2,3,3,40.2,77777,9,999999999,329,0.0460,0,88,999.000,999.0,99.0 +1979,11,4,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,18.3,51,101400,902,1391,405,478,851,53,64100,84800,8900,1600,70,8.8,1,1,40.2,77777,9,999999999,320,0.0460,0,88,999.000,999.0,99.0 +1979,11,4,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,18.3,51,101400,688,1391,405,251,705,36,41200,68900,7000,1080,70,6.7,1,1,40.2,77777,9,999999999,320,0.0460,0,88,999.000,999.0,99.0 +1979,11,4,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,19.4,61,101400,419,1391,398,61,309,24,13200,28400,4600,600,70,9.3,1,1,40.2,77777,9,999999999,350,0.0460,0,88,999.000,999.0,99.0 +1979,11,4,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,19.4,65,101400,118,1240,392,0,0,0,0,0,0,0,70,10.3,1,1,24.1,77777,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1979,11,4,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,19.4,69,101500,0,0,386,0,0,0,0,0,0,0,80,8.2,1,1,24.1,77777,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1979,11,4,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,18.9,67,101600,0,0,386,0,0,0,0,0,0,0,80,8.2,1,1,24.1,77777,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1979,11,4,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,18.3,62,101600,0,0,388,0,0,0,0,0,0,0,90,7.2,1,1,24.1,77777,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1979,11,4,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,18.3,64,101600,0,0,385,0,0,0,0,0,0,0,80,3.6,1,1,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1979,11,4,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,18.3,64,101600,0,0,385,0,0,0,0,0,0,0,80,3.1,1,1,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1979,11,4,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,18.3,64,101600,0,0,390,0,0,0,0,0,0,0,90,4.1,2,2,24.1,77777,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1979,11,5,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,17.8,64,101600,0,0,381,0,0,0,0,0,0,0,70,3.1,1,1,24.1,77777,9,999999999,309,0.0400,0,88,999.000,999.0,99.0 +1979,11,5,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,18.3,69,101600,0,0,384,0,0,0,0,0,0,0,40,3.1,2,2,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1979,11,5,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,18.3,71,101600,0,0,381,0,0,0,0,0,0,0,70,3.6,2,2,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1979,11,5,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,18.3,67,101500,0,0,387,0,0,0,0,0,0,0,60,6.7,2,2,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1979,11,5,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,18.3,64,101500,0,0,390,0,0,0,0,0,0,0,60,6.7,2,2,24.1,77777,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1979,11,5,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,18.3,69,101600,0,0,384,20,71,11,0,0,0,0,70,5.2,2,2,24.1,77777,9,999999999,329,0.0350,0,88,999.000,999.0,99.0 +1979,11,5,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,18.9,69,101600,20,522,388,138,483,45,0,0,0,0,70,6.2,2,2,32.2,77777,9,999999999,340,0.0350,0,88,999.000,999.0,99.0 +1979,11,5,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,19.4,67,101600,264,1391,394,369,728,77,21300,52400,11300,1230,70,5.2,2,2,40.2,77777,9,999999999,350,0.0350,0,88,999.000,999.0,99.0 +1979,11,5,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,19.4,61,101700,554,1391,403,534,784,82,40400,73800,10900,1550,40,6.2,2,2,40.2,77777,9,999999999,350,0.0350,0,88,999.000,999.0,99.0 +1979,11,5,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,19.4,55,101700,798,1391,419,527,365,270,51100,38500,28900,6710,60,8.2,4,4,40.2,77777,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1979,11,5,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,18.9,51,101700,979,1391,415,671,555,234,67100,57600,26400,6590,60,7.7,2,2,40.2,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1979,11,5,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,18.9,51,101600,1083,1391,415,780,767,167,82100,78600,20700,5710,60,9.3,2,2,40.2,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1979,11,5,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,18.9,50,101500,1105,1391,422,791,939,63,85200,94300,10100,2300,60,9.8,3,3,40.2,77777,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1979,11,5,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,19.4,52,101400,1042,1391,423,529,641,112,63800,65000,15000,3470,70,8.8,3,3,40.2,77777,9,999999999,350,0.0350,0,88,999.000,999.0,99.0 +1979,11,5,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,18.3,50,101300,898,1391,408,464,843,46,62800,84000,8400,1450,60,8.2,1,1,40.2,77777,9,999999999,329,0.0350,0,88,999.000,999.0,99.0 +1979,11,5,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,19.4,55,101400,685,1391,406,226,569,54,36800,56600,8800,1320,80,9.3,1,1,40.2,77777,9,999999999,350,0.0350,0,88,999.000,999.0,99.0 +1979,11,5,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,19.4,59,101400,416,1391,401,63,317,25,13400,29100,4700,620,70,9.3,1,1,40.2,77777,9,999999999,350,0.0350,0,88,999.000,999.0,99.0 +1979,11,5,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,20.0,67,101400,115,1217,402,0,0,0,0,0,0,0,70,7.2,3,3,24.1,77777,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1979,11,5,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,20.0,69,101500,0,0,405,0,0,0,0,0,0,0,70,6.2,5,5,24.1,77777,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1979,11,5,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,20.0,71,101600,0,0,392,0,0,0,0,0,0,0,70,6.2,2,2,24.1,77777,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1979,11,5,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,20.6,74,101600,0,0,397,0,0,0,0,0,0,0,50,4.6,3,3,24.1,77777,9,999999999,370,0.0400,0,88,999.000,999.0,99.0 +1979,11,5,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,20.6,76,101600,0,0,397,0,0,0,0,0,0,0,80,2.6,4,4,24.1,77777,9,999999999,370,0.0400,0,88,999.000,999.0,99.0 +1979,11,5,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,20.6,76,101600,0,0,390,0,0,0,0,0,0,0,80,3.1,2,2,24.1,77777,9,999999999,370,0.0400,0,88,999.000,999.0,99.0 +1979,11,5,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,20.6,76,101600,0,0,397,0,0,0,0,0,0,0,70,3.6,4,4,24.1,77777,9,999999999,370,0.0400,0,88,999.000,999.0,99.0 +1979,11,6,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,20.6,79,101600,0,0,391,0,0,0,0,0,0,0,50,3.1,3,3,24.1,77777,9,999999999,370,0.0400,0,88,999.000,999.0,99.0 +1979,11,6,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,20.6,79,101600,0,0,394,0,0,0,0,0,0,0,80,4.6,4,4,24.1,77777,9,999999999,370,0.0400,0,88,999.000,999.0,99.0 +1979,11,6,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,20.6,79,101500,0,0,387,0,0,0,0,0,0,0,60,4.1,2,2,24.1,77777,9,999999999,370,0.0400,0,88,999.000,999.0,99.0 +1979,11,6,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,20.0,79,101500,0,0,390,0,0,0,0,0,0,0,60,2.6,4,4,24.1,77777,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1979,11,6,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,19.4,74,101500,0,0,392,0,0,0,0,0,0,0,50,2.6,4,4,24.1,77777,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1979,11,6,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,19.4,79,101500,0,0,383,20,41,15,0,0,0,0,0,0.0,3,3,24.1,77777,9,999999999,350,0.0170,0,88,999.000,999.0,99.0 +1979,11,6,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,19.4,76,101600,19,499,387,115,371,45,0,0,0,0,60,3.6,3,3,32.2,77777,9,999999999,350,0.0170,0,88,999.000,999.0,99.0 +1979,11,6,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,20.0,69,101600,261,1392,390,344,756,43,18500,58100,7600,760,70,3.6,1,1,40.2,77777,9,999999999,359,0.0170,0,88,999.000,999.0,99.0 +1979,11,6,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,19.4,59,101600,551,1392,406,578,867,80,43400,81600,11100,1520,120,6.2,2,2,40.2,77777,9,999999999,350,0.0170,0,88,999.000,999.0,99.0 +1979,11,6,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,19.4,57,101600,794,1392,420,432,193,310,45300,20000,33900,8170,70,6.2,5,5,40.2,77777,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1979,11,6,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,19.4,53,101600,975,1392,423,608,474,237,61000,49200,26500,6640,70,4.1,4,4,40.2,77777,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1979,11,6,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,19.4,55,101500,1079,1392,423,744,710,180,78000,72500,21600,6050,60,6.7,5,5,40.2,77777,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1979,11,6,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,18.3,48,101400,1101,1392,425,676,664,180,75500,67900,21600,6340,60,7.7,4,4,40.2,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1979,11,6,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,19.4,52,101400,1038,1392,429,542,537,195,63000,54500,22200,5990,60,7.2,5,5,40.2,77777,9,999999999,350,0.0170,0,88,999.000,999.0,99.0 +1979,11,6,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,18.3,50,101400,895,1392,418,510,842,94,66200,83500,12300,2110,60,8.8,3,3,40.2,77777,9,999999999,329,0.0170,0,88,999.000,999.0,99.0 +1979,11,6,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,18.3,51,101400,682,1392,411,230,585,55,37500,58100,9000,1340,70,8.8,2,2,40.2,77777,9,999999999,320,0.0170,0,88,999.000,999.0,99.0 +1979,11,6,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,18.3,55,101400,413,1392,405,68,388,22,14800,35000,4400,690,80,6.7,2,2,40.2,77777,9,999999999,329,0.0170,0,88,999.000,999.0,99.0 +1979,11,6,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,18.9,62,101500,113,1218,397,0,0,0,0,0,0,0,70,3.6,2,2,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1979,11,6,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,18.9,65,101500,0,0,394,0,0,0,0,0,0,0,60,6.7,2,2,24.1,77777,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1979,11,6,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,18.3,64,101600,0,0,390,0,0,0,0,0,0,0,70,7.2,2,2,24.1,77777,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1979,11,6,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,18.9,67,101600,0,0,391,0,0,0,0,0,0,0,60,4.6,2,2,24.1,77777,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1979,11,6,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,18.9,69,101700,0,0,388,0,0,0,0,0,0,0,60,5.2,2,2,24.1,77777,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1979,11,6,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,18.9,69,101600,0,0,388,0,0,0,0,0,0,0,60,5.7,2,2,24.1,77777,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1979,11,6,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,18.3,67,101600,0,0,387,0,0,0,0,0,0,0,60,6.2,2,2,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1979,11,7,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,18.9,69,101600,0,0,392,0,0,0,0,0,0,0,70,3.6,3,3,24.1,77777,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1979,11,7,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,18.9,74,101600,0,0,389,0,0,0,0,0,0,0,60,3.1,4,4,24.1,77777,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1979,11,7,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,18.9,71,101600,0,0,389,0,0,0,0,0,0,0,60,4.6,6,3,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1979,11,7,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,18.3,76,101500,0,0,389,0,0,0,0,0,0,0,200,2.1,8,6,24.1,1370,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1979,11,7,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,20.0,76,101600,0,0,419,0,0,0,0,0,0,0,90,5.2,10,9,24.1,1370,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1979,11,7,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,19.4,76,101600,0,0,407,15,4,14,0,0,0,0,70,4.1,10,8,24.1,1370,9,999999999,350,0.0800,0,88,999.000,999.0,99.0 +1979,11,7,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,18.9,74,101600,18,476,395,90,87,74,0,0,0,0,60,3.1,8,6,24.1,1370,9,999999999,340,0.0800,0,88,999.000,999.0,99.0 +1979,11,7,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,20.0,71,101600,258,1393,402,258,339,124,18800,24000,14300,2780,80,5.2,7,5,40.2,7620,9,999999999,359,0.0800,0,88,999.000,999.0,99.0 +1979,11,7,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,19.4,63,101600,547,1393,407,320,216,221,32700,21000,24400,5170,80,5.2,9,4,40.2,77777,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1979,11,7,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,18.3,53,101600,791,1393,418,503,242,329,50100,25000,35800,8650,90,6.2,10,5,40.2,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1979,11,7,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,18.9,53,101500,971,1393,426,562,367,281,58500,39500,30800,7960,60,4.6,10,6,40.2,7620,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1979,11,7,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,19.4,53,101400,1075,1393,430,780,760,142,77000,76500,17700,4410,90,5.7,10,6,40.2,7620,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1979,11,7,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,18.3,53,101300,1097,1393,422,610,540,211,67300,54800,24000,7240,60,5.2,10,6,40.2,7620,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1979,11,7,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,18.9,53,101300,1034,1393,422,408,207,274,47100,22400,30400,8320,70,3.6,6,5,40.2,7620,9,999999999,329,0.0800,0,88,999.000,999.0,99.0 +1979,11,7,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,18.3,50,101300,891,1393,440,335,292,192,42000,31300,21900,4770,50,5.2,8,8,40.2,7620,9,999999999,329,0.0800,0,88,999.000,999.0,99.0 +1979,11,7,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,18.3,55,101300,678,1393,412,208,414,84,30700,41200,10500,1840,30,5.7,8,4,40.2,77777,9,999999999,329,0.0800,0,88,999.000,999.0,99.0 +1979,11,7,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,19.4,59,101400,410,1393,425,34,25,31,4500,2300,3800,690,60,5.7,10,7,40.2,7620,9,999999999,350,0.0800,0,88,999.000,999.0,99.0 +1979,11,7,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,19.4,67,101400,111,1195,419,0,0,0,0,0,0,0,10,5.2,10,8,24.1,7620,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1979,11,7,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,19.4,69,101400,0,0,405,0,0,0,0,0,0,0,350,2.6,10,6,24.1,7620,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1979,11,7,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,19.4,69,101500,0,0,396,0,0,0,0,0,0,0,30,3.1,9,3,24.1,77777,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1979,11,7,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,19.4,69,101500,0,0,410,0,0,0,0,0,0,0,360,4.1,9,7,24.1,7620,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1979,11,7,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,18.9,71,101600,0,0,392,0,0,0,0,0,0,0,60,2.1,9,4,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1979,11,7,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,18.9,76,101500,0,0,386,0,0,0,0,0,0,0,310,3.1,9,4,24.1,77777,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1979,11,7,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,19.4,79,101500,0,0,389,0,0,0,0,0,0,0,320,2.1,9,5,24.1,7620,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1979,11,8,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,20.0,82,101500,0,0,413,0,0,0,0,0,0,0,20,4.6,10,9,24.1,1370,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1979,11,8,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,20.6,87,101500,0,0,411,0,0,0,0,0,0,0,0,0.0,10,9,24.1,1370,9,999999999,370,0.0400,0,88,999.000,999.0,99.0 +1979,11,8,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,20.6,87,101500,0,0,411,0,0,0,0,0,0,0,340,2.6,10,9,24.1,1370,9,999999999,370,0.0400,0,88,999.000,999.0,99.0 +1979,11,8,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,21.1,90,101500,0,0,412,0,0,0,0,0,0,0,340,4.1,10,9,24.1,1370,9,999999999,379,0.0400,0,88,999.000,999.0,99.0 +1979,11,8,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,20.0,87,101500,0,0,407,0,0,0,0,0,0,0,10,2.6,10,9,24.1,1370,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1979,11,8,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,19.4,82,101500,0,0,401,5,1,5,0,0,0,0,30,4.1,10,8,24.1,1370,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1979,11,8,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,18.9,79,101500,17,476,386,81,51,72,0,0,0,0,10,5.7,9,5,24.1,7620,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1979,11,8,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,19.4,79,101500,254,1393,397,254,233,162,21000,16700,18000,3480,40,3.6,8,7,24.1,1370,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1979,11,8,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,18.3,69,101600,544,1393,408,326,199,213,31100,19300,23500,4970,350,4.1,10,8,32.2,1370,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1979,11,8,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,18.3,62,101600,787,1393,411,477,257,294,47500,26600,32400,7710,30,7.7,10,7,32.2,1370,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1979,11,8,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,17.8,60,101600,967,1393,399,682,550,257,67800,57000,28200,7170,10,7.7,10,4,32.2,77777,9,999999999,309,0.0400,0,88,999.000,999.0,99.0 +1979,11,8,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,16.7,54,101500,1072,1393,401,717,469,350,74200,48600,36700,11830,360,7.7,10,4,40.2,77777,9,999999999,290,0.0400,0,88,999.000,999.0,99.0 +1979,11,8,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,15.6,47,101400,1093,1393,406,657,586,220,71700,59300,25000,7450,30,6.7,10,4,40.2,77777,9,999999999,270,0.0400,0,88,999.000,999.0,99.0 +1979,11,8,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,15.6,47,101300,1031,1393,399,584,544,235,69000,56700,26900,7160,20,8.2,10,2,40.2,77777,9,999999999,270,0.0400,0,88,999.000,999.0,99.0 +1979,11,8,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,15.0,44,101300,888,1393,404,423,514,172,54600,53100,20600,4220,40,7.7,10,3,40.2,77777,9,999999999,259,0.0400,0,88,999.000,999.0,99.0 +1979,11,8,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,15.6,51,101300,675,1393,400,177,302,88,26400,30300,11600,1740,40,6.2,10,4,40.2,77777,9,999999999,279,0.0400,0,88,999.000,999.0,99.0 +1979,11,8,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,16.1,56,101300,407,1393,395,46,99,34,7300,8900,4700,570,30,6.7,10,4,40.2,77777,9,999999999,290,0.0400,0,88,999.000,999.0,99.0 +1979,11,8,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,15.0,58,101300,109,1196,387,0,0,0,0,0,0,0,30,6.7,10,5,32.2,77777,9,999999999,270,0.0400,0,88,999.000,999.0,99.0 +1979,11,8,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,15.6,62,101400,0,0,385,0,0,0,0,0,0,0,360,4.6,10,5,24.1,77777,9,999999999,279,0.0400,0,88,999.000,999.0,99.0 +1979,11,8,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,15.6,62,101400,0,0,385,0,0,0,0,0,0,0,360,3.1,10,5,24.1,77777,9,999999999,279,0.0400,0,88,999.000,999.0,99.0 +1979,11,8,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,15.6,64,101400,0,0,382,0,0,0,0,0,0,0,350,2.6,10,5,24.1,77777,9,999999999,279,0.0400,0,88,999.000,999.0,99.0 +1979,11,8,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,16.1,68,101500,0,0,380,0,0,0,0,0,0,0,330,3.1,10,5,24.1,77777,9,999999999,279,0.0400,0,88,999.000,999.0,99.0 +1979,11,8,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,16.7,73,101400,0,0,378,0,0,0,0,0,0,0,320,3.6,10,5,24.1,77777,9,999999999,290,0.0400,0,88,999.000,999.0,99.0 +1979,11,8,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,17.2,79,101400,0,0,375,0,0,0,0,0,0,0,360,2.1,10,5,24.1,77777,9,999999999,309,0.0400,0,88,999.000,999.0,99.0 +1979,11,9,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,16.1,78,101400,0,0,369,0,0,0,0,0,0,0,280,3.6,10,5,24.1,77777,9,999999999,279,0.0400,0,88,999.000,999.0,99.0 +1979,11,9,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,16.7,84,101300,0,0,366,0,0,0,0,0,0,0,330,3.6,10,5,24.1,77777,9,999999999,290,0.0400,0,88,999.000,999.0,99.0 +1979,11,9,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,16.7,84,101300,0,0,363,0,0,0,0,0,0,0,340,3.1,10,4,24.1,77777,9,999999999,290,0.0400,0,88,999.000,999.0,99.0 +1979,11,9,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,16.7,87,101300,0,0,361,0,0,0,0,0,0,0,340,2.6,10,4,24.1,77777,9,999999999,290,0.0400,0,88,999.000,999.0,99.0 +1979,11,9,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,16.1,87,101300,0,0,357,0,0,0,0,0,0,0,300,2.6,9,4,24.1,77777,9,999999999,279,0.0400,0,88,999.000,999.0,99.0 +1979,11,9,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,16.1,87,101300,0,0,357,17,25,14,0,0,0,0,300,2.6,10,4,24.1,77777,9,999999999,279,0.0310,0,88,999.000,999.0,99.0 +1979,11,9,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,16.7,90,101300,16,453,364,93,140,67,0,0,0,0,360,1.5,10,6,24.1,7620,9,999999999,290,0.0310,0,88,999.000,999.0,99.0 +1979,11,9,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,17.8,81,101300,251,1394,376,297,322,171,23400,22900,19300,3670,320,1.5,8,5,40.2,7620,9,999999999,309,0.0310,0,88,999.000,999.0,99.0 +1979,11,9,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,17.8,64,101400,540,1394,396,403,429,161,33600,40700,17800,3220,300,3.1,7,5,40.2,7620,9,999999999,309,0.0310,0,88,999.000,999.0,99.0 +1979,11,9,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,18.9,74,101400,783,1394,392,576,564,184,53400,57400,21000,4130,20,3.6,7,5,40.2,7620,9,999999999,340,0.0310,0,88,999.000,999.0,99.0 +1979,11,9,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,18.3,62,101400,963,1394,411,517,72,473,57300,7500,52100,14870,20,5.7,8,7,40.2,1370,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1979,11,9,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,18.3,64,101300,1068,1394,424,494,134,385,53200,14200,42300,12960,60,6.2,10,9,40.2,1370,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1979,11,9,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,17.8,58,101200,1090,1394,430,494,105,416,54900,10900,46300,15700,10,5.7,9,9,40.2,1370,9,999999999,309,0.0400,0,88,999.000,999.0,99.0 +1979,11,9,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,16.7,53,101100,1027,1394,431,403,373,164,49200,39000,20400,4860,40,6.7,9,9,40.2,1370,9,999999999,300,0.0400,0,88,999.000,999.0,99.0 +1979,11,9,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,16.1,51,101000,885,1394,410,319,350,152,41400,36200,18300,3680,20,7.7,7,6,40.2,1520,9,999999999,290,0.0400,0,88,999.000,999.0,99.0 +1979,11,9,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,16.7,54,101000,672,1394,408,183,221,118,25000,22900,13900,2410,40,7.2,6,6,40.2,1520,9,999999999,290,0.0310,0,88,999.000,999.0,99.0 +1979,11,9,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,16.7,58,101100,404,1394,398,58,195,35,10600,17200,5600,600,40,6.2,5,5,40.2,77777,9,999999999,290,0.0310,0,88,999.000,999.0,99.0 +1979,11,9,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,17.2,64,101100,107,1173,401,0,0,0,0,0,0,0,360,3.6,7,7,32.2,1520,9,999999999,300,0.0400,0,88,999.000,999.0,99.0 +1979,11,9,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,17.8,69,101200,0,0,405,0,0,0,0,0,0,0,30,5.2,8,8,24.1,1520,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1979,11,9,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,17.8,71,101300,0,0,395,0,0,0,0,0,0,0,360,2.6,7,7,24.1,1520,9,999999999,309,0.0400,0,88,999.000,999.0,99.0 +1979,11,9,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,17.8,79,101300,0,0,383,0,0,0,0,0,0,0,310,2.1,6,6,24.1,1520,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1979,11,9,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,17.8,81,101300,0,0,373,0,0,0,0,0,0,0,300,1.5,4,4,24.1,77777,9,999999999,309,0.0400,0,88,999.000,999.0,99.0 +1979,11,9,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,17.2,81,101300,0,0,370,0,0,0,0,0,0,0,320,2.6,4,4,24.1,77777,9,999999999,300,0.0400,0,88,999.000,999.0,99.0 +1979,11,9,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,17.2,87,101300,0,0,361,0,0,0,0,0,0,0,320,2.6,3,3,24.1,77777,9,999999999,300,0.0400,0,88,999.000,999.0,99.0 +1979,11,10,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,17.2,87,101300,0,0,361,0,0,0,0,0,0,0,260,2.1,3,3,24.1,77777,9,999999999,300,0.0400,0,88,999.000,999.0,99.0 +1979,11,10,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,17.2,87,101200,0,0,361,0,0,0,0,0,0,0,340,2.6,3,3,24.1,77777,9,999999999,300,0.0400,0,88,999.000,999.0,99.0 +1979,11,10,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,17.2,87,101200,0,0,358,0,0,0,0,0,0,0,330,2.6,2,2,24.1,77777,9,999999999,300,0.0400,0,88,999.000,999.0,99.0 +1979,11,10,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,16.7,87,101200,0,0,343,0,0,0,0,0,0,0,330,3.1,0,0,24.1,77777,9,999999999,290,0.0400,0,88,999.000,999.0,99.0 +1979,11,10,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,16.7,84,101200,0,0,374,0,0,0,0,0,0,0,300,2.6,7,7,24.1,1520,9,999999999,290,0.0400,0,88,999.000,999.0,99.0 +1979,11,10,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,17.8,87,101200,0,0,384,15,21,12,0,0,0,0,320,1.5,9,8,24.1,1520,9,999999999,309,0.0190,0,88,999.000,999.0,99.0 +1979,11,10,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,18.3,84,101300,15,453,391,91,69,78,0,0,0,0,330,2.6,8,8,24.1,1520,9,999999999,320,0.0190,0,88,999.000,999.0,99.0 +1979,11,10,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,18.3,74,101300,248,1395,402,172,26,162,17100,1900,16800,2540,30,2.6,8,8,40.2,1520,9,999999999,329,0.0190,0,88,999.000,999.0,99.0 +1979,11,10,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,18.3,67,101300,536,1395,391,466,519,174,38100,49100,19100,3520,110,2.1,7,3,40.2,77777,9,999999999,329,0.0190,0,88,999.000,999.0,99.0 +1979,11,10,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,18.3,64,101300,779,1395,404,408,277,212,39700,29200,23300,4970,130,4.6,7,6,40.2,1520,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1979,11,10,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,18.3,64,101300,959,1395,424,378,1,422,47300,100,47200,15320,60,6.2,9,9,40.2,1520,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1979,11,10,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,17.8,53,101200,1064,1395,430,634,485,254,67300,50600,28600,8240,100,3.6,8,8,40.2,1520,9,999999999,309,0.0190,0,88,999.000,999.0,99.0 +1979,11,10,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,19.4,67,101200,1086,1395,428,354,243,179,41200,25500,21400,5940,20,8.8,9,9,32.2,700,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1979,11,10,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,19.4,67,101100,1024,1395,440,253,93,195,29900,10000,22500,6210,40,5.2,10,10,32.2,700,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1979,11,10,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,21.1,85,101100,882,1395,418,265,315,111,35300,32700,14600,2630,330,4.1,9,9,24.1,1370,9,999999999,379,0.0400,0,88,999.000,999.0,99.0 +1979,11,10,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,21.1,82,101100,669,1395,412,167,43,155,19300,4200,17300,4810,310,2.6,8,8,40.2,1370,9,999999999,379,0.0400,0,88,999.000,999.0,99.0 +1979,11,10,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,19.4,74,101100,402,1395,403,58,147,41,9500,12900,5800,710,30,4.1,7,7,40.2,1370,9,999999999,350,0.0190,0,88,999.000,999.0,99.0 +1979,11,10,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,18.9,71,101200,105,1174,403,0,0,0,0,0,0,0,10,4.1,7,7,32.2,1370,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1979,11,10,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,18.9,74,101200,0,0,400,0,0,0,0,0,0,0,350,2.6,7,7,24.1,1370,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1979,11,10,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,19.4,79,101300,0,0,404,0,0,0,0,0,0,0,350,2.6,8,8,24.1,1370,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1979,11,10,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,18.9,82,101300,0,0,380,0,0,0,0,0,0,0,330,2.6,4,4,24.1,77777,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1979,11,10,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,18.9,84,101300,0,0,371,0,0,0,0,0,0,0,330,2.1,2,2,24.1,77777,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1979,11,10,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,18.9,87,101300,0,0,381,0,0,0,0,0,0,0,10,2.1,6,6,24.1,1370,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1979,11,10,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,19.4,84,101300,0,0,406,0,0,0,0,0,0,0,50,2.1,9,9,24.1,1370,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1979,11,11,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,20.0,90,101300,0,0,396,0,0,0,0,0,0,0,350,2.6,8,8,24.1,1370,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1979,11,11,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,19.4,87,101300,0,0,395,0,0,0,0,0,0,0,350,2.6,8,8,24.1,1370,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1979,11,11,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,20.0,90,101200,0,0,404,0,0,0,0,0,0,0,350,5.2,9,9,24.1,760,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1979,11,11,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,20.0,93,101300,0,0,412,0,0,0,0,0,0,0,350,4.6,10,10,12.9,760,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1979,11,11,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,20.0,93,101300,0,0,401,0,0,0,0,0,0,0,40,4.6,10,9,24.1,760,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1979,11,11,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,20.0,93,101300,0,0,412,5,0,5,0,0,0,0,20,5.2,10,10,19.3,760,9,999999999,359,0.0310,0,88,999.000,999.0,99.0 +1979,11,11,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,20.0,93,101400,14,430,401,43,30,37,0,0,0,0,360,4.6,10,9,24.1,760,9,999999999,359,0.0310,0,88,999.000,999.0,99.0 +1979,11,11,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,20.0,90,101400,244,1395,404,204,61,180,20600,5100,19700,2630,360,4.1,10,9,19.3,1370,9,999999999,359,0.0310,0,88,999.000,999.0,99.0 +1979,11,11,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,20.6,90,101500,533,1395,408,162,85,113,16200,8300,13000,2620,60,3.6,10,9,24.1,1370,9,999999999,370,0.0400,0,88,999.000,999.0,99.0 +1979,11,11,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,20.6,79,101500,776,1395,420,323,92,255,33600,9300,28500,7860,360,3.6,10,9,32.2,1220,9,999999999,370,0.0400,0,88,999.000,999.0,99.0 +1979,11,11,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,20.0,69,101500,956,1395,429,530,301,304,55100,32300,32900,8580,30,5.7,10,9,32.2,1370,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1979,11,11,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,18.3,60,101400,1060,1395,430,561,283,343,60500,30600,37200,11120,10,5.2,10,9,32.2,1370,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1979,11,11,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,18.3,58,101300,1082,1395,433,528,293,310,58900,31800,34200,10220,50,2.1,9,9,40.2,1370,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1979,11,11,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,18.3,56,101200,1020,1395,416,580,775,86,68100,77400,11300,2440,40,4.1,7,6,40.2,1370,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1979,11,11,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,18.3,60,101200,878,1395,410,291,329,132,38000,34100,16500,3150,70,5.2,8,6,40.2,1370,9,999999999,320,0.0310,0,88,999.000,999.0,99.0 +1979,11,11,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,18.9,65,101200,667,1395,412,190,392,76,28400,39000,9700,1670,60,5.7,8,7,40.2,1370,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1979,11,11,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,18.3,62,101200,399,1395,418,42,49,36,5800,4500,4600,800,50,6.7,8,8,40.2,1370,9,999999999,320,0.0310,0,88,999.000,999.0,99.0 +1979,11,11,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,17.8,66,101200,104,1174,397,0,0,0,0,0,0,0,70,3.6,8,6,32.2,2740,9,999999999,309,0.0400,0,88,999.000,999.0,99.0 +1979,11,11,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,17.8,66,101300,0,0,408,0,0,0,0,0,0,0,70,3.6,8,8,24.1,2440,9,999999999,309,0.0400,0,88,999.000,999.0,99.0 +1979,11,11,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,17.8,69,101300,0,0,391,0,0,0,0,0,0,0,360,2.6,5,5,24.1,77777,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1979,11,11,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,17.8,74,101400,0,0,385,0,0,0,0,0,0,0,360,2.6,5,5,24.1,77777,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1979,11,11,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,18.3,81,101400,0,0,377,0,0,0,0,0,0,0,300,2.6,4,4,24.1,77777,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1979,11,11,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,17.8,84,101400,0,0,371,0,0,0,0,0,0,0,270,2.6,4,4,24.1,77777,9,999999999,309,0.0400,0,88,999.000,999.0,99.0 +1979,11,11,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,18.3,81,101400,0,0,383,0,0,0,0,0,0,0,290,2.1,6,6,24.1,1370,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1979,11,12,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,18.3,84,101300,0,0,371,0,0,0,0,0,0,0,310,2.6,3,3,24.1,77777,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1979,11,12,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,18.3,87,101300,0,0,365,0,0,0,0,0,0,0,340,2.6,2,2,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1979,11,12,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,17.8,87,101300,0,0,361,0,0,0,0,0,0,0,0,0.0,2,2,24.1,77777,9,999999999,309,0.0400,0,88,999.000,999.0,99.0 +1979,11,12,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,17.2,87,101300,0,0,367,0,0,0,0,0,0,0,330,2.6,5,5,24.1,77777,9,999999999,300,0.0400,0,88,999.000,999.0,99.0 +1979,11,12,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,17.8,87,101300,0,0,371,0,0,0,0,0,0,0,320,2.1,5,5,24.1,77777,9,999999999,309,0.0400,0,88,999.000,999.0,99.0 +1979,11,12,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,17.8,90,101300,0,0,362,17,62,9,0,0,0,0,290,2.1,3,3,24.1,77777,9,999999999,309,0.0200,0,88,999.000,999.0,99.0 +1979,11,12,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,17.8,93,101300,13,430,359,100,265,54,0,0,0,0,320,2.1,9,3,32.2,77777,9,999999999,309,0.0200,0,88,999.000,999.0,99.0 +1979,11,12,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,18.9,79,101400,241,1396,380,283,450,112,18300,30800,13000,2260,340,2.1,10,3,40.2,77777,9,999999999,340,0.0200,0,88,999.000,999.0,99.0 +1979,11,12,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,18.3,67,101400,529,1396,391,469,552,162,38000,52100,18200,3240,290,3.1,10,3,40.2,77777,9,999999999,329,0.0200,0,88,999.000,999.0,99.0 +1979,11,12,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,17.8,56,101500,772,1396,405,530,256,358,53200,26200,38700,9300,360,2.6,10,4,40.2,77777,9,999999999,309,0.0400,0,88,999.000,999.0,99.0 +1979,11,12,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,17.8,56,101400,952,1396,405,643,415,326,65400,44500,34900,9280,220,3.6,9,4,40.2,77777,9,999999999,309,0.0400,0,88,999.000,999.0,99.0 +1979,11,12,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,17.8,55,101400,1056,1396,405,735,699,187,76100,71100,22000,5950,190,4.1,7,3,40.2,77777,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1979,11,12,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,18.3,56,101300,1079,1396,402,788,891,96,81600,89100,12500,2850,190,4.1,5,2,40.2,77777,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1979,11,12,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,18.3,56,101300,1017,1396,409,590,568,231,69700,59100,26500,6850,160,3.6,9,4,40.2,77777,9,999999999,320,0.0200,0,88,999.000,999.0,99.0 +1979,11,12,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,18.3,56,101200,875,1396,409,394,516,147,49800,52100,17000,3640,200,2.6,9,4,40.2,77777,9,999999999,320,0.0200,0,88,999.000,999.0,99.0 +1979,11,12,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,18.3,58,101200,664,1396,409,219,370,112,31600,36900,14000,2240,290,4.1,9,5,40.2,7620,9,999999999,320,0.0200,0,88,999.000,999.0,99.0 +1979,11,12,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,18.3,60,101300,397,1396,410,47,53,41,6500,4800,5100,910,280,2.6,10,6,40.2,1520,9,999999999,320,0.0200,0,88,999.000,999.0,99.0 +1979,11,12,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,17.8,64,101300,102,1152,400,0,0,0,0,0,0,0,80,3.6,8,6,32.2,7620,9,999999999,309,0.0400,0,88,999.000,999.0,99.0 +1979,11,12,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,17.8,66,101400,0,0,397,0,0,0,0,0,0,0,70,3.6,8,6,24.1,7620,9,999999999,309,0.0400,0,88,999.000,999.0,99.0 +1979,11,12,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,17.2,66,101400,0,0,390,0,0,0,0,0,0,0,40,4.1,7,5,24.1,7620,9,999999999,300,0.0400,0,88,999.000,999.0,99.0 +1979,11,12,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,17.2,69,101500,0,0,387,0,0,0,0,0,0,0,340,2.1,6,5,24.1,7620,9,999999999,309,0.0400,0,88,999.000,999.0,99.0 +1979,11,12,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,17.8,76,101500,0,0,382,0,0,0,0,0,0,0,320,2.1,6,5,24.1,7620,9,999999999,309,0.0400,0,88,999.000,999.0,99.0 +1979,11,12,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,17.2,79,101500,0,0,370,0,0,0,0,0,0,0,300,3.1,6,3,24.1,77777,9,999999999,309,0.0400,0,88,999.000,999.0,99.0 +1979,11,12,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,17.2,79,101500,0,0,361,0,0,0,0,0,0,0,300,2.1,3,1,24.1,77777,9,999999999,309,0.0400,0,88,999.000,999.0,99.0 +1979,11,13,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,17.2,81,101500,0,0,359,0,0,0,0,0,0,0,330,2.1,2,1,24.1,77777,9,999999999,300,0.0400,0,88,999.000,999.0,99.0 +1979,11,13,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,17.2,84,101500,0,0,356,0,0,0,0,0,0,0,330,2.6,2,1,24.1,77777,9,999999999,300,0.0400,0,88,999.000,999.0,99.0 +1979,11,13,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,17.8,87,101400,0,0,368,0,0,0,0,0,0,0,350,2.6,4,4,24.1,77777,9,999999999,309,0.0400,0,88,999.000,999.0,99.0 +1979,11,13,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,17.8,87,101400,0,0,371,0,0,0,0,0,0,0,310,1.5,5,5,24.1,77777,9,999999999,309,0.0400,0,88,999.000,999.0,99.0 +1979,11,13,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,17.8,81,101400,0,0,384,0,0,0,0,0,0,0,340,2.1,7,7,24.1,1520,9,999999999,309,0.0400,0,88,999.000,999.0,99.0 +1979,11,13,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,18.3,84,101400,0,0,399,11,6,11,0,0,0,0,0,0.0,9,9,24.1,1520,9,999999999,320,0.0210,0,88,999.000,999.0,99.0 +1979,11,13,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,18.9,79,101500,12,407,409,82,27,77,0,0,0,0,0,0.0,9,9,32.2,1370,9,999999999,340,0.0210,0,88,999.000,999.0,99.0 +1979,11,13,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,20.0,82,101500,238,1397,413,183,49,164,18700,4100,18000,2550,330,5.2,9,9,40.2,1370,9,999999999,359,0.0210,0,88,999.000,999.0,99.0 +1979,11,13,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,19.4,76,101600,526,1397,407,366,176,269,35200,16700,28900,6240,20,5.2,9,8,40.2,1370,9,999999999,350,0.0210,0,88,999.000,999.0,99.0 +1979,11,13,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,19.4,69,101600,768,1397,425,470,257,294,47000,26500,32300,7610,90,2.1,9,9,40.2,1370,9,999999999,350,0.0210,0,88,999.000,999.0,99.0 +1979,11,13,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,18.9,60,101500,948,1397,434,413,49,379,45300,5100,41800,12490,60,4.6,9,9,40.2,1370,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1979,11,13,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,19.4,61,101500,1053,1397,429,487,140,373,52300,14800,41000,12290,60,5.2,8,8,40.2,610,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1979,11,13,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,18.9,58,101400,1075,1397,410,636,634,173,70800,64800,20700,5750,50,9.8,7,4,40.2,7620,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1979,11,13,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,18.9,60,101300,1014,1397,410,506,422,241,58900,43900,26900,7130,40,6.7,7,5,40.2,7620,9,999999999,329,0.0210,0,88,999.000,999.0,99.0 +1979,11,13,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,17.8,55,101300,872,1397,412,338,322,184,41700,33200,20900,4450,40,8.8,8,5,40.2,7620,9,999999999,320,0.0210,0,88,999.000,999.0,99.0 +1979,11,13,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,19.4,65,101300,661,1397,423,162,101,133,20200,10400,15300,3250,60,7.2,9,8,40.2,1370,9,999999999,350,0.0210,0,88,999.000,999.0,99.0 +1979,11,13,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,20.0,76,101400,395,1397,404,43,18,41,5100,1600,4700,1220,60,6.7,9,7,24.1,1370,9,999999999,359,0.0210,0,88,999.000,999.0,99.0 +1979,11,13,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,19.4,82,101400,101,1152,401,0,0,0,0,0,0,0,50,3.6,9,8,24.1,1370,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1979,11,13,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,19.4,82,101500,0,0,395,0,0,0,0,0,0,0,60,6.2,9,7,24.1,1370,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1979,11,13,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,19.4,79,101500,0,0,404,0,0,0,0,0,0,0,60,4.6,9,8,19.3,1220,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1979,11,13,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,18.9,76,101600,0,0,403,0,0,0,0,0,0,0,60,5.2,9,8,24.1,1220,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1979,11,13,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,18.9,76,101600,0,0,397,0,0,0,0,0,0,0,60,5.2,8,7,24.1,1220,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1979,11,13,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,18.9,76,101600,0,0,397,0,0,0,0,0,0,0,60,6.7,8,7,24.1,1220,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1979,11,13,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,18.9,76,101600,0,0,392,0,0,0,0,0,0,0,60,4.1,7,6,24.1,1220,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1979,11,14,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,18.9,79,101500,0,0,400,0,0,0,0,0,0,0,70,3.1,9,8,24.1,1220,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1979,11,14,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,18.3,74,101500,0,0,396,0,0,0,0,0,0,0,60,4.6,8,7,24.1,1370,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1979,11,14,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,17.8,71,101500,0,0,391,0,0,0,0,0,0,0,60,5.2,7,6,24.1,1370,9,999999999,309,0.0400,0,88,999.000,999.0,99.0 +1979,11,14,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,17.2,73,101400,0,0,372,0,0,0,0,0,0,0,50,4.1,2,2,24.1,77777,9,999999999,300,0.0400,0,88,999.000,999.0,99.0 +1979,11,14,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,17.2,76,101400,0,0,373,0,0,0,0,0,0,0,80,3.1,3,3,24.1,77777,9,999999999,309,0.0400,0,88,999.000,999.0,99.0 +1979,11,14,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,17.2,73,101500,0,0,378,9,17,7,0,0,0,0,60,3.6,4,4,24.1,77777,9,999999999,300,0.0680,0,88,999.000,999.0,99.0 +1979,11,14,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,17.2,73,101500,11,384,375,112,267,67,0,0,0,0,60,4.1,5,3,32.2,77777,9,999999999,300,0.0680,0,88,999.000,999.0,99.0 +1979,11,14,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,18.9,71,101600,234,1397,403,135,56,115,13500,4500,12800,2260,80,3.1,10,7,40.2,1370,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1979,11,14,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,20.0,82,101600,522,1397,413,160,1,162,18100,100,18100,5780,60,5.2,10,9,16.1,700,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1979,11,14,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,20.0,79,101700,764,1397,408,343,61,302,36800,6200,33400,8800,60,7.2,9,8,24.1,1370,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1979,11,14,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,19.4,71,101600,944,1397,413,609,544,195,61200,56400,23000,5140,70,9.3,9,8,32.2,1370,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1979,11,14,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,19.4,74,101600,1049,1397,410,378,163,253,42000,17400,28900,8280,70,5.7,9,8,24.1,700,9,999999999,350,0.0680,0,88,999.000,999.0,99.0 +1979,11,14,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,19.4,74,101500,1072,1397,403,532,154,419,58300,16300,45800,14130,60,6.7,8,7,32.2,1370,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1979,11,14,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,18.9,69,101400,1010,1397,406,506,434,234,59100,45100,26400,6870,80,6.2,8,7,32.2,1220,9,999999999,340,0.0680,0,88,999.000,999.0,99.0 +1979,11,14,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,18.3,67,101400,869,1397,405,324,220,219,38900,23500,24300,5440,20,5.7,8,7,32.2,1220,9,999999999,329,0.0680,0,88,999.000,999.0,99.0 +1979,11,14,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,18.3,69,101400,659,1397,408,131,143,90,17800,14800,10800,1770,80,3.6,9,8,32.2,1220,9,999999999,329,0.0680,0,88,999.000,999.0,99.0 +1979,11,14,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,17.8,64,101400,393,1397,400,49,43,44,6500,3900,5400,970,60,4.6,7,6,32.2,7620,9,999999999,309,0.0680,0,88,999.000,999.0,99.0 +1979,11,14,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,17.8,69,101500,99,1153,391,0,0,0,0,0,0,0,50,6.2,7,5,24.1,7620,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1979,11,14,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,17.2,69,101500,0,0,384,0,0,0,0,0,0,0,50,7.2,7,4,24.1,7620,9,999999999,309,0.0400,0,88,999.000,999.0,99.0 +1979,11,14,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,16.7,66,101500,0,0,390,0,0,0,0,0,0,0,60,6.2,8,6,24.1,7620,9,999999999,290,0.0400,0,88,999.000,999.0,99.0 +1979,11,14,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,16.1,64,101500,0,0,389,0,0,0,0,0,0,0,40,4.1,8,6,24.1,7620,9,999999999,290,0.0400,0,88,999.000,999.0,99.0 +1979,11,14,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,18.3,74,101600,0,0,402,0,0,0,0,0,0,0,20,4.6,9,8,24.1,1370,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1979,11,14,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,17.8,74,101600,0,0,399,0,0,0,0,0,0,0,80,4.1,9,8,24.1,700,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1979,11,14,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,17.2,73,101600,0,0,384,0,0,0,0,0,0,0,60,2.6,7,6,24.1,1220,9,999999999,300,0.0400,0,88,999.000,999.0,99.0 +1979,11,15,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,16.1,68,101600,0,0,388,0,0,0,0,0,0,0,310,3.6,8,7,24.1,1370,9,999999999,279,0.0400,0,88,999.000,999.0,99.0 +1979,11,15,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,16.1,66,101600,0,0,391,0,0,0,0,0,0,0,40,7.7,9,7,24.1,1520,9,999999999,290,0.0400,0,88,999.000,999.0,99.0 +1979,11,15,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,16.1,64,101500,0,0,389,0,0,0,0,0,0,0,10,4.1,8,6,24.1,1520,9,999999999,290,0.0400,0,88,999.000,999.0,99.0 +1979,11,15,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,16.1,64,101500,0,0,400,0,0,0,0,0,0,0,20,7.7,9,8,24.1,1520,9,999999999,290,0.0400,0,88,999.000,999.0,99.0 +1979,11,15,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,16.1,64,101500,0,0,400,0,0,0,0,0,0,0,30,7.2,9,8,24.1,1520,9,999999999,290,0.0400,0,88,999.000,999.0,99.0 +1979,11,15,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,15.6,62,101500,0,0,408,8,2,8,0,0,0,0,50,6.7,10,9,24.1,1520,9,999999999,279,0.0230,0,88,999.000,999.0,99.0 +1979,11,15,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,15.6,62,101600,10,384,399,86,74,74,0,0,0,0,60,6.2,10,8,32.2,7620,9,999999999,279,0.0230,0,88,999.000,999.0,99.0 +1979,11,15,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,15.6,60,101600,231,1398,411,249,66,224,25300,5600,24400,2150,50,8.8,9,9,40.2,2740,9,999999999,279,0.0230,0,88,999.000,999.0,99.0 +1979,11,15,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,15.6,58,101700,518,1398,391,419,506,142,34200,47500,16500,2790,50,9.3,6,5,40.2,7620,9,999999999,279,0.0230,0,88,999.000,999.0,99.0 +1979,11,15,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,15.6,52,101700,761,1398,400,505,417,224,48500,43800,24600,5260,60,9.3,6,5,40.2,7620,9,999999999,279,0.0400,0,88,999.000,999.0,99.0 +1979,11,15,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,15.0,49,101700,940,1398,402,699,646,210,67000,64600,23400,5380,50,11.8,6,5,40.2,3050,9,999999999,270,0.0400,0,88,999.000,999.0,99.0 +1979,11,15,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,16.1,49,101600,1045,1398,406,776,926,44,78500,92900,8700,1590,50,12.4,4,4,40.2,77777,9,999999999,290,0.0400,0,88,999.000,999.0,99.0 +1979,11,15,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,15.6,47,101600,1068,1398,406,539,460,205,61400,48100,24500,6580,50,11.3,4,4,40.2,77777,9,999999999,270,0.0230,0,88,999.000,999.0,99.0 +1979,11,15,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,15.6,49,101500,1007,1398,399,554,704,114,66500,71200,15000,3280,60,11.8,3,3,40.2,77777,9,999999999,279,0.0230,0,88,999.000,999.0,99.0 +1979,11,15,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,16.1,54,101500,867,1398,394,449,764,87,60500,77000,12600,2220,50,11.8,3,3,40.2,77777,9,999999999,279,0.0230,0,88,999.000,999.0,99.0 +1979,11,15,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,16.1,56,101500,656,1398,391,209,444,84,31300,43900,10600,1810,40,12.4,3,3,40.2,77777,9,999999999,290,0.0230,0,88,999.000,999.0,99.0 +1979,11,15,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,16.7,60,101500,391,1398,389,59,274,27,11500,24400,4600,560,70,11.3,3,3,40.2,77777,9,999999999,300,0.0230,0,88,999.000,999.0,99.0 +1979,11,15,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,16.1,62,101600,98,1130,383,0,0,0,0,0,0,0,70,9.3,3,3,24.1,77777,9,999999999,290,0.0400,0,88,999.000,999.0,99.0 +1979,11,15,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,16.1,62,101600,0,0,383,0,0,0,0,0,0,0,70,7.7,3,3,24.1,77777,9,999999999,290,0.0400,0,88,999.000,999.0,99.0 +1979,11,15,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,16.1,62,101700,0,0,386,0,0,0,0,0,0,0,60,13.4,4,4,24.1,77777,9,999999999,290,0.0400,0,88,999.000,999.0,99.0 +1979,11,15,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,16.1,62,101800,0,0,392,0,0,0,0,0,0,0,60,11.3,6,6,24.1,1220,9,999999999,290,0.0400,0,88,999.000,999.0,99.0 +1979,11,15,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,16.7,64,101800,0,0,397,0,0,0,0,0,0,0,60,9.3,7,7,24.1,1220,9,999999999,300,0.0400,0,88,999.000,999.0,99.0 +1979,11,15,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,16.1,62,101900,0,0,397,0,0,0,0,0,0,0,60,8.2,7,7,24.1,1220,9,999999999,290,0.0400,0,88,999.000,999.0,99.0 +1979,11,15,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,17.8,74,101900,0,0,408,0,0,0,0,0,0,0,80,9.8,9,9,24.1,1220,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1979,11,16,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,17.2,71,101800,0,0,398,0,0,0,0,0,0,0,60,8.2,8,8,24.1,1220,9,999999999,309,0.0400,0,88,999.000,999.0,99.0 +1979,11,16,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,16.1,64,101800,0,0,400,0,0,0,0,0,0,0,70,8.2,8,8,24.1,1220,9,999999999,290,0.0400,0,88,999.000,999.0,99.0 +1979,11,16,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,16.1,64,101800,0,0,389,0,0,0,0,0,0,0,80,6.2,6,6,24.1,1370,9,999999999,290,0.0400,0,88,999.000,999.0,99.0 +1979,11,16,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,16.1,64,101700,0,0,385,0,0,0,0,0,0,0,70,5.7,5,5,24.1,77777,9,999999999,290,0.0400,0,88,999.000,999.0,99.0 +1979,11,16,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,16.1,64,101800,0,0,393,0,0,0,0,0,0,0,40,6.2,7,7,24.1,1370,9,999999999,290,0.0400,0,88,999.000,999.0,99.0 +1979,11,16,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,16.1,68,101800,0,0,380,14,38,8,0,0,0,0,90,4.6,5,5,24.1,77777,9,999999999,279,0.0220,0,88,999.000,999.0,99.0 +1979,11,16,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,16.1,64,101900,10,361,383,110,465,34,0,0,0,0,80,6.7,4,4,32.2,77777,9,999999999,290,0.0220,0,88,999.000,999.0,99.0 +1979,11,16,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,16.1,60,101900,227,1399,385,242,478,66,14200,32200,9000,1050,70,6.2,3,3,40.2,77777,9,999999999,290,0.0220,0,88,999.000,999.0,99.0 +1979,11,16,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,16.1,56,102000,515,1399,391,494,673,128,38100,61300,15400,2280,40,7.2,3,3,40.2,77777,9,999999999,290,0.0220,0,88,999.000,999.0,99.0 +1979,11,16,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,16.1,54,102000,757,1399,394,485,361,242,46700,37800,26100,5770,70,10.3,3,3,40.2,77777,9,999999999,290,0.0400,0,88,999.000,999.0,99.0 +1979,11,16,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,16.7,51,102000,937,1399,404,684,602,230,67700,62300,25800,6080,70,9.8,3,3,40.2,77777,9,999999999,300,0.0400,0,88,999.000,999.0,99.0 +1979,11,16,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,16.7,49,101900,1042,1399,403,782,932,69,80200,93300,10500,2210,70,11.3,2,2,40.2,77777,9,999999999,290,0.0400,0,88,999.000,999.0,99.0 +1979,11,16,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,16.7,49,101800,1065,1399,403,806,954,75,84000,95600,11000,2410,80,12.4,2,2,40.2,77777,9,999999999,290,0.0400,0,88,999.000,999.0,99.0 +1979,11,16,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,16.7,49,101700,1004,1399,403,598,861,62,71700,86100,9700,1960,70,11.3,2,2,40.2,77777,9,999999999,290,0.0220,0,88,999.000,999.0,99.0 +1979,11,16,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,16.7,51,101700,864,1399,400,437,793,63,58300,78700,9500,1720,70,11.3,2,2,40.2,77777,9,999999999,300,0.0220,0,88,999.000,999.0,99.0 +1979,11,16,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,16.7,54,101700,654,1399,398,194,392,84,28600,38700,10400,1800,60,10.3,3,3,40.2,77777,9,999999999,290,0.0220,0,88,999.000,999.0,99.0 +1979,11,16,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,16.7,56,101700,389,1399,395,41,122,26,7100,10600,4100,440,50,8.2,3,3,40.2,77777,9,999999999,300,0.0220,0,88,999.000,999.0,99.0 +1979,11,16,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,17.2,66,101800,97,1131,384,0,0,0,0,0,0,0,60,6.2,3,3,24.1,77777,9,999999999,300,0.0400,0,88,999.000,999.0,99.0 +1979,11,16,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,18.3,71,101800,0,0,385,0,0,0,0,0,0,0,70,8.8,3,3,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1979,11,16,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,16.7,62,101900,0,0,389,0,0,0,0,0,0,0,70,8.2,4,4,24.1,77777,9,999999999,300,0.0400,0,88,999.000,999.0,99.0 +1979,11,16,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,17.2,64,101900,0,0,387,0,0,0,0,0,0,0,50,8.8,3,3,24.1,77777,9,999999999,300,0.0400,0,88,999.000,999.0,99.0 +1979,11,16,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,17.8,66,101900,0,0,387,0,0,0,0,0,0,0,60,7.7,3,3,24.1,77777,9,999999999,309,0.0400,0,88,999.000,999.0,99.0 +1979,11,16,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,17.2,66,101900,0,0,380,0,0,0,0,0,0,0,80,6.2,2,2,24.1,77777,9,999999999,300,0.0400,0,88,999.000,999.0,99.0 +1979,11,16,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,17.8,69,101900,0,0,376,0,0,0,0,0,0,0,70,6.2,1,1,24.1,77777,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1979,11,17,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,18.3,71,101900,0,0,376,0,0,0,0,0,0,0,80,8.2,1,1,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1979,11,17,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,17.8,69,101800,0,0,376,0,0,0,0,0,0,0,60,4.1,1,1,24.1,77777,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1979,11,17,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,17.8,69,101800,0,0,376,0,0,0,0,0,0,0,80,8.2,1,1,24.1,77777,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1979,11,17,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,18.3,71,101800,0,0,376,0,0,0,0,0,0,0,60,9.3,1,1,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1979,11,17,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,19.4,82,101800,0,0,372,0,0,0,0,0,0,0,80,7.2,1,1,24.1,77777,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1979,11,17,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,17.8,76,101800,0,0,372,13,31,8,0,0,0,0,80,7.7,2,2,24.1,77777,9,999999999,320,0.0370,0,88,999.000,999.0,99.0 +1979,11,17,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,18.3,76,101900,9,361,389,105,244,66,0,0,0,0,70,8.2,6,6,32.2,1370,9,999999999,329,0.0370,0,88,999.000,999.0,99.0 +1979,11,17,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,18.9,69,101900,224,1399,392,269,379,130,18800,24500,14900,3090,70,9.8,3,3,32.2,77777,9,999999999,340,0.0370,0,88,999.000,999.0,99.0 +1979,11,17,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,18.3,62,101900,511,1399,403,329,149,248,33000,14500,27700,5740,70,8.8,5,5,40.2,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1979,11,17,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,17.2,56,102000,753,1399,399,672,852,101,58300,83900,13000,2150,50,8.8,3,3,40.2,77777,9,999999999,309,0.0370,0,88,999.000,999.0,99.0 +1979,11,17,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,17.2,54,101900,933,1399,404,613,445,280,60300,45900,29700,7510,70,12.4,4,4,40.2,77777,9,999999999,300,0.0400,0,88,999.000,999.0,99.0 +1979,11,17,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,17.8,55,101900,1038,1399,412,670,608,210,69500,61400,23800,6330,50,11.8,5,5,40.2,77777,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1979,11,17,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,18.9,57,101800,1061,1399,419,730,855,94,77300,85500,12200,2720,60,8.2,6,6,40.2,3960,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1979,11,17,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,19.4,61,101700,1001,1399,417,478,565,131,58000,58100,16300,3900,80,7.2,6,6,40.2,3660,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1979,11,17,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,18.9,57,101700,861,1399,416,410,538,156,51200,54000,17900,3750,70,11.3,5,5,40.2,77777,9,999999999,340,0.0370,0,88,999.000,999.0,99.0 +1979,11,17,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,20.0,69,101700,652,1399,420,122,108,92,16100,11100,10900,1810,60,7.2,8,8,40.2,1520,9,999999999,359,0.0370,0,88,999.000,999.0,99.0 +1979,11,17,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,19.4,71,101700,387,1399,407,39,68,31,5800,6000,4100,520,80,7.2,7,7,40.2,3660,9,999999999,350,0.0370,0,88,999.000,999.0,99.0 +1979,11,17,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,20.6,79,101700,96,1131,420,0,0,0,0,0,0,0,70,10.3,9,9,24.1,1520,9,999999999,370,0.0400,0,88,999.000,999.0,99.0 +1979,11,17,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,20.6,82,101800,0,0,429,0,0,0,0,0,0,0,70,8.8,10,10,24.1,1370,9,999999999,370,0.0400,0,88,999.000,999.0,99.0 +1979,11,17,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,21.1,87,101900,0,0,426,0,0,0,0,0,0,0,70,4.1,10,10,19.3,610,9,999999999,379,0.0400,0,88,999.000,999.0,99.0 +1979,11,17,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,20.6,82,101900,0,0,417,0,0,0,0,0,0,0,60,8.8,9,9,24.1,700,9,999999999,370,0.0400,0,88,999.000,999.0,99.0 +1979,11,17,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,20.0,76,101900,0,0,411,0,0,0,0,0,0,0,80,7.2,8,8,24.1,700,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1979,11,17,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,20.0,76,101900,0,0,419,0,0,0,0,0,0,0,70,8.2,9,9,24.1,1520,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1979,11,17,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,20.0,76,101900,0,0,419,0,0,0,0,0,0,0,70,7.2,10,9,24.1,1370,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1979,11,18,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,20.6,82,101800,0,0,417,0,0,0,0,0,0,0,90,5.2,9,9,24.1,1370,9,999999999,370,0.0400,0,88,999.000,999.0,99.0 +1979,11,18,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,20.6,82,101800,0,0,417,0,0,0,0,0,0,0,60,5.7,9,9,24.1,1370,9,999999999,370,0.0400,0,88,999.000,999.0,99.0 +1979,11,18,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,20.6,82,101700,0,0,417,0,0,0,0,0,0,0,80,6.2,10,9,24.1,1370,9,999999999,370,0.0400,0,88,999.000,999.0,99.0 +1979,11,18,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,20.6,82,101700,0,0,409,0,0,0,0,0,0,0,80,5.2,8,8,24.1,1370,9,999999999,370,0.0400,0,88,999.000,999.0,99.0 +1979,11,18,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,20.6,82,101600,0,0,391,0,0,0,0,0,0,0,80,6.2,4,4,24.1,77777,9,999999999,370,0.0400,0,88,999.000,999.0,99.0 +1979,11,18,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,20.0,76,101700,0,0,386,14,50,7,0,0,0,0,70,6.7,2,2,24.1,77777,9,999999999,359,0.0210,0,88,999.000,999.0,99.0 +1979,11,18,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,20.0,76,101700,8,338,393,105,302,58,0,0,0,0,60,6.7,4,4,32.2,77777,9,999999999,359,0.0210,0,88,999.000,999.0,99.0 +1979,11,18,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,20.0,74,101700,221,1400,389,304,636,72,16900,41600,10300,1100,50,7.2,2,2,32.2,77777,9,999999999,359,0.0210,0,88,999.000,999.0,99.0 +1979,11,18,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,20.6,74,101800,507,1400,407,294,224,173,27400,21400,19600,3980,70,6.7,6,6,32.2,4880,9,999999999,370,0.0210,0,88,999.000,999.0,99.0 +1979,11,18,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,21.1,79,101800,749,1400,424,193,16,179,21700,1300,21000,7640,60,6.2,10,9,32.2,1370,9,999999999,379,0.0400,0,88,999.000,999.0,99.0 +1979,11,18,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,21.1,72,101800,929,1400,434,391,56,350,42600,5800,38700,11520,60,7.2,9,9,40.2,1370,9,999999999,390,0.0400,0,88,999.000,999.0,99.0 +1979,11,18,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,20.6,69,101700,1035,1400,433,373,38,343,40900,3900,38000,12610,80,6.2,10,9,40.2,1370,9,999999999,370,0.0400,0,88,999.000,999.0,99.0 +1979,11,18,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,20.0,59,101600,1058,1400,436,618,424,313,66800,44000,33400,10140,70,7.7,8,8,40.2,1520,9,999999999,359,0.0210,0,88,999.000,999.0,99.0 +1979,11,18,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,18.9,57,101500,998,1400,431,461,256,303,52700,27600,33000,8890,80,8.8,8,8,40.2,1520,9,999999999,340,0.0210,0,88,999.000,999.0,99.0 +1979,11,18,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,18.9,57,101500,859,1400,431,340,274,211,41500,29300,23500,5170,80,8.2,8,8,40.2,2440,9,999999999,340,0.0210,0,88,999.000,999.0,99.0 +1979,11,18,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,18.9,60,101500,650,1400,425,128,64,110,15800,6600,12700,2670,80,8.2,10,8,40.2,2440,9,999999999,329,0.0210,0,88,999.000,999.0,99.0 +1979,11,18,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,18.9,60,101500,385,1400,425,41,25,38,5000,2200,4400,1130,60,7.2,8,8,40.2,3050,9,999999999,329,0.0210,0,88,999.000,999.0,99.0 +1979,11,18,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,18.3,64,101600,95,1132,409,0,0,0,0,0,0,0,70,8.8,7,7,32.2,3050,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1979,11,18,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,19.4,71,101600,0,0,407,0,0,0,0,0,0,0,90,5.7,7,7,24.1,3050,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1979,11,18,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,19.4,74,101600,0,0,392,0,0,0,0,0,0,0,60,3.1,4,4,24.1,77777,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1979,11,18,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,19.4,74,101700,0,0,395,0,0,0,0,0,0,0,60,5.2,5,5,24.1,77777,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1979,11,18,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,18.9,74,101700,0,0,389,0,0,0,0,0,0,0,120,2.1,4,4,24.1,77777,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1979,11,18,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,18.9,76,101700,0,0,403,0,0,0,0,0,0,0,80,2.6,8,8,24.1,1520,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1979,11,18,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,20.0,76,101700,0,0,419,0,0,0,0,0,0,0,60,5.7,9,9,24.1,1520,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1979,11,19,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,20.0,76,101700,0,0,419,0,0,0,0,0,0,0,60,4.6,9,9,24.1,1520,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1979,11,19,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,19.4,76,101600,0,0,396,0,0,0,0,0,0,0,50,3.6,6,6,24.1,1520,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1979,11,19,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,18.3,69,101500,0,0,417,0,0,0,0,0,0,0,90,4.1,10,9,24.1,1520,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1979,11,19,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,20.0,76,101500,0,0,419,0,0,0,0,0,0,0,70,5.2,10,9,24.1,1520,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1979,11,19,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,19.4,74,101500,0,0,403,0,0,0,0,0,0,0,70,5.2,7,7,24.1,1520,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1979,11,19,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,19.4,74,101600,0,0,419,3,1,2,0,0,0,0,90,6.7,9,9,24.1,1520,9,999999999,350,0.0730,0,88,999.000,999.0,99.0 +1979,11,19,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,19.4,74,101600,7,315,399,59,76,47,0,0,0,0,50,5.7,6,6,32.2,1370,9,999999999,350,0.0730,0,88,999.000,999.0,99.0 +1979,11,19,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,20.0,74,101700,217,1400,403,236,322,120,16900,20400,13700,2800,70,5.2,6,6,40.2,1370,9,999999999,359,0.0730,0,88,999.000,999.0,99.0 +1979,11,19,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,19.4,65,101700,504,1400,405,360,334,181,31400,31900,19900,3950,70,9.3,4,4,40.2,77777,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1979,11,19,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,18.9,58,101700,746,1400,407,530,488,203,48500,49200,22200,4480,70,8.2,3,3,40.2,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1979,11,19,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,18.9,55,101700,926,1400,423,703,707,183,68200,71100,21000,4680,70,8.2,6,6,40.2,1520,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1979,11,19,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,18.3,51,101600,1031,1400,418,769,920,58,77700,92200,9600,1930,80,8.8,4,4,40.2,77777,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1979,11,19,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,18.3,51,101500,1055,1400,421,728,836,130,80700,84400,16900,3920,70,9.8,5,5,40.2,77777,9,999999999,320,0.0730,0,88,999.000,999.0,99.0 +1979,11,19,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,18.9,55,101400,995,1400,416,583,763,117,70200,77000,15300,3270,40,8.8,4,4,40.2,77777,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1979,11,19,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,18.9,55,101400,856,1400,416,388,481,163,49900,49500,19500,3840,60,10.3,4,4,40.2,77777,9,999999999,340,0.0730,0,88,999.000,999.0,99.0 +1979,11,19,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,18.3,56,101400,648,1400,402,184,358,84,26700,35300,10300,1790,80,6.2,2,2,40.2,77777,9,999999999,320,0.0730,0,88,999.000,999.0,99.0 +1979,11,19,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,18.3,62,101400,384,1400,388,48,172,28,8300,15200,4100,570,50,7.7,1,1,40.2,77777,9,999999999,320,0.0730,0,88,999.000,999.0,99.0 +1979,11,19,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,18.9,69,101500,94,1109,388,0,0,0,0,0,0,0,90,4.1,2,2,40.2,77777,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1979,11,19,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,19.4,74,101500,0,0,385,0,0,0,0,0,0,0,60,6.2,2,2,24.1,77777,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1979,11,19,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,18.9,71,101600,0,0,392,0,0,0,0,0,0,0,90,2.6,4,4,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1979,11,19,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,19.4,79,101700,0,0,387,0,0,0,0,0,0,0,70,5.2,4,4,24.1,77777,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1979,11,19,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,20.0,79,101700,0,0,387,0,0,0,0,0,0,0,70,6.2,3,3,24.1,77777,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1979,11,19,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,19.4,76,101800,0,0,396,0,0,0,0,0,0,0,80,7.7,6,6,24.1,1520,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1979,11,19,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,19.4,76,101700,0,0,390,0,0,0,0,0,0,0,60,8.2,4,4,24.1,77777,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1979,11,20,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,18.9,74,101700,0,0,386,0,0,0,0,0,0,0,50,4.6,3,3,24.1,77777,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1979,11,20,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,19.4,76,101700,0,0,396,0,0,0,0,0,0,0,60,4.6,6,6,24.1,1370,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1979,11,20,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,19.4,76,101600,0,0,396,0,0,0,0,0,0,0,10,4.1,6,6,24.1,1370,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1979,11,20,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,19.4,79,101600,0,0,397,0,0,0,0,0,0,0,60,4.1,7,7,24.1,1370,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1979,11,20,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,20.0,84,101600,0,0,396,0,0,0,0,0,0,0,50,5.7,7,7,24.1,1370,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1979,11,20,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,20.0,87,101700,0,0,384,6,21,3,0,0,0,0,80,5.7,5,5,24.1,77777,9,999999999,359,0.0340,0,88,999.000,999.0,99.0 +1979,11,20,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,20.0,82,101700,7,315,405,58,81,46,0,0,0,0,60,6.2,8,8,32.2,1370,9,999999999,359,0.0340,0,88,999.000,999.0,99.0 +1979,11,20,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,20.0,76,101800,214,1401,411,118,32,107,12200,2500,11800,2060,20,3.6,8,8,24.1,1370,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1979,11,20,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,19.4,67,101800,500,1401,401,307,233,187,28900,22200,21000,4290,80,7.2,4,4,40.2,77777,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1979,11,20,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,20.0,67,101800,742,1401,412,496,319,286,47800,33200,30100,7050,70,5.2,6,6,40.2,1370,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1979,11,20,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,18.9,57,101800,922,1401,416,671,670,178,65000,67400,20500,4540,70,7.2,5,5,40.2,77777,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1979,11,20,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,18.9,55,101700,1028,1401,416,776,919,55,77200,92100,9400,1850,70,7.2,4,4,40.2,77777,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1979,11,20,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,18.9,53,101600,1052,1401,415,578,625,132,65400,64500,16900,4270,70,8.8,3,3,40.2,77777,9,999999999,340,0.0340,0,88,999.000,999.0,99.0 +1979,11,20,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,19.4,59,101500,992,1401,406,588,805,94,69200,80300,12100,2420,60,8.2,2,2,40.2,77777,9,999999999,350,0.0340,0,88,999.000,999.0,99.0 +1979,11,20,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,19.4,59,101500,854,1401,406,436,775,75,57400,76800,10400,1850,70,7.7,2,2,40.2,77777,9,999999999,350,0.0340,0,88,999.000,999.0,99.0 +1979,11,20,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,19.4,61,101500,646,1401,403,223,610,54,36600,60100,8800,1280,70,9.3,2,2,40.2,77777,9,999999999,350,0.0340,0,88,999.000,999.0,99.0 +1979,11,20,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,18.9,65,101600,382,1401,394,49,176,29,8500,15600,4200,590,60,8.8,2,2,40.2,77777,9,999999999,340,0.0340,0,88,999.000,999.0,99.0 +1979,11,20,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,18.3,69,101600,93,1109,384,0,0,0,0,0,0,0,70,6.7,2,2,32.2,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1979,11,20,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,18.3,69,101700,0,0,384,0,0,0,0,0,0,0,50,5.2,2,2,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1979,11,20,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,18.3,69,101700,0,0,388,0,0,0,0,0,0,0,70,6.2,3,3,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1979,11,20,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,18.3,69,101800,0,0,394,0,0,0,0,0,0,0,60,4.6,5,5,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1979,11,20,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,18.3,71,101800,0,0,385,0,0,0,0,0,0,0,60,6.2,3,3,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1979,11,20,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,17.8,69,101800,0,0,391,0,0,0,0,0,0,0,60,5.7,5,5,24.1,77777,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1979,11,20,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,16.7,69,101800,0,0,374,0,0,0,0,0,0,0,70,4.1,2,2,24.1,77777,9,999999999,300,0.0400,0,88,999.000,999.0,99.0 +1979,11,21,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,16.7,66,101800,0,0,377,0,0,0,0,0,0,0,70,4.6,2,2,24.1,77777,9,999999999,290,0.0400,0,88,999.000,999.0,99.0 +1979,11,21,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,16.7,69,101800,0,0,374,0,0,0,0,0,0,0,70,3.1,2,2,24.1,77777,9,999999999,300,0.0400,0,88,999.000,999.0,99.0 +1979,11,21,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,17.8,74,101700,0,0,370,0,0,0,0,0,0,0,60,3.1,1,1,24.1,77777,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1979,11,21,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,18.3,76,101700,0,0,371,0,0,0,0,0,0,0,60,2.6,1,1,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1979,11,21,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,17.2,71,101700,0,0,370,0,0,0,0,0,0,0,60,2.6,1,1,24.1,77777,9,999999999,309,0.0400,0,88,999.000,999.0,99.0 +1979,11,21,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,17.8,74,101700,0,0,370,11,45,5,0,0,0,0,80,3.1,1,1,24.1,77777,9,999999999,320,0.0280,0,88,999.000,999.0,99.0 +1979,11,21,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,18.3,76,101700,6,292,376,102,455,33,0,0,0,0,70,3.1,2,2,32.2,77777,9,999999999,329,0.0280,0,88,999.000,999.0,99.0 +1979,11,21,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,18.3,69,101800,210,1402,379,321,800,37,16400,59600,7500,500,80,6.2,1,1,40.2,77777,9,999999999,329,0.0280,0,88,999.000,999.0,99.0 +1979,11,21,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,18.9,65,101800,496,1402,394,492,780,80,37200,72200,11600,1550,60,7.7,2,2,40.2,77777,9,999999999,340,0.0280,0,88,999.000,999.0,99.0 +1979,11,21,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,18.3,56,101800,738,1402,406,507,460,206,46800,46300,22300,4540,70,7.2,3,3,40.2,77777,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1979,11,21,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,17.2,49,101800,918,1402,406,678,650,197,64900,65000,22100,4920,70,10.3,2,2,40.2,77777,9,999999999,300,0.0400,0,88,999.000,999.0,99.0 +1979,11,21,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,17.8,49,101700,1024,1402,414,775,929,80,79400,92900,11300,2350,60,8.8,3,3,40.2,77777,9,999999999,309,0.0400,0,88,999.000,999.0,99.0 +1979,11,21,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,18.9,51,101700,1049,1402,419,699,726,184,77300,73900,21800,5730,60,8.8,3,3,40.2,77777,9,999999999,329,0.0280,0,88,999.000,999.0,99.0 +1979,11,21,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,18.9,51,101600,990,1402,415,618,878,80,73300,87700,11100,2240,70,8.2,2,2,40.2,77777,9,999999999,329,0.0280,0,88,999.000,999.0,99.0 +1979,11,21,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,18.3,53,101600,852,1402,402,414,824,32,57300,82000,7300,1060,80,10.3,1,1,40.2,77777,9,999999999,329,0.0280,0,88,999.000,999.0,99.0 +1979,11,21,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,18.9,57,101600,644,1402,400,217,661,35,36300,64000,6700,1040,80,8.8,1,1,40.2,77777,9,999999999,340,0.0280,0,88,999.000,999.0,99.0 +1979,11,21,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,18.9,62,101600,381,1402,391,55,270,24,10800,23900,4300,500,60,7.7,1,1,40.2,77777,9,999999999,340,0.0280,0,88,999.000,999.0,99.0 +1979,11,21,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,19.4,69,101700,92,1110,392,0,0,0,0,0,0,0,50,7.2,2,2,32.2,77777,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1979,11,21,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,20.0,74,101700,0,0,396,0,0,0,0,0,0,0,70,6.2,4,4,24.1,77777,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1979,11,21,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,20.6,79,101800,0,0,391,0,0,0,0,0,0,0,70,6.2,3,3,24.1,77777,9,999999999,370,0.0400,0,88,999.000,999.0,99.0 +1979,11,21,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,20.0,76,101800,0,0,390,0,0,0,0,0,0,0,70,4.6,3,3,24.1,77777,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1979,11,21,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,20.6,79,101900,0,0,397,0,0,0,0,0,0,0,70,4.1,5,5,24.1,77777,9,999999999,370,0.0400,0,88,999.000,999.0,99.0 +1979,11,21,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,20.6,79,101800,0,0,391,0,0,0,0,0,0,0,70,4.6,3,3,24.1,77777,9,999999999,370,0.0400,0,88,999.000,999.0,99.0 +1979,11,21,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,20.6,79,101800,0,0,394,0,0,0,0,0,0,0,70,4.6,4,4,24.1,77777,9,999999999,370,0.0400,0,88,999.000,999.0,99.0 +1979,11,22,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,20.0,76,101800,0,0,390,0,0,0,0,0,0,0,80,5.2,3,3,24.1,77777,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1979,11,22,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,20.6,82,101800,0,0,391,0,0,0,0,0,0,0,70,4.1,4,4,24.1,77777,9,999999999,370,0.0400,0,88,999.000,999.0,99.0 +1979,11,22,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,20.6,79,101700,0,0,391,0,0,0,0,0,0,0,70,5.7,3,3,24.1,77777,9,999999999,370,0.0400,0,88,999.000,999.0,99.0 +1979,11,22,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,20.6,79,101700,0,0,391,0,0,0,0,0,0,0,80,4.6,3,3,24.1,77777,9,999999999,370,0.0400,0,88,999.000,999.0,99.0 +1979,11,22,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,20.6,79,101700,0,0,391,0,0,0,0,0,0,0,80,5.2,3,3,24.1,77777,9,999999999,370,0.0400,0,88,999.000,999.0,99.0 +1979,11,22,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,20.6,79,101700,0,0,391,9,31,4,0,0,0,0,60,4.6,3,3,24.1,77777,9,999999999,370,0.0340,0,88,999.000,999.0,99.0 +1979,11,22,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,20.6,82,101800,5,269,388,94,386,37,0,0,0,0,60,3.1,3,3,32.2,77777,9,999999999,370,0.0340,0,88,999.000,999.0,99.0 +1979,11,22,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,21.1,74,101800,207,1402,400,245,408,101,15500,25600,11700,2050,60,4.6,3,3,40.2,77777,9,999999999,379,0.0340,0,88,999.000,999.0,99.0 +1979,11,22,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,21.1,69,101900,493,1402,406,442,632,109,33800,57400,13600,1980,70,4.1,3,3,40.2,77777,9,999999999,379,0.0340,0,88,999.000,999.0,99.0 +1979,11,22,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,21.1,63,101900,735,1402,419,507,485,185,46300,48900,20600,4020,60,7.2,4,4,40.2,77777,9,999999999,390,0.0400,0,88,999.000,999.0,99.0 +1979,11,22,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,20.6,57,101900,915,1402,424,670,639,197,63900,63900,22100,4890,90,5.7,4,4,40.2,77777,9,999999999,370,0.0400,0,88,999.000,999.0,99.0 +1979,11,22,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,20.0,53,101800,1021,1402,427,758,915,54,76300,91700,9300,1810,80,6.2,4,4,40.2,77777,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1979,11,22,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,20.6,55,101700,1046,1402,428,666,662,197,73000,67100,22800,6050,90,6.7,4,4,40.2,77777,9,999999999,370,0.0340,0,88,999.000,999.0,99.0 +1979,11,22,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,20.0,55,101600,987,1402,423,576,743,122,68300,74800,15500,3310,60,7.7,4,4,40.2,77777,9,999999999,359,0.0340,0,88,999.000,999.0,99.0 +1979,11,22,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,19.4,53,101600,850,1402,419,409,639,113,53800,64900,14300,2790,60,7.7,3,3,40.2,77777,9,999999999,350,0.0340,0,88,999.000,999.0,99.0 +1979,11,22,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,20.0,59,101600,642,1402,410,211,549,60,33600,53800,8900,1380,60,8.8,2,2,40.2,77777,9,999999999,359,0.0340,0,88,999.000,999.0,99.0 +1979,11,22,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,20.0,63,101600,380,1402,404,53,187,30,8800,16500,4400,610,60,8.8,2,2,40.2,77777,9,999999999,359,0.0340,0,88,999.000,999.0,99.0 +1979,11,22,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,20.0,69,101700,92,1110,395,0,0,0,0,0,0,0,90,6.2,2,2,32.2,77777,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1979,11,22,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,20.6,74,101700,0,0,388,0,0,0,0,0,0,0,70,7.2,1,1,24.1,77777,9,999999999,370,0.0400,0,88,999.000,999.0,99.0 +1979,11,22,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,20.6,76,101700,0,0,385,0,0,0,0,0,0,0,70,6.2,1,1,24.1,77777,9,999999999,370,0.0400,0,88,999.000,999.0,99.0 +1979,11,22,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,20.6,76,101800,0,0,377,0,0,0,0,0,0,0,70,4.1,0,0,24.1,77777,9,999999999,370,0.0400,0,88,999.000,999.0,99.0 +1979,11,22,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,20.0,76,101800,0,0,374,0,0,0,0,0,0,0,60,3.1,0,0,24.1,77777,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1979,11,22,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,20.6,82,101800,0,0,384,0,0,0,0,0,0,0,70,3.1,2,2,24.1,77777,9,999999999,370,0.0400,0,88,999.000,999.0,99.0 +1979,11,22,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,21.1,85,101700,0,0,392,0,0,0,0,0,0,0,60,2.1,4,4,24.1,77777,9,999999999,390,0.0400,0,88,999.000,999.0,99.0 +1979,11,23,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,20.6,82,101700,0,0,388,0,0,0,0,0,0,0,70,4.1,3,3,24.1,77777,9,999999999,370,0.0400,0,88,999.000,999.0,99.0 +1979,11,23,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,20.0,79,101600,0,0,387,0,0,0,0,0,0,0,70,3.6,3,3,24.1,77777,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1979,11,23,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,20.6,84,101600,0,0,385,0,0,0,0,0,0,0,70,2.6,3,3,24.1,77777,9,999999999,370,0.0400,0,88,999.000,999.0,99.0 +1979,11,23,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,20.6,79,101600,0,0,394,0,0,0,0,0,0,0,0,0.0,4,4,24.1,77777,9,999999999,370,0.0400,0,88,999.000,999.0,99.0 +1979,11,23,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,20.0,82,101600,0,0,384,0,0,0,0,0,0,0,70,4.1,3,3,24.1,77777,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1979,11,23,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,20.6,84,101600,0,0,385,8,28,4,0,0,0,0,80,4.1,3,3,24.1,77777,9,999999999,370,0.0290,0,88,999.000,999.0,99.0 +1979,11,23,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,20.0,79,101600,5,269,390,83,298,40,0,0,0,0,70,3.6,4,4,40.2,77777,9,999999999,359,0.0290,0,88,999.000,999.0,99.0 +1979,11,23,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,20.0,71,101700,203,1403,399,296,674,60,15600,43000,9300,950,80,4.6,4,4,40.2,77777,9,999999999,359,0.0290,0,88,999.000,999.0,99.0 +1979,11,23,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,18.3,58,101700,489,1403,406,311,251,177,28400,23700,20100,4050,120,4.6,4,4,40.2,77777,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1979,11,23,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,18.9,57,101700,731,1403,413,541,461,243,51300,48000,26200,5750,80,6.7,4,4,40.2,77777,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1979,11,23,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,18.9,55,101600,911,1403,419,622,392,337,63000,41900,35700,9330,60,8.2,5,5,40.2,77777,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1979,11,23,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,18.9,53,101500,1018,1403,422,683,602,237,72700,62600,27100,7000,60,7.2,5,5,40.2,77777,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1979,11,23,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,20.0,57,101400,1043,1403,420,583,607,157,65300,62200,18900,4910,140,6.7,4,4,40.2,77777,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1979,11,23,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,19.4,55,101300,985,1403,419,585,809,92,68800,80700,11900,2360,60,6.7,4,4,40.2,77777,9,999999999,350,0.0290,0,88,999.000,999.0,99.0 +1979,11,23,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,19.4,55,101300,848,1403,416,394,666,86,52600,67000,12000,2150,60,6.2,3,3,40.2,77777,9,999999999,350,0.0290,0,88,999.000,999.0,99.0 +1979,11,23,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,19.4,57,101300,641,1403,413,206,494,71,32000,48800,9700,1530,80,7.7,3,3,40.2,77777,9,999999999,350,0.0290,0,88,999.000,999.0,99.0 +1979,11,23,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,20.0,61,101300,379,1403,407,52,162,33,8900,13900,5100,570,70,6.2,2,2,40.2,77777,9,999999999,359,0.0290,0,88,999.000,999.0,99.0 +1979,11,23,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,20.0,69,101400,91,1111,399,0,0,0,0,0,0,0,90,5.2,3,3,24.1,77777,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1979,11,23,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,20.0,74,101400,0,0,389,0,0,0,0,0,0,0,70,3.6,2,2,24.1,77777,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1979,11,23,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,20.6,76,101500,0,0,394,0,0,0,0,0,0,0,100,3.6,3,3,24.1,77777,9,999999999,370,0.0400,0,88,999.000,999.0,99.0 +1979,11,23,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,20.6,76,101500,0,0,394,0,0,0,0,0,0,0,80,4.6,3,3,24.1,77777,9,999999999,370,0.0400,0,88,999.000,999.0,99.0 +1979,11,23,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,20.0,74,101500,0,0,389,0,0,0,0,0,0,0,70,4.1,2,2,24.1,77777,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1979,11,23,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,20.0,76,101500,0,0,386,0,0,0,0,0,0,0,70,3.6,2,2,24.1,77777,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1979,11,23,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,20.0,74,101500,0,0,393,0,0,0,0,0,0,0,100,3.1,3,3,24.1,77777,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1979,11,24,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,20.0,76,101500,0,0,400,0,0,0,0,0,0,0,60,3.1,6,6,24.1,1370,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1979,11,24,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,20.6,82,101500,0,0,402,0,0,0,0,0,0,0,70,3.6,7,7,24.1,1370,9,999999999,370,0.0400,0,88,999.000,999.0,99.0 +1979,11,24,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,20.0,79,101400,0,0,397,0,0,0,0,0,0,0,120,2.1,6,6,24.1,1370,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1979,11,24,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,20.0,82,101400,0,0,387,0,0,0,0,0,0,0,120,1.5,4,4,24.1,77777,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1979,11,24,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,19.4,82,101400,0,0,381,0,0,0,0,0,0,0,340,2.6,3,3,24.1,77777,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1979,11,24,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,20.0,90,101500,0,0,379,3,7,2,0,0,0,0,50,1.5,4,4,32.2,77777,9,999999999,359,0.0520,0,88,999.000,999.0,99.0 +1979,11,24,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,20.0,87,101500,4,246,379,85,245,50,0,0,0,0,130,3.1,3,3,32.2,77777,9,999999999,359,0.0520,0,88,999.000,999.0,99.0 +1979,11,24,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,20.6,79,101500,200,1403,391,296,589,91,16900,36300,11700,1820,310,2.1,6,3,40.2,77777,9,999999999,370,0.0520,0,88,999.000,999.0,99.0 +1979,11,24,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,20.6,72,101500,485,1403,400,448,653,108,34100,59000,13600,1960,110,3.1,4,3,40.2,77777,9,999999999,370,0.0520,0,88,999.000,999.0,99.0 +1979,11,24,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,20.0,65,101500,727,1403,405,498,463,200,46000,46500,21800,4360,180,3.1,4,3,40.2,77777,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1979,11,24,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,20.6,65,101500,908,1403,419,637,565,227,63100,58300,25300,5780,160,3.6,8,6,40.2,7620,9,999999999,370,0.0400,0,88,999.000,999.0,99.0 +1979,11,24,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,20.0,59,101400,1014,1403,420,614,585,178,63700,59400,20600,5230,180,5.2,6,5,40.2,7620,9,999999999,359,0.0520,0,88,999.000,999.0,99.0 +1979,11,24,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,20.0,59,101400,1040,1403,429,649,562,252,71900,58500,28400,7740,190,4.1,8,7,40.2,7620,9,999999999,359,0.0520,0,88,999.000,999.0,99.0 +1979,11,24,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,20.0,59,101300,982,1403,429,545,416,292,63400,44800,31900,8350,200,4.6,9,7,40.2,3660,9,999999999,359,0.0520,0,88,999.000,999.0,99.0 +1979,11,24,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,19.4,57,101300,846,1403,423,262,171,183,31600,18200,20600,4340,210,4.6,8,6,40.2,7620,9,999999999,350,0.0520,0,88,999.000,999.0,99.0 +1979,11,24,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,20.0,65,101300,640,1403,420,155,166,109,20500,17000,12800,2180,230,4.6,9,7,40.2,7620,9,999999999,359,0.0520,0,88,999.000,999.0,99.0 +1979,11,24,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,19.4,61,101300,378,1403,422,43,68,35,6100,5900,4500,590,90,5.2,9,7,40.2,7620,9,999999999,350,0.0520,0,88,999.000,999.0,99.0 +1979,11,24,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,20.0,69,101400,91,1111,402,0,0,0,0,0,0,0,70,5.2,8,4,32.2,77777,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1979,11,24,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,20.0,74,101500,0,0,396,0,0,0,0,0,0,0,30,2.1,8,4,24.1,77777,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1979,11,24,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,20.0,76,101500,0,0,393,0,0,0,0,0,0,0,360,1.5,8,4,24.1,77777,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1979,11,24,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,20.0,79,101600,0,0,390,0,0,0,0,0,0,0,360,1.5,6,4,24.1,7620,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1979,11,24,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,20.0,84,101600,0,0,388,0,0,0,0,0,0,0,0,0.0,8,5,24.1,7620,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1979,11,24,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,20.0,87,101500,0,0,384,0,0,0,0,0,0,0,330,2.6,10,5,24.1,77777,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1979,11,24,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,19.4,84,101500,0,0,387,0,0,0,0,0,0,0,30,2.1,10,6,24.1,7620,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1979,11,25,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,18.3,81,101400,0,0,383,0,0,0,0,0,0,0,70,2.1,10,6,24.1,7620,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1979,11,25,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,18.3,84,101400,0,0,384,0,0,0,0,0,0,0,340,2.6,10,7,24.1,7620,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1979,11,25,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,18.9,84,101400,0,0,384,0,0,0,0,0,0,0,360,2.6,10,6,24.1,7620,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1979,11,25,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,18.3,84,101400,0,0,380,0,0,0,0,0,0,0,320,2.1,10,6,24.1,7620,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1979,11,25,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,18.3,84,101300,0,0,384,0,0,0,0,0,0,0,310,3.1,10,7,24.1,2740,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1979,11,25,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,18.3,87,101400,0,0,377,4,4,3,0,0,0,0,350,2.6,10,6,24.1,2740,9,999999999,329,0.0430,0,88,999.000,999.0,99.0 +1979,11,25,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,18.9,87,101400,4,222,391,84,133,66,0,0,0,0,310,2.1,10,8,24.1,2740,9,999999999,340,0.0430,0,88,999.000,999.0,99.0 +1979,11,25,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,20.0,82,101400,196,1404,413,154,72,129,15100,5600,14300,2040,280,2.6,10,9,32.2,2740,9,999999999,359,0.0430,0,88,999.000,999.0,99.0 +1979,11,25,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,21.1,79,101500,482,1404,424,153,63,118,15300,5900,13300,3290,320,5.2,10,9,40.2,2740,9,999999999,379,0.0400,0,88,999.000,999.0,99.0 +1979,11,25,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,20.0,65,101500,724,1404,420,341,58,325,38800,5900,35800,8820,340,6.7,10,7,40.2,3050,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1979,11,25,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,20.0,61,101500,904,1404,417,471,187,343,50200,19600,37500,9720,330,6.2,7,5,40.2,7620,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1979,11,25,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,20.0,61,101400,1011,1404,433,457,210,301,49900,22300,33800,9400,330,7.7,9,8,40.2,3050,9,999999999,359,0.0430,0,88,999.000,999.0,99.0 +1979,11,25,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,20.0,61,101300,1037,1404,417,675,718,171,74800,73200,20500,5240,340,7.7,6,5,40.2,7620,9,999999999,359,0.0430,0,88,999.000,999.0,99.0 +1979,11,25,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,18.9,57,101200,980,1404,419,437,392,200,51700,40800,23100,5510,340,7.7,7,6,40.2,7620,9,999999999,340,0.0430,0,88,999.000,999.0,99.0 +1979,11,25,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,18.3,58,101200,844,1404,403,378,586,109,49700,59600,13700,2680,350,7.7,4,3,40.2,77777,9,999999999,320,0.0430,0,88,999.000,999.0,99.0 +1979,11,25,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,18.3,62,101200,638,1404,403,166,245,100,23300,24300,12200,1960,330,7.7,9,5,40.2,7620,9,999999999,320,0.0430,0,88,999.000,999.0,99.0 +1979,11,25,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,16.7,64,101200,377,1404,397,40,32,36,5200,2900,4400,790,360,8.8,9,7,40.2,7620,9,999999999,290,0.0430,0,88,999.000,999.0,99.0 +1979,11,25,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,16.1,71,101300,90,1111,374,0,0,0,0,0,0,0,360,7.7,6,4,24.1,7620,9,999999999,290,0.0400,0,88,999.000,999.0,99.0 +1979,11,25,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,15.6,71,101400,0,0,371,0,0,0,0,0,0,0,340,6.7,6,4,24.1,7620,9,999999999,279,0.0400,0,88,999.000,999.0,99.0 +1979,11,25,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,15.0,68,101500,0,0,367,0,0,0,0,0,0,0,340,6.7,5,3,24.1,77777,9,999999999,270,0.0400,0,88,999.000,999.0,99.0 +1979,11,25,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,14.4,66,101500,0,0,363,0,0,0,0,0,0,0,360,5.2,3,2,24.1,77777,9,999999999,259,0.0400,0,88,999.000,999.0,99.0 +1979,11,25,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,14.4,66,101500,0,0,358,0,0,0,0,0,0,0,360,5.7,2,1,24.1,77777,9,999999999,259,0.0400,0,88,999.000,999.0,99.0 +1979,11,25,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,13.9,66,101500,0,0,355,0,0,0,0,0,0,0,360,4.1,3,1,24.1,77777,9,999999999,250,0.0400,0,88,999.000,999.0,99.0 +1979,11,25,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,13.3,63,101500,0,0,354,0,0,0,0,0,0,0,350,3.1,6,1,24.1,77777,9,999999999,240,0.0400,0,88,999.000,999.0,99.0 +1979,11,26,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,13.3,66,101500,0,0,356,0,0,0,0,0,0,0,350,3.1,6,2,24.1,77777,9,999999999,240,0.0400,0,88,999.000,999.0,99.0 +1979,11,26,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,13.3,66,101400,0,0,356,0,0,0,0,0,0,0,310,1.5,6,2,24.1,77777,9,999999999,240,0.0400,0,88,999.000,999.0,99.0 +1979,11,26,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,13.3,61,101300,0,0,374,0,0,0,0,0,0,0,350,3.6,8,6,24.1,1370,9,999999999,240,0.0400,0,88,999.000,999.0,99.0 +1979,11,26,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,13.3,66,101300,0,0,373,0,0,0,0,0,0,0,360,2.1,7,7,24.1,7620,9,999999999,240,0.0400,0,88,999.000,999.0,99.0 +1979,11,26,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,13.9,78,101300,0,0,355,0,0,0,0,0,0,0,280,1.5,7,5,24.1,7620,9,999999999,250,0.0400,0,88,999.000,999.0,99.0 +1979,11,26,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,15.0,78,101300,0,0,362,0,1,0,0,0,0,0,290,3.6,7,5,24.1,7620,9,999999999,270,0.0400,0,88,999.000,999.0,99.0 +1979,11,26,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,15.0,84,101300,3,222,360,53,13,52,0,0,0,0,300,2.1,8,6,32.2,1370,9,999999999,270,0.0740,0,88,999.000,999.0,99.0 +1979,11,26,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,16.1,73,101400,193,1404,382,207,187,143,17100,11400,15600,3030,320,5.2,8,7,32.2,1370,9,999999999,279,0.0740,0,88,999.000,999.0,99.0 +1979,11,26,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,16.7,69,101400,478,1404,391,329,236,205,30300,22000,22800,4670,350,3.1,8,7,40.2,1370,9,999999999,300,0.0400,0,88,999.000,999.0,99.0 +1979,11,26,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,16.1,62,101400,720,1404,383,464,342,247,44700,35500,26500,5850,300,3.1,4,3,40.2,77777,9,999999999,290,0.0400,0,88,999.000,999.0,99.0 +1979,11,26,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,16.1,58,101300,901,1404,391,523,314,311,54800,33500,33200,8400,360,2.6,4,4,40.2,77777,9,999999999,290,0.0400,0,88,999.000,999.0,99.0 +1979,11,26,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,16.7,60,101200,1008,1404,418,426,300,207,46100,31200,23600,5960,320,6.2,10,9,32.2,700,9,999999999,290,0.0400,0,88,999.000,999.0,99.0 +1979,11,26,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,18.3,74,101200,1034,1404,402,439,244,270,49500,26400,30000,8090,350,4.1,9,8,40.2,1370,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1979,11,26,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,17.2,66,101100,978,1404,413,397,366,144,44900,38200,18300,3880,350,7.2,10,9,32.2,1370,9,999999999,300,0.0400,0,88,999.000,999.0,99.0 +1979,11,26,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,15.6,56,101100,842,1404,408,290,277,163,36700,29600,18900,3790,350,4.1,8,8,40.2,1370,9,999999999,279,0.0740,0,88,999.000,999.0,99.0 +1979,11,26,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,16.7,62,101100,637,1404,415,139,81,117,17300,8300,13500,2830,320,5.7,9,9,40.2,1370,9,999999999,290,0.0740,0,88,999.000,999.0,99.0 +1979,11,26,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,15.6,62,101200,377,1404,408,27,11,25,3100,900,2900,760,10,4.1,9,9,32.2,1370,9,999999999,279,0.0740,0,88,999.000,999.0,99.0 +1979,11,26,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,15.0,62,101200,90,1112,385,0,0,0,0,0,0,0,20,4.6,6,6,24.1,1370,9,999999999,270,0.0400,0,88,999.000,999.0,99.0 +1979,11,26,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,15.6,66,101200,0,0,402,0,0,0,0,0,0,0,350,4.6,10,9,24.1,1220,9,999999999,279,0.0400,0,88,999.000,999.0,99.0 +1979,11,26,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,14.4,66,101200,0,0,386,0,0,0,0,0,0,0,360,2.1,8,8,24.1,1220,9,999999999,259,0.0400,0,88,999.000,999.0,99.0 +1979,11,26,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,15.6,68,101300,0,0,399,0,0,0,0,0,0,0,360,2.1,10,9,24.1,1220,9,999999999,279,0.0400,0,88,999.000,999.0,99.0 +1979,11,26,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,15.6,66,101300,0,0,402,0,0,0,0,0,0,0,340,2.6,10,9,24.1,1220,9,999999999,279,0.0400,0,88,999.000,999.0,99.0 +1979,11,26,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,16.1,78,101200,0,0,363,0,0,0,0,0,0,0,320,3.1,3,3,24.1,77777,9,999999999,279,0.0400,0,88,999.000,999.0,99.0 +1979,11,26,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,15.6,81,101200,0,0,362,0,0,0,0,0,0,0,330,3.1,5,5,24.1,77777,9,999999999,279,0.0400,0,88,999.000,999.0,99.0 +1979,11,27,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,15.6,84,101200,0,0,354,0,0,0,0,0,0,0,360,2.6,3,3,24.1,77777,9,999999999,279,0.0400,0,88,999.000,999.0,99.0 +1979,11,27,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,16.1,90,101100,0,0,344,0,0,0,0,0,0,0,320,3.6,1,1,24.1,77777,9,999999999,279,0.0400,0,88,999.000,999.0,99.0 +1979,11,27,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,15.6,93,101100,0,0,332,0,0,0,0,0,0,0,310,3.6,0,0,24.1,77777,9,999999999,279,0.0400,0,88,999.000,999.0,99.0 +1979,11,27,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,15.6,93,101100,0,0,338,0,0,0,0,0,0,0,310,2.6,1,1,24.1,77777,9,999999999,279,0.0400,0,88,999.000,999.0,99.0 +1979,11,27,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,16.7,84,101200,0,0,366,0,0,0,0,0,0,0,320,2.1,5,5,24.1,77777,9,999999999,290,0.0400,0,88,999.000,999.0,99.0 +1979,11,27,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,16.1,87,101200,0,0,357,8,5,7,0,0,0,0,350,2.1,4,4,24.1,77777,9,999999999,279,0.0170,0,88,999.000,999.0,99.0 +1979,11,27,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,15.0,93,101200,3,199,343,98,480,33,0,0,0,0,310,2.6,3,3,24.1,77777,9,999999999,270,0.0170,0,88,999.000,999.0,99.0 +1979,11,27,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,16.7,90,101200,189,1405,352,288,652,67,15100,39200,9800,980,330,2.1,2,2,40.2,77777,9,999999999,290,0.0170,0,88,999.000,999.0,99.0 +1979,11,27,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,16.1,71,101300,474,1405,368,508,855,70,36700,77900,10300,1300,330,2.1,2,2,40.2,77777,9,999999999,290,0.0170,0,88,999.000,999.0,99.0 +1979,11,27,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,15.6,54,101300,716,1405,405,551,480,241,51500,49800,26000,5670,360,2.6,7,7,40.2,1520,9,999999999,279,0.0400,0,88,999.000,999.0,99.0 +1979,11,27,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,15.0,50,101400,898,1405,422,547,226,380,56400,23600,41200,10710,350,4.1,10,9,40.2,910,9,999999999,259,0.0400,0,88,999.000,999.0,99.0 +1979,11,27,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,15.0,54,101400,1005,1405,416,300,48,267,33300,4900,29800,9930,60,4.6,9,9,40.2,980,9,999999999,270,0.0400,0,88,999.000,999.0,99.0 +1979,11,27,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,13.3,44,101200,1032,1405,400,652,704,160,72500,72000,19500,4890,60,5.7,5,5,40.2,77777,9,999999999,240,0.0170,0,88,999.000,999.0,99.0 +1979,11,27,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,13.9,45,101200,976,1405,398,442,447,172,53400,46500,21000,4660,50,6.2,4,4,40.2,77777,9,999999999,250,0.0170,0,88,999.000,999.0,99.0 +1979,11,27,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,15.0,50,101100,841,1405,396,398,590,129,51300,59600,15500,3100,40,5.2,4,4,40.2,77777,9,999999999,259,0.0400,0,88,999.000,999.0,99.0 +1979,11,27,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,15.6,56,101200,636,1405,388,207,532,63,32600,52000,9000,1420,50,7.2,3,3,40.2,77777,9,999999999,279,0.0170,0,88,999.000,999.0,99.0 +1979,11,27,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,15.6,58,101200,376,1405,385,56,279,23,10900,24900,4300,570,80,5.2,3,3,40.2,77777,9,999999999,279,0.0170,0,88,999.000,999.0,99.0 +1979,11,27,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,15.6,62,101300,90,1112,382,0,0,0,0,0,0,0,80,4.1,4,4,32.2,77777,9,999999999,279,0.0400,0,88,999.000,999.0,99.0 +1979,11,27,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,17.2,73,101300,0,0,395,0,0,0,0,0,0,0,70,5.2,8,8,24.1,1220,9,999999999,300,0.0400,0,88,999.000,999.0,99.0 +1979,11,27,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,16.7,73,101400,0,0,378,0,0,0,0,0,0,0,0,0.0,5,5,24.1,77777,9,999999999,290,0.0400,0,88,999.000,999.0,99.0 +1979,11,27,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,17.2,73,101400,0,0,381,0,0,0,0,0,0,0,50,3.1,5,5,24.1,77777,9,999999999,300,0.0400,0,88,999.000,999.0,99.0 +1979,11,27,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,16.7,79,101400,0,0,351,0,0,0,0,0,0,0,350,2.6,0,0,24.1,77777,9,999999999,300,0.0400,0,88,999.000,999.0,99.0 +1979,11,27,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,16.7,87,101400,0,0,343,0,0,0,0,0,0,0,290,2.1,0,0,24.1,77777,9,999999999,300,0.0400,0,88,999.000,999.0,99.0 +1979,11,27,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,16.7,87,101400,0,0,343,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,300,0.0400,0,88,999.000,999.0,99.0 +1979,11,28,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,16.7,90,101400,0,0,340,0,0,0,0,0,0,0,320,2.1,0,0,24.1,77777,9,999999999,290,0.0400,0,88,999.000,999.0,99.0 +1979,11,28,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,16.7,93,101400,0,0,338,0,0,0,0,0,0,0,350,2.6,0,0,24.1,77777,9,999999999,290,0.0400,0,88,999.000,999.0,99.0 +1979,11,28,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,16.1,90,101400,0,0,338,0,0,0,0,0,0,0,340,2.1,0,0,24.1,77777,9,999999999,290,0.0400,0,88,999.000,999.0,99.0 +1979,11,28,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,16.1,93,101400,0,0,346,0,0,0,0,0,0,0,310,2.6,2,2,24.1,77777,9,999999999,279,0.0400,0,88,999.000,999.0,99.0 +1979,11,28,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,17.2,93,101400,0,0,375,0,0,0,0,0,0,0,310,2.6,8,8,24.1,1520,9,999999999,300,0.0400,0,88,999.000,999.0,99.0 +1979,11,28,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,16.7,90,101400,0,0,355,3,10,1,0,0,0,0,350,3.6,3,3,24.1,77777,9,999999999,290,0.0510,0,88,999.000,999.0,99.0 +1979,11,28,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,16.7,87,101400,2,199,355,66,271,31,0,0,0,0,350,3.1,2,2,24.1,77777,9,999999999,300,0.0510,0,88,999.000,999.0,99.0 +1979,11,28,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,17.8,76,101600,186,1405,372,278,562,88,15600,33200,11200,1770,360,2.1,2,2,40.2,77777,9,999999999,320,0.0510,0,88,999.000,999.0,99.0 +1979,11,28,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,17.8,66,101600,471,1405,417,188,28,177,20400,2200,19600,5600,50,5.2,9,9,40.2,1520,9,999999999,309,0.0400,0,88,999.000,999.0,99.0 +1979,11,28,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,17.8,56,101600,713,1405,432,424,318,223,41000,33000,24200,5150,80,5.7,9,9,40.2,1520,9,999999999,309,0.0400,0,88,999.000,999.0,99.0 +1979,11,28,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,17.8,55,101600,894,1405,436,487,220,333,51300,23000,36500,9350,70,6.2,9,9,40.2,2740,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1979,11,28,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,17.8,56,101500,1002,1405,445,481,157,369,52300,16600,40400,11410,80,7.2,10,10,40.2,1520,9,999999999,309,0.0400,0,88,999.000,999.0,99.0 +1979,11,28,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,18.3,58,101400,1029,1405,445,305,9,299,35500,800,34900,13090,80,6.2,10,10,40.2,1520,9,999999999,320,0.0510,0,88,999.000,999.0,99.0 +1979,11,28,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,18.3,56,101400,974,1405,427,485,536,146,55400,54700,17400,4100,80,4.6,9,8,40.2,1680,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1979,11,28,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,18.3,55,101300,839,1405,409,397,581,133,50900,58600,15800,3180,70,6.7,3,3,40.2,77777,9,999999999,329,0.0510,0,88,999.000,999.0,99.0 +1979,11,28,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,18.3,58,101300,635,1405,403,201,462,76,30600,45500,10000,1620,60,8.2,3,3,40.2,77777,9,999999999,320,0.0510,0,88,999.000,999.0,99.0 +1979,11,28,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,18.9,67,101300,376,1405,425,37,11,36,4300,900,4100,1070,70,7.7,10,9,40.2,1680,9,999999999,340,0.0510,0,88,999.000,999.0,99.0 +1979,11,28,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,18.9,71,101400,90,1113,418,0,0,0,0,0,0,0,60,6.7,10,9,24.1,1520,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1979,11,28,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,18.9,71,101400,0,0,418,0,0,0,0,0,0,0,60,5.2,10,9,24.1,1520,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1979,11,28,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,19.4,74,101500,0,0,419,0,0,0,0,0,0,0,60,5.2,10,9,24.1,1520,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1979,11,28,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,18.9,71,101600,0,0,418,0,0,0,0,0,0,0,70,5.7,10,9,24.1,1520,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1979,11,28,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,19.4,74,101600,0,0,419,0,0,0,0,0,0,0,90,3.1,10,9,24.1,1520,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1979,11,28,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,18.9,71,101600,0,0,418,0,0,0,0,0,0,0,60,4.1,10,9,24.1,1520,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1979,11,28,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,18.9,74,101600,0,0,415,0,0,0,0,0,0,0,60,3.1,10,9,24.1,1520,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1979,11,29,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,18.9,71,101600,0,0,418,0,0,0,0,0,0,0,40,3.6,10,9,24.1,1520,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1979,11,29,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,19.4,74,101500,0,0,410,0,0,0,0,0,0,0,50,4.6,8,8,24.1,1520,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1979,11,29,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,18.9,74,101500,0,0,415,0,0,0,0,0,0,0,80,1.5,9,9,24.1,1520,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1979,11,29,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,19.4,76,101500,0,0,387,0,0,0,0,0,0,0,60,3.6,3,3,24.1,77777,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1979,11,29,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,18.9,79,101500,0,0,377,0,0,0,0,0,0,0,50,2.6,2,2,24.1,77777,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1979,11,29,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,19.4,79,101500,0,0,404,0,0,1,0,0,0,0,60,2.1,8,8,24.1,1520,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1979,11,29,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,19.4,76,101600,2,176,416,54,26,51,0,0,0,0,70,3.6,9,9,24.1,1520,9,999999999,350,0.0310,0,88,999.000,999.0,99.0 +1979,11,29,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,20.0,74,101600,182,1406,423,187,49,171,19100,3900,18600,1690,130,2.6,10,9,40.2,1520,9,999999999,359,0.0310,0,88,999.000,999.0,99.0 +1979,11,29,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,20.6,74,101600,467,1406,427,184,1,206,22200,100,22200,5880,110,4.1,9,9,40.2,1520,9,999999999,370,0.0400,0,88,999.000,999.0,99.0 +1979,11,29,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,18.9,60,101700,709,1406,434,375,206,245,37800,21100,27100,6130,80,3.1,10,9,40.2,1520,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1979,11,29,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,18.9,55,101600,891,1406,444,460,174,340,48700,18200,37100,9520,160,4.6,10,9,40.2,1520,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1979,11,29,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,21.1,61,101600,999,1406,440,419,236,246,45600,25500,27400,6970,150,6.2,9,8,40.2,1520,9,999999999,379,0.0310,0,88,999.000,999.0,99.0 +1979,11,29,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,20.6,65,101500,1027,1406,430,392,184,264,44400,19600,30000,8370,140,7.2,9,8,40.2,1520,9,999999999,370,0.0310,0,88,999.000,999.0,99.0 +1979,11,29,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,20.6,63,101400,972,1406,443,384,195,267,44500,20700,30100,8000,140,7.7,10,9,40.2,1520,9,999999999,370,0.0310,0,88,999.000,999.0,99.0 +1979,11,29,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,20.6,65,101300,838,1406,440,273,235,167,34100,25100,19100,3890,150,5.2,10,9,40.2,1520,9,999999999,370,0.0310,0,88,999.000,999.0,99.0 +1979,11,29,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,20.6,69,101300,634,1406,433,113,56,98,14000,5700,11400,2360,170,5.7,10,9,40.2,1520,9,999999999,370,0.0310,0,88,999.000,999.0,99.0 +1979,11,29,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,21.1,74,101300,375,1406,431,40,10,39,4600,900,4400,1150,200,4.6,10,9,40.2,1520,9,999999999,379,0.0310,0,88,999.000,999.0,99.0 +1979,11,29,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,21.7,77,101400,90,1113,431,0,0,0,0,0,0,0,310,3.1,10,9,24.1,1520,9,999999999,400,0.0400,0,88,999.000,999.0,99.0 +1979,11,29,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,21.1,77,101400,0,0,419,0,0,0,0,0,0,0,320,3.1,10,8,24.1,1520,9,999999999,390,0.0400,0,88,999.000,999.0,99.0 +1979,11,29,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,20.6,79,101500,0,0,405,0,0,0,0,0,0,0,30,2.1,10,7,24.1,1520,9,999999999,370,0.0400,0,88,999.000,999.0,99.0 +1979,11,29,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,20.0,84,101600,0,0,382,0,0,0,0,0,0,0,0,0.0,9,3,24.1,77777,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1979,11,29,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,19.4,82,101600,0,0,381,0,0,0,0,0,0,0,50,2.1,6,3,24.1,77777,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1979,11,29,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,19.4,82,101600,0,0,377,0,0,0,0,0,0,0,60,2.6,5,2,24.1,77777,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1979,11,29,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,18.9,84,101500,0,0,366,0,0,0,0,0,0,0,310,2.6,3,1,24.1,77777,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1979,11,30,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,18.9,84,101500,0,0,371,0,0,0,0,0,0,0,10,2.1,3,2,24.1,77777,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1979,11,30,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,18.9,87,101400,0,0,372,0,0,0,0,0,0,0,320,3.1,5,3,24.1,77777,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1979,11,30,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,18.9,90,101400,0,0,369,0,0,0,0,0,0,0,20,2.6,5,3,24.1,77777,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1979,11,30,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,18.3,87,101300,0,0,360,0,0,0,0,0,0,0,340,1.5,3,1,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1979,11,30,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,18.3,84,101300,0,0,384,0,0,0,0,0,0,0,350,2.6,8,7,24.1,1520,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1979,11,30,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,18.3,87,101300,0,0,368,3,2,2,0,0,0,0,0,0.0,7,3,24.1,77777,9,999999999,329,0.0440,0,88,999.000,999.0,99.0 +1979,11,30,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,18.3,90,101400,2,152,365,67,219,39,0,0,0,0,290,3.1,5,3,24.1,77777,9,999999999,320,0.0440,0,88,999.000,999.0,99.0 +1979,11,30,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,19.4,79,101500,179,1406,383,289,642,77,15200,36200,10600,1020,70,1.5,3,3,40.2,77777,9,999999999,350,0.0440,0,88,999.000,999.0,99.0 +1979,11,30,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,19.4,67,101400,464,1406,398,291,301,165,27500,28000,18200,3550,120,2.6,4,3,40.2,77777,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1979,11,30,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,18.3,58,101500,706,1406,403,481,339,268,46000,35000,28300,6450,180,3.1,4,3,40.2,77777,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1979,11,30,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,21.1,69,101400,888,1406,406,642,599,212,63100,61700,24000,5240,160,4.1,6,3,40.2,77777,9,999999999,379,0.0400,0,88,999.000,999.0,99.0 +1979,11,30,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,20.6,63,101300,997,1406,412,733,870,76,72600,86900,10800,2190,160,5.2,6,3,40.2,77777,9,999999999,370,0.0400,0,88,999.000,999.0,99.0 +1979,11,30,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,20.6,63,101300,1025,1406,422,585,439,280,63600,45600,30300,8440,150,5.2,9,6,40.2,7620,9,999999999,370,0.0440,0,88,999.000,999.0,99.0 +1979,11,30,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,20.0,59,101200,970,1406,429,339,212,213,39900,22900,24100,5730,140,3.6,10,7,40.2,7620,9,999999999,359,0.0440,0,88,999.000,999.0,99.0 +1979,11,30,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,18.9,58,101200,837,1406,422,333,354,173,41500,36300,19800,4010,180,2.6,10,7,40.2,7620,9,999999999,329,0.0440,0,88,999.000,999.0,99.0 +1979,11,30,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,19.4,61,101200,634,1406,414,188,394,82,27700,38600,10200,1730,190,3.6,7,5,40.2,7620,9,999999999,350,0.0440,0,88,999.000,999.0,99.0 +1979,11,30,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,20.0,65,101200,375,1406,408,47,102,34,7000,8900,4700,570,160,2.1,8,4,40.2,77777,9,999999999,359,0.0440,0,88,999.000,999.0,99.0 +1979,11,30,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,19.4,67,101300,90,1113,401,0,0,0,0,0,0,0,130,1.5,9,4,32.2,77777,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1979,11,30,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,19.4,71,101400,0,0,407,0,0,0,0,0,0,0,0,0.0,10,7,24.1,910,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1979,11,30,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,19.4,74,101500,0,0,395,0,0,0,0,0,0,0,60,3.6,10,5,24.1,77777,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1979,11,30,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,19.4,74,101500,0,0,389,0,0,0,0,0,0,0,340,2.6,9,3,24.1,77777,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1979,11,30,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.5,19.5,74,101600,0,0,386,0,0,0,0,0,0,0,20,2.7,10,2,24.1,77777,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1979,11,30,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.6,19.7,79,101700,0,0,397,0,0,0,0,0,0,0,330,2.8,8,5,24.1,7620,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1979,11,30,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.7,19.8,76,101600,0,0,401,0,0,0,0,0,0,0,340,2.9,9,6,24.1,7620,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1977,12,1,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.7,19.9,75,101400,0,0,401,0,0,0,0,0,0,0,170,3.1,6,6,24.1,77777,9,999999999,370,0.0400,0,88,999.000,999.0,99.0 +1977,12,1,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.8,20.0,76,101400,0,0,406,0,0,0,0,0,0,0,170,3.2,7,7,24.1,1520,9,999999999,370,0.0400,0,88,999.000,999.0,99.0 +1977,12,1,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.9,20.2,75,101400,0,0,399,0,0,0,0,0,0,0,170,3.3,5,5,24.1,77777,9,999999999,370,0.0400,0,88,999.000,999.0,99.0 +1977,12,1,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,25.0,20.3,75,101300,0,0,397,0,0,0,0,0,0,0,170,3.4,4,4,24.1,77777,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1977,12,1,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,20.0,74,101300,0,0,389,0,0,0,0,0,0,0,170,3.1,2,2,24.1,77777,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1977,12,1,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,25.2,20.2,74,101400,0,0,394,5,8,3,0,0,0,0,170,2.9,3,3,24.1,77777,9,999999999,359,0.0220,0,88,999.000,999.0,99.0 +1977,12,1,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,25.4,20.2,74,101400,1,129,399,78,260,45,0,0,0,0,180,2.8,4,4,24.1,77777,9,999999999,370,0.0220,0,88,999.000,999.0,99.0 +1977,12,1,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,20.6,74,101500,173,1407,403,191,228,116,14700,13300,13100,2450,180,2.6,5,5,40.2,77777,9,999999999,370,0.0220,0,88,999.000,999.0,99.0 +1977,12,1,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,26.3,21.3,72,101500,458,1407,408,403,454,175,33400,42000,19700,3830,160,2.9,5,5,40.2,77777,9,999999999,379,0.0220,0,88,999.000,999.0,99.0 +1977,12,1,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,27.1,21.3,69,101500,701,1407,409,605,789,107,52900,78000,13900,2300,140,3.3,4,4,40.2,77777,9,999999999,379,0.0220,0,88,999.000,999.0,99.0 +1977,12,1,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,21.1,67,101500,883,1407,413,702,771,155,67400,77700,18500,3810,120,3.6,4,4,40.2,77777,9,999999999,379,0.0220,0,88,999.000,999.0,99.0 +1977,12,1,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,28.0,21.2,66,101400,992,1407,414,587,546,188,60400,55200,21300,5260,140,3.9,4,4,40.2,77777,9,999999999,379,0.0220,0,88,999.000,999.0,99.0 +1977,12,1,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,28.1,21.0,64,101300,1021,1407,411,678,792,130,74500,79700,16400,3650,160,4.3,3,3,40.2,77777,9,999999999,370,0.0220,0,88,999.000,999.0,99.0 +1977,12,1,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,20.6,63,101300,967,1407,412,511,576,167,59700,58400,19400,4570,180,4.6,3,3,40.2,77777,9,999999999,370,0.0220,0,88,999.000,999.0,99.0 +1977,12,1,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,27.9,20.8,64,101300,835,1407,410,432,760,87,57800,76200,12300,2130,170,4.4,3,3,40.2,77777,9,999999999,370,0.0220,0,88,999.000,999.0,99.0 +1977,12,1,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,27.6,20.9,66,101300,633,1407,408,188,450,67,29200,44400,9100,1450,150,4.3,3,3,40.2,77777,9,999999999,370,0.0220,0,88,999.000,999.0,99.0 +1977,12,1,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,20.6,67,101300,375,1407,406,50,113,37,7700,9800,5000,630,140,4.1,3,3,40.2,77777,9,999999999,370,0.0220,0,88,999.000,999.0,99.0 +1977,12,1,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,26.7,20.8,69,101300,91,1114,403,0,0,0,0,0,0,0,140,3.8,3,3,40.2,77777,9,999999999,370,0.0400,0,88,999.000,999.0,99.0 +1977,12,1,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,26.1,20.8,72,101300,0,0,396,0,0,0,0,0,0,0,140,3.4,2,2,40.2,77777,9,999999999,370,0.0400,0,88,999.000,999.0,99.0 +1977,12,1,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,20.6,74,101400,0,0,393,0,0,0,0,0,0,0,140,3.1,2,2,24.1,77777,9,999999999,370,0.0400,0,88,999.000,999.0,99.0 +1977,12,1,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,25.0,20.5,76,101400,0,0,390,0,0,0,0,0,0,0,110,2.9,2,2,24.1,77777,9,999999999,370,0.0400,0,88,999.000,999.0,99.0 +1977,12,1,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.5,20.3,77,101400,0,0,387,0,0,0,0,0,0,0,90,2.8,2,2,24.1,77777,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1977,12,1,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,20.0,79,101400,0,0,384,0,0,0,0,0,0,0,60,2.6,2,2,24.1,77777,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1977,12,1,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,23.9,20.1,79,101300,0,0,390,0,0,0,0,0,0,0,70,2.8,4,4,24.1,77777,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1977,12,2,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,23.9,20.1,79,101300,0,0,402,0,0,0,0,0,0,0,70,2.9,7,7,24.1,77777,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1977,12,2,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,20.0,79,101300,0,0,417,0,0,0,0,0,0,0,80,3.1,9,9,24.1,1680,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1977,12,2,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,23.7,20.1,80,101200,0,0,416,0,0,0,0,0,0,0,70,2.9,9,9,24.1,1680,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1977,12,2,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,23.5,20.1,81,101200,0,0,415,0,0,0,0,0,0,0,70,2.8,10,9,24.1,1680,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1977,12,2,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,20.0,82,101200,0,0,413,0,0,0,0,0,0,0,60,2.6,10,9,24.1,1680,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1977,12,2,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.1,20.2,79,101200,0,0,418,1,0,1,0,0,0,0,90,3.1,10,9,24.1,1933,9,999999999,359,0.0410,0,88,999.000,999.0,99.0 +1977,12,2,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.8,20.2,77,101300,1,129,422,43,0,43,0,0,0,0,120,3.6,10,9,24.1,2187,9,999999999,370,0.0410,0,88,999.000,999.0,99.0 +1977,12,2,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,20.6,74,101300,170,1407,427,126,31,116,12200,1700,12000,1570,150,4.1,10,9,40.2,2440,9,999999999,370,0.0410,0,88,999.000,999.0,99.0 +1977,12,2,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,26.1,20.9,71,101300,455,1407,430,257,69,223,26700,6600,24600,4950,150,3.6,9,9,40.2,2440,9,999999999,370,0.0410,0,88,999.000,999.0,99.0 +1977,12,2,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,26.7,20.6,68,101300,698,1407,424,381,144,290,39600,14500,32400,7940,140,3.1,9,8,40.2,2440,9,999999999,359,0.0410,0,88,999.000,999.0,99.0 +1977,12,2,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,20.0,65,101300,880,1407,426,480,232,316,50100,24300,34800,8770,140,2.6,8,8,40.2,2440,9,999999999,359,0.0410,0,88,999.000,999.0,99.0 +1977,12,2,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,27.6,20.5,64,101200,990,1407,429,389,156,275,42600,16600,30900,8380,160,3.5,8,8,40.2,2847,9,999999999,359,0.0410,0,88,999.000,999.0,99.0 +1977,12,2,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,27.9,20.7,64,101100,1019,1407,431,430,140,333,47600,14800,36800,10460,180,4.3,8,8,40.2,3253,9,999999999,370,0.0410,0,88,999.000,999.0,99.0 +1977,12,2,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,20.6,63,101000,966,1407,433,313,85,262,35400,8600,29400,9420,200,5.2,8,8,40.2,3660,9,999999999,370,0.0410,0,88,999.000,999.0,99.0 +1977,12,2,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,27.9,20.6,64,101000,834,1407,419,312,351,153,39500,36100,18100,3500,200,4.7,6,6,40.2,77777,9,999999999,370,0.0410,0,88,999.000,999.0,99.0 +1977,12,2,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,27.6,20.5,64,101000,632,1407,414,206,475,78,31200,46600,10200,1660,190,4.1,5,5,40.2,77777,9,999999999,359,0.0410,0,88,999.000,999.0,99.0 +1977,12,2,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,20.0,65,101000,375,1407,405,45,60,38,6300,5400,4800,840,190,3.6,3,3,40.2,77777,9,999999999,359,0.0410,0,88,999.000,999.0,99.0 +1977,12,2,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,26.7,20.4,68,101000,91,1114,406,0,0,0,0,0,0,0,180,3.9,4,4,40.2,77777,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1977,12,2,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,26.1,20.6,71,101000,0,0,406,0,0,0,0,0,0,0,170,4.3,5,5,40.2,77777,9,999999999,370,0.0400,0,88,999.000,999.0,99.0 +1977,12,2,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,20.6,74,101100,0,0,407,0,0,0,0,0,0,0,160,4.6,6,6,24.1,1370,9,999999999,370,0.0400,0,88,999.000,999.0,99.0 +1977,12,2,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,25.6,20.7,74,101000,0,0,403,0,0,0,0,0,0,0,160,5.3,5,5,24.1,77777,9,999999999,370,0.0400,0,88,999.000,999.0,99.0 +1977,12,2,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,25.6,20.7,74,101000,0,0,403,0,0,0,0,0,0,0,160,6.0,5,5,24.1,77777,9,999999999,370,0.0400,0,88,999.000,999.0,99.0 +1977,12,2,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,20.6,74,101000,0,0,400,0,0,0,0,0,0,0,160,6.7,4,4,24.1,77777,9,999999999,370,0.0400,0,88,999.000,999.0,99.0 +1977,12,2,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,25.6,20.7,74,101000,0,0,407,0,0,0,0,0,0,0,160,6.9,6,6,24.1,77777,9,999999999,370,0.0400,0,88,999.000,999.0,99.0 +1977,12,3,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,25.6,20.7,74,100900,0,0,412,0,0,0,0,0,0,0,170,7.0,8,7,24.1,77777,9,999999999,370,0.0400,0,88,999.000,999.0,99.0 +1977,12,3,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,20.6,74,100900,0,0,427,0,0,0,0,0,0,0,170,7.2,10,9,24.1,1370,9,999999999,370,0.0400,0,88,999.000,999.0,99.0 +1977,12,3,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,25.6,20.5,73,100900,0,0,427,0,0,0,0,0,0,0,170,7.9,10,9,24.1,1370,9,999999999,370,0.0400,0,88,999.000,999.0,99.0 +1977,12,3,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,25.6,20.3,72,100800,0,0,439,0,0,0,0,0,0,0,170,8.6,10,10,24.1,1370,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1977,12,3,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,20.0,71,100800,0,0,438,0,0,0,0,0,0,0,170,9.3,10,10,24.1,1370,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1977,12,3,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,25.8,20.2,71,100900,0,0,440,0,0,0,0,0,0,0,170,8.8,10,10,24.1,1147,9,999999999,359,0.0740,0,88,999.000,999.0,99.0 +1977,12,3,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,25.9,20.2,72,100900,1,106,440,37,5,37,0,0,0,0,180,8.2,10,10,24.1,923,9,999999999,370,0.0740,0,88,999.000,999.0,99.0 +1977,12,3,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,20.6,72,101000,167,1408,442,123,10,120,12300,600,12200,1420,180,7.7,10,10,24.1,700,9,999999999,370,0.0740,0,88,999.000,999.0,99.0 +1977,12,3,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,26.1,21.8,75,101000,451,1408,444,236,5,234,25000,500,24900,5770,190,7.4,10,10,24.1,923,9,999999999,390,0.0740,0,88,999.000,999.0,99.0 +1977,12,3,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,26.1,22.4,79,101000,694,1408,445,266,9,260,29400,800,29000,9190,190,7.0,10,10,24.1,1147,9,999999999,400,0.0740,0,88,999.000,999.0,99.0 +1977,12,3,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,22.8,82,101000,877,1408,445,172,5,169,20400,400,20200,7870,200,6.7,10,10,14.5,1370,9,999999999,419,0.0740,0,88,999.000,999.0,99.0 +1977,12,3,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,25.4,22.5,83,101000,987,1408,441,335,1,334,38300,100,38200,13720,230,5.3,10,10,14.5,1370,9,999999999,409,0.0740,0,88,999.000,999.0,99.0 +1977,12,3,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.6,21.9,84,100900,1017,1408,435,320,5,317,37000,500,36700,13520,260,4.0,10,10,14.5,1370,9,999999999,390,0.0740,0,88,999.000,999.0,99.0 +1977,12,3,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,21.1,85,100900,965,1408,430,180,3,178,21600,200,21400,8550,290,2.6,10,10,16.1,1370,9,999999999,379,0.0740,0,88,999.000,999.0,99.0 +1977,12,3,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,23.9,20.8,82,100900,833,1408,429,220,1,219,25400,100,25300,9340,310,3.5,10,10,16.1,1420,9,999999999,370,0.0740,0,88,999.000,999.0,99.0 +1977,12,3,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,23.9,20.2,79,100900,632,1408,417,98,25,91,11300,2400,10200,2930,320,4.3,9,9,16.1,1470,9,999999999,359,0.0740,0,88,999.000,999.0,99.0 +1977,12,3,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,19.4,76,101000,375,1408,416,33,20,31,4000,1700,3600,930,340,5.2,9,9,32.2,1520,9,999999999,350,0.0740,0,88,999.000,999.0,99.0 +1977,12,3,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,23.3,18.8,75,101000,91,1115,397,0,0,0,0,0,0,0,340,5.0,7,7,32.2,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1977,12,3,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,22.8,18.1,74,101100,0,0,385,0,0,0,0,0,0,0,350,4.8,5,5,32.2,77777,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1977,12,3,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,17.2,73,101100,0,0,375,0,0,0,0,0,0,0,350,4.6,3,3,24.1,77777,9,999999999,300,0.0400,0,88,999.000,999.0,99.0 +1977,12,3,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,21.8,16.8,72,101100,0,0,369,0,0,0,0,0,0,0,350,4.3,2,2,24.1,77777,9,999999999,290,0.0400,0,88,999.000,999.0,99.0 +1977,12,3,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,21.5,16.3,72,101200,0,0,367,0,0,0,0,0,0,0,360,3.9,2,2,24.1,77777,9,999999999,290,0.0400,0,88,999.000,999.0,99.0 +1977,12,3,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,15.6,71,101200,0,0,359,0,0,0,0,0,0,0,360,3.6,1,1,24.1,77777,9,999999999,279,0.0400,0,88,999.000,999.0,99.0 +1977,12,3,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,20.9,15.5,71,101200,0,0,363,0,0,0,0,0,0,0,350,3.4,2,2,24.1,77777,9,999999999,270,0.0400,0,88,999.000,999.0,99.0 +1977,12,4,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,20.8,15.3,71,101200,0,0,362,0,0,0,0,0,0,0,350,3.3,2,2,24.1,77777,9,999999999,270,0.0400,0,88,999.000,999.0,99.0 +1977,12,4,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,15.0,71,101200,0,0,365,0,0,0,0,0,0,0,340,3.1,3,3,24.1,77777,9,999999999,270,0.0400,0,88,999.000,999.0,99.0 +1977,12,4,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,20.4,14.9,71,101200,0,0,366,0,0,0,0,0,0,0,340,3.4,4,4,24.1,77777,9,999999999,270,0.0400,0,88,999.000,999.0,99.0 +1977,12,4,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,20.2,14.7,71,101200,0,0,371,0,0,0,0,0,0,0,340,3.8,6,6,24.1,77777,9,999999999,259,0.0400,0,88,999.000,999.0,99.0 +1977,12,4,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,14.4,71,101200,0,0,374,0,0,0,0,0,0,0,340,4.1,7,7,24.1,1520,9,999999999,259,0.0400,0,88,999.000,999.0,99.0 +1977,12,4,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,20.7,14.4,68,101300,0,0,370,3,2,1,0,0,0,0,340,4.1,5,5,24.1,77777,9,999999999,259,0.0340,0,88,999.000,999.0,99.0 +1977,12,4,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,21.5,14.2,65,101300,1,82,371,68,298,33,0,0,0,0,330,4.1,4,4,24.1,77777,9,999999999,259,0.0340,0,88,999.000,999.0,99.0 +1977,12,4,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,14.4,62,101400,163,1408,368,237,472,85,13300,25700,10300,1740,330,4.1,2,2,40.2,77777,9,999999999,259,0.0340,0,88,999.000,999.0,99.0 +1977,12,4,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,23.5,14.9,58,101400,448,1408,375,329,496,84,24900,44300,10800,1560,360,4.3,2,2,40.2,77777,9,999999999,259,0.0340,0,88,999.000,999.0,99.0 +1977,12,4,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.8,14.8,53,101400,691,1408,386,609,798,110,52900,78600,14200,2340,30,4.4,3,3,40.2,77777,9,999999999,259,0.0340,0,88,999.000,999.0,99.0 +1977,12,4,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,14.4,49,101400,874,1408,392,684,762,147,65600,76800,17700,3600,60,4.6,3,3,40.2,77777,9,999999999,259,0.0340,0,88,999.000,999.0,99.0 +1977,12,4,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,26.5,14.9,48,101300,985,1408,391,734,871,101,73800,86800,12900,2430,60,5.6,2,2,40.2,77777,9,999999999,259,0.0340,0,88,999.000,999.0,99.0 +1977,12,4,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,26.8,15.1,48,101200,1015,1408,393,692,849,108,74700,84600,13400,2610,60,6.7,2,2,40.2,77777,9,999999999,259,0.0340,0,88,999.000,999.0,99.0 +1977,12,4,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,15.0,47,101200,963,1408,389,554,808,73,65700,80600,10300,2050,60,7.7,1,1,40.2,77777,9,999999999,270,0.0340,0,88,999.000,999.0,99.0 +1977,12,4,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,26.7,15.4,49,101100,833,1408,387,407,808,41,55400,80100,7800,1270,60,7.9,1,1,40.2,77777,9,999999999,270,0.0340,0,88,999.000,999.0,99.0 +1977,12,4,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,26.1,15.7,52,101100,632,1408,384,223,714,31,37800,69000,6700,950,60,8.0,1,1,40.2,77777,9,999999999,270,0.0340,0,88,999.000,999.0,99.0 +1977,12,4,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,15.6,54,101100,376,1408,382,51,280,20,10800,25000,4100,500,60,8.2,1,1,40.2,77777,9,999999999,279,0.0340,0,88,999.000,999.0,99.0 +1977,12,4,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,25.0,16.1,57,101200,92,1115,388,0,0,0,0,0,0,0,60,6.8,3,3,40.2,77777,9,999999999,279,0.0400,0,88,999.000,999.0,99.0 +1977,12,4,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.5,16.5,61,101300,0,0,392,0,0,0,0,0,0,0,60,5.5,6,5,40.2,77777,9,999999999,290,0.0400,0,88,999.000,999.0,99.0 +1977,12,4,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,16.7,64,101300,0,0,397,0,0,0,0,0,0,0,60,4.1,8,7,24.1,1370,9,999999999,290,0.0400,0,88,999.000,999.0,99.0 +1977,12,4,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,23.7,17.2,66,101300,0,0,392,0,0,0,0,0,0,0,60,4.5,7,6,24.1,77777,9,999999999,300,0.0400,0,88,999.000,999.0,99.0 +1977,12,4,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,23.5,17.6,69,101300,0,0,388,0,0,0,0,0,0,0,50,4.8,6,5,24.1,77777,9,999999999,309,0.0400,0,88,999.000,999.0,99.0 +1977,12,4,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,17.8,71,101400,0,0,385,0,0,0,0,0,0,0,50,5.2,5,4,24.1,77777,9,999999999,309,0.0400,0,88,999.000,999.0,99.0 +1977,12,4,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,22.8,18.1,74,101300,0,0,385,0,0,0,0,0,0,0,30,3.5,6,5,24.1,77777,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1977,12,5,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,22.2,18.3,78,101200,0,0,390,0,0,0,0,0,0,0,20,1.7,7,7,24.1,77777,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1977,12,5,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,18.3,81,101200,0,0,394,0,0,0,0,0,0,0,0,0.0,8,8,24.1,1520,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1977,12,5,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,21.7,18.4,81,101200,0,0,394,0,0,0,0,0,0,0,340,0.7,8,8,24.1,1470,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1977,12,5,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,21.7,18.4,81,101200,0,0,402,0,0,0,0,0,0,0,310,1.4,9,9,24.1,1420,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1977,12,5,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,18.3,81,101200,0,0,402,0,0,0,0,0,0,0,290,2.1,9,9,24.1,1370,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1977,12,5,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,22.4,18.5,79,101200,0,0,392,1,0,0,0,0,0,0,310,2.1,7,7,24.1,77777,9,999999999,329,0.0790,0,88,999.000,999.0,99.0 +1977,12,5,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,23.2,18.5,76,101300,0,82,388,64,150,47,0,0,0,0,320,2.1,5,5,24.1,77777,9,999999999,329,0.0790,0,88,999.000,999.0,99.0 +1977,12,5,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,18.9,74,101300,160,1409,386,239,467,91,13600,25000,10700,1900,340,2.1,3,3,40.2,77777,9,999999999,340,0.0790,0,88,999.000,999.0,99.0 +1977,12,5,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.8,19.4,70,101300,445,1409,397,382,475,149,30200,42400,16700,2940,30,2.6,5,5,40.2,77777,9,999999999,340,0.0790,0,88,999.000,999.0,99.0 +1977,12,5,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,25.8,19.3,66,101300,688,1409,411,368,179,257,37100,18200,28200,6360,90,3.1,8,7,40.2,77777,9,999999999,340,0.0790,0,88,999.000,999.0,99.0 +1977,12,5,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,18.9,62,101300,872,1409,431,420,145,318,44200,15200,34800,8770,140,3.6,10,9,40.2,1520,9,999999999,329,0.0790,0,88,999.000,999.0,99.0 +1977,12,5,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,26.7,19.5,64,101200,983,1409,432,278,13,269,32300,1100,31500,11850,120,3.6,10,9,40.2,1520,9,999999999,340,0.0790,0,88,999.000,999.0,99.0 +1977,12,5,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,26.7,19.9,65,101100,1014,1409,432,466,238,302,51500,25700,32900,8950,90,3.6,10,9,40.2,1520,9,999999999,350,0.0790,0,88,999.000,999.0,99.0 +1977,12,5,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,20.0,67,101000,962,1409,433,286,52,255,32100,5300,28400,9170,70,3.6,10,9,40.2,1520,9,999999999,359,0.0790,0,88,999.000,999.0,99.0 +1977,12,5,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,26.7,20.2,67,101000,832,1409,417,275,196,186,33200,20900,20800,4370,100,3.1,8,7,40.2,77777,9,999999999,359,0.0790,0,88,999.000,999.0,99.0 +1977,12,5,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,26.7,20.3,67,101000,632,1409,412,180,263,109,24800,26000,13100,2140,140,2.6,7,6,40.2,77777,9,999999999,359,0.0790,0,88,999.000,999.0,99.0 +1977,12,5,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,20.0,67,101000,376,1409,405,36,60,29,5200,5200,3800,480,170,2.1,5,4,40.2,77777,9,999999999,359,0.0790,0,88,999.000,999.0,99.0 +1977,12,5,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,26.1,20.4,70,101000,93,1139,406,0,0,0,0,0,0,0,110,1.4,6,5,40.2,77777,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1977,12,5,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,25.6,20.6,73,101100,0,0,403,0,0,0,0,0,0,0,60,0.7,6,5,40.2,77777,9,999999999,370,0.0400,0,88,999.000,999.0,99.0 +1977,12,5,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,20.6,76,101100,0,0,403,0,0,0,0,0,0,0,0,0.0,7,6,24.1,1520,9,999999999,370,0.0400,0,88,999.000,999.0,99.0 +1977,12,5,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.8,20.7,77,101100,0,0,396,0,0,0,0,0,0,0,40,1.4,5,4,24.1,77777,9,999999999,370,0.0400,0,88,999.000,999.0,99.0 +1977,12,5,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.6,20.7,78,101100,0,0,388,0,0,0,0,0,0,0,70,2.7,2,2,24.1,77777,9,999999999,370,0.0400,0,88,999.000,999.0,99.0 +1977,12,5,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,20.6,79,101100,0,0,374,0,0,0,0,0,0,0,110,4.1,0,0,24.1,77777,9,999999999,370,0.0400,0,88,999.000,999.0,99.0 +1977,12,5,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,23.5,20.2,81,101100,0,0,377,0,0,0,0,0,0,0,100,3.8,1,1,24.1,77777,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1977,12,6,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,22.6,19.6,82,101000,0,0,376,0,0,0,0,0,0,0,80,3.4,2,2,24.1,77777,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1977,12,6,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,18.9,84,101000,0,0,375,0,0,0,0,0,0,0,70,3.1,3,3,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1977,12,6,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,22.6,19.6,82,101000,0,0,386,0,0,0,0,0,0,0,100,3.8,5,5,24.1,77777,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1977,12,6,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,23.5,20.2,81,100900,0,0,395,0,0,0,0,0,0,0,130,4.5,6,6,24.1,77777,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1977,12,6,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,20.6,79,100900,0,0,411,0,0,0,0,0,0,0,160,5.2,8,8,24.1,1370,9,999999999,370,0.0400,0,88,999.000,999.0,99.0 +1977,12,6,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.8,20.6,77,100900,0,0,414,0,0,0,0,0,0,0,160,6.0,8,8,24.1,1370,9,999999999,370,0.0400,0,88,999.000,999.0,99.0 +1977,12,6,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,25.2,20.4,76,101000,0,59,424,55,29,51,0,0,0,0,160,6.9,9,9,24.1,1370,9,999999999,370,0.0220,0,88,999.000,999.0,99.0 +1977,12,6,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,20.6,74,101000,157,1409,427,140,54,123,13900,4000,13500,1590,160,7.7,9,9,32.2,1370,9,999999999,370,0.0220,0,88,999.000,999.0,99.0 +1977,12,6,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,26.3,21.1,71,101000,441,1409,423,355,335,191,30300,30500,20700,4320,170,7.9,8,8,32.2,77777,9,999999999,370,0.0220,0,88,999.000,999.0,99.0 +1977,12,6,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,27.1,21.0,68,101000,685,1409,415,448,379,214,42400,39100,23300,4870,190,8.0,6,6,32.2,77777,9,999999999,370,0.0220,0,88,999.000,999.0,99.0 +1977,12,6,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,20.6,65,101100,869,1409,415,633,597,215,62000,61300,24100,5220,200,8.2,5,5,40.2,77777,9,999999999,370,0.0220,0,88,999.000,999.0,99.0 +1977,12,6,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,28.2,20.9,64,101000,980,1409,418,788,890,144,79300,88800,17300,3600,200,8.0,5,5,40.2,77777,9,999999999,370,0.0220,0,88,999.000,999.0,99.0 +1977,12,6,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,28.5,20.9,62,100900,1012,1409,423,685,718,192,74600,72600,22300,5520,210,7.9,6,6,40.2,77777,9,999999999,370,0.0220,0,88,999.000,999.0,99.0 +1977,12,6,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,20.6,61,100800,961,1409,425,581,737,144,69200,75200,17800,3960,210,7.7,6,6,40.2,3660,9,999999999,370,0.0220,0,88,999.000,999.0,99.0 +1977,12,6,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,28.2,20.8,64,100800,832,1409,426,204,70,172,23600,7000,19400,5900,210,7.2,7,7,40.2,2897,9,999999999,370,0.0220,0,88,999.000,999.0,99.0 +1977,12,6,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,27.4,20.9,66,100800,632,1409,438,122,41,111,14300,4000,12500,3500,210,6.7,9,9,40.2,2133,9,999999999,370,0.0220,0,88,999.000,999.0,99.0 +1977,12,6,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,20.6,69,100700,377,1409,446,32,13,30,3700,1100,3400,900,210,6.2,10,10,24.1,1370,9,999999999,370,0.0220,0,88,999.000,999.0,99.0 +1977,12,6,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,25.0,20.6,76,100800,93,1139,436,0,0,0,0,0,0,0,250,5.3,10,10,24.1,1067,9,999999999,370,0.0400,0,88,999.000,999.0,99.0 +1977,12,6,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,23.4,20.4,83,100900,0,0,426,0,0,0,0,0,0,0,300,4.5,10,10,24.1,763,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1977,12,6,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,20.0,90,101000,0,0,416,0,0,0,0,0,0,0,340,3.6,10,10,4.0,460,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1977,12,6,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,21.9,19.8,87,101100,0,0,417,0,0,0,0,0,0,0,340,3.8,10,10,4.0,510,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1977,12,6,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,22.0,19.4,85,101100,0,0,417,0,0,0,0,0,0,0,340,3.9,10,10,4.0,560,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1977,12,6,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,18.9,82,101100,0,0,417,0,0,0,0,0,0,0,340,4.1,10,10,24.1,610,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1977,12,6,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,22.0,19.0,83,101100,0,0,416,0,0,0,0,0,0,0,350,3.6,10,10,24.1,913,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1977,12,7,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,21.9,19.0,83,101100,0,0,416,0,0,0,0,0,0,0,360,3.1,10,10,24.1,1217,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1977,12,7,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,18.9,84,101000,0,0,414,0,0,0,0,0,0,0,10,2.6,10,10,24.1,1520,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1977,12,7,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,21.5,18.8,84,101000,0,0,402,0,0,0,0,0,0,0,360,2.4,9,9,24.1,1927,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1977,12,7,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,21.3,18.6,84,101000,0,0,400,0,0,0,0,0,0,0,360,2.3,9,9,24.1,2333,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1977,12,7,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,18.3,84,101100,0,0,391,0,0,0,0,0,0,0,350,2.1,8,8,24.1,2740,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1977,12,7,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,20.9,18.3,85,101100,0,0,390,0,0,0,0,0,0,0,350,1.4,8,8,24.1,4367,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1977,12,7,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,20.8,18.1,86,101100,0,35,383,51,55,45,0,0,0,0,360,0.7,8,7,24.1,5993,9,999999999,329,0.0670,0,88,999.000,999.0,99.0 +1977,12,7,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,18.3,87,101200,154,1409,382,181,132,140,16700,9900,15600,1450,0,0.0,8,7,40.2,7620,9,999999999,320,0.0670,0,88,999.000,999.0,99.0 +1977,12,7,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,22.3,19.0,80,101200,438,1409,387,303,318,148,25800,29000,16700,3120,310,0.9,7,6,40.2,7620,9,999999999,329,0.0670,0,88,999.000,999.0,99.0 +1977,12,7,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,23.9,19.1,74,101300,682,1409,396,425,281,252,41800,28500,28000,6220,250,1.7,7,6,40.2,7620,9,999999999,340,0.0670,0,88,999.000,999.0,99.0 +1977,12,7,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,18.9,67,101300,866,1409,401,546,491,204,54100,50500,22900,4920,200,2.6,6,5,40.2,7620,9,999999999,340,0.0670,0,88,999.000,999.0,99.0 +1977,12,7,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,26.0,19.3,66,101300,978,1409,407,442,268,249,47800,28900,27700,6890,190,3.1,7,6,40.2,5587,9,999999999,340,0.0670,0,88,999.000,999.0,99.0 +1977,12,7,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,26.3,19.5,66,101200,1010,1409,409,530,502,186,57600,50900,21100,5350,180,3.6,7,6,40.2,3553,9,999999999,350,0.0670,0,88,999.000,999.0,99.0 +1977,12,7,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,19.4,65,101100,960,1409,416,280,146,193,33000,15600,22300,5700,170,4.1,8,7,40.2,1520,9,999999999,350,0.0670,0,88,999.000,999.0,99.0 +1977,12,7,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,26.5,19.5,65,101100,831,1409,410,373,470,161,47700,48200,19200,3680,160,3.6,8,6,40.2,77777,9,999999999,350,0.0670,0,88,999.000,999.0,99.0 +1977,12,7,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,26.3,19.3,65,101100,633,1409,402,160,244,95,22600,24100,11800,1850,150,3.1,8,4,40.2,77777,9,999999999,340,0.0670,0,88,999.000,999.0,99.0 +1977,12,7,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,18.9,65,101100,378,1409,398,44,66,37,6300,5700,4700,630,140,2.6,8,3,40.2,77777,9,999999999,340,0.0670,0,88,999.000,999.0,99.0 +1977,12,7,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,25.4,19.1,68,101200,94,1139,394,0,0,0,0,0,0,0,120,2.6,7,3,40.2,77777,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1977,12,7,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.6,19.1,71,101200,0,0,393,0,0,0,0,0,0,0,100,2.6,6,4,40.2,77777,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1977,12,7,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,18.9,74,101300,0,0,389,0,0,0,0,0,0,0,80,2.6,5,4,24.1,77777,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1977,12,7,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,23.3,18.8,76,101300,0,0,383,0,0,0,0,0,0,0,40,2.6,4,3,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1977,12,7,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,22.8,18.6,77,101400,0,0,376,0,0,0,0,0,0,0,10,2.6,2,2,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1977,12,7,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,18.3,79,101400,0,0,368,0,0,0,0,0,0,0,330,2.6,1,1,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1977,12,7,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,21.7,18.6,83,101400,0,0,366,0,0,0,0,0,0,0,360,2.9,1,1,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1977,12,8,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,21.1,18.8,86,101300,0,0,356,0,0,0,0,0,0,0,30,3.3,0,0,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1977,12,8,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,18.9,90,101300,0,0,354,0,0,0,0,0,0,0,60,3.6,0,0,24.1,77777,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1977,12,8,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,20.4,18.8,90,101300,0,0,353,0,0,0,0,0,0,0,10,3.3,0,0,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1977,12,8,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,20.2,18.6,90,101300,0,0,352,0,0,0,0,0,0,0,330,2.9,0,0,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1977,12,8,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,18.3,90,101300,0,0,350,0,0,0,0,0,0,0,280,2.6,0,0,24.1,77777,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1977,12,8,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,20.4,18.5,89,101300,0,0,359,0,0,0,0,0,0,0,300,2.2,2,1,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1977,12,8,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,20.7,18.5,88,101300,0,35,369,67,298,34,0,0,0,0,320,1.9,3,3,24.1,77777,9,999999999,329,0.0180,0,88,999.000,999.0,99.0 +1977,12,8,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,18.9,87,101400,150,1410,375,213,253,134,16100,13100,14700,2820,340,1.5,5,4,40.2,77777,9,999999999,340,0.0180,0,88,999.000,999.0,99.0 +1977,12,8,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,23.0,20.0,81,101400,435,1410,383,425,704,84,31000,62200,11700,1540,30,2.5,4,3,40.2,77777,9,999999999,350,0.0180,0,88,999.000,999.0,99.0 +1977,12,8,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.8,20.4,75,101400,679,1410,393,568,718,125,49100,70100,15200,2570,90,3.6,3,3,40.2,77777,9,999999999,359,0.0180,0,88,999.000,999.0,99.0 +1977,12,8,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,20.6,69,101400,864,1410,399,692,885,75,64700,87700,10800,1860,140,4.6,2,2,40.2,77777,9,999999999,370,0.0180,0,88,999.000,999.0,99.0 +1977,12,8,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,27.1,20.5,66,101400,976,1410,401,712,852,99,71600,84800,12700,2370,140,3.9,2,2,40.2,77777,9,999999999,359,0.0180,0,88,999.000,999.0,99.0 +1977,12,8,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,27.4,20.1,64,101300,1009,1410,397,665,886,58,73100,88700,9500,1860,150,3.3,1,1,40.2,77777,9,999999999,359,0.0180,0,88,999.000,999.0,99.0 +1977,12,8,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,19.4,61,101200,959,1410,398,572,888,45,69100,88800,8500,1480,150,2.6,1,1,40.2,77777,9,999999999,350,0.0180,0,88,999.000,999.0,99.0 +1977,12,8,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,27.4,19.8,63,101200,831,1410,396,408,829,34,56100,82300,7400,1100,140,2.4,1,1,40.2,77777,9,999999999,350,0.0180,0,88,999.000,999.0,99.0 +1977,12,8,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,27.1,20.1,65,101200,633,1410,395,219,698,30,36900,67500,6500,930,120,2.3,1,1,40.2,77777,9,999999999,359,0.0180,0,88,999.000,999.0,99.0 +1977,12,8,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,20.0,67,101300,379,1410,393,52,320,15,11000,28300,3400,510,110,2.1,1,1,40.2,77777,9,999999999,359,0.0180,0,88,999.000,999.0,99.0 +1977,12,8,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,25.9,20.2,70,101300,95,1140,394,0,0,0,0,0,0,0,90,2.3,2,2,40.2,77777,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1977,12,8,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,25.2,20.2,73,101400,0,0,391,0,0,0,0,0,0,0,80,2.4,2,2,40.2,77777,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1977,12,8,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,20.0,76,101500,0,0,390,0,0,0,0,0,0,0,60,2.6,3,3,24.1,77777,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1977,12,8,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,23.9,19.9,78,101500,0,0,383,0,0,0,0,0,0,0,30,2.4,2,2,24.1,77777,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1977,12,8,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,23.3,19.7,80,101500,0,0,375,0,0,0,0,0,0,0,10,2.3,1,1,24.1,77777,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1977,12,8,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,19.4,82,101600,0,0,365,0,0,0,0,0,0,0,340,2.1,0,0,24.1,77777,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1977,12,8,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,22.4,19.5,84,101500,0,0,363,0,0,0,0,0,0,0,330,2.1,0,0,24.1,77777,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1977,12,9,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,22.1,19.5,85,101500,0,0,362,0,0,0,0,0,0,0,330,2.1,0,0,24.1,77777,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1977,12,9,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,19.4,87,101400,0,0,360,0,0,0,0,0,0,0,320,2.1,0,0,24.1,77777,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1977,12,9,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,21.3,19.3,88,101400,0,0,358,0,0,0,0,0,0,0,300,1.9,0,0,24.1,77777,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1977,12,9,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,21.0,19.2,89,101400,0,0,356,0,0,0,0,0,0,0,290,1.7,0,0,24.1,77777,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1977,12,9,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,18.9,90,101400,0,0,354,0,0,0,0,0,0,0,270,1.5,0,0,24.1,77777,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1977,12,9,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,21.0,19.2,90,101400,0,0,356,0,0,0,0,0,0,0,280,1.7,0,0,24.1,77777,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1977,12,9,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,21.3,19.4,90,101400,0,12,365,74,499,18,0,0,0,0,290,1.9,1,1,24.1,77777,9,999999999,350,0.0200,0,88,999.000,999.0,99.0 +1977,12,9,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,20.0,90,101400,147,1410,367,265,752,33,11600,50000,6400,240,300,2.1,1,1,40.2,77777,9,999999999,359,0.0200,0,88,999.000,999.0,99.0 +1977,12,9,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,23.9,20.5,80,101400,432,1410,379,448,813,56,31600,72900,9100,1110,260,2.6,1,1,40.2,77777,9,999999999,370,0.0200,0,88,999.000,999.0,99.0 +1977,12,9,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,26.1,20.4,71,101500,676,1410,395,509,596,143,44200,57700,16500,2860,210,3.1,2,2,40.2,77777,9,999999999,370,0.0200,0,88,999.000,999.0,99.0 +1977,12,9,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,20.0,61,101500,861,1410,407,685,819,116,64400,81400,14500,2640,170,3.6,2,2,40.2,77777,9,999999999,359,0.0200,0,88,999.000,999.0,99.0 +1977,12,9,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,28.1,20.6,63,101400,974,1410,410,787,940,111,78800,93500,14000,2420,170,4.5,3,3,40.2,77777,9,999999999,370,0.0200,0,88,999.000,999.0,99.0 +1977,12,9,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,28.0,21.0,65,101400,1008,1410,410,588,644,148,65300,65900,18000,4350,160,5.3,3,3,40.2,77777,9,999999999,379,0.0200,0,88,999.000,999.0,99.0 +1977,12,9,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,21.1,67,101400,959,1410,413,570,776,111,68000,78200,14700,2940,160,6.2,4,4,40.2,77777,9,999999999,379,0.0200,0,88,999.000,999.0,99.0 +1977,12,9,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,27.2,21.3,69,101400,831,1410,413,225,117,172,27000,12300,19700,4600,160,5.9,5,5,40.2,77777,9,999999999,379,0.0200,0,88,999.000,999.0,99.0 +1977,12,9,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,26.7,21.4,72,101400,633,1410,419,142,143,103,18700,14600,12100,2040,150,5.5,7,7,40.2,77777,9,999999999,379,0.0200,0,88,999.000,999.0,99.0 +1977,12,9,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,21.1,74,101400,380,1410,421,49,71,41,6800,6200,5100,700,150,5.2,8,8,40.2,1370,9,999999999,379,0.0200,0,88,999.000,999.0,99.0 +1977,12,9,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,25.0,21.3,79,101500,96,1163,425,0,0,0,0,0,0,0,100,4.5,9,9,40.2,1370,9,999999999,379,0.0400,0,88,999.000,999.0,99.0 +1977,12,9,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,23.9,21.3,85,101500,0,0,418,0,0,0,0,0,0,0,40,3.8,9,9,40.2,1370,9,999999999,379,0.0400,0,88,999.000,999.0,99.0 +1977,12,9,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,21.1,90,101600,0,0,424,0,0,0,0,0,0,0,350,3.1,10,10,24.1,1370,9,999999999,379,0.0400,0,88,999.000,999.0,99.0 +1977,12,9,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,23.0,21.1,88,101600,0,0,398,0,0,0,0,0,0,0,350,2.1,7,7,24.1,77777,9,999999999,379,0.0400,0,88,999.000,999.0,99.0 +1977,12,9,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,23.1,20.9,86,101600,0,0,387,0,0,0,0,0,0,0,360,1.0,4,4,24.1,77777,9,999999999,370,0.0400,0,88,999.000,999.0,99.0 +1977,12,9,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,20.6,84,101600,0,0,376,0,0,0,0,0,0,0,0,0.0,1,1,24.1,77777,9,999999999,370,0.0400,0,88,999.000,999.0,99.0 +1977,12,9,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,22.9,20.3,84,101600,0,0,374,0,0,0,0,0,0,0,30,0.9,1,1,24.1,77777,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1977,12,10,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,22.6,19.9,84,101600,0,0,377,0,0,0,0,0,0,0,50,1.7,2,2,24.1,77777,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1977,12,10,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,19.4,84,101600,0,0,374,0,0,0,0,0,0,0,80,2.6,2,2,24.1,77777,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1977,12,10,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,21.8,19.5,86,101600,0,0,367,0,0,0,0,0,0,0,50,2.6,1,1,24.1,77777,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1977,12,10,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,21.5,19.5,88,101600,0,0,366,0,0,0,0,0,0,0,10,2.6,1,1,24.1,77777,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1977,12,10,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,19.4,90,101600,0,0,357,0,0,0,0,0,0,0,340,2.6,0,0,24.1,77777,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1977,12,10,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,21.3,19.6,90,101600,0,0,358,0,0,0,0,0,0,0,10,2.8,0,0,24.1,77777,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1977,12,10,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,21.5,19.6,90,101600,0,0,366,69,457,19,0,0,0,0,30,2.9,1,1,24.1,77777,9,999999999,350,0.0240,0,88,999.000,999.0,99.0 +1977,12,10,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,20.0,90,101600,144,1399,367,252,725,29,11100,48800,5900,360,60,3.1,1,1,40.2,77777,9,999999999,359,0.0240,0,88,999.000,999.0,99.0 +1977,12,10,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,23.7,20.1,79,101600,429,1411,377,442,801,57,31000,71600,9100,1110,60,4.1,1,1,40.2,77777,9,999999999,359,0.0240,0,88,999.000,999.0,99.0 +1977,12,10,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,25.8,19.6,69,101600,673,1411,388,564,807,70,48600,79200,10700,1570,60,5.2,1,1,40.2,77777,9,999999999,350,0.0240,0,88,999.000,999.0,99.0 +1977,12,10,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,18.9,58,101600,859,1411,397,695,904,68,65000,89600,10300,1770,60,6.2,1,1,40.2,77777,9,999999999,329,0.0240,0,88,999.000,999.0,99.0 +1977,12,10,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,28.5,19.0,55,101500,973,1411,401,715,906,65,72600,90500,10000,1930,60,5.9,1,1,40.2,77777,9,999999999,329,0.0240,0,88,999.000,999.0,99.0 +1977,12,10,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,29.3,18.8,53,101500,1006,1411,411,634,741,129,69400,74500,16100,3520,60,5.5,2,2,40.2,77777,9,999999999,329,0.0240,0,88,999.000,999.0,99.0 +1977,12,10,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,18.3,50,101400,958,1411,414,577,835,83,68000,83200,11300,2170,60,5.2,2,2,40.2,77777,9,999999999,329,0.0240,0,88,999.000,999.0,99.0 +1977,12,10,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,29.1,18.7,53,101400,831,1411,409,341,595,72,46200,60000,10700,1840,60,5.7,2,2,40.2,77777,9,999999999,329,0.0240,0,88,999.000,999.0,99.0 +1977,12,10,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,28.1,19.0,57,101400,634,1411,399,232,744,30,39200,71900,6700,930,60,6.2,1,1,40.2,77777,9,999999999,329,0.0240,0,88,999.000,999.0,99.0 +1977,12,10,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,18.9,60,101400,381,1411,394,59,360,18,12500,31800,3900,580,60,6.7,1,1,40.2,77777,9,999999999,329,0.0240,0,88,999.000,999.0,99.0 +1977,12,10,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,26.3,19.2,65,101400,97,1164,390,0,0,0,0,0,0,0,60,5.7,1,1,40.2,77777,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1977,12,10,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,25.3,19.4,69,101500,0,0,378,0,0,0,0,0,0,0,70,4.6,0,0,40.2,77777,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1977,12,10,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,19.4,74,101600,0,0,373,0,0,0,0,0,0,0,70,3.6,0,0,24.1,77777,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1977,12,10,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,23.7,19.4,77,101600,0,0,370,0,0,0,0,0,0,0,40,2.9,0,0,24.1,77777,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1977,12,10,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,22.9,19.2,79,101600,0,0,365,0,0,0,0,0,0,0,20,2.2,0,0,24.1,77777,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1977,12,10,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,18.9,82,101600,0,0,362,0,0,0,0,0,0,0,350,1.5,0,0,24.1,77777,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1977,12,10,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,21.8,19.0,84,101600,0,0,360,0,0,0,0,0,0,0,350,1.0,0,0,24.1,77777,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1977,12,11,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,21.5,19.0,85,101600,0,0,358,0,0,0,0,0,0,0,360,0.5,0,0,24.1,77777,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1977,12,11,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,18.9,87,101600,0,0,356,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1977,12,11,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,20.7,18.8,88,101600,0,0,354,0,0,0,0,0,0,0,350,0.9,0,0,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1977,12,11,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,20.4,18.6,89,101600,0,0,353,0,0,0,0,0,0,0,340,1.7,0,0,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1977,12,11,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,18.3,90,101500,0,0,350,0,0,0,0,0,0,0,330,2.6,0,0,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1977,12,11,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,20.6,18.6,89,101600,0,0,369,0,0,0,0,0,0,0,320,2.6,3,3,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1977,12,11,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,21.1,18.8,88,101600,0,0,381,45,71,38,0,0,0,0,320,2.6,7,6,24.1,77777,9,999999999,340,0.0550,0,88,999.000,999.0,99.0 +1977,12,11,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,19.4,87,101600,141,1399,404,131,42,118,13200,3000,12900,1510,310,2.6,10,9,40.2,1520,9,999999999,350,0.0550,0,88,999.000,999.0,99.0 +1977,12,11,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,23.7,19.9,78,101600,426,1411,400,327,194,235,30600,17300,25300,5270,250,2.8,8,7,40.2,77777,9,999999999,350,0.0550,0,88,999.000,999.0,99.0 +1977,12,11,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,25.8,19.8,70,101600,671,1411,407,282,110,215,29300,10900,24100,6230,200,2.9,6,6,40.2,77777,9,999999999,359,0.0550,0,88,999.000,999.0,99.0 +1977,12,11,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,19.4,61,101600,857,1411,411,522,488,185,51900,50200,21300,4380,140,3.1,4,4,40.2,77777,9,999999999,350,0.0550,0,88,999.000,999.0,99.0 +1977,12,11,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,28.2,19.7,60,101500,971,1411,413,507,437,194,54000,45400,22700,5230,140,4.0,4,4,40.2,77777,9,999999999,350,0.0550,0,88,999.000,999.0,99.0 +1977,12,11,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,28.5,19.7,58,101400,1005,1411,418,570,473,248,62600,49100,27500,7150,140,4.8,5,5,40.2,77777,9,999999999,350,0.0550,0,88,999.000,999.0,99.0 +1977,12,11,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,19.4,57,101400,958,1411,420,460,455,191,54600,47200,22400,5060,140,5.7,5,5,40.2,77777,9,999999999,350,0.0550,0,88,999.000,999.0,99.0 +1977,12,11,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,28.5,19.8,59,101400,831,1411,418,365,453,160,46500,46500,19000,3660,150,5.7,5,5,40.2,77777,9,999999999,350,0.0550,0,88,999.000,999.0,99.0 +1977,12,11,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,28.2,20.1,61,101400,635,1411,414,227,536,81,34400,52600,10700,1710,150,5.7,4,4,40.2,77777,9,999999999,359,0.0550,0,88,999.000,999.0,99.0 +1977,12,11,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,20.0,63,101400,382,1411,411,42,99,31,6700,8500,4400,530,160,5.7,4,4,40.2,77777,9,999999999,359,0.0550,0,88,999.000,999.0,99.0 +1977,12,11,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,26.7,20.2,67,101400,99,1164,402,0,0,0,0,0,0,0,170,4.5,3,3,40.2,77777,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1977,12,11,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,25.5,20.2,72,101500,0,0,396,0,0,0,0,0,0,0,180,3.3,3,3,40.2,77777,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1977,12,11,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,20.0,76,101600,0,0,386,0,0,0,0,0,0,0,190,2.1,2,2,24.1,77777,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1977,12,11,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,23.9,19.9,78,101600,0,0,378,0,0,0,0,0,0,0,140,1.9,1,1,24.1,77777,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1977,12,11,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,23.3,19.7,80,101600,0,0,375,0,0,0,0,0,0,0,90,1.7,1,1,24.1,77777,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1977,12,11,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,19.4,82,101600,0,0,365,0,0,0,0,0,0,0,40,1.5,0,0,24.1,77777,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1977,12,11,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,22.2,19.4,84,101600,0,0,362,0,0,0,0,0,0,0,30,1.0,0,0,24.1,77777,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1977,12,12,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,21.7,19.2,85,101600,0,0,359,0,0,0,0,0,0,0,10,0.5,0,0,24.1,77777,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1977,12,12,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,18.9,87,101600,0,0,356,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1977,12,12,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,20.9,19.0,88,101500,0,0,355,0,0,0,0,0,0,0,350,0.9,0,0,24.1,77777,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1977,12,12,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,20.8,19.0,89,101500,0,0,355,0,0,0,0,0,0,0,330,1.7,0,0,24.1,77777,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1977,12,12,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,18.9,90,101500,0,0,354,0,0,0,0,0,0,0,320,2.6,0,0,24.1,77777,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1977,12,12,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,21.0,18.9,88,101500,0,0,356,0,0,0,0,0,0,0,330,1.7,0,0,24.1,77777,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1977,12,12,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,21.3,18.7,86,101600,0,0,364,68,433,19,0,0,0,0,350,0.9,1,1,24.1,77777,9,999999999,340,0.0160,0,88,999.000,999.0,99.0 +1977,12,12,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,18.9,84,101600,138,1376,366,252,740,28,11000,49500,5800,360,0,0.0,1,1,40.2,77777,9,999999999,340,0.0160,0,88,999.000,999.0,99.0 +1977,12,12,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,23.5,19.6,77,101600,423,1411,376,436,852,31,30600,76800,7500,860,60,1.2,1,1,40.2,77777,9,999999999,340,0.0160,0,88,999.000,999.0,99.0 +1977,12,12,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,25.4,19.6,70,101700,668,1411,391,610,849,93,51200,82200,12100,1850,110,2.4,2,2,40.2,77777,9,999999999,350,0.0160,0,88,999.000,999.0,99.0 +1977,12,12,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,19.4,63,101700,854,1411,400,659,834,83,61400,82500,11300,1910,170,3.6,2,2,40.2,77777,9,999999999,350,0.0160,0,88,999.000,999.0,99.0 +1977,12,12,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,27.9,19.9,61,101600,969,1411,404,696,928,32,72000,92900,8000,1130,170,3.8,2,2,40.2,77777,9,999999999,350,0.0160,0,88,999.000,999.0,99.0 +1977,12,12,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,28.7,20.1,59,101600,1004,1411,413,623,731,124,68200,73600,15700,3410,180,3.9,3,3,40.2,77777,9,999999999,359,0.0160,0,88,999.000,999.0,99.0 +1977,12,12,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,20.0,57,101500,957,1411,417,511,593,159,59600,60200,18600,4290,180,4.1,3,3,40.2,77777,9,999999999,359,0.0160,0,88,999.000,999.0,99.0 +1977,12,12,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,29.0,20.4,59,101500,832,1411,415,348,507,119,44600,51200,14300,2850,200,3.8,3,3,40.2,77777,9,999999999,359,0.0160,0,88,999.000,999.0,99.0 +1977,12,12,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,28.7,20.7,61,101500,636,1411,410,188,463,62,29500,45800,8800,1350,220,3.4,2,2,40.2,77777,9,999999999,370,0.0160,0,88,999.000,999.0,99.0 +1977,12,12,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,20.6,63,101500,383,1411,408,61,320,23,12300,28600,4500,570,240,3.1,2,2,40.2,77777,9,999999999,370,0.0160,0,88,999.000,999.0,99.0 +1977,12,12,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,27.2,20.4,66,101500,100,1188,396,0,0,0,0,0,0,0,180,3.1,1,1,40.2,77777,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1977,12,12,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,26.1,20.0,68,101600,0,0,390,0,0,0,0,0,0,0,130,3.1,1,1,40.2,77777,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1977,12,12,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,19.4,71,101600,0,0,376,0,0,0,0,0,0,0,70,3.1,0,0,24.1,77777,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1977,12,12,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.3,19.4,74,101700,0,0,373,0,0,0,0,0,0,0,50,2.1,0,0,24.1,77777,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1977,12,12,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,23.5,19.2,76,101700,0,0,368,0,0,0,0,0,0,0,20,1.0,0,0,24.1,77777,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1977,12,12,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,18.9,79,101700,0,0,365,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1977,12,12,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,22.2,19.0,82,101700,0,0,362,0,0,0,0,0,0,0,340,0.5,0,0,24.1,77777,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1977,12,13,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,21.7,19.0,84,101700,0,0,359,0,0,0,0,0,0,0,320,1.0,0,0,24.1,77777,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1977,12,13,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,18.9,87,101700,0,0,356,0,0,0,0,0,0,0,300,1.5,0,0,24.1,77777,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1977,12,13,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,20.9,19.0,88,101700,0,0,355,0,0,0,0,0,0,0,320,1.5,0,0,24.1,77777,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1977,12,13,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,20.8,19.0,89,101700,0,0,355,0,0,0,0,0,0,0,340,1.5,0,0,24.1,77777,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1977,12,13,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,18.9,90,101700,0,0,354,0,0,0,0,0,0,0,360,1.5,0,0,24.1,77777,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1977,12,13,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,21.1,19.2,89,101700,0,0,357,0,0,0,0,0,0,0,350,1.5,0,0,24.1,77777,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1977,12,13,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,21.7,19.4,88,101800,0,0,360,65,386,22,0,0,0,0,330,1.5,0,0,24.1,77777,9,999999999,350,0.0430,0,88,999.000,999.0,99.0 +1977,12,13,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,20.0,87,101800,135,1376,363,256,723,40,10800,42500,6400,450,320,1.5,0,0,40.2,77777,9,999999999,359,0.0430,0,88,999.000,999.0,99.0 +1977,12,13,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.6,20.5,77,101800,420,1412,375,454,841,54,31500,75000,9100,1070,350,2.9,0,0,40.2,77777,9,999999999,370,0.0430,0,88,999.000,999.0,99.0 +1977,12,13,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,27.0,20.4,67,101800,665,1412,395,587,856,68,49500,82800,10300,1470,10,4.3,1,1,40.2,77777,9,999999999,370,0.0430,0,88,999.000,999.0,99.0 +1977,12,13,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,20.0,57,101800,852,1412,407,678,895,61,63400,88700,9700,1660,40,5.7,1,1,40.2,77777,9,999999999,359,0.0430,0,88,999.000,999.0,99.0 +1977,12,13,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,29.8,19.7,54,101700,968,1412,409,689,869,69,69900,86700,10200,1990,40,5.7,1,1,40.2,77777,9,999999999,350,0.0430,0,88,999.000,999.0,99.0 +1977,12,13,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,30.2,19.1,51,101600,1003,1412,410,663,881,64,72700,88100,9900,1980,50,5.7,1,1,40.2,77777,9,999999999,340,0.0430,0,88,999.000,999.0,99.0 +1977,12,13,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,18.3,48,101600,957,1412,411,573,865,62,68400,86300,9700,1840,50,5.7,1,1,40.2,77777,9,999999999,329,0.0430,0,88,999.000,999.0,99.0 +1977,12,13,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,29.8,18.4,50,101600,832,1412,407,418,800,56,55800,79200,8900,1560,50,5.3,1,1,40.2,77777,9,999999999,320,0.0430,0,88,999.000,999.0,99.0 +1977,12,13,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,29.1,18.2,51,101600,637,1412,396,230,706,37,38000,68200,7100,1080,40,5.0,0,0,40.2,77777,9,999999999,320,0.0430,0,88,999.000,999.0,99.0 +1977,12,13,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,17.8,53,101600,385,1412,391,53,303,20,11700,27200,4200,500,40,4.6,0,0,40.2,77777,9,999999999,320,0.0430,0,88,999.000,999.0,99.0 +1977,12,13,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,27.4,18.3,58,101600,101,1188,387,0,0,0,0,0,0,0,50,4.3,0,0,40.2,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1977,12,13,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,26.5,18.7,62,101700,0,0,383,0,0,0,0,0,0,0,60,3.9,0,0,40.2,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1977,12,13,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,18.9,67,101700,0,0,379,0,0,0,0,0,0,0,70,3.6,0,0,24.1,77777,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1977,12,13,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,25.4,19.0,68,101800,0,0,378,0,0,0,0,0,0,0,70,4.3,0,0,24.1,77777,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1977,12,13,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,25.2,19.0,68,101800,0,0,377,0,0,0,0,0,0,0,80,5.0,0,0,24.1,77777,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1977,12,13,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,18.9,69,101800,0,0,375,0,0,0,0,0,0,0,80,5.7,0,0,24.1,77777,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1977,12,13,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.1,19.0,73,101800,0,0,371,0,0,0,0,0,0,0,30,4.7,0,0,24.1,77777,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1977,12,14,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,23.1,19.0,78,101800,0,0,373,0,0,0,0,0,0,0,350,3.6,1,1,24.1,77777,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1977,12,14,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,18.9,82,101800,0,0,369,0,0,0,0,0,0,0,300,2.6,1,1,24.1,77777,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1977,12,14,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,22.4,19.2,82,101800,0,0,370,0,0,0,0,0,0,0,310,2.6,1,1,24.1,77777,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1977,12,14,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,22.6,19.4,82,101700,0,0,376,0,0,0,0,0,0,0,330,2.6,2,2,24.1,77777,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1977,12,14,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,19.4,82,101700,0,0,377,0,0,0,0,0,0,0,340,2.6,2,2,24.1,77777,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1977,12,14,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,23.3,19.4,79,101800,0,0,383,0,0,0,0,0,0,0,360,2.9,3,3,24.1,77777,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1977,12,14,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,23.9,19.2,77,101800,0,0,386,58,220,34,0,0,0,0,30,3.3,3,3,24.1,77777,9,999999999,350,0.0310,0,88,999.000,999.0,99.0 +1977,12,14,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,19.4,74,101800,132,1353,392,174,257,97,12000,12100,10800,2390,50,3.6,4,4,40.2,77777,9,999999999,350,0.0310,0,88,999.000,999.0,99.0 +1977,12,14,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,25.7,19.5,68,101800,417,1412,399,322,315,173,27300,28100,18900,3840,60,4.8,4,4,40.2,77777,9,999999999,350,0.0310,0,88,999.000,999.0,99.0 +1977,12,14,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,27.0,19.0,61,101800,663,1412,402,568,787,91,47700,76200,11800,1820,60,6.0,3,3,40.2,77777,9,999999999,340,0.0310,0,88,999.000,999.0,99.0 +1977,12,14,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,18.3,55,101800,850,1412,409,627,588,223,60900,60200,24600,5340,70,7.2,3,3,40.2,77777,9,999999999,329,0.0310,0,88,999.000,999.0,99.0 +1977,12,14,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,28.1,18.6,55,101800,966,1412,411,624,568,218,65400,58900,25000,5890,70,7.0,4,4,40.2,77777,9,999999999,329,0.0310,0,88,999.000,999.0,99.0 +1977,12,14,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,28.0,18.6,56,101700,1003,1412,411,635,686,168,69600,69800,19900,4820,60,6.9,4,4,40.2,77777,9,999999999,329,0.0310,0,88,999.000,999.0,99.0 +1977,12,14,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,18.3,56,101700,957,1412,412,533,600,178,61600,60600,20400,4730,60,6.7,5,5,40.2,77777,9,999999999,320,0.0310,0,88,999.000,999.0,99.0 +1977,12,14,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,27.6,18.4,56,101700,833,1412,408,379,641,89,50000,64200,12000,2150,60,6.5,4,4,40.2,77777,9,999999999,320,0.0310,0,88,999.000,999.0,99.0 +1977,12,14,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,27.4,18.2,56,101700,638,1412,407,142,204,86,19900,20200,10800,1660,60,6.4,4,4,40.2,77777,9,999999999,320,0.0310,0,88,999.000,999.0,99.0 +1977,12,14,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,17.8,56,101700,386,1412,402,56,267,26,11000,23700,4500,540,60,6.2,3,3,40.2,77777,9,999999999,309,0.0310,0,88,999.000,999.0,99.0 +1977,12,14,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,26.3,18.3,61,101700,103,1188,394,0,0,0,0,0,0,0,60,5.3,2,2,40.2,77777,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1977,12,14,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,25.3,18.7,66,101800,0,0,389,0,0,0,0,0,0,0,60,4.5,2,2,40.2,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1977,12,14,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,18.9,71,101800,0,0,380,0,0,0,0,0,0,0,60,3.6,1,1,24.1,77777,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1977,12,14,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.4,19.2,72,101900,0,0,380,0,0,0,0,0,0,0,60,3.8,1,1,24.1,77777,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1977,12,14,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.4,19.4,73,101900,0,0,385,0,0,0,0,0,0,0,60,3.9,2,2,24.1,77777,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1977,12,14,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,19.4,74,101900,0,0,385,0,0,0,0,0,0,0,60,4.1,2,2,24.1,77777,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1977,12,14,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.2,19.2,73,101900,0,0,384,0,0,0,0,0,0,0,60,5.1,2,2,24.1,77777,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1977,12,15,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.1,18.8,72,101900,0,0,383,0,0,0,0,0,0,0,60,6.2,2,2,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1977,12,15,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,18.3,71,101800,0,0,381,0,0,0,0,0,0,0,60,7.2,2,2,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1977,12,15,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,23.9,18.0,69,101800,0,0,381,0,0,0,0,0,0,0,60,6.2,2,2,24.1,77777,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1977,12,15,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,23.9,17.7,68,101800,0,0,385,0,0,0,0,0,0,0,70,5.1,3,3,24.1,77777,9,999999999,309,0.0400,0,88,999.000,999.0,99.0 +1977,12,15,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,17.2,66,101800,0,0,384,0,0,0,0,0,0,0,70,4.1,3,3,24.1,77777,9,999999999,300,0.0400,0,88,999.000,999.0,99.0 +1977,12,15,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.3,17.4,65,101800,0,0,382,0,0,0,0,0,0,0,70,4.3,2,2,24.1,77777,9,999999999,309,0.0400,0,88,999.000,999.0,99.0 +1977,12,15,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.6,17.4,65,101800,0,0,384,56,227,31,0,0,0,0,70,4.4,2,2,24.1,77777,9,999999999,309,0.0600,0,88,999.000,999.0,99.0 +1977,12,15,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,17.8,64,101900,130,1330,381,248,684,45,10600,39000,6700,380,70,4.6,1,1,40.2,77777,9,999999999,320,0.0600,0,88,999.000,999.0,99.0 +1977,12,15,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,26.3,18.1,59,101900,414,1412,388,432,759,75,30700,66400,11200,1390,70,5.6,1,1,40.2,77777,9,999999999,309,0.0600,0,88,999.000,999.0,99.0 +1977,12,15,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,27.6,17.8,54,101900,661,1412,395,584,846,73,49700,82600,10900,1600,60,6.7,1,1,40.2,77777,9,999999999,309,0.0600,0,88,999.000,999.0,99.0 +1977,12,15,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,17.2,49,101900,848,1412,401,677,862,85,63000,85200,11600,1900,60,7.7,1,1,40.2,77777,9,999999999,300,0.0600,0,88,999.000,999.0,99.0 +1977,12,15,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,28.9,17.8,50,101800,965,1412,407,762,925,103,76300,92000,13200,2350,60,7.7,2,2,40.2,77777,9,999999999,309,0.0600,0,88,999.000,999.0,99.0 +1977,12,15,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,28.9,18.2,52,101700,1002,1412,408,658,766,137,71300,76700,16600,3620,50,7.7,2,2,40.2,77777,9,999999999,320,0.0600,0,88,999.000,999.0,99.0 +1977,12,15,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,18.3,53,101600,957,1412,412,519,628,147,61100,63900,17600,4000,50,7.7,3,3,40.2,77777,9,999999999,329,0.0600,0,88,999.000,999.0,99.0 +1977,12,15,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,28.2,18.5,55,101600,833,1412,408,363,552,113,47000,55900,13900,2720,50,7.7,3,3,40.2,77777,9,999999999,329,0.0600,0,88,999.000,999.0,99.0 +1977,12,15,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,27.4,18.6,58,101700,639,1412,407,171,361,72,25400,35600,9200,1550,40,7.7,4,4,40.2,77777,9,999999999,329,0.0600,0,88,999.000,999.0,99.0 +1977,12,15,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,18.3,60,101700,388,1412,403,43,51,37,5900,4600,4700,820,40,7.7,4,4,40.2,77777,9,999999999,329,0.0600,0,88,999.000,999.0,99.0 +1977,12,15,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,25.9,18.7,64,101700,104,1212,399,0,0,0,0,0,0,0,50,6.9,4,4,40.2,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1977,12,15,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,25.2,18.9,67,101800,0,0,396,0,0,0,0,0,0,0,50,6.0,4,4,40.2,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1977,12,15,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,18.9,71,101800,0,0,392,0,0,0,0,0,0,0,60,5.2,4,4,24.1,77777,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1977,12,15,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.6,18.7,69,101800,0,0,395,0,0,0,0,0,0,0,50,5.2,5,5,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1977,12,15,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.8,18.3,66,101900,0,0,396,0,0,0,0,0,0,0,30,5.2,5,5,24.1,77777,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1977,12,15,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,17.8,64,101900,0,0,400,0,0,0,0,0,0,0,20,5.2,6,6,24.1,1370,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1977,12,15,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,23.9,18.3,71,101900,0,0,399,0,0,0,0,0,0,0,40,5.2,7,7,24.1,1370,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1977,12,16,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,22.8,18.7,77,101900,0,0,394,0,0,0,0,0,0,0,50,5.2,7,7,24.1,1370,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1977,12,16,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,18.9,84,101900,0,0,395,0,0,0,0,0,0,0,70,5.2,8,8,24.1,1370,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1977,12,16,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,21.9,19.0,83,101800,0,0,396,0,0,0,0,0,0,0,60,5.2,8,8,24.1,1370,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1977,12,16,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,22.0,19.0,83,101800,0,0,396,0,0,0,0,0,0,0,50,5.2,8,8,24.1,1370,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1977,12,16,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,18.9,82,101700,0,0,397,0,0,0,0,0,0,0,40,5.2,8,8,19.3,1370,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1977,12,16,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,22.8,18.3,77,101800,0,0,389,0,0,0,0,0,0,0,40,6.0,6,6,19.3,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1977,12,16,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,23.3,17.6,71,101800,0,0,387,41,35,37,0,0,0,0,40,6.9,5,5,19.3,77777,9,999999999,320,0.0470,0,88,999.000,999.0,99.0 +1977,12,16,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,17.2,66,101900,127,1330,384,240,488,97,13500,23900,11100,2120,40,7.7,3,3,40.2,77777,9,999999999,300,0.0470,0,88,999.000,999.0,99.0 +1977,12,16,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.1,18.6,69,101900,412,1412,390,389,592,111,29300,51700,14100,2110,50,7.4,4,4,40.2,77777,9,999999999,320,0.0470,0,88,999.000,999.0,99.0 +1977,12,16,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.2,19.4,73,102000,658,1412,398,449,352,237,42100,35900,25300,5500,60,7.0,6,6,40.2,77777,9,999999999,340,0.0470,0,88,999.000,999.0,99.0 +1977,12,16,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,20.0,76,102000,847,1412,404,446,256,270,45400,27200,29000,6830,70,6.7,7,7,32.2,700,9,999999999,359,0.0470,0,88,999.000,999.0,99.0 +1977,12,16,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,25.3,19.7,70,101900,964,1412,409,330,88,268,36200,8900,30100,9550,70,6.2,7,7,32.2,700,9,999999999,350,0.0470,0,88,999.000,999.0,99.0 +1977,12,16,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,26.3,19.1,64,101800,1001,1412,420,500,255,326,54700,27500,35100,9630,70,5.7,8,8,32.2,700,9,999999999,340,0.0470,0,88,999.000,999.0,99.0 +1977,12,16,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,18.3,58,101700,957,1412,424,307,216,179,36500,23300,20700,4630,70,5.2,8,8,40.2,700,9,999999999,320,0.0470,0,88,999.000,999.0,99.0 +1977,12,16,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,26.7,18.5,60,101700,834,1412,421,281,155,210,33400,16300,23800,5630,70,6.4,8,8,40.2,670,9,999999999,329,0.0470,0,88,999.000,999.0,99.0 +1977,12,16,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,26.1,18.6,62,101700,640,1412,427,126,22,120,14300,2100,13400,3760,60,7.6,9,9,40.2,640,9,999999999,320,0.0470,0,88,999.000,999.0,99.0 +1977,12,16,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,18.3,64,101700,390,1412,424,27,22,24,3600,2000,3000,530,60,8.8,9,9,24.1,610,9,999999999,329,0.0470,0,88,999.000,999.0,99.0 +1977,12,16,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,25.0,18.8,68,101800,106,1212,421,0,0,0,0,0,0,0,60,8.4,9,9,24.1,610,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1977,12,16,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.5,19.2,72,101800,0,0,419,0,0,0,0,0,0,0,70,8.1,9,9,24.1,610,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1977,12,16,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,19.4,76,101900,0,0,416,0,0,0,0,0,0,0,70,7.7,9,9,11.3,610,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1977,12,16,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,23.7,19.4,76,101900,0,0,415,0,0,0,0,0,0,0,70,7.5,9,9,11.3,610,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1977,12,16,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,23.5,19.2,76,101900,0,0,413,0,0,0,0,0,0,0,60,7.4,9,9,11.3,610,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1977,12,16,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,18.9,76,101900,0,0,412,0,0,0,0,0,0,0,60,7.2,9,9,11.3,610,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1977,12,16,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,23.1,19.0,77,101900,0,0,411,0,0,0,0,0,0,0,60,8.1,9,9,11.3,610,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1977,12,17,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,23.0,19.0,78,101800,0,0,410,0,0,0,0,0,0,0,50,8.9,9,9,11.3,610,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1977,12,17,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,18.9,79,101800,0,0,409,0,0,0,0,0,0,0,50,9.8,9,9,16.1,610,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1977,12,17,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,22.4,19.0,81,101700,0,0,407,0,0,0,0,0,0,0,50,8.8,9,9,16.1,863,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1977,12,17,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,22.1,19.0,82,101700,0,0,405,0,0,0,0,0,0,0,60,7.7,9,9,16.1,1117,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1977,12,17,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,18.9,84,101700,0,0,403,0,0,0,0,0,0,0,60,6.7,9,9,19.3,1370,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1977,12,17,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,21.9,18.9,83,101700,0,0,404,0,0,0,0,0,0,0,60,6.2,9,9,19.3,1117,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1977,12,17,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,22.0,18.7,83,101800,0,0,404,35,17,33,0,0,0,0,60,5.7,10,9,19.3,863,9,999999999,340,0.0630,0,88,999.000,999.0,99.0 +1977,12,17,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,18.9,82,101800,125,1307,406,103,62,85,9900,4300,9500,1410,60,5.2,10,9,12.9,610,9,999999999,340,0.0630,0,88,999.000,999.0,99.0 +1977,12,17,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,22.6,19.6,81,101800,409,1413,409,282,84,242,28900,7900,26600,4680,60,5.7,10,9,12.9,610,9,999999999,340,0.0630,0,88,999.000,999.0,99.0 +1977,12,17,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,22.9,19.6,80,101900,656,1413,411,277,5,273,30200,500,30000,8920,50,6.2,10,9,12.9,610,9,999999999,340,0.0630,0,88,999.000,999.0,99.0 +1977,12,17,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,19.4,79,101900,845,1413,413,210,72,160,22900,7600,18300,4320,50,6.7,10,9,16.1,610,9,999999999,350,0.0630,0,88,999.000,999.0,99.0 +1977,12,17,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,23.7,19.9,78,101800,963,1413,400,515,306,298,54800,32900,32300,8340,40,6.0,8,7,16.1,77777,9,999999999,350,0.0630,0,88,999.000,999.0,99.0 +1977,12,17,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.0,20.1,77,101700,1001,1413,397,601,584,204,64700,58800,22900,5690,30,5.3,6,6,16.1,77777,9,999999999,350,0.0630,0,88,999.000,999.0,99.0 +1977,12,17,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,20.0,76,101600,957,1413,393,565,731,132,65600,73000,15900,3280,20,4.6,4,4,24.1,77777,9,999999999,359,0.0630,0,88,999.000,999.0,99.0 +1977,12,17,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.0,19.9,76,101600,835,1413,397,294,243,183,36000,25900,20700,4290,30,5.5,6,6,24.1,77777,9,999999999,350,0.0630,0,88,999.000,999.0,99.0 +1977,12,17,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,23.7,19.5,76,101600,642,1413,400,112,66,94,14100,6800,11100,2270,50,6.3,7,7,24.1,77777,9,999999999,340,0.0630,0,88,999.000,999.0,99.0 +1977,12,17,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,18.9,76,101600,391,1413,412,14,8,13,1700,700,1500,410,60,7.2,9,9,11.3,550,9,999999999,340,0.0630,0,88,999.000,999.0,99.0 +1977,12,17,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,22.9,19.1,78,101600,108,1236,410,0,0,0,0,0,0,0,60,7.5,9,9,11.3,570,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1977,12,17,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,22.6,19.1,80,101700,0,0,408,0,0,0,0,0,0,0,60,7.9,9,9,11.3,590,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1977,12,17,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,18.9,82,101700,0,0,406,0,0,0,0,0,0,0,60,8.2,9,9,16.1,610,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1977,12,17,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,22.2,18.8,81,101800,0,0,406,0,0,0,0,0,0,0,60,7.0,9,9,16.1,610,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1977,12,17,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,22.2,18.6,80,101800,0,0,417,0,0,0,0,0,0,0,60,5.8,10,10,16.1,610,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1977,12,17,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,18.3,79,101800,0,0,416,0,0,0,0,0,0,0,60,4.6,10,10,11.3,610,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1977,12,17,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,22.0,18.4,80,101800,0,0,404,0,0,0,0,0,0,0,50,4.1,9,9,11.3,863,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1977,12,18,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,21.9,18.4,80,101700,0,0,404,0,0,0,0,0,0,0,40,3.6,9,9,11.3,1117,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1977,12,18,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,18.3,81,101700,0,0,394,0,0,0,0,0,0,0,30,3.1,8,8,24.1,1370,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1977,12,18,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,21.7,18.6,82,101700,0,0,394,0,0,0,0,0,0,0,30,3.6,8,8,24.1,1370,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1977,12,18,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,21.7,18.8,83,101600,0,0,403,0,0,0,0,0,0,0,40,4.1,9,9,24.1,1370,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1977,12,18,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,18.9,84,101600,0,0,403,0,0,0,0,0,0,0,40,4.6,9,9,24.1,1370,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1977,12,18,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,21.9,18.5,81,101600,0,0,395,0,0,0,0,0,0,0,40,5.0,8,8,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1977,12,18,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,22.0,18.0,79,101700,0,0,384,58,179,39,0,0,0,0,30,5.3,6,6,24.1,77777,9,999999999,320,0.0490,0,88,999.000,999.0,99.0 +1977,12,18,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,17.8,76,101700,122,1307,382,222,393,108,14100,17800,12300,2820,30,5.7,5,5,32.2,77777,9,999999999,320,0.0490,0,88,999.000,999.0,99.0 +1977,12,18,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,23.5,17.9,69,101700,406,1413,386,424,668,112,30400,56300,14100,1860,30,6.7,4,4,32.2,77777,9,999999999,309,0.0490,0,88,999.000,999.0,99.0 +1977,12,18,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.8,17.4,63,101700,654,1413,385,549,714,120,46900,69300,14700,2430,40,7.8,2,2,32.2,77777,9,999999999,300,0.0490,0,88,999.000,999.0,99.0 +1977,12,18,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,16.7,56,101700,843,1413,386,644,806,93,61200,80700,12900,2240,40,8.8,1,1,40.2,77777,9,999999999,300,0.0490,0,88,999.000,999.0,99.0 +1977,12,18,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,26.1,16.8,55,101600,962,1413,386,702,892,68,71000,89000,10200,1960,40,9.0,1,1,40.2,77777,9,999999999,290,0.0490,0,88,999.000,999.0,99.0 +1977,12,18,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,26.1,16.6,55,101500,1001,1413,386,676,801,131,73500,80400,16300,3510,50,9.1,1,1,40.2,77777,9,999999999,290,0.0490,0,88,999.000,999.0,99.0 +1977,12,18,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,16.1,54,101400,958,1413,385,573,855,66,68000,85300,9900,1920,50,9.3,1,1,40.2,77777,9,999999999,279,0.0490,0,88,999.000,999.0,99.0 +1977,12,18,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,25.2,17.3,61,101400,836,1413,387,379,623,96,49300,62200,12400,2270,40,8.6,2,2,40.2,77777,9,999999999,300,0.0490,0,88,999.000,999.0,99.0 +1977,12,18,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.2,18.2,69,101500,643,1413,387,203,426,85,29700,41800,10600,1800,40,7.9,3,3,40.2,77777,9,999999999,320,0.0490,0,88,999.000,999.0,99.0 +1977,12,18,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,18.9,76,101500,393,1413,386,52,164,33,9100,14300,5100,570,30,7.2,4,4,40.2,77777,9,999999999,329,0.0490,0,88,999.000,999.0,99.0 +1977,12,18,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,23.1,18.3,74,101500,110,1236,390,0,0,0,0,0,0,0,50,6.0,6,6,40.2,77777,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1977,12,18,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,23.0,17.6,71,101500,0,0,394,0,0,0,0,0,0,0,60,4.8,7,7,40.2,77777,9,999999999,309,0.0400,0,88,999.000,999.0,99.0 +1977,12,18,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,16.7,69,101600,0,0,406,0,0,0,0,0,0,0,80,3.6,9,9,24.1,1370,9,999999999,300,0.0400,0,88,999.000,999.0,99.0 +1977,12,18,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,22.4,16.6,70,101600,0,0,404,0,0,0,0,0,0,0,70,4.1,9,9,24.1,1370,9,999999999,290,0.0400,0,88,999.000,999.0,99.0 +1977,12,18,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,22.1,16.4,70,101600,0,0,394,0,0,0,0,0,0,0,50,4.7,8,8,24.1,1370,9,999999999,290,0.0400,0,88,999.000,999.0,99.0 +1977,12,18,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,16.1,71,101600,0,0,391,0,0,0,0,0,0,0,40,5.2,8,8,24.1,1370,9,999999999,290,0.0400,0,88,999.000,999.0,99.0 +1977,12,18,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,21.9,15.9,69,101600,0,0,392,0,0,0,0,0,0,0,40,5.4,8,8,24.1,1370,9,999999999,279,0.0400,0,88,999.000,999.0,99.0 +1977,12,19,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,22.0,15.5,66,101600,0,0,400,0,0,0,0,0,0,0,50,5.5,9,9,24.1,1370,9,999999999,270,0.0400,0,88,999.000,999.0,99.0 +1977,12,19,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,15.0,64,101600,0,0,401,0,0,0,0,0,0,0,50,5.7,9,9,24.1,1370,9,999999999,270,0.0400,0,88,999.000,999.0,99.0 +1977,12,19,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,22.0,14.2,61,101600,0,0,399,0,0,0,0,0,0,0,40,5.9,9,9,24.1,1370,9,999999999,250,0.0400,0,88,999.000,999.0,99.0 +1977,12,19,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,21.9,13.3,58,101500,0,0,397,0,0,0,0,0,0,0,30,6.0,9,9,24.1,1370,9,999999999,240,0.0400,0,88,999.000,999.0,99.0 +1977,12,19,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,12.2,55,101500,0,0,395,0,0,0,0,0,0,0,20,6.2,9,9,24.1,1370,9,999999999,229,0.0400,0,88,999.000,999.0,99.0 +1977,12,19,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,21.9,12.2,54,101600,0,0,387,0,0,0,0,0,0,0,40,5.3,9,8,24.1,77777,9,999999999,229,0.0400,0,88,999.000,999.0,99.0 +1977,12,19,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,22.0,12.0,54,101600,0,0,377,44,58,38,0,0,0,0,50,4.5,10,6,24.1,77777,9,999999999,229,0.0350,0,88,999.000,999.0,99.0 +1977,12,19,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,12.2,53,101600,120,1284,375,194,370,87,11400,17900,9700,1860,70,3.6,10,5,40.2,77777,9,999999999,229,0.0350,0,88,999.000,999.0,99.0 +1977,12,19,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,23.1,13.1,51,101600,404,1413,384,283,303,142,23700,26700,16100,3000,60,5.5,10,6,40.2,77777,9,999999999,229,0.0350,0,88,999.000,999.0,99.0 +1977,12,19,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.1,13.3,50,101600,652,1413,400,473,341,269,44300,34600,28300,6450,50,7.4,10,8,40.2,77777,9,999999999,240,0.0350,0,88,999.000,999.0,99.0 +1977,12,19,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,13.3,48,101600,842,1413,414,424,244,258,43300,25900,27900,6450,40,9.3,10,9,40.2,1520,9,999999999,240,0.0350,0,88,999.000,999.0,99.0 +1977,12,19,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,25.0,13.2,47,101500,961,1413,399,584,439,271,60000,45300,29000,7410,40,9.1,8,7,40.2,77777,9,999999999,240,0.0350,0,88,999.000,999.0,99.0 +1977,12,19,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,25.0,12.8,46,101400,1001,1413,390,612,604,201,65900,60900,22700,5610,50,9.0,6,5,40.2,77777,9,999999999,229,0.0350,0,88,999.000,999.0,99.0 +1977,12,19,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,12.2,45,101400,958,1413,383,587,797,113,69400,80200,14900,2970,50,8.8,4,3,40.2,77777,9,999999999,229,0.0350,0,88,999.000,999.0,99.0 +1977,12,19,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.4,12.3,46,101300,837,1413,384,328,392,149,41800,40300,17900,3400,50,8.3,6,4,40.2,77777,9,999999999,220,0.0350,0,88,999.000,999.0,99.0 +1977,12,19,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,23.9,12.1,47,101300,645,1413,384,142,136,104,18500,13900,12200,2070,50,7.7,8,5,40.2,77777,9,999999999,220,0.0350,0,88,999.000,999.0,99.0 +1977,12,19,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,11.7,48,101300,395,1413,383,48,67,41,6800,5900,5100,700,50,7.2,10,6,40.2,7620,9,999999999,220,0.0350,0,88,999.000,999.0,99.0 +1977,12,19,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,22.8,11.5,48,101400,112,1237,381,0,0,0,0,0,0,0,50,8.1,10,6,40.2,7620,9,999999999,209,0.0400,0,88,999.000,999.0,99.0 +1977,12,19,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,22.2,11.2,49,101400,0,0,374,0,0,0,0,0,0,0,50,8.9,9,5,40.2,7620,9,999999999,209,0.0400,0,88,999.000,999.0,99.0 +1977,12,19,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,10.6,49,101400,0,0,371,0,0,0,0,0,0,0,50,9.8,9,5,24.1,7620,9,999999999,200,0.0400,0,88,999.000,999.0,99.0 +1977,12,19,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,21.7,11.3,51,101500,0,0,371,0,0,0,0,0,0,0,50,9.6,9,5,24.1,77777,9,999999999,209,0.0400,0,88,999.000,999.0,99.0 +1977,12,19,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,21.7,11.8,53,101500,0,0,369,0,0,0,0,0,0,0,60,9.5,10,4,24.1,77777,9,999999999,220,0.0400,0,88,999.000,999.0,99.0 +1977,12,19,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,12.2,55,101500,0,0,370,0,0,0,0,0,0,0,60,9.3,10,4,24.1,77777,9,999999999,229,0.0400,0,88,999.000,999.0,99.0 +1977,12,19,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,21.5,12.5,56,101500,0,0,372,0,0,0,0,0,0,0,60,8.1,10,5,24.1,77777,9,999999999,229,0.0400,0,88,999.000,999.0,99.0 +1977,12,20,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,21.3,12.7,58,101500,0,0,371,0,0,0,0,0,0,0,60,6.9,10,5,24.1,77777,9,999999999,229,0.0400,0,88,999.000,999.0,99.0 +1977,12,20,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,12.8,59,101500,0,0,373,0,0,0,0,0,0,0,60,5.7,10,6,24.1,7620,9,999999999,229,0.0400,0,88,999.000,999.0,99.0 +1977,12,20,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,21.1,12.3,57,101500,0,0,373,0,0,0,0,0,0,0,60,6.0,9,6,24.1,7620,9,999999999,229,0.0400,0,88,999.000,999.0,99.0 +1977,12,20,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,21.1,11.8,55,101500,0,0,369,0,0,0,0,0,0,0,60,6.4,9,5,24.1,7620,9,999999999,220,0.0400,0,88,999.000,999.0,99.0 +1977,12,20,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,11.1,53,101500,0,0,368,0,0,0,0,0,0,0,60,6.7,8,5,24.1,7620,9,999999999,209,0.0400,0,88,999.000,999.0,99.0 +1977,12,20,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,21.1,11.8,56,101500,0,0,372,0,0,0,0,0,0,0,60,6.9,9,6,24.1,5587,9,999999999,220,0.0400,0,88,999.000,999.0,99.0 +1977,12,20,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,21.1,12.4,58,101600,0,0,383,40,28,37,0,0,0,0,50,7.0,9,8,24.1,3553,9,999999999,229,0.0230,0,88,999.000,999.0,99.0 +1977,12,20,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,13.3,61,101600,117,1284,393,153,67,133,15000,4900,14600,1210,50,7.2,10,9,40.2,1520,9,999999999,240,0.0230,0,88,999.000,999.0,99.0 +1977,12,20,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,22.2,13.6,57,101600,402,1413,399,283,72,249,29300,6800,27300,4640,60,8.2,10,9,40.2,3553,9,999999999,240,0.0230,0,88,999.000,999.0,99.0 +1977,12,20,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,23.3,13.3,52,101600,650,1413,405,385,105,322,40400,10600,35500,7990,60,9.3,10,9,40.2,5587,9,999999999,240,0.0230,0,88,999.000,999.0,99.0 +1977,12,20,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,12.8,48,101600,841,1413,410,439,114,361,47000,11700,40000,10680,70,10.3,10,9,40.2,7620,9,999999999,229,0.0230,0,88,999.000,999.0,99.0 +1977,12,20,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.4,13.1,48,101500,960,1413,410,427,139,328,46100,14700,36100,9680,70,9.6,10,9,40.2,7620,9,999999999,229,0.0230,0,88,999.000,999.0,99.0 +1977,12,20,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.4,13.1,48,101400,1001,1413,422,228,6,224,27000,500,26600,10420,60,8.9,10,10,40.2,7620,9,999999999,229,0.0230,0,88,999.000,999.0,99.0 +1977,12,20,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,12.8,48,101300,959,1413,422,258,1,258,30100,100,30000,11330,60,8.2,10,10,40.2,7620,9,999999999,229,0.0230,0,88,999.000,999.0,99.0 +1977,12,20,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.0,13.2,50,101300,838,1413,420,218,6,215,25300,500,25000,9230,60,7.5,10,10,40.2,7113,9,999999999,240,0.0230,0,88,999.000,999.0,99.0 +1977,12,20,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,23.7,13.4,52,101300,647,1413,407,126,58,109,15000,5600,12400,3470,60,6.9,10,9,40.2,6607,9,999999999,240,0.0230,0,88,999.000,999.0,99.0 +1977,12,20,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,13.3,54,101300,398,1413,405,44,28,41,5400,2500,4700,1220,60,6.2,10,9,40.2,6100,9,999999999,240,0.0230,0,88,999.000,999.0,99.0 +1977,12,20,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,22.9,13.3,54,101400,114,1260,402,0,0,0,0,0,0,0,60,5.9,10,9,40.2,6100,9,999999999,240,0.0400,0,88,999.000,999.0,99.0 +1977,12,20,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,22.6,13.2,55,101400,0,0,401,0,0,0,0,0,0,0,60,5.5,10,9,40.2,6100,9,999999999,240,0.0400,0,88,999.000,999.0,99.0 +1977,12,20,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,12.8,55,101500,0,0,398,0,0,0,0,0,0,0,60,5.2,10,9,24.1,6100,9,999999999,229,0.0400,0,88,999.000,999.0,99.0 +1977,12,20,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,22.0,13.1,56,101500,0,0,397,0,0,0,0,0,0,0,50,4.8,10,9,24.1,4573,9,999999999,240,0.0400,0,88,999.000,999.0,99.0 +1977,12,20,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,21.9,13.3,58,101500,0,0,397,0,0,0,0,0,0,0,50,4.5,9,9,24.1,3047,9,999999999,240,0.0400,0,88,999.000,999.0,99.0 +1977,12,20,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,13.3,59,101600,0,0,396,0,0,0,0,0,0,0,40,4.1,9,9,24.1,1520,9,999999999,240,0.0400,0,88,999.000,999.0,99.0 +1977,12,20,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,21.3,13.6,61,101500,0,0,394,0,0,0,0,0,0,0,40,4.5,9,9,24.1,1520,9,999999999,250,0.0400,0,88,999.000,999.0,99.0 +1977,12,21,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,21.0,13.8,64,101500,0,0,393,0,0,0,0,0,0,0,40,4.8,9,9,24.1,1520,9,999999999,250,0.0400,0,88,999.000,999.0,99.0 +1977,12,21,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,13.9,66,101500,0,0,391,0,0,0,0,0,0,0,40,5.2,9,9,24.1,1520,9,999999999,250,0.0400,0,88,999.000,999.0,99.0 +1977,12,21,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,19.5,14.4,73,101500,0,0,367,0,0,0,0,0,0,0,20,4.3,6,6,24.1,77777,9,999999999,259,0.0400,0,88,999.000,999.0,99.0 +1977,12,21,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,18.3,14.8,80,101400,0,0,356,0,0,0,0,0,0,0,350,3.5,4,4,24.1,77777,9,999999999,259,0.0400,0,88,999.000,999.0,99.0 +1977,12,21,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,15.0,87,101400,0,0,340,0,0,0,0,0,0,0,330,2.6,1,1,24.1,77777,9,999999999,270,0.0400,0,88,999.000,999.0,99.0 +1977,12,21,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,17.6,15.3,87,101500,0,0,342,0,0,0,0,0,0,0,320,2.4,1,1,24.1,77777,9,999999999,270,0.0400,0,88,999.000,999.0,99.0 +1977,12,21,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,17.9,15.5,87,101500,0,0,344,52,222,28,0,0,0,0,320,2.3,1,1,24.1,77777,9,999999999,279,0.0770,0,88,999.000,999.0,99.0 +1977,12,21,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,16.1,87,101600,115,1260,346,225,586,58,10900,28600,8200,780,310,2.1,1,1,40.2,77777,9,999999999,290,0.0770,0,88,999.000,999.0,99.0 +1977,12,21,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,20.3,15.9,75,101600,399,1414,364,350,520,110,26400,44900,13700,2090,350,3.1,3,3,40.2,77777,9,999999999,279,0.0770,0,88,999.000,999.0,99.0 +1977,12,21,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,22.4,15.0,64,101600,648,1414,379,459,449,191,41000,44200,20700,4000,20,4.2,5,5,40.2,77777,9,999999999,270,0.0770,0,88,999.000,999.0,99.0 +1977,12,21,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,13.9,52,101600,839,1414,396,574,456,263,57300,48400,28500,6590,60,5.2,7,7,40.2,850,9,999999999,250,0.0770,0,88,999.000,999.0,99.0 +1977,12,21,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.6,14.3,52,101500,960,1414,404,510,378,242,53100,39100,26500,6530,60,5.7,8,8,40.2,850,9,999999999,250,0.0770,0,88,999.000,999.0,99.0 +1977,12,21,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.8,14.5,52,101400,1001,1414,406,545,429,253,59400,44500,27800,7240,50,6.2,8,8,40.2,850,9,999999999,259,0.0770,0,88,999.000,999.0,99.0 +1977,12,21,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,14.4,52,101300,960,1414,415,295,88,242,33500,9400,27200,7130,50,6.7,9,9,40.2,850,9,999999999,259,0.0770,0,88,999.000,999.0,99.0 +1977,12,21,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.6,14.1,51,101300,840,1414,404,298,123,241,34500,12900,26800,6480,40,6.5,8,8,40.2,870,9,999999999,250,0.0770,0,88,999.000,999.0,99.0 +1977,12,21,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.3,13.6,51,101300,649,1414,402,155,203,98,21500,20800,11900,1930,40,6.4,8,8,40.2,890,9,999999999,240,0.0770,0,88,999.000,999.0,99.0 +1977,12,21,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,12.8,50,101400,400,1414,392,37,27,34,4900,2500,4200,750,30,6.2,7,7,40.2,910,9,999999999,229,0.0770,0,88,999.000,999.0,99.0 +1977,12,21,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,23.2,13.0,52,101400,116,1260,389,0,0,0,0,0,0,0,40,5.0,7,7,40.2,1063,9,999999999,240,0.0400,0,88,999.000,999.0,99.0 +1977,12,21,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,22.4,13.0,55,101500,0,0,380,0,0,0,0,0,0,0,40,3.8,6,6,40.2,1217,9,999999999,229,0.0400,0,88,999.000,999.0,99.0 +1977,12,21,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,12.8,57,101500,0,0,376,0,0,0,0,0,0,0,50,2.6,6,6,24.1,1370,9,999999999,229,0.0400,0,88,999.000,999.0,99.0 +1977,12,21,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,20.9,13.7,63,101600,0,0,370,0,0,0,0,0,0,0,20,2.6,5,5,24.1,77777,9,999999999,250,0.0400,0,88,999.000,999.0,99.0 +1977,12,21,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,20.2,14.4,70,101600,0,0,368,0,0,0,0,0,0,0,340,2.6,5,5,24.1,77777,9,999999999,259,0.0400,0,88,999.000,999.0,99.0 +1977,12,21,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,15.0,76,101600,0,0,362,0,0,0,0,0,0,0,310,2.6,4,4,24.1,77777,9,999999999,270,0.0400,0,88,999.000,999.0,99.0 +1977,12,21,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,18.7,14.9,79,101600,0,0,358,0,0,0,0,0,0,0,310,2.2,4,4,24.1,77777,9,999999999,270,0.0400,0,88,999.000,999.0,99.0 +1977,12,22,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,17.9,14.7,81,101600,0,0,351,0,0,0,0,0,0,0,310,1.9,3,3,24.1,77777,9,999999999,259,0.0400,0,88,999.000,999.0,99.0 +1977,12,22,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,14.4,84,101500,0,0,347,0,0,0,0,0,0,0,310,1.5,3,3,24.1,77777,9,999999999,259,0.0400,0,88,999.000,999.0,99.0 +1977,12,22,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,17.4,14.5,83,101500,0,0,354,0,0,0,0,0,0,0,310,1.9,5,5,24.1,77777,9,999999999,259,0.0400,0,88,999.000,999.0,99.0 +1977,12,22,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,17.6,14.5,82,101500,0,0,362,0,0,0,0,0,0,0,310,2.2,7,7,24.1,77777,9,999999999,259,0.0400,0,88,999.000,999.0,99.0 +1977,12,22,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,14.4,81,101500,0,0,377,0,0,0,0,0,0,0,310,2.6,9,9,24.1,1370,9,999999999,259,0.0400,0,88,999.000,999.0,99.0 +1977,12,22,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,18.0,14.6,81,101600,0,0,364,0,0,0,0,0,0,0,300,2.4,7,7,24.1,77777,9,999999999,259,0.0400,0,88,999.000,999.0,99.0 +1977,12,22,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,18.1,14.6,81,101600,0,0,355,46,136,31,0,0,0,0,290,2.3,4,4,24.1,77777,9,999999999,259,0.0350,0,88,999.000,999.0,99.0 +1977,12,22,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,15.0,81,101700,113,1261,350,225,548,69,11400,25500,9000,820,280,2.1,2,2,40.2,77777,9,999999999,270,0.0350,0,88,999.000,999.0,99.0 +1977,12,22,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,20.5,14.8,70,101700,397,1414,360,411,697,90,29000,59300,12300,1580,310,2.8,2,2,40.2,77777,9,999999999,259,0.0350,0,88,999.000,999.0,99.0 +1977,12,22,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,22.8,13.9,58,101600,646,1414,371,602,876,79,50300,84900,11300,1660,350,3.4,2,2,40.2,77777,9,999999999,250,0.0350,0,88,999.000,999.0,99.0 +1977,12,22,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,12.8,47,101600,838,1414,380,695,891,88,64300,88000,11900,1890,20,4.1,2,2,40.2,77777,9,999999999,240,0.0350,0,88,999.000,999.0,99.0 +1977,12,22,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,25.4,12.7,45,101600,959,1414,382,719,875,98,71900,87000,12700,2300,20,5.0,2,2,40.2,77777,9,999999999,229,0.0350,0,88,999.000,999.0,99.0 +1977,12,22,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,25.7,12.3,43,101500,1001,1414,378,625,822,65,68100,82200,9800,1990,20,5.8,1,1,40.2,77777,9,999999999,229,0.0350,0,88,999.000,999.0,99.0 +1977,12,22,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,11.7,41,101400,961,1414,380,587,912,44,70700,91200,8600,1450,20,6.7,1,1,40.2,77777,9,999999999,220,0.0350,0,88,999.000,999.0,99.0 +1977,12,22,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,25.5,12.3,43,101400,841,1414,382,439,718,108,56100,71400,13500,2460,20,6.7,2,2,40.2,77777,9,999999999,220,0.0350,0,88,999.000,999.0,99.0 +1977,12,22,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,25.0,12.7,46,101500,651,1414,380,227,595,58,36000,58400,9000,1350,20,6.7,2,2,40.2,77777,9,999999999,229,0.0350,0,88,999.000,999.0,99.0 +1977,12,22,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,12.8,48,101500,402,1414,381,48,141,32,8400,12400,4900,550,20,6.7,3,3,40.2,77777,9,999999999,229,0.0350,0,88,999.000,999.0,99.0 +1977,12,22,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,23.9,13.5,52,101500,118,1284,382,0,0,0,0,0,0,0,30,5.7,4,4,40.2,77777,9,999999999,240,0.0400,0,88,999.000,999.0,99.0 +1977,12,22,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,23.3,14.1,55,101600,0,0,386,0,0,0,0,0,0,0,30,4.6,6,6,40.2,77777,9,999999999,250,0.0400,0,88,999.000,999.0,99.0 +1977,12,22,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,14.4,59,101600,0,0,389,0,0,0,0,0,0,0,40,3.6,7,7,24.1,980,9,999999999,259,0.0400,0,88,999.000,999.0,99.0 +1977,12,22,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,22.6,14.0,58,101600,0,0,387,0,0,0,0,0,0,0,30,4.1,7,7,24.1,980,9,999999999,250,0.0400,0,88,999.000,999.0,99.0 +1977,12,22,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,22.4,13.5,56,101700,0,0,392,0,0,0,0,0,0,0,30,4.7,8,8,24.1,980,9,999999999,240,0.0400,0,88,999.000,999.0,99.0 +1977,12,22,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,12.8,55,101700,0,0,390,0,0,0,0,0,0,0,20,5.2,8,8,24.1,980,9,999999999,229,0.0400,0,88,999.000,999.0,99.0 +1977,12,22,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,21.8,12.6,55,101700,0,0,381,0,0,0,0,0,0,0,10,4.3,7,7,24.1,77777,9,999999999,229,0.0400,0,88,999.000,999.0,99.0 +1977,12,23,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,21.5,12.2,55,101600,0,0,371,0,0,0,0,0,0,0,10,3.5,5,5,24.1,77777,9,999999999,220,0.0400,0,88,999.000,999.0,99.0 +1977,12,23,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,11.7,55,101600,0,0,366,0,0,0,0,0,0,0,360,2.6,4,4,24.1,77777,9,999999999,220,0.0400,0,88,999.000,999.0,99.0 +1977,12,23,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,20.0,12.5,63,101600,0,0,359,0,0,0,0,0,0,0,330,2.6,3,3,24.1,77777,9,999999999,229,0.0400,0,88,999.000,999.0,99.0 +1977,12,23,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,18.9,13.3,70,101600,0,0,354,0,0,0,0,0,0,0,310,2.6,3,3,24.1,77777,9,999999999,240,0.0400,0,88,999.000,999.0,99.0 +1977,12,23,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,13.9,78,101600,0,0,346,0,0,0,0,0,0,0,280,2.6,2,2,24.1,77777,9,999999999,250,0.0400,0,88,999.000,999.0,99.0 +1977,12,23,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,18.2,14.4,79,101700,0,0,352,0,0,0,0,0,0,0,290,2.8,3,3,24.1,77777,9,999999999,259,0.0400,0,88,999.000,999.0,99.0 +1977,12,23,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,18.5,14.8,80,101700,0,0,354,58,277,28,0,0,0,0,310,2.9,3,3,24.1,77777,9,999999999,270,0.0260,0,88,999.000,999.0,99.0 +1977,12,23,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,15.6,81,101800,111,1237,360,101,120,67,8200,6200,7600,1400,320,3.1,4,4,40.2,77777,9,999999999,279,0.0260,0,88,999.000,999.0,99.0 +1977,12,23,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,20.9,15.5,71,101800,395,1414,367,416,710,90,29300,60300,12300,1570,350,4.0,3,3,40.2,77777,9,999999999,270,0.0260,0,88,999.000,999.0,99.0 +1977,12,23,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,23.0,14.8,60,101800,645,1414,376,585,818,98,48200,78400,12300,1840,20,4.8,3,3,40.2,77777,9,999999999,270,0.0260,0,88,999.000,999.0,99.0 +1977,12,23,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,13.9,50,101900,837,1414,382,701,939,61,65100,93000,9900,1640,50,5.7,2,2,40.2,77777,9,999999999,250,0.0260,0,88,999.000,999.0,99.0 +1977,12,23,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,25.4,13.8,48,101800,959,1414,384,666,799,99,69100,80800,14100,2700,40,5.5,2,2,40.2,77777,9,999999999,250,0.0260,0,88,999.000,999.0,99.0 +1977,12,23,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,25.7,13.4,46,101700,1001,1414,385,674,834,106,72300,83100,13200,2510,20,5.4,2,2,40.2,77777,9,999999999,240,0.0260,0,88,999.000,999.0,99.0 +1977,12,23,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,12.8,44,101700,962,1414,386,588,799,111,69700,80500,14800,2940,10,5.2,2,2,40.2,77777,9,999999999,240,0.0260,0,88,999.000,999.0,99.0 +1977,12,23,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,25.4,13.0,46,101700,843,1414,383,407,731,69,53000,72300,9800,1750,10,6.4,2,2,40.2,77777,9,999999999,240,0.0260,0,88,999.000,999.0,99.0 +1977,12,23,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.6,13.1,48,101700,653,1414,379,229,574,65,35400,56200,9300,1470,20,7.6,2,2,40.2,77777,9,999999999,240,0.0260,0,88,999.000,999.0,99.0 +1977,12,23,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,12.8,50,101700,405,1414,375,59,222,33,10600,19900,4800,670,20,8.8,2,2,40.2,77777,9,999999999,240,0.0260,0,88,999.000,999.0,99.0 +1977,12,23,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,23.2,13.3,54,101800,120,1284,372,0,0,0,0,0,0,0,20,7.1,2,2,40.2,77777,9,999999999,240,0.0400,0,88,999.000,999.0,99.0 +1977,12,23,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,22.4,13.7,57,101800,0,0,372,0,0,0,0,0,0,0,30,5.3,3,3,40.2,77777,9,999999999,250,0.0400,0,88,999.000,999.0,99.0 +1977,12,23,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,13.9,61,101900,0,0,369,0,0,0,0,0,0,0,30,3.6,3,3,24.1,77777,9,999999999,250,0.0400,0,88,999.000,999.0,99.0 +1977,12,23,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,21.9,14.0,60,101900,0,0,373,0,0,0,0,0,0,0,40,4.1,4,4,24.1,77777,9,999999999,250,0.0400,0,88,999.000,999.0,99.0 +1977,12,23,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,22.0,14.0,60,101900,0,0,376,0,0,0,0,0,0,0,50,4.7,5,5,24.1,77777,9,999999999,250,0.0400,0,88,999.000,999.0,99.0 +1977,12,23,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,13.9,59,101900,0,0,380,0,0,0,0,0,0,0,60,5.2,6,6,24.1,980,9,999999999,250,0.0400,0,88,999.000,999.0,99.0 +1977,12,23,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,21.8,13.3,58,101900,0,0,374,0,0,0,0,0,0,0,70,5.5,5,5,24.1,77777,9,999999999,240,0.0400,0,88,999.000,999.0,99.0 +1977,12,24,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,21.5,12.6,56,101800,0,0,372,0,0,0,0,0,0,0,70,5.9,5,5,24.1,77777,9,999999999,229,0.0400,0,88,999.000,999.0,99.0 +1977,12,24,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,11.7,55,101800,0,0,366,0,0,0,0,0,0,0,80,6.2,4,4,24.1,77777,9,999999999,220,0.0400,0,88,999.000,999.0,99.0 +1977,12,24,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,21.1,12.7,59,101700,0,0,370,0,0,0,0,0,0,0,60,5.7,5,5,24.1,77777,9,999999999,229,0.0400,0,88,999.000,999.0,99.0 +1977,12,24,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,21.1,13.6,62,101700,0,0,374,0,0,0,0,0,0,0,30,5.1,6,6,24.1,77777,9,999999999,250,0.0400,0,88,999.000,999.0,99.0 +1977,12,24,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,14.4,66,101700,0,0,380,0,0,0,0,0,0,0,10,4.6,7,7,24.1,910,9,999999999,259,0.0400,0,88,999.000,999.0,99.0 +1977,12,24,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,21.5,14.0,63,101800,0,0,381,0,0,0,0,0,0,0,10,4.3,7,7,24.1,933,9,999999999,250,0.0400,0,88,999.000,999.0,99.0 +1977,12,24,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,21.8,13.5,60,101900,0,0,378,45,51,39,0,0,0,0,20,3.9,6,6,24.1,957,9,999999999,250,0.0530,0,88,999.000,999.0,99.0 +1977,12,24,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,13.3,57,101900,109,1237,380,150,89,124,14300,6400,13700,1220,20,3.6,6,6,32.2,980,9,999999999,240,0.0530,0,88,999.000,999.0,99.0 +1977,12,24,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,23.3,14.0,54,102000,393,1414,383,451,711,126,32800,60800,15800,2440,30,4.1,5,5,32.2,77777,9,999999999,250,0.0530,0,88,999.000,999.0,99.0 +1977,12,24,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.5,14.1,52,102000,643,1414,386,551,653,163,48300,64300,18900,3340,50,4.7,4,4,32.2,77777,9,999999999,250,0.0530,0,88,999.000,999.0,99.0 +1977,12,24,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,13.9,49,102000,836,1414,389,587,635,155,55600,63500,17900,3590,60,5.2,3,3,40.2,77777,9,999999999,250,0.0530,0,88,999.000,999.0,99.0 +1977,12,24,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,25.6,14.0,48,102000,958,1414,392,675,681,191,68400,68500,21800,5020,60,5.5,4,4,40.2,77777,9,999999999,250,0.0530,0,88,999.000,999.0,99.0 +1977,12,24,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,25.6,13.8,48,101900,1002,1414,398,471,274,284,52100,29500,31100,8190,70,5.9,6,6,40.2,77777,9,999999999,250,0.0530,0,88,999.000,999.0,99.0 +1977,12,24,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,13.3,47,101900,963,1414,402,588,656,196,67200,65900,22200,5160,70,6.2,7,7,40.2,1070,9,999999999,240,0.0530,0,88,999.000,999.0,99.0 +1977,12,24,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,25.0,13.2,47,101900,844,1414,394,364,479,142,45200,48100,16300,3360,60,6.5,6,6,40.2,77777,9,999999999,240,0.0530,0,88,999.000,999.0,99.0 +1977,12,24,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.5,12.8,48,101900,655,1414,388,200,388,89,28600,38100,10900,1890,60,6.9,5,5,40.2,77777,9,999999999,229,0.0530,0,88,999.000,999.0,99.0 +1977,12,24,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,12.2,48,101900,407,1414,381,49,112,37,8000,9900,5100,640,50,7.2,4,4,40.2,77777,9,999999999,229,0.0530,0,88,999.000,999.0,99.0 +1977,12,24,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,23.3,12.6,50,101900,123,1308,378,0,0,0,0,0,0,0,50,7.9,4,4,40.2,77777,9,999999999,229,0.0400,0,88,999.000,999.0,99.0 +1977,12,24,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,22.8,12.8,53,101900,0,0,373,0,0,0,0,0,0,0,50,8.6,3,3,40.2,77777,9,999999999,229,0.0400,0,88,999.000,999.0,99.0 +1977,12,24,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,12.8,55,101900,0,0,370,0,0,0,0,0,0,0,50,9.3,3,3,24.1,77777,9,999999999,229,0.0400,0,88,999.000,999.0,99.0 +1977,12,24,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,22.2,12.9,55,101900,0,0,373,0,0,0,0,0,0,0,50,8.4,4,4,24.1,77777,9,999999999,229,0.0400,0,88,999.000,999.0,99.0 +1977,12,24,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,22.2,12.9,55,101900,0,0,379,0,0,0,0,0,0,0,50,7.6,6,6,24.1,77777,9,999999999,229,0.0400,0,88,999.000,999.0,99.0 +1977,12,24,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,12.8,55,101900,0,0,383,0,0,0,0,0,0,0,50,6.7,7,7,24.1,1370,9,999999999,229,0.0400,0,88,999.000,999.0,99.0 +1977,12,24,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,21.8,12.7,56,101900,0,0,374,0,0,0,0,0,0,0,60,6.0,5,5,24.1,77777,9,999999999,229,0.0400,0,88,999.000,999.0,99.0 +1977,12,25,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,21.5,12.5,56,101800,0,0,369,0,0,0,0,0,0,0,60,5.3,4,4,24.1,77777,9,999999999,229,0.0400,0,88,999.000,999.0,99.0 +1977,12,25,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,12.2,57,101800,0,0,360,0,0,0,0,0,0,0,70,4.6,2,2,24.1,77777,9,999999999,229,0.0400,0,88,999.000,999.0,99.0 +1977,12,25,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,21.1,12.3,57,101700,0,0,360,0,0,0,0,0,0,0,60,4.8,2,2,24.1,77777,9,999999999,229,0.0400,0,88,999.000,999.0,99.0 +1977,12,25,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,21.1,12.3,57,101700,0,0,364,0,0,0,0,0,0,0,60,5.0,3,3,24.1,77777,9,999999999,229,0.0400,0,88,999.000,999.0,99.0 +1977,12,25,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,12.2,57,101700,0,0,364,0,0,0,0,0,0,0,50,5.2,3,3,24.1,77777,9,999999999,229,0.0400,0,88,999.000,999.0,99.0 +1977,12,25,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,21.3,12.4,57,101700,0,0,371,0,0,0,0,0,0,0,60,5.0,5,5,24.1,77777,9,999999999,229,0.0400,0,88,999.000,999.0,99.0 +1977,12,25,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,21.5,12.4,57,101800,0,0,375,53,143,37,0,0,0,0,60,4.8,6,6,24.1,77777,9,999999999,229,0.0170,0,88,999.000,999.0,99.0 +1977,12,25,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,12.8,57,101900,107,1214,387,166,207,108,12800,10000,11900,2260,70,4.6,8,8,40.2,910,9,999999999,240,0.0170,0,88,999.000,999.0,99.0 +1977,12,25,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,22.6,13.7,55,101900,391,1414,387,291,279,164,24700,24200,17900,3630,70,5.1,7,7,40.2,933,9,999999999,240,0.0170,0,88,999.000,999.0,99.0 +1977,12,25,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,23.5,13.9,54,101900,642,1414,392,498,575,157,44000,56600,18200,3200,60,5.7,7,7,40.2,957,9,999999999,250,0.0170,0,88,999.000,999.0,99.0 +1977,12,25,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,13.9,52,101900,835,1414,392,655,711,172,61600,70600,19700,3910,60,6.2,6,6,40.2,980,9,999999999,250,0.0170,0,88,999.000,999.0,99.0 +1977,12,25,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,25.2,13.8,49,101800,958,1414,392,620,632,171,63300,63900,19800,4560,60,6.7,6,5,40.2,77777,9,999999999,250,0.0170,0,88,999.000,999.0,99.0 +1977,12,25,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,25.9,13.4,45,101700,1002,1414,396,494,398,222,54500,41400,25100,6300,70,7.2,5,5,40.2,77777,9,999999999,240,0.0170,0,88,999.000,999.0,99.0 +1977,12,25,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,12.8,42,101600,964,1414,396,425,471,143,49700,48000,16800,3930,70,7.7,5,4,40.2,77777,9,999999999,229,0.0170,0,88,999.000,999.0,99.0 +1977,12,25,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,25.9,13.2,45,101600,846,1414,389,301,440,97,39100,44900,12200,2400,60,7.0,4,3,40.2,77777,9,999999999,240,0.0170,0,88,999.000,999.0,99.0 +1977,12,25,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,25.2,13.4,47,101700,657,1414,386,214,466,80,31800,46000,10300,1720,50,6.4,4,3,40.2,77777,9,999999999,240,0.0170,0,88,999.000,999.0,99.0 +1977,12,25,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,13.3,50,101700,410,1414,378,62,342,23,13800,31200,4700,570,40,5.7,3,2,40.2,77777,9,999999999,240,0.0170,0,88,999.000,999.0,99.0 +1977,12,25,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,23.5,13.5,53,101700,125,1308,377,0,0,0,0,0,0,0,50,5.2,5,3,40.2,77777,9,999999999,240,0.0400,0,88,999.000,999.0,99.0 +1977,12,25,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,22.6,13.5,56,101800,0,0,376,0,0,0,0,0,0,0,60,4.6,7,4,40.2,77777,9,999999999,240,0.0400,0,88,999.000,999.0,99.0 +1977,12,25,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,13.3,59,101800,0,0,374,0,0,0,0,0,0,0,70,4.1,9,5,24.1,7620,9,999999999,240,0.0400,0,88,999.000,999.0,99.0 +1977,12,25,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,21.3,13.4,60,101800,0,0,366,0,0,0,0,0,0,0,70,3.9,6,3,24.1,77777,9,999999999,240,0.0400,0,88,999.000,999.0,99.0 +1977,12,25,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,21.0,13.4,62,101700,0,0,361,0,0,0,0,0,0,0,60,3.8,3,2,24.1,77777,9,999999999,240,0.0400,0,88,999.000,999.0,99.0 +1977,12,25,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,13.3,63,101700,0,0,348,0,0,0,0,0,0,0,60,3.6,0,0,24.1,77777,9,999999999,240,0.0400,0,88,999.000,999.0,99.0 +1977,12,25,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,19.3,13.6,70,101600,0,0,342,0,0,0,0,0,0,0,20,3.3,0,0,24.1,77777,9,999999999,250,0.0400,0,88,999.000,999.0,99.0 +1977,12,26,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,18.0,13.8,77,101600,0,0,342,0,0,0,0,0,0,0,350,2.9,1,1,24.1,77777,9,999999999,250,0.0400,0,88,999.000,999.0,99.0 +1977,12,26,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,13.9,84,101500,0,0,336,0,0,0,0,0,0,0,310,2.6,1,1,24.1,77777,9,999999999,250,0.0400,0,88,999.000,999.0,99.0 +1977,12,26,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,17.1,14.2,83,101500,0,0,349,0,0,0,0,0,0,0,330,1.7,4,4,24.1,77777,9,999999999,250,0.0400,0,88,999.000,999.0,99.0 +1977,12,26,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,17.4,14.4,82,101500,0,0,357,0,0,0,0,0,0,0,340,0.9,6,6,24.1,77777,9,999999999,259,0.0400,0,88,999.000,999.0,99.0 +1977,12,26,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,14.4,81,101500,0,0,377,0,0,0,0,0,0,0,0,0.0,9,9,24.1,910,9,999999999,259,0.0400,0,88,999.000,999.0,99.0 +1977,12,26,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,18.7,14.6,78,101500,0,0,374,0,0,0,0,0,0,0,350,0.9,9,8,24.1,3147,9,999999999,259,0.0400,0,88,999.000,999.0,99.0 +1977,12,26,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,19.7,14.6,74,101600,0,0,369,46,68,39,0,0,0,0,340,1.7,9,6,24.1,5383,9,999999999,270,0.0400,0,88,999.000,999.0,99.0 +1977,12,26,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,15.0,71,101600,106,1214,370,130,95,103,12100,6600,11500,1310,330,2.6,9,5,40.2,7620,9,999999999,270,0.0400,0,88,999.000,999.0,99.0 +1977,12,26,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,22.3,15.5,65,101600,389,1414,383,310,114,258,31400,10700,28400,4530,30,3.5,9,6,40.2,7620,9,999999999,270,0.0400,0,88,999.000,999.0,99.0 +1977,12,26,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,23.9,15.4,58,101500,641,1414,391,381,170,280,38000,16900,30300,6780,80,4.3,10,6,40.2,7620,9,999999999,270,0.0400,0,88,999.000,999.0,99.0 +1977,12,26,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,15.0,52,101500,835,1414,404,456,223,304,47200,23200,33400,8150,140,5.2,10,7,40.2,7620,9,999999999,270,0.0400,0,88,999.000,999.0,99.0 +1977,12,26,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,25.6,15.5,53,101400,958,1414,411,414,184,283,44900,19500,31600,8330,130,5.5,10,8,40.2,7620,9,999999999,270,0.0400,0,88,999.000,999.0,99.0 +1977,12,26,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,25.6,15.7,53,101300,1003,1414,421,520,340,287,57600,36700,31500,8300,130,5.9,10,9,40.2,7620,9,999999999,270,0.0400,0,88,999.000,999.0,99.0 +1977,12,26,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,15.6,54,101200,965,1414,432,283,2,281,32600,200,32500,12070,120,6.2,10,10,40.2,7620,9,999999999,279,0.0400,0,88,999.000,999.0,99.0 +1977,12,26,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,25.2,15.6,55,101200,848,1414,418,261,54,236,29600,5400,26300,7790,120,6.5,10,9,40.2,7620,9,999999999,270,0.0400,0,88,999.000,999.0,99.0 +1977,12,26,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.8,15.5,55,101100,660,1414,416,134,40,122,15500,3900,13700,3870,120,6.9,10,9,40.2,7620,9,999999999,270,0.0400,0,88,999.000,999.0,99.0 +1977,12,26,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,15.0,56,101100,413,1414,404,39,18,36,4600,1600,4100,1090,120,7.2,10,8,40.2,7620,9,999999999,270,0.0400,0,88,999.000,999.0,99.0 +1977,12,26,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,23.5,16.1,64,101200,128,1332,409,0,0,0,0,0,0,0,90,5.3,10,9,40.2,5333,9,999999999,290,0.0400,0,88,999.000,999.0,99.0 +1977,12,26,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,22.6,17.1,71,101200,0,0,406,0,0,0,0,0,0,0,70,3.4,10,9,40.2,3047,9,999999999,300,0.0400,0,88,999.000,999.0,99.0 +1977,12,26,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,17.8,79,101300,0,0,413,0,0,0,0,0,0,0,40,1.5,10,10,19.3,760,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1977,12,26,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,21.5,18.1,81,101300,0,0,412,0,0,0,0,0,0,0,60,3.6,10,10,19.3,963,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1977,12,26,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,21.3,18.3,82,101300,0,0,411,0,0,0,0,0,0,0,70,5.6,10,10,19.3,1167,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1977,12,26,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,18.3,84,101300,0,0,410,0,0,0,0,0,0,0,90,7.7,10,10,24.1,1370,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1977,12,26,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,21.1,18.1,82,101200,0,0,399,0,0,0,0,0,0,0,90,7.2,9,9,24.1,1420,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1977,12,27,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,21.1,17.7,81,101200,0,0,390,0,0,0,0,0,0,0,90,6.7,8,8,24.1,1470,9,999999999,309,0.0400,0,88,999.000,999.0,99.0 +1977,12,27,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,17.2,79,101200,0,0,383,0,0,0,0,0,0,0,90,6.2,7,7,24.1,1520,9,999999999,309,0.0400,0,88,999.000,999.0,99.0 +1977,12,27,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,21.7,17.7,78,101100,0,0,393,0,0,0,0,0,0,0,110,7.2,8,8,24.1,1520,9,999999999,309,0.0400,0,88,999.000,999.0,99.0 +1977,12,27,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,22.2,18.1,77,101100,0,0,405,0,0,0,0,0,0,0,120,8.3,9,9,24.1,1520,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1977,12,27,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,18.3,76,101100,0,0,420,0,0,0,0,0,0,0,140,9.3,10,10,24.1,1520,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1977,12,27,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,22.8,18.3,76,101100,0,0,408,0,0,0,0,0,0,0,140,8.3,10,9,24.1,3553,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1977,12,27,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,22.8,18.1,76,101100,0,0,408,32,0,32,0,0,0,0,140,7.2,10,9,24.1,5587,9,999999999,320,0.0320,0,88,999.000,999.0,99.0 +1977,12,27,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,18.3,76,101200,104,1214,400,159,74,138,15600,5400,15100,1000,140,6.2,10,8,32.2,7620,9,999999999,320,0.0320,0,88,999.000,999.0,99.0 +1977,12,27,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,23.5,18.3,71,101200,388,1415,404,288,192,201,26500,16600,21900,4460,130,5.9,10,8,32.2,5587,9,999999999,320,0.0320,0,88,999.000,999.0,99.0 +1977,12,27,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.3,17.6,65,101300,639,1415,416,280,78,234,29500,7700,26000,6420,110,5.5,10,9,32.2,3553,9,999999999,309,0.0320,0,88,999.000,999.0,99.0 +1977,12,27,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,16.7,60,101300,834,1415,418,324,69,277,34900,7000,30800,8740,100,5.2,10,9,40.2,1520,9,999999999,300,0.0320,0,88,999.000,999.0,99.0 +1977,12,27,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.8,16.6,59,101300,958,1415,417,429,207,281,46400,21900,31500,8270,110,5.5,10,9,40.2,1520,9,999999999,290,0.0320,0,88,999.000,999.0,99.0 +1977,12,27,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.6,16.2,59,101200,1004,1415,427,268,30,248,29700,3000,27600,9250,130,5.9,10,10,40.2,1520,9,999999999,279,0.0320,0,88,999.000,999.0,99.0 +1977,12,27,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,15.6,58,101200,967,1415,425,146,8,141,17900,600,17500,7020,140,6.2,10,10,32.2,1520,9,999999999,279,0.0320,0,88,999.000,999.0,99.0 +1977,12,27,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.6,16.9,62,101200,850,1415,428,224,8,220,26000,700,25600,9460,130,6.2,10,10,32.2,3553,9,999999999,300,0.0320,0,88,999.000,999.0,99.0 +1977,12,27,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.8,18.1,65,101200,662,1415,419,144,34,134,16500,3300,15000,4200,130,6.2,10,9,32.2,5587,9,999999999,320,0.0320,0,88,999.000,999.0,99.0 +1977,12,27,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,18.9,69,101200,416,1415,421,54,79,46,7900,7100,5700,800,120,6.2,10,9,24.1,7620,9,999999999,340,0.0320,0,88,999.000,999.0,99.0 +1977,12,27,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.8,19.1,70,101300,131,1356,412,0,0,0,0,0,0,0,130,6.9,9,8,24.1,7620,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1977,12,27,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.6,19.1,70,101300,0,0,399,0,0,0,0,0,0,0,130,7.5,9,6,24.1,7620,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1977,12,27,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,18.9,71,101400,0,0,395,0,0,0,0,0,0,0,140,8.2,8,5,24.1,7620,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1977,12,27,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.4,18.8,70,101400,0,0,395,0,0,0,0,0,0,0,120,7.0,8,5,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1977,12,27,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.4,18.6,70,101400,0,0,391,0,0,0,0,0,0,0,110,5.8,8,4,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1977,12,27,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,18.3,69,101400,0,0,391,0,0,0,0,0,0,0,90,4.6,8,4,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1977,12,27,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,23.9,18.3,71,101400,0,0,395,0,0,0,0,0,0,0,100,3.9,9,6,24.1,77777,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1977,12,28,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,23.3,18.1,72,101400,0,0,396,0,0,0,0,0,0,0,110,3.3,9,7,24.1,77777,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1977,12,28,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,17.8,74,101400,0,0,408,0,0,0,0,0,0,0,120,2.6,10,9,24.1,1680,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1977,12,28,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,22.4,17.9,76,101500,0,0,397,0,0,0,0,0,0,0,100,2.4,9,8,24.1,1627,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1977,12,28,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,22.1,17.9,77,101500,0,0,395,0,0,0,0,0,0,0,80,2.3,9,8,24.1,1573,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1977,12,28,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,17.8,79,101500,0,0,387,0,0,0,0,0,0,0,60,2.1,8,7,24.1,1520,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1977,12,28,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,22.2,18.3,79,101500,0,0,390,0,0,0,0,0,0,0,70,2.9,8,7,24.1,1470,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1977,12,28,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,22.8,18.7,79,101600,0,0,400,43,96,33,0,0,0,0,90,3.8,8,8,24.1,1420,9,999999999,340,0.0230,0,88,999.000,999.0,99.0 +1977,12,28,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,19.4,79,101600,102,1191,404,145,153,103,11800,7300,11100,2160,100,4.6,8,8,40.2,1370,9,999999999,350,0.0230,0,88,999.000,999.0,99.0 +1977,12,28,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.4,19.9,74,101600,386,1415,404,217,49,195,22700,4500,21400,4080,110,5.0,7,7,40.2,77777,9,999999999,350,0.0230,0,88,999.000,999.0,99.0 +1977,12,28,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,25.6,19.8,70,101700,638,1415,402,455,405,216,42100,41100,23500,4890,120,5.3,5,5,40.2,77777,9,999999999,350,0.0230,0,88,999.000,999.0,99.0 +1977,12,28,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,19.4,65,101700,834,1415,405,654,704,176,61300,69800,20000,3970,130,5.7,4,4,40.2,77777,9,999999999,350,0.0230,0,88,999.000,999.0,99.0 +1977,12,28,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,26.9,19.7,64,101600,959,1415,406,444,401,158,47800,41700,19400,4130,140,5.0,4,4,40.2,77777,9,999999999,350,0.0230,0,88,999.000,999.0,99.0 +1977,12,28,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,27.0,19.7,64,101600,1004,1415,403,661,865,68,71800,86500,10100,2050,150,4.3,3,3,40.2,77777,9,999999999,350,0.0230,0,88,999.000,999.0,99.0 +1977,12,28,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,19.4,63,101500,968,1415,404,524,678,115,61500,68200,14600,3040,160,3.6,3,3,40.2,77777,9,999999999,350,0.0230,0,88,999.000,999.0,99.0 +1977,12,28,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,26.8,19.5,64,101500,852,1415,402,447,846,51,59500,83900,8700,1490,160,3.8,3,3,40.2,77777,9,999999999,350,0.0230,0,88,999.000,999.0,99.0 +1977,12,28,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,26.5,19.3,64,101500,665,1415,400,218,478,77,32500,47400,10100,1670,160,3.9,3,3,40.2,77777,9,999999999,340,0.0230,0,88,999.000,999.0,99.0 +1977,12,28,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,18.9,65,101500,418,1415,398,63,292,31,12900,26400,5100,640,160,4.1,3,3,40.2,77777,9,999999999,340,0.0230,0,88,999.000,999.0,99.0 +1977,12,28,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,25.0,19.1,70,101600,133,1356,388,0,0,0,0,0,0,0,120,3.8,2,2,40.2,77777,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1977,12,28,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,23.9,19.1,74,101600,0,0,377,0,0,0,0,0,0,0,70,3.4,1,1,40.2,77777,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1977,12,28,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,18.9,79,101700,0,0,365,0,0,0,0,0,0,0,30,3.1,0,0,24.1,77777,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1977,12,28,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,22.2,18.8,81,101700,0,0,361,0,0,0,0,0,0,0,20,2.1,0,0,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1977,12,28,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,21.7,18.6,82,101700,0,0,359,0,0,0,0,0,0,0,10,1.0,0,0,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1977,12,28,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,18.3,84,101800,0,0,356,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1977,12,28,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,20.7,18.4,86,101800,0,0,354,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1977,12,29,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,20.4,18.4,88,101700,0,0,352,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1977,12,29,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,18.3,90,101700,0,0,350,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1977,12,29,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,19.8,18.4,91,101700,0,0,349,0,0,0,0,0,0,0,350,0.9,0,0,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1977,12,29,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,19.6,18.4,92,101700,0,0,348,0,0,0,0,0,0,0,330,1.7,0,0,24.1,77777,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1977,12,29,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,18.3,93,101700,0,0,347,0,0,0,0,0,0,0,320,2.6,0,0,24.1,77777,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1977,12,29,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,19.4,18.3,93,101700,0,0,347,0,0,0,0,0,0,0,320,2.4,0,0,24.1,77777,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1977,12,29,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,19.4,18.1,93,101800,0,0,347,59,389,15,0,0,0,0,330,2.3,0,0,24.1,77777,9,999999999,320,0.0210,0,88,999.000,999.0,99.0 +1977,12,29,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,18.3,93,101800,101,1191,347,240,769,28,10100,49000,5700,250,330,2.1,0,0,40.2,77777,9,999999999,320,0.0210,0,88,999.000,999.0,99.0 +1977,12,29,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,21.8,19.2,84,101800,385,1415,367,412,823,39,27800,72500,8100,910,280,2.6,1,1,40.2,77777,9,999999999,340,0.0210,0,88,999.000,999.0,99.0 +1977,12,29,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.3,19.4,74,101800,637,1415,389,518,655,131,44000,62800,15500,2570,220,3.1,3,3,40.2,77777,9,999999999,350,0.0210,0,88,999.000,999.0,99.0 +1977,12,29,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,19.4,65,101800,833,1415,405,661,787,126,62700,79400,15800,2990,170,3.6,4,4,40.2,77777,9,999999999,350,0.0210,0,88,999.000,999.0,99.0 +1977,12,29,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,26.5,19.7,66,101800,959,1415,407,702,763,158,71700,77500,19000,4260,160,4.3,5,5,40.2,77777,9,999999999,350,0.0210,0,88,999.000,999.0,99.0 +1977,12,29,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,26.3,19.7,66,101700,1006,1415,409,699,729,198,75200,73600,22800,5570,150,5.0,6,6,40.2,77777,9,999999999,350,0.0210,0,88,999.000,999.0,99.0 +1977,12,29,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,19.4,67,101600,970,1415,413,304,184,193,35700,19900,22000,5100,140,5.7,7,7,40.2,1520,9,999999999,350,0.0210,0,88,999.000,999.0,99.0 +1977,12,29,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,25.9,20.0,69,101600,855,1415,412,220,132,158,26900,14000,18400,4290,170,5.2,7,7,40.2,1470,9,999999999,359,0.0210,0,88,999.000,999.0,99.0 +1977,12,29,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,25.8,20.5,72,101600,667,1415,408,229,447,97,32600,44000,11800,2050,190,4.6,6,6,40.2,1420,9,999999999,370,0.0210,0,88,999.000,999.0,99.0 +1977,12,29,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,20.6,74,101600,421,1415,407,58,79,49,8200,7200,6100,860,220,4.1,6,6,40.2,1370,9,999999999,370,0.0210,0,88,999.000,999.0,99.0 +1977,12,29,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,25.2,20.2,73,101600,136,1379,404,0,0,0,0,0,0,0,170,3.4,6,6,40.2,1320,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1977,12,29,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.8,19.7,72,101700,0,0,406,0,0,0,0,0,0,0,110,2.8,7,7,40.2,1270,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1977,12,29,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,18.9,71,101700,0,0,403,0,0,0,0,0,0,0,60,2.1,7,7,24.1,1220,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1977,12,29,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,23.9,18.8,73,101700,0,0,392,0,0,0,0,0,0,0,60,2.3,5,5,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1977,12,29,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,23.3,18.6,74,101700,0,0,379,0,0,0,0,0,0,0,70,2.4,2,2,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1977,12,29,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,18.3,76,101700,0,0,364,0,0,0,0,0,0,0,70,2.6,0,0,24.1,77777,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1977,12,29,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,21.9,18.3,80,101700,0,0,359,0,0,0,0,0,0,0,50,1.7,0,0,24.1,77777,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1977,12,30,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,20.9,18.1,83,101600,0,0,354,0,0,0,0,0,0,0,20,0.9,0,0,24.1,77777,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1977,12,30,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,17.8,87,101600,0,0,350,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1977,12,30,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,19.8,17.9,88,101600,0,0,349,0,0,0,0,0,0,0,10,0.5,0,0,24.1,77777,9,999999999,309,0.0400,0,88,999.000,999.0,99.0 +1977,12,30,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,19.6,17.9,89,101600,0,0,355,0,0,0,0,0,0,0,10,1.0,1,1,24.1,77777,9,999999999,309,0.0400,0,88,999.000,999.0,99.0 +1977,12,30,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,17.8,90,101600,0,0,354,0,0,0,0,0,0,0,20,1.5,1,1,24.1,77777,9,999999999,309,0.0400,0,88,999.000,999.0,99.0 +1977,12,30,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,19.6,17.9,90,101600,0,0,355,0,0,0,0,0,0,0,350,1.5,1,1,24.1,77777,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1977,12,30,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,19.8,17.9,90,101600,0,0,349,58,372,16,0,0,0,0,330,1.5,0,0,24.1,77777,9,999999999,320,0.0230,0,88,999.000,999.0,99.0 +1977,12,30,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,18.3,90,101600,99,1167,350,237,759,29,10000,48200,5800,210,300,1.5,0,0,40.2,77777,9,999999999,329,0.0230,0,88,999.000,999.0,99.0 +1977,12,30,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,22.0,19.2,82,101600,383,1415,361,441,880,42,29600,77400,8600,920,250,2.9,0,0,40.2,77777,9,999999999,340,0.0230,0,88,999.000,999.0,99.0 +1977,12,30,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.1,19.4,75,101600,636,1415,372,604,934,51,49900,90000,9200,1290,190,4.3,0,0,40.2,77777,9,999999999,350,0.0230,0,88,999.000,999.0,99.0 +1977,12,30,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,19.4,67,101600,833,1415,382,713,964,57,66000,95400,9600,1570,140,5.7,0,0,40.2,77777,9,999999999,350,0.0230,0,88,999.000,999.0,99.0 +1977,12,30,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,26.3,19.9,67,101500,959,1415,391,715,950,38,73000,95000,8400,1290,150,5.2,1,1,40.2,77777,9,999999999,350,0.0230,0,88,999.000,999.0,99.0 +1977,12,30,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,26.5,20.1,67,101400,1007,1415,397,647,816,86,69600,81500,11500,2340,160,4.6,2,2,40.2,77777,9,999999999,359,0.0230,0,88,999.000,999.0,99.0 +1977,12,30,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,20.0,67,101300,972,1415,402,463,598,102,55200,60500,13500,2810,170,4.1,3,3,40.2,77777,9,999999999,359,0.0230,0,88,999.000,999.0,99.0 +1977,12,30,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,26.3,20.0,68,101300,857,1415,400,387,611,98,50800,62400,12900,2450,180,3.8,3,3,40.2,77777,9,999999999,359,0.0230,0,88,999.000,999.0,99.0 +1977,12,30,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,26.0,19.9,68,101300,670,1415,394,257,633,69,39400,62100,9900,1550,190,3.4,2,2,40.2,77777,9,999999999,350,0.0230,0,88,999.000,999.0,99.0 +1977,12,30,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,19.4,69,101300,424,1415,392,68,348,28,14700,31800,5100,680,200,3.1,2,2,40.2,77777,9,999999999,350,0.0230,0,88,999.000,999.0,99.0 +1977,12,30,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,25.0,19.6,71,101400,139,1379,389,0,0,0,0,0,0,0,200,2.9,2,2,40.2,77777,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1977,12,30,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.5,19.6,74,101400,0,0,386,0,0,0,0,0,0,0,210,2.8,2,2,40.2,77777,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1977,12,30,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,19.4,76,101400,0,0,383,0,0,0,0,0,0,0,210,2.6,2,2,24.1,77777,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1977,12,30,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,23.5,19.5,78,101400,0,0,385,0,0,0,0,0,0,0,220,2.2,3,3,24.1,77777,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1977,12,30,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,23.2,19.5,80,101500,0,0,389,0,0,0,0,0,0,0,220,1.9,5,5,24.1,77777,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1977,12,30,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,19.4,82,101500,0,0,390,0,0,0,0,0,0,0,230,1.5,6,6,24.1,1370,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1977,12,30,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,22.8,19.5,82,101400,0,0,390,0,0,0,0,0,0,0,170,1.5,6,6,24.1,1827,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1977,12,31,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,22.8,19.5,82,101400,0,0,390,0,0,0,0,0,0,0,120,1.5,6,6,24.1,2283,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1977,12,31,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,19.4,82,101400,0,0,390,0,0,0,0,0,0,0,60,1.5,6,6,24.1,2740,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1977,12,31,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,22.2,19.7,86,101300,0,0,392,0,0,0,0,0,0,0,20,1.7,7,7,24.1,2000,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1977,12,31,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,21.7,19.9,89,101300,0,0,404,0,0,0,0,0,0,0,350,1.9,9,9,24.1,1260,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1977,12,31,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,20.0,93,101300,0,0,412,0,0,0,0,0,0,0,310,2.1,10,10,8.0,520,9,999999999,359,0.0400,0,88,999.000,999.0,99.0 +1977,12,31,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,21.1,19.8,92,101400,0,0,412,0,0,0,0,0,0,0,350,2.1,10,10,8.0,580,9,999999999,350,0.0400,0,88,999.000,999.0,99.0 +1977,12,31,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,21.1,19.4,91,101400,0,0,412,27,2,27,0,0,0,0,40,2.1,10,10,8.0,640,9,999999999,350,0.0280,0,88,999.000,999.0,99.0 +1977,12,31,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,19.4,90,101500,98,1167,412,111,10,108,10800,500,10800,650,80,2.1,10,10,32.2,700,9,999999999,350,0.0280,0,88,999.000,999.0,99.0 +1977,12,31,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,21.8,19.9,86,101500,382,1415,416,170,8,167,18100,600,18000,4540,120,2.1,10,10,32.2,923,9,999999999,350,0.0280,0,88,999.000,999.0,99.0 +1977,12,31,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,22.6,19.8,83,101500,636,1415,421,244,0,244,26900,0,26900,8260,160,2.1,10,10,32.2,1147,9,999999999,350,0.0280,0,88,999.000,999.0,99.0 +1977,12,31,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,19.4,79,101600,833,1415,424,366,2,364,40400,200,40300,12500,200,2.1,10,10,32.2,1370,9,999999999,350,0.0280,0,88,999.000,999.0,99.0 +1977,12,31,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.1,19.5,75,101500,960,1415,429,357,1,356,40400,100,40300,13920,140,2.4,10,10,32.2,1370,9,999999999,350,0.0280,0,88,999.000,999.0,99.0 +1977,12,31,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.8,19.3,71,101400,1008,1415,421,313,118,232,35400,12600,26400,7150,80,2.8,10,9,32.2,1370,9,999999999,340,0.0280,0,88,999.000,999.0,99.0 +1977,12,31,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,18.9,67,101300,974,1415,425,243,50,212,27300,5000,23800,7880,20,3.1,10,9,32.2,1370,9,999999999,340,0.0280,0,88,999.000,999.0,99.0 +1977,12,31,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.5,18.9,71,101300,859,1415,419,293,91,250,33600,9200,28000,8240,20,3.6,10,9,32.2,1420,9,999999999,340,0.0280,0,88,999.000,999.0,99.0 +1977,12,31,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,23.3,18.8,75,101400,673,1415,423,101,5,99,12100,300,12000,4510,10,4.1,10,10,32.2,1470,9,999999999,329,0.0280,0,88,999.000,999.0,99.0 +1977,12,31,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,18.3,79,101400,428,1415,416,24,7,23,2800,600,2600,720,10,4.6,10,10,16.1,1520,9,999999999,329,0.0280,0,88,999.000,999.0,99.0 +1977,12,31,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,21.8,18.7,82,101500,142,1403,415,0,0,0,0,0,0,0,10,3.1,10,10,16.1,1520,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1977,12,31,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,21.5,18.9,84,101500,0,0,413,0,0,0,0,0,0,0,360,1.5,10,10,16.1,1520,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1977,12,31,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,18.9,87,101600,0,0,411,0,0,0,0,0,0,0,0,0.0,10,10,19.3,1520,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 +1977,12,31,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,21.3,18.7,84,101600,0,0,401,0,0,0,0,0,0,0,10,1.2,9,9,19.3,1520,9,999999999,329,0.0400,0,88,999.000,999.0,99.0 +1977,12,31,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,21.5,18.3,82,101600,0,0,387,0,0,0,0,0,0,0,20,2.4,7,7,19.3,1520,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1977,12,31,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,17.8,79,101600,0,0,383,0,0,0,0,0,0,0,30,3.6,6,6,24.1,1520,9,999999999,320,0.0400,0,88,999.000,999.0,99.0 +1977,12,31,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,18.9,82,101600,0,0,391,0,0,0,0,0,0,0,20,5.2,7,7,24.1,1520,9,999999999,340,0.0400,0,88,999.000,999.0,99.0 diff --git a/example_files/resources/hpxml-measures/weather/USA_MT_Helena.Rgnl.AP.727720_TMY3-cache.csv b/example_files/resources/hpxml-measures/weather/USA_MT_Helena.Rgnl.AP.727720_TMY3-cache.csv new file mode 100644 index 00000000..6774846d --- /dev/null +++ b/example_files/resources/hpxml-measures/weather/USA_MT_Helena.Rgnl.AP.727720_TMY3-cache.csv @@ -0,0 +1,35 @@ +WeatherHeader.City,String,Helena Regional Airport +WeatherHeader.State,String,MT +WeatherHeader.Country,String,USA +WeatherHeader.DataSource,String,TMY3 +WeatherHeader.Station,String,727720 +WeatherHeader.Latitude,Float,46.6 +WeatherHeader.Longitude,Float,-111.97 +WeatherHeader.Timezone,Float,-7.0 +WeatherHeader.Altitude,Float,3828.740157480315 +WeatherHeader.LocalPressure,Float,0.8685782167285727 +WeatherHeader.RecordsPerHour,Fixnum,1 +WeatherData.AnnualAvgDrybulb,Float,44.89239726027402 +WeatherData.AnnualMinDrybulb,Float,-11.920000000000002 +WeatherData.AnnualMaxDrybulb,Float,95.0 +WeatherData.CDD50F,Float,1918.2525000000014 +WeatherData.CDD65F,Float,316.50750000000016 +WeatherData.HDD50F,Float,3782.527500000002 +WeatherData.HDD65F,Float,7655.782500000005 +WeatherData.AnnualAvgWindspeed,Float,3.2548059360729122 +WeatherData.MonthlyAvgDrybulbs,Array,23.495725806451617,25.39598214285714,35.862983870967746,43.150499999999994,53.30483870967741,63.23500000000002,68.94548387096773,65.36725806451614,58.453250000000025,43.26427419354839,34.01,22.958629032258067 +WeatherData.GroundMonthlyTemps,Array,36.59035182870804,33.073164939178696,32.79149599968258,34.460580894354166,41.16102665924251,47.83025890527921,53.61212683048524,57.27479795895971,57.58596198894605,54.606994636929414,48.97256773843611,42.507920373447405 +WeatherData.WSF,Float,0.63 +WeatherData.MonthlyAvgDailyHighDrybulbs,Array,33.85806451612903,32.668571428571425,46.29548387096774,55.538,64.18516129032258,75.386,83.10838709677418,78.74774193548387,71.246,55.13290322580646,44.804,32.33096774193548 +WeatherData.MonthlyAvgDailyLowDrybulbs,Array,12.606451612903228,17.927857142857146,26.036774193548386,31.298,41.51096774193549,50.648,54.976129032258065,52.11935483870967,47.3,33.236774193548385,24.355999999999998,14.197419354838711 +WeatherDesign.HeatingDrybulb,Float,-8.14 +WeatherDesign.HeatingWindspeed,Float,10.9 +WeatherDesign.CoolingDrybulb,Float,89.24000000000001 +WeatherDesign.CoolingWetbulb,Float,60.620000000000005 +WeatherDesign.CoolingHumidityRatio,Float,0.006230179125448771 +WeatherDesign.CoolingWindspeed,Float,4.9 +WeatherDesign.DailyTemperatureRange,Float,28.980000000000004 +WeatherDesign.DehumidDrybulb,Float,67.28 +WeatherDesign.DehumidHumidityRatio,Float,0.010202356266712235 +WeatherDesign.CoolingDirectNormal,Float,949.0 +WeatherDesign.CoolingDiffuseHorizontal,Float,103.0 diff --git a/example_files/resources/hpxml-measures/weather/USA_MT_Helena.Rgnl.AP.727720_TMY3.epw b/example_files/resources/hpxml-measures/weather/USA_MT_Helena.Rgnl.AP.727720_TMY3.epw new file mode 100644 index 00000000..f7d8d4d2 --- /dev/null +++ b/example_files/resources/hpxml-measures/weather/USA_MT_Helena.Rgnl.AP.727720_TMY3.epw @@ -0,0 +1,8768 @@ +LOCATION,Helena Regional Airport,MT,USA,TMY3,727720,46.60,-111.97,-7.0,1167.0 +DESIGN CONDITIONS,1,Climate Design Data 2009 ASHRAE Handbook,,Heating,12,-26.3,-22.3,-30.4,0.3,-25.8,-26.1,0.4,-21.7,12,4.1,10.9,3.3,1.6,300,Cooling,7,16.1,33.7,16.4,31.8,15.9,29.9,15.5,18,29.1,17.2,28.3,16.4,27.3,4.9,290,14.7,12,20.5,13.4,11.1,20.1,12.2,10.2,19.6,55.4,29,52.4,28.3,49.8,27.1,688,Extremes,10.9,9.2,8.2,24.8,-29.8,36.8,4.9,1.6,-33.3,38,-36.2,38.9,-38.9,39.8,-42.5,41 +TYPICAL/EXTREME PERIODS,6,Summer - Week Nearest Max Temperature For Period,Extreme,8/ 3,8/ 9,Summer - Week Nearest Average Temperature For Period,Typical,8/10,8/16,Winter - Week Nearest Min Temperature For Period,Extreme,12/22,12/28,Winter - Week Nearest Average Temperature For Period,Typical,12/22,1/ 5,Autumn - Week Nearest Average Temperature For Period,Typical,9/29,10/ 5,Spring - Week Nearest Average Temperature For Period,Typical,4/26,5/ 2 +GROUND TEMPERATURES,3,.5,,,,-3.39,-4.42,-2.59,0.28,7.78,13.56,17.47,18.65,16.63,12.14,6.13,0.56,2,,,,0.41,-1.43,-1.05,0.47,5.49,10.02,13.65,15.60,15.18,12.64,8.50,4.11,4,,,,3.56,1.67,1.26,1.83,4.67,7.73,10.53,12.48,12.93,11.83,9.40,6.43 +HOLIDAYS/DAYLIGHT SAVINGS,No,0,0,0 +COMMENTS 1,Custom/User Format -- WMO#727720; NREL TMY Data Set (2008); Period of Record 1973-2005 (Generally) +COMMENTS 2, -- Ground temps produced with a standard soil diffusivity of 2.3225760E-03 {m**2/day} +DATA PERIODS,1,1,Data,Sunday, 1/ 1,12/31 +1987,1,1,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-16.7,-17.2,96,88200,0,0,181,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,40,0.0000,0,88,999.000,999.0,99.0 +1987,1,1,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-16.7,-17.8,91,88200,0,0,180,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,40,0.0000,0,88,999.000,999.0,99.0 +1987,1,1,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-15.6,-17.2,87,88100,0,0,184,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,40,0.0000,0,88,999.000,999.0,99.0 +1987,1,1,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-17.2,-18.9,87,88100,0,0,190,0,0,0,0,0,0,0,0,0.0,6,6,24.1,3660,9,999999999,40,0.0000,0,88,999.000,999.0,99.0 +1987,1,1,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-14.4,-15.6,91,88100,0,0,207,0,0,0,0,0,0,0,0,0.0,9,8,24.1,3660,9,999999999,50,0.0000,0,88,999.000,999.0,99.0 +1987,1,1,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-14.4,-16.1,87,88000,0,0,188,0,0,0,0,0,0,0,0,0.0,2,0,24.1,77777,9,999999999,50,0.0000,0,88,999.000,999.0,99.0 +1987,1,1,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-16.7,-17.8,91,87900,0,0,184,0,0,0,0,0,0,0,240,2.1,4,1,24.1,77777,9,999999999,40,0.0000,0,88,999.000,999.0,99.0 +1987,1,1,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-16.7,-18.3,87,87900,0,0,186,0,0,0,0,0,0,0,210,1.5,2,2,24.1,77777,9,999999999,40,0.0000,0,88,999.000,999.0,99.0 +1987,1,1,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-15.0,-17.2,83,87800,54,1073,192,31,167,18,2742,6991,2360,314,240,1.5,6,2,64.4,77777,9,999999999,40,0.0250,0,88,999.000,999.0,99.0 +1987,1,1,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-11.1,-13.3,84,87700,228,1415,209,117,337,62,11922,22678,8244,1144,0,0.0,10,3,64.4,77777,9,999999999,50,0.0250,0,88,999.000,999.0,99.0 +1987,1,1,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-11.7,-13.9,84,87600,370,1415,206,203,437,88,21124,36774,11458,1631,350,1.5,10,3,64.4,77777,9,999999999,50,0.0250,0,88,999.000,999.0,99.0 +1987,1,1,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-9.4,-13.3,74,87400,460,1415,216,262,463,111,27376,42005,13650,2104,0,0.0,10,4,64.4,77777,9,999999999,50,0.0250,0,88,999.000,999.0,99.0 +1987,1,1,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-7.2,-12.8,65,87200,492,1415,225,243,173,183,26043,16336,20337,4184,280,1.5,10,5,64.4,77777,9,999999999,50,0.0250,0,88,999.000,999.0,99.0 +1987,1,1,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-5.0,-11.7,60,87200,463,1415,232,257,448,111,26986,40730,13590,2105,280,2.1,10,4,64.4,77777,9,999999999,60,0.0250,0,88,999.000,999.0,99.0 +1987,1,1,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-3.3,-11.1,55,87100,376,1415,246,170,98,144,18571,8803,16221,3373,300,1.5,10,7,64.4,3660,9,999999999,60,0.0250,0,88,999.000,999.0,99.0 +1987,1,1,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-3.3,-10.0,60,87100,236,1415,256,92,113,73,9903,8105,8541,1555,0,0.0,10,9,64.4,1370,9,999999999,60,0.0250,0,88,999.000,999.0,99.0 +1987,1,1,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-3.3,-8.9,66,87100,61,1144,252,28,43,24,2879,1760,2777,495,180,2.1,10,8,24.1,1370,9,999999999,69,0.0250,0,88,999.000,999.0,99.0 +1987,1,1,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-6.7,-9.4,81,87100,0,0,239,0,0,0,0,0,0,0,270,3.1,10,8,24.1,1370,9,999999999,60,0.0250,0,88,999.000,999.0,99.0 +1987,1,1,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-4.4,-7.8,78,87200,0,0,261,0,0,0,0,0,0,0,20,2.1,10,10,24.1,1370,9,999999999,69,0.0250,0,88,999.000,999.0,99.0 +1987,1,1,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-3.9,-7.8,75,87100,0,0,256,0,0,0,0,0,0,0,200,2.1,10,9,24.1,1520,9,999999999,69,0.0250,0,88,999.000,999.0,99.0 +1987,1,1,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-6.7,-9.4,81,87100,0,0,232,0,0,0,0,0,0,0,220,1.5,7,6,24.1,1520,9,999999999,60,0.0250,0,88,999.000,999.0,99.0 +1987,1,1,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-7.8,-9.4,88,87000,0,0,235,0,0,0,0,0,0,0,240,2.6,10,8,24.1,3050,9,999999999,60,0.0250,0,88,999.000,999.0,99.0 +1987,1,1,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-7.8,-10.0,84,87100,0,0,228,0,0,0,0,0,0,0,230,2.1,10,6,24.1,3050,9,999999999,60,0.0250,0,88,999.000,999.0,99.0 +1987,1,1,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-6.7,-8.3,88,87100,0,0,233,0,0,0,0,0,0,0,200,1.5,8,6,24.1,7620,9,999999999,69,0.0250,0,88,999.000,999.0,99.0 +1987,1,2,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-6.7,-8.3,88,87100,0,0,240,0,0,0,0,0,0,0,0,0.0,10,8,24.1,7620,9,999999999,69,0.0250,0,88,999.000,999.0,99.0 +1987,1,2,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-6.1,-8.9,81,87200,0,0,253,0,0,0,0,0,0,0,10,1.5,10,10,24.1,3660,9,999999999,69,0.0250,0,88,999.000,999.0,99.0 +1987,1,2,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-3.9,-6.7,81,87300,0,0,264,0,0,0,0,0,0,0,240,2.1,10,10,24.1,3660,9,999999999,69,0.0250,0,88,999.000,999.0,99.0 +1987,1,2,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-3.3,-6.7,78,87400,0,0,250,0,0,0,0,0,0,0,180,2.1,8,7,24.1,3660,9,999999999,69,0.0250,0,88,999.000,999.0,99.0 +1987,1,2,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-7.8,-9.4,88,87500,0,0,231,0,0,0,0,0,0,0,280,1.5,8,7,24.1,3660,9,999999999,60,0.0250,0,88,999.000,999.0,99.0 +1987,1,2,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-7.2,-9.4,84,87700,0,0,233,0,0,0,0,0,0,0,270,1.5,8,7,24.1,3660,9,999999999,60,0.0250,0,88,999.000,999.0,99.0 +1987,1,2,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-1.1,-3.9,82,87800,0,0,265,0,0,0,0,0,0,0,250,5.2,8,8,24.1,3660,9,999999999,89,0.0250,0,88,999.000,999.0,99.0 +1987,1,2,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,0.0,-5.0,69,87900,0,0,254,0,0,0,0,0,0,0,260,5.7,5,3,24.1,77777,9,999999999,80,0.0250,0,88,999.000,999.0,99.0 +1987,1,2,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.1,-6.1,59,88000,54,1073,258,26,97,18,2400,3500,2300,320,260,7.2,3,3,48.3,77777,9,999999999,80,0.0410,0,88,999.000,999.0,99.0 +1987,1,2,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,-6.7,52,88000,228,1415,261,100,263,57,10300,17800,7400,1040,260,4.6,3,3,48.3,77777,9,999999999,69,0.0410,0,88,999.000,999.0,99.0 +1987,1,2,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,-7.2,45,88100,371,1415,271,109,80,88,12000,7000,10100,1940,80,3.6,6,5,48.3,1250,9,999999999,69,0.0410,0,88,999.000,999.0,99.0 +1987,1,2,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,-6.7,47,88200,461,1415,270,234,365,115,24400,33100,13600,2190,250,5.2,8,4,48.3,77777,9,999999999,80,0.0410,0,88,999.000,999.0,99.0 +1987,1,2,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,-7.8,46,88200,494,1415,262,324,660,93,33400,60400,12200,1750,260,6.2,6,3,48.3,77777,9,999999999,69,0.0410,0,88,999.000,999.0,99.0 +1987,1,2,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,-7.2,45,88200,465,1415,261,299,765,47,31600,70100,8400,1070,270,8.2,1,1,48.3,77777,9,999999999,69,0.0410,0,88,999.000,999.0,99.0 +1987,1,2,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,-8.3,43,88200,378,1415,253,231,703,43,24300,61400,7700,900,300,3.6,2,0,48.3,77777,9,999999999,69,0.0410,0,88,999.000,999.0,99.0 +1987,1,2,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,-7.8,44,88200,239,1415,258,124,507,39,12900,36500,6700,710,270,2.6,4,1,64.4,77777,9,999999999,69,0.0410,0,88,999.000,999.0,99.0 +1987,1,2,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.6,-8.3,52,88200,64,1167,248,31,182,17,2800,8000,2400,300,300,4.6,4,1,64.4,77777,9,999999999,69,0.0410,0,88,999.000,999.0,99.0 +1987,1,2,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-1.7,-8.3,61,88300,0,0,249,0,0,0,0,0,0,0,220,2.1,7,5,24.1,7620,9,999999999,69,0.0410,0,88,999.000,999.0,99.0 +1987,1,2,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-1.1,-8.9,56,88300,0,0,253,0,0,0,0,0,0,0,210,2.1,8,6,24.1,7620,9,999999999,69,0.0410,0,88,999.000,999.0,99.0 +1987,1,2,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-2.8,-8.3,66,88300,0,0,247,0,0,0,0,0,0,0,250,3.1,8,6,24.1,7620,9,999999999,69,0.0410,0,88,999.000,999.0,99.0 +1987,1,2,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-3.9,-8.9,69,88300,0,0,234,0,0,0,0,0,0,0,130,3.1,4,2,24.1,77777,9,999999999,69,0.0410,0,88,999.000,999.0,99.0 +1987,1,2,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-5.6,-9.4,74,88200,0,0,230,0,0,0,0,0,0,0,0,0.0,5,3,24.1,77777,9,999999999,60,0.0410,0,88,999.000,999.0,99.0 +1987,1,2,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-4.4,-8.3,75,88100,0,0,236,0,0,0,0,0,0,0,330,2.1,5,3,24.1,77777,9,999999999,69,0.0410,0,88,999.000,999.0,99.0 +1987,1,2,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-5.0,-7.5,81,88100,0,0,236,0,0,0,0,0,0,0,270,2.1,6,4,24.1,77777,9,999999999,69,0.0410,0,88,999.000,999.0,99.0 +1987,1,3,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-5.6,-8.1,81,88000,0,0,235,0,0,0,0,0,0,0,270,1.5,6,5,24.1,77777,9,999999999,69,0.0410,0,88,999.000,999.0,99.0 +1987,1,3,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-6.1,-9.4,75,87900,0,0,234,0,0,0,0,0,0,0,270,2.6,7,6,24.1,77777,9,999999999,69,0.0410,0,88,999.000,999.0,99.0 +1987,1,3,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-6.7,-8.5,85,87900,0,0,236,0,0,0,0,0,0,0,290,3.1,8,7,24.1,77777,9,999999999,69,0.0410,0,88,999.000,999.0,99.0 +1987,1,3,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-6.7,-8.7,84,87800,0,0,236,0,0,0,0,0,0,0,260,1.5,8,7,24.1,77777,9,999999999,69,0.0410,0,88,999.000,999.0,99.0 +1987,1,3,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-5.6,-9.9,69,87700,0,0,242,0,0,0,0,0,0,0,190,1.5,9,8,24.1,77777,9,999999999,69,0.0410,0,88,999.000,999.0,99.0 +1987,1,3,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-4.4,-8.9,72,87700,0,0,253,0,0,0,0,0,0,0,280,1.5,9,9,24.1,6100,9,999999999,69,0.0410,0,88,999.000,999.0,99.0 +1987,1,3,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-5.0,-8.9,75,87600,0,0,258,0,0,0,0,0,0,0,270,2.1,10,10,24.1,6100,9,999999999,69,0.0410,0,88,999.000,999.0,99.0 +1987,1,3,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-2.8,-8.9,63,87600,0,0,266,0,0,0,0,0,0,0,240,1.5,10,10,24.1,2440,9,999999999,69,0.0410,0,88,999.000,999.0,99.0 +1987,1,3,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,-7.8,44,87500,54,1073,292,13,3,13,1500,0,1500,460,180,9.3,10,10,24.1,6100,9,999999999,69,0.0280,0,88,999.000,999.0,99.0 +1987,1,3,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,-7.2,43,87400,229,1415,298,71,1,71,7800,0,7800,2180,190,10.3,10,10,24.1,5490,9,999999999,69,0.0280,0,88,999.000,999.0,99.0 +1987,1,3,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,-6.7,43,87400,372,1415,301,143,8,141,15500,500,15400,4190,190,5.2,10,10,24.1,5490,9,999999999,69,0.0280,0,88,999.000,999.0,99.0 +1987,1,3,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,-6.7,41,87200,463,1415,303,161,10,158,17800,700,17500,5220,180,7.2,10,10,64.4,5490,9,999999999,69,0.0280,0,88,999.000,999.0,99.0 +1987,1,3,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,-6.7,38,87100,496,1415,293,212,77,185,23200,7300,20600,4660,180,10.3,10,8,64.4,5490,9,999999999,69,0.0280,0,88,999.000,999.0,99.0 +1987,1,3,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,-5.6,37,87000,468,1415,301,191,137,146,20700,12800,16400,3310,180,7.7,10,8,64.4,5490,9,999999999,80,0.0280,0,88,999.000,999.0,99.0 +1987,1,3,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,-5.6,40,87000,381,1415,297,178,244,113,18800,21100,13100,2270,170,6.2,10,8,64.4,5490,9,999999999,80,0.0280,0,88,999.000,999.0,99.0 +1987,1,3,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,-4.4,47,86900,242,1415,308,55,3,55,6200,100,6200,1910,130,3.1,10,10,64.4,1520,9,999999999,80,0.0280,0,88,999.000,999.0,99.0 +1987,1,3,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,-5.6,40,86900,67,1191,312,20,3,19,2200,0,2200,640,200,10.3,10,10,64.4,3050,9,999999999,80,0.0280,0,88,999.000,999.0,99.0 +1987,1,3,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,7.2,-5.6,40,87000,0,0,312,0,0,0,0,0,0,0,190,5.2,10,10,24.1,6100,9,999999999,80,0.0280,0,88,999.000,999.0,99.0 +1987,1,3,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,7.2,-5.6,40,87000,0,0,312,0,0,0,0,0,0,0,200,6.2,10,10,24.1,1520,9,999999999,80,0.0280,0,88,999.000,999.0,99.0 +1987,1,3,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,6.7,-4.4,45,87000,0,0,311,0,0,0,0,0,0,0,220,6.7,10,10,24.1,3050,9,999999999,80,0.0280,0,88,999.000,999.0,99.0 +1987,1,3,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,6.1,-3.9,49,87100,0,0,309,0,0,0,0,0,0,0,220,7.2,10,10,24.1,3050,9,999999999,89,0.0280,0,88,999.000,999.0,99.0 +1987,1,3,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,5.6,-3.9,51,87100,0,0,307,0,0,0,0,0,0,0,220,5.2,10,10,24.1,1370,9,999999999,89,0.0280,0,88,999.000,999.0,99.0 +1987,1,3,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,4.4,-2.2,62,87100,0,0,289,0,0,0,0,0,0,0,200,4.6,8,8,24.1,1370,9,999999999,89,0.0280,0,88,999.000,999.0,99.0 +1987,1,3,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,2.2,-1.4,76,87200,0,0,280,0,0,0,0,0,0,0,230,1.5,8,8,24.1,77777,9,999999999,89,0.0280,0,88,999.000,999.0,99.0 +1987,1,4,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,2.8,-2.0,69,87200,0,0,288,0,0,0,0,0,0,0,270,2.1,9,9,24.1,77777,9,999999999,89,0.0280,0,88,999.000,999.0,99.0 +1987,1,4,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,2.2,-3.3,65,87300,0,0,284,0,0,0,0,0,0,0,230,2.6,9,9,24.1,77777,9,999999999,89,0.0280,0,88,999.000,999.0,99.0 +1987,1,4,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,3.3,-2.4,65,87300,0,0,290,0,0,0,0,0,0,0,270,3.6,9,9,24.1,77777,9,999999999,89,0.0280,0,88,999.000,999.0,99.0 +1987,1,4,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,1.1,-2.6,74,87300,0,0,281,0,0,0,0,0,0,0,0,0.0,9,9,24.1,77777,9,999999999,89,0.0280,0,88,999.000,999.0,99.0 +1987,1,4,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,2.2,-3.8,62,87300,0,0,292,0,0,0,0,0,0,0,180,2.1,10,10,24.1,77777,9,999999999,89,0.0280,0,88,999.000,999.0,99.0 +1987,1,4,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-1.7,-2.8,92,87300,0,0,277,0,0,0,0,0,0,0,340,2.1,10,10,24.1,3660,9,999999999,89,0.0280,0,88,999.000,999.0,99.0 +1987,1,4,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-1.7,-2.2,96,87400,0,0,277,0,0,0,0,0,0,0,230,3.1,10,10,24.1,3660,9,999999999,89,0.0280,0,88,999.000,999.0,99.0 +1987,1,4,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-1.7,-3.3,89,87400,0,0,276,0,0,0,0,0,0,0,220,1.5,10,10,24.1,3660,9,999999999,89,0.0280,0,88,999.000,999.0,99.0 +1987,1,4,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-2.8,-4.4,89,87400,55,1097,258,15,12,14,1600,600,1600,350,330,1.5,10,8,48.3,3660,9,999999999,80,0.0330,0,88,999.000,999.0,99.0 +1987,1,4,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.1,-2.2,92,87400,230,1415,262,77,97,61,8400,6900,7200,1300,220,1.5,10,7,48.3,3660,9,999999999,89,0.0330,0,88,999.000,999.0,99.0 +1987,1,4,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.0,-1.7,89,87500,373,1415,277,97,45,85,10600,3900,9600,2270,0,0.0,10,9,48.3,3660,9,999999999,100,0.0330,0,88,999.000,999.0,99.0 +1987,1,4,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.6,-1.7,85,87400,465,1415,269,219,131,175,23300,12200,19300,3970,50,1.5,10,7,48.3,3660,9,999999999,100,0.0330,0,88,999.000,999.0,99.0 +1987,1,4,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,-1.1,79,87400,498,1415,276,239,219,162,25900,20800,18500,3710,330,2.6,10,7,48.3,3660,9,999999999,100,0.0330,0,88,999.000,999.0,99.0 +1987,1,4,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,-2.2,67,87300,471,1415,274,231,306,129,24500,28700,15000,2620,350,3.1,10,5,48.3,3660,9,999999999,89,0.0330,0,88,999.000,999.0,99.0 +1987,1,4,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,-3.9,55,87300,384,1415,277,160,221,100,17000,19200,11800,1960,340,2.6,10,5,48.3,77777,9,999999999,89,0.0330,0,88,999.000,999.0,99.0 +1987,1,4,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,-4.4,53,87300,246,1415,274,85,156,58,9100,10900,7200,1080,280,3.1,10,4,64.4,77777,9,999999999,80,0.0330,0,88,999.000,999.0,99.0 +1987,1,4,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,-4.4,64,87400,70,1214,261,31,128,21,3000,4900,2700,370,250,4.1,8,3,64.4,77777,9,999999999,80,0.0330,0,88,999.000,999.0,99.0 +1987,1,4,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,0.6,-5.6,64,87400,0,0,258,0,0,0,0,0,0,0,280,4.1,8,4,24.1,77777,9,999999999,80,0.0330,0,88,999.000,999.0,99.0 +1987,1,4,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-1.7,-6.1,72,87500,0,0,251,0,0,0,0,0,0,0,270,3.6,10,5,24.1,77777,9,999999999,80,0.0330,0,88,999.000,999.0,99.0 +1987,1,4,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-1.7,-6.1,72,87500,0,0,256,0,0,0,0,0,0,0,280,3.1,10,7,24.1,6100,9,999999999,80,0.0330,0,88,999.000,999.0,99.0 +1987,1,4,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-2.2,-6.7,72,87500,0,0,271,0,0,0,0,0,0,0,290,3.6,10,10,24.1,6100,9,999999999,69,0.0330,0,88,999.000,999.0,99.0 +1987,1,4,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-2.2,-6.1,75,87500,0,0,271,0,0,0,0,0,0,0,0,0.0,10,10,24.1,3050,9,999999999,80,0.0330,0,88,999.000,999.0,99.0 +1987,1,4,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-2.2,-6.1,75,87500,0,0,271,0,0,0,0,0,0,0,0,0.0,10,10,24.1,3050,9,999999999,80,0.0330,0,88,999.000,999.0,99.0 +1987,1,4,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-2.8,-5.7,78,87500,0,0,262,0,0,0,0,0,0,0,180,2.1,10,9,24.1,77777,9,999999999,80,0.0330,0,88,999.000,999.0,99.0 +1987,1,5,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-1.7,-6.6,66,87500,0,0,260,0,0,0,0,0,0,0,230,2.6,10,8,24.1,77777,9,999999999,69,0.0330,0,88,999.000,999.0,99.0 +1987,1,5,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-2.8,-8.4,62,87500,0,0,250,0,0,0,0,0,0,0,0,0.0,10,7,24.1,77777,9,999999999,69,0.0330,0,88,999.000,999.0,99.0 +1987,1,5,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-2.2,-7.9,61,87600,0,0,253,0,0,0,0,0,0,0,0,0.0,10,7,24.1,77777,9,999999999,69,0.0330,0,88,999.000,999.0,99.0 +1987,1,5,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-2.8,-8.4,62,87600,0,0,247,0,0,0,0,0,0,0,0,0.0,10,6,24.1,77777,9,999999999,69,0.0330,0,88,999.000,999.0,99.0 +1987,1,5,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-3.9,-10.0,59,87600,0,0,239,0,0,0,0,0,0,0,0,0.0,10,5,24.1,77777,9,999999999,60,0.0330,0,88,999.000,999.0,99.0 +1987,1,5,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-7.2,-9.4,84,87600,0,0,227,0,0,0,0,0,0,0,220,2.1,10,4,24.1,77777,9,999999999,60,0.0330,0,88,999.000,999.0,99.0 +1987,1,5,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-8.3,-10.6,84,87600,0,0,220,0,0,0,0,0,0,0,200,1.5,10,3,24.1,77777,9,999999999,60,0.0330,0,88,999.000,999.0,99.0 +1987,1,5,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-8.9,-10.0,92,87600,0,0,210,0,0,0,0,0,0,0,0,0.0,0,0,32.2,77777,9,999999999,60,0.0330,0,88,999.000,999.0,99.0 +1987,1,5,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-8.3,-10.0,88,87600,55,1097,212,32,250,12,2600,12800,1900,250,170,2.1,0,0,64.4,77777,9,999999999,60,0.0320,0,88,999.000,999.0,99.0 +1987,1,5,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-4.4,-7.8,78,87700,231,1415,226,131,647,24,13800,49900,5600,590,0,0.0,0,0,64.4,77777,9,999999999,69,0.0320,0,88,999.000,999.0,99.0 +1987,1,5,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-2.8,-7.2,72,87700,375,1415,232,238,751,39,25200,65700,7700,900,0,0.0,3,0,64.4,77777,9,999999999,69,0.0320,0,88,999.000,999.0,99.0 +1987,1,5,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.7,-7.2,66,87600,467,1415,236,315,817,45,33300,75000,8500,1060,0,0.0,3,0,64.4,77777,9,999999999,69,0.0320,0,88,999.000,999.0,99.0 +1987,1,5,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.0,-6.7,61,87500,501,1415,247,312,736,51,33200,68900,8700,1110,100,2.1,2,1,64.4,77777,9,999999999,69,0.0320,0,88,999.000,999.0,99.0 +1987,1,5,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,-7.2,52,87500,474,1415,253,296,748,46,31400,68800,8200,1070,350,1.5,2,1,64.4,77777,9,999999999,69,0.0320,0,88,999.000,999.0,99.0 +1987,1,5,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,-6.1,57,87500,388,1415,249,231,629,60,24300,54300,9300,1130,100,1.5,9,0,64.4,77777,9,999999999,80,0.0320,0,88,999.000,999.0,99.0 +1987,1,5,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,-6.7,50,87500,249,1415,270,101,223,62,10700,15600,8000,1170,300,3.6,8,6,64.4,7620,9,999999999,69,0.0320,0,88,999.000,999.0,99.0 +1987,1,5,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.6,-5.6,64,87600,73,1238,270,24,5,23,2600,0,2600,740,290,2.6,8,8,64.4,1370,9,999999999,80,0.0320,0,88,999.000,999.0,99.0 +1987,1,5,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-0.6,-6.7,64,87700,0,0,277,0,0,0,0,0,0,0,280,4.1,10,10,24.1,1370,9,999999999,69,0.0320,0,88,999.000,999.0,99.0 +1987,1,5,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,0.0,-7.8,56,87700,0,0,279,0,0,0,0,0,0,0,310,2.1,10,10,24.1,1370,9,999999999,69,0.0320,0,88,999.000,999.0,99.0 +1987,1,5,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-0.6,-6.7,64,87800,0,0,277,0,0,0,0,0,0,0,290,2.6,10,10,24.1,1370,9,999999999,69,0.0320,0,88,999.000,999.0,99.0 +1987,1,5,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-1.1,-6.7,66,87900,0,0,275,0,0,0,0,0,0,0,270,3.1,10,10,24.1,1370,9,999999999,69,0.0320,0,88,999.000,999.0,99.0 +1987,1,5,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-2.8,-7.8,69,87900,0,0,254,0,0,0,0,0,0,0,270,3.6,8,8,24.1,1370,9,999999999,69,0.0320,0,88,999.000,999.0,99.0 +1987,1,5,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-2.2,-7.8,66,88000,0,0,262,0,0,0,0,0,0,0,260,3.6,9,9,24.1,1370,9,999999999,69,0.0320,0,88,999.000,999.0,99.0 +1987,1,5,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-2.2,-7.6,63,88100,0,0,257,0,0,0,0,0,0,0,270,2.1,8,8,24.1,77777,9,999999999,69,0.0320,0,88,999.000,999.0,99.0 +1987,1,6,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-2.8,-8.6,61,88100,0,0,250,0,0,0,0,0,0,0,270,3.1,7,7,24.1,77777,9,999999999,69,0.0320,0,88,999.000,999.0,99.0 +1987,1,6,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-3.3,-10.6,53,88100,0,0,243,0,0,0,0,0,0,0,230,3.1,6,6,24.1,77777,9,999999999,69,0.0320,0,88,999.000,999.0,99.0 +1987,1,6,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-3.3,-10.2,55,88200,0,0,241,0,0,0,0,0,0,0,230,2.6,5,5,24.1,77777,9,999999999,60,0.0320,0,88,999.000,999.0,99.0 +1987,1,6,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-6.7,-10.9,69,88200,0,0,225,0,0,0,0,0,0,0,40,1.5,3,3,24.1,77777,9,999999999,60,0.0320,0,88,999.000,999.0,99.0 +1987,1,6,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-7.2,-12.6,62,88200,0,0,220,0,0,0,0,0,0,0,180,1.5,2,2,24.1,77777,9,999999999,60,0.0320,0,88,999.000,999.0,99.0 +1987,1,6,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-10.0,-12.2,84,88300,0,0,208,0,0,0,0,0,0,0,0,0.0,1,1,24.1,77777,9,999999999,60,0.0320,0,88,999.000,999.0,99.0 +1987,1,6,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-10.6,-12.2,88,88300,0,0,203,0,0,0,0,0,0,0,190,2.6,0,0,24.1,77777,9,999999999,60,0.0320,0,88,999.000,999.0,99.0 +1987,1,6,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-10.6,-11.7,92,88300,0,0,203,0,0,0,0,0,0,0,110,1.5,1,0,32.2,77777,9,999999999,60,0.0320,0,88,999.000,999.0,99.0 +1987,1,6,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-11.1,-13.3,84,88400,56,1097,200,33,323,9,2900,18400,1900,250,0,0.0,0,0,64.4,77777,9,999999999,50,0.0160,0,88,999.000,999.0,99.0 +1987,1,6,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-7.2,-10.6,77,88400,232,1415,215,133,679,20,14100,52500,5400,550,0,0.0,1,0,64.4,77777,9,999999999,60,0.0160,0,88,999.000,999.0,99.0 +1987,1,6,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-6.7,-10.0,78,88400,376,1415,217,250,839,25,26700,73800,6900,730,0,0.0,0,0,64.4,77777,9,999999999,60,0.0160,0,88,999.000,999.0,99.0 +1987,1,6,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-3.3,-8.9,66,88400,469,1415,229,324,882,31,34700,81200,7600,890,310,2.1,1,0,64.4,77777,9,999999999,69,0.0160,0,88,999.000,999.0,99.0 +1987,1,6,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-2.2,-8.3,63,88400,503,1415,233,349,879,36,37200,81900,7900,990,0,0.0,2,0,64.4,77777,9,999999999,69,0.0160,0,88,999.000,999.0,99.0 +1987,1,6,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.0,-8.3,54,88300,477,1415,249,286,668,61,29700,61300,9000,1210,340,1.5,2,2,64.4,77777,9,999999999,69,0.0160,0,88,999.000,999.0,99.0 +1987,1,6,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-0.6,-7.8,59,88300,391,1415,247,235,635,60,24600,55000,9300,1140,0,0.0,2,2,64.4,77777,9,999999999,69,0.0160,0,88,999.000,999.0,99.0 +1987,1,6,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.1,-7.8,61,88300,253,1415,242,135,576,34,14100,44200,6100,670,0,0.0,3,1,64.4,77777,9,999999999,69,0.0160,0,88,999.000,999.0,99.0 +1987,1,6,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-3.3,-7.8,72,88400,76,1262,234,37,306,14,3400,16400,2400,280,0,0.0,3,1,64.4,77777,9,999999999,69,0.0160,0,88,999.000,999.0,99.0 +1987,1,6,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-6.7,-8.9,84,88400,0,0,218,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,69,0.0160,0,88,999.000,999.0,99.0 +1987,1,6,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-8.3,-10.0,88,88400,0,0,212,0,0,0,0,0,0,0,230,1.5,0,0,24.1,77777,9,999999999,60,0.0160,0,88,999.000,999.0,99.0 +1987,1,6,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-8.9,-10.6,88,88500,0,0,209,0,0,0,0,0,0,0,190,2.1,0,0,24.1,77777,9,999999999,60,0.0160,0,88,999.000,999.0,99.0 +1987,1,6,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-9.4,-11.7,84,88500,0,0,207,0,0,0,0,0,0,0,320,2.1,0,0,24.1,77777,9,999999999,60,0.0160,0,88,999.000,999.0,99.0 +1987,1,6,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-10.6,-12.2,88,88500,0,0,203,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,60,0.0160,0,88,999.000,999.0,99.0 +1987,1,6,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-10.0,-12.2,84,88500,0,0,204,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,60,0.0160,0,88,999.000,999.0,99.0 +1987,1,6,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-11.1,-11.8,94,88600,0,0,205,0,0,0,0,0,0,0,0,0.0,1,1,24.1,77777,9,999999999,60,0.0160,0,88,999.000,999.0,99.0 +1987,1,7,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-12.2,-12.8,95,88700,0,0,204,0,0,0,0,0,0,0,0,0.0,2,2,24.1,77777,9,999999999,60,0.0160,0,88,999.000,999.0,99.0 +1987,1,7,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-13.3,-14.5,90,88700,0,0,201,0,0,0,0,0,0,0,0,0.0,3,3,24.1,77777,9,999999999,60,0.0160,0,88,999.000,999.0,99.0 +1987,1,7,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-13.3,-14.0,94,88700,0,0,203,0,0,0,0,0,0,0,180,1.5,4,4,24.1,77777,9,999999999,50,0.0160,0,88,999.000,999.0,99.0 +1987,1,7,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-13.9,-14.6,94,88700,0,0,202,0,0,0,0,0,0,0,0,0.0,5,5,24.1,77777,9,999999999,50,0.0160,0,88,999.000,999.0,99.0 +1987,1,7,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-14.4,-16.2,85,88700,0,0,201,0,0,0,0,0,0,0,0,0.0,6,6,24.1,77777,9,999999999,50,0.0160,0,88,999.000,999.0,99.0 +1987,1,7,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-15.0,-15.6,96,88700,0,0,202,0,0,0,0,0,0,0,0,0.0,7,7,16.1,77777,9,999999999,50,0.0160,0,88,999.000,999.0,99.0 +1987,1,7,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-13.9,-15.0,91,88700,0,0,209,0,0,0,0,0,0,0,0,0.0,8,8,16.1,610,9,999999999,50,0.0160,0,88,999.000,999.0,99.0 +1987,1,7,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-13.3,-14.4,92,88700,0,0,212,0,0,0,0,0,0,0,330,1.5,8,8,16.1,610,9,999999999,50,0.0160,0,88,999.000,999.0,99.0 +1987,1,7,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-12.2,-13.3,92,88700,57,1097,209,29,115,20,2800,4100,2500,360,140,1.5,5,5,24.1,77777,9,999999999,50,0.0240,0,88,999.000,999.0,99.0 +1987,1,7,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-10.0,-11.1,92,88800,233,1415,214,132,548,41,13500,38900,7100,740,10,1.5,3,3,24.1,77777,9,999999999,60,0.0240,0,88,999.000,999.0,99.0 +1987,1,7,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-7.8,-10.6,81,88800,378,1415,220,246,769,40,26000,67500,7900,910,0,0.0,2,2,24.1,77777,9,999999999,60,0.0240,0,88,999.000,999.0,99.0 +1987,1,7,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-5.0,-9.4,71,88700,471,1415,232,275,636,63,29100,58500,9500,1240,10,1.5,4,3,32.2,77777,9,999999999,60,0.0240,0,88,999.000,999.0,99.0 +1987,1,7,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-4.4,-8.3,75,88700,506,1415,237,266,450,105,28300,42100,13200,1990,80,1.5,4,4,32.2,77777,9,999999999,69,0.0240,0,88,999.000,999.0,99.0 +1987,1,7,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-3.3,-8.3,69,88600,480,1415,237,279,665,53,29400,61500,8400,1120,100,2.1,2,2,32.2,77777,9,999999999,69,0.0240,0,88,999.000,999.0,99.0 +1987,1,7,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-2.8,-9.4,61,88600,395,1415,230,259,828,29,27800,73600,7200,810,120,2.6,0,0,64.4,77777,9,999999999,60,0.0240,0,88,999.000,999.0,99.0 +1987,1,7,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-3.3,-10.0,60,88600,257,1415,228,150,710,23,16200,56500,5900,610,120,2.1,0,0,64.4,77777,9,999999999,60,0.0240,0,88,999.000,999.0,99.0 +1987,1,7,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-6.7,-10.0,78,88700,79,1309,217,39,357,12,3800,21200,2400,290,200,2.1,0,0,64.4,77777,9,999999999,60,0.0240,0,88,999.000,999.0,99.0 +1987,1,7,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-9.4,-11.7,84,88700,0,0,207,0,0,0,0,0,0,0,240,2.1,0,0,24.1,77777,9,999999999,60,0.0240,0,88,999.000,999.0,99.0 +1987,1,7,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-10.0,-12.2,84,88700,0,0,204,0,0,0,0,0,0,0,230,2.6,0,0,24.1,77777,9,999999999,60,0.0240,0,88,999.000,999.0,99.0 +1987,1,7,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-11.1,-12.8,88,88700,0,0,201,0,0,0,0,0,0,0,240,2.6,0,0,24.1,77777,9,999999999,50,0.0240,0,88,999.000,999.0,99.0 +1987,1,7,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-10.0,-11.7,88,88700,0,0,205,0,0,0,0,0,0,0,210,2.1,0,0,24.1,77777,9,999999999,60,0.0240,0,88,999.000,999.0,99.0 +1987,1,7,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-12.2,-13.9,88,88700,0,0,196,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,50,0.0240,0,88,999.000,999.0,99.0 +1987,1,7,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-13.3,-14.4,92,88800,0,0,193,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,50,0.0240,0,88,999.000,999.0,99.0 +1987,1,7,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-13.9,-14.0,99,88800,0,0,191,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,50,0.0240,0,88,999.000,999.0,99.0 +1987,1,8,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-14.4,-15.0,95,88800,0,0,193,0,0,0,0,0,0,0,0,0.0,1,1,24.1,77777,9,999999999,50,0.0240,0,88,999.000,999.0,99.0 +1987,1,8,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-15.0,-16.7,85,88800,0,0,190,0,0,0,0,0,0,0,0,0.0,1,1,24.1,77777,9,999999999,50,0.0240,0,88,999.000,999.0,99.0 +1987,1,8,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-15.6,-16.2,95,88800,0,0,188,0,0,0,0,0,0,0,0,0.0,1,1,24.1,77777,9,999999999,40,0.0240,0,88,999.000,999.0,99.0 +1987,1,8,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-15.6,-16.8,89,88800,0,0,188,0,0,0,0,0,0,0,0,0.0,1,1,24.1,77777,9,999999999,40,0.0240,0,88,999.000,999.0,99.0 +1987,1,8,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-16.1,-18.4,81,88800,0,0,188,0,0,0,0,0,0,0,190,1.5,2,2,24.1,77777,9,999999999,40,0.0240,0,88,999.000,999.0,99.0 +1987,1,8,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-16.7,-17.8,91,88800,0,0,186,0,0,0,0,0,0,0,0,0.0,2,2,24.1,77777,9,999999999,40,0.0240,0,88,999.000,999.0,99.0 +1987,1,8,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-16.1,-17.8,87,88800,0,0,188,0,0,0,0,0,0,0,300,1.5,2,2,24.1,77777,9,999999999,40,0.0240,0,88,999.000,999.0,99.0 +1987,1,8,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-17.2,-18.3,91,88800,0,0,185,0,0,0,0,0,0,0,0,0.0,2,2,24.1,77777,9,999999999,40,0.0240,0,88,999.000,999.0,99.0 +1987,1,8,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-16.7,-17.8,91,88900,57,1096,188,29,128,19,2700,4600,2500,340,0,0.0,3,3,32.2,77777,9,999999999,40,0.0160,0,88,999.000,999.0,99.0 +1987,1,8,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-13.9,-15.6,87,89000,235,1415,198,101,400,34,10500,28800,5700,630,0,0.0,3,3,24.1,77777,9,999999999,50,0.0160,0,88,999.000,999.0,99.0 +1987,1,8,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-11.1,-13.9,80,88900,380,1415,206,220,651,45,23000,56800,7600,920,0,0.0,2,2,24.1,77777,9,999999999,50,0.0160,0,88,999.000,999.0,99.0 +1987,1,8,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-9.4,-12.8,77,88900,474,1415,206,331,897,30,35400,82800,7600,870,280,1.5,0,0,24.1,77777,9,999999999,50,0.0160,0,88,999.000,999.0,99.0 +1987,1,8,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-6.1,-11.7,65,88800,509,1415,217,360,914,31,38600,85400,7700,900,0,0.0,0,0,24.1,77777,9,999999999,60,0.0160,0,88,999.000,999.0,99.0 +1987,1,8,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-5.6,-10.6,68,88800,483,1415,220,335,892,30,35900,82600,7500,870,90,1.5,0,0,24.1,77777,9,999999999,60,0.0160,0,88,999.000,999.0,99.0 +1987,1,8,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-4.4,-10.0,66,88800,398,1415,224,266,853,26,28600,76000,7100,760,100,2.1,0,0,24.1,77777,9,999999999,60,0.0160,0,88,999.000,999.0,99.0 +1987,1,8,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-4.4,-11.1,60,88800,261,1415,223,155,740,20,16800,59200,5800,570,100,2.1,0,0,64.4,77777,9,999999999,60,0.0160,0,88,999.000,999.0,99.0 +1987,1,8,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-7.8,-11.7,74,88800,83,1332,212,43,412,11,4100,24600,2500,290,160,3.6,0,0,64.4,77777,9,999999999,60,0.0160,0,88,999.000,999.0,99.0 +1987,1,8,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-8.9,-12.2,77,88800,0,0,208,0,0,0,0,0,0,0,270,2.1,0,0,24.1,77777,9,999999999,60,0.0160,0,88,999.000,999.0,99.0 +1987,1,8,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-10.0,-13.3,77,88900,0,0,204,0,0,0,0,0,0,0,250,3.1,0,0,24.1,77777,9,999999999,50,0.0160,0,88,999.000,999.0,99.0 +1987,1,8,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-11.7,-13.9,84,88900,0,0,198,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,50,0.0160,0,88,999.000,999.0,99.0 +1987,1,8,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-12.2,-14.4,84,89000,0,0,196,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,50,0.0160,0,88,999.000,999.0,99.0 +1987,1,8,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-12.8,-14.4,88,89000,0,0,194,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,50,0.0160,0,88,999.000,999.0,99.0 +1987,1,8,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-14.4,-15.6,91,89000,0,0,189,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,50,0.0160,0,88,999.000,999.0,99.0 +1987,1,8,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-15.0,-15.0,100,89000,0,0,187,0,0,0,0,0,0,0,270,1.5,0,0,24.1,77777,9,999999999,50,0.0160,0,88,999.000,999.0,99.0 +1987,1,9,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-15.6,-15.6,100,89000,0,0,185,0,0,0,0,0,0,0,270,1.5,0,0,24.1,77777,9,999999999,50,0.0160,0,88,999.000,999.0,99.0 +1987,1,9,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-15.6,-17.2,86,89000,0,0,184,0,0,0,0,0,0,0,270,1.5,0,0,24.1,77777,9,999999999,50,0.0160,0,88,999.000,999.0,99.0 +1987,1,9,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-16.1,-16.4,97,89100,0,0,183,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,40,0.0160,0,88,999.000,999.0,99.0 +1987,1,9,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-17.2,-17.2,100,89100,0,0,179,0,0,0,0,0,0,0,270,1.5,0,0,24.1,77777,9,999999999,40,0.0160,0,88,999.000,999.0,99.0 +1987,1,9,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-17.8,-18.0,98,89100,0,0,177,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,40,0.0160,0,88,999.000,999.0,99.0 +1987,1,9,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-16.1,-17.2,91,89100,0,0,183,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,40,0.0160,0,88,999.000,999.0,99.0 +1987,1,9,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-17.2,-17.8,96,89200,0,0,179,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,40,0.0160,0,88,999.000,999.0,99.0 +1987,1,9,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-17.2,-18.3,91,89200,0,0,179,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,40,0.0160,0,88,999.000,999.0,99.0 +1987,1,9,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-15.6,-16.7,91,89300,58,1120,184,31,234,13,2700,12000,2000,260,0,0.0,0,0,24.1,77777,9,999999999,40,0.0390,0,88,999.000,999.0,99.0 +1987,1,9,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-13.3,-15.0,87,89300,237,1415,192,134,632,27,14100,49000,5900,620,0,0.0,0,0,24.1,77777,9,999999999,50,0.0390,0,88,999.000,999.0,99.0 +1987,1,9,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-11.7,-14.4,80,89300,382,1415,198,248,785,35,26300,69100,7500,880,330,1.5,0,0,24.1,77777,9,999999999,50,0.0390,0,88,999.000,999.0,99.0 +1987,1,9,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-10.0,-13.3,77,89300,477,1415,204,328,851,41,34800,78400,8300,1030,330,1.5,0,0,24.1,77777,9,999999999,50,0.0390,0,88,999.000,999.0,99.0 +1987,1,9,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-7.2,-12.8,65,89200,512,1415,213,357,870,43,38000,81200,8500,1090,10,1.5,0,0,24.1,77777,9,999999999,50,0.0390,0,88,999.000,999.0,99.0 +1987,1,9,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-5.0,-12.8,55,89100,487,1415,220,335,856,41,35700,79200,8300,1040,0,0.0,0,0,24.1,77777,9,999999999,50,0.0390,0,88,999.000,999.0,99.0 +1987,1,9,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-3.9,-12.8,51,89100,402,1415,224,262,799,36,28000,71200,7700,910,0,0.0,0,0,64.4,77777,9,999999999,50,0.0390,0,88,999.000,999.0,99.0 +1987,1,9,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-4.4,-12.8,53,89100,265,1415,222,152,665,29,16300,53300,6300,680,10,1.5,0,0,64.4,77777,9,999999999,50,0.0390,0,88,999.000,999.0,99.0 +1987,1,9,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-6.7,-13.3,60,89100,87,1356,214,39,313,15,3700,17100,2500,300,350,1.5,0,0,64.4,77777,9,999999999,50,0.0390,0,88,999.000,999.0,99.0 +1987,1,9,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-10.0,-13.3,77,89200,0,0,204,0,0,0,0,0,0,0,230,3.1,0,0,24.1,77777,9,999999999,50,0.0390,0,88,999.000,999.0,99.0 +1987,1,9,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-11.1,-14.4,77,89200,0,0,199,0,0,0,0,0,0,0,190,2.6,0,0,24.1,77777,9,999999999,50,0.0390,0,88,999.000,999.0,99.0 +1987,1,9,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-12.2,-15.6,77,89200,0,0,195,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,50,0.0390,0,88,999.000,999.0,99.0 +1987,1,9,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-12.8,-15.0,84,89200,0,0,194,0,0,0,0,0,0,0,290,1.5,0,0,24.1,77777,9,999999999,50,0.0390,0,88,999.000,999.0,99.0 +1987,1,9,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-13.3,-15.6,84,89300,0,0,192,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,50,0.0390,0,88,999.000,999.0,99.0 +1987,1,9,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-15.0,-16.7,87,89200,0,0,186,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,40,0.0390,0,88,999.000,999.0,99.0 +1987,1,9,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-15.6,-16.0,96,89200,0,0,185,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,40,0.0390,0,88,999.000,999.0,99.0 +1987,1,10,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-15.6,-16.7,90,89200,0,0,184,0,0,0,0,0,0,0,180,1.5,0,0,24.1,77777,9,999999999,40,0.0390,0,88,999.000,999.0,99.0 +1987,1,10,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-15.0,-18.1,75,89200,0,0,185,0,0,0,0,0,0,0,320,3.1,0,0,24.1,77777,9,999999999,40,0.0390,0,88,999.000,999.0,99.0 +1987,1,10,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-13.3,-17.3,69,89200,0,0,191,0,0,0,0,0,0,0,180,1.5,0,0,24.1,77777,9,999999999,40,0.0390,0,88,999.000,999.0,99.0 +1987,1,10,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-15.6,-17.6,83,89200,0,0,184,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,40,0.0390,0,88,999.000,999.0,99.0 +1987,1,10,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-16.1,-18.9,77,89200,0,0,181,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,40,0.0390,0,88,999.000,999.0,99.0 +1987,1,10,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-16.7,-18.0,88,89100,0,0,180,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,40,0.0390,0,88,999.000,999.0,99.0 +1987,1,10,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-15.6,-18.3,80,89100,0,0,183,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,40,0.0390,0,88,999.000,999.0,99.0 +1987,1,10,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-14.4,-16.7,83,89100,0,0,196,0,0,0,0,0,0,0,270,3.1,8,3,64.4,77777,9,999999999,40,0.0390,0,88,999.000,999.0,99.0 +1987,1,10,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-14.4,-16.7,83,89100,59,1120,197,28,93,21,2700,3400,2500,380,120,2.1,10,4,64.4,77777,9,999999999,40,0.0130,0,88,999.000,999.0,99.0 +1987,1,10,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-11.7,-14.4,80,89100,238,1415,209,103,148,78,11100,10600,9300,1660,0,0.0,10,5,64.4,77777,9,999999999,50,0.0130,0,88,999.000,999.0,99.0 +1987,1,10,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-9.4,-13.3,74,89100,385,1415,222,167,306,84,17600,26200,10500,1550,260,2.1,10,7,64.4,7620,9,999999999,50,0.0130,0,88,999.000,999.0,99.0 +1987,1,10,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-7.2,-13.3,62,89100,479,1415,233,225,214,153,24400,20200,17500,3480,310,2.6,10,8,64.4,7620,9,999999999,50,0.0130,0,88,999.000,999.0,99.0 +1987,1,10,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-5.6,-12.2,60,89100,515,1415,236,176,84,145,19300,8000,16400,3980,300,3.1,10,7,64.4,7620,9,999999999,60,0.0130,0,88,999.000,999.0,99.0 +1987,1,10,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-3.3,-12.8,49,89000,491,1415,237,287,528,104,30500,48900,13500,1960,280,2.6,8,4,64.4,77777,9,999999999,50,0.0130,0,88,999.000,999.0,99.0 +1987,1,10,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-2.8,-12.2,49,89000,406,1415,243,215,434,91,22700,37800,11800,1690,260,2.6,8,6,64.4,3660,9,999999999,60,0.0130,0,88,999.000,999.0,99.0 +1987,1,10,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-2.2,-11.1,51,88900,269,1415,247,110,220,69,11700,16100,8700,1310,350,2.1,8,6,64.4,3660,9,999999999,60,0.0130,0,88,999.000,999.0,99.0 +1987,1,10,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-3.3,-10.6,58,89000,90,1379,241,34,142,23,3400,5900,3000,410,260,3.1,8,5,64.4,3660,9,999999999,60,0.0130,0,88,999.000,999.0,99.0 +1987,1,10,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-3.9,-10.6,60,89000,0,0,239,0,0,0,0,0,0,0,260,2.6,7,5,24.1,3660,9,999999999,60,0.0130,0,88,999.000,999.0,99.0 +1987,1,10,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-4.4,-10.0,66,89000,0,0,238,0,0,0,0,0,0,0,260,3.1,8,5,24.1,7620,9,999999999,60,0.0130,0,88,999.000,999.0,99.0 +1987,1,10,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-4.4,-10.0,66,89000,0,0,238,0,0,0,0,0,0,0,270,2.6,8,5,24.1,7620,9,999999999,60,0.0130,0,88,999.000,999.0,99.0 +1987,1,10,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-4.4,-9.4,69,89000,0,0,252,0,0,0,0,0,0,0,270,2.1,10,9,24.1,3660,9,999999999,60,0.0130,0,88,999.000,999.0,99.0 +1987,1,10,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-4.4,-9.4,69,89000,0,0,259,0,0,0,0,0,0,0,270,4.1,10,10,24.1,3660,9,999999999,60,0.0130,0,88,999.000,999.0,99.0 +1987,1,10,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-5.0,-10.0,68,89000,0,0,257,0,0,0,0,0,0,0,270,2.6,10,10,24.1,3660,9,999999999,60,0.0130,0,88,999.000,999.0,99.0 +1987,1,10,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-4.4,-9.3,65,88900,0,0,260,0,0,0,0,0,0,0,0,0.0,10,10,24.1,77777,9,999999999,60,0.0130,0,88,999.000,999.0,99.0 +1987,1,11,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-3.9,-9.9,59,88900,0,0,254,0,0,0,0,0,0,0,230,3.1,10,9,24.1,77777,9,999999999,60,0.0130,0,88,999.000,999.0,99.0 +1987,1,11,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-6.1,-11.3,63,88900,0,0,244,0,0,0,0,0,0,0,0,0.0,9,9,24.1,77777,9,999999999,60,0.0130,0,88,999.000,999.0,99.0 +1987,1,11,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-5.6,-10.5,65,88900,0,0,247,0,0,0,0,0,0,0,230,2.6,9,9,24.1,77777,9,999999999,60,0.0130,0,88,999.000,999.0,99.0 +1987,1,11,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-5.0,-10.8,60,88900,0,0,244,0,0,0,0,0,0,0,230,3.1,9,8,24.1,77777,9,999999999,60,0.0130,0,88,999.000,999.0,99.0 +1987,1,11,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-6.7,-12.0,63,88900,0,0,236,0,0,0,0,0,0,0,0,0.0,9,8,24.1,77777,9,999999999,60,0.0130,0,88,999.000,999.0,99.0 +1987,1,11,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-7.8,-11.1,77,88900,0,0,230,0,0,0,0,0,0,0,0,0.0,8,7,24.1,7620,9,999999999,60,0.0130,0,88,999.000,999.0,99.0 +1987,1,11,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-8.9,-11.7,81,88900,0,0,225,0,0,0,0,0,0,0,0,0.0,8,7,24.1,7620,9,999999999,60,0.0130,0,88,999.000,999.0,99.0 +1987,1,11,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-8.3,-11.7,77,88900,0,0,231,0,0,0,0,0,0,0,0,0.0,10,8,64.4,7620,9,999999999,60,0.0130,0,88,999.000,999.0,99.0 +1987,1,11,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-6.7,-11.1,71,88900,61,1120,233,20,29,18,2200,1200,2100,370,260,3.1,9,7,64.4,7620,9,999999999,60,0.0310,0,88,999.000,999.0,99.0 +1987,1,11,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-6.7,-11.1,71,88900,240,1414,233,79,134,57,8500,9200,6900,1060,0,0.0,9,7,64.4,7620,9,999999999,60,0.0310,0,88,999.000,999.0,99.0 +1987,1,11,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-2.8,-8.9,63,88900,387,1414,249,185,287,106,19500,25000,12700,2100,0,0.0,9,7,64.4,7620,9,999999999,69,0.0310,0,88,999.000,999.0,99.0 +1987,1,11,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-0.6,-8.3,56,88900,482,1414,268,125,60,105,13800,5600,11900,2980,0,0.0,10,9,64.4,7620,9,999999999,69,0.0310,0,88,999.000,999.0,99.0 +1987,1,11,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.0,-7.8,56,88800,519,1414,265,181,143,128,19900,13900,14800,2950,0,0.0,10,8,64.4,7620,9,999999999,69,0.0310,0,88,999.000,999.0,99.0 +1987,1,11,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.1,-9.4,46,88700,494,1414,264,223,287,123,24000,27400,14300,2460,320,2.1,10,7,64.4,7620,9,999999999,60,0.0310,0,88,999.000,999.0,99.0 +1987,1,11,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,-8.3,43,88700,410,1414,268,177,276,97,19000,24700,11800,1870,310,2.1,10,5,64.4,77777,9,999999999,69,0.0310,0,88,999.000,999.0,99.0 +1987,1,11,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,-7.8,48,88600,273,1414,264,107,253,58,11300,18700,7600,1040,0,0.0,10,5,64.4,77777,9,999999999,69,0.0310,0,88,999.000,999.0,99.0 +1987,1,11,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.6,-8.3,52,88600,95,1403,260,31,34,28,3300,1600,3200,580,270,2.1,10,6,64.4,7620,9,999999999,69,0.0310,0,88,999.000,999.0,99.0 +1987,1,11,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-3.9,-7.8,75,88600,0,0,246,0,0,0,0,0,0,0,200,3.1,10,7,24.1,7620,9,999999999,69,0.0310,0,88,999.000,999.0,99.0 +1987,1,11,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-5.0,-8.9,75,88600,0,0,235,0,0,0,0,0,0,0,0,0.0,8,4,24.1,77777,9,999999999,69,0.0310,0,88,999.000,999.0,99.0 +1987,1,11,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-3.9,-8.3,72,88600,0,0,232,0,0,0,0,0,0,0,270,2.1,3,1,24.1,77777,9,999999999,69,0.0310,0,88,999.000,999.0,99.0 +1987,1,11,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-6.1,-9.4,78,88500,0,0,219,0,0,0,0,0,0,0,240,2.1,1,0,24.1,77777,9,999999999,60,0.0310,0,88,999.000,999.0,99.0 +1987,1,11,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-6.7,-9.4,81,88500,0,0,217,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,60,0.0310,0,88,999.000,999.0,99.0 +1987,1,11,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-8.3,-10.6,84,88500,0,0,218,0,0,0,0,0,0,0,0,0.0,6,2,24.1,77777,9,999999999,60,0.0310,0,88,999.000,999.0,99.0 +1987,1,11,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-7.8,-9.9,83,88400,0,0,223,0,0,0,0,0,0,0,0,0.0,6,3,24.1,77777,9,999999999,60,0.0310,0,88,999.000,999.0,99.0 +1987,1,12,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-7.8,-10.4,80,88400,0,0,222,0,0,0,0,0,0,0,0,0.0,7,3,24.1,77777,9,999999999,60,0.0310,0,88,999.000,999.0,99.0 +1987,1,12,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-7.2,-11.8,67,88300,0,0,225,0,0,0,0,0,0,0,0,0.0,7,4,24.1,77777,9,999999999,60,0.0310,0,88,999.000,999.0,99.0 +1987,1,12,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-8.3,-11.0,79,88300,0,0,222,0,0,0,0,0,0,0,240,2.1,7,4,24.1,77777,9,999999999,60,0.0310,0,88,999.000,999.0,99.0 +1987,1,12,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-8.9,-11.2,82,88200,0,0,221,0,0,0,0,0,0,0,0,0.0,7,5,24.1,77777,9,999999999,60,0.0310,0,88,999.000,999.0,99.0 +1987,1,12,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-9.4,-12.4,76,88200,0,0,218,0,0,0,0,0,0,0,0,0.0,8,5,24.1,77777,9,999999999,60,0.0310,0,88,999.000,999.0,99.0 +1987,1,12,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-10.0,-11.5,87,88200,0,0,219,0,0,0,0,0,0,0,0,0.0,8,6,24.1,77777,9,999999999,60,0.0310,0,88,999.000,999.0,99.0 +1987,1,12,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-10.6,-11.7,92,88100,0,0,217,0,0,0,0,0,0,0,170,2.1,8,6,24.1,7620,9,999999999,60,0.0310,0,88,999.000,999.0,99.0 +1987,1,12,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-10.0,-11.7,88,88100,0,0,219,0,0,0,0,0,0,0,0,0.0,8,6,64.4,7620,9,999999999,60,0.0310,0,88,999.000,999.0,99.0 +1987,1,12,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-11.7,-12.8,92,88100,62,1143,209,23,57,19,2400,1800,2300,330,0,0.0,8,4,64.4,77777,9,999999999,50,0.0370,0,88,999.000,999.0,99.0 +1987,1,12,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-7.8,-10.0,84,88100,243,1414,226,88,119,68,9600,8700,8100,1450,0,0.0,10,5,64.4,77777,9,999999999,60,0.0370,0,88,999.000,999.0,99.0 +1987,1,12,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-5.6,-7.8,85,88100,390,1414,234,201,427,83,21200,36700,11100,1530,0,0.0,8,4,64.4,77777,9,999999999,69,0.0370,0,88,999.000,999.0,99.0 +1987,1,12,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-3.3,-6.7,78,88000,485,1414,243,264,518,86,27400,47400,11000,1630,0,0.0,9,4,64.4,77777,9,999999999,69,0.0370,0,88,999.000,999.0,99.0 +1987,1,12,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.0,-6.7,61,87900,522,1414,257,253,271,153,26800,26200,17100,3200,0,0.0,10,5,64.4,77777,9,999999999,69,0.0370,0,88,999.000,999.0,99.0 +1987,1,12,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,-7.2,40,87800,498,1414,276,261,438,107,27700,40800,13300,2030,300,1.5,10,4,64.4,77777,9,999999999,69,0.0370,0,88,999.000,999.0,99.0 +1987,1,12,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,-6.7,43,87700,415,1414,276,202,290,117,21400,26000,13700,2350,0,0.0,10,5,64.4,77777,9,999999999,69,0.0370,0,88,999.000,999.0,99.0 +1987,1,12,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,-5.6,47,87700,278,1414,277,98,222,55,10500,16600,7200,980,0,0.0,10,5,64.4,77777,9,999999999,80,0.0370,0,88,999.000,999.0,99.0 +1987,1,12,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-0.6,-5.6,69,87700,99,1414,252,39,127,29,3900,5200,3500,530,280,2.1,9,3,64.4,77777,9,999999999,80,0.0370,0,88,999.000,999.0,99.0 +1987,1,12,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-1.1,-6.7,66,87700,0,35,251,0,0,0,0,0,0,0,90,2.1,9,4,24.1,77777,9,999999999,69,0.0370,0,88,999.000,999.0,99.0 +1987,1,12,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-2.2,-7.2,69,87600,0,0,244,0,0,0,0,0,0,0,0,0.0,9,3,24.1,77777,9,999999999,69,0.0370,0,88,999.000,999.0,99.0 +1987,1,12,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-1.1,-7.8,61,87600,0,0,252,0,0,0,0,0,0,0,320,3.1,10,5,24.1,77777,9,999999999,69,0.0370,0,88,999.000,999.0,99.0 +1987,1,12,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-0.6,-8.3,56,87700,0,0,243,0,0,0,0,0,0,0,290,2.6,10,1,24.1,77777,9,999999999,69,0.0370,0,88,999.000,999.0,99.0 +1987,1,12,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,0.0,-9.4,50,87700,0,0,245,0,0,0,0,0,0,0,250,4.1,10,1,24.1,77777,9,999999999,60,0.0370,0,88,999.000,999.0,99.0 +1987,1,12,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,0.6,-7.8,54,87900,0,0,260,0,0,0,0,0,0,0,290,6.2,10,6,24.1,7620,9,999999999,69,0.0370,0,88,999.000,999.0,99.0 +1987,1,12,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,3.9,-6.8,43,87900,0,0,277,0,0,0,0,0,0,0,260,1.5,10,7,24.1,77777,9,999999999,69,0.0370,0,88,999.000,999.0,99.0 +1987,1,13,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,1.1,-7.1,51,88000,0,0,266,0,0,0,0,0,0,0,0,0.0,10,7,24.1,77777,9,999999999,69,0.0370,0,88,999.000,999.0,99.0 +1987,1,13,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-1.1,-8.2,55,88000,0,0,261,0,0,0,0,0,0,0,40,1.5,10,8,24.1,77777,9,999999999,69,0.0370,0,88,999.000,999.0,99.0 +1987,1,13,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-1.1,-7.1,60,88000,0,0,262,0,0,0,0,0,0,0,210,1.5,10,8,24.1,77777,9,999999999,69,0.0370,0,88,999.000,999.0,99.0 +1987,1,13,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-1.7,-7.0,64,88000,0,0,265,0,0,0,0,0,0,0,50,2.1,10,9,24.1,77777,9,999999999,69,0.0370,0,88,999.000,999.0,99.0 +1987,1,13,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-2.2,-7.9,61,88000,0,0,262,0,0,0,0,0,0,0,240,1.5,10,9,24.1,77777,9,999999999,69,0.0370,0,88,999.000,999.0,99.0 +1987,1,13,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-2.8,-6.7,75,88000,0,0,268,0,0,0,0,0,0,0,190,1.5,10,10,24.1,4270,9,999999999,69,0.0370,0,88,999.000,999.0,99.0 +1987,1,13,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-2.2,-6.7,72,88100,0,0,271,0,0,0,0,0,0,0,190,1.5,10,10,24.1,4270,9,999999999,69,0.0370,0,88,999.000,999.0,99.0 +1987,1,13,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,0.0,-7.8,56,88100,0,0,279,0,0,0,0,0,0,0,260,3.6,10,10,24.1,4270,9,999999999,69,0.0370,0,88,999.000,999.0,99.0 +1987,1,13,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.6,-8.3,52,88100,64,1143,258,23,54,19,2400,1700,2300,330,290,5.2,10,5,64.4,77777,9,999999999,69,0.0350,0,88,999.000,999.0,99.0 +1987,1,13,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,-7.8,50,88100,245,1414,258,106,279,58,11100,19600,7700,1050,280,7.2,8,3,64.4,77777,9,999999999,69,0.0350,0,88,999.000,999.0,99.0 +1987,1,13,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,-3.3,65,88100,393,1414,264,211,507,70,21800,43600,9600,1290,290,9.8,5,2,64.4,77777,9,999999999,89,0.0350,0,88,999.000,999.0,99.0 +1987,1,13,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,-8.9,42,88100,489,1414,259,305,690,67,31500,63400,9500,1290,280,10.3,4,2,64.4,77777,9,999999999,69,0.0350,0,88,999.000,999.0,99.0 +1987,1,13,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,-8.3,44,88100,526,1414,256,337,750,59,35700,70600,9300,1250,280,10.3,4,1,64.4,77777,9,999999999,69,0.0350,0,88,999.000,999.0,99.0 +1987,1,13,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,-8.3,48,88100,502,1414,252,326,779,50,34500,72400,8700,1140,270,10.3,4,1,64.4,77777,9,999999999,69,0.0350,0,88,999.000,999.0,99.0 +1987,1,13,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,-11.7,37,88100,419,1414,256,222,524,68,23300,46200,9500,1280,270,8.8,4,4,48.3,77777,9,999999999,60,0.0350,0,88,999.000,999.0,99.0 +1987,1,13,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-0.6,-12.8,40,88200,282,1414,249,126,345,59,13500,25900,8300,1060,280,5.7,5,5,48.3,77777,9,999999999,50,0.0350,0,88,999.000,999.0,99.0 +1987,1,13,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.1,-12.8,41,88200,103,1414,247,39,136,28,3900,5800,3500,510,250,7.2,5,5,64.4,77777,9,999999999,50,0.0350,0,88,999.000,999.0,99.0 +1987,1,13,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-2.2,-12.2,47,88300,0,59,234,0,0,0,0,0,0,0,270,7.2,1,1,24.1,77777,9,999999999,60,0.0350,0,88,999.000,999.0,99.0 +1987,1,13,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-4.4,-12.2,55,88300,0,0,227,0,0,0,0,0,0,0,270,3.1,1,1,24.1,77777,9,999999999,60,0.0350,0,88,999.000,999.0,99.0 +1987,1,13,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-4.4,-12.8,53,88300,0,0,237,0,0,0,0,0,0,0,280,4.1,6,6,24.1,3660,9,999999999,50,0.0350,0,88,999.000,999.0,99.0 +1987,1,13,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-3.9,-12.2,53,88400,0,0,242,0,0,0,0,0,0,0,280,6.2,7,7,24.1,3660,9,999999999,60,0.0350,0,88,999.000,999.0,99.0 +1987,1,13,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-3.9,-11.1,58,88400,0,0,243,0,0,0,0,0,0,0,240,5.2,7,7,24.1,1830,9,999999999,60,0.0350,0,88,999.000,999.0,99.0 +1987,1,13,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-4.4,-11.7,58,88400,0,0,245,0,0,0,0,0,0,0,240,7.7,8,8,24.1,3660,9,999999999,60,0.0350,0,88,999.000,999.0,99.0 +1987,1,13,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-3.9,-10.8,55,88400,0,0,248,0,0,0,0,0,0,0,240,6.7,8,8,24.1,77777,9,999999999,60,0.0350,0,88,999.000,999.0,99.0 +1987,1,14,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-5.0,-11.3,58,88400,0,0,248,0,0,0,0,0,0,0,240,6.7,9,9,24.1,77777,9,999999999,60,0.0350,0,88,999.000,999.0,99.0 +1987,1,14,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-6.1,-12.5,57,88400,0,0,243,0,0,0,0,0,0,0,240,6.7,9,9,24.1,77777,9,999999999,60,0.0350,0,88,999.000,999.0,99.0 +1987,1,14,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-7.2,-11.5,68,88400,0,0,240,0,0,0,0,0,0,0,240,3.6,9,9,24.1,77777,9,999999999,60,0.0350,0,88,999.000,999.0,99.0 +1987,1,14,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-7.8,-11.6,71,88400,0,0,238,0,0,0,0,0,0,0,240,3.1,9,9,24.1,77777,9,999999999,60,0.0350,0,88,999.000,999.0,99.0 +1987,1,14,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-8.3,-12.7,68,88400,0,0,242,0,0,0,0,0,0,0,90,3.1,10,10,24.1,77777,9,999999999,60,0.0350,0,88,999.000,999.0,99.0 +1987,1,14,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-9.4,-11.6,82,88400,0,0,239,0,0,0,0,0,0,0,240,2.6,10,10,24.1,77777,9,999999999,60,0.0350,0,88,999.000,999.0,99.0 +1987,1,14,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-10.0,-11.7,88,88400,0,0,236,0,0,0,0,0,0,0,0,0.0,10,10,24.1,1370,9,999999999,60,0.0350,0,88,999.000,999.0,99.0 +1987,1,14,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-9.4,-11.1,88,88300,0,0,239,0,0,0,0,0,0,0,0,0.0,10,10,48.3,1370,9,999999999,60,0.0350,0,88,999.000,999.0,99.0 +1987,1,14,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-8.9,-11.1,84,88300,65,1167,241,14,3,14,1600,0,1600,500,180,2.6,10,10,32.2,790,9,999999999,60,0.0240,0,88,999.000,999.0,99.0 +1987,1,14,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-6.7,-10.6,74,88300,247,1414,250,59,9,58,6700,200,6600,2000,300,2.1,10,10,16.1,850,9,999999999,60,0.0240,0,88,999.000,999.0,99.0 +1987,1,14,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-6.7,-10.0,78,88400,396,1414,250,93,7,91,10500,400,10400,3370,360,3.1,10,10,16.1,760,9,999999999,60,0.0240,0,88,999.000,999.0,99.0 +1987,1,14,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-6.1,-8.3,85,88400,492,1414,254,184,3,183,20200,200,20100,5870,330,4.1,10,10,3.2,460,9,999999999,69,0.0240,0,88,999.000,999.0,99.0 +1987,1,14,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-5.0,-7.8,81,88300,530,1414,259,154,11,150,17300,800,17000,5530,360,5.2,10,10,3.2,460,9,999999999,69,0.0240,0,88,999.000,999.0,99.0 +1987,1,14,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-5.6,-9.4,74,88300,507,1414,255,169,1,168,18600,100,18600,5750,360,6.2,10,10,12.9,760,9,999999999,60,0.0240,0,88,999.000,999.0,99.0 +1987,1,14,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-7.2,-11.1,74,88400,424,1414,247,134,5,133,14900,300,14800,4470,350,7.2,10,10,16.1,760,9,999999999,60,0.0240,0,88,999.000,999.0,99.0 +1987,1,14,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-8.3,-13.3,68,88500,287,1414,241,88,2,87,9600,100,9600,2770,350,8.2,10,10,24.1,850,9,999999999,50,0.0240,0,88,999.000,999.0,99.0 +1987,1,14,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-9.4,-14.4,67,88600,108,1414,236,31,1,31,3400,0,3400,950,350,8.8,10,10,24.1,760,9,999999999,50,0.0240,0,88,999.000,999.0,99.0 +1987,1,14,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-10.0,-15.0,67,88800,0,82,233,0,0,0,0,0,0,0,350,7.7,10,10,24.1,670,9,999999999,50,0.0240,0,88,999.000,999.0,99.0 +1987,1,14,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-11.1,-15.6,70,88900,0,0,229,0,0,0,0,0,0,0,350,6.2,10,10,24.1,670,9,999999999,50,0.0240,0,88,999.000,999.0,99.0 +1987,1,14,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-12.2,-16.7,70,89000,0,0,224,0,0,0,0,0,0,0,330,5.7,10,10,24.1,670,9,999999999,40,0.0240,0,88,999.000,999.0,99.0 +1987,1,14,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-13.3,-18.3,66,89100,0,0,219,0,0,0,0,0,0,0,340,6.2,10,10,24.1,760,9,999999999,40,0.0240,0,88,999.000,999.0,99.0 +1987,1,14,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-14.4,-18.9,69,89200,0,0,215,0,0,0,0,0,0,0,330,5.2,10,10,24.1,760,9,999999999,40,0.0240,0,88,999.000,999.0,99.0 +1987,1,14,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-15.0,-20.0,66,89200,0,0,212,0,0,0,0,0,0,0,330,5.7,10,10,24.1,760,9,999999999,40,0.0240,0,88,999.000,999.0,99.0 +1987,1,14,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-15.6,-19.5,69,89200,0,0,204,0,0,0,0,0,0,0,320,5.7,9,9,24.1,77777,9,999999999,40,0.0240,0,88,999.000,999.0,99.0 +1987,1,15,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-16.1,-20.4,67,89300,0,0,198,0,0,0,0,0,0,0,320,3.1,8,8,24.1,77777,9,999999999,40,0.0240,0,88,999.000,999.0,99.0 +1987,1,15,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-16.7,-22.1,60,89300,0,0,189,0,0,0,0,0,0,0,280,4.1,6,6,24.1,77777,9,999999999,40,0.0240,0,88,999.000,999.0,99.0 +1987,1,15,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-17.2,-21.5,66,89300,0,0,187,0,0,0,0,0,0,0,240,4.1,5,5,24.1,77777,9,999999999,30,0.0240,0,88,999.000,999.0,99.0 +1987,1,15,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-18.3,-22.0,70,89300,0,0,182,0,0,0,0,0,0,0,270,3.6,4,4,24.1,77777,9,999999999,30,0.0240,0,88,999.000,999.0,99.0 +1987,1,15,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-18.9,-23.5,64,89300,0,0,178,0,0,0,0,0,0,0,270,4.1,3,3,24.1,77777,9,999999999,30,0.0240,0,88,999.000,999.0,99.0 +1987,1,15,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-19.4,-22.8,75,89300,0,0,173,0,0,0,0,0,0,0,250,4.1,1,1,24.1,77777,9,999999999,30,0.0240,0,88,999.000,999.0,99.0 +1987,1,15,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-19.4,-23.3,72,89200,0,0,169,0,0,0,0,0,0,0,240,4.1,0,0,24.1,77777,9,999999999,30,0.0240,0,88,999.000,999.0,99.0 +1987,1,15,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-22.8,-25.0,82,89200,0,0,159,0,0,0,0,0,0,0,90,2.1,0,0,64.4,77777,9,999999999,30,0.0240,0,88,999.000,999.0,99.0 +1987,1,15,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-21.1,-24.4,75,89200,67,1190,164,40,369,11,3600,21500,2300,280,170,2.6,0,0,64.4,77777,9,999999999,30,0.0170,0,88,999.000,999.0,99.0 +1987,1,15,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-18.3,-23.9,62,89300,250,1414,171,147,716,20,15800,56600,5700,570,0,0.0,0,0,64.4,77777,9,999999999,30,0.0170,0,88,999.000,999.0,99.0 +1987,1,15,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-16.1,-22.8,57,89300,399,1414,178,274,877,27,29500,78100,7300,780,0,0.0,0,0,64.4,77777,9,999999999,30,0.0170,0,88,999.000,999.0,99.0 +1987,1,15,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-14.4,-22.8,50,89200,496,1414,183,357,928,31,38200,86400,7800,900,0,0.0,0,0,64.4,77777,9,999999999,30,0.0170,0,88,999.000,999.0,99.0 +1987,1,15,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-13.9,-21.7,52,89100,534,1414,185,385,935,33,41400,88100,7900,950,20,2.1,0,0,64.4,77777,9,999999999,40,0.0170,0,88,999.000,999.0,99.0 +1987,1,15,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-11.7,-21.1,46,89000,511,1414,192,367,931,32,39500,87100,7900,920,0,0.0,0,0,64.4,77777,9,999999999,40,0.0170,0,88,999.000,999.0,99.0 +1987,1,15,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-11.1,-20.6,46,88900,428,1414,194,293,882,28,31700,79800,7400,810,0,0.0,0,0,64.4,77777,9,999999999,40,0.0170,0,88,999.000,999.0,99.0 +1987,1,15,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-11.1,-21.1,44,88900,291,1414,194,181,780,22,19600,64300,6300,630,0,0.0,0,0,64.4,77777,9,999999999,40,0.0170,0,88,999.000,999.0,99.0 +1987,1,15,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-12.8,-20.6,53,88900,112,1414,189,53,515,13,5800,32200,3200,330,0,0.0,0,0,24.1,77777,9,999999999,40,0.0170,0,88,999.000,999.0,99.0 +1987,1,15,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-17.2,-20.6,76,88900,1,106,177,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,40,0.0170,0,88,999.000,999.0,99.0 +1987,1,15,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-17.8,-21.1,75,88900,0,0,175,0,0,0,0,0,0,0,190,1.5,0,0,24.1,77777,9,999999999,40,0.0170,0,88,999.000,999.0,99.0 +1987,1,15,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-19.4,-21.7,83,88900,0,0,170,0,0,0,0,0,0,0,140,1.5,0,0,24.1,77777,9,999999999,40,0.0170,0,88,999.000,999.0,99.0 +1987,1,15,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-19.4,-21.7,83,88900,0,0,170,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,40,0.0170,0,88,999.000,999.0,99.0 +1987,1,15,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-20.0,-21.7,87,88900,0,0,169,0,0,0,0,0,0,0,180,1.5,0,0,24.1,77777,9,999999999,40,0.0170,0,88,999.000,999.0,99.0 +1987,1,15,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-22.2,-24.4,82,88900,0,0,161,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,30,0.0170,0,88,999.000,999.0,99.0 +1987,1,15,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-21.1,-23.7,78,88900,0,0,164,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,30,0.0170,0,88,999.000,999.0,99.0 +1987,1,16,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-21.7,-24.3,77,88800,0,0,162,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,30,0.0170,0,88,999.000,999.0,99.0 +1987,1,16,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-22.2,-25.8,70,88800,0,0,160,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,30,0.0170,0,88,999.000,999.0,99.0 +1987,1,16,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-22.2,-25.0,76,88800,0,0,160,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,30,0.0170,0,88,999.000,999.0,99.0 +1987,1,16,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-23.3,-25.2,83,88800,0,0,158,0,0,0,0,0,0,0,270,2.1,0,0,24.1,77777,9,999999999,30,0.0170,0,88,999.000,999.0,99.0 +1987,1,16,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-23.9,-26.5,77,88800,0,0,155,0,0,0,0,0,0,0,90,1.5,0,0,24.1,77777,9,999999999,30,0.0170,0,88,999.000,999.0,99.0 +1987,1,16,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-23.9,-25.6,86,88800,0,0,156,0,0,0,0,0,0,0,270,1.5,0,0,24.1,77777,9,999999999,30,0.0170,0,88,999.000,999.0,99.0 +1987,1,16,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-24.4,-26.1,86,88900,0,0,154,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,30,0.0170,0,88,999.000,999.0,99.0 +1987,1,16,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-23.3,-25.6,82,88900,0,0,160,0,0,0,0,0,0,0,0,0.0,3,1,24.1,77777,9,999999999,30,0.0170,0,88,999.000,999.0,99.0 +1987,1,16,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-22.8,-25.0,82,88900,69,1190,164,26,78,20,2700,2600,2500,350,0,0.0,10,2,64.4,77777,9,999999999,30,0.0570,0,88,999.000,999.0,99.0 +1987,1,16,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-19.4,-21.7,83,88900,253,1414,176,122,368,56,12800,26200,8100,1010,0,0.0,10,2,64.4,77777,9,999999999,40,0.0570,0,88,999.000,999.0,99.0 +1987,1,16,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-17.8,-21.1,75,88900,402,1414,181,232,518,85,23700,44500,11000,1520,350,1.5,10,2,48.3,77777,9,999999999,40,0.0570,0,88,999.000,999.0,99.0 +1987,1,16,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-16.1,-20.0,72,88900,500,1414,190,243,333,125,26000,31800,14700,2510,0,0.0,10,4,48.3,77777,9,999999999,40,0.0570,0,88,999.000,999.0,99.0 +1987,1,16,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-15.0,-20.0,66,88800,538,1414,191,327,516,131,34400,48900,15700,2550,240,2.1,10,3,48.3,77777,9,999999999,40,0.0570,0,88,999.000,999.0,99.0 +1987,1,16,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-12.2,-19.4,55,88700,515,1414,196,326,726,63,34200,67800,9400,1280,340,1.5,4,1,48.3,77777,9,999999999,40,0.0570,0,88,999.000,999.0,99.0 +1987,1,16,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-11.7,-19.4,53,88600,433,1414,207,183,178,128,19800,16300,14800,2870,0,0.0,9,6,48.3,3660,9,999999999,40,0.0570,0,88,999.000,999.0,99.0 +1987,1,16,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-11.7,-18.3,58,88600,296,1414,218,62,34,55,6800,2800,6200,1470,350,1.5,10,9,64.4,4270,9,999999999,40,0.0570,0,88,999.000,999.0,99.0 +1987,1,16,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-12.2,-18.3,61,88700,117,1414,223,19,4,19,2200,0,2200,680,340,1.5,10,10,24.1,4270,9,999999999,40,0.0570,0,88,999.000,999.0,99.0 +1987,1,16,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-12.2,-17.2,67,88700,1,153,224,0,0,0,0,0,0,0,0,0.0,10,10,24.1,4270,9,999999999,40,0.0570,0,88,999.000,999.0,99.0 +1987,1,16,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-12.2,-17.8,64,88700,0,0,223,0,0,0,0,0,0,0,0,0.0,10,10,24.1,4270,9,999999999,40,0.0570,0,88,999.000,999.0,99.0 +1987,1,16,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-11.7,-17.8,61,88700,0,0,225,0,0,0,0,0,0,0,0,0.0,10,10,24.1,980,9,999999999,40,0.0570,0,88,999.000,999.0,99.0 +1987,1,16,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-12.2,-17.8,64,88700,0,0,223,0,0,0,0,0,0,0,260,1.5,10,10,24.1,980,9,999999999,40,0.0570,0,88,999.000,999.0,99.0 +1987,1,16,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-13.3,-17.2,73,88700,0,0,204,0,0,0,0,0,0,0,0,0.0,8,6,24.1,4270,9,999999999,40,0.0570,0,88,999.000,999.0,99.0 +1987,1,16,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-13.9,-17.2,76,88700,0,0,202,0,0,0,0,0,0,0,210,1.5,8,6,24.1,4270,9,999999999,40,0.0570,0,88,999.000,999.0,99.0 +1987,1,16,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-13.3,-16.1,77,88700,0,0,205,0,0,0,0,0,0,0,0,0.0,9,6,24.1,77777,9,999999999,40,0.0570,0,88,999.000,999.0,99.0 +1987,1,17,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-12.8,-16.3,72,88600,0,0,208,0,0,0,0,0,0,0,0,0.0,9,7,24.1,77777,9,999999999,40,0.0570,0,88,999.000,999.0,99.0 +1987,1,17,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-13.3,-17.4,68,88600,0,0,206,0,0,0,0,0,0,0,320,2.6,8,7,24.1,77777,9,999999999,40,0.0570,0,88,999.000,999.0,99.0 +1987,1,17,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-13.9,-16.2,81,88700,0,0,205,0,0,0,0,0,0,0,270,1.5,7,7,24.1,77777,9,999999999,50,0.0570,0,88,999.000,999.0,99.0 +1987,1,17,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-12.8,-16.0,75,88700,0,0,212,0,0,0,0,0,0,0,0,0.0,9,8,24.1,77777,9,999999999,50,0.0570,0,88,999.000,999.0,99.0 +1987,1,17,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-12.8,-16.9,69,88600,0,0,211,0,0,0,0,0,0,0,360,2.1,9,8,24.1,16012,9,999999999,50,0.0570,0,88,999.000,999.0,99.0 +1987,1,17,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-12.8,-15.6,80,88600,0,0,217,0,0,0,0,0,0,0,270,2.1,10,9,24.1,3660,9,999999999,50,0.0570,0,88,999.000,999.0,99.0 +1987,1,17,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-12.8,-16.1,76,88700,0,0,216,0,0,0,0,0,0,0,280,2.6,10,9,24.1,3660,9,999999999,50,0.0570,0,88,999.000,999.0,99.0 +1987,1,17,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-12.2,-16.1,73,88700,0,0,225,0,0,0,0,0,0,0,280,2.1,10,10,32.2,3050,9,999999999,50,0.0570,0,88,999.000,999.0,99.0 +1987,1,17,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-11.7,-16.1,70,88700,71,1213,226,24,6,23,2600,0,2600,740,250,3.1,10,10,16.1,980,9,999999999,50,0.0180,0,88,999.000,999.0,99.0 +1987,1,17,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-10.6,-16.7,61,88700,256,1414,223,69,1,69,7700,0,7700,2280,0,0.0,10,9,16.1,1370,9,999999999,40,0.0180,0,88,999.000,999.0,99.0 +1987,1,17,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-9.4,-16.1,59,88700,406,1414,228,113,70,93,12500,6300,10600,2070,0,0.0,10,9,16.1,3050,9,999999999,50,0.0180,0,88,999.000,999.0,99.0 +1987,1,17,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-7.8,-15.0,57,88700,503,1414,241,128,21,120,14500,1400,14000,4620,0,0.0,10,10,16.1,3050,9,999999999,50,0.0180,0,88,999.000,999.0,99.0 +1987,1,17,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-6.7,-11.1,71,88600,543,1414,249,152,11,147,17100,800,16800,5530,120,3.6,10,10,24.1,3050,9,999999999,60,0.0180,0,88,999.000,999.0,99.0 +1987,1,17,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-6.7,-11.1,71,88600,520,1414,233,228,213,150,24200,20600,16600,3120,70,3.6,10,7,48.3,3050,9,999999999,60,0.0180,0,88,999.000,999.0,99.0 +1987,1,17,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-6.1,-11.1,68,88500,438,1414,236,150,144,106,16600,13300,12400,2380,70,3.6,10,7,48.3,3050,9,999999999,60,0.0180,0,88,999.000,999.0,99.0 +1987,1,17,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-5.6,-10.6,68,88500,301,1414,242,115,43,106,12600,3600,11800,2460,30,3.6,10,8,64.4,7620,9,999999999,60,0.0180,0,88,999.000,999.0,99.0 +1987,1,17,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-6.7,-10.0,78,88500,122,1414,238,44,36,41,4800,2300,4600,900,60,2.1,10,8,24.1,7620,9,999999999,60,0.0180,0,88,999.000,999.0,99.0 +1987,1,17,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-6.7,-10.6,74,88500,2,177,238,3,1,3,0,0,0,0,0,0.0,10,8,24.1,980,9,999999999,60,0.0180,0,88,999.000,999.0,99.0 +1987,1,17,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-7.2,-11.1,74,88400,0,0,247,0,0,0,0,0,0,0,280,1.5,10,10,24.1,980,9,999999999,60,0.0180,0,88,999.000,999.0,99.0 +1987,1,17,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-7.8,-11.7,74,88400,0,0,244,0,0,0,0,0,0,0,270,3.1,10,10,24.1,3660,9,999999999,60,0.0180,0,88,999.000,999.0,99.0 +1987,1,17,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-7.2,-12.2,68,88400,0,0,246,0,0,0,0,0,0,0,270,1.5,10,10,24.1,1370,9,999999999,60,0.0180,0,88,999.000,999.0,99.0 +1987,1,17,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-8.3,-11.7,77,88300,0,0,243,0,0,0,0,0,0,0,230,1.5,10,10,24.1,3660,9,999999999,60,0.0180,0,88,999.000,999.0,99.0 +1987,1,17,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-9.4,-12.2,81,88200,0,0,238,0,0,0,0,0,0,0,260,2.1,10,10,24.1,3660,9,999999999,60,0.0180,0,88,999.000,999.0,99.0 +1987,1,17,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-10.0,-10.6,95,88200,0,0,237,0,0,0,0,0,0,0,230,1.5,10,10,24.1,77777,9,999999999,60,0.0180,0,88,999.000,999.0,99.0 +1987,1,18,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-10.0,-10.4,97,88100,0,0,238,0,0,0,0,0,0,0,230,2.1,10,10,24.1,77777,9,999999999,60,0.0180,0,88,999.000,999.0,99.0 +1987,1,18,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-6.7,-11.0,68,88000,0,0,249,0,0,0,0,0,0,0,320,2.1,10,10,24.1,77777,9,999999999,60,0.0180,0,88,999.000,999.0,99.0 +1987,1,18,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-9.4,-9.4,100,88000,0,0,241,0,0,0,0,0,0,0,320,1.5,10,10,24.1,77777,9,999999999,69,0.0180,0,88,999.000,999.0,99.0 +1987,1,18,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-5.0,-8.7,73,88000,0,0,258,0,0,0,0,0,0,0,270,2.6,10,10,24.1,77777,9,999999999,69,0.0180,0,88,999.000,999.0,99.0 +1987,1,18,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-1.1,-9.1,50,87900,0,0,273,0,0,0,0,0,0,0,320,2.6,10,10,24.1,77777,9,999999999,69,0.0180,0,88,999.000,999.0,99.0 +1987,1,18,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,0.0,-7.3,54,87800,0,0,279,0,0,0,0,0,0,0,270,12.4,10,10,24.1,77777,9,999999999,69,0.0180,0,88,999.000,999.0,99.0 +1987,1,18,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,0.6,-6.7,59,87900,0,0,282,0,0,0,0,0,0,0,30,2.6,10,10,24.1,3050,9,999999999,69,0.0180,0,88,999.000,999.0,99.0 +1987,1,18,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,1.1,-6.1,59,87900,0,0,271,0,0,0,0,0,0,0,280,7.7,10,8,32.2,3050,9,999999999,80,0.0180,0,88,999.000,999.0,99.0 +1987,1,18,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.6,-5.6,64,87900,73,1237,276,21,6,21,2400,0,2400,690,250,6.7,10,9,48.3,3050,9,999999999,80,0.0260,0,88,999.000,999.0,99.0 +1987,1,18,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.1,-5.6,62,88000,259,1413,278,85,29,79,9200,2300,8800,1880,270,9.3,10,9,48.3,3050,9,999999999,80,0.0260,0,88,999.000,999.0,99.0 +1987,1,18,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.1,-5.0,64,88000,409,1413,272,157,95,129,16900,8500,14400,2870,260,9.3,10,8,48.3,3050,9,999999999,80,0.0260,0,88,999.000,999.0,99.0 +1987,1,18,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,-6.7,52,87900,508,1413,275,207,168,146,22500,16100,16700,3350,290,6.2,10,8,48.3,3050,9,999999999,69,0.0260,0,88,999.000,999.0,99.0 +1987,1,18,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,-7.2,43,87900,547,1413,276,276,287,165,29200,28100,18300,3510,260,8.2,9,6,48.3,7620,9,999999999,69,0.0260,0,88,999.000,999.0,99.0 +1987,1,18,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,-7.8,44,87900,525,1413,266,184,148,129,20300,14400,14900,2980,300,10.3,8,4,48.3,77777,9,999999999,69,0.0260,0,88,999.000,999.0,99.0 +1987,1,18,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,-8.3,44,88000,443,1413,266,136,71,114,15000,6500,12900,3080,280,9.3,10,5,48.3,77777,9,999999999,69,0.0260,0,88,999.000,999.0,99.0 +1987,1,18,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.1,-7.2,54,88000,306,1413,266,133,93,113,14200,7500,12600,2450,300,5.2,8,7,48.3,3050,9,999999999,69,0.0260,0,88,999.000,999.0,99.0 +1987,1,18,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.6,-8.3,52,88100,127,1413,263,33,29,30,3600,1800,3400,720,290,6.2,8,7,48.3,3050,9,999999999,69,0.0260,0,88,999.000,999.0,99.0 +1987,1,18,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-0.6,-7.8,59,88100,2,224,269,3,1,3,0,0,0,0,290,4.6,9,9,24.1,1370,9,999999999,69,0.0260,0,88,999.000,999.0,99.0 +1987,1,18,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-2.2,-9.4,58,88200,0,0,255,0,0,0,0,0,0,0,300,4.1,8,8,24.1,1370,9,999999999,60,0.0260,0,88,999.000,999.0,99.0 +1987,1,18,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-1.1,-10.6,49,88300,0,0,258,0,0,0,0,0,0,0,310,2.6,8,8,24.1,1370,9,999999999,60,0.0260,0,88,999.000,999.0,99.0 +1987,1,18,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-2.8,-5.6,81,88400,0,0,270,0,0,0,0,0,0,0,300,5.2,10,10,24.1,1250,9,999999999,80,0.0260,0,88,999.000,999.0,99.0 +1987,1,18,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-4.4,-6.7,85,88600,0,0,262,0,0,0,0,0,0,0,300,4.1,10,10,24.1,1250,9,999999999,69,0.0260,0,88,999.000,999.0,99.0 +1987,1,18,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-4.4,-8.9,72,88600,0,0,260,0,0,0,0,0,0,0,290,4.1,10,10,24.1,1070,9,999999999,69,0.0260,0,88,999.000,999.0,99.0 +1987,1,18,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-4.4,-8.4,71,88700,0,0,260,0,0,0,0,0,0,0,320,4.1,10,10,24.1,77777,9,999999999,69,0.0260,0,88,999.000,999.0,99.0 +1987,1,19,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-4.4,-9.1,67,88700,0,0,260,0,0,0,0,0,0,0,320,4.1,10,10,24.1,77777,9,999999999,69,0.0260,0,88,999.000,999.0,99.0 +1987,1,19,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-5.0,-10.7,61,88800,0,0,256,0,0,0,0,0,0,0,320,3.6,10,10,24.1,77777,9,999999999,69,0.0260,0,88,999.000,999.0,99.0 +1987,1,19,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-5.6,-10.0,68,88800,0,0,254,0,0,0,0,0,0,0,320,3.1,10,10,24.1,77777,9,999999999,60,0.0260,0,88,999.000,999.0,99.0 +1987,1,19,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-5.0,-10.4,62,88800,0,0,256,0,0,0,0,0,0,0,320,3.1,10,10,24.1,77777,9,999999999,60,0.0260,0,88,999.000,999.0,99.0 +1987,1,19,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-6.1,-11.9,60,88900,0,0,251,0,0,0,0,0,0,0,270,3.1,10,10,24.1,77777,9,999999999,60,0.0260,0,88,999.000,999.0,99.0 +1987,1,19,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-5.6,-11.1,65,88900,0,0,253,0,0,0,0,0,0,0,270,3.1,10,10,24.1,1160,9,999999999,60,0.0260,0,88,999.000,999.0,99.0 +1987,1,19,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-5.6,-10.6,68,88900,0,0,254,0,0,0,0,0,0,0,250,2.1,10,10,24.1,1370,9,999999999,60,0.0260,0,88,999.000,999.0,99.0 +1987,1,19,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-6.1,-9.4,78,88900,0,0,253,0,0,0,0,0,0,0,270,3.1,10,10,24.1,910,9,999999999,60,0.0260,0,88,999.000,999.0,99.0 +1987,1,19,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-6.1,-10.6,71,89000,76,1236,240,32,47,28,3400,2000,3200,580,270,3.1,10,8,24.1,1370,9,999999999,60,0.0170,0,88,999.000,999.0,99.0 +1987,1,19,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-5.0,-10.6,65,89100,262,1413,249,95,22,90,10300,1800,9900,2070,330,2.1,10,9,12.9,910,9,999999999,60,0.0170,0,88,999.000,999.0,99.0 +1987,1,19,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-3.3,-10.0,60,89100,413,1413,256,117,65,97,12700,5900,11000,2630,300,2.1,10,9,12.9,910,9,999999999,60,0.0170,0,88,999.000,999.0,99.0 +1987,1,19,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-3.3,-8.9,66,89100,512,1413,264,210,77,182,23000,7400,20300,4700,300,6.2,10,10,8.0,670,9,999999999,69,0.0170,0,88,999.000,999.0,99.0 +1987,1,19,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-2.2,-8.3,63,89100,552,1413,249,281,308,161,29900,30200,18000,3400,330,4.1,8,6,16.1,910,9,999999999,69,0.0170,0,88,999.000,999.0,99.0 +1987,1,19,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-2.2,-8.9,61,89100,530,1413,252,232,187,162,25200,18100,18400,3750,360,4.1,10,7,16.1,910,9,999999999,69,0.0170,0,88,999.000,999.0,99.0 +1987,1,19,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-2.2,-9.4,58,89100,448,1413,255,207,92,179,22700,8600,20000,4300,360,3.1,9,8,16.1,1220,9,999999999,60,0.0170,0,88,999.000,999.0,99.0 +1987,1,19,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.7,-9.4,56,89100,311,1413,257,143,236,92,15100,18600,11000,1820,350,4.1,8,8,32.2,1370,9,999999999,60,0.0170,0,88,999.000,999.0,99.0 +1987,1,19,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-3.3,-8.9,66,89100,132,1413,257,40,51,36,4400,2700,4200,750,330,2.1,9,9,48.3,1250,9,999999999,69,0.0170,0,88,999.000,999.0,99.0 +1987,1,19,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-4.4,-7.8,78,89100,3,247,254,3,2,3,0,0,0,0,260,2.6,9,9,48.3,1160,9,999999999,69,0.0170,0,88,999.000,999.0,99.0 +1987,1,19,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-6.1,-8.3,85,89100,0,0,233,0,0,0,0,0,0,0,270,3.1,5,5,24.1,77777,9,999999999,69,0.0170,0,88,999.000,999.0,99.0 +1987,1,19,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-8.3,-11.1,81,89100,0,0,220,0,0,0,0,0,0,0,0,0.0,3,3,24.1,77777,9,999999999,60,0.0170,0,88,999.000,999.0,99.0 +1987,1,19,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-10.0,-12.2,84,89100,0,0,204,0,0,0,0,0,0,0,200,2.1,0,0,24.1,77777,9,999999999,60,0.0170,0,88,999.000,999.0,99.0 +1987,1,19,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-11.7,-13.3,88,89100,0,0,198,0,0,0,0,0,0,0,270,3.1,0,0,24.1,77777,9,999999999,50,0.0170,0,88,999.000,999.0,99.0 +1987,1,19,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-11.1,-12.2,92,89000,0,0,210,0,0,0,0,0,0,0,0,0.0,3,3,24.1,77777,9,999999999,60,0.0170,0,88,999.000,999.0,99.0 +1987,1,19,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-13.3,-13.3,100,88900,0,0,204,0,0,0,0,0,0,0,0,0.0,8,4,24.1,77777,9,999999999,60,0.0170,0,88,999.000,999.0,99.0 +1987,1,20,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-14.4,-14.4,100,88800,0,0,201,0,0,0,0,0,0,0,260,1.5,8,5,24.1,77777,9,999999999,60,0.0170,0,88,999.000,999.0,99.0 +1987,1,20,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-13.3,-14.3,91,88800,0,0,206,0,0,0,0,0,0,0,260,1.5,9,6,24.1,77777,9,999999999,60,0.0170,0,88,999.000,999.0,99.0 +1987,1,20,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-13.3,-13.7,96,88700,0,0,209,0,0,0,0,0,0,0,270,1.5,9,7,24.1,77777,9,999999999,50,0.0170,0,88,999.000,999.0,99.0 +1987,1,20,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-12.2,-14.2,83,88600,0,0,212,0,0,0,0,0,0,0,270,2.1,9,7,24.1,77777,9,999999999,50,0.0170,0,88,999.000,999.0,99.0 +1987,1,20,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-5.6,-15.7,41,88600,0,0,237,0,0,0,0,0,0,0,270,7.2,9,8,24.1,77777,9,999999999,50,0.0170,0,88,999.000,999.0,99.0 +1987,1,20,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-4.4,-15.0,44,88500,0,0,247,0,0,0,0,0,0,0,260,7.7,10,9,24.1,6100,9,999999999,50,0.0170,0,88,999.000,999.0,99.0 +1987,1,20,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-4.4,-15.0,44,88500,0,0,254,0,0,0,0,0,0,0,260,6.7,10,10,24.1,6100,9,999999999,50,0.0170,0,88,999.000,999.0,99.0 +1987,1,20,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-3.9,-15.6,40,88500,0,0,243,0,0,0,0,0,0,0,260,5.2,10,8,64.4,6100,9,999999999,50,0.0170,0,88,999.000,999.0,99.0 +1987,1,20,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-3.3,-15.6,39,88400,78,1260,245,27,17,25,2900,1000,2800,580,260,9.3,10,8,64.4,7620,9,999999999,50,0.0130,0,88,999.000,999.0,99.0 +1987,1,20,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-2.2,-15.0,37,88400,266,1413,250,119,73,105,13000,6000,11800,2300,270,11.8,10,8,64.4,7620,9,999999999,50,0.0130,0,88,999.000,999.0,99.0 +1987,1,20,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.7,-14.4,38,88400,417,1413,265,135,5,134,14900,300,14800,4450,270,9.3,10,10,64.4,7620,9,999999999,50,0.0130,0,88,999.000,999.0,99.0 +1987,1,20,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.1,-13.9,38,88300,516,1413,268,151,6,148,16800,400,16700,5400,260,10.3,10,10,64.4,7620,9,999999999,50,0.0130,0,88,999.000,999.0,99.0 +1987,1,20,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.0,-13.9,35,88200,556,1413,255,260,182,189,28100,17800,21100,4420,250,10.3,10,7,64.4,7620,9,999999999,50,0.0130,0,88,999.000,999.0,99.0 +1987,1,20,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.6,-13.3,35,88100,535,1413,262,295,388,149,30600,36600,16700,2950,250,8.2,10,8,64.4,4270,9,999999999,50,0.0130,0,88,999.000,999.0,99.0 +1987,1,20,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.6,-12.8,37,88100,453,1413,258,232,427,97,24800,38600,12300,1810,270,5.2,10,7,64.4,4270,9,999999999,50,0.0130,0,88,999.000,999.0,99.0 +1987,1,20,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.1,-11.1,40,88100,317,1413,262,117,153,84,12500,12200,9800,1620,270,8.8,9,7,64.4,4270,9,999999999,60,0.0130,0,88,999.000,999.0,99.0 +1987,1,20,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,-10.0,42,88100,137,1413,265,39,58,34,4300,3200,4000,710,300,6.2,8,7,64.4,4270,9,999999999,60,0.0130,0,88,999.000,999.0,99.0 +1987,1,20,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.0,-10.0,47,88100,4,271,263,5,3,4,0,0,0,0,260,6.7,9,8,48.3,7620,9,999999999,60,0.0130,0,88,999.000,999.0,99.0 +1987,1,20,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,0.6,-10.0,46,88000,0,0,258,0,0,0,0,0,0,0,280,8.2,8,6,24.1,7620,9,999999999,60,0.0130,0,88,999.000,999.0,99.0 +1987,1,20,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,1.1,-10.0,44,88000,0,0,267,0,0,0,0,0,0,0,290,8.2,10,8,24.1,7620,9,999999999,60,0.0130,0,88,999.000,999.0,99.0 +1987,1,20,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,0.0,-10.0,47,88100,0,0,250,0,0,0,0,0,0,0,280,8.8,7,3,24.1,77777,9,999999999,60,0.0130,0,88,999.000,999.0,99.0 +1987,1,20,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-1.1,-9.4,54,88200,0,0,241,0,0,0,0,0,0,0,310,4.6,3,1,24.1,77777,9,999999999,60,0.0130,0,88,999.000,999.0,99.0 +1987,1,20,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-1.7,-9.4,56,88200,0,0,234,0,0,0,0,0,0,0,270,8.2,0,0,24.1,77777,9,999999999,60,0.0130,0,88,999.000,999.0,99.0 +1987,1,20,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-2.2,-8.5,58,88300,0,0,238,0,0,0,0,0,0,0,250,6.2,1,1,24.1,77777,9,999999999,60,0.0130,0,88,999.000,999.0,99.0 +1987,1,21,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-2.2,-9.0,56,88400,0,0,243,0,0,0,0,0,0,0,320,4.6,3,3,24.1,77777,9,999999999,60,0.0130,0,88,999.000,999.0,99.0 +1987,1,21,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-2.2,-10.3,50,88500,0,0,243,0,0,0,0,0,0,0,320,5.7,4,4,24.1,77777,9,999999999,60,0.0130,0,88,999.000,999.0,99.0 +1987,1,21,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-2.8,-9.3,57,88600,0,0,244,0,0,0,0,0,0,0,320,4.1,5,5,24.1,77777,9,999999999,60,0.0130,0,88,999.000,999.0,99.0 +1987,1,21,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-2.8,-9.4,57,88700,0,0,246,0,0,0,0,0,0,0,320,2.6,6,6,24.1,77777,9,999999999,60,0.0130,0,88,999.000,999.0,99.0 +1987,1,21,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-2.8,-10.5,51,88700,0,0,252,0,0,0,0,0,0,0,320,1.5,8,8,24.1,77777,9,999999999,60,0.0130,0,88,999.000,999.0,99.0 +1987,1,21,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-3.3,-9.4,63,88700,0,0,256,0,0,0,0,0,0,0,270,2.1,9,9,24.1,1070,9,999999999,60,0.0130,0,88,999.000,999.0,99.0 +1987,1,21,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-3.3,-8.9,66,88700,0,0,264,0,0,0,0,0,0,0,270,2.1,10,10,24.1,1370,9,999999999,69,0.0130,0,88,999.000,999.0,99.0 +1987,1,21,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-4.4,-10.0,66,88800,0,0,243,0,0,0,0,0,0,0,310,2.6,7,7,64.4,1370,9,999999999,60,0.0130,0,88,999.000,999.0,99.0 +1987,1,21,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-5.0,-10.0,68,88800,81,1283,230,42,291,18,3700,15500,2700,320,290,2.1,2,2,32.2,77777,9,999999999,60,0.0260,0,88,999.000,999.0,99.0 +1987,1,21,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.1,-9.4,54,88900,270,1413,241,150,665,24,16100,53700,5800,640,290,2.1,1,1,40.2,77777,9,999999999,60,0.0260,0,88,999.000,999.0,99.0 +1987,1,21,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-0.6,-9.4,52,88900,421,1413,238,280,833,32,29900,75000,7500,870,90,2.6,0,0,64.4,77777,9,999999999,60,0.0260,0,88,999.000,999.0,99.0 +1987,1,21,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-0.6,-9.4,52,88900,521,1413,238,364,892,37,39000,83600,8100,1010,80,2.6,0,0,64.4,77777,9,999999999,60,0.0260,0,88,999.000,999.0,99.0 +1987,1,21,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.1,-10.0,44,88800,561,1413,248,365,781,56,38600,73900,9100,1250,140,1.5,1,1,64.4,77777,9,999999999,60,0.0260,0,88,999.000,999.0,99.0 +1987,1,21,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,-9.4,39,88700,540,1413,257,360,821,48,38300,77300,8600,1170,0,0.0,1,1,64.4,77777,9,999999999,60,0.0260,0,88,999.000,999.0,99.0 +1987,1,21,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,-10.6,37,88700,458,1413,249,295,812,33,31700,74400,7400,910,270,4.1,0,0,64.4,77777,9,999999999,60,0.0260,0,88,999.000,999.0,99.0 +1987,1,21,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,-11.1,36,88700,322,1413,248,194,747,27,21100,63200,6600,730,260,5.2,0,0,64.4,77777,9,999999999,60,0.0260,0,88,999.000,999.0,99.0 +1987,1,21,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.1,-11.1,40,88700,142,1413,242,67,515,17,7300,34400,3800,410,270,4.1,0,0,64.4,77777,9,999999999,60,0.0260,0,88,999.000,999.0,99.0 +1987,1,21,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-3.3,-10.6,58,88700,5,318,228,8,44,2,0,0,0,0,270,2.6,0,0,48.3,77777,9,999999999,60,0.0260,0,88,999.000,999.0,99.0 +1987,1,21,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-4.4,-10.6,63,88700,0,0,224,0,0,0,0,0,0,0,200,1.5,0,0,24.1,77777,9,999999999,60,0.0260,0,88,999.000,999.0,99.0 +1987,1,21,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-7.2,-11.7,71,88700,0,0,214,0,0,0,0,0,0,0,220,2.1,0,0,24.1,77777,9,999999999,60,0.0260,0,88,999.000,999.0,99.0 +1987,1,21,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-8.3,-11.7,77,88700,0,0,210,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,60,0.0260,0,88,999.000,999.0,99.0 +1987,1,21,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-8.3,-11.1,81,88700,0,0,211,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,60,0.0260,0,88,999.000,999.0,99.0 +1987,1,21,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-10.6,-12.2,88,88700,0,0,203,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,60,0.0260,0,88,999.000,999.0,99.0 +1987,1,21,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-10.6,-12.2,88,88700,0,0,207,0,0,0,0,0,0,0,0,0.0,1,1,24.1,77777,9,999999999,60,0.0260,0,88,999.000,999.0,99.0 +1987,1,22,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-10.0,-12.7,88,88600,0,0,211,0,0,0,0,0,0,0,0,0.0,3,2,24.1,77777,9,999999999,60,0.0260,0,88,999.000,999.0,99.0 +1987,1,22,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-11.1,-14.0,88,88600,0,0,208,0,0,0,0,0,0,0,260,1.5,4,3,24.1,77777,9,999999999,50,0.0260,0,88,999.000,999.0,99.0 +1987,1,22,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-11.1,-13.1,88,88600,0,0,211,0,0,0,0,0,0,0,0,0.0,5,4,24.1,77777,9,999999999,50,0.0260,0,88,999.000,999.0,99.0 +1987,1,22,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-10.6,-13.2,88,88500,0,0,214,0,0,0,0,0,0,0,0,0.0,6,5,24.1,77777,9,999999999,60,0.0260,0,88,999.000,999.0,99.0 +1987,1,22,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-10.6,-14.3,88,88500,0,0,215,0,0,0,0,0,0,0,360,1.5,8,6,24.1,77777,9,999999999,60,0.0260,0,88,999.000,999.0,99.0 +1987,1,22,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-11.7,-13.3,88,88500,0,0,215,0,0,0,0,0,0,0,280,1.5,9,7,24.1,7620,9,999999999,50,0.0260,0,88,999.000,999.0,99.0 +1987,1,22,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-11.1,-12.2,92,88400,0,0,221,0,0,0,0,0,0,0,0,0.0,10,8,24.1,7620,9,999999999,60,0.0260,0,88,999.000,999.0,99.0 +1987,1,22,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-12.2,-13.3,92,88400,0,0,207,0,0,0,0,0,0,0,0,0.0,10,4,32.2,77777,9,999999999,50,0.0260,0,88,999.000,999.0,99.0 +1987,1,22,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-11.1,-12.8,88,88300,84,1306,211,30,47,26,3200,2100,3000,540,0,0.0,10,4,32.2,77777,9,999999999,50,0.0300,0,88,999.000,999.0,99.0 +1987,1,22,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-10.0,-11.7,88,88300,273,1412,219,85,118,62,9100,8700,7400,1150,0,0.0,10,6,32.2,7620,9,999999999,60,0.0300,0,88,999.000,999.0,99.0 +1987,1,22,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-8.3,-11.1,81,88300,425,1412,231,180,128,141,19300,11600,15800,3160,290,1.5,10,8,32.2,7620,9,999999999,60,0.0300,0,88,999.000,999.0,99.0 +1987,1,22,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-7.2,-11.1,74,88200,525,1412,247,116,5,114,13300,300,13200,4550,290,1.5,10,10,32.2,7620,9,999999999,60,0.0300,0,88,999.000,999.0,99.0 +1987,1,22,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-5.6,-11.1,65,88100,566,1412,246,155,11,150,17500,800,17200,5750,290,2.1,10,9,32.2,7620,9,999999999,60,0.0300,0,88,999.000,999.0,99.0 +1987,1,22,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-3.3,-11.1,55,88100,545,1412,243,225,194,150,24600,19000,17200,3490,280,1.5,10,6,32.2,7620,9,999999999,60,0.0300,0,88,999.000,999.0,99.0 +1987,1,22,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-2.8,-10.6,56,88000,464,1412,243,184,248,104,20000,23200,12400,2020,330,1.5,10,5,48.3,77777,9,999999999,60,0.0300,0,88,999.000,999.0,99.0 +1987,1,22,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-3.3,-10.6,58,87900,327,1412,246,145,84,126,15900,7300,14200,2880,0,0.0,10,7,64.4,7620,9,999999999,60,0.0300,0,88,999.000,999.0,99.0 +1987,1,22,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-3.3,-10.6,58,87900,147,1412,246,50,118,38,5300,5900,4700,700,280,2.6,9,7,64.4,7620,9,999999999,60,0.0300,0,88,999.000,999.0,99.0 +1987,1,22,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-4.4,-10.6,63,87900,6,341,242,4,3,4,0,0,0,0,260,1.5,9,7,48.3,4270,9,999999999,60,0.0300,0,88,999.000,999.0,99.0 +1987,1,22,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-6.7,-10.0,78,87800,0,0,232,0,0,0,0,0,0,0,0,0.0,8,6,24.1,4270,9,999999999,60,0.0300,0,88,999.000,999.0,99.0 +1987,1,22,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-6.7,-10.0,78,87800,0,0,230,0,0,0,0,0,0,0,240,2.6,7,5,24.1,7620,9,999999999,60,0.0300,0,88,999.000,999.0,99.0 +1987,1,22,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-6.7,-10.0,78,87700,0,0,230,0,0,0,0,0,0,0,240,3.1,8,5,24.1,7620,9,999999999,60,0.0300,0,88,999.000,999.0,99.0 +1987,1,22,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-6.7,-10.0,78,87700,0,0,230,0,0,0,0,0,0,0,0,0.0,8,5,24.1,7620,9,999999999,60,0.0300,0,88,999.000,999.0,99.0 +1987,1,22,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-7.2,-10.6,77,87700,0,0,226,0,0,0,0,0,0,0,0,0.0,7,4,24.1,7620,9,999999999,60,0.0300,0,88,999.000,999.0,99.0 +1987,1,22,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-6.7,-10.1,74,87600,0,0,228,0,0,0,0,0,0,0,0,0.0,7,4,24.1,77777,9,999999999,60,0.0300,0,88,999.000,999.0,99.0 +1987,1,23,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-7.8,-11.0,75,87600,0,0,222,0,0,0,0,0,0,0,0,0.0,7,3,24.1,77777,9,999999999,60,0.0300,0,88,999.000,999.0,99.0 +1987,1,23,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-8.3,-12.6,68,87500,0,0,219,0,0,0,0,0,0,0,0,0.0,6,3,24.1,77777,9,999999999,60,0.0300,0,88,999.000,999.0,99.0 +1987,1,23,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-8.9,-12.0,76,87500,0,0,217,0,0,0,0,0,0,0,260,2.1,6,3,24.1,77777,9,999999999,50,0.0300,0,88,999.000,999.0,99.0 +1987,1,23,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-10.0,-12.5,80,87500,0,0,211,0,0,0,0,0,0,0,0,0.0,6,2,24.1,77777,9,999999999,50,0.0300,0,88,999.000,999.0,99.0 +1987,1,23,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-10.0,-14.0,70,87400,0,0,210,0,0,0,0,0,0,0,0,0.0,6,2,24.1,77777,9,999999999,50,0.0300,0,88,999.000,999.0,99.0 +1987,1,23,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-11.7,-13.3,88,87400,0,0,202,0,0,0,0,0,0,0,0,0.0,5,1,24.1,77777,9,999999999,50,0.0300,0,88,999.000,999.0,99.0 +1987,1,23,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-10.6,-12.2,88,87400,0,0,207,0,0,0,0,0,0,0,0,0.0,5,1,24.1,77777,9,999999999,50,0.0300,0,88,999.000,999.0,99.0 +1987,1,23,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-11.7,-12.8,92,87400,0,0,207,0,0,0,0,0,0,0,0,0.0,10,3,24.1,77777,9,999999999,50,0.0300,0,88,999.000,999.0,99.0 +1987,1,23,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-11.7,-13.3,88,87400,87,1330,209,34,41,31,3700,1900,3500,640,0,0.0,10,4,24.1,77777,9,999999999,50,0.0290,0,88,999.000,999.0,99.0 +1987,1,23,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-9.4,-11.7,84,87400,277,1412,221,109,185,72,11500,13800,8700,1370,0,0.0,10,6,24.1,7620,9,999999999,60,0.0290,0,88,999.000,999.0,99.0 +1987,1,23,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-8.9,-10.6,88,87400,430,1412,230,133,94,104,14600,8600,11900,2330,0,0.0,10,8,24.1,7620,9,999999999,60,0.0290,0,88,999.000,999.0,99.0 +1987,1,23,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-6.7,-9.4,81,87300,530,1412,232,248,156,189,26600,15000,20900,4380,50,1.5,10,6,24.1,7620,9,999999999,60,0.0290,0,88,999.000,999.0,99.0 +1987,1,23,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-5.0,-9.4,71,87200,571,1412,238,286,321,156,30600,31800,17600,3270,10,1.5,10,6,24.1,7620,9,999999999,60,0.0290,0,88,999.000,999.0,99.0 +1987,1,23,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-3.9,-9.4,66,87200,550,1412,245,218,140,163,23700,13700,18300,3800,330,1.5,10,7,24.1,7620,9,999999999,60,0.0290,0,88,999.000,999.0,99.0 +1987,1,23,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-3.3,-9.4,63,87200,469,1412,244,228,365,107,24000,33400,12900,2020,340,1.5,10,6,64.4,7620,9,999999999,60,0.0290,0,88,999.000,999.0,99.0 +1987,1,23,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-2.2,-9.4,58,87200,333,1412,255,105,64,90,11500,5500,10200,2280,0,0.0,10,8,64.4,7620,9,999999999,60,0.0290,0,88,999.000,999.0,99.0 +1987,1,23,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-3.3,-8.9,66,87200,153,1412,257,25,14,24,2800,900,2700,620,0,0.0,10,9,64.4,7620,9,999999999,69,0.0290,0,88,999.000,999.0,99.0 +1987,1,23,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-3.9,-8.9,69,87200,7,388,249,5,3,5,0,0,0,0,0,0.0,10,8,24.1,7620,9,999999999,69,0.0290,0,88,999.000,999.0,99.0 +1987,1,23,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-7.2,-10.0,81,87200,0,0,222,0,0,0,0,0,0,0,0,0.0,3,2,24.1,77777,9,999999999,60,0.0290,0,88,999.000,999.0,99.0 +1987,1,23,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-6.1,-10.0,74,87200,0,0,226,0,0,0,0,0,0,0,0,0.0,3,2,24.1,77777,9,999999999,60,0.0290,0,88,999.000,999.0,99.0 +1987,1,23,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-7.8,-10.0,84,87200,0,0,213,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,60,0.0290,0,88,999.000,999.0,99.0 +1987,1,23,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-9.4,-11.7,84,87200,0,0,216,0,0,0,0,0,0,0,0,0.0,4,3,24.1,77777,9,999999999,60,0.0290,0,88,999.000,999.0,99.0 +1987,1,23,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-10.0,-11.7,88,87200,0,0,214,0,0,0,0,0,0,0,0,0.0,3,3,24.1,77777,9,999999999,60,0.0290,0,88,999.000,999.0,99.0 +1987,1,23,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-11.1,-11.1,88,87300,0,0,211,0,0,0,0,0,0,0,290,1.5,3,3,24.1,77777,9,999999999,50,0.0290,0,88,999.000,999.0,99.0 +1987,1,24,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-11.7,-11.7,88,87300,0,0,208,0,0,0,0,0,0,0,0,0.0,4,3,24.1,77777,9,999999999,50,0.0290,0,88,999.000,999.0,99.0 +1987,1,24,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-11.1,-12.8,88,87300,0,0,209,0,0,0,0,0,0,0,340,1.5,4,3,16.1,77777,9,999999999,50,0.0290,0,88,999.000,999.0,99.0 +1987,1,24,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-10.6,-11.3,88,87400,0,0,214,0,0,0,0,0,0,0,290,1.5,4,4,16.1,77777,9,999999999,50,0.0290,0,88,999.000,999.0,99.0 +1987,1,24,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-9.4,-10.9,88,87400,0,0,218,0,0,0,0,0,0,0,320,1.5,4,4,16.1,77777,9,999999999,60,0.0290,0,88,999.000,999.0,99.0 +1987,1,24,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-8.3,-11.6,88,87400,0,0,221,0,0,0,0,0,0,0,0,0.0,5,4,16.1,77777,9,999999999,60,0.0290,0,88,999.000,999.0,99.0 +1987,1,24,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-8.3,-10.0,88,87400,0,0,223,0,0,0,0,0,0,0,100,1.5,5,4,24.1,77777,9,999999999,60,0.0290,0,88,999.000,999.0,99.0 +1987,1,24,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-9.4,-10.6,92,87400,0,0,218,0,0,0,0,0,0,0,240,1.5,5,4,24.1,77777,9,999999999,60,0.0290,0,88,999.000,999.0,99.0 +1987,1,24,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-9.4,-10.6,92,87500,0,0,222,0,0,0,0,0,0,0,160,2.1,7,6,24.1,3660,9,999999999,60,0.0290,0,88,999.000,999.0,99.0 +1987,1,24,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-6.7,-8.9,84,87500,91,1353,235,34,82,27,3500,3100,3200,490,0,0.0,8,7,24.1,3660,9,999999999,60,0.0180,0,88,999.000,999.0,99.0 +1987,1,24,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-5.6,-8.3,81,87400,281,1412,233,134,265,81,14000,19800,10100,1580,330,2.6,5,4,24.1,77777,9,999999999,69,0.0180,0,88,999.000,999.0,99.0 +1987,1,24,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-3.3,-8.3,69,87500,434,1412,239,203,375,88,21700,33500,11300,1630,290,2.1,5,3,32.2,77777,9,999999999,69,0.0180,0,88,999.000,999.0,99.0 +1987,1,24,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-2.2,-8.3,63,87400,535,1412,249,242,256,146,25900,25000,16400,3020,0,0.0,10,6,32.2,7620,9,999999999,69,0.0180,0,88,999.000,999.0,99.0 +1987,1,24,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-0.6,-7.8,59,87400,576,1412,259,253,242,154,27100,24100,17200,3220,280,1.5,10,7,32.2,7620,9,999999999,69,0.0180,0,88,999.000,999.0,99.0 +1987,1,24,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.0,-7.2,59,87300,556,1412,272,205,65,180,22500,6300,20100,4890,330,2.1,10,9,32.2,3660,9,999999999,69,0.0180,0,88,999.000,999.0,99.0 +1987,1,24,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.1,-7.2,54,87200,475,1412,259,260,534,82,27200,48600,10800,1560,310,1.5,10,4,32.2,77777,9,999999999,69,0.0180,0,88,999.000,999.0,99.0 +1987,1,24,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.6,-6.7,59,87300,339,1412,269,149,199,102,15700,16300,11800,2040,270,2.6,10,8,48.3,3660,9,999999999,69,0.0180,0,88,999.000,999.0,99.0 +1987,1,24,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.0,-5.6,67,87300,158,1412,263,58,70,50,6200,4100,5800,1050,50,2.1,10,7,48.3,3660,9,999999999,80,0.0180,0,88,999.000,999.0,99.0 +1987,1,24,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-2.2,-6.7,72,87300,8,412,254,6,9,5,0,0,0,0,0,0.0,10,7,32.2,3660,9,999999999,69,0.0180,0,88,999.000,999.0,99.0 +1987,1,24,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-1.1,-6.7,66,87400,0,0,275,0,0,0,0,0,0,0,230,3.6,10,10,24.1,1370,9,999999999,69,0.0180,0,88,999.000,999.0,99.0 +1987,1,24,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,2.8,-1.7,73,87400,0,0,278,0,0,0,0,0,0,0,0,0.0,10,7,24.1,3660,9,999999999,100,0.0180,0,88,999.000,999.0,99.0 +1987,1,24,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,1.7,-3.3,70,87500,0,0,269,0,0,0,0,0,0,0,330,2.1,8,6,24.1,3660,9,999999999,89,0.0180,0,88,999.000,999.0,99.0 +1987,1,24,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,3.9,-4.4,55,87600,0,0,299,0,0,0,0,0,0,0,270,9.8,10,10,24.1,3660,9,999999999,80,0.0180,0,88,999.000,999.0,99.0 +1987,1,24,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,3.9,-4.4,55,87700,0,0,299,0,0,0,0,0,0,0,260,7.7,10,10,24.1,3660,9,999999999,80,0.0180,0,88,999.000,999.0,99.0 +1987,1,24,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,3.9,-3.9,55,87800,0,0,291,0,0,0,0,0,0,0,320,4.1,9,9,24.1,77777,9,999999999,80,0.0180,0,88,999.000,999.0,99.0 +1987,1,25,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,3.9,-4.7,51,87900,0,0,284,0,0,0,0,0,0,0,320,5.2,8,8,24.1,77777,9,999999999,80,0.0180,0,88,999.000,999.0,99.0 +1987,1,25,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,2.8,-6.3,48,87900,0,0,273,0,0,0,0,0,0,0,320,3.6,7,7,24.1,77777,9,999999999,80,0.0180,0,88,999.000,999.0,99.0 +1987,1,25,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,1.1,-5.6,58,88000,0,0,264,0,0,0,0,0,0,0,270,4.1,6,6,24.1,77777,9,999999999,80,0.0180,0,88,999.000,999.0,99.0 +1987,1,25,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-1.1,-6.0,66,88000,0,0,253,0,0,0,0,0,0,0,240,3.1,5,5,24.1,77777,9,999999999,69,0.0180,0,88,999.000,999.0,99.0 +1987,1,25,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-2.2,-7.5,64,88000,0,0,246,0,0,0,0,0,0,0,270,6.2,4,4,24.1,77777,9,999999999,69,0.0180,0,88,999.000,999.0,99.0 +1987,1,25,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-1.1,-6.7,62,88100,0,0,249,0,0,0,0,0,0,0,260,6.2,3,3,24.1,77777,9,999999999,69,0.0180,0,88,999.000,999.0,99.0 +1987,1,25,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,0.0,-7.2,59,88100,0,0,250,0,0,0,0,0,0,0,270,4.6,2,2,24.1,77777,9,999999999,69,0.0180,0,88,999.000,999.0,99.0 +1987,1,25,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,0.0,-7.2,59,88100,0,0,250,0,0,0,0,0,0,0,290,6.7,2,2,48.3,77777,9,999999999,69,0.0180,0,88,999.000,999.0,99.0 +1987,1,25,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.0,-7.2,59,88100,94,1376,254,33,112,24,3400,4800,3000,430,310,3.1,4,4,48.3,77777,9,999999999,69,0.0360,0,88,999.000,999.0,99.0 +1987,1,25,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,-6.7,48,88200,286,1411,272,120,229,74,12700,17300,9200,1410,360,2.6,6,6,48.3,1250,9,999999999,69,0.0360,0,88,999.000,999.0,99.0 +1987,1,25,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,-6.7,48,88200,439,1411,267,211,369,97,22300,33100,12000,1810,130,4.1,7,4,64.4,7620,9,999999999,69,0.0360,0,88,999.000,999.0,99.0 +1987,1,25,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,-5.6,53,88200,540,1411,281,192,170,127,21200,16700,14800,2950,120,3.6,10,8,64.4,6710,9,999999999,80,0.0360,0,88,999.000,999.0,99.0 +1987,1,25,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,-6.1,49,88200,582,1411,297,197,5,195,21900,400,21700,6880,130,3.6,10,10,64.4,3660,9,999999999,80,0.0360,0,88,999.000,999.0,99.0 +1987,1,25,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,-5.6,51,88100,561,1411,297,134,14,129,15400,1000,15000,5150,130,3.6,10,10,64.4,3660,9,999999999,80,0.0360,0,88,999.000,999.0,99.0 +1987,1,25,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,-3.3,55,88100,480,1411,296,161,113,123,17700,10700,14000,2800,0,0.0,10,9,64.4,3660,9,999999999,89,0.0360,0,88,999.000,999.0,99.0 +1987,1,25,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,-6.1,47,88100,344,1411,277,141,175,99,14900,14500,11400,1960,130,3.1,10,6,64.4,6710,9,999999999,80,0.0360,0,88,999.000,999.0,99.0 +1987,1,25,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,-6.1,47,88100,164,1411,280,52,36,48,5700,2500,5400,1110,290,2.1,10,7,64.4,3660,9,999999999,80,0.0360,0,88,999.000,999.0,99.0 +1987,1,25,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.1,-5.6,62,88200,10,459,272,6,6,5,0,0,0,0,170,3.1,10,8,48.3,1520,9,999999999,80,0.0360,0,88,999.000,999.0,99.0 +1987,1,25,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,0.6,-6.1,61,88200,0,0,275,0,0,0,0,0,0,0,180,1.5,10,9,24.1,3660,9,999999999,80,0.0360,0,88,999.000,999.0,99.0 +1987,1,25,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,0.0,-5.6,67,88200,0,0,281,0,0,0,0,0,0,0,280,2.1,10,10,24.1,3660,9,999999999,80,0.0360,0,88,999.000,999.0,99.0 +1987,1,25,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,0.0,-6.1,64,88300,0,0,280,0,0,0,0,0,0,0,340,1.5,10,10,24.1,3660,9,999999999,80,0.0360,0,88,999.000,999.0,99.0 +1987,1,25,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,1.1,-4.4,67,88300,0,0,287,0,0,0,0,0,0,0,160,1.5,10,10,24.1,3660,9,999999999,80,0.0360,0,88,999.000,999.0,99.0 +1987,1,25,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-0.6,-5.0,72,88300,0,0,271,0,0,0,0,0,0,0,0,0.0,9,9,24.1,3660,9,999999999,80,0.0360,0,88,999.000,999.0,99.0 +1987,1,25,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,0.6,-4.3,67,88300,0,0,277,0,0,0,0,0,0,0,180,3.1,9,9,24.1,77777,9,999999999,80,0.0360,0,88,999.000,999.0,99.0 +1987,1,26,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-0.6,-4.8,70,88300,0,0,266,0,0,0,0,0,0,0,240,3.1,9,8,24.1,77777,9,999999999,80,0.0360,0,88,999.000,999.0,99.0 +1987,1,26,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-2.2,-6.2,71,88200,0,0,258,0,0,0,0,0,0,0,90,1.5,9,8,24.1,77777,9,999999999,80,0.0360,0,88,999.000,999.0,99.0 +1987,1,26,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-3.3,-5.4,84,88200,0,0,255,0,0,0,0,0,0,0,320,2.1,9,8,24.1,77777,9,999999999,80,0.0360,0,88,999.000,999.0,99.0 +1987,1,26,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-3.9,-5.6,86,88100,0,0,248,0,0,0,0,0,0,0,180,2.6,8,7,24.1,77777,9,999999999,80,0.0360,0,88,999.000,999.0,99.0 +1987,1,26,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-4.4,-6.8,81,88000,0,0,246,0,0,0,0,0,0,0,0,0.0,8,7,24.1,77777,9,999999999,80,0.0360,0,88,999.000,999.0,99.0 +1987,1,26,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-5.0,-5.9,93,88000,0,0,241,0,0,0,0,0,0,0,0,0.0,8,6,24.1,77777,9,999999999,80,0.0360,0,88,999.000,999.0,99.0 +1987,1,26,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-2.8,-6.1,78,88000,0,0,249,0,0,0,0,0,0,0,100,2.1,8,6,24.1,2440,9,999999999,80,0.0360,0,88,999.000,999.0,99.0 +1987,1,26,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-0.6,-4.4,75,88100,0,0,262,0,0,0,0,0,0,0,0,0.0,8,7,48.3,2440,9,999999999,80,0.0360,0,88,999.000,999.0,99.0 +1987,1,26,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.1,-2.8,76,88100,98,1399,270,30,103,22,3100,4500,2800,390,340,2.6,8,7,48.3,2440,9,999999999,89,0.0290,0,88,999.000,999.0,99.0 +1987,1,26,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,-0.6,63,88200,290,1411,289,131,258,79,13900,19700,9900,1530,310,5.2,6,6,48.3,2440,9,999999999,110,0.0290,0,88,999.000,999.0,99.0 +1987,1,26,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,-0.6,60,88200,443,1411,285,241,515,80,25000,46000,10500,1490,280,5.2,3,3,48.3,77777,9,999999999,110,0.0290,0,88,999.000,999.0,99.0 +1987,1,26,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,-1.1,56,88300,545,1411,297,312,395,160,33200,38700,18200,3380,270,4.6,8,7,48.3,2440,9,999999999,100,0.0290,0,88,999.000,999.0,99.0 +1987,1,26,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,-1.1,56,88200,587,1411,289,296,458,106,32200,44500,13600,2040,280,6.7,5,4,48.3,77777,9,999999999,100,0.0290,0,88,999.000,999.0,99.0 +1987,1,26,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,-1.1,58,88100,567,1411,291,252,160,188,27300,15700,20900,4410,290,6.2,6,6,48.3,6710,9,999999999,100,0.0290,0,88,999.000,999.0,99.0 +1987,1,26,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,-1.1,60,88100,486,1411,289,229,325,118,24100,30000,13700,2260,300,5.7,8,6,48.3,2440,9,999999999,100,0.0290,0,88,999.000,999.0,99.0 +1987,1,26,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,-1.1,60,88100,350,1411,286,140,172,98,14800,14400,11300,1930,280,6.7,7,5,48.3,3050,9,999999999,100,0.0290,0,88,999.000,999.0,99.0 +1987,1,26,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,-1.1,70,88100,169,1411,277,66,205,42,6900,11700,5500,760,270,2.6,10,5,48.3,77777,9,999999999,100,0.0290,0,88,999.000,999.0,99.0 +1987,1,26,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.1,-1.7,82,88100,11,482,264,9,16,8,0,0,0,0,180,3.1,10,4,48.3,77777,9,999999999,100,0.0290,0,88,999.000,999.0,99.0 +1987,1,26,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,1.7,-1.1,82,88100,0,0,285,0,0,0,0,0,0,0,180,3.1,10,9,24.1,3050,9,999999999,100,0.0290,0,88,999.000,999.0,99.0 +1987,1,26,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,1.7,-1.7,79,88000,0,0,284,0,0,0,0,0,0,0,180,2.6,10,9,24.1,3050,9,999999999,100,0.0290,0,88,999.000,999.0,99.0 +1987,1,26,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-1.1,-2.2,92,88100,0,0,255,0,0,0,0,0,0,0,0,0.0,10,4,24.1,77777,9,999999999,100,0.0290,0,88,999.000,999.0,99.0 +1987,1,26,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-1.1,-2.2,92,88000,0,0,272,0,0,0,0,0,0,0,60,1.5,10,9,24.1,3050,9,999999999,100,0.0290,0,88,999.000,999.0,99.0 +1987,1,26,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-1.7,-2.8,92,88000,0,0,263,0,0,0,0,0,0,0,190,1.5,9,8,24.1,3050,9,999999999,89,0.0290,0,88,999.000,999.0,99.0 +1987,1,26,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,0.0,-2.2,92,88100,0,0,266,0,0,0,0,0,0,0,0,0.0,8,7,24.1,77777,9,999999999,100,0.0290,0,88,999.000,999.0,99.0 +1987,1,27,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-1.7,-2.8,92,88100,0,0,256,0,0,0,0,0,0,0,130,1.5,7,6,24.1,3050,9,999999999,89,0.0290,0,88,999.000,999.0,99.0 +1987,1,27,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,3.3,0.0,79,88100,0,0,276,0,0,0,0,0,0,0,350,4.1,6,5,24.1,3050,9,999999999,110,0.0290,0,88,999.000,999.0,99.0 +1987,1,27,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,3.3,0.0,79,88200,0,0,274,0,0,0,0,0,0,0,300,3.1,5,4,24.1,77777,9,999999999,110,0.0290,0,88,999.000,999.0,99.0 +1987,1,27,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,5.0,-0.7,81,88200,0,0,278,0,0,0,0,0,0,0,360,3.1,3,3,24.1,77777,9,999999999,120,0.0290,0,88,999.000,999.0,99.0 +1987,1,27,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,1.1,-2.5,82,88200,0,0,258,0,0,0,0,0,0,0,320,4.1,2,2,24.1,77777,9,999999999,100,0.0290,0,88,999.000,999.0,99.0 +1987,1,27,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,1.1,-2.0,84,88100,0,0,255,0,0,0,0,0,0,0,300,4.6,1,1,24.1,77777,9,999999999,100,0.0290,0,88,999.000,999.0,99.0 +1987,1,27,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-0.6,-2.8,85,88000,0,0,244,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,89,0.0290,0,88,999.000,999.0,99.0 +1987,1,27,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,4.4,-1.7,65,88000,0,12,263,0,0,0,0,0,0,0,280,6.2,0,0,64.4,77777,9,999999999,100,0.0290,0,88,999.000,999.0,99.0 +1987,1,27,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,-2.2,70,88000,102,1411,257,43,295,19,4100,14300,3100,340,180,2.6,0,0,64.4,77777,9,999999999,100,0.0540,0,88,999.000,999.0,99.0 +1987,1,27,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,-1.1,63,88000,295,1411,273,144,496,41,15200,39200,7000,770,130,3.1,3,1,64.4,77777,9,999999999,100,0.0540,0,88,999.000,999.0,99.0 +1987,1,27,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,-0.6,60,88000,448,1411,282,253,515,90,26000,45800,11400,1650,120,3.1,6,2,64.4,77777,9,999999999,110,0.0540,0,88,999.000,999.0,99.0 +1987,1,27,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,0.0,54,87900,550,1411,295,286,441,115,30600,42100,14100,2210,10,2.1,7,3,64.4,77777,9,999999999,110,0.0540,0,88,999.000,999.0,99.0 +1987,1,27,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,-0.6,50,87800,592,1411,298,219,161,151,24100,16100,17300,3580,0,0.0,8,4,64.4,77777,9,999999999,110,0.0540,0,88,999.000,999.0,99.0 +1987,1,27,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,0.0,58,87700,573,1411,295,342,493,143,36000,47400,16600,2830,240,1.5,8,5,64.4,1370,9,999999999,110,0.0540,0,88,999.000,999.0,99.0 +1987,1,27,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,0.0,61,87500,492,1411,298,203,179,141,22200,17100,16200,3220,260,1.5,10,7,64.4,7620,9,999999999,110,0.0540,0,88,999.000,999.0,99.0 +1987,1,27,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,-0.6,52,87500,356,1411,301,142,200,92,15100,16800,10900,1780,290,2.6,10,6,64.4,7620,9,999999999,110,0.0540,0,88,999.000,999.0,99.0 +1987,1,27,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,-0.6,58,87400,175,1411,280,68,202,43,7000,11800,5600,780,280,2.1,10,1,64.4,77777,9,999999999,100,0.0540,0,88,999.000,999.0,99.0 +1987,1,27,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,-2.2,73,87300,13,529,259,9,26,7,0,0,0,0,220,2.6,7,1,64.4,77777,9,999999999,100,0.0540,0,88,999.000,999.0,99.0 +1987,1,27,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,0.6,-2.2,82,87200,0,0,253,0,0,0,0,0,0,0,190,1.5,8,1,24.1,77777,9,999999999,100,0.0540,0,88,999.000,999.0,99.0 +1987,1,27,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,0.0,-2.8,82,87100,0,0,257,0,0,0,0,0,0,0,240,1.5,7,3,24.1,77777,9,999999999,89,0.0540,0,88,999.000,999.0,99.0 +1987,1,27,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-1.7,-3.3,89,87100,0,0,244,0,0,0,0,0,0,0,0,0.0,6,1,24.1,77777,9,999999999,89,0.0540,0,88,999.000,999.0,99.0 +1987,1,27,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-2.2,-3.9,89,87000,0,0,245,0,0,0,0,0,0,0,0,0.0,9,2,24.1,77777,9,999999999,89,0.0540,0,88,999.000,999.0,99.0 +1987,1,27,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-1.1,-3.3,85,86900,0,0,265,0,0,0,0,0,0,0,210,2.1,10,8,24.1,7620,9,999999999,89,0.0540,0,88,999.000,999.0,99.0 +1987,1,27,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-1.7,-2.4,85,86800,0,0,264,0,0,0,0,0,0,0,220,1.5,10,8,24.1,77777,9,999999999,89,0.0540,0,88,999.000,999.0,99.0 +1987,1,28,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-1.1,-2.7,85,86700,0,0,266,0,0,0,0,0,0,0,180,1.5,10,8,24.1,77777,9,999999999,89,0.0540,0,88,999.000,999.0,99.0 +1987,1,28,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-1.7,-3.9,85,86700,0,0,258,0,0,0,0,0,0,0,230,2.1,9,7,24.1,77777,9,999999999,89,0.0540,0,88,999.000,999.0,99.0 +1987,1,28,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-2.2,-4.4,85,86600,0,0,256,0,0,0,0,0,0,0,220,1.5,9,7,24.1,77777,9,999999999,80,0.0540,0,88,999.000,999.0,99.0 +1987,1,28,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-2.2,-5.0,85,86500,0,0,255,0,0,0,0,0,0,0,0,0.0,9,7,24.1,77777,9,999999999,80,0.0540,0,88,999.000,999.0,99.0 +1987,1,28,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-1.7,-6.6,85,86400,0,0,256,0,0,0,0,0,0,0,0,0.0,9,7,24.1,77777,9,999999999,89,0.0540,0,88,999.000,999.0,99.0 +1987,1,28,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-3.9,-6.1,85,86400,0,0,245,0,0,0,0,0,0,0,0,0.0,8,6,24.1,77777,9,999999999,80,0.0540,0,88,999.000,999.0,99.0 +1987,1,28,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-3.3,-6.1,81,86300,0,0,247,0,0,0,0,0,0,0,0,0.0,8,6,24.1,7620,9,999999999,80,0.0540,0,88,999.000,999.0,99.0 +1987,1,28,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-3.3,-5.6,85,86300,0,35,248,0,0,0,0,0,0,0,0,0.0,9,6,48.3,7620,9,999999999,80,0.0540,0,88,999.000,999.0,99.0 +1987,1,28,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-2.2,-4.4,85,86300,106,1410,266,30,15,28,3200,900,3100,650,0,0.0,10,9,48.3,1520,9,999999999,80,0.0240,0,88,999.000,999.0,99.0 +1987,1,28,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,-1.7,65,86500,299,1410,295,119,62,106,13000,5200,11900,2460,250,8.8,10,9,48.3,1370,9,999999999,100,0.0240,0,88,999.000,999.0,99.0 +1987,1,28,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,-1.7,70,86600,453,1410,299,132,9,129,14700,600,14500,4590,260,9.3,10,10,48.3,1370,9,999999999,100,0.0240,0,88,999.000,999.0,99.0 +1987,1,28,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,-3.9,64,86800,555,1410,292,156,8,152,17500,600,17300,5740,260,9.8,10,10,32.2,1680,9,999999999,89,0.0240,0,88,999.000,999.0,99.0 +1987,1,28,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,-6.1,50,86800,598,1410,294,198,6,195,22000,500,21800,7030,290,8.2,10,10,32.2,1980,9,999999999,80,0.0240,0,88,999.000,999.0,99.0 +1987,1,28,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,-6.1,50,86800,578,1410,294,182,4,181,20400,300,20300,6570,290,7.2,10,10,64.4,2290,9,999999999,80,0.0240,0,88,999.000,999.0,99.0 +1987,1,28,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,-7.8,44,86900,498,1410,292,140,6,138,15700,400,15600,5060,290,8.2,10,10,48.3,2440,9,999999999,69,0.0240,0,88,999.000,999.0,99.0 +1987,1,28,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,-7.8,44,87000,362,1410,292,111,3,110,12200,200,12200,3640,280,7.7,10,10,48.3,1160,9,999999999,69,0.0240,0,88,999.000,999.0,99.0 +1987,1,28,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,-7.8,46,87100,180,1410,290,52,2,52,5700,0,5700,1620,270,8.8,10,10,24.1,1370,9,999999999,69,0.0240,0,88,999.000,999.0,99.0 +1987,1,28,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,-7.8,46,87200,15,552,264,14,16,13,0,0,0,0,260,10.3,8,4,24.1,77777,9,999999999,69,0.0240,0,88,999.000,999.0,99.0 +1987,1,28,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,2.2,-7.8,48,87200,0,0,260,0,0,0,0,0,0,0,260,7.7,7,3,24.1,77777,9,999999999,69,0.0240,0,88,999.000,999.0,99.0 +1987,1,28,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,2.8,-8.3,44,87300,0,0,271,0,0,0,0,0,0,0,270,6.2,8,7,24.1,1160,9,999999999,69,0.0240,0,88,999.000,999.0,99.0 +1987,1,28,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,2.8,-8.3,44,87400,0,0,271,0,0,0,0,0,0,0,270,6.2,8,7,24.1,1250,9,999999999,69,0.0240,0,88,999.000,999.0,99.0 +1987,1,28,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,2.2,-6.1,55,87500,0,0,271,0,0,0,0,0,0,0,270,5.2,8,7,24.1,1250,9,999999999,80,0.0240,0,88,999.000,999.0,99.0 +1987,1,28,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,1.7,-7.2,52,87600,0,0,263,0,0,0,0,0,0,0,260,7.2,5,5,24.1,77777,9,999999999,69,0.0240,0,88,999.000,999.0,99.0 +1987,1,28,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,1.1,-6.6,52,87700,0,0,261,0,0,0,0,0,0,0,270,7.2,5,5,24.1,77777,9,999999999,69,0.0240,0,88,999.000,999.0,99.0 +1987,1,29,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,1.7,-7.2,52,87700,0,0,265,0,0,0,0,0,0,0,240,6.2,6,6,24.1,77777,9,999999999,69,0.0240,0,88,999.000,999.0,99.0 +1987,1,29,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,2.8,-7.8,46,87800,0,0,269,0,0,0,0,0,0,0,260,10.3,6,6,24.1,77777,9,999999999,69,0.0240,0,88,999.000,999.0,99.0 +1987,1,29,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,1.1,-6.6,49,87900,0,0,263,0,0,0,0,0,0,0,270,6.7,6,6,24.1,77777,9,999999999,69,0.0240,0,88,999.000,999.0,99.0 +1987,1,29,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,1.7,-6.5,51,87900,0,0,266,0,0,0,0,0,0,0,250,8.2,6,6,24.1,77777,9,999999999,69,0.0240,0,88,999.000,999.0,99.0 +1987,1,29,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,1.1,-7.4,54,88000,0,0,266,0,0,0,0,0,0,0,270,9.3,7,7,24.1,77777,9,999999999,69,0.0240,0,88,999.000,999.0,99.0 +1987,1,29,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,1.1,-6.2,56,88100,0,0,267,0,0,0,0,0,0,0,270,6.7,7,7,24.1,77777,9,999999999,69,0.0240,0,88,999.000,999.0,99.0 +1987,1,29,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,1.1,-6.1,59,88100,0,0,267,0,0,0,0,0,0,0,270,4.6,7,7,24.1,1250,9,999999999,80,0.0240,0,88,999.000,999.0,99.0 +1987,1,29,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,1.1,-6.1,59,88100,0,59,264,0,0,0,0,0,0,0,280,3.6,6,6,64.4,1160,9,999999999,80,0.0240,0,88,999.000,999.0,99.0 +1987,1,29,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.6,-6.7,59,88200,110,1410,259,48,258,27,4700,12600,3700,460,350,1.5,5,5,64.4,77777,9,999999999,69,0.0230,0,88,999.000,999.0,99.0 +1987,1,29,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,-6.1,52,88200,304,1410,278,78,55,67,8700,4600,7700,1750,250,3.6,8,8,64.4,1250,9,999999999,80,0.0230,0,88,999.000,999.0,99.0 +1987,1,29,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,-12.2,29,88300,459,1410,278,148,111,112,16300,10400,12900,2530,270,6.7,8,8,64.4,1250,9,999999999,60,0.0230,0,88,999.000,999.0,99.0 +1987,1,29,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,-6.7,40,88200,561,1410,281,242,279,131,26200,27600,15100,2650,260,5.2,7,5,64.4,7620,9,999999999,69,0.0230,0,88,999.000,999.0,99.0 +1987,1,29,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,-7.8,35,88100,604,1410,275,380,683,89,40300,66100,11900,1820,290,6.2,7,2,64.4,77777,9,999999999,69,0.0230,0,88,999.000,999.0,99.0 +1987,1,29,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,-8.3,34,88100,584,1410,274,370,695,83,39300,66900,11400,1690,290,6.7,9,2,64.4,77777,9,999999999,69,0.0230,0,88,999.000,999.0,99.0 +1987,1,29,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,-9.4,27,88100,504,1410,273,333,731,74,34300,67400,10100,1380,290,6.2,10,0,64.4,77777,9,999999999,60,0.0230,0,88,999.000,999.0,99.0 +1987,1,29,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,-7.8,35,88000,368,1410,275,204,600,50,21200,51600,7700,970,310,4.1,10,2,64.4,77777,9,999999999,69,0.0230,0,88,999.000,999.0,99.0 +1987,1,29,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,-7.2,43,88000,186,1410,266,77,228,48,8000,13800,6200,880,310,2.6,10,2,24.1,77777,9,999999999,69,0.0230,0,88,999.000,999.0,99.0 +1987,1,29,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,-6.7,54,88100,17,599,257,15,41,11,0,0,0,0,170,2.1,10,2,24.1,77777,9,999999999,69,0.0230,0,88,999.000,999.0,99.0 +1987,1,29,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,0.0,-7.2,59,88100,0,0,250,0,0,0,0,0,0,0,230,2.1,10,2,24.1,77777,9,999999999,69,0.0230,0,88,999.000,999.0,99.0 +1987,1,29,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-0.6,-7.8,59,88100,0,0,244,0,0,0,0,0,0,0,340,1.5,8,1,24.1,77777,9,999999999,69,0.0230,0,88,999.000,999.0,99.0 +1987,1,29,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-1.1,-7.8,61,88100,0,0,242,0,0,0,0,0,0,0,240,2.1,5,1,24.1,77777,9,999999999,69,0.0230,0,88,999.000,999.0,99.0 +1987,1,29,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-3.3,-7.2,75,88100,0,0,235,0,0,0,0,0,0,0,260,1.5,5,1,24.1,77777,9,999999999,69,0.0230,0,88,999.000,999.0,99.0 +1987,1,29,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-3.9,-8.3,72,88100,0,0,227,0,0,0,0,0,0,0,240,2.6,0,0,24.1,77777,9,999999999,69,0.0230,0,88,999.000,999.0,99.0 +1987,1,29,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-4.4,-7.5,77,88100,0,0,231,0,0,0,0,0,0,0,270,2.1,1,1,24.1,77777,9,999999999,69,0.0230,0,88,999.000,999.0,99.0 +1987,1,30,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-4.4,-8.1,73,88000,0,0,233,0,0,0,0,0,0,0,270,3.1,3,2,24.1,77777,9,999999999,69,0.0230,0,88,999.000,999.0,99.0 +1987,1,30,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-6.1,-9.4,75,88000,0,0,229,0,0,0,0,0,0,0,140,2.1,4,3,24.1,77777,9,999999999,69,0.0230,0,88,999.000,999.0,99.0 +1987,1,30,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-5.0,-8.5,74,88000,0,0,235,0,0,0,0,0,0,0,320,1.5,5,4,24.1,77777,9,999999999,69,0.0230,0,88,999.000,999.0,99.0 +1987,1,30,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-5.6,-8.7,76,87900,0,0,233,0,0,0,0,0,0,0,270,1.5,6,4,24.1,77777,9,999999999,69,0.0230,0,88,999.000,999.0,99.0 +1987,1,30,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-5.6,-9.9,69,87900,0,0,234,0,0,0,0,0,0,0,230,2.1,8,5,24.1,77777,9,999999999,69,0.0230,0,88,999.000,999.0,99.0 +1987,1,30,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-5.6,-8.9,78,87900,0,0,237,0,0,0,0,0,0,0,240,2.1,9,6,24.1,4570,9,999999999,69,0.0230,0,88,999.000,999.0,99.0 +1987,1,30,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-5.6,-8.9,78,87900,0,0,239,0,0,0,0,0,0,0,210,2.1,10,7,24.1,7620,9,999999999,69,0.0230,0,88,999.000,999.0,99.0 +1987,1,30,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-6.7,-9.4,81,87900,0,82,232,0,0,0,0,0,0,0,230,1.5,10,6,24.1,7620,9,999999999,60,0.0230,0,88,999.000,999.0,99.0 +1987,1,30,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-5.0,-8.9,75,87900,115,1410,237,42,29,40,4600,1800,4500,870,270,2.6,10,5,64.4,77777,9,999999999,69,0.0140,0,88,999.000,999.0,99.0 +1987,1,30,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-2.8,-8.3,66,87900,309,1410,236,162,539,45,17100,43300,7500,850,310,1.5,10,1,64.4,77777,9,999999999,69,0.0140,0,88,999.000,999.0,99.0 +1987,1,30,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.0,-8.3,54,87900,464,1410,251,262,496,99,27800,45300,12900,1850,270,2.1,10,3,64.4,77777,9,999999999,69,0.0140,0,88,999.000,999.0,99.0 +1987,1,30,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.6,-8.3,52,87800,567,1410,260,270,371,122,28900,35700,14400,2370,290,2.1,10,6,64.4,7620,9,999999999,69,0.0140,0,88,999.000,999.0,99.0 +1987,1,30,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,-7.8,50,87700,610,1410,278,216,75,184,23800,7300,20600,5230,260,1.5,10,9,64.4,7620,9,999999999,69,0.0140,0,88,999.000,999.0,99.0 +1987,1,30,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,-7.8,48,87600,590,1410,288,144,6,142,16500,400,16300,5670,0,0.0,10,10,64.4,6100,9,999999999,69,0.0140,0,88,999.000,999.0,99.0 +1987,1,30,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,-7.8,48,87500,510,1410,288,131,12,126,14800,800,14500,4820,290,2.1,10,10,64.4,6100,9,999999999,69,0.0140,0,88,999.000,999.0,99.0 +1987,1,30,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,-7.8,46,87500,374,1410,276,149,97,124,16100,8400,13900,2740,310,1.5,10,8,64.4,4880,9,999999999,69,0.0140,0,88,999.000,999.0,99.0 +1987,1,30,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,-6.7,52,87500,192,1410,289,74,21,71,8100,1500,7800,1540,0,0.0,10,10,24.1,3660,9,999999999,69,0.0140,0,88,999.000,999.0,99.0 +1987,1,30,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,-3.9,60,87500,20,623,297,9,3,9,0,0,0,0,230,3.1,10,10,24.1,3660,9,999999999,89,0.0140,0,88,999.000,999.0,99.0 +1987,1,30,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,1.1,-5.6,62,87500,0,0,285,0,0,0,0,0,0,0,140,2.6,10,10,24.1,1070,9,999999999,80,0.0140,0,88,999.000,999.0,99.0 +1987,1,30,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,1.1,-5.0,64,87500,0,0,286,0,0,0,0,0,0,0,150,1.5,10,10,24.1,1070,9,999999999,80,0.0140,0,88,999.000,999.0,99.0 +1987,1,30,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,0.6,-4.4,70,87500,0,0,285,0,0,0,0,0,0,0,270,1.5,10,10,24.1,3660,9,999999999,80,0.0140,0,88,999.000,999.0,99.0 +1987,1,30,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,0.6,-4.4,70,87600,0,0,285,0,0,0,0,0,0,0,240,2.6,10,10,24.1,3660,9,999999999,80,0.0140,0,88,999.000,999.0,99.0 +1987,1,30,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,2.8,-2.8,67,87600,0,0,296,0,0,0,0,0,0,0,250,5.7,10,10,24.1,1520,9,999999999,89,0.0140,0,88,999.000,999.0,99.0 +1987,1,30,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,1.1,-2.3,69,87700,0,0,281,0,0,0,0,0,0,0,270,4.1,9,9,24.1,77777,9,999999999,89,0.0140,0,88,999.000,999.0,99.0 +1987,1,31,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,1.7,-3.0,70,87700,0,0,277,0,0,0,0,0,0,0,230,4.1,8,8,24.1,77777,9,999999999,89,0.0140,0,88,999.000,999.0,99.0 +1987,1,31,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,1.7,-4.6,72,87700,0,0,271,0,0,0,0,0,0,0,270,10.3,7,7,24.1,77777,9,999999999,89,0.0140,0,88,999.000,999.0,99.0 +1987,1,31,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,0.6,-3.9,73,87700,0,0,264,0,0,0,0,0,0,0,250,2.1,6,6,24.1,1070,9,999999999,89,0.0140,0,88,999.000,999.0,99.0 +1987,1,31,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,1.1,-5.6,62,87800,0,0,260,0,0,0,0,0,0,0,250,2.6,4,4,24.1,77777,9,999999999,80,0.0140,0,88,999.000,999.0,99.0 +1987,1,31,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-0.6,-7.8,61,87800,0,0,250,0,0,0,0,0,0,0,230,2.1,3,3,24.1,77777,9,999999999,69,0.0140,0,88,999.000,999.0,99.0 +1987,1,31,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-0.6,-7.8,59,87800,0,0,247,0,0,0,0,0,0,0,320,2.6,2,2,24.1,77777,9,999999999,69,0.0140,0,88,999.000,999.0,99.0 +1987,1,31,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-2.8,-7.8,69,87800,0,0,236,0,0,0,0,0,0,0,270,2.6,1,1,24.1,77777,9,999999999,69,0.0140,0,88,999.000,999.0,99.0 +1987,1,31,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-2.2,-7.8,66,87800,1,106,246,2,2,1,0,0,0,0,250,2.6,7,4,64.4,4270,9,999999999,69,0.0190,0,88,999.000,999.0,99.0 +1987,1,31,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-0.6,-8.3,56,87800,119,1409,258,48,112,38,4900,4700,4500,730,120,3.1,9,7,64.4,4270,9,999999999,69,0.0190,0,88,999.000,999.0,99.0 +1987,1,31,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.1,-7.2,64,87700,314,1409,254,140,197,97,14700,15600,11200,1940,130,2.1,9,6,64.4,4270,9,999999999,69,0.0190,0,88,999.000,999.0,99.0 +1987,1,31,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,-6.7,47,87700,469,1409,272,186,153,135,20200,14400,15400,3060,360,2.1,8,5,64.4,4270,9,999999999,69,0.0190,0,88,999.000,999.0,99.0 +1987,1,31,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,-7.8,43,87500,572,1409,273,260,230,168,27800,22800,18500,3580,360,3.6,8,6,64.4,4270,9,999999999,69,0.0190,0,88,999.000,999.0,99.0 +1987,1,31,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,-7.8,41,87500,616,1409,278,265,170,191,28900,17000,21400,4570,330,3.6,10,7,64.4,3660,9,999999999,69,0.0190,0,88,999.000,999.0,99.0 +1987,1,31,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,-7.8,41,87500,596,1409,289,186,108,140,20500,10800,15900,3320,0,0.0,10,9,64.4,6100,9,999999999,69,0.0190,0,88,999.000,999.0,99.0 +1987,1,31,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,-7.8,40,87400,516,1409,291,154,64,131,17000,6100,14700,3680,90,3.1,10,9,64.4,6100,9,999999999,69,0.0190,0,88,999.000,999.0,99.0 +1987,1,31,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,-7.2,38,87400,380,1409,286,111,118,80,12400,10500,9600,1770,30,1.5,8,7,64.4,6100,9,999999999,69,0.0190,0,88,999.000,999.0,99.0 +1987,1,31,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,-6.1,45,87400,198,1409,282,49,21,46,5400,1500,5100,1130,230,1.5,8,7,24.1,6100,9,999999999,80,0.0190,0,88,999.000,999.0,99.0 +1987,1,31,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,-6.1,50,87400,22,669,276,18,17,16,0,0,0,0,210,1.5,8,7,24.1,6100,9,999999999,80,0.0190,0,88,999.000,999.0,99.0 +1987,1,31,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,4.4,-4.4,53,87400,0,0,274,0,0,0,0,0,0,0,220,4.6,5,4,24.1,77777,9,999999999,80,0.0190,0,88,999.000,999.0,99.0 +1987,1,31,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,1.7,-4.4,64,87400,0,0,264,0,0,0,0,0,0,0,10,2.1,5,4,24.1,77777,9,999999999,80,0.0190,0,88,999.000,999.0,99.0 +1987,1,31,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,5.6,-4.4,49,87300,0,0,279,0,0,0,0,0,0,0,200,8.8,6,4,24.1,6100,9,999999999,80,0.0190,0,88,999.000,999.0,99.0 +1987,1,31,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,5.7,-3.7,55,87300,0,0,292,0,0,0,0,0,0,0,220,8.1,10,8,24.1,6100,9,999999999,89,0.0190,0,88,999.000,999.0,99.0 +1987,1,31,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,5.7,-3.0,60,87300,0,0,308,0,0,0,0,0,0,0,210,7.3,10,10,24.1,6100,9,999999999,89,0.0190,0,88,999.000,999.0,99.0 +1987,1,31,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,5.8,-2.4,79,87300,0,0,309,0,0,0,0,0,0,0,50,6.6,10,10,24.1,77777,9,999999999,89,0.0190,0,88,999.000,999.0,99.0 +2003,2,1,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.9,-1.8,60,87800,0,0,310,0,0,0,0,0,0,0,200,5.8,10,10,16.0,1189,9,999999999,129,0.0450,0,88,0.450,0.0,1.0 +2003,2,1,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.0,-1.2,60,87800,0,0,311,0,0,0,0,0,0,0,230,5.1,10,10,16.0,1311,9,999999999,129,0.0450,0,88,0.450,0.0,1.0 +2003,2,1,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.0,-0.5,60,87700,0,0,312,0,0,0,0,0,0,0,240,4.3,10,10,16.0,1676,9,999999999,120,0.0450,0,88,0.450,0.0,1.0 +2003,2,1,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,0.0,65,87700,0,0,313,0,0,0,0,0,0,0,270,3.6,10,10,16.0,2134,9,999999999,120,0.0450,0,88,0.450,0.0,1.0 +2003,2,1,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,0.0,67,87400,0,0,311,0,0,0,0,0,0,0,260,3.1,10,10,16.0,2438,9,999999999,110,0.0450,0,88,0.450,0.0,1.0 +2003,2,1,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,0.0,67,87700,0,0,311,0,0,0,0,0,0,0,250,3.1,10,10,16.0,2438,9,999999999,110,0.0450,0,88,0.450,0.0,1.0 +2003,2,1,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,0.0,70,87600,0,0,308,0,0,0,0,0,0,0,260,4.1,10,10,16.0,2438,9,999999999,110,0.0450,0,88,0.450,0.0,1.0 +2003,2,1,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,0.0,70,87700,1,153,308,0,0,0,0,0,0,0,230,3.1,10,10,16.0,1829,9,999999999,100,0.0450,0,88,0.450,0.0,1.0 +2003,2,1,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,0.0,70,87600,125,1409,300,14,0,14,1700,0,1700,530,240,1.5,10,9,16.0,77777,9,999999999,100,0.0450,0,88,0.450,0.0,1.0 +2003,2,1,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,-0.6,64,87600,320,1409,310,47,0,47,5500,0,5500,1870,240,5.2,10,10,16.0,2743,9,999999999,100,0.0450,0,88,0.450,0.0,1.0 +2003,2,1,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,-0.6,64,87300,476,1409,291,97,0,97,11100,0,11100,3850,260,4.1,9,7,16.0,77777,9,999999999,100,0.0450,0,88,0.450,0.0,1.0 +2003,2,1,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,-1.1,61,87700,579,1409,310,95,0,95,11200,0,11200,4110,280,3.6,10,10,16.0,1280,9,999999999,100,0.0450,0,88,0.450,0.0,1.0 +2003,2,1,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,-1.7,58,87600,622,1409,300,193,24,182,21700,1900,20900,6920,260,3.6,10,9,16.0,1524,9,999999999,89,0.0450,0,88,0.450,0.0,1.0 +2003,2,1,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,-2.2,56,87700,603,1409,308,181,18,173,20400,1400,19800,6570,250,5.2,10,10,16.0,1524,9,999999999,89,0.0450,0,88,0.450,0.0,1.0 +2003,2,1,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,-2.2,58,87700,523,1409,283,93,0,93,10800,0,10800,3880,260,5.2,10,6,16.0,77777,9,999999999,80,0.0450,0,88,0.450,0.0,1.0 +2003,2,1,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,-2.8,55,87700,386,1409,283,166,176,117,17900,15500,13600,2590,260,6.2,10,6,16.0,77777,9,999999999,80,0.0450,0,88,0.450,0.0,1.0 +2003,2,1,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,-3.9,53,87400,204,1409,282,153,266,114,15100,16200,12800,2660,260,7.7,10,7,16.0,77777,9,999999999,69,0.0450,0,88,0.450,0.0,1.0 +2003,2,1,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.9,-2.8,60,87800,25,693,278,0,0,0,0,0,0,0,260,6.2,10,6,16.0,77777,9,999999999,69,0.0450,0,88,0.450,0.0,1.0 +2003,2,1,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.9,-3.9,55,87800,0,0,280,0,0,0,0,0,0,0,260,5.7,10,7,16.0,77777,9,999999999,69,0.0450,0,88,0.450,0.0,1.0 +2003,2,1,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.9,-3.3,57,87900,0,0,300,0,0,0,0,0,0,0,270,6.2,10,10,16.0,3048,9,999999999,69,0.0450,0,88,0.450,0.0,1.0 +2003,2,1,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.8,-3.3,62,87900,0,0,276,0,0,0,0,0,0,0,280,2.6,9,7,16.0,77777,9,999999999,69,0.0450,0,88,0.450,0.0,1.0 +2003,2,1,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.8,-3.3,62,87900,0,0,273,0,0,0,0,0,0,0,270,4.6,9,6,16.0,77777,9,999999999,69,0.0450,0,88,0.450,0.0,1.0 +2003,2,1,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.1,-3.3,70,87600,0,0,267,0,0,0,0,0,0,0,280,4.1,9,6,16.0,77777,9,999999999,60,0.0450,0,88,0.450,0.0,1.0 +2003,2,1,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.1,-2.8,73,87900,0,0,288,0,0,0,0,0,0,0,270,2.6,10,10,16.0,2134,9,999999999,60,0.0450,0,88,0.450,0.0,1.0 +2003,2,2,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.2,-3.3,65,88000,0,0,293,0,0,0,0,0,0,0,300,3.6,10,10,16.0,1829,9,999999999,60,0.0450,0,88,0.450,0.0,1.0 +2003,2,2,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.7,-3.3,67,88000,0,0,290,0,0,0,0,0,0,0,290,4.6,10,10,16.0,1829,9,999999999,60,0.0450,0,88,0.450,0.0,1.0 +2003,2,2,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.1,-3.3,70,88100,0,0,288,0,0,0,0,0,0,0,300,3.6,10,10,16.0,2591,9,999999999,60,0.0450,0,88,0.450,0.0,1.0 +2003,2,2,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.7,-3.9,64,88200,0,0,290,0,0,0,0,0,0,0,350,5.7,10,10,16.0,1341,9,999999999,60,0.0450,0,88,0.450,0.0,1.0 +2003,2,2,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.6,-3.9,69,88000,0,0,285,0,0,0,0,0,0,0,320,6.7,10,10,16.0,1311,9,999999999,60,0.0450,0,88,0.450,0.0,1.0 +2003,2,2,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.0,-3.9,72,88300,0,0,283,0,0,0,0,0,0,0,320,6.2,10,10,16.0,1372,9,999999999,60,0.0450,0,88,0.450,0.0,1.0 +2003,2,2,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.0,-5.0,71,88300,0,0,277,0,0,0,0,0,0,0,310,5.1,10,10,16.1,1350,9,999999999,60,0.0450,0,88,0.450,0.0,1.0 +2003,2,2,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-0.6,-5.0,69,88400,2,176,279,0,0,0,0,0,0,0,290,3.1,10,10,16.0,1494,9,999999999,60,0.0450,0,88,0.450,0.0,1.0 +2003,2,2,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-0.6,-4.4,73,88500,129,1408,280,37,162,22,4000,8000,3200,380,290,3.1,10,10,16.0,1676,9,999999999,60,0.0450,0,88,0.450,0.0,1.0 +2003,2,2,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.0,-5.0,66,88500,325,1408,282,103,86,83,11200,7200,9600,1810,320,3.6,10,10,16.0,1494,9,999999999,60,0.0450,0,88,0.450,0.0,1.0 +2003,2,2,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.6,-5.6,60,88300,481,1408,283,287,477,123,29800,43900,14700,2360,0,0.0,10,10,16.0,1829,9,999999999,50,0.0450,0,88,0.450,0.0,1.0 +2003,2,2,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.1,-5.0,61,88600,585,1408,253,416,808,79,42900,76900,10900,1560,360,1.5,1,1,16.0,77777,9,999999999,50,0.0450,0,88,0.450,0.0,1.0 +2003,2,2,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.8,-5.0,54,88500,628,1408,265,482,709,164,50300,69500,19100,3350,0,0.0,3,3,16.0,77777,9,999999999,50,0.0450,0,88,0.450,0.0,1.0 +2003,2,2,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.3,-5.0,52,88500,609,1408,261,200,49,179,22000,4800,19900,5130,50,2.6,1,1,16.0,77777,9,999999999,50,0.0450,0,88,0.450,0.0,1.0 +2003,2,2,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.8,-3.9,59,88500,529,1408,294,185,82,154,20300,7800,17300,4240,110,1.5,10,10,16.0,1829,9,999999999,50,0.0450,0,88,0.450,0.0,1.0 +2003,2,2,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.8,-3.3,62,88500,393,1408,271,294,513,150,29100,43700,16900,2990,160,3.6,5,5,16.0,77777,9,999999999,50,0.0450,0,88,0.450,0.0,1.0 +2003,2,2,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.3,-5.6,49,88200,210,1408,281,73,0,73,7900,0,7900,2110,260,6.2,8,8,16.0,1829,9,999999999,50,0.0450,0,88,0.450,0.0,1.0 +2003,2,2,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.2,-5.6,53,88600,28,739,269,0,0,0,0,0,0,0,250,4.6,6,6,16.0,77777,9,999999999,50,0.0450,0,88,0.450,0.0,1.0 +2003,2,2,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.7,-5.0,58,88600,0,0,250,0,0,0,0,0,0,0,260,4.6,0,0,16.0,77777,9,999999999,50,0.0450,0,88,0.450,0.0,1.0 +2003,2,2,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.1,-5.0,61,88600,0,0,248,0,0,0,0,0,0,0,260,4.1,0,0,16.0,77777,9,999999999,50,0.0450,0,88,0.450,0.0,1.0 +2003,2,2,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.1,-5.6,58,88600,0,0,247,0,0,0,0,0,0,0,260,4.1,0,0,16.0,77777,9,999999999,50,0.0450,0,88,0.450,0.0,1.0 +2003,2,2,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-0.6,-5.6,66,88600,0,0,241,0,0,0,0,0,0,0,300,3.6,0,0,16.0,77777,9,999999999,50,0.0450,0,88,0.450,0.0,1.0 +2003,2,2,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.0,-7.2,54,88300,0,0,242,0,0,0,0,0,0,0,260,4.6,0,0,16.0,77777,9,999999999,50,0.0450,0,88,0.450,0.0,1.0 +2003,2,2,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.6,-7.2,52,88600,0,0,244,0,0,0,0,0,0,0,270,6.2,0,0,16.0,77777,9,999999999,50,0.0450,0,88,0.450,0.0,1.0 +2003,2,3,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.0,-7.8,52,88500,0,0,241,0,0,0,0,0,0,0,270,7.2,0,0,16.0,77777,9,999999999,50,0.0450,0,88,0.450,0.0,1.0 +2003,2,3,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.0,-7.8,52,88500,0,0,246,0,0,0,0,0,0,0,280,6.2,1,1,16.0,77777,9,999999999,60,0.0450,0,88,0.450,0.0,1.0 +2003,2,3,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-0.6,-7.8,54,88600,0,0,250,0,0,0,0,0,0,0,270,4.1,3,3,16.0,77777,9,999999999,60,0.0450,0,88,0.450,0.0,1.0 +2003,2,3,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.0,-8.3,49,88600,0,0,278,0,0,0,0,0,0,0,250,4.1,10,10,16.0,1829,9,999999999,60,0.0450,0,88,0.450,0.0,1.0 +2003,2,3,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.0,-8.3,49,88300,0,0,278,0,0,0,0,0,0,0,260,5.7,10,10,16.0,1829,9,999999999,50,0.0450,0,88,0.450,0.0,1.0 +2003,2,3,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.0,-7.8,52,88500,0,0,279,0,0,0,0,0,0,0,290,2.6,10,10,16.0,3048,9,999999999,60,0.0450,0,88,0.450,0.0,1.0 +2003,2,3,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-0.6,-7.2,57,88500,0,0,277,0,0,0,0,0,0,0,330,2.1,10,10,16.0,3048,9,999999999,60,0.0450,0,88,0.450,0.0,1.0 +2003,2,3,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.1,-6.1,66,88500,2,199,268,0,0,0,0,0,0,0,0,0.0,10,9,16.0,3048,9,999999999,60,0.0450,0,88,0.450,0.0,1.0 +2003,2,3,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.0,-6.7,57,88500,135,1408,280,26,8,25,2800,500,2800,620,120,2.6,10,10,16.0,1524,9,999999999,60,0.0450,0,88,0.450,0.0,1.0 +2003,2,3,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-0.6,-4.4,73,88500,331,1408,280,78,0,78,8800,0,8800,2790,170,4.6,10,10,9.6,1067,9,999999999,60,0.0450,0,88,0.450,0.0,1.0 +2003,2,3,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-0.6,-3.9,76,88200,487,1408,280,138,17,132,15500,1200,15100,4860,140,2.6,10,10,4.8,823,9,999999999,60,0.0450,0,88,0.450,0.0,1.0 +2003,2,3,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.0,-3.9,72,88400,591,1408,283,67,0,67,8100,0,8100,3070,160,3.6,10,10,16.0,579,9,999999999,60,0.0450,0,88,0.450,0.0,1.0 +2003,2,3,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-0.6,-3.3,80,88400,635,1408,281,138,0,138,16000,0,16000,5760,90,5.7,10,10,6.4,640,9,999999999,50,0.0450,0,88,0.450,0.0,1.0 +2003,2,3,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.0,-3.9,72,88300,616,1408,283,239,110,191,26000,11000,21200,4570,90,4.1,10,10,9.6,975,9,999999999,50,0.0450,0,88,0.450,0.0,1.0 +2003,2,3,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.6,-3.9,69,88300,535,1408,285,377,648,129,38100,59600,15400,2330,80,4.1,10,10,16.0,1676,9,999999999,50,0.0450,0,88,0.450,0.0,1.0 +2003,2,3,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.1,-3.3,70,88300,399,1408,280,275,815,43,29000,72400,8400,950,100,3.1,9,9,16.0,77777,9,999999999,50,0.0450,0,88,0.450,0.0,1.0 +2003,2,3,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.6,-3.3,73,88000,216,1408,286,157,466,85,15400,30200,10700,1660,110,2.6,10,10,16.0,1524,9,999999999,60,0.0450,0,88,0.450,0.0,1.0 +2003,2,3,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-0.6,-2.8,83,88300,31,763,281,1,94,1,600,5200,400,40,30,1.5,10,10,16.0,1524,9,999999999,50,0.0450,0,88,0.450,0.0,1.0 +2003,2,3,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-0.6,-2.2,88,88300,0,0,282,0,0,0,0,0,0,0,290,2.1,10,10,8.0,1676,9,999999999,50,0.0450,0,88,0.450,0.0,1.0 +2003,2,3,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.1,-2.2,91,88300,0,0,280,0,0,0,0,0,0,0,250,2.6,10,10,16.0,1829,9,999999999,50,0.0450,0,88,0.450,0.0,1.0 +2003,2,3,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.1,-2.2,91,88300,0,0,280,0,0,0,0,0,0,0,300,1.5,10,10,16.0,1676,9,999999999,50,0.0450,0,88,0.450,0.0,1.0 +2003,2,3,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.7,-2.2,96,88300,0,0,277,0,0,0,0,0,0,0,0,0.0,10,10,16.0,1524,9,999999999,50,0.0450,0,88,0.450,0.0,1.0 +2003,2,3,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.7,-2.2,96,88100,0,0,277,0,0,0,0,0,0,0,300,3.1,10,10,2.8,549,9,999999999,50,0.0450,0,88,0.450,0.0,1.0 +2003,2,3,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.2,-3.3,91,88400,0,0,274,0,0,0,0,0,0,0,290,5.2,10,10,4.0,457,9,999999999,50,0.0450,0,88,0.450,0.0,1.0 +2003,2,4,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.2,-5.6,75,88500,0,0,272,0,0,0,0,0,0,0,300,6.7,10,10,16.0,1402,9,999999999,50,0.0460,0,88,0.450,0.0,1.0 +2003,2,4,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.8,-5.6,79,88500,0,0,270,0,0,0,0,0,0,0,300,4.6,10,10,2.8,488,9,999999999,50,0.0460,0,88,0.450,0.0,1.0 +2003,2,4,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.8,-5.6,79,88600,0,0,270,0,0,0,0,0,0,0,310,4.1,10,10,16.0,1280,9,999999999,50,0.0460,0,88,0.450,0.0,1.0 +2003,2,4,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.3,-6.1,79,88600,0,0,267,0,0,0,0,0,0,0,260,2.6,10,10,16.0,914,9,999999999,50,0.0460,0,88,0.450,0.0,1.0 +2003,2,4,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.3,-6.7,75,88400,0,0,266,0,0,0,0,0,0,0,280,3.6,10,10,16.0,1829,9,999999999,50,0.0460,0,88,0.450,0.0,1.0 +2003,2,4,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.3,-6.1,79,88700,0,0,267,0,0,0,0,0,0,0,280,3.6,10,10,16.0,1067,9,999999999,50,0.0460,0,88,0.450,0.0,1.0 +2003,2,4,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.3,-6.1,79,88700,0,0,267,0,0,0,0,0,0,0,290,4.6,10,10,16.0,1128,9,999999999,50,0.0460,0,88,0.450,0.0,1.0 +2003,2,4,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.0,-5.0,84,88800,3,246,269,0,0,0,0,0,0,0,260,2.6,10,10,12.9,780,9,999999999,50,0.0460,0,88,0.450,0.0,1.0 +2003,2,4,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.8,-6.1,76,88900,140,1408,269,27,47,22,3000,2600,2700,460,310,4.6,10,10,14.4,1006,9,999999999,50,0.0460,0,88,0.450,0.0,1.0 +2003,2,4,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.8,-7.2,69,88900,336,1408,261,147,298,76,15400,24200,9600,1390,320,3.6,10,9,14.4,77777,9,999999999,40,0.0460,0,88,0.450,0.0,1.0 +2003,2,4,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.2,-7.8,62,88700,493,1408,262,267,460,105,28300,42700,13200,1980,310,4.6,10,9,14.4,77777,9,999999999,40,0.0460,0,88,0.450,0.0,1.0 +2003,2,4,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.7,-8.9,54,88900,597,1408,258,298,260,187,31500,26000,20400,4080,290,2.1,9,8,16.0,77777,9,999999999,40,0.0460,0,88,0.450,0.0,1.0 +2003,2,4,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.1,-10.0,47,88900,641,1408,264,283,162,209,30700,16300,23200,5060,270,3.1,9,9,16.0,2743,9,999999999,40,0.0460,0,88,0.450,0.0,1.0 +2003,2,4,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.0,-8.9,47,88900,622,1408,277,155,0,155,17700,0,17700,6210,330,1.5,10,10,16.0,3048,9,999999999,40,0.0460,0,88,0.450,0.0,1.0 +2003,2,4,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.0,-8.9,47,88900,542,1408,277,71,0,71,8500,0,8500,3140,300,2.1,10,10,16.0,3048,9,999999999,40,0.0460,0,88,0.450,0.0,1.0 +2003,2,4,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.0,-7.8,52,88900,405,1408,279,282,504,136,28300,43600,15700,2660,260,3.6,10,10,16.0,1676,9,999999999,40,0.0460,0,88,0.450,0.0,1.0 +2003,2,4,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-0.6,-7.8,54,88500,222,1408,276,134,278,90,13600,18100,10800,1900,310,3.1,10,10,16.0,1097,9,999999999,40,0.0460,0,88,0.450,0.0,1.0 +2003,2,4,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.1,-8.3,54,88900,34,809,274,2,61,1,400,3400,300,40,260,5.2,10,10,16.0,2134,9,999999999,40,0.0460,0,88,0.450,0.0,1.0 +2003,2,4,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.7,-8.3,57,88800,0,0,271,0,0,0,0,0,0,0,250,2.6,10,10,16.0,3048,9,999999999,40,0.0460,0,88,0.450,0.0,1.0 +2003,2,4,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.7,-8.3,57,88800,0,0,271,0,0,0,0,0,0,0,270,2.6,10,10,16.0,2896,9,999999999,40,0.0460,0,88,0.450,0.0,1.0 +2003,2,4,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.7,-8.9,54,88800,0,0,271,0,0,0,0,0,0,0,270,3.1,10,10,16.0,2896,9,999999999,40,0.0460,0,88,0.450,0.0,1.0 +2003,2,4,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.7,-8.3,57,88700,0,0,271,0,0,0,0,0,0,0,280,2.1,10,10,16.0,2743,9,999999999,50,0.0460,0,88,0.450,0.0,1.0 +2003,2,4,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.7,-7.8,59,88400,0,0,272,0,0,0,0,0,0,0,300,3.6,10,10,16.0,2438,9,999999999,50,0.0460,0,88,0.450,0.0,1.0 +2003,2,4,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.2,-7.2,65,88600,0,0,270,0,0,0,0,0,0,0,300,3.1,10,10,16.0,2286,9,999999999,50,0.0460,0,88,0.450,0.0,1.0 +2003,2,5,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.2,-6.7,68,88600,0,0,271,0,0,0,0,0,0,0,280,2.6,10,10,16.0,2134,9,999999999,50,0.0460,0,88,0.450,0.0,1.0 +2003,2,5,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.7,-6.7,65,88500,0,0,273,0,0,0,0,0,0,0,270,4.1,10,10,16.0,1372,9,999999999,50,0.0460,0,88,0.450,0.0,1.0 +2003,2,5,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.7,-7.2,63,88500,0,0,272,0,0,0,0,0,0,0,270,5.7,10,10,16.0,2134,9,999999999,50,0.0460,0,88,0.450,0.0,1.0 +2003,2,5,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.7,-7.2,63,88400,0,0,272,0,0,0,0,0,0,0,270,6.7,10,10,16.0,1524,9,999999999,50,0.0460,0,88,0.450,0.0,1.0 +2003,2,5,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.7,-7.8,59,88100,0,0,272,0,0,0,0,0,0,0,260,8.2,10,10,16.0,1676,9,999999999,50,0.0460,0,88,0.450,0.0,1.0 +2003,2,5,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.2,-7.2,65,88400,0,0,270,0,0,0,0,0,0,0,260,7.7,10,10,8.0,792,9,999999999,50,0.0460,0,88,0.450,0.0,1.0 +2003,2,5,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.1,-7.8,57,88400,0,0,274,0,0,0,0,0,0,0,270,6.7,10,10,16.0,1311,9,999999999,50,0.0460,0,88,0.450,0.0,1.0 +2003,2,5,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.7,-7.2,63,88400,4,270,272,0,0,0,0,0,0,0,280,4.1,10,10,16.0,1433,9,999999999,50,0.0460,0,88,0.450,0.0,1.0 +2003,2,5,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.0,-5.0,84,88500,145,1407,269,28,13,26,3000,800,2900,660,350,4.1,10,10,3.2,600,9,999999999,50,0.0460,0,88,0.450,0.0,1.0 +2003,2,5,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.8,-4.4,87,88600,342,1407,271,35,0,35,4200,0,4200,1470,340,3.1,10,10,3.2,427,9,999999999,50,0.0460,0,88,0.450,0.0,1.0 +2003,2,5,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.2,-4.4,83,88400,499,1407,273,87,0,87,10100,0,10100,3610,290,3.6,10,10,6.4,1006,9,999999999,50,0.0460,0,88,0.450,0.0,1.0 +2003,2,5,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.0,-4.0,92,88700,603,1407,270,68,0,68,8300,0,8300,3140,340,4.6,10,10,2.8,300,9,999999999,40,0.0460,0,88,0.450,0.0,1.0 +2003,2,5,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.8,-6.1,76,88800,647,1407,269,193,24,182,21900,1900,21000,7090,350,6.2,10,10,11.2,579,9,999999999,40,0.0460,0,88,0.450,0.0,1.0 +2003,2,5,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.0,-8.0,65,88800,628,1407,259,387,373,220,40700,37700,23800,5000,330,6.7,9,9,16.1,77777,9,999999999,40,0.0460,0,88,0.450,0.0,1.0 +2003,2,5,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.3,-8.3,65,88900,548,1407,258,205,75,176,22500,7200,19700,4780,350,5.7,9,9,16.0,823,9,999999999,40,0.0460,0,88,0.450,0.0,1.0 +2003,2,5,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.9,-8.3,68,88900,411,1407,263,144,67,124,15700,6100,13900,3190,350,4.1,10,10,16.0,975,9,999999999,30,0.0460,0,88,0.450,0.0,1.0 +2003,2,5,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-5.0,-8.3,75,88700,229,1407,258,162,300,113,16200,19700,13000,2540,340,6.7,10,10,16.0,1006,9,999999999,30,0.0460,0,88,0.450,0.0,1.0 +2003,2,5,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-5.6,-9.4,72,89000,37,833,248,3,72,2,600,4000,400,80,310,4.1,9,9,16.0,884,9,999999999,30,0.0460,0,88,0.450,0.0,1.0 +2003,2,5,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-6.7,-9.4,79,89000,0,0,251,0,0,0,0,0,0,0,330,3.6,10,10,16.0,3353,9,999999999,30,0.0460,0,88,0.450,0.0,1.0 +2003,2,5,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-6.7,-10.0,75,89100,0,0,250,0,0,0,0,0,0,0,340,3.6,10,10,16.0,3048,9,999999999,30,0.0460,0,88,0.450,0.0,1.0 +2003,2,5,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-6.7,-10.6,71,89100,0,0,250,0,0,0,0,0,0,0,280,3.6,10,10,16.0,3048,9,999999999,30,0.0460,0,88,0.450,0.0,1.0 +2003,2,5,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-6.7,-10.6,71,89100,0,0,250,0,0,0,0,0,0,0,340,1.5,10,10,16.0,2896,9,999999999,30,0.0460,0,88,0.450,0.0,1.0 +2003,2,5,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-6.7,-10.0,75,89000,0,0,250,0,0,0,0,0,0,0,30,1.5,10,10,16.0,2743,9,999999999,30,0.0460,0,88,0.450,0.0,1.0 +2003,2,5,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-6.7,-10.0,75,89200,0,0,250,0,0,0,0,0,0,0,110,1.5,10,10,16.0,1829,9,999999999,30,0.0460,0,88,0.450,0.0,1.0 +2003,2,6,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-7.2,-10.6,74,89200,0,0,248,0,0,0,0,0,0,0,0,0.0,10,10,16.0,2743,9,999999999,30,0.0460,0,88,0.450,0.0,1.0 +2003,2,6,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-6.7,-10.0,75,89200,0,0,250,0,0,0,0,0,0,0,90,1.5,10,10,16.0,2438,9,999999999,30,0.0460,0,88,0.450,0.0,1.0 +2003,2,6,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-7.2,-10.0,78,89200,0,0,248,0,0,0,0,0,0,0,0,0.0,10,10,16.0,1463,9,999999999,30,0.0460,0,88,0.450,0.0,1.0 +2003,2,6,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-7.2,-10.0,78,89200,0,0,248,0,0,0,0,0,0,0,290,1.5,10,10,16.0,1463,9,999999999,30,0.0460,0,88,0.450,0.0,1.0 +2003,2,6,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-7.2,-10.0,78,89100,0,0,248,0,0,0,0,0,0,0,70,1.5,10,10,16.0,1341,9,999999999,30,0.0460,0,88,0.450,0.0,1.0 +2003,2,6,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-7.2,-9.4,82,89300,0,0,249,0,0,0,0,0,0,0,0,0.0,10,10,16.0,1402,9,999999999,30,0.0460,0,88,0.450,0.0,1.0 +2003,2,6,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-7.8,-10.0,82,89300,0,0,246,0,0,0,0,0,0,0,80,2.1,10,10,16.0,1402,9,999999999,30,0.0460,0,88,0.450,0.0,1.0 +2003,2,6,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-7.8,-10.6,78,89300,5,293,245,0,0,0,0,0,0,0,0,0.0,10,10,14.4,1280,9,999999999,30,0.0460,0,88,0.450,0.0,1.0 +2003,2,6,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-8.9,-10.6,86,89300,150,1407,241,10,0,10,1200,0,1200,400,0,0.0,10,10,4.8,1219,9,999999999,30,0.0460,0,88,0.450,0.0,1.0 +2003,2,6,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-8.0,-11.0,77,89400,348,1407,244,114,93,91,12400,7900,10500,1990,320,1.5,10,10,4.8,1320,9,999999999,30,0.0460,0,88,0.450,0.0,1.0 +2003,2,6,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-7.8,-11.1,75,89300,505,1407,245,232,225,151,24500,21600,16700,3150,0,0.0,10,10,11.2,1402,9,999999999,30,0.0460,0,88,0.450,0.0,1.0 +2003,2,6,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-6.7,-11.1,68,89500,609,1407,216,372,543,135,39400,53100,16300,2680,60,1.5,0,0,16.0,77777,9,999999999,30,0.0460,0,88,0.450,0.0,1.0 +2003,2,6,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-6.1,-10.6,67,89400,654,1407,218,325,234,216,35200,23700,24200,5260,70,1.5,0,0,16.0,77777,9,999999999,30,0.0460,0,88,0.450,0.0,1.0 +2003,2,6,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-5.0,-10.6,61,89400,635,1407,222,367,446,165,38400,43800,18500,3380,40,2.1,0,0,16.0,77777,9,999999999,30,0.0460,0,88,0.450,0.0,1.0 +2003,2,6,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-4.4,-10.0,61,89400,554,1407,224,296,339,162,31400,33400,18200,3430,80,2.6,0,0,16.0,77777,9,999999999,30,0.0460,0,88,0.450,0.0,1.0 +2003,2,6,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.9,-10.0,59,89400,418,1407,226,311,708,100,31400,61000,13200,1740,60,3.1,0,0,16.0,77777,9,999999999,30,0.0460,0,88,0.450,0.0,1.0 +2003,2,6,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.9,-10.0,59,89300,235,1407,238,172,504,87,17000,34200,11200,1680,360,2.1,4,4,16.0,77777,9,999999999,30,0.0460,0,88,0.450,0.0,1.0 +2003,2,6,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-7.2,-10.6,74,89200,40,879,232,5,130,2,1000,7300,600,80,280,2.1,8,7,16.0,77777,9,999999999,40,0.0460,0,88,0.450,0.0,1.0 +2003,2,6,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-8.3,-11.1,78,89200,0,0,211,0,0,0,0,0,0,0,260,2.6,0,0,16.0,77777,9,999999999,40,0.0460,0,88,0.450,0.0,1.0 +2003,2,6,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-8.3,-11.1,78,89100,0,0,211,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,40,0.0460,0,88,0.450,0.0,1.0 +2003,2,6,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-9.4,-12.2,78,89100,0,0,210,0,0,0,0,0,0,0,290,1.5,1,1,16.0,77777,9,999999999,40,0.0460,0,88,0.450,0.0,1.0 +2003,2,6,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-10.0,-12.2,82,89100,0,0,204,0,0,0,0,0,0,0,320,1.5,0,0,16.0,77777,9,999999999,50,0.0460,0,88,0.450,0.0,1.0 +2003,2,6,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-10.0,-12.2,82,89000,0,0,204,0,0,0,0,0,0,0,0,0.0,0,0,12.8,77777,9,999999999,50,0.0460,0,88,0.450,0.0,1.0 +2003,2,6,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-10.6,-12.8,82,89000,0,0,202,0,0,0,0,0,0,0,270,1.5,0,0,16.0,77777,9,999999999,50,0.0460,0,88,0.450,0.0,1.0 +2003,2,7,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-10.0,-12.8,78,89000,0,0,208,0,0,0,0,0,0,0,0,0.0,1,1,16.0,77777,9,999999999,50,0.0460,0,88,0.450,0.0,1.0 +2003,2,7,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-11.1,-13.3,82,89000,0,0,211,0,0,0,0,0,0,0,0,0.0,5,4,16.0,77777,9,999999999,60,0.0460,0,88,0.450,0.0,1.0 +2003,2,7,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-11.1,-13.3,82,88900,0,0,204,0,0,0,0,0,0,0,290,1.5,2,1,16.0,77777,9,999999999,60,0.0460,0,88,0.450,0.0,1.0 +2003,2,7,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-11.7,-13.9,82,88900,0,0,202,0,0,0,0,0,0,0,260,2.1,2,1,16.0,77777,9,999999999,60,0.0460,0,88,0.450,0.0,1.0 +2003,2,7,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-11.7,-13.9,82,88900,0,0,198,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,60,0.0460,0,88,0.450,0.0,1.0 +2003,2,7,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-11.7,-13.9,82,88900,0,0,198,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,60,0.0460,0,88,0.450,0.0,1.0 +2003,2,7,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-11.1,-13.9,78,88900,0,0,208,0,0,0,0,0,0,0,0,0.0,3,3,4.8,77777,9,999999999,60,0.0460,0,88,0.450,0.0,1.0 +2003,2,7,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-12.8,-15.0,82,88900,6,340,202,0,0,0,0,0,0,0,0,0.0,4,3,14.4,77777,9,999999999,60,0.0460,0,88,0.450,0.0,1.0 +2003,2,7,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-11.1,-13.3,82,89000,156,1406,217,48,119,34,5000,6200,4400,610,40,2.1,7,7,14.4,77777,9,999999999,60,0.0460,0,88,0.450,0.0,1.0 +2003,2,7,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-10.6,-13.3,78,89000,354,1406,218,70,0,70,8000,0,8000,2660,0,0.0,9,7,14.4,77777,9,999999999,60,0.0460,0,88,0.450,0.0,1.0 +2003,2,7,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-8.9,-12.8,71,88900,511,1406,233,196,115,154,21300,11100,17200,3540,300,1.5,10,9,0.0,2286,9,999999999,60,0.0460,0,88,0.450,0.0,1.0 +2003,2,7,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-7.2,-11.1,71,89200,616,1406,247,417,573,165,43400,56000,18800,3360,340,2.6,10,10,16.0,1981,9,999999999,69,0.0460,0,88,0.450,0.0,1.0 +2003,2,7,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-4.4,-13.9,43,89200,660,1406,255,132,0,132,15400,0,15400,5680,0,0.0,10,10,16.0,1829,9,999999999,69,0.0460,0,88,0.450,0.0,1.0 +2003,2,7,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.9,-11.1,53,89200,641,1406,260,418,562,161,43900,55400,18500,3300,0,0.0,10,10,16.0,1158,9,999999999,69,0.0460,0,88,0.450,0.0,1.0 +2003,2,7,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-4.4,-9.4,65,89100,561,1406,259,387,689,111,39800,64800,13900,2120,70,2.1,10,10,12.8,1113,9,999999999,69,0.0460,0,88,0.450,0.0,1.0 +2003,2,7,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.9,-8.9,65,89100,424,1406,262,234,373,121,24000,32900,14000,2320,0,0.0,10,10,9.6,1067,9,999999999,69,0.0460,0,88,0.450,0.0,1.0 +2003,2,7,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-4.4,-8.3,71,88700,241,1406,261,181,334,123,18000,22600,14100,2810,0,0.0,10,10,8.0,1158,9,999999999,69,0.0460,0,88,0.450,0.0,1.0 +2003,2,7,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-5.0,-7.8,79,89100,44,902,259,6,92,4,1000,4900,800,110,0,0.0,10,10,8.0,1524,9,999999999,69,0.0460,0,88,0.450,0.0,1.0 +2003,2,7,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-5.6,-7.8,83,89000,0,0,256,0,0,0,0,0,0,0,330,1.5,10,10,9.6,1250,9,999999999,69,0.0460,0,88,0.450,0.0,1.0 +2003,2,7,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-5.6,-7.8,83,89000,0,0,256,0,0,0,0,0,0,0,300,1.5,10,10,4.8,1402,9,999999999,60,0.0460,0,88,0.450,0.0,1.0 +2003,2,7,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-6.0,-8.0,84,89000,0,0,255,0,0,0,0,0,0,0,320,1.5,10,10,3.2,330,9,999999999,60,0.0460,0,88,0.450,0.0,1.0 +2003,2,7,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-5.6,-7.8,83,88900,0,0,256,0,0,0,0,0,0,0,0,0.0,10,10,4.0,640,9,999999999,60,0.0460,0,88,0.450,0.0,1.0 +2003,2,7,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-5.6,-7.8,83,88600,0,0,256,0,0,0,0,0,0,0,0,0.0,10,10,6.4,518,9,999999999,60,0.0460,0,88,0.450,0.0,1.0 +2003,2,7,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-5.6,-7.8,83,88800,0,0,256,0,0,0,0,0,0,0,0,0.0,10,10,6.4,579,9,999999999,60,0.0460,0,88,0.450,0.0,1.0 +2003,2,8,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-5.6,-8.9,75,88700,0,0,255,0,0,0,0,0,0,0,310,1.5,10,10,6.4,884,9,999999999,60,0.0460,0,88,0.450,0.0,1.0 +2003,2,8,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-5.6,-9.4,72,88700,0,0,255,0,0,0,0,0,0,0,0,0.0,10,10,4.8,945,9,999999999,60,0.0460,0,88,0.450,0.0,1.0 +2003,2,8,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-5.6,-7.8,83,88700,0,0,256,0,0,0,0,0,0,0,0,0.0,10,10,1.6,183,9,999999999,60,0.0460,0,88,0.450,0.0,1.0 +2003,2,8,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-5.6,-7.2,87,88600,0,0,257,0,0,0,0,0,0,0,10,1.5,10,10,2.8,610,9,999999999,60,0.0460,0,88,0.450,0.0,1.0 +2003,2,8,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-5.6,-7.8,83,88300,0,0,256,0,0,0,0,0,0,0,0,0.0,10,10,2.0,183,9,999999999,60,0.0460,0,88,0.450,0.0,1.0 +2003,2,8,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-5.6,-7.2,87,88500,0,0,257,0,0,0,0,0,0,0,0,0.0,10,10,1.6,274,9,999999999,60,0.0460,0,88,0.450,0.0,1.0 +2003,2,8,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-5.6,-7.8,83,88500,0,0,256,0,0,0,0,0,0,0,0,0.0,10,10,2.0,762,9,999999999,60,0.0460,0,88,0.450,0.0,1.0 +2003,2,8,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-5.6,-7.2,87,88500,7,363,257,0,0,0,0,0,0,0,0,0.0,10,10,1.6,366,9,999999999,60,0.0460,0,88,0.450,0.0,1.0 +2003,2,8,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-5.0,-7.2,83,88600,162,1406,259,19,0,19,2200,0,2200,730,0,0.0,10,10,0.8,213,9,999999999,60,0.0460,0,88,0.450,0.0,1.0 +2003,2,8,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-4.4,-6.7,82,88600,360,1406,262,89,11,86,10000,500,9900,3110,0,0.0,10,10,1.6,335,9,999999999,50,0.0460,0,88,0.450,0.0,1.0 +2003,2,8,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.3,-6.1,79,88400,518,1406,267,67,0,67,8000,0,8000,2940,0,0.0,10,10,4.8,488,9,999999999,50,0.0460,0,88,0.450,0.0,1.0 +2003,2,8,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.8,-6.1,76,88600,622,1406,249,186,24,176,21100,1900,20300,6780,0,0.0,7,6,16.0,77777,9,999999999,50,0.0460,0,88,0.450,0.0,1.0 +2003,2,8,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.7,-5.6,72,88600,667,1406,254,223,36,205,24400,3600,22700,6000,100,1.5,6,6,16.0,77777,9,999999999,50,0.0460,0,88,0.450,0.0,1.0 +2003,2,8,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-0.6,-6.7,60,88600,648,1406,257,96,0,96,11400,0,11400,4340,330,2.1,6,6,16.0,77777,9,999999999,40,0.0460,0,88,0.450,0.0,1.0 +2003,2,8,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-0.6,-7.8,54,88600,567,1406,254,63,0,63,7600,0,7600,2870,10,2.1,5,5,16.0,77777,9,999999999,40,0.0460,0,88,0.450,0.0,1.0 +2003,2,8,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.1,-7.8,57,88600,430,1406,257,50,0,50,6000,0,6000,2150,0,0.0,7,7,16.0,77777,9,999999999,40,0.0460,0,88,0.450,0.0,1.0 +2003,2,8,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.8,-7.2,69,88100,247,1406,261,117,194,83,12100,13500,9700,1670,160,1.5,9,9,16.0,77777,9,999999999,40,0.0460,0,88,0.450,0.0,1.0 +2003,2,8,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.9,-7.2,75,88400,48,949,264,5,57,3,700,3100,600,80,200,2.1,10,10,16.0,2743,9,999999999,50,0.0460,0,88,0.450,0.0,1.0 +2003,2,8,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-4.4,-7.2,79,88300,0,0,254,0,0,0,0,0,0,0,230,1.5,10,9,16.0,77777,9,999999999,50,0.0460,0,88,0.450,0.0,1.0 +2003,2,8,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-5.6,-7.8,83,88200,0,0,256,0,0,0,0,0,0,0,0,0.0,10,10,16.0,2286,9,999999999,50,0.0460,0,88,0.450,0.0,1.0 +2003,2,8,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-7.2,-8.9,86,88100,0,0,242,0,0,0,0,0,0,0,0,0.0,10,9,16.0,77777,9,999999999,50,0.0460,0,88,0.450,0.0,1.0 +2003,2,8,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-7.2,-8.9,86,88000,0,0,249,0,0,0,0,0,0,0,290,1.5,10,10,16.0,1433,9,999999999,50,0.0460,0,88,0.450,0.0,1.0 +2003,2,8,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-7.2,-8.9,86,87800,0,0,249,0,0,0,0,0,0,0,270,1.5,10,10,14.4,2286,9,999999999,50,0.0460,0,88,0.450,0.0,1.0 +2003,2,8,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-6.1,-8.3,83,88000,0,0,254,0,0,0,0,0,0,0,280,2.6,10,10,16.0,1494,9,999999999,60,0.0460,0,88,0.450,0.0,1.0 +2003,2,9,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-6.1,-9.4,75,88000,0,0,253,0,0,0,0,0,0,0,320,1.5,10,10,16.0,1524,9,999999999,60,0.0460,0,88,0.450,0.0,1.0 +2003,2,9,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-6.1,-9.4,75,87900,0,0,253,0,0,0,0,0,0,0,0,0.0,10,10,14.4,1829,9,999999999,60,0.0460,0,88,0.450,0.0,1.0 +2003,2,9,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-6.1,-9.4,75,88000,0,0,253,0,0,0,0,0,0,0,0,0.0,10,10,12.8,2134,9,999999999,60,0.0460,0,88,0.450,0.0,1.0 +2003,2,9,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-7.2,-8.9,86,87900,0,0,237,0,0,0,0,0,0,0,0,0.0,8,8,11.2,3353,9,999999999,60,0.0460,0,88,0.450,0.0,1.0 +2003,2,9,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.9,-7.8,71,87800,0,0,263,0,0,0,0,0,0,0,350,1.5,10,10,16.0,1676,9,999999999,50,0.0460,0,88,0.450,0.0,1.0 +2003,2,9,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.8,-7.8,65,88200,0,0,267,0,0,0,0,0,0,0,340,5.2,10,10,16.0,1280,9,999999999,60,0.0460,0,88,0.450,0.0,1.0 +2003,2,9,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.1,-7.2,60,88300,0,0,275,0,0,0,0,0,0,0,270,5.2,10,10,16.0,1829,9,999999999,60,0.0460,0,88,0.450,0.0,1.0 +2003,2,9,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.1,-7.2,60,88300,8,410,275,0,0,0,0,0,0,0,260,5.2,10,10,16.0,1219,9,999999999,60,0.0460,0,88,0.450,0.0,1.0 +2003,2,9,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-0.6,-7.8,54,88400,167,1405,276,14,0,14,1700,0,1700,560,260,5.7,10,10,16.0,1524,9,999999999,60,0.0460,0,88,0.450,0.0,1.0 +2003,2,9,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-0.6,-7.8,54,88400,366,1405,276,36,0,36,4300,0,4300,1540,270,9.3,10,10,16.0,1829,9,999999999,60,0.0460,0,88,0.450,0.0,1.0 +2003,2,9,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.0,-7.8,52,87900,524,1405,279,57,0,57,6900,0,6900,2560,290,7.7,10,10,16.0,2438,9,999999999,60,0.0460,0,88,0.450,0.0,1.0 +2003,2,9,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.0,-7.8,52,88400,629,1405,279,203,35,187,22300,3400,20700,5400,270,9.3,10,10,16.0,2743,9,999999999,60,0.0460,0,88,0.450,0.0,1.0 +2003,2,9,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.1,-7.8,48,88400,673,1405,283,241,48,218,26500,4800,24200,6330,310,2.6,10,10,16.0,2591,9,999999999,60,0.0460,0,88,0.450,0.0,1.0 +2003,2,9,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.1,-8.3,46,88300,655,1405,265,340,275,212,36100,28100,22900,4790,260,8.2,8,7,16.0,77777,9,999999999,60,0.0460,0,88,0.450,0.0,1.0 +2003,2,9,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.7,-7.8,46,88300,574,1405,286,210,81,177,23100,7900,19800,4920,270,7.2,10,10,16.0,2743,9,999999999,69,0.0460,0,88,0.450,0.0,1.0 +2003,2,9,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.7,-7.2,48,88200,437,1405,286,240,278,153,24900,25300,17000,3250,260,6.2,10,10,16.0,1463,9,999999999,69,0.0460,0,88,0.450,0.0,1.0 +2003,2,9,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.7,-6.7,50,87700,253,1405,287,43,0,43,4900,0,4900,1610,240,5.2,10,10,16.0,3048,9,999999999,69,0.0460,0,88,0.450,0.0,1.0 +2003,2,9,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.7,-5.6,55,88100,51,972,288,2,0,2,300,0,300,80,240,5.7,10,10,16.0,1463,9,999999999,69,0.0460,0,88,0.450,0.0,1.0 +2003,2,9,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.7,-5.6,55,88000,0,0,274,0,0,0,0,0,0,0,240,9.3,10,8,16.0,77777,9,999999999,69,0.0460,0,88,0.450,0.0,1.0 +2003,2,9,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.1,-6.1,55,88000,0,0,285,0,0,0,0,0,0,0,270,2.6,10,10,16.0,1341,9,999999999,69,0.0460,0,88,0.450,0.0,1.0 +2003,2,9,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.6,-6.7,54,87900,0,0,274,0,0,0,0,0,0,0,300,2.6,10,9,16.0,2591,9,999999999,69,0.0460,0,88,0.450,0.0,1.0 +2003,2,9,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.6,-6.7,54,87900,0,0,264,0,0,0,0,0,0,0,290,4.1,9,7,16.0,77777,9,999999999,69,0.0460,0,88,0.450,0.0,1.0 +2003,2,9,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.6,-6.7,54,87500,0,0,282,0,0,0,0,0,0,0,310,1.5,10,10,16.0,77777,9,999999999,69,0.0460,0,88,0.450,0.0,1.0 +2003,2,9,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.2,-6.1,51,88000,0,0,290,0,0,0,0,0,0,0,340,1.5,10,10,16.0,3048,9,999999999,69,0.0460,0,88,0.450,0.0,1.0 +2003,2,10,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.6,-6.7,54,87900,0,0,282,0,0,0,0,0,0,0,0,0.0,10,10,16.0,1981,9,999999999,69,0.0470,0,88,0.450,0.0,1.0 +2003,2,10,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.7,-7.2,48,87900,0,0,286,0,0,0,0,0,0,0,0,0.0,10,10,16.0,1829,9,999999999,60,0.0470,0,88,0.450,0.0,1.0 +2003,2,10,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.2,-6.7,48,88000,0,0,289,0,0,0,0,0,0,0,270,5.7,10,10,16.0,1829,9,999999999,60,0.0470,0,88,0.450,0.0,1.0 +2003,2,10,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.1,-5.0,61,88000,0,0,286,0,0,0,0,0,0,0,310,3.1,10,10,16.0,1829,9,999999999,60,0.0470,0,88,0.450,0.0,1.0 +2003,2,10,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.6,-4.4,66,87800,0,0,285,0,0,0,0,0,0,0,310,2.6,10,10,16.0,1433,9,999999999,60,0.0470,0,88,0.450,0.0,1.0 +2003,2,10,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.6,-3.9,69,88200,0,0,285,0,0,0,0,0,0,0,310,2.6,10,10,16.0,1676,9,999999999,60,0.0470,0,88,0.450,0.0,1.0 +2003,2,10,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.6,-3.9,69,88300,0,0,285,0,0,0,0,0,0,0,170,1.5,10,10,16.0,1524,9,999999999,60,0.0470,0,88,0.450,0.0,1.0 +2003,2,10,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.0,-3.9,72,88300,10,433,283,0,0,0,0,0,0,0,190,2.1,10,10,16.0,1829,9,999999999,60,0.0470,0,88,0.450,0.0,1.0 +2003,2,10,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.0,-4.4,69,88400,173,1405,282,14,0,14,1700,0,1700,560,0,0.0,10,10,16.0,2743,9,999999999,50,0.0470,0,88,0.450,0.0,1.0 +2003,2,10,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.0,-3.3,76,88500,372,1405,283,94,11,91,10600,600,10400,3290,10,3.1,10,10,16.0,1676,9,999999999,50,0.0470,0,88,0.450,0.0,1.0 +2003,2,10,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.1,-4.4,64,88200,530,1405,287,109,0,109,12600,0,12600,4430,320,4.6,10,10,16.0,1311,9,999999999,50,0.0470,0,88,0.450,0.0,1.0 +2003,2,10,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.7,-5.0,58,88500,635,1405,289,367,307,227,38400,31100,24300,5200,0,0.0,10,10,16.0,1250,9,999999999,60,0.0470,0,88,0.450,0.0,1.0 +2003,2,10,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.8,-5.0,54,88500,680,1405,285,253,84,212,27800,8300,23700,6230,0,0.0,9,9,16.0,1524,9,999999999,60,0.0470,0,88,0.450,0.0,1.0 +2003,2,10,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.2,-5.0,56,88500,661,1405,291,173,6,170,19800,500,19500,6860,20,1.5,10,10,16.0,1524,9,999999999,60,0.0470,0,88,0.450,0.0,1.0 +2003,2,10,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.2,-4.4,59,88500,581,1405,291,126,0,126,14500,0,14500,5150,30,3.1,10,10,16.0,1494,9,999999999,60,0.0470,0,88,0.450,0.0,1.0 +2003,2,10,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.3,-6.1,47,88500,443,1405,294,238,284,148,24800,26000,16600,3110,280,5.7,10,10,16.0,1829,9,999999999,60,0.0470,0,88,0.450,0.0,1.0 +2003,2,10,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.3,-6.1,47,88100,260,1405,294,41,0,41,4700,0,4700,1570,280,4.1,10,10,16.0,1829,9,999999999,60,0.0470,0,88,0.450,0.0,1.0 +2003,2,10,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.8,-5.6,51,88500,56,1018,293,2,0,2,300,0,300,80,260,3.1,10,10,16.0,1829,9,999999999,60,0.0470,0,88,0.450,0.0,1.0 +2003,2,10,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.8,-7.2,44,88500,0,0,291,0,0,0,0,0,0,0,260,4.1,10,10,16.0,1676,9,999999999,60,0.0470,0,88,0.450,0.0,1.0 +2003,2,10,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.2,-7.8,44,88400,0,0,280,0,0,0,0,0,0,0,260,5.7,10,9,16.0,1829,9,999999999,60,0.0470,0,88,0.450,0.0,1.0 +2003,2,10,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.7,-8.3,44,88400,0,0,267,0,0,0,0,0,0,0,280,5.2,10,7,16.0,77777,9,999999999,60,0.0470,0,88,0.450,0.0,1.0 +2003,2,10,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.1,-7.8,48,88500,0,0,269,0,0,0,0,0,0,0,130,2.6,10,8,16.0,77777,9,999999999,60,0.0470,0,88,0.450,0.0,1.0 +2003,2,10,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.1,-8.3,46,88100,0,0,265,0,0,0,0,0,0,0,280,5.7,7,7,16.0,77777,9,999999999,60,0.0470,0,88,0.450,0.0,1.0 +2003,2,10,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.6,-8.3,47,88400,0,0,267,0,0,0,0,0,0,0,270,5.7,8,8,16.0,1524,9,999999999,50,0.0470,0,88,0.450,0.0,1.0 +2003,2,11,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.1,-10.0,39,88400,0,0,267,0,0,0,0,0,0,0,290,6.7,8,8,16.0,1676,9,999999999,50,0.0470,0,88,0.450,0.0,1.0 +2003,2,11,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.6,-10.6,39,88400,0,0,246,0,0,0,0,0,0,0,270,7.7,1,1,16.0,77777,9,999999999,50,0.0470,0,88,0.450,0.0,1.0 +2003,2,11,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.1,-9.4,49,88400,0,0,236,0,0,0,0,0,0,0,280,3.1,0,0,16.0,77777,9,999999999,50,0.0470,0,88,0.450,0.0,1.0 +2003,2,11,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.2,-8.9,56,88400,0,0,233,0,0,0,0,0,0,0,270,4.1,0,0,16.0,77777,9,999999999,60,0.0470,0,88,0.450,0.0,1.0 +2003,2,11,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.1,-9.4,49,88300,0,0,246,0,0,0,0,0,0,0,330,2.6,3,3,16.0,77777,9,999999999,60,0.0470,0,88,0.450,0.0,1.0 +2003,2,11,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.7,-8.9,54,88500,0,0,234,0,0,0,0,0,0,0,270,2.6,0,0,16.0,77777,9,999999999,60,0.0470,0,88,0.450,0.0,1.0 +2003,2,11,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.3,-8.9,62,88500,0,0,257,0,0,0,0,0,0,0,180,2.1,10,9,16.0,77777,9,999999999,60,0.0470,0,88,0.450,0.0,1.0 +2003,2,11,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.8,-8.9,59,88600,12,480,235,0,0,0,0,0,0,0,150,1.5,1,1,16.0,77777,9,999999999,60,0.0470,0,88,0.450,0.0,1.0 +2003,2,11,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.1,-8.3,54,88600,179,1404,256,64,225,35,6800,13400,5000,620,100,1.5,7,7,16.0,77777,9,999999999,60,0.0470,0,88,0.450,0.0,1.0 +2003,2,11,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.1,-8.3,54,88600,379,1404,251,247,660,68,25400,56300,10200,1250,50,1.5,5,5,16.0,77777,9,999999999,60,0.0470,0,88,0.450,0.0,1.0 +2003,2,11,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.6,-7.2,52,88400,537,1404,255,401,896,57,42100,84300,9700,1230,40,3.6,3,3,16.0,77777,9,999999999,60,0.0470,0,88,0.450,0.0,1.0 +2003,2,11,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.7,-7.8,46,88700,642,1404,247,457,692,140,46900,66400,16500,2730,100,4.6,0,0,16.0,77777,9,999999999,60,0.0470,0,88,0.450,0.0,1.0 +2003,2,11,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.8,-7.2,44,88600,687,1404,252,265,96,218,29100,9600,24400,6410,70,4.6,0,0,16.0,77777,9,999999999,60,0.0470,0,88,0.450,0.0,1.0 +2003,2,11,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.2,-7.2,46,88600,668,1404,250,519,719,176,54300,71300,20200,3680,110,5.2,0,0,16.0,77777,9,999999999,60,0.0470,0,88,0.450,0.0,1.0 +2003,2,11,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.8,-7.2,44,88600,587,1404,252,454,937,61,47600,89300,10100,1320,110,3.6,0,0,16.0,77777,9,999999999,60,0.0470,0,88,0.450,0.0,1.0 +2003,2,11,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.3,-6.7,45,88600,450,1404,254,343,883,59,35400,80000,9600,1160,80,4.1,0,0,16.0,77777,9,999999999,60,0.0470,0,88,0.450,0.0,1.0 +2003,2,11,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.8,-5.6,51,88100,266,1404,254,201,641,79,19800,46000,11100,1250,0,0.0,0,0,16.0,77777,9,999999999,60,0.0470,0,88,0.450,0.0,1.0 +2003,2,11,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-0.6,-6.1,63,88500,60,1041,255,14,225,5,2100,13200,1200,170,280,3.1,5,5,16.0,77777,9,999999999,60,0.0470,0,88,0.450,0.0,1.0 +2003,2,11,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.7,-7.2,63,88500,0,0,236,0,0,0,0,0,0,0,310,2.6,0,0,16.0,77777,9,999999999,60,0.0470,0,88,0.450,0.0,1.0 +2003,2,11,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.2,-7.8,62,88500,0,0,234,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,60,0.0470,0,88,0.450,0.0,1.0 +2003,2,11,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.8,-7.8,65,88500,0,0,232,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,60,0.0470,0,88,0.450,0.0,1.0 +2003,2,11,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-5.0,-8.3,75,88400,0,0,224,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,50,0.0470,0,88,0.450,0.0,1.0 +2003,2,11,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-5.0,-9.4,68,88300,0,0,223,0,0,0,0,0,0,0,190,1.5,0,0,16.0,77777,9,999999999,50,0.0470,0,88,0.450,0.0,1.0 +2003,2,11,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-5.6,-10.0,68,88400,0,0,220,0,0,0,0,0,0,0,310,1.5,0,0,16.0,77777,9,999999999,50,0.0470,0,88,0.450,0.0,1.0 +2003,2,12,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-6.7,-10.6,71,88300,0,0,216,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,50,0.0470,0,88,0.450,0.0,1.0 +2003,2,12,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-6.1,-8.9,78,88400,0,0,220,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,50,0.0470,0,88,0.450,0.0,1.0 +2003,2,12,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-6.7,-8.9,83,88300,0,0,218,0,0,0,0,0,0,0,280,2.1,0,0,16.0,77777,9,999999999,50,0.0470,0,88,0.450,0.0,1.0 +2003,2,12,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-8.3,-10.0,86,88300,0,0,212,0,0,0,0,0,0,0,260,1.5,0,0,16.0,77777,9,999999999,50,0.0470,0,88,0.450,0.0,1.0 +2003,2,12,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-7.2,-9.4,82,88300,0,0,216,0,0,0,0,0,0,0,240,2.1,0,0,16.0,77777,9,999999999,50,0.0470,0,88,0.450,0.0,1.0 +2003,2,12,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-7.2,-9.4,82,88500,0,0,216,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,50,0.0470,0,88,0.450,0.0,1.0 +2003,2,12,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-8.9,-10.6,86,88400,0,0,209,0,0,0,0,0,0,0,290,2.1,0,0,16.0,77777,9,999999999,50,0.0470,0,88,0.450,0.0,1.0 +2003,2,12,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-8.9,-10.6,86,88500,14,503,209,0,0,0,0,0,0,0,0,0.0,0,0,14.4,77777,9,999999999,50,0.0470,0,88,0.450,0.0,1.0 +2003,2,12,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-6.1,-8.9,78,88600,186,1404,220,92,571,16,9800,41500,4300,450,300,2.1,0,0,16.0,77777,9,999999999,50,0.0470,0,88,0.450,0.0,1.0 +2003,2,12,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-5.6,-8.9,75,88700,385,1404,221,262,777,48,27200,68000,8400,970,350,1.5,0,0,16.0,77777,9,999999999,50,0.0470,0,88,0.450,0.0,1.0 +2003,2,12,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.3,-7.8,68,88500,544,1404,230,375,833,51,39500,78600,8900,1200,0,0.0,0,0,16.0,77777,9,999999999,50,0.0470,0,88,0.450,0.0,1.0 +2003,2,12,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.7,-6.7,65,88800,649,1404,236,480,887,69,50300,85600,10500,1450,340,2.1,0,0,16.0,77777,9,999999999,50,0.0470,0,88,0.450,0.0,1.0 +2003,2,12,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.0,-6.7,57,88800,694,1404,242,535,961,59,56300,93600,9900,1450,350,1.5,0,0,16.0,77777,9,999999999,50,0.0470,0,88,0.450,0.0,1.0 +2003,2,12,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.7,-6.1,53,88800,675,1404,249,532,963,67,55700,93400,10600,1490,0,0.0,0,0,16.0,77777,9,999999999,50,0.0470,0,88,0.450,0.0,1.0 +2003,2,12,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.7,-6.1,53,88800,594,1404,249,439,923,47,46400,88300,8900,1210,290,1.5,0,0,16.0,77777,9,999999999,50,0.0470,0,88,0.450,0.0,1.0 +2003,2,12,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.8,-6.1,49,88800,456,1404,253,341,881,53,35700,80400,9500,1080,320,2.1,0,0,16.0,77777,9,999999999,50,0.0470,0,88,0.450,0.0,1.0 +2003,2,12,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.2,-6.1,51,88200,272,1404,262,196,602,79,19400,43800,10900,1260,300,3.1,3,3,16.0,77777,9,999999999,40,0.0470,0,88,0.450,0.0,1.0 +2003,2,12,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.1,-6.7,52,88700,64,1088,257,15,222,6,2200,13200,1300,200,0,0.0,4,3,16.0,77777,9,999999999,40,0.0470,0,88,0.450,0.0,1.0 +2003,2,12,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.1,-6.7,62,88600,0,0,239,0,0,0,0,0,0,0,220,2.1,0,0,16.0,77777,9,999999999,40,0.0470,0,88,0.450,0.0,1.0 +2003,2,12,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.2,-6.7,68,88600,0,0,235,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,40,0.0470,0,88,0.450,0.0,1.0 +2003,2,12,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.3,-6.7,75,88500,0,0,231,0,0,0,0,0,0,0,260,2.6,0,0,16.0,77777,9,999999999,40,0.0470,0,88,0.450,0.0,1.0 +2003,2,12,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.9,-7.2,75,88500,0,0,228,0,0,0,0,0,0,0,270,1.5,0,0,16.0,77777,9,999999999,40,0.0470,0,88,0.450,0.0,1.0 +2003,2,12,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-5.0,-8.9,71,88100,0,0,228,0,0,0,0,0,0,0,270,3.1,1,1,16.0,77777,9,999999999,40,0.0470,0,88,0.450,0.0,1.0 +2003,2,12,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-5.6,-10.0,68,88300,0,0,228,0,0,0,0,0,0,0,0,0.0,2,2,16.0,77777,9,999999999,50,0.0470,0,88,0.450,0.0,1.0 +2003,2,13,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-6.7,-9.4,79,88200,0,0,230,0,0,0,0,0,0,0,0,0.0,5,5,16.0,77777,9,999999999,50,0.0470,0,88,0.450,0.0,1.0 +2003,2,13,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-6.7,-8.3,87,88100,0,0,231,0,0,0,0,0,0,0,270,1.5,6,5,14.4,77777,9,999999999,50,0.0470,0,88,0.450,0.0,1.0 +2003,2,13,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-7.2,-9.4,82,88100,0,0,227,0,0,0,0,0,0,0,0,0.0,5,4,16.0,77777,9,999999999,50,0.0470,0,88,0.450,0.0,1.0 +2003,2,13,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-6.7,-8.9,83,88000,0,0,233,0,0,0,0,0,0,0,0,0.0,6,6,16.0,77777,9,999999999,50,0.0470,0,88,0.450,0.0,1.0 +2003,2,13,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-8.9,-10.0,91,87900,0,0,220,0,0,0,0,0,0,0,0,0.0,4,4,11.2,77777,9,999999999,60,0.0470,0,88,0.450,0.0,1.0 +2003,2,13,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-8.3,-10.0,86,87900,0,0,224,0,0,0,0,0,0,0,0,0.0,6,5,12.8,77777,9,999999999,60,0.0470,0,88,0.450,0.0,1.0 +2003,2,13,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-8.3,-10.6,82,87800,0,0,224,0,0,0,0,0,0,0,0,0.0,6,5,11.2,77777,9,999999999,60,0.0470,0,88,0.450,0.0,1.0 +2003,2,13,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-9.4,-11.1,86,87800,16,550,220,0,0,0,0,0,0,0,0,0.0,7,5,11.2,77777,9,999999999,60,0.0470,0,88,0.450,0.0,1.0 +2003,2,13,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-7.8,-9.4,87,87800,192,1403,228,91,548,16,9800,40200,4200,460,0,0.0,8,6,8.0,77777,9,999999999,69,0.0470,0,88,0.450,0.0,1.0 +2003,2,13,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-7.2,-8.9,86,87800,392,1403,231,259,773,42,27300,68500,8100,940,0,0.0,7,6,8.0,77777,9,999999999,69,0.0470,0,88,0.450,0.0,1.0 +2003,2,13,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-5.6,-8.3,79,87600,550,1403,233,371,643,118,38000,60000,14400,2210,10,1.5,5,4,9.6,77777,9,999999999,69,0.0470,0,88,0.450,0.0,1.0 +2003,2,13,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.3,-7.2,72,87800,656,1403,244,294,189,205,31900,19200,22900,5000,0,0.0,7,5,16.0,77777,9,999999999,80,0.0470,0,88,0.450,0.0,1.0 +2003,2,13,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.2,-6.7,68,87700,700,1403,249,138,0,138,16200,0,16200,6050,0,0.0,10,5,16.0,77777,9,999999999,80,0.0470,0,88,0.450,0.0,1.0 +2003,2,13,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.7,-6.7,65,87700,682,1403,249,333,244,214,35400,25100,23100,4870,0,0.0,9,4,16.0,77777,9,999999999,89,0.0470,0,88,0.450,0.0,1.0 +2003,2,13,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-0.6,-6.7,60,87700,601,1403,253,362,474,158,37700,46100,17900,3190,0,0.0,9,4,16.0,77777,9,999999999,80,0.0470,0,88,0.450,0.0,1.0 +2003,2,13,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-0.6,-6.1,63,87600,463,1403,270,186,118,147,20100,11000,16500,3330,0,0.0,10,9,16.0,3353,9,999999999,80,0.0470,0,88,0.450,0.0,1.0 +2003,2,13,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-0.6,-5.6,66,87200,278,1403,261,192,326,127,19400,24100,14600,2810,0,0.0,10,7,16.0,77777,9,999999999,80,0.0470,0,88,0.450,0.0,1.0 +2003,2,13,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.1,-5.6,68,87600,69,1134,276,17,126,11,2000,6100,1600,210,0,0.0,10,10,16.0,3048,9,999999999,89,0.0470,0,88,0.450,0.0,1.0 +2003,2,13,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-0.6,-5.6,66,87700,0,0,278,0,0,0,0,0,0,0,280,1.5,10,10,16.0,3048,9,999999999,89,0.0470,0,88,0.450,0.0,1.0 +2003,2,13,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-0.6,-5.6,66,87700,0,0,278,0,0,0,0,0,0,0,0,0.0,10,10,16.0,2743,9,999999999,89,0.0470,0,88,0.450,0.0,1.0 +2003,2,13,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-0.6,-5.0,69,87700,0,0,279,0,0,0,0,0,0,0,0,0.0,10,10,16.0,2591,9,999999999,89,0.0470,0,88,0.450,0.0,1.0 +2003,2,13,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-0.6,-5.6,66,87700,0,0,278,0,0,0,0,0,0,0,0,0.0,10,10,16.0,2743,9,999999999,89,0.0470,0,88,0.450,0.0,1.0 +2003,2,13,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.1,-5.0,72,87300,0,0,277,0,0,0,0,0,0,0,30,1.5,10,10,16.0,2743,9,999999999,89,0.0470,0,88,0.450,0.0,1.0 +2003,2,13,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.1,-4.4,76,87700,0,0,278,0,0,0,0,0,0,0,260,2.1,10,10,12.8,2134,9,999999999,89,0.0470,0,88,0.450,0.0,1.0 +2003,2,14,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.1,-3.9,79,87700,0,0,278,0,0,0,0,0,0,0,350,2.6,10,10,11.2,1524,9,999999999,89,0.0480,0,88,0.450,0.0,1.0 +2003,2,14,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.1,-5.6,68,87800,0,0,276,0,0,0,0,0,0,0,220,2.1,10,10,6.4,1067,9,999999999,80,0.0480,0,88,0.450,0.0,1.0 +2003,2,14,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-0.6,-5.0,69,87800,0,0,279,0,0,0,0,0,0,0,230,2.1,10,10,14.4,366,9,999999999,80,0.0480,0,88,0.450,0.0,1.0 +2003,2,14,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.0,-3.3,76,87900,0,0,283,0,0,0,0,0,0,0,270,2.6,10,10,16.0,1311,9,999999999,80,0.0480,0,88,0.450,0.0,1.0 +2003,2,14,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.0,-6.1,60,87600,0,0,280,0,0,0,0,0,0,0,0,0.0,10,10,16.0,2591,9,999999999,69,0.0480,0,88,0.450,0.0,1.0 +2003,2,14,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-0.6,-6.1,63,88000,0,0,278,0,0,0,0,0,0,0,310,2.6,10,10,16.0,2896,9,999999999,69,0.0480,0,88,0.450,0.0,1.0 +2003,2,14,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-0.6,-6.7,60,88100,0,0,277,0,0,0,0,0,0,0,300,3.1,10,10,16.0,1981,9,999999999,69,0.0480,0,88,0.450,0.0,1.0 +2003,2,14,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.7,-6.7,65,88100,18,573,273,0,0,0,0,0,0,0,300,3.1,10,10,14.4,2286,9,999999999,69,0.0480,0,88,0.450,0.0,1.0 +2003,2,14,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.2,-7.2,65,88200,198,1403,263,34,0,34,3900,0,3900,1240,290,3.6,9,9,11.2,2286,9,999999999,69,0.0480,0,88,0.450,0.0,1.0 +2003,2,14,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.7,-7.2,63,88200,398,1403,265,205,376,98,21300,32600,12000,1830,320,4.6,10,9,12.8,77777,9,999999999,69,0.0480,0,88,0.450,0.0,1.0 +2003,2,14,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.2,-7.2,65,88000,557,1403,270,361,655,100,37500,61900,12800,1950,340,4.6,10,10,14.4,2134,9,999999999,69,0.0480,0,88,0.450,0.0,1.0 +2003,2,14,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.7,-7.2,63,88300,662,1403,265,345,284,211,36700,29100,22900,4770,360,2.1,10,9,12.8,77777,9,999999999,69,0.0480,0,88,0.450,0.0,1.0 +2003,2,14,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.1,-6.7,62,88300,707,1403,268,289,120,228,31400,12300,25200,5700,340,3.1,10,9,11.2,77777,9,999999999,80,0.0480,0,88,0.450,0.0,1.0 +2003,2,14,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.1,-7.2,60,88200,688,1403,267,538,731,177,54500,70100,20000,3420,350,1.5,10,9,11.2,77777,9,999999999,80,0.0480,0,88,0.450,0.0,1.0 +2003,2,14,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-0.6,-6.7,60,88200,607,1403,277,382,573,133,40600,56000,16200,2640,0,0.0,10,10,11.2,1676,9,999999999,80,0.0480,0,88,0.450,0.0,1.0 +2003,2,14,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.0,-6.7,57,88200,469,1403,272,338,806,67,34600,73400,9900,1270,0,0.0,10,9,11.2,77777,9,999999999,69,0.0480,0,88,0.450,0.0,1.0 +2003,2,14,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.0,-6.7,57,87900,285,1403,272,200,676,62,20200,51400,9700,1080,0,0.0,9,9,11.2,77777,9,999999999,69,0.0480,0,88,0.450,0.0,1.0 +2003,2,14,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.1,-6.7,62,88200,73,1157,239,20,274,6,2700,16500,1600,200,0,0.0,0,0,11.2,77777,9,999999999,69,0.0480,0,88,0.450,0.0,1.0 +2003,2,14,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.1,-6.1,66,88300,0,0,276,0,0,0,0,0,0,0,0,0.0,10,10,12.8,2134,9,999999999,80,0.0480,0,88,0.450,0.0,1.0 +2003,2,14,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.2,-5.0,79,88300,0,0,273,0,0,0,0,0,0,0,0,0.0,10,10,9.6,1829,9,999999999,80,0.0480,0,88,0.450,0.0,1.0 +2003,2,14,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.7,-5.6,72,88400,0,0,274,0,0,0,0,0,0,0,300,1.5,10,10,11.2,2134,9,999999999,80,0.0480,0,88,0.450,0.0,1.0 +2003,2,14,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.8,-5.6,79,88400,0,0,270,0,0,0,0,0,0,0,320,1.5,10,10,9.6,1981,9,999999999,80,0.0480,0,88,0.450,0.0,1.0 +2003,2,14,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.7,-6.7,65,88100,0,0,273,0,0,0,0,0,0,0,270,1.5,10,10,11.2,1981,9,999999999,69,0.0480,0,88,0.450,0.0,1.0 +2003,2,14,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.2,-6.7,68,88400,0,0,271,0,0,0,0,0,0,0,360,1.5,10,10,9.6,1981,9,999999999,69,0.0480,0,88,0.450,0.0,1.0 +2003,2,15,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.8,-6.7,72,88400,0,0,233,0,0,0,0,0,0,0,0,0.0,0,0,9.6,77777,9,999999999,69,0.0480,0,88,0.450,0.0,1.0 +2003,2,15,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.8,-6.1,76,88400,0,0,269,0,0,0,0,0,0,0,260,1.5,10,10,9.6,1402,9,999999999,69,0.0480,0,88,0.450,0.0,1.0 +2003,2,15,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.2,-6.1,72,88400,0,0,271,0,0,0,0,0,0,0,0,0.0,10,10,9.6,1524,9,999999999,69,0.0480,0,88,0.450,0.0,1.0 +2003,2,15,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.8,-5.0,83,88400,0,0,270,0,0,0,0,0,0,0,0,0.0,10,10,8.0,1402,9,999999999,69,0.0480,0,88,0.450,0.0,1.0 +2003,2,15,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.3,-6.1,79,88100,0,0,245,0,0,0,0,0,0,0,0,0.0,5,5,8.0,77777,9,999999999,69,0.0480,0,88,0.450,0.0,1.0 +2003,2,15,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-4.4,-6.7,82,88400,0,0,227,0,0,0,0,0,0,0,0,0.0,0,0,8.0,77777,9,999999999,69,0.0480,0,88,0.450,0.0,1.0 +2003,2,15,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-5.6,-7.8,83,88300,0,0,222,0,0,0,0,0,0,0,0,0.0,0,0,8.0,77777,9,999999999,69,0.0480,0,88,0.450,0.0,1.0 +2003,2,15,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-4.4,-7.2,79,88400,20,619,234,0,0,0,0,0,0,0,0,0.0,3,2,6.4,77777,9,999999999,69,0.0480,0,88,0.450,0.0,1.0 +2003,2,15,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.9,-6.7,79,88500,205,1402,236,107,600,19,11400,44800,4800,510,0,0.0,2,2,4.8,77777,9,999999999,69,0.0480,0,88,0.450,0.0,1.0 +2003,2,15,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.2,-5.6,75,88500,405,1402,252,270,732,58,27600,64400,8900,1090,350,2.1,7,6,6.4,77777,9,999999999,69,0.0480,0,88,0.450,0.0,1.0 +2003,2,15,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.1,-5.0,72,88200,564,1402,260,351,574,119,36000,53900,14200,2250,0,0.0,9,7,6.4,77777,9,999999999,60,0.0480,0,88,0.450,0.0,1.0 +2003,2,15,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.6,-3.9,69,88500,669,1402,271,368,361,195,39300,37100,21500,4340,0,0.0,9,8,8.0,77777,9,999999999,69,0.0480,0,88,0.450,0.0,1.0 +2003,2,15,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.7,-2.8,70,88500,714,1402,277,505,684,155,52000,66700,17900,3180,330,2.6,10,8,8.0,77777,9,999999999,69,0.0480,0,88,0.450,0.0,1.0 +2003,2,15,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.8,-2.2,68,88400,695,1402,282,275,110,220,30200,11000,24700,6510,320,3.1,10,8,11.2,77777,9,999999999,69,0.0480,0,88,0.450,0.0,1.0 +2003,2,15,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.3,-2.2,66,88400,614,1402,276,478,704,169,49700,68700,19400,3450,280,3.6,8,6,12.8,77777,9,999999999,69,0.0480,0,88,0.450,0.0,1.0 +2003,2,15,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.9,-2.2,63,88400,476,1402,274,368,654,145,37500,59800,17100,2850,290,2.1,6,4,12.8,77777,9,999999999,60,0.0480,0,88,0.450,0.0,1.0 +2003,2,15,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.3,-2.2,66,87900,291,1402,276,98,39,90,10700,3200,10100,2170,270,3.6,8,6,14.4,77777,9,999999999,60,0.0480,0,88,0.450,0.0,1.0 +2003,2,15,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.7,-2.2,74,88300,78,1203,273,11,16,10,1300,800,1200,210,280,4.1,10,7,16.0,77777,9,999999999,60,0.0480,0,88,0.450,0.0,1.0 +2003,2,15,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.1,-2.8,73,88400,0,0,263,0,0,0,0,0,0,0,0,0.0,10,4,16.0,77777,9,999999999,69,0.0480,0,88,0.450,0.0,1.0 +2003,2,15,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.6,-3.3,73,88300,0,0,265,0,0,0,0,0,0,0,170,1.5,10,6,16.0,77777,9,999999999,69,0.0480,0,88,0.450,0.0,1.0 +2003,2,15,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-0.6,-3.9,76,88200,0,0,260,0,0,0,0,0,0,0,260,2.1,9,6,16.0,77777,9,999999999,69,0.0480,0,88,0.450,0.0,1.0 +2003,2,15,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.7,-3.9,83,88200,0,0,247,0,0,0,0,0,0,0,260,2.1,3,2,16.0,77777,9,999999999,69,0.0480,0,88,0.450,0.0,1.0 +2003,2,15,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.7,-5.0,76,87800,0,0,254,0,0,0,0,0,0,0,260,2.1,7,6,16.0,77777,9,999999999,69,0.0480,0,88,0.450,0.0,1.0 +2003,2,15,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.2,-5.6,75,88000,0,0,248,0,0,0,0,0,0,0,0,0.0,7,4,14.4,77777,9,999999999,69,0.0480,0,88,0.450,0.0,1.0 +2003,2,16,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.8,-5.6,79,87900,0,0,246,0,0,0,0,0,0,0,0,0.0,6,4,14.4,77777,9,999999999,69,0.0480,0,88,0.450,0.0,1.0 +2003,2,16,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.3,-5.0,87,87900,0,0,237,0,0,0,0,0,0,0,290,2.1,2,1,14.4,77777,9,999999999,69,0.0480,0,88,0.450,0.0,1.0 +2003,2,16,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.3,-5.0,87,87800,0,0,244,0,0,0,0,0,0,0,0,0.0,4,4,16.0,77777,9,999999999,69,0.0480,0,88,0.450,0.0,1.0 +2003,2,16,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.8,-5.0,83,87700,0,0,250,0,0,0,0,0,0,0,260,2.1,10,6,14.4,77777,9,999999999,69,0.0480,0,88,0.450,0.0,1.0 +2003,2,16,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.8,-5.0,83,87500,0,0,248,0,0,0,0,0,0,0,260,3.1,9,5,16.0,77777,9,999999999,69,0.0480,0,88,0.450,0.0,1.0 +2003,2,16,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.2,-5.0,79,87700,0,0,250,0,0,0,0,0,0,0,300,2.1,10,5,16.0,77777,9,999999999,69,0.0480,0,88,0.450,0.0,1.0 +2003,2,16,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.7,-4.4,80,87600,0,0,251,0,0,0,0,0,0,0,270,2.1,7,4,16.0,77777,9,999999999,80,0.0480,0,88,0.450,0.0,1.0 +2003,2,16,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.2,-4.4,83,87600,23,642,251,0,0,0,0,0,0,0,0,0.0,9,5,16.0,77777,9,999999999,80,0.0480,0,88,0.450,0.0,1.0 +2003,2,16,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.1,-3.9,79,87600,211,1401,270,32,0,32,3700,0,3700,1210,0,0.0,10,9,16.0,3353,9,999999999,80,0.0480,0,88,0.450,0.0,1.0 +2003,2,16,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-0.6,-2.8,83,87600,412,1401,264,87,0,87,9900,0,9900,3340,240,3.6,10,7,16.0,77777,9,999999999,80,0.0480,0,88,0.450,0.0,1.0 +2003,2,16,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.6,-2.8,76,87100,571,1401,278,189,29,177,21100,2300,20200,6450,0,0.0,10,9,16.0,2591,9,999999999,89,0.0480,0,88,0.450,0.0,1.0 +2003,2,16,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.7,-2.8,70,87500,676,1401,283,244,36,226,26700,3600,25000,6530,300,3.1,10,9,16.0,2438,9,999999999,89,0.0480,0,88,0.450,0.0,1.0 +2003,2,16,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.8,-2.8,65,87400,721,1401,281,343,204,237,37200,21000,26400,5970,300,1.5,10,8,16.0,77777,9,999999999,89,0.0480,0,88,0.450,0.0,1.0 +2003,2,16,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,-2.8,58,87300,702,1401,288,550,737,179,55900,70900,20200,3510,0,0.0,9,8,16.0,77777,9,999999999,100,0.0480,0,88,0.450,0.0,1.0 +2003,2,16,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,-2.8,53,87300,621,1401,293,491,790,140,50200,75200,16800,2680,300,1.5,9,8,16.0,77777,9,999999999,100,0.0480,0,88,0.450,0.0,1.0 +2003,2,16,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,-0.6,67,87200,483,1401,299,247,287,148,26000,27100,16700,3090,310,3.6,9,9,16.0,77777,9,999999999,100,0.0480,0,88,0.450,0.0,1.0 +2003,2,16,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,-1.1,64,87300,297,1401,299,168,417,79,17300,32100,10400,1470,140,2.1,10,9,16.0,1494,9,999999999,100,0.0480,0,88,0.450,0.0,1.0 +2003,2,16,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.0,0.0,75,87400,83,1226,304,20,183,9,2400,10600,1600,220,260,8.7,10,10,16.1,990,9,999999999,89,0.0480,0,88,0.450,0.0,1.0 +2003,2,16,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.3,-1.7,69,87500,0,0,299,0,0,0,0,0,0,0,270,11.3,10,10,16.0,1829,9,999999999,89,0.0480,0,88,0.450,0.0,1.0 +2003,2,16,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.8,-2.2,68,87600,0,0,296,0,0,0,0,0,0,0,260,11.3,10,10,16.0,2438,9,999999999,80,0.0480,0,88,0.450,0.0,1.0 +2003,2,16,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.3,-2.8,63,87700,0,0,298,0,0,0,0,0,0,0,270,11.3,10,10,16.0,2743,9,999999999,69,0.0480,0,88,0.450,0.0,1.0 +2003,2,16,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.3,-3.9,57,87800,0,0,297,0,0,0,0,0,0,0,260,7.7,10,10,16.0,3353,9,999999999,69,0.0480,0,88,0.450,0.0,1.0 +2003,2,16,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.3,-5.0,52,87500,0,0,295,0,0,0,0,0,0,0,260,9.3,10,10,16.0,3353,9,999999999,60,0.0480,0,88,0.450,0.0,1.0 +2003,2,16,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.8,-5.6,51,87900,0,0,269,0,0,0,0,0,0,0,250,6.7,10,5,16.0,77777,9,999999999,60,0.0480,0,88,0.450,0.0,1.0 +2003,2,17,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.8,-6.1,49,88000,0,0,268,0,0,0,0,0,0,0,250,5.7,9,5,16.0,77777,9,999999999,50,0.0480,0,88,0.450,0.0,1.0 +2003,2,17,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.2,-6.1,51,88000,0,0,268,0,0,0,0,0,0,0,270,2.6,8,6,16.0,77777,9,999999999,50,0.0480,0,88,0.450,0.0,1.0 +2003,2,17,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.1,-6.1,55,88000,0,0,258,0,0,0,0,0,0,0,290,2.6,4,3,16.0,77777,9,999999999,50,0.0480,0,88,0.450,0.0,1.0 +2003,2,17,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.6,-5.6,60,88000,0,0,270,0,0,0,0,0,0,0,130,2.6,8,8,16.0,2591,9,999999999,50,0.0480,0,88,0.450,0.0,1.0 +2003,2,17,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.1,-6.7,52,87800,0,0,271,0,0,0,0,0,0,0,0,0.0,8,8,16.0,2134,9,999999999,50,0.0480,0,88,0.450,0.0,1.0 +2003,2,17,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.1,-7.2,50,88000,0,0,257,0,0,0,0,0,0,0,0,0.0,3,3,16.0,77777,9,999999999,50,0.0480,0,88,0.450,0.0,1.0 +2003,2,17,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.7,-6.7,65,87900,0,0,247,0,0,0,0,0,0,0,40,1.5,3,3,16.0,77777,9,999999999,60,0.0480,0,88,0.450,0.0,1.0 +2003,2,17,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.7,-7.2,63,87900,26,689,250,0,0,0,0,0,0,0,80,2.1,5,5,16.0,77777,9,999999999,60,0.0480,0,88,0.450,0.0,1.0 +2003,2,17,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-0.6,-5.6,66,88100,218,1401,271,114,605,20,12200,46000,5000,540,310,3.6,9,9,16.0,1829,9,999999999,60,0.0480,0,88,0.450,0.0,1.0 +2003,2,17,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.8,-4.4,57,88100,419,1401,280,277,813,33,29400,73300,7500,890,280,6.7,8,8,16.0,1311,9,999999999,60,0.0480,0,88,0.450,0.0,1.0 +2003,2,17,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,-4.4,51,87700,578,1401,266,416,900,43,44000,85800,8500,1140,270,9.3,2,1,16.0,77777,9,999999999,60,0.0480,0,88,0.450,0.0,1.0 +2003,2,17,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,-4.4,48,88200,683,1401,274,510,942,49,53900,91700,9000,1310,270,8.8,4,3,16.0,77777,9,999999999,60,0.0480,0,88,0.450,0.0,1.0 +2003,2,17,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,-6.1,39,88100,728,1401,270,554,738,168,56700,71900,19200,3430,250,10.8,1,1,16.0,77777,9,999999999,60,0.0480,0,88,0.450,0.0,1.0 +2003,2,17,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,-4.4,46,88100,709,1401,279,153,0,153,17800,0,17800,6600,260,10.8,4,4,16.0,77777,9,999999999,50,0.0480,0,88,0.450,0.0,1.0 +2003,2,17,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.6,-1.1,87,88200,628,1401,288,76,0,76,9200,0,9200,3510,280,7.2,10,10,1.6,305,9,999999999,50,0.0480,0,88,0.450,0.0,1.0 +2003,2,17,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.8,-2.8,65,88100,489,1401,277,95,0,95,11000,0,11000,3850,250,7.7,9,7,16.0,77777,9,999999999,50,0.0480,0,88,0.450,0.0,1.0 +2003,2,17,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.3,-4.4,55,87800,304,1401,282,223,398,137,22600,30800,15900,3040,260,7.7,10,8,16.0,77777,9,999999999,50,0.0480,0,88,0.450,0.0,1.0 +2003,2,17,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.7,-4.4,61,88200,89,1272,281,29,181,18,3300,9000,2600,330,330,2.6,9,9,16.0,1524,9,999999999,50,0.0480,0,88,0.450,0.0,1.0 +2003,2,17,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.7,-5.0,58,88300,0,0,265,0,0,0,0,0,0,0,250,3.1,6,5,16.0,77777,9,999999999,50,0.0480,0,88,0.450,0.0,1.0 +2003,2,17,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.2,-5.0,56,88300,0,0,267,0,0,0,0,0,0,0,330,3.1,6,5,16.0,77777,9,999999999,50,0.0480,0,88,0.450,0.0,1.0 +2003,2,17,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.2,-6.1,51,88300,0,0,262,0,0,0,0,0,0,0,340,3.1,5,3,16.0,77777,9,999999999,50,0.0480,0,88,0.450,0.0,1.0 +2003,2,17,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.7,-6.1,53,88200,0,0,257,0,0,0,0,0,0,0,300,4.1,4,2,16.0,77777,9,999999999,50,0.0480,0,88,0.450,0.0,1.0 +2003,2,17,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.1,-6.7,52,87900,0,0,246,0,0,0,0,0,0,0,280,4.6,2,0,16.0,77777,9,999999999,50,0.0480,0,88,0.450,0.0,1.0 +2003,2,17,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.1,-5.6,58,88200,0,0,262,0,0,0,0,0,0,0,290,6.7,6,5,16.0,77777,9,999999999,50,0.0480,0,88,0.450,0.0,1.0 +2003,2,18,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.1,-6.1,55,88200,0,0,285,0,0,0,0,0,0,0,20,3.6,10,10,16.0,1402,9,999999999,50,0.0490,0,88,0.450,0.0,1.0 +2003,2,18,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.1,-6.1,55,88300,0,0,285,0,0,0,0,0,0,0,270,2.1,10,10,16.0,1524,9,999999999,50,0.0490,0,88,0.450,0.0,1.0 +2003,2,18,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.6,-6.7,54,88300,0,0,261,0,0,0,0,0,0,0,250,4.1,6,6,16.0,77777,9,999999999,50,0.0490,0,88,0.450,0.0,1.0 +2003,2,18,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.6,-6.1,57,88300,0,0,283,0,0,0,0,0,0,0,280,2.6,10,10,16.0,1402,9,999999999,50,0.0490,0,88,0.450,0.0,1.0 +2003,2,18,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.1,-6.7,52,88000,0,0,261,0,0,0,0,0,0,0,0,0.0,5,5,16.0,77777,9,999999999,50,0.0490,0,88,0.450,0.0,1.0 +2003,2,18,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-0.6,-6.7,60,88300,0,0,253,0,0,0,0,0,0,0,0,0.0,4,4,16.0,77777,9,999999999,50,0.0490,0,88,0.450,0.0,1.0 +2003,2,18,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.1,-6.1,66,88300,0,0,239,0,0,0,0,0,0,0,230,2.6,0,0,16.0,77777,9,999999999,50,0.0490,0,88,0.450,0.0,1.0 +2003,2,18,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.3,-6.7,75,88200,29,735,241,0,52,0,0,0,0,0,0,0.0,3,3,16.0,77777,9,999999999,50,0.0490,0,88,0.450,0.0,1.0 +2003,2,18,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.1,-5.6,68,88300,225,1400,250,77,107,59,8300,7600,7100,1250,350,2.1,3,3,16.0,77777,9,999999999,50,0.0490,0,88,0.450,0.0,1.0 +2003,2,18,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.1,-5.6,68,88300,426,1400,254,186,201,124,19500,18200,14000,2510,280,1.5,5,5,16.0,77777,9,999999999,50,0.0490,0,88,0.450,0.0,1.0 +2003,2,18,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.0,-5.0,66,88100,585,1400,282,137,12,132,15800,800,15400,5360,10,1.5,10,10,16.0,2134,9,999999999,50,0.0490,0,88,0.450,0.0,1.0 +2003,2,18,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.1,-6.1,55,88400,690,1400,285,448,557,173,47200,55600,19700,3650,300,1.5,10,10,16.0,1829,9,999999999,50,0.0490,0,88,0.450,0.0,1.0 +2003,2,18,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.7,-6.7,50,88400,735,1400,287,505,762,104,52200,74600,12900,2130,0,0.0,10,10,16.0,2134,9,999999999,50,0.0490,0,88,0.450,0.0,1.0 +2003,2,18,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.8,-5.6,51,88400,716,1400,293,472,609,160,50400,61300,18900,3390,0,0.0,10,10,16.0,1676,9,999999999,50,0.0490,0,88,0.450,0.0,1.0 +2003,2,18,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.9,-5.0,50,88500,634,1400,284,503,851,116,52300,82300,14800,2340,0,0.0,8,8,16.0,2286,9,999999999,50,0.0490,0,88,0.450,0.0,1.0 +2003,2,18,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,-4.4,48,88500,496,1400,281,371,897,52,39000,83300,9400,1140,270,4.6,6,6,16.0,77777,9,999999999,50,0.0490,0,88,0.450,0.0,1.0 +2003,2,18,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,-4.4,51,88100,310,1400,276,219,713,61,22400,56500,9900,1090,250,4.6,5,5,16.0,77777,9,999999999,50,0.0490,0,88,0.450,0.0,1.0 +2003,2,18,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.3,-4.4,55,88600,94,1295,272,31,335,8,3700,20900,2000,260,230,3.1,5,5,16.0,77777,9,999999999,50,0.0490,0,88,0.450,0.0,1.0 +2003,2,18,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.8,-5.0,54,88600,0,0,254,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,50,0.0490,0,88,0.450,0.0,1.0 +2003,2,18,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.7,-5.0,58,88600,0,0,289,0,0,0,0,0,0,0,230,1.5,10,10,16.0,2286,9,999999999,50,0.0490,0,88,0.450,0.0,1.0 +2003,2,18,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.2,-3.9,62,88600,0,0,292,0,0,0,0,0,0,0,250,3.6,10,10,16.0,1981,9,999999999,50,0.0490,0,88,0.450,0.0,1.0 +2003,2,18,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.8,-3.9,59,88600,0,0,294,0,0,0,0,0,0,0,260,3.1,10,10,16.0,1829,9,999999999,50,0.0490,0,88,0.450,0.0,1.0 +2003,2,18,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.8,-5.0,54,88200,0,0,279,0,0,0,0,0,0,0,250,5.7,8,8,16.0,1981,9,999999999,50,0.0490,0,88,0.450,0.0,1.0 +2003,2,18,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.8,-6.1,49,88600,0,0,264,0,0,0,0,0,0,0,250,4.6,3,3,16.0,77777,9,999999999,50,0.0490,0,88,0.450,0.0,1.0 +2003,2,19,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.8,-6.7,46,88600,0,0,268,0,0,0,0,0,0,0,230,3.6,5,5,16.0,77777,9,999999999,50,0.0490,0,88,0.450,0.0,1.0 +2003,2,19,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.2,-6.1,51,88600,0,0,266,0,0,0,0,0,0,0,230,4.1,5,5,16.0,77777,9,999999999,60,0.0490,0,88,0.450,0.0,1.0 +2003,2,19,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.2,-5.6,53,88600,0,0,290,0,0,0,0,0,0,0,230,2.6,10,10,16.0,1829,9,999999999,50,0.0490,0,88,0.450,0.0,1.0 +2003,2,19,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.2,-8.3,42,88500,0,0,287,0,0,0,0,0,0,0,210,3.1,10,10,16.0,1829,9,999999999,50,0.0490,0,88,0.450,0.0,1.0 +2003,2,19,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.6,-8.3,47,88200,0,0,267,0,0,0,0,0,0,0,170,3.1,8,8,16.0,1676,9,999999999,40,0.0490,0,88,0.450,0.0,1.0 +2003,2,19,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.6,-8.3,47,88500,0,0,251,0,0,0,0,0,0,0,170,5.2,3,2,16.0,77777,9,999999999,40,0.0490,0,88,0.450,0.0,1.0 +2003,2,19,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.6,-8.9,45,88500,0,0,257,0,0,0,0,0,0,0,200,2.1,6,5,16.0,77777,9,999999999,40,0.0490,0,88,0.450,0.0,1.0 +2003,2,19,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-0.6,-8.3,52,88400,33,758,262,1,63,1,400,3500,300,40,230,2.1,9,8,16.0,77777,9,999999999,40,0.0490,0,88,0.450,0.0,1.0 +2003,2,19,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.1,-6.7,62,88400,232,1400,258,95,280,48,10000,19200,6800,860,300,2.1,9,7,16.0,77777,9,999999999,50,0.0490,0,88,0.450,0.0,1.0 +2003,2,19,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-0.6,-6.1,63,88400,433,1400,255,154,89,126,16700,8200,14100,2830,360,1.5,10,5,16.0,77777,9,999999999,50,0.0490,0,88,0.450,0.0,1.0 +2003,2,19,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.1,-6.7,52,88100,592,1400,261,238,87,200,26000,8500,22300,5500,0,0.0,10,5,16.0,77777,9,999999999,50,0.0490,0,88,0.450,0.0,1.0 +2003,2,19,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.7,-7.8,46,88400,697,1400,262,290,118,230,31400,12100,25300,5730,0,0.0,10,5,16.0,77777,9,999999999,50,0.0490,0,88,0.450,0.0,1.0 +2003,2,19,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.2,-6.1,51,88300,742,1400,266,451,456,208,47000,46000,22500,4600,80,2.6,10,5,16.0,77777,9,999999999,60,0.0490,0,88,0.450,0.0,1.0 +2003,2,19,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.8,-6.1,49,88300,723,1400,268,561,809,142,58200,79500,17000,2990,0,0.0,10,5,16.0,77777,9,999999999,60,0.0490,0,88,0.450,0.0,1.0 +2003,2,19,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.9,-5.6,47,88200,641,1400,273,502,950,66,52600,91600,10500,1430,100,1.5,10,5,16.0,77777,9,999999999,50,0.0490,0,88,0.450,0.0,1.0 +2003,2,19,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,-5.6,46,88200,502,1400,277,385,908,58,40400,84400,9900,1170,100,1.5,10,6,16.0,77777,9,999999999,50,0.0490,0,88,0.450,0.0,1.0 +2003,2,19,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.9,-6.1,45,87800,316,1400,275,227,753,56,22600,61100,8700,930,120,1.5,9,6,16.0,77777,9,999999999,40,0.0490,0,88,0.450,0.0,1.0 +2003,2,19,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.3,-6.1,47,88200,99,1341,272,34,365,8,4000,22900,2200,260,170,1.5,8,6,16.0,77777,9,999999999,40,0.0490,0,88,0.450,0.0,1.0 +2003,2,19,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,-8.9,34,88200,0,0,274,0,0,0,0,0,0,0,240,5.2,9,6,16.0,77777,9,999999999,50,0.0490,0,88,0.450,0.0,1.0 +2003,2,19,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.2,-8.3,42,88200,0,0,266,0,0,0,0,0,0,0,250,4.1,10,6,16.0,77777,9,999999999,50,0.0490,0,88,0.450,0.0,1.0 +2003,2,19,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.8,-7.8,42,88300,0,0,272,0,0,0,0,0,0,0,230,3.6,10,7,16.0,77777,9,999999999,60,0.0490,0,88,0.450,0.0,1.0 +2003,2,19,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.8,-7.8,42,88300,0,0,276,0,0,0,0,0,0,0,260,3.6,9,8,16.0,77777,9,999999999,60,0.0490,0,88,0.450,0.0,1.0 +2003,2,19,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.8,-8.3,40,87900,0,0,268,0,0,0,0,0,0,0,240,3.1,10,6,16.0,77777,9,999999999,60,0.0490,0,88,0.450,0.0,1.0 +2003,2,19,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.7,-7.8,46,88200,0,0,268,0,0,0,0,0,0,0,280,2.6,10,7,16.0,77777,9,999999999,60,0.0490,0,88,0.450,0.0,1.0 +2003,2,20,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.1,-7.2,50,88200,0,0,266,0,0,0,0,0,0,0,130,1.5,10,7,16.0,3658,9,999999999,60,0.0490,0,88,0.450,0.0,1.0 +2003,2,20,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.6,-7.2,52,88100,0,0,261,0,0,0,0,0,0,0,0,0.0,6,6,16.0,3658,9,999999999,60,0.0490,0,88,0.450,0.0,1.0 +2003,2,20,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.7,-7.2,48,88100,0,0,272,0,0,0,0,0,0,0,0,0.0,8,8,16.0,1829,9,999999999,60,0.0490,0,88,0.450,0.0,1.0 +2003,2,20,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.6,-7.2,52,88100,0,0,274,0,0,0,0,0,0,0,200,2.1,9,9,16.0,3048,9,999999999,60,0.0490,0,88,0.450,0.0,1.0 +2003,2,20,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.0,-5.0,66,87800,0,0,282,0,0,0,0,0,0,0,0,0.0,10,10,16.0,1676,9,999999999,60,0.0490,0,88,0.450,0.0,1.0 +2003,2,20,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.0,-5.6,62,88100,0,0,281,0,0,0,0,0,0,0,280,2.1,10,10,16.0,1676,9,999999999,60,0.0490,0,88,0.450,0.0,1.0 +2003,2,20,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.0,-6.7,57,88000,0,0,266,0,0,0,0,0,0,0,190,1.5,8,8,16.0,1829,9,999999999,60,0.0490,0,88,0.450,0.0,1.0 +2003,2,20,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-0.6,-5.6,66,88000,36,804,265,1,0,1,100,0,100,40,0,0.0,8,8,16.0,3048,9,999999999,60,0.0490,0,88,0.450,0.0,1.0 +2003,2,20,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.1,-7.2,50,88000,238,1399,266,24,0,24,2900,0,2900,970,350,2.6,9,7,16.0,77777,9,999999999,60,0.0490,0,88,0.450,0.0,1.0 +2003,2,20,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.0,-4.4,69,88000,440,1399,264,150,78,125,16400,7200,14100,3310,330,2.6,9,7,16.0,3658,9,999999999,60,0.0490,0,88,0.450,0.0,1.0 +2003,2,20,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.7,-5.6,55,87700,599,1399,288,69,0,69,8400,0,8400,3180,300,2.6,10,10,16.0,3048,9,999999999,69,0.0490,0,88,0.450,0.0,1.0 +2003,2,20,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.8,-5.0,54,88000,705,1399,285,176,6,173,20300,500,20000,7210,50,2.1,10,9,16.0,1829,9,999999999,69,0.0490,0,88,0.450,0.0,1.0 +2003,2,20,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.9,-4.4,52,88000,749,1399,299,319,114,258,35000,11500,28900,7730,360,1.5,10,10,16.0,1676,9,999999999,69,0.0490,0,88,0.450,0.0,1.0 +2003,2,20,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,-5.0,48,87900,730,1399,281,255,43,233,28100,4300,25800,7020,0,0.0,10,7,16.0,77777,9,999999999,69,0.0490,0,88,0.450,0.0,1.0 +2003,2,20,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,-5.6,42,87900,648,1399,305,165,0,165,18900,0,18900,6660,280,2.1,10,10,16.0,1829,9,999999999,69,0.0490,0,88,0.450,0.0,1.0 +2003,2,20,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,-6.7,37,87900,509,1399,306,70,0,70,8300,0,8300,3040,260,5.7,10,10,16.0,1676,9,999999999,69,0.0490,0,88,0.450,0.0,1.0 +2003,2,20,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,-4.4,51,87400,323,1399,292,167,179,126,17800,14700,14400,2750,300,3.6,10,9,16.0,1676,9,999999999,69,0.0490,0,88,0.450,0.0,1.0 +2003,2,20,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,-5.0,48,87900,105,1364,300,27,90,20,2900,4100,2600,350,150,2.1,10,10,16.0,1829,9,999999999,69,0.0490,0,88,0.450,0.0,1.0 +2003,2,20,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.3,-4.4,55,87800,0,0,296,0,0,0,0,0,0,0,80,1.5,10,10,16.0,1676,9,999999999,69,0.0490,0,88,0.450,0.0,1.0 +2003,2,20,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.3,-3.3,60,87800,0,0,283,0,0,0,0,0,0,0,0,0.0,9,8,16.0,1524,9,999999999,69,0.0490,0,88,0.450,0.0,1.0 +2003,2,20,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.8,-2.8,65,87800,0,0,277,0,0,0,0,0,0,0,120,2.1,7,7,16.0,1676,9,999999999,69,0.0490,0,88,0.450,0.0,1.0 +2003,2,20,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.8,-3.9,59,87800,0,0,270,0,0,0,0,0,0,0,120,1.5,6,5,16.0,77777,9,999999999,69,0.0490,0,88,0.450,0.0,1.0 +2003,2,20,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.2,-4.4,59,87400,0,0,283,0,0,0,0,0,0,0,110,3.1,10,9,16.0,3353,9,999999999,80,0.0490,0,88,0.450,0.0,1.0 +2003,2,20,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.2,-3.3,65,87700,0,0,293,0,0,0,0,0,0,0,110,3.1,10,10,16.0,1829,9,999999999,69,0.0490,0,88,0.450,0.0,1.0 +2003,2,21,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.7,-3.3,67,87700,0,0,282,0,0,0,0,0,0,0,80,2.6,10,9,16.0,77777,9,999999999,69,0.0500,0,88,0.450,0.0,1.0 +2003,2,21,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.9,-4.4,52,87700,0,0,290,0,0,0,0,0,0,0,270,2.1,9,9,16.0,77777,9,999999999,69,0.0500,0,88,0.450,0.0,1.0 +2003,2,21,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,-3.9,53,87700,0,0,301,0,0,0,0,0,0,0,250,5.2,10,10,16.0,1463,9,999999999,69,0.0500,0,88,0.450,0.0,1.0 +2003,2,21,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,-3.3,55,87700,0,0,294,0,0,0,0,0,0,0,260,5.7,10,9,16.0,1494,9,999999999,69,0.0500,0,88,0.450,0.0,1.0 +2003,2,21,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.3,-2.2,66,87300,0,0,298,0,0,0,0,0,0,0,290,1.5,10,10,16.0,2286,9,999999999,69,0.0500,0,88,0.450,0.0,1.0 +2003,2,21,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,-4.4,48,87700,0,0,289,0,0,0,0,0,0,0,330,1.5,8,8,16.0,1829,9,999999999,69,0.0500,0,88,0.450,0.0,1.0 +2003,2,21,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.0,-4.4,69,87600,0,0,282,0,0,0,0,0,0,0,0,0.0,10,10,16.0,1829,9,999999999,69,0.0500,0,88,0.450,0.0,1.0 +2003,2,21,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.0,-5.6,62,87700,40,851,281,4,131,2,1000,7400,600,80,340,2.6,10,10,16.0,1676,9,999999999,60,0.0500,0,88,0.450,0.0,1.0 +2003,2,21,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-0.6,-5.6,66,87700,246,1398,265,133,638,20,14200,50300,5300,570,310,1.5,8,8,16.0,1676,9,999999999,60,0.0500,0,88,0.450,0.0,1.0 +2003,2,21,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.9,-3.3,57,87800,447,1398,271,296,818,34,31500,74700,7500,920,290,1.5,3,3,16.0,77777,9,999999999,60,0.0500,0,88,0.450,0.0,1.0 +2003,2,21,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,-2.8,53,87500,606,1398,299,424,792,79,44000,76000,10900,1600,260,7.7,9,9,16.0,1494,9,999999999,60,0.0500,0,88,0.450,0.0,1.0 +2003,2,21,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,-2.2,54,87900,712,1398,291,444,504,186,46500,50600,20700,3990,250,8.8,7,7,16.0,77777,9,999999999,60,0.0500,0,88,0.450,0.0,1.0 +2003,2,21,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,-3.3,51,87800,756,1398,299,253,48,227,27800,4800,25200,7040,240,8.2,10,9,16.0,1463,9,999999999,60,0.0500,0,88,0.450,0.0,1.0 +2003,2,21,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,-2.8,55,87800,737,1398,305,178,6,175,20600,500,20400,7450,240,8.8,10,10,16.0,1311,9,999999999,60,0.0500,0,88,0.450,0.0,1.0 +2003,2,21,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,-2.8,51,87700,655,1398,301,371,366,199,39500,37500,21900,4430,270,5.2,10,9,16.0,1280,9,999999999,60,0.0500,0,88,0.450,0.0,1.0 +2003,2,21,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,-1.1,64,87700,515,1398,307,398,582,182,40000,54300,19900,3700,300,2.1,10,10,16.0,1067,9,999999999,60,0.0500,0,88,0.450,0.0,1.0 +2003,2,21,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.3,-1.7,69,87400,329,1398,285,121,82,101,13000,6800,11400,2200,260,5.7,10,8,16.0,77777,9,999999999,60,0.0500,0,88,0.450,0.0,1.0 +2003,2,21,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.1,-1.1,84,87700,111,1398,290,0,0,0,0,0,0,0,290,7.7,10,10,2.4,823,9,999999999,60,0.0500,0,88,0.450,0.0,1.0 +2003,2,21,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.2,-2.2,71,87800,0,12,286,0,0,0,0,0,0,0,250,5.7,9,9,16.0,3048,9,999999999,60,0.0500,0,88,0.450,0.0,1.0 +2003,2,21,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.2,-3.3,65,87700,0,0,262,0,0,0,0,0,0,0,240,5.7,2,2,16.0,77777,9,999999999,60,0.0500,0,88,0.450,0.0,1.0 +2003,2,21,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.7,-3.9,64,87700,0,0,259,0,0,0,0,0,0,0,290,3.1,2,2,16.0,77777,9,999999999,60,0.0500,0,88,0.450,0.0,1.0 +2003,2,21,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.1,-2.2,77,87600,0,0,289,0,0,0,0,0,0,0,150,1.5,10,10,16.0,3048,9,999999999,60,0.0500,0,88,0.450,0.0,1.0 +2003,2,21,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.1,-3.9,67,87300,0,0,287,0,0,0,0,0,0,0,260,2.1,10,10,16.0,2134,9,999999999,60,0.0500,0,88,0.450,0.0,1.0 +2003,2,21,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.0,-3.3,76,87400,0,0,275,0,0,0,0,0,0,0,0,0.0,10,9,16.0,1829,9,999999999,60,0.0500,0,88,0.450,0.0,1.0 +2003,2,22,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.6,-2.8,76,87300,0,0,286,0,0,0,0,0,0,0,100,2.1,10,10,16.0,1829,9,999999999,60,0.0500,0,88,0.450,0.0,1.0 +2003,2,22,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-0.6,-2.2,88,87300,0,0,282,0,0,0,0,0,0,0,340,3.1,10,10,16.0,1280,9,999999999,60,0.0500,0,88,0.450,0.0,1.0 +2003,2,22,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-0.6,-1.7,91,87200,0,0,282,0,0,0,0,0,0,0,260,2.1,10,10,3.2,396,9,999999999,60,0.0500,0,88,0.450,0.0,1.0 +2003,2,22,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.1,-1.7,95,87100,0,0,280,0,0,0,0,0,0,0,290,2.1,10,10,9.6,1981,9,999999999,60,0.0500,0,88,0.450,0.0,1.0 +2003,2,22,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-0.6,-1.1,96,86900,0,0,283,0,0,0,0,0,0,0,320,2.6,10,10,1.2,30,9,999999999,60,0.0500,0,88,0.450,0.0,1.0 +2003,2,22,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-8.3,-11.1,78,87200,0,0,243,0,0,0,0,0,0,0,340,6.2,10,10,6.4,610,9,999999999,60,0.0500,0,88,0.450,0.0,1.0 +2003,2,22,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-10.0,-14.4,67,87300,0,0,234,0,0,0,0,0,0,0,340,8.8,10,10,16.0,671,9,999999999,60,0.0500,0,88,0.450,0.0,1.0 +2003,2,22,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-11.7,-16.1,67,87400,44,897,226,2,0,2,300,0,300,80,330,6.2,10,10,4.8,792,9,999999999,60,0.0500,0,88,0.450,0.0,1.0 +2003,2,22,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-12.2,-16.1,70,87500,253,1398,225,46,0,46,5300,0,5300,1700,320,7.2,10,10,9.6,945,9,999999999,60,0.0500,0,88,0.450,0.0,1.0 +2003,2,22,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-12.8,-15.6,77,87600,454,1398,223,184,146,137,20000,13600,15600,3100,330,5.7,10,10,2.4,884,9,999999999,50,0.0500,0,88,0.450,0.0,1.0 +2003,2,22,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-11.7,-17.2,60,87800,613,1398,225,260,111,211,28500,10900,23700,5850,340,3.1,10,10,6.4,884,9,999999999,50,0.0500,0,88,0.450,0.0,1.0 +2003,2,22,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-10.6,-16.7,57,87800,719,1398,230,353,213,243,38300,21900,27000,6120,340,5.2,10,10,16.0,884,9,999999999,50,0.0500,0,88,0.450,0.0,1.0 +2003,2,22,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-10.6,-15.0,67,87800,763,1398,231,457,414,230,49000,43500,25100,5440,360,4.6,10,10,8.0,823,9,999999999,50,0.0500,0,88,0.450,0.0,1.0 +2003,2,22,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-11.0,-16.0,63,87800,744,1398,229,299,109,241,32900,10900,27000,7300,320,7.2,10,10,4.0,720,9,999999999,50,0.0500,0,88,0.450,0.0,1.0 +2003,2,22,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-12.0,-16.0,69,87800,661,1398,225,82,0,82,9900,0,9900,3830,320,7.2,10,10,2.4,870,9,999999999,50,0.0500,0,88,0.450,0.0,1.0 +2003,2,22,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-12.2,-17.2,63,87900,522,1398,224,396,581,178,40000,54500,19600,3610,320,6.7,10,10,2.0,183,9,999999999,50,0.0500,0,88,0.450,0.0,1.0 +2003,2,22,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-13.3,-18.3,63,88000,335,1398,219,249,803,55,24900,66700,8900,960,320,6.2,10,10,12.8,1189,9,999999999,50,0.0500,0,88,0.450,0.0,1.0 +2003,2,22,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-13.9,-18.3,66,88100,117,1398,217,0,0,0,0,0,0,0,300,4.6,10,10,11.2,1280,9,999999999,40,0.0500,0,88,0.450,0.0,1.0 +2003,2,22,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-14.4,-18.9,66,88100,0,35,215,0,0,0,0,0,0,0,300,5.7,10,10,9.6,701,9,999999999,40,0.0500,0,88,0.450,0.0,1.0 +2003,2,22,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-16.0,-19.0,75,88200,0,0,209,0,0,0,0,0,0,0,310,6.2,10,10,3.2,420,9,999999999,40,0.0500,0,88,0.450,0.0,1.0 +2003,2,22,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-15.6,-20.0,66,88300,0,0,210,0,0,0,0,0,0,0,340,6.7,10,10,6.4,1524,9,999999999,40,0.0500,0,88,0.450,0.0,1.0 +2003,2,22,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-16.1,-22.2,56,88300,0,0,206,0,0,0,0,0,0,0,320,5.7,10,10,16.0,1524,9,999999999,40,0.0500,0,88,0.450,0.0,1.0 +2003,2,22,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-16.7,-20.6,69,88400,0,0,206,0,0,0,0,0,0,0,290,4.6,10,10,4.0,488,9,999999999,30,0.0500,0,88,0.450,0.0,1.0 +2003,2,22,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-17.2,-21.7,65,88300,0,0,203,0,0,0,0,0,0,0,320,4.1,10,10,8.0,701,9,999999999,30,0.0500,0,88,0.450,0.0,1.0 +2003,2,23,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-17.2,-23.3,56,88400,0,0,202,0,0,0,0,0,0,0,330,4.1,10,10,12.8,1829,9,999999999,30,0.0500,0,88,0.450,0.0,1.0 +2003,2,23,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-17.8,-22.2,66,88400,0,0,201,0,0,0,0,0,0,0,330,2.1,10,10,11.2,1524,9,999999999,30,0.0500,0,88,0.450,0.0,1.0 +2003,2,23,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-18.3,-22.2,69,88400,0,0,199,0,0,0,0,0,0,0,300,3.6,10,10,12.8,2896,9,999999999,20,0.0500,0,88,0.450,0.0,1.0 +2003,2,23,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-18.3,-23.3,62,88400,0,0,198,0,0,0,0,0,0,0,290,2.6,10,10,14.4,3048,9,999999999,20,0.0500,0,88,0.450,0.0,1.0 +2003,2,23,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-18.9,-22.8,69,88500,0,0,197,0,0,0,0,0,0,0,270,2.6,10,10,12.8,1219,9,999999999,20,0.0500,0,88,0.450,0.0,1.0 +2003,2,23,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-18.9,-23.3,65,88500,0,0,197,0,0,0,0,0,0,0,280,3.6,10,10,9.6,3353,9,999999999,20,0.0500,0,88,0.450,0.0,1.0 +2003,2,23,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-19.4,-23.9,65,88500,0,0,195,0,0,0,0,0,0,0,270,3.1,10,10,16.0,2591,9,999999999,20,0.0500,0,88,0.450,0.0,1.0 +2003,2,23,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-20.0,-24.4,65,88600,48,920,183,6,68,4,900,3700,700,110,270,3.6,8,8,16.0,945,9,999999999,20,0.0500,0,88,0.450,0.0,1.0 +2003,2,23,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-19.4,-25.6,54,88600,260,1397,176,151,565,45,15500,42100,7600,820,270,5.2,4,4,16.0,77777,9,999999999,20,0.0500,0,88,0.450,0.0,1.0 +2003,2,23,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-18.3,-25.6,49,88600,462,1397,170,285,557,100,29000,49800,12500,1810,270,4.6,0,0,16.0,77777,9,999999999,20,0.0500,0,88,0.450,0.0,1.0 +2003,2,23,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-17.8,-26.1,45,88700,621,1397,171,239,99,195,26200,9700,21900,5560,260,3.6,0,0,16.0,77777,9,999999999,20,0.0500,0,88,0.450,0.0,1.0 +2003,2,23,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-16.7,-25.0,45,88700,726,1397,175,239,24,227,27100,2100,26000,8840,240,2.1,0,0,16.0,77777,9,999999999,20,0.0500,0,88,0.450,0.0,1.0 +2003,2,23,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-16.1,-23.9,47,88700,771,1397,185,295,78,252,32400,7900,28100,7740,260,2.6,3,3,16.0,77777,9,999999999,20,0.0500,0,88,0.450,0.0,1.0 +2003,2,23,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-15.0,-24.4,41,88700,751,1397,180,388,255,251,42200,26300,28000,6430,330,3.6,0,0,16.0,77777,9,999999999,20,0.0500,0,88,0.450,0.0,1.0 +2003,2,23,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-13.9,-24.4,37,88800,668,1397,183,287,142,219,31200,14400,24200,5380,340,3.1,0,0,16.0,77777,9,999999999,20,0.0500,0,88,0.450,0.0,1.0 +2003,2,23,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-13.9,-25.0,35,88800,529,1397,183,371,632,132,38900,59800,16200,2570,350,3.1,0,0,16.0,77777,9,999999999,20,0.0500,0,88,0.450,0.0,1.0 +2003,2,23,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-14.4,-25.6,34,88700,342,1397,192,256,739,74,25900,60300,11100,1300,0,0.0,5,5,16.0,77777,9,999999999,20,0.0500,0,88,0.450,0.0,1.0 +2003,2,23,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-16.7,-24.4,48,88700,122,1397,186,0,0,0,0,0,0,0,350,2.1,6,5,16.0,77777,9,999999999,10,0.0500,0,88,0.450,0.0,1.0 +2003,2,23,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-16.7,-24.4,48,88800,0,81,175,0,0,0,0,0,0,0,270,1.5,0,0,16.0,77777,9,999999999,10,0.0500,0,88,0.450,0.0,1.0 +2003,2,23,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-17.8,-23.9,55,88800,0,0,176,0,0,0,0,0,0,0,230,2.6,1,1,16.0,77777,9,999999999,10,0.0500,0,88,0.450,0.0,1.0 +2003,2,23,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-18.9,-23.9,62,88700,0,0,175,0,0,0,0,0,0,0,190,1.5,2,2,16.0,77777,9,999999999,10,0.0500,0,88,0.450,0.0,1.0 +2003,2,23,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-21.1,-25.6,64,88600,0,0,166,0,0,0,0,0,0,0,270,2.1,1,1,16.0,77777,9,999999999,10,0.0500,0,88,0.450,0.0,1.0 +2003,2,23,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-21.1,-25.0,68,88800,0,0,163,0,0,0,0,0,0,0,220,2.1,0,0,16.0,77777,9,999999999,10,0.0500,0,88,0.450,0.0,1.0 +2003,2,23,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-22.2,-26.1,68,88600,0,0,167,0,0,0,0,0,0,0,290,2.1,3,3,16.0,77777,9,999999999,10,0.0500,0,88,0.450,0.0,1.0 +2003,2,24,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-21.7,-25.6,68,88600,0,0,164,0,0,0,0,0,0,0,0,0.0,1,1,16.0,77777,9,999999999,10,0.0510,0,88,0.450,0.0,1.0 +2003,2,24,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-23.3,-26.7,71,88500,0,0,162,0,0,0,0,0,0,0,0,0.0,2,2,16.0,77777,9,999999999,10,0.0510,0,88,0.450,0.0,1.0 +2003,2,24,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-22.8,-25.6,76,88500,0,0,159,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,10,0.0510,0,88,0.450,0.0,1.0 +2003,2,24,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-23.9,-26.7,76,88500,0,0,155,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,10,0.0510,0,88,0.450,0.0,1.0 +2003,2,24,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-23.9,-27.2,72,88800,0,0,160,0,0,0,0,0,0,0,0,0.0,2,2,16.0,77777,9,999999999,10,0.0510,0,88,0.450,0.0,1.0 +2003,2,24,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-24.4,-27.8,71,88500,0,0,153,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,10,0.0510,0,88,0.450,0.0,1.0 +2003,2,24,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-24.4,-27.2,75,88500,0,0,160,0,0,0,0,0,0,0,0,0.0,3,3,16.0,77777,9,999999999,10,0.0510,0,88,0.450,0.0,1.0 +2003,2,24,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-24.4,-27.8,71,88500,53,966,158,10,190,4,1700,11000,1000,150,0,0.0,2,2,16.0,77777,9,999999999,10,0.0510,0,88,0.450,0.0,1.0 +2003,2,24,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-23.9,-27.8,68,88500,267,1396,157,157,685,25,16600,55200,6000,650,0,0.0,1,1,16.0,77777,9,999999999,20,0.0510,0,88,0.450,0.0,1.0 +2003,2,24,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-21.7,-26.7,61,88600,469,1396,161,329,850,42,34700,78300,8300,1040,310,1.5,0,0,16.0,77777,9,999999999,20,0.0510,0,88,0.450,0.0,1.0 +2003,2,24,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-20.0,-26.1,55,88700,628,1396,165,452,863,63,47400,83100,9900,1400,90,2.1,0,0,16.0,77777,9,999999999,20,0.0510,0,88,0.450,0.0,1.0 +2003,2,24,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-17.8,-24.4,53,88700,733,1396,172,587,747,193,59600,72200,21600,3850,0,0.0,0,0,16.0,77777,9,999999999,20,0.0510,0,88,0.450,0.0,1.0 +2003,2,24,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-16.7,-23.3,53,88600,778,1396,176,313,96,259,34300,9700,28900,7960,90,2.6,0,0,16.0,77777,9,999999999,20,0.0510,0,88,0.450,0.0,1.0 +2003,2,24,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-15.6,-22.8,50,88600,758,1396,180,261,55,231,28700,5500,25700,7160,260,1.5,0,0,16.0,77777,9,999999999,20,0.0510,0,88,0.450,0.0,1.0 +2003,2,24,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-14.4,-22.2,48,88600,675,1396,184,526,718,178,55000,71400,20400,3740,0,0.0,0,0,16.0,77777,9,999999999,20,0.0510,0,88,0.450,0.0,1.0 +2003,2,24,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-12.8,-21.7,43,88600,535,1396,189,409,914,57,42900,86000,9800,1230,0,0.0,0,0,16.0,77777,9,999999999,20,0.0510,0,88,0.450,0.0,1.0 +2003,2,24,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-12.8,-21.1,46,88300,348,1396,199,242,749,54,24400,63100,8600,980,0,0.0,5,4,16.0,77777,9,999999999,20,0.0510,0,88,0.450,0.0,1.0 +2003,2,24,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-15.0,-21.1,56,88400,128,1396,192,0,0,0,0,0,0,0,270,4.6,5,4,16.0,77777,9,999999999,20,0.0510,0,88,0.450,0.0,1.0 +2003,2,24,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-16.1,-21.7,59,88400,1,105,179,0,0,0,0,0,0,0,270,2.1,0,0,16.0,77777,9,999999999,20,0.0510,0,88,0.450,0.0,1.0 +2003,2,24,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-17.8,-22.8,62,88300,0,0,174,0,0,0,0,0,0,0,280,3.1,0,0,16.0,77777,9,999999999,20,0.0510,0,88,0.450,0.0,1.0 +2003,2,24,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-17.2,-21.1,69,88400,0,0,177,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,20,0.0510,0,88,0.450,0.0,1.0 +2003,2,24,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-18.3,-21.7,72,88300,0,0,173,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,20,0.0510,0,88,0.450,0.0,1.0 +2003,2,24,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-18.9,-22.8,69,88300,0,0,174,0,0,0,0,0,0,0,280,1.5,1,1,16.0,77777,9,999999999,20,0.0510,0,88,0.450,0.0,1.0 +2003,2,24,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-19.4,-23.3,68,88300,0,0,175,0,0,0,0,0,0,0,250,1.5,2,2,16.0,77777,9,999999999,20,0.0510,0,88,0.450,0.0,1.0 +2003,2,25,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-19.4,-23.3,68,88200,0,0,175,0,0,0,0,0,0,0,250,1.5,3,2,16.0,77777,9,999999999,30,0.0510,0,88,0.450,0.0,1.0 +2003,2,25,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-20.0,-23.3,73,88200,0,0,173,0,0,0,0,0,0,0,0,0.0,2,2,16.0,77777,9,999999999,30,0.0510,0,88,0.450,0.0,1.0 +2003,2,25,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-20.6,-23.3,77,88100,0,0,166,0,0,0,0,0,0,0,270,1.5,0,0,16.0,77777,9,999999999,30,0.0510,0,88,0.450,0.0,1.0 +2003,2,25,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-21.1,-25.0,68,88100,0,0,166,0,0,0,0,0,0,0,290,1.5,1,1,16.0,77777,9,999999999,30,0.0510,0,88,0.450,0.0,1.0 +2003,2,25,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-21.1,-23.9,76,88300,0,0,170,0,0,0,0,0,0,0,0,0.0,2,2,16.0,77777,9,999999999,30,0.0510,0,88,0.450,0.0,1.0 +2003,2,25,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-21.7,-25.0,72,88100,0,0,167,0,0,0,0,0,0,0,0,0.0,2,2,16.0,77777,9,999999999,30,0.0510,0,88,0.450,0.0,1.0 +2003,2,25,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-21.7,-25.0,72,88100,0,0,165,0,0,0,0,0,0,0,0,0.0,1,1,16.0,77777,9,999999999,30,0.0510,0,88,0.450,0.0,1.0 +2003,2,25,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-21.7,-25.6,68,88100,58,1012,167,12,208,5,1900,12200,1200,170,100,1.5,2,2,16.0,77777,9,999999999,40,0.0510,0,88,0.450,0.0,1.0 +2003,2,25,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-19.4,-23.9,65,88200,274,1396,176,162,689,26,17200,56000,6200,670,0,0.0,3,3,16.0,77777,9,999999999,40,0.0510,0,88,0.450,0.0,1.0 +2003,2,25,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-18.3,-22.8,65,88200,476,1396,172,344,824,62,35600,75800,9600,1230,310,2.6,0,0,16.0,77777,9,999999999,40,0.0510,0,88,0.450,0.0,1.0 +2003,2,25,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-16.1,-22.2,56,88300,635,1396,179,448,799,83,46500,77200,11300,1700,0,0.0,0,0,16.0,77777,9,999999999,50,0.0510,0,88,0.450,0.0,1.0 +2003,2,25,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-14.4,-22.2,48,88300,741,1396,184,502,682,138,52200,67400,16300,2980,0,0.0,0,0,16.0,77777,9,999999999,50,0.0510,0,88,0.450,0.0,1.0 +2003,2,25,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-12.8,-20.6,48,88200,785,1396,189,415,288,253,44300,30300,27200,6160,0,0.0,0,0,16.0,77777,9,999999999,50,0.0510,0,88,0.450,0.0,1.0 +2003,2,25,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-10.6,-19.4,44,88200,765,1396,197,350,176,253,38000,18200,28000,6540,270,2.1,0,0,16.0,77777,9,999999999,50,0.0510,0,88,0.450,0.0,1.0 +2003,2,25,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-8.3,-17.8,42,88200,682,1396,205,519,718,167,52900,69100,19000,3270,50,2.1,0,0,16.0,77777,9,999999999,50,0.0510,0,88,0.450,0.0,1.0 +2003,2,25,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-8.3,-17.8,42,88200,542,1396,209,392,861,56,41100,81200,9500,1230,310,2.6,1,1,16.0,77777,9,999999999,50,0.0510,0,88,0.450,0.0,1.0 +2003,2,25,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-8.9,-16.1,52,87800,354,1396,217,270,817,61,26900,68700,9400,1030,310,2.6,5,5,16.0,77777,9,999999999,50,0.0510,0,88,0.450,0.0,1.0 +2003,2,25,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-10.6,-16.1,61,88100,134,1396,211,0,0,0,0,0,0,0,290,3.6,5,5,16.0,77777,9,999999999,50,0.0510,0,88,0.450,0.0,1.0 +2003,2,25,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-11.1,-16.7,60,88000,1,128,198,0,0,0,0,0,0,0,270,4.1,0,0,16.0,77777,9,999999999,50,0.0510,0,88,0.450,0.0,1.0 +2003,2,25,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-11.7,-16.7,63,88000,0,0,215,0,0,0,0,0,0,0,260,2.6,8,8,16.0,3048,9,999999999,50,0.0510,0,88,0.450,0.0,1.0 +2003,2,25,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-11.1,-16.7,60,88000,0,0,206,0,0,0,0,0,0,0,270,2.1,3,3,16.0,77777,9,999999999,50,0.0510,0,88,0.450,0.0,1.0 +2003,2,25,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-11.1,-15.6,66,88000,0,0,229,0,0,0,0,0,0,0,340,1.5,10,10,16.0,3048,9,999999999,50,0.0510,0,88,0.450,0.0,1.0 +2003,2,25,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-12.2,-16.1,70,87800,0,0,225,0,0,0,0,0,0,0,290,2.1,10,10,16.0,3048,9,999999999,60,0.0510,0,88,0.450,0.0,1.0 +2003,2,25,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-12.2,-16.7,66,87900,0,0,213,0,0,0,0,0,0,0,0,0.0,8,8,16.0,3048,9,999999999,50,0.0510,0,88,0.450,0.0,1.0 +2003,2,26,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-13.3,-16.7,73,87800,0,0,210,0,0,0,0,0,0,0,290,2.6,8,8,16.0,3048,9,999999999,50,0.0510,0,88,0.450,0.0,1.0 +2003,2,26,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-13.9,-17.2,74,87800,0,0,189,0,0,0,0,0,0,0,290,1.5,0,0,16.0,77777,9,999999999,50,0.0510,0,88,0.450,0.0,1.0 +2003,2,26,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-13.9,-17.2,74,87700,0,0,189,0,0,0,0,0,0,0,250,1.5,0,0,16.0,77777,9,999999999,50,0.0510,0,88,0.450,0.0,1.0 +2003,2,26,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-14.4,-17.8,73,87700,0,0,187,0,0,0,0,0,0,0,260,3.1,0,0,16.0,77777,9,999999999,50,0.0510,0,88,0.450,0.0,1.0 +2003,2,26,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-16.1,-18.9,77,87700,0,0,181,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,50,0.0510,0,88,0.450,0.0,1.0 +2003,2,26,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-14.4,-17.8,73,87700,0,0,191,0,0,0,0,0,0,0,0,0.0,1,1,16.0,77777,9,999999999,50,0.0510,0,88,0.450,0.0,1.0 +2003,2,26,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-16.7,-18.9,81,87600,0,0,180,0,0,0,0,0,0,0,0,0.0,0,0,14.4,77777,9,999999999,50,0.0510,0,88,0.450,0.0,1.0 +2003,2,26,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-16.1,-18.9,77,87600,63,1058,181,14,234,5,2200,13900,1300,180,0,0.0,0,0,14.4,77777,9,999999999,50,0.0510,0,88,0.450,0.0,1.0 +2003,2,26,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-14.4,-18.3,70,87700,282,1395,187,168,698,27,17900,57100,6300,690,0,0.0,0,0,14.4,77777,9,999999999,50,0.0510,0,88,0.450,0.0,1.0 +2003,2,26,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-12.8,-17.8,63,87700,484,1395,192,326,842,33,34700,78100,7500,930,0,0.0,0,0,16.0,77777,9,999999999,50,0.0510,0,88,0.450,0.0,1.0 +2003,2,26,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-11.7,-16.7,63,87700,643,1395,196,486,934,54,51200,90300,9400,1340,0,0.0,0,0,16.0,77777,9,999999999,50,0.0510,0,88,0.450,0.0,1.0 +2003,2,26,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-9.4,-16.1,54,87800,748,1395,203,565,855,105,58400,84000,13300,2180,0,0.0,0,0,16.0,77777,9,999999999,50,0.0510,0,88,0.450,0.0,1.0 +2003,2,26,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-7.2,-15.0,50,87800,792,1395,211,548,685,158,57000,68000,18300,3510,0,0.0,0,0,16.0,77777,9,999999999,50,0.0510,0,88,0.450,0.0,1.0 +2003,2,26,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-5.0,-14.4,43,87800,772,1395,219,458,389,242,48900,40900,26200,5810,0,0.0,0,0,16.0,77777,9,999999999,50,0.0510,0,88,0.450,0.0,1.0 +2003,2,26,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-4.4,-13.3,46,87800,688,1395,221,532,798,136,55000,77900,16400,2800,0,0.0,0,0,16.0,77777,9,999999999,50,0.0510,0,88,0.450,0.0,1.0 +2003,2,26,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.9,-13.3,44,87800,548,1395,223,413,674,148,42900,64300,17600,2930,0,0.0,0,0,16.0,77777,9,999999999,50,0.0510,0,88,0.450,0.0,1.0 +2003,2,26,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.9,-12.8,46,87300,360,1395,233,154,151,114,16500,13000,13100,2510,0,0.0,4,3,16.0,77777,9,999999999,50,0.0510,0,88,0.450,0.0,1.0 +2003,2,26,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-4.4,-12.2,50,87700,140,1395,222,88,0,88,9000,0,9000,1430,0,0.0,0,0,16.0,77777,9,999999999,50,0.0510,0,88,0.450,0.0,1.0 +2003,2,26,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-6.7,-11.7,64,87700,2,174,215,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,50,0.0510,0,88,0.450,0.0,1.0 +2003,2,26,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-7.2,-11.1,71,87700,0,0,214,0,0,0,0,0,0,0,240,1.5,0,0,16.0,77777,9,999999999,50,0.0510,0,88,0.450,0.0,1.0 +2003,2,26,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-7.2,-11.1,71,87600,0,0,214,0,0,0,0,0,0,0,250,1.5,0,0,14.4,77777,9,999999999,50,0.0510,0,88,0.450,0.0,1.0 +2003,2,26,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-7.2,-11.1,71,87700,0,0,214,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,50,0.0510,0,88,0.450,0.0,1.0 +2003,2,26,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-7.8,-11.1,75,87400,0,0,225,0,0,0,0,0,0,0,0,0.0,5,5,14.4,77777,9,999999999,50,0.0510,0,88,0.450,0.0,1.0 +2003,2,26,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-8.3,-11.1,78,87600,0,0,211,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,50,0.0510,0,88,0.450,0.0,1.0 +2003,2,27,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-8.9,-11.7,78,87600,0,0,208,0,0,0,0,0,0,0,260,1.5,0,0,12.8,77777,9,999999999,50,0.0520,0,88,0.450,0.0,1.0 +2003,2,27,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-8.9,-11.7,78,87600,0,0,208,0,0,0,0,0,0,0,0,0.0,0,0,12.8,77777,9,999999999,50,0.0520,0,88,0.450,0.0,1.0 +2003,2,27,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-10.0,-12.2,82,87500,0,0,204,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,50,0.0520,0,88,0.450,0.0,1.0 +2003,2,27,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-10.6,-13.3,78,87500,0,0,208,0,0,0,0,0,0,0,0,0.0,2,2,14.4,77777,9,999999999,50,0.0520,0,88,0.450,0.0,1.0 +2003,2,27,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-11.7,-13.9,82,87500,0,0,204,0,0,0,0,0,0,0,0,0.0,2,2,14.4,77777,9,999999999,40,0.0520,0,88,0.450,0.0,1.0 +2003,2,27,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-11.7,-13.9,82,87500,0,0,204,0,0,0,0,0,0,0,0,0.0,2,2,14.4,77777,9,999999999,40,0.0520,0,88,0.450,0.0,1.0 +2003,2,27,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-10.6,-13.3,78,87700,0,0,214,0,0,0,0,0,0,0,0,0.0,6,5,16.0,77777,9,999999999,40,0.0520,0,88,0.450,0.0,1.0 +2003,2,27,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-11.1,-13.3,82,87700,68,1081,220,5,0,5,600,0,600,200,170,2.1,9,8,11.2,77777,9,999999999,50,0.0520,0,88,0.450,0.0,1.0 +2003,2,27,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-10.0,-12.8,78,87800,289,1394,229,125,263,70,12900,20100,8800,1280,0,0.0,10,9,12.8,77777,9,999999999,50,0.0520,0,88,0.450,0.0,1.0 +2003,2,27,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-5.0,-10.0,65,88000,491,1394,250,241,334,123,25100,31000,14200,2370,280,3.1,10,9,16.0,77777,9,999999999,50,0.0520,0,88,0.450,0.0,1.0 +2003,2,27,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-4.4,-9.4,65,87800,650,1394,252,348,356,181,37200,36500,20200,3950,300,3.6,10,9,16.0,77777,9,999999999,50,0.0520,0,88,0.450,0.0,1.0 +2003,2,27,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.3,-9.4,59,88200,755,1394,256,468,564,162,50300,57200,19200,3520,300,3.1,9,9,14.4,77777,9,999999999,50,0.0520,0,88,0.450,0.0,1.0 +2003,2,27,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.0,-9.0,60,88200,799,1394,258,494,516,197,52300,52600,22100,4500,290,4.1,9,9,16.1,77777,9,999999999,50,0.0520,0,88,0.450,0.0,1.0 +2003,2,27,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.0,-9.0,60,88200,778,1394,249,477,523,184,50700,53200,20900,4120,340,3.6,7,7,16.1,77777,9,999999999,50,0.0520,0,88,0.450,0.0,1.0 +2003,2,27,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.2,-9.4,54,88200,695,1394,251,456,600,156,48600,60100,18500,3260,330,5.2,7,7,16.0,77777,9,999999999,50,0.0520,0,88,0.450,0.0,1.0 +2003,2,27,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.2,-8.9,56,88200,555,1394,249,420,827,90,43900,78500,12600,1780,320,5.7,6,6,16.0,77777,9,999999999,50,0.0520,0,88,0.450,0.0,1.0 +2003,2,27,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.8,-9.4,57,87800,367,1394,249,263,816,48,27100,70500,8500,950,280,3.6,8,7,16.0,77777,9,999999999,50,0.0520,0,88,0.450,0.0,1.0 +2003,2,27,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-4.4,-9.4,65,88200,146,1394,243,72,0,72,7500,0,7500,1590,280,3.1,7,7,14.4,77777,9,999999999,50,0.0520,0,88,0.450,0.0,1.0 +2003,2,27,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-5.0,-10.0,65,88200,2,198,234,0,0,0,0,0,0,0,260,3.1,4,4,16.0,77777,9,999999999,50,0.0520,0,88,0.450,0.0,1.0 +2003,2,27,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-6.1,-10.0,71,88200,0,0,219,0,0,0,0,0,0,0,250,3.1,0,0,16.0,77777,9,999999999,50,0.0520,0,88,0.450,0.0,1.0 +2003,2,27,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-5.6,-10.0,68,88100,0,0,254,0,0,0,0,0,0,0,240,2.6,10,10,16.0,2591,9,999999999,50,0.0520,0,88,0.450,0.0,1.0 +2003,2,27,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-8.9,-11.7,78,88000,0,0,208,0,0,0,0,0,0,0,0,0.0,0,0,14.4,77777,9,999999999,50,0.0520,0,88,0.450,0.0,1.0 +2003,2,27,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-9.4,-11.7,81,87800,0,0,207,0,0,0,0,0,0,0,0,0.0,0,0,11.2,77777,9,999999999,50,0.0520,0,88,0.450,0.0,1.0 +2003,2,27,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-10.6,-12.2,87,87900,0,0,203,0,0,0,0,0,0,0,0,0.0,0,0,11.2,77777,9,999999999,50,0.0520,0,88,0.450,0.0,1.0 +2003,2,28,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-10.0,-12.8,78,87900,0,0,204,0,0,0,0,0,0,0,0,0.0,0,0,11.2,77777,9,999999999,40,0.0520,0,88,0.450,0.0,1.0 +2003,2,28,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-10.0,-12.8,78,87900,0,0,204,0,0,0,0,0,0,0,0,0.0,0,0,11.2,77777,9,999999999,40,0.0520,0,88,0.450,0.0,1.0 +2003,2,28,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-12.2,-13.9,86,87700,0,0,196,0,0,0,0,0,0,0,0,0.0,0,0,9.6,77777,9,999999999,40,0.0520,0,88,0.450,0.0,1.0 +2003,2,28,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-12.2,-14.4,82,87700,0,0,215,0,0,0,0,0,0,0,0,0.0,8,8,9.6,1676,9,999999999,40,0.0520,0,88,0.450,0.0,1.0 +2003,2,28,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-10.6,-12.2,87,87700,0,0,234,0,0,0,0,0,0,0,0,0.0,10,10,11.2,1524,9,999999999,40,0.0520,0,88,0.450,0.0,1.0 +2003,2,28,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-10.6,-12.8,82,87700,0,0,233,0,0,0,0,0,0,0,0,0.0,10,10,9.6,1524,9,999999999,50,0.0520,0,88,0.450,0.0,1.0 +2003,2,28,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-10.0,-12.2,82,87700,0,0,236,0,0,0,0,0,0,0,0,0.0,10,10,9.6,1463,9,999999999,50,0.0520,0,88,0.450,0.0,1.0 +2003,2,28,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-9.4,-11.7,81,87800,74,1127,239,13,59,10,1600,2500,1400,170,0,0.0,10,10,8.0,1463,9,999999999,50,0.0520,0,88,0.450,0.0,1.0 +2003,2,28,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-9.4,-11.7,81,87700,297,1394,239,168,451,72,17500,34800,10000,1320,280,2.1,10,10,8.0,1524,9,999999999,50,0.0520,0,88,0.450,0.0,1.0 +2003,2,28,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-7.8,-11.1,75,87800,499,1394,245,174,79,146,19100,7500,16400,3970,30,1.5,10,10,8.0,1524,9,999999999,50,0.0520,0,88,0.450,0.0,1.0 +2003,2,28,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-6.1,-10.0,71,87600,658,1394,252,284,158,209,30900,16000,23300,5110,10,1.5,10,10,8.0,1494,9,999999999,50,0.0520,0,88,0.450,0.0,1.0 +2003,2,28,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.3,-10.0,56,87900,763,1394,263,543,695,161,56100,68500,18500,3460,40,1.5,10,10,11.2,1494,9,999999999,50,0.0520,0,88,0.450,0.0,1.0 +2003,2,28,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.1,-10.0,39,88000,806,1394,281,608,865,106,63500,85800,13700,2360,260,8.2,10,10,16.0,1494,9,999999999,50,0.0520,0,88,0.450,0.0,1.0 +2003,2,28,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.7,-10.6,36,87900,785,1394,269,565,857,81,59000,84300,11300,1770,260,7.2,8,8,16.0,1829,9,999999999,60,0.0520,0,88,0.450,0.0,1.0 +2003,2,28,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.7,-10.0,38,87900,702,1394,270,510,871,69,53300,84900,10400,1550,250,6.7,8,8,16.0,1829,9,999999999,60,0.0520,0,88,0.450,0.0,1.0 +2003,2,28,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.1,-9.4,41,87900,561,1394,281,426,832,90,43200,78100,11600,1620,260,7.2,10,10,16.0,1829,9,999999999,50,0.0520,0,88,0.450,0.0,1.0 +2003,2,28,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.1,-9.4,41,87400,373,1394,281,280,762,76,28600,64300,11400,1360,250,5.2,10,10,16.0,1829,9,999999999,50,0.0520,0,88,0.450,0.0,1.0 +2003,2,28,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.1,-9.4,41,87900,152,1394,281,0,0,0,0,0,0,0,260,5.2,10,10,16.0,1524,9,999999999,50,0.0520,0,88,0.450,0.0,1.0 +2003,2,28,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.0,-8.3,49,88000,3,244,278,0,0,0,0,0,0,0,260,4.6,10,10,16.0,2438,9,999999999,50,0.0520,0,88,0.450,0.0,1.0 +2003,2,28,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-0.6,-7.8,54,88000,0,0,276,0,0,0,0,0,0,0,290,3.6,10,10,16.0,2591,9,999999999,50,0.0520,0,88,0.450,0.0,1.0 +2003,2,28,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.1,-6.7,62,88000,0,0,275,0,0,0,0,0,0,0,300,2.6,10,10,16.0,1280,9,999999999,50,0.0520,0,88,0.450,0.0,1.0 +2003,2,28,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-0.8,-6.7,66,88100,0,0,276,0,0,0,0,0,0,0,230,3.0,10,10,6.4,549,9,999999999,50,0.0520,0,88,0.450,0.0,1.0 +2003,2,28,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-0.7,-6.7,83,87800,0,0,277,0,0,0,0,0,0,0,200,3.3,10,10,2.8,671,9,999999999,50,0.0520,0,88,0.450,0.0,1.0 +2003,2,28,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-0.5,-6.8,91,88100,0,0,278,0,0,0,0,0,0,0,260,3.7,10,10,4.0,853,9,999999999,50,0.0520,0,88,0.450,0.0,1.0 +1988,3,1,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-0.4,-6.9,53,88100,0,0,265,0,0,0,0,0,0,0,280,4.1,8,8,24.1,2130,9,999999999,80,0.0520,0,88,999.000,999.0,99.0 +1988,3,1,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-0.2,-7.0,52,88100,0,0,261,0,0,0,0,0,0,0,270,4.5,7,7,24.1,2440,9,999999999,69,0.0520,0,88,999.000,999.0,99.0 +1988,3,1,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-0.1,-7.0,62,88100,0,0,261,0,0,0,0,0,0,0,280,4.8,7,7,24.1,2440,9,999999999,80,0.0520,0,88,999.000,999.0,99.0 +1988,3,1,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,0.0,-7.2,59,88100,0,0,266,0,0,0,0,0,0,0,280,5.2,8,8,24.1,2290,9,999999999,69,0.0520,0,88,999.000,999.0,99.0 +1988,3,1,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,0.0,-7.8,56,88100,0,0,265,0,0,0,0,0,0,0,270,4.6,8,8,24.1,2440,9,999999999,69,0.0520,0,88,999.000,999.0,99.0 +1988,3,1,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,1.1,-7.8,52,88100,0,0,283,0,0,0,0,0,0,0,280,3.6,10,10,24.1,1520,9,999999999,69,0.0520,0,88,999.000,999.0,99.0 +1988,3,1,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,1.1,-8.9,48,88200,0,0,282,0,0,0,0,0,0,0,280,3.6,10,10,24.1,1520,9,999999999,69,0.0520,0,88,999.000,999.0,99.0 +1988,3,1,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.0,-4.4,72,88200,84,1195,274,17,7,16,1800,400,1800,410,330,6.2,10,9,32.2,1520,9,999999999,80,0.0480,0,88,999.000,999.0,99.0 +1988,3,1,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.0,-4.4,72,88300,309,1392,274,103,68,89,11400,5700,10100,2210,300,4.6,10,9,32.2,1520,9,999999999,80,0.0480,0,88,999.000,999.0,99.0 +1988,3,1,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.0,-2.2,85,88300,511,1392,277,146,2,145,16400,100,16300,5340,270,3.1,10,9,24.1,1520,9,999999999,100,0.0480,0,88,999.000,999.0,99.0 +1988,3,1,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.0,-1.7,89,88300,670,1392,277,239,127,178,26300,13000,20100,4380,330,4.6,10,9,16.1,1520,9,999999999,100,0.0480,0,88,999.000,999.0,99.0 +1988,3,1,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,-2.2,76,88300,774,1392,284,269,50,241,29600,5000,26700,7520,340,3.1,10,9,16.1,1520,9,999999999,100,0.0480,0,88,999.000,999.0,99.0 +1988,3,1,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,-3.3,67,88200,818,1392,278,326,250,179,35900,26600,20300,4170,320,2.6,8,8,24.1,1520,9,999999999,89,0.0480,0,88,999.000,999.0,99.0 +1988,3,1,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,-2.8,65,88200,797,1392,283,384,285,221,41600,30200,24300,5270,350,3.6,8,8,32.2,1520,9,999999999,89,0.0480,0,88,999.000,999.0,99.0 +1988,3,1,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,-2.8,60,88200,713,1392,280,345,328,177,37500,34200,19900,3910,290,3.1,7,6,48.3,2130,9,999999999,89,0.0480,0,88,999.000,999.0,99.0 +1988,3,1,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,-3.9,57,88200,571,1392,291,212,134,157,23200,13300,17700,3700,280,4.1,10,9,48.3,1070,9,999999999,89,0.0480,0,88,999.000,999.0,99.0 +1988,3,1,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,-3.9,55,88200,383,1392,293,132,40,121,14400,3600,13500,3040,340,2.6,10,9,48.3,1370,9,999999999,89,0.0480,0,88,999.000,999.0,99.0 +1988,3,1,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,-3.9,60,88200,162,1392,288,34,18,32,3700,1200,3600,800,0,0.0,10,9,48.3,1220,9,999999999,89,0.0480,0,88,999.000,999.0,99.0 +1988,3,1,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,-3.9,62,88300,5,290,273,5,3,4,0,0,0,0,0,0.0,8,6,32.2,1520,9,999999999,89,0.0480,0,88,999.000,999.0,99.0 +1988,3,1,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,1.1,-3.9,70,88300,0,0,264,0,0,0,0,0,0,0,250,1.5,8,5,24.1,2130,9,999999999,89,0.0480,0,88,999.000,999.0,99.0 +1988,3,1,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,0.0,-3.9,75,88400,0,0,256,0,0,0,0,0,0,0,250,2.6,6,3,24.1,77777,9,999999999,89,0.0480,0,88,999.000,999.0,99.0 +1988,3,1,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-1.1,-4.4,78,88400,0,0,251,0,0,0,0,0,0,0,270,3.1,4,3,24.1,77777,9,999999999,80,0.0480,0,88,999.000,999.0,99.0 +1988,3,1,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-0.6,-3.9,79,88400,0,0,253,0,0,0,0,0,0,0,250,3.1,4,3,24.1,77777,9,999999999,89,0.0480,0,88,999.000,999.0,99.0 +1988,3,1,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-2.2,-3.9,89,88400,0,0,249,0,0,0,0,0,0,0,280,3.1,5,4,24.1,77777,9,999999999,89,0.0480,0,88,999.000,999.0,99.0 +1988,3,2,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-1.7,-3.9,85,88400,0,0,258,0,0,0,0,0,0,0,220,2.1,8,7,24.1,2290,9,999999999,89,0.0480,0,88,999.000,999.0,99.0 +1988,3,2,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-1.7,-3.9,85,88400,0,0,262,0,0,0,0,0,0,0,0,0.0,9,8,24.1,2290,9,999999999,89,0.0480,0,88,999.000,999.0,99.0 +1988,3,2,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-3.9,-5.0,92,88400,0,0,240,0,0,0,0,0,0,0,0,0.0,3,3,24.1,77777,9,999999999,80,0.0480,0,88,999.000,999.0,99.0 +1988,3,2,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-5.6,-6.1,96,88400,0,0,233,0,0,0,0,0,0,0,180,1.5,3,3,24.1,77777,9,999999999,80,0.0480,0,88,999.000,999.0,99.0 +1988,3,2,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-3.3,-4.4,92,88400,0,0,247,0,0,0,0,0,0,0,0,0.0,6,5,24.1,2440,9,999999999,80,0.0480,0,88,999.000,999.0,99.0 +1988,3,2,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-3.9,-4.4,96,88400,0,0,250,0,0,0,0,0,0,0,0,0.0,8,7,24.1,2440,9,999999999,80,0.0480,0,88,999.000,999.0,99.0 +1988,3,2,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-3.3,-3.9,96,88300,0,0,262,0,0,0,0,0,0,0,0,0.0,10,9,32.2,2290,9,999999999,89,0.0480,0,88,999.000,999.0,99.0 +1988,3,2,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-3.3,-3.9,96,88400,90,1241,256,30,30,27,3200,1400,3100,560,0,0.0,9,8,48.3,2440,9,999999999,89,0.0210,0,88,999.000,999.0,99.0 +1988,3,2,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-0.6,-3.9,79,88300,316,1392,272,86,42,76,9400,3500,8600,1970,0,0.0,10,9,48.3,1520,9,999999999,89,0.0210,0,88,999.000,999.0,99.0 +1988,3,2,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.0,-3.3,79,88300,518,1392,275,155,67,131,17100,6400,14800,3710,0,0.0,10,9,48.3,1070,9,999999999,89,0.0210,0,88,999.000,999.0,99.0 +1988,3,2,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.1,-3.3,73,88300,677,1392,270,275,128,213,30000,13100,23600,5260,0,0.0,9,7,48.3,2290,9,999999999,89,0.0210,0,88,999.000,999.0,99.0 +1988,3,2,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,-2.8,62,88300,782,1392,274,426,464,166,46000,47300,19300,3690,0,0.0,7,4,48.3,2740,9,999999999,89,0.0210,0,88,999.000,999.0,99.0 +1988,3,2,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,-2.2,54,88200,825,1392,283,578,866,66,60900,85700,10000,1710,0,0.0,3,3,48.3,77777,9,999999999,100,0.0210,0,88,999.000,999.0,99.0 +1988,3,2,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,-1.7,50,88100,803,1392,287,555,747,125,59100,75100,15500,2920,30,2.1,2,2,48.3,77777,9,999999999,100,0.0210,0,88,999.000,999.0,99.0 +1988,3,2,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,-1.7,48,88100,719,1392,295,449,627,126,47200,62000,15100,2710,0,0.0,4,4,64.4,77777,9,999999999,100,0.0210,0,88,999.000,999.0,99.0 +1988,3,2,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,-2.2,44,88000,578,1392,291,352,673,73,36800,64300,10000,1490,0,0.0,2,2,64.4,77777,9,999999999,100,0.0210,0,88,999.000,999.0,99.0 +1988,3,2,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,-2.8,40,88000,389,1392,296,217,498,78,22300,42700,10300,1410,250,5.7,3,2,64.4,77777,9,999999999,89,0.0210,0,88,999.000,999.0,99.0 +1988,3,2,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,-3.3,42,87900,168,1392,288,71,353,29,7400,21800,4700,530,270,3.1,5,2,64.4,77777,9,999999999,89,0.0210,0,88,999.000,999.0,99.0 +1988,3,2,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,-2.2,56,87900,6,336,274,10,49,4,0,0,0,0,250,3.1,1,1,32.2,77777,9,999999999,100,0.0210,0,88,999.000,999.0,99.0 +1988,3,2,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,2.2,-2.2,73,87900,0,0,259,0,0,0,0,0,0,0,290,2.6,2,1,24.1,77777,9,999999999,100,0.0210,0,88,999.000,999.0,99.0 +1988,3,2,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,1.7,-2.8,73,87900,0,0,260,0,0,0,0,0,0,0,60,2.1,7,2,24.1,77777,9,999999999,89,0.0210,0,88,999.000,999.0,99.0 +1988,3,2,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,1.1,-2.8,76,87900,0,0,265,0,0,0,0,0,0,0,0,0.0,10,5,24.1,77777,9,999999999,89,0.0210,0,88,999.000,999.0,99.0 +1988,3,2,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,0.6,-2.8,79,87900,0,0,263,0,0,0,0,0,0,0,0,0.0,10,5,24.1,77777,9,999999999,89,0.0210,0,88,999.000,999.0,99.0 +1988,3,2,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,0.6,-2.8,79,87800,0,0,268,0,0,0,0,0,0,0,0,0.0,10,7,24.1,7620,9,999999999,89,0.0210,0,88,999.000,999.0,99.0 +1988,3,3,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-0.6,-2.8,85,87700,0,0,264,0,0,0,0,0,0,0,0,0.0,8,7,24.1,7620,9,999999999,89,0.0210,0,88,999.000,999.0,99.0 +1988,3,3,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-0.6,-2.2,89,87700,0,0,264,0,0,0,0,0,0,0,280,2.1,8,7,24.1,3660,9,999999999,100,0.0210,0,88,999.000,999.0,99.0 +1988,3,3,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-1.1,-2.8,89,87600,0,0,262,0,0,0,0,0,0,0,0,0.0,9,7,24.1,3660,9,999999999,89,0.0210,0,88,999.000,999.0,99.0 +1988,3,3,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-1.1,-2.2,92,87500,0,0,266,0,0,0,0,0,0,0,0,0.0,10,8,24.1,3660,9,999999999,89,0.0210,0,88,999.000,999.0,99.0 +1988,3,3,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-0.6,-2.2,89,87400,0,0,274,0,0,0,0,0,0,0,270,2.1,10,9,24.1,2740,9,999999999,100,0.0210,0,88,999.000,999.0,99.0 +1988,3,3,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-0.6,-1.7,92,87400,0,0,282,0,0,0,0,0,0,0,0,0.0,10,10,24.1,1830,9,999999999,100,0.0210,0,88,999.000,999.0,99.0 +1988,3,3,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,0.0,-1.7,89,87300,0,0,285,0,0,0,0,0,0,0,0,0.0,10,10,32.2,1830,9,999999999,100,0.0210,0,88,999.000,999.0,99.0 +1988,3,3,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.0,-1.7,89,87300,97,1287,271,30,19,28,3200,1100,3100,660,0,0.0,10,8,48.3,1830,9,999999999,100,0.0260,0,88,999.000,999.0,99.0 +1988,3,3,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,-1.1,79,87300,324,1391,287,115,38,106,12600,3300,11800,2560,300,2.6,10,9,32.2,1830,9,999999999,100,0.0260,0,88,999.000,999.0,99.0 +1988,3,3,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,-1.1,70,87300,526,1391,288,231,52,211,25200,5000,23300,5330,0,0.0,10,8,48.3,2130,9,999999999,100,0.0260,0,88,999.000,999.0,99.0 +1988,3,3,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,-0.6,70,87300,685,1391,297,317,127,254,34700,12700,28400,7200,30,2.6,10,9,16.1,980,9,999999999,100,0.0260,0,88,999.000,999.0,99.0 +1988,3,3,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,-0.6,68,87200,789,1391,308,249,154,162,28000,16200,18800,4250,130,3.1,10,10,32.2,1520,9,999999999,110,0.0260,0,88,999.000,999.0,99.0 +1988,3,3,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,0.6,76,87300,832,1391,306,120,7,115,14500,500,14200,5600,290,4.1,10,10,9.7,1070,9,999999999,110,0.0260,0,88,999.000,999.0,99.0 +1988,3,3,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,0.0,70,87300,810,1391,300,277,125,204,30700,13100,23000,5430,330,2.1,10,9,32.2,1370,9,999999999,110,0.0260,0,88,999.000,999.0,99.0 +1988,3,3,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,-1.1,68,87400,726,1391,282,396,441,167,42300,44500,19000,3580,260,4.6,6,6,48.3,1520,9,999999999,100,0.0260,0,88,999.000,999.0,99.0 +1988,3,3,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,-7.2,40,87500,584,1391,274,399,782,71,41900,74900,10300,1480,280,10.3,3,3,48.3,77777,9,999999999,69,0.0260,0,88,999.000,999.0,99.0 +1988,3,3,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,-9.4,38,87500,395,1391,265,275,759,60,28100,66300,9100,1100,290,8.8,3,3,64.4,77777,9,999999999,60,0.0260,0,88,999.000,999.0,99.0 +1988,3,3,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,-7.2,50,87600,174,1391,265,74,292,38,7500,18000,5300,660,270,7.7,5,5,64.4,77777,9,999999999,69,0.0260,0,88,999.000,999.0,99.0 +1988,3,3,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,-6.7,52,87700,7,359,275,6,4,5,0,0,0,0,280,7.7,9,8,32.2,2130,9,999999999,69,0.0260,0,88,999.000,999.0,99.0 +1988,3,3,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,2.2,-6.1,55,87700,0,0,282,0,0,0,0,0,0,0,290,6.2,9,9,24.1,2130,9,999999999,80,0.0260,0,88,999.000,999.0,99.0 +1988,3,3,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,1.7,-6.1,57,87800,0,0,269,0,0,0,0,0,0,0,270,7.7,8,7,24.1,2130,9,999999999,80,0.0260,0,88,999.000,999.0,99.0 +1988,3,3,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,1.7,-6.7,54,87900,0,0,269,0,0,0,0,0,0,0,280,7.2,8,7,24.1,2130,9,999999999,69,0.0260,0,88,999.000,999.0,99.0 +1988,3,3,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,2.2,-6.1,55,88000,0,0,276,0,0,0,0,0,0,0,280,7.2,9,8,24.1,2130,9,999999999,80,0.0260,0,88,999.000,999.0,99.0 +1988,3,3,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,2.2,-6.7,52,88000,0,0,268,0,0,0,0,0,0,0,280,10.3,8,6,24.1,2590,9,999999999,69,0.0260,0,88,999.000,999.0,99.0 +1988,3,4,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,1.7,-7.2,52,88000,0,0,265,0,0,0,0,0,0,0,300,7.2,7,6,24.1,2900,9,999999999,69,0.0260,0,88,999.000,999.0,99.0 +1988,3,4,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,1.1,-6.7,57,88100,0,0,254,0,0,0,0,0,0,0,270,6.7,2,2,24.1,77777,9,999999999,69,0.0260,0,88,999.000,999.0,99.0 +1988,3,4,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,1.1,-7.2,54,88100,0,0,251,0,0,0,0,0,0,0,280,6.2,1,1,24.1,77777,9,999999999,69,0.0260,0,88,999.000,999.0,99.0 +1988,3,4,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,0.6,-7.2,56,88200,0,0,249,0,0,0,0,0,0,0,280,2.6,1,1,24.1,77777,9,999999999,69,0.0260,0,88,999.000,999.0,99.0 +1988,3,4,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-1.1,-7.2,64,88200,0,0,243,0,0,0,0,0,0,0,280,2.6,1,1,24.1,77777,9,999999999,69,0.0260,0,88,999.000,999.0,99.0 +1988,3,4,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-1.7,-7.2,66,88300,0,0,244,0,0,0,0,0,0,0,0,0.0,2,2,24.1,77777,9,999999999,69,0.0260,0,88,999.000,999.0,99.0 +1988,3,4,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-1.7,-6.1,72,88300,0,0,242,0,0,0,0,0,0,0,170,2.1,1,1,64.4,77777,9,999999999,80,0.0260,0,88,999.000,999.0,99.0 +1988,3,4,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.7,-6.7,69,88400,104,1332,241,46,307,18,4400,17700,2900,350,180,1.5,1,1,64.4,77777,9,999999999,69,0.0420,0,88,999.000,999.0,99.0 +1988,3,4,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,-6.1,52,88400,332,1390,253,187,652,33,20000,55700,6700,800,260,4.1,0,0,64.4,77777,9,999999999,80,0.0420,0,88,999.000,999.0,99.0 +1988,3,4,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,-7.2,43,88400,533,1390,258,358,823,44,38200,77600,8300,1130,250,6.2,0,0,64.4,77777,9,999999999,69,0.0420,0,88,999.000,999.0,99.0 +1988,3,4,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,-7.8,37,88400,692,1390,264,501,902,54,53200,88000,9200,1390,290,7.2,0,0,64.4,77777,9,999999999,69,0.0420,0,88,999.000,999.0,99.0 +1988,3,4,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,-7.8,34,88400,796,1390,268,602,948,60,63600,93600,9800,1590,300,5.2,0,0,64.4,77777,9,999999999,69,0.0420,0,88,999.000,999.0,99.0 +1988,3,4,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,-7.8,33,88300,839,1390,270,635,936,71,66800,92700,10600,1790,280,6.7,2,0,64.4,77777,9,999999999,69,0.0420,0,88,999.000,999.0,99.0 +1988,3,4,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,-8.3,29,88200,817,1390,274,618,912,82,64600,90000,11500,1840,280,5.2,4,0,64.4,77777,9,999999999,69,0.0420,0,88,999.000,999.0,99.0 +1988,3,4,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,-8.9,27,88200,732,1390,275,538,881,75,56500,86200,10900,1640,280,5.2,4,0,64.4,77777,9,999999999,69,0.0420,0,88,999.000,999.0,99.0 +1988,3,4,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,-8.3,27,88200,591,1390,278,413,790,78,43000,75600,10800,1570,130,2.1,7,0,64.4,77777,9,999999999,69,0.0420,0,88,999.000,999.0,99.0 +1988,3,4,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,-8.3,27,88100,402,1390,278,251,672,57,25700,59200,8600,1080,0,0.0,7,0,64.4,77777,9,999999999,69,0.0420,0,88,999.000,999.0,99.0 +1988,3,4,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,-7.2,37,88100,179,1390,272,76,264,42,7900,15800,5900,760,220,2.1,8,1,64.4,77777,9,999999999,69,0.0420,0,88,999.000,999.0,99.0 +1988,3,4,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,-7.8,35,88100,9,405,282,5,3,5,0,0,0,0,240,1.5,8,5,24.1,7620,9,999999999,69,0.0420,0,88,999.000,999.0,99.0 +1988,3,4,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,5.0,-7.2,41,88200,0,0,276,0,0,0,0,0,0,0,210,2.6,8,5,24.1,7620,9,999999999,69,0.0420,0,88,999.000,999.0,99.0 +1988,3,4,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,5.6,-7.8,38,88200,0,0,280,0,0,0,0,0,0,0,220,2.1,8,6,24.1,3660,9,999999999,69,0.0420,0,88,999.000,999.0,99.0 +1988,3,4,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,2.8,-7.2,48,88200,0,0,265,0,0,0,0,0,0,0,0,0.0,8,4,24.1,77777,9,999999999,69,0.0420,0,88,999.000,999.0,99.0 +1988,3,4,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,2.2,-7.2,50,88200,0,0,267,0,0,0,0,0,0,0,0,0.0,10,6,24.1,7620,9,999999999,69,0.0420,0,88,999.000,999.0,99.0 +1988,3,4,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,0.6,-5.6,64,88200,0,0,270,0,0,0,0,0,0,0,0,0.0,10,8,24.1,7620,9,999999999,80,0.0420,0,88,999.000,999.0,99.0 +1988,3,5,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,0.6,-5.0,67,88200,0,0,263,0,0,0,0,0,0,0,270,1.5,10,6,24.1,7620,9,999999999,80,0.0420,0,88,999.000,999.0,99.0 +1988,3,5,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,1.1,-5.6,62,88100,0,0,267,0,0,0,0,0,0,0,0,0.0,10,7,24.1,7620,9,999999999,80,0.0420,0,88,999.000,999.0,99.0 +1988,3,5,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,1.1,-5.6,62,88100,0,0,264,0,0,0,0,0,0,0,0,0.0,10,6,24.1,7620,9,999999999,80,0.0420,0,88,999.000,999.0,99.0 +1988,3,5,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-1.1,-5.6,72,88100,0,0,250,0,0,0,0,0,0,0,250,2.1,7,3,24.1,77777,9,999999999,80,0.0420,0,88,999.000,999.0,99.0 +1988,3,5,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-0.6,-5.6,69,88100,0,0,265,0,0,0,0,0,0,0,0,0.0,10,8,24.1,7620,9,999999999,80,0.0420,0,88,999.000,999.0,99.0 +1988,3,5,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,0.6,-5.0,67,88200,0,0,276,0,0,0,0,0,0,0,150,3.6,10,9,24.1,7620,9,999999999,80,0.0420,0,88,999.000,999.0,99.0 +1988,3,5,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,1.1,-5.0,64,88200,0,0,278,0,0,0,0,0,0,0,190,1.5,10,9,48.3,3050,9,999999999,80,0.0420,0,88,999.000,999.0,99.0 +1988,3,5,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,-2.2,76,88300,111,1378,270,25,33,22,2800,1700,2600,460,200,2.1,7,6,64.4,1980,9,999999999,100,0.0290,0,88,999.000,999.0,99.0 +1988,3,5,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,0.0,61,88300,339,1389,290,111,101,86,12100,8600,10000,1880,260,3.1,4,4,64.4,77777,9,999999999,110,0.0290,0,88,999.000,999.0,99.0 +1988,3,5,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,-1.1,54,88300,541,1389,289,299,525,96,31300,49400,11900,1870,270,7.7,3,3,64.4,77777,9,999999999,100,0.0290,0,88,999.000,999.0,99.0 +1988,3,5,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,-1.7,50,88300,699,1389,293,457,765,73,49000,75600,10800,1670,250,5.2,6,4,64.4,6100,9,999999999,100,0.0290,0,88,999.000,999.0,99.0 +1988,3,5,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,-2.2,44,88300,803,1389,294,538,718,124,57300,72300,15400,2900,290,4.1,7,3,64.4,77777,9,999999999,100,0.0290,0,88,999.000,999.0,99.0 +1988,3,5,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,-4.4,32,88300,846,1389,295,594,878,61,62800,87100,9600,1670,300,7.2,4,1,64.4,77777,9,999999999,80,0.0290,0,88,999.000,999.0,99.0 +1988,3,5,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,-6.7,27,88100,824,1389,292,573,895,44,61200,88800,8400,1330,300,7.7,2,1,64.4,77777,9,999999999,69,0.0290,0,88,999.000,999.0,99.0 +1988,3,5,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,-8.3,24,88100,739,1389,290,544,930,50,57700,91400,9000,1380,270,6.7,2,1,64.4,77777,9,999999999,69,0.0290,0,88,999.000,999.0,99.0 +1988,3,5,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,-7.2,24,88000,597,1389,300,365,588,113,37900,56300,13700,2230,280,7.2,7,2,64.4,77777,9,999999999,69,0.0290,0,88,999.000,999.0,99.0 +1988,3,5,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,-6.7,27,88000,408,1389,301,217,446,87,23100,39200,11500,1600,290,6.2,10,4,64.4,77777,9,999999999,69,0.0290,0,88,999.000,999.0,99.0 +1988,3,5,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,-6.7,31,88000,185,1389,297,67,93,54,7200,6000,6400,1140,280,6.7,10,5,64.4,77777,9,999999999,80,0.0290,0,88,999.000,999.0,99.0 +1988,3,5,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,-6.1,37,88000,10,428,291,11,8,10,0,0,0,0,270,4.6,10,6,48.3,7620,9,999999999,80,0.0290,0,88,999.000,999.0,99.0 +1988,3,5,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,5.6,-6.7,41,88000,0,0,284,0,0,0,0,0,0,0,260,4.6,10,7,24.1,7620,9,999999999,69,0.0290,0,88,999.000,999.0,99.0 +1988,3,5,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,4.4,-5.6,49,87900,0,0,271,0,0,0,0,0,0,0,260,3.6,7,3,24.1,77777,9,999999999,80,0.0290,0,88,999.000,999.0,99.0 +1988,3,5,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,2.2,-5.6,57,87900,0,0,266,0,0,0,0,0,0,0,0,0.0,8,5,24.1,7620,9,999999999,80,0.0290,0,88,999.000,999.0,99.0 +1988,3,5,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,1.1,-5.0,64,87800,0,0,268,0,0,0,0,0,0,0,210,3.1,10,7,24.1,7620,9,999999999,80,0.0290,0,88,999.000,999.0,99.0 +1988,3,5,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,0.0,-5.0,69,87800,0,0,264,0,0,0,0,0,0,0,0,0.0,10,7,24.1,7620,9,999999999,80,0.0290,0,88,999.000,999.0,99.0 +1988,3,6,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-1.1,-4.4,78,87700,0,0,260,0,0,0,0,0,0,0,180,1.5,10,7,24.1,7620,9,999999999,80,0.0290,0,88,999.000,999.0,99.0 +1988,3,6,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-1.1,-5.0,75,87600,0,0,269,0,0,0,0,0,0,0,0,0.0,10,9,24.1,7620,9,999999999,80,0.0290,0,88,999.000,999.0,99.0 +1988,3,6,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-0.6,-3.9,79,87500,0,0,280,0,0,0,0,0,0,0,0,0.0,10,10,24.1,2130,9,999999999,89,0.0290,0,88,999.000,999.0,99.0 +1988,3,6,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,0.0,-3.3,79,87400,0,0,270,0,0,0,0,0,0,0,290,2.1,10,8,24.1,2740,9,999999999,89,0.0290,0,88,999.000,999.0,99.0 +1988,3,6,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,0.0,-2.8,82,87300,0,0,284,0,0,0,0,0,0,0,0,0.0,10,10,24.1,1830,9,999999999,89,0.0290,0,88,999.000,999.0,99.0 +1988,3,6,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-0.6,-3.3,82,87200,0,0,281,0,0,0,0,0,0,0,0,0.0,10,10,24.1,1680,9,999999999,89,0.0290,0,88,999.000,999.0,99.0 +1988,3,6,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,0.0,-3.3,79,87200,0,35,275,0,0,0,0,0,0,0,0,0.0,10,9,24.1,1520,9,999999999,89,0.0290,0,88,999.000,999.0,99.0 +1988,3,6,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,-1.1,79,87200,118,1389,295,12,1,12,1400,0,1400,460,270,3.6,10,10,32.2,1370,9,999999999,100,0.0260,0,88,999.000,999.0,99.0 +1988,3,6,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,2.2,89,87200,347,1389,306,79,3,78,8900,100,8900,2870,130,1.5,10,10,40.2,2440,9,999999999,120,0.0260,0,88,999.000,999.0,99.0 +1988,3,6,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,1.7,74,87100,549,1389,315,137,1,137,15600,100,15600,5350,0,0.0,10,10,40.2,2440,9,999999999,120,0.0260,0,88,999.000,999.0,99.0 +1988,3,6,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,-0.6,54,87000,707,1389,322,220,6,217,24900,500,24700,8470,250,2.6,10,10,48.3,3050,9,999999999,100,0.0260,0,88,999.000,999.0,99.0 +1988,3,6,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,0.6,79,87200,811,1389,304,222,3,220,25500,300,25400,9300,270,12.9,10,10,24.1,1370,9,999999999,110,0.0260,0,88,999.000,999.0,99.0 +1988,3,6,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,-6.1,50,87300,853,1389,294,295,2,293,33400,200,33200,11580,280,10.3,10,10,32.2,2740,9,999999999,80,0.0260,0,88,999.000,999.0,99.0 +1988,3,6,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,-8.3,44,87400,831,1389,290,265,7,261,30200,600,29900,10590,270,7.7,10,10,40.2,3660,9,999999999,69,0.0260,0,88,999.000,999.0,99.0 +1988,3,6,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,-8.3,44,87500,745,1389,290,236,3,234,26700,300,26600,9200,290,9.3,10,10,64.4,3660,9,999999999,69,0.0260,0,88,999.000,999.0,99.0 +1988,3,6,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,-6.7,50,87500,603,1389,283,248,79,214,27200,7800,23800,5870,280,8.8,10,9,48.3,3660,9,999999999,69,0.0260,0,88,999.000,999.0,99.0 +1988,3,6,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,-6.7,47,87500,414,1389,282,143,109,111,15700,9900,12700,2480,290,9.3,9,8,64.4,3660,9,999999999,69,0.0260,0,88,999.000,999.0,99.0 +1988,3,6,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,-9.4,39,87500,191,1389,272,54,75,44,6000,4900,5300,930,320,6.7,8,7,64.4,7620,9,999999999,60,0.0260,0,88,999.000,999.0,99.0 +1988,3,6,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.1,-8.9,48,87600,12,451,259,11,27,8,0,0,0,0,310,4.6,5,5,48.3,77777,9,999999999,69,0.0260,0,88,999.000,999.0,99.0 +1988,3,6,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,1.1,-8.3,50,87700,0,0,257,0,0,0,0,0,0,0,290,8.2,4,4,24.1,77777,9,999999999,69,0.0260,0,88,999.000,999.0,99.0 +1988,3,6,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,0.6,-7.8,54,87800,0,0,254,0,0,0,0,0,0,0,280,6.2,3,3,24.1,77777,9,999999999,69,0.0260,0,88,999.000,999.0,99.0 +1988,3,6,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,0.0,-7.2,59,87900,0,0,250,0,0,0,0,0,0,0,280,4.6,2,2,24.1,77777,9,999999999,69,0.0260,0,88,999.000,999.0,99.0 +1988,3,6,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,0.0,-7.2,59,88000,0,0,254,0,0,0,0,0,0,0,260,2.6,4,4,24.1,77777,9,999999999,69,0.0260,0,88,999.000,999.0,99.0 +1988,3,6,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,0.6,-7.2,56,88000,0,0,255,0,0,0,0,0,0,0,260,1.5,6,3,24.1,77777,9,999999999,69,0.0260,0,88,999.000,999.0,99.0 +1988,3,7,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,0.6,-7.2,56,88100,0,0,252,0,0,0,0,0,0,0,0,0.0,3,2,24.1,77777,9,999999999,69,0.0260,0,88,999.000,999.0,99.0 +1988,3,7,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,0.0,-6.7,61,88200,0,0,259,0,0,0,0,0,0,0,290,3.1,7,6,24.1,2440,9,999999999,69,0.0260,0,88,999.000,999.0,99.0 +1988,3,7,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,0.6,-6.7,59,88200,0,0,274,0,0,0,0,0,0,0,280,3.6,9,9,24.1,2130,9,999999999,69,0.0260,0,88,999.000,999.0,99.0 +1988,3,7,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,0.6,-6.7,59,88300,0,0,274,0,0,0,0,0,0,0,290,3.6,9,9,24.1,2290,9,999999999,69,0.0260,0,88,999.000,999.0,99.0 +1988,3,7,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,1.1,-6.7,57,88300,0,0,276,0,0,0,0,0,0,0,270,5.7,9,9,24.1,2290,9,999999999,80,0.0260,0,88,999.000,999.0,99.0 +1988,3,7,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,0.0,-6.7,61,88400,0,0,266,0,0,0,0,0,0,0,280,3.1,9,8,24.1,2440,9,999999999,69,0.0260,0,88,999.000,999.0,99.0 +1988,3,7,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-0.6,-6.7,64,88500,0,81,255,0,0,0,0,0,0,0,360,1.5,7,5,64.4,2440,9,999999999,69,0.0260,0,88,999.000,999.0,99.0 +1988,3,7,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.0,-6.7,61,88500,126,1388,247,51,358,19,5200,21500,3300,370,290,4.1,1,1,64.4,77777,9,999999999,69,0.0410,0,88,999.000,999.0,99.0 +1988,3,7,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,-5.0,57,88600,355,1388,254,217,725,34,23300,63000,7100,840,280,5.2,0,0,64.4,77777,9,999999999,80,0.0410,0,88,999.000,999.0,99.0 +1988,3,7,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,-5.0,53,88600,556,1388,269,334,602,94,35000,57200,12000,1860,260,6.7,3,3,64.4,77777,9,999999999,80,0.0410,0,88,999.000,999.0,99.0 +1988,3,7,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,-6.1,47,88700,714,1388,274,436,616,120,46000,61000,14500,2590,290,8.2,5,5,64.4,77777,9,999999999,80,0.0410,0,88,999.000,999.0,99.0 +1988,3,7,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,-6.7,41,88600,818,1388,279,469,551,145,49400,55200,16800,3380,280,7.7,5,5,64.4,77777,9,999999999,69,0.0410,0,88,999.000,999.0,99.0 +1988,3,7,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,-7.2,37,88600,860,1388,278,429,342,218,47000,36500,24300,5400,270,8.8,6,3,64.4,77777,9,999999999,69,0.0410,0,88,999.000,999.0,99.0 +1988,3,7,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,-8.3,34,88500,837,1388,271,538,787,64,56700,78000,9500,1710,280,8.8,2,1,64.4,77777,9,999999999,69,0.0410,0,88,999.000,999.0,99.0 +1988,3,7,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,-8.3,34,88500,752,1388,271,497,796,66,52300,78200,9800,1600,280,8.8,2,1,64.4,77777,9,999999999,69,0.0410,0,88,999.000,999.0,99.0 +1988,3,7,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,-8.3,34,88500,609,1388,265,411,821,51,43500,78900,8800,1280,290,8.2,1,0,64.4,77777,9,999999999,69,0.0410,0,88,999.000,999.0,99.0 +1988,3,7,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,-9.4,32,88500,420,1388,262,272,763,42,28900,68800,8000,990,300,6.7,2,0,64.4,77777,9,999999999,60,0.0410,0,88,999.000,999.0,99.0 +1988,3,7,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,-8.9,38,88500,197,1388,261,93,397,37,9600,26200,5800,660,300,7.7,4,1,64.4,77777,9,999999999,69,0.0410,0,88,999.000,999.0,99.0 +1988,3,7,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,-8.3,43,88600,14,497,253,14,56,8,0,0,0,0,290,6.2,3,0,32.2,77777,9,999999999,69,0.0410,0,88,999.000,999.0,99.0 +1988,3,7,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,2.8,-8.3,44,88600,0,0,251,0,0,0,0,0,0,0,300,6.2,2,0,24.1,77777,9,999999999,69,0.0410,0,88,999.000,999.0,99.0 +1988,3,7,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,2.2,-8.3,46,88600,0,0,249,0,0,0,0,0,0,0,290,5.7,1,0,24.1,77777,9,999999999,69,0.0410,0,88,999.000,999.0,99.0 +1988,3,7,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,1.7,-7.8,50,88600,0,0,247,0,0,0,0,0,0,0,300,4.1,0,0,24.1,77777,9,999999999,69,0.0410,0,88,999.000,999.0,99.0 +1988,3,7,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,1.1,-8.3,50,88600,0,0,245,0,0,0,0,0,0,0,260,3.6,0,0,24.1,77777,9,999999999,69,0.0410,0,88,999.000,999.0,99.0 +1988,3,7,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,1.1,-7.8,52,88700,0,0,245,0,0,0,0,0,0,0,280,3.1,0,0,24.1,77777,9,999999999,69,0.0410,0,88,999.000,999.0,99.0 +1988,3,8,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,1.1,-7.8,52,88700,0,0,245,0,0,0,0,0,0,0,260,3.6,0,0,24.1,77777,9,999999999,69,0.0410,0,88,999.000,999.0,99.0 +1988,3,8,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,1.1,-9.4,46,88700,0,0,244,0,0,0,0,0,0,0,260,4.1,1,0,24.1,77777,9,999999999,60,0.0410,0,88,999.000,999.0,99.0 +1988,3,8,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,1.7,-9.4,44,88600,0,0,246,0,0,0,0,0,0,0,260,5.2,0,0,24.1,77777,9,999999999,60,0.0410,0,88,999.000,999.0,99.0 +1988,3,8,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-0.6,-10.0,49,88600,0,0,237,0,0,0,0,0,0,0,310,2.6,1,0,24.1,77777,9,999999999,60,0.0410,0,88,999.000,999.0,99.0 +1988,3,8,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-2.2,-9.4,58,88600,0,0,232,0,0,0,0,0,0,0,0,0.0,2,0,24.1,77777,9,999999999,60,0.0410,0,88,999.000,999.0,99.0 +1988,3,8,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-3.9,-10.0,63,88600,0,0,230,0,0,0,0,0,0,0,90,2.1,3,1,24.1,77777,9,999999999,60,0.0410,0,88,999.000,999.0,99.0 +1988,3,8,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-5.0,-8.3,78,88700,1,104,228,0,0,0,0,0,0,0,130,3.1,7,1,64.4,77777,9,999999999,69,0.0410,0,88,999.000,999.0,99.0 +1988,3,8,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-3.3,-7.2,75,88700,133,1387,238,45,122,33,4700,5700,4200,600,0,0.0,7,2,64.4,77777,9,999999999,69,0.0980,0,88,999.000,999.0,99.0 +1988,3,8,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.0,-6.7,61,88700,363,1387,255,164,324,80,17300,27300,10200,1470,0,0.0,8,4,64.4,77777,9,999999999,69,0.0980,0,88,999.000,999.0,99.0 +1988,3,8,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,-7.2,50,88600,564,1387,267,246,304,123,26200,29300,14300,2390,0,0.0,10,6,64.4,7620,9,999999999,69,0.0980,0,88,999.000,999.0,99.0 +1988,3,8,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,-7.8,38,88600,722,1387,280,322,160,240,35100,16500,26500,6070,120,5.2,10,6,64.4,7620,9,999999999,69,0.0980,0,88,999.000,999.0,99.0 +1988,3,8,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,-7.8,34,88400,825,1387,301,280,77,234,30800,7800,26200,7690,110,6.2,10,9,64.4,7620,9,999999999,69,0.0980,0,88,999.000,999.0,99.0 +1988,3,8,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,-7.2,33,88400,867,1387,306,384,142,295,41800,14900,32500,8180,110,5.7,10,9,64.4,7620,9,999999999,69,0.0980,0,88,999.000,999.0,99.0 +1988,3,8,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,-7.2,30,88300,844,1387,311,323,47,294,35500,4800,32500,9370,70,3.6,10,9,64.4,7620,9,999999999,69,0.0980,0,88,999.000,999.0,99.0 +1988,3,8,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,-6.7,32,88200,758,1387,311,227,61,194,25000,6100,21700,6240,50,2.6,10,9,64.4,6710,9,999999999,69,0.0980,0,88,999.000,999.0,99.0 +1988,3,8,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,-6.1,31,88100,616,1387,317,200,90,160,22000,9100,18000,3840,0,0.0,10,9,64.4,6710,9,999999999,80,0.0980,0,88,999.000,999.0,99.0 +1988,3,8,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,-6.1,31,88100,426,1387,317,126,5,124,14000,300,13900,4350,20,2.1,9,9,64.4,6100,9,999999999,80,0.0980,0,88,999.000,999.0,99.0 +1988,3,8,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,-6.1,32,88000,203,1387,315,54,17,51,5900,1300,5700,1240,270,2.1,10,9,48.3,3660,9,999999999,80,0.0980,0,88,999.000,999.0,99.0 +1988,3,8,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,-5.6,39,88000,16,520,306,5,1,5,0,0,0,0,280,2.6,10,9,32.2,3050,9,999999999,80,0.0980,0,88,999.000,999.0,99.0 +1988,3,8,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,6.7,-5.0,44,88000,0,0,302,0,0,0,0,0,0,0,260,2.1,10,9,24.1,2290,9,999999999,80,0.0980,0,88,999.000,999.0,99.0 +1988,3,8,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,3.9,-4.4,55,87900,0,0,274,0,0,0,0,0,0,0,310,2.1,7,5,24.1,6100,9,999999999,80,0.0980,0,88,999.000,999.0,99.0 +1988,3,8,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,1.7,-5.0,62,87900,0,0,263,0,0,0,0,0,0,0,200,2.6,7,4,24.1,6100,9,999999999,80,0.0980,0,88,999.000,999.0,99.0 +1988,3,8,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,1.7,-4.4,64,87800,0,0,261,0,0,0,0,0,0,0,0,0.0,5,3,24.1,77777,9,999999999,80,0.0980,0,88,999.000,999.0,99.0 +1988,3,8,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,1.1,-3.9,70,87700,0,0,257,0,0,0,0,0,0,0,290,2.1,3,2,24.1,77777,9,999999999,89,0.0980,0,88,999.000,999.0,99.0 +1988,3,9,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,1.1,-5.6,62,87700,0,0,258,0,0,0,0,0,0,0,0,0.0,4,3,24.1,77777,9,999999999,80,0.0980,0,88,999.000,999.0,99.0 +1988,3,9,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,0.0,-5.6,67,87600,0,0,254,0,0,0,0,0,0,0,260,2.1,4,3,24.1,77777,9,999999999,80,0.0980,0,88,999.000,999.0,99.0 +1988,3,9,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-1.1,-4.4,78,87500,0,0,253,0,0,0,0,0,0,0,0,0.0,7,4,24.1,6100,9,999999999,80,0.0980,0,88,999.000,999.0,99.0 +1988,3,9,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-1.7,-5.6,75,87500,0,0,250,0,0,0,0,0,0,0,0,0.0,7,4,24.1,6100,9,999999999,80,0.0980,0,88,999.000,999.0,99.0 +1988,3,9,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,0.0,-5.6,67,87500,0,0,256,0,0,0,0,0,0,0,0,0.0,7,4,24.1,6100,9,999999999,80,0.0980,0,88,999.000,999.0,99.0 +1988,3,9,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,5.0,-2.8,58,87500,0,0,297,0,0,0,0,0,0,0,270,6.7,10,9,24.1,2740,9,999999999,89,0.0980,0,88,999.000,999.0,99.0 +1988,3,9,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,-2.2,54,87500,1,150,305,1,0,1,0,0,0,0,280,6.2,10,9,48.3,2740,9,999999999,100,0.0790,0,88,999.000,999.0,99.0 +1988,3,9,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,-1.1,65,87500,141,1386,292,33,28,30,3600,1800,3400,740,270,7.2,8,8,48.3,2740,9,999999999,100,0.0790,0,88,999.000,999.0,99.0 +1988,3,9,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,-2.8,53,87500,370,1386,301,116,94,91,12700,8300,10500,2010,270,8.2,10,9,32.2,2440,9,999999999,89,0.0790,0,88,999.000,999.0,99.0 +1988,3,9,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,-3.3,47,87500,572,1386,306,176,53,154,19300,5100,17200,4440,280,7.2,9,9,48.3,2440,9,999999999,89,0.0790,0,88,999.000,999.0,99.0 +1988,3,9,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,-2.2,54,87600,729,1386,305,274,65,240,30100,6500,26700,7220,270,7.7,10,9,48.3,2440,9,999999999,100,0.0790,0,88,999.000,999.0,99.0 +1988,3,9,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,-1.1,60,87500,832,1386,303,172,81,123,19700,8600,14500,3320,260,6.7,10,9,24.1,2440,9,999999999,100,0.0790,0,88,999.000,999.0,99.0 +1988,3,9,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,-8.9,30,87500,874,1386,302,378,138,291,41300,14500,32100,8110,260,9.3,10,9,64.4,6100,9,999999999,69,0.0790,0,88,999.000,999.0,99.0 +1988,3,9,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,-10.6,24,87500,851,1386,294,386,273,219,42200,29100,24300,5400,310,9.3,9,7,64.4,6100,9,999999999,60,0.0790,0,88,999.000,999.0,99.0 +1988,3,9,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,-8.3,30,87500,765,1386,288,393,290,233,42200,30500,25300,5540,300,8.8,10,5,64.4,77777,9,999999999,69,0.0790,0,88,999.000,999.0,99.0 +1988,3,9,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,-7.8,34,87500,622,1386,290,294,243,185,31300,24700,20200,4040,290,10.8,9,7,48.3,3050,9,999999999,69,0.0790,0,88,999.000,999.0,99.0 +1988,3,9,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,-6.1,42,87600,432,1386,287,155,191,96,16800,17500,11300,1840,280,8.2,10,7,64.4,3050,9,999999999,80,0.0790,0,88,999.000,999.0,99.0 +1988,3,9,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,-5.6,47,87700,209,1386,283,62,68,52,6800,4700,6100,1100,280,5.2,10,7,64.4,3350,9,999999999,80,0.0790,0,88,999.000,999.0,99.0 +1988,3,9,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,-7.8,44,87700,18,566,278,5,1,5,0,0,0,0,280,3.6,10,8,24.1,3350,9,999999999,69,0.0790,0,88,999.000,999.0,99.0 +1988,3,9,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,2.8,-7.8,46,87800,0,0,276,0,0,0,0,0,0,0,300,3.6,10,8,24.1,3350,9,999999999,69,0.0790,0,88,999.000,999.0,99.0 +1988,3,9,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,2.8,-7.8,46,87900,0,0,282,0,0,0,0,0,0,0,300,5.7,10,9,24.1,6100,9,999999999,69,0.0790,0,88,999.000,999.0,99.0 +1988,3,9,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,2.2,-11.7,35,87800,0,0,283,0,0,0,0,0,0,0,280,5.7,10,10,24.1,6100,9,999999999,60,0.0790,0,88,999.000,999.0,99.0 +1988,3,9,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,1.7,-12.2,35,87900,0,0,281,0,0,0,0,0,0,0,300,4.1,10,10,24.1,6100,9,999999999,60,0.0790,0,88,999.000,999.0,99.0 +1988,3,9,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,1.7,-9.4,44,87900,0,0,284,0,0,0,0,0,0,0,280,6.7,10,10,24.1,6100,9,999999999,60,0.0790,0,88,999.000,999.0,99.0 +1988,3,10,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,1.7,-7.2,52,87900,0,0,286,0,0,0,0,0,0,0,280,7.2,10,10,24.1,1680,9,999999999,69,0.0790,0,88,999.000,999.0,99.0 +1988,3,10,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,0.6,-7.2,56,88000,0,0,282,0,0,0,0,0,0,0,330,2.6,10,10,24.1,1340,9,999999999,69,0.0790,0,88,999.000,999.0,99.0 +1988,3,10,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-1.1,-2.2,92,88000,0,0,280,0,0,0,0,0,0,0,340,8.8,10,10,1.2,180,9,999999999,100,0.0790,0,88,999.000,999.0,99.0 +1988,3,10,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-1.1,-2.2,92,88100,0,0,280,0,0,0,0,0,0,0,280,4.6,10,10,11.3,980,9,999999999,100,0.0790,0,88,999.000,999.0,99.0 +1988,3,10,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-1.1,-3.3,85,88100,0,0,279,0,0,0,0,0,0,0,310,5.2,10,10,24.1,1370,9,999999999,89,0.0790,0,88,999.000,999.0,99.0 +1988,3,10,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-1.7,-3.9,85,88200,0,0,276,0,0,0,0,0,0,0,320,5.2,10,10,24.1,760,9,999999999,89,0.0790,0,88,999.000,999.0,99.0 +1988,3,10,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.1,-4.4,78,88200,2,196,278,1,0,1,0,0,0,0,340,6.2,10,10,24.1,1370,9,999999999,80,0.0200,0,88,999.000,999.0,99.0 +1988,3,10,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.7,-5.0,78,88300,149,1386,257,56,126,43,5900,6400,5200,810,330,7.2,9,7,24.1,1370,9,999999999,80,0.0200,0,88,999.000,999.0,99.0 +1988,3,10,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-0.6,-4.4,75,88300,378,1386,266,121,44,110,13400,3900,12300,2820,330,8.8,9,8,16.1,1220,9,999999999,80,0.0200,0,88,999.000,999.0,99.0 +1988,3,10,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-0.6,-2.8,85,88300,579,1386,268,211,103,168,23100,10200,18800,3980,330,6.7,9,8,16.1,1220,9,999999999,89,0.0200,0,88,999.000,999.0,99.0 +1988,3,10,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.6,-3.3,76,88300,737,1386,272,304,174,212,33400,18000,23800,5410,340,6.2,9,8,11.3,1220,9,999999999,89,0.0200,0,88,999.000,999.0,99.0 +1988,3,10,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.0,-2.2,85,88400,839,1386,277,355,214,226,38700,22800,24800,5560,330,7.2,10,9,4.8,370,9,999999999,100,0.0200,0,88,999.000,999.0,99.0 +1988,3,10,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.0,-0.6,96,88300,881,1386,286,251,103,186,28300,10900,21300,5210,340,6.2,10,10,1.6,310,9,999999999,110,0.0200,0,88,999.000,999.0,99.0 +1988,3,10,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-0.6,-1.7,92,88300,857,1386,282,271,16,261,31000,1400,30200,10820,350,7.7,10,10,4.0,550,9,999999999,100,0.0200,0,88,999.000,999.0,99.0 +1988,3,10,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.1,-1.7,96,88300,771,1386,280,267,5,265,30200,500,29900,10170,350,6.2,10,10,6.4,610,9,999999999,100,0.0200,0,88,999.000,999.0,99.0 +1988,3,10,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.1,-2.2,92,88400,628,1386,280,190,7,187,21500,600,21200,7150,330,5.2,10,10,1.2,610,9,999999999,100,0.0200,0,88,999.000,999.0,99.0 +1988,3,10,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.0,-4.4,72,88400,438,1386,282,132,7,130,14700,500,14600,4560,340,7.7,10,10,12.9,850,9,999999999,80,0.0200,0,88,999.000,999.0,99.0 +1988,3,10,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-0.6,-4.4,75,88500,214,1386,280,69,1,69,7500,0,7500,2090,350,5.7,10,10,6.4,850,9,999999999,80,0.0200,0,88,999.000,999.0,99.0 +1988,3,10,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.7,-2.8,92,88500,20,589,277,11,0,11,0,0,0,0,320,5.2,10,10,3.2,760,9,999999999,89,0.0200,0,88,999.000,999.0,99.0 +1988,3,10,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-1.7,-2.2,96,88500,0,0,277,0,0,0,0,0,0,0,300,5.2,10,10,4.8,1220,9,999999999,100,0.0200,0,88,999.000,999.0,99.0 +1988,3,10,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-2.2,-3.9,89,88600,0,0,274,0,0,0,0,0,0,0,360,4.6,10,10,24.1,1520,9,999999999,89,0.0200,0,88,999.000,999.0,99.0 +1988,3,10,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-1.7,-6.1,72,88600,0,0,273,0,0,0,0,0,0,0,330,4.6,10,10,24.1,1220,9,999999999,80,0.0200,0,88,999.000,999.0,99.0 +1988,3,10,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-2.2,-5.6,78,88600,0,0,272,0,0,0,0,0,0,0,320,6.7,10,10,16.1,1220,9,999999999,80,0.0200,0,88,999.000,999.0,99.0 +1988,3,10,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-2.2,-5.6,78,88600,0,0,272,0,0,0,0,0,0,0,330,8.2,10,10,11.3,1070,9,999999999,80,0.0200,0,88,999.000,999.0,99.0 +1988,3,11,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-3.3,-4.4,92,88600,0,0,269,0,0,0,0,0,0,0,320,5.2,10,10,11.3,1070,9,999999999,80,0.0200,0,88,999.000,999.0,99.0 +1988,3,11,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-3.3,-4.4,92,88600,0,0,269,0,0,0,0,0,0,0,310,5.7,10,10,9.7,980,9,999999999,80,0.0200,0,88,999.000,999.0,99.0 +1988,3,11,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-3.3,-4.4,92,88600,0,0,269,0,0,0,0,0,0,0,320,6.2,10,10,9.7,1070,9,999999999,80,0.0200,0,88,999.000,999.0,99.0 +1988,3,11,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-3.3,-4.4,92,88600,0,0,269,0,0,0,0,0,0,0,310,4.1,10,10,8.0,1070,9,999999999,80,0.0200,0,88,999.000,999.0,99.0 +1988,3,11,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-3.3,-4.4,92,88600,0,0,269,0,0,0,0,0,0,0,320,3.6,10,10,6.4,1070,9,999999999,80,0.0200,0,88,999.000,999.0,99.0 +1988,3,11,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-3.3,-6.7,78,88700,0,0,266,0,0,0,0,0,0,0,340,6.2,10,10,16.1,1220,9,999999999,69,0.0200,0,88,999.000,999.0,99.0 +1988,3,11,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-3.3,-7.2,75,88700,3,242,259,3,2,3,0,0,0,0,330,5.2,10,9,9.7,910,9,999999999,69,0.0370,0,88,999.000,999.0,99.0 +1988,3,11,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-3.9,-6.1,85,88700,156,1385,252,44,21,42,4900,1400,4700,990,320,5.7,10,8,12.9,1830,9,999999999,80,0.0370,0,88,999.000,999.0,99.0 +1988,3,11,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-2.2,-7.8,66,88700,386,1385,253,213,325,123,22400,28400,14400,2520,350,10.3,9,7,16.1,2440,9,999999999,69,0.0370,0,88,999.000,999.0,99.0 +1988,3,11,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-3.3,-6.7,78,88700,587,1385,250,289,227,193,31400,22600,21800,4590,350,7.2,9,7,16.1,2290,9,999999999,69,0.0370,0,88,999.000,999.0,99.0 +1988,3,11,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-2.2,-6.7,72,88800,744,1385,249,396,351,209,42900,36800,23000,4830,330,7.7,9,5,16.1,2290,9,999999999,69,0.0370,0,88,999.000,999.0,99.0 +1988,3,11,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.7,-5.6,75,88800,847,1385,257,468,389,231,51000,41500,25500,5730,340,6.2,9,7,16.1,2130,9,999999999,80,0.0370,0,88,999.000,999.0,99.0 +1988,3,11,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.1,-7.8,61,88700,887,1385,257,456,388,208,49000,40000,23200,5210,340,7.2,8,7,16.1,1830,9,999999999,69,0.0370,0,88,999.000,999.0,99.0 +1988,3,11,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.7,-8.3,61,88700,864,1385,264,361,69,318,39700,7100,35300,10150,330,3.1,10,9,16.1,1520,9,999999999,69,0.0370,0,88,999.000,999.0,99.0 +1988,3,11,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.1,-7.8,61,88700,777,1385,267,390,97,335,42700,9900,37100,9650,10,3.1,10,9,24.1,1520,9,999999999,69,0.0370,0,88,999.000,999.0,99.0 +1988,3,11,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.1,-7.8,61,88700,634,1385,257,279,190,192,30400,19200,21600,4650,0,0.0,9,7,32.2,1680,9,999999999,69,0.0370,0,88,999.000,999.0,99.0 +1988,3,11,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.1,-7.8,61,88700,444,1385,254,181,137,138,19700,12700,15600,3110,300,1.5,7,6,32.2,1680,9,999999999,69,0.0370,0,88,999.000,999.0,99.0 +1988,3,11,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.7,-7.8,64,88700,220,1385,249,98,184,69,10200,12100,8300,1350,0,0.0,6,5,32.2,1830,9,999999999,69,0.0370,0,88,999.000,999.0,99.0 +1988,3,11,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-2.2,-8.3,63,88700,22,635,252,14,4,13,0,0,0,0,0,0.0,8,7,32.2,1980,9,999999999,69,0.0370,0,88,999.000,999.0,99.0 +1988,3,11,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-2.8,-7.2,72,88600,0,0,246,0,0,0,0,0,0,0,220,2.1,7,5,24.1,1980,9,999999999,69,0.0370,0,88,999.000,999.0,99.0 +1988,3,11,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-3.3,-7.2,75,88600,0,0,249,0,0,0,0,0,0,0,240,1.5,8,7,24.1,2130,9,999999999,69,0.0370,0,88,999.000,999.0,99.0 +1988,3,11,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-3.3,-6.7,78,88600,0,0,254,0,0,0,0,0,0,0,290,1.5,9,8,24.1,2440,9,999999999,69,0.0370,0,88,999.000,999.0,99.0 +1988,3,11,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-5.6,-6.7,92,88600,0,0,235,0,0,0,0,0,0,0,90,2.1,5,4,24.1,77777,9,999999999,69,0.0370,0,88,999.000,999.0,99.0 +1988,3,11,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-6.1,-8.3,85,88600,0,0,224,0,0,0,0,0,0,0,300,1.5,1,1,24.1,77777,9,999999999,69,0.0370,0,88,999.000,999.0,99.0 +1988,3,12,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-6.7,-8.3,88,88600,0,0,225,0,0,0,0,0,0,0,0,0.0,2,2,24.1,77777,9,999999999,69,0.0370,0,88,999.000,999.0,99.0 +1988,3,12,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-6.7,-7.8,92,88600,0,0,234,0,0,0,0,0,0,0,0,0.0,7,6,24.1,2130,9,999999999,69,0.0370,0,88,999.000,999.0,99.0 +1988,3,12,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-6.7,-8.9,84,88500,0,0,239,0,0,0,0,0,0,0,240,2.1,8,8,24.1,1830,9,999999999,69,0.0370,0,88,999.000,999.0,99.0 +1988,3,12,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-8.9,-10.0,92,88500,0,0,227,0,0,0,0,0,0,0,0,0.0,7,7,24.1,1830,9,999999999,60,0.0370,0,88,999.000,999.0,99.0 +1988,3,12,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-8.9,-10.0,92,88500,0,0,227,0,0,0,0,0,0,0,0,0.0,7,7,24.1,2130,9,999999999,60,0.0370,0,88,999.000,999.0,99.0 +1988,3,12,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-8.9,-10.0,92,88500,0,0,227,0,0,0,0,0,0,0,0,0.0,8,7,24.1,2590,9,999999999,60,0.0370,0,88,999.000,999.0,99.0 +1988,3,12,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-8.9,-10.0,92,88500,5,288,224,5,8,4,0,0,0,0,0,0.0,9,6,48.3,2590,9,999999999,60,0.0190,0,88,999.000,999.0,99.0 +1988,3,12,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-7.8,-8.9,92,88500,164,1384,232,48,98,37,5200,5300,4500,670,0,0.0,9,7,48.3,1520,9,999999999,69,0.0190,0,88,999.000,999.0,99.0 +1988,3,12,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-6.7,-8.3,88,88600,394,1384,236,182,215,121,19100,19000,13700,2460,0,0.0,10,7,48.3,2590,9,999999999,69,0.0190,0,88,999.000,999.0,99.0 +1988,3,12,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-5.6,-7.8,85,88600,595,1384,238,249,176,174,27300,17600,19700,4150,0,0.0,10,6,48.3,2590,9,999999999,69,0.0190,0,88,999.000,999.0,99.0 +1988,3,12,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-3.3,-7.2,75,88500,751,1384,244,453,527,168,48600,53500,19500,3670,0,0.0,10,5,24.1,77777,9,999999999,69,0.0190,0,88,999.000,999.0,99.0 +1988,3,12,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-2.2,-6.7,72,88500,854,1384,254,529,507,217,56300,52100,24000,5270,0,0.0,10,7,24.1,1520,9,999999999,69,0.0190,0,88,999.000,999.0,99.0 +1988,3,12,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-2.2,-6.7,72,88500,894,1384,258,449,286,264,48600,30600,28800,6940,0,0.0,10,8,24.1,1520,9,999999999,69,0.0190,0,88,999.000,999.0,99.0 +1988,3,12,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.1,-7.2,54,88500,870,1384,259,668,816,155,70500,82200,18600,3820,330,6.2,4,4,16.1,77777,9,999999999,69,0.0190,0,88,999.000,999.0,99.0 +1988,3,12,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.1,-3.3,85,88600,784,1384,256,408,335,219,44200,35400,24100,5190,340,5.2,6,5,16.1,2740,9,999999999,89,0.0190,0,88,999.000,999.0,99.0 +1988,3,12,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.0,-7.2,59,88700,640,1384,252,455,768,100,48000,75100,13200,2090,360,7.2,3,3,40.2,77777,9,999999999,69,0.0190,0,88,999.000,999.0,99.0 +1988,3,12,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.6,-9.4,48,88700,450,1384,255,273,597,79,28300,53900,10800,1490,330,6.2,5,4,32.2,77777,9,999999999,60,0.0190,0,88,999.000,999.0,99.0 +1988,3,12,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.1,-8.3,58,88800,226,1384,249,116,381,54,11700,26200,7400,910,330,7.2,4,4,32.2,77777,9,999999999,69,0.0190,0,88,999.000,999.0,99.0 +1988,3,12,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-3.3,-7.8,72,88800,25,657,240,22,87,13,0,0,0,0,350,3.6,3,3,24.1,77777,9,999999999,69,0.0190,0,88,999.000,999.0,99.0 +1988,3,12,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-5.0,-7.8,81,88800,0,0,229,0,0,0,0,0,0,0,290,3.1,1,1,24.1,77777,9,999999999,69,0.0190,0,88,999.000,999.0,99.0 +1988,3,12,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-5.0,-8.3,78,88900,0,0,224,0,0,0,0,0,0,0,260,2.1,0,0,24.1,77777,9,999999999,69,0.0190,0,88,999.000,999.0,99.0 +1988,3,12,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-5.6,-8.9,78,88900,0,0,226,0,0,0,0,0,0,0,280,2.6,1,1,24.1,77777,9,999999999,69,0.0190,0,88,999.000,999.0,99.0 +1988,3,12,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-5.6,-9.4,74,88900,0,0,236,0,0,0,0,0,0,0,270,2.6,7,6,24.1,2290,9,999999999,60,0.0190,0,88,999.000,999.0,99.0 +1988,3,12,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-5.0,-9.4,71,88900,0,0,245,0,0,0,0,0,0,0,270,2.1,9,8,24.1,2290,9,999999999,60,0.0190,0,88,999.000,999.0,99.0 +1988,3,13,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-6.1,-8.9,81,88900,0,0,241,0,0,0,0,0,0,0,330,2.1,9,8,24.1,2130,9,999999999,69,0.0190,0,88,999.000,999.0,99.0 +1988,3,13,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-6.1,-10.0,74,88900,0,0,240,0,0,0,0,0,0,0,0,0.0,9,8,24.1,2130,9,999999999,60,0.0190,0,88,999.000,999.0,99.0 +1988,3,13,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-7.2,-9.4,84,88900,0,0,233,0,0,0,0,0,0,0,0,0.0,8,7,24.1,2130,9,999999999,60,0.0190,0,88,999.000,999.0,99.0 +1988,3,13,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-6.7,-8.9,84,88900,0,0,235,0,0,0,0,0,0,0,0,0.0,8,7,24.1,1980,9,999999999,69,0.0190,0,88,999.000,999.0,99.0 +1988,3,13,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-7.2,-8.3,92,88900,0,0,243,0,0,0,0,0,0,0,0,0.0,10,9,24.1,1980,9,999999999,69,0.0190,0,88,999.000,999.0,99.0 +1988,3,13,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-7.2,-8.3,92,88900,0,0,243,0,0,0,0,0,0,0,0,0.0,10,9,32.2,3050,9,999999999,69,0.0190,0,88,999.000,999.0,99.0 +1988,3,13,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-6.7,-7.8,92,88900,6,334,252,4,1,3,0,0,0,0,0,0.0,10,10,48.3,2440,9,999999999,69,0.0260,0,88,999.000,999.0,99.0 +1988,3,13,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-6.1,-7.8,88,88900,172,1383,255,45,11,44,5000,100,5000,1440,0,0.0,10,10,32.2,2130,9,999999999,69,0.0260,0,88,999.000,999.0,99.0 +1988,3,13,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-5.6,-7.8,85,88900,402,1383,256,94,3,93,10600,200,10600,3480,0,0.0,10,10,24.1,1980,9,999999999,69,0.0260,0,88,999.000,999.0,99.0 +1988,3,13,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-3.9,-7.8,75,88900,602,1383,263,184,4,182,20700,300,20500,6850,0,0.0,10,10,32.2,1830,9,999999999,69,0.0260,0,88,999.000,999.0,99.0 +1988,3,13,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.1,-7.8,61,88900,759,1383,261,296,259,155,32900,27300,17800,3430,30,3.6,10,8,48.3,2440,9,999999999,69,0.0260,0,88,999.000,999.0,99.0 +1988,3,13,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.0,-7.8,56,88800,861,1383,261,469,403,219,49900,41400,24000,5360,90,3.6,9,7,48.3,2590,9,999999999,69,0.0260,0,88,999.000,999.0,99.0 +1988,3,13,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.6,-7.8,54,88800,901,1383,273,409,187,287,44800,19700,31900,8190,130,3.1,10,9,48.3,2590,9,999999999,69,0.0260,0,88,999.000,999.0,99.0 +1988,3,13,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,-7.2,50,88700,877,1383,267,598,696,157,63100,70100,18500,3890,180,1.5,9,6,48.3,2590,9,999999999,69,0.0260,0,88,999.000,999.0,99.0 +1988,3,13,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,-6.7,50,88700,790,1383,273,437,382,219,47300,40400,24200,5210,110,3.6,9,7,48.3,2590,9,999999999,69,0.0260,0,88,999.000,999.0,99.0 +1988,3,13,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,-6.7,48,88700,646,1383,285,294,221,191,32200,22400,21700,4660,100,4.1,10,9,64.4,2590,9,999999999,69,0.0260,0,88,999.000,999.0,99.0 +1988,3,13,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,-6.7,47,88700,455,1383,277,190,166,135,20600,15600,15500,3060,0,0.0,9,7,64.4,2590,9,999999999,80,0.0260,0,88,999.000,999.0,99.0 +1988,3,13,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,-6.1,55,88600,232,1383,290,61,3,60,6700,100,6700,2000,100,1.5,10,10,64.4,2440,9,999999999,80,0.0260,0,88,999.000,999.0,99.0 +1988,3,13,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.1,-5.6,62,88600,28,680,272,16,8,16,1800,400,1800,380,40,2.1,9,8,32.2,2440,9,999999999,80,0.0260,0,88,999.000,999.0,99.0 +1988,3,13,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-0.6,-6.1,67,88600,0,0,253,0,0,0,0,0,0,0,280,2.6,5,4,24.1,77777,9,999999999,80,0.0260,0,88,999.000,999.0,99.0 +1988,3,13,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-1.7,-5.0,78,88600,0,0,242,0,0,0,0,0,0,0,270,2.1,1,1,24.1,77777,9,999999999,80,0.0260,0,88,999.000,999.0,99.0 +1988,3,13,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-2.2,-4.4,85,88600,0,0,241,0,0,0,0,0,0,0,250,2.1,1,1,24.1,77777,9,999999999,80,0.0260,0,88,999.000,999.0,99.0 +1988,3,13,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-3.3,-4.4,92,88500,0,0,233,0,0,0,0,0,0,0,240,1.5,0,0,24.1,77777,9,999999999,80,0.0260,0,88,999.000,999.0,99.0 +1988,3,13,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-5.0,-5.0,100,88500,0,0,227,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,80,0.0260,0,88,999.000,999.0,99.0 +1988,3,14,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-5.0,-5.6,96,88400,0,0,226,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,80,0.0260,0,88,999.000,999.0,99.0 +1988,3,14,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-5.0,-5.0,100,88400,0,0,227,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,80,0.0260,0,88,999.000,999.0,99.0 +1988,3,14,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-5.6,-5.6,100,88300,0,0,224,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,80,0.0260,0,88,999.000,999.0,99.0 +1988,3,14,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-5.6,-6.1,96,88200,0,0,231,0,0,0,0,0,0,0,0,0.0,2,2,24.1,77777,9,999999999,80,0.0260,0,88,999.000,999.0,99.0 +1988,3,14,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-4.4,-5.6,92,88200,0,0,247,0,0,0,0,0,0,0,0,0.0,9,7,24.1,2740,9,999999999,80,0.0260,0,88,999.000,999.0,99.0 +1988,3,14,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-3.9,-5.0,92,88100,0,0,253,0,0,0,0,0,0,0,0,0.0,10,8,24.1,4570,9,999999999,80,0.0260,0,88,999.000,999.0,99.0 +1988,3,14,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-4.4,-5.0,96,88000,8,380,257,3,1,3,0,0,0,0,0,0.0,10,9,32.2,4270,9,999999999,80,0.0410,0,88,999.000,999.0,99.0 +1988,3,14,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-3.3,-5.0,88,88000,180,1383,268,49,6,48,5400,100,5400,1550,0,0.0,10,10,32.2,3050,9,999999999,80,0.0410,0,88,999.000,999.0,99.0 +1988,3,14,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.7,-5.0,78,87900,409,1383,275,97,1,97,11000,100,11000,3620,0,0.0,10,10,24.1,1520,9,999999999,80,0.0410,0,88,999.000,999.0,99.0 +1988,3,14,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.0,-4.4,72,87900,610,1383,282,201,9,197,22500,800,22200,7250,0,0.0,10,10,32.2,1830,9,999999999,80,0.0410,0,88,999.000,999.0,99.0 +1988,3,14,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.1,-4.4,67,87900,766,1383,287,241,11,234,27300,1000,26800,9390,0,0.0,10,10,24.1,3050,9,999999999,80,0.0410,0,88,999.000,999.0,99.0 +1988,3,14,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,-2.8,67,87700,868,1383,287,285,65,244,31400,6600,27200,8270,0,0.0,10,9,24.1,3050,9,999999999,89,0.0410,0,88,999.000,999.0,99.0 +1988,3,14,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,-2.8,65,87700,908,1383,298,270,2,269,31200,200,31000,11450,240,1.5,10,10,24.1,1220,9,999999999,89,0.0410,0,88,999.000,999.0,99.0 +1988,3,14,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,-0.6,76,87700,883,1383,300,267,8,261,30600,700,30200,11030,280,2.6,10,10,12.9,1220,9,999999999,110,0.0410,0,88,999.000,999.0,99.0 +1988,3,14,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,0.0,79,87700,796,1383,301,167,7,163,19700,500,19400,7370,360,1.5,10,10,16.1,1220,9,999999999,110,0.0410,0,88,999.000,999.0,99.0 +1988,3,14,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,0.0,76,87600,652,1383,303,166,9,162,19100,700,18800,6630,40,3.6,10,10,24.1,520,9,999999999,110,0.0410,0,88,999.000,999.0,99.0 +1988,3,14,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,0.6,82,87700,461,1383,301,145,6,143,16100,400,16000,4990,110,2.1,10,10,24.1,520,9,999999999,110,0.0410,0,88,999.000,999.0,99.0 +1988,3,14,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,0.0,82,87700,237,1383,290,60,29,55,6600,2200,6200,1390,20,2.1,10,9,24.1,640,9,999999999,110,0.0410,0,88,999.000,999.0,99.0 +1988,3,14,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.1,0.0,92,87700,30,726,270,22,18,20,2300,900,2200,460,50,1.5,8,6,24.1,3050,9,999999999,110,0.0410,0,88,999.000,999.0,99.0 +1988,3,14,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,1.1,0.0,92,87700,0,0,291,0,0,0,0,0,0,0,0,0.0,10,10,24.1,1830,9,999999999,110,0.0410,0,88,999.000,999.0,99.0 +1988,3,14,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,0.0,-0.6,96,87700,0,0,286,0,0,0,0,0,0,0,340,1.5,10,10,16.1,520,9,999999999,100,0.0410,0,88,999.000,999.0,99.0 +1988,3,14,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,0.6,0.6,100,87800,0,0,290,0,0,0,0,0,0,0,280,1.5,10,10,16.1,370,9,999999999,110,0.0410,0,88,999.000,999.0,99.0 +1988,3,14,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,0.6,0.6,100,87900,0,0,290,0,0,0,0,0,0,0,320,3.1,10,10,3.2,370,9,999999999,110,0.0410,0,88,999.000,999.0,99.0 +1988,3,14,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-0.6,-1.7,92,87900,0,0,282,0,0,0,0,0,0,0,340,6.7,10,10,9.7,1010,9,999999999,100,0.0410,0,88,999.000,999.0,99.0 +1988,3,15,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-2.2,-3.3,92,88000,0,0,274,0,0,0,0,0,0,0,330,4.1,10,10,16.1,1010,9,999999999,89,0.0410,0,88,999.000,999.0,99.0 +1988,3,15,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-1.7,-3.9,85,88100,0,0,276,0,0,0,0,0,0,0,330,6.2,10,10,16.1,610,9,999999999,89,0.0410,0,88,999.000,999.0,99.0 +1988,3,15,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-1.7,-3.9,85,88100,0,0,276,0,0,0,0,0,0,0,330,4.1,10,10,16.1,610,9,999999999,89,0.0410,0,88,999.000,999.0,99.0 +1988,3,15,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-2.2,-3.9,89,88200,0,0,274,0,0,0,0,0,0,0,330,4.1,10,10,16.1,610,9,999999999,89,0.0410,0,88,999.000,999.0,99.0 +1988,3,15,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-2.2,-5.0,82,88300,0,0,273,0,0,0,0,0,0,0,360,7.2,10,10,16.1,760,9,999999999,80,0.0410,0,88,999.000,999.0,99.0 +1988,3,15,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-2.8,-5.6,81,88400,0,0,270,0,0,0,0,0,0,0,350,6.7,10,10,16.1,760,9,999999999,80,0.0410,0,88,999.000,999.0,99.0 +1988,3,15,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-3.3,-6.1,81,88500,10,426,267,3,0,3,0,0,0,0,340,6.2,10,10,16.1,760,9,999999999,80,0.0520,0,88,999.000,999.0,99.0 +1988,3,15,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-2.8,-6.1,78,88600,188,1382,269,32,3,32,3700,0,3700,1170,350,6.2,10,10,24.1,1370,9,999999999,80,0.0520,0,88,999.000,999.0,99.0 +1988,3,15,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-2.2,-7.2,69,88600,417,1382,263,131,43,118,14400,3900,13200,3110,360,6.2,10,9,32.2,1830,9,999999999,69,0.0520,0,88,999.000,999.0,99.0 +1988,3,15,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.7,-7.8,64,88700,617,1382,264,217,63,189,23800,6200,21100,5440,360,7.2,10,9,32.2,1830,9,999999999,69,0.0520,0,88,999.000,999.0,99.0 +1988,3,15,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-0.6,-7.8,59,88700,773,1382,252,507,661,138,53400,65900,16400,3100,10,6.2,9,4,32.2,77777,9,999999999,69,0.0520,0,88,999.000,999.0,99.0 +1988,3,15,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.6,-8.3,52,88700,875,1382,251,608,796,105,64600,79800,13900,2580,10,4.1,5,2,64.4,77777,9,999999999,69,0.0520,0,88,999.000,999.0,99.0 +1988,3,15,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.1,-10.6,42,88600,914,1382,253,645,855,80,67600,85100,11100,2070,10,5.2,7,3,64.4,77777,9,999999999,60,0.0520,0,88,999.000,999.0,99.0 +1988,3,15,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.1,-10.0,44,88500,890,1382,254,613,653,193,63800,65200,21700,4720,340,6.7,7,3,64.4,77777,9,999999999,60,0.0520,0,88,999.000,999.0,99.0 +1988,3,15,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.1,-8.9,48,88600,802,1382,255,561,747,128,59500,75100,15800,2990,10,7.2,7,3,64.4,77777,9,999999999,69,0.0520,0,88,999.000,999.0,99.0 +1988,3,15,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.0,-11.1,43,88600,658,1382,249,404,572,132,41900,55500,15400,2670,360,7.7,7,3,64.4,77777,9,999999999,60,0.0520,0,88,999.000,999.0,99.0 +1988,3,15,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-0.6,-11.1,45,88600,467,1382,247,290,586,92,29900,53100,11900,1710,360,7.2,7,3,64.4,77777,9,999999999,60,0.0520,0,88,999.000,999.0,99.0 +1988,3,15,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-2.8,-9.4,61,88700,243,1382,242,111,260,66,11500,18300,8200,1220,350,6.2,8,4,64.4,77777,9,999999999,60,0.0520,0,88,999.000,999.0,99.0 +1988,3,15,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-4.4,-11.1,60,88700,33,748,235,19,38,15,1800,1000,1800,260,340,5.2,8,4,64.4,77777,9,999999999,60,0.0520,0,88,999.000,999.0,99.0 +1988,3,15,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-5.6,-9.4,74,88800,0,0,225,0,0,0,0,0,0,0,310,3.1,5,1,24.1,77777,9,999999999,60,0.0520,0,88,999.000,999.0,99.0 +1988,3,15,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-5.6,-11.7,63,88800,0,0,223,0,0,0,0,0,0,0,280,2.6,3,1,24.1,77777,9,999999999,60,0.0520,0,88,999.000,999.0,99.0 +1988,3,15,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-6.1,-9.4,78,88800,0,0,219,0,0,0,0,0,0,0,260,2.6,0,0,24.1,77777,9,999999999,60,0.0520,0,88,999.000,999.0,99.0 +1988,3,15,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-6.7,-11.7,68,88800,0,0,215,0,0,0,0,0,0,0,260,2.1,0,0,24.1,77777,9,999999999,60,0.0520,0,88,999.000,999.0,99.0 +1988,3,15,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-7.2,-8.9,88,88800,0,0,216,0,0,0,0,0,0,0,250,3.6,0,0,24.1,77777,9,999999999,69,0.0520,0,88,999.000,999.0,99.0 +1988,3,16,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-7.8,-8.3,96,88800,0,0,215,0,0,0,0,0,0,0,250,3.1,0,0,24.1,77777,9,999999999,69,0.0520,0,88,999.000,999.0,99.0 +1988,3,16,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-7.8,-8.9,92,88800,0,0,214,0,0,0,0,0,0,0,250,2.6,0,0,24.1,77777,9,999999999,69,0.0520,0,88,999.000,999.0,99.0 +1988,3,16,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-9.4,-11.1,88,88800,0,0,207,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,60,0.0520,0,88,999.000,999.0,99.0 +1988,3,16,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-11.1,-12.2,92,88800,0,0,201,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,60,0.0520,0,88,999.000,999.0,99.0 +1988,3,16,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-10.6,-11.7,92,88800,0,0,203,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,60,0.0520,0,88,999.000,999.0,99.0 +1988,3,16,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-11.1,-11.7,96,88900,0,0,201,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,60,0.0520,0,88,999.000,999.0,99.0 +1988,3,16,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-11.1,-13.9,80,88900,13,472,206,14,64,7,0,0,0,0,0,0.0,2,2,24.1,77777,9,999999999,50,0.0260,0,88,999.000,999.0,99.0 +1988,3,16,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-9.4,-11.1,88,88900,196,1381,220,71,156,50,7600,9600,6300,930,0,0.0,5,5,48.3,77777,9,999999999,60,0.0260,0,88,999.000,999.0,99.0 +1988,3,16,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-7.2,-9.4,84,89000,425,1381,227,221,419,94,23500,37400,12000,1750,0,0.0,4,4,48.3,77777,9,999999999,60,0.0260,0,88,999.000,999.0,99.0 +1988,3,16,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-2.8,-8.9,63,89000,625,1381,231,437,878,41,46700,84800,8200,1150,0,0.0,0,0,64.4,77777,9,999999999,69,0.0260,0,88,999.000,999.0,99.0 +1988,3,16,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.1,-10.6,49,88900,781,1381,235,592,964,49,63000,95200,9000,1400,0,0.0,0,0,64.4,77777,9,999999999,60,0.0260,0,88,999.000,999.0,99.0 +1988,3,16,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.6,-12.2,38,88900,882,1381,239,685,990,54,72600,98600,9500,1600,0,0.0,0,0,64.4,77777,9,999999999,60,0.0260,0,88,999.000,999.0,99.0 +1988,3,16,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,-11.7,37,88900,921,1381,248,673,954,38,72100,95300,8400,1280,0,0.0,1,1,64.4,77777,9,999999999,60,0.0260,0,88,999.000,999.0,99.0 +1988,3,16,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,-12.8,31,88900,896,1381,259,633,785,125,66200,78300,15300,2970,310,2.1,4,4,64.4,77777,9,999999999,50,0.0260,0,88,999.000,999.0,99.0 +1988,3,16,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,-11.7,37,88900,808,1381,256,544,757,102,57400,75300,13200,2330,10,3.6,4,4,64.4,77777,9,999999999,60,0.0260,0,88,999.000,999.0,99.0 +1988,3,16,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,-11.1,37,88900,664,1381,254,461,776,88,48000,75500,11600,1820,10,4.1,2,2,64.4,77777,9,999999999,60,0.0260,0,88,999.000,999.0,99.0 +1988,3,16,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,-10.6,39,89000,473,1381,247,325,855,34,34800,79100,7700,940,350,3.6,0,0,64.4,77777,9,999999999,60,0.0260,0,88,999.000,999.0,99.0 +1988,3,16,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.1,-10.6,42,89000,249,1381,243,143,671,23,15300,53200,5700,610,10,2.6,0,0,64.4,77777,9,999999999,60,0.0260,0,88,999.000,999.0,99.0 +1988,3,16,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.7,-10.0,53,89000,36,771,233,27,178,10,2000,9000,1500,220,0,0.0,0,0,48.3,77777,9,999999999,60,0.0260,0,88,999.000,999.0,99.0 +1988,3,16,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-3.9,-8.9,69,89100,0,0,227,0,0,0,0,0,0,0,240,2.1,0,0,24.1,77777,9,999999999,69,0.0260,0,88,999.000,999.0,99.0 +1988,3,16,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-4.4,-8.9,72,89100,0,0,225,0,0,0,0,0,0,0,250,2.6,0,0,24.1,77777,9,999999999,69,0.0260,0,88,999.000,999.0,99.0 +1988,3,16,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-6.7,-9.4,81,89100,0,0,217,0,0,0,0,0,0,0,130,2.1,0,0,24.1,77777,9,999999999,60,0.0260,0,88,999.000,999.0,99.0 +1988,3,16,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-6.7,-8.9,84,89200,0,0,218,0,0,0,0,0,0,0,270,3.1,0,0,24.1,77777,9,999999999,69,0.0260,0,88,999.000,999.0,99.0 +1988,3,16,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-6.7,-9.4,81,89300,0,0,217,0,0,0,0,0,0,0,250,1.5,0,0,24.1,77777,9,999999999,60,0.0260,0,88,999.000,999.0,99.0 +1988,3,17,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-7.2,-8.9,88,89300,0,0,216,0,0,0,0,0,0,0,270,1.5,0,0,24.1,77777,9,999999999,69,0.0260,0,88,999.000,999.0,99.0 +1988,3,17,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-8.3,-10.0,88,89300,0,0,212,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,60,0.0260,0,88,999.000,999.0,99.0 +1988,3,17,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-8.3,-8.9,96,89400,0,0,212,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,69,0.0260,0,88,999.000,999.0,99.0 +1988,3,17,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-8.9,-9.4,96,89400,0,0,210,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,60,0.0260,0,88,999.000,999.0,99.0 +1988,3,17,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-10.0,-10.0,100,89400,0,0,206,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,60,0.0260,0,88,999.000,999.0,99.0 +1988,3,17,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-10.0,-11.1,92,89400,0,0,205,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,60,0.0260,0,88,999.000,999.0,99.0 +1988,3,17,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-10.6,-11.7,92,89500,15,518,203,12,47,7,0,0,0,0,0,0.0,2,0,64.4,77777,9,999999999,60,0.0540,0,88,999.000,999.0,99.0 +1988,3,17,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-7.8,-10.0,84,89500,203,1380,213,99,478,30,10200,34100,5200,580,0,0.0,2,0,64.4,77777,9,999999999,60,0.0540,0,88,999.000,999.0,99.0 +1988,3,17,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-5.6,-8.9,78,89500,433,1380,221,274,715,51,28800,64800,8400,1060,0,0.0,3,0,64.4,77777,9,999999999,69,0.0540,0,88,999.000,999.0,99.0 +1988,3,17,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-3.3,-8.9,66,89600,632,1380,229,451,864,57,47700,83400,9400,1370,0,0.0,0,0,64.4,77777,9,999999999,69,0.0540,0,88,999.000,999.0,99.0 +1988,3,17,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-0.6,-9.4,52,89500,788,1380,238,593,925,67,62500,91300,10300,1670,0,0.0,0,0,64.4,77777,9,999999999,60,0.0540,0,88,999.000,999.0,99.0 +1988,3,17,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,-9.4,44,89400,889,1380,246,685,952,73,71900,94600,10800,1920,60,3.6,0,0,64.4,77777,9,999999999,60,0.0540,0,88,999.000,999.0,99.0 +1988,3,17,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,-10.6,36,89400,928,1380,251,722,963,75,75700,96000,11000,2040,0,0.0,0,0,64.4,77777,9,999999999,60,0.0540,0,88,999.000,999.0,99.0 +1988,3,17,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,-10.0,35,89300,902,1380,255,700,958,74,73400,95300,10900,1970,0,0.0,0,0,64.4,77777,9,999999999,60,0.0540,0,88,999.000,999.0,99.0 +1988,3,17,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,-10.0,31,89200,814,1380,262,620,935,69,65200,92500,10500,1740,0,0.0,0,0,64.4,77777,9,999999999,60,0.0540,0,88,999.000,999.0,99.0 +1988,3,17,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,-8.9,32,89200,669,1380,265,483,849,71,50600,82400,10500,1510,120,3.1,3,0,64.4,77777,9,999999999,69,0.0540,0,88,999.000,999.0,99.0 +1988,3,17,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,-8.3,35,89100,478,1380,268,293,679,58,30700,62900,8800,1190,110,3.6,4,1,64.4,77777,9,999999999,69,0.0540,0,88,999.000,999.0,99.0 +1988,3,17,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,-7.8,40,89100,254,1380,281,108,232,66,11500,16600,8400,1250,110,3.1,9,7,48.3,7620,9,999999999,69,0.0540,0,88,999.000,999.0,99.0 +1988,3,17,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,-6.7,50,89100,39,817,277,19,10,18,2000,500,2000,430,130,2.6,10,8,32.2,7620,9,999999999,69,0.0540,0,88,999.000,999.0,99.0 +1988,3,17,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,2.8,-6.7,50,89100,0,0,283,0,0,0,0,0,0,0,270,3.1,10,9,24.1,7620,9,999999999,80,0.0540,0,88,999.000,999.0,99.0 +1988,3,17,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,1.7,-7.8,50,89100,0,0,272,0,0,0,0,0,0,0,0,0.0,10,8,24.1,7620,9,999999999,69,0.0540,0,88,999.000,999.0,99.0 +1988,3,17,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,1.7,-8.9,46,89100,0,0,271,0,0,0,0,0,0,0,0,0.0,10,8,24.1,7620,9,999999999,69,0.0540,0,88,999.000,999.0,99.0 +1988,3,17,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,0.6,-7.2,56,89100,0,0,282,0,0,0,0,0,0,0,0,0.0,10,10,24.1,7620,9,999999999,69,0.0540,0,88,999.000,999.0,99.0 +1988,3,17,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,0.6,-7.2,56,89100,0,0,282,0,0,0,0,0,0,0,0,0.0,10,10,24.1,7620,9,999999999,69,0.0540,0,88,999.000,999.0,99.0 +1988,3,18,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,0.6,-6.7,59,89000,0,0,274,0,0,0,0,0,0,0,0,0.0,10,9,24.1,7620,9,999999999,80,0.0540,0,88,999.000,999.0,99.0 +1988,3,18,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-1.7,-6.7,69,89000,0,0,249,0,0,0,0,0,0,0,0,0.0,8,4,24.1,77777,9,999999999,69,0.0540,0,88,999.000,999.0,99.0 +1988,3,18,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-2.8,-7.2,72,89000,0,0,244,0,0,0,0,0,0,0,0,0.0,8,4,24.1,77777,9,999999999,69,0.0540,0,88,999.000,999.0,99.0 +1988,3,18,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-4.4,-7.8,78,89000,0,0,231,0,0,0,0,0,0,0,310,2.6,2,1,24.1,77777,9,999999999,69,0.0540,0,88,999.000,999.0,99.0 +1988,3,18,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-4.4,-7.8,78,89100,0,0,226,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,69,0.0540,0,88,999.000,999.0,99.0 +1988,3,18,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-4.4,-7.2,81,89100,0,0,227,0,0,0,0,0,0,0,0,0.0,0,0,64.4,77777,9,999999999,69,0.0540,0,88,999.000,999.0,99.0 +1988,3,18,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-5.6,-8.3,81,89200,18,563,229,16,58,9,0,0,0,0,0,0.0,8,2,64.4,77777,9,999999999,69,0.0190,0,88,999.000,999.0,99.0 +1988,3,18,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.7,-6.7,69,89200,211,1379,244,83,304,38,8700,20800,5500,690,0,0.0,8,2,64.4,77777,9,999999999,69,0.0190,0,88,999.000,999.0,99.0 +1988,3,18,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.6,-6.1,61,89200,440,1379,250,272,679,56,28400,61600,8600,1130,0,0.0,6,1,64.4,77777,9,999999999,80,0.0190,0,88,999.000,999.0,99.0 +1988,3,18,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,-6.1,47,89200,640,1379,259,434,821,55,46000,79400,9100,1360,0,0.0,4,0,64.4,77777,9,999999999,80,0.0190,0,88,999.000,999.0,99.0 +1988,3,18,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,-7.2,34,89100,795,1379,271,601,941,60,63500,93000,9800,1600,100,2.1,3,0,64.4,77777,9,999999999,69,0.0190,0,88,999.000,999.0,99.0 +1988,3,18,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,-8.3,26,89100,895,1379,281,698,1000,50,74200,99700,9300,1540,320,1.5,0,0,64.4,77777,9,999999999,69,0.0190,0,88,999.000,999.0,99.0 +1988,3,18,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,-8.3,23,89000,934,1379,287,728,1000,52,77300,99900,9400,1640,210,2.1,0,0,64.4,77777,9,999999999,69,0.0190,0,88,999.000,999.0,99.0 +1988,3,18,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,-8.9,20,88900,908,1379,293,707,982,61,74600,97900,10000,1780,240,6.7,2,0,64.4,77777,9,999999999,69,0.0190,0,88,999.000,999.0,99.0 +1988,3,18,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,-8.3,19,88800,820,1379,304,573,876,53,60700,86800,9000,1510,240,7.2,5,1,64.4,77777,9,999999999,69,0.0190,0,88,999.000,999.0,99.0 +1988,3,18,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,-8.3,19,88800,675,1379,304,449,802,58,47500,78000,9200,1430,250,6.2,7,1,64.4,77777,9,999999999,69,0.0190,0,88,999.000,999.0,99.0 +1988,3,18,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,-8.3,20,88700,484,1379,302,310,699,65,32100,64600,9400,1280,280,4.1,5,1,64.4,77777,9,999999999,69,0.0190,0,88,999.000,999.0,99.0 +1988,3,18,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,-7.8,23,88700,260,1379,305,125,260,77,13200,18800,9600,1500,250,3.1,10,4,64.4,77777,9,999999999,69,0.0190,0,88,999.000,999.0,99.0 +1988,3,18,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,-7.2,27,88700,42,839,303,25,23,23,2700,1200,2600,520,240,3.1,10,6,64.4,7620,9,999999999,69,0.0190,0,88,999.000,999.0,99.0 +1988,3,18,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,9.4,-7.2,30,88700,0,0,296,0,0,0,0,0,0,0,220,3.1,10,6,24.1,7620,9,999999999,69,0.0190,0,88,999.000,999.0,99.0 +1988,3,18,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,7.8,-6.7,36,88700,0,0,285,0,0,0,0,0,0,0,200,3.6,10,4,24.1,77777,9,999999999,80,0.0190,0,88,999.000,999.0,99.0 +1988,3,18,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,8.9,-7.2,32,88700,0,0,294,0,0,0,0,0,0,0,230,2.1,10,6,24.1,7620,9,999999999,69,0.0190,0,88,999.000,999.0,99.0 +1988,3,18,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,7.2,-6.1,39,88700,0,0,296,0,0,0,0,0,0,0,200,3.1,10,8,24.1,7620,9,999999999,80,0.0190,0,88,999.000,999.0,99.0 +1988,3,18,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,6.1,-7.8,37,88600,0,0,279,0,0,0,0,0,0,0,0,0.0,8,5,24.1,7620,9,999999999,69,0.0190,0,88,999.000,999.0,99.0 +1988,3,19,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,6.1,-7.2,38,88600,0,0,278,0,0,0,0,0,0,0,0,0.0,8,4,24.1,77777,9,999999999,69,0.0190,0,88,999.000,999.0,99.0 +1988,3,19,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,1.7,-7.2,52,88600,0,0,259,0,0,0,0,0,0,0,0,0.0,7,3,24.1,77777,9,999999999,69,0.0190,0,88,999.000,999.0,99.0 +1988,3,19,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,0.6,-5.6,64,88500,0,0,256,0,0,0,0,0,0,0,0,0.0,7,3,24.1,77777,9,999999999,80,0.0190,0,88,999.000,999.0,99.0 +1988,3,19,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,0.6,-4.4,70,88500,0,0,257,0,0,0,0,0,0,0,290,2.1,8,3,24.1,77777,9,999999999,89,0.0190,0,88,999.000,999.0,99.0 +1988,3,19,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,0.6,-5.0,67,88400,0,0,257,0,0,0,0,0,0,0,0,0.0,8,3,24.1,77777,9,999999999,80,0.0190,0,88,999.000,999.0,99.0 +1988,3,19,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,1.1,-5.0,64,88400,0,0,265,0,0,0,0,0,0,0,0,0.0,10,6,24.1,7620,9,999999999,80,0.0190,0,88,999.000,999.0,99.0 +1988,3,19,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.6,-5.6,64,88400,21,609,266,14,6,13,0,0,0,0,0,0.0,10,7,48.3,7620,9,999999999,80,0.0580,0,88,999.000,999.0,99.0 +1988,3,19,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.6,-4.4,70,88400,219,1379,267,51,76,39,5700,5400,4800,830,0,0.0,8,7,64.4,7620,9,999999999,89,0.0580,0,88,999.000,999.0,99.0 +1988,3,19,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,-4.4,62,88400,448,1379,273,180,174,124,19700,16300,14400,2800,0,0.0,8,7,64.4,7620,9,999999999,80,0.0580,0,88,999.000,999.0,99.0 +1988,3,19,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,-4.4,53,88400,647,1379,276,355,499,122,38700,49600,15300,2450,300,3.1,7,5,64.4,7620,9,999999999,80,0.0580,0,88,999.000,999.0,99.0 +1988,3,19,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,-4.4,49,88300,802,1379,281,528,699,123,56300,70400,15200,2900,0,0.0,7,5,64.4,7620,9,999999999,80,0.0580,0,88,999.000,999.0,99.0 +1988,3,19,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,-3.9,42,88200,902,1379,290,533,497,209,57400,51400,23700,5340,0,0.0,6,4,64.4,7620,9,999999999,89,0.0580,0,88,999.000,999.0,99.0 +1988,3,19,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,-3.9,35,88100,940,1379,302,461,405,185,50500,42100,21700,4920,0,0.0,6,4,64.4,7620,9,999999999,89,0.0580,0,88,999.000,999.0,99.0 +1988,3,19,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,-3.9,28,87900,914,1379,314,632,768,124,66400,76800,15300,3050,0,0.0,6,3,64.4,77777,9,999999999,89,0.0580,0,88,999.000,999.0,99.0 +1988,3,19,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,-5.6,19,87800,826,1379,329,550,650,161,57600,64900,18600,3750,270,6.2,9,3,64.4,77777,9,999999999,80,0.0580,0,88,999.000,999.0,99.0 +1988,3,19,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,-7.2,15,87700,681,1379,332,434,650,114,45700,64000,14000,2420,310,8.2,9,2,64.4,77777,9,999999999,69,0.0580,0,88,999.000,999.0,99.0 +1988,3,19,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,-7.8,16,87700,490,1379,329,258,373,125,26900,34700,14500,2410,300,7.2,10,4,64.4,77777,9,999999999,69,0.0580,0,88,999.000,999.0,99.0 +1988,3,19,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,-6.7,20,87800,265,1379,332,91,76,76,9800,5800,8700,1630,300,6.2,10,7,64.4,7620,9,999999999,80,0.0580,0,88,999.000,999.0,99.0 +1988,3,19,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,-7.2,23,87900,46,885,313,21,16,19,2200,900,2100,450,300,5.2,10,5,64.4,77777,9,999999999,69,0.0580,0,88,999.000,999.0,99.0 +1988,3,19,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,11.1,-6.1,30,87900,0,0,302,0,0,0,0,0,0,0,290,6.2,9,5,24.1,7620,9,999999999,80,0.0580,0,88,999.000,999.0,99.0 +1988,3,19,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,8.9,-6.1,34,87900,0,0,299,0,0,0,0,0,0,0,0,0.0,9,7,24.1,7620,9,999999999,80,0.0580,0,88,999.000,999.0,99.0 +1988,3,19,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,7.2,-5.6,40,87900,0,0,292,0,0,0,0,0,0,0,190,2.1,10,7,24.1,7620,9,999999999,80,0.0580,0,88,999.000,999.0,99.0 +1988,3,19,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,6.7,-5.6,42,87900,0,0,290,0,0,0,0,0,0,0,240,3.6,10,7,24.1,7620,9,999999999,80,0.0580,0,88,999.000,999.0,99.0 +1988,3,19,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,5.6,-5.6,45,87900,0,0,290,0,0,0,0,0,0,0,0,0.0,10,8,24.1,7620,9,999999999,80,0.0580,0,88,999.000,999.0,99.0 +1988,3,20,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,3.3,-5.6,53,87900,0,0,273,0,0,0,0,0,0,0,0,0.0,8,6,24.1,7620,9,999999999,80,0.0580,0,88,999.000,999.0,99.0 +1988,3,20,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,2.2,-5.6,57,88000,0,0,266,0,0,0,0,0,0,0,0,0.0,7,5,24.1,7620,9,999999999,80,0.0580,0,88,999.000,999.0,99.0 +1988,3,20,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,4.4,-3.9,55,88000,0,0,282,0,0,0,0,0,0,0,200,2.6,10,7,24.1,7620,9,999999999,89,0.0580,0,88,999.000,999.0,99.0 +1988,3,20,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,0.6,-5.0,67,87900,0,0,266,0,0,0,0,0,0,0,0,0.0,10,7,24.1,7620,9,999999999,80,0.0580,0,88,999.000,999.0,99.0 +1988,3,20,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,0.6,-4.4,70,87900,0,0,271,0,0,0,0,0,0,0,180,1.5,10,8,24.1,7620,9,999999999,80,0.0580,0,88,999.000,999.0,99.0 +1988,3,20,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,1.1,-3.9,70,88000,0,0,279,0,0,0,0,0,0,0,190,2.6,10,9,64.4,7620,9,999999999,89,0.0580,0,88,999.000,999.0,99.0 +1988,3,20,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,-3.9,62,88000,25,654,286,6,4,5,0,0,0,0,0,0.0,10,9,64.4,7620,9,999999999,89,0.0510,0,88,999.000,999.0,99.0 +1988,3,20,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,-3.3,70,88000,227,1378,276,77,154,52,8300,10400,6500,950,10,2.6,9,8,64.4,3660,9,999999999,89,0.0510,0,88,999.000,999.0,99.0 +1988,3,20,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,-5.0,34,88000,456,1378,299,214,287,120,22900,26800,14000,2400,240,6.2,9,4,64.4,77777,9,999999999,80,0.0510,0,88,999.000,999.0,99.0 +1988,3,20,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,-4.4,28,88000,655,1378,314,407,696,78,43100,68000,10700,1680,270,8.8,8,4,64.4,77777,9,999999999,80,0.0510,0,88,999.000,999.0,99.0 +1988,3,20,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,-3.9,29,88000,809,1378,314,469,501,176,50700,51300,20400,4040,270,8.8,8,4,64.4,77777,9,999999999,89,0.0510,0,88,999.000,999.0,99.0 +1988,3,20,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,-3.3,26,88000,909,1378,322,596,585,212,64300,60500,24300,5470,260,8.2,8,3,64.4,77777,9,999999999,89,0.0510,0,88,999.000,999.0,99.0 +1988,3,20,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,-2.8,28,87900,947,1378,323,637,706,153,68000,71900,18500,4220,270,7.7,8,3,64.4,77777,9,999999999,89,0.0510,0,88,999.000,999.0,99.0 +1988,3,20,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,-2.8,27,87900,921,1378,322,625,758,119,65900,76000,15000,3000,270,6.2,8,2,64.4,77777,9,999999999,89,0.0510,0,88,999.000,999.0,99.0 +1988,3,20,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,-2.8,26,87800,832,1378,324,582,746,132,61900,75300,16300,3190,280,6.7,10,2,64.4,77777,9,999999999,89,0.0510,0,88,999.000,999.0,99.0 +1988,3,20,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,-2.8,26,87700,687,1378,324,420,575,134,43700,56300,15600,2780,270,8.2,10,2,64.4,77777,9,999999999,89,0.0510,0,88,999.000,999.0,99.0 +1988,3,20,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,-2.8,28,87600,495,1378,319,301,538,108,32000,50300,13900,2050,290,7.2,10,2,64.4,77777,9,999999999,89,0.0510,0,88,999.000,999.0,99.0 +1988,3,20,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,-3.3,28,87600,271,1378,310,129,404,50,13300,30700,7200,900,280,5.2,9,1,64.4,77777,9,999999999,89,0.0510,0,88,999.000,999.0,99.0 +1988,3,20,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,-2.8,37,87600,49,907,296,26,83,19,2500,3100,2300,340,320,4.1,8,1,64.4,77777,9,999999999,89,0.0510,0,88,999.000,999.0,99.0 +1988,3,20,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,10.6,-2.2,41,87600,0,0,287,0,0,0,0,0,0,0,280,3.6,10,0,24.1,77777,9,999999999,100,0.0510,0,88,999.000,999.0,99.0 +1988,3,20,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,10.0,-2.2,43,87700,0,0,294,0,0,0,0,0,0,0,270,5.2,8,2,24.1,77777,9,999999999,100,0.0510,0,88,999.000,999.0,99.0 +1988,3,20,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,8.3,-2.2,48,87700,0,0,283,0,0,0,0,0,0,0,260,3.6,4,1,24.1,77777,9,999999999,100,0.0510,0,88,999.000,999.0,99.0 +1988,3,20,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,6.7,-2.2,54,87600,0,0,272,0,0,0,0,0,0,0,60,3.6,2,0,24.1,77777,9,999999999,100,0.0510,0,88,999.000,999.0,99.0 +1988,3,20,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,7.2,-1.7,54,87600,0,0,274,0,0,0,0,0,0,0,210,2.1,0,0,24.1,77777,9,999999999,100,0.0510,0,88,999.000,999.0,99.0 +1988,3,21,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,2.8,-2.8,67,87600,0,0,256,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,89,0.0510,0,88,999.000,999.0,99.0 +1988,3,21,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,2.8,-1.7,73,87600,0,0,257,0,0,0,0,0,0,0,260,2.6,0,0,24.1,77777,9,999999999,100,0.0510,0,88,999.000,999.0,99.0 +1988,3,21,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,3.9,-1.7,67,87600,0,0,261,0,0,0,0,0,0,0,270,5.2,0,0,24.1,77777,9,999999999,100,0.0510,0,88,999.000,999.0,99.0 +1988,3,21,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,6.1,-0.6,63,87700,0,0,282,0,0,0,0,0,0,0,270,6.2,4,3,24.1,77777,9,999999999,110,0.0510,0,88,999.000,999.0,99.0 +1988,3,21,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,7.2,0.0,61,87700,0,0,295,0,0,0,0,0,0,0,240,6.7,7,6,24.1,2440,9,999999999,110,0.0510,0,88,999.000,999.0,99.0 +1988,3,21,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,6.7,-0.6,60,87700,0,0,292,0,0,0,0,0,0,0,240,5.2,7,6,24.1,2440,9,999999999,110,0.0510,0,88,999.000,999.0,99.0 +1988,3,21,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,0.0,63,87800,28,700,307,11,2,11,1300,0,1300,390,240,3.1,9,9,48.3,2440,9,999999999,110,0.0390,0,88,999.000,999.0,99.0 +1988,3,21,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,-0.6,58,87800,235,1377,302,72,61,61,7800,4400,7000,1300,280,3.6,9,8,64.4,2290,9,999999999,110,0.0390,0,88,999.000,999.0,99.0 +1988,3,21,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,-0.6,54,87800,464,1377,314,153,49,137,16800,4600,15300,3670,280,7.2,9,9,64.4,2290,9,999999999,110,0.0390,0,88,999.000,999.0,99.0 +1988,3,21,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,-1.1,52,87900,662,1377,295,329,350,162,34900,34800,18100,3360,270,5.7,7,5,64.4,3050,9,999999999,100,0.0390,0,88,999.000,999.0,99.0 +1988,3,21,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,0.0,54,87800,816,1377,299,457,499,162,49800,51200,19400,3720,260,7.2,10,5,64.4,3050,9,999999999,110,0.0390,0,88,999.000,999.0,99.0 +1988,3,21,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,-1.1,43,87700,916,1377,310,424,329,206,45800,34100,23100,5350,290,8.2,9,6,64.4,3050,9,999999999,100,0.0390,0,88,999.000,999.0,99.0 +1988,3,21,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,-1.7,40,87600,953,1377,312,623,567,231,66900,58800,26100,6360,290,7.2,10,6,64.4,7620,9,999999999,100,0.0390,0,88,999.000,999.0,99.0 +1988,3,21,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,-1.1,40,87500,927,1377,324,340,137,248,37700,14500,27900,7250,310,7.2,10,8,64.4,7620,9,999999999,100,0.0390,0,88,999.000,999.0,99.0 +1988,3,21,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,-1.1,42,87500,838,1377,338,200,4,198,23400,300,23200,8800,310,5.2,10,10,64.4,7620,9,999999999,100,0.0390,0,88,999.000,999.0,99.0 +1988,3,21,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,-2.2,40,87400,692,1377,334,217,20,207,24600,1700,23800,8150,300,5.7,10,10,64.4,6100,9,999999999,100,0.0390,0,88,999.000,999.0,99.0 +1988,3,21,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,-2.2,41,87400,501,1377,331,188,7,185,20600,600,20400,6100,290,2.1,10,10,48.3,2740,9,999999999,100,0.0390,0,88,999.000,999.0,99.0 +1988,3,21,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,-2.2,43,87400,276,1377,328,68,4,67,7600,100,7600,2340,280,2.1,10,10,32.2,1830,9,999999999,100,0.0390,0,88,999.000,999.0,99.0 +1988,3,21,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,-1.1,48,87400,52,929,327,18,1,18,2000,0,2000,610,220,4.6,10,10,32.2,1830,9,999999999,100,0.0390,0,88,999.000,999.0,99.0 +1988,3,21,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,8.3,-0.6,54,87400,0,0,322,0,0,0,0,0,0,0,250,3.1,10,10,24.1,1830,9,999999999,110,0.0390,0,88,999.000,999.0,99.0 +1988,3,21,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,7.8,-0.6,56,87500,0,0,320,0,0,0,0,0,0,0,290,4.6,10,10,24.1,1520,9,999999999,110,0.0390,0,88,999.000,999.0,99.0 +1988,3,21,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,5.6,0.6,71,87600,0,0,312,0,0,0,0,0,0,0,260,6.7,10,10,24.1,910,9,999999999,110,0.0390,0,88,999.000,999.0,99.0 +1988,3,21,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,5.0,-0.6,68,87700,0,0,308,0,0,0,0,0,0,0,270,4.1,10,10,24.1,1980,9,999999999,110,0.0390,0,88,999.000,999.0,99.0 +1988,3,21,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,5.0,-1.1,65,87700,0,0,292,0,0,0,0,0,0,0,270,2.6,9,8,24.1,3050,9,999999999,100,0.0390,0,88,999.000,999.0,99.0 +1988,3,22,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,3.9,-3.3,60,87800,0,0,273,0,0,0,0,0,0,0,280,5.7,6,4,24.1,7620,9,999999999,89,0.0390,0,88,999.000,999.0,99.0 +1988,3,22,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,2.8,-3.9,62,87900,0,0,268,0,0,0,0,0,0,0,270,3.6,6,4,24.1,7620,9,999999999,89,0.0390,0,88,999.000,999.0,99.0 +1988,3,22,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,3.3,-3.9,60,87900,0,0,270,0,0,0,0,0,0,0,260,7.2,6,4,24.1,7620,9,999999999,89,0.0390,0,88,999.000,999.0,99.0 +1988,3,22,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,3.3,-4.4,57,88000,0,0,274,0,0,0,0,0,0,0,250,4.1,7,6,24.1,7620,9,999999999,80,0.0390,0,88,999.000,999.0,99.0 +1988,3,22,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,2.8,-4.4,59,88000,0,0,272,0,0,0,0,0,0,0,240,3.1,7,6,24.1,7620,9,999999999,80,0.0390,0,88,999.000,999.0,99.0 +1988,3,22,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,2.2,-4.4,62,88000,0,0,263,0,0,0,0,0,0,0,250,5.2,6,3,32.2,77777,9,999999999,80,0.0390,0,88,999.000,999.0,99.0 +1988,3,22,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,-7.2,50,88000,32,745,261,18,53,13,1700,1400,1600,220,280,6.2,7,3,48.3,77777,9,999999999,69,0.0340,0,88,999.000,999.0,99.0 +1988,3,22,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,-5.6,55,88100,243,1376,265,124,408,53,12700,29300,7500,920,290,2.6,9,3,64.4,77777,9,999999999,80,0.0340,0,88,999.000,999.0,99.0 +1988,3,22,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,-7.2,43,88100,471,1376,273,227,335,113,23900,30900,13300,2150,290,5.7,10,5,64.4,77777,9,999999999,69,0.0340,0,88,999.000,999.0,99.0 +1988,3,22,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,-6.1,43,88200,669,1376,282,307,314,155,33600,32500,17700,3310,270,4.1,10,6,48.3,2130,9,999999999,80,0.0340,0,88,999.000,999.0,99.0 +1988,3,22,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,-7.2,40,88200,823,1376,288,380,295,204,41600,31400,22800,4900,260,4.6,10,8,48.3,2130,9,999999999,69,0.0340,0,88,999.000,999.0,99.0 +1988,3,22,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,-7.2,37,88100,922,1376,293,469,299,269,51000,32100,29400,7290,260,8.2,9,8,48.3,2130,9,999999999,69,0.0340,0,88,999.000,999.0,99.0 +1988,3,22,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,-8.3,31,88100,959,1376,296,377,122,293,41600,12900,32600,8850,290,6.7,10,8,48.3,2440,9,999999999,69,0.0340,0,88,999.000,999.0,99.0 +1988,3,22,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,-9.4,26,88100,933,1376,297,478,352,240,52500,37900,26800,6450,250,8.2,10,7,48.3,2440,9,999999999,60,0.0340,0,88,999.000,999.0,99.0 +1988,3,22,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,-7.8,29,88000,843,1376,293,513,575,161,53800,57600,18400,3830,290,9.3,7,5,64.4,2440,9,999999999,69,0.0340,0,88,999.000,999.0,99.0 +1988,3,22,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,-6.7,32,88000,698,1376,292,385,524,119,40400,51700,14100,2550,270,5.2,6,4,64.4,2440,9,999999999,69,0.0340,0,88,999.000,999.0,99.0 +1988,3,22,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,-6.7,34,87900,506,1376,287,271,454,104,29000,42800,13200,1970,280,3.6,6,4,64.4,6100,9,999999999,69,0.0340,0,88,999.000,999.0,99.0 +1988,3,22,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,-6.7,37,87900,282,1376,302,79,41,70,8600,3400,7900,1780,330,1.5,10,9,64.4,2130,9,999999999,69,0.0340,0,88,999.000,999.0,99.0 +1988,3,22,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,-6.1,42,87900,56,975,306,18,3,18,2100,0,2100,610,0,0.0,10,10,64.4,2290,9,999999999,80,0.0340,0,88,999.000,999.0,99.0 +1988,3,22,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,5.6,-6.1,43,87800,0,0,304,0,0,0,0,0,0,0,180,1.5,10,10,24.1,2740,9,999999999,80,0.0340,0,88,999.000,999.0,99.0 +1988,3,22,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,4.4,-5.6,49,87700,0,0,285,0,0,0,0,0,0,0,180,2.6,9,8,24.1,2590,9,999999999,80,0.0340,0,88,999.000,999.0,99.0 +1988,3,22,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,2.2,-6.1,55,87600,0,0,264,0,0,0,0,0,0,0,0,0.0,6,4,24.1,7620,9,999999999,80,0.0340,0,88,999.000,999.0,99.0 +1988,3,22,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-1.1,-6.7,66,87500,0,0,239,0,0,0,0,0,0,0,330,2.1,1,0,24.1,77777,9,999999999,69,0.0340,0,88,999.000,999.0,99.0 +1988,3,22,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-0.6,-6.1,67,87500,0,0,249,0,0,0,0,0,0,0,310,2.6,6,2,24.1,77777,9,999999999,80,0.0340,0,88,999.000,999.0,99.0 +1988,3,23,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,1.1,-6.1,59,87400,0,0,255,0,0,0,0,0,0,0,0,0.0,7,2,24.1,77777,9,999999999,80,0.0340,0,88,999.000,999.0,99.0 +1988,3,23,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-1.1,-6.1,69,87300,0,0,247,0,0,0,0,0,0,0,0,0.0,6,2,24.1,77777,9,999999999,80,0.0340,0,88,999.000,999.0,99.0 +1988,3,23,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,0.0,-5.6,67,87200,0,0,248,0,0,0,0,0,0,0,200,5.2,4,1,24.1,77777,9,999999999,80,0.0340,0,88,999.000,999.0,99.0 +1988,3,23,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,6.1,-5.6,43,87100,0,0,277,0,0,0,0,0,0,0,180,5.2,8,3,24.1,77777,9,999999999,80,0.0340,0,88,999.000,999.0,99.0 +1988,3,23,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,7.2,-5.6,40,87000,0,0,289,0,0,0,0,0,0,0,190,4.1,10,6,24.1,7620,9,999999999,80,0.0340,0,88,999.000,999.0,99.0 +1988,3,23,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,3.9,-5.0,53,86800,0,0,284,0,0,0,0,0,0,0,130,3.6,10,8,24.1,2740,9,999999999,80,0.0340,0,88,999.000,999.0,99.0 +1988,3,23,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,-3.3,47,86700,36,791,299,11,2,11,1300,0,1300,400,150,5.7,10,8,48.3,2740,9,999999999,89,0.0540,0,88,999.000,999.0,99.0 +1988,3,23,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,-1.7,62,86900,251,1375,306,49,39,42,5500,3000,5000,900,280,11.3,10,10,4.8,460,9,999999999,100,0.0540,0,88,999.000,999.0,99.0 +1988,3,23,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,0.0,76,87000,479,1375,303,140,10,137,15800,700,15500,4990,280,7.7,10,10,24.1,1830,9,999999999,110,0.0540,0,88,999.000,999.0,99.0 +1988,3,23,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,-1.1,68,87000,677,1375,304,207,21,197,23600,1700,22700,7780,230,3.1,10,10,64.4,4270,9,999999999,100,0.0540,0,88,999.000,999.0,99.0 +1988,3,23,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,-2.2,58,87000,830,1375,308,246,2,245,28300,200,28100,10210,280,6.2,10,10,64.4,4570,9,999999999,100,0.0540,0,88,999.000,999.0,99.0 +1988,3,23,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,-3.3,49,87100,929,1375,312,309,1,308,35300,100,35300,12730,250,6.7,10,10,64.4,4570,9,999999999,89,0.0540,0,88,999.000,999.0,99.0 +1988,3,23,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,-3.3,42,87000,966,1375,296,433,395,156,48500,41200,19500,4270,270,6.2,6,5,64.4,6100,9,999999999,89,0.0540,0,88,999.000,999.0,99.0 +1988,3,23,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,-3.9,38,87000,938,1375,297,619,677,158,65900,68800,18800,4300,250,7.7,6,4,64.4,6100,9,999999999,89,0.0540,0,88,999.000,999.0,99.0 +1988,3,23,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,-3.3,49,87000,849,1375,289,330,117,257,36200,12300,28500,7070,230,6.7,8,6,48.3,6100,9,999999999,89,0.0540,0,88,999.000,999.0,99.0 +1988,3,23,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,-4.4,44,87100,703,1375,298,264,261,131,29400,27300,15400,2760,280,14.4,9,8,32.2,1520,9,999999999,80,0.0540,0,88,999.000,999.0,99.0 +1988,3,23,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,-3.3,47,87100,512,1375,289,215,329,93,23300,31100,11700,1740,260,11.3,7,5,64.4,6100,9,999999999,89,0.0540,0,88,999.000,999.0,99.0 +1988,3,23,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,-5.6,42,87100,287,1375,282,106,257,53,11400,19700,7300,940,270,10.3,5,4,64.4,77777,9,999999999,80,0.0540,0,88,999.000,999.0,99.0 +1988,3,23,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,-6.1,45,87200,60,997,273,21,53,16,2100,1800,2000,270,280,9.3,4,3,64.4,77777,9,999999999,80,0.0540,0,88,999.000,999.0,99.0 +1988,3,23,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,4.4,-6.1,47,87400,0,0,270,0,0,0,0,0,0,0,270,8.8,4,3,24.1,77777,9,999999999,80,0.0540,0,88,999.000,999.0,99.0 +1988,3,23,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,3.9,-5.6,51,87400,0,0,263,0,0,0,0,0,0,0,270,6.2,4,1,24.1,77777,9,999999999,80,0.0540,0,88,999.000,999.0,99.0 +1988,3,23,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,3.9,-7.2,45,87400,0,0,265,0,0,0,0,0,0,0,250,7.7,4,2,24.1,77777,9,999999999,69,0.0540,0,88,999.000,999.0,99.0 +1988,3,23,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,3.9,-5.6,51,87500,0,0,271,0,0,0,0,0,0,0,260,6.2,7,4,24.1,6710,9,999999999,80,0.0540,0,88,999.000,999.0,99.0 +1988,3,23,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,3.9,-5.6,51,87600,0,0,283,0,0,0,0,0,0,0,240,10.3,10,8,24.1,6710,9,999999999,80,0.0540,0,88,999.000,999.0,99.0 +1988,3,24,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,3.3,-6.7,48,87400,0,0,279,0,0,0,0,0,0,0,270,5.2,10,8,24.1,6710,9,999999999,69,0.0540,0,88,999.000,999.0,99.0 +1988,3,24,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,3.9,-7.8,43,87700,0,0,276,0,0,0,0,0,0,0,270,8.8,10,7,24.1,6710,9,999999999,69,0.0540,0,88,999.000,999.0,99.0 +1988,3,24,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,2.8,-9.4,41,87700,0,0,267,0,0,0,0,0,0,0,280,10.3,10,6,24.1,6710,9,999999999,60,0.0540,0,88,999.000,999.0,99.0 +1988,3,24,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,2.8,-6.7,50,87900,0,0,270,0,0,0,0,0,0,0,260,9.3,10,6,24.1,6710,9,999999999,69,0.0540,0,88,999.000,999.0,99.0 +1988,3,24,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,1.7,-8.3,48,88000,0,0,262,0,0,0,0,0,0,0,270,7.2,10,5,24.1,77777,9,999999999,69,0.0540,0,88,999.000,999.0,99.0 +1988,3,24,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,1.1,-7.8,52,88000,0,0,262,0,0,0,0,0,0,0,270,6.2,8,6,24.1,6710,9,999999999,69,0.0540,0,88,999.000,999.0,99.0 +1988,3,24,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.6,-7.8,54,88100,41,836,258,21,34,17,2100,1300,2000,350,260,6.2,6,5,48.3,6100,9,999999999,69,0.0360,0,88,999.000,999.0,99.0 +1988,3,24,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,-7.8,48,88100,258,1375,262,145,549,43,15100,41200,7400,790,270,8.2,4,4,64.4,77777,9,999999999,69,0.0360,0,88,999.000,999.0,99.0 +1988,3,24,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,-8.9,42,88200,486,1375,265,245,382,111,26000,35500,13400,2110,250,8.8,6,5,64.4,6100,9,999999999,69,0.0360,0,88,999.000,999.0,99.0 +1988,3,24,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,-11.1,33,88200,684,1375,263,444,684,105,47100,67700,13400,2260,270,7.7,4,3,64.4,77777,9,999999999,60,0.0360,0,88,999.000,999.0,99.0 +1988,3,24,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,-11.7,32,88200,837,1375,267,492,538,166,51600,53800,18800,3910,260,10.3,7,5,64.4,1980,9,999999999,60,0.0360,0,88,999.000,999.0,99.0 +1988,3,24,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,-11.1,32,88200,935,1375,272,574,538,209,62200,55800,24100,5580,280,9.3,8,6,64.4,1980,9,999999999,60,0.0360,0,88,999.000,999.0,99.0 +1988,3,24,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,-10.0,31,88200,972,1375,277,668,763,129,70400,76600,16100,3460,250,10.3,6,5,64.4,6100,9,999999999,60,0.0360,0,88,999.000,999.0,99.0 +1988,3,24,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,-11.1,27,88100,944,1375,274,655,777,122,69200,78000,15400,3180,260,10.3,4,3,64.4,77777,9,999999999,60,0.0360,0,88,999.000,999.0,99.0 +1988,3,24,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,-11.7,28,88100,854,1375,273,587,702,152,62100,70700,18000,3710,250,8.2,6,5,64.4,6100,9,999999999,60,0.0360,0,88,999.000,999.0,99.0 +1988,3,24,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,-10.6,27,88200,709,1375,283,392,499,135,42700,50400,16600,2820,260,7.7,7,6,64.4,2130,9,999999999,60,0.0360,0,88,999.000,999.0,99.0 +1988,3,24,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,-11.1,27,88100,517,1375,276,326,684,70,33900,64000,9700,1380,270,8.2,5,4,64.4,77777,9,999999999,60,0.0360,0,88,999.000,999.0,99.0 +1988,3,24,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,-11.7,29,88100,293,1375,267,151,451,55,15500,35300,8000,990,270,7.7,3,3,64.4,77777,9,999999999,60,0.0360,0,88,999.000,999.0,99.0 +1988,3,24,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,-11.1,33,88000,64,1019,263,38,213,17,3200,10000,2500,310,270,8.8,3,3,64.4,77777,9,999999999,60,0.0360,0,88,999.000,999.0,99.0 +1988,3,24,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,3.3,-10.6,36,88000,0,0,264,0,0,0,0,0,0,0,250,2.6,5,4,24.1,77777,9,999999999,60,0.0360,0,88,999.000,999.0,99.0 +1988,3,24,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,2.8,-10.0,39,88000,0,0,264,0,0,0,0,0,0,0,220,3.6,7,5,24.1,6100,9,999999999,60,0.0360,0,88,999.000,999.0,99.0 +1988,3,24,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,2.8,-9.4,41,87900,0,0,263,0,0,0,0,0,0,0,260,6.7,5,4,24.1,77777,9,999999999,60,0.0360,0,88,999.000,999.0,99.0 +1988,3,24,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,1.1,-10.0,44,87900,0,0,251,0,0,0,0,0,0,0,240,2.6,3,2,24.1,77777,9,999999999,60,0.0360,0,88,999.000,999.0,99.0 +1988,3,24,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,1.7,-8.9,46,87800,0,0,255,0,0,0,0,0,0,0,0,0.0,2,2,24.1,77777,9,999999999,69,0.0360,0,88,999.000,999.0,99.0 +1988,3,25,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,1.7,-10.6,40,87700,0,0,257,0,0,0,0,0,0,0,160,2.1,6,4,24.1,6100,9,999999999,60,0.0360,0,88,999.000,999.0,99.0 +1988,3,25,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,2.2,-8.9,44,87600,0,0,268,0,0,0,0,0,0,0,270,2.6,9,7,24.1,6100,9,999999999,69,0.0360,0,88,999.000,999.0,99.0 +1988,3,25,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,1.7,-8.3,48,87600,0,0,285,0,0,0,0,0,0,0,0,0.0,10,10,24.1,3660,9,999999999,69,0.0360,0,88,999.000,999.0,99.0 +1988,3,25,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,2.2,-4.4,62,87600,0,0,277,0,0,0,0,0,0,0,300,4.6,9,8,24.1,1830,9,999999999,80,0.0360,0,88,999.000,999.0,99.0 +1988,3,25,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,1.7,-1.7,79,87700,0,0,268,0,0,0,0,0,0,0,280,2.1,7,5,24.1,3050,9,999999999,100,0.0360,0,88,999.000,999.0,99.0 +1988,3,25,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,1.7,-2.2,76,87800,0,0,278,0,0,0,0,0,0,0,70,2.1,9,8,24.1,1680,9,999999999,100,0.0360,0,88,999.000,999.0,99.0 +1988,3,25,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,-3.3,65,87900,45,882,295,16,0,16,1800,0,1800,550,310,4.1,10,10,40.2,1980,9,999999999,89,0.0320,0,88,999.000,999.0,99.0 +1988,3,25,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,-4.4,59,88000,266,1374,280,53,16,50,5800,1300,5600,1320,330,4.1,9,8,48.3,1520,9,999999999,80,0.0320,0,88,999.000,999.0,99.0 +1988,3,25,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,-4.4,55,88100,494,1374,284,157,89,126,17400,8600,14300,2890,270,8.8,9,8,48.3,2440,9,999999999,80,0.0320,0,88,999.000,999.0,99.0 +1988,3,25,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,-7.2,38,88200,691,1374,278,468,699,118,49300,69000,14600,2520,280,11.3,8,4,64.4,77777,9,999999999,69,0.0320,0,88,999.000,999.0,99.0 +1988,3,25,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,-6.7,38,88300,844,1374,285,437,279,266,47100,29700,28800,6790,280,10.3,8,6,64.4,6710,9,999999999,69,0.0320,0,88,999.000,999.0,99.0 +1988,3,25,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,-7.8,34,88300,942,1374,294,422,191,292,46500,20200,32600,8680,290,10.8,9,8,64.4,6710,9,999999999,69,0.0320,0,88,999.000,999.0,99.0 +1988,3,25,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,-6.1,34,88400,978,1374,290,673,681,189,71000,68900,21800,5360,270,10.8,8,4,64.4,77777,9,999999999,80,0.0320,0,88,999.000,999.0,99.0 +1988,3,25,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,-7.8,31,88400,950,1374,294,555,389,286,60300,41900,31300,8050,290,8.8,8,7,64.4,1980,9,999999999,69,0.0320,0,88,999.000,999.0,99.0 +1988,3,25,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,-7.2,29,88400,860,1374,299,495,430,226,52500,44200,24700,5580,290,8.8,7,6,64.4,1980,9,999999999,69,0.0320,0,88,999.000,999.0,99.0 +1988,3,25,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,-6.1,34,88400,714,1374,295,398,535,120,41900,53000,14300,2610,300,9.8,7,6,64.4,1980,9,999999999,80,0.0320,0,88,999.000,999.0,99.0 +1988,3,25,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,-5.0,36,88400,522,1374,299,246,288,137,26400,28100,15700,2800,300,8.8,7,6,64.4,1980,9,999999999,80,0.0320,0,88,999.000,999.0,99.0 +1988,3,25,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,-5.0,39,88400,298,1374,309,80,44,71,8800,3700,8000,1830,300,5.2,10,9,64.4,1830,9,999999999,80,0.0320,0,88,999.000,999.0,99.0 +1988,3,25,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,-4.4,45,88400,68,1065,285,38,27,35,4000,1600,3900,750,270,4.1,7,5,48.3,6710,9,999999999,80,0.0320,0,88,999.000,999.0,99.0 +1988,3,25,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,5.6,-3.9,51,88400,0,0,277,0,0,0,0,0,0,0,240,2.1,6,3,24.1,77777,9,999999999,89,0.0320,0,88,999.000,999.0,99.0 +1988,3,25,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,5.6,-3.3,53,88400,0,0,278,0,0,0,0,0,0,0,230,2.1,4,3,24.1,77777,9,999999999,89,0.0320,0,88,999.000,999.0,99.0 +1988,3,25,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,1.1,-4.4,67,88400,0,0,257,0,0,0,0,0,0,0,0,0.0,3,2,24.1,77777,9,999999999,80,0.0320,0,88,999.000,999.0,99.0 +1988,3,25,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,2.2,-3.9,64,88400,0,0,261,0,0,0,0,0,0,0,150,3.6,6,2,24.1,77777,9,999999999,89,0.0320,0,88,999.000,999.0,99.0 +1988,3,25,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,1.7,-4.4,64,88300,0,0,264,0,0,0,0,0,0,0,330,1.5,4,4,24.1,77777,9,999999999,80,0.0320,0,88,999.000,999.0,99.0 +1988,3,26,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,1.1,-3.3,73,88300,0,0,258,0,0,0,0,0,0,0,300,2.6,3,2,24.1,77777,9,999999999,89,0.0320,0,88,999.000,999.0,99.0 +1988,3,26,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,1.1,-3.9,70,88200,0,0,257,0,0,0,0,0,0,0,170,1.5,2,2,24.1,77777,9,999999999,89,0.0320,0,88,999.000,999.0,99.0 +1988,3,26,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-0.6,-4.4,75,88200,0,0,247,0,0,0,0,0,0,0,0,0.0,1,1,24.1,77777,9,999999999,80,0.0320,0,88,999.000,999.0,99.0 +1988,3,26,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,0.6,-3.9,73,88100,0,0,252,0,0,0,0,0,0,0,0,0.0,1,1,24.1,77777,9,999999999,89,0.0320,0,88,999.000,999.0,99.0 +1988,3,26,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-1.1,-4.4,78,88100,0,0,245,0,0,0,0,0,0,0,0,0.0,1,1,24.1,77777,9,999999999,80,0.0320,0,88,999.000,999.0,99.0 +1988,3,26,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-1.1,-4.4,78,88100,0,0,249,0,0,0,0,0,0,0,230,1.5,3,2,32.2,77777,9,999999999,80,0.0320,0,88,999.000,999.0,99.0 +1988,3,26,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.1,-3.9,82,88100,50,927,251,24,77,17,2300,2900,2100,300,0,0.0,6,3,64.4,77777,9,999999999,89,0.0270,0,88,999.000,999.0,99.0 +1988,3,26,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,-1.7,76,88100,274,1373,266,126,374,53,13100,28500,7400,950,190,1.5,7,3,64.4,77777,9,999999999,100,0.0270,0,88,999.000,999.0,99.0 +1988,3,26,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,-2.2,56,88100,501,1373,278,296,667,54,31600,62700,8600,1170,20,1.5,6,2,64.4,77777,9,999999999,100,0.0270,0,88,999.000,999.0,99.0 +1988,3,26,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,-1.1,40,88000,698,1373,304,467,677,124,49100,66800,15000,2640,70,1.5,8,2,64.4,77777,9,999999999,100,0.0270,0,88,999.000,999.0,99.0 +1988,3,26,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,-3.3,25,87900,851,1373,325,577,738,121,62000,75000,15400,3020,270,7.2,9,3,64.4,77777,9,999999999,89,0.0270,0,88,999.000,999.0,99.0 +1988,3,26,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,-3.3,24,87700,948,1373,330,721,841,141,75000,83900,16900,3510,270,2.6,8,3,64.4,77777,9,999999999,89,0.0270,0,88,999.000,999.0,99.0 +1988,3,26,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,-4.4,19,87600,984,1373,341,624,498,268,66400,51700,29300,7830,280,8.2,10,4,64.4,77777,9,999999999,80,0.0270,0,88,999.000,999.0,99.0 +1988,3,26,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,-4.4,19,87400,956,1373,351,401,91,338,44200,9300,37700,11720,230,8.2,10,7,64.4,7620,9,999999999,80,0.0270,0,88,999.000,999.0,99.0 +1988,3,26,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,-5.6,18,87200,865,1373,359,410,171,303,44700,17900,33400,8450,230,10.3,10,9,64.4,1830,9,999999999,80,0.0270,0,88,999.000,999.0,99.0 +1988,3,26,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,-5.6,19,87200,719,1373,357,211,79,170,23300,7800,19200,5450,260,10.8,10,9,64.4,1830,9,999999999,80,0.0270,0,88,999.000,999.0,99.0 +1988,3,26,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,-5.6,19,87000,528,1373,344,195,90,161,21500,8600,18100,4430,220,7.7,8,7,64.4,3050,9,999999999,80,0.0270,0,88,999.000,999.0,99.0 +1988,3,26,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,-7.2,18,86800,303,1373,328,134,209,88,14100,16500,10400,1720,220,7.2,6,4,64.4,7620,9,999999999,69,0.0270,0,88,999.000,999.0,99.0 +1988,3,26,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,-6.7,19,86500,72,1087,331,34,91,26,3400,3400,3200,470,220,6.2,8,6,64.4,7620,9,999999999,69,0.0270,0,88,999.000,999.0,99.0 +1988,3,26,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,17.2,-7.2,18,86600,0,0,356,0,0,0,0,0,0,0,230,5.7,10,10,24.1,3050,9,999999999,69,0.0270,0,88,999.000,999.0,99.0 +1988,3,26,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,14.4,-3.9,28,86500,0,0,347,0,0,0,0,0,0,0,240,6.2,10,10,24.1,6710,9,999999999,89,0.0270,0,88,999.000,999.0,99.0 +1988,3,26,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,15.0,-2.8,30,86400,0,0,351,0,0,0,0,0,0,0,220,8.8,10,10,24.1,6710,9,999999999,89,0.0270,0,88,999.000,999.0,99.0 +1988,3,26,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,5.6,3.3,86,86800,0,0,315,0,0,0,0,0,0,0,280,10.3,10,10,24.1,1220,9,999999999,129,0.0270,0,88,999.000,999.0,99.0 +1988,3,26,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,5.0,2.2,83,86800,0,0,311,0,0,0,0,0,0,0,270,6.7,10,10,24.1,1220,9,999999999,120,0.0270,0,88,999.000,999.0,99.0 +1988,3,27,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,3.3,-1.1,73,86900,0,0,277,0,0,0,0,0,0,0,280,5.2,6,6,24.1,1220,9,999999999,100,0.0270,0,88,999.000,999.0,99.0 +1988,3,27,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,2.8,-2.2,70,86900,0,0,272,0,0,0,0,0,0,0,290,4.1,5,5,24.1,77777,9,999999999,89,0.0270,0,88,999.000,999.0,99.0 +1988,3,27,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,2.2,-3.9,64,86900,0,0,270,0,0,0,0,0,0,0,290,6.2,7,6,24.1,1370,9,999999999,89,0.0270,0,88,999.000,999.0,99.0 +1988,3,27,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,0.6,-8.3,52,87000,0,0,251,0,0,0,0,0,0,0,280,8.8,2,2,24.1,77777,9,999999999,69,0.0270,0,88,999.000,999.0,99.0 +1988,3,27,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-0.6,-10.6,47,87000,0,0,241,0,0,0,0,0,0,0,290,7.7,1,1,24.1,77777,9,999999999,60,0.0270,0,88,999.000,999.0,99.0 +1988,3,27,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-0.6,-14.4,35,87100,0,0,245,0,0,0,0,0,0,0,280,8.2,6,4,32.2,6100,9,999999999,50,0.0270,0,88,999.000,999.0,99.0 +1988,3,27,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.1,-14.4,36,87200,55,972,243,28,77,21,2700,2500,2600,370,280,6.2,5,4,64.4,77777,9,999999999,50,0.0410,0,88,999.000,999.0,99.0 +1988,3,27,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.0,-10.6,45,87200,282,1372,247,154,531,46,16100,41300,7600,850,280,9.3,2,2,64.4,77777,9,999999999,60,0.0410,0,88,999.000,999.0,99.0 +1988,3,27,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.1,-11.1,40,87200,509,1372,253,291,490,111,31100,46200,13900,2120,270,10.3,3,3,48.3,77777,9,999999999,60,0.0410,0,88,999.000,999.0,99.0 +1988,3,27,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,-10.6,40,87200,705,1372,259,512,716,145,53200,70200,17000,3030,270,9.3,5,5,64.4,77777,9,999999999,60,0.0410,0,88,999.000,999.0,99.0 +1988,3,27,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.1,-12.2,37,87300,857,1372,278,229,7,225,26600,600,26300,9810,270,7.7,10,10,48.3,1520,9,999999999,60,0.0410,0,88,999.000,999.0,99.0 +1988,3,27,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.1,-12.2,37,87300,954,1372,278,277,3,275,32200,300,32000,12010,280,7.2,10,10,32.2,1830,9,999999999,60,0.0410,0,88,999.000,999.0,99.0 +1988,3,27,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.1,-11.1,40,87400,990,1372,280,287,24,269,33500,2100,32000,12050,280,8.2,10,10,32.2,1680,9,999999999,60,0.0410,0,88,999.000,999.0,99.0 +1988,3,27,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,-11.1,36,87500,961,1372,287,267,10,260,31200,900,30500,11590,280,10.3,10,10,48.3,1680,9,999999999,60,0.0410,0,88,999.000,999.0,99.0 +1988,3,27,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,-12.8,32,87500,871,1372,282,268,7,263,30700,600,30300,11050,300,11.3,10,10,48.3,1680,9,999999999,50,0.0410,0,88,999.000,999.0,99.0 +1988,3,27,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,-14.4,28,87500,725,1372,280,236,0,236,26700,0,26700,9150,300,9.3,10,10,48.3,3660,9,999999999,50,0.0410,0,88,999.000,999.0,99.0 +1988,3,27,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,-14.4,28,87600,533,1372,280,159,2,158,17800,200,17800,5830,300,7.7,10,10,48.3,3660,9,999999999,50,0.0410,0,88,999.000,999.0,99.0 +1988,3,27,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,-13.3,32,87600,309,1372,272,107,69,92,11800,5800,10400,2270,290,9.3,10,9,48.3,3660,9,999999999,50,0.0410,0,88,999.000,999.0,99.0 +1988,3,27,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.6,-12.8,37,87700,76,1132,262,20,13,19,2200,700,2100,470,290,9.3,10,8,32.2,3660,9,999999999,50,0.0410,0,88,999.000,999.0,99.0 +1988,3,27,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,0.0,-11.1,43,87700,0,0,268,0,0,0,0,0,0,0,280,7.7,10,9,24.1,3660,9,999999999,60,0.0410,0,88,999.000,999.0,99.0 +1988,3,27,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,0.0,-11.7,42,87800,0,0,267,0,0,0,0,0,0,0,300,7.7,10,9,24.1,3660,9,999999999,60,0.0410,0,88,999.000,999.0,99.0 +1988,3,27,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,0.0,-11.1,43,87800,0,0,268,0,0,0,0,0,0,0,280,7.2,10,9,24.1,3660,9,999999999,60,0.0410,0,88,999.000,999.0,99.0 +1988,3,27,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,0.0,-11.1,43,87900,0,0,275,0,0,0,0,0,0,0,270,8.2,10,10,24.1,3660,9,999999999,60,0.0410,0,88,999.000,999.0,99.0 +1988,3,27,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,0.0,-11.1,43,87900,0,0,275,0,0,0,0,0,0,0,290,6.7,10,10,24.1,3660,9,999999999,60,0.0410,0,88,999.000,999.0,99.0 +1988,3,28,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-0.6,-12.2,41,87900,0,0,258,0,0,0,0,0,0,0,290,8.2,10,8,24.1,6710,9,999999999,50,0.0410,0,88,999.000,999.0,99.0 +1988,3,28,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-1.1,-12.8,41,88000,0,0,256,0,0,0,0,0,0,0,270,6.2,10,8,24.1,6710,9,999999999,50,0.0410,0,88,999.000,999.0,99.0 +1988,3,28,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-1.1,-10.0,51,88100,0,0,272,0,0,0,0,0,0,0,270,6.7,10,10,24.1,2130,9,999999999,60,0.0410,0,88,999.000,999.0,99.0 +1988,3,28,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-2.8,-6.7,75,88100,0,0,268,0,0,0,0,0,0,0,20,5.2,10,10,24.1,1010,9,999999999,69,0.0410,0,88,999.000,999.0,99.0 +1988,3,28,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-3.3,-5.6,85,88200,0,0,268,0,0,0,0,0,0,0,0,0.0,10,10,24.1,980,9,999999999,80,0.0410,0,88,999.000,999.0,99.0 +1988,3,28,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-3.9,-5.6,88,88300,0,0,265,0,0,0,0,0,0,0,10,4.6,10,10,11.3,760,9,999999999,80,0.0410,0,88,999.000,999.0,99.0 +1988,3,28,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-3.9,-5.0,92,88400,61,1017,266,18,4,18,2100,0,2100,620,20,3.1,10,10,8.0,670,9,999999999,80,0.0570,0,88,999.000,999.0,99.0 +1988,3,28,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-3.9,-4.4,96,88500,289,1371,266,66,22,62,7300,1800,6900,1630,10,3.1,10,10,0.8,240,9,999999999,80,0.0570,0,88,999.000,999.0,99.0 +1988,3,28,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-3.9,-4.4,96,88600,516,1371,266,141,9,138,16000,600,15800,5240,350,1.5,10,10,0.8,240,9,999999999,80,0.0570,0,88,999.000,999.0,99.0 +1988,3,28,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-3.3,-5.6,85,88600,712,1371,268,204,5,202,23400,400,23100,8180,350,3.1,10,10,0.8,240,9,999999999,80,0.0570,0,88,999.000,999.0,99.0 +1988,3,28,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-2.2,-5.0,82,88600,864,1371,273,286,10,280,32700,900,32100,11450,20,2.1,10,10,16.1,370,9,999999999,80,0.0570,0,88,999.000,999.0,99.0 +1988,3,28,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.1,-6.7,66,88600,960,1371,268,368,99,299,40600,10100,33500,10690,330,1.5,10,9,16.1,460,9,999999999,69,0.0570,0,88,999.000,999.0,99.0 +1988,3,28,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,-6.1,57,88500,996,1371,269,623,538,233,67300,56000,26600,6870,0,0.0,7,7,32.2,2130,9,999999999,80,0.0570,0,88,999.000,999.0,99.0 +1988,3,28,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.1,-4.4,67,88400,967,1371,263,618,525,248,66000,54500,27500,7040,110,2.1,5,5,48.3,77777,9,999999999,80,0.0570,0,88,999.000,999.0,99.0 +1988,3,28,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,-6.7,48,88400,876,1371,263,584,737,113,61500,73700,14300,2740,10,2.6,2,2,48.3,77777,9,999999999,69,0.0570,0,88,999.000,999.0,99.0 +1988,3,28,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,-11.1,32,88400,730,1371,263,503,786,85,53300,77800,11800,1920,310,7.7,2,2,64.4,77777,9,999999999,60,0.0570,0,88,999.000,999.0,99.0 +1988,3,28,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,-11.1,32,88400,538,1371,259,348,738,59,36900,70300,9300,1270,310,8.8,3,1,64.4,77777,9,999999999,60,0.0570,0,88,999.000,999.0,99.0 +1988,3,28,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,-12.8,31,88400,314,1371,251,178,601,41,18400,49900,7000,820,300,6.7,1,1,64.4,77777,9,999999999,50,0.0570,0,88,999.000,999.0,99.0 +1988,3,28,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.6,-11.7,40,88400,80,1154,245,36,179,19,3300,8800,2700,340,300,5.7,1,1,64.4,77777,9,999999999,60,0.0570,0,88,999.000,999.0,99.0 +1988,3,28,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-0.6,-11.7,43,88400,0,0,255,0,0,0,0,0,0,0,260,1.5,7,7,24.1,1980,9,999999999,60,0.0570,0,88,999.000,999.0,99.0 +1988,3,28,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-0.6,-11.1,45,88400,0,0,247,0,0,0,0,0,0,0,310,3.1,3,3,24.1,77777,9,999999999,60,0.0570,0,88,999.000,999.0,99.0 +1988,3,28,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-1.7,-11.1,49,88400,0,0,240,0,0,0,0,0,0,0,240,2.6,2,2,24.1,77777,9,999999999,60,0.0570,0,88,999.000,999.0,99.0 +1988,3,28,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-1.1,-11.1,47,88400,0,0,258,0,0,0,0,0,0,0,270,3.6,8,8,24.1,1680,9,999999999,60,0.0570,0,88,999.000,999.0,99.0 +1988,3,28,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-0.6,-13.3,38,88300,0,0,250,0,0,0,0,0,0,0,280,6.2,8,6,24.1,6710,9,999999999,50,0.0570,0,88,999.000,999.0,99.0 +1988,3,29,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-1.1,-13.9,38,88200,0,0,244,0,0,0,0,0,0,0,270,4.1,5,4,24.1,77777,9,999999999,50,0.0570,0,88,999.000,999.0,99.0 +1988,3,29,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-2.2,-10.6,53,88100,0,0,250,0,0,0,0,0,0,0,190,2.6,10,7,24.1,6710,9,999999999,60,0.0570,0,88,999.000,999.0,99.0 +1988,3,29,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-1.7,-10.6,51,88100,0,0,269,0,0,0,0,0,0,0,180,2.6,10,10,24.1,6710,9,999999999,60,0.0570,0,88,999.000,999.0,99.0 +1988,3,29,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-1.1,-11.1,47,88000,0,0,271,0,0,0,0,0,0,0,0,0.0,10,10,24.1,2130,9,999999999,60,0.0570,0,88,999.000,999.0,99.0 +1988,3,29,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-2.8,-8.3,66,87900,0,0,267,0,0,0,0,0,0,0,0,0.0,10,10,24.1,2130,9,999999999,69,0.0570,0,88,999.000,999.0,99.0 +1988,3,29,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-3.3,-7.8,72,87900,0,0,265,0,0,0,0,0,0,0,0,0.0,10,10,24.1,2290,9,999999999,69,0.0570,0,88,999.000,999.0,99.0 +1988,3,29,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-3.3,-4.4,92,87800,66,1039,269,19,1,19,2200,0,2200,650,300,3.1,10,10,32.2,1160,9,999999999,80,0.0420,0,88,999.000,999.0,99.0 +1988,3,29,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-2.8,-6.1,78,87700,297,1371,269,60,14,57,6600,1200,6300,1530,0,0.0,10,10,32.2,2440,9,999999999,80,0.0420,0,88,999.000,999.0,99.0 +1988,3,29,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.1,-7.2,64,87700,523,1371,267,166,47,148,18200,4500,16500,4140,0,0.0,10,9,48.3,5490,9,999999999,69,0.0420,0,88,999.000,999.0,99.0 +1988,3,29,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.1,-7.2,54,87600,719,1371,266,385,369,192,41700,38600,21400,4340,0,0.0,10,7,48.3,5490,9,999999999,69,0.0420,0,88,999.000,999.0,99.0 +1988,3,29,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,-6.1,55,87600,870,1371,276,336,124,258,37100,13100,28700,7230,10,2.1,10,8,48.3,3660,9,999999999,80,0.0420,0,88,999.000,999.0,99.0 +1988,3,29,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,-5.6,57,87500,967,1371,282,505,294,298,54900,31700,32500,8610,270,2.6,10,9,24.1,3050,9,999999999,80,0.0420,0,88,999.000,999.0,99.0 +1988,3,29,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,-4.4,62,87500,1001,1371,283,406,167,285,45100,17800,32100,9030,0,0.0,10,9,24.1,3050,9,999999999,80,0.0420,0,88,999.000,999.0,99.0 +1988,3,29,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,-6.7,45,87500,972,1371,279,624,563,225,67400,58500,25800,6390,270,4.6,9,7,24.1,6710,9,999999999,69,0.0420,0,88,999.000,999.0,99.0 +1988,3,29,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,-7.8,37,87400,882,1371,279,438,212,302,47800,22300,33500,8540,290,5.7,10,5,24.1,77777,9,999999999,69,0.0420,0,88,999.000,999.0,99.0 +1988,3,29,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,-4.4,49,87400,735,1371,281,306,276,158,33700,29000,18100,3480,230,5.7,9,5,48.3,2130,9,999999999,80,0.0420,0,88,999.000,999.0,99.0 +1988,3,29,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,-6.1,49,87500,543,1371,275,222,205,141,23900,20200,15800,2900,250,5.2,10,6,48.3,2440,9,999999999,80,0.0420,0,88,999.000,999.0,99.0 +1988,3,29,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,-6.7,48,87500,319,1371,285,128,138,96,13900,11500,11200,2090,270,6.2,10,9,48.3,4570,9,999999999,69,0.0420,0,88,999.000,999.0,99.0 +1988,3,29,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,-6.1,55,87600,85,1176,290,18,1,18,2100,0,2100,640,350,3.6,10,10,48.3,4570,9,999999999,80,0.0420,0,88,999.000,999.0,99.0 +1988,3,29,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,0.0,-3.9,75,87700,0,0,283,0,0,0,0,0,0,0,0,0.0,10,10,24.1,4570,9,999999999,89,0.0420,0,88,999.000,999.0,99.0 +1988,3,29,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,0.0,-3.3,79,87700,0,0,283,0,0,0,0,0,0,0,320,2.1,10,10,24.1,1520,9,999999999,89,0.0420,0,88,999.000,999.0,99.0 +1988,3,29,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,0.0,-3.3,79,87800,0,0,283,0,0,0,0,0,0,0,330,2.6,10,10,24.1,1220,9,999999999,89,0.0420,0,88,999.000,999.0,99.0 +1988,3,29,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-1.7,-1.7,100,87900,0,0,278,0,0,0,0,0,0,0,340,2.6,10,10,1.6,180,9,999999999,100,0.0420,0,88,999.000,999.0,99.0 +1988,3,29,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-1.7,-1.7,100,87900,0,0,278,0,0,0,0,0,0,0,270,2.6,10,10,3.2,310,9,999999999,100,0.0420,0,88,999.000,999.0,99.0 +1988,3,30,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-2.2,-3.3,92,87900,0,0,274,0,0,0,0,0,0,0,310,3.6,10,10,24.1,1070,9,999999999,89,0.0420,0,88,999.000,999.0,99.0 +1988,3,30,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-2.2,-5.0,82,88000,0,0,273,0,0,0,0,0,0,0,330,3.6,10,10,16.1,1160,9,999999999,80,0.0420,0,88,999.000,999.0,99.0 +1988,3,30,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-2.2,-5.6,78,88100,0,0,272,0,0,0,0,0,0,0,310,3.1,10,10,16.1,980,9,999999999,80,0.0420,0,88,999.000,999.0,99.0 +1988,3,30,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-2.8,-6.1,78,88100,0,0,269,0,0,0,0,0,0,0,310,3.6,10,10,24.1,1070,9,999999999,80,0.0420,0,88,999.000,999.0,99.0 +1988,3,30,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-3.9,-6.7,81,88200,0,0,247,0,0,0,0,0,0,0,290,3.6,8,7,24.1,1830,9,999999999,69,0.0420,0,88,999.000,999.0,99.0 +1988,3,30,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-5.0,-7.2,85,88200,0,0,243,0,0,0,0,0,0,0,280,3.1,8,7,24.1,2130,9,999999999,69,0.0420,0,88,999.000,999.0,99.0 +1988,3,30,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-4.4,-6.7,85,88300,72,1084,241,36,56,30,3700,2500,3500,620,260,3.1,10,5,48.3,77777,9,999999999,69,0.0210,0,88,999.000,999.0,99.0 +1988,3,30,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-3.3,-8.9,66,88400,305,1370,241,152,354,74,15900,27800,9700,1360,290,2.1,10,4,48.3,77777,9,999999999,69,0.0210,0,88,999.000,999.0,99.0 +1988,3,30,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-2.2,-6.7,72,88400,531,1370,245,361,633,117,37100,58800,14200,2180,0,0.0,10,3,48.3,77777,9,999999999,69,0.0210,0,88,999.000,999.0,99.0 +1988,3,30,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.1,-6.1,69,88500,726,1370,247,513,751,116,54400,74800,14600,2560,280,1.5,8,2,48.3,77777,9,999999999,80,0.0210,0,88,999.000,999.0,99.0 +1988,3,30,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.6,-5.6,64,88500,877,1370,256,647,745,171,68000,74800,19900,4240,300,3.1,8,3,48.3,77777,9,999999999,80,0.0210,0,88,999.000,999.0,99.0 +1988,3,30,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,-5.0,62,88500,973,1370,261,650,665,178,68800,67400,20800,5070,250,2.6,8,3,48.3,77777,9,999999999,80,0.0210,0,88,999.000,999.0,99.0 +1988,3,30,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,-6.1,52,88500,1007,1370,261,739,812,143,77500,81400,17500,3980,270,1.5,5,2,48.3,77777,9,999999999,80,0.0210,0,88,999.000,999.0,99.0 +1988,3,30,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,-9.4,38,88500,978,1370,262,729,764,184,77000,77400,21600,5260,340,2.1,5,2,48.3,77777,9,999999999,60,0.0210,0,88,999.000,999.0,99.0 +1988,3,30,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,-9.4,35,88500,887,1370,267,647,841,103,69000,84600,14100,2620,20,2.6,5,2,48.3,77777,9,999999999,60,0.0210,0,88,999.000,999.0,99.0 +1988,3,30,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,-10.6,31,88500,740,1370,268,523,751,118,55400,75000,14800,2640,0,0.0,4,2,48.3,77777,9,999999999,60,0.0210,0,88,999.000,999.0,99.0 +1988,3,30,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,-7.8,44,88500,548,1370,264,374,669,107,38800,63100,13500,2060,160,1.5,8,3,64.4,77777,9,999999999,69,0.0210,0,88,999.000,999.0,99.0 +1988,3,30,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,-8.3,41,88600,324,1370,263,181,555,51,19000,45600,8200,960,360,4.1,5,2,64.4,77777,9,999999999,69,0.0210,0,88,999.000,999.0,99.0 +1988,3,30,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.1,-7.8,52,88600,89,1221,245,50,375,14,4600,23300,2800,330,360,2.1,0,0,64.4,77777,9,999999999,69,0.0210,0,88,999.000,999.0,99.0 +1988,3,30,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-0.6,-7.8,59,88600,0,0,239,0,0,0,0,0,0,0,270,1.5,0,0,24.1,77777,9,999999999,69,0.0210,0,88,999.000,999.0,99.0 +1988,3,30,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-1.1,-6.7,66,88700,0,0,239,0,0,0,0,0,0,0,260,3.1,0,0,24.1,77777,9,999999999,69,0.0210,0,88,999.000,999.0,99.0 +1988,3,30,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-3.3,-6.1,81,88700,0,0,231,0,0,0,0,0,0,0,270,2.1,0,0,24.1,77777,9,999999999,80,0.0210,0,88,999.000,999.0,99.0 +1988,3,30,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-3.9,-6.1,85,88700,0,0,229,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,80,0.0210,0,88,999.000,999.0,99.0 +1988,3,30,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-5.0,-7.2,85,88700,0,0,225,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,69,0.0210,0,88,999.000,999.0,99.0 +1988,3,31,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-4.4,-8.3,75,88700,0,0,230,0,0,0,0,0,0,0,0,0.0,1,1,24.1,77777,9,999999999,69,0.0210,0,88,999.000,999.0,99.0 +1988,3,31,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-5.0,-7.8,81,88700,0,0,229,0,0,0,0,0,0,0,0,0.0,1,1,24.1,77777,9,999999999,69,0.0210,0,88,999.000,999.0,99.0 +1988,3,31,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-6.1,-8.9,81,88700,0,0,224,0,0,0,0,0,0,0,0,0.0,1,1,24.1,77777,9,999999999,69,0.0210,0,88,999.000,999.0,99.0 +1988,3,31,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-6.7,-8.9,84,88700,0,0,218,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,69,0.0210,0,88,999.000,999.0,99.0 +1988,3,31,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-7.2,-8.3,92,88700,0,0,217,0,0,0,0,0,0,0,0,0.0,2,0,24.1,77777,9,999999999,69,0.0210,0,88,999.000,999.0,99.0 +1988,3,31,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-7.2,-8.3,92,88700,0,0,224,0,0,0,0,0,0,0,190,1.5,4,2,32.2,77777,9,999999999,69,0.0210,0,88,999.000,999.0,99.0 +1988,3,31,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-7.2,-9.4,84,88700,78,1129,225,31,100,22,3100,4200,2800,390,0,0.0,5,3,48.3,77777,9,999999999,60,0.0570,0,88,999.000,999.0,99.0 +1988,3,31,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-4.4,-6.1,88,88700,312,1369,241,164,487,54,17100,39300,8100,990,0,0.0,5,5,48.3,77777,9,999999999,80,0.0570,0,88,999.000,999.0,99.0 +1988,3,31,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.0,-5.6,67,88700,538,1369,258,318,582,91,33400,55100,11700,1790,0,0.0,5,5,48.3,77777,9,999999999,80,0.0570,0,88,999.000,999.0,99.0 +1988,3,31,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,-7.8,44,88700,733,1369,271,322,314,155,34800,31800,17700,3340,280,6.2,7,6,48.3,1520,9,999999999,69,0.0570,0,88,999.000,999.0,99.0 +1988,3,31,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,-7.2,45,88600,883,1369,281,401,286,217,44100,30700,24300,5520,290,5.2,9,8,48.3,1520,9,999999999,69,0.0570,0,88,999.000,999.0,99.0 +1988,3,31,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,-7.2,43,88600,979,1369,283,452,123,365,49800,12700,40800,12780,280,6.7,9,8,48.3,1520,9,999999999,69,0.0570,0,88,999.000,999.0,99.0 +1988,3,31,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,-5.6,45,88600,1013,1369,296,433,114,349,47400,12100,38500,11220,270,5.7,9,9,48.3,1680,9,999999999,80,0.0570,0,88,999.000,999.0,99.0 +1988,3,31,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,-6.1,42,88500,983,1369,306,321,9,315,37100,800,36500,13410,250,6.7,10,10,64.4,1680,9,999999999,80,0.0570,0,88,999.000,999.0,99.0 +1988,3,31,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,-4.4,42,88500,892,1369,307,260,6,257,30200,500,29800,11040,280,5.2,9,9,64.4,1680,9,999999999,80,0.0570,0,88,999.000,999.0,99.0 +1988,3,31,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,-3.9,44,88400,745,1369,290,373,341,188,40700,35900,21100,4280,270,7.2,5,5,64.4,77777,9,999999999,89,0.0570,0,88,999.000,999.0,99.0 +1988,3,31,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,-4.4,42,88400,553,1369,283,341,623,90,35800,59400,11800,1800,250,7.7,3,2,64.4,77777,9,999999999,80,0.0570,0,88,999.000,999.0,99.0 +1988,3,31,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,-4.4,45,88400,330,1369,275,167,502,47,17600,41700,7500,890,270,5.2,2,1,64.4,77777,9,999999999,80,0.0570,0,88,999.000,999.0,99.0 +1988,3,31,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,-5.0,49,88400,94,1243,271,41,171,25,4100,7700,3400,440,270,4.1,3,2,64.4,77777,9,999999999,80,0.0570,0,88,999.000,999.0,99.0 +1988,3,31,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,4.4,-3.9,55,88400,0,0,272,0,0,0,0,0,0,0,250,3.1,7,3,24.1,77777,9,999999999,89,0.0570,0,88,999.000,999.0,99.0 +1988,3,31,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,4.4,-3.9,55,88400,0,0,272,0,0,0,0,0,0,0,260,3.1,7,3,24.1,77777,9,999999999,89,0.0570,0,88,999.000,999.0,99.0 +1988,3,31,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,3.4,-4.4,60,88400,0,0,262,0,0,0,0,0,0,0,260,3.0,2,1,24.1,77777,9,999999999,89,0.0570,0,88,999.000,999.0,99.0 +1988,3,31,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,2.3,-5.1,60,88400,0,0,252,0,0,0,0,0,0,0,250,3.0,0,0,24.1,77777,9,999999999,89,0.0570,0,88,999.000,999.0,99.0 +1988,3,31,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,1.3,-5.7,67,88400,0,0,248,0,0,0,0,0,0,0,250,2.9,0,0,24.1,77777,9,999999999,89,0.0570,0,88,999.000,999.0,99.0 +1986,4,1,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,0.3,-6.3,62,88100,0,0,244,0,0,0,0,0,0,0,130,2.8,2,0,24.1,77777,9,999999999,69,0.0570,0,88,999.000,999.0,99.0 +1986,4,1,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-0.6,-6.9,64,88000,0,0,240,0,0,0,0,0,0,0,320,2.7,4,0,24.1,77777,9,999999999,69,0.0570,0,88,999.000,999.0,99.0 +1986,4,1,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-1.7,-7.6,65,88000,0,0,236,0,0,0,0,0,0,0,320,2.7,6,0,24.1,77777,9,999999999,69,0.0570,0,88,999.000,999.0,99.0 +1986,4,1,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-2.8,-8.3,66,87900,0,0,231,0,0,0,0,0,0,0,280,2.6,8,0,24.1,77777,9,999999999,69,0.0570,0,88,999.000,999.0,99.0 +1986,4,1,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-4.4,-8.9,72,87800,0,0,225,0,0,0,0,0,0,0,130,2.1,10,0,24.1,77777,9,999999999,69,0.0570,0,88,999.000,999.0,99.0 +1986,4,1,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-5.6,-8.9,78,87700,0,0,221,0,0,0,0,0,0,0,0,0.0,9,0,24.1,77777,9,999999999,69,0.0570,0,88,999.000,999.0,99.0 +1986,4,1,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-3.9,-7.8,75,87600,81,1152,232,34,139,21,3300,6000,2900,370,350,2.1,9,1,64.4,77777,9,999999999,69,0.0410,0,88,999.000,999.0,99.0 +1986,4,1,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.1,-7.2,64,87600,316,1369,246,163,461,59,17000,37200,8400,1070,330,1.5,10,2,64.4,77777,9,999999999,69,0.0410,0,88,999.000,999.0,99.0 +1986,4,1,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.6,-7.2,56,87500,542,1369,268,230,210,148,24700,20700,16500,3070,0,0.0,10,8,64.4,3050,9,999999999,69,0.0410,0,88,999.000,999.0,99.0 +1986,4,1,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,-7.8,41,87400,736,1369,271,449,567,147,47000,56000,16900,3160,0,0.0,10,4,64.4,77777,9,999999999,69,0.0410,0,88,999.000,999.0,99.0 +1986,4,1,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,-7.2,35,87300,887,1369,284,568,554,212,61200,57200,24000,5370,290,2.1,10,5,64.4,77777,9,999999999,69,0.0410,0,88,999.000,999.0,99.0 +1986,4,1,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,-7.2,29,87200,982,1369,289,698,752,162,74800,76700,19700,4740,320,1.5,9,2,64.4,77777,9,999999999,69,0.0410,0,88,999.000,999.0,99.0 +1986,4,1,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,-6.7,26,87100,1016,1369,306,638,628,173,68100,64000,20400,5330,250,1.5,10,5,64.4,77777,9,999999999,69,0.0410,0,88,999.000,999.0,99.0 +1986,4,1,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,-9.4,19,86900,986,1369,313,627,575,214,65700,57800,23900,6090,160,1.5,10,6,64.4,7620,9,999999999,60,0.0410,0,88,999.000,999.0,99.0 +1986,4,1,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,-10.0,16,86900,895,1369,328,436,271,260,47500,29100,28400,6870,170,3.1,10,8,48.3,6100,9,999999999,60,0.0410,0,88,999.000,999.0,99.0 +1986,4,1,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,-8.3,19,86800,748,1369,328,326,128,256,35400,13200,28200,6600,290,3.6,10,8,48.3,6100,9,999999999,69,0.0410,0,88,999.000,999.0,99.0 +1986,4,1,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,-6.7,21,86700,556,1369,327,275,348,135,29100,33500,15500,2650,340,2.6,9,7,64.4,6100,9,999999999,69,0.0410,0,88,999.000,999.0,99.0 +1986,4,1,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,-7.2,22,86700,332,1369,321,132,117,104,14300,9900,11900,2270,360,2.6,9,7,64.4,3050,9,999999999,69,0.0410,0,88,999.000,999.0,99.0 +1986,4,1,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,-3.9,36,86700,96,1266,320,26,7,25,2900,0,2900,840,80,4.6,10,9,64.4,2440,9,999999999,89,0.0410,0,88,999.000,999.0,99.0 +1986,4,1,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,8.9,-1.7,48,86800,0,0,324,0,0,0,0,0,0,0,340,2.6,10,10,24.1,2130,9,999999999,100,0.0410,0,88,999.000,999.0,99.0 +1986,4,1,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,8.9,-1.7,48,86800,0,0,324,0,0,0,0,0,0,0,60,2.6,10,10,24.1,1520,9,999999999,100,0.0410,0,88,999.000,999.0,99.0 +1986,4,1,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,9.4,-5.0,36,86900,0,0,322,0,0,0,0,0,0,0,340,6.7,10,10,24.1,1370,9,999999999,80,0.0410,0,88,999.000,999.0,99.0 +1986,4,1,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,8.9,-6.1,34,86900,0,0,319,0,0,0,0,0,0,0,330,4.6,10,10,24.1,1520,9,999999999,80,0.0410,0,88,999.000,999.0,99.0 +1986,4,1,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,7.8,-8.3,31,87000,0,0,311,0,0,0,0,0,0,0,0,0.0,10,10,24.1,1520,9,999999999,69,0.0410,0,88,999.000,999.0,99.0 +1986,4,2,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,7.8,-7.2,36,87100,0,0,312,0,0,0,0,0,0,0,330,6.2,10,10,24.1,1520,9,999999999,69,0.0410,0,88,999.000,999.0,99.0 +1986,4,2,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,7.2,-6.8,40,87100,0,0,310,0,0,0,0,0,0,0,330,5.7,10,10,24.1,1520,9,999999999,80,0.0410,0,88,999.000,999.0,99.0 +1986,4,2,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,6.7,-5.4,45,87200,0,0,310,0,0,0,0,0,0,0,330,7.2,10,10,24.1,1520,9,999999999,80,0.0410,0,88,999.000,999.0,99.0 +1986,4,2,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,5.6,-4.4,49,87400,0,0,306,0,0,0,0,0,0,0,340,7.7,10,10,24.1,1520,9,999999999,80,0.0410,0,88,999.000,999.0,99.0 +1986,4,2,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,5.0,-3.9,53,87400,0,0,304,0,0,0,0,0,0,0,330,9.3,10,10,24.1,1520,9,999999999,89,0.0410,0,88,999.000,999.0,99.0 +1986,4,2,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,2.8,-1.7,73,87600,0,0,297,0,0,0,0,0,0,0,320,6.2,10,10,16.1,670,9,999999999,100,0.0410,0,88,999.000,999.0,99.0 +1986,4,2,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,-1.1,82,87800,88,1197,293,15,0,15,1700,0,1700,550,330,5.2,10,10,11.3,670,9,999999999,100,0.0320,0,88,999.000,999.0,99.0 +1986,4,2,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,-2.2,76,87900,323,1368,292,71,8,69,8100,300,8000,2560,340,7.7,10,10,16.1,700,9,999999999,100,0.0320,0,88,999.000,999.0,99.0 +1986,4,2,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.6,-3.3,76,88100,549,1368,286,138,3,137,15800,200,15700,5390,360,6.7,10,10,16.1,700,9,999999999,89,0.0320,0,88,999.000,999.0,99.0 +1986,4,2,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.6,-4.4,70,88200,743,1368,285,210,6,207,24100,500,23800,8540,340,7.7,10,10,24.1,760,9,999999999,89,0.0320,0,88,999.000,999.0,99.0 +1986,4,2,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.0,-5.6,67,88300,893,1368,281,257,1,256,29700,100,29600,11020,360,8.8,10,10,24.1,760,9,999999999,80,0.0320,0,88,999.000,999.0,99.0 +1986,4,2,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.6,-5.6,64,88400,988,1368,283,288,2,287,33500,200,33400,12620,330,8.2,10,10,24.1,670,9,999999999,80,0.0320,0,88,999.000,999.0,99.0 +1986,4,2,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.6,-5.6,64,88500,1021,1368,283,314,5,310,36500,500,36100,13550,360,7.7,10,10,24.1,790,9,999999999,80,0.0320,0,88,999.000,999.0,99.0 +1986,4,2,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.1,-5.6,62,88500,991,1368,285,356,5,353,40800,500,40500,14480,360,4.6,10,10,24.1,790,9,999999999,80,0.0320,0,88,999.000,999.0,99.0 +1986,4,2,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,-6.1,57,88500,900,1368,287,307,3,305,35000,300,34900,12430,330,6.2,10,10,24.1,850,9,999999999,80,0.0320,0,88,999.000,999.0,99.0 +1986,4,2,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,-6.1,57,88600,753,1368,287,288,1,288,32300,100,32200,10560,350,6.7,10,10,24.1,850,9,999999999,80,0.0320,0,88,999.000,999.0,99.0 +1986,4,2,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,-6.1,57,88600,561,1368,287,189,0,189,21100,0,21100,6730,320,4.6,10,10,24.1,910,9,999999999,80,0.0320,0,88,999.000,999.0,99.0 +1986,4,2,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,-6.1,57,88700,337,1368,287,109,1,109,12000,100,12000,3530,340,3.6,10,10,24.1,980,9,999999999,80,0.0320,0,88,999.000,999.0,99.0 +1986,4,2,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,-6.1,57,88700,101,1288,287,30,0,30,3300,0,3300,960,330,4.1,10,10,24.1,980,9,999999999,80,0.0320,0,88,999.000,999.0,99.0 +1986,4,2,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,1.7,-5.0,62,88800,0,0,289,0,0,0,0,0,0,0,320,4.6,10,10,24.1,980,9,999999999,80,0.0320,0,88,999.000,999.0,99.0 +1986,4,2,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,1.1,-3.9,70,88800,0,0,287,0,0,0,0,0,0,0,320,4.1,10,10,24.1,1160,9,999999999,89,0.0320,0,88,999.000,999.0,99.0 +1986,4,2,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,1.1,-3.9,70,88800,0,0,287,0,0,0,0,0,0,0,290,4.1,10,10,24.1,1370,9,999999999,89,0.0320,0,88,999.000,999.0,99.0 +1986,4,2,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,0.6,-3.9,73,88800,0,0,285,0,0,0,0,0,0,0,280,3.6,10,10,24.1,1520,9,999999999,89,0.0320,0,88,999.000,999.0,99.0 +1986,4,2,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,0.0,-4.4,72,88800,0,0,259,0,0,0,0,0,0,0,270,3.6,6,5,24.1,1520,9,999999999,80,0.0320,0,88,999.000,999.0,99.0 +1986,4,3,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,1.1,-4.4,74,88800,0,0,261,0,0,0,0,0,0,0,310,3.6,5,4,24.1,16770,9,999999999,89,0.0320,0,88,999.000,999.0,99.0 +1986,4,3,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,1.1,-5.2,76,88800,0,0,258,0,0,0,0,0,0,0,310,4.1,4,3,24.1,77777,9,999999999,89,0.0320,0,88,999.000,999.0,99.0 +1986,4,3,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,0.6,-4.8,77,88800,0,0,254,0,0,0,0,0,0,0,310,4.1,2,2,24.1,77777,9,999999999,89,0.0320,0,88,999.000,999.0,99.0 +1986,4,3,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-0.6,-5.0,79,88800,0,0,246,0,0,0,0,0,0,0,310,3.1,1,1,24.1,77777,9,999999999,89,0.0320,0,88,999.000,999.0,99.0 +1986,4,3,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-2.8,-5.6,81,88700,0,0,234,0,0,0,0,0,0,0,240,3.1,0,0,24.1,77777,9,999999999,80,0.0320,0,88,999.000,999.0,99.0 +1986,4,3,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-4.4,-6.1,88,88800,0,0,228,0,0,0,0,0,0,0,40,1.5,0,0,64.4,77777,9,999999999,80,0.0320,0,88,999.000,999.0,99.0 +1986,4,3,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-3.3,-5.6,85,88700,94,1242,232,42,265,18,4000,13500,3000,330,0,0.0,0,0,64.4,77777,9,999999999,80,0.0510,0,88,999.000,999.0,99.0 +1986,4,3,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.6,-4.4,70,88700,331,1367,247,192,661,35,20600,56600,6900,820,290,2.1,0,0,64.4,77777,9,999999999,89,0.0510,0,88,999.000,999.0,99.0 +1986,4,3,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,-4.4,62,88700,556,1367,252,375,811,50,40100,77100,8700,1220,20,1.5,0,0,48.3,77777,9,999999999,89,0.0510,0,88,999.000,999.0,99.0 +1986,4,3,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,-4.4,53,88600,750,1367,261,549,893,62,58100,87800,9800,1570,330,2.6,0,0,48.3,77777,9,999999999,80,0.0510,0,88,999.000,999.0,99.0 +1986,4,3,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,-5.0,49,88600,899,1367,262,687,941,71,72400,93700,10600,1940,60,4.1,0,0,48.3,77777,9,999999999,80,0.0510,0,88,999.000,999.0,99.0 +1986,4,3,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,-3.9,44,88500,993,1367,283,722,831,121,77100,83900,16000,3470,110,2.1,2,2,48.3,77777,9,999999999,89,0.0510,0,88,999.000,999.0,99.0 +1986,4,3,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,-5.0,37,88400,1027,1367,286,804,965,82,84300,96600,11600,2480,140,1.5,2,2,48.3,77777,9,999999999,80,0.0510,0,88,999.000,999.0,99.0 +1986,4,3,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,-5.0,35,88200,996,1367,287,761,946,74,80000,94600,10900,2230,60,4.1,1,1,64.4,77777,9,999999999,80,0.0510,0,88,999.000,999.0,99.0 +1986,4,3,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,-6.1,31,88200,905,1367,283,694,945,72,73100,94100,10700,1960,140,2.1,0,0,64.4,77777,9,999999999,80,0.0510,0,88,999.000,999.0,99.0 +1986,4,3,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,-7.2,27,88100,758,1367,284,564,908,63,59600,89400,9900,1600,150,3.6,0,0,64.4,77777,9,999999999,69,0.0510,0,88,999.000,999.0,99.0 +1986,4,3,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,-7.2,27,88000,566,1367,284,394,835,51,41900,79600,8900,1240,120,4.6,0,0,64.4,77777,9,999999999,69,0.0510,0,88,999.000,999.0,99.0 +1986,4,3,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,-7.2,28,88000,342,1367,282,205,684,36,21900,59100,7100,850,110,5.7,0,0,64.4,77777,9,999999999,69,0.0510,0,88,999.000,999.0,99.0 +1986,4,3,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,-7.2,35,87900,106,1310,268,48,303,19,4500,17700,3000,360,100,4.1,0,0,64.4,77777,9,999999999,69,0.0510,0,88,999.000,999.0,99.0 +1986,4,3,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,5.0,-6.1,45,87900,0,0,261,0,0,0,0,0,0,0,250,3.1,0,0,24.1,77777,9,999999999,80,0.0510,0,88,999.000,999.0,99.0 +1986,4,3,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,2.8,-6.1,52,87900,0,0,253,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,80,0.0510,0,88,999.000,999.0,99.0 +1986,4,3,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,1.7,-5.6,59,87900,0,0,250,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,80,0.0510,0,88,999.000,999.0,99.0 +1986,4,3,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,0.6,-5.6,64,87900,0,0,246,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,80,0.0510,0,88,999.000,999.0,99.0 +1986,4,3,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-1.7,-6.1,72,87900,0,0,237,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,80,0.0510,0,88,999.000,999.0,99.0 +1986,4,4,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-2.2,-6.0,74,87900,0,0,235,0,0,0,0,0,0,0,180,2.6,0,0,24.1,77777,9,999999999,80,0.0510,0,88,999.000,999.0,99.0 +1986,4,4,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-1.1,-6.6,77,87900,0,0,239,0,0,0,0,0,0,0,320,3.1,0,0,24.1,77777,9,999999999,80,0.0510,0,88,999.000,999.0,99.0 +1986,4,4,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-2.8,-6.1,79,87800,0,0,233,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,80,0.0510,0,88,999.000,999.0,99.0 +1986,4,4,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-3.3,-6.1,81,87800,0,0,231,0,0,0,0,0,0,0,260,3.1,0,0,24.1,77777,9,999999999,80,0.0510,0,88,999.000,999.0,99.0 +1986,4,4,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-3.9,-6.7,81,87800,0,0,229,0,0,0,0,0,0,0,90,2.6,0,0,24.1,77777,9,999999999,69,0.0510,0,88,999.000,999.0,99.0 +1986,4,4,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-5.0,-6.7,88,87800,0,0,225,0,0,0,0,0,0,0,0,0.0,0,0,64.4,77777,9,999999999,69,0.0510,0,88,999.000,999.0,99.0 +1986,4,4,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-3.3,-5.6,85,87800,101,1287,232,48,363,15,4700,22800,2900,350,0,0.0,0,0,64.4,77777,9,999999999,80,0.0290,0,88,999.000,999.0,99.0 +1986,4,4,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.0,-4.4,72,87800,338,1367,244,208,743,28,22600,64100,6700,760,0,0.0,0,0,64.4,77777,9,999999999,80,0.0290,0,88,999.000,999.0,99.0 +1986,4,4,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,-4.4,59,87800,563,1367,255,397,878,39,42600,83700,8100,1080,360,2.6,0,0,64.4,77777,9,999999999,80,0.0290,0,88,999.000,999.0,99.0 +1986,4,4,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,-3.9,51,87800,756,1367,266,566,940,49,60400,92700,8900,1390,120,2.6,0,0,64.4,77777,9,999999999,89,0.0290,0,88,999.000,999.0,99.0 +1986,4,4,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,-2.2,46,87700,905,1367,280,697,972,57,74000,96900,9700,1710,100,4.1,0,0,64.4,77777,9,999999999,100,0.0290,0,88,999.000,999.0,99.0 +1986,4,4,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,-3.9,34,87600,999,1367,290,781,955,86,81800,95400,11900,2440,0,0.0,4,0,64.4,77777,9,999999999,89,0.0290,0,88,999.000,999.0,99.0 +1986,4,4,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,-3.3,29,87500,1032,1367,307,691,736,138,73200,74100,17100,4110,60,4.1,7,1,64.4,77777,9,999999999,89,0.0290,0,88,999.000,999.0,99.0 +1986,4,4,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,-3.3,29,87500,1001,1367,311,671,628,212,70500,63300,23900,6230,50,2.6,9,2,64.4,77777,9,999999999,89,0.0290,0,88,999.000,999.0,99.0 +1986,4,4,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,-6.7,21,87400,910,1367,315,640,729,157,68100,73900,18800,4130,290,7.7,10,2,64.4,77777,9,999999999,80,0.0290,0,88,999.000,999.0,99.0 +1986,4,4,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,-6.1,21,87400,763,1367,316,559,804,112,58000,79100,13700,2350,300,6.7,10,2,64.4,77777,9,999999999,80,0.0290,0,88,999.000,999.0,99.0 +1986,4,4,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,-5.0,24,87400,571,1367,310,360,666,84,38300,64200,11400,1710,290,5.2,10,1,64.4,77777,9,999999999,80,0.0290,0,88,999.000,999.0,99.0 +1986,4,4,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,-4.4,26,87500,347,1367,303,205,637,46,21500,54500,7600,910,250,5.2,7,0,64.4,77777,9,999999999,80,0.0290,0,88,999.000,999.0,99.0 +1986,4,4,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,-3.9,34,87500,111,1355,290,47,275,21,4600,14500,3300,380,310,2.6,7,0,64.4,77777,9,999999999,89,0.0290,0,88,999.000,999.0,99.0 +1986,4,4,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,8.9,-3.9,41,87500,0,0,278,0,0,0,0,0,0,0,250,3.6,2,0,24.1,77777,9,999999999,89,0.0290,0,88,999.000,999.0,99.0 +1986,4,4,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,6.1,-3.3,51,87600,0,0,268,0,0,0,0,0,0,0,270,2.1,0,0,24.1,77777,9,999999999,89,0.0290,0,88,999.000,999.0,99.0 +1986,4,4,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,5.0,-3.9,53,87600,0,0,263,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,89,0.0290,0,88,999.000,999.0,99.0 +1986,4,4,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,5.0,-3.9,53,87700,0,0,263,0,0,0,0,0,0,0,230,2.1,0,0,24.1,77777,9,999999999,89,0.0290,0,88,999.000,999.0,99.0 +1986,4,4,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,3.3,-4.4,57,87700,0,0,257,0,0,0,0,0,0,0,220,2.1,0,0,24.1,77777,9,999999999,80,0.0290,0,88,999.000,999.0,99.0 +1986,4,5,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,3.3,-4.1,62,87700,0,0,257,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,89,0.0290,0,88,999.000,999.0,99.0 +1986,4,5,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,1.7,-4.5,67,87800,0,0,251,0,0,0,0,0,0,0,180,3.1,0,0,24.1,77777,9,999999999,89,0.0290,0,88,999.000,999.0,99.0 +1986,4,5,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,0.0,-3.8,72,87800,0,0,245,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,80,0.0290,0,88,999.000,999.0,99.0 +1986,4,5,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-0.6,-3.6,77,87900,0,0,243,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,89,0.0290,0,88,999.000,999.0,99.0 +1986,4,5,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-1.1,-3.9,82,87900,0,0,241,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,89,0.0290,0,88,999.000,999.0,99.0 +1986,4,5,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-1.1,-3.9,82,88000,0,0,251,0,0,0,0,0,0,0,0,0.0,3,3,64.4,77777,9,999999999,89,0.0290,0,88,999.000,999.0,99.0 +1986,4,5,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-0.6,-2.8,85,88000,108,1332,244,47,300,19,4500,17500,3000,360,0,0.0,0,0,64.4,77777,9,999999999,89,0.0500,0,88,999.000,999.0,99.0 +1986,4,5,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,-3.3,62,88000,345,1366,258,204,680,36,22000,58900,7100,850,0,0.0,0,0,64.4,77777,9,999999999,89,0.0500,0,88,999.000,999.0,99.0 +1986,4,5,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,-2.8,58,88100,570,1366,264,393,831,50,41900,79300,8800,1240,310,2.1,0,0,64.4,77777,9,999999999,89,0.0500,0,88,999.000,999.0,99.0 +1986,4,5,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,-2.2,48,88100,763,1366,278,558,895,62,59200,88200,9800,1590,0,0.0,0,0,64.4,77777,9,999999999,100,0.0500,0,88,999.000,999.0,99.0 +1986,4,5,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,-1.7,41,88000,911,1366,290,695,940,71,73300,93700,10600,1960,0,0.0,0,0,64.4,77777,9,999999999,100,0.0500,0,88,999.000,999.0,99.0 +1986,4,5,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,-2.2,32,88000,1005,1366,303,782,963,76,82200,96300,11100,2300,50,2.6,0,0,64.4,77777,9,999999999,100,0.0500,0,88,999.000,999.0,99.0 +1986,4,5,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,-2.8,28,87900,1037,1366,315,757,914,66,80000,91600,10200,2200,40,1.5,1,1,64.4,77777,9,999999999,89,0.0500,0,88,999.000,999.0,99.0 +1986,4,5,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,-3.3,24,87800,1007,1366,330,681,759,124,72700,76600,16100,3630,200,2.6,3,3,64.4,77777,9,999999999,89,0.0500,0,88,999.000,999.0,99.0 +1986,4,5,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,-3.3,25,87700,914,1366,339,398,285,208,44200,30700,23600,5420,340,3.1,7,7,64.4,2130,9,999999999,89,0.0500,0,88,999.000,999.0,99.0 +1986,4,5,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,-3.3,23,87700,767,1366,344,316,178,217,34900,18600,24400,5670,280,9.3,9,7,64.4,2130,9,999999999,89,0.0500,0,88,999.000,999.0,99.0 +1986,4,5,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,-3.9,24,87700,576,1366,329,318,531,96,33500,51000,12000,1930,260,6.7,5,4,64.4,77777,9,999999999,89,0.0500,0,88,999.000,999.0,99.0 +1986,4,5,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,-2.8,30,87800,352,1366,323,132,219,76,14300,18600,9500,1420,290,4.1,7,5,64.4,7620,9,999999999,89,0.0500,0,88,999.000,999.0,99.0 +1986,4,5,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,-2.8,33,87800,116,1366,313,37,80,30,3900,3400,3600,550,310,4.1,5,4,64.4,77777,9,999999999,89,0.0500,0,88,999.000,999.0,99.0 +1986,4,5,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,11.1,-2.2,40,87900,0,11,302,0,0,0,0,0,0,0,270,4.1,3,3,24.1,77777,9,999999999,100,0.0500,0,88,999.000,999.0,99.0 +1986,4,5,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,8.3,-2.2,48,88000,0,0,278,0,0,0,0,0,0,0,280,4.1,0,0,24.1,77777,9,999999999,100,0.0500,0,88,999.000,999.0,99.0 +1986,4,5,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,7.2,-2.2,52,88000,0,0,273,0,0,0,0,0,0,0,270,3.6,0,0,24.1,77777,9,999999999,100,0.0500,0,88,999.000,999.0,99.0 +1986,4,5,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,6.1,-2.2,56,88000,0,0,269,0,0,0,0,0,0,0,270,2.6,0,0,24.1,77777,9,999999999,100,0.0500,0,88,999.000,999.0,99.0 +1986,4,5,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,5.6,-3.9,51,88000,0,0,266,0,0,0,0,0,0,0,220,3.1,0,0,24.1,77777,9,999999999,89,0.0500,0,88,999.000,999.0,99.0 +1986,4,6,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,6.7,-3.5,53,88100,0,0,270,0,0,0,0,0,0,0,270,3.1,0,0,24.1,77777,9,999999999,100,0.0500,0,88,999.000,999.0,99.0 +1986,4,6,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,5.6,-3.8,55,88100,0,0,266,0,0,0,0,0,0,0,310,4.1,0,0,24.1,77777,9,999999999,89,0.0500,0,88,999.000,999.0,99.0 +1986,4,6,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,5.0,-2.9,56,88100,0,0,264,0,0,0,0,0,0,0,320,4.1,0,0,24.1,77777,9,999999999,89,0.0500,0,88,999.000,999.0,99.0 +1986,4,6,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,5.6,-2.6,58,88100,0,0,267,0,0,0,0,0,0,0,260,4.1,0,0,24.1,77777,9,999999999,100,0.0500,0,88,999.000,999.0,99.0 +1986,4,6,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,4.4,-2.8,60,88100,0,0,262,0,0,0,0,0,0,0,200,3.1,0,0,24.1,77777,9,999999999,89,0.0500,0,88,999.000,999.0,99.0 +1986,4,6,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,2.8,-3.3,65,88100,0,11,256,0,0,0,0,0,0,0,0,0.0,0,0,64.4,77777,9,999999999,89,0.0500,0,88,999.000,999.0,99.0 +1986,4,6,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,-2.2,62,88200,115,1365,268,47,301,19,4500,17500,3000,360,170,2.6,3,1,64.4,77777,9,999999999,100,0.0340,0,88,999.000,999.0,99.0 +1986,4,6,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,-1.7,50,88200,353,1365,284,198,626,39,21100,54200,7100,830,0,0.0,3,1,64.4,77777,9,999999999,100,0.0340,0,88,999.000,999.0,99.0 +1986,4,6,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,-1.7,40,88200,576,1365,298,361,718,61,38800,69300,9500,1350,180,1.5,6,1,64.4,77777,9,999999999,100,0.0340,0,88,999.000,999.0,99.0 +1986,4,6,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,-3.3,32,88200,769,1365,303,527,823,67,55800,81100,9900,1660,250,5.7,3,1,64.4,77777,9,999999999,89,0.0340,0,88,999.000,999.0,99.0 +1986,4,6,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,-4.4,26,88200,917,1365,303,692,931,70,73000,92800,10500,1960,270,6.2,2,0,64.4,77777,9,999999999,80,0.0340,0,88,999.000,999.0,99.0 +1986,4,6,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,-8.3,17,88100,1010,1365,306,790,978,69,83300,97900,10600,2180,250,8.8,1,0,64.4,77777,9,999999999,69,0.0340,0,88,999.000,999.0,99.0 +1986,4,6,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,-7.8,17,88000,1043,1365,311,822,988,70,86600,99000,10800,2310,250,7.2,1,0,64.4,77777,9,999999999,69,0.0340,0,88,999.000,999.0,99.0 +1986,4,6,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,-6.7,17,88000,1011,1365,317,789,956,83,82700,95600,11600,2440,250,7.7,3,0,64.4,77777,9,999999999,69,0.0340,0,88,999.000,999.0,99.0 +1986,4,6,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,-6.7,16,87900,919,1365,322,712,947,77,74800,94300,11100,2070,260,7.2,3,0,64.4,77777,9,999999999,69,0.0340,0,88,999.000,999.0,99.0 +1986,4,6,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,-6.7,16,87900,772,1365,322,576,906,67,60900,89300,10200,1660,240,5.7,3,0,64.4,77777,9,999999999,69,0.0340,0,88,999.000,999.0,99.0 +1986,4,6,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,-6.7,16,87800,580,1365,322,409,862,45,43600,82500,8500,1190,270,6.2,1,0,64.4,77777,9,999999999,69,0.0340,0,88,999.000,999.0,99.0 +1986,4,6,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,-6.1,19,87900,357,1365,315,221,731,32,23700,63900,7000,830,300,5.2,1,0,64.4,77777,9,999999999,80,0.0340,0,88,999.000,999.0,99.0 +1986,4,6,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,-6.1,24,87900,121,1365,298,56,411,17,5600,26300,3300,370,320,3.1,0,0,64.4,77777,9,999999999,80,0.0340,0,88,999.000,999.0,99.0 +1986,4,6,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,12.2,-5.6,29,88000,0,34,290,0,0,0,0,0,0,0,270,2.1,0,0,24.1,77777,9,999999999,80,0.0340,0,88,999.000,999.0,99.0 +1986,4,6,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,8.3,-5.6,37,88000,0,0,274,0,0,0,0,0,0,0,220,3.1,0,0,24.1,77777,9,999999999,80,0.0340,0,88,999.000,999.0,99.0 +1986,4,6,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,7.8,-4.4,42,88000,0,0,274,0,0,0,0,0,0,0,200,2.6,0,0,24.1,77777,9,999999999,80,0.0340,0,88,999.000,999.0,99.0 +1986,4,6,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,7.2,-4.4,44,88100,0,0,271,0,0,0,0,0,0,0,70,2.6,0,0,24.1,77777,9,999999999,80,0.0340,0,88,999.000,999.0,99.0 +1986,4,6,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,6.7,-4.4,45,88100,0,0,269,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,80,0.0340,0,88,999.000,999.0,99.0 +1986,4,7,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,5.6,-4.4,49,88200,0,0,265,0,0,0,0,0,0,0,300,4.1,0,0,24.1,77777,9,999999999,80,0.0340,0,88,999.000,999.0,99.0 +1986,4,7,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,4.4,-5.2,53,88200,0,0,260,0,0,0,0,0,0,0,240,3.1,0,0,24.1,77777,9,999999999,80,0.0340,0,88,999.000,999.0,99.0 +1986,4,7,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,3.3,-4.8,56,88200,0,0,256,0,0,0,0,0,0,0,50,2.1,0,0,24.1,77777,9,999999999,80,0.0340,0,88,999.000,999.0,99.0 +1986,4,7,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,1.7,-5.0,60,88200,0,0,250,0,0,0,0,0,0,0,240,2.6,0,0,24.1,77777,9,999999999,80,0.0340,0,88,999.000,999.0,99.0 +1986,4,7,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,0.6,-5.6,64,88300,0,0,246,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,80,0.0340,0,88,999.000,999.0,99.0 +1986,4,7,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,0.6,-5.6,64,88300,0,57,246,0,0,0,0,0,0,0,200,2.1,0,0,64.4,77777,9,999999999,80,0.0340,0,88,999.000,999.0,99.0 +1986,4,7,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.1,-3.3,73,88400,123,1364,249,47,258,23,4700,13800,3500,410,0,0.0,0,0,64.4,77777,9,999999999,89,0.0750,0,88,999.000,999.0,99.0 +1986,4,7,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,-3.3,55,88400,360,1364,264,209,632,45,22000,54800,7500,920,0,0.0,0,0,64.4,77777,9,999999999,89,0.0750,0,88,999.000,999.0,99.0 +1986,4,7,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,-2.2,46,88400,583,1364,280,395,785,63,42400,75900,9900,1380,0,0.0,0,0,64.4,77777,9,999999999,100,0.0750,0,88,999.000,999.0,99.0 +1986,4,7,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,-4.4,30,88400,775,1364,294,570,873,78,60100,86000,11100,1760,0,0.0,0,0,64.4,77777,9,999999999,80,0.0750,0,88,999.000,999.0,99.0 +1986,4,7,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,-3.9,27,88400,923,1364,303,703,914,88,73700,91000,11900,2210,360,4.6,0,0,64.4,77777,9,999999999,89,0.0750,0,88,999.000,999.0,99.0 +1986,4,7,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,-5.0,22,88300,1016,1364,311,791,938,94,82500,93700,12500,2620,310,3.1,0,0,64.4,77777,9,999999999,80,0.0750,0,88,999.000,999.0,99.0 +1986,4,7,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,-4.4,21,88300,1048,1364,317,819,944,96,85400,94400,12700,2810,320,3.6,0,0,64.4,77777,9,999999999,80,0.0750,0,88,999.000,999.0,99.0 +1986,4,7,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,-3.9,21,88300,1016,1364,320,789,935,94,82300,93400,12500,2630,330,3.6,0,0,64.4,77777,9,999999999,89,0.0750,0,88,999.000,999.0,99.0 +1986,4,7,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,-3.9,20,88300,924,1364,322,704,912,88,73600,90800,11900,2210,360,7.7,0,0,64.4,77777,9,999999999,89,0.0750,0,88,999.000,999.0,99.0 +1986,4,7,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,-2.8,22,88300,777,1364,324,571,871,78,60000,85800,11000,1770,360,7.7,0,0,64.4,77777,9,999999999,89,0.0750,0,88,999.000,999.0,99.0 +1986,4,7,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,-2.2,25,88300,585,1364,319,399,788,63,42700,76200,9900,1390,10,7.7,0,0,64.4,77777,9,999999999,100,0.0750,0,88,999.000,999.0,99.0 +1986,4,7,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,-1.7,28,88300,362,1364,315,211,634,45,22200,55000,7500,920,10,6.7,0,0,64.4,77777,9,999999999,100,0.0750,0,88,999.000,999.0,99.0 +1986,4,7,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,-1.7,34,88400,126,1364,301,49,271,24,5000,14600,3700,430,340,3.6,0,0,64.4,77777,9,999999999,100,0.0750,0,88,999.000,999.0,99.0 +1986,4,7,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,12.2,-2.8,35,88400,0,80,293,0,0,0,0,0,0,0,240,3.6,0,0,24.1,77777,9,999999999,89,0.0750,0,88,999.000,999.0,99.0 +1986,4,7,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,10.0,-2.8,41,88500,0,0,284,0,0,0,0,0,0,0,250,4.1,0,0,24.1,77777,9,999999999,89,0.0750,0,88,999.000,999.0,99.0 +1986,4,7,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,8.3,-2.8,46,88500,0,0,277,0,0,0,0,0,0,0,250,2.1,0,0,24.1,77777,9,999999999,89,0.0750,0,88,999.000,999.0,99.0 +1986,4,7,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,7.2,-2.2,52,88600,0,0,273,0,0,0,0,0,0,0,240,3.6,0,0,24.1,77777,9,999999999,100,0.0750,0,88,999.000,999.0,99.0 +1986,4,7,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,7.2,-2.8,49,88600,0,0,273,0,0,0,0,0,0,0,240,2.1,0,0,24.1,77777,9,999999999,89,0.0750,0,88,999.000,999.0,99.0 +1986,4,8,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,6.1,-2.8,53,88600,0,0,269,0,0,0,0,0,0,0,140,2.1,0,0,24.1,77777,9,999999999,89,0.0750,0,88,999.000,999.0,99.0 +1986,4,8,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,5.6,-3.5,57,88600,0,0,266,0,0,0,0,0,0,0,260,4.1,0,0,24.1,77777,9,999999999,100,0.0750,0,88,999.000,999.0,99.0 +1986,4,8,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,5.0,-3.2,62,88600,0,0,264,0,0,0,0,0,0,0,250,3.6,0,0,24.1,77777,9,999999999,100,0.0750,0,88,999.000,999.0,99.0 +1986,4,8,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,3.3,-3.3,66,88600,0,0,258,0,0,0,0,0,0,0,220,2.1,0,0,24.1,77777,9,999999999,89,0.0750,0,88,999.000,999.0,99.0 +1986,4,8,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,1.1,-3.9,70,88600,0,0,249,0,0,0,0,0,0,0,200,2.1,0,0,24.1,77777,9,999999999,89,0.0750,0,88,999.000,999.0,99.0 +1986,4,8,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,0.0,-4.4,72,88600,1,102,244,0,0,0,0,0,0,0,250,2.1,0,0,64.4,77777,9,999999999,80,0.0750,0,88,999.000,999.0,99.0 +1986,4,8,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,-2.8,65,88600,130,1363,258,43,177,27,4600,8800,3800,480,290,3.1,0,0,64.4,77777,9,999999999,89,0.1180,0,88,999.000,999.0,99.0 +1986,4,8,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,-1.7,58,88600,367,1363,270,201,541,58,21200,46400,8700,1100,360,1.5,0,0,64.4,77777,9,999999999,100,0.1180,0,88,999.000,999.0,99.0 +1986,4,8,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,-1.1,52,88600,590,1363,279,388,714,82,40500,68400,10800,1630,360,2.6,0,0,64.4,77777,9,999999999,100,0.1180,0,88,999.000,999.0,99.0 +1986,4,8,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,-3.3,37,88600,782,1363,288,562,808,101,59300,80200,13200,2270,50,2.1,0,0,64.4,77777,9,999999999,89,0.1180,0,88,999.000,999.0,99.0 +1986,4,8,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,-1.1,37,88500,929,1363,299,695,855,115,74000,86000,15200,3020,260,2.1,0,0,64.4,77777,9,999999999,100,0.1180,0,88,999.000,999.0,99.0 +1986,4,8,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,-1.1,28,88400,1021,1363,325,728,770,153,76000,77100,18200,4320,90,3.6,1,1,64.4,77777,9,999999999,100,0.1180,0,88,999.000,999.0,99.0 +1986,4,8,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,-1.7,29,88300,1053,1363,323,744,738,176,79700,75400,21300,5870,70,4.6,2,2,64.4,77777,9,999999999,100,0.1180,0,88,999.000,999.0,99.0 +1986,4,8,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,-4.4,20,88300,1021,1363,330,687,687,174,73400,70100,20800,5460,250,2.6,2,2,64.4,77777,9,999999999,80,0.1180,0,88,999.000,999.0,99.0 +1986,4,8,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,-5.6,17,88200,929,1363,337,631,674,173,66700,68200,20100,4640,190,4.1,3,3,64.4,77777,9,999999999,80,0.1180,0,88,999.000,999.0,99.0 +1986,4,8,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,-6.7,16,88200,781,1363,338,557,750,129,59100,75300,15900,2980,90,2.6,4,4,64.4,77777,9,999999999,69,0.1180,0,88,999.000,999.0,99.0 +1986,4,8,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,-3.9,20,88200,590,1363,336,371,572,125,38400,54500,14700,2420,180,2.6,2,2,64.4,77777,9,999999999,89,0.1180,0,88,999.000,999.0,99.0 +1986,4,8,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,-4.4,20,88100,367,1363,330,180,425,67,18700,36200,8900,1230,130,4.1,2,2,64.4,77777,9,999999999,80,0.1180,0,88,999.000,999.0,99.0 +1986,4,8,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,-3.3,27,88100,131,1363,312,38,150,25,4200,7500,3500,440,140,2.1,1,1,24.1,77777,9,999999999,89,0.1180,0,88,999.000,999.0,99.0 +1986,4,8,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,12.2,-3.3,34,88100,1,102,298,0,0,0,0,0,0,0,230,2.6,1,1,24.1,77777,9,999999999,89,0.1180,0,88,999.000,999.0,99.0 +1986,4,8,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,9.4,-3.3,41,88200,0,0,281,0,0,0,0,0,0,0,330,1.5,0,0,24.1,77777,9,999999999,89,0.1180,0,88,999.000,999.0,99.0 +1986,4,8,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,9.4,-3.3,41,88200,0,0,281,0,0,0,0,0,0,0,30,1.5,2,0,24.1,77777,9,999999999,89,0.1180,0,88,999.000,999.0,99.0 +1986,4,8,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,6.7,-2.8,51,88200,0,0,276,0,0,0,0,0,0,0,260,3.1,2,1,24.1,77777,9,999999999,89,0.1180,0,88,999.000,999.0,99.0 +1986,4,8,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,7.2,-2.8,49,88200,0,0,273,0,0,0,0,0,0,0,240,1.5,0,0,24.1,77777,9,999999999,89,0.1180,0,88,999.000,999.0,99.0 +1986,4,9,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,5.6,-3.3,53,88200,0,0,266,0,0,0,0,0,0,0,250,2.1,0,0,24.1,77777,9,999999999,89,0.1180,0,88,999.000,999.0,99.0 +1986,4,9,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,2.8,-3.3,65,88200,0,0,256,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,89,0.1180,0,88,999.000,999.0,99.0 +1986,4,9,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,3.9,-3.3,60,88200,0,0,260,0,0,0,0,0,0,0,250,1.5,0,0,24.1,77777,9,999999999,89,0.1180,0,88,999.000,999.0,99.0 +1986,4,9,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,1.7,-3.3,70,88200,0,0,252,0,0,0,0,0,0,0,120,2.6,0,0,24.1,77777,9,999999999,89,0.1180,0,88,999.000,999.0,99.0 +1986,4,9,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,1.7,-3.3,70,88200,0,0,252,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,89,0.1180,0,88,999.000,999.0,99.0 +1986,4,9,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.6,-3.3,76,88200,1,148,252,3,4,1,0,0,0,0,130,2.6,1,1,64.4,77777,9,999999999,89,0.0310,0,88,999.000,999.0,99.0 +1986,4,9,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,-2.8,73,88200,137,1362,257,53,357,19,5600,22300,3400,390,0,0.0,4,1,64.4,77777,9,999999999,89,0.0310,0,88,999.000,999.0,99.0 +1986,4,9,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,-1.7,58,88200,374,1362,275,213,650,37,22800,57400,7000,900,0,0.0,3,1,64.4,77777,9,999999999,100,0.0310,0,88,999.000,999.0,99.0 +1986,4,9,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,-0.6,50,88200,596,1362,284,365,763,34,39400,73500,7100,1010,0,0.0,0,0,64.4,77777,9,999999999,110,0.0310,0,88,999.000,999.0,99.0 +1986,4,9,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,0.0,42,88100,788,1362,304,529,802,67,55800,79200,9900,1690,30,1.5,6,1,64.4,77777,9,999999999,110,0.0310,0,88,999.000,999.0,99.0 +1986,4,9,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,-0.6,30,88100,934,1362,327,661,795,118,70200,79900,15200,3100,270,2.6,6,2,64.4,77777,9,999999999,110,0.0310,0,88,999.000,999.0,99.0 +1986,4,9,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,-3.9,22,88000,1027,1362,334,587,447,251,63300,46600,28200,7930,10,3.6,10,4,64.4,77777,9,999999999,89,0.0310,0,88,999.000,999.0,99.0 +1986,4,9,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,-1.1,26,88000,1058,1362,340,753,745,177,80800,76200,21500,5970,10,7.2,10,4,64.4,77777,9,999999999,100,0.0310,0,88,999.000,999.0,99.0 +1986,4,9,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,-0.6,25,88000,1026,1362,346,786,818,171,84000,83600,21000,5430,10,7.7,10,4,64.4,77777,9,999999999,100,0.0310,0,88,999.000,999.0,99.0 +1986,4,9,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,-1.7,24,87900,933,1362,347,591,498,251,62900,51500,27500,6860,10,6.2,10,6,64.4,6100,9,999999999,100,0.0310,0,88,999.000,999.0,99.0 +1986,4,9,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,-1.1,27,87900,786,1362,347,389,245,249,41900,25900,26900,6100,10,7.2,10,7,64.4,6100,9,999999999,100,0.0310,0,88,999.000,999.0,99.0 +1986,4,9,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,-1.7,27,87900,595,1362,349,239,166,167,26200,16700,19000,3990,360,5.2,10,8,64.4,6100,9,999999999,100,0.0310,0,88,999.000,999.0,99.0 +1986,4,9,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,-0.6,32,87900,372,1362,350,102,39,91,11200,3500,10200,2430,10,4.6,10,9,64.4,6100,9,999999999,100,0.0310,0,88,999.000,999.0,99.0 +1986,4,9,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,0.6,39,87900,136,1362,343,39,6,38,4300,0,4300,1190,350,1.5,10,9,64.4,6100,9,999999999,110,0.0310,0,88,999.000,999.0,99.0 +1986,4,9,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,0.0,42,88000,1,125,335,2,0,2,0,0,0,0,260,2.6,10,9,24.1,6100,9,999999999,110,0.0310,0,88,999.000,999.0,99.0 +1986,4,9,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,11.7,0.6,47,88000,0,0,315,0,0,0,0,0,0,0,280,4.6,8,6,24.1,6100,9,999999999,110,0.0310,0,88,999.000,999.0,99.0 +1986,4,9,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,10.6,1.1,52,88000,0,0,308,0,0,0,0,0,0,0,250,4.1,7,5,24.1,6100,9,999999999,120,0.0310,0,88,999.000,999.0,99.0 +1986,4,9,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,10.6,1.7,55,88000,0,0,308,0,0,0,0,0,0,0,270,5.2,7,5,24.1,6100,9,999999999,120,0.0310,0,88,999.000,999.0,99.0 +1986,4,9,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,7.2,0.0,61,88000,0,0,290,0,0,0,0,0,0,0,110,2.6,6,4,24.1,6100,9,999999999,110,0.0310,0,88,999.000,999.0,99.0 +1986,4,10,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,9.4,1.1,56,88000,0,0,305,0,0,0,0,0,0,0,170,2.1,8,6,24.1,6100,9,999999999,120,0.0310,0,88,999.000,999.0,99.0 +1986,4,10,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,7.2,1.7,68,88000,0,0,286,0,0,0,0,0,0,0,0,0.0,3,2,24.1,77777,9,999999999,120,0.0310,0,88,999.000,999.0,99.0 +1986,4,10,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,3.9,0.6,79,88000,0,0,272,0,0,0,0,0,0,0,40,2.6,3,2,24.1,77777,9,999999999,110,0.0310,0,88,999.000,999.0,99.0 +1986,4,10,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,5.6,1.1,73,88000,0,0,279,0,0,0,0,0,0,0,210,1.5,3,2,24.1,77777,9,999999999,120,0.0310,0,88,999.000,999.0,99.0 +1986,4,10,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,3.3,0.6,82,88000,0,0,270,0,0,0,0,0,0,0,190,2.6,3,2,24.1,77777,9,999999999,110,0.0310,0,88,999.000,999.0,99.0 +1986,4,10,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.1,-0.6,89,88000,2,193,263,4,3,3,0,0,0,0,0,0.0,8,3,64.4,77777,9,999999999,110,0.0280,0,88,999.000,999.0,99.0 +1986,4,10,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,0.0,85,88000,144,1362,268,51,244,26,5300,14100,3800,470,240,2.1,6,3,64.4,77777,9,999999999,110,0.0280,0,88,999.000,999.0,99.0 +1986,4,10,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,2.2,71,88000,381,1362,290,208,487,74,21600,41800,9900,1350,90,1.5,7,3,64.4,77777,9,999999999,120,0.0280,0,88,999.000,999.0,99.0 +1986,4,10,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,2.8,59,88000,603,1362,305,271,362,113,29600,35600,13800,2220,90,3.1,8,3,64.4,77777,9,999999999,129,0.0280,0,88,999.000,999.0,99.0 +1986,4,10,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,-1.1,39,87900,794,1362,310,535,716,120,57200,72200,15000,2840,270,7.7,8,3,64.4,77777,9,999999999,100,0.0280,0,88,999.000,999.0,99.0 +1986,4,10,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,-1.7,32,87800,940,1362,319,638,710,149,68300,72400,18200,4150,280,7.7,8,3,64.4,77777,9,999999999,100,0.0280,0,88,999.000,999.0,99.0 +1986,4,10,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,-1.7,29,87800,1032,1362,327,747,821,127,79800,83000,16800,3900,290,9.3,8,3,64.4,77777,9,999999999,100,0.0280,0,88,999.000,999.0,99.0 +1986,4,10,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,-1.1,31,87700,1063,1362,325,708,648,204,75100,65800,23600,6860,260,7.7,8,3,64.4,77777,9,999999999,100,0.0280,0,88,999.000,999.0,99.0 +1986,4,10,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,-1.7,30,87600,1030,1362,329,661,687,143,69700,69100,17300,4230,260,7.7,5,5,64.4,77777,9,999999999,100,0.0280,0,88,999.000,999.0,99.0 +1986,4,10,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,-1.7,28,87500,938,1362,334,626,699,147,67200,71300,17900,4080,270,8.2,5,5,64.4,77777,9,999999999,100,0.0280,0,88,999.000,999.0,99.0 +1986,4,10,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,-3.3,25,87500,791,1362,335,379,251,234,41000,26600,25500,5670,260,7.7,8,6,64.4,7620,9,999999999,89,0.0280,0,88,999.000,999.0,99.0 +1986,4,10,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,-2.2,28,87500,599,1362,334,273,300,142,29700,30400,16300,2940,260,8.8,8,6,64.4,7620,9,999999999,100,0.0280,0,88,999.000,999.0,99.0 +1986,4,10,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,-2.8,31,87500,377,1362,332,127,44,115,13900,3900,12800,2930,290,6.7,10,8,48.3,3660,9,999999999,89,0.0280,0,88,999.000,999.0,99.0 +1986,4,10,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,-0.6,42,87500,141,1362,341,26,6,26,3000,0,3000,920,260,8.2,10,10,48.3,3050,9,999999999,110,0.0280,0,88,999.000,999.0,99.0 +1986,4,10,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,0.0,48,87600,2,170,334,1,0,1,0,0,0,0,240,4.6,10,10,24.1,3050,9,999999999,110,0.0280,0,88,999.000,999.0,99.0 +1986,4,10,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,10.6,-2.2,41,87700,0,0,331,0,0,0,0,0,0,0,280,5.7,10,10,24.1,1520,9,999999999,100,0.0280,0,88,999.000,999.0,99.0 +1986,4,10,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,8.9,-5.0,37,87700,0,0,320,0,0,0,0,0,0,0,340,2.6,10,10,24.1,1520,9,999999999,80,0.0280,0,88,999.000,999.0,99.0 +1986,4,10,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,6.7,-5.0,44,87700,0,0,291,0,0,0,0,0,0,0,300,4.1,7,7,24.1,3050,9,999999999,80,0.0280,0,88,999.000,999.0,99.0 +1986,4,10,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,5.6,-6.7,41,87800,0,0,274,0,0,0,0,0,0,0,270,6.2,3,3,24.1,77777,9,999999999,69,0.0280,0,88,999.000,999.0,99.0 +1986,4,11,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,5.6,-6.1,43,87800,0,0,272,0,0,0,0,0,0,0,250,6.2,2,2,24.1,77777,9,999999999,80,0.0280,0,88,999.000,999.0,99.0 +1986,4,11,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,1.1,-6.1,59,87800,0,0,255,0,0,0,0,0,0,0,10,2.1,2,2,24.1,77777,9,999999999,80,0.0280,0,88,999.000,999.0,99.0 +1986,4,11,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,2.2,-6.7,52,87800,0,0,259,0,0,0,0,0,0,0,270,4.1,2,2,24.1,77777,9,999999999,69,0.0280,0,88,999.000,999.0,99.0 +1986,4,11,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-0.6,-4.4,75,87900,0,0,250,0,0,0,0,0,0,0,80,2.1,2,2,24.1,77777,9,999999999,80,0.0280,0,88,999.000,999.0,99.0 +1986,4,11,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-1.1,-4.4,78,88000,0,0,249,0,0,0,0,0,0,0,170,2.6,2,2,24.1,77777,9,999999999,80,0.0280,0,88,999.000,999.0,99.0 +1986,4,11,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-2.2,-6.1,75,88000,3,215,240,4,18,2,0,0,0,0,190,1.5,1,1,64.4,77777,9,999999999,80,0.0340,0,88,999.000,999.0,99.0 +1986,4,11,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.1,-3.9,70,88000,151,1361,254,70,474,19,7600,32500,4000,440,210,1.5,1,1,64.4,77777,9,999999999,89,0.0340,0,88,999.000,999.0,99.0 +1986,4,11,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,-3.9,64,88000,388,1361,264,191,421,73,19900,36400,9500,1340,340,3.1,6,3,64.4,77777,9,999999999,89,0.0340,0,88,999.000,999.0,99.0 +1986,4,11,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,-3.9,55,88000,609,1361,272,409,674,110,43000,65200,13700,2220,0,0.0,6,3,64.4,77777,9,999999999,89,0.0340,0,88,999.000,999.0,99.0 +1986,4,11,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,-4.4,45,87900,800,1361,285,511,573,177,55300,58700,20700,4070,50,2.6,10,5,48.3,77777,9,999999999,80,0.0340,0,88,999.000,999.0,99.0 +1986,4,11,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,-5.0,40,87900,946,1361,295,528,396,254,56200,41000,27700,7080,60,3.6,10,7,64.4,6710,9,999999999,80,0.0340,0,88,999.000,999.0,99.0 +1986,4,11,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,-7.2,30,87900,1037,1361,311,423,185,283,47200,19800,32100,9440,80,2.6,10,9,64.4,6710,9,999999999,69,0.0340,0,88,999.000,999.0,99.0 +1986,4,11,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,-7.2,30,87800,1067,1361,304,547,170,414,59600,18000,45400,14410,80,2.6,10,8,64.4,6710,9,999999999,69,0.0340,0,88,999.000,999.0,99.0 +1986,4,11,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,-6.7,30,87600,1035,1361,305,519,205,363,56800,21800,40200,12090,70,3.1,10,7,64.4,6710,9,999999999,80,0.0340,0,88,999.000,999.0,99.0 +1986,4,11,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,-5.6,31,87600,942,1361,309,458,283,262,50100,30500,28900,7280,90,7.7,10,7,64.4,6710,9,999999999,80,0.0340,0,88,999.000,999.0,99.0 +1986,4,11,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,-5.6,32,87500,795,1361,327,288,26,273,32600,2400,31200,10710,90,7.7,10,10,64.4,4270,9,999999999,80,0.0340,0,88,999.000,999.0,99.0 +1986,4,11,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,-5.0,36,87500,604,1361,322,188,36,172,20700,3500,19100,5030,280,3.1,10,10,48.3,1370,9,999999999,80,0.0340,0,88,999.000,999.0,99.0 +1986,4,11,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,-3.9,49,87500,382,1361,309,113,4,112,12600,200,12500,3870,360,8.2,10,10,48.3,1370,9,999999999,89,0.0340,0,88,999.000,999.0,99.0 +1986,4,11,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,-3.3,60,87500,146,1361,300,35,1,35,3900,0,3900,1160,340,6.2,10,10,40.2,1160,9,999999999,89,0.0340,0,88,999.000,999.0,99.0 +1986,4,11,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,-2.8,67,87600,2,193,296,0,0,0,0,0,0,0,310,5.2,10,10,16.1,1160,9,999999999,89,0.0340,0,88,999.000,999.0,99.0 +1986,4,11,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,1.7,-2.2,76,87600,0,0,292,0,0,0,0,0,0,0,300,5.7,10,10,8.0,610,9,999999999,100,0.0340,0,88,999.000,999.0,99.0 +1986,4,11,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,0.0,-0.6,96,87600,0,0,286,0,0,0,0,0,0,0,300,5.2,10,10,6.4,240,9,999999999,100,0.0340,0,88,999.000,999.0,99.0 +1986,4,11,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-0.6,-0.6,100,87500,0,0,284,0,0,0,0,0,0,0,290,4.6,10,10,3.2,210,9,999999999,100,0.0340,0,88,999.000,999.0,99.0 +1986,4,11,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-0.6,-0.6,100,87500,0,0,284,0,0,0,0,0,0,0,310,5.2,10,10,3.2,210,9,999999999,100,0.0340,0,88,999.000,999.0,99.0 +1986,4,12,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-1.1,-1.1,100,87500,0,0,281,0,0,0,0,0,0,0,290,4.6,10,10,3.2,210,9,999999999,100,0.0340,0,88,999.000,999.0,99.0 +1986,4,12,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-1.7,-2.2,96,87500,0,0,277,0,0,0,0,0,0,0,290,4.6,10,10,1.6,150,9,999999999,89,0.0340,0,88,999.000,999.0,99.0 +1986,4,12,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-2.2,-2.8,96,87500,0,0,275,0,0,0,0,0,0,0,300,4.6,10,10,1.6,150,9,999999999,89,0.0340,0,88,999.000,999.0,99.0 +1986,4,12,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-2.8,-2.8,100,87500,0,0,272,0,0,0,0,0,0,0,260,5.2,10,10,1.6,150,9,999999999,89,0.0340,0,88,999.000,999.0,99.0 +1986,4,12,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-3.9,-5.0,92,87500,0,0,266,0,0,0,0,0,0,0,300,6.2,10,10,2.4,610,9,999999999,80,0.0340,0,88,999.000,999.0,99.0 +1986,4,12,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-5.0,-5.6,96,87500,4,261,261,2,0,2,0,0,0,0,310,4.6,10,10,2.4,610,9,999999999,80,0.0510,0,88,999.000,999.0,99.0 +1986,4,12,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-5.6,-6.1,96,87500,158,1360,258,38,2,37,4200,0,4200,1240,280,4.6,10,10,1.6,120,9,999999999,80,0.0510,0,88,999.000,999.0,99.0 +1986,4,12,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-5.6,-7.2,88,87500,394,1360,257,138,0,138,15100,0,15100,4450,300,4.6,10,10,1.6,120,9,999999999,69,0.0510,0,88,999.000,999.0,99.0 +1986,4,12,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-6.1,-7.2,92,87500,616,1360,255,209,3,208,23400,300,23300,7620,310,5.2,10,10,0.8,90,9,999999999,69,0.0510,0,88,999.000,999.0,99.0 +1986,4,12,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-6.1,-7.8,88,87500,806,1360,255,304,1,303,34200,100,34100,11490,320,5.2,10,10,1.6,150,9,999999999,69,0.0510,0,88,999.000,999.0,99.0 +1986,4,12,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-6.7,-8.9,84,87600,951,1360,251,397,0,396,44700,0,44700,15060,330,6.7,10,10,1.6,150,9,999999999,69,0.0510,0,88,999.000,999.0,99.0 +1986,4,12,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-7.2,-8.3,92,87600,1042,1360,250,407,0,407,46500,0,46500,16290,330,6.2,10,10,0.8,120,9,999999999,69,0.0510,0,88,999.000,999.0,99.0 +1986,4,12,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-7.8,-8.9,92,87600,1072,1360,247,428,2,426,48800,200,48700,17000,320,5.2,10,10,0.8,120,9,999999999,69,0.0510,0,88,999.000,999.0,99.0 +1986,4,12,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-7.8,-9.4,88,87600,1040,1360,247,402,0,402,45900,0,45900,16160,320,6.2,10,10,0.8,120,9,999999999,60,0.0510,0,88,999.000,999.0,99.0 +1986,4,12,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-8.3,-9.4,92,87700,946,1360,245,389,2,387,43900,200,43700,14830,310,5.7,10,10,1.2,180,9,999999999,60,0.0510,0,88,999.000,999.0,99.0 +1986,4,12,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-8.9,-10.0,92,87700,799,1360,242,301,1,301,33900,100,33900,11380,340,6.2,10,10,0.8,120,9,999999999,60,0.0510,0,88,999.000,999.0,99.0 +1986,4,12,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-8.9,-10.0,92,87700,608,1360,242,225,0,225,25000,0,25000,7890,300,5.7,10,10,1.2,150,9,999999999,60,0.0510,0,88,999.000,999.0,99.0 +1986,4,12,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-8.9,-10.6,88,87700,386,1360,241,146,1,145,15800,100,15800,4490,320,5.2,10,10,4.8,760,9,999999999,60,0.0510,0,88,999.000,999.0,99.0 +1986,4,12,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-8.9,-12.8,74,87800,151,1360,239,42,1,42,4600,0,4600,1330,280,5.2,10,10,16.1,760,9,999999999,50,0.0510,0,88,999.000,999.0,99.0 +1986,4,12,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-9.4,-12.8,77,87800,3,238,238,3,0,3,0,0,0,0,310,5.2,10,10,3.2,310,9,999999999,50,0.0510,0,88,999.000,999.0,99.0 +1986,4,12,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-10.0,-11.1,92,87800,0,0,237,0,0,0,0,0,0,0,280,4.6,10,10,2.4,240,9,999999999,60,0.0510,0,88,999.000,999.0,99.0 +1986,4,12,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-10.0,-11.1,92,87700,0,0,237,0,0,0,0,0,0,0,270,3.6,10,10,2.4,240,9,999999999,60,0.0510,0,88,999.000,999.0,99.0 +1986,4,12,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-10.0,-11.1,92,87700,0,0,237,0,0,0,0,0,0,0,280,4.6,10,10,2.4,240,9,999999999,60,0.0510,0,88,999.000,999.0,99.0 +1986,4,12,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-10.0,-11.7,88,87700,0,0,236,0,0,0,0,0,0,0,270,5.2,10,10,2.4,240,9,999999999,60,0.0510,0,88,999.000,999.0,99.0 +1986,4,13,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-10.0,-12.8,80,87800,0,0,235,0,0,0,0,0,0,0,310,6.2,10,10,2.4,240,9,999999999,50,0.0510,0,88,999.000,999.0,99.0 +1986,4,13,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-10.6,-12.8,84,87800,0,0,233,0,0,0,0,0,0,0,310,6.7,10,10,4.8,240,9,999999999,50,0.0510,0,88,999.000,999.0,99.0 +1986,4,13,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-10.6,-12.2,88,87900,0,0,234,0,0,0,0,0,0,0,290,5.7,10,10,4.8,240,9,999999999,60,0.0510,0,88,999.000,999.0,99.0 +1986,4,13,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-11.1,-11.7,96,87900,0,0,232,0,0,0,0,0,0,0,270,5.7,10,10,4.8,240,9,999999999,60,0.0510,0,88,999.000,999.0,99.0 +1986,4,13,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-11.1,-11.7,96,87900,0,0,232,0,0,0,0,0,0,0,270,6.2,10,10,4.8,240,9,999999999,60,0.0510,0,88,999.000,999.0,99.0 +1986,4,13,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-11.1,-11.7,96,88000,5,306,232,4,0,4,0,0,0,0,270,6.7,10,10,3.2,210,9,999999999,60,0.0260,0,88,999.000,999.0,99.0 +1986,4,13,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-11.1,-12.2,92,88000,165,1359,232,61,1,61,6600,0,6600,1700,280,6.2,10,10,3.2,210,9,999999999,60,0.0260,0,88,999.000,999.0,99.0 +1986,4,13,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-10.6,-11.7,92,88200,401,1359,234,161,1,161,17500,100,17500,4850,280,4.6,10,10,1.6,150,9,999999999,60,0.0260,0,88,999.000,999.0,99.0 +1986,4,13,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-10.6,-11.7,92,88200,622,1359,234,263,0,262,28800,0,28800,8640,290,4.6,10,10,1.6,150,9,999999999,60,0.0260,0,88,999.000,999.0,99.0 +1986,4,13,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-9.4,-11.7,84,88300,811,1359,239,362,1,362,40200,100,40200,12620,310,4.1,10,10,1.6,150,9,999999999,60,0.0260,0,88,999.000,999.0,99.0 +1986,4,13,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-6.7,-11.7,68,88300,956,1359,249,422,2,421,47500,200,47300,15590,0,0.0,10,10,6.4,310,9,999999999,60,0.0260,0,88,999.000,999.0,99.0 +1986,4,13,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-3.9,-12.8,51,88300,1047,1359,237,639,269,432,69300,28400,47400,14640,0,0.0,10,5,48.3,77777,9,999999999,50,0.0260,0,88,999.000,999.0,99.0 +1986,4,13,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-3.3,-12.8,49,88300,1077,1359,244,584,134,478,64200,13900,53200,17770,0,0.0,10,7,64.4,6710,9,999999999,50,0.0260,0,88,999.000,999.0,99.0 +1986,4,13,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-3.9,-13.3,48,88300,1044,1359,250,526,111,441,57900,11500,49000,16040,100,2.6,10,9,48.3,1220,9,999999999,50,0.0260,0,88,999.000,999.0,99.0 +1986,4,13,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-3.9,-12.8,51,88300,951,1359,258,400,23,384,45200,2300,43600,14820,100,3.1,10,10,48.3,1220,9,999999999,50,0.0260,0,88,999.000,999.0,99.0 +1986,4,13,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-3.9,-11.7,55,88300,804,1359,252,335,91,282,36900,9200,31400,8870,110,4.1,10,9,48.3,1160,9,999999999,60,0.0260,0,88,999.000,999.0,99.0 +1986,4,13,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-2.2,-8.3,63,88300,613,1359,252,240,123,185,26300,12400,20600,4460,130,5.7,8,7,48.3,1160,9,999999999,69,0.0260,0,88,999.000,999.0,99.0 +1986,4,13,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-3.3,-7.8,72,88400,391,1359,238,269,729,62,27500,63800,9200,1120,120,6.2,2,2,48.3,77777,9,999999999,69,0.0260,0,88,999.000,999.0,99.0 +1986,4,13,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-5.6,-8.9,78,88400,155,1359,226,74,420,28,7500,27000,4500,490,130,4.1,1,1,48.3,77777,9,999999999,69,0.0260,0,88,999.000,999.0,99.0 +1986,4,13,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-7.8,-10.0,84,88500,4,261,213,8,31,2,0,0,0,0,280,2.6,0,0,24.1,77777,9,999999999,60,0.0260,0,88,999.000,999.0,99.0 +1986,4,13,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-6.1,-8.9,81,88500,0,0,220,0,0,0,0,0,0,0,260,6.7,0,0,24.1,77777,9,999999999,69,0.0260,0,88,999.000,999.0,99.0 +1986,4,13,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-8.3,-10.6,84,88600,0,0,211,0,0,0,0,0,0,0,240,2.6,0,0,24.1,77777,9,999999999,60,0.0260,0,88,999.000,999.0,99.0 +1986,4,13,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-8.9,-10.6,88,88600,0,0,209,0,0,0,0,0,0,0,200,1.5,0,0,24.1,77777,9,999999999,60,0.0260,0,88,999.000,999.0,99.0 +1986,4,13,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-9.4,-11.1,88,88700,0,0,207,0,0,0,0,0,0,0,290,2.1,0,0,24.1,77777,9,999999999,60,0.0260,0,88,999.000,999.0,99.0 +1986,4,14,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-10.0,-11.1,92,88700,0,0,205,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,60,0.0260,0,88,999.000,999.0,99.0 +1986,4,14,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-9.4,-10.6,92,88700,0,0,208,0,0,0,0,0,0,0,260,3.1,0,0,24.1,77777,9,999999999,60,0.0260,0,88,999.000,999.0,99.0 +1986,4,14,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-8.9,-10.6,88,88800,0,0,209,0,0,0,0,0,0,0,270,3.6,0,0,24.1,77777,9,999999999,60,0.0260,0,88,999.000,999.0,99.0 +1986,4,14,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-10.0,-11.7,88,88800,0,0,205,0,0,0,0,0,0,0,270,2.6,0,0,24.1,77777,9,999999999,60,0.0260,0,88,999.000,999.0,99.0 +1986,4,14,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-12.2,-13.3,92,88800,0,0,197,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,50,0.0260,0,88,999.000,999.0,99.0 +1986,4,14,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-12.2,-13.9,88,88800,7,351,196,8,50,3,0,0,0,0,210,2.6,0,0,48.3,77777,9,999999999,50,0.0300,0,88,999.000,999.0,99.0 +1986,4,14,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-10.6,-13.3,80,88800,172,1359,202,87,539,22,9500,38400,4700,490,0,0.0,0,0,48.3,77777,9,999999999,50,0.0300,0,88,999.000,999.0,99.0 +1986,4,14,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-7.2,-11.1,74,88800,408,1359,214,271,789,38,29100,71000,7800,950,0,0.0,0,0,48.3,77777,9,999999999,60,0.0300,0,88,999.000,999.0,99.0 +1986,4,14,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-5.6,-10.6,68,88800,628,1359,220,466,901,53,49600,87100,9200,1330,0,0.0,0,0,64.4,77777,9,999999999,60,0.0300,0,88,999.000,999.0,99.0 +1986,4,14,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-3.3,-9.4,63,88800,817,1359,229,647,929,91,67700,91800,12300,1930,0,0.0,3,0,64.4,77777,9,999999999,60,0.0300,0,88,999.000,999.0,99.0 +1986,4,14,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-2.2,-7.8,66,88800,962,1359,238,727,828,143,75900,82700,17200,3700,300,1.5,7,1,64.4,77777,9,999999999,69,0.0300,0,88,999.000,999.0,99.0 +1986,4,14,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-0.6,-7.2,61,88700,1052,1359,244,867,935,146,91500,94100,18500,4520,30,1.5,6,1,64.4,77777,9,999999999,69,0.0300,0,88,999.000,999.0,99.0 +1986,4,14,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,-6.1,55,88600,1081,1359,251,884,969,115,91600,96900,14300,3310,60,1.5,3,0,64.4,77777,9,999999999,80,0.0300,0,88,999.000,999.0,99.0 +1986,4,14,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,-5.0,57,88500,1048,1359,259,768,820,137,81500,82700,17500,4280,320,2.6,5,1,64.4,77777,9,999999999,80,0.0300,0,88,999.000,999.0,99.0 +1986,4,14,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,-3.9,57,88500,955,1359,270,723,672,252,77200,69700,28100,7130,270,2.6,10,3,64.4,77777,9,999999999,89,0.0300,0,88,999.000,999.0,99.0 +1986,4,14,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,-2.8,53,88400,808,1359,280,539,602,183,58200,61700,21400,4250,220,1.5,9,3,64.4,77777,9,999999999,89,0.0300,0,88,999.000,999.0,99.0 +1986,4,14,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,-3.3,47,88400,617,1359,281,436,696,122,45400,67200,14900,2440,0,0.0,7,2,64.4,77777,9,999999999,89,0.0300,0,88,999.000,999.0,99.0 +1986,4,14,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,-3.3,47,88300,396,1359,286,197,348,97,20700,30400,11800,1810,0,0.0,9,4,64.4,77777,9,999999999,89,0.0300,0,88,999.000,999.0,99.0 +1986,4,14,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,-2.8,55,88300,160,1359,280,48,64,41,5300,3900,4800,860,290,2.1,8,4,64.4,77777,9,999999999,89,0.0300,0,88,999.000,999.0,99.0 +1986,4,14,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,-1.7,67,88300,5,283,275,4,7,3,0,0,0,0,0,0.0,8,4,24.1,77777,9,999999999,100,0.0300,0,88,999.000,999.0,99.0 +1986,4,14,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,1.7,-1.1,82,88300,0,0,265,0,0,0,0,0,0,0,180,2.1,7,3,24.1,77777,9,999999999,100,0.0300,0,88,999.000,999.0,99.0 +1986,4,14,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,1.1,-1.1,85,88300,0,0,264,0,0,0,0,0,0,0,200,1.5,8,4,24.1,77777,9,999999999,100,0.0300,0,88,999.000,999.0,99.0 +1986,4,14,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,1.1,-1.1,85,88400,0,0,264,0,0,0,0,0,0,0,0,0.0,8,4,24.1,77777,9,999999999,100,0.0300,0,88,999.000,999.0,99.0 +1986,4,14,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,0.6,-1.7,85,88300,0,0,262,0,0,0,0,0,0,0,290,2.1,8,4,24.1,77777,9,999999999,100,0.0300,0,88,999.000,999.0,99.0 +1986,4,15,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,0.0,-2.2,85,88300,0,0,259,0,0,0,0,0,0,0,290,2.6,8,4,24.1,77777,9,999999999,100,0.0300,0,88,999.000,999.0,99.0 +1986,4,15,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-1.1,-2.8,89,88300,0,0,250,0,0,0,0,0,0,0,260,3.6,6,2,24.1,77777,9,999999999,89,0.0300,0,88,999.000,999.0,99.0 +1986,4,15,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-2.2,-2.8,96,88300,0,0,246,0,0,0,0,0,0,0,260,2.6,6,2,24.1,77777,9,999999999,89,0.0300,0,88,999.000,999.0,99.0 +1986,4,15,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-2.2,-3.3,92,88300,0,0,246,0,0,0,0,0,0,0,270,2.1,6,2,24.1,77777,9,999999999,89,0.0300,0,88,999.000,999.0,99.0 +1986,4,15,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-2.8,-3.3,96,88300,0,0,243,0,0,0,0,0,0,0,230,2.1,6,2,64.4,77777,9,999999999,89,0.0300,0,88,999.000,999.0,99.0 +1986,4,15,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-3.3,-4.4,92,88300,9,396,243,9,27,6,0,0,0,0,0,0.0,7,3,64.4,77777,9,999999999,80,0.0240,0,88,999.000,999.0,99.0 +1986,4,15,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.7,-3.3,89,88300,179,1358,254,52,81,42,5800,5200,5100,880,0,0.0,10,5,64.4,77777,9,999999999,89,0.0240,0,88,999.000,999.0,99.0 +1986,4,15,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.6,-2.8,79,88300,414,1358,265,203,269,122,21600,24400,14100,2460,0,0.0,10,6,64.4,7620,9,999999999,89,0.0240,0,88,999.000,999.0,99.0 +1986,4,15,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,-1.7,73,88200,634,1358,270,384,506,150,41000,50100,17500,3060,0,0.0,10,4,64.4,77777,9,999999999,100,0.0240,0,88,999.000,999.0,99.0 +1986,4,15,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,-1.7,62,88200,823,1358,274,567,752,113,59400,74800,14000,2570,220,1.5,8,2,64.4,77777,9,999999999,100,0.0240,0,88,999.000,999.0,99.0 +1986,4,15,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,-1.1,58,88100,967,1358,284,693,793,130,73100,79700,16300,3520,310,1.5,9,3,64.4,77777,9,999999999,100,0.0240,0,88,999.000,999.0,99.0 +1986,4,15,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,-0.6,54,88000,1056,1358,294,551,387,251,59800,40400,28300,8460,240,2.6,10,4,64.4,77777,9,999999999,110,0.0240,0,88,999.000,999.0,99.0 +1986,4,15,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,0.0,45,87900,1086,1358,309,722,637,214,76500,64700,24700,7600,300,2.6,10,4,64.4,77777,9,999999999,110,0.0240,0,88,999.000,999.0,99.0 +1986,4,15,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,0.0,40,87700,1053,1358,316,713,663,200,75600,67400,23300,6640,140,2.1,10,4,64.4,77777,9,999999999,110,0.0240,0,88,999.000,999.0,99.0 +1986,4,15,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,-1.1,33,87700,959,1358,325,660,686,177,70000,69600,20700,5000,240,2.6,10,5,64.4,77777,9,999999999,100,0.0240,0,88,999.000,999.0,99.0 +1986,4,15,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,0.0,39,87600,812,1358,324,414,349,206,45400,37200,23100,4950,290,4.1,10,6,64.4,7620,9,999999999,110,0.0240,0,88,999.000,999.0,99.0 +1986,4,15,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,0.0,40,87500,621,1358,321,255,212,159,27700,21600,17700,3380,310,3.1,10,6,64.4,7620,9,999999999,110,0.0240,0,88,999.000,999.0,99.0 +1986,4,15,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,0.0,40,87500,400,1358,321,173,238,104,18600,21400,12300,2040,110,2.6,10,6,64.4,6100,9,999999999,110,0.0240,0,88,999.000,999.0,99.0 +1986,4,15,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,0.0,45,87400,165,1358,318,62,70,54,6700,4300,6200,1130,0,0.0,10,7,64.4,6100,9,999999999,110,0.0240,0,88,999.000,999.0,99.0 +1986,4,15,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,0.0,50,87400,6,328,310,4,3,4,0,0,0,0,240,3.1,10,7,24.1,6100,9,999999999,110,0.0240,0,88,999.000,999.0,99.0 +1986,4,15,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,8.3,0.0,56,87400,0,0,308,0,0,0,0,0,0,0,0,0.0,10,8,24.1,6100,9,999999999,110,0.0240,0,88,999.000,999.0,99.0 +1986,4,15,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,6.7,0.0,63,87300,0,0,293,0,0,0,0,0,0,0,340,3.1,10,6,24.1,6100,9,999999999,110,0.0240,0,88,999.000,999.0,99.0 +1986,4,15,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,5.6,0.0,68,87300,0,0,296,0,0,0,0,0,0,0,240,2.6,10,8,24.1,6100,9,999999999,110,0.0240,0,88,999.000,999.0,99.0 +1986,4,15,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,4.4,0.0,73,87200,0,0,281,0,0,0,0,0,0,0,260,3.6,10,5,24.1,77777,9,999999999,110,0.0240,0,88,999.000,999.0,99.0 +1986,4,16,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,4.4,0.0,73,87100,0,0,297,0,0,0,0,0,0,0,220,1.5,10,9,24.1,6100,9,999999999,110,0.0240,0,88,999.000,999.0,99.0 +1986,4,16,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,4.4,0.0,73,87100,0,0,306,0,0,0,0,0,0,0,250,3.1,10,10,24.1,1520,9,999999999,110,0.0240,0,88,999.000,999.0,99.0 +1986,4,16,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,3.9,1.1,82,87000,0,0,305,0,0,0,0,0,0,0,120,1.5,10,10,24.1,1370,9,999999999,120,0.0240,0,88,999.000,999.0,99.0 +1986,4,16,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,3.9,0.6,79,87100,0,0,304,0,0,0,0,0,0,0,0,0.0,10,10,24.1,1370,9,999999999,110,0.0240,0,88,999.000,999.0,99.0 +1986,4,16,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,3.9,1.1,82,87100,0,0,305,0,0,0,0,0,0,0,300,2.6,10,10,24.1,1370,9,999999999,120,0.0240,0,88,999.000,999.0,99.0 +1986,4,16,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,3.9,93,87100,11,441,312,1,0,1,0,0,0,0,260,6.2,10,10,8.0,580,9,999999999,139,0.0640,0,88,999.000,999.0,99.0 +1986,4,16,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,2.2,76,87200,186,1357,316,39,6,38,4400,0,4400,1340,270,4.1,10,10,24.1,790,9,999999999,120,0.0640,0,88,999.000,999.0,99.0 +1986,4,16,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,1.7,63,87200,421,1357,301,163,152,117,17900,14000,13600,2630,280,2.6,10,6,48.3,2130,9,999999999,120,0.0640,0,88,999.000,999.0,99.0 +1986,4,16,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,2.2,68,87200,640,1357,303,238,184,152,26000,18900,17000,3220,270,4.6,9,7,40.2,3050,9,999999999,120,0.0640,0,88,999.000,999.0,99.0 +1986,4,16,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,3.3,66,87200,828,1357,308,312,84,261,34400,8500,29200,8550,260,3.1,8,6,40.2,3050,9,999999999,129,0.0640,0,88,999.000,999.0,99.0 +1986,4,16,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,0.0,48,87200,972,1357,309,649,596,224,67800,59800,24900,6260,280,4.1,8,6,40.2,3050,9,999999999,110,0.0640,0,88,999.000,999.0,99.0 +1986,4,16,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,0.0,45,87200,1061,1357,318,572,260,369,61900,28100,39900,12640,270,6.2,8,7,48.3,3050,9,999999999,110,0.0640,0,88,999.000,999.0,99.0 +1986,4,16,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,2.2,53,87200,1090,1357,325,430,86,361,47500,8800,40300,14510,290,10.3,10,8,48.3,1520,9,999999999,120,0.0640,0,88,999.000,999.0,99.0 +1986,4,16,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,0.6,58,87200,1057,1357,324,290,9,282,34000,800,33400,12910,260,8.8,10,10,48.3,1520,9,999999999,110,0.0640,0,88,999.000,999.0,99.0 +1986,4,16,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,1.1,61,87200,963,1357,324,230,10,223,27200,800,26600,10390,250,8.8,10,10,48.3,1520,9,999999999,120,0.0640,0,88,999.000,999.0,99.0 +1986,4,16,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,-1.7,46,87300,816,1357,326,248,1,248,28500,100,28400,10270,270,8.2,10,10,32.2,4570,9,999999999,100,0.0640,0,88,999.000,999.0,99.0 +1986,4,16,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,-6.1,31,87300,626,1357,306,270,222,168,29100,22700,18600,3610,280,8.2,8,7,24.1,4570,9,999999999,80,0.0640,0,88,999.000,999.0,99.0 +1986,4,16,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,-4.4,35,87300,405,1357,308,156,140,115,17100,12700,13300,2570,270,8.2,8,7,24.1,6100,9,999999999,80,0.0640,0,88,999.000,999.0,99.0 +1986,4,16,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,-4.4,39,87300,170,1357,292,46,70,37,5000,4400,4500,780,290,6.2,8,4,24.1,77777,9,999999999,80,0.0640,0,88,999.000,999.0,99.0 +1986,4,16,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,-4.4,49,87400,7,351,274,4,8,3,0,0,0,0,270,3.6,5,2,24.1,77777,9,999999999,80,0.0640,0,88,999.000,999.0,99.0 +1986,4,16,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,2.8,-2.8,67,87500,0,0,261,0,0,0,0,0,0,0,270,4.1,3,1,24.1,77777,9,999999999,89,0.0640,0,88,999.000,999.0,99.0 +1986,4,16,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,3.9,-3.9,57,87500,0,0,268,0,0,0,0,0,0,0,270,5.2,6,2,24.1,77777,9,999999999,89,0.0640,0,88,999.000,999.0,99.0 +1986,4,16,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,3.3,-3.9,60,87500,0,0,265,0,0,0,0,0,0,0,250,4.1,6,2,24.1,77777,9,999999999,89,0.0640,0,88,999.000,999.0,99.0 +1986,4,16,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,3.3,-4.4,57,87600,0,0,257,0,0,0,0,0,0,0,230,5.2,2,0,24.1,77777,9,999999999,80,0.0640,0,88,999.000,999.0,99.0 +1986,4,17,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,2.8,-4.4,59,87600,0,0,255,0,0,0,0,0,0,0,240,5.2,3,0,24.1,77777,9,999999999,80,0.0640,0,88,999.000,999.0,99.0 +1986,4,17,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,2.8,-4.4,59,87600,0,0,260,0,0,0,0,0,0,0,240,5.2,4,1,24.1,77777,9,999999999,80,0.0640,0,88,999.000,999.0,99.0 +1986,4,17,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,1.7,-4.4,64,87600,0,0,251,0,0,0,0,0,0,0,240,3.1,3,0,24.1,77777,9,999999999,80,0.0640,0,88,999.000,999.0,99.0 +1986,4,17,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-1.1,-5.0,75,87700,0,0,240,0,0,0,0,0,0,0,0,0.0,2,0,24.1,77777,9,999999999,80,0.0640,0,88,999.000,999.0,99.0 +1986,4,17,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-1.1,-4.4,78,87700,0,0,241,0,0,0,0,0,0,0,10,1.5,2,0,24.1,77777,9,999999999,80,0.0640,0,88,999.000,999.0,99.0 +1986,4,17,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.7,-4.4,82,87700,13,486,243,12,49,6,0,0,0,0,210,2.1,5,1,64.4,77777,9,999999999,80,0.0350,0,88,999.000,999.0,99.0 +1986,4,17,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.1,-2.2,79,87800,192,1356,259,82,298,41,8400,19500,5700,720,0,0.0,8,2,64.4,77777,9,999999999,100,0.0350,0,88,999.000,999.0,99.0 +1986,4,17,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,-2.2,62,87800,427,1356,268,249,641,50,26400,58200,8100,1050,0,0.0,7,1,64.4,77777,9,999999999,100,0.0350,0,88,999.000,999.0,99.0 +1986,4,17,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,-2.8,49,87800,646,1356,282,386,630,88,41400,62300,11700,1890,270,4.6,5,2,64.4,77777,9,999999999,89,0.0350,0,88,999.000,999.0,99.0 +1986,4,17,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,-3.9,39,87800,834,1356,300,443,272,277,47600,28900,29800,7130,270,5.2,8,6,64.4,1520,9,999999999,89,0.0350,0,88,999.000,999.0,99.0 +1986,4,17,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,-4.4,36,87900,977,1356,302,631,581,214,66100,58400,23900,6080,300,7.7,6,6,64.4,1520,9,999999999,80,0.0350,0,88,999.000,999.0,99.0 +1986,4,17,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,-5.6,32,87900,1066,1356,311,421,81,358,46500,8300,40000,14000,270,6.7,8,8,64.4,1520,9,999999999,80,0.0350,0,88,999.000,999.0,99.0 +1986,4,17,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,-6.1,31,87900,1094,1356,306,642,551,199,68500,56200,23100,7290,270,5.7,7,7,64.4,1520,9,999999999,80,0.0350,0,88,999.000,999.0,99.0 +1986,4,17,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,-6.7,27,87800,1061,1356,304,749,772,147,79100,77700,18100,4650,300,6.7,5,5,64.4,77777,9,999999999,69,0.0350,0,88,999.000,999.0,99.0 +1986,4,17,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,-7.2,26,87800,967,1356,301,632,673,154,67800,68700,18700,4490,290,7.2,4,4,64.4,77777,9,999999999,69,0.0350,0,88,999.000,999.0,99.0 +1986,4,17,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,-6.7,25,87800,820,1356,308,546,687,132,58100,69400,16100,3190,310,7.7,5,5,64.4,77777,9,999999999,69,0.0350,0,88,999.000,999.0,99.0 +1986,4,17,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,-7.2,27,87900,630,1356,296,427,728,91,45600,71500,12300,1930,280,9.3,4,3,64.4,77777,9,999999999,69,0.0350,0,88,999.000,999.0,99.0 +1986,4,17,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,-6.7,30,88000,410,1356,292,240,623,54,25100,55700,8200,1080,270,10.3,2,2,64.4,77777,9,999999999,80,0.0350,0,88,999.000,999.0,99.0 +1986,4,17,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,-5.6,37,88100,175,1356,283,78,388,30,8200,24700,5100,550,270,6.2,2,2,24.1,77777,9,999999999,80,0.0350,0,88,999.000,999.0,99.0 +1986,4,17,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,-5.6,43,88200,8,373,275,8,31,5,0,0,0,0,270,6.2,2,2,24.1,77777,9,999999999,80,0.0350,0,88,999.000,999.0,99.0 +1986,4,17,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,6.1,-4.4,47,88300,0,0,267,0,0,0,0,0,0,0,260,6.2,0,0,24.1,77777,9,999999999,80,0.0350,0,88,999.000,999.0,99.0 +1986,4,17,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,5.0,-4.4,51,88300,0,0,263,0,0,0,0,0,0,0,250,7.2,0,0,24.1,77777,9,999999999,80,0.0350,0,88,999.000,999.0,99.0 +1986,4,17,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,3.9,-4.4,55,88300,0,0,259,0,0,0,0,0,0,0,240,5.2,0,0,24.1,77777,9,999999999,80,0.0350,0,88,999.000,999.0,99.0 +1986,4,17,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,3.9,-4.4,55,88400,0,0,259,0,0,0,0,0,0,0,250,4.1,0,0,24.1,77777,9,999999999,80,0.0350,0,88,999.000,999.0,99.0 +1986,4,18,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,2.2,-4.4,62,88400,0,0,252,0,0,0,0,0,0,0,230,1.5,0,0,24.1,77777,9,999999999,80,0.0350,0,88,999.000,999.0,99.0 +1986,4,18,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,2.8,-4.4,59,88400,0,0,263,0,0,0,0,0,0,0,300,4.6,2,2,24.1,77777,9,999999999,80,0.0350,0,88,999.000,999.0,99.0 +1986,4,18,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,2.2,-4.4,62,88400,0,0,257,0,0,0,0,0,0,0,250,4.1,1,1,24.1,77777,9,999999999,80,0.0350,0,88,999.000,999.0,99.0 +1986,4,18,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,2.8,-5.0,57,88400,0,0,259,0,0,0,0,0,0,0,260,3.1,1,1,24.1,77777,9,999999999,80,0.0350,0,88,999.000,999.0,99.0 +1986,4,18,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,3.3,-5.0,55,88400,0,0,267,0,0,0,0,0,0,0,270,6.7,3,3,24.1,77777,9,999999999,80,0.0350,0,88,999.000,999.0,99.0 +1986,4,18,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,-5.0,55,88500,15,508,267,12,44,8,0,0,0,0,280,5.7,3,3,48.3,77777,9,999999999,80,0.0330,0,88,999.000,999.0,99.0 +1986,4,18,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,-4.4,57,88500,199,1355,270,88,261,51,9200,16700,6800,930,270,4.6,4,4,48.3,77777,9,999999999,80,0.0330,0,88,999.000,999.0,99.0 +1986,4,18,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,-4.4,45,88600,433,1355,283,254,554,79,26500,49700,10600,1480,270,7.2,4,4,64.4,77777,9,999999999,80,0.0330,0,88,999.000,999.0,99.0 +1986,4,18,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,-5.6,39,88500,652,1355,284,397,560,130,41400,54500,15200,2650,270,9.3,8,3,64.4,77777,9,999999999,80,0.0330,0,88,999.000,999.0,99.0 +1986,4,18,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,-5.6,37,88500,839,1355,293,566,646,167,59300,64700,19200,4000,270,9.3,10,6,64.4,7620,9,999999999,80,0.0330,0,88,999.000,999.0,99.0 +1986,4,18,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,-5.6,33,88500,982,1355,304,522,404,231,56500,42000,26000,6780,270,12.4,10,7,64.4,7620,9,999999999,80,0.0330,0,88,999.000,999.0,99.0 +1986,4,18,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,-6.7,31,88500,1070,1355,303,552,329,293,61000,35700,32700,9880,280,12.4,10,7,64.4,7620,9,999999999,80,0.0330,0,88,999.000,999.0,99.0 +1986,4,18,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,-6.1,31,88500,1099,1355,311,668,454,300,71500,47300,33000,11260,280,10.3,10,8,64.4,1830,9,999999999,80,0.0330,0,88,999.000,999.0,99.0 +1986,4,18,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,-6.1,32,88500,1065,1355,308,314,101,235,35500,10800,26900,8190,280,10.3,10,8,64.4,1250,9,999999999,80,0.0330,0,88,999.000,999.0,99.0 +1986,4,18,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,-6.1,32,88500,971,1355,308,511,224,351,55800,23700,38800,10890,280,9.3,10,8,64.4,1250,9,999999999,80,0.0330,0,88,999.000,999.0,99.0 +1986,4,18,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,-6.1,32,88500,824,1355,308,365,220,231,39600,23400,25300,5710,270,8.8,10,8,64.4,1250,9,999999999,80,0.0330,0,88,999.000,999.0,99.0 +1986,4,18,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,-6.1,33,88500,634,1355,306,217,69,185,23900,6800,20700,5490,280,10.8,10,8,64.4,1250,9,999999999,80,0.0330,0,88,999.000,999.0,99.0 +1986,4,18,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,-6.1,36,88500,414,1355,296,113,92,86,12700,8500,10100,1920,290,7.7,10,7,64.4,7620,9,999999999,80,0.0330,0,88,999.000,999.0,99.0 +1986,4,18,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,-6.1,39,88500,180,1355,296,52,26,48,5600,1900,5400,1150,300,7.2,10,8,64.4,7620,9,999999999,80,0.0330,0,88,999.000,999.0,99.0 +1986,4,18,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,-6.7,38,88600,9,418,300,3,0,3,0,0,0,0,290,8.8,10,9,48.3,7620,9,999999999,69,0.0330,0,88,999.000,999.0,99.0 +1986,4,18,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,5.6,-6.1,43,88600,0,0,296,0,0,0,0,0,0,0,300,8.2,10,9,24.1,7620,9,999999999,80,0.0330,0,88,999.000,999.0,99.0 +1986,4,18,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,5.0,-6.7,43,88600,0,0,301,0,0,0,0,0,0,0,280,9.3,10,10,24.1,7620,9,999999999,69,0.0330,0,88,999.000,999.0,99.0 +1986,4,18,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,3.9,-6.1,49,88600,0,0,282,0,0,0,0,0,0,0,280,6.7,10,8,24.1,7620,9,999999999,80,0.0330,0,88,999.000,999.0,99.0 +1986,4,18,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,3.9,-6.1,49,88600,0,0,266,0,0,0,0,0,0,0,290,7.7,10,2,24.1,77777,9,999999999,80,0.0330,0,88,999.000,999.0,99.0 +1986,4,19,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,3.3,-5.6,53,88600,0,0,255,0,0,0,0,0,0,0,270,6.2,10,0,24.1,77777,9,999999999,80,0.0330,0,88,999.000,999.0,99.0 +1986,4,19,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,2.2,-5.6,57,88600,0,0,251,0,0,0,0,0,0,0,270,5.2,10,0,24.1,77777,9,999999999,80,0.0330,0,88,999.000,999.0,99.0 +1986,4,19,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,3.9,-5.6,51,88600,0,0,258,0,0,0,0,0,0,0,270,6.7,10,0,24.1,77777,9,999999999,80,0.0330,0,88,999.000,999.0,99.0 +1986,4,19,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,3.9,-5.6,51,88600,0,0,266,0,0,0,0,0,0,0,270,4.6,10,2,24.1,77777,9,999999999,80,0.0330,0,88,999.000,999.0,99.0 +1986,4,19,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,3.3,-5.6,53,88700,0,0,271,0,0,0,0,0,0,0,270,3.6,10,5,24.1,77777,9,999999999,80,0.0330,0,88,999.000,999.0,99.0 +1986,4,19,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,-6.1,47,88700,18,553,272,13,33,10,0,0,0,0,250,7.2,10,4,48.3,77777,9,999999999,80,0.0300,0,88,999.000,999.0,99.0 +1986,4,19,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,-5.6,45,88700,205,1355,273,86,306,41,8900,20700,5800,730,260,5.2,10,2,48.3,77777,9,999999999,80,0.0300,0,88,999.000,999.0,99.0 +1986,4,19,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,-5.6,42,88700,439,1355,290,170,156,120,18700,14600,13900,2710,270,9.3,10,7,64.4,7620,9,999999999,80,0.0300,0,88,999.000,999.0,99.0 +1986,4,19,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,-5.0,42,88700,658,1355,293,314,263,187,33800,27100,20600,4130,270,8.8,10,7,64.4,7620,9,999999999,80,0.0300,0,88,999.000,999.0,99.0 +1986,4,19,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,-4.4,41,88700,844,1355,298,364,183,251,40200,19300,28100,6940,280,7.2,10,7,64.4,7620,9,999999999,89,0.0300,0,88,999.000,999.0,99.0 +1986,4,19,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,-3.9,41,88600,986,1355,306,524,204,376,57100,21600,41300,11870,250,7.7,10,8,64.4,1160,9,999999999,89,0.0300,0,88,999.000,999.0,99.0 +1986,4,19,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,-2.8,41,88600,1075,1355,312,490,169,357,54000,18000,39700,12640,250,10.3,10,8,64.4,1160,9,999999999,89,0.0300,0,88,999.000,999.0,99.0 +1986,4,19,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,-2.8,38,88600,1103,1355,312,652,455,283,70400,47500,31600,10700,270,9.3,10,7,64.4,1160,9,999999999,89,0.0300,0,88,999.000,999.0,99.0 +1986,4,19,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,-2.2,38,88600,1069,1355,315,618,423,285,66300,44100,31400,9990,270,8.8,10,7,64.4,1160,9,999999999,100,0.0300,0,88,999.000,999.0,99.0 +1986,4,19,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,-1.7,38,88600,975,1355,318,523,442,206,57200,46000,24000,5940,280,8.8,10,7,64.4,1160,9,999999999,100,0.0300,0,88,999.000,999.0,99.0 +1986,4,19,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,-1.1,43,88600,828,1355,314,467,426,207,49800,43700,23000,4970,270,9.3,9,7,64.4,1250,9,999999999,100,0.0300,0,88,999.000,999.0,99.0 +1986,4,19,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,-1.1,43,88600,638,1355,319,303,269,177,32700,27600,19600,3850,280,8.2,9,8,64.4,1250,9,999999999,100,0.0300,0,88,999.000,999.0,99.0 +1986,4,19,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,-1.1,45,88600,418,1355,317,92,21,86,10200,1900,9600,2430,270,8.8,9,8,64.4,1250,9,999999999,100,0.0300,0,88,999.000,999.0,99.0 +1986,4,19,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,-0.6,48,88600,185,1355,314,45,2,44,5000,0,4900,1490,280,8.2,9,8,64.4,1250,9,999999999,110,0.0300,0,88,999.000,999.0,99.0 +1986,4,19,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,0.0,52,88600,11,440,319,9,9,8,0,0,0,0,280,6.2,10,9,24.1,1250,9,999999999,110,0.0300,0,88,999.000,999.0,99.0 +1986,4,19,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,9.4,0.0,52,88600,0,0,312,0,0,0,0,0,0,0,280,5.7,9,8,24.1,3660,9,999999999,110,0.0300,0,88,999.000,999.0,99.0 +1986,4,19,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,9.4,-1.1,48,88700,0,0,311,0,0,0,0,0,0,0,270,7.7,8,8,24.1,3660,9,999999999,100,0.0300,0,88,999.000,999.0,99.0 +1986,4,19,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,8.9,-2.2,46,88600,0,0,303,0,0,0,0,0,0,0,280,7.2,7,7,24.1,3660,9,999999999,100,0.0300,0,88,999.000,999.0,99.0 +1986,4,19,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,8.9,0.0,54,88700,0,0,317,0,0,0,0,0,0,0,270,4.6,9,9,24.1,3660,9,999999999,110,0.0300,0,88,999.000,999.0,99.0 +1986,4,20,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,9.4,0.0,52,88700,0,0,312,0,0,0,0,0,0,0,280,7.7,8,8,24.1,1370,9,999999999,110,0.0300,0,88,999.000,999.0,99.0 +1986,4,20,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,9.4,-0.6,50,88700,0,0,318,0,0,0,0,0,0,0,270,6.7,10,9,24.1,1370,9,999999999,110,0.0300,0,88,999.000,999.0,99.0 +1986,4,20,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,10.0,0.0,50,88700,0,0,322,0,0,0,0,0,0,0,280,5.2,10,9,24.1,1370,9,999999999,110,0.0300,0,88,999.000,999.0,99.0 +1986,4,20,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,10.6,2.8,59,88600,0,0,337,0,0,0,0,0,0,0,280,5.2,10,10,24.1,3660,9,999999999,129,0.0300,0,88,999.000,999.0,99.0 +1986,4,20,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,10.0,3.3,64,88600,0,0,335,0,0,0,0,0,0,0,280,7.7,10,10,24.1,1220,9,999999999,129,0.0300,0,88,999.000,999.0,99.0 +1986,4,20,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,2.8,59,88600,20,598,337,9,0,9,0,0,0,0,270,7.7,10,10,48.3,1220,9,999999999,129,0.0290,0,88,999.000,999.0,99.0 +1986,4,20,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,2.8,57,88600,212,1354,339,49,0,49,5500,0,5500,1690,250,7.7,10,10,48.3,1370,9,999999999,129,0.0290,0,88,999.000,999.0,99.0 +1986,4,20,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,2.8,55,88700,445,1354,342,132,1,131,14700,100,14700,4690,270,7.7,10,10,64.4,1160,9,999999999,129,0.0290,0,88,999.000,999.0,99.0 +1986,4,20,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,2.8,53,88700,663,1354,345,237,9,233,26600,800,26200,8610,270,9.3,10,10,64.4,1160,9,999999999,129,0.0290,0,88,999.000,999.0,99.0 +1986,4,20,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,2.8,51,88700,849,1354,348,278,6,275,31900,500,31500,11290,270,6.7,10,10,64.4,3660,9,999999999,129,0.0290,0,88,999.000,999.0,99.0 +1986,4,20,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,2.8,44,88600,991,1354,359,298,3,296,34700,300,34500,12990,280,8.8,10,10,64.4,3660,9,999999999,129,0.0290,0,88,999.000,999.0,99.0 +1986,4,20,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,2.8,40,88600,1079,1354,349,636,552,197,67800,56300,22800,6990,270,10.3,10,8,64.4,7620,9,999999999,129,0.0290,0,88,999.000,999.0,99.0 +1986,4,20,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,2.8,41,88600,1107,1354,347,478,251,273,53300,27300,30900,9800,270,10.3,10,8,64.4,7620,9,999999999,129,0.0290,0,88,999.000,999.0,99.0 +1986,4,20,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,3.3,41,88600,1073,1354,350,592,455,233,64900,47600,27100,8140,280,7.7,10,8,64.4,7620,9,999999999,129,0.0290,0,88,999.000,999.0,99.0 +1986,4,20,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,3.3,41,88600,979,1354,350,402,200,259,44400,21600,28700,7530,290,6.2,10,8,64.4,3660,9,999999999,129,0.0290,0,88,999.000,999.0,99.0 +1986,4,20,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,3.3,41,88500,832,1354,358,322,100,261,35500,10100,29300,8600,280,6.7,10,9,64.4,3660,9,999999999,129,0.0290,0,88,999.000,999.0,99.0 +1986,4,20,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,3.3,43,88500,643,1354,355,225,115,171,24900,11700,19300,4190,10,2.6,10,9,64.4,3660,9,999999999,129,0.0290,0,88,999.000,999.0,99.0 +1986,4,20,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,3.3,43,88500,423,1354,355,129,63,109,14100,5800,12300,2960,20,2.1,10,9,64.4,3660,9,999999999,129,0.0290,0,88,999.000,999.0,99.0 +1986,4,20,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,3.3,44,88500,189,1354,345,65,36,60,7100,2600,6700,1380,0,0.0,10,8,64.4,3660,9,999999999,129,0.0290,0,88,999.000,999.0,99.0 +1986,4,20,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,3.3,44,88400,12,463,345,4,4,4,0,0,0,0,280,4.1,10,8,24.1,3660,9,999999999,129,0.0290,0,88,999.000,999.0,99.0 +1986,4,20,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,15.6,3.3,44,88500,0,0,352,0,0,0,0,0,0,0,320,5.2,10,9,24.1,3660,9,999999999,129,0.0290,0,88,999.000,999.0,99.0 +1986,4,20,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,15.6,2.8,43,88500,0,0,361,0,0,0,0,0,0,0,280,3.1,10,10,24.1,3660,9,999999999,129,0.0290,0,88,999.000,999.0,99.0 +1986,4,20,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,13.3,3.9,53,88500,0,0,351,0,0,0,0,0,0,0,260,3.6,10,10,24.1,3050,9,999999999,139,0.0290,0,88,999.000,999.0,99.0 +1986,4,20,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,15.0,2.2,42,88500,0,0,358,0,0,0,0,0,0,0,270,5.2,10,10,24.1,3050,9,999999999,120,0.0290,0,88,999.000,999.0,99.0 +1986,4,21,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,13.3,2.2,47,88500,0,0,349,0,0,0,0,0,0,0,250,4.1,10,10,24.1,3050,9,999999999,120,0.0290,0,88,999.000,999.0,99.0 +1986,4,21,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,12.8,2.2,49,88400,0,0,347,0,0,0,0,0,0,0,240,2.6,10,10,24.1,3050,9,999999999,129,0.0290,0,88,999.000,999.0,99.0 +1986,4,21,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,11.7,2.2,53,88400,0,0,342,0,0,0,0,0,0,0,240,2.6,10,10,24.1,3050,9,999999999,129,0.0290,0,88,999.000,999.0,99.0 +1986,4,21,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,10.6,2.8,59,88400,0,0,321,0,0,0,0,0,0,0,30,1.5,8,8,24.1,3050,9,999999999,129,0.0290,0,88,999.000,999.0,99.0 +1986,4,21,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,10.0,2.8,61,88300,0,0,318,0,0,0,0,0,0,0,140,2.1,10,8,24.1,3050,9,999999999,129,0.0290,0,88,999.000,999.0,99.0 +1986,4,21,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,1.1,49,88300,23,643,324,11,6,11,0,0,0,0,170,1.5,10,8,32.2,4270,9,999999999,120,0.0410,0,88,999.000,999.0,99.0 +1986,4,21,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,2.2,57,88300,218,1353,320,73,37,67,8000,2800,7500,1580,180,1.5,10,8,48.3,4270,9,999999999,129,0.0410,0,88,999.000,999.0,99.0 +1986,4,21,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,3.9,64,88400,451,1353,322,120,35,108,13100,3200,12100,3020,220,2.1,10,8,64.4,4880,9,999999999,139,0.0410,0,88,999.000,999.0,99.0 +1986,4,21,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,3.9,55,88400,669,1353,339,236,60,206,25900,6000,22900,6160,0,0.0,10,9,64.4,3660,9,999999999,139,0.0410,0,88,999.000,999.0,99.0 +1986,4,21,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,1.7,44,88300,854,1353,342,333,106,266,36500,11200,29500,7420,0,0.0,10,9,64.4,3660,9,999999999,120,0.0410,0,88,999.000,999.0,99.0 +1986,4,21,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,2.8,46,88300,996,1353,356,388,7,383,44200,700,43700,15340,170,1.5,10,10,64.4,3050,9,999999999,129,0.0410,0,88,999.000,999.0,99.0 +1986,4,21,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,3.9,44,88200,1083,1353,355,398,111,309,44200,11900,34700,11110,90,3.6,9,9,64.4,3050,9,999999999,139,0.0410,0,88,999.000,999.0,99.0 +1986,4,21,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,3.9,41,88100,1111,1353,361,395,122,295,44100,13100,33400,11090,90,3.1,9,9,64.4,3660,9,999999999,139,0.0410,0,88,999.000,999.0,99.0 +1986,4,21,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,3.9,37,88000,1076,1353,369,360,40,328,39700,4100,36500,13220,140,4.1,9,9,64.4,3660,9,999999999,139,0.0410,0,88,999.000,999.0,99.0 +1986,4,21,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,3.9,35,88000,983,1353,375,434,104,359,47800,10700,40100,12820,110,4.1,9,9,64.4,3660,9,999999999,139,0.0410,0,88,999.000,999.0,99.0 +1986,4,21,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,6.1,41,87900,836,1353,378,262,131,182,29500,13900,20900,5000,240,2.6,9,9,64.4,2440,9,999999999,160,0.0410,0,88,999.000,999.0,99.0 +1986,4,21,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,5.6,38,87800,647,1353,372,281,147,211,30600,14900,23400,5180,260,2.6,8,8,64.4,2740,9,999999999,150,0.0410,0,88,999.000,999.0,99.0 +1986,4,21,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,5.0,34,87700,427,1353,367,180,202,117,19200,18600,13400,2330,0,0.0,6,6,64.4,3660,9,999999999,150,0.0410,0,88,999.000,999.0,99.0 +1986,4,21,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,6.1,42,87600,194,1353,348,88,371,37,9200,24600,5700,660,150,1.5,5,3,64.4,77777,9,999999999,160,0.0410,0,88,999.000,999.0,99.0 +1986,4,21,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,5.6,58,87600,14,507,322,11,23,8,0,0,0,0,240,2.1,4,3,64.4,77777,9,999999999,150,0.0410,0,88,999.000,999.0,99.0 +1986,4,21,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,11.7,4.4,62,87600,0,0,298,0,0,0,0,0,0,0,280,3.1,2,0,24.1,77777,9,999999999,139,0.0410,0,88,999.000,999.0,99.0 +1986,4,21,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,9.4,4.4,71,87600,0,0,301,0,0,0,0,0,0,0,210,3.1,3,3,24.1,77777,9,999999999,139,0.0410,0,88,999.000,999.0,99.0 +1986,4,21,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,10.6,3.3,61,87600,0,0,313,0,0,0,0,0,0,0,0,0.0,6,6,24.1,3660,9,999999999,129,0.0410,0,88,999.000,999.0,99.0 +1986,4,21,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,9.4,3.9,69,87600,0,0,308,0,0,0,0,0,0,0,330,1.5,8,6,24.1,3660,9,999999999,139,0.0410,0,88,999.000,999.0,99.0 +1986,4,22,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,10.0,3.9,66,87600,0,0,319,0,0,0,0,0,0,0,190,2.6,10,8,24.1,3660,9,999999999,139,0.0410,0,88,999.000,999.0,99.0 +1986,4,22,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,9.4,4.4,71,87500,0,0,333,0,0,0,0,0,0,0,160,3.6,10,10,24.1,3660,9,999999999,139,0.0410,0,88,999.000,999.0,99.0 +1986,4,22,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,8.9,4.4,74,87500,0,0,331,0,0,0,0,0,0,0,30,1.5,10,10,24.1,3660,9,999999999,139,0.0410,0,88,999.000,999.0,99.0 +1986,4,22,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,13.3,5.0,57,87500,0,0,353,0,0,0,0,0,0,0,190,2.1,10,10,24.1,1520,9,999999999,150,0.0410,0,88,999.000,999.0,99.0 +1986,4,22,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,13.3,6.1,62,87400,0,0,354,0,0,0,0,0,0,0,180,7.2,10,10,24.1,1520,9,999999999,160,0.0410,0,88,999.000,999.0,99.0 +1986,4,22,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,6.1,69,87400,26,665,324,10,5,9,0,0,0,0,290,4.1,8,7,32.2,3660,9,999999999,160,0.0420,0,88,999.000,999.0,99.0 +1986,4,22,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,6.1,67,87400,224,1352,327,86,95,70,9200,6800,8100,1490,140,2.6,8,7,32.2,3660,9,999999999,160,0.0420,0,88,999.000,999.0,99.0 +1986,4,22,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,6.7,62,87400,457,1352,329,197,195,132,21000,18300,14800,2690,250,4.1,10,5,64.4,77777,9,999999999,160,0.0420,0,88,999.000,999.0,99.0 +1986,4,22,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,4.4,46,87400,674,1352,343,359,305,208,38500,31600,22700,4720,340,2.6,10,7,64.4,1680,9,999999999,139,0.0420,0,88,999.000,999.0,99.0 +1986,4,22,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,5.6,42,87300,859,1352,342,593,693,154,62700,69900,18200,3840,310,3.6,7,2,64.4,77777,9,999999999,150,0.0420,0,88,999.000,999.0,99.0 +1986,4,22,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,5.0,36,87200,1000,1352,356,681,700,165,72900,71500,19900,5080,300,5.2,5,4,64.4,77777,9,999999999,150,0.0420,0,88,999.000,999.0,99.0 +1986,4,22,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,5.0,32,87100,1087,1352,363,750,756,143,79600,76300,18100,4900,210,5.7,7,3,64.4,77777,9,999999999,150,0.0420,0,88,999.000,999.0,99.0 +1986,4,22,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,4.4,32,87000,1115,1352,369,678,477,285,73100,49800,32000,11160,280,4.6,8,6,64.4,1680,9,999999999,139,0.0420,0,88,999.000,999.0,99.0 +1986,4,22,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,4.4,30,86900,1080,1352,376,624,421,288,66900,43900,31700,10400,300,6.7,10,7,64.4,1680,9,999999999,139,0.0420,0,88,999.000,999.0,99.0 +1986,4,22,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,6.7,38,86900,987,1352,363,632,675,140,68300,69300,17600,4270,270,4.6,5,4,64.4,77777,9,999999999,160,0.0420,0,88,999.000,999.0,99.0 +1986,4,22,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,5.0,33,86800,840,1352,388,294,74,248,32400,7500,27700,8310,310,4.1,10,9,48.3,1680,9,999999999,150,0.0420,0,88,999.000,999.0,99.0 +1986,4,22,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,8.3,65,86900,651,1352,355,225,105,175,24800,10700,19700,4300,250,9.3,9,9,40.2,1680,9,999999999,179,0.0420,0,88,999.000,999.0,99.0 +1986,4,22,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,6.7,50,86800,432,1352,341,259,596,71,27200,53700,10100,1360,280,2.1,4,4,48.3,77777,9,999999999,160,0.0420,0,88,999.000,999.0,99.0 +1986,4,22,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,7.8,62,86800,199,1352,355,51,24,47,5500,1800,5300,1170,220,2.6,10,9,48.3,1370,9,999999999,170,0.0420,0,88,999.000,999.0,99.0 +1986,4,22,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,7.8,69,86900,16,530,330,10,7,9,0,0,0,0,200,3.6,8,6,24.1,1520,9,999999999,170,0.0420,0,88,999.000,999.0,99.0 +1986,4,22,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,12.8,7.2,69,86900,0,0,336,0,0,0,0,0,0,0,250,4.1,10,8,24.1,1680,9,999999999,170,0.0420,0,88,999.000,999.0,99.0 +1986,4,22,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,12.2,6.7,69,87000,0,0,349,0,0,0,0,0,0,0,240,4.1,10,10,24.1,850,9,999999999,160,0.0420,0,88,999.000,999.0,99.0 +1986,4,22,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,11.1,5.6,69,87100,0,0,343,0,0,0,0,0,0,0,240,4.6,10,10,24.1,850,9,999999999,150,0.0420,0,88,999.000,999.0,99.0 +1986,4,22,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,10.6,3.3,61,87200,0,0,338,0,0,0,0,0,0,0,270,8.8,10,10,24.1,1250,9,999999999,129,0.0420,0,88,999.000,999.0,99.0 +1986,4,23,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,8.9,2.2,63,87300,0,0,328,0,0,0,0,0,0,0,290,4.1,10,10,24.1,1250,9,999999999,120,0.0420,0,88,999.000,999.0,99.0 +1986,4,23,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,7.2,1.1,66,87300,0,0,319,0,0,0,0,0,0,0,280,4.6,10,10,24.1,1370,9,999999999,120,0.0420,0,88,999.000,999.0,99.0 +1986,4,23,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,5.6,-1.7,60,87400,0,0,309,0,0,0,0,0,0,0,270,5.2,10,10,24.1,1370,9,999999999,100,0.0420,0,88,999.000,999.0,99.0 +1986,4,23,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,5.6,-1.7,60,87400,0,0,309,0,0,0,0,0,0,0,280,6.2,10,10,24.1,1250,9,999999999,100,0.0420,0,88,999.000,999.0,99.0 +1986,4,23,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,4.4,-3.9,55,87500,0,0,301,0,0,0,0,0,0,0,280,6.2,10,10,24.1,1370,9,999999999,89,0.0420,0,88,999.000,999.0,99.0 +1986,4,23,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,-6.1,50,87700,29,710,280,10,5,10,1100,200,1100,250,280,7.2,10,8,48.3,3050,9,999999999,80,0.0360,0,88,999.000,999.0,99.0 +1986,4,23,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,-7.2,43,87800,231,1352,273,88,79,74,9400,5700,8400,1580,270,6.7,10,5,48.3,77777,9,999999999,69,0.0360,0,88,999.000,999.0,99.0 +1986,4,23,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,-6.1,43,87900,463,1352,285,210,251,125,22500,23700,14400,2510,270,6.2,9,7,48.3,1250,9,999999999,80,0.0360,0,88,999.000,999.0,99.0 +1986,4,23,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,-6.7,45,87900,679,1352,279,331,255,203,35500,26500,22200,4590,280,6.2,8,7,48.3,1250,9,999999999,69,0.0360,0,88,999.000,999.0,99.0 +1986,4,23,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,-6.7,37,87900,864,1352,283,490,521,159,51800,52500,18200,3970,280,8.2,5,4,48.3,77777,9,999999999,69,0.0360,0,88,999.000,999.0,99.0 +1986,4,23,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,-7.8,34,87900,1005,1352,284,625,568,204,65900,57500,23100,6180,280,7.7,6,5,48.3,1370,9,999999999,69,0.0360,0,88,999.000,999.0,99.0 +1986,4,23,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,-8.9,29,87900,1091,1352,283,715,665,179,76800,68200,21700,6630,250,7.7,3,3,64.4,77777,9,999999999,69,0.0360,0,88,999.000,999.0,99.0 +1986,4,23,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,-7.8,29,87900,1118,1352,286,822,860,112,85200,86100,13800,3650,250,7.7,4,2,64.4,77777,9,999999999,69,0.0360,0,88,999.000,999.0,99.0 +1986,4,23,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,-8.3,28,87900,1084,1352,285,792,845,116,82000,84500,14100,3390,290,7.7,5,2,64.4,77777,9,999999999,69,0.0360,0,88,999.000,999.0,99.0 +1986,4,23,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,-8.3,26,87800,990,1352,290,634,687,133,67100,69100,16300,3760,300,8.8,5,2,64.4,77777,9,999999999,69,0.0360,0,88,999.000,999.0,99.0 +1986,4,23,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,-8.9,25,87800,844,1352,289,496,592,129,53200,60100,15600,3220,310,5.2,6,2,64.4,77777,9,999999999,69,0.0360,0,88,999.000,999.0,99.0 +1986,4,23,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,-9.4,25,87800,655,1352,286,419,649,107,44400,63800,13400,2260,300,5.7,7,2,64.4,77777,9,999999999,60,0.0360,0,88,999.000,999.0,99.0 +1986,4,23,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,-10.0,25,87800,436,1352,284,250,554,73,26200,50000,10100,1390,290,4.6,7,3,64.4,77777,9,999999999,60,0.0360,0,88,999.000,999.0,99.0 +1986,4,23,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,-10.0,30,87900,203,1352,277,81,229,48,8600,14900,6300,860,320,5.2,8,4,64.4,77777,9,999999999,60,0.0360,0,88,999.000,999.0,99.0 +1986,4,23,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,-9.4,35,88000,18,552,273,11,6,10,0,0,0,0,330,5.7,10,5,24.1,1680,9,999999999,60,0.0360,0,88,999.000,999.0,99.0 +1986,4,23,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,5.0,-9.4,35,88000,0,0,298,0,0,0,0,0,0,0,300,5.2,10,10,24.1,1680,9,999999999,60,0.0360,0,88,999.000,999.0,99.0 +1986,4,23,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,4.4,-8.9,38,88000,0,0,296,0,0,0,0,0,0,0,280,4.6,10,10,24.1,1680,9,999999999,69,0.0360,0,88,999.000,999.0,99.0 +1986,4,23,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,4.4,-7.8,41,88000,0,0,297,0,0,0,0,0,0,0,220,2.6,10,10,24.1,1520,9,999999999,69,0.0360,0,88,999.000,999.0,99.0 +1986,4,23,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,4.4,-7.2,43,88000,0,0,298,0,0,0,0,0,0,0,200,2.6,10,10,24.1,1370,9,999999999,69,0.0360,0,88,999.000,999.0,99.0 +1986,4,24,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,3.3,-2.2,67,88000,0,0,298,0,0,0,0,0,0,0,180,7.2,10,10,24.1,1070,9,999999999,100,0.0360,0,88,999.000,999.0,99.0 +1986,4,24,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,2.2,-2.8,70,88000,0,0,293,0,0,0,0,0,0,0,180,4.6,10,10,24.1,910,9,999999999,89,0.0360,0,88,999.000,999.0,99.0 +1986,4,24,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,2.8,-3.9,62,88000,0,0,294,0,0,0,0,0,0,0,0,0.0,10,10,24.1,910,9,999999999,89,0.0360,0,88,999.000,999.0,99.0 +1986,4,24,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,1.1,-2.2,79,88000,0,0,289,0,0,0,0,0,0,0,280,1.5,10,10,24.1,910,9,999999999,100,0.0360,0,88,999.000,999.0,99.0 +1986,4,24,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,0.0,-1.1,92,88000,0,0,286,0,0,0,0,0,0,0,0,0.0,10,10,1.2,210,9,999999999,100,0.0360,0,88,999.000,999.0,99.0 +1986,4,24,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.0,-1.1,92,88000,32,754,286,8,1,8,1000,0,1000,300,270,2.6,10,10,1.6,310,9,999999999,100,0.0310,0,88,999.000,999.0,99.0 +1986,4,24,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.0,-0.6,96,88000,237,1351,286,46,9,44,5200,200,5200,1630,260,3.1,10,10,1.6,310,9,999999999,110,0.0310,0,88,999.000,999.0,99.0 +1986,4,24,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.0,-0.6,96,88000,469,1351,286,109,2,108,12400,100,12400,4220,270,4.6,10,10,1.6,310,9,999999999,110,0.0310,0,88,999.000,999.0,99.0 +1986,4,24,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,-1.1,82,87900,684,1351,293,204,8,200,23200,700,22900,8000,240,2.6,10,10,8.0,760,9,999999999,100,0.0310,0,88,999.000,999.0,99.0 +1986,4,24,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,-1.1,79,87900,869,1351,287,338,85,284,37300,8700,31700,9520,360,2.6,10,9,16.1,400,9,999999999,100,0.0310,0,88,999.000,999.0,99.0 +1986,4,24,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,-1.1,70,87900,1009,1351,294,405,98,332,44700,10000,37200,12410,0,0.0,10,9,24.1,520,9,999999999,100,0.0310,0,88,999.000,999.0,99.0 +1986,4,24,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,0.0,68,87800,1095,1351,302,461,131,355,50900,14000,39500,13050,30,2.6,10,9,24.1,580,9,999999999,110,0.0310,0,88,999.000,999.0,99.0 +1986,4,24,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,-1.7,58,87700,1122,1351,296,557,295,313,61700,32100,35000,11840,110,2.1,9,8,40.2,910,9,999999999,100,0.0310,0,88,999.000,999.0,99.0 +1986,4,24,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,-1.1,54,87600,1087,1351,311,495,166,362,54600,17700,40300,13140,130,1.5,10,9,40.2,910,9,999999999,100,0.0310,0,88,999.000,999.0,99.0 +1986,4,24,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,-1.1,50,87500,994,1351,296,678,658,195,71600,66700,22500,5830,0,0.0,5,4,40.2,77777,9,999999999,100,0.0310,0,88,999.000,999.0,99.0 +1986,4,24,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,-2.2,46,87500,848,1351,299,330,191,211,36300,20400,23500,5240,130,2.6,7,6,40.2,1520,9,999999999,100,0.0310,0,88,999.000,999.0,99.0 +1986,4,24,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,-1.7,45,87400,659,1351,308,286,259,160,31100,26800,18100,3440,110,2.1,7,7,40.2,1520,9,999999999,100,0.0310,0,88,999.000,999.0,99.0 +1986,4,24,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,-1.1,48,87400,440,1351,300,203,350,90,21800,31800,11400,1670,170,5.2,6,5,40.2,1520,9,999999999,100,0.0310,0,88,999.000,999.0,99.0 +1986,4,24,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,0.0,61,87400,208,1351,290,84,162,60,8900,10400,7300,1150,150,3.6,4,4,40.2,77777,9,999999999,110,0.0310,0,88,999.000,999.0,99.0 +1986,4,24,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,0.0,70,87400,20,597,276,13,51,8,0,0,0,0,190,2.1,2,2,24.1,77777,9,999999999,110,0.0310,0,88,999.000,999.0,99.0 +1986,4,24,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,4.4,0.0,73,87400,0,0,278,0,0,0,0,0,0,0,230,2.6,8,4,24.1,77777,9,999999999,110,0.0310,0,88,999.000,999.0,99.0 +1986,4,24,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,2.8,0.0,82,87400,0,0,270,0,0,0,0,0,0,0,320,2.1,10,3,24.1,77777,9,999999999,110,0.0310,0,88,999.000,999.0,99.0 +1986,4,24,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,2.2,-0.6,82,87300,0,0,267,0,0,0,0,0,0,0,0,0.0,10,3,24.1,77777,9,999999999,100,0.0310,0,88,999.000,999.0,99.0 +1986,4,24,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,1.7,-0.6,85,87300,0,0,272,0,0,0,0,0,0,0,290,1.5,10,6,24.1,6100,9,999999999,100,0.0310,0,88,999.000,999.0,99.0 +1986,4,25,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,2.8,0.0,82,87300,0,0,280,0,0,0,0,0,0,0,270,2.1,10,7,24.1,3660,9,999999999,110,0.0310,0,88,999.000,999.0,99.0 +1986,4,25,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,2.2,0.0,85,87300,0,0,288,0,0,0,0,0,0,0,270,2.1,10,9,24.1,1520,9,999999999,110,0.0310,0,88,999.000,999.0,99.0 +1986,4,25,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,2.2,0.0,85,87200,0,0,296,0,0,0,0,0,0,0,300,2.6,10,10,24.1,1520,9,999999999,110,0.0310,0,88,999.000,999.0,99.0 +1986,4,25,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,2.2,-9.4,42,87200,0,0,286,0,0,0,0,0,0,0,130,2.6,10,10,24.1,3050,9,999999999,60,0.0310,0,88,999.000,999.0,99.0 +1986,4,25,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,2.2,-0.6,82,87200,0,0,295,0,0,0,0,0,0,0,300,2.1,10,10,24.1,1520,9,999999999,100,0.0310,0,88,999.000,999.0,99.0 +1986,4,25,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,-3.9,64,87200,36,799,284,15,6,14,1600,300,1600,340,280,2.6,10,9,48.3,1520,9,999999999,89,0.0260,0,88,999.000,999.0,99.0 +1986,4,25,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,-4.4,57,87200,243,1350,288,69,15,67,7700,500,7600,2220,290,2.1,10,9,40.2,1370,9,999999999,80,0.0260,0,88,999.000,999.0,99.0 +1986,4,25,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,0.0,70,87200,474,1350,308,147,7,144,16400,500,16200,5170,0,0.0,10,10,32.2,1370,9,999999999,110,0.0260,0,88,999.000,999.0,99.0 +1986,4,25,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,-1.7,52,87100,689,1350,293,354,369,166,37700,37100,18700,3520,0,0.0,8,5,32.2,6100,9,999999999,100,0.0260,0,88,999.000,999.0,99.0 +1986,4,25,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,-0.6,54,87100,873,1350,296,591,640,179,62000,64200,20400,4460,90,3.1,10,5,32.2,77777,9,999999999,100,0.0260,0,88,999.000,999.0,99.0 +1986,4,25,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,-2.8,46,87000,1013,1350,311,367,113,282,40700,12100,31700,9220,30,2.1,10,9,32.2,1370,9,999999999,89,0.0260,0,88,999.000,999.0,99.0 +1986,4,25,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,-1.1,54,87000,1099,1350,320,176,14,165,19600,1400,18500,7370,230,2.6,10,10,32.2,1370,9,999999999,100,0.0260,0,88,999.000,999.0,99.0 +1986,4,25,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,-0.6,48,87000,1126,1350,321,540,295,294,60000,32100,33200,11150,0,0.0,10,9,48.3,1520,9,999999999,100,0.0260,0,88,999.000,999.0,99.0 +1986,4,25,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,-1.1,48,87000,1091,1350,318,560,310,310,61800,33700,34500,11010,260,8.2,10,9,48.3,1520,9,999999999,100,0.0260,0,88,999.000,999.0,99.0 +1986,4,25,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,-2.8,44,87000,997,1350,314,372,112,289,41200,11900,32300,9270,280,6.2,10,9,48.3,1520,9,999999999,89,0.0260,0,88,999.000,999.0,99.0 +1986,4,25,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,-1.1,68,87100,851,1350,304,360,110,291,39600,11200,32600,9550,250,10.3,10,10,24.1,1520,9,999999999,100,0.0260,0,88,999.000,999.0,99.0 +1986,4,25,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,-0.6,70,87100,663,1350,305,141,7,137,16400,500,16200,5960,250,7.2,10,10,11.3,460,9,999999999,100,0.0260,0,88,999.000,999.0,99.0 +1986,4,25,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,-1.1,65,87200,444,1350,307,127,3,126,14200,200,14200,4570,270,8.2,10,10,16.1,460,9,999999999,100,0.0260,0,88,999.000,999.0,99.0 +1986,4,25,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,-1.7,65,87200,213,1350,304,52,1,52,5800,0,5800,1770,270,8.2,10,10,16.1,460,9,999999999,100,0.0260,0,88,999.000,999.0,99.0 +1986,4,25,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,-1.7,67,87300,22,619,302,8,1,8,0,0,0,0,280,6.7,10,10,16.1,210,9,999999999,100,0.0260,0,88,999.000,999.0,99.0 +1986,4,25,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,3.3,-1.1,73,87300,0,0,300,0,0,0,0,0,0,0,310,6.2,10,10,11.3,210,9,999999999,100,0.0260,0,88,999.000,999.0,99.0 +1986,4,25,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,2.2,-1.1,79,87400,0,0,295,0,0,0,0,0,0,0,250,6.2,10,10,11.3,210,9,999999999,100,0.0260,0,88,999.000,999.0,99.0 +1986,4,25,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,1.7,-1.1,82,87400,0,0,293,0,0,0,0,0,0,0,270,5.7,10,10,4.8,120,9,999999999,100,0.0260,0,88,999.000,999.0,99.0 +1986,4,25,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,1.7,-1.1,82,87400,0,0,293,0,0,0,0,0,0,0,270,5.7,10,10,6.4,180,9,999999999,100,0.0260,0,88,999.000,999.0,99.0 +1986,4,26,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,1.7,0.0,89,87500,0,0,294,0,0,0,0,0,0,0,270,4.6,10,10,4.0,120,9,999999999,110,0.0260,0,88,999.000,999.0,99.0 +1986,4,26,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,2.2,-0.6,82,87500,0,0,295,0,0,0,0,0,0,0,340,2.6,10,10,6.4,180,9,999999999,100,0.0260,0,88,999.000,999.0,99.0 +1986,4,26,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,1.7,-2.2,76,87500,0,0,292,0,0,0,0,0,0,0,330,4.6,10,10,4.8,120,9,999999999,100,0.0260,0,88,999.000,999.0,99.0 +1986,4,26,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,0.0,0.0,100,87600,0,0,287,0,0,0,0,0,0,0,300,3.6,10,10,2.4,90,9,999999999,110,0.0260,0,88,999.000,999.0,99.0 +1986,4,26,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,0.0,0.0,100,87600,0,0,287,0,0,0,0,0,0,0,280,2.6,10,10,1.6,90,9,999999999,110,0.0260,0,88,999.000,999.0,99.0 +1986,4,26,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.0,0.0,100,87700,39,821,287,14,0,14,1600,0,1600,490,290,3.6,10,10,2.4,150,9,999999999,110,0.1120,0,88,999.000,999.0,99.0 +1986,4,26,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.6,-0.6,92,87800,248,1349,289,55,2,55,6300,100,6200,1960,300,4.1,10,10,3.2,270,9,999999999,110,0.1120,0,88,999.000,999.0,99.0 +1986,4,26,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.0,0.0,100,87900,480,1349,287,116,0,116,13200,0,13200,4500,270,5.7,10,10,0.8,120,9,999999999,110,0.1120,0,88,999.000,999.0,99.0 +1986,4,26,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.6,0.0,96,87900,694,1349,289,217,3,215,24600,300,24400,8470,270,6.2,10,10,1.6,120,9,999999999,110,0.1120,0,88,999.000,999.0,99.0 +1986,4,26,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,0.0,89,88000,878,1349,294,319,0,319,36200,0,36200,12680,270,5.2,10,10,9.7,520,9,999999999,110,0.1120,0,88,999.000,999.0,99.0 +1986,4,26,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,0.0,79,88100,1017,1349,301,211,2,210,25400,200,25200,10150,270,5.7,10,10,16.1,520,9,999999999,110,0.1120,0,88,999.000,999.0,99.0 +1986,4,26,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,0.0,68,88100,1103,1349,311,386,1,386,44800,100,44700,16330,320,5.7,10,10,16.1,670,9,999999999,110,0.1120,0,88,999.000,999.0,99.0 +1986,4,26,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,-2.2,52,88100,1129,1349,300,525,231,332,57900,25100,36800,12880,340,5.2,10,8,24.1,910,9,999999999,100,0.1120,0,88,999.000,999.0,99.0 +1986,4,26,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,0.0,56,88000,1094,1349,297,828,733,235,87300,74200,27000,8580,330,4.1,8,5,32.2,2440,9,999999999,110,0.1120,0,88,999.000,999.0,99.0 +1986,4,26,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,-0.6,52,88000,1001,1349,305,446,179,314,49300,19000,35100,10120,320,4.1,9,7,32.2,1070,9,999999999,110,0.1120,0,88,999.000,999.0,99.0 +1986,4,26,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,-1.1,56,88100,855,1349,308,299,90,242,33000,9100,27200,8260,260,5.7,10,9,24.1,980,9,999999999,100,0.1120,0,88,999.000,999.0,99.0 +1986,4,26,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,0.0,70,88100,666,1349,308,237,8,233,26600,700,26200,8660,140,3.1,10,10,24.1,980,9,999999999,110,0.1120,0,88,999.000,999.0,99.0 +1986,4,26,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,0.0,63,88100,449,1349,301,220,306,119,23600,28700,14000,2370,10,1.5,9,8,24.1,980,9,999999999,110,0.1120,0,88,999.000,999.0,99.0 +1986,4,26,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,0.0,65,88100,217,1349,293,47,5,46,5300,100,5300,1630,0,0.0,8,7,24.1,3660,9,999999999,110,0.1120,0,88,999.000,999.0,99.0 +1986,4,26,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,0.0,68,88100,24,641,296,9,1,9,0,0,0,0,150,1.5,8,8,24.1,1370,9,999999999,110,0.1120,0,88,999.000,999.0,99.0 +1986,4,26,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,4.4,0.0,73,88100,0,0,306,0,0,0,0,0,0,0,240,2.6,10,10,24.1,1370,9,999999999,110,0.1120,0,88,999.000,999.0,99.0 +1986,4,26,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,3.3,0.0,79,88000,0,0,286,0,0,0,0,0,0,0,230,2.1,8,8,24.1,1370,9,999999999,110,0.1120,0,88,999.000,999.0,99.0 +1986,4,26,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,2.2,-0.6,82,88000,0,0,271,0,0,0,0,0,0,0,230,3.1,5,5,24.1,77777,9,999999999,110,0.1120,0,88,999.000,999.0,99.0 +1986,4,26,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,2.2,-0.6,82,88000,0,0,281,0,0,0,0,0,0,0,270,2.6,9,8,24.1,1520,9,999999999,110,0.1120,0,88,999.000,999.0,99.0 +1986,4,27,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,1.7,0.0,89,88000,0,0,294,0,0,0,0,0,0,0,0,0.0,10,10,24.1,1370,9,999999999,110,0.1120,0,88,999.000,999.0,99.0 +1986,4,27,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,1.7,0.0,89,88000,0,0,294,0,0,0,0,0,0,0,0,0.0,10,10,24.1,1370,9,999999999,110,0.1120,0,88,999.000,999.0,99.0 +1986,4,27,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,2.2,0.0,85,88000,0,0,296,0,0,0,0,0,0,0,0,0.0,10,10,24.1,1520,9,999999999,110,0.1120,0,88,999.000,999.0,99.0 +1986,4,27,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,2.2,0.6,89,87900,0,0,297,0,0,0,0,0,0,0,220,2.1,10,10,24.1,1680,9,999999999,110,0.1120,0,88,999.000,999.0,99.0 +1986,4,27,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,1.1,0.6,96,87900,0,0,292,0,0,0,0,0,0,0,0,0.0,10,10,24.1,2740,9,999999999,110,0.1120,0,88,999.000,999.0,99.0 +1986,4,27,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.1,0.6,96,87900,43,865,284,13,4,13,1500,200,1400,320,0,0.0,10,9,48.3,1370,9,999999999,110,0.0750,0,88,999.000,999.0,99.0 +1986,4,27,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,1.1,82,87900,254,1349,296,75,14,72,8300,500,8200,2370,170,1.5,10,9,48.3,1520,9,999999999,120,0.0750,0,88,999.000,999.0,99.0 +1986,4,27,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,0.6,73,87900,485,1349,300,108,1,107,12300,100,12300,4260,90,2.6,10,9,48.3,1520,9,999999999,110,0.0750,0,88,999.000,999.0,99.0 +1986,4,27,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,0.0,61,87800,699,1349,298,427,469,185,45100,47200,20600,4000,150,3.6,9,7,48.3,2740,9,999999999,110,0.0750,0,88,999.000,999.0,99.0 +1986,4,27,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,-1.1,52,87800,882,1349,313,305,118,227,33800,12500,25600,6490,240,1.5,10,9,48.3,1370,9,999999999,100,0.0750,0,88,999.000,999.0,99.0 +1986,4,27,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,-1.7,45,87800,1021,1349,320,417,203,263,46100,22000,29400,8160,250,3.1,10,9,48.3,1370,9,999999999,100,0.0750,0,88,999.000,999.0,99.0 +1986,4,27,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,-2.2,43,87800,1107,1349,319,440,57,394,48600,5900,43800,16060,280,5.2,10,9,48.3,1520,9,999999999,100,0.0750,0,88,999.000,999.0,99.0 +1986,4,27,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,-1.7,41,87700,1133,1349,313,627,376,312,67200,39300,34200,12980,150,3.1,8,7,48.3,2740,9,999999999,100,0.0750,0,88,999.000,999.0,99.0 +1986,4,27,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,-1.1,40,87700,1098,1349,324,491,157,363,54100,16700,40400,13440,210,2.6,10,8,48.3,1370,9,999999999,100,0.0750,0,88,999.000,999.0,99.0 +1986,4,27,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,-0.6,42,87600,1004,1349,324,461,256,271,50800,27700,30100,8230,220,3.1,8,8,48.3,1520,9,999999999,110,0.0750,0,88,999.000,999.0,99.0 +1986,4,27,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,-0.6,36,87600,858,1349,334,334,186,216,36700,19900,24000,5430,270,6.2,8,8,48.3,1520,9,999999999,110,0.0750,0,88,999.000,999.0,99.0 +1986,4,27,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,1.1,47,87600,670,1349,312,408,606,109,43300,59900,13500,2330,330,5.2,5,4,64.4,77777,9,999999999,120,0.0750,0,88,999.000,999.0,99.0 +1986,4,27,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,0.0,47,87600,453,1349,311,197,257,112,21300,24200,13200,2210,270,4.6,7,6,64.4,6100,9,999999999,110,0.0750,0,88,999.000,999.0,99.0 +1986,4,27,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,2.8,71,87600,222,1349,304,77,97,61,8400,6900,7200,1300,270,4.6,7,7,24.1,6100,9,999999999,129,0.0750,0,88,999.000,999.0,99.0 +1986,4,27,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,2.8,77,87600,26,686,299,13,26,11,0,0,0,0,240,2.6,7,7,24.1,6100,9,999999999,129,0.0750,0,88,999.000,999.0,99.0 +1986,4,27,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,5.0,2.8,86,87700,0,0,284,0,0,0,0,0,0,0,0,0.0,5,4,24.1,77777,9,999999999,129,0.0750,0,88,999.000,999.0,99.0 +1986,4,27,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,6.1,1.1,71,87700,0,0,295,0,0,0,0,0,0,0,240,4.1,8,7,24.1,6100,9,999999999,120,0.0750,0,88,999.000,999.0,99.0 +1986,4,27,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,6.7,-0.6,60,87600,0,0,315,0,0,0,0,0,0,0,0,0.0,10,10,24.1,2290,9,999999999,110,0.0750,0,88,999.000,999.0,99.0 +1986,4,27,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,4.4,1.7,82,87600,0,0,266,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,120,0.0750,0,88,999.000,999.0,99.0 +1986,4,28,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,3.9,0.0,76,87600,0,0,263,0,0,0,0,0,0,0,270,2.1,0,0,24.1,77777,9,999999999,110,0.0750,0,88,999.000,999.0,99.0 +1986,4,28,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,2.8,-0.6,79,87600,0,0,267,0,0,0,0,0,0,0,160,3.6,2,2,24.1,77777,9,999999999,110,0.0750,0,88,999.000,999.0,99.0 +1986,4,28,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,2.8,-1.1,76,87600,0,0,269,0,0,0,0,0,0,0,200,2.6,3,3,24.1,77777,9,999999999,100,0.0750,0,88,999.000,999.0,99.0 +1986,4,28,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,1.1,-3.3,73,87600,0,0,254,0,0,0,0,0,0,0,250,2.1,1,1,24.1,77777,9,999999999,89,0.0750,0,88,999.000,999.0,99.0 +1986,4,28,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,2.8,-2.8,67,87600,0,0,267,0,0,0,0,0,0,0,210,4.6,3,3,24.1,77777,9,999999999,89,0.0750,0,88,999.000,999.0,99.0 +1986,4,28,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,-2.8,58,87600,46,887,278,22,20,20,2300,1100,2300,470,210,4.1,4,4,64.4,77777,9,999999999,89,0.0400,0,88,999.000,999.0,99.0 +1986,4,28,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,-2.8,51,87600,260,1348,280,140,572,32,14800,45200,6100,660,30,2.6,2,2,64.4,77777,9,999999999,89,0.0400,0,88,999.000,999.0,99.0 +1986,4,28,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,-1.7,52,87600,490,1348,285,304,686,56,32200,64300,8800,1190,280,6.2,2,2,64.4,77777,9,999999999,100,0.0400,0,88,999.000,999.0,99.0 +1986,4,28,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,-2.2,50,87700,704,1348,295,531,738,147,55200,72500,17300,3090,270,9.3,6,6,64.4,1520,9,999999999,100,0.0400,0,88,999.000,999.0,99.0 +1986,4,28,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,-2.8,46,87700,886,1348,305,446,327,231,48900,35100,25800,6010,240,4.1,8,8,64.4,1520,9,999999999,89,0.0400,0,88,999.000,999.0,99.0 +1986,4,28,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,-2.2,48,87700,1025,1348,305,338,48,302,37400,4900,33600,11690,270,7.7,8,8,64.4,1520,9,999999999,100,0.0400,0,88,999.000,999.0,99.0 +1986,4,28,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,-2.2,44,87600,1110,1348,310,570,305,320,62900,33100,35600,11890,270,5.2,8,8,64.4,1520,9,999999999,89,0.0400,0,88,999.000,999.0,99.0 +1986,4,28,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,-4.4,32,87600,1136,1348,313,725,533,277,78800,55700,31700,11570,270,7.7,7,7,64.4,1520,9,999999999,80,0.0400,0,88,999.000,999.0,99.0 +1986,4,28,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,-6.1,29,87600,1101,1348,304,689,472,303,73700,49200,33400,11610,270,8.8,5,5,64.4,77777,9,999999999,80,0.0400,0,88,999.000,999.0,99.0 +1986,4,28,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,-6.7,26,87500,1007,1348,306,583,534,185,62000,54300,21300,5740,270,8.2,5,5,64.4,77777,9,999999999,69,0.0400,0,88,999.000,999.0,99.0 +1986,4,28,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,-6.7,25,87500,862,1348,301,620,841,84,64900,83500,11400,2020,260,8.8,2,2,64.4,77777,9,999999999,69,0.0400,0,88,999.000,999.0,99.0 +1986,4,28,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,-6.7,26,87500,674,1348,298,473,800,76,50600,78800,11100,1710,260,8.2,2,2,64.4,77777,9,999999999,69,0.0400,0,88,999.000,999.0,99.0 +1986,4,28,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,-6.7,30,87500,457,1348,282,301,784,39,32300,72300,7800,1010,290,6.7,0,0,64.4,77777,9,999999999,80,0.0400,0,88,999.000,999.0,99.0 +1986,4,28,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,-6.1,33,87600,226,1348,278,114,547,25,12400,42400,5300,610,320,4.1,0,0,64.4,77777,9,999999999,80,0.0400,0,88,999.000,999.0,99.0 +1986,4,28,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,-5.0,49,87600,28,708,262,19,107,9,1500,4300,1300,170,0,0.0,0,0,48.3,77777,9,999999999,80,0.0400,0,88,999.000,999.0,99.0 +1986,4,28,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,5.6,-6.1,43,87700,0,0,263,0,0,0,0,0,0,0,330,6.7,0,0,24.1,77777,9,999999999,80,0.0400,0,88,999.000,999.0,99.0 +1986,4,28,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,4.4,-6.1,47,87700,0,0,259,0,0,0,0,0,0,0,270,2.1,0,0,24.1,77777,9,999999999,80,0.0400,0,88,999.000,999.0,99.0 +1986,4,28,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,3.3,-6.1,50,87700,0,0,255,0,0,0,0,0,0,0,250,3.6,0,0,24.1,77777,9,999999999,80,0.0400,0,88,999.000,999.0,99.0 +1986,4,28,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,2.8,-6.1,52,87600,0,0,253,0,0,0,0,0,0,0,160,3.6,0,0,24.1,77777,9,999999999,80,0.0400,0,88,999.000,999.0,99.0 +1986,4,29,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,1.7,-6.1,57,87600,0,0,249,0,0,0,0,0,0,0,250,2.1,0,0,24.1,77777,9,999999999,80,0.0400,0,88,999.000,999.0,99.0 +1986,4,29,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,0.6,-6.1,61,87600,0,0,245,0,0,0,0,0,0,0,270,5.2,0,0,24.1,77777,9,999999999,80,0.0400,0,88,999.000,999.0,99.0 +1986,4,29,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,2.8,-6.1,52,87500,0,0,264,0,0,0,0,0,0,0,240,3.1,3,3,24.1,77777,9,999999999,80,0.0400,0,88,999.000,999.0,99.0 +1986,4,29,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,1.7,-6.1,57,87500,0,0,257,0,0,0,0,0,0,0,0,0.0,7,2,24.1,77777,9,999999999,80,0.0400,0,88,999.000,999.0,99.0 +1986,4,29,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,2.2,-5.6,57,87500,0,0,262,0,0,0,0,0,0,0,70,2.1,10,3,24.1,77777,9,999999999,80,0.0400,0,88,999.000,999.0,99.0 +1986,4,29,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,-5.0,59,87500,50,932,283,17,4,17,1900,0,1900,580,250,6.2,10,9,48.3,1220,9,999999999,80,0.0520,0,88,999.000,999.0,99.0 +1986,4,29,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.1,-2.8,76,87500,265,1347,288,52,4,51,5900,100,5900,1900,250,5.2,10,10,24.1,980,9,999999999,89,0.0520,0,88,999.000,999.0,99.0 +1986,4,29,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-0.6,-1.1,96,87600,495,1347,283,144,20,137,16300,1400,15800,5140,270,6.2,10,10,1.6,240,9,999999999,100,0.0520,0,88,999.000,999.0,99.0 +1986,4,29,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-0.6,-1.1,96,87600,709,1347,283,228,10,223,25900,900,25400,8800,290,4.6,10,10,1.6,310,9,999999999,100,0.0520,0,88,999.000,999.0,99.0 +1986,4,29,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.1,-1.7,82,87600,891,1347,276,413,189,288,45300,20000,32100,8300,170,2.1,9,8,24.1,1070,9,999999999,100,0.0520,0,88,999.000,999.0,99.0 +1986,4,29,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,-1.1,68,87500,1029,1347,279,635,624,159,68300,64000,19300,5220,170,3.6,7,5,24.1,7620,9,999999999,100,0.0520,0,88,999.000,999.0,99.0 +1986,4,29,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,-5.0,47,87500,1114,1347,291,511,190,355,56600,20300,39800,13540,150,4.1,8,8,24.1,1070,9,999999999,80,0.0520,0,88,999.000,999.0,99.0 +1986,4,29,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,-5.0,42,87500,1139,1347,297,518,176,369,57200,18800,41300,14780,330,2.6,8,8,24.1,1070,9,999999999,80,0.0520,0,88,999.000,999.0,99.0 +1986,4,29,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,-5.0,39,87500,1104,1347,297,427,89,354,47100,9100,39600,14680,220,7.2,8,7,24.1,1160,9,999999999,80,0.0520,0,88,999.000,999.0,99.0 +1986,4,29,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,-5.0,39,87600,1011,1347,297,555,432,232,60300,45000,26500,7230,270,6.2,8,7,32.2,1250,9,999999999,80,0.0520,0,88,999.000,999.0,99.0 +1986,4,29,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,-6.1,37,87700,865,1347,299,373,163,269,41100,17200,30000,7590,300,10.3,9,8,48.3,1370,9,999999999,80,0.0520,0,88,999.000,999.0,99.0 +1986,4,29,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,-2.8,53,87800,678,1347,287,373,502,123,39300,49400,14400,2600,270,6.2,7,6,48.3,7620,9,999999999,89,0.0520,0,88,999.000,999.0,99.0 +1986,4,29,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,-2.8,58,87800,461,1347,283,217,335,104,23100,30900,12500,1960,0,0.0,7,6,48.3,7620,9,999999999,89,0.0520,0,88,999.000,999.0,99.0 +1986,4,29,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,-5.6,47,87900,231,1347,275,74,86,60,8200,6300,7100,1280,270,6.2,5,4,48.3,77777,9,999999999,80,0.0520,0,88,999.000,999.0,99.0 +1986,4,29,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,-8.3,43,88000,31,730,258,19,76,11,1600,2500,1500,190,280,7.2,1,1,48.3,77777,9,999999999,69,0.0520,0,88,999.000,999.0,99.0 +1986,4,29,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,2.2,-8.3,46,88000,0,0,249,0,0,0,0,0,0,0,270,6.7,0,0,24.1,77777,9,999999999,69,0.0520,0,88,999.000,999.0,99.0 +1986,4,29,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,1.7,-6.7,54,88100,0,0,248,0,0,0,0,0,0,0,260,7.7,0,0,24.1,77777,9,999999999,69,0.0520,0,88,999.000,999.0,99.0 +1986,4,29,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,1.1,-7.2,54,88200,0,0,246,0,0,0,0,0,0,0,260,5.7,0,0,24.1,77777,9,999999999,69,0.0520,0,88,999.000,999.0,99.0 +1986,4,29,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,1.1,-7.8,52,88200,0,0,245,0,0,0,0,0,0,0,260,6.2,0,0,24.1,77777,9,999999999,69,0.0520,0,88,999.000,999.0,99.0 +1986,4,30,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,1.1,-8.9,48,88200,0,0,244,0,0,0,0,0,0,0,270,6.7,0,0,24.1,77777,9,999999999,69,0.0520,0,88,999.000,999.0,99.0 +1986,4,30,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,0.0,-9.4,50,88200,0,0,240,0,0,0,0,0,0,0,250,5.2,0,0,24.1,77777,9,999999999,60,0.0520,0,88,999.000,999.0,99.0 +1986,4,30,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-0.6,-9.4,52,88300,0,0,238,0,0,0,0,0,0,0,240,3.6,0,0,24.1,77777,9,999999999,60,0.0520,0,88,999.000,999.0,99.0 +1986,4,30,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-0.6,-10.0,49,88300,0,0,245,0,0,0,0,0,0,0,270,3.1,2,2,24.1,77777,9,999999999,60,0.0520,0,88,999.000,999.0,99.0 +1986,4,30,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-1.7,-10.0,53,88300,0,0,241,0,0,0,0,0,0,0,240,3.1,2,2,24.1,77777,9,999999999,60,0.0520,0,88,999.000,999.0,99.0 +1986,4,30,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.7,-8.9,58,88300,54,976,242,26,106,16,2400,4000,2100,280,250,2.6,2,2,64.4,77777,9,999999999,69,0.0630,0,88,999.000,999.0,99.0 +1986,4,30,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,-8.9,44,88400,271,1347,248,143,547,35,15000,43700,6200,710,280,2.6,0,0,64.4,77777,9,999999999,69,0.0630,0,88,999.000,999.0,99.0 +1986,4,30,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,-9.4,36,88400,500,1347,261,319,749,43,34000,70200,7900,1100,280,4.6,1,1,64.4,77777,9,999999999,60,0.0630,0,88,999.000,999.0,99.0 +1986,4,30,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,-10.0,35,88500,713,1347,270,405,427,180,43000,43100,20100,3910,280,6.2,5,5,64.4,77777,9,999999999,60,0.0630,0,88,999.000,999.0,99.0 +1986,4,30,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,-10.6,28,88400,895,1347,279,531,493,205,57500,51000,23500,5320,280,6.7,5,5,64.4,77777,9,999999999,60,0.0630,0,88,999.000,999.0,99.0 +1986,4,30,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,-11.7,24,88400,1032,1347,280,746,834,108,77400,83300,13400,2950,310,3.6,4,4,64.4,77777,9,999999999,60,0.0630,0,88,999.000,999.0,99.0 +1986,4,30,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,-12.2,21,88400,1117,1347,284,834,793,178,86900,79400,20900,6300,280,8.8,4,4,64.4,77777,9,999999999,50,0.0630,0,88,999.000,999.0,99.0 +1986,4,30,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,-12.2,19,88300,1143,1347,288,818,777,160,86500,78300,19900,6300,260,9.3,3,3,64.4,77777,9,999999999,60,0.0630,0,88,999.000,999.0,99.0 +1986,4,30,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,-11.1,19,88200,1107,1347,287,826,910,79,86500,91300,11200,2900,280,6.7,1,1,64.4,77777,9,999999999,60,0.0630,0,88,999.000,999.0,99.0 +1986,4,30,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,-10.6,20,88200,1014,1347,284,794,945,85,83100,94500,11800,2540,290,6.7,0,0,64.4,77777,9,999999999,60,0.0630,0,88,999.000,999.0,99.0 +1986,4,30,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,-12.2,16,88200,869,1347,287,664,915,76,69700,90900,11000,1960,350,5.2,0,0,64.4,77777,9,999999999,60,0.0630,0,88,999.000,999.0,99.0 +1986,4,30,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,-11.1,18,88200,681,1347,292,456,754,77,48700,74400,11000,1730,100,6.7,3,1,64.4,77777,9,999999999,60,0.0630,0,88,999.000,999.0,99.0 +1986,4,30,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,-8.9,24,88200,465,1347,296,250,421,107,26600,38900,13200,2020,120,6.2,10,4,64.4,77777,9,999999999,69,0.0630,0,88,999.000,999.0,99.0 +1986,4,30,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,-7.8,27,88200,235,1347,304,56,6,55,6300,100,6300,1920,120,4.1,10,7,64.4,4270,9,999999999,69,0.0630,0,88,999.000,999.0,99.0 +1986,4,30,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,-5.0,37,88200,33,774,305,10,4,10,1100,200,1100,250,180,2.6,10,8,24.1,4270,9,999999999,80,0.0630,0,88,999.000,999.0,99.0 +1986,4,30,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,6.7,-5.6,42,88200,0,0,282,0,0,0,0,0,0,0,330,2.6,10,4,24.1,77777,9,999999999,80,0.0630,0,88,999.000,999.0,99.0 +1986,4,30,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,6.6,-4.0,42,88300,0,0,302,0,0,0,0,0,0,0,270,2.3,10,9,24.1,6710,9,999999999,80,0.0630,0,88,999.000,999.0,99.0 +1986,4,30,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,6.5,-2.5,43,88300,0,0,297,0,0,0,0,0,0,0,270,2.1,10,8,24.1,7620,9,999999999,80,0.0630,0,88,999.000,999.0,99.0 +1986,4,30,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,6.4,-1.0,49,88300,0,0,298,0,0,0,0,0,0,0,270,1.8,10,8,24.1,7620,9,999999999,80,0.0630,0,88,999.000,999.0,99.0 +1979,5,1,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,6.3,0.4,84,87600,0,0,314,0,0,0,0,0,0,0,180,1.5,10,10,24.1,830,9,999999999,139,0.0630,0,88,999.000,999.0,99.0 +1979,5,1,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,6.2,1.9,86,87500,0,0,316,0,0,0,0,0,0,0,130,1.2,10,10,24.1,850,9,999999999,139,0.0630,0,88,999.000,999.0,99.0 +1979,5,1,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,6.1,3.4,88,87500,0,0,317,0,0,0,0,0,0,0,90,1.0,10,10,24.1,1073,9,999999999,139,0.0630,0,88,999.000,999.0,99.0 +1979,5,1,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,6.0,4.9,91,87500,0,0,318,0,0,0,0,0,0,0,40,0.7,10,10,24.1,1297,9,999999999,139,0.0630,0,88,999.000,999.0,99.0 +1979,5,1,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,5.6,4.4,93,87500,0,0,316,0,0,0,0,0,0,0,0,0.0,10,10,48.3,1520,9,999999999,139,0.0630,0,88,999.000,999.0,99.0 +1979,5,1,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,5.0,4.1,91,87600,57,998,313,17,1,17,1900,0,1900,580,350,2.4,10,10,48.3,1187,9,999999999,129,0.0440,0,88,999.000,999.0,99.0 +1979,5,1,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,4.5,3.2,88,87700,274,1346,309,77,1,77,8600,0,8600,2580,330,4.8,10,10,48.3,853,9,999999999,129,0.0440,0,88,999.000,999.0,99.0 +1979,5,1,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,1.7,86,87700,503,1346,305,105,2,104,12100,100,12100,4250,320,7.2,10,10,16.1,520,9,999999999,120,0.0440,0,88,999.000,999.0,99.0 +1979,5,1,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,4.1,1.7,82,87800,716,1346,306,217,3,216,24800,300,24700,8680,340,6.9,10,10,16.1,703,9,999999999,120,0.0440,0,88,999.000,999.0,99.0 +1979,5,1,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,4.2,1.1,77,87900,897,1346,306,318,1,318,36300,100,36300,12870,350,6.5,10,10,16.1,887,9,999999999,110,0.0440,0,88,999.000,999.0,99.0 +1979,5,1,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,0.0,73,88000,1035,1346,306,218,1,217,26100,100,26100,10490,10,6.2,10,10,16.1,1070,9,999999999,110,0.0440,0,88,999.000,999.0,99.0 +1979,5,1,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,5.9,0.4,67,88000,1119,1346,304,465,173,321,51700,18500,36300,12390,10,6.7,9,9,16.1,1070,9,999999999,110,0.0440,0,88,999.000,999.0,99.0 +1979,5,1,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,7.4,0.4,60,88000,1145,1346,304,342,60,291,37900,6100,32700,13110,360,7.2,8,8,16.1,1070,9,999999999,110,0.0440,0,88,999.000,999.0,99.0 +1979,5,1,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,0.0,54,88000,1109,1346,305,563,229,375,62100,24400,41900,14220,360,7.7,7,7,40.2,1070,9,999999999,110,0.0440,0,88,999.000,999.0,99.0 +1979,5,1,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,8.3,-0.1,55,88000,1016,1346,307,486,283,273,53600,30700,30400,8470,360,6.9,8,8,40.2,1120,9,999999999,110,0.0440,0,88,999.000,999.0,99.0 +1979,5,1,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,7.8,-0.3,55,88000,871,1346,305,409,257,243,44600,27500,26700,6300,10,6.0,8,8,40.2,1170,9,999999999,100,0.0440,0,88,999.000,999.0,99.0 +1979,5,1,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,-1.1,56,88000,684,1346,308,239,63,207,26300,6300,23100,6290,10,5.2,9,9,40.2,1220,9,999999999,100,0.0440,0,88,999.000,999.0,99.0 +1979,5,1,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,6.5,-0.9,59,88000,468,1346,305,160,54,141,17500,5100,15700,3800,350,5.0,9,9,40.2,1220,9,999999999,100,0.0440,0,88,999.000,999.0,99.0 +1979,5,1,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,5.7,-0.8,62,88100,238,1346,302,79,71,67,8600,5200,7700,1430,320,4.8,9,9,40.2,1220,9,999999999,100,0.0440,0,88,999.000,999.0,99.0 +1979,5,1,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,-1.1,65,88100,35,796,299,11,5,11,1200,300,1200,280,300,4.6,9,9,24.1,1220,9,999999999,100,0.0440,0,88,999.000,999.0,99.0 +1979,5,1,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,4.8,-0.7,66,88100,0,0,298,0,0,0,0,0,0,0,290,4.4,9,9,24.1,1200,9,999999999,100,0.0440,0,88,999.000,999.0,99.0 +1979,5,1,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,4.6,-0.7,67,88100,0,0,306,0,0,0,0,0,0,0,280,4.3,10,10,24.1,1180,9,999999999,100,0.0440,0,88,999.000,999.0,99.0 +1979,5,1,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,4.4,-1.1,68,88200,0,0,304,0,0,0,0,0,0,0,270,4.1,10,10,24.1,1160,9,999999999,100,0.0440,0,88,999.000,999.0,99.0 +1979,5,1,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,4.4,-0.4,69,88200,0,0,305,0,0,0,0,0,0,0,270,3.9,10,10,24.1,1130,9,999999999,100,0.0440,0,88,999.000,999.0,99.0 +1979,5,2,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,4.4,-0.3,69,88200,0,0,305,0,0,0,0,0,0,0,270,3.8,10,10,24.1,1100,9,999999999,100,0.0440,0,88,999.000,999.0,99.0 +1979,5,2,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,4.4,-0.6,70,88200,0,0,305,0,0,0,0,0,0,0,270,3.6,10,10,24.1,1070,9,999999999,110,0.0440,0,88,999.000,999.0,99.0 +1979,5,2,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,4.2,-0.1,71,88200,0,0,305,0,0,0,0,0,0,0,270,3.3,10,10,24.1,1017,9,999999999,110,0.0440,0,88,999.000,999.0,99.0 +1979,5,2,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,4.1,-0.1,72,88200,0,0,304,0,0,0,0,0,0,0,260,2.9,10,10,24.1,963,9,999999999,110,0.0440,0,88,999.000,999.0,99.0 +1979,5,2,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,3.9,-0.6,73,88200,0,0,303,0,0,0,0,0,0,0,260,2.6,10,10,40.2,910,9,999999999,110,0.0440,0,88,999.000,999.0,99.0 +1979,5,2,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,4.6,0.0,70,88200,61,1020,287,20,7,20,2200,400,2200,480,200,2.2,7,7,40.2,77777,9,999999999,110,0.1170,0,88,999.000,999.0,99.0 +1979,5,2,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,5.4,0.0,66,88200,280,1345,285,107,236,58,11300,18000,7600,1040,140,1.9,5,5,40.2,77777,9,999999999,110,0.1170,0,88,999.000,999.0,99.0 +1979,5,2,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,-0.6,63,88200,508,1345,280,304,574,88,31800,53800,11400,1720,80,1.5,2,2,64.4,77777,9,999999999,110,0.1170,0,88,999.000,999.0,99.0 +1979,5,2,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,7.2,0.2,59,88200,720,1345,285,424,498,158,45700,50500,18600,3410,90,1.9,3,2,64.4,77777,9,999999999,110,0.1170,0,88,999.000,999.0,99.0 +1979,5,2,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,8.3,0.3,56,88100,901,1345,292,622,663,178,65400,66800,20500,4640,100,2.2,3,3,64.4,77777,9,999999999,110,0.1170,0,88,999.000,999.0,99.0 +1979,5,2,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,0.0,52,88100,1038,1345,297,666,572,224,69900,57800,25200,7260,110,2.6,4,3,64.4,77777,9,999999999,110,0.1170,0,88,999.000,999.0,99.0 +1979,5,2,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,10.9,0.1,47,88100,1122,1345,303,726,605,222,77100,61500,25600,8860,100,3.3,3,3,64.4,77777,9,999999999,110,0.1170,0,88,999.000,999.0,99.0 +1979,5,2,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,12.4,-0.3,41,88100,1148,1345,306,711,573,223,75700,58400,25800,9570,100,3.9,3,2,64.4,77777,9,999999999,110,0.1170,0,88,999.000,999.0,99.0 +1979,5,2,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,-1.1,36,88100,1112,1345,312,796,752,175,83000,75300,20500,6160,90,4.6,2,2,64.4,77777,9,999999999,100,0.1170,0,88,999.000,999.0,99.0 +1979,5,2,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,14.5,-1.7,33,88000,1019,1345,314,732,785,138,77300,79000,17300,4130,60,4.1,2,2,64.4,77777,9,999999999,100,0.1170,0,88,999.000,999.0,99.0 +1979,5,2,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,15.0,-2.6,29,88000,874,1345,315,622,670,187,64900,67100,21200,4650,20,3.6,2,2,64.4,77777,9,999999999,89,0.1170,0,88,999.000,999.0,99.0 +1979,5,2,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,-3.9,26,88000,687,1345,316,454,644,126,47600,63500,15100,2680,350,3.1,2,2,64.4,77777,9,999999999,89,0.1170,0,88,999.000,999.0,99.0 +1979,5,2,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,13.7,-2.2,35,88000,472,1345,310,281,496,108,29800,46000,13600,2050,290,3.1,2,2,64.4,77777,9,999999999,100,0.1170,0,88,999.000,999.0,99.0 +1979,5,2,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,11.9,-0.6,43,88000,242,1345,307,90,226,50,9600,16100,6700,890,230,3.1,3,3,64.4,77777,9,999999999,110,0.1170,0,88,999.000,999.0,99.0 +1979,5,2,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,0.6,52,88100,38,818,300,14,30,11,1400,900,1300,180,170,3.1,3,3,64.4,77777,9,999999999,110,0.1170,0,88,999.000,999.0,99.0 +1979,5,2,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,8.0,0.8,60,88100,0,0,289,0,0,0,0,0,0,0,150,3.1,2,2,64.4,77777,9,999999999,110,0.1170,0,88,999.000,999.0,99.0 +1979,5,2,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,5.9,0.6,68,88100,0,0,276,0,0,0,0,0,0,0,130,3.1,1,1,64.4,77777,9,999999999,110,0.1170,0,88,999.000,999.0,99.0 +1979,5,2,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,3.9,0.0,76,88200,0,0,263,0,0,0,0,0,0,0,110,3.1,0,0,24.1,77777,9,999999999,110,0.1170,0,88,999.000,999.0,99.0 +1979,5,2,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,3.5,0.2,76,88200,0,0,262,0,0,0,0,0,0,0,160,2.8,0,0,24.1,77777,9,999999999,110,0.1170,0,88,999.000,999.0,99.0 +1979,5,3,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,3.2,-0.2,76,88200,0,0,260,0,0,0,0,0,0,0,200,2.4,0,0,24.1,77777,9,999999999,110,0.1170,0,88,999.000,999.0,99.0 +1979,5,3,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,2.8,-1.1,76,88200,0,0,258,0,0,0,0,0,0,0,250,2.1,0,0,24.1,77777,9,999999999,100,0.1170,0,88,999.000,999.0,99.0 +1979,5,3,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,2.1,-0.8,79,88200,0,0,255,0,0,0,0,0,0,0,250,2.3,0,0,24.1,77777,9,999999999,100,0.1170,0,88,999.000,999.0,99.0 +1979,5,3,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,1.3,-1.0,82,88300,0,0,252,0,0,0,0,0,0,0,260,2.4,0,0,24.1,77777,9,999999999,100,0.1170,0,88,999.000,999.0,99.0 +1979,5,3,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,0.6,-1.7,85,88300,0,0,249,0,0,0,0,0,0,0,260,2.6,0,0,48.3,77777,9,999999999,100,0.1170,0,88,999.000,999.0,99.0 +1979,5,3,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,2.8,-0.5,77,88300,65,1064,258,35,263,12,3000,14300,2100,260,270,2.4,0,0,48.3,77777,9,999999999,100,0.0280,0,88,999.000,999.0,99.0 +1979,5,3,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,5.0,0.0,68,88400,285,1344,272,151,542,37,15700,44000,6400,750,290,2.3,1,1,48.3,77777,9,999999999,110,0.0280,0,88,999.000,999.0,99.0 +1979,5,3,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,0.0,60,88400,513,1344,281,271,596,44,29500,57000,7800,1030,300,2.1,1,1,64.4,77777,9,999999999,110,0.0280,0,88,999.000,999.0,99.0 +1979,5,3,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,8.3,0.9,57,88400,725,1344,286,502,846,47,53400,83200,8400,1340,290,2.3,2,1,64.4,77777,9,999999999,110,0.0280,0,88,999.000,999.0,99.0 +1979,5,3,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,9.5,1.3,55,88400,905,1344,286,688,926,66,72500,92300,10200,1900,290,2.4,2,0,64.4,77777,9,999999999,110,0.0280,0,88,999.000,999.0,99.0 +1979,5,3,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,1.1,52,88400,1042,1344,290,811,943,81,84800,94500,11500,2600,280,2.6,3,0,64.4,77777,9,999999999,120,0.0280,0,88,999.000,999.0,99.0 +1979,5,3,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,12.1,1.5,48,88300,1126,1344,303,822,914,57,86800,91900,9700,2370,290,2.8,3,1,64.4,77777,9,999999999,120,0.0280,0,88,999.000,999.0,99.0 +1979,5,3,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,13.5,1.5,43,88300,1151,1344,309,815,879,63,85800,88400,10000,2720,290,2.9,3,1,64.4,77777,9,999999999,120,0.0280,0,88,999.000,999.0,99.0 +1979,5,3,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,1.1,39,88200,1115,1344,319,748,738,136,80100,74800,17900,5160,300,3.1,3,2,64.4,77777,9,999999999,120,0.0280,0,88,999.000,999.0,99.0 +1979,5,3,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,15.6,1.6,38,88200,1022,1344,322,720,813,102,74700,81300,12800,2830,320,3.8,4,2,64.4,77777,9,999999999,120,0.0280,0,88,999.000,999.0,99.0 +1979,5,3,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,16.1,1.9,38,88100,877,1344,325,582,669,146,61900,67900,17500,3780,330,4.5,4,2,64.4,77777,9,999999999,120,0.0280,0,88,999.000,999.0,99.0 +1979,5,3,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,1.7,37,88100,691,1344,327,445,696,89,46800,68400,11600,1920,350,5.2,5,2,64.4,77777,9,999999999,120,0.0280,0,88,999.000,999.0,99.0 +1979,5,3,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,14.5,2.3,45,88100,475,1344,321,277,625,57,29200,58200,8600,1190,340,4.5,7,3,64.4,77777,9,999999999,129,0.0280,0,88,999.000,999.0,99.0 +1979,5,3,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,12.2,2.7,53,88100,247,1344,312,108,291,56,11500,20900,7600,1010,320,3.8,8,3,64.4,77777,9,999999999,129,0.0280,0,88,999.000,999.0,99.0 +1979,5,3,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,2.8,61,88200,40,840,305,26,29,24,2800,1100,2700,490,310,3.1,10,4,24.1,77777,9,999999999,129,0.0280,0,88,999.000,999.0,99.0 +1979,5,3,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,9.4,3.2,63,88200,0,0,302,0,0,0,0,0,0,0,300,3.4,10,4,24.1,77777,9,999999999,129,0.0280,0,88,999.000,999.0,99.0 +1979,5,3,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,8.9,3.2,66,88200,0,0,300,0,0,0,0,0,0,0,280,3.8,10,4,24.1,77777,9,999999999,129,0.0280,0,88,999.000,999.0,99.0 +1979,5,3,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,8.3,2.8,68,88200,0,0,297,0,0,0,0,0,0,0,270,4.1,10,4,24.1,77777,9,999999999,129,0.0280,0,88,999.000,999.0,99.0 +1979,5,3,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,7.2,3.2,73,88100,0,0,291,0,0,0,0,0,0,0,300,2.7,8,3,24.1,77777,9,999999999,129,0.0280,0,88,999.000,999.0,99.0 +1979,5,4,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,6.1,2.9,77,88100,0,0,286,0,0,0,0,0,0,0,330,1.4,6,3,24.1,77777,9,999999999,129,0.0280,0,88,999.000,999.0,99.0 +1979,5,4,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,5.0,2.2,82,88100,0,0,278,0,0,0,0,0,0,0,0,0.0,4,2,24.1,77777,9,999999999,120,0.0280,0,88,999.000,999.0,99.0 +1979,5,4,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,4.4,2.3,83,88000,0,0,281,0,0,0,0,0,0,0,50,0.7,6,4,24.1,77777,9,999999999,120,0.0280,0,88,999.000,999.0,99.0 +1979,5,4,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,3.9,2.0,85,88000,0,0,281,0,0,0,0,0,0,0,100,1.4,8,5,24.1,77777,9,999999999,120,0.0280,0,88,999.000,999.0,99.0 +1979,5,4,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,3.3,1.1,86,88000,0,0,283,0,0,0,0,0,0,0,150,2.1,10,7,40.2,7620,9,999999999,120,0.0280,0,88,999.000,999.0,99.0 +1979,5,4,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,4.1,2.1,84,88000,69,1086,292,24,40,21,2600,1800,2500,430,210,2.3,10,8,40.2,6097,9,999999999,120,0.0550,0,88,999.000,999.0,99.0 +1979,5,4,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,4.8,2.4,81,87900,290,1344,301,48,24,43,5300,2000,4900,1190,270,2.4,10,9,40.2,4573,9,999999999,120,0.0550,0,88,999.000,999.0,99.0 +1979,5,4,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,2.2,79,87900,517,1344,313,158,9,154,17700,700,17400,5700,330,2.6,10,10,48.3,3050,9,999999999,120,0.0550,0,88,999.000,999.0,99.0 +1979,5,4,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,8.0,3.0,70,87800,729,1344,316,322,187,221,35300,19400,24800,5680,340,2.8,10,9,48.3,4573,9,999999999,129,0.0550,0,88,999.000,999.0,99.0 +1979,5,4,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,10.4,3.1,60,87800,909,1344,327,295,99,228,32900,10500,25800,6690,340,2.9,10,9,48.3,6097,9,999999999,129,0.0550,0,88,999.000,999.0,99.0 +1979,5,4,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,2.8,51,87700,1045,1344,331,572,289,347,62100,31300,37800,11670,350,3.1,10,8,32.2,7620,9,999999999,129,0.0550,0,88,999.000,999.0,99.0 +1979,5,4,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,14.3,3.6,48,87600,1129,1344,346,416,116,319,46400,12400,35900,12570,330,4.5,10,9,32.2,5587,9,999999999,129,0.0550,0,88,999.000,999.0,99.0 +1979,5,4,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,15.7,3.9,44,87600,1154,1344,353,483,147,356,53500,15700,39900,14770,310,5.8,10,9,32.2,3553,9,999999999,129,0.0550,0,88,999.000,999.0,99.0 +1979,5,4,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,3.9,41,87500,1118,1344,371,325,23,307,38600,2000,36900,14050,290,7.2,10,10,32.2,1520,9,999999999,139,0.0550,0,88,999.000,999.0,99.0 +1979,5,4,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,17.2,4.0,41,87500,1025,1344,371,234,2,232,27800,200,27700,11040,290,7.5,10,10,32.2,1520,9,999999999,139,0.0550,0,88,999.000,999.0,99.0 +1979,5,4,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,17.2,3.9,40,87500,880,1344,371,242,4,240,28200,300,28000,10550,280,7.9,10,10,32.2,1520,9,999999999,129,0.0550,0,88,999.000,999.0,99.0 +1979,5,4,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,3.3,40,87500,694,1344,370,190,4,188,21800,300,21600,7750,280,8.2,10,10,48.3,1520,9,999999999,129,0.0550,0,88,999.000,999.0,99.0 +1979,5,4,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,15.5,3.5,45,87500,479,1344,352,149,27,139,16300,2500,15400,3810,280,7.2,10,9,48.3,3250,9,999999999,129,0.0550,0,88,999.000,999.0,99.0 +1979,5,4,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,13.9,3.6,50,87500,251,1344,344,73,30,68,8100,2400,7600,1680,280,6.2,9,9,48.3,4980,9,999999999,129,0.0550,0,88,999.000,999.0,99.0 +1979,5,4,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,3.3,55,87500,43,885,329,13,14,11,1300,600,1300,230,280,5.2,9,8,64.4,6710,9,999999999,129,0.0550,0,88,999.000,999.0,99.0 +1979,5,4,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,11.5,4.1,60,87500,0,0,326,0,0,0,0,0,0,0,270,4.8,9,8,64.4,6710,9,999999999,139,0.0550,0,88,999.000,999.0,99.0 +1979,5,4,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,10.7,4.5,64,87500,0,0,318,0,0,0,0,0,0,0,250,4.5,8,7,64.4,6710,9,999999999,139,0.0550,0,88,999.000,999.0,99.0 +1979,5,4,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,10.0,4.4,69,87500,0,0,315,0,0,0,0,0,0,0,240,4.1,8,7,24.1,6710,9,999999999,139,0.0550,0,88,999.000,999.0,99.0 +1979,5,4,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,9.8,5.0,70,87500,0,0,315,0,0,0,0,0,0,0,250,4.1,8,7,24.1,5693,9,999999999,139,0.0550,0,88,999.000,999.0,99.0 +1979,5,5,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,9.6,4.9,70,87500,0,0,314,0,0,0,0,0,0,0,270,4.1,8,7,24.1,4677,9,999999999,139,0.0550,0,88,999.000,999.0,99.0 +1979,5,5,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,9.4,4.4,71,87500,0,0,312,0,0,0,0,0,0,0,280,4.1,8,7,24.1,3660,9,999999999,139,0.0550,0,88,999.000,999.0,99.0 +1979,5,5,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,8.9,4.9,74,87400,0,0,311,0,0,0,0,0,0,0,270,3.4,9,7,24.1,3660,9,999999999,139,0.0550,0,88,999.000,999.0,99.0 +1979,5,5,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,8.3,4.9,77,87400,0,0,313,0,0,0,0,0,0,0,250,2.8,9,8,24.1,3660,9,999999999,139,0.0550,0,88,999.000,999.0,99.0 +1979,5,5,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,7.8,4.4,80,87300,0,0,310,0,0,0,0,0,0,0,240,2.1,10,8,48.3,3660,9,999999999,139,0.0550,0,88,999.000,999.0,99.0 +1979,5,5,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,8.3,5.0,77,87300,73,1130,320,18,5,17,2000,0,2000,600,260,2.3,10,9,48.3,3660,9,999999999,139,0.0970,0,88,999.000,999.0,99.0 +1979,5,5,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,8.9,5.0,74,87200,295,1343,322,43,20,38,4700,1600,4300,1070,270,2.4,10,9,48.3,3660,9,999999999,139,0.0970,0,88,999.000,999.0,99.0 +1979,5,5,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,4.4,71,87200,522,1343,333,151,4,149,17000,300,16900,5610,290,2.6,10,10,48.3,3660,9,999999999,139,0.0970,0,88,999.000,999.0,99.0 +1979,5,5,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,10.5,5.2,67,87100,733,1343,339,180,5,177,20900,400,20700,7640,310,2.4,10,10,48.3,3253,9,999999999,139,0.0970,0,88,999.000,999.0,99.0 +1979,5,5,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,11.7,5.3,63,87000,912,1343,345,336,1,335,38200,100,38100,13440,330,2.3,10,10,48.3,2847,9,999999999,139,0.0970,0,88,999.000,999.0,99.0 +1979,5,5,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,5.0,59,86900,1048,1343,350,340,9,332,39400,800,38800,14500,350,2.1,10,10,24.1,2440,9,999999999,150,0.0970,0,88,999.000,999.0,99.0 +1979,5,5,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,14.3,4.3,51,86800,1132,1343,357,362,0,361,42200,0,42200,15800,320,4.0,10,10,24.1,2440,9,999999999,139,0.0970,0,88,999.000,999.0,99.0 +1979,5,5,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,15.7,3.2,43,86700,1156,1343,363,426,8,419,49400,800,48700,17530,280,5.8,10,10,24.1,2440,9,999999999,129,0.0970,0,88,999.000,999.0,99.0 +1979,5,5,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,1.7,35,86600,1121,1343,368,389,5,385,45200,500,44800,16430,250,7.7,10,10,48.3,2440,9,999999999,120,0.0970,0,88,999.000,999.0,99.0 +1979,5,5,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,16.5,2.2,37,86500,1028,1343,365,324,3,322,37700,300,37500,14070,270,7.9,10,10,48.3,2440,9,999999999,120,0.0970,0,88,999.000,999.0,99.0 +1979,5,5,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,15.7,2.4,40,86500,883,1343,361,273,2,272,31500,200,31400,11540,280,8.0,10,10,48.3,2440,9,999999999,120,0.0970,0,88,999.000,999.0,99.0 +1979,5,5,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,2.2,42,86400,698,1343,358,218,0,218,24700,0,24700,8600,300,8.2,10,10,64.4,2440,9,999999999,120,0.0970,0,88,999.000,999.0,99.0 +1979,5,5,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,13.7,2.6,47,86400,483,1343,352,143,1,143,16100,100,16100,5220,320,6.2,10,10,64.4,2643,9,999999999,129,0.0970,0,88,999.000,999.0,99.0 +1979,5,5,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,12.4,2.9,52,86400,255,1343,346,66,1,65,7300,0,7300,2230,330,4.1,10,10,64.4,2847,9,999999999,129,0.0970,0,88,999.000,999.0,99.0 +1979,5,5,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,2.8,57,86400,46,907,339,15,0,15,1700,0,1700,520,350,2.1,10,10,64.4,3050,9,999999999,129,0.0970,0,88,999.000,999.0,99.0 +1979,5,5,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,10.0,3.6,64,86400,0,0,335,0,0,0,0,0,0,0,330,2.3,10,10,64.4,2440,9,999999999,129,0.0970,0,88,999.000,999.0,99.0 +1979,5,5,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,8.9,4.0,70,86400,0,0,330,0,0,0,0,0,0,0,320,2.4,10,10,64.4,1830,9,999999999,129,0.0970,0,88,999.000,999.0,99.0 +1979,5,5,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,7.8,3.9,77,86400,0,0,325,0,0,0,0,0,0,0,300,2.6,10,10,24.1,1220,9,999999999,139,0.0970,0,88,999.000,999.0,99.0 +1979,5,5,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,7.6,4.1,76,86300,0,0,316,0,0,0,0,0,0,0,300,2.2,10,9,24.1,1830,9,999999999,129,0.0970,0,88,999.000,999.0,99.0 +1979,5,6,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,7.4,3.7,75,86300,0,0,308,0,0,0,0,0,0,0,290,1.9,9,8,24.1,2440,9,999999999,129,0.0970,0,88,999.000,999.0,99.0 +1979,5,6,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,7.2,2.8,74,86200,0,0,301,0,0,0,0,0,0,0,290,1.5,9,7,24.1,3050,9,999999999,129,0.0970,0,88,999.000,999.0,99.0 +1979,5,6,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,6.7,2.3,72,86200,0,0,303,0,0,0,0,0,0,0,270,4.8,9,8,24.1,2337,9,999999999,120,0.0970,0,88,999.000,999.0,99.0 +1979,5,6,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,6.1,1.5,70,86200,0,0,306,0,0,0,0,0,0,0,260,8.0,10,9,24.1,1623,9,999999999,110,0.0970,0,88,999.000,999.0,99.0 +1979,5,6,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,5.6,0.0,68,86200,0,0,311,0,0,0,0,0,0,0,240,11.3,10,10,24.1,910,9,999999999,110,0.0970,0,88,999.000,999.0,99.0 +1979,5,6,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,5.4,0.4,68,86300,77,1152,310,21,0,21,2400,0,2400,710,250,11.0,10,10,24.1,963,9,999999999,110,0.0640,0,88,999.000,999.0,99.0 +1979,5,6,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,5.2,0.2,68,86300,299,1342,309,85,0,85,9400,0,9400,2870,270,10.6,10,10,24.1,1017,9,999999999,110,0.0640,0,88,999.000,999.0,99.0 +1979,5,6,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,-0.6,68,86400,526,1342,308,166,1,166,18600,100,18600,6040,280,10.3,10,10,24.1,1070,9,999999999,100,0.0640,0,88,999.000,999.0,99.0 +1979,5,6,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,5.6,-0.4,64,86500,737,1342,310,256,2,255,28900,200,28800,9840,280,10.0,10,10,24.1,1040,9,999999999,100,0.0640,0,88,999.000,999.0,99.0 +1979,5,6,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,6.1,-0.8,60,86500,916,1342,312,352,1,351,39900,100,39800,13850,270,9.6,10,10,24.1,1010,9,999999999,100,0.0640,0,88,999.000,999.0,99.0 +1979,5,6,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,-1.7,56,86600,1051,1342,314,369,0,369,42600,0,42600,15570,270,9.3,10,10,24.1,980,9,999999999,100,0.0640,0,88,999.000,999.0,99.0 +1979,5,6,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,7.6,-1.6,52,86600,1135,1342,318,387,2,386,45100,200,45000,16530,280,8.9,10,10,24.1,1040,9,999999999,100,0.0640,0,88,999.000,999.0,99.0 +1979,5,6,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,8.5,-2.0,47,86600,1159,1342,322,425,0,425,49300,0,49300,17700,280,8.6,10,10,24.1,1100,9,999999999,89,0.0640,0,88,999.000,999.0,99.0 +1979,5,6,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,-2.8,43,86600,1124,1342,325,420,2,418,48500,200,48300,17310,290,8.2,10,10,32.2,1160,9,999999999,89,0.0640,0,88,999.000,999.0,99.0 +1979,5,6,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,9.8,-2.9,41,86600,1031,1342,327,350,1,349,40400,100,40400,14870,290,8.4,10,10,32.2,1130,9,999999999,89,0.0640,0,88,999.000,999.0,99.0 +1979,5,6,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,10.2,-3.1,38,86600,887,1342,328,335,1,334,37900,100,37900,13160,280,8.6,10,10,32.2,1100,9,999999999,89,0.0640,0,88,999.000,999.0,99.0 +1979,5,6,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,-3.9,36,86600,701,1342,329,230,1,230,26100,100,26000,8930,280,8.8,10,10,64.4,1070,9,999999999,89,0.0640,0,88,999.000,999.0,99.0 +1979,5,6,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,9.5,-3.1,41,86600,487,1342,325,148,0,148,16600,0,16600,5360,280,8.1,10,10,64.4,1933,9,999999999,89,0.0640,0,88,999.000,999.0,99.0 +1979,5,6,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,8.3,-2.5,46,86700,259,1342,311,83,57,72,9100,4600,8200,1780,280,7.4,10,9,64.4,2797,9,999999999,89,0.0640,0,88,999.000,999.0,99.0 +1979,5,6,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,-2.2,51,86700,49,929,307,10,5,10,1100,300,1100,260,280,6.7,10,9,64.4,3660,9,999999999,89,0.0640,0,88,999.000,999.0,99.0 +1979,5,6,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,6.5,-1.8,54,86800,0,0,293,0,0,0,0,0,0,0,280,5.8,10,7,64.4,77777,9,999999999,89,0.0640,0,88,999.000,999.0,99.0 +1979,5,6,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,5.7,-1.8,57,86800,0,0,287,0,0,0,0,0,0,0,290,5.0,10,6,64.4,77777,9,999999999,89,0.0640,0,88,999.000,999.0,99.0 +1979,5,6,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,5.0,-2.2,60,86800,0,0,279,0,0,0,0,0,0,0,290,4.1,10,4,24.1,77777,9,999999999,89,0.0640,0,88,999.000,999.0,99.0 +1979,5,6,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,3.9,-2.2,62,86800,0,0,274,0,0,0,0,0,0,0,280,3.9,9,4,24.1,77777,9,999999999,89,0.0640,0,88,999.000,999.0,99.0 +1979,5,7,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,2.8,-2.8,65,86800,0,0,267,0,0,0,0,0,0,0,260,3.8,9,3,24.1,77777,9,999999999,89,0.0640,0,88,999.000,999.0,99.0 +1979,5,7,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,1.7,-3.9,67,86800,0,0,262,0,0,0,0,0,0,0,250,3.6,8,3,24.1,77777,9,999999999,89,0.0640,0,88,999.000,999.0,99.0 +1979,5,7,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,0.9,-3.6,70,86800,0,0,259,0,0,0,0,0,0,0,190,3.1,9,3,24.1,77777,9,999999999,89,0.0640,0,88,999.000,999.0,99.0 +1979,5,7,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,0.2,-3.7,72,86800,0,0,258,0,0,0,0,0,0,0,140,2.6,9,4,24.1,77777,9,999999999,80,0.0640,0,88,999.000,999.0,99.0 +1979,5,7,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-0.6,-4.4,75,86800,0,0,255,0,0,0,0,0,0,0,80,2.1,10,4,32.2,77777,9,999999999,80,0.0640,0,88,999.000,999.0,99.0 +1979,5,7,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,1.6,-3.8,66,86800,81,1196,262,32,88,25,3300,3300,3100,450,50,1.4,8,3,32.2,77777,9,999999999,80,0.0580,0,88,999.000,999.0,99.0 +1979,5,7,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,3.9,-3.8,56,86800,304,1342,268,148,425,53,15400,34200,7700,980,30,0.7,5,2,32.2,77777,9,999999999,89,0.0580,0,88,999.000,999.0,99.0 +1979,5,7,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,-4.4,47,86800,530,1342,272,332,708,53,35700,67800,8900,1190,0,0.0,3,1,64.4,77777,9,999999999,80,0.0580,0,88,999.000,999.0,99.0 +1979,5,7,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,7.8,-3.7,43,86800,740,1342,286,546,800,106,56900,78800,13300,2250,10,0.9,4,3,64.4,77777,9,999999999,89,0.0580,0,88,999.000,999.0,99.0 +1979,5,7,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,9.4,-3.5,39,86800,919,1342,298,476,395,205,51500,41000,23400,5510,30,1.7,6,5,64.4,77777,9,999999999,89,0.0580,0,88,999.000,999.0,99.0 +1979,5,7,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,-3.9,35,86800,1055,1342,311,537,276,320,58800,29900,35200,10820,40,2.6,7,7,64.4,1070,9,999999999,89,0.0580,0,88,999.000,999.0,99.0 +1979,5,7,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,11.7,-3.6,33,86700,1137,1342,314,669,503,242,73600,52700,28800,10230,50,3.5,7,7,64.4,1120,9,999999999,89,0.0580,0,88,999.000,999.0,99.0 +1979,5,7,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,12.2,-3.8,32,86700,1162,1342,312,729,561,243,77100,56900,27700,10920,50,4.3,6,6,64.4,1170,9,999999999,80,0.0580,0,88,999.000,999.0,99.0 +1979,5,7,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,-4.4,30,86700,1126,1342,314,759,640,221,80500,65100,25700,8990,60,5.2,6,6,48.3,1220,9,999999999,80,0.0580,0,88,999.000,999.0,99.0 +1979,5,7,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,12.6,-3.6,32,86700,1034,1342,314,658,521,257,71000,54300,29000,8490,50,5.2,6,6,48.3,77777,9,999999999,89,0.0580,0,88,999.000,999.0,99.0 +1979,5,7,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,12.4,-2.9,33,86700,890,1342,311,566,594,172,59500,59900,19700,4440,30,5.2,5,5,48.3,77777,9,999999999,89,0.0580,0,88,999.000,999.0,99.0 +1979,5,7,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,-2.8,35,86700,704,1342,310,432,441,201,45200,44400,21900,4400,20,5.2,5,5,64.4,77777,9,999999999,89,0.0580,0,88,999.000,999.0,99.0 +1979,5,7,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,10.2,-2.2,43,86800,491,1342,302,245,383,106,26200,36000,13000,2010,30,4.7,7,5,64.4,77777,9,999999999,100,0.0580,0,88,999.000,999.0,99.0 +1979,5,7,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,8.1,-1.8,50,86800,263,1342,292,106,202,67,11300,15000,8400,1260,30,4.1,8,4,64.4,77777,9,999999999,100,0.0580,0,88,999.000,999.0,99.0 +1979,5,7,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,-1.7,58,86900,52,950,284,23,28,21,2500,1200,2400,430,40,3.6,10,4,64.4,77777,9,999999999,100,0.0580,0,88,999.000,999.0,99.0 +1979,5,7,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,5.4,-1.3,61,87000,0,0,283,0,0,0,0,0,0,0,10,3.6,10,5,64.4,77777,9,999999999,100,0.0580,0,88,999.000,999.0,99.0 +1979,5,7,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,4.6,-1.3,64,87000,0,0,286,0,0,0,0,0,0,0,340,3.6,10,7,64.4,77777,9,999999999,100,0.0580,0,88,999.000,999.0,99.0 +1979,5,7,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,3.9,-1.7,67,87100,0,0,287,0,0,0,0,0,0,0,310,3.6,10,8,24.1,7620,9,999999999,100,0.0580,0,88,999.000,999.0,99.0 +1979,5,7,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,4.1,-1.1,66,87100,0,0,295,0,0,0,0,0,0,0,320,3.4,10,9,24.1,5437,9,999999999,100,0.0580,0,88,999.000,999.0,99.0 +1979,5,8,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,4.2,-1.2,66,87100,0,0,295,0,0,0,0,0,0,0,320,3.3,10,9,24.1,3253,9,999999999,100,0.0580,0,88,999.000,999.0,99.0 +1979,5,8,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,4.4,-1.7,65,87100,0,0,304,0,0,0,0,0,0,0,330,3.1,10,10,24.1,1070,9,999999999,100,0.0580,0,88,999.000,999.0,99.0 +1979,5,8,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,4.0,-1.2,67,87100,0,0,294,0,0,0,0,0,0,0,340,3.1,9,9,24.1,1070,9,999999999,100,0.0580,0,88,999.000,999.0,99.0 +1979,5,8,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,3.7,-1.2,68,87100,0,0,293,0,0,0,0,0,0,0,360,3.1,9,9,24.1,1070,9,999999999,100,0.0580,0,88,999.000,999.0,99.0 +1979,5,8,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,3.3,-1.7,70,87100,0,0,285,0,0,0,0,0,0,0,10,3.1,8,8,32.2,1070,9,999999999,100,0.0580,0,88,999.000,999.0,99.0 +1979,5,8,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,3.7,-1.1,68,87100,86,1218,293,28,34,26,3100,1600,3000,540,10,3.6,9,9,32.2,1130,9,999999999,100,0.0310,0,88,999.000,999.0,99.0 +1979,5,8,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,4.0,-1.1,67,87200,308,1341,294,94,1,94,10400,0,10400,3110,10,4.1,9,9,32.2,1190,9,999999999,100,0.0310,0,88,999.000,999.0,99.0 +1979,5,8,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,-1.7,65,87200,534,1341,304,192,77,161,21000,7400,18100,4510,10,4.6,10,10,40.2,1250,9,999999999,100,0.0310,0,88,999.000,999.0,99.0 +1979,5,8,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,5.2,-1.5,60,87300,744,1341,307,258,6,255,29200,500,28900,9910,10,3.8,10,10,40.2,1190,9,999999999,100,0.0310,0,88,999.000,999.0,99.0 +1979,5,8,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,5.9,-1.9,56,87300,922,1341,310,263,14,253,30600,1200,29800,11250,10,2.9,10,10,40.2,1130,9,999999999,89,0.0310,0,88,999.000,999.0,99.0 +1979,5,8,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,-2.8,51,87300,1057,1341,313,363,10,355,42100,900,41300,15230,10,2.1,10,10,48.3,1070,9,999999999,89,0.0310,0,88,999.000,999.0,99.0 +1979,5,8,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,6.7,-2.4,51,87300,1140,1341,313,359,4,355,42000,400,41700,15670,10,3.8,10,10,48.3,1100,9,999999999,89,0.0310,0,88,999.000,999.0,99.0 +1979,5,8,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,6.7,-2.4,51,87300,1164,1341,313,353,5,349,41600,500,41300,15590,20,5.5,10,10,48.3,1130,9,999999999,89,0.0310,0,88,999.000,999.0,99.0 +1979,5,8,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,-2.8,51,87300,1129,1341,313,367,3,365,43000,300,42700,15920,20,7.2,10,10,48.3,1160,9,999999999,89,0.0310,0,88,999.000,999.0,99.0 +1979,5,8,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,6.9,-2.9,49,87400,1036,1341,313,322,2,321,37600,200,37400,14110,30,7.0,10,10,48.3,1130,9,999999999,89,0.0310,0,88,999.000,999.0,99.0 +1979,5,8,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,7.0,-3.1,48,87400,893,1341,314,298,4,295,34100,400,33900,12260,30,6.9,10,10,48.3,1100,9,999999999,89,0.0310,0,88,999.000,999.0,99.0 +1979,5,8,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,-3.9,46,87400,708,1341,314,259,1,258,29000,100,28900,9630,40,6.7,10,10,48.3,1070,9,999999999,89,0.0310,0,88,999.000,999.0,99.0 +1979,5,8,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,6.7,-3.3,49,87500,494,1341,312,174,1,173,19200,100,19200,5940,70,6.0,10,10,48.3,1040,9,999999999,89,0.0310,0,88,999.000,999.0,99.0 +1979,5,8,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,6.1,-2.9,52,87600,267,1341,310,94,0,94,10200,0,10200,2850,90,5.3,10,10,48.3,1010,9,999999999,89,0.0310,0,88,999.000,999.0,99.0 +1979,5,8,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,-2.8,55,87600,55,995,308,20,0,20,2200,0,2200,660,120,4.6,10,10,24.1,980,9,999999999,89,0.0310,0,88,999.000,999.0,99.0 +1979,5,8,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,5.0,-2.0,59,87600,0,0,306,0,0,0,0,0,0,0,110,4.3,10,10,24.1,957,9,999999999,89,0.0310,0,88,999.000,999.0,99.0 +1979,5,8,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,4.5,-1.6,63,87700,0,0,304,0,0,0,0,0,0,0,110,3.9,10,10,24.1,933,9,999999999,100,0.0310,0,88,999.000,999.0,99.0 +1979,5,8,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,3.9,-1.7,67,87700,0,0,302,0,0,0,0,0,0,0,100,3.6,10,10,24.1,910,9,999999999,100,0.0310,0,88,999.000,999.0,99.0 +1979,5,8,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,3.9,-1.7,65,87700,0,0,302,0,0,0,0,0,0,0,90,3.3,10,10,24.1,963,9,999999999,100,0.0310,0,88,999.000,999.0,99.0 +1979,5,9,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,3.9,-2.3,62,87700,0,0,301,0,0,0,0,0,0,0,90,2.9,10,10,24.1,1017,9,999999999,89,0.0310,0,88,999.000,999.0,99.0 +1979,5,9,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,3.9,-3.3,60,87700,0,0,300,0,0,0,0,0,0,0,80,2.6,10,10,24.1,1070,9,999999999,89,0.0310,0,88,999.000,999.0,99.0 +1979,5,9,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,3.7,-2.7,62,87800,0,0,300,0,0,0,0,0,0,0,50,1.7,10,10,24.1,1070,9,999999999,89,0.0310,0,88,999.000,999.0,99.0 +1979,5,9,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,3.5,-2.4,63,87800,0,0,299,0,0,0,0,0,0,0,30,0.9,10,10,24.1,1070,9,999999999,89,0.0310,0,88,999.000,999.0,99.0 +1979,5,9,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,3.3,-2.8,65,87800,0,0,298,0,0,0,0,0,0,0,0,0.0,10,10,40.2,1070,9,999999999,89,0.0310,0,88,999.000,999.0,99.0 +1979,5,9,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,3.7,-2.0,64,87800,90,1262,300,23,0,23,2600,0,2600,770,360,0.9,10,10,40.2,1170,9,999999999,89,0.0580,0,88,999.000,999.0,99.0 +1979,5,9,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,4.0,-1.8,63,87900,313,1341,302,92,0,92,10200,0,10200,3090,360,1.7,10,10,40.2,1270,9,999999999,89,0.0580,0,88,999.000,999.0,99.0 +1979,5,9,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,-2.2,62,87900,538,1341,303,195,1,194,21500,100,21500,6720,360,2.6,10,10,48.3,1370,9,999999999,100,0.0580,0,88,999.000,999.0,99.0 +1979,5,9,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,5.0,-2.0,58,87900,747,1341,306,254,1,253,28700,100,28600,9900,360,3.1,10,10,48.3,1270,9,999999999,89,0.0580,0,88,999.000,999.0,99.0 +1979,5,9,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,5.5,-2.4,55,87900,926,1341,308,329,1,328,37600,100,37500,13420,360,3.6,10,10,48.3,1170,9,999999999,89,0.0580,0,88,999.000,999.0,99.0 +1979,5,9,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,-3.3,51,87900,1060,1341,309,413,1,413,47400,100,47300,16740,360,4.1,10,10,48.3,1070,9,999999999,89,0.0580,0,88,999.000,999.0,99.0 +1979,5,9,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,6.7,-2.9,49,87900,1143,1341,313,394,2,393,46000,200,45800,16780,360,4.5,10,10,48.3,1100,9,999999999,89,0.0580,0,88,999.000,999.0,99.0 +1979,5,9,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,7.2,-2.9,48,87900,1167,1341,315,404,0,404,47100,0,47100,17210,350,4.8,10,10,48.3,1130,9,999999999,89,0.0580,0,88,999.000,999.0,99.0 +1979,5,9,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,-3.3,46,87900,1132,1341,317,400,1,399,46400,100,46300,16880,350,5.2,10,10,48.3,1160,9,999999999,89,0.0580,0,88,999.000,999.0,99.0 +1979,5,9,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,8.5,-2.8,44,87900,1039,1341,321,362,2,361,41900,200,41700,15270,360,5.5,10,10,48.3,1160,9,999999999,89,0.0580,0,88,999.000,999.0,99.0 +1979,5,9,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,9.3,-2.6,43,88000,895,1341,316,382,239,223,42100,25700,24900,5850,360,5.9,10,9,48.3,1160,9,999999999,89,0.0580,0,88,999.000,999.0,99.0 +1979,5,9,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,-2.8,41,88000,711,1341,319,241,53,213,26500,5300,23700,6610,10,6.2,10,9,48.3,1160,9,999999999,89,0.0580,0,88,999.000,999.0,99.0 +1979,5,9,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,8.9,-1.9,47,88000,498,1341,315,141,9,138,16000,600,15700,5200,50,5.0,10,9,48.3,1180,9,999999999,100,0.0580,0,88,999.000,999.0,99.0 +1979,5,9,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,7.8,-1.0,54,88000,271,1341,311,67,20,63,7400,1600,7000,1630,90,3.8,10,9,48.3,1200,9,999999999,100,0.0580,0,88,999.000,999.0,99.0 +1979,5,9,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,-0.6,60,88100,58,1017,306,19,12,18,2100,700,2000,440,130,2.6,10,9,48.3,1220,9,999999999,110,0.0580,0,88,999.000,999.0,99.0 +1979,5,9,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,5.2,-0.3,66,88100,0,0,289,0,0,0,0,0,0,0,190,2.8,7,7,48.3,77777,9,999999999,110,0.0580,0,88,999.000,999.0,99.0 +1979,5,9,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,3.7,-0.5,73,88100,0,0,275,0,0,0,0,0,0,0,240,2.9,5,4,48.3,77777,9,999999999,100,0.0580,0,88,999.000,999.0,99.0 +1979,5,9,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,2.2,-1.1,79,88100,0,0,264,0,0,0,0,0,0,0,300,3.1,2,2,24.1,77777,9,999999999,100,0.0580,0,88,999.000,999.0,99.0 +1979,5,9,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,1.3,-1.1,81,88100,0,0,257,0,0,0,0,0,0,0,260,2.8,1,1,24.1,77777,9,999999999,100,0.0580,0,88,999.000,999.0,99.0 +1979,5,10,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,0.3,-1.7,83,88100,0,0,253,0,0,0,0,0,0,0,220,2.4,1,1,24.1,77777,9,999999999,100,0.0580,0,88,999.000,999.0,99.0 +1979,5,10,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-0.6,-2.8,85,88200,0,0,244,0,0,0,0,0,0,0,180,2.1,0,0,24.1,77777,9,999999999,89,0.0580,0,88,999.000,999.0,99.0 +1979,5,10,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-1.0,-2.9,84,88200,0,0,242,0,0,0,0,0,0,0,120,1.4,0,0,24.1,77777,9,999999999,89,0.0580,0,88,999.000,999.0,99.0 +1979,5,10,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-1.3,-3.3,83,88200,0,0,241,0,0,0,0,0,0,0,60,0.7,0,0,24.1,77777,9,999999999,89,0.0580,0,88,999.000,999.0,99.0 +1979,5,10,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-1.7,-4.4,82,88300,0,0,238,0,0,0,0,0,0,0,0,0.0,0,0,64.4,77777,9,999999999,80,0.0580,0,88,999.000,999.0,99.0 +1979,5,10,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,0.2,-2.9,77,88300,94,1284,247,32,116,22,3300,5100,2900,390,350,0.7,0,0,64.4,77777,9,999999999,89,0.1200,0,88,999.000,999.0,99.0 +1979,5,10,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,2.0,-2.0,72,88300,317,1340,254,167,485,53,17400,39800,8000,990,340,1.4,0,0,64.4,77777,9,999999999,89,0.1200,0,88,999.000,999.0,99.0 +1979,5,10,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,-1.7,67,88300,542,1340,261,348,670,78,37000,64300,10900,1590,330,2.1,0,0,64.4,77777,9,999999999,100,0.1200,0,88,999.000,999.0,99.0 +1979,5,10,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,6.5,-0.8,59,88300,751,1340,272,533,775,99,55900,76800,12800,2200,300,2.1,0,0,64.4,77777,9,999999999,100,0.1200,0,88,999.000,999.0,99.0 +1979,5,10,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,9.1,-0.4,51,88200,929,1340,288,649,795,98,67400,79200,12400,2370,260,2.1,1,1,64.4,77777,9,999999999,110,0.1200,0,88,999.000,999.0,99.0 +1979,5,10,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,-0.6,43,88200,1063,1340,299,791,842,123,81600,84100,14700,3360,230,2.1,1,1,64.4,77777,9,999999999,110,0.1200,0,88,999.000,999.0,99.0 +1979,5,10,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,11.7,0.2,44,88100,1145,1340,307,882,832,170,92500,83700,20800,6770,220,2.6,3,3,64.4,77777,9,999999999,110,0.1200,0,88,999.000,999.0,99.0 +1979,5,10,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,11.7,0.6,46,88100,1169,1340,315,482,169,335,53800,18100,38000,14520,220,3.1,6,6,64.4,77777,9,999999999,110,0.1200,0,88,999.000,999.0,99.0 +1979,5,10,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,0.6,47,88100,1134,1340,323,323,45,284,35700,4600,31800,12730,210,3.6,8,8,48.3,1370,9,999999999,110,0.1200,0,88,999.000,999.0,99.0 +1979,5,10,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,12.4,0.0,42,88000,1042,1340,321,612,303,376,66000,32800,40500,12790,220,5.0,8,7,48.3,1370,9,999999999,110,0.1200,0,88,999.000,999.0,99.0 +1979,5,10,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,13.2,-0.9,38,88000,898,1340,323,525,409,251,55600,42200,27200,6690,240,6.3,8,7,48.3,1370,9,999999999,100,0.1200,0,88,999.000,999.0,99.0 +1979,5,10,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,-2.2,33,88000,714,1340,321,387,359,196,41900,37600,21800,4460,250,7.7,8,6,48.3,1370,9,999999999,100,0.1200,0,88,999.000,999.0,99.0 +1979,5,10,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,12.8,-2.4,35,88000,501,1340,316,224,207,147,23900,20100,16300,3050,260,7.0,9,6,48.3,2133,9,999999999,89,0.1200,0,88,999.000,999.0,99.0 +1979,5,10,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,11.7,-2.6,36,88000,275,1340,315,82,44,73,9000,3600,8200,1840,280,6.4,9,7,48.3,2897,9,999999999,89,0.1200,0,88,999.000,999.0,99.0 +1979,5,10,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,-3.3,38,88100,61,1038,309,21,11,20,2300,600,2200,480,290,5.7,10,7,48.3,3660,9,999999999,89,0.1200,0,88,999.000,999.0,99.0 +1979,5,10,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,10.2,-3.2,38,88100,0,0,304,0,0,0,0,0,0,0,290,6.5,10,6,48.3,77777,9,999999999,89,0.1200,0,88,999.000,999.0,99.0 +1979,5,10,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,9.8,-3.6,38,88100,0,0,302,0,0,0,0,0,0,0,280,7.4,10,6,48.3,77777,9,999999999,89,0.1200,0,88,999.000,999.0,99.0 +1979,5,10,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,9.4,-4.4,38,88200,0,0,297,0,0,0,0,0,0,0,280,8.2,10,5,24.1,77777,9,999999999,89,0.1200,0,88,999.000,999.0,99.0 +1979,5,10,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,9.0,-3.5,40,88200,0,0,298,0,0,0,0,0,0,0,280,8.4,10,6,24.1,77777,9,999999999,89,0.1200,0,88,999.000,999.0,99.0 +1979,5,11,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,8.7,-3.2,42,88200,0,0,301,0,0,0,0,0,0,0,280,8.6,10,7,24.1,77777,9,999999999,89,0.1200,0,88,999.000,999.0,99.0 +1979,5,11,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,8.3,-3.3,44,88200,0,0,304,0,0,0,0,0,0,0,280,8.8,10,8,24.1,1520,9,999999999,89,0.1200,0,88,999.000,999.0,99.0 +1979,5,11,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,7.9,-2.8,45,88300,0,0,303,0,0,0,0,0,0,0,280,7.9,10,8,24.1,1520,9,999999999,89,0.1200,0,88,999.000,999.0,99.0 +1979,5,11,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,7.6,-2.8,46,88300,0,0,297,0,0,0,0,0,0,0,270,7.1,10,7,24.1,1520,9,999999999,89,0.1200,0,88,999.000,999.0,99.0 +1979,5,11,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,7.2,-3.3,47,88400,0,0,295,0,0,0,0,0,0,0,270,6.2,10,7,48.3,1520,9,999999999,89,0.1200,0,88,999.000,999.0,99.0 +1979,5,11,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,7.9,-2.0,47,88400,98,1306,293,29,48,25,3200,2300,3000,520,280,5.5,8,5,48.3,77777,9,999999999,89,0.1080,0,88,999.000,999.0,99.0 +1979,5,11,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,8.7,-1.2,48,88500,321,1339,295,143,266,79,14900,21600,9700,1450,280,4.8,5,4,48.3,77777,9,999999999,100,0.1080,0,88,999.000,999.0,99.0 +1979,5,11,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,-1.1,48,88500,546,1339,293,329,556,103,34200,52800,12700,2010,290,4.1,3,2,48.3,77777,9,999999999,100,0.1080,0,88,999.000,999.0,99.0 +1979,5,11,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,10.7,-1.5,42,88500,754,1339,301,458,552,148,47900,54900,17000,3300,290,4.5,4,3,48.3,77777,9,999999999,100,0.1080,0,88,999.000,999.0,99.0 +1979,5,11,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,12.0,-2.4,36,88500,932,1339,310,598,570,202,62500,57300,22600,5460,300,4.8,6,5,48.3,77777,9,999999999,89,0.1080,0,88,999.000,999.0,99.0 +1979,5,11,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,-3.9,30,88500,1066,1339,317,588,406,266,63600,42400,29800,9460,300,5.2,7,6,48.3,1370,9,999999999,89,0.1080,0,88,999.000,999.0,99.0 +1979,5,11,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,14.1,-3.8,28,88500,1148,1339,324,771,590,265,80900,59600,29800,11370,290,6.0,7,7,48.3,1370,9,999999999,89,0.1080,0,88,999.000,999.0,99.0 +1979,5,11,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,14.8,-4.2,26,88400,1172,1339,327,723,423,353,77000,44100,38300,17030,290,6.9,8,7,48.3,1370,9,999999999,80,0.1080,0,88,999.000,999.0,99.0 +1979,5,11,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,-5.0,24,88400,1136,1339,335,624,315,356,68400,34200,39300,14430,280,7.7,8,8,48.3,1370,9,999999999,80,0.1080,0,88,999.000,999.0,99.0 +1979,5,11,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,16.0,-4.9,23,88400,1044,1339,331,637,416,313,67400,43300,33600,10750,280,8.6,7,7,48.3,77777,9,999999999,80,0.1080,0,88,999.000,999.0,99.0 +1979,5,11,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,16.3,-5.0,22,88300,901,1339,329,485,433,195,52800,44900,22600,5110,290,9.4,6,6,48.3,77777,9,999999999,80,0.1080,0,88,999.000,999.0,99.0 +1979,5,11,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,-5.6,21,88300,717,1339,327,345,360,153,37300,36500,17700,3290,290,10.3,5,5,48.3,77777,9,999999999,80,0.1080,0,88,999.000,999.0,99.0 +1979,5,11,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,15.4,-5.6,23,88300,505,1339,319,265,439,101,28600,41600,12900,1910,290,8.8,5,4,48.3,77777,9,999999999,80,0.1080,0,88,999.000,999.0,99.0 +1979,5,11,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,14.1,-5.6,25,88400,279,1339,311,131,316,66,13800,24100,8700,1200,290,7.2,6,3,48.3,77777,9,999999999,80,0.1080,0,88,999.000,999.0,99.0 +1979,5,11,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,-6.1,27,88400,64,1083,301,25,47,21,2600,2100,2500,430,290,5.7,6,2,24.1,77777,9,999999999,80,0.1080,0,88,999.000,999.0,99.0 +1979,5,11,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,12.2,-5.5,28,88500,0,0,303,0,0,0,0,0,0,0,290,5.9,7,3,24.1,77777,9,999999999,80,0.1080,0,88,999.000,999.0,99.0 +1979,5,11,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,11.7,-5.3,30,88500,0,0,303,0,0,0,0,0,0,0,280,6.0,9,4,24.1,77777,9,999999999,80,0.1080,0,88,999.000,999.0,99.0 +1979,5,11,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,11.1,-5.6,31,88600,0,0,302,0,0,0,0,0,0,0,280,6.2,10,5,24.1,77777,9,999999999,80,0.1080,0,88,999.000,999.0,99.0 +1979,5,11,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,10.2,-4.8,34,88600,0,0,297,0,0,0,0,0,0,0,280,5.7,8,4,24.1,77777,9,999999999,80,0.1080,0,88,999.000,999.0,99.0 +1979,5,12,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,9.2,-4.7,36,88600,0,0,288,0,0,0,0,0,0,0,270,5.1,5,2,24.1,77777,9,999999999,80,0.1080,0,88,999.000,999.0,99.0 +1979,5,12,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,8.3,-5.0,39,88700,0,0,280,0,0,0,0,0,0,0,270,4.6,3,1,24.1,77777,9,999999999,80,0.1080,0,88,999.000,999.0,99.0 +1979,5,12,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,7.8,-4.7,40,88700,0,0,279,0,0,0,0,0,0,0,300,3.1,3,1,24.1,77777,9,999999999,80,0.1080,0,88,999.000,999.0,99.0 +1979,5,12,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,7.2,-4.9,41,88700,0,0,276,0,0,0,0,0,0,0,330,1.5,3,1,24.1,77777,9,999999999,80,0.1080,0,88,999.000,999.0,99.0 +1979,5,12,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,6.7,-5.6,42,88700,0,11,273,0,0,0,0,0,0,0,0,0.0,3,1,64.4,77777,9,999999999,80,0.1080,0,88,999.000,999.0,99.0 +1979,5,12,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,8.4,-3.3,42,88700,103,1339,286,37,127,26,3700,5500,3300,470,10,0.9,5,2,64.4,77777,9,999999999,89,0.0770,0,88,999.000,999.0,99.0 +1979,5,12,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,10.0,-1.7,43,88700,325,1339,294,155,332,75,16300,27100,9700,1370,10,1.7,8,2,64.4,77777,9,999999999,100,0.0770,0,88,999.000,999.0,99.0 +1979,5,12,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,-0.6,43,88700,550,1339,306,321,478,126,34200,46200,15200,2460,20,2.6,10,3,64.4,77777,9,999999999,110,0.0770,0,88,999.000,999.0,99.0 +1979,5,12,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,12.4,-1.7,37,88700,757,1339,312,338,294,171,37200,31100,19500,3890,350,4.0,10,5,64.4,77777,9,999999999,100,0.0770,0,88,999.000,999.0,99.0 +1979,5,12,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,13.2,-3.4,32,88700,934,1339,320,421,145,320,46100,15300,35400,9670,310,5.3,10,7,64.4,77777,9,999999999,89,0.0770,0,88,999.000,999.0,99.0 +1979,5,12,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,-5.6,26,88700,1068,1339,333,399,106,314,44200,11300,35200,11220,280,6.7,10,9,64.4,6100,9,999999999,80,0.0770,0,88,999.000,999.0,99.0 +1979,5,12,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,14.6,-5.3,24,88600,1150,1339,337,524,164,383,57800,17500,42800,15920,280,7.2,10,9,64.4,4573,9,999999999,80,0.0770,0,88,999.000,999.0,99.0 +1979,5,12,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,15.4,-5.5,23,88500,1174,1339,333,571,269,335,63300,29300,37500,14900,270,7.7,9,8,64.4,3047,9,999999999,80,0.0770,0,88,999.000,999.0,99.0 +1979,5,12,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,-6.1,21,88400,1139,1339,336,519,210,341,57200,22800,37800,13840,270,8.2,9,8,64.4,1520,9,999999999,80,0.0770,0,88,999.000,999.0,99.0 +1979,5,12,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,16.8,-5.1,21,88300,1047,1339,335,743,682,210,78500,69200,24300,7070,270,8.6,8,7,64.4,2233,9,999999999,80,0.0770,0,88,999.000,999.0,99.0 +1979,5,12,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,17.6,-4.2,22,88300,904,1339,336,498,375,245,52900,38800,26700,6570,270,8.9,7,6,64.4,2947,9,999999999,80,0.0770,0,88,999.000,999.0,99.0 +1979,5,12,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,-3.9,22,88300,720,1339,336,417,454,174,44500,46000,19800,3790,270,9.3,6,5,64.4,3660,9,999999999,89,0.0770,0,88,999.000,999.0,99.0 +1979,5,12,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,17.2,-3.5,24,88200,508,1339,329,296,500,107,31700,47500,13700,2040,270,8.6,6,4,64.4,77777,9,999999999,89,0.0770,0,88,999.000,999.0,99.0 +1979,5,12,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,16.1,-3.2,26,88200,283,1339,325,138,417,51,14300,32700,7400,930,270,7.9,6,4,64.4,77777,9,999999999,89,0.0770,0,88,999.000,999.0,99.0 +1979,5,12,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,-3.3,28,88200,68,1104,317,27,86,19,2600,3400,2400,330,270,7.2,6,3,24.1,77777,9,999999999,89,0.0770,0,88,999.000,999.0,99.0 +1979,5,12,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,14.4,-3.1,29,88200,0,0,317,0,0,0,0,0,0,0,270,6.2,7,4,24.1,77777,9,999999999,89,0.0770,0,88,999.000,999.0,99.0 +1979,5,12,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,13.9,-3.3,29,88200,0,0,320,0,0,0,0,0,0,0,270,5.1,8,6,24.1,77777,9,999999999,89,0.0770,0,88,999.000,999.0,99.0 +1979,5,12,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,13.3,-3.9,30,88300,0,0,320,0,0,0,0,0,0,0,270,4.1,9,7,24.1,3660,9,999999999,89,0.0770,0,88,999.000,999.0,99.0 +1979,5,12,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,11.8,-2.6,36,88300,0,0,315,0,0,0,0,0,0,0,280,3.4,8,7,24.1,3660,9,999999999,89,0.0770,0,88,999.000,999.0,99.0 +1979,5,13,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,10.4,-1.9,42,88300,0,0,306,0,0,0,0,0,0,0,280,2.8,8,6,24.1,3660,9,999999999,100,0.0770,0,88,999.000,999.0,99.0 +1979,5,13,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,8.9,-1.7,48,88300,0,0,300,0,0,0,0,0,0,0,290,2.1,7,6,24.1,3660,9,999999999,100,0.0770,0,88,999.000,999.0,99.0 +1979,5,13,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,9.5,-0.9,47,88300,0,0,303,0,0,0,0,0,0,0,310,1.4,7,6,24.1,2947,9,999999999,100,0.0770,0,88,999.000,999.0,99.0 +1979,5,13,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,10.0,-0.4,47,88300,0,0,310,0,0,0,0,0,0,0,340,0.7,7,7,24.1,2233,9,999999999,100,0.0770,0,88,999.000,999.0,99.0 +1979,5,13,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,10.6,-0.6,46,88400,0,33,312,0,0,0,0,0,0,0,0,0.0,7,7,48.3,1520,9,999999999,110,0.0770,0,88,999.000,999.0,99.0 +1979,5,13,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,11.3,0.0,44,88400,107,1338,316,25,58,20,2700,2300,2500,340,340,0.5,7,7,48.3,1470,9,999999999,110,0.0250,0,88,999.000,999.0,99.0 +1979,5,13,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,12.1,0.0,42,88400,329,1338,319,153,379,61,15900,31300,8200,1120,310,1.0,7,7,48.3,1420,9,999999999,110,0.0250,0,88,999.000,999.0,99.0 +1979,5,13,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,-0.6,40,88400,553,1338,322,221,106,178,24100,10500,19800,4200,290,1.5,7,7,64.4,1370,9,999999999,110,0.0250,0,88,999.000,999.0,99.0 +1979,5,13,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,14.1,-0.6,36,88400,761,1338,333,334,147,251,36500,15300,27800,6590,280,3.4,8,8,64.4,1370,9,999999999,100,0.0250,0,88,999.000,999.0,99.0 +1979,5,13,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,15.4,-1.1,32,88400,937,1338,338,490,287,290,53300,30900,31600,8280,280,5.3,9,8,64.4,1370,9,999999999,100,0.0250,0,88,999.000,999.0,99.0 +1979,5,13,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,-2.2,28,88400,1071,1338,351,573,327,311,63000,35500,34500,10830,270,7.2,10,9,48.3,1370,9,999999999,100,0.0250,0,88,999.000,999.0,99.0 +1979,5,13,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,17.2,-2.0,27,88300,1152,1338,346,646,389,311,69500,40700,34400,14050,280,8.1,8,8,48.3,77777,9,999999999,100,0.0250,0,88,999.000,999.0,99.0 +1979,5,13,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,17.8,-2.2,25,88300,1176,1338,339,759,523,299,82200,54700,34000,14580,290,8.9,7,6,48.3,77777,9,999999999,100,0.0250,0,88,999.000,999.0,99.0 +1979,5,13,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,-2.8,24,88300,1141,1338,338,945,940,144,97000,94000,16700,4520,300,9.8,5,5,64.4,77777,9,999999999,89,0.0250,0,88,999.000,999.0,99.0 +1979,5,13,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,18.7,-2.7,23,88300,1049,1338,337,866,950,121,89400,94900,14800,3230,310,9.6,4,4,64.4,77777,9,999999999,89,0.0250,0,88,999.000,999.0,99.0 +1979,5,13,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,19.0,-2.7,22,88200,907,1338,333,652,782,123,68600,78400,15400,3130,310,9.5,2,2,64.4,77777,9,999999999,89,0.0250,0,88,999.000,999.0,99.0 +1979,5,13,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,-3.3,21,88200,723,1338,329,508,836,57,53700,82200,9200,1500,320,9.3,1,1,64.4,77777,9,999999999,89,0.0250,0,88,999.000,999.0,99.0 +1979,5,13,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,16.6,-2.7,27,88200,512,1338,317,337,819,26,36500,77400,6800,810,330,6.9,1,1,64.4,77777,9,999999999,89,0.0250,0,88,999.000,999.0,99.0 +1979,5,13,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,13.9,-2.3,34,88300,287,1338,306,163,638,28,17500,53000,6100,720,330,4.5,1,1,64.4,77777,9,999999999,100,0.0250,0,88,999.000,999.0,99.0 +1979,5,13,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,-2.2,40,88300,71,1126,295,37,265,13,3200,14500,2200,270,340,2.1,1,1,64.4,77777,9,999999999,100,0.0250,0,88,999.000,999.0,99.0 +1979,5,13,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,10.0,-1.8,43,88300,0,0,290,0,0,0,0,0,0,0,310,2.3,1,1,64.4,77777,9,999999999,100,0.0250,0,88,999.000,999.0,99.0 +1979,5,13,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,8.9,-1.8,47,88400,0,0,281,0,0,0,0,0,0,0,290,2.4,0,0,64.4,77777,9,999999999,100,0.0250,0,88,999.000,999.0,99.0 +1979,5,13,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,7.8,-2.2,50,88400,0,0,276,0,0,0,0,0,0,0,260,2.6,0,0,24.1,77777,9,999999999,100,0.0250,0,88,999.000,999.0,99.0 +1979,5,13,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,7.1,-1.6,53,88400,0,0,274,0,0,0,0,0,0,0,260,2.8,0,0,24.1,77777,9,999999999,100,0.0250,0,88,999.000,999.0,99.0 +1979,5,14,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,6.3,-1.7,55,88400,0,0,270,0,0,0,0,0,0,0,270,2.9,0,0,24.1,77777,9,999999999,100,0.0250,0,88,999.000,999.0,99.0 +1979,5,14,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,5.6,-2.2,58,88400,0,0,267,0,0,0,0,0,0,0,270,3.1,0,0,24.1,77777,9,999999999,100,0.0250,0,88,999.000,999.0,99.0 +1979,5,14,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,4.3,-1.7,64,88400,0,0,263,0,0,0,0,0,0,0,300,2.1,0,0,24.1,77777,9,999999999,100,0.0250,0,88,999.000,999.0,99.0 +1979,5,14,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,3.0,-1.7,70,88400,0,0,258,0,0,0,0,0,0,0,330,1.0,0,0,24.1,77777,9,999999999,100,0.0250,0,88,999.000,999.0,99.0 +1979,5,14,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,1.7,-2.2,76,88500,0,56,253,0,0,0,0,0,0,0,0,0.0,0,0,64.4,77777,9,999999999,100,0.0250,0,88,999.000,999.0,99.0 +1979,5,14,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,3.9,-0.9,69,88500,111,1337,262,49,390,16,5100,24500,3100,350,0,0.0,1,0,64.4,77777,9,999999999,100,0.0290,0,88,999.000,999.0,99.0 +1979,5,14,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,6.1,-0.1,63,88500,333,1337,271,203,703,29,21700,60700,6600,780,0,0.0,1,0,64.4,77777,9,999999999,110,0.0290,0,88,999.000,999.0,99.0 +1979,5,14,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,0.0,56,88500,556,1337,280,389,826,46,41200,78800,8400,1190,0,0.0,2,0,64.4,77777,9,999999999,110,0.0290,0,88,999.000,999.0,99.0 +1979,5,14,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,11.3,0.8,48,88400,763,1337,293,569,875,70,59700,86300,10400,1700,30,1.2,4,0,64.4,77777,9,999999999,110,0.0290,0,88,999.000,999.0,99.0 +1979,5,14,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,14.2,0.9,41,88400,940,1337,311,670,852,71,70200,85100,10300,2080,50,2.4,6,1,64.4,77777,9,999999999,120,0.0290,0,88,999.000,999.0,99.0 +1979,5,14,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,0.6,33,88300,1073,1337,324,829,890,115,85700,89000,14100,3380,80,3.6,8,1,64.4,77777,9,999999999,110,0.0290,0,88,999.000,999.0,99.0 +1979,5,14,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,18.1,0.8,31,88300,1155,1337,333,832,749,185,86600,75100,21700,7500,100,4.8,9,2,64.4,77777,9,999999999,110,0.0290,0,88,999.000,999.0,99.0 +1979,5,14,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,19.1,0.6,28,88200,1178,1337,343,920,825,193,95700,82600,22700,8450,110,6.0,9,4,64.4,77777,9,999999999,110,0.0290,0,88,999.000,999.0,99.0 +1979,5,14,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,0.0,26,88100,1143,1337,349,603,348,306,64900,36400,33800,13460,130,7.2,10,5,64.4,77777,9,999999999,110,0.0290,0,88,999.000,999.0,99.0 +1979,5,14,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,19.3,1.6,31,88100,1051,1337,351,620,454,263,66900,47400,29600,9090,160,6.9,10,6,64.4,77777,9,999999999,120,0.0290,0,88,999.000,999.0,99.0 +1979,5,14,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,18.5,3.0,35,88100,909,1337,358,461,222,310,50400,23500,34500,9140,200,6.5,10,8,64.4,77777,9,999999999,129,0.0290,0,88,999.000,999.0,99.0 +1979,5,14,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,3.9,40,88100,726,1337,364,237,93,187,26300,9700,21000,4810,230,6.2,10,9,64.4,7620,9,999999999,139,0.0290,0,88,999.000,999.0,99.0 +1979,5,14,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,16.7,4.3,44,88000,515,1337,342,233,288,123,25300,28200,14400,2460,220,4.8,10,6,64.4,77777,9,999999999,139,0.0290,0,88,999.000,999.0,99.0 +1979,5,14,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,15.5,4.5,47,88000,291,1337,331,104,172,67,11200,13500,8200,1240,200,3.5,9,4,64.4,77777,9,999999999,139,0.0290,0,88,999.000,999.0,99.0 +1979,5,14,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,4.4,51,88000,74,1148,316,32,141,19,3100,5800,2700,330,190,2.1,9,1,64.4,77777,9,999999999,139,0.0290,0,88,999.000,999.0,99.0 +1979,5,14,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,12.9,4.5,55,88000,0,0,309,0,0,0,0,0,0,0,190,1.9,6,1,64.4,77777,9,999999999,139,0.0290,0,88,999.000,999.0,99.0 +1979,5,14,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,11.5,4.1,60,88000,0,0,297,0,0,0,0,0,0,0,200,1.7,4,0,64.4,77777,9,999999999,139,0.0290,0,88,999.000,999.0,99.0 +1979,5,14,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,10.0,3.3,64,88000,0,0,290,0,0,0,0,0,0,0,200,1.5,1,0,24.1,77777,9,999999999,129,0.0290,0,88,999.000,999.0,99.0 +1979,5,14,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,8.7,3.5,68,88000,0,0,285,0,0,0,0,0,0,0,180,1.5,2,0,24.1,77777,9,999999999,129,0.0290,0,88,999.000,999.0,99.0 +1979,5,15,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,7.4,3.1,72,88000,0,0,285,0,0,0,0,0,0,0,150,1.5,2,1,24.1,77777,9,999999999,129,0.0290,0,88,999.000,999.0,99.0 +1979,5,15,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,6.1,2.2,76,88000,0,0,279,0,0,0,0,0,0,0,130,1.5,3,1,24.1,77777,9,999999999,120,0.0290,0,88,999.000,999.0,99.0 +1979,5,15,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,5.7,2.5,77,88000,0,0,277,0,0,0,0,0,0,0,90,1.0,2,1,24.1,77777,9,999999999,120,0.0290,0,88,999.000,999.0,99.0 +1979,5,15,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,5.4,2.4,78,88000,0,0,271,0,0,0,0,0,0,0,40,0.5,2,0,24.1,77777,9,999999999,120,0.0290,0,88,999.000,999.0,99.0 +1979,5,15,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,5.0,1.7,79,88000,0,78,269,0,0,0,0,0,0,0,0,0.0,1,0,64.4,77777,9,999999999,120,0.0290,0,88,999.000,999.0,99.0 +1979,5,15,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,7.0,2.7,72,88000,115,1337,277,44,269,21,4500,14100,3300,380,0,0.0,1,0,64.4,77777,9,999999999,120,0.0650,0,88,999.000,999.0,99.0 +1979,5,15,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,9.1,3.0,64,88000,337,1337,286,195,619,40,20500,53100,7100,840,0,0.0,0,0,64.4,77777,9,999999999,129,0.0650,0,88,999.000,999.0,99.0 +1979,5,15,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,2.8,57,88000,560,1337,294,381,776,56,40100,74000,9100,1290,0,0.0,0,0,64.4,77777,9,999999999,129,0.0650,0,88,999.000,999.0,99.0 +1979,5,15,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,13.9,4.1,51,88000,766,1337,307,560,853,71,58700,84100,10400,1720,50,0.7,0,0,64.4,77777,9,999999999,139,0.0650,0,88,999.000,999.0,99.0 +1979,5,15,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,16.6,4.8,45,87900,942,1337,326,572,687,88,62700,70000,13300,2600,110,1.4,1,1,64.4,77777,9,999999999,139,0.0650,0,88,999.000,999.0,99.0 +1979,5,15,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,5.0,39,87900,1075,1337,339,830,924,86,86500,92600,11800,2910,160,2.1,1,1,64.4,77777,9,999999999,150,0.0650,0,88,999.000,999.0,99.0 +1979,5,15,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,20.3,6.0,38,87800,1157,1337,355,756,594,243,80100,60300,27800,10890,140,2.9,4,4,64.4,77777,9,999999999,150,0.0650,0,88,999.000,999.0,99.0 +1979,5,15,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,21.3,6.5,38,87700,1181,1337,367,750,536,277,82000,56200,32300,13710,110,3.8,7,6,64.4,77777,9,999999999,160,0.0650,0,88,999.000,999.0,99.0 +1979,5,15,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,6.7,37,87600,1145,1337,390,418,68,360,46200,7000,40200,15970,90,4.6,10,9,64.4,2130,9,999999999,160,0.0650,0,88,999.000,999.0,99.0 +1979,5,15,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,22.6,5.7,33,87600,1054,1337,391,332,104,251,37400,11200,28600,8790,140,4.4,10,9,64.4,2130,9,999999999,150,0.0650,0,88,999.000,999.0,99.0 +1979,5,15,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,22.9,4.5,30,87500,912,1337,391,351,47,319,38600,4800,35400,10980,180,4.3,10,9,64.4,2130,9,999999999,139,0.0650,0,88,999.000,999.0,99.0 +1979,5,15,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,2.8,26,87500,729,1337,391,196,144,118,22200,15200,13800,2510,230,4.1,10,9,64.4,2130,9,999999999,129,0.0650,0,88,999.000,999.0,99.0 +1979,5,15,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,21.8,2.6,28,87400,519,1337,374,192,126,143,21000,12300,16200,3330,270,2.7,10,8,64.4,3960,9,999999999,129,0.0650,0,88,999.000,999.0,99.0 +1979,5,15,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,20.4,2.4,30,87400,295,1337,361,112,90,92,12100,7300,10500,1990,320,1.4,10,7,64.4,5790,9,999999999,120,0.0650,0,88,999.000,999.0,99.0 +1979,5,15,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,1.7,32,87400,78,1170,349,26,45,22,2800,2100,2600,450,0,0.0,10,6,64.4,7620,9,999999999,120,0.0650,0,88,999.000,999.0,99.0 +1979,5,15,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,17.6,2.1,35,87400,0,0,343,0,0,0,0,0,0,0,300,0.7,9,6,64.4,7620,9,999999999,120,0.0650,0,88,999.000,999.0,99.0 +1979,5,15,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,16.3,2.1,38,87400,0,0,337,0,0,0,0,0,0,0,250,1.4,9,6,64.4,7620,9,999999999,120,0.0650,0,88,999.000,999.0,99.0 +1979,5,15,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,15.0,1.7,41,87400,0,0,331,0,0,0,0,0,0,0,190,2.1,8,6,24.1,7620,9,999999999,120,0.0650,0,88,999.000,999.0,99.0 +1979,5,15,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,13.5,2.3,45,87500,0,0,325,0,0,0,0,0,0,0,240,1.9,7,6,24.1,77777,9,999999999,120,0.0650,0,88,999.000,999.0,99.0 +1979,5,16,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,12.1,2.2,50,87500,0,0,315,0,0,0,0,0,0,0,300,1.7,6,5,24.1,77777,9,999999999,120,0.0650,0,88,999.000,999.0,99.0 +1979,5,16,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,10.6,1.7,54,87500,0,0,308,0,0,0,0,0,0,0,350,1.5,5,5,24.1,77777,9,999999999,120,0.0650,0,88,999.000,999.0,99.0 +1979,5,16,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,8.9,2.3,62,87500,0,0,299,0,0,0,0,0,0,0,330,1.9,5,4,24.1,77777,9,999999999,120,0.0650,0,88,999.000,999.0,99.0 +1979,5,16,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,7.3,2.6,71,87500,0,0,288,0,0,0,0,0,0,0,310,2.2,4,2,24.1,77777,9,999999999,120,0.0650,0,88,999.000,999.0,99.0 +1979,5,16,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,2.2,79,87400,1,122,277,1,1,0,0,0,0,0,290,2.6,4,1,48.3,77777,9,999999999,120,0.0800,0,88,999.000,999.0,99.0 +1979,5,16,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,8.9,3.4,68,87500,118,1336,300,31,76,25,3400,3300,3100,440,240,3.1,6,4,48.3,77777,9,999999999,129,0.0800,0,88,999.000,999.0,99.0 +1979,5,16,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,12.3,3.9,57,87500,340,1336,321,121,147,84,13000,12400,9800,1600,180,3.6,8,6,48.3,77777,9,999999999,139,0.0800,0,88,999.000,999.0,99.0 +1979,5,16,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,3.9,46,87500,563,1336,353,209,58,185,23000,5700,20600,5170,130,4.1,10,9,64.4,3050,9,999999999,139,0.0800,0,88,999.000,999.0,99.0 +1979,5,16,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,16.1,5.0,46,87500,769,1336,357,335,72,294,36800,7300,32600,8960,190,5.7,10,9,64.4,2540,9,999999999,139,0.0800,0,88,999.000,999.0,99.0 +1979,5,16,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,16.7,5.6,46,87500,945,1336,353,467,199,327,51200,21100,36300,10000,240,7.2,10,8,64.4,2030,9,999999999,150,0.0800,0,88,999.000,999.0,99.0 +1979,5,16,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,5.6,46,87400,1078,1336,355,563,219,386,61700,23300,42900,14050,300,8.8,10,8,64.4,1520,9,999999999,150,0.0800,0,88,999.000,999.0,99.0 +1979,5,16,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,17.4,5.6,45,87500,1159,1336,356,490,118,387,54000,12600,43100,16480,310,7.9,10,8,64.4,1520,9,999999999,150,0.0800,0,88,999.000,999.0,99.0 +1979,5,16,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,17.6,5.2,43,87500,1183,1336,357,569,248,350,63000,27000,39000,16120,310,7.1,9,8,64.4,1520,9,999999999,150,0.0800,0,88,999.000,999.0,99.0 +1979,5,16,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,4.4,42,87500,1148,1336,357,629,258,407,68400,28000,44300,17330,320,6.2,9,8,64.4,1520,9,999999999,139,0.0800,0,88,999.000,999.0,99.0 +1979,5,16,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,17.8,3.4,39,87500,1056,1336,350,599,357,317,65700,38700,35000,10810,310,7.2,9,7,64.4,77777,9,999999999,129,0.0800,0,88,999.000,999.0,99.0 +1979,5,16,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,17.8,2.3,35,87500,914,1336,342,599,615,179,63100,62100,20500,4800,310,8.3,9,5,64.4,77777,9,999999999,120,0.0800,0,88,999.000,999.0,99.0 +1979,5,16,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,0.6,32,87600,732,1336,337,468,569,157,48600,56100,17800,3390,300,9.3,9,4,64.4,77777,9,999999999,110,0.0800,0,88,999.000,999.0,99.0 +1979,5,16,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,16.5,0.0,33,87600,522,1336,333,273,290,161,29100,28500,18000,3400,300,8.4,9,5,64.4,77777,9,999999999,110,0.0800,0,88,999.000,999.0,99.0 +1979,5,16,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,15.2,-0.6,33,87700,298,1336,329,134,248,79,14200,19700,9800,1510,300,7.6,9,6,64.4,77777,9,999999999,100,0.0800,0,88,999.000,999.0,99.0 +1979,5,16,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,-1.7,34,87800,81,1214,326,27,18,26,3000,1000,2900,610,300,6.7,9,7,64.4,1520,9,999999999,100,0.0800,0,88,999.000,999.0,99.0 +1979,5,16,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,13.2,-0.9,37,87900,0,0,323,0,0,0,0,0,0,0,310,5.5,9,7,64.4,2030,9,999999999,100,0.0800,0,88,999.000,999.0,99.0 +1979,5,16,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,12.4,-0.5,40,87900,0,0,317,0,0,0,0,0,0,0,320,4.3,8,6,64.4,2540,9,999999999,100,0.0800,0,88,999.000,999.0,99.0 +1979,5,16,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,11.7,-0.6,43,88000,0,0,313,0,0,0,0,0,0,0,330,3.1,8,6,24.1,3050,9,999999999,110,0.0800,0,88,999.000,999.0,99.0 +1979,5,16,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,10.8,0.2,47,88000,0,0,314,0,0,0,0,0,0,0,310,5.0,9,7,24.1,2540,9,999999999,110,0.0800,0,88,999.000,999.0,99.0 +1979,5,17,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,9.8,0.3,50,88000,0,0,321,0,0,0,0,0,0,0,290,6.9,9,9,24.1,2030,9,999999999,110,0.0800,0,88,999.000,999.0,99.0 +1979,5,17,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,8.9,0.0,54,88100,0,0,326,0,0,0,0,0,0,0,270,8.8,10,10,24.1,1520,9,999999999,110,0.0800,0,88,999.000,999.0,99.0 +1979,5,17,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,8.0,0.3,57,88100,0,0,302,0,0,0,0,0,0,0,290,6.6,7,7,24.1,77777,9,999999999,110,0.0800,0,88,999.000,999.0,99.0 +1979,5,17,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,7.0,0.1,60,88100,0,0,287,0,0,0,0,0,0,0,310,4.3,3,3,24.1,77777,9,999999999,110,0.0800,0,88,999.000,999.0,99.0 +1979,5,17,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,-0.6,63,88200,1,145,271,3,5,1,0,0,0,0,330,2.1,0,0,64.4,77777,9,999999999,110,0.0470,0,88,999.000,999.0,99.0 +1979,5,17,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,8.3,0.6,57,88200,122,1336,281,51,363,19,5300,21800,3300,370,330,2.1,0,0,64.4,77777,9,999999999,110,0.0470,0,88,999.000,999.0,99.0 +1979,5,17,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,10.6,1.1,51,88200,344,1336,290,207,675,35,22100,58700,7000,850,320,2.1,0,0,64.4,77777,9,999999999,110,0.0470,0,88,999.000,999.0,99.0 +1979,5,17,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,1.1,45,88200,566,1336,299,394,818,48,41700,78200,8500,1220,320,2.1,0,0,64.4,77777,9,999999999,120,0.0470,0,88,999.000,999.0,99.0 +1979,5,17,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,13.7,0.6,40,88200,772,1336,313,526,771,81,56600,77300,11900,1980,320,3.5,3,2,64.4,77777,9,999999999,110,0.0470,0,88,999.000,999.0,99.0 +1979,5,17,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,14.7,-0.6,35,88200,947,1336,324,646,678,165,68600,69000,19600,4720,310,4.8,5,5,64.4,77777,9,999999999,110,0.0470,0,88,999.000,999.0,99.0 +1979,5,17,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,-2.2,30,88200,1080,1336,333,832,722,248,87100,72800,28200,8910,310,6.2,8,7,64.4,1830,9,999999999,100,0.0470,0,88,999.000,999.0,99.0 +1979,5,17,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,16.1,-2.1,28,88100,1161,1336,341,511,124,403,56300,13200,44700,17260,310,5.9,9,8,64.4,3760,9,999999999,100,0.0470,0,88,999.000,999.0,99.0 +1979,5,17,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,16.7,-2.5,27,88100,1185,1336,343,306,58,254,33900,5900,28700,12510,300,5.5,9,8,64.4,5690,9,999999999,89,0.0470,0,88,999.000,999.0,99.0 +1979,5,17,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,-3.3,25,88000,1150,1336,352,442,144,317,49300,15400,35900,13230,300,5.2,10,9,64.4,7620,9,999999999,89,0.0470,0,88,999.000,999.0,99.0 +1979,5,17,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,17.4,-2.8,25,88000,1058,1336,353,370,94,295,41100,10100,33200,10420,300,5.5,10,9,64.4,7317,9,999999999,89,0.0470,0,88,999.000,999.0,99.0 +1979,5,17,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,17.6,-2.6,25,87900,917,1336,355,337,68,290,37100,6900,32300,10230,290,5.9,10,9,64.4,7013,9,999999999,89,0.0470,0,88,999.000,999.0,99.0 +1979,5,17,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,-2.8,25,87900,735,1336,355,260,63,226,28700,6300,25200,7090,290,6.2,10,9,64.4,6710,9,999999999,89,0.0470,0,88,999.000,999.0,99.0 +1979,5,17,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,16.9,-2.2,27,87900,525,1336,352,145,5,143,16400,400,16300,5490,300,5.9,10,9,64.4,5693,9,999999999,100,0.0470,0,88,999.000,999.0,99.0 +1979,5,17,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,15.9,-1.8,30,87900,302,1336,340,118,65,103,12900,5500,11600,2470,300,5.5,10,8,64.4,4677,9,999999999,100,0.0470,0,88,999.000,999.0,99.0 +1979,5,17,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,-1.7,32,88000,85,1236,336,25,2,25,2800,0,2800,810,310,5.2,10,8,64.4,3660,9,999999999,100,0.0470,0,88,999.000,999.0,99.0 +1979,5,17,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,14.1,-1.3,34,88000,0,0,327,0,0,0,0,0,0,0,310,5.0,9,7,64.4,4677,9,999999999,100,0.0470,0,88,999.000,999.0,99.0 +1979,5,17,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,13.1,-1.3,36,88000,0,0,322,0,0,0,0,0,0,0,310,4.8,8,7,64.4,5693,9,999999999,100,0.0470,0,88,999.000,999.0,99.0 +1979,5,17,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,12.2,-1.7,38,88100,0,0,314,0,0,0,0,0,0,0,310,4.6,7,6,24.1,6710,9,999999999,100,0.0470,0,88,999.000,999.0,99.0 +1979,5,17,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,12.2,-1.3,38,88100,0,0,315,0,0,0,0,0,0,0,290,5.3,7,6,24.1,5693,9,999999999,100,0.0470,0,88,999.000,999.0,99.0 +1979,5,18,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,12.2,-1.5,37,88100,0,0,318,0,0,0,0,0,0,0,270,6.0,8,7,24.1,4677,9,999999999,100,0.0470,0,88,999.000,999.0,99.0 +1979,5,18,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,12.2,-2.2,37,88100,0,0,317,0,0,0,0,0,0,0,250,6.7,8,7,24.1,3660,9,999999999,100,0.0470,0,88,999.000,999.0,99.0 +1979,5,18,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,11.5,-1.4,40,88100,0,0,315,0,0,0,0,0,0,0,260,6.2,8,7,24.1,3660,9,999999999,100,0.0470,0,88,999.000,999.0,99.0 +1979,5,18,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,10.7,-0.9,43,88100,0,0,312,0,0,0,0,0,0,0,260,5.7,7,7,24.1,3660,9,999999999,100,0.0470,0,88,999.000,999.0,99.0 +1979,5,18,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,-1.1,46,88100,1,167,309,2,3,2,0,0,0,0,270,5.2,7,7,64.4,3660,9,999999999,100,0.0320,0,88,999.000,999.0,99.0 +1979,5,18,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,10.9,0.2,46,88100,126,1335,311,36,41,32,3900,2200,3700,670,320,4.5,7,6,64.4,77777,9,999999999,110,0.0320,0,88,999.000,999.0,99.0 +1979,5,18,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,11.9,1.0,45,88100,347,1335,311,199,492,72,20400,41100,9700,1290,360,3.8,7,4,64.4,77777,9,999999999,110,0.0320,0,88,999.000,999.0,99.0 +1979,5,18,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,1.1,45,88100,569,1335,312,375,698,79,39000,66700,10500,1580,50,3.1,7,3,64.4,77777,9,999999999,120,0.0320,0,88,999.000,999.0,99.0 +1979,5,18,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,14.3,0.9,40,88100,774,1335,319,513,668,125,54400,67200,15300,2930,360,5.2,6,3,64.4,77777,9,999999999,110,0.0320,0,88,999.000,999.0,99.0 +1979,5,18,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,15.7,0.2,34,88100,949,1335,327,713,795,147,73900,79400,17400,3780,320,7.2,6,4,64.4,77777,9,999999999,110,0.0320,0,88,999.000,999.0,99.0 +1979,5,18,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,-1.1,29,88100,1082,1335,332,771,734,176,82800,75300,21700,6580,270,9.3,5,4,64.4,77777,9,999999999,100,0.0320,0,88,999.000,999.0,99.0 +1979,5,18,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,17.9,-1.0,27,88000,1163,1335,333,744,650,177,80500,67000,22000,8320,270,9.6,4,3,64.4,77777,9,999999999,100,0.0320,0,88,999.000,999.0,99.0 +1979,5,18,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,18.7,-1.4,25,88000,1186,1335,336,823,718,185,89100,73900,23300,9410,260,10.0,3,3,64.4,77777,9,999999999,100,0.0320,0,88,999.000,999.0,99.0 +1979,5,18,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,-2.2,23,88000,1152,1335,335,845,837,123,87100,83800,14700,4400,260,10.3,2,2,64.4,77777,9,999999999,100,0.0320,0,88,999.000,999.0,99.0 +1979,5,18,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,19.2,-2.1,23,88000,1060,1335,337,804,832,143,85100,83900,18300,4740,270,9.4,3,3,64.4,77777,9,999999999,89,0.0320,0,88,999.000,999.0,99.0 +1979,5,18,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,19.1,-2.2,23,88000,919,1335,337,569,619,143,60900,63200,17300,3980,280,8.6,3,3,64.4,77777,9,999999999,89,0.0320,0,88,999.000,999.0,99.0 +1979,5,18,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,-2.8,23,88000,738,1335,338,441,500,165,47400,50900,19300,3630,290,7.7,4,4,64.4,77777,9,999999999,89,0.0320,0,88,999.000,999.0,99.0 +1979,5,18,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,17.4,-2.8,25,88000,528,1335,328,326,590,94,34100,55800,12000,1840,290,7.7,3,3,64.4,77777,9,999999999,89,0.0320,0,88,999.000,999.0,99.0 +1979,5,18,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,15.9,-2.8,27,88000,305,1335,322,162,495,51,17000,40100,7900,950,300,7.7,3,3,64.4,77777,9,999999999,89,0.0320,0,88,999.000,999.0,99.0 +1979,5,18,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,-3.3,29,88100,88,1257,311,41,197,24,3900,9400,3200,410,300,7.7,2,2,64.4,77777,9,999999999,89,0.0320,0,88,999.000,999.0,99.0 +1979,5,18,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,13.9,-2.7,31,88100,0,0,306,0,0,0,0,0,0,0,290,7.7,1,1,64.4,77777,9,999999999,89,0.0320,0,88,999.000,999.0,99.0 +1979,5,18,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,13.3,-2.5,32,88200,0,0,303,0,0,0,0,0,0,0,280,7.7,1,1,64.4,77777,9,999999999,89,0.0320,0,88,999.000,999.0,99.0 +1979,5,18,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,12.8,-2.8,34,88200,0,0,295,0,0,0,0,0,0,0,270,7.7,0,0,24.1,77777,9,999999999,89,0.0320,0,88,999.000,999.0,99.0 +1979,5,18,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,12.4,-2.0,35,88200,0,0,295,0,0,0,0,0,0,0,270,6.0,0,0,24.1,77777,9,999999999,89,0.0320,0,88,999.000,999.0,99.0 +1979,5,19,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,12.1,-1.9,37,88200,0,0,293,0,0,0,0,0,0,0,270,4.3,0,0,24.1,77777,9,999999999,100,0.0320,0,88,999.000,999.0,99.0 +1979,5,19,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,11.7,-2.2,38,88300,0,0,291,0,0,0,0,0,0,0,270,2.6,0,0,24.1,77777,9,999999999,100,0.0320,0,88,999.000,999.0,99.0 +1979,5,19,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,9.3,-0.8,51,88300,0,0,293,0,0,0,0,0,0,0,290,3.1,2,2,24.1,77777,9,999999999,110,0.0320,0,88,999.000,999.0,99.0 +1979,5,19,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,6.8,0.2,63,88400,0,0,286,0,0,0,0,0,0,0,320,3.6,3,3,24.1,77777,9,999999999,110,0.0320,0,88,999.000,999.0,99.0 +1979,5,19,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,0.6,76,88500,2,189,281,1,1,1,0,0,0,0,340,4.1,5,5,48.3,77777,9,999999999,110,0.0700,0,88,999.000,999.0,99.0 +1979,5,19,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,5.5,1.0,70,88500,129,1335,289,34,70,28,3700,3300,3400,490,340,4.1,6,6,48.3,77777,9,999999999,110,0.0700,0,88,999.000,999.0,99.0 +1979,5,19,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,6.7,0.8,64,88600,350,1335,297,102,75,82,11200,6600,9500,1800,330,4.1,7,7,48.3,77777,9,999999999,110,0.0700,0,88,999.000,999.0,99.0 +1979,5,19,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,0.0,58,88600,571,1335,305,268,157,201,29000,15600,22300,4790,330,4.1,8,8,32.2,670,9,999999999,110,0.0700,0,88,999.000,999.0,99.0 +1979,5,19,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,9.3,0.6,53,88500,777,1335,304,468,420,223,49000,42800,24100,5210,340,3.8,6,6,32.2,77777,9,999999999,110,0.0700,0,88,999.000,999.0,99.0 +1979,5,19,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,10.7,0.5,48,88500,951,1335,305,580,467,246,61900,48500,27300,7080,360,3.4,4,4,32.2,77777,9,999999999,110,0.0700,0,88,999.000,999.0,99.0 +1979,5,19,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,0.0,43,88400,1084,1335,306,792,750,183,84900,76800,22400,6860,10,3.1,2,2,64.4,77777,9,999999999,110,0.0700,0,88,999.000,999.0,99.0 +1979,5,19,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,14.4,-0.1,37,88300,1164,1335,315,935,941,114,96600,94300,14100,4420,10,3.1,2,2,64.4,77777,9,999999999,110,0.0700,0,88,999.000,999.0,99.0 +1979,5,19,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,16.7,-0.7,31,88200,1188,1335,325,876,840,128,90200,84200,15100,5160,20,3.1,2,2,64.4,77777,9,999999999,110,0.0700,0,88,999.000,999.0,99.0 +1979,5,19,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,-1.7,25,88100,1153,1335,333,886,856,146,94700,86800,19600,6280,20,3.1,2,2,64.4,77777,9,999999999,100,0.0700,0,88,999.000,999.0,99.0 +1979,5,19,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,19.3,-3.1,22,88100,1063,1335,329,753,835,88,78400,83700,11700,2890,350,4.8,2,1,64.4,77777,9,999999999,89,0.0700,0,88,999.000,999.0,99.0 +1979,5,19,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,19.6,-4.6,19,88100,922,1335,329,680,868,81,71100,86600,11200,2180,330,6.5,1,1,64.4,77777,9,999999999,80,0.0700,0,88,999.000,999.0,99.0 +1979,5,19,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,-6.7,16,88000,740,1335,322,541,844,75,56800,83000,10700,1710,300,8.2,1,0,64.4,77777,9,999999999,69,0.0700,0,88,999.000,999.0,99.0 +1979,5,19,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,17.8,-4.8,23,88100,531,1335,314,354,747,58,37700,71400,9300,1270,300,6.5,1,0,64.4,77777,9,999999999,89,0.0700,0,88,999.000,999.0,99.0 +1979,5,19,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,15.5,-3.1,29,88100,309,1335,306,171,562,43,17800,46700,7000,840,300,4.8,2,0,64.4,77777,9,999999999,89,0.0700,0,88,999.000,999.0,99.0 +1979,5,19,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,-1.7,36,88200,92,1279,299,37,197,20,3600,9700,2800,360,300,3.1,2,0,64.4,77777,9,999999999,100,0.0700,0,88,999.000,999.0,99.0 +1979,5,19,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,11.5,-1.4,41,88200,0,0,291,0,0,0,0,0,0,0,290,3.6,1,0,64.4,77777,9,999999999,100,0.0700,0,88,999.000,999.0,99.0 +1979,5,19,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,9.6,-1.6,45,88300,0,0,284,0,0,0,0,0,0,0,280,4.1,1,0,64.4,77777,9,999999999,100,0.0700,0,88,999.000,999.0,99.0 +1979,5,19,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,7.8,-2.2,50,88400,0,0,276,0,0,0,0,0,0,0,270,4.6,0,0,24.1,77777,9,999999999,100,0.0700,0,88,999.000,999.0,99.0 +1979,5,19,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,7.2,-2.0,50,88400,0,0,274,0,0,0,0,0,0,0,270,4.1,0,0,24.1,77777,9,999999999,89,0.0700,0,88,999.000,999.0,99.0 +1979,5,20,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,6.7,-2.4,51,88400,0,0,271,0,0,0,0,0,0,0,260,3.6,0,0,24.1,77777,9,999999999,89,0.0700,0,88,999.000,999.0,99.0 +1979,5,20,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,6.1,-3.3,51,88400,0,0,268,0,0,0,0,0,0,0,260,3.1,0,0,24.1,77777,9,999999999,89,0.0700,0,88,999.000,999.0,99.0 +1979,5,20,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,5.2,-3.0,54,88400,0,0,270,0,0,0,0,0,0,0,270,2.8,2,1,24.1,77777,9,999999999,89,0.0700,0,88,999.000,999.0,99.0 +1979,5,20,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,4.2,-3.2,57,88400,0,0,266,0,0,0,0,0,0,0,290,2.4,5,1,24.1,77777,9,999999999,89,0.0700,0,88,999.000,999.0,99.0 +1979,5,20,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,-3.9,60,88400,2,211,265,4,9,2,0,0,0,0,300,2.1,7,2,64.4,77777,9,999999999,89,0.0380,0,88,999.000,999.0,99.0 +1979,5,20,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,5.0,-2.7,56,88400,132,1334,273,50,212,29,5200,10800,4200,510,320,2.1,6,2,64.4,77777,9,999999999,89,0.0380,0,88,999.000,999.0,99.0 +1979,5,20,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,6.6,-2.2,52,88400,353,1334,276,200,597,43,21000,51900,7200,890,340,2.1,4,1,64.4,77777,9,999999999,89,0.0380,0,88,999.000,999.0,99.0 +1979,5,20,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,-2.2,48,88400,574,1334,283,370,618,104,38600,59400,13000,2080,360,2.1,3,1,64.4,77777,9,999999999,100,0.0380,0,88,999.000,999.0,99.0 +1979,5,20,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,10.9,-1.6,42,88300,779,1334,298,496,647,118,52800,65300,14600,2800,20,3.1,5,2,64.4,77777,9,999999999,100,0.0380,0,88,999.000,999.0,99.0 +1979,5,20,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,13.5,-1.7,35,88200,953,1334,312,633,655,164,67300,66700,19500,4760,40,4.2,8,3,64.4,77777,9,999999999,100,0.0380,0,88,999.000,999.0,99.0 +1979,5,20,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,-2.2,29,88200,1085,1334,326,788,724,199,84000,73900,23700,7450,60,5.2,10,4,64.4,77777,9,999999999,100,0.0380,0,88,999.000,999.0,99.0 +1979,5,20,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,17.4,-2.1,26,88000,1166,1334,332,767,611,232,81400,62200,26900,10860,80,5.0,10,4,64.4,77777,9,999999999,100,0.0380,0,88,999.000,999.0,99.0 +1979,5,20,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,18.7,-2.5,24,87900,1190,1334,337,896,774,205,96300,79400,25300,10540,100,4.8,10,4,64.4,77777,9,999999999,89,0.0380,0,88,999.000,999.0,99.0 +1979,5,20,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,-3.3,21,87800,1155,1334,342,702,569,209,75100,58200,24600,9510,120,4.6,10,4,64.4,77777,9,999999999,89,0.0380,0,88,999.000,999.0,99.0 +1979,5,20,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,20.7,-2.8,20,87700,1065,1334,344,710,679,169,76500,69700,20700,6100,110,5.3,7,3,64.4,77777,9,999999999,89,0.0380,0,88,999.000,999.0,99.0 +1979,5,20,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,21.5,-2.6,20,87600,924,1334,340,673,852,84,70300,84900,11400,2230,100,6.0,5,1,64.4,77777,9,999999999,89,0.0380,0,88,999.000,999.0,99.0 +1979,5,20,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,-2.8,19,87600,743,1334,336,549,875,62,57800,86200,9700,1590,90,6.7,2,0,64.4,77777,9,999999999,89,0.0380,0,88,999.000,999.0,99.0 +1979,5,20,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,20.2,-2.2,23,87600,534,1334,328,368,803,48,39000,76100,8500,1190,130,5.5,2,0,64.4,77777,9,999999999,100,0.0380,0,88,999.000,999.0,99.0 +1979,5,20,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,18.1,-1.8,26,87500,312,1334,319,182,656,31,19600,55700,6500,780,170,4.3,1,0,64.4,77777,9,999999999,100,0.0380,0,88,999.000,999.0,99.0 +1979,5,20,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,-1.7,30,87500,95,1301,310,41,302,16,4000,17200,2700,320,210,3.1,1,0,64.4,77777,9,999999999,100,0.0380,0,88,999.000,999.0,99.0 +1979,5,20,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,15.2,-1.3,32,87600,0,0,307,0,0,0,0,0,0,0,160,3.1,1,0,64.4,77777,9,999999999,100,0.0380,0,88,999.000,999.0,99.0 +1979,5,20,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,14.2,-1.3,34,87600,0,0,303,0,0,0,0,0,0,0,120,3.1,0,0,64.4,77777,9,999999999,100,0.0380,0,88,999.000,999.0,99.0 +1979,5,20,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,13.3,-1.7,36,87700,0,0,299,0,0,0,0,0,0,0,70,3.1,0,0,24.1,77777,9,999999999,100,0.0380,0,88,999.000,999.0,99.0 +1979,5,20,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,12.6,-1.7,36,87700,0,0,301,0,0,0,0,0,0,0,10,3.3,1,1,24.1,77777,9,999999999,100,0.0380,0,88,999.000,999.0,99.0 +1979,5,21,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,11.8,-2.3,37,87800,0,0,297,0,0,0,0,0,0,0,320,3.4,3,1,24.1,77777,9,999999999,89,0.0380,0,88,999.000,999.0,99.0 +1979,5,21,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,11.1,-3.3,37,87800,0,0,297,0,0,0,0,0,0,0,260,3.6,4,2,24.1,77777,9,999999999,89,0.0380,0,88,999.000,999.0,99.0 +1979,5,21,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,10.5,-2.3,40,87800,0,0,296,0,0,0,0,0,0,0,250,3.6,5,2,24.1,77777,9,999999999,89,0.0380,0,88,999.000,999.0,99.0 +1979,5,21,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,10.0,-1.7,43,87900,0,0,294,0,0,0,0,0,0,0,230,3.6,6,2,24.1,77777,9,999999999,100,0.0380,0,88,999.000,999.0,99.0 +1979,5,21,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,-1.7,46,87900,3,233,292,4,8,3,0,0,0,0,220,3.6,7,2,64.4,77777,9,999999999,100,0.0430,0,88,999.000,999.0,99.0 +1979,5,21,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,11.8,-0.2,42,87900,136,1334,300,57,282,28,5700,15800,4100,490,220,2.9,5,1,64.4,77777,9,999999999,100,0.0430,0,88,999.000,999.0,99.0 +1979,5,21,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,14.3,0.8,39,87900,356,1334,311,201,550,54,21000,47200,8400,1030,210,2.2,4,1,64.4,77777,9,999999999,110,0.0430,0,88,999.000,999.0,99.0 +1979,5,21,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,1.1,35,88000,577,1334,316,401,806,53,42300,77200,8900,1290,210,1.5,2,0,64.4,77777,9,999999999,120,0.0430,0,88,999.000,999.0,99.0 +1979,5,21,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,18.4,1.3,31,88000,781,1334,330,545,822,63,57300,81300,9600,1650,240,3.7,3,1,64.4,77777,9,999999999,120,0.0430,0,88,999.000,999.0,99.0 +1979,5,21,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,20.0,0.9,28,88000,955,1334,337,678,864,59,71500,86500,9500,1890,270,6.0,3,1,64.4,77777,9,999999999,110,0.0430,0,88,999.000,999.0,99.0 +1979,5,21,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,0.0,24,88000,1087,1334,348,774,783,135,82700,79300,17800,4870,300,8.2,4,2,64.4,77777,9,999999999,110,0.0430,0,88,999.000,999.0,99.0 +1979,5,21,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,21.9,1.4,25,87900,1168,1334,351,773,702,158,82100,71000,19800,7050,300,7.9,4,2,64.4,77777,9,999999999,120,0.0430,0,88,999.000,999.0,99.0 +1979,5,21,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,22.0,2.3,27,87900,1192,1334,353,932,917,113,96400,92000,14000,4860,300,7.5,4,2,64.4,77777,9,999999999,120,0.0430,0,88,999.000,999.0,99.0 +1979,5,21,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,2.8,28,87900,1157,1334,354,835,831,114,86300,83300,13900,4320,300,7.2,4,2,64.4,77777,9,999999999,129,0.0430,0,88,999.000,999.0,99.0 +1979,5,21,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,22.9,2.0,25,87900,1067,1334,352,764,868,70,80200,87100,10400,2510,290,7.2,4,1,64.4,77777,9,999999999,120,0.0430,0,88,999.000,999.0,99.0 +1979,5,21,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,23.7,0.9,22,87900,926,1334,354,656,803,100,68300,80000,12600,2390,290,7.2,4,1,64.4,77777,9,999999999,110,0.0430,0,88,999.000,999.0,99.0 +1979,5,21,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,-0.6,19,87900,746,1334,349,552,854,76,57900,84000,10800,1720,280,7.2,4,0,64.4,77777,9,999999999,100,0.0430,0,88,999.000,999.0,99.0 +1979,5,21,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,22.7,-0.2,22,87900,537,1334,342,367,771,58,39200,73800,9400,1270,290,6.5,4,0,64.4,77777,9,999999999,110,0.0430,0,88,999.000,999.0,99.0 +1979,5,21,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,21.1,0.1,24,88000,316,1334,335,181,595,42,18900,49900,7100,840,290,5.9,5,0,64.4,77777,9,999999999,110,0.0430,0,88,999.000,999.0,99.0 +1979,5,21,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,0.0,27,88000,99,1334,327,42,256,20,3900,12400,3000,360,300,5.2,5,0,64.4,77777,9,999999999,110,0.0430,0,88,999.000,999.0,99.0 +1979,5,21,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,17.4,0.4,31,88100,0,11,318,0,0,0,0,0,0,0,280,4.5,3,0,64.4,77777,9,999999999,110,0.0430,0,88,999.000,999.0,99.0 +1979,5,21,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,15.3,0.4,36,88100,0,0,309,0,0,0,0,0,0,0,270,3.8,2,0,64.4,77777,9,999999999,110,0.0430,0,88,999.000,999.0,99.0 +1979,5,21,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,13.3,0.0,40,88200,0,0,300,0,0,0,0,0,0,0,250,3.1,0,0,24.1,77777,9,999999999,110,0.0430,0,88,999.000,999.0,99.0 +1979,5,21,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,13.5,0.6,40,88200,0,0,302,0,0,0,0,0,0,0,260,3.8,0,0,24.1,77777,9,999999999,110,0.0430,0,88,999.000,999.0,99.0 +1979,5,22,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,13.7,0.5,39,88300,0,0,303,0,0,0,0,0,0,0,260,4.5,0,0,24.1,77777,9,999999999,110,0.0430,0,88,999.000,999.0,99.0 +1979,5,22,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,13.9,0.0,39,88400,0,0,303,0,0,0,0,0,0,0,270,5.2,0,0,24.1,77777,9,999999999,110,0.0430,0,88,999.000,999.0,99.0 +1979,5,22,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,11.7,0.7,47,88400,0,0,294,0,0,0,0,0,0,0,300,3.5,0,0,24.1,77777,9,999999999,110,0.0430,0,88,999.000,999.0,99.0 +1979,5,22,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,9.4,0.9,55,88500,0,0,285,0,0,0,0,0,0,0,330,1.7,0,0,24.1,77777,9,999999999,110,0.0430,0,88,999.000,999.0,99.0 +1979,5,22,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,0.6,63,88600,3,255,276,5,26,2,0,0,0,0,0,0.0,0,0,64.4,77777,9,999999999,110,0.0360,0,88,999.000,999.0,99.0 +1979,5,22,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,10.0,1.6,55,88600,139,1333,288,64,439,19,6800,29500,3800,420,10,0.7,0,0,64.4,77777,9,999999999,120,0.0360,0,88,999.000,999.0,99.0 +1979,5,22,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,12.8,1.9,47,88700,359,1333,300,223,716,32,23900,62900,6900,840,10,1.4,0,0,64.4,77777,9,999999999,120,0.0360,0,88,999.000,999.0,99.0 +1979,5,22,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,1.7,39,88700,579,1333,312,409,841,44,43400,80800,8300,1180,20,2.1,0,0,64.4,77777,9,999999999,120,0.0360,0,88,999.000,999.0,99.0 +1979,5,22,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,16.9,1.5,35,88700,783,1333,317,589,909,55,62200,90000,9300,1540,10,1.4,0,0,64.4,77777,9,999999999,120,0.0360,0,88,999.000,999.0,99.0 +1979,5,22,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,18.1,0.7,30,88700,957,1333,322,748,952,64,78700,95200,10200,2000,10,0.7,0,0,64.4,77777,9,999999999,110,0.0360,0,88,999.000,999.0,99.0 +1979,5,22,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,-0.6,26,88700,1089,1333,326,867,975,70,90900,97900,10800,2620,0,0.0,0,0,64.4,77777,9,999999999,110,0.0360,0,88,999.000,999.0,99.0 +1979,5,22,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,20.3,-0.3,24,88600,1169,1333,337,880,946,50,93200,95300,9500,2420,360,1.0,1,1,64.4,77777,9,999999999,100,0.0360,0,88,999.000,999.0,99.0 +1979,5,22,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,21.3,-0.5,23,88600,1193,1333,341,873,822,136,89600,82300,15700,5480,360,2.1,1,1,64.4,77777,9,999999999,100,0.0360,0,88,999.000,999.0,99.0 +1979,5,22,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,-1.1,21,88600,1159,1333,349,857,932,47,91000,93900,9200,2230,360,3.1,2,2,64.4,77777,9,999999999,100,0.0360,0,88,999.000,999.0,99.0 +1979,5,22,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,22.9,-0.4,21,88600,1068,1333,349,846,974,66,89000,97800,10500,2410,360,2.9,1,1,64.4,77777,9,999999999,100,0.0360,0,88,999.000,999.0,99.0 +1979,5,22,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,23.7,0.0,20,88500,928,1333,353,687,901,60,72500,90000,9700,1850,10,2.8,1,1,64.4,77777,9,999999999,110,0.0360,0,88,999.000,999.0,99.0 +1979,5,22,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,0.0,20,88500,748,1333,350,475,755,52,50300,74500,8400,1450,10,2.6,0,0,64.4,77777,9,999999999,110,0.0360,0,88,999.000,999.0,99.0 +1979,5,22,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,22.0,1.1,26,88500,540,1333,340,372,820,42,39700,78000,8100,1120,360,2.9,0,0,64.4,77777,9,999999999,120,0.0360,0,88,999.000,999.0,99.0 +1979,5,22,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,19.6,2.2,32,88500,319,1333,330,189,674,29,20200,57600,6400,760,340,3.3,0,0,64.4,77777,9,999999999,129,0.0360,0,88,999.000,999.0,99.0 +1979,5,22,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,2.8,38,88500,102,1333,320,44,344,16,4300,19400,2800,320,330,3.6,0,0,64.4,77777,9,999999999,129,0.0360,0,88,999.000,999.0,99.0 +1979,5,22,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,15.7,2.9,41,88500,0,33,314,0,0,0,0,0,0,0,300,3.6,1,0,64.4,77777,9,999999999,129,0.0360,0,88,999.000,999.0,99.0 +1979,5,22,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,14.3,2.5,44,88500,0,0,313,0,0,0,0,0,0,0,270,3.6,1,1,64.4,77777,9,999999999,120,0.0360,0,88,999.000,999.0,99.0 +1979,5,22,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,12.8,1.7,47,88600,0,0,306,0,0,0,0,0,0,0,240,3.6,2,1,24.1,77777,9,999999999,120,0.0360,0,88,999.000,999.0,99.0 +1979,5,22,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,10.8,2.3,55,88600,0,0,298,0,0,0,0,0,0,0,210,3.3,1,1,24.1,77777,9,999999999,120,0.0360,0,88,999.000,999.0,99.0 +1979,5,23,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,8.7,2.2,63,88700,0,0,284,0,0,0,0,0,0,0,190,2.9,1,0,24.1,77777,9,999999999,120,0.0360,0,88,999.000,999.0,99.0 +1979,5,23,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,6.7,1.7,71,88700,0,0,275,0,0,0,0,0,0,0,160,2.6,0,0,24.1,77777,9,999999999,120,0.0360,0,88,999.000,999.0,99.0 +1979,5,23,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,6.9,1.8,68,88700,0,0,282,0,0,0,0,0,0,0,160,2.2,2,1,24.1,77777,9,999999999,120,0.0360,0,88,999.000,999.0,99.0 +1979,5,23,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,7.0,1.5,66,88700,0,0,282,0,0,0,0,0,0,0,150,1.9,4,1,24.1,77777,9,999999999,120,0.0360,0,88,999.000,999.0,99.0 +1979,5,23,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,0.6,63,88700,4,278,285,4,10,2,0,0,0,0,150,1.5,6,2,64.4,77777,9,999999999,110,0.0490,0,88,999.000,999.0,99.0 +1979,5,23,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,9.2,1.7,58,88700,142,1332,295,53,246,27,5400,14200,3900,480,100,1.0,5,2,64.4,77777,9,999999999,120,0.0490,0,88,999.000,999.0,99.0 +1979,5,23,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,11.3,2.3,52,88600,361,1332,300,191,522,50,20200,45200,7900,970,50,0.5,5,1,64.4,77777,9,999999999,120,0.0490,0,88,999.000,999.0,99.0 +1979,5,23,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,2.2,47,88600,581,1332,309,377,727,60,40400,70600,9500,1350,0,0.0,4,1,64.4,77777,9,999999999,120,0.0490,0,88,999.000,999.0,99.0 +1979,5,23,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,15.9,3.3,42,88500,785,1332,321,565,856,61,59500,84700,9500,1630,30,1.2,3,1,64.4,77777,9,999999999,129,0.0490,0,88,999.000,999.0,99.0 +1979,5,23,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,18.5,3.9,37,88500,959,1332,327,729,906,77,76300,90500,11000,2240,60,2.4,1,0,64.4,77777,9,999999999,139,0.0490,0,88,999.000,999.0,99.0 +1979,5,23,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,3.9,32,88400,1090,1332,339,856,948,80,89400,95100,11400,2890,90,3.6,0,0,64.4,77777,9,999999999,139,0.0490,0,88,999.000,999.0,99.0 +1979,5,23,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,23.3,3.2,27,88300,1171,1332,349,932,965,84,97200,97000,11800,3690,90,4.5,0,0,64.4,77777,9,999999999,129,0.0490,0,88,999.000,999.0,99.0 +1979,5,23,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,25.6,2.1,22,88200,1195,1332,365,876,882,84,91200,88600,11600,3990,90,5.3,1,1,64.4,77777,9,999999999,129,0.0490,0,88,999.000,999.0,99.0 +1979,5,23,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,0.6,17,88100,1160,1332,374,812,721,184,87700,74200,23000,8630,90,6.2,1,1,64.4,77777,9,999999999,110,0.0490,0,88,999.000,999.0,99.0 +1979,5,23,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,28.0,1.1,17,88000,1070,1332,375,782,881,75,82000,88400,10800,2660,100,6.9,2,1,64.4,77777,9,999999999,110,0.0490,0,88,999.000,999.0,99.0 +1979,5,23,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,28.1,1.3,17,87900,931,1332,381,665,790,113,70800,79700,15100,3090,120,7.5,3,2,64.4,77777,9,999999999,110,0.0490,0,88,999.000,999.0,99.0 +1979,5,23,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,1.1,17,87800,751,1332,382,454,570,134,47900,56900,15800,3030,130,8.2,4,2,64.4,77777,9,999999999,110,0.0490,0,88,999.000,999.0,99.0 +1979,5,23,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,26.6,2.4,21,87800,543,1332,382,314,463,127,33400,44600,15200,2480,180,6.8,6,4,64.4,77777,9,999999999,129,0.0490,0,88,999.000,999.0,99.0 +1979,5,23,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,25.0,3.6,25,87800,322,1332,382,128,162,89,13600,13300,10300,1730,230,5.5,8,6,64.4,77777,9,999999999,129,0.0490,0,88,999.000,999.0,99.0 +1979,5,23,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,4.4,29,87800,105,1332,384,37,17,36,4100,1000,4000,790,280,4.1,10,8,64.4,2440,9,999999999,139,0.0490,0,88,999.000,999.0,99.0 +1979,5,23,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,21.5,6.1,37,87900,0,56,377,0,0,0,0,0,0,0,310,2.7,10,8,64.4,2440,9,999999999,160,0.0490,0,88,999.000,999.0,99.0 +1979,5,23,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,19.6,7.4,46,88000,0,0,364,0,0,0,0,0,0,0,330,1.4,9,7,64.4,2440,9,999999999,170,0.0490,0,88,999.000,999.0,99.0 +1979,5,23,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,17.8,8.3,54,88100,0,0,356,0,0,0,0,0,0,0,0,0.0,9,7,24.1,2440,9,999999999,179,0.0490,0,88,999.000,999.0,99.0 +1979,5,23,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,16.7,9.2,60,88100,0,0,344,0,0,0,0,0,0,0,330,0.7,7,5,24.1,77777,9,999999999,189,0.0490,0,88,999.000,999.0,99.0 +1979,5,24,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,15.5,9.5,66,88100,0,0,337,0,0,0,0,0,0,0,290,1.4,5,4,24.1,77777,9,999999999,189,0.0490,0,88,999.000,999.0,99.0 +1979,5,24,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,14.4,9.4,72,88100,0,0,325,0,0,0,0,0,0,0,260,2.1,3,2,24.1,77777,9,999999999,189,0.0490,0,88,999.000,999.0,99.0 +1979,5,24,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,13.5,9.3,74,88100,0,0,325,0,0,0,0,0,0,0,250,2.1,4,3,24.1,77777,9,999999999,189,0.0490,0,88,999.000,999.0,99.0 +1979,5,24,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,12.6,8.9,75,88100,0,0,323,0,0,0,0,0,0,0,230,2.1,6,4,24.1,77777,9,999999999,179,0.0490,0,88,999.000,999.0,99.0 +1979,5,24,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,7.8,77,88100,4,300,320,6,4,5,0,0,0,0,220,2.1,7,5,64.4,7620,9,999999999,170,0.0270,0,88,999.000,999.0,99.0 +1979,5,24,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,13.5,9.1,72,88100,144,1332,332,45,98,35,4800,5000,4300,630,240,3.5,8,6,64.4,5993,9,999999999,179,0.0270,0,88,999.000,999.0,99.0 +1979,5,24,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,15.4,9.9,68,88200,364,1332,346,145,227,83,15600,19800,10200,1570,260,4.8,9,7,64.4,4367,9,999999999,189,0.0270,0,88,999.000,999.0,99.0 +1979,5,24,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,10.0,63,88200,584,1332,361,272,152,206,29500,15200,22800,4930,280,6.2,10,8,64.4,2740,9,999999999,200,0.0270,0,88,999.000,999.0,99.0 +1979,5,24,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,17.2,10.4,62,88200,787,1332,369,269,100,210,29800,10500,23600,5620,280,5.5,10,9,64.4,2233,9,999999999,200,0.0270,0,88,999.000,999.0,99.0 +1979,5,24,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,17.2,10.1,61,88300,961,1332,368,321,68,272,35400,6900,30400,10150,270,4.8,10,9,64.4,1727,9,999999999,189,0.0270,0,88,999.000,999.0,99.0 +1979,5,24,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,9.4,60,88400,1092,1332,378,173,17,159,19300,1700,17900,7180,270,4.1,10,10,11.3,1220,9,999999999,189,0.0270,0,88,999.000,999.0,99.0 +1979,5,24,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,17.0,11.5,69,88400,1172,1332,380,350,31,323,38800,3200,36000,15280,270,3.6,10,10,11.3,1727,9,999999999,209,0.0270,0,88,999.000,999.0,99.0 +1979,5,24,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,16.9,13.1,78,88400,1196,1332,381,361,4,357,42700,400,42300,16000,280,3.1,10,10,11.3,2233,9,999999999,240,0.0270,0,88,999.000,999.0,99.0 +1979,5,24,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,14.4,87,88400,1162,1332,382,335,8,328,39700,700,39100,14930,280,2.6,10,10,32.2,2740,9,999999999,259,0.0270,0,88,999.000,999.0,99.0 +1979,5,24,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,18.0,12.9,74,88400,1072,1332,387,337,1,336,39300,100,39300,14820,270,2.9,10,10,32.2,2740,9,999999999,240,0.0270,0,88,999.000,999.0,99.0 +1979,5,24,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,19.3,11.1,60,88300,933,1332,380,388,120,304,42600,12700,33700,9210,250,3.3,10,9,32.2,2740,9,999999999,220,0.0270,0,88,999.000,999.0,99.0 +1979,5,24,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,8.9,47,88300,753,1332,384,306,191,199,34000,20000,22700,5210,240,3.6,10,9,64.4,2740,9,999999999,189,0.0270,0,88,999.000,999.0,99.0 +1979,5,24,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,19.7,8.5,48,88300,546,1332,365,247,176,175,26900,17400,19700,4120,250,4.8,8,7,64.4,77777,9,999999999,179,0.0270,0,88,999.000,999.0,99.0 +1979,5,24,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,18.7,8.1,49,88300,325,1332,356,131,107,106,14300,9000,12000,2320,270,6.0,7,6,64.4,77777,9,999999999,170,0.0270,0,88,999.000,999.0,99.0 +1979,5,24,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,7.2,50,88400,109,1332,345,44,243,24,4400,12200,3400,420,280,7.2,5,4,64.4,77777,9,999999999,170,0.0270,0,88,999.000,999.0,99.0 +1979,5,24,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,16.5,7.6,55,88400,0,78,336,0,0,0,0,0,0,0,260,6.5,3,3,64.4,77777,9,999999999,170,0.0270,0,88,999.000,999.0,99.0 +1979,5,24,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,15.2,7.6,59,88400,0,0,323,0,0,0,0,0,0,0,250,5.9,2,1,64.4,77777,9,999999999,170,0.0270,0,88,999.000,999.0,99.0 +1979,5,24,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,13.9,7.2,64,88500,0,0,311,0,0,0,0,0,0,0,230,5.2,0,0,24.1,77777,9,999999999,170,0.0270,0,88,999.000,999.0,99.0 +1979,5,24,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,13.2,7.8,67,88500,0,0,314,0,0,0,0,0,0,0,230,4.5,1,1,24.1,77777,9,999999999,170,0.0270,0,88,999.000,999.0,99.0 +1979,5,25,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,12.4,7.7,71,88500,0,0,315,0,0,0,0,0,0,0,240,3.8,3,2,24.1,77777,9,999999999,170,0.0270,0,88,999.000,999.0,99.0 +1979,5,25,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,11.7,7.2,74,88500,0,0,314,0,0,0,0,0,0,0,240,3.1,4,3,24.1,77777,9,999999999,170,0.0270,0,88,999.000,999.0,99.0 +1979,5,25,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,11.3,7.1,73,88600,0,0,309,0,0,0,0,0,0,0,240,3.1,4,2,24.1,77777,9,999999999,160,0.0270,0,88,999.000,999.0,99.0 +1979,5,25,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,11.0,6.7,72,88600,0,0,308,0,0,0,0,0,0,0,250,3.1,3,2,24.1,77777,9,999999999,160,0.0270,0,88,999.000,999.0,99.0 +1979,5,25,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,5.6,71,88600,5,322,301,7,34,3,0,0,0,0,250,3.1,3,1,64.4,77777,9,999999999,150,0.0300,0,88,999.000,999.0,99.0 +1979,5,25,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,12.1,6.4,66,88600,147,1331,308,63,357,24,6400,22800,3900,450,310,2.8,4,1,64.4,77777,9,999999999,160,0.0300,0,88,999.000,999.0,99.0 +1979,5,25,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,13.5,6.5,61,88700,366,1331,314,179,493,43,18700,43300,6800,900,360,2.4,5,1,64.4,77777,9,999999999,160,0.0300,0,88,999.000,999.0,99.0 +1979,5,25,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,6.1,56,88700,586,1331,320,357,605,91,37700,58800,11800,1880,60,2.1,6,1,48.3,77777,9,999999999,160,0.0300,0,88,999.000,999.0,99.0 +1979,5,25,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,16.7,5.9,49,88700,789,1331,328,568,831,76,59500,82100,10700,1810,60,2.1,6,1,48.3,77777,9,999999999,160,0.0300,0,88,999.000,999.0,99.0 +1979,5,25,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,18.3,5.2,42,88600,962,1331,339,667,770,110,71500,78000,15100,3210,70,2.1,5,2,48.3,77777,9,999999999,150,0.0300,0,88,999.000,999.0,99.0 +1979,5,25,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,3.9,35,88600,1093,1331,345,782,781,140,83300,79000,18200,5110,70,2.1,5,2,64.4,77777,9,999999999,139,0.0300,0,88,999.000,999.0,99.0 +1979,5,25,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,20.9,4.1,33,88600,1174,1331,350,784,727,142,84200,73800,18900,6640,30,2.1,4,2,64.4,77777,9,999999999,139,0.0300,0,88,999.000,999.0,99.0 +1979,5,25,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,21.9,3.9,30,88500,1198,1331,349,882,890,81,92000,89500,11400,3940,360,2.1,4,1,64.4,77777,9,999999999,139,0.0300,0,88,999.000,999.0,99.0 +1979,5,25,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,3.3,28,88500,1164,1331,353,839,842,103,87000,84500,13000,4170,320,2.1,3,1,64.4,77777,9,999999999,129,0.0300,0,88,999.000,999.0,99.0 +1979,5,25,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,23.3,3.4,27,88400,1074,1331,355,778,878,70,81600,88100,10400,2550,340,2.1,3,1,64.4,77777,9,999999999,129,0.0300,0,88,999.000,999.0,99.0 +1979,5,25,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,23.9,3.4,25,88300,935,1331,352,717,925,68,75300,92400,10300,2020,350,2.1,2,0,64.4,77777,9,999999999,129,0.0300,0,88,999.000,999.0,99.0 +1979,5,25,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,2.8,24,88300,756,1331,353,553,875,58,58500,86400,9400,1550,10,2.1,2,0,64.4,77777,9,999999999,129,0.0300,0,88,999.000,999.0,99.0 +1979,5,25,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,22.7,3.9,29,88300,549,1331,347,373,799,45,39600,76100,8200,1170,60,2.6,2,0,64.4,77777,9,999999999,139,0.0300,0,88,999.000,999.0,99.0 +1979,5,25,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,21.1,5.0,35,88200,328,1331,340,194,658,33,20700,56600,6700,820,120,3.1,3,0,64.4,77777,9,999999999,150,0.0300,0,88,999.000,999.0,99.0 +1979,5,25,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,5.6,40,88200,112,1331,333,47,360,17,4800,21000,3000,340,170,3.6,3,0,64.4,77777,9,999999999,150,0.0300,0,88,999.000,999.0,99.0 +1979,5,25,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,16.8,5.6,47,88200,0,100,322,0,0,0,0,0,0,0,170,2.9,3,0,64.4,77777,9,999999999,150,0.0300,0,88,999.000,999.0,99.0 +1979,5,25,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,14.3,5.2,55,88200,0,0,316,0,0,0,0,0,0,0,180,2.2,2,1,64.4,77777,9,999999999,150,0.0300,0,88,999.000,999.0,99.0 +1979,5,25,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,11.7,4.4,62,88300,0,0,304,0,0,0,0,0,0,0,180,1.5,2,1,24.1,77777,9,999999999,139,0.0300,0,88,999.000,999.0,99.0 +1979,5,25,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,11.1,5.0,64,88200,0,0,302,0,0,0,0,0,0,0,180,2.0,1,1,24.1,77777,9,999999999,139,0.0300,0,88,999.000,999.0,99.0 +1979,5,26,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,10.6,4.9,67,88200,0,0,294,0,0,0,0,0,0,0,190,2.6,1,0,24.1,77777,9,999999999,139,0.0300,0,88,999.000,999.0,99.0 +1979,5,26,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,10.0,4.4,69,88200,0,0,291,0,0,0,0,0,0,0,190,3.1,0,0,24.1,77777,9,999999999,139,0.0300,0,88,999.000,999.0,99.0 +1979,5,26,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,9.6,4.7,70,88200,0,0,290,0,0,0,0,0,0,0,170,2.6,1,0,24.1,77777,9,999999999,139,0.0300,0,88,999.000,999.0,99.0 +1979,5,26,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,9.3,4.6,70,88200,0,0,294,0,0,0,0,0,0,0,160,2.0,3,1,24.1,77777,9,999999999,139,0.0300,0,88,999.000,999.0,99.0 +1979,5,26,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,3.9,71,88200,6,344,292,4,16,3,0,0,0,0,140,1.5,4,1,64.4,77777,9,999999999,139,0.0560,0,88,999.000,999.0,99.0 +1979,5,26,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,10.7,4.7,64,88100,150,1331,300,61,297,28,6300,17600,4300,500,90,1.7,5,1,64.4,77777,9,999999999,139,0.0560,0,88,999.000,999.0,99.0 +1979,5,26,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,12.6,4.8,58,88100,368,1331,313,210,505,70,21600,43300,9600,1290,50,1.9,7,2,64.4,77777,9,999999999,139,0.0560,0,88,999.000,999.0,99.0 +1979,5,26,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,4.4,51,88100,588,1331,320,353,505,130,37700,49600,15800,2580,360,2.1,8,2,64.4,77777,9,999999999,139,0.0560,0,88,999.000,999.0,99.0 +1979,5,26,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,16.8,5.9,47,88000,791,1331,333,533,697,119,56900,70500,14900,2860,30,2.3,8,2,64.4,77777,9,999999999,150,0.0560,0,88,999.000,999.0,99.0 +1979,5,26,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,19.3,6.8,43,87900,964,1331,345,660,703,152,70800,71900,18700,4540,60,2.4,9,2,64.4,77777,9,999999999,160,0.0560,0,88,999.000,999.0,99.0 +1979,5,26,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,7.2,39,87800,1095,1331,357,770,727,171,82900,74700,21300,6680,90,2.6,9,2,64.4,77777,9,999999999,170,0.0560,0,88,999.000,999.0,99.0 +1979,5,26,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,23.9,7.5,34,87700,1175,1331,368,881,839,140,90400,84000,16100,5190,80,3.5,9,2,64.4,77777,9,999999999,170,0.0560,0,88,999.000,999.0,99.0 +1979,5,26,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,26.1,7.3,30,87600,1199,1331,379,883,799,162,93800,80800,20800,8180,70,4.3,8,2,64.4,77777,9,999999999,170,0.0560,0,88,999.000,999.0,99.0 +1979,5,26,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,6.7,25,87500,1165,1331,390,844,771,168,88900,77700,20700,7380,60,5.2,8,2,64.4,77777,9,999999999,160,0.0560,0,88,999.000,999.0,99.0 +1979,5,26,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,28.5,6.8,25,87400,1076,1331,395,738,697,174,79300,71500,21300,6470,60,5.0,9,3,64.4,77777,9,999999999,160,0.0560,0,88,999.000,999.0,99.0 +1979,5,26,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,28.7,6.7,24,87300,937,1331,396,624,583,214,65100,58500,23800,5840,60,4.8,9,3,64.4,77777,9,999999999,160,0.0560,0,88,999.000,999.0,99.0 +1979,5,26,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,6.1,24,87200,758,1331,399,480,483,206,50700,49200,22700,4710,60,4.6,10,4,64.4,77777,9,999999999,160,0.0560,0,88,999.000,999.0,99.0 +1979,5,26,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,26.9,6.5,28,87200,551,1331,389,346,564,114,35900,53400,13700,2200,10,4.4,10,4,64.4,77777,9,999999999,160,0.0560,0,88,999.000,999.0,99.0 +1979,5,26,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.8,6.8,31,87200,331,1331,379,113,70,95,12300,6100,10800,2420,330,4.3,10,4,64.4,77777,9,999999999,160,0.0560,0,88,999.000,999.0,99.0 +1979,5,26,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,6.7,35,87200,115,1331,368,38,80,31,4000,3400,3700,570,280,4.1,10,4,64.4,77777,9,999999999,160,0.0560,0,88,999.000,999.0,99.0 +1979,5,26,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,20.9,6.4,38,87200,1,122,356,0,0,0,0,0,0,0,270,3.9,9,3,64.4,77777,9,999999999,150,0.0560,0,88,999.000,999.0,99.0 +1979,5,26,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,19.1,5.6,40,87200,0,0,346,0,0,0,0,0,0,0,250,3.8,7,3,64.4,77777,9,999999999,150,0.0560,0,88,999.000,999.0,99.0 +1979,5,26,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,17.2,4.4,43,87200,0,0,333,0,0,0,0,0,0,0,240,3.6,6,2,24.1,77777,9,999999999,139,0.0560,0,88,999.000,999.0,99.0 +1979,5,26,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,16.7,4.8,44,87300,0,0,331,0,0,0,0,0,0,0,260,3.8,6,2,24.1,77777,9,999999999,139,0.0560,0,88,999.000,999.0,99.0 +1979,5,27,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,16.1,4.6,45,87300,0,0,331,0,0,0,0,0,0,0,280,3.9,7,3,24.1,77777,9,999999999,139,0.0560,0,88,999.000,999.0,99.0 +1979,5,27,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,15.6,3.9,46,87300,0,0,328,0,0,0,0,0,0,0,300,4.1,7,3,24.1,77777,9,999999999,139,0.0560,0,88,999.000,999.0,99.0 +1979,5,27,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,15.2,4.4,47,87300,0,0,327,0,0,0,0,0,0,0,290,4.5,6,3,24.1,77777,9,999999999,139,0.0560,0,88,999.000,999.0,99.0 +1979,5,27,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,14.8,4.4,48,87400,0,0,322,0,0,0,0,0,0,0,290,4.8,6,2,24.1,77777,9,999999999,139,0.0560,0,88,999.000,999.0,99.0 +1979,5,27,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,3.9,49,87400,6,366,319,4,9,3,0,0,0,0,280,5.2,5,2,64.4,77777,9,999999999,139,0.0610,0,88,999.000,999.0,99.0 +1979,5,27,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,15.3,4.7,47,87400,152,1331,324,61,189,40,6300,10500,5200,720,280,5.5,6,2,64.4,77777,9,999999999,139,0.0610,0,88,999.000,999.0,99.0 +1979,5,27,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,16.3,4.8,45,87400,371,1331,332,191,474,59,19900,41100,8500,1120,270,5.9,7,3,64.4,77777,9,999999999,139,0.0610,0,88,999.000,999.0,99.0 +1979,5,27,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,4.4,43,87400,589,1331,336,330,456,128,35300,44800,15400,2540,270,6.2,8,3,64.4,77777,9,999999999,139,0.0610,0,88,999.000,999.0,99.0 +1979,5,27,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,17.9,5.0,41,87400,792,1331,343,527,671,128,56000,67700,15600,3060,280,6.5,9,4,64.4,77777,9,999999999,139,0.0610,0,88,999.000,999.0,99.0 +1979,5,27,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,18.7,4.9,39,87400,965,1331,349,536,346,285,58600,37400,31400,8430,290,6.9,9,5,64.4,77777,9,999999999,139,0.0610,0,88,999.000,999.0,99.0 +1979,5,27,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,4.4,37,87300,1096,1331,355,747,648,213,79300,66000,24800,8200,300,7.2,10,6,64.4,7620,9,999999999,139,0.0610,0,88,999.000,999.0,99.0 +1979,5,27,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,20.0,5.0,36,87300,1176,1331,363,642,342,340,71200,37200,38200,15550,310,6.9,10,7,64.4,7620,9,999999999,139,0.0610,0,88,999.000,999.0,99.0 +1979,5,27,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,20.5,5.2,36,87200,1200,1331,365,914,719,265,96600,72900,30700,14100,310,6.5,10,7,64.4,7620,9,999999999,139,0.0610,0,88,999.000,999.0,99.0 +1979,5,27,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,5.0,35,87200,1167,1331,374,533,156,397,58900,16600,44300,17430,320,6.2,10,8,48.3,7620,9,999999999,150,0.0610,0,88,999.000,999.0,99.0 +1979,5,27,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,20.0,4.7,36,87200,1077,1331,368,507,287,275,56400,31200,31100,9670,310,6.5,10,8,48.3,5640,9,999999999,139,0.0610,0,88,999.000,999.0,99.0 +1979,5,27,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,18.9,4.3,37,87200,939,1331,362,432,217,279,47100,23400,30600,7970,290,6.9,10,8,48.3,3660,9,999999999,139,0.0610,0,88,999.000,999.0,99.0 +1979,5,27,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,3.3,38,87200,760,1331,355,318,130,244,34800,13600,27100,6420,280,7.2,10,8,48.3,1680,9,999999999,129,0.0610,0,88,999.000,999.0,99.0 +1979,5,27,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,16.7,1.8,36,87200,554,1331,356,238,125,186,25800,12400,20600,4400,280,7.2,10,9,48.3,1680,9,999999999,120,0.0610,0,88,999.000,999.0,99.0 +1979,5,27,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,15.5,0.3,35,87300,334,1331,348,78,19,73,8500,1600,8100,1970,290,7.2,10,9,48.3,1680,9,999999999,110,0.0610,0,88,999.000,999.0,99.0 +1979,5,27,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,-1.7,33,87300,118,1331,350,22,3,22,2500,0,2500,780,290,7.2,10,10,48.3,1680,9,999999999,100,0.0610,0,88,999.000,999.0,99.0 +1979,5,27,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,13.9,-2.2,32,87400,1,144,347,0,0,0,0,0,0,0,300,6.5,10,10,48.3,1680,9,999999999,89,0.0610,0,88,999.000,999.0,99.0 +1979,5,27,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,13.3,-3.1,31,87400,0,0,343,0,0,0,0,0,0,0,310,5.9,10,10,48.3,1680,9,999999999,89,0.0610,0,88,999.000,999.0,99.0 +1979,5,27,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,12.8,-4.4,30,87500,0,0,339,0,0,0,0,0,0,0,320,5.2,10,10,24.1,1680,9,999999999,80,0.0610,0,88,999.000,999.0,99.0 +1979,5,27,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,12.1,-4.4,30,87600,0,0,336,0,0,0,0,0,0,0,310,5.4,10,10,24.1,1627,9,999999999,80,0.0610,0,88,999.000,999.0,99.0 +1979,5,28,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,11.3,-5.0,31,87600,0,0,331,0,0,0,0,0,0,0,290,5.5,10,10,24.1,1573,9,999999999,80,0.0610,0,88,999.000,999.0,99.0 +1979,5,28,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,10.6,-6.1,31,87600,0,0,326,0,0,0,0,0,0,0,280,5.7,10,10,24.1,1520,9,999999999,80,0.0610,0,88,999.000,999.0,99.0 +1979,5,28,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,10.0,-5.5,33,87700,0,0,324,0,0,0,0,0,0,0,280,4.7,10,10,24.1,1520,9,999999999,80,0.0610,0,88,999.000,999.0,99.0 +1979,5,28,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,9.5,-5.2,34,87700,0,0,323,0,0,0,0,0,0,0,290,3.6,10,10,24.1,1520,9,999999999,80,0.0610,0,88,999.000,999.0,99.0 +1979,5,28,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,-5.6,36,87700,7,366,319,2,0,2,0,0,0,0,290,2.6,10,10,48.3,1520,9,999999999,80,0.0650,0,88,999.000,999.0,99.0 +1979,5,28,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,8.9,-4.8,36,87700,154,1330,305,51,68,43,5500,4100,5100,900,280,2.9,9,8,48.3,1520,9,999999999,80,0.0650,0,88,999.000,999.0,99.0 +1979,5,28,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,8.9,-4.6,37,87700,373,1330,300,166,266,91,17700,23400,11200,1740,270,3.3,8,7,48.3,1520,9,999999999,80,0.0650,0,88,999.000,999.0,99.0 +1979,5,28,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,-5.0,37,87700,591,1330,294,330,421,142,34900,41300,16500,2850,260,3.6,7,5,48.3,1520,9,999999999,80,0.0650,0,88,999.000,999.0,99.0 +1979,5,28,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,10.2,-4.6,34,87700,794,1330,300,483,541,160,50400,54000,18200,3710,220,4.1,7,5,48.3,1520,9,999999999,80,0.0650,0,88,999.000,999.0,99.0 +1979,5,28,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,11.5,-4.9,31,87600,966,1330,308,587,436,270,62400,45300,29400,8050,180,4.7,8,6,48.3,1520,9,999999999,80,0.0650,0,88,999.000,999.0,99.0 +1979,5,28,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,-5.6,28,87500,1097,1330,312,574,373,267,62400,39000,30100,10420,140,5.2,8,6,48.3,1520,9,999999999,80,0.0650,0,88,999.000,999.0,99.0 +1979,5,28,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,12.8,-4.6,29,87500,1177,1330,317,687,416,319,74100,43500,35500,16040,170,4.7,9,7,48.3,1520,9,999999999,80,0.0650,0,88,999.000,999.0,99.0 +1979,5,28,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,12.8,-4.1,30,87500,1202,1330,330,436,89,355,48500,9500,39900,17140,210,4.1,9,9,48.3,1520,9,999999999,80,0.0650,0,88,999.000,999.0,99.0 +1979,5,28,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,-3.9,31,87500,1168,1330,339,396,46,356,43800,4700,39700,16550,240,3.6,10,10,48.3,1520,9,999999999,89,0.0650,0,88,999.000,999.0,99.0 +1979,5,28,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,12.1,-2.7,36,87600,1079,1330,338,284,3,282,33700,300,33500,13100,260,5.0,10,10,48.3,1470,9,999999999,89,0.0650,0,88,999.000,999.0,99.0 +1979,5,28,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,11.3,-1.6,40,87600,941,1330,335,248,9,242,29200,800,28600,11040,270,6.3,10,10,48.3,1420,9,999999999,100,0.0650,0,88,999.000,999.0,99.0 +1979,5,28,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,-1.1,45,87600,762,1330,332,241,4,239,27500,400,27300,9720,290,7.7,10,10,32.2,1370,9,999999999,100,0.0650,0,88,999.000,999.0,99.0 +1979,5,28,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,9.3,0.2,55,87700,557,1330,328,155,1,155,17600,100,17600,6010,250,6.0,10,10,32.2,1420,9,999999999,110,0.0650,0,88,999.000,999.0,99.0 +1979,5,28,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,8.0,1.4,64,87800,337,1330,323,89,0,89,10000,0,10000,3160,220,4.3,10,10,32.2,1470,9,999999999,120,0.0650,0,88,999.000,999.0,99.0 +1979,5,28,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,2.2,74,87900,122,1330,318,26,1,26,2900,0,2900,890,180,2.6,10,10,24.1,1520,9,999999999,129,0.0650,0,88,999.000,999.0,99.0 +1979,5,28,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,6.1,2.5,76,87900,1,166,316,1,0,1,0,0,0,0,210,3.1,10,10,24.1,1207,9,999999999,120,0.0650,0,88,999.000,999.0,99.0 +1979,5,28,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,5.6,2.3,77,88000,0,0,313,0,0,0,0,0,0,0,230,3.6,10,10,24.1,893,9,999999999,120,0.0650,0,88,999.000,999.0,99.0 +1979,5,28,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,5.0,1.7,79,88100,0,0,310,0,0,0,0,0,0,0,260,4.1,10,10,16.1,580,9,999999999,120,0.0650,0,88,999.000,999.0,99.0 +1979,5,28,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,5.0,1.7,76,88100,0,0,310,0,0,0,0,0,0,0,250,5.0,10,10,16.1,773,9,999999999,120,0.0650,0,88,999.000,999.0,99.0 +1979,5,29,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,5.0,1.1,73,88100,0,0,309,0,0,0,0,0,0,0,250,5.8,10,10,16.1,967,9,999999999,110,0.0650,0,88,999.000,999.0,99.0 +1979,5,29,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,5.0,0.0,70,88100,0,0,308,0,0,0,0,0,0,0,240,6.7,10,10,24.1,1160,9,999999999,110,0.0650,0,88,999.000,999.0,99.0 +1979,5,29,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,5.0,-0.1,67,88100,0,0,308,0,0,0,0,0,0,0,250,6.2,10,10,24.1,1483,9,999999999,110,0.0650,0,88,999.000,999.0,99.0 +1979,5,29,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,5.0,-0.6,65,88200,0,0,308,0,0,0,0,0,0,0,270,5.7,10,10,24.1,1807,9,999999999,100,0.0650,0,88,999.000,999.0,99.0 +1979,5,29,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,-1.7,62,88200,8,388,306,4,0,4,0,0,0,0,280,5.2,10,10,48.3,2130,9,999999999,100,0.0450,0,88,999.000,999.0,99.0 +1979,5,29,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,5.6,-1.1,60,88300,157,1330,310,47,0,47,5200,0,5200,1460,290,5.0,10,10,48.3,1807,9,999999999,100,0.0450,0,88,999.000,999.0,99.0 +1979,5,29,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,6.1,-1.1,58,88300,375,1330,312,115,1,115,12800,100,12800,3940,290,4.8,10,10,48.3,1483,9,999999999,100,0.0450,0,88,999.000,999.0,99.0 +1979,5,29,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,-1.7,56,88400,593,1330,314,199,1,198,22200,100,22200,7320,300,4.6,10,10,48.3,1160,9,999999999,100,0.0450,0,88,999.000,999.0,99.0 +1979,5,29,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,7.8,-0.9,53,88400,795,1330,320,281,1,281,31900,100,31900,11070,310,3.9,10,10,48.3,1130,9,999999999,100,0.0450,0,88,999.000,999.0,99.0 +1979,5,29,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,8.9,-0.8,49,88400,967,1330,325,361,0,361,41300,0,41300,14710,310,3.3,10,10,48.3,1100,9,999999999,100,0.0450,0,88,999.000,999.0,99.0 +1979,5,29,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,-1.1,46,88400,1098,1330,330,433,1,432,49800,100,49700,17550,320,2.6,10,10,48.3,1070,9,999999999,100,0.0450,0,88,999.000,999.0,99.0 +1979,5,29,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,10.9,-0.5,44,88400,1178,1330,335,421,0,421,49100,0,49100,17770,310,4.8,10,10,48.3,1100,9,999999999,100,0.0450,0,88,999.000,999.0,99.0 +1979,5,29,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,11.9,-0.4,42,88400,1203,1330,330,452,101,361,50400,10800,40600,17520,300,7.1,10,9,48.3,1130,9,999999999,110,0.0450,0,88,999.000,999.0,99.0 +1979,5,29,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,-0.6,40,88400,1169,1330,334,513,137,393,56700,14600,43800,17400,290,9.3,10,9,48.3,1160,9,999999999,110,0.0450,0,88,999.000,999.0,99.0 +1979,5,29,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,13.0,-0.7,39,88400,1081,1330,328,599,290,364,65300,31400,39700,13350,340,7.1,9,8,48.3,1180,9,999999999,100,0.0450,0,88,999.000,999.0,99.0 +1979,5,29,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,13.1,-0.9,37,88400,943,1330,323,505,336,267,55300,36300,29600,7620,20,4.8,8,7,48.3,1200,9,999999999,100,0.0450,0,88,999.000,999.0,99.0 +1979,5,29,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,-1.7,36,88400,765,1330,319,401,438,149,43800,44800,17900,3330,70,2.6,7,6,48.3,1220,9,999999999,100,0.0450,0,88,999.000,999.0,99.0 +1979,5,29,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,12.2,-0.9,41,88400,559,1330,315,199,219,107,22000,22000,12700,2110,70,2.8,7,6,48.3,1220,9,999999999,100,0.0450,0,88,999.000,999.0,99.0 +1979,5,29,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,11.1,-0.3,45,88500,340,1330,308,160,304,83,16800,25300,10300,1530,80,2.9,8,5,48.3,1220,9,999999999,110,0.0450,0,88,999.000,999.0,99.0 +1979,5,29,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,0.0,50,88500,125,1330,304,32,79,25,3500,3600,3100,430,80,3.1,8,5,48.3,1220,9,999999999,110,0.0450,0,88,999.000,999.0,99.0 +1979,5,29,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,8.1,-0.5,53,88600,2,188,293,2,1,1,0,0,0,0,40,2.8,6,4,48.3,77777,9,999999999,100,0.0450,0,88,999.000,999.0,99.0 +1979,5,29,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,6.3,-1.4,57,88600,0,0,282,0,0,0,0,0,0,0,10,2.4,5,3,48.3,77777,9,999999999,100,0.0450,0,88,999.000,999.0,99.0 +1979,5,29,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,4.4,-2.8,60,88600,0,0,271,0,0,0,0,0,0,0,330,2.1,3,2,24.1,77777,9,999999999,89,0.0450,0,88,999.000,999.0,99.0 +1979,5,29,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,4.4,-2.0,61,88600,0,0,268,0,0,0,0,0,0,0,310,2.1,2,1,24.1,77777,9,999999999,89,0.0450,0,88,999.000,999.0,99.0 +1979,5,30,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,4.4,-1.9,61,88700,0,0,268,0,0,0,0,0,0,0,300,2.1,1,1,24.1,77777,9,999999999,89,0.0450,0,88,999.000,999.0,99.0 +1979,5,30,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,4.4,-2.2,62,88700,0,0,263,0,0,0,0,0,0,0,280,2.1,0,0,24.1,77777,9,999999999,100,0.0450,0,88,999.000,999.0,99.0 +1979,5,30,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,2.9,-1.9,69,88700,0,0,257,0,0,0,0,0,0,0,310,1.4,0,0,24.1,77777,9,999999999,100,0.0450,0,88,999.000,999.0,99.0 +1979,5,30,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,1.5,-2.1,75,88700,0,0,252,0,0,0,0,0,0,0,330,0.7,0,0,24.1,77777,9,999999999,100,0.0450,0,88,999.000,999.0,99.0 +1979,5,30,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.0,-2.8,82,88700,8,410,246,5,12,4,0,0,0,0,0,0.0,0,0,64.4,77777,9,999999999,89,0.0930,0,88,999.000,999.0,99.0 +1979,5,30,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,2.6,-1.6,73,88700,159,1329,257,66,305,30,6800,18600,4600,540,10,0.7,0,0,64.4,77777,9,999999999,100,0.0930,0,88,999.000,999.0,99.0 +1979,5,30,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,5.2,-1.1,63,88700,376,1329,267,223,604,52,23000,53100,7900,1020,30,1.4,0,0,64.4,77777,9,999999999,100,0.0930,0,88,999.000,999.0,99.0 +1979,5,30,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,-1.1,54,88700,594,1329,277,406,749,72,42800,72600,10400,1540,40,2.1,0,0,64.4,77777,9,999999999,100,0.0930,0,88,999.000,999.0,99.0 +1979,5,30,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,9.6,-0.9,47,88700,796,1329,294,554,728,118,59200,73700,15000,2860,40,2.3,2,2,64.4,77777,9,999999999,100,0.0930,0,88,999.000,999.0,99.0 +1979,5,30,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,11.5,-1.3,41,88600,968,1329,304,729,783,158,77900,80000,19500,4750,30,2.4,3,3,64.4,77777,9,999999999,100,0.0930,0,88,999.000,999.0,99.0 +1979,5,30,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,-2.2,34,88600,1099,1329,316,679,561,215,72100,57100,24700,8370,30,2.6,5,5,64.4,77777,9,999999999,100,0.0930,0,88,999.000,999.0,99.0 +1979,5,30,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,13.7,-2.1,32,88500,1179,1329,320,725,443,332,77800,46300,36700,16900,30,4.1,6,6,64.4,77777,9,999999999,89,0.0930,0,88,999.000,999.0,99.0 +1979,5,30,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,14.0,-2.5,31,88500,1204,1329,325,584,294,317,65200,32100,36100,15840,20,5.7,7,7,64.4,77777,9,999999999,89,0.0930,0,88,999.000,999.0,99.0 +1979,5,30,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,-3.3,29,88500,1171,1329,331,594,273,353,65500,29700,39300,15990,20,7.2,8,8,64.4,1220,9,999999999,89,0.0930,0,88,999.000,999.0,99.0 +1979,5,30,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,13.7,-2.1,33,88500,1082,1329,329,365,110,275,40900,11800,31200,10170,10,8.2,8,8,64.4,1170,9,999999999,100,0.0930,0,88,999.000,999.0,99.0 +1979,5,30,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,12.9,-1.1,38,88500,944,1329,327,375,154,266,41600,16400,30000,8170,360,9.3,8,8,64.4,1120,9,999999999,100,0.0930,0,88,999.000,999.0,99.0 +1979,5,30,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,-0.6,42,88600,767,1329,324,314,130,239,34400,13600,26600,6320,350,10.3,8,8,64.4,1070,9,999999999,110,0.0930,0,88,999.000,999.0,99.0 +1979,5,30,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,10.7,0.4,50,88600,562,1329,314,227,181,151,25000,18100,17400,3580,290,8.2,8,7,64.4,1730,9,999999999,110,0.0930,0,88,999.000,999.0,99.0 +1979,5,30,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,9.3,1.2,58,88700,343,1329,308,131,119,100,14200,10300,11600,2200,230,6.2,8,7,64.4,2390,9,999999999,120,0.0930,0,88,999.000,999.0,99.0 +1979,5,30,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,1.7,66,88700,127,1329,299,36,36,33,4000,1900,3800,690,170,4.1,8,6,32.2,3050,9,999999999,120,0.0930,0,88,999.000,999.0,99.0 +1979,5,30,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,7.6,2.3,68,88800,2,210,302,2,0,2,0,0,0,0,130,3.8,9,7,32.2,2420,9,999999999,120,0.0930,0,88,999.000,999.0,99.0 +1979,5,30,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,7.4,2.5,69,88800,0,0,313,0,0,0,0,0,0,0,80,3.4,9,9,32.2,1790,9,999999999,120,0.0930,0,88,999.000,999.0,99.0 +1979,5,30,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,7.2,2.2,71,88800,0,0,321,0,0,0,0,0,0,0,40,3.1,10,10,24.1,1160,9,999999999,129,0.0930,0,88,999.000,999.0,99.0 +1979,5,30,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,6.7,3.1,76,88800,0,0,319,0,0,0,0,0,0,0,360,3.3,10,10,24.1,1433,9,999999999,129,0.0930,0,88,999.000,999.0,99.0 +1979,5,31,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,6.1,3.4,81,88800,0,0,317,0,0,0,0,0,0,0,320,3.4,10,10,24.1,1707,9,999999999,129,0.0930,0,88,999.000,999.0,99.0 +1979,5,31,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,5.6,3.3,86,88800,0,0,315,0,0,0,0,0,0,0,280,3.6,10,10,24.1,1980,9,999999999,129,0.0930,0,88,999.000,999.0,99.0 +1979,5,31,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,5.6,3.6,86,88800,0,0,315,0,0,0,0,0,0,0,290,3.6,10,10,24.1,1503,9,999999999,129,0.0930,0,88,999.000,999.0,99.0 +1979,5,31,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,5.6,3.6,86,88800,0,0,315,0,0,0,0,0,0,0,290,3.6,10,10,24.1,1027,9,999999999,129,0.0930,0,88,999.000,999.0,99.0 +1979,5,31,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,3.3,86,88800,9,410,315,2,0,2,0,0,0,0,300,3.6,10,10,16.1,550,9,999999999,129,0.0560,0,88,999.000,999.0,99.0 +1979,5,31,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,6.7,4.3,81,88800,161,1329,312,31,32,27,3500,2000,3200,570,320,2.4,9,9,16.1,2907,9,999999999,139,0.0560,0,88,999.000,999.0,99.0 +1979,5,31,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,7.8,4.5,76,88800,378,1329,305,133,123,99,14700,11000,11500,2200,340,1.2,8,7,16.1,5263,9,999999999,139,0.0560,0,88,999.000,999.0,99.0 +1979,5,31,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,3.9,71,88800,595,1329,306,305,363,143,32400,35700,16400,2880,0,0.0,7,6,48.3,7620,9,999999999,139,0.0560,0,88,999.000,999.0,99.0 +1979,5,31,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,10.4,3.2,61,88800,797,1329,312,475,507,170,51400,52100,20100,3950,360,0.7,7,6,48.3,5487,9,999999999,129,0.0560,0,88,999.000,999.0,99.0 +1979,5,31,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,11.8,1.9,50,88700,969,1329,320,434,223,271,47600,24100,30000,8010,350,1.4,7,7,48.3,3353,9,999999999,120,0.0560,0,88,999.000,999.0,99.0 +1979,5,31,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,0.0,40,88700,1100,1329,325,712,491,305,76200,51200,33700,12130,350,2.1,7,7,48.3,1220,9,999999999,110,0.0560,0,88,999.000,999.0,99.0 +1979,5,31,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,14.2,0.1,37,88700,1180,1329,329,722,526,254,76300,53400,28800,12620,350,1.4,7,7,48.3,1220,9,999999999,110,0.0560,0,88,999.000,999.0,99.0 +1979,5,31,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,15.2,-0.3,34,88700,1205,1329,329,677,427,290,74000,44700,33300,16220,360,0.7,8,6,48.3,1220,9,999999999,110,0.0560,0,88,999.000,999.0,99.0 +1979,5,31,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,-1.1,31,88700,1172,1329,333,816,669,226,87000,68300,26700,10980,0,0.0,8,6,48.3,1220,9,999999999,100,0.0560,0,88,999.000,999.0,99.0 +1979,5,31,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,16.3,-1.5,29,88600,1084,1329,333,650,536,213,68900,54500,24400,7970,340,1.2,7,6,48.3,77777,9,999999999,100,0.0560,0,88,999.000,999.0,99.0 +1979,5,31,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,16.5,-2.1,28,88600,946,1329,330,597,592,175,63200,60100,20300,5000,330,2.4,6,5,48.3,77777,9,999999999,100,0.0560,0,88,999.000,999.0,99.0 +1979,5,31,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,-2.8,26,88600,769,1329,330,434,437,182,46600,44700,20700,4150,310,3.6,5,5,48.3,77777,9,999999999,89,0.0560,0,88,999.000,999.0,99.0 +1979,5,31,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,15.4,-2.0,31,88600,564,1329,323,295,432,112,31900,42100,14000,2180,290,3.4,4,4,48.3,77777,9,999999999,100,0.0560,0,88,999.000,999.0,99.0 +1979,5,31,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,14.1,-1.3,35,88600,346,1329,315,116,199,64,12600,17000,8200,1160,260,3.3,3,3,48.3,77777,9,999999999,100,0.0560,0,88,999.000,999.0,99.0 +1979,5,31,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,-0.6,40,88600,130,1329,308,55,291,28,5700,16000,4200,490,240,3.1,2,2,48.3,77777,9,999999999,110,0.0560,0,88,999.000,999.0,99.0 +1979,5,31,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,11.5,-0.6,43,88700,3,233,298,3,8,1,0,0,0,0,240,3.1,1,1,48.3,77777,9,999999999,100,0.0560,0,88,999.000,999.0,99.0 +1979,5,31,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,11.8,0.4,45,88700,0,0,300,0,0,0,0,0,0,0,230,2.7,1,1,48.3,77777,9,999999999,100,0.0560,0,88,999.000,999.0,99.0 +1979,5,31,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,12.0,1.3,48,88800,0,0,296,0,0,0,0,0,0,0,230,2.2,0,0,24.1,77777,9,999999999,100,0.0560,0,88,999.000,999.0,99.0 +1979,5,31,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,12.3,2.3,55,88800,0,0,299,0,0,0,0,0,0,0,250,1.8,0,0,24.1,77777,9,999999999,100,0.0560,0,88,999.000,999.0,99.0 +2003,6,1,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.5,3.2,67,88600,0,0,347,0,0,0,0,0,0,0,290,1.3,10,10,16.0,1524,9,999999999,150,0.0840,0,88,0.170,0.0,1.0 +2003,6,1,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,4.2,65,88600,0,0,349,0,0,0,0,0,0,0,280,0.9,10,10,16.0,2286,9,999999999,139,0.0840,0,88,0.170,0.0,1.0 +2003,6,1,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.0,5.1,69,88600,0,0,335,0,0,0,0,0,0,0,330,0.4,8,8,16.0,77777,9,999999999,139,0.0840,0,88,0.170,0.0,1.0 +2003,6,1,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,6.1,62,88600,0,0,325,0,0,0,0,0,0,0,0,0.0,5,5,16.0,77777,9,999999999,139,0.0840,0,88,0.170,0.0,1.0 +2003,6,1,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,5.0,55,88200,9,432,324,0,0,0,0,0,0,0,270,5.7,5,4,16.0,77777,9,999999999,129,0.0840,0,88,0.170,0.0,1.0 +2003,6,1,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,5.6,57,88700,163,1328,322,61,226,34,6500,13100,4900,600,280,4.1,3,3,16.0,77777,9,999999999,129,0.0840,0,88,0.170,0.0,1.0 +2003,6,1,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,5.0,51,88800,380,1328,338,201,384,92,21100,33300,11600,1710,270,4.1,8,7,16.0,77777,9,999999999,120,0.0840,0,88,0.170,0.0,1.0 +2003,6,1,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,4.4,44,88800,597,1328,342,389,588,125,40200,56500,14800,2470,270,6.7,6,6,16.0,77777,9,999999999,120,0.0840,0,88,0.170,0.0,1.0 +2003,6,1,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,3.9,38,88900,798,1328,346,462,327,265,49500,34700,28600,6680,270,6.2,5,5,16.0,77777,9,999999999,120,0.0840,0,88,0.170,0.0,1.0 +2003,6,1,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,3.3,33,88900,970,1328,351,374,89,309,41200,9100,34600,11430,290,8.8,4,4,16.0,2438,9,999999999,120,0.0840,0,88,0.170,0.0,1.0 +2003,6,1,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,2.8,31,88200,1101,1328,350,725,482,325,77100,50300,35400,13020,280,8.2,3,3,16.0,77777,9,999999999,120,0.0840,0,88,0.170,0.0,1.0 +2003,6,1,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,1.7,28,88900,1181,1328,360,936,861,168,98700,86900,21300,7920,300,9.3,6,6,16.0,77777,9,999999999,120,0.0840,0,88,0.170,0.0,1.0 +2003,6,1,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,1.7,26,88900,1206,1328,359,951,919,114,98000,92200,14100,5270,290,8.2,4,4,16.0,77777,9,999999999,129,0.0840,0,88,0.170,0.0,1.0 +2003,6,1,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,0.6,23,88900,1173,1328,358,929,894,138,95300,89500,16100,5170,270,8.8,3,3,16.0,77777,9,999999999,129,0.0840,0,88,0.170,0.0,1.0 +2003,6,1,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,1.1,23,88900,1085,1328,357,813,851,116,83800,85200,14100,3570,300,8.8,2,2,16.0,77777,9,999999999,129,0.0840,0,88,0.170,0.0,1.0 +2003,6,1,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,1.1,23,88900,948,1328,353,734,871,111,75800,86800,13800,2570,300,7.7,1,1,16.0,77777,9,999999999,120,0.0840,0,88,0.170,0.0,1.0 +2003,6,1,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,1.1,24,88100,771,1328,350,559,780,105,58400,77400,13400,2350,300,9.3,1,1,16.0,77777,9,999999999,120,0.0840,0,88,0.170,0.0,1.0 +2003,6,1,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,1.1,25,88900,567,1328,352,417,765,90,43800,73800,12300,1830,300,8.2,2,2,16.0,77777,9,999999999,120,0.0840,0,88,0.170,0.0,1.0 +2003,6,1,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,0.6,26,88800,349,1328,346,244,597,87,24600,49500,11600,1500,290,6.2,2,2,16.0,77777,9,999999999,120,0.0840,0,88,0.170,0.0,1.0 +2003,6,1,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,2.8,37,88700,134,1328,323,0,0,0,0,0,0,0,280,3.6,0,0,16.0,77777,9,999999999,129,0.0840,0,88,0.170,0.0,1.0 +2003,6,1,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,2.8,39,88700,3,255,318,0,0,0,0,0,0,0,250,3.1,0,0,16.0,77777,9,999999999,129,0.0840,0,88,0.170,0.0,1.0 +2003,6,1,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,3.3,44,88600,0,0,324,0,0,0,0,0,0,0,260,3.6,2,2,16.0,77777,9,999999999,129,0.0840,0,88,0.170,0.0,1.0 +2003,6,1,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,2.2,36,88100,0,0,336,0,0,0,0,0,0,0,240,4.6,5,4,16.0,77777,9,999999999,129,0.0840,0,88,0.170,0.0,1.0 +2003,6,1,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,2.2,38,88600,0,0,339,0,0,0,0,0,0,0,250,4.6,9,6,16.0,77777,9,999999999,139,0.0840,0,88,0.170,0.0,1.0 +2003,6,2,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,2.2,38,88600,0,0,339,0,0,0,0,0,0,0,230,2.6,9,6,16.0,77777,9,999999999,139,0.0840,0,88,0.170,0.0,1.0 +2003,6,2,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,2.2,39,88500,0,0,334,0,0,0,0,0,0,0,270,4.1,9,5,16.0,77777,9,999999999,139,0.0840,0,88,0.170,0.0,1.0 +2003,6,2,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,3.9,49,88500,0,0,325,0,0,0,0,0,0,0,150,1.5,8,4,16.0,77777,9,999999999,129,0.0840,0,88,0.170,0.0,1.0 +2003,6,2,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,2.8,49,88500,0,0,324,0,0,0,0,0,0,0,240,3.6,9,6,16.0,77777,9,999999999,120,0.0840,0,88,0.170,0.0,1.0 +2003,6,2,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,2.8,47,88100,10,454,343,0,0,0,0,0,0,0,230,3.6,9,9,16.0,3353,9,999999999,120,0.0840,0,88,0.170,0.0,1.0 +2003,6,2,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,3.9,51,88500,164,1328,345,70,294,34,7100,18100,4900,600,250,7.2,9,9,16.0,2438,9,999999999,120,0.0840,0,88,0.170,0.0,1.0 +2003,6,2,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,3.9,53,88500,381,1328,342,218,427,96,22800,37100,12100,1790,260,4.1,10,9,16.0,3048,9,999999999,120,0.0840,0,88,0.170,0.0,1.0 +2003,6,2,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,4.4,47,88600,598,1328,353,63,0,63,7700,0,7700,2970,0,0.0,9,9,16.0,3048,9,999999999,120,0.0840,0,88,0.170,0.0,1.0 +2003,6,2,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,5.0,74,88600,799,1328,334,572,543,244,59600,55500,26200,5880,240,6.2,10,10,16.0,1829,9,999999999,120,0.0840,0,88,0.170,1.0,1.0 +2003,6,2,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,4.4,49,88600,971,1328,334,721,709,202,75700,71700,23200,5940,250,7.7,7,6,16.0,77777,9,999999999,110,0.0840,0,88,0.170,0.0,1.0 +2003,6,2,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,3.9,44,88100,1102,1328,348,400,65,345,44100,6700,38500,14610,260,8.8,8,8,16.0,1829,9,999999999,110,0.0840,0,88,0.170,0.0,1.0 +2003,6,2,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,1.7,36,88600,1182,1328,366,459,78,390,50800,8000,43600,18430,280,9.3,10,10,16.0,2438,9,999999999,110,0.0840,0,88,0.170,0.0,1.0 +2003,6,2,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,0.6,31,88700,1207,1328,360,272,12,262,33100,1000,32200,12690,300,8.2,10,9,16.0,2286,9,999999999,110,0.0840,0,88,0.170,0.0,1.0 +2003,6,2,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,1.1,30,88700,1174,1328,376,549,157,410,60500,16700,45700,18460,280,10.3,10,10,16.0,2743,9,999999999,110,0.0840,0,88,0.170,0.0,1.0 +2003,6,2,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,1.1,29,88700,1087,1328,360,845,790,197,90000,80700,23800,7490,270,11.8,8,8,16.0,77777,9,999999999,110,0.0840,0,88,0.170,0.0,1.0 +2003,6,2,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,0.6,28,88800,950,1328,360,733,865,114,78300,87400,15600,3230,280,11.3,9,8,16.0,77777,9,999999999,120,0.0840,0,88,0.170,0.0,1.0 +2003,6,2,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,1.1,30,88100,773,1328,352,573,830,89,61000,83000,12600,2120,280,10.8,8,7,16.0,77777,9,999999999,120,0.0840,0,88,0.170,0.0,1.0 +2003,6,2,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,1.1,31,88700,569,1328,349,408,719,100,42700,69100,13000,2010,270,10.3,8,7,16.0,77777,9,999999999,120,0.0840,0,88,0.170,0.0,1.0 +2003,6,2,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,1.1,34,88800,351,1328,340,243,588,87,24500,48900,11500,1500,290,8.2,6,6,16.0,77777,9,999999999,120,0.0840,0,88,0.170,0.0,1.0 +2003,6,2,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,1.7,39,88700,136,1328,337,0,0,0,0,0,0,0,270,6.7,8,7,16.0,77777,9,999999999,120,0.0840,0,88,0.170,0.0,1.0 +2003,6,2,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,1.7,42,88800,4,277,332,0,0,0,0,0,0,0,260,5.7,8,7,16.0,77777,9,999999999,120,0.0840,0,88,0.170,0.0,1.0 +2003,6,2,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,2.8,47,88800,0,0,331,0,0,0,0,0,0,0,260,4.1,8,7,16.0,77777,9,999999999,110,0.0840,0,88,0.170,0.0,1.0 +2003,6,2,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,1.7,45,88200,0,0,312,0,0,0,0,0,0,0,250,4.6,2,2,16.0,77777,9,999999999,110,0.0840,0,88,0.170,0.0,1.0 +2003,6,2,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,1.7,47,88700,0,0,313,0,0,0,0,0,0,0,260,4.6,3,3,16.0,77777,9,999999999,110,0.0840,0,88,0.170,0.0,1.0 +2003,6,3,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,1.7,47,88700,0,0,300,0,0,0,0,0,0,0,260,4.6,0,0,16.0,77777,9,999999999,110,0.0840,0,88,0.170,0.0,1.0 +2003,6,3,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,2.2,61,88600,0,0,292,0,0,0,0,0,0,0,90,2.1,1,1,16.0,77777,9,999999999,100,0.0840,0,88,0.170,0.0,1.0 +2003,6,3,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,1.7,54,88700,0,0,297,0,0,0,0,0,0,0,0,0.0,1,1,16.0,77777,9,999999999,100,0.0840,0,88,0.170,0.0,1.0 +2003,6,3,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,2.2,61,88600,0,0,299,0,0,0,0,0,0,0,60,1.5,3,3,16.0,77777,9,999999999,110,0.0840,0,88,0.170,0.0,1.0 +2003,6,3,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,2.2,70,88300,11,454,287,0,0,0,0,0,0,0,0,0.0,3,2,16.0,77777,9,999999999,110,0.0840,0,88,0.170,0.0,1.0 +2003,6,3,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,3.3,68,88600,166,1328,300,70,291,34,7100,18000,4900,600,340,1.5,5,4,16.0,77777,9,999999999,110,0.0840,0,88,0.170,0.0,1.0 +2003,6,3,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,2.8,51,88800,382,1328,317,215,471,79,22000,40700,10200,1440,0,0.0,5,4,16.0,77777,9,999999999,110,0.0840,0,88,0.170,0.0,1.0 +2003,6,3,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,2.8,46,88800,599,1328,324,404,720,79,42100,69600,10700,1640,250,5.2,5,4,16.0,77777,9,999999999,110,0.0840,0,88,0.170,0.0,1.0 +2003,6,3,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,1.7,38,88800,800,1328,325,556,742,108,58200,73900,13600,2490,260,6.7,2,2,16.0,77777,9,999999999,120,0.0840,0,88,0.170,0.0,1.0 +2003,6,3,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,1.1,36,88800,972,1328,344,677,638,209,70900,64400,23700,6130,280,8.2,8,8,16.0,1981,9,999999999,120,0.0840,0,88,0.170,0.0,1.0 +2003,6,3,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,1.7,33,88800,1102,1328,338,656,351,364,71600,38100,39900,14000,260,6.7,3,3,16.0,77777,9,999999999,120,0.0840,0,88,0.170,0.0,1.0 +2003,6,3,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,1.1,30,88800,1183,1328,345,877,700,252,92700,71100,29300,12700,280,6.2,5,5,16.0,77777,9,999999999,120,0.0840,0,88,0.170,0.0,1.0 +2003,6,3,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,0.0,26,88800,1208,1328,362,969,907,142,99200,90800,16400,6110,260,8.2,8,8,16.0,2438,9,999999999,120,0.0840,0,88,0.170,0.0,1.0 +2003,6,3,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,0.0,25,88800,1175,1328,347,929,924,109,95900,92700,13700,4560,240,9.3,3,3,16.0,77777,9,999999999,120,0.0840,0,88,0.170,0.0,1.0 +2003,6,3,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,-0.6,24,88700,1088,1328,338,844,838,156,88700,84400,19400,5510,300,7.2,1,1,16.0,77777,9,999999999,120,0.0840,0,88,0.170,0.0,1.0 +2003,6,3,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,0.0,24,88700,951,1328,358,478,208,328,52300,22000,36500,10170,300,7.7,6,6,16.0,77777,9,999999999,120,0.0840,0,88,0.170,0.0,1.0 +2003,6,3,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,-0.6,23,87900,775,1328,375,580,742,146,60800,74200,17400,3360,300,8.2,9,9,16.0,2743,9,999999999,129,0.0840,0,88,0.170,0.0,1.0 +2003,6,3,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,0.0,24,88700,571,1328,354,415,751,92,43700,72600,12400,1880,290,7.7,5,5,16.0,77777,9,999999999,120,0.0840,0,88,0.170,0.0,1.0 +2003,6,3,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,0.0,26,88600,354,1328,370,252,630,84,25500,52600,11500,1470,280,7.2,9,9,16.0,3353,9,999999999,110,0.0840,0,88,0.170,0.0,1.0 +2003,6,3,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,1.1,31,88600,139,1328,373,0,0,0,0,0,0,0,300,3.6,10,10,16.0,3353,9,999999999,110,0.0840,0,88,0.170,0.0,1.0 +2003,6,3,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,3.9,46,88600,4,299,345,0,0,0,0,0,0,0,260,2.1,8,8,16.0,2591,9,999999999,100,0.0840,0,88,0.170,0.0,1.0 +2003,6,3,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,3.9,53,88600,0,0,335,0,0,0,0,0,0,0,310,2.1,8,8,16.0,3353,9,999999999,100,0.0840,0,88,0.170,0.0,1.0 +2003,6,3,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,4.4,59,88200,0,0,347,0,0,0,0,0,0,0,270,2.6,10,10,16.0,3353,9,999999999,89,0.0840,0,88,0.170,0.0,1.0 +2003,6,3,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,3.9,55,88700,0,0,332,0,0,0,0,0,0,0,260,4.1,8,8,16.0,2896,9,999999999,89,0.0840,0,88,0.170,0.0,1.0 +2003,6,4,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,3.9,57,88700,0,0,318,0,0,0,0,0,0,0,270,3.1,5,5,16.0,3658,9,999999999,89,0.0840,0,88,0.170,0.0,1.0 +2003,6,4,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,3.9,61,88700,0,0,341,0,0,0,0,0,0,0,270,2.6,10,10,16.0,3353,9,999999999,80,0.0840,0,88,0.170,0.0,1.0 +2003,6,4,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,2.8,66,88700,0,0,329,0,0,0,0,0,0,0,290,3.1,10,10,16.0,3048,9,999999999,89,0.0840,0,88,0.170,0.0,1.0 +2003,6,4,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,1.7,61,88800,0,0,312,0,0,0,0,0,0,0,330,4.6,8,8,16.0,2743,9,999999999,89,0.0840,0,88,0.170,0.0,1.0 +2003,6,4,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,1.7,63,88600,11,476,287,0,0,0,0,0,0,0,330,2.6,1,1,16.0,77777,9,999999999,89,0.0840,0,88,0.170,0.0,1.0 +2003,6,4,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,1.7,56,88900,167,1327,289,76,403,26,7700,27100,4400,500,280,4.1,0,0,16.0,77777,9,999999999,100,0.0840,0,88,0.170,0.0,1.0 +2003,6,4,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,1.7,50,89000,383,1327,296,232,618,53,23800,54600,8100,1040,270,2.1,0,0,16.0,77777,9,999999999,100,0.0840,0,88,0.170,0.0,1.0 +2003,6,4,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,1.7,45,89100,600,1327,302,414,766,68,44000,74500,10200,1500,0,0.0,0,0,16.0,77777,9,999999999,100,0.0840,0,88,0.170,0.0,1.0 +2003,6,4,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,0.6,39,89100,801,1327,312,562,637,177,58300,63400,20000,4080,20,1.5,1,1,16.0,77777,9,999999999,110,0.0840,0,88,0.170,0.0,1.0 +2003,6,4,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,0.0,32,89200,973,1327,353,182,12,173,22000,900,21400,8560,30,6.2,9,9,16.0,2438,9,999999999,110,0.0840,0,88,0.170,0.0,1.0 +2003,6,4,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,-0.6,31,88600,1103,1327,363,354,42,319,39100,4300,35600,13700,350,8.8,10,10,16.0,2438,9,999999999,120,0.0840,0,88,0.170,0.0,1.0 +2003,6,4,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,0.0,29,89200,1184,1327,354,624,287,367,68700,31200,40800,17460,360,8.8,9,8,16.0,77777,9,999999999,120,0.0840,0,88,0.170,0.0,1.0 +2003,6,4,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,0.6,30,89300,1209,1327,362,357,18,341,42500,1600,41100,15540,360,8.2,9,9,16.0,3048,9,999999999,120,0.0840,0,88,0.170,0.0,1.0 +2003,6,4,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,1.7,39,89300,1176,1327,360,318,24,296,35200,2400,33000,14340,20,8.2,10,10,16.0,3048,9,999999999,120,0.0840,0,88,0.170,0.0,1.0 +2003,6,4,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,1.7,38,89300,1089,1327,363,664,358,369,72200,38800,40300,13850,50,2.6,10,10,16.0,3048,9,999999999,120,0.0840,0,88,0.170,0.0,1.0 +2003,6,4,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,1.1,34,89300,953,1327,367,329,49,294,36300,5000,32700,10780,20,3.6,10,10,16.0,2134,9,999999999,120,0.0840,0,88,0.170,0.0,1.0 +2003,6,4,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,1.1,28,88600,777,1327,371,429,287,261,45900,30400,28100,6490,360,5.2,9,9,16.0,2134,9,999999999,120,0.0840,0,88,0.170,0.0,1.0 +2003,6,4,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,1.1,31,89300,573,1327,373,399,544,164,41500,52900,18600,3330,360,4.6,10,10,16.0,2286,9,999999999,120,0.0840,0,88,0.170,0.0,1.0 +2003,6,4,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,1.1,32,89200,356,1327,353,240,556,90,24100,46300,11700,1550,20,2.1,8,8,16.0,2286,9,999999999,129,0.0840,0,88,0.170,0.0,1.0 +2003,6,4,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,1.7,38,89200,142,1327,345,0,0,0,0,0,0,0,310,2.6,8,8,16.0,77777,9,999999999,129,0.0840,0,88,0.170,0.0,1.0 +2003,6,4,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,1.1,40,89200,5,321,336,0,0,0,0,0,0,0,350,1.5,8,8,16.0,3353,9,999999999,129,0.0840,0,88,0.170,0.0,1.0 +2003,6,4,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,2.8,49,89200,0,0,313,0,0,0,0,0,0,0,310,2.6,2,2,16.0,77777,9,999999999,129,0.0840,0,88,0.170,0.0,1.0 +2003,6,4,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,2.8,57,88700,0,0,294,0,0,0,0,0,0,0,260,3.1,0,0,16.0,77777,9,999999999,129,0.0840,0,88,0.170,0.0,1.0 +2003,6,4,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,2.8,57,89100,0,0,294,0,0,0,0,0,0,0,250,4.1,0,0,16.0,77777,9,999999999,120,0.0840,0,88,0.170,0.0,1.0 +2003,6,5,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,2.8,61,89100,0,0,290,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,120,0.0850,0,88,0.170,0.0,1.0 +2003,6,5,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,3.3,71,89100,0,0,289,0,0,0,0,0,0,0,0,0.0,1,1,16.0,77777,9,999999999,120,0.0850,0,88,0.170,0.0,1.0 +2003,6,5,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,3.3,73,89100,0,0,293,0,0,0,0,0,0,0,0,0.0,3,3,16.0,77777,9,999999999,110,0.0850,0,88,0.170,0.0,1.0 +2003,6,5,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,2.8,71,89100,0,0,281,0,0,0,0,0,0,0,150,1.5,0,0,16.0,77777,9,999999999,110,0.0850,0,88,0.170,0.0,1.0 +2003,6,5,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,2.8,74,88700,12,475,306,0,0,0,0,0,0,0,100,2.1,8,8,16.0,2743,9,999999999,110,0.0850,0,88,0.170,0.0,1.0 +2003,6,5,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,3.3,76,89100,168,1327,284,71,288,35,7300,17900,5000,620,0,0.0,1,1,16.0,77777,9,999999999,110,0.0850,0,88,0.170,0.0,1.0 +2003,6,5,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,3.9,68,89200,384,1327,308,219,488,78,22500,42300,10200,1420,0,0.0,6,6,16.0,77777,9,999999999,110,0.0850,0,88,0.170,0.0,1.0 +2003,6,5,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,4.4,59,89300,601,1327,306,414,720,88,43900,70500,12000,1850,360,1.5,1,1,16.0,77777,9,999999999,110,0.0850,0,88,0.170,0.0,1.0 +2003,6,5,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,5.0,51,89400,801,1327,319,588,830,86,61200,82100,11600,1920,0,0.0,1,1,16.0,77777,9,999999999,120,0.0850,0,88,0.170,0.0,1.0 +2003,6,5,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,3.9,41,89400,973,1327,335,705,768,140,73700,77100,17100,3900,10,1.5,3,3,16.0,77777,9,999999999,120,0.0850,0,88,0.170,0.0,1.0 +2003,6,5,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,2.8,36,88800,1104,1327,348,856,833,162,89800,83800,20000,5940,20,2.6,6,6,16.0,77777,9,999999999,129,0.0850,0,88,0.170,0.0,1.0 +2003,6,5,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,1.7,30,89500,1184,1327,358,888,700,263,93700,70900,30300,13310,30,5.2,7,7,16.0,77777,9,999999999,129,0.0850,0,88,0.170,0.0,1.0 +2003,6,5,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,2.2,32,89400,1209,1327,370,436,60,381,48200,6200,42600,19110,340,5.2,9,9,16.0,2896,9,999999999,129,0.0850,0,88,0.170,0.0,1.0 +2003,6,5,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,3.3,33,89500,1177,1327,374,567,175,412,62500,18700,45900,18740,360,4.6,9,9,16.0,3048,9,999999999,139,0.0850,0,88,0.170,0.0,1.0 +2003,6,5,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,3.3,31,89500,1090,1327,362,857,802,197,91400,82000,23900,7590,10,4.6,6,6,16.0,77777,9,999999999,139,0.0850,0,88,0.170,0.0,1.0 +2003,6,5,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,2.8,30,89400,954,1327,365,638,546,245,68400,56700,27500,7140,60,2.1,7,7,16.0,77777,9,999999999,139,0.0850,0,88,0.170,0.0,1.0 +2003,6,5,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,2.8,32,88500,779,1327,366,450,330,256,48200,35000,27700,6340,20,5.7,8,8,16.0,3353,9,999999999,139,0.0850,0,88,0.170,0.0,1.0 +2003,6,5,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,2.2,31,89300,575,1327,352,430,640,152,45000,62400,17900,3060,340,4.1,5,5,16.0,77777,9,999999999,139,0.0850,0,88,0.170,0.0,1.0 +2003,6,5,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,2.8,33,89200,358,1327,341,249,605,85,25100,50800,11400,1490,350,3.1,2,2,16.0,77777,9,999999999,139,0.0850,0,88,0.170,0.0,1.0 +2003,6,5,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,3.9,40,89100,144,1327,330,0,0,0,0,0,0,0,20,2.6,1,1,16.0,77777,9,999999999,139,0.0850,0,88,0.170,0.0,1.0 +2003,6,5,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,3.9,44,89100,5,321,333,0,0,0,0,0,0,0,100,2.1,4,4,16.0,77777,9,999999999,139,0.0850,0,88,0.170,0.0,1.0 +2003,6,5,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,5.6,57,89000,0,0,334,0,0,0,0,0,0,0,260,3.1,8,7,16.0,77777,9,999999999,139,0.0850,0,88,0.170,0.0,1.0 +2003,6,5,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,4.4,55,88500,0,0,335,0,0,0,0,0,0,0,260,3.1,8,8,16.0,77777,9,999999999,139,0.0850,0,88,0.170,0.0,1.0 +2003,6,5,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,4.4,61,89000,0,0,335,0,0,0,0,0,0,0,330,7.2,10,9,16.0,77777,9,999999999,150,0.0850,0,88,0.170,0.0,1.0 +2003,6,6,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,5.0,66,89000,0,0,342,0,0,0,0,0,0,0,330,6.2,10,10,16.0,1524,9,999999999,150,0.0850,0,88,0.170,0.0,1.0 +2003,6,6,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,5.0,68,89100,0,0,340,0,0,0,0,0,0,0,330,5.2,10,10,16.0,1250,9,999999999,150,0.0850,0,88,0.170,0.0,1.0 +2003,6,6,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,6.7,90,89100,0,0,331,0,0,0,0,0,0,0,340,4.1,10,10,16.0,1189,9,999999999,160,0.0850,0,88,0.170,0.0,1.0 +2003,6,6,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,6.1,89,89100,0,0,328,0,0,0,0,0,0,0,250,3.6,10,10,9.6,1036,9,999999999,160,0.0850,0,88,0.170,1.0,1.0 +2003,6,6,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,6.1,89,88800,12,497,328,0,0,0,0,0,0,0,260,5.2,10,10,16.0,1036,9,999999999,160,0.0850,0,88,0.170,1.0,1.0 +2003,6,6,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,5.6,83,89100,169,1326,329,11,0,11,1400,0,1400,450,260,3.1,10,10,16.0,1067,9,999999999,150,0.0850,0,88,0.170,0.0,1.0 +2003,6,6,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,5.6,80,89100,385,1326,332,38,0,38,4600,0,4600,1660,240,3.6,10,10,16.0,3048,9,999999999,129,0.0850,0,88,0.170,0.0,1.0 +2003,6,6,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,4.4,68,89200,601,1326,336,68,0,68,8300,0,8300,3190,290,2.6,10,10,16.0,1158,9,999999999,120,0.0850,0,88,0.170,0.0,1.0 +2003,6,6,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,3.9,66,89200,802,1326,336,189,6,185,22100,500,21800,8330,0,0.0,10,10,16.0,1036,9,999999999,120,0.0850,0,88,0.170,0.0,1.0 +2003,6,6,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,4.4,61,89300,974,1326,335,380,77,324,41900,7900,36100,11930,0,0.0,10,9,16.0,3353,9,999999999,110,0.0850,0,88,0.170,0.0,1.0 +2003,6,6,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,5.0,63,88700,1104,1326,345,519,149,395,57000,15900,43800,15270,320,3.1,10,10,16.0,853,9,999999999,110,0.0850,0,88,0.170,0.0,1.0 +2003,6,6,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,3.9,55,89300,1185,1326,349,406,72,342,45000,7400,38400,16560,360,3.6,10,10,16.0,2438,9,999999999,110,0.0850,0,88,0.170,0.0,1.0 +2003,6,6,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,3.3,51,89200,1210,1326,351,169,0,169,21200,0,21200,8770,20,3.1,10,10,16.0,2134,9,999999999,110,0.0850,0,88,0.170,0.0,1.0 +2003,6,6,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,3.9,53,89300,1178,1326,351,255,12,245,31100,1000,30200,11970,10,7.2,10,10,16.0,2438,9,999999999,110,0.0850,0,88,0.170,0.0,1.0 +2003,6,6,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,3.3,47,89300,1091,1326,356,741,534,300,79300,55700,33300,11710,360,5.2,10,10,16.0,2591,9,999999999,110,0.0850,0,88,0.170,0.0,1.0 +2003,6,6,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,3.3,44,89300,956,1326,352,396,92,330,43700,9400,36900,11890,360,7.2,9,9,16.0,77777,9,999999999,110,0.0850,0,88,0.170,0.0,1.0 +2003,6,6,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,3.3,49,88700,780,1326,337,557,592,208,58900,60500,23200,4860,10,4.6,9,8,16.0,77777,9,999999999,110,0.0850,0,88,0.170,0.0,1.0 +2003,6,6,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,3.9,49,89300,577,1326,357,413,595,154,43200,58100,18000,3100,20,6.2,10,10,16.0,2743,9,999999999,100,0.0850,0,88,0.170,0.0,1.0 +2003,6,6,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,3.9,55,89300,361,1326,339,165,129,130,17700,11300,14600,2870,10,4.1,9,9,16.0,2743,9,999999999,100,0.0850,0,88,0.170,0.0,1.0 +2003,6,6,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,5.0,61,89300,146,1326,338,0,0,0,0,0,0,0,0,0.0,9,9,16.0,2591,9,999999999,100,0.0850,0,88,0.170,0.0,1.0 +2003,6,6,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,4.4,68,89200,6,343,301,0,0,0,0,0,0,0,260,3.1,3,2,16.0,77777,9,999999999,100,0.0850,0,88,0.170,0.0,1.0 +2003,6,6,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,3.9,63,89200,0,0,299,0,0,0,0,0,0,0,240,2.6,1,1,16.0,77777,9,999999999,89,0.0850,0,88,0.170,0.0,1.0 +2003,6,6,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,3.9,68,88700,0,0,333,0,0,0,0,0,0,0,240,3.6,10,10,16.0,1463,9,999999999,89,0.0850,0,88,0.170,0.0,1.0 +2003,6,6,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,3.9,80,89100,0,0,279,0,0,0,0,0,0,0,270,3.1,0,0,16.0,77777,9,999999999,89,0.0850,0,88,0.170,0.0,1.0 +2003,6,7,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,3.9,80,89000,0,0,294,0,0,0,0,0,0,0,260,2.6,4,4,16.0,77777,9,999999999,89,0.0850,0,88,0.170,0.0,1.0 +2003,6,7,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,3.9,76,89000,0,0,310,0,0,0,0,0,0,0,0,0.0,8,8,16.0,1433,9,999999999,89,0.0850,0,88,0.170,0.0,1.0 +2003,6,7,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,4.4,85,88900,0,0,321,0,0,0,0,0,0,0,0,0.0,10,10,16.0,1372,9,999999999,89,0.0850,0,88,0.170,0.0,1.0 +2003,6,7,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,3.9,86,88900,0,0,284,0,0,0,0,0,0,0,0,0.0,2,2,16.0,77777,9,999999999,89,0.0850,0,88,0.170,0.0,1.0 +2003,6,7,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,2.8,82,88600,12,497,277,0,0,0,0,0,0,0,180,1.5,1,1,16.0,77777,9,999999999,89,0.0850,0,88,0.170,0.0,1.0 +2003,6,7,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,3.9,82,88900,170,1326,277,77,388,28,8000,24700,4900,520,0,0.0,0,0,16.0,77777,9,999999999,89,0.0850,0,88,0.170,0.0,1.0 +2003,6,7,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,3.3,73,89000,386,1326,281,233,597,59,24400,52600,9100,1130,0,0.0,1,0,16.0,77777,9,999999999,89,0.0850,0,88,0.170,0.0,1.0 +2003,6,7,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,4.4,71,89000,602,1326,298,405,720,78,42300,69700,10700,1630,0,0.0,2,2,16.0,77777,9,999999999,89,0.0850,0,88,0.170,0.0,1.0 +2003,6,7,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,4.4,61,89000,802,1326,308,557,736,111,58200,73200,13800,2540,0,0.0,3,2,16.0,77777,9,999999999,100,0.0850,0,88,0.170,0.0,1.0 +2003,6,7,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,3.9,51,89100,974,1326,325,699,745,152,75000,76300,18900,4650,20,1.5,5,5,16.0,77777,9,999999999,110,0.0850,0,88,0.170,0.0,1.0 +2003,6,7,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,2.8,41,88400,1104,1326,347,788,637,256,82500,64300,28900,10000,30,2.1,10,8,16.0,77777,9,999999999,120,0.0850,0,88,0.170,0.0,1.0 +2003,6,7,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,2.8,37,89100,1185,1326,362,929,849,169,98100,85700,21400,8140,50,3.1,10,9,16.0,77777,9,999999999,120,0.0850,0,88,0.170,0.0,1.0 +2003,6,7,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,1.7,32,89000,1211,1326,359,926,823,173,97800,83000,21800,9250,70,3.6,8,8,16.0,77777,9,999999999,129,0.0850,0,88,0.170,0.0,1.0 +2003,6,7,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,1.1,27,89000,1179,1326,353,891,803,176,93600,80800,21600,8200,80,3.1,5,5,16.0,77777,9,999999999,129,0.0850,0,88,0.170,0.0,1.0 +2003,6,7,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,0.0,24,89000,1093,1326,348,856,929,89,89000,93200,12100,3150,90,2.6,2,2,16.0,77777,9,999999999,129,0.0850,0,88,0.170,0.0,1.0 +2003,6,7,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,-0.6,21,88900,957,1326,356,739,883,100,76500,88100,12800,2540,100,3.6,3,3,16.0,77777,9,999999999,120,0.0850,0,88,0.170,0.0,1.0 +2003,6,7,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,-0.6,21,88000,782,1326,348,592,860,84,61600,84900,11500,1860,120,4.1,1,1,16.0,77777,9,999999999,110,0.0850,0,88,0.170,0.0,1.0 +2003,6,7,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,0.0,22,88800,579,1326,354,428,756,98,44900,73100,12900,1990,110,4.1,2,2,16.0,77777,9,999999999,129,0.0850,0,88,0.170,0.0,1.0 +2003,6,7,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,3.9,31,88700,363,1326,348,256,646,80,26100,54700,11200,1430,120,3.1,1,1,16.0,77777,9,999999999,139,0.0850,0,88,0.170,0.0,1.0 +2003,6,7,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,6.1,43,88600,148,1326,332,0,0,0,0,0,0,0,110,3.1,0,0,16.0,77777,9,999999999,150,0.0850,0,88,0.170,0.0,1.0 +2003,6,7,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,4.4,46,88500,6,365,317,0,0,0,0,0,0,0,320,2.1,0,0,16.0,77777,9,999999999,150,0.0850,0,88,0.170,0.0,1.0 +2003,6,7,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,5.0,51,88500,0,0,313,0,0,0,0,0,0,0,270,4.1,0,0,16.0,77777,9,999999999,150,0.0850,0,88,0.170,0.0,1.0 +2003,6,7,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,4.4,53,87900,0,0,308,0,0,0,0,0,0,0,220,2.1,0,0,16.0,77777,9,999999999,139,0.0850,0,88,0.170,0.0,1.0 +2003,6,7,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,4.4,55,88300,0,0,305,0,0,0,0,0,0,0,230,2.1,0,0,16.0,77777,9,999999999,139,0.0850,0,88,0.170,0.0,1.0 +2003,6,8,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,3.3,63,88200,0,0,290,0,0,0,0,0,0,0,270,2.6,0,0,16.0,77777,9,999999999,139,0.0850,0,88,0.170,0.0,1.0 +2003,6,8,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,3.3,61,88200,0,0,293,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,129,0.0850,0,88,0.170,0.0,1.0 +2003,6,8,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,3.3,66,88100,0,0,288,0,0,0,0,0,0,0,270,2.1,0,0,16.0,77777,9,999999999,129,0.0850,0,88,0.170,0.0,1.0 +2003,6,8,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,3.3,71,88100,0,0,283,0,0,0,0,0,0,0,210,1.5,0,0,16.0,77777,9,999999999,120,0.0850,0,88,0.170,0.0,1.0 +2003,6,8,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,3.3,66,87800,13,497,288,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,120,0.0850,0,88,0.170,0.0,1.0 +2003,6,8,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,3.9,71,88100,171,1326,296,78,389,28,8100,24800,4900,520,0,0.0,2,2,16.0,77777,9,999999999,120,0.0850,0,88,0.170,0.0,1.0 +2003,6,8,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,5.0,68,88200,387,1326,300,241,640,54,24800,56600,8200,1060,340,1.5,1,1,16.0,77777,9,999999999,120,0.0850,0,88,0.170,0.0,1.0 +2003,6,8,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,5.6,62,88200,602,1326,310,415,760,69,43900,74000,10300,1510,0,0.0,1,1,16.0,77777,9,999999999,120,0.0850,0,88,0.170,0.0,1.0 +2003,6,8,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,5.0,49,88200,803,1326,316,588,818,92,62700,82000,13000,2250,0,0.0,0,0,16.0,77777,9,999999999,120,0.0850,0,88,0.170,0.0,1.0 +2003,6,8,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,5.0,39,88300,974,1326,347,744,863,108,76900,86100,13500,2690,70,2.6,3,3,16.0,77777,9,999999999,120,0.0850,0,88,0.170,0.0,1.0 +2003,6,8,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,6.7,37,87500,1105,1326,354,862,905,107,89200,90700,13500,3630,10,2.6,1,1,16.0,77777,9,999999999,120,0.0850,0,88,0.170,0.0,1.0 +2003,6,8,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,5.6,30,88300,1186,1326,363,947,843,191,98600,84500,22900,8990,320,3.1,1,1,16.0,77777,9,999999999,129,0.0850,0,88,0.170,0.0,1.0 +2003,6,8,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.0,3.0,20,88400,1211,1326,371,690,276,437,75300,30000,47800,23350,260,7.7,0,0,16.1,77777,9,999999999,129,0.0850,0,88,0.170,0.0,1.0 +2003,6,8,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,2.2,20,88200,1180,1326,399,280,12,270,33900,1000,33000,12950,270,4.1,8,8,16.0,77777,9,999999999,129,0.0850,0,88,0.170,0.0,1.0 +2003,6,8,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,2.8,21,88200,1094,1326,389,212,6,207,25800,500,25400,10290,290,8.2,9,6,16.0,77777,9,999999999,139,0.0850,0,88,0.170,0.0,1.0 +2003,6,8,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,2.2,22,88200,958,1326,383,685,484,334,71000,50000,34800,10080,340,8.2,8,6,16.0,77777,9,999999999,160,0.0850,0,88,0.170,0.0,1.0 +2003,6,8,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,6.1,34,87300,783,1326,384,392,193,278,42700,20100,30700,7450,20,7.2,9,8,16.0,77777,9,999999999,170,0.0850,0,88,0.170,0.0,1.0 +2003,6,8,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,6.7,32,88100,581,1326,373,380,478,171,39400,46600,19000,3500,360,3.1,4,3,16.0,77777,9,999999999,170,0.0850,0,88,0.170,0.0,1.0 +2003,6,8,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,3.9,29,88100,365,1326,389,194,243,127,20200,21100,14400,2620,270,5.7,9,9,16.0,3048,9,999999999,160,0.0850,0,88,0.170,0.0,1.0 +2003,6,8,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,6.1,39,88000,151,1326,373,0,0,0,0,0,0,0,350,1.5,10,8,16.0,77777,9,999999999,160,0.0850,0,88,0.170,0.0,1.0 +2003,6,8,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,7.2,48,87900,7,387,363,0,0,0,0,0,0,0,320,3.1,10,8,16.0,77777,9,999999999,170,0.0850,0,88,0.170,0.0,1.0 +2003,6,8,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,10.6,67,88100,0,0,377,0,0,0,0,0,0,0,320,6.2,10,10,16.0,2438,9,999999999,170,0.0850,0,88,0.170,0.0,1.0 +2003,6,8,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,9.4,77,87500,0,0,326,0,0,0,0,0,0,0,300,4.1,10,4,16.0,77777,9,999999999,170,0.0850,0,88,0.170,0.0,1.0 +2003,6,8,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,10.0,80,88000,0,0,349,0,0,0,0,0,0,0,300,6.2,10,9,16.0,2591,9,999999999,160,0.0850,0,88,0.170,0.0,1.0 +2003,6,9,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,10.0,80,87900,0,0,359,0,0,0,0,0,0,0,300,3.6,10,10,16.0,914,9,999999999,160,0.0850,0,88,0.170,0.0,1.0 +2003,6,9,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,10.0,80,87900,0,0,359,0,0,0,0,0,0,0,270,3.6,10,10,16.0,671,9,999999999,150,0.0850,0,88,0.170,0.0,1.0 +2003,6,9,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,9.4,80,87900,0,0,356,0,0,0,0,0,0,0,290,3.1,10,10,16.0,1829,9,999999999,150,0.0850,0,88,0.170,0.0,1.0 +2003,6,9,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,9.4,80,88000,0,0,356,0,0,0,0,0,0,0,290,3.1,10,10,16.0,1158,9,999999999,139,0.0850,0,88,0.170,0.0,1.0 +2003,6,9,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,9.4,80,87600,13,519,356,0,0,0,0,0,0,0,300,3.1,10,10,16.0,823,9,999999999,139,0.0850,0,88,0.170,0.0,1.0 +2003,6,9,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,8.9,77,88100,172,1325,355,14,0,14,1700,0,1700,570,300,2.6,10,10,16.0,1097,9,999999999,139,0.0850,0,88,0.170,0.0,1.0 +2003,6,9,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,8.3,72,88200,387,1325,357,42,0,42,5100,0,5100,1820,340,3.6,10,10,16.0,1402,9,999999999,139,0.0850,0,88,0.170,0.0,1.0 +2003,6,9,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,8.9,72,88200,603,1325,360,117,0,117,13700,0,13700,5080,350,3.1,10,10,16.0,1341,9,999999999,139,0.0850,0,88,0.170,0.0,1.0 +2003,6,9,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,8.3,67,88300,803,1325,362,415,251,263,44600,26700,28400,6650,360,3.6,10,10,16.0,975,9,999999999,139,0.0850,0,88,0.170,0.0,1.0 +2003,6,9,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,7.2,56,88400,974,1325,352,364,47,329,40100,4800,36500,12100,20,4.6,8,8,16.0,1829,9,999999999,139,0.0850,0,88,0.170,0.0,1.0 +2003,6,9,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,7.8,54,87800,1105,1325,376,479,107,390,52900,11000,43700,16310,20,3.6,10,10,16.0,1676,9,999999999,139,0.0850,0,88,0.170,0.0,1.0 +2003,6,9,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,7.8,50,88500,1186,1325,382,718,389,369,76200,40600,39900,19580,350,4.1,10,10,16.0,2134,9,999999999,139,0.0850,0,88,0.170,0.0,1.0 +2003,6,9,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,7.8,48,88500,1212,1325,374,641,252,410,70300,27400,45200,21840,360,5.2,9,9,16.0,77777,9,999999999,139,0.0850,0,88,0.170,0.0,1.0 +2003,6,9,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,7.2,45,88400,1180,1325,376,810,555,314,87300,58100,35500,16200,360,5.2,9,9,16.0,77777,9,999999999,139,0.0850,0,88,0.170,0.0,1.0 +2003,6,9,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,6.7,42,88400,1094,1325,365,792,717,199,84400,73300,23800,7760,350,4.1,7,7,16.0,77777,9,999999999,150,0.0850,0,88,0.170,0.0,1.0 +2003,6,9,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,5.6,37,88400,960,1325,372,745,827,145,77500,82800,17500,3880,10,4.1,8,8,16.0,77777,9,999999999,160,0.0850,0,88,0.170,0.0,1.0 +2003,6,9,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,6.1,39,87600,785,1325,363,570,685,164,59400,68200,18900,3760,360,3.1,6,6,16.0,77777,9,999999999,170,0.0850,0,88,0.170,0.0,1.0 +2003,6,9,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,7.8,45,88300,583,1325,372,316,219,220,34100,21900,24500,5270,360,5.2,8,8,16.0,77777,9,999999999,170,0.0850,0,88,0.170,0.0,1.0 +2003,6,9,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,8.3,54,88200,367,1325,369,173,107,143,18400,9400,15800,3170,350,4.6,10,9,16.0,77777,9,999999999,160,0.0850,0,88,0.170,0.0,1.0 +2003,6,9,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,7.8,56,88200,153,1325,350,0,0,0,0,0,0,0,320,4.1,10,7,16.0,77777,9,999999999,160,0.0850,0,88,0.170,0.0,1.0 +2003,6,9,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,8.3,64,88200,7,387,338,0,0,0,0,0,0,0,270,3.6,10,6,16.0,77777,9,999999999,160,0.0850,0,88,0.170,0.0,1.0 +2003,6,9,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,8.3,67,88100,0,0,339,0,0,0,0,0,0,0,270,4.1,10,7,16.0,77777,9,999999999,160,0.0850,0,88,0.170,0.0,1.0 +2003,6,9,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,8.3,67,87600,0,0,362,0,0,0,0,0,0,0,260,3.6,10,10,16.0,2591,9,999999999,160,0.0850,0,88,0.170,0.0,1.0 +2003,6,9,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,8.9,75,88000,0,0,340,0,0,0,0,0,0,0,260,3.6,10,8,16.0,77777,9,999999999,170,0.0850,0,88,0.170,0.0,1.0 +2003,6,10,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,10.0,83,88100,0,0,356,0,0,0,0,0,0,0,260,6.2,10,10,12.8,2134,9,999999999,170,0.0850,0,88,0.170,0.0,1.0 +2003,6,10,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,10.0,83,88000,0,0,356,0,0,0,0,0,0,0,240,2.6,10,10,16.0,2134,9,999999999,179,0.0850,0,88,0.170,0.0,1.0 +2003,6,10,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,10.6,90,87900,0,0,354,0,0,0,0,0,0,0,150,3.6,10,10,16.0,1524,9,999999999,170,0.0850,0,88,0.170,1.0,1.0 +2003,6,10,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,10.0,89,87900,0,0,351,0,0,0,0,0,0,0,300,1.5,10,10,16.0,3353,9,999999999,170,0.0850,0,88,0.170,0.0,1.0 +2003,6,10,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,10.0,89,87500,13,519,334,0,0,0,0,0,0,0,250,1.5,9,8,16.0,3353,9,999999999,160,0.0850,0,88,0.170,0.0,1.0 +2003,6,10,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,10.0,89,87900,173,1325,329,39,5,39,4500,0,4500,1340,270,2.1,9,7,16.0,77777,9,999999999,150,0.0850,0,88,0.170,0.0,1.0 +2003,6,10,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,8.3,77,87900,388,1325,334,123,27,115,13500,2400,12700,3000,90,2.1,8,8,16.0,77777,9,999999999,150,0.0850,0,88,0.170,0.0,1.0 +2003,6,10,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,11.1,81,88000,603,1325,366,317,257,200,33600,26100,21700,4450,50,1.5,10,10,16.0,305,9,999999999,139,0.0850,0,88,0.170,0.0,1.0 +2003,6,10,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,10.0,72,88000,803,1325,337,573,666,168,59600,66500,19300,3930,0,0.0,5,5,16.0,77777,9,999999999,139,0.0850,0,88,0.170,0.0,1.0 +2003,6,10,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,10.6,63,88100,975,1325,332,584,390,296,63600,42100,32600,8960,110,2.6,0,0,16.0,77777,9,999999999,139,0.0850,0,88,0.170,0.0,1.0 +2003,6,10,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,10.0,53,87400,1105,1325,356,833,750,207,88700,76500,24700,8290,100,3.1,3,3,16.0,77777,9,999999999,139,0.0850,0,88,0.170,0.0,1.0 +2003,6,10,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,9.4,47,88100,1186,1325,363,794,544,306,86000,56900,34900,16130,100,2.6,4,4,16.0,77777,9,999999999,139,0.0850,0,88,0.170,0.0,1.0 +2003,6,10,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,9.4,44,88000,1212,1325,385,871,631,293,91500,63600,33100,16620,90,4.6,8,8,16.0,1829,9,999999999,150,0.0850,0,88,0.170,0.0,1.0 +2003,6,10,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,9.4,41,88000,1181,1325,380,741,404,380,78400,42100,40800,19860,70,4.1,6,6,16.0,77777,9,999999999,150,0.0850,0,88,0.170,0.0,1.0 +2003,6,10,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,8.3,37,87900,1095,1325,401,277,18,262,33100,1500,31900,12440,110,5.7,9,9,16.0,2743,9,999999999,160,0.0850,0,88,0.170,0.0,1.0 +2003,6,10,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,7.2,35,87800,961,1325,378,121,0,121,15000,0,15000,6260,140,4.6,6,6,16.0,77777,9,999999999,160,0.0850,0,88,0.170,0.0,1.0 +2003,6,10,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,10.0,67,87700,786,1325,355,598,617,232,62700,63000,25200,5510,240,4.6,9,8,9.6,2286,9,999999999,170,0.0850,0,88,0.170,3.0,1.0 +2003,6,10,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,10.6,65,87700,584,1325,369,403,613,133,41400,58400,15600,2570,60,2.1,10,9,16.0,3353,9,999999999,160,0.0850,0,88,0.170,0.0,1.0 +2003,6,10,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,8.9,60,87800,368,1325,347,253,585,90,25500,49500,11800,1570,350,6.7,9,6,16.0,77777,9,999999999,160,0.0850,0,88,0.170,0.0,1.0 +2003,6,10,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,9.4,69,87900,155,1325,349,0,0,0,0,0,0,0,320,3.1,9,8,16.0,2743,9,999999999,150,0.0850,0,88,0.170,0.0,1.0 +2003,6,10,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,10.6,86,88000,8,409,357,0,0,0,0,0,0,0,270,5.7,10,10,6.4,701,9,999999999,150,0.0850,0,88,0.170,4.0,1.0 +2003,6,10,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,10.6,84,88000,0,0,359,0,0,0,0,0,0,0,130,3.1,10,10,16.0,1829,9,999999999,139,0.0850,0,88,0.170,0.0,1.0 +2003,6,10,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,10.6,86,87400,0,0,335,0,0,0,0,0,0,0,160,1.5,9,7,16.0,77777,9,999999999,139,0.0850,0,88,0.170,0.0,1.0 +2003,6,10,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,9.4,89,87800,0,0,316,0,0,0,0,0,0,0,250,2.1,5,4,16.0,77777,9,999999999,139,0.0850,0,88,0.170,0.0,1.0 +2003,6,11,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,8.3,86,87800,0,0,315,0,0,0,0,0,0,0,240,3.6,5,5,16.0,77777,9,999999999,129,0.0860,0,88,0.170,0.0,1.0 +2003,6,11,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,7.8,83,87800,0,0,326,0,0,0,0,0,0,0,300,4.1,8,8,16.0,1829,9,999999999,129,0.0860,0,88,0.170,0.0,1.0 +2003,6,11,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,8.3,89,87800,0,0,310,0,0,0,0,0,0,0,90,3.1,5,4,16.0,77777,9,999999999,129,0.0860,0,88,0.170,0.0,1.0 +2003,6,11,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,7.2,89,87800,0,0,302,0,0,0,0,0,0,0,0,0.0,3,3,16.0,77777,9,999999999,120,0.0860,0,88,0.170,0.0,1.0 +2003,6,11,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,6.7,86,87500,14,519,313,0,0,0,0,0,0,0,270,4.1,10,7,16.0,2286,9,999999999,120,0.0860,0,88,0.170,0.0,1.0 +2003,6,11,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,6.7,86,87900,173,1325,318,56,77,46,6100,4900,5500,970,10,2.1,9,8,16.0,2743,9,999999999,120,0.0860,0,88,0.170,0.0,1.0 +2003,6,11,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,7.8,80,88000,388,1325,329,170,141,128,18300,12700,14600,2850,0,0.0,8,8,16.0,2134,9,999999999,120,0.0860,0,88,0.170,0.0,1.0 +2003,6,11,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,8.3,74,88100,603,1325,320,332,326,184,35500,33200,20400,4020,320,1.5,3,3,16.0,77777,9,999999999,120,0.0860,0,88,0.170,0.0,1.0 +2003,6,11,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,5.0,46,88200,803,1325,340,552,590,193,59000,60600,22200,4570,280,7.2,5,5,16.0,77777,9,999999999,120,0.0860,0,88,0.170,0.0,1.0 +2003,6,11,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,4.4,46,88200,975,1325,366,319,89,254,35700,9500,28600,8100,270,6.2,10,10,16.0,2591,9,999999999,120,0.0860,0,88,0.170,0.0,1.0 +2003,6,11,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,3.9,38,87600,1105,1325,377,782,565,309,83600,59000,34300,12580,270,7.7,10,10,16.0,1981,9,999999999,120,0.0860,0,88,0.170,0.0,1.0 +2003,6,11,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,3.9,36,88300,1186,1325,354,906,795,192,94300,79700,22800,9090,230,8.2,6,6,16.0,77777,9,999999999,120,0.0860,0,88,0.170,0.0,1.0 +2003,6,11,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,3.3,35,88300,1213,1325,379,974,853,192,101800,85600,23300,10220,280,6.2,10,10,16.0,2591,9,999999999,120,0.0860,0,88,0.170,0.0,1.0 +2003,6,11,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,3.3,31,88300,1182,1325,372,704,320,418,76800,34800,45800,20180,280,7.7,8,8,16.0,2438,9,999999999,120,0.0860,0,88,0.170,0.0,1.0 +2003,6,11,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,2.2,29,88300,1096,1325,352,412,73,351,45400,7500,39200,14770,280,7.2,3,3,16.0,77777,9,999999999,110,0.0860,0,88,0.170,0.0,1.0 +2003,6,11,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,2.2,28,88300,962,1325,363,603,386,323,65300,41600,35000,9760,300,6.7,6,6,16.0,77777,9,999999999,100,0.0860,0,88,0.170,0.0,1.0 +2003,6,11,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,2.8,30,87500,788,1325,390,363,137,281,39400,14300,30900,7560,290,6.2,10,10,16.0,2743,9,999999999,100,0.0860,0,88,0.170,0.0,1.0 +2003,6,11,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,2.8,29,88200,586,1325,374,426,593,164,44400,58000,18800,3340,300,6.7,8,8,16.0,2591,9,999999999,100,0.0860,0,88,0.170,0.0,1.0 +2003,6,11,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,3.3,31,88200,370,1325,353,252,591,87,25600,50200,11500,1530,300,6.2,3,3,16.0,77777,9,999999999,100,0.0860,0,88,0.170,0.0,1.0 +2003,6,11,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,2.8,34,88200,156,1325,328,0,0,0,0,0,0,0,290,5.7,0,0,16.0,77777,9,999999999,110,0.0860,0,88,0.170,0.0,1.0 +2003,6,11,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,3.3,41,88100,9,408,325,0,0,0,0,0,0,0,300,5.2,1,1,16.0,77777,9,999999999,110,0.0860,0,88,0.170,0.0,1.0 +2003,6,11,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,5.0,49,88200,0,0,322,0,0,0,0,0,0,0,90,2.1,1,1,16.0,77777,9,999999999,110,0.0860,0,88,0.170,0.0,1.0 +2003,6,11,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,4.4,57,87700,0,0,303,0,0,0,0,0,0,0,220,3.1,0,0,16.0,77777,9,999999999,110,0.0860,0,88,0.170,0.0,1.0 +2003,6,11,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,4.4,59,88100,0,0,300,0,0,0,0,0,0,0,240,2.6,0,0,16.0,77777,9,999999999,110,0.0860,0,88,0.170,0.0,1.0 +2003,6,12,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,4.4,59,88100,0,0,300,0,0,0,0,0,0,0,270,4.1,0,0,16.0,77777,9,999999999,110,0.0860,0,88,0.170,0.0,1.0 +2003,6,12,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,5.0,77,88000,0,0,287,0,0,0,0,0,0,0,40,1.5,0,0,16.0,77777,9,999999999,110,0.0860,0,88,0.170,0.0,1.0 +2003,6,12,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,5.0,74,88000,0,0,289,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,110,0.0860,0,88,0.170,0.0,1.0 +2003,6,12,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,5.0,77,88000,0,0,287,0,0,0,0,0,0,0,50,1.5,0,0,16.0,77777,9,999999999,100,0.0860,0,88,0.170,0.0,1.0 +2003,6,12,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,4.4,71,87700,14,519,289,0,0,0,0,0,0,0,230,1.5,0,0,16.0,77777,9,999999999,100,0.0860,0,88,0.170,0.0,1.0 +2003,6,12,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,5.6,77,88100,174,1325,290,79,345,34,8100,21900,5200,610,310,2.1,0,0,16.0,77777,9,999999999,100,0.0860,0,88,0.170,0.0,1.0 +2003,6,12,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,5.6,62,88200,388,1325,304,233,592,60,24400,52200,9100,1150,0,0.0,0,0,16.0,77777,9,999999999,100,0.0860,0,88,0.170,0.0,1.0 +2003,6,12,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,6.1,55,88300,603,1325,314,410,726,79,42800,70300,10800,1650,80,2.1,0,0,16.0,77777,9,999999999,110,0.0860,0,88,0.170,0.0,1.0 +2003,6,12,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,6.1,48,88300,803,1325,330,599,853,81,62500,84400,11200,1890,80,2.1,1,1,16.0,77777,9,999999999,120,0.0860,0,88,0.170,0.0,1.0 +2003,6,12,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,5.6,42,88400,975,1325,331,749,904,83,78100,90400,11500,2410,70,2.6,0,0,16.0,77777,9,999999999,129,0.0860,0,88,0.170,0.0,1.0 +2003,6,12,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,5.6,39,87700,1105,1325,336,873,922,102,90400,92400,13100,3550,70,2.6,0,0,16.0,77777,9,999999999,139,0.0860,0,88,0.170,0.0,1.0 +2003,6,12,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,5.0,35,88400,1187,1325,340,953,945,104,98500,94900,13300,4650,60,2.6,0,0,16.0,77777,9,999999999,139,0.0860,0,88,0.170,0.0,1.0 +2003,6,12,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,5.0,31,88400,1213,1325,355,974,949,103,100700,95300,13300,5130,60,3.1,1,1,16.0,77777,9,999999999,139,0.0860,0,88,0.170,0.0,1.0 +2003,6,12,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,4.4,29,88400,1182,1325,365,934,917,113,96300,92000,14000,4830,50,2.6,4,3,16.0,77777,9,999999999,139,0.0860,0,88,0.170,0.0,1.0 +2003,6,12,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,3.9,27,88400,1097,1325,376,862,929,91,89500,93200,12200,3240,90,2.6,7,6,16.0,77777,9,999999999,129,0.0860,0,88,0.170,0.0,1.0 +2003,6,12,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,1.7,23,88400,963,1325,352,751,876,113,77500,87300,13900,2670,60,3.1,0,0,16.0,77777,9,999999999,120,0.0860,0,88,0.170,0.0,1.0 +2003,6,12,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,2.2,23,87500,789,1325,374,583,822,93,62000,82300,12900,2230,30,3.1,4,4,16.0,77777,9,999999999,120,0.0860,0,88,0.170,0.0,1.0 +2003,6,12,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,1.7,22,88300,587,1325,362,441,780,95,46400,75800,12800,1950,60,3.6,1,1,16.0,77777,9,999999999,120,0.0860,0,88,0.170,0.0,1.0 +2003,6,12,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,1.1,22,88300,372,1325,358,261,647,80,26700,55400,11200,1440,70,2.1,1,1,16.0,77777,9,999999999,120,0.0860,0,88,0.170,0.0,1.0 +2003,6,12,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,4.4,29,88200,158,1325,350,0,0,0,0,0,0,0,140,2.6,0,0,16.0,77777,9,999999999,120,0.0860,0,88,0.170,0.0,1.0 +2003,6,12,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,3.9,33,88200,9,430,337,0,0,0,0,0,0,0,200,2.6,0,0,16.0,77777,9,999999999,120,0.0860,0,88,0.170,0.0,1.0 +2003,6,12,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,6.1,51,88100,0,0,319,0,0,0,0,0,0,0,260,3.6,0,0,16.0,77777,9,999999999,120,0.0860,0,88,0.170,0.0,1.0 +2003,6,12,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,5.0,51,87500,0,0,313,0,0,0,0,0,0,0,260,3.1,0,0,16.0,77777,9,999999999,120,0.0860,0,88,0.170,0.0,1.0 +2003,6,12,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,5.6,53,88100,0,0,314,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,120,0.0860,0,88,0.170,0.0,1.0 +2003,6,13,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,5.6,57,88000,0,0,309,0,0,0,0,0,0,0,170,2.1,0,0,16.0,77777,9,999999999,120,0.0860,0,88,0.170,0.0,1.0 +2003,6,13,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,5.0,61,88000,0,0,301,0,0,0,0,0,0,0,280,3.6,0,0,16.0,77777,9,999999999,120,0.0860,0,88,0.170,0.0,1.0 +2003,6,13,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,5.0,66,87900,0,0,296,0,0,0,0,0,0,0,270,3.1,0,0,16.0,77777,9,999999999,129,0.0860,0,88,0.170,0.0,1.0 +2003,6,13,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,5.0,66,87900,0,0,296,0,0,0,0,0,0,0,270,2.1,0,0,16.0,77777,9,999999999,139,0.0860,0,88,0.170,0.0,1.0 +2003,6,13,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,4.4,65,87600,14,541,294,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,150,0.0860,0,88,0.170,0.0,1.0 +2003,6,13,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,6.1,68,88000,174,1324,300,76,314,35,7700,19900,5100,620,0,0.0,0,0,16.0,77777,9,999999999,139,0.0860,0,88,0.170,0.0,1.0 +2003,6,13,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,6.7,69,88100,388,1324,303,225,527,70,23200,46200,9700,1310,350,2.1,0,0,16.0,77777,9,999999999,139,0.0860,0,88,0.170,0.0,1.0 +2003,6,13,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,6.7,58,88100,603,1324,315,405,669,100,42600,65200,12800,2070,0,0.0,0,0,16.0,77777,9,999999999,139,0.0860,0,88,0.170,0.0,1.0 +2003,6,13,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,7.2,52,88200,803,1324,325,578,801,92,61700,80400,12900,2250,0,0.0,0,0,16.0,77777,9,999999999,139,0.0860,0,88,0.170,0.0,1.0 +2003,6,13,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,8.3,47,88300,975,1324,339,743,786,164,79300,80300,20100,5000,350,2.1,0,0,16.0,77777,9,999999999,139,0.0860,0,88,0.170,0.0,1.0 +2003,6,13,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,10.6,45,87500,1105,1324,357,673,345,385,73300,37400,42000,15100,340,3.1,0,0,16.0,77777,9,999999999,139,0.0860,0,88,0.170,0.0,1.0 +2003,6,13,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,10.6,43,88300,1187,1324,367,147,0,147,18600,0,18600,7730,320,4.6,1,1,16.0,77777,9,999999999,150,0.0860,0,88,0.170,0.0,1.0 +2003,6,13,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.0,12.0,56,88200,1213,1324,366,151,0,151,19100,0,19100,7940,240,5.1,4,4,16.1,77777,9,999999999,160,0.0860,0,88,0.170,2.0,1.0 +2003,6,13,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.0,10.0,63,88200,1183,1324,378,149,0,149,18800,0,18800,7820,270,3.1,10,10,16.0,2896,9,999999999,160,0.0860,0,88,0.170,0.0,1.0 +2003,6,13,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,10.6,63,88300,1098,1324,372,167,0,167,20700,0,20700,8580,260,2.6,10,9,16.0,2896,9,999999999,160,0.0860,0,88,0.170,0.0,1.0 +2003,6,13,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,9.4,62,88400,964,1324,365,127,0,127,15700,0,15700,6540,230,8.8,10,9,16.0,2134,9,999999999,150,0.0860,0,88,0.170,0.0,1.0 +2003,6,13,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,10.0,65,87800,790,1324,348,505,417,255,54200,44300,27700,6360,180,3.1,10,6,16.0,77777,9,999999999,139,0.0860,0,88,0.170,0.0,1.0 +2003,6,13,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,8.3,50,88500,589,1324,354,425,580,167,44200,56800,19000,3410,0,0.0,8,5,16.0,77777,9,999999999,150,0.0860,0,88,0.170,0.0,1.0 +2003,6,13,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,9.4,54,88500,373,1324,355,210,305,124,22000,26800,14400,2540,10,2.1,8,5,16.0,77777,9,999999999,150,0.0860,0,88,0.170,0.0,1.0 +2003,6,13,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,10.0,63,88500,160,1324,348,0,0,0,0,0,0,0,140,2.6,6,5,16.0,77777,9,999999999,150,0.0860,0,88,0.170,0.0,1.0 +2003,6,13,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,10.0,67,88500,10,430,346,0,0,0,0,0,0,0,200,1.5,8,6,16.0,77777,9,999999999,139,0.0860,0,88,0.170,0.0,1.0 +2003,6,13,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,10.6,78,88500,0,0,330,0,0,0,0,0,0,0,230,3.1,3,3,16.0,77777,9,999999999,129,0.0860,0,88,0.170,0.0,1.0 +2003,6,13,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,10.0,80,88000,0,0,359,0,0,0,0,0,0,0,90,1.5,10,10,16.0,2743,9,999999999,129,0.0860,0,88,0.170,0.0,1.0 +2003,6,13,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,10.0,77,88400,0,0,344,0,0,0,0,0,0,0,0,0.0,8,8,16.0,3048,9,999999999,129,0.0860,0,88,0.170,0.0,1.0 +2003,6,14,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,10.0,83,88500,0,0,315,0,0,0,0,0,0,0,0,0.0,1,1,16.0,77777,9,999999999,120,0.0860,0,88,0.170,0.0,1.0 +2003,6,14,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,9.4,86,88500,0,0,309,0,0,0,0,0,0,0,0,0.0,1,1,16.0,77777,9,999999999,120,0.0860,0,88,0.170,0.0,1.0 +2003,6,14,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,9.4,89,88500,0,0,311,0,0,0,0,0,0,0,0,0.0,2,2,16.0,77777,9,999999999,129,0.0860,0,88,0.170,0.0,1.0 +2003,6,14,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,7.8,93,88400,0,0,296,0,0,0,0,0,0,0,0,0.0,1,1,16.0,77777,9,999999999,129,0.0860,0,88,0.170,0.0,1.0 +2003,6,14,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,8.3,89,88100,14,541,295,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,139,0.0860,0,88,0.170,0.0,1.0 +2003,6,14,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,9.4,89,88500,174,1324,314,82,423,26,8300,29000,4500,510,0,0.0,4,3,16.0,77777,9,999999999,139,0.0860,0,88,0.170,0.0,1.0 +2003,6,14,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,8.9,89,88500,388,1324,311,246,674,49,25700,60000,8100,1000,0,0.0,3,3,16.0,77777,9,999999999,150,0.0860,0,88,0.170,0.0,1.0 +2003,6,14,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,10.0,80,88600,603,1324,329,386,595,115,40200,57600,13900,2320,0,0.0,7,5,16.0,77777,9,999999999,150,0.0860,0,88,0.170,0.0,1.0 +2003,6,14,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,10.0,69,88700,803,1324,335,557,719,120,59400,72900,15200,2940,0,0.0,5,3,16.0,77777,9,999999999,160,0.0860,0,88,0.170,0.0,1.0 +2003,6,14,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,10.6,63,88800,974,1324,346,705,762,143,73600,76400,17300,3980,360,1.5,3,3,16.0,77777,9,999999999,160,0.0860,0,88,0.170,0.0,1.0 +2003,6,14,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,11.7,57,88100,1105,1324,370,844,803,173,88000,80600,20700,6300,340,2.6,6,6,16.0,77777,9,999999999,170,0.0860,0,88,0.170,0.0,1.0 +2003,6,14,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,11.7,57,88800,1187,1324,380,853,586,326,91700,61300,36700,17340,280,3.1,8,8,16.0,3048,9,999999999,170,0.0860,0,88,0.170,0.0,1.0 +2003,6,14,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,11.7,48,88800,1213,1324,394,538,144,406,59500,15400,45400,20720,320,1.5,8,8,16.0,77777,9,999999999,160,0.0860,0,88,0.170,0.0,1.0 +2003,6,14,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,8.9,37,88800,1183,1324,376,573,163,427,63000,17400,47500,19880,0,0.0,4,3,16.0,77777,9,999999999,160,0.0860,0,88,0.170,0.0,1.0 +2003,6,14,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,6.7,30,88800,1098,1324,400,244,24,224,27100,2400,25000,9990,0,0.0,8,8,16.0,77777,9,999999999,160,0.0860,0,88,0.170,0.0,1.0 +2003,6,14,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,6.1,28,88800,965,1324,410,697,496,335,72400,51300,35000,10240,120,3.1,9,9,16.0,77777,9,999999999,160,0.0860,0,88,0.170,0.0,1.0 +2003,6,14,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,8.3,32,87900,791,1324,394,384,180,276,41800,18800,30500,7440,140,3.1,7,6,16.0,77777,9,999999999,160,0.0860,0,88,0.170,0.0,1.0 +2003,6,14,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,7.8,31,88800,590,1324,384,63,0,63,7700,0,7700,2960,330,5.2,3,3,16.0,77777,9,999999999,160,0.0860,0,88,0.170,0.0,1.0 +2003,6,14,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,8.3,35,88800,375,1324,407,40,0,40,4800,0,4800,1730,310,2.6,9,9,16.0,3048,9,999999999,160,0.0860,0,88,0.170,0.0,1.0 +2003,6,14,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,7.2,35,88800,161,1324,397,0,0,0,0,0,0,0,310,5.2,9,9,16.0,77777,9,999999999,160,0.0860,0,88,0.170,0.0,1.0 +2003,6,14,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,7.2,41,88800,10,452,371,0,0,0,0,0,0,0,280,3.1,8,7,16.0,77777,9,999999999,160,0.0860,0,88,0.170,0.0,1.0 +2003,6,14,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,8.3,47,88800,0,0,359,0,0,0,0,0,0,0,310,3.6,6,5,16.0,77777,9,999999999,170,0.0860,0,88,0.170,0.0,1.0 +2003,6,14,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,8.9,56,88200,0,0,357,0,0,0,0,0,0,0,270,3.1,8,7,16.0,77777,9,999999999,170,0.0860,0,88,0.170,0.0,1.0 +2003,6,14,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,7.2,47,88800,0,0,373,0,0,0,0,0,0,0,240,4.6,10,9,16.0,77777,9,999999999,170,0.0860,0,88,0.170,0.0,1.0 +2003,6,15,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,6.1,45,88800,0,0,369,0,0,0,0,0,0,0,240,4.1,10,9,16.0,77777,9,999999999,160,0.0860,0,88,0.170,0.0,1.0 +2003,6,15,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,6.1,51,88800,0,0,350,0,0,0,0,0,0,0,280,3.1,8,8,16.0,77777,9,999999999,160,0.0860,0,88,0.170,0.0,1.0 +2003,6,15,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,5.6,51,88800,0,0,327,0,0,0,0,0,0,0,250,4.6,2,2,16.0,77777,9,999999999,160,0.0860,0,88,0.170,0.0,1.0 +2003,6,15,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,6.1,59,88700,0,0,340,0,0,0,0,0,0,0,270,3.1,8,8,16.0,2438,9,999999999,150,0.0860,0,88,0.170,0.0,1.0 +2003,6,15,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,6.1,62,88300,14,541,328,0,0,0,0,0,0,0,270,3.6,6,6,16.0,77777,9,999999999,139,0.0860,0,88,0.170,0.0,1.0 +2003,6,15,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,6.7,58,88800,174,1324,331,31,0,31,3600,0,3600,1130,250,3.6,4,4,16.0,77777,9,999999999,150,0.0860,0,88,0.170,0.0,1.0 +2003,6,15,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,7.2,50,88900,388,1324,339,98,5,96,11000,300,11000,3570,0,0.0,2,2,16.0,77777,9,999999999,150,0.0860,0,88,0.170,0.0,1.0 +2003,6,15,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,6.7,47,89000,603,1324,352,396,549,145,41900,54100,17200,2930,0,0.0,6,6,16.0,77777,9,999999999,150,0.0860,0,88,0.170,0.0,1.0 +2003,6,15,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,7.2,43,89100,803,1324,355,578,765,113,60300,76100,14100,2570,0,0.0,5,4,16.0,77777,9,999999999,139,0.0860,0,88,0.170,0.0,1.0 +2003,6,15,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,7.2,38,89100,974,1324,369,683,650,204,71700,65700,23300,6060,60,2.1,5,5,16.0,77777,9,999999999,139,0.0860,0,88,0.170,0.0,1.0 +2003,6,15,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,5.6,31,88400,1105,1324,373,679,405,341,72000,42200,36700,13990,90,1.5,5,4,16.0,77777,9,999999999,139,0.0860,0,88,0.170,0.0,1.0 +2003,6,15,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,6.1,32,89100,1187,1324,376,917,789,208,98400,80900,25700,10930,40,3.1,5,5,16.0,77777,9,999999999,139,0.0860,0,88,0.170,0.0,1.0 +2003,6,15,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,5.6,28,89100,1214,1324,381,931,775,219,99800,79400,26900,12820,20,2.6,5,4,16.0,77777,9,999999999,150,0.0860,0,88,0.170,0.0,1.0 +2003,6,15,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,5.6,26,89100,1184,1324,387,709,344,401,77700,37400,44200,19440,0,0.0,4,4,16.0,77777,9,999999999,150,0.0860,0,88,0.170,0.0,1.0 +2003,6,15,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,5.6,25,89100,1099,1324,392,617,297,370,67300,32200,40500,14260,40,3.1,6,5,16.0,77777,9,999999999,150,0.0860,0,88,0.170,0.0,1.0 +2003,6,15,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,5.6,24,89100,966,1324,404,342,55,301,37600,5600,33500,11160,90,2.6,8,7,16.0,77777,9,999999999,160,0.0860,0,88,0.170,0.0,1.0 +2003,6,15,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,5.6,24,88100,792,1324,399,490,373,266,52400,39600,28700,6700,130,3.1,8,6,16.0,77777,9,999999999,160,0.0860,0,88,0.170,0.0,1.0 +2003,6,15,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,6.7,31,89000,591,1324,390,228,64,199,25000,6300,22100,5650,180,6.2,9,7,16.0,77777,9,999999999,160,0.0860,0,88,0.170,0.0,1.0 +2003,6,15,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,6.7,31,89000,376,1324,386,60,0,60,7000,0,7000,2450,250,4.1,8,6,16.0,77777,9,999999999,170,0.0860,0,88,0.170,0.0,1.0 +2003,6,15,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,7.2,35,89000,163,1324,382,0,0,0,0,0,0,0,180,2.6,10,7,16.0,3658,9,999999999,170,0.0860,0,88,0.170,0.0,1.0 +2003,6,15,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,6.7,35,89000,10,452,374,0,0,0,0,0,0,0,230,2.1,8,6,16.0,77777,9,999999999,160,0.0860,0,88,0.170,0.0,1.0 +2003,6,15,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,6.7,38,89000,0,0,369,0,0,0,0,0,0,0,260,3.6,7,6,16.0,77777,9,999999999,160,0.0860,0,88,0.170,0.0,1.0 +2003,6,15,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,8.9,54,88400,0,0,346,0,0,0,0,0,0,0,0,0.0,3,3,16.0,77777,9,999999999,160,0.0860,0,88,0.170,0.0,1.0 +2003,6,15,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,8.9,62,89000,0,0,322,0,0,0,0,0,0,0,260,2.6,0,0,16.0,77777,9,999999999,150,0.0860,0,88,0.170,0.0,1.0 +2003,6,16,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,8.3,56,89000,0,0,333,0,0,0,0,0,0,0,260,4.1,1,1,16.0,77777,9,999999999,150,0.0860,0,88,0.170,0.0,1.0 +2003,6,16,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,8.3,64,88900,0,0,317,0,0,0,0,0,0,0,290,3.1,0,0,16.0,77777,9,999999999,150,0.0860,0,88,0.170,0.0,1.0 +2003,6,16,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,8.9,67,89000,0,0,317,0,0,0,0,0,0,0,250,3.1,0,0,16.0,77777,9,999999999,150,0.0860,0,88,0.170,0.0,1.0 +2003,6,16,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,8.3,69,89000,0,0,312,0,0,0,0,0,0,0,250,3.6,0,0,16.0,77777,9,999999999,139,0.0860,0,88,0.170,0.0,1.0 +2003,6,16,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,8.3,80,88600,14,540,302,0,0,0,0,0,0,0,90,2.1,0,0,16.0,77777,9,999999999,139,0.0860,0,88,0.170,0.0,1.0 +2003,6,16,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,8.9,70,89100,174,1324,315,79,346,34,8100,22000,5200,610,0,0.0,0,0,16.0,77777,9,999999999,139,0.0860,0,88,0.170,0.0,1.0 +2003,6,16,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,9.4,64,89200,388,1324,323,229,565,64,23900,49700,9300,1210,0,0.0,0,0,16.0,77777,9,999999999,139,0.0860,0,88,0.170,0.0,1.0 +2003,6,16,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,10.0,56,89300,603,1324,336,420,743,81,43700,71900,10900,1670,360,2.6,0,0,16.0,77777,9,999999999,139,0.0860,0,88,0.170,0.0,1.0 +2003,6,16,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,8.3,45,89300,802,1324,342,594,841,83,61900,83200,11300,1910,360,1.5,0,0,16.0,77777,9,999999999,139,0.0860,0,88,0.170,0.0,1.0 +2003,6,16,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,8.9,43,89300,974,1324,350,738,880,89,76700,87900,11900,2500,0,0.0,0,0,16.0,77777,9,999999999,139,0.0860,0,88,0.170,0.0,1.0 +2003,6,16,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,8.9,38,88600,1105,1324,358,850,875,118,87600,87600,14300,3840,360,2.6,0,0,16.0,77777,9,999999999,139,0.0860,0,88,0.170,0.0,1.0 +2003,6,16,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,8.3,35,89400,1187,1324,379,952,903,141,97600,90400,16300,5630,0,0.0,3,3,16.0,77777,9,999999999,139,0.0860,0,88,0.170,0.0,1.0 +2003,6,16,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,7.2,28,89400,1214,1324,388,949,871,149,97100,87200,17000,6580,20,4.1,3,3,16.0,77777,9,999999999,150,0.0860,0,88,0.170,0.0,1.0 +2003,6,16,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,7.8,27,89400,1184,1324,379,946,899,140,96900,90000,16200,5540,20,3.6,0,0,16.0,77777,9,999999999,150,0.0860,0,88,0.170,0.0,1.0 +2003,6,16,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.9,8.3,27,89300,1100,1324,382,855,923,87,89000,92600,11900,3180,30,4.1,0,0,16.0,77777,9,999999999,150,0.0860,0,88,0.170,0.0,1.0 +2003,6,16,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,29.4,6.7,24,89300,966,1324,390,730,809,138,76500,81200,17000,3830,30,3.6,1,1,16.0,77777,9,999999999,139,0.0860,0,88,0.170,0.0,1.0 +2003,6,16,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.0,7.2,24,88300,793,1324,386,582,653,190,60000,64600,21200,4290,20,5.7,0,0,16.0,77777,9,999999999,139,0.0860,0,88,0.170,0.0,1.0 +2003,6,16,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,5.6,24,89200,592,1324,373,157,0,157,17900,0,17900,6300,360,2.6,0,0,16.0,77777,9,999999999,139,0.0860,0,88,0.170,0.0,1.0 +2003,6,16,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,7.8,31,89200,377,1324,413,60,0,60,7000,0,7000,2450,240,8.8,9,9,16.0,3048,9,999999999,139,0.0860,0,88,0.170,0.0,1.0 +2003,6,16,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,6.1,32,89200,164,1324,367,0,0,0,0,0,0,0,340,4.1,2,2,16.0,77777,9,999999999,139,0.0860,0,88,0.170,0.0,1.0 +2003,6,16,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,10.0,49,89000,11,474,346,0,0,0,0,0,0,0,240,6.2,0,0,16.0,77777,9,999999999,139,0.0860,0,88,0.170,0.0,1.0 +2003,6,16,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,11.7,63,89100,0,0,338,0,0,0,0,0,0,0,290,3.6,0,0,16.0,77777,9,999999999,139,0.0860,0,88,0.170,0.0,1.0 +2003,6,16,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,7.8,50,88500,0,0,331,0,0,0,0,0,0,0,240,4.1,0,0,16.0,77777,9,999999999,139,0.0860,0,88,0.170,0.0,1.0 +2003,6,16,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,10.0,67,89000,0,0,323,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,139,0.0860,0,88,0.170,0.0,1.0 +2003,6,17,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,10.0,77,88900,0,0,314,0,0,0,0,0,0,0,360,1.5,1,0,16.0,77777,9,999999999,129,0.0860,0,88,0.170,0.0,1.0 +2003,6,17,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,9.4,69,89000,0,0,318,0,0,0,0,0,0,0,0,0.0,1,0,16.0,77777,9,999999999,129,0.0860,0,88,0.170,0.0,1.0 +2003,6,17,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,8.3,69,89000,0,0,312,0,0,0,0,0,0,0,0,0.0,1,0,16.0,77777,9,999999999,150,0.0860,0,88,0.170,0.0,1.0 +2003,6,17,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,8.3,72,88900,0,0,309,0,0,0,0,0,0,0,310,1.5,1,0,16.0,77777,9,999999999,170,0.0860,0,88,0.170,0.0,1.0 +2003,6,17,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,8.3,77,88600,14,540,304,0,0,0,0,0,0,0,0,0.0,1,0,16.0,77777,9,999999999,179,0.0860,0,88,0.170,0.0,1.0 +2003,6,17,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,8.9,67,89100,174,1323,317,79,346,34,8100,22000,5200,610,0,0.0,1,0,16.0,77777,9,999999999,179,0.0860,0,88,0.170,0.0,1.0 +2003,6,17,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,10.0,69,89100,387,1323,321,233,597,58,24400,52800,9000,1120,0,0.0,1,0,16.0,77777,9,999999999,179,0.0860,0,88,0.170,0.0,1.0 +2003,6,17,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,10.0,54,89300,602,1323,338,415,760,69,44000,74000,10300,1520,0,0.0,1,0,16.0,77777,9,999999999,179,0.0860,0,88,0.170,0.0,1.0 +2003,6,17,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,10.0,47,89300,802,1323,349,578,800,92,61600,80200,12900,2250,0,0.0,1,0,16.0,77777,9,999999999,189,0.0860,0,88,0.170,0.0,1.0 +2003,6,17,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,10.0,41,89400,973,1323,360,738,851,111,76300,84900,13700,2720,0,0.0,1,0,16.0,77777,9,999999999,189,0.0860,0,88,0.170,0.0,1.0 +2003,6,17,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,10.6,38,88500,1105,1323,371,856,887,114,88300,88800,14000,3780,30,2.6,1,0,16.0,77777,9,999999999,200,0.0860,0,88,0.170,0.0,1.0 +2003,6,17,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,11.1,37,89400,1187,1323,377,952,945,103,98500,94900,13300,4640,50,3.1,1,0,16.0,77777,9,999999999,200,0.0860,0,88,0.170,0.0,1.0 +2003,6,17,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,29.4,11.1,32,89400,1214,1323,388,973,907,140,99800,90900,16200,6360,20,4.1,1,0,16.0,77777,9,999999999,200,0.0860,0,88,0.170,0.0,1.0 +2003,6,17,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,31.1,9.4,26,89300,1184,1323,395,871,724,222,93000,74000,26700,11520,60,3.6,1,0,16.0,77777,9,999999999,200,0.0860,0,88,0.170,0.0,1.0 +2003,6,17,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,31.7,7.8,23,89300,1100,1323,396,803,789,146,85200,79800,18800,5480,50,4.6,1,0,16.0,77777,9,999999999,179,0.0860,0,88,0.170,0.0,1.0 +2003,6,17,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,31.7,6.7,21,89200,967,1323,418,710,784,136,74500,78800,16800,3800,30,5.2,10,5,16.0,77777,9,999999999,160,0.0860,0,88,0.170,0.0,1.0 +2003,6,17,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.0,8.3,26,88100,794,1323,401,582,641,197,62100,65700,22600,4640,120,6.7,7,2,16.0,77777,9,999999999,150,0.0860,0,88,0.170,0.0,1.0 +2003,6,17,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,29.4,6.7,24,89100,593,1323,402,235,71,204,25900,7000,22700,5770,110,5.2,5,4,16.0,77777,9,999999999,139,0.0860,0,88,0.170,0.0,1.0 +2003,6,17,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,9.4,32,89100,379,1323,398,208,247,137,21600,21800,15300,2870,140,5.7,6,4,16.0,77777,9,999999999,139,0.0860,0,88,0.170,0.0,1.0 +2003,6,17,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,9.4,34,89000,165,1323,395,0,0,0,0,0,0,0,120,6.2,6,5,16.0,77777,9,999999999,139,0.0860,0,88,0.170,0.0,1.0 +2003,6,17,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,9.4,36,88900,11,474,386,0,0,0,0,0,0,0,110,5.7,4,4,16.0,77777,9,999999999,139,0.0860,0,88,0.170,0.0,1.0 +2003,6,17,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,10.6,45,88900,0,0,376,0,0,0,0,0,0,0,0,0.0,4,4,16.0,77777,9,999999999,139,0.0860,0,88,0.170,0.0,1.0 +2003,6,17,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,10.0,49,88200,0,0,364,0,0,0,0,0,0,0,0,0.0,4,4,16.0,77777,9,999999999,129,0.0860,0,88,0.170,0.0,1.0 +2003,6,17,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,8.9,52,88700,0,0,335,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,139,0.0860,0,88,0.170,0.0,1.0 +2003,6,18,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,8.9,58,88600,0,0,327,0,0,0,0,0,0,0,260,1.5,0,0,16.0,77777,9,999999999,139,0.0870,0,88,0.170,0.0,1.0 +2003,6,18,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,8.9,54,88600,0,0,332,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,139,0.0870,0,88,0.170,0.0,1.0 +2003,6,18,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,8.9,60,88600,0,0,325,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,150,0.0870,0,88,0.170,0.0,1.0 +2003,6,18,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,9.4,69,88500,0,0,324,0,0,0,0,0,0,0,280,3.1,1,1,16.0,77777,9,999999999,160,0.0870,0,88,0.170,0.0,1.0 +2003,6,18,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,8.3,62,88100,14,540,333,0,0,0,0,0,0,0,0,0.0,3,3,16.0,77777,9,999999999,160,0.0870,0,88,0.170,0.0,1.0 +2003,6,18,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,9.4,64,88500,173,1323,329,79,386,28,8100,24800,4900,520,260,3.1,1,1,16.0,77777,9,999999999,160,0.0870,0,88,0.170,0.0,1.0 +2003,6,18,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,10.0,60,88600,387,1323,331,233,597,59,24500,52700,9100,1130,20,1.5,0,0,16.0,77777,9,999999999,160,0.0870,0,88,0.170,0.0,1.0 +2003,6,18,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,10.0,54,88600,602,1323,338,415,760,69,44000,74000,10300,1510,60,1.5,0,0,16.0,77777,9,999999999,160,0.0870,0,88,0.170,0.0,1.0 +2003,6,18,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,10.0,44,88600,802,1323,354,588,818,92,62700,82000,13000,2250,60,2.1,0,0,16.0,77777,9,999999999,160,0.0870,0,88,0.170,0.0,1.0 +2003,6,18,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,9.4,34,88600,973,1323,373,738,851,111,76200,84900,13700,2720,50,4.1,0,0,16.0,77777,9,999999999,160,0.0870,0,88,0.170,0.0,1.0 +2003,6,18,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.9,8.3,27,87700,1104,1323,382,867,916,101,89800,91800,13000,3530,70,2.6,0,0,16.0,77777,9,999999999,150,0.0870,0,88,0.170,0.0,1.0 +2003,6,18,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,31.7,8.3,23,88600,1186,1323,397,940,927,108,97200,93000,13600,4790,90,6.7,0,0,16.0,77777,9,999999999,150,0.0870,0,88,0.170,0.0,1.0 +2003,6,18,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,32.2,7.8,22,88600,1214,1323,399,961,925,111,99200,92800,13900,5470,80,5.2,0,0,16.0,77777,9,999999999,160,0.0870,0,88,0.170,0.0,1.0 +2003,6,18,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,33.3,6.7,19,88500,1185,1323,403,914,742,249,96900,75400,29200,12840,140,5.2,0,0,16.0,77777,9,999999999,160,0.0870,0,88,0.170,0.0,1.0 +2003,6,18,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,32.8,2.2,14,88400,1101,1323,394,270,30,245,29900,3000,27400,10880,210,5.7,0,0,16.0,77777,9,999999999,170,0.0870,0,88,0.170,0.0,1.0 +2003,6,18,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,34.4,6.1,17,88400,968,1323,416,120,0,120,14900,0,14900,6230,150,3.1,1,1,16.0,77777,9,999999999,179,0.0870,0,88,0.170,0.0,1.0 +2003,6,18,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,32.8,5.0,18,87300,795,1323,418,454,224,319,49000,23300,35000,8630,160,5.7,5,4,16.0,77777,9,999999999,189,0.0870,0,88,0.170,0.0,1.0 +2003,6,18,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,31.1,5.0,19,88200,594,1323,412,235,71,203,25800,7000,22600,5760,180,3.6,6,5,16.0,77777,9,999999999,189,0.0870,0,88,0.170,0.0,1.0 +2003,6,18,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.6,5.0,20,88100,380,1323,413,257,374,150,26600,33000,17100,3220,150,3.6,7,6,16.0,77777,9,999999999,189,0.0870,0,88,0.170,0.0,1.0 +2003,6,18,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,29.4,7.2,25,88100,166,1323,403,0,0,0,0,0,0,0,180,6.2,6,4,16.0,77777,9,999999999,189,0.0870,0,88,0.170,0.0,1.0 +2003,6,18,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,5.0,23,88000,12,496,387,0,0,0,0,0,0,0,160,5.7,3,2,16.0,77777,9,999999999,189,0.0870,0,88,0.170,0.0,1.0 +2003,6,18,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,3.9,22,88000,0,0,383,0,0,0,0,0,0,0,160,4.6,2,2,16.0,77777,9,999999999,189,0.0870,0,88,0.170,0.0,1.0 +2003,6,18,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,6.7,37,87200,0,0,354,0,0,0,0,0,0,0,260,1.5,1,1,16.0,77777,9,999999999,189,0.0870,0,88,0.170,0.0,1.0 +2003,6,18,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,7.8,41,87800,0,0,353,0,0,0,0,0,0,0,210,3.1,1,1,16.0,77777,9,999999999,179,0.0870,0,88,0.170,0.0,1.0 +2003,6,19,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,7.2,41,87800,0,0,361,0,0,0,0,0,0,0,270,2.1,4,4,16.0,77777,9,999999999,170,0.0870,0,88,0.170,0.0,1.0 +2003,6,19,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,6.7,34,87900,0,0,387,0,0,0,0,0,0,0,240,5.2,8,8,16.0,3353,9,999999999,170,0.0870,0,88,0.170,0.0,1.0 +2003,6,19,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,7.8,54,87700,0,0,337,0,0,0,0,0,0,0,60,1.5,3,2,16.0,77777,9,999999999,170,0.0870,0,88,0.170,0.0,1.0 +2003,6,19,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,7.8,54,87700,0,0,337,0,0,0,0,0,0,0,280,2.1,2,2,16.0,77777,9,999999999,170,0.0870,0,88,0.170,0.0,1.0 +2003,6,19,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,8.9,64,87300,14,518,320,0,0,0,0,0,0,0,290,3.6,0,0,16.0,77777,9,999999999,170,0.0870,0,88,0.170,0.0,1.0 +2003,6,19,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,9.4,60,87800,173,1323,334,76,314,35,7700,19900,5100,620,0,0.0,1,1,16.0,77777,9,999999999,170,0.0870,0,88,0.170,0.0,1.0 +2003,6,19,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,9.4,50,87900,386,1323,347,225,532,69,23200,46600,9600,1290,50,1.5,1,1,16.0,77777,9,999999999,170,0.0870,0,88,0.170,0.0,1.0 +2003,6,19,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,8.9,43,87900,601,1323,350,405,675,98,42600,65800,12700,2030,0,0.0,0,0,16.0,77777,9,999999999,170,0.0870,0,88,0.170,0.0,1.0 +2003,6,19,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,8.3,37,88000,801,1323,358,509,514,198,54400,52700,22400,4700,110,2.6,0,0,16.0,77777,9,999999999,179,0.0870,0,88,0.170,0.0,1.0 +2003,6,19,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,8.9,35,88000,973,1323,385,446,160,328,48900,17000,36400,10460,80,2.6,4,4,16.0,77777,9,999999999,179,0.0870,0,88,0.170,0.0,1.0 +2003,6,19,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,8.9,33,87200,1104,1323,409,861,714,264,90000,71900,29900,10340,50,4.1,10,8,16.0,77777,9,999999999,179,0.0870,0,88,0.170,0.0,1.0 +2003,6,19,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.9,7.8,27,88000,1186,1323,408,311,36,279,34500,3700,31200,13940,40,3.1,8,6,16.0,77777,9,999999999,179,0.0870,0,88,0.170,0.0,1.0 +2003,6,19,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,29.4,7.8,26,87900,1214,1323,404,151,0,151,19100,0,19100,7940,20,3.6,4,4,16.0,77777,9,999999999,189,0.0870,0,88,0.170,0.0,1.0 +2003,6,19,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,7.8,27,87800,1185,1323,395,149,0,149,18800,0,18800,7830,10,4.1,4,3,16.0,77777,9,999999999,189,0.0870,0,88,0.170,0.0,1.0 +2003,6,19,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,11.1,57,87600,1101,1323,376,225,6,220,27300,500,26900,10840,240,13.9,9,8,11.2,3048,9,999999999,179,0.0870,0,88,0.170,0.0,1.0 +2003,6,19,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,10.6,63,88000,968,1323,383,120,0,120,14900,0,14900,6230,270,5.2,10,10,16.0,2743,9,999999999,179,0.0870,0,88,0.170,9.0,1.0 +2003,6,19,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,11.1,67,87200,796,1323,380,92,0,92,11400,0,11400,4600,320,2.1,10,10,11.2,3048,9,999999999,170,0.0870,0,88,0.170,0.0,1.0 +2003,6,19,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.0,12.0,64,87700,595,1323,356,141,0,141,16300,0,16300,5840,0,0.0,10,4,16.1,77777,9,999999999,170,0.0870,0,88,0.170,0.0,1.0 +2003,6,19,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,11.1,61,87800,381,1323,370,217,233,150,23200,20700,17200,3340,0,0.0,10,8,16.0,77777,9,999999999,170,0.0870,0,88,0.170,0.0,1.0 +2003,6,19,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,11.7,67,87700,167,1323,356,0,0,0,0,0,0,0,200,1.5,10,6,16.0,77777,9,999999999,160,0.0870,0,88,0.170,0.0,1.0 +2003,6,19,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,11.7,70,87700,12,496,350,0,0,0,0,0,0,0,250,5.2,7,5,16.0,77777,9,999999999,160,0.0870,0,88,0.170,0.0,1.0 +2003,6,19,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,10.6,67,87700,0,0,341,0,0,0,0,0,0,0,290,3.6,4,3,16.0,77777,9,999999999,160,0.0870,0,88,0.170,0.0,1.0 +2003,6,19,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,10.6,70,87300,0,0,330,0,0,0,0,0,0,0,240,6.2,1,1,16.0,77777,9,999999999,160,0.0870,0,88,0.170,0.0,1.0 +2003,6,19,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,11.1,75,87400,0,0,348,0,0,0,0,0,0,0,30,4.6,7,7,16.0,77777,9,999999999,160,0.0870,0,88,0.170,0.0,1.0 +2003,6,20,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,11.1,77,87500,0,0,346,0,0,0,0,0,0,0,250,1.5,10,7,16.0,77777,9,999999999,150,0.0870,0,88,0.170,0.0,1.0 +2003,6,20,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,10.6,78,87400,0,0,355,0,0,0,0,0,0,0,260,2.1,9,9,16.0,3353,9,999999999,150,0.0870,0,88,0.170,0.0,1.0 +2003,6,20,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,10.6,84,87400,0,0,317,0,0,0,0,0,0,0,260,1.5,1,1,16.0,77777,9,999999999,160,0.0870,0,88,0.170,0.0,1.0 +2003,6,20,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,10.6,84,87400,0,0,312,0,0,0,0,0,0,0,180,2.6,0,0,16.0,77777,9,999999999,170,0.0870,0,88,0.170,0.0,1.0 +2003,6,20,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,10.6,90,86900,14,518,307,0,0,0,0,0,0,0,140,2.1,0,0,16.0,77777,9,999999999,179,0.0870,0,88,0.170,0.0,1.0 +2003,6,20,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,11.1,87,87400,172,1323,318,42,14,40,4600,1000,4500,990,220,1.5,1,1,16.0,77777,9,999999999,170,0.0870,0,88,0.170,0.0,1.0 +2003,6,20,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,11.7,78,87400,386,1323,329,127,54,111,13900,4900,12500,2920,300,2.6,1,1,16.0,77777,9,999999999,170,0.0870,0,88,0.170,0.0,1.0 +2003,6,20,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,12.2,75,87400,600,1323,339,405,577,143,43000,56900,17100,2880,20,2.6,3,2,16.0,77777,9,999999999,170,0.0870,0,88,0.170,0.0,1.0 +2003,6,20,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,11.1,63,87400,800,1323,354,394,193,277,43000,20200,30700,7520,0,0.0,6,5,16.0,77777,9,999999999,170,0.0870,0,88,0.170,0.0,1.0 +2003,6,20,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,11.1,57,87400,972,1323,342,528,319,293,57600,34500,32200,8840,70,2.1,0,0,16.0,77777,9,999999999,170,0.0870,0,88,0.170,0.0,1.0 +2003,6,20,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,8.3,62,86800,1104,1323,358,137,0,137,17200,0,17200,7210,290,11.8,9,9,16.0,1128,9,999999999,170,0.0870,0,88,0.170,0.0,1.0 +2003,6,20,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,8.9,75,87600,1186,1323,357,770,514,308,83300,53800,35000,16360,290,2.6,10,10,11.2,2438,9,999999999,170,0.0870,0,88,0.170,5.0,1.0 +2003,6,20,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,10.0,72,87500,1214,1323,367,332,36,299,36800,3700,33500,15690,290,4.1,10,10,16.0,3048,9,999999999,170,0.0870,0,88,0.170,0.0,1.0 +2003,6,20,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,9.4,62,87600,1185,1323,365,218,6,212,26700,500,26300,10640,270,3.1,9,9,16.0,2743,9,999999999,170,0.0870,0,88,0.170,0.0,1.0 +2003,6,20,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,7.8,54,87600,1101,1323,348,334,18,319,39400,1600,38000,14450,280,5.2,10,6,16.0,77777,9,999999999,160,0.0870,0,88,0.170,0.0,1.0 +2003,6,20,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,7.8,54,87600,969,1323,376,227,6,223,27000,500,26700,10530,290,6.2,10,10,16.0,1829,9,999999999,160,0.0870,0,88,0.170,0.0,1.0 +2003,6,20,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,7.8,60,87000,797,1323,368,191,0,191,22300,0,22300,8520,280,6.7,10,10,16.0,1524,9,999999999,150,0.0870,0,88,0.170,0.0,1.0 +2003,6,20,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,6.7,55,87600,596,1323,366,78,0,78,9400,0,9400,3600,280,6.2,10,10,16.0,2438,9,999999999,150,0.0870,0,88,0.170,0.0,1.0 +2003,6,20,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,7.2,57,87600,381,1323,367,207,190,152,22100,16900,17200,3380,270,3.6,10,10,16.0,3048,9,999999999,150,0.0870,0,88,0.170,0.0,1.0 +2003,6,20,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,5.6,53,87600,168,1323,362,0,0,0,0,0,0,0,270,4.6,10,10,16.0,2896,9,999999999,150,0.0870,0,88,0.170,0.0,1.0 +2003,6,20,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,3.3,49,87600,12,496,354,0,0,0,0,0,0,0,270,5.2,10,10,16.0,2134,9,999999999,139,0.0870,0,88,0.170,0.0,1.0 +2003,6,20,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,4.4,55,87600,0,0,352,0,0,0,0,0,0,0,270,3.6,10,10,16.0,2134,9,999999999,129,0.0870,0,88,0.170,0.0,1.0 +2003,6,20,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,3.3,54,87100,0,0,329,0,0,0,0,0,0,0,260,5.7,10,8,16.0,77777,9,999999999,129,0.0870,0,88,0.170,0.0,1.0 +2003,6,20,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,1.7,50,87600,0,0,341,0,0,0,0,0,0,0,260,4.6,10,10,16.0,3353,9,999999999,120,0.0870,0,88,0.170,0.0,1.0 +2003,6,21,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,2.2,52,87600,0,0,342,0,0,0,0,0,0,0,250,5.7,10,10,16.0,3048,9,999999999,120,0.0870,0,88,0.170,0.0,1.0 +2003,6,21,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,2.2,56,87600,0,0,336,0,0,0,0,0,0,0,270,4.6,10,10,16.0,3353,9,999999999,120,0.0870,0,88,0.170,0.0,1.0 +2003,6,21,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,1.7,56,87600,0,0,312,0,0,0,0,0,0,0,270,2.1,10,7,16.0,77777,9,999999999,110,0.0870,0,88,0.170,0.0,1.0 +2003,6,21,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,1.7,59,87600,0,0,314,0,0,0,0,0,0,0,280,2.6,10,8,16.0,77777,9,999999999,100,0.0870,0,88,0.170,0.0,1.0 +2003,6,21,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,1.1,56,87300,13,518,302,0,0,0,0,0,0,0,240,3.1,6,5,16.0,77777,9,999999999,89,0.0870,0,88,0.170,0.0,1.0 +2003,6,21,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,1.1,58,87700,172,1322,298,53,59,46,5800,3700,5400,970,220,2.6,5,4,16.0,77777,9,999999999,89,0.0870,0,88,0.170,0.0,1.0 +2003,6,21,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,1.7,52,87800,385,1322,306,157,119,122,17000,10700,13800,2720,290,2.6,4,3,16.0,77777,9,999999999,89,0.0870,0,88,0.170,0.0,1.0 +2003,6,21,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,1.1,45,87800,600,1322,309,390,577,128,40200,55500,15000,2530,260,4.6,3,2,16.0,77777,9,999999999,89,0.0870,0,88,0.170,0.0,1.0 +2003,6,21,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,0.6,40,87800,800,1322,317,562,707,134,59500,71300,16300,3230,270,4.1,3,3,16.0,77777,9,999999999,89,0.0870,0,88,0.170,0.0,1.0 +2003,6,21,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,1.7,39,87800,971,1322,322,644,579,218,67300,58300,24400,6400,300,6.2,2,2,16.0,77777,9,999999999,100,0.0870,0,88,0.170,0.0,1.0 +2003,6,21,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,1.7,39,87200,1103,1322,331,838,720,237,88400,73000,27400,9370,280,8.2,6,5,16.0,77777,9,999999999,100,0.0870,0,88,0.170,0.0,1.0 +2003,6,21,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,1.1,42,87800,1186,1322,341,629,293,366,69400,31900,40800,17760,260,8.2,9,9,16.0,2591,9,999999999,89,0.0870,0,88,0.170,0.0,1.0 +2003,6,21,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,0.6,36,87800,1214,1322,336,955,793,226,102200,81100,27600,13280,270,5.7,7,7,16.0,77777,9,999999999,89,0.0870,0,88,0.170,0.0,1.0 +2003,6,21,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,1.1,32,87900,1185,1322,343,864,676,258,91400,68600,29800,13310,290,6.7,6,6,16.0,77777,9,999999999,89,0.0870,0,88,0.170,0.0,1.0 +2003,6,21,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,2.2,40,87900,1102,1322,331,829,728,221,87700,74100,25900,8770,270,9.8,6,5,16.0,77777,9,999999999,89,0.0870,0,88,0.170,0.0,1.0 +2003,6,21,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,1.7,44,87900,969,1322,326,328,73,274,36200,7400,30700,10370,270,5.7,7,6,16.0,77777,9,999999999,80,0.0870,0,88,0.170,0.0,1.0 +2003,6,21,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,3.3,56,87400,797,1322,321,560,591,203,59500,60600,23000,4810,270,8.2,8,7,16.0,3658,9,999999999,80,0.0870,0,88,0.170,0.0,1.0 +2003,6,21,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,2.8,46,88000,597,1322,329,368,386,194,39100,39200,21400,4280,270,5.2,7,6,16.0,77777,9,999999999,80,0.0870,0,88,0.170,0.0,1.0 +2003,6,21,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,2.2,45,88000,382,1322,323,266,493,123,27000,42800,14600,2370,230,3.6,5,5,16.0,77777,9,999999999,80,0.0870,0,88,0.170,0.0,1.0 +2003,6,21,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,0.6,42,87900,169,1322,311,0,0,0,0,0,0,0,300,5.2,2,2,16.0,77777,9,999999999,80,0.0870,0,88,0.170,0.0,1.0 +2003,6,21,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,0.6,46,88000,12,496,307,0,0,0,0,0,0,0,300,4.1,3,3,16.0,77777,9,999999999,80,0.0870,0,88,0.170,0.0,1.0 +2003,6,21,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,1.1,52,87900,0,0,308,0,0,0,0,0,0,0,290,4.6,6,5,16.0,77777,9,999999999,80,0.0870,0,88,0.170,0.0,1.0 +2003,6,21,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,-1.1,47,87500,0,0,300,0,0,0,0,0,0,0,220,2.6,6,5,16.0,77777,9,999999999,80,0.0870,0,88,0.170,0.0,1.0 +2003,6,21,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,-0.6,49,87900,0,0,303,0,0,0,0,0,0,0,200,4.1,7,6,16.0,77777,9,999999999,80,0.0870,0,88,0.170,0.0,1.0 +2003,6,22,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,-1.1,49,87900,0,0,291,0,0,0,0,0,0,0,220,3.1,2,2,16.0,77777,9,999999999,80,0.0870,0,88,0.170,0.0,1.0 +2003,6,22,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,0.0,58,87800,0,0,287,0,0,0,0,0,0,0,240,2.6,2,2,16.0,77777,9,999999999,80,0.0870,0,88,0.170,0.0,1.0 +2003,6,22,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,-0.6,55,87800,0,0,289,0,0,0,0,0,0,0,250,2.6,3,3,16.0,77777,9,999999999,80,0.0870,0,88,0.170,0.0,1.0 +2003,6,22,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,-0.6,53,87900,0,0,294,0,0,0,0,0,0,0,240,4.1,5,4,16.0,3658,9,999999999,80,0.0870,0,88,0.170,0.0,1.0 +2003,6,22,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,0.0,65,87500,13,518,290,0,0,0,0,0,0,0,60,1.5,7,6,16.0,77777,9,999999999,80,0.0870,0,88,0.170,0.0,1.0 +2003,6,22,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,0.0,56,87900,171,1322,314,17,0,17,2000,0,2000,680,0,0.0,10,9,16.0,3048,9,999999999,89,0.0870,0,88,0.170,0.0,1.0 +2003,6,22,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,0.0,58,87900,384,1322,321,55,0,55,6500,0,6500,2300,80,1.5,10,10,16.0,3048,9,999999999,89,0.0870,0,88,0.170,0.0,1.0 +2003,6,22,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,0.0,52,87900,599,1322,319,219,51,196,24000,5000,21800,5630,360,1.5,9,9,16.0,77777,9,999999999,100,0.0870,0,88,0.170,0.0,1.0 +2003,6,22,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,-1.1,41,88000,799,1322,321,283,29,266,32300,2600,30700,10780,230,5.2,8,8,16.0,2438,9,999999999,89,0.0870,0,88,0.170,0.0,1.0 +2003,6,22,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,-1.1,35,88000,971,1322,326,275,18,262,32300,1600,31200,11910,250,4.6,7,7,16.0,77777,9,999999999,89,0.0870,0,88,0.170,0.0,1.0 +2003,6,22,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,-1.1,38,87500,1102,1322,318,416,42,381,45900,4300,42300,16000,270,6.7,6,6,16.0,77777,9,999999999,89,0.0870,0,88,0.170,0.0,1.0 +2003,6,22,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,-0.6,38,88000,1185,1322,346,317,36,285,35200,3700,31900,14190,260,5.7,10,10,16.0,2286,9,999999999,89,0.0870,0,88,0.170,0.0,1.0 +2003,6,22,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,-0.6,37,88000,1213,1322,332,689,270,440,75100,29300,48100,24010,270,7.7,10,8,16.0,77777,9,999999999,89,0.0870,0,88,0.170,0.0,1.0 +2003,6,22,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,-0.6,35,88100,1185,1322,334,609,205,425,67000,21900,47400,19960,250,8.2,10,8,16.0,77777,9,999999999,89,0.0870,0,88,0.170,0.0,1.0 +2003,6,22,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,-0.6,33,88100,1102,1322,340,533,182,381,58600,19400,42400,14760,250,12.4,9,8,16.0,77777,9,999999999,89,0.0870,0,88,0.170,0.0,1.0 +2003,6,22,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,0.0,41,88100,970,1322,328,294,18,281,34400,1600,33200,12530,270,10.8,9,8,16.0,77777,9,999999999,89,0.0870,0,88,0.170,0.0,1.0 +2003,6,22,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,0.0,41,87500,798,1322,323,298,37,275,32700,3800,30400,8830,290,8.2,9,7,16.0,77777,9,999999999,89,0.0870,0,88,0.170,0.0,1.0 +2003,6,22,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,-0.6,38,88200,597,1322,300,297,180,216,32100,18100,24000,5210,250,5.7,0,0,16.0,77777,9,999999999,89,0.0870,0,88,0.170,0.0,1.0 +2003,6,22,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,-0.6,37,88200,383,1322,339,138,42,125,15000,3800,13900,3180,270,7.7,10,9,16.0,1829,9,999999999,89,0.0870,0,88,0.170,0.0,1.0 +2003,6,22,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,0.0,43,88200,169,1322,296,0,0,0,0,0,0,0,260,6.2,0,0,16.0,77777,9,999999999,89,0.0870,0,88,0.170,0.0,1.0 +2003,6,22,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,0.0,48,88200,13,518,289,0,0,0,0,0,0,0,250,3.6,0,0,16.0,77777,9,999999999,89,0.0870,0,88,0.170,0.0,1.0 +2003,6,22,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,0.0,54,88200,0,0,282,0,0,0,0,0,0,0,250,2.1,0,0,16.0,77777,9,999999999,89,0.0870,0,88,0.170,0.0,1.0 +2003,6,22,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,1.7,61,87800,0,0,284,0,0,0,0,0,0,0,240,3.6,0,0,16.0,77777,9,999999999,80,0.0870,0,88,0.170,0.0,1.0 +2003,6,22,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,1.7,68,88100,0,0,277,0,0,0,0,0,0,0,250,3.1,0,0,16.0,77777,9,999999999,80,0.0870,0,88,0.170,0.0,1.0 +2003,6,23,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,1.7,65,88100,0,0,280,0,0,0,0,0,0,0,250,2.6,0,0,16.0,77777,9,999999999,80,0.0870,0,88,0.170,0.0,1.0 +2003,6,23,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,1.7,76,88000,0,0,271,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,80,0.0870,0,88,0.170,0.0,1.0 +2003,6,23,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,1.1,67,88000,0,0,275,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,69,0.0870,0,88,0.170,0.0,1.0 +2003,6,23,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,1.1,76,88000,0,0,268,0,0,0,0,0,0,0,70,2.1,0,0,16.0,77777,9,999999999,69,0.0870,0,88,0.170,0.0,1.0 +2003,6,23,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,1.1,79,87700,13,518,266,0,0,0,0,0,0,0,280,2.1,0,0,16.0,77777,9,999999999,69,0.0870,0,88,0.170,0.0,1.0 +2003,6,23,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,1.7,76,88100,170,1322,271,78,393,28,8100,25000,4900,520,40,1.5,0,0,16.0,77777,9,999999999,69,0.0870,0,88,0.170,0.0,1.0 +2003,6,23,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,1.7,65,88200,383,1322,280,241,651,52,24900,57600,8200,1030,290,1.5,0,0,16.0,77777,9,999999999,69,0.0870,0,88,0.170,0.0,1.0 +2003,6,23,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,2.8,61,88200,598,1322,290,414,766,68,44000,74500,10200,1500,0,0.0,0,0,16.0,77777,9,999999999,69,0.0870,0,88,0.170,0.0,1.0 +2003,6,23,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,2.2,48,88300,798,1322,301,588,829,86,61100,82000,11600,1910,350,1.5,0,0,16.0,77777,9,999999999,80,0.0870,0,88,0.170,0.0,1.0 +2003,6,23,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,1.1,39,88300,970,1322,309,743,863,109,76800,86100,13600,2690,330,3.6,0,0,16.0,77777,9,999999999,80,0.0870,0,88,0.170,0.0,1.0 +2003,6,23,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,-0.6,33,87600,1102,1322,310,855,833,160,89900,83900,19900,5920,0,0.0,0,0,16.0,77777,9,999999999,80,0.0870,0,88,0.170,0.0,1.0 +2003,6,23,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,1.1,34,88300,1185,1322,318,840,574,325,90500,60000,36600,17260,50,3.6,0,0,16.0,77777,9,999999999,89,0.0870,0,88,0.170,0.0,1.0 +2003,6,23,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,1.1,34,88300,1213,1322,318,979,889,162,104300,90000,21500,9010,30,2.6,0,0,16.0,77777,9,999999999,89,0.0870,0,88,0.170,0.0,1.0 +2003,6,23,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,0.6,29,88300,1185,1322,339,908,827,165,96100,83500,21100,8090,0,0.0,8,3,16.0,77777,9,999999999,100,0.0870,0,88,0.170,0.0,1.0 +2003,6,23,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,-0.6,26,88300,1102,1322,343,860,789,202,91800,80600,24400,8090,20,1.5,9,4,16.0,77777,9,999999999,100,0.0870,0,88,0.170,0.0,1.0 +2003,6,23,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,-1.7,23,88300,970,1322,344,201,6,196,24100,500,23700,9500,30,2.1,9,4,16.0,77777,9,999999999,110,0.0870,0,88,0.170,0.0,1.0 +2003,6,23,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,1.1,30,87500,798,1322,345,170,0,170,20100,0,20100,7790,50,6.2,10,5,16.0,77777,9,999999999,110,0.0870,0,88,0.170,0.0,1.0 +2003,6,23,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,2.2,40,88400,598,1322,351,125,0,125,14600,0,14600,5340,310,6.7,10,9,16.0,3353,9,999999999,110,0.0870,0,88,0.170,0.0,1.0 +2003,6,23,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,1.7,36,88500,383,1322,366,69,0,69,8000,0,8000,2770,100,4.1,10,10,16.0,2438,9,999999999,110,0.0870,0,88,0.170,0.0,1.0 +2003,6,23,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,1.7,39,88400,170,1322,360,135,240,104,13300,13400,11600,2450,300,3.1,10,10,16.0,2896,9,999999999,110,0.0870,0,88,0.170,0.0,1.0 +2003,6,23,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,6.1,68,88400,13,518,346,0,0,0,0,0,0,0,270,5.7,10,10,16.0,1829,9,999999999,110,0.0870,0,88,0.170,0.0,1.0 +2003,6,23,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,6.1,77,88400,0,0,338,0,0,0,0,0,0,0,270,7.7,10,10,16.0,1829,9,999999999,120,0.0870,0,88,0.170,0.0,1.0 +2003,6,23,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,6.1,77,88100,0,0,338,0,0,0,0,0,0,0,290,6.2,10,10,16.0,1676,9,999999999,120,0.0870,0,88,0.170,0.0,1.0 +2003,6,23,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,6.1,77,88500,0,0,338,0,0,0,0,0,0,0,280,3.6,10,10,16.0,1829,9,999999999,120,0.0870,0,88,0.170,0.0,1.0 +2003,6,24,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,6.7,80,88500,0,0,339,0,0,0,0,0,0,0,280,4.1,10,10,16.0,1676,9,999999999,120,0.0870,0,88,0.170,0.0,1.0 +2003,6,24,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,6.1,77,88500,0,0,338,0,0,0,0,0,0,0,280,3.1,10,10,16.0,1676,9,999999999,120,0.0870,0,88,0.170,0.0,1.0 +2003,6,24,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,5.6,74,88500,0,0,338,0,0,0,0,0,0,0,300,3.1,10,10,16.0,1981,9,999999999,120,0.0870,0,88,0.170,0.0,1.0 +2003,6,24,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,5.6,74,88600,0,0,338,0,0,0,0,0,0,0,300,2.6,10,10,16.0,1311,9,999999999,120,0.0870,0,88,0.170,0.0,1.0 +2003,6,24,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,5.0,71,88200,12,496,337,0,0,0,0,0,0,0,310,3.6,10,10,16.0,1372,9,999999999,120,0.0870,0,88,0.170,0.0,1.0 +2003,6,24,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,5.0,71,88700,169,1322,337,17,0,17,2000,0,2000,670,320,3.1,10,10,16.0,1676,9,999999999,120,0.0870,0,88,0.170,0.0,1.0 +2003,6,24,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,3.9,66,88700,382,1322,336,55,0,55,6500,0,6500,2290,330,2.6,10,10,16.0,1829,9,999999999,120,0.0870,0,88,0.170,0.0,1.0 +2003,6,24,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,3.9,59,88800,597,1322,344,141,6,139,16400,400,16200,5790,350,4.6,10,10,16.0,1463,9,999999999,120,0.0870,0,88,0.170,0.0,1.0 +2003,6,24,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,3.3,51,88900,797,1322,334,110,0,110,13400,0,13400,5400,340,6.7,10,8,16.0,77777,9,999999999,120,0.0870,0,88,0.170,0.0,1.0 +2003,6,24,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,3.3,49,89000,969,1322,354,220,6,216,26300,500,25900,10270,350,3.6,10,10,16.0,1463,9,999999999,120,0.0870,0,88,0.170,0.0,1.0 +2003,6,24,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,2.2,45,88400,1101,1322,352,314,12,304,37200,1100,36300,13950,360,2.1,10,10,16.0,1494,9,999999999,120,0.0870,0,88,0.170,0.0,1.0 +2003,6,24,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,2.2,42,89000,1184,1322,358,370,24,349,43900,2200,42000,15730,360,4.1,10,10,16.0,1676,9,999999999,120,0.0870,0,88,0.170,0.0,1.0 +2003,6,24,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,1.7,41,89000,1213,1322,357,260,6,254,31600,500,31200,12400,20,4.1,10,10,16.0,1676,9,999999999,120,0.0870,0,88,0.170,0.0,1.0 +2003,6,24,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,2.8,44,89000,1185,1322,359,361,18,344,42700,1600,41300,15570,310,4.6,10,10,16.0,1676,9,999999999,120,0.0870,0,88,0.170,0.0,1.0 +2003,6,24,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,2.2,39,89100,1102,1322,363,392,30,366,43200,3100,40600,15470,350,4.6,10,10,16.0,2134,9,999999999,120,0.0870,0,88,0.170,0.0,1.0 +2003,6,24,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,2.2,39,89100,970,1322,363,308,31,285,34000,3200,31600,10730,350,4.1,10,10,16.0,1676,9,999999999,110,0.0870,0,88,0.170,0.0,1.0 +2003,6,24,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,2.2,39,88400,798,1322,363,460,323,265,49400,34300,28600,6700,350,6.7,10,10,16.0,2591,9,999999999,110,0.0870,0,88,0.170,0.0,1.0 +2003,6,24,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,2.8,42,89100,598,1322,361,336,257,220,36300,25800,24600,5310,10,5.2,10,10,16.0,2743,9,999999999,110,0.0870,0,88,0.170,0.0,1.0 +2003,6,24,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,3.3,42,89100,384,1322,365,265,415,144,27400,36800,16700,3050,360,2.6,10,10,16.0,2591,9,999999999,110,0.0870,0,88,0.170,0.0,1.0 +2003,6,24,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,3.9,51,89000,170,1322,323,134,371,86,12800,21500,10100,1730,340,2.6,4,4,16.0,77777,9,999999999,110,0.0870,0,88,0.170,0.0,1.0 +2003,6,24,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,3.3,59,89000,13,518,300,0,0,0,0,0,0,0,250,2.6,1,1,16.0,77777,9,999999999,120,0.0870,0,88,0.170,0.0,1.0 +2003,6,24,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,3.3,59,89000,0,0,295,0,0,0,0,0,0,0,240,4.1,0,0,16.0,77777,9,999999999,120,0.0870,0,88,0.170,0.0,1.0 +2003,6,24,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,2.8,58,89000,0,0,292,0,0,0,0,0,0,0,240,3.1,0,0,16.0,77777,9,999999999,120,0.0870,0,88,0.170,0.0,1.0 +2003,6,24,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,3.3,71,88900,0,0,283,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,120,0.0870,0,88,0.170,0.0,1.0 +2003,6,25,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,3.3,66,89000,0,0,288,0,0,0,0,0,0,0,200,1.5,0,0,16.0,77777,9,999999999,120,0.0870,0,88,0.170,0.0,1.0 +2003,6,25,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,3.3,79,88900,0,0,277,0,0,0,0,0,0,0,290,2.6,0,0,16.0,77777,9,999999999,120,0.0870,0,88,0.170,0.0,1.0 +2003,6,25,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,3.3,82,88900,0,0,274,0,0,0,0,0,0,0,300,1.5,0,0,16.0,77777,9,999999999,120,0.0870,0,88,0.170,0.0,1.0 +2003,6,25,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,2.8,76,88900,0,0,286,0,0,0,0,0,0,0,220,1.5,2,2,16.0,77777,9,999999999,120,0.0870,0,88,0.170,0.0,1.0 +2003,6,25,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,2.8,82,88700,12,496,288,0,0,0,0,0,0,0,0,0.0,5,5,16.0,77777,9,999999999,120,0.0870,0,88,0.170,0.0,1.0 +2003,6,25,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,3.3,82,89000,168,1322,284,25,0,25,2900,0,2900,940,0,0.0,2,2,16.0,3658,9,999999999,120,0.0870,0,88,0.170,0.0,1.0 +2003,6,25,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,3.3,71,89100,381,1322,306,72,0,72,8300,0,8300,2860,0,0.0,8,7,16.0,77777,9,999999999,120,0.0870,0,88,0.170,0.0,1.0 +2003,6,25,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,5.0,77,89100,596,1322,316,200,40,182,22000,3900,20200,5300,10,1.5,9,8,16.0,77777,9,999999999,110,0.0870,0,88,0.170,0.0,1.0 +2003,6,25,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,3.9,59,89300,796,1322,344,430,298,250,46300,31700,27200,6240,90,1.5,10,10,16.0,2438,9,999999999,110,0.0870,0,88,0.170,0.0,1.0 +2003,6,25,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,5.0,53,89300,968,1322,348,324,53,285,35700,5400,31800,10710,40,3.1,10,9,16.0,3353,9,999999999,110,0.0870,0,88,0.170,0.0,1.0 +2003,6,25,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,5.0,48,88700,1100,1322,340,707,452,330,75100,47100,35800,13400,20,1.5,7,6,16.0,77777,9,999999999,120,0.0870,0,88,0.170,0.0,1.0 +2003,6,25,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,5.0,41,89400,1184,1322,334,940,831,194,97800,83300,23000,9160,350,2.6,1,1,16.0,77777,9,999999999,120,0.0870,0,88,0.170,0.0,1.0 +2003,6,25,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,3.9,38,89300,1213,1322,377,967,811,221,103500,83000,27200,12970,330,4.1,10,10,16.0,2134,9,999999999,129,0.0870,0,88,0.170,0.0,1.0 +2003,6,25,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,8.9,58,89300,1185,1322,359,491,151,356,54700,16200,40200,16720,110,3.6,8,8,16.0,2134,9,999999999,129,0.0870,0,88,0.170,0.0,1.0 +2003,6,25,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,5.6,37,89400,1102,1322,353,847,771,204,90300,78700,24500,8170,250,5.2,3,3,16.0,77777,9,999999999,129,0.0870,0,88,0.170,0.0,1.0 +2003,6,25,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,3.3,34,89400,970,1322,363,695,606,249,74500,63000,28100,7500,290,5.2,8,8,16.0,3353,9,999999999,120,0.0870,0,88,0.170,0.0,1.0 +2003,6,25,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,2.8,30,88600,799,1322,361,276,37,254,30400,3700,28100,8300,0,0.0,6,6,16.0,77777,9,999999999,120,0.0870,0,88,0.170,0.0,1.0 +2003,6,25,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,2.8,32,89400,599,1322,373,164,0,164,18700,0,18700,6540,270,8.8,9,9,16.0,3353,9,999999999,120,0.0870,0,88,0.170,0.0,1.0 +2003,6,25,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,2.8,33,89400,384,1322,350,235,296,149,24300,26200,16700,3180,260,6.7,6,5,16.0,77777,9,999999999,120,0.0870,0,88,0.170,0.0,1.0 +2003,6,25,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,3.9,37,89400,171,1322,352,80,0,80,8500,0,8500,1930,280,7.7,7,6,16.0,77777,9,999999999,120,0.0870,0,88,0.170,0.0,1.0 +2003,6,25,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,4.4,41,89300,13,518,351,0,0,0,0,0,0,0,260,5.7,7,7,16.0,77777,9,999999999,129,0.0870,0,88,0.170,0.0,1.0 +2003,6,25,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,5.0,44,89300,0,0,337,0,0,0,0,0,0,0,260,6.2,3,3,16.0,77777,9,999999999,129,0.0870,0,88,0.170,0.0,1.0 +2003,6,25,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,5.0,46,88700,0,0,320,0,0,0,0,0,0,0,270,7.2,0,0,16.0,77777,9,999999999,129,0.0870,0,88,0.170,0.0,1.0 +2003,6,25,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,5.0,49,89300,0,0,326,0,0,0,0,0,0,0,290,3.6,2,2,16.0,77777,9,999999999,139,0.0870,0,88,0.170,0.0,1.0 +2003,6,26,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,5.0,53,89300,0,0,316,0,0,0,0,0,0,0,290,2.1,1,1,16.0,77777,9,999999999,139,0.0870,0,88,0.170,0.0,1.0 +2003,6,26,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,5.0,53,89300,0,0,341,0,0,0,0,0,0,0,330,2.6,9,8,16.0,3353,9,999999999,139,0.0870,0,88,0.170,0.0,1.0 +2003,6,26,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,5.0,55,89200,0,0,339,0,0,0,0,0,0,0,340,3.1,9,8,16.0,77777,9,999999999,139,0.0870,0,88,0.170,0.0,1.0 +2003,6,26,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,5.0,53,89300,0,0,358,0,0,0,0,0,0,0,0,0.0,10,10,16.0,3353,9,999999999,150,0.0870,0,88,0.170,0.0,1.0 +2003,6,26,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,5.0,59,88800,12,496,324,0,0,0,0,0,0,0,150,1.5,7,6,16.0,77777,9,999999999,150,0.0870,0,88,0.170,0.0,1.0 +2003,6,26,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,6.1,55,89300,166,1322,345,77,409,26,7800,27500,4400,500,0,0.0,8,8,16.0,3048,9,999999999,150,0.0870,0,88,0.170,0.0,1.0 +2003,6,26,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,5.6,48,89400,380,1322,340,232,623,53,23900,54900,8100,1040,80,2.1,5,5,16.0,77777,9,999999999,150,0.0870,0,88,0.170,0.0,1.0 +2003,6,26,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,5.0,43,89400,594,1322,325,409,754,70,43200,73200,10300,1520,0,0.0,0,0,16.0,77777,9,999999999,150,0.0870,0,88,0.170,0.0,1.0 +2003,6,26,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,4.4,33,89500,795,1322,340,571,818,79,59600,80900,10900,1860,250,6.2,0,0,16.0,77777,9,999999999,150,0.0870,0,88,0.170,0.0,1.0 +2003,6,26,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,5.0,33,89500,967,1322,366,704,715,180,74500,72700,21300,5380,250,6.2,5,5,16.0,77777,9,999999999,150,0.0870,0,88,0.170,0.0,1.0 +2003,6,26,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,4.4,32,88700,1100,1322,363,621,274,393,67400,29700,42700,15340,280,6.2,5,5,16.0,77777,9,999999999,150,0.0870,0,88,0.170,0.0,1.0 +2003,6,26,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,4.4,30,89500,1183,1322,363,916,795,203,94800,79500,23600,9460,250,6.2,4,3,16.0,77777,9,999999999,160,0.0870,0,88,0.170,0.0,1.0 +2003,6,26,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,3.9,26,89400,1212,1322,376,960,889,144,98400,89000,16600,6460,280,8.8,5,5,16.0,77777,9,999999999,160,0.0870,0,88,0.170,0.0,1.0 +2003,6,26,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,3.9,25,89400,1184,1322,373,895,796,180,93800,80100,21900,8670,230,7.7,3,3,16.0,77777,9,999999999,160,0.0870,0,88,0.170,0.0,1.0 +2003,6,26,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,5.0,25,89400,1102,1322,397,802,765,164,84200,76900,19900,6040,270,6.7,7,7,16.0,77777,9,999999999,160,0.0870,0,88,0.170,0.0,1.0 +2003,6,26,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,3.9,23,89300,971,1322,385,762,839,145,79500,84100,17600,3990,270,9.3,4,4,16.0,77777,9,999999999,150,0.0870,0,88,0.170,0.0,1.0 +2003,6,26,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,3.3,23,88400,799,1322,387,552,665,150,58000,66700,17600,3560,290,9.3,7,6,16.0,77777,9,999999999,150,0.0870,0,88,0.170,0.0,1.0 +2003,6,26,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,3.9,25,89200,599,1322,372,406,578,144,43000,57000,17200,2910,280,7.7,3,2,16.0,77777,9,999999999,150,0.0870,0,88,0.170,0.0,1.0 +2003,6,26,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,3.9,27,89100,384,1322,373,245,464,110,25200,40400,13500,2090,270,5.7,5,5,16.0,77777,9,999999999,150,0.0870,0,88,0.170,0.0,1.0 +2003,6,26,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,3.9,29,89100,171,1322,365,80,0,80,8500,0,8500,1940,250,4.1,4,4,16.0,77777,9,999999999,150,0.0870,0,88,0.170,0.0,1.0 +2003,6,26,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,3.9,30,89000,13,518,368,0,0,0,0,0,0,0,240,2.6,8,6,16.0,77777,9,999999999,160,0.0870,0,88,0.170,0.0,1.0 +2003,6,26,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,5.6,35,89000,0,0,368,0,0,0,0,0,0,0,230,3.1,7,6,16.0,77777,9,999999999,170,0.0870,0,88,0.170,0.0,1.0 +2003,6,26,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,3.9,33,88300,0,0,354,0,0,0,0,0,0,0,260,2.6,5,4,16.0,77777,9,999999999,179,0.0870,0,88,0.170,0.0,1.0 +2003,6,26,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,3.9,37,88900,0,0,349,0,0,0,0,0,0,0,220,2.6,6,5,16.0,77777,9,999999999,179,0.0870,0,88,0.170,0.0,1.0 +2003,6,27,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,3.9,37,88900,0,0,335,0,0,0,0,0,0,0,240,4.1,1,1,16.0,77777,9,999999999,170,0.0870,0,88,0.170,0.0,1.0 +2003,6,27,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,3.3,35,88800,0,0,348,0,0,0,0,0,0,0,240,7.7,6,5,16.0,77777,9,999999999,170,0.0870,0,88,0.170,0.0,1.0 +2003,6,27,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,4.4,46,88700,0,0,339,0,0,0,0,0,0,0,70,3.6,8,6,16.0,77777,9,999999999,170,0.0870,0,88,0.170,0.0,1.0 +2003,6,27,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,3.9,42,88700,0,0,345,0,0,0,0,0,0,0,0,0.0,10,7,16.0,77777,9,999999999,160,0.0870,0,88,0.170,0.0,1.0 +2003,6,27,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,4.4,46,88300,11,474,356,0,0,0,0,0,0,0,0,0.0,10,9,16.0,77777,9,999999999,160,0.0870,0,88,0.170,0.0,1.0 +2003,6,27,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,5.6,46,88800,165,1322,343,74,336,32,7500,20900,4900,570,0,0.0,6,5,16.0,77777,9,999999999,170,0.0870,0,88,0.170,0.0,1.0 +2003,6,27,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,5.0,43,88800,378,1322,352,223,493,82,22800,42400,10600,1480,100,3.1,9,7,16.0,77777,9,999999999,170,0.0870,0,88,0.170,0.0,1.0 +2003,6,27,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,5.0,35,88900,593,1322,382,248,120,194,27000,12100,21500,4670,280,6.2,9,9,16.0,77777,9,999999999,170,0.0870,0,88,0.170,0.0,1.0 +2003,6,27,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,5.6,32,89000,794,1322,386,592,724,157,62000,72400,18400,3670,290,2.6,10,8,16.0,77777,9,999999999,179,0.0870,0,88,0.170,0.0,1.0 +2003,6,27,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,5.0,28,89000,966,1322,384,737,898,79,76900,89800,11100,2330,280,8.2,7,6,16.0,77777,9,999999999,179,0.0870,0,88,0.170,0.0,1.0 +2003,6,27,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,5.0,28,88200,1099,1322,384,860,910,102,89000,91200,13100,3510,300,4.6,6,6,16.0,77777,9,999999999,179,0.0870,0,88,0.170,0.0,1.0 +2003,6,27,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,5.0,24,89000,1183,1322,391,916,819,182,96000,82300,22200,8680,290,8.8,5,5,16.0,77777,9,999999999,189,0.0870,0,88,0.170,0.0,1.0 +2003,6,27,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,3.9,22,89000,1212,1322,380,839,601,288,88300,60700,32600,16560,280,9.3,2,2,16.0,77777,9,999999999,189,0.0870,0,88,0.170,0.0,1.0 +2003,6,27,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,4.4,23,88900,1184,1322,385,783,495,339,84000,51700,37500,18020,320,4.6,3,3,16.0,77777,9,999999999,189,0.0870,0,88,0.170,0.0,1.0 +2003,6,27,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.9,3.9,20,89000,1102,1322,393,860,886,120,88600,88700,14500,3860,290,6.7,3,3,16.0,77777,9,999999999,189,0.0870,0,88,0.170,0.0,1.0 +2003,6,27,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.9,3.9,20,88900,971,1322,402,755,876,111,78000,87400,13800,2710,300,7.7,6,6,16.0,77777,9,999999999,189,0.0870,0,88,0.170,0.0,1.0 +2003,6,27,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.9,4.4,21,87900,799,1322,400,602,858,82,62700,84900,11300,1890,290,8.8,6,5,16.0,77777,9,999999999,179,0.0870,0,88,0.170,0.0,1.0 +2003,6,27,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,3.9,21,88900,599,1322,381,438,726,108,45700,70400,13700,2200,290,8.2,1,1,16.0,77777,9,999999999,179,0.0870,0,88,0.170,0.0,1.0 +2003,6,27,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,5.0,25,88800,385,1322,367,265,633,80,27000,54900,11100,1450,300,6.2,0,0,16.0,77777,9,999999999,179,0.0870,0,88,0.170,0.0,1.0 +2003,6,27,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,5.6,30,88700,171,1322,357,134,370,86,12800,21500,10100,1730,280,4.6,0,0,16.0,77777,9,999999999,179,0.0870,0,88,0.170,0.0,1.0 +2003,6,27,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,6.1,36,88700,13,518,344,0,0,0,0,0,0,0,270,3.6,0,0,16.0,77777,9,999999999,179,0.0870,0,88,0.170,0.0,1.0 +2003,6,27,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,6.1,36,88700,0,0,344,0,0,0,0,0,0,0,240,3.6,0,0,16.0,77777,9,999999999,179,0.0870,0,88,0.170,0.0,1.0 +2003,6,27,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,6.1,39,88100,0,0,339,0,0,0,0,0,0,0,260,4.6,0,0,16.0,77777,9,999999999,179,0.0870,0,88,0.170,0.0,1.0 +2003,6,27,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,6.1,38,88700,0,0,342,0,0,0,0,0,0,0,250,4.1,0,0,16.0,77777,9,999999999,179,0.0870,0,88,0.170,0.0,1.0 +2003,6,28,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,6.1,40,88600,0,0,337,0,0,0,0,0,0,0,230,3.6,0,0,16.0,77777,9,999999999,179,0.0880,0,88,0.170,0.0,1.0 +2003,6,28,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,6.1,42,88600,0,0,334,0,0,0,0,0,0,0,240,6.7,0,0,16.0,77777,9,999999999,179,0.0880,0,88,0.170,0.0,1.0 +2003,6,28,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,6.1,43,88700,0,0,332,0,0,0,0,0,0,0,300,2.1,0,0,16.0,77777,9,999999999,179,0.0880,0,88,0.170,0.0,1.0 +2003,6,28,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,6.7,58,88600,0,0,346,0,0,0,0,0,0,0,0,0.0,8,8,16.0,2591,9,999999999,170,0.0880,0,88,0.170,0.0,1.0 +2003,6,28,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,6.7,60,88200,11,474,312,0,0,0,0,0,0,0,330,1.5,0,0,16.0,77777,9,999999999,170,0.0880,0,88,0.170,0.0,1.0 +2003,6,28,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,7.2,50,88700,164,1322,334,73,380,26,7400,25400,4200,500,290,2.6,1,1,16.0,77777,9,999999999,170,0.0880,0,88,0.170,0.0,1.0 +2003,6,28,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,7.8,47,88900,377,1322,356,231,638,49,24000,56400,7900,990,290,3.1,5,5,16.0,77777,9,999999999,170,0.0880,0,88,0.170,0.0,1.0 +2003,6,28,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,8.3,50,89000,592,1322,334,399,719,76,41700,69500,10500,1590,350,5.2,0,0,16.0,77777,9,999999999,170,0.0880,0,88,0.170,0.0,1.0 +2003,6,28,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,8.3,50,89000,792,1322,334,571,806,87,61200,80900,12600,2150,340,6.7,0,0,16.0,77777,9,999999999,160,0.0880,0,88,0.170,0.0,1.0 +2003,6,28,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,8.3,49,89100,965,1322,336,736,857,110,76200,85500,13600,2680,350,4.6,0,0,16.0,77777,9,999999999,160,0.0880,0,88,0.170,0.0,1.0 +2003,6,28,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,8.3,44,88400,1098,1322,344,849,886,111,87600,88700,13800,3670,360,5.7,0,0,16.0,77777,9,999999999,160,0.0880,0,88,0.170,0.0,1.0 +2003,6,28,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,7.8,40,89100,1182,1322,349,934,855,167,98600,86300,21300,8090,350,3.6,0,0,16.0,77777,9,999999999,160,0.0880,0,88,0.170,0.0,1.0 +2003,6,28,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,7.2,34,89100,1211,1322,363,876,643,286,92200,64900,32500,16420,360,1.5,1,1,16.0,77777,9,999999999,160,0.0880,0,88,0.170,0.0,1.0 +2003,6,28,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,6.7,31,89100,1184,1322,376,932,851,169,98500,85900,21400,8230,10,1.5,3,3,16.0,77777,9,999999999,170,0.0880,0,88,0.170,0.0,1.0 +2003,6,28,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,7.2,29,89100,1102,1322,392,854,831,159,89700,83700,19800,5900,20,3.6,5,5,16.0,77777,9,999999999,160,0.0880,0,88,0.170,0.0,1.0 +2003,6,28,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,6.7,28,89100,971,1322,395,528,263,334,57000,28400,36100,10290,40,1.5,6,6,16.0,77777,9,999999999,150,0.0880,0,88,0.170,0.0,1.0 +2003,6,28,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,6.7,28,88200,799,1322,376,588,709,158,61500,71000,18500,3720,50,3.1,1,1,16.0,77777,9,999999999,150,0.0880,0,88,0.170,0.0,1.0 +2003,6,28,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,6.1,27,89000,599,1322,368,438,719,111,45600,69700,14000,2250,60,3.1,0,0,16.0,77777,9,999999999,150,0.0880,0,88,0.170,0.0,1.0 +2003,6,28,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,5.6,27,89000,385,1322,372,265,633,80,27000,54900,11100,1450,0,0.0,1,1,16.0,77777,9,999999999,150,0.0880,0,88,0.170,0.0,1.0 +2003,6,28,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,5.0,26,89000,171,1322,364,107,0,107,11000,0,11000,1880,0,0.0,0,0,16.0,77777,9,999999999,150,0.0880,0,88,0.170,0.0,1.0 +2003,6,28,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,7.8,42,88900,13,518,350,0,0,0,0,0,0,0,260,3.6,1,1,16.0,77777,9,999999999,150,0.0880,0,88,0.170,0.0,1.0 +2003,6,28,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,6.7,40,88900,0,0,358,0,0,0,0,0,0,0,260,4.1,4,4,16.0,77777,9,999999999,139,0.0880,0,88,0.170,0.0,1.0 +2003,6,28,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,6.7,45,88300,0,0,343,0,0,0,0,0,0,0,260,4.6,2,2,16.0,77777,9,999999999,139,0.0880,0,88,0.170,0.0,1.0 +2003,6,28,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,6.7,48,88900,0,0,327,0,0,0,0,0,0,0,250,3.1,0,0,16.0,77777,9,999999999,139,0.0880,0,88,0.170,0.0,1.0 +2003,6,29,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,6.7,55,88800,0,0,317,0,0,0,0,0,0,0,260,3.1,0,0,16.0,77777,9,999999999,129,0.0880,0,88,0.170,0.0,1.0 +2003,6,29,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,7.2,67,88800,0,0,308,0,0,0,0,0,0,0,80,1.5,0,0,16.0,77777,9,999999999,129,0.0880,0,88,0.170,0.0,1.0 +2003,6,29,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,6.7,64,88800,0,0,307,0,0,0,0,0,0,0,270,2.1,0,0,16.0,77777,9,999999999,120,0.0880,0,88,0.170,0.0,1.0 +2003,6,29,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,6.7,62,88800,0,0,310,0,0,0,0,0,0,0,180,1.5,0,0,16.0,77777,9,999999999,120,0.0880,0,88,0.170,0.0,1.0 +2003,6,29,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,6.7,69,88400,10,452,303,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,110,0.0880,0,88,0.170,0.0,1.0 +2003,6,29,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,7.2,64,88800,162,1322,311,75,414,25,7700,27600,4300,480,100,1.5,0,0,16.0,77777,9,999999999,110,0.0880,0,88,0.170,0.0,1.0 +2003,6,29,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,7.2,57,88900,375,1322,318,239,665,50,24700,58600,8100,1000,0,0.0,0,0,16.0,77777,9,999999999,110,0.0880,0,88,0.170,0.0,1.0 +2003,6,29,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,8.9,58,88900,590,1322,327,408,765,66,43300,74400,10100,1460,340,1.5,0,0,16.0,77777,9,999999999,110,0.0880,0,88,0.170,0.0,1.0 +2003,6,29,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,8.3,49,89000,791,1322,336,592,858,77,61800,84900,10900,1840,350,1.5,0,0,16.0,77777,9,999999999,110,0.0880,0,88,0.170,0.0,1.0 +2003,6,29,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,8.9,43,89000,964,1322,350,720,851,98,74600,84900,12600,2570,0,0.0,0,0,16.0,77777,9,999999999,110,0.0880,0,88,0.170,0.0,1.0 +2003,6,29,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,10.0,37,88300,1097,1322,368,860,874,133,88300,87400,15600,3960,60,3.6,0,0,16.0,77777,9,999999999,110,0.0880,0,88,0.170,0.0,1.0 +2003,6,29,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,8.3,29,89000,1181,1322,384,916,879,129,94100,88100,15300,5270,180,3.6,1,1,16.0,77777,9,999999999,120,0.0880,0,88,0.170,0.0,1.0 +2003,6,29,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,29.4,7.2,25,89000,1211,1322,383,948,901,121,97600,90400,14600,5760,70,5.7,0,0,16.0,77777,9,999999999,120,0.0880,0,88,0.170,0.0,1.0 +2003,6,29,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,31.1,4.4,19,89000,1184,1322,396,932,911,115,96100,91400,14100,4960,60,8.2,1,1,16.0,77777,9,999999999,120,0.0880,0,88,0.170,0.0,1.0 +2003,6,29,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.6,4.4,19,88900,1102,1322,393,860,886,120,88600,88700,14500,3850,60,7.7,1,1,16.0,77777,9,999999999,120,0.0880,0,88,0.170,0.0,1.0 +2003,6,29,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,31.1,5.6,20,88900,970,1322,403,688,649,211,72100,65500,23900,6220,100,6.7,2,2,16.0,77777,9,999999999,129,0.0880,0,88,0.170,0.0,1.0 +2003,6,29,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.0,5.6,21,87800,799,1322,401,552,684,138,58300,68900,16600,3310,110,6.7,3,3,16.0,77777,9,999999999,129,0.0880,0,88,0.170,0.0,1.0 +2003,6,29,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,29.4,5.0,21,88800,599,1322,400,430,687,118,44600,66400,14500,2370,90,2.6,4,4,16.0,77777,9,999999999,139,0.0880,0,88,0.170,0.0,1.0 +2003,6,29,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,29.4,6.1,23,88700,384,1322,398,265,633,80,27000,54900,11100,1450,100,3.1,3,3,16.0,77777,9,999999999,160,0.0880,0,88,0.170,0.0,1.0 +2003,6,29,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,7.2,26,88600,171,1322,378,108,0,108,11100,0,11100,1860,170,1.5,0,0,16.0,77777,9,999999999,170,0.0880,0,88,0.170,0.0,1.0 +2003,6,29,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,7.8,32,88500,13,518,377,0,0,0,0,0,0,0,210,2.1,2,2,16.0,77777,9,999999999,170,0.0880,0,88,0.170,0.0,1.0 +2003,6,29,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,5.0,26,88500,0,0,380,0,0,0,0,0,0,0,140,4.6,5,3,16.0,77777,9,999999999,170,0.0880,0,88,0.170,0.0,1.0 +2003,6,29,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,4.4,29,87700,0,0,362,0,0,0,0,0,0,0,130,4.6,3,2,16.0,77777,9,999999999,179,0.0880,0,88,0.170,0.0,1.0 +2003,6,29,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,5.0,34,88300,0,0,350,0,0,0,0,0,0,0,260,3.6,1,1,16.0,77777,9,999999999,170,0.0880,0,88,0.170,0.0,1.0 +2003,6,30,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,6.7,48,88100,0,0,327,0,0,0,0,0,0,0,310,1.5,0,0,16.0,77777,9,999999999,160,0.0880,0,88,0.170,0.0,1.0 +2003,6,30,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,6.7,47,88200,0,0,344,0,0,0,0,0,0,0,0,0.0,3,3,16.0,77777,9,999999999,150,0.0880,0,88,0.170,0.0,1.0 +2003,6,30,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,6.7,52,88100,0,0,349,0,0,0,0,0,0,0,260,2.1,8,7,16.0,77777,9,999999999,160,0.0880,0,88,0.170,0.0,1.0 +2003,6,30,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,6.7,52,88100,0,0,336,0,0,0,0,0,0,0,250,3.6,4,3,16.0,77777,9,999999999,160,0.0880,0,88,0.170,0.0,1.0 +2003,6,30,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,7.2,57,87700,10,451,349,0,0,0,0,0,0,0,0,0.0,9,8,16.0,77777,9,999999999,160,0.0880,0,88,0.170,0.0,1.0 +2003,6,30,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,8.3,58,88100,161,1321,356,11,0,11,1400,0,1400,450,330,1.5,9,8,16.0,77777,9,999999999,160,0.0880,0,88,0.170,0.0,1.0 +2003,6,30,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,7.8,50,88200,374,1321,358,38,0,38,4600,0,4600,1650,300,1.5,7,7,16.0,77777,9,999999999,160,0.0880,0,88,0.170,0.0,1.0 +2003,6,30,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,7.8,42,88300,589,1321,378,126,0,126,14600,0,14600,5330,290,3.1,8,8,16.0,77777,9,999999999,150,0.0880,0,88,0.170,0.0,1.0 +2003,6,30,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,8.3,44,88400,790,1321,372,346,140,262,37800,14700,29000,7060,310,2.1,7,7,16.0,77777,9,999999999,150,0.0880,0,88,0.170,0.0,1.0 +2003,6,30,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,7.8,31,88500,963,1321,393,736,738,197,77300,74700,22800,5770,0,0.0,6,6,16.0,77777,9,999999999,150,0.0880,0,88,0.170,0.0,1.0 +2003,6,30,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,29.4,6.1,23,87700,1096,1321,389,854,898,108,88300,90000,13500,3600,260,7.7,2,1,16.0,77777,9,999999999,150,0.0880,0,88,0.170,0.0,1.0 +2003,6,30,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,31.7,6.7,21,88600,1180,1321,402,945,939,105,97700,94200,13400,4620,280,6.2,1,1,16.0,77777,9,999999999,150,0.0880,0,88,0.170,0.0,1.0 +2003,6,30,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,32.2,5.6,19,88600,1210,1321,396,954,913,116,98300,91600,14200,5580,280,6.7,0,0,16.0,77777,9,999999999,150,0.0880,0,88,0.170,0.0,1.0 +2003,6,30,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,33.3,5.6,18,88600,1183,1321,401,945,899,138,96800,90000,16100,5520,270,6.7,0,0,16.0,77777,9,999999999,150,0.0880,0,88,0.170,0.0,1.0 +2003,6,30,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,33.3,5.6,18,88600,1101,1321,409,841,880,106,86900,88200,13300,3610,300,9.3,1,1,16.0,77777,9,999999999,139,0.0880,0,88,0.170,0.0,1.0 +2003,6,30,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,33.3,5.0,17,88600,970,1321,408,735,814,136,77200,81800,17000,3830,290,8.8,1,1,16.0,77777,9,999999999,129,0.0880,0,88,0.170,0.0,1.0 +2003,6,30,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,32.8,5.0,18,87500,799,1321,398,581,752,125,61700,76100,15700,3040,280,5.7,0,0,16.0,77777,9,999999999,110,0.0880,0,88,0.170,0.0,1.0 +2003,6,30,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,31.1,5.0,19,88600,599,1321,389,438,752,97,46100,73300,12900,2010,350,7.2,0,0,16.0,77777,9,999999999,120,0.0880,0,88,0.170,0.0,1.0 +2003,6,30,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,29.4,4.4,20,88500,384,1321,380,265,633,81,27100,54800,11200,1470,330,6.2,0,0,16.0,77777,9,999999999,120,0.0880,0,88,0.170,0.0,1.0 +2003,6,30,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,4.4,23,88500,170,1321,381,0,0,0,0,0,0,0,290,3.1,3,2,16.0,77777,9,999999999,129,0.0880,0,88,0.170,0.0,1.0 +2003,6,30,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,4.4,25,88500,13,518,373,0,0,0,0,0,0,0,260,5.7,3,2,16.0,77777,9,999999999,139,0.0880,0,88,0.170,0.0,1.0 +2003,6,30,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,4.1,31,88400,0,0,347,0,0,0,0,0,0,0,240,5.0,0,0,16.0,77777,9,999999999,139,0.0880,0,88,0.170,0.0,1.0 +2003,6,30,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,3.7,30,87800,0,0,340,0,0,0,0,0,0,0,240,4.3,1,1,16.0,77777,9,999999999,150,0.0880,0,88,0.170,0.0,1.0 +2003,6,30,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,3.4,33,88400,0,0,332,0,0,0,0,0,0,0,270,3.6,2,2,16.0,77777,9,999999999,150,0.0880,0,88,0.170,0.0,1.0 +1979,7,1,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,14.4,3.0,64,87800,0,0,308,0,0,0,0,0,0,0,280,3.0,2,0,16.0,77777,9,999999999,120,0.0880,0,88,999.000,999.0,99.0 +1979,7,1,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,11.6,2.7,71,87800,0,0,296,0,0,0,0,0,0,0,290,2.3,2,0,24.1,77777,9,999999999,120,0.0880,0,88,999.000,999.0,99.0 +1979,7,1,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,8.8,2.3,73,87800,0,0,284,0,0,0,0,0,0,0,310,1.6,1,0,24.1,77777,9,999999999,120,0.0880,0,88,999.000,999.0,99.0 +1979,7,1,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,6.0,2.0,74,87800,0,0,273,0,0,0,0,0,0,0,340,0.9,1,0,24.1,77777,9,999999999,120,0.0880,0,88,999.000,999.0,99.0 +1979,7,1,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,1.7,76,87800,9,429,271,6,20,4,0,0,0,0,0,0.0,0,0,64.4,77777,9,999999999,120,0.0780,0,88,999.000,999.0,99.0 +1979,7,1,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,8.7,2.6,67,87700,159,1321,290,65,276,32,6600,16800,4600,570,30,1.5,2,1,64.4,77777,9,999999999,129,0.0780,0,88,999.000,999.0,99.0 +1979,7,1,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,11.9,3.3,57,87600,373,1321,311,169,322,78,18000,27900,10100,1420,50,3.1,3,3,64.4,77777,9,999999999,139,0.0780,0,88,999.000,999.0,99.0 +1979,7,1,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,3.9,48,87500,588,1321,328,370,654,79,39500,64000,11000,1670,80,4.6,5,4,64.4,77777,9,999999999,139,0.0780,0,88,999.000,999.0,99.0 +1979,7,1,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,17.2,3.3,41,87400,789,1321,337,454,511,148,47600,51200,17000,3470,110,5.5,4,4,64.4,77777,9,999999999,139,0.0780,0,88,999.000,999.0,99.0 +1979,7,1,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,19.5,2.5,34,87300,962,1321,344,633,600,195,66500,60700,22300,5710,140,6.3,4,3,64.4,77777,9,999999999,129,0.0780,0,88,999.000,999.0,99.0 +1979,7,1,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,1.7,27,87200,1095,1321,354,828,767,191,88500,78500,23300,7560,170,7.2,3,3,64.4,77777,9,999999999,120,0.0780,0,88,999.000,999.0,99.0 +1979,7,1,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,22.8,1.6,25,87100,1180,1321,362,833,687,218,89000,70300,26100,11200,180,7.5,4,4,64.4,77777,9,999999999,120,0.0780,0,88,999.000,999.0,99.0 +1979,7,1,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,23.9,1.5,24,87000,1210,1321,373,790,565,270,83200,57200,30700,15470,180,7.9,6,6,64.4,77777,9,999999999,120,0.0780,0,88,999.000,999.0,99.0 +1979,7,1,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,1.7,22,86900,1183,1321,384,704,343,396,77100,37300,43700,19250,190,8.2,7,7,64.4,2740,9,999999999,120,0.0780,0,88,999.000,999.0,99.0 +1979,7,1,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,22.8,2.0,27,86900,1101,1321,379,517,229,326,56900,24900,36200,12470,210,8.9,8,8,64.4,2740,9,999999999,129,0.0780,0,88,999.000,999.0,99.0 +1979,7,1,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,20.5,2.5,32,86900,970,1321,376,489,292,274,53600,31600,30400,8180,240,9.6,9,9,64.4,2740,9,999999999,129,0.0780,0,88,999.000,999.0,99.0 +1979,7,1,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,3.3,37,86900,799,1321,376,214,3,212,24800,200,24700,9220,260,10.3,10,10,64.4,2740,9,999999999,129,0.0780,0,88,999.000,999.0,99.0 +1979,7,1,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,17.6,3.4,40,87000,599,1321,372,150,1,149,17200,100,17100,6100,260,8.6,10,10,64.4,2333,9,999999999,139,0.0780,0,88,999.000,999.0,99.0 +1979,7,1,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,16.8,3.8,43,87200,384,1321,369,89,3,88,10100,200,10100,3340,260,6.9,10,10,64.4,1927,9,999999999,139,0.0780,0,88,999.000,999.0,99.0 +1979,7,1,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,4.4,46,87300,170,1321,366,36,2,36,4100,0,4100,1260,260,5.2,10,10,64.4,1520,9,999999999,139,0.0780,0,88,999.000,999.0,99.0 +1979,7,1,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,14.6,3.3,47,87400,13,496,340,6,3,6,0,0,0,0,260,6.4,8,8,64.4,77777,9,999999999,129,0.0780,0,88,999.000,999.0,99.0 +1979,7,1,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,13.2,2.3,48,87500,0,0,323,0,0,0,0,0,0,0,270,7.6,6,6,64.4,77777,9,999999999,129,0.0780,0,88,999.000,999.0,99.0 +1979,7,1,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,11.7,1.1,49,87600,0,0,310,0,0,0,0,0,0,0,270,8.8,4,4,64.4,77777,9,999999999,120,0.0780,0,88,999.000,999.0,99.0 +1979,7,1,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,10.9,0.6,48,87700,0,0,308,0,0,0,0,0,0,0,260,7.4,5,5,64.4,77777,9,999999999,110,0.0780,0,88,999.000,999.0,99.0 +1979,7,2,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,10.2,-0.4,47,87700,0,0,311,0,0,0,0,0,0,0,260,6.0,7,7,64.4,77777,9,999999999,100,0.0780,0,88,999.000,999.0,99.0 +1979,7,2,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,9.4,-1.7,46,87800,0,0,311,0,0,0,0,0,0,0,250,4.6,8,8,24.1,2130,9,999999999,100,0.0780,0,88,999.000,999.0,99.0 +1979,7,2,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,9.0,-1.3,47,87800,0,0,309,0,0,0,0,0,0,0,250,4.4,8,8,24.1,2130,9,999999999,100,0.0780,0,88,999.000,999.0,99.0 +1979,7,2,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,8.7,-1.4,49,87800,0,0,314,0,0,0,0,0,0,0,250,4.3,9,9,24.1,2130,9,999999999,100,0.0780,0,88,999.000,999.0,99.0 +1979,7,2,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,-1.7,50,87800,9,429,312,4,3,4,0,0,0,0,250,4.1,9,9,64.4,2130,9,999999999,100,0.0330,0,88,999.000,999.0,99.0 +1979,7,2,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,8.7,-1.2,50,87800,158,1321,315,51,28,47,5500,1900,5300,1090,270,3.9,9,9,64.4,2030,9,999999999,100,0.0330,0,88,999.000,999.0,99.0 +1979,7,2,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,9.0,-0.9,50,87800,371,1321,316,121,51,107,13300,4600,12000,2790,280,3.8,9,9,64.4,1930,9,999999999,100,0.0330,0,88,999.000,999.0,99.0 +1979,7,2,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,-0.6,50,87800,586,1321,318,286,287,158,30700,29100,17800,3340,300,3.6,9,9,64.4,1830,9,999999999,110,0.0330,0,88,999.000,999.0,99.0 +1979,7,2,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,10.7,0.1,48,87800,787,1321,318,235,113,168,26500,11900,19300,4520,340,3.6,8,8,64.4,2337,9,999999999,110,0.0330,0,88,999.000,999.0,99.0 +1979,7,2,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,12.0,0.6,46,87800,961,1321,325,493,326,256,54300,35300,28600,7480,10,3.6,8,8,64.4,2843,9,999999999,110,0.0330,0,88,999.000,999.0,99.0 +1979,7,2,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,1.1,44,87800,1094,1321,326,751,638,222,79500,64900,25700,8650,50,3.6,7,7,64.4,3350,9,999999999,120,0.0330,0,88,999.000,999.0,99.0 +1979,7,2,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,15.2,1.6,41,87800,1179,1321,332,914,829,172,96200,83600,21500,8190,70,3.9,7,6,64.4,4470,9,999999999,120,0.0330,0,88,999.000,999.0,99.0 +1979,7,2,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,17.0,2.0,37,87800,1209,1321,340,830,652,232,88600,66600,27500,13390,90,4.3,7,6,64.4,5590,9,999999999,120,0.0330,0,88,999.000,999.0,99.0 +1979,7,2,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,2.8,34,87700,1182,1321,347,776,572,263,81800,57900,29900,13460,110,4.6,7,5,64.4,6710,9,999999999,129,0.0330,0,88,999.000,999.0,99.0 +1979,7,2,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,19.8,2.9,33,87700,1101,1321,352,648,399,314,69100,41600,34300,12730,90,3.9,6,5,64.4,77777,9,999999999,129,0.0330,0,88,999.000,999.0,99.0 +1979,7,2,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,20.8,3.3,32,87700,970,1321,354,683,724,151,73300,74200,18700,4620,60,3.3,5,4,64.4,77777,9,999999999,129,0.0330,0,88,999.000,999.0,99.0 +1979,7,2,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,3.9,31,87700,798,1321,359,487,549,155,51000,55000,17800,3660,40,2.6,4,4,64.4,77777,9,999999999,139,0.0330,0,88,999.000,999.0,99.0 +1979,7,2,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,20.6,2.5,31,87800,598,1321,352,369,579,107,38600,56200,13100,2180,10,2.9,4,4,64.4,77777,9,999999999,129,0.0330,0,88,999.000,999.0,99.0 +1979,7,2,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,19.4,1.5,30,87800,383,1321,346,222,513,72,22800,44700,9800,1340,330,3.3,4,4,64.4,77777,9,999999999,120,0.0330,0,88,999.000,999.0,99.0 +1979,7,2,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,0.6,30,87900,169,1321,339,72,225,43,7400,13300,5700,780,300,3.6,4,4,64.4,77777,9,999999999,110,0.0330,0,88,999.000,999.0,99.0 +1979,7,2,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,16.5,1.0,36,87900,12,496,329,13,32,9,0,0,0,0,300,3.8,3,3,64.4,77777,9,999999999,120,0.0330,0,88,999.000,999.0,99.0 +1979,7,2,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,14.6,1.5,41,87900,0,0,321,0,0,0,0,0,0,0,290,3.9,3,3,64.4,77777,9,999999999,120,0.0330,0,88,999.000,999.0,99.0 +1979,7,2,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,12.8,1.7,47,88000,0,0,310,0,0,0,0,0,0,0,290,4.1,2,2,24.1,77777,9,999999999,120,0.0330,0,88,999.000,999.0,99.0 +1979,7,2,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,11.9,2.5,52,88000,0,0,307,0,0,0,0,0,0,0,280,3.4,2,2,24.1,77777,9,999999999,120,0.0330,0,88,999.000,999.0,99.0 +1979,7,3,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,10.9,2.8,56,88000,0,0,299,0,0,0,0,0,0,0,280,2.8,1,1,24.1,77777,9,999999999,129,0.0330,0,88,999.000,999.0,99.0 +1979,7,3,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,10.0,2.8,61,88100,0,0,295,0,0,0,0,0,0,0,270,2.1,1,1,24.1,77777,9,999999999,129,0.0330,0,88,999.000,999.0,99.0 +1979,7,3,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,10.0,2.8,60,88100,0,0,295,0,0,0,0,0,0,0,260,2.4,1,1,24.1,77777,9,999999999,129,0.0330,0,88,999.000,999.0,99.0 +1979,7,3,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,10.0,2.3,58,88200,0,0,295,0,0,0,0,0,0,0,260,2.8,1,1,24.1,77777,9,999999999,120,0.0330,0,88,999.000,999.0,99.0 +1979,7,3,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,1.7,57,88200,8,407,294,10,62,4,0,0,0,0,250,3.1,1,1,64.4,77777,9,999999999,120,0.0290,0,88,999.000,999.0,99.0 +1979,7,3,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,11.7,1.8,52,88200,156,1321,301,74,436,23,7600,28800,4200,460,300,2.6,1,1,64.4,77777,9,999999999,120,0.0290,0,88,999.000,999.0,99.0 +1979,7,3,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,13.3,1.8,46,88300,369,1321,312,215,520,69,22100,44800,9600,1280,350,2.0,2,2,64.4,77777,9,999999999,120,0.0290,0,88,999.000,999.0,99.0 +1979,7,3,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,1.7,41,88300,584,1321,320,385,718,67,40800,69600,9900,1460,40,1.5,2,2,64.4,77777,9,999999999,120,0.0290,0,88,999.000,999.0,99.0 +1979,7,3,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,16.5,2.7,40,88300,786,1321,328,556,831,60,58400,82300,9400,1630,40,1.5,2,2,64.4,77777,9,999999999,129,0.0290,0,88,999.000,999.0,99.0 +1979,7,3,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,17.9,3.5,38,88200,959,1321,330,684,854,62,71800,85500,9700,1980,30,1.5,1,1,64.4,77777,9,999999999,129,0.0290,0,88,999.000,999.0,99.0 +1979,7,3,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,4.4,37,88200,1093,1321,338,867,972,61,91100,97700,10200,2430,30,1.5,1,1,64.4,77777,9,999999999,139,0.0290,0,88,999.000,999.0,99.0 +1979,7,3,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,21.8,5.8,36,88100,1178,1321,356,846,807,124,86900,80900,14700,5090,30,1.9,2,2,64.4,77777,9,999999999,160,0.0290,0,88,999.000,999.0,99.0 +1979,7,3,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.3,7.2,34,88100,1208,1321,374,921,850,142,94300,85100,16300,6290,30,2.2,3,3,64.4,77777,9,999999999,170,0.0290,0,88,999.000,999.0,99.0 +1979,7,3,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,8.9,33,88000,1182,1321,391,615,462,200,66000,47400,23500,10410,30,2.6,4,4,64.4,77777,9,999999999,189,0.0290,0,88,999.000,999.0,99.0 +1979,7,3,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,27.6,8.1,30,87900,1100,1321,392,761,737,146,80700,74500,18600,5510,50,3.3,4,3,64.4,77777,9,999999999,179,0.0290,0,88,999.000,999.0,99.0 +1979,7,3,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,28.5,7.5,28,87900,969,1321,396,674,748,124,71400,75500,16000,3590,60,3.9,4,3,64.4,77777,9,999999999,179,0.0290,0,88,999.000,999.0,99.0 +1979,7,3,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,7.2,25,87800,798,1321,396,507,601,143,53400,60400,16800,3410,80,4.6,4,2,64.4,77777,9,999999999,170,0.0290,0,88,999.000,999.0,99.0 +1979,7,3,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,26.6,6.9,30,87900,598,1321,385,330,518,95,34700,50500,11800,1970,30,5.3,6,3,64.4,77777,9,999999999,170,0.0290,0,88,999.000,999.0,99.0 +1979,7,3,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,23.9,7.0,36,87900,383,1321,371,208,509,60,21700,44700,8700,1150,340,6.0,8,3,64.4,77777,9,999999999,170,0.0290,0,88,999.000,999.0,99.0 +1979,7,3,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,7.2,41,88000,169,1321,361,62,166,40,6400,9800,5100,720,290,6.7,10,4,64.4,77777,9,999999999,170,0.0290,0,88,999.000,999.0,99.0 +1979,7,3,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,20.0,7.2,44,88000,12,496,352,13,43,9,0,0,0,0,280,6.0,9,3,64.4,77777,9,999999999,170,0.0290,0,88,999.000,999.0,99.0 +1979,7,3,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,18.9,7.3,47,88100,0,0,347,0,0,0,0,0,0,0,280,5.3,9,3,64.4,77777,9,999999999,170,0.0290,0,88,999.000,999.0,99.0 +1979,7,3,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,17.8,7.2,50,88100,0,0,339,0,0,0,0,0,0,0,270,4.6,8,2,24.1,77777,9,999999999,170,0.0290,0,88,999.000,999.0,99.0 +1979,7,3,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,17.8,7.6,50,88100,0,0,345,0,0,0,0,0,0,0,270,4.8,9,4,24.1,77777,9,999999999,170,0.0290,0,88,999.000,999.0,99.0 +1979,7,4,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,17.8,7.5,50,88100,0,0,351,0,0,0,0,0,0,0,270,5.0,9,6,24.1,77777,9,999999999,170,0.0290,0,88,999.000,999.0,99.0 +1979,7,4,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,17.8,7.2,50,88100,0,0,360,0,0,0,0,0,0,0,270,5.2,10,8,24.1,3660,9,999999999,170,0.0290,0,88,999.000,999.0,99.0 +1979,7,4,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,17.2,7.8,53,88100,0,0,366,0,0,0,0,0,0,0,270,4.7,10,9,24.1,3353,9,999999999,170,0.0290,0,88,999.000,999.0,99.0 +1979,7,4,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,16.7,7.9,55,88200,0,0,363,0,0,0,0,0,0,0,270,4.1,10,9,24.1,3047,9,999999999,170,0.0290,0,88,999.000,999.0,99.0 +1979,7,4,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,7.8,58,88200,8,407,370,3,0,3,0,0,0,0,270,3.6,10,10,64.4,2740,9,999999999,170,0.1180,0,88,999.000,999.0,99.0 +1979,7,4,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,16.7,8.3,57,88200,154,1321,374,23,4,23,2700,0,2700,860,290,3.3,10,10,64.4,3047,9,999999999,179,0.1180,0,88,999.000,999.0,99.0 +1979,7,4,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,17.2,8.6,57,88200,367,1321,377,92,5,90,10300,300,10300,3330,300,2.9,10,10,64.4,3353,9,999999999,179,0.1180,0,88,999.000,999.0,99.0 +1979,7,4,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,8.9,56,88300,583,1321,380,166,10,161,18800,800,18500,6360,320,2.6,10,10,64.4,3660,9,999999999,189,0.1180,0,88,999.000,999.0,99.0 +1979,7,4,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,19.1,9.4,53,88300,784,1321,369,279,125,205,31000,13100,23200,5500,330,1.7,10,8,64.4,77777,9,999999999,189,0.1180,0,88,999.000,999.0,99.0 +1979,7,4,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,20.4,9.7,51,88300,958,1321,366,527,396,238,56500,41200,26600,7000,350,0.9,9,6,64.4,77777,9,999999999,200,0.1180,0,88,999.000,999.0,99.0 +1979,7,4,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,10.0,48,88300,1092,1321,367,757,686,189,81000,70300,22800,7420,0,0.0,9,4,64.4,77777,9,999999999,200,0.1180,0,88,999.000,999.0,99.0 +1979,7,4,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,22.4,9.7,45,88200,1177,1321,373,754,552,261,79500,55900,29600,13100,0,0.0,8,5,64.4,77777,9,999999999,200,0.1180,0,88,999.000,999.0,99.0 +1979,7,4,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,23.2,9.4,43,88200,1207,1321,377,819,607,263,86600,61600,30200,14950,0,0.0,8,5,64.4,77777,9,999999999,200,0.1180,0,88,999.000,999.0,99.0 +1979,7,4,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,9.4,40,88200,1181,1321,384,768,546,279,83900,57200,32700,14540,0,0.0,7,6,64.4,1830,9,999999999,189,0.1180,0,88,999.000,999.0,99.0 +1979,7,4,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,23.9,7.1,35,88100,1100,1321,385,455,172,311,50600,18400,35300,12010,310,1.9,8,7,64.4,1830,9,999999999,170,0.1180,0,88,999.000,999.0,99.0 +1979,7,4,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,23.9,5.1,31,88100,969,1321,382,596,461,257,63600,47900,28500,7750,250,3.8,8,7,64.4,1830,9,999999999,150,0.1180,0,88,999.000,999.0,99.0 +1979,7,4,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,3.3,26,88100,797,1321,386,346,238,202,37900,25400,22500,4860,200,5.7,9,8,48.3,1830,9,999999999,129,0.1180,0,88,999.000,999.0,99.0 +1979,7,4,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,23.2,4.5,31,88100,597,1321,378,276,147,209,29800,14800,23100,5050,250,3.8,9,7,48.3,3253,9,999999999,150,0.1180,0,88,999.000,999.0,99.0 +1979,7,4,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,22.4,6.1,36,88100,382,1321,376,136,103,106,14800,9300,12100,2360,310,1.9,8,7,48.3,4677,9,999999999,160,0.1180,0,88,999.000,999.0,99.0 +1979,7,4,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,7.8,41,88100,168,1321,370,47,35,43,5200,2500,4900,1040,0,0.0,8,6,64.4,6100,9,999999999,170,0.1180,0,88,999.000,999.0,99.0 +1979,7,4,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,20.4,8.3,47,88200,12,495,361,5,4,4,0,0,0,0,330,1.2,7,5,64.4,77777,9,999999999,179,0.1180,0,88,999.000,999.0,99.0 +1979,7,4,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,19.1,9.0,52,88200,0,0,353,0,0,0,0,0,0,0,300,2.4,5,4,64.4,77777,9,999999999,189,0.1180,0,88,999.000,999.0,99.0 +1979,7,4,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,17.8,9.4,58,88300,0,0,345,0,0,0,0,0,0,0,270,3.6,4,3,24.1,77777,9,999999999,189,0.1180,0,88,999.000,999.0,99.0 +1979,7,4,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,16.9,10.0,63,88300,0,0,338,0,0,0,0,0,0,0,270,3.6,3,2,24.1,77777,9,999999999,200,0.1180,0,88,999.000,999.0,99.0 +1979,7,5,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,15.9,10.1,67,88300,0,0,329,0,0,0,0,0,0,0,260,3.6,1,1,24.1,77777,9,999999999,200,0.1180,0,88,999.000,999.0,99.0 +1979,7,5,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,15.0,10.0,72,88300,0,0,318,0,0,0,0,0,0,0,260,3.6,0,0,24.1,77777,9,999999999,200,0.1180,0,88,999.000,999.0,99.0 +1979,7,5,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,13.9,10.0,76,88400,0,0,314,0,0,0,0,0,0,0,290,2.4,0,0,24.1,77777,9,999999999,200,0.1180,0,88,999.000,999.0,99.0 +1979,7,5,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,12.8,9.5,79,88400,0,0,308,0,0,0,0,0,0,0,330,1.2,0,0,24.1,77777,9,999999999,189,0.1180,0,88,999.000,999.0,99.0 +1979,7,5,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,8.9,83,88400,7,385,303,7,29,4,0,0,0,0,0,0.0,0,0,64.4,77777,9,999999999,189,0.0560,0,88,999.000,999.0,99.0 +1979,7,5,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,13.7,9.6,76,88400,152,1321,312,67,370,24,6700,24000,4000,460,360,0.7,0,0,64.4,77777,9,999999999,189,0.0560,0,88,999.000,999.0,99.0 +1979,7,5,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,15.8,10.1,70,88400,365,1321,322,222,658,39,23300,58100,7300,920,350,1.4,0,0,64.4,77777,9,999999999,200,0.0560,0,88,999.000,999.0,99.0 +1979,7,5,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,10.6,63,88500,581,1321,332,397,779,54,41800,74800,8900,1310,350,2.1,0,0,64.4,77777,9,999999999,209,0.0560,0,88,999.000,999.0,99.0 +1979,7,5,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,19.6,11.1,58,88400,782,1321,340,573,851,67,59900,84200,10000,1720,360,2.3,0,0,64.4,77777,9,999999999,209,0.0560,0,88,999.000,999.0,99.0 +1979,7,5,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,21.5,11.4,53,88400,956,1321,350,728,896,77,75900,89600,11000,2260,20,2.4,0,0,64.4,77777,9,999999999,220,0.0560,0,88,999.000,999.0,99.0 +1979,7,5,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,11.7,48,88400,1091,1321,359,844,917,85,87800,92000,11700,3080,30,2.6,0,0,64.4,77777,9,999999999,220,0.0560,0,88,999.000,999.0,99.0 +1979,7,5,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,25.5,10.5,41,88300,1176,1321,375,739,671,140,79500,68200,18600,6840,30,3.1,1,1,64.4,77777,9,999999999,209,0.0560,0,88,999.000,999.0,99.0 +1979,7,5,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,27.8,9.2,33,88200,1206,1321,394,893,778,181,93900,78300,22200,9610,20,3.6,3,3,64.4,77777,9,999999999,200,0.0560,0,88,999.000,999.0,99.0 +1979,7,5,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,8.3,26,88100,1180,1321,408,872,774,178,91400,77900,21700,8460,20,4.1,4,4,64.4,77777,9,999999999,179,0.0560,0,88,999.000,999.0,99.0 +1979,7,5,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,29.8,6.4,24,88100,1099,1321,407,725,649,184,77700,66600,22300,7380,70,5.5,5,5,64.4,77777,9,999999999,160,0.0560,0,88,999.000,999.0,99.0 +1979,7,5,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,29.6,4.7,21,88100,968,1321,407,610,478,259,65100,49700,28600,7810,130,6.8,7,6,64.4,77777,9,999999999,150,0.0560,0,88,999.000,999.0,99.0 +1979,7,5,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,3.3,19,88100,797,1321,409,404,398,164,44000,40900,19200,3820,180,8.2,8,7,48.3,1830,9,999999999,129,0.0560,0,88,999.000,999.0,99.0 +1979,7,5,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,27.0,5.4,29,88100,597,1321,399,254,186,169,27800,18800,19300,4080,230,6.3,8,7,48.3,1780,9,999999999,170,0.0560,0,88,999.000,999.0,99.0 +1979,7,5,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.6,8.0,38,88100,381,1321,390,127,102,97,13900,9200,11200,2160,280,4.5,8,7,48.3,1730,9,999999999,189,0.0560,0,88,999.000,999.0,99.0 +1979,7,5,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,10.6,48,88100,167,1321,381,47,5,46,5200,0,5200,1480,330,2.6,8,7,48.3,1680,9,999999999,209,0.0560,0,88,999.000,999.0,99.0 +1979,7,5,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,21.5,10.0,48,88100,11,473,372,8,11,7,0,0,0,0,310,2.9,7,6,48.3,77777,9,999999999,200,0.0560,0,88,999.000,999.0,99.0 +1979,7,5,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,20.7,9.6,49,88200,0,0,364,0,0,0,0,0,0,0,290,3.3,6,5,48.3,77777,9,999999999,189,0.0560,0,88,999.000,999.0,99.0 +1979,7,5,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,20.0,8.9,49,88200,0,0,357,0,0,0,0,0,0,0,270,3.6,5,4,24.1,77777,9,999999999,189,0.0560,0,88,999.000,999.0,99.0 +1979,7,5,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,19.1,9.0,51,88200,0,0,350,0,0,0,0,0,0,0,260,3.6,4,3,24.1,77777,9,999999999,179,0.0560,0,88,999.000,999.0,99.0 +1979,7,6,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,18.1,8.5,52,88200,0,0,337,0,0,0,0,0,0,0,260,3.6,4,1,24.1,77777,9,999999999,179,0.0560,0,88,999.000,999.0,99.0 +1979,7,6,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,17.2,7.8,54,88300,0,0,326,0,0,0,0,0,0,0,250,3.6,3,0,24.1,77777,9,999999999,170,0.0560,0,88,999.000,999.0,99.0 +1979,7,6,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,16.5,8.2,57,88300,0,0,323,0,0,0,0,0,0,0,240,3.4,3,0,24.1,77777,9,999999999,170,0.0560,0,88,999.000,999.0,99.0 +1979,7,6,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,15.7,8.1,59,88300,0,0,326,0,0,0,0,0,0,0,240,3.3,4,1,24.1,77777,9,999999999,170,0.0560,0,88,999.000,999.0,99.0 +1979,7,6,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,7.8,62,88300,7,363,322,5,21,3,0,0,0,0,230,3.1,4,1,64.4,77777,9,999999999,170,0.0540,0,88,999.000,999.0,99.0 +1979,7,6,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,16.5,8.5,59,88300,149,1321,330,60,251,32,6100,14800,4400,560,270,2.1,5,1,64.4,77777,9,999999999,179,0.0540,0,88,999.000,999.0,99.0 +1979,7,6,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,17.9,9.0,56,88300,363,1321,337,198,503,60,20600,43400,8700,1130,320,1.0,6,1,64.4,77777,9,999999999,189,0.0540,0,88,999.000,999.0,99.0 +1979,7,6,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,9.4,53,88300,579,1321,344,368,657,79,39100,64100,11000,1660,0,0.0,7,1,64.4,77777,9,999999999,189,0.0540,0,88,999.000,999.0,99.0 +1979,7,6,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,21.6,9.9,48,88200,781,1321,355,527,744,86,56300,74600,12200,2100,20,0.9,6,1,64.4,77777,9,999999999,200,0.0540,0,88,999.000,999.0,99.0 +1979,7,6,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,23.9,10.2,43,88100,955,1321,367,699,860,75,72900,86000,10700,2220,50,1.7,4,1,64.4,77777,9,999999999,209,0.0540,0,88,999.000,999.0,99.0 +1979,7,6,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,10.6,38,88100,1089,1321,378,782,834,93,81200,83600,12100,3250,70,2.6,3,1,64.4,77777,9,999999999,209,0.0540,0,88,999.000,999.0,99.0 +1979,7,6,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,27.4,10.3,35,88000,1175,1321,393,808,709,175,84800,71400,21200,8170,60,3.1,5,3,64.4,77777,9,999999999,209,0.0540,0,88,999.000,999.0,99.0 +1979,7,6,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,28.7,10.0,32,88000,1206,1321,406,808,610,250,85700,62100,29000,14150,40,3.6,6,5,64.4,77777,9,999999999,200,0.0540,0,88,999.000,999.0,99.0 +1979,7,6,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,10.0,29,87900,1179,1321,422,611,306,337,67700,33300,37900,15960,30,4.1,8,7,64.4,3660,9,999999999,200,0.0540,0,88,999.000,999.0,99.0 +1979,7,6,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,28.7,9.4,31,87900,1098,1321,414,671,476,274,72600,49800,31100,10950,10,4.5,8,7,64.4,3660,9,999999999,200,0.0540,0,88,999.000,999.0,99.0 +1979,7,6,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,27.4,9.0,32,88000,968,1321,413,473,265,278,51700,28700,30700,8290,360,4.8,8,8,64.4,3660,9,999999999,189,0.0540,0,88,999.000,999.0,99.0 +1979,7,6,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,8.9,34,88000,796,1321,405,412,305,228,44700,32500,25100,5600,340,5.2,8,8,64.4,3660,9,999999999,189,0.0540,0,88,999.000,999.0,99.0 +1979,7,6,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,25.4,8.0,34,88000,596,1321,394,259,239,150,27900,24300,16900,3150,350,4.2,8,7,64.4,77777,9,999999999,179,0.0540,0,88,999.000,999.0,99.0 +1979,7,6,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.6,7.6,34,88100,380,1321,381,166,236,97,17600,21000,11600,1880,10,3.1,8,5,64.4,77777,9,999999999,170,0.0540,0,88,999.000,999.0,99.0 +1979,7,6,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,7.2,34,88200,166,1321,375,59,159,39,6100,9300,5000,700,20,2.1,8,4,48.3,77777,9,999999999,170,0.0540,0,88,999.000,999.0,99.0 +1979,7,6,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,21.1,7.6,43,88200,11,473,358,8,18,7,0,0,0,0,80,2.3,7,3,48.3,77777,9,999999999,179,0.0540,0,88,999.000,999.0,99.0 +1979,7,6,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,18.4,8.1,53,88200,0,0,342,0,0,0,0,0,0,0,140,2.4,7,2,48.3,77777,9,999999999,179,0.0540,0,88,999.000,999.0,99.0 +1979,7,6,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,15.6,8.3,62,88200,0,0,325,0,0,0,0,0,0,0,200,2.6,6,1,24.1,77777,9,999999999,179,0.0540,0,88,999.000,999.0,99.0 +1979,7,6,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,14.3,8.2,65,88200,0,0,319,0,0,0,0,0,0,0,200,2.6,5,1,24.1,77777,9,999999999,170,0.0540,0,88,999.000,999.0,99.0 +1979,7,7,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,13.0,7.6,69,88200,0,0,313,0,0,0,0,0,0,0,190,2.6,4,1,24.1,77777,9,999999999,170,0.0540,0,88,999.000,999.0,99.0 +1979,7,7,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,11.7,6.7,72,88200,0,0,306,0,0,0,0,0,0,0,190,2.6,3,1,24.1,77777,9,999999999,160,0.0540,0,88,999.000,999.0,99.0 +1979,7,7,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,11.3,7.1,74,88200,0,0,305,0,0,0,0,0,0,0,200,2.2,2,1,24.1,77777,9,999999999,160,0.0540,0,88,999.000,999.0,99.0 +1979,7,7,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,11.0,7.0,75,88300,0,0,298,0,0,0,0,0,0,0,200,1.9,1,0,24.1,77777,9,999999999,160,0.0540,0,88,999.000,999.0,99.0 +1979,7,7,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,6.7,77,88300,6,341,296,3,3,3,0,0,0,0,210,1.5,0,0,64.4,77777,9,999999999,160,0.1370,0,88,999.000,999.0,99.0 +1979,7,7,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,12.6,7.7,72,88300,147,1321,306,54,185,33,5600,10100,4500,590,170,1.5,0,0,64.4,77777,9,999999999,170,0.1370,0,88,999.000,999.0,99.0 +1979,7,7,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,14.7,8.6,68,88300,361,1321,316,196,489,62,20300,42000,8800,1160,120,1.5,0,0,64.4,77777,9,999999999,179,0.1370,0,88,999.000,999.0,99.0 +1979,7,7,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,9.4,63,88300,577,1321,325,374,652,88,39400,63300,11700,1820,80,1.5,0,0,64.4,77777,9,999999999,189,0.1370,0,88,999.000,999.0,99.0 +1979,7,7,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,19.8,9.4,53,88300,779,1321,339,549,742,110,57100,73600,13700,2450,70,1.5,0,0,64.4,77777,9,999999999,200,0.1370,0,88,999.000,999.0,99.0 +1979,7,7,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,23.0,9.1,44,88300,953,1321,354,710,805,127,74800,81000,16200,3540,50,1.5,0,0,64.4,77777,9,999999999,200,0.1370,0,88,999.000,999.0,99.0 +1979,7,7,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,8.9,34,88300,1088,1321,369,832,840,139,88600,85100,18400,5130,40,1.5,0,0,64.4,77777,9,999999999,189,0.1370,0,88,999.000,999.0,99.0 +1979,7,7,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,27.4,8.2,31,88200,1174,1321,382,861,808,141,92500,82100,19400,6820,40,3.2,1,1,64.4,77777,9,999999999,179,0.1370,0,88,999.000,999.0,99.0 +1979,7,7,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,28.7,7.6,27,88100,1205,1321,388,900,838,134,92300,84000,15600,5980,40,5.0,2,1,64.4,77777,9,999999999,179,0.1370,0,88,999.000,999.0,99.0 +1979,7,7,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,7.2,24,88100,1179,1321,399,877,745,211,93900,76300,25700,10820,40,6.7,3,2,64.4,77777,9,999999999,170,0.1370,0,88,999.000,999.0,99.0 +1979,7,7,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,30.4,6.4,23,88000,1098,1321,404,800,700,216,84700,71300,25400,8510,60,5.8,4,3,64.4,77777,9,999999999,160,0.1370,0,88,999.000,999.0,99.0 +1979,7,7,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,30.7,5.9,21,88000,967,1321,405,662,675,167,70400,68800,20000,5030,80,5.0,4,3,64.4,77777,9,999999999,160,0.1370,0,88,999.000,999.0,99.0 +1979,7,7,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,5.6,20,88000,795,1321,410,464,451,191,49500,46300,21600,4490,100,4.1,5,4,64.4,77777,9,999999999,150,0.1370,0,88,999.000,999.0,99.0 +1979,7,7,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,28.9,5.5,24,88000,595,1321,398,386,580,124,39800,55800,14700,2460,130,4.6,5,4,64.4,77777,9,999999999,160,0.1370,0,88,999.000,999.0,99.0 +1979,7,7,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,26.6,5.7,27,88000,379,1321,389,167,250,95,17800,22200,11500,1830,170,5.2,5,5,64.4,77777,9,999999999,160,0.1370,0,88,999.000,999.0,99.0 +1979,7,7,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,6.1,31,88100,165,1321,379,56,90,45,6100,5600,5400,940,200,5.7,5,5,48.3,77777,9,999999999,160,0.1370,0,88,999.000,999.0,99.0 +1979,7,7,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,22.9,6.5,35,88100,11,451,369,3,2,3,0,0,0,0,210,5.3,5,4,48.3,77777,9,999999999,160,0.1370,0,88,999.000,999.0,99.0 +1979,7,7,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,21.5,7.0,40,88100,0,0,356,0,0,0,0,0,0,0,220,5.0,6,2,48.3,77777,9,999999999,170,0.1370,0,88,999.000,999.0,99.0 +1979,7,7,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,20.0,7.2,44,88200,0,0,344,0,0,0,0,0,0,0,230,4.6,6,1,24.1,77777,9,999999999,170,0.1370,0,88,999.000,999.0,99.0 +1979,7,7,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,18.5,7.5,48,88200,0,0,346,0,0,0,0,0,0,0,210,3.6,7,3,24.1,77777,9,999999999,170,0.1370,0,88,999.000,999.0,99.0 +1979,7,8,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,17.1,7.2,52,88200,0,0,341,0,0,0,0,0,0,0,180,2.5,7,4,24.1,77777,9,999999999,170,0.1370,0,88,999.000,999.0,99.0 +1979,7,8,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,15.6,6.7,56,88300,0,0,339,0,0,0,0,0,0,0,160,1.5,8,6,24.1,3050,9,999999999,160,0.1370,0,88,999.000,999.0,99.0 +1979,7,8,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,15.2,7.2,58,88300,0,0,342,0,0,0,0,0,0,0,150,1.5,9,7,24.1,3253,9,999999999,170,0.1370,0,88,999.000,999.0,99.0 +1979,7,8,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,14.8,7.3,60,88300,0,0,353,0,0,0,0,0,0,0,130,1.5,9,9,24.1,3457,9,999999999,170,0.1370,0,88,999.000,999.0,99.0 +1979,7,8,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,7.2,62,88300,5,341,361,0,0,0,0,0,0,0,120,1.5,10,10,64.4,3660,9,999999999,170,0.1140,0,88,999.000,999.0,99.0 +1979,7,8,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,16.3,7.5,56,88300,145,1321,371,20,5,19,2300,0,2300,720,160,1.7,10,10,64.4,4473,9,999999999,170,0.1140,0,88,999.000,999.0,99.0 +1979,7,8,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,18.1,7.7,51,88400,359,1321,370,129,27,121,14000,2400,13400,3020,190,1.9,10,9,64.4,5287,9,999999999,170,0.1140,0,88,999.000,999.0,99.0 +1979,7,8,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,7.8,45,88400,575,1321,380,156,27,144,17100,2600,16000,4310,230,2.1,10,9,64.4,6100,9,999999999,170,0.1140,0,88,999.000,999.0,99.0 +1979,7,8,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,21.3,8.1,42,88400,777,1321,379,314,110,250,34500,11500,27700,6680,280,1.9,9,8,64.4,6100,9,999999999,179,0.1140,0,88,999.000,999.0,99.0 +1979,7,8,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,22.6,8.2,40,88400,952,1321,380,566,351,312,61200,37900,33900,9290,340,1.7,8,7,64.4,6100,9,999999999,179,0.1140,0,88,999.000,999.0,99.0 +1979,7,8,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,8.3,37,88400,1087,1321,382,627,428,274,67700,44700,30900,10620,30,1.5,7,6,64.4,6100,9,999999999,179,0.1140,0,88,999.000,999.0,99.0 +1979,7,8,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,25.7,7.8,33,88400,1173,1321,387,710,517,250,75100,52500,28400,12380,40,2.7,7,5,64.4,6100,9,999999999,179,0.1140,0,88,999.000,999.0,99.0 +1979,7,8,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,27.6,7.4,29,88300,1204,1321,397,718,443,314,77800,46400,35500,18030,50,4.0,7,5,64.4,6100,9,999999999,179,0.1140,0,88,999.000,999.0,99.0 +1979,7,8,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,7.2,25,88300,1178,1321,403,832,667,236,88400,67900,27700,11970,60,5.2,7,4,64.4,6100,9,999999999,170,0.1140,0,88,999.000,999.0,99.0 +1979,7,8,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,29.0,5.8,24,88300,1097,1321,399,703,549,246,73800,55500,27600,9550,40,4.2,7,4,64.4,6403,9,999999999,160,0.1140,0,88,999.000,999.0,99.0 +1979,7,8,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,28.7,4.7,22,88300,966,1321,399,607,533,217,66000,55500,25300,6430,30,3.1,7,5,64.4,6707,9,999999999,150,0.1140,0,88,999.000,999.0,99.0 +1979,7,8,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,3.9,21,88300,795,1321,396,441,271,277,47000,28800,29700,7050,10,2.1,7,5,48.3,7010,9,999999999,139,0.1140,0,88,999.000,999.0,99.0 +1979,7,8,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,26.3,3.6,24,88300,594,1321,382,350,523,114,36300,50500,13600,2290,50,2.4,7,4,48.3,77777,9,999999999,139,0.1140,0,88,999.000,999.0,99.0 +1979,7,8,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.2,3.7,27,88300,378,1321,372,152,228,86,16300,20200,10500,1630,100,2.8,6,4,48.3,77777,9,999999999,139,0.1140,0,88,999.000,999.0,99.0 +1979,7,8,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,3.9,30,88300,163,1321,359,49,68,41,5400,4200,4900,860,140,3.1,6,3,64.4,77777,9,999999999,139,0.1140,0,88,999.000,999.0,99.0 +1979,7,8,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,20.2,4.6,37,88300,10,451,347,6,6,5,0,0,0,0,180,2.9,4,2,64.4,77777,9,999999999,150,0.1140,0,88,999.000,999.0,99.0 +1979,7,8,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,18.1,5.5,45,88400,0,0,334,0,0,0,0,0,0,0,220,2.8,3,1,64.4,77777,9,999999999,160,0.1140,0,88,999.000,999.0,99.0 +1979,7,8,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,16.1,6.1,52,88400,0,0,319,0,0,0,0,0,0,0,260,2.6,1,0,24.1,77777,9,999999999,160,0.1140,0,88,999.000,999.0,99.0 +1979,7,8,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,15.0,6.4,55,88400,0,0,315,0,0,0,0,0,0,0,240,2.6,1,0,24.1,77777,9,999999999,160,0.1140,0,88,999.000,999.0,99.0 +1979,7,9,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,13.9,6.1,59,88400,0,0,309,0,0,0,0,0,0,0,230,2.6,2,0,24.1,77777,9,999999999,160,0.1140,0,88,999.000,999.0,99.0 +1979,7,9,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,12.8,5.6,62,88400,0,0,304,0,0,0,0,0,0,0,210,2.6,2,0,24.1,77777,9,999999999,150,0.1140,0,88,999.000,999.0,99.0 +1979,7,9,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,12.4,6.0,63,88400,0,0,309,0,0,0,0,0,0,0,200,2.2,3,1,24.1,77777,9,999999999,150,0.1140,0,88,999.000,999.0,99.0 +1979,7,9,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,12.1,5.9,65,88400,0,0,312,0,0,0,0,0,0,0,200,1.9,5,2,24.1,77777,9,999999999,150,0.1140,0,88,999.000,999.0,99.0 +1979,7,9,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,5.6,66,88400,5,319,313,3,6,2,0,0,0,0,190,1.5,6,3,64.4,77777,9,999999999,150,0.0510,0,88,999.000,999.0,99.0 +1979,7,9,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,13.5,6.3,61,88400,142,1321,321,45,141,30,4800,7600,4000,530,250,1.0,6,3,64.4,77777,9,999999999,160,0.0510,0,88,999.000,999.0,99.0 +1979,7,9,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,15.4,6.8,57,88400,356,1321,327,170,353,74,18000,30100,9900,1340,300,0.5,6,2,64.4,77777,9,999999999,160,0.0510,0,88,999.000,999.0,99.0 +1979,7,9,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,7.2,52,88400,573,1321,336,363,603,101,37900,58100,12700,2040,0,0.0,6,2,64.4,77777,9,999999999,170,0.0510,0,88,999.000,999.0,99.0 +1979,7,9,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,19.2,7.9,48,88400,775,1321,341,459,612,99,49500,62200,12900,2400,360,0.7,4,1,64.4,77777,9,999999999,179,0.0510,0,88,999.000,999.0,99.0 +1979,7,9,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,21.3,8.4,44,88300,950,1321,352,691,846,81,72000,84500,11100,2300,10,1.4,3,1,64.4,77777,9,999999999,179,0.0510,0,88,999.000,999.0,99.0 +1979,7,9,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,8.9,40,88300,1085,1321,355,808,878,84,84000,88100,11500,3010,10,2.1,1,0,64.4,77777,9,999999999,189,0.0510,0,88,999.000,999.0,99.0 +1979,7,9,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,25.5,8.6,35,88200,1171,1321,373,889,894,93,92000,89800,12300,4110,20,2.9,3,1,64.4,77777,9,999999999,189,0.0510,0,88,999.000,999.0,99.0 +1979,7,9,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,27.8,8.3,31,88100,1203,1321,393,844,727,180,88600,73200,21900,9390,40,3.8,6,3,64.4,77777,9,999999999,189,0.0510,0,88,999.000,999.0,99.0 +1979,7,9,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,8.3,26,88000,1177,1321,408,850,712,214,90900,72900,25800,10890,50,4.6,8,4,64.4,77777,9,999999999,179,0.0510,0,88,999.000,999.0,99.0 +1979,7,9,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,30.2,7.1,24,88000,1096,1321,407,759,631,234,79900,64000,26800,9110,60,5.0,9,4,64.4,77777,9,999999999,170,0.0510,0,88,999.000,999.0,99.0 +1979,7,9,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,30.4,6.2,23,87900,965,1321,404,705,717,179,74500,72900,21200,5330,70,5.3,9,3,64.4,77777,9,999999999,160,0.0510,0,88,999.000,999.0,99.0 +1979,7,9,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,5.6,21,87900,794,1321,404,485,538,161,50600,53800,18300,3750,80,5.7,10,3,64.4,77777,9,999999999,150,0.0510,0,88,999.000,999.0,99.0 +1979,7,9,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,28.7,5.8,25,87800,593,1321,390,327,477,112,35400,47100,14300,2200,120,5.0,9,2,64.4,77777,9,999999999,160,0.0510,0,88,999.000,999.0,99.0 +1979,7,9,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,26.9,6.5,28,87800,377,1321,382,212,486,72,21700,42100,9700,1330,160,4.3,7,2,64.4,77777,9,999999999,170,0.0510,0,88,999.000,999.0,99.0 +1979,7,9,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,7.2,32,87700,162,1321,368,71,239,42,7300,13800,5700,760,200,3.6,6,1,64.4,77777,9,999999999,170,0.0510,0,88,999.000,999.0,99.0 +1979,7,9,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,23.3,6.7,34,87700,10,429,359,9,28,6,0,0,0,0,220,3.3,5,1,64.4,77777,9,999999999,160,0.0510,0,88,999.000,999.0,99.0 +1979,7,9,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,21.7,6.3,37,87700,0,0,356,0,0,0,0,0,0,0,250,2.9,3,2,64.4,77777,9,999999999,160,0.0510,0,88,999.000,999.0,99.0 +1979,7,9,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,20.0,5.6,39,87700,0,0,347,0,0,0,0,0,0,0,270,2.6,2,2,24.1,77777,9,999999999,150,0.0510,0,88,999.000,999.0,99.0 +1979,7,9,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,18.7,5.6,41,87700,0,0,344,0,0,0,0,0,0,0,280,2.6,3,3,24.1,77777,9,999999999,150,0.0510,0,88,999.000,999.0,99.0 +1979,7,10,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,17.4,5.1,44,87700,0,0,338,0,0,0,0,0,0,0,280,2.6,3,3,24.1,77777,9,999999999,150,0.0510,0,88,999.000,999.0,99.0 +1979,7,10,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,16.1,4.4,46,87600,0,0,334,0,0,0,0,0,0,0,290,2.6,4,4,24.1,77777,9,999999999,139,0.0510,0,88,999.000,999.0,99.0 +1979,7,10,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,15.7,5.2,49,87700,0,0,335,0,0,0,0,0,0,0,290,2.8,5,5,24.1,77777,9,999999999,150,0.0510,0,88,999.000,999.0,99.0 +1979,7,10,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,15.4,5.5,51,87700,0,0,334,0,0,0,0,0,0,0,290,2.9,6,5,24.1,77777,9,999999999,150,0.0510,0,88,999.000,999.0,99.0 +1979,7,10,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,5.6,54,87700,4,297,335,3,2,3,0,0,0,0,290,3.1,7,6,64.4,3660,9,999999999,150,0.0530,0,88,999.000,999.0,99.0 +1979,7,10,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,16.7,6.5,51,87800,140,1322,341,33,25,30,3600,1600,3400,740,310,2.1,5,5,64.4,77777,9,999999999,160,0.0530,0,88,999.000,999.0,99.0 +1979,7,10,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,18.3,7.2,48,87800,354,1322,344,149,182,100,15700,15700,11500,1960,340,1.0,4,3,64.4,77777,9,999999999,170,0.0530,0,88,999.000,999.0,99.0 +1979,7,10,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,7.8,45,87900,570,1322,350,392,753,66,41400,72700,9900,1430,0,0.0,2,2,64.4,77777,9,999999999,170,0.0530,0,88,999.000,999.0,99.0 +1979,7,10,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,22.2,6.6,38,87900,773,1322,354,517,754,75,54000,74500,10400,1780,320,1.7,1,1,64.4,77777,9,999999999,170,0.0530,0,88,999.000,999.0,99.0 +1979,7,10,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.5,5.2,30,87900,948,1322,363,589,640,128,63600,65800,16300,3830,290,3.5,1,1,64.4,77777,9,999999999,160,0.0530,0,88,999.000,999.0,99.0 +1979,7,10,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,3.9,23,88000,1084,1322,366,796,869,81,82900,87200,11200,2930,250,5.2,0,0,24.1,77777,9,999999999,139,0.0530,0,88,999.000,999.0,99.0 +1979,7,10,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,27.4,3.8,22,87900,1170,1322,376,855,868,85,89000,87200,11600,3830,260,6.6,2,1,24.1,77777,9,999999999,139,0.0530,0,88,999.000,999.0,99.0 +1979,7,10,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,28.2,3.7,21,87900,1201,1322,380,887,878,87,92200,88200,11800,4360,280,7.9,4,1,24.1,77777,9,999999999,139,0.0530,0,88,999.000,999.0,99.0 +1979,7,10,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,3.9,20,87800,1176,1322,389,847,767,163,89700,77500,20600,7740,290,9.3,6,2,32.2,77777,9,999999999,139,0.0530,0,88,999.000,999.0,99.0 +1979,7,10,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,28.3,3.3,20,87800,1095,1322,385,789,779,142,83900,78800,18400,5310,290,8.8,7,2,32.2,77777,9,999999999,129,0.0530,0,88,999.000,999.0,99.0 +1979,7,10,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,27.8,2.9,21,87800,964,1322,386,743,816,146,77300,81700,17600,3960,280,8.2,7,3,32.2,77777,9,999999999,129,0.0530,0,88,999.000,999.0,99.0 +1979,7,10,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,2.8,21,87800,793,1322,383,532,617,161,55500,61600,18500,3750,280,7.7,8,3,24.1,77777,9,999999999,129,0.0530,0,88,999.000,999.0,99.0 +1979,7,10,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,25.5,2.3,23,87800,592,1322,370,369,600,99,38600,58300,12500,2030,290,6.7,7,2,24.1,77777,9,999999999,129,0.0530,0,88,999.000,999.0,99.0 +1979,7,10,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,23.9,2.2,25,87900,376,1322,362,204,504,60,21200,44000,8700,1140,300,5.6,5,2,24.1,77777,9,999999999,129,0.0530,0,88,999.000,999.0,99.0 +1979,7,10,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,2.2,27,87900,160,1322,349,66,294,30,6700,18100,4500,540,310,4.6,4,1,32.2,77777,9,999999999,120,0.0530,0,88,999.000,999.0,99.0 +1979,7,10,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,20.9,1.8,29,87900,9,429,347,7,21,5,0,0,0,0,300,4.4,5,2,32.2,77777,9,999999999,120,0.0530,0,88,999.000,999.0,99.0 +1979,7,10,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,19.6,1.6,30,88000,0,0,344,0,0,0,0,0,0,0,290,4.3,7,3,32.2,77777,9,999999999,120,0.0530,0,88,999.000,999.0,99.0 +1979,7,10,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,18.3,1.1,32,88000,0,0,340,0,0,0,0,0,0,0,280,4.1,8,4,24.1,77777,9,999999999,120,0.0530,0,88,999.000,999.0,99.0 +1979,7,10,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,17.6,1.7,34,88000,0,0,340,0,0,0,0,0,0,0,260,4.3,9,5,24.1,77777,9,999999999,120,0.0530,0,88,999.000,999.0,99.0 +1979,7,11,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,16.8,1.8,36,88100,0,0,336,0,0,0,0,0,0,0,250,4.4,9,5,24.1,77777,9,999999999,120,0.0530,0,88,999.000,999.0,99.0 +1979,7,11,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,16.1,1.7,38,88100,0,0,336,0,0,0,0,0,0,0,230,4.6,10,6,24.1,6100,9,999999999,120,0.0530,0,88,999.000,999.0,99.0 +1979,7,11,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,15.5,2.4,41,88100,0,0,338,0,0,0,0,0,0,0,270,3.1,10,7,24.1,6100,9,999999999,120,0.0530,0,88,999.000,999.0,99.0 +1979,7,11,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,15.0,2.7,43,88100,0,0,336,0,0,0,0,0,0,0,320,1.5,10,7,24.1,6100,9,999999999,129,0.0530,0,88,999.000,999.0,99.0 +1979,7,11,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,2.8,46,88100,4,275,338,1,0,1,0,0,0,0,0,0.0,10,8,64.4,6100,9,999999999,129,0.0920,0,88,999.000,999.0,99.0 +1979,7,11,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,15.7,3.1,43,88100,137,1322,345,40,36,36,4300,2000,4100,750,330,0.5,9,8,64.4,5693,9,999999999,129,0.0920,0,88,999.000,999.0,99.0 +1979,7,11,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,17.0,3.2,40,88100,351,1322,346,139,185,89,14700,15900,10500,1710,310,1.0,9,7,64.4,5287,9,999999999,129,0.0920,0,88,999.000,999.0,99.0 +1979,7,11,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,3.3,37,88100,568,1322,352,285,221,189,30800,22000,21400,4500,280,1.5,8,7,64.4,4880,9,999999999,129,0.0920,0,88,999.000,999.0,99.0 +1979,7,11,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,20.0,4.0,35,88100,771,1322,354,541,672,148,56600,67200,17400,3400,310,2.0,6,5,64.4,77777,9,999999999,139,0.0920,0,88,999.000,999.0,99.0 +1979,7,11,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,21.6,4.5,33,88100,947,1322,357,637,616,195,66900,62200,22200,5560,350,2.6,5,3,64.4,77777,9,999999999,139,0.0920,0,88,999.000,999.0,99.0 +1979,7,11,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,5.0,31,88000,1082,1322,357,684,598,193,72900,61100,22800,7370,20,3.1,3,1,64.4,77777,9,999999999,150,0.0920,0,88,999.000,999.0,99.0 +1979,7,11,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.6,5.1,29,88000,1169,1322,364,854,824,124,87900,82600,14700,4910,350,4.1,4,1,64.4,77777,9,999999999,150,0.0920,0,88,999.000,999.0,99.0 +1979,7,11,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,25.9,5.2,27,87900,1200,1322,375,847,704,205,91000,72300,25200,11470,320,5.2,5,2,64.4,77777,9,999999999,150,0.0920,0,88,999.000,999.0,99.0 +1979,7,11,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,5.6,25,87900,1175,1322,383,756,582,237,80200,59300,27400,11870,290,6.2,6,2,64.4,77777,9,999999999,150,0.0920,0,88,999.000,999.0,99.0 +1979,7,11,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,26.3,5.3,27,87900,1094,1322,381,641,514,215,68000,52300,24600,8390,290,6.2,7,3,64.4,77777,9,999999999,150,0.0920,0,88,999.000,999.0,99.0 +1979,7,11,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,25.3,5.3,28,87900,963,1322,379,632,583,206,66200,58800,23200,6010,290,6.2,9,4,64.4,77777,9,999999999,150,0.0920,0,88,999.000,999.0,99.0 +1979,7,11,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,5.6,30,88000,791,1322,378,422,357,208,46100,38000,23300,5010,290,6.2,10,5,64.4,77777,9,999999999,150,0.0920,0,88,999.000,999.0,99.0 +1979,7,11,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,22.6,5.1,33,88000,590,1322,371,285,280,159,30600,28400,17900,3370,310,5.5,10,6,64.4,77777,9,999999999,150,0.0920,0,88,999.000,999.0,99.0 +1979,7,11,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,20.7,5.0,37,88000,374,1322,366,143,110,112,15600,9800,12800,2490,340,4.8,10,7,64.4,77777,9,999999999,150,0.0920,0,88,999.000,999.0,99.0 +1979,7,11,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,5.0,40,88100,159,1322,363,46,80,36,4900,4400,4300,650,360,4.1,10,8,64.4,7620,9,999999999,150,0.0920,0,88,999.000,999.0,99.0 +1979,7,11,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,18.3,5.0,42,88200,9,407,368,4,0,4,0,0,0,0,320,4.1,10,9,64.4,7620,9,999999999,150,0.0920,0,88,999.000,999.0,99.0 +1979,7,11,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,17.8,5.1,43,88200,0,0,365,0,0,0,0,0,0,0,280,4.1,10,9,64.4,7620,9,999999999,150,0.0920,0,88,999.000,999.0,99.0 +1979,7,11,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,17.2,5.0,45,88300,0,0,372,0,0,0,0,0,0,0,240,4.1,10,10,24.1,7620,9,999999999,150,0.0920,0,88,999.000,999.0,99.0 +1979,7,11,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,16.3,5.4,48,88300,0,0,368,0,0,0,0,0,0,0,280,2.7,10,10,24.1,6503,9,999999999,150,0.0920,0,88,999.000,999.0,99.0 +1979,7,12,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,15.3,5.3,50,88300,0,0,363,0,0,0,0,0,0,0,320,1.4,10,10,24.1,5387,9,999999999,150,0.0920,0,88,999.000,999.0,99.0 +1979,7,12,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,14.4,5.0,53,88300,0,0,358,0,0,0,0,0,0,0,0,0.0,10,10,24.1,4270,9,999999999,150,0.0920,0,88,999.000,999.0,99.0 +1979,7,12,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,14.0,4.4,51,88300,0,0,338,0,0,0,0,0,0,0,340,0.9,9,8,24.1,77777,9,999999999,139,0.0920,0,88,999.000,999.0,99.0 +1979,7,12,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,13.7,3.4,49,88300,0,0,324,0,0,0,0,0,0,0,310,1.7,9,5,24.1,77777,9,999999999,129,0.0920,0,88,999.000,999.0,99.0 +1979,7,12,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,2.2,47,88400,3,253,316,4,6,4,0,0,0,0,290,2.6,8,3,64.4,77777,9,999999999,120,0.0290,0,88,999.000,999.0,99.0 +1979,7,12,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,14.8,2.7,44,88400,135,1322,326,53,217,31,5500,11200,4400,550,290,3.8,9,4,64.4,77777,9,999999999,129,0.0290,0,88,999.000,999.0,99.0 +1979,7,12,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,16.3,3.0,41,88400,349,1322,333,130,127,96,14100,11100,11200,2110,280,5.0,9,4,64.4,77777,9,999999999,129,0.0290,0,88,999.000,999.0,99.0 +1979,7,12,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,3.3,38,88400,566,1322,343,342,494,130,36300,48200,15700,2570,280,6.2,10,5,64.4,77777,9,999999999,129,0.0290,0,88,999.000,999.0,99.0 +1979,7,12,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,19.1,2.9,34,88400,769,1322,348,497,641,123,52700,64600,15100,2890,270,6.2,10,5,64.4,77777,9,999999999,129,0.0290,0,88,999.000,999.0,99.0 +1979,7,12,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,20.4,2.3,31,88300,945,1322,351,614,542,225,66200,56400,25800,6450,270,6.2,10,4,64.4,77777,9,999999999,129,0.0290,0,88,999.000,999.0,99.0 +1979,7,12,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,1.7,27,88300,1081,1322,357,731,642,204,77600,65500,23900,7720,260,6.2,10,4,64.4,77777,9,999999999,120,0.0290,0,88,999.000,999.0,99.0 +1979,7,12,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,22.6,1.8,26,88200,1167,1322,361,826,711,197,88800,73000,24200,9720,260,6.5,9,4,64.4,77777,9,999999999,120,0.0290,0,88,999.000,999.0,99.0 +1979,7,12,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,23.5,1.8,24,88100,1199,1322,368,796,634,219,85100,64900,26200,12140,260,6.9,9,5,64.4,77777,9,999999999,120,0.0290,0,88,999.000,999.0,99.0 +1979,7,12,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,2.2,23,88100,1174,1322,373,832,728,184,86900,73100,21900,8440,260,7.2,8,5,64.4,7620,9,999999999,120,0.0290,0,88,999.000,999.0,99.0 +1979,7,12,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.4,1.9,23,88100,1093,1322,373,816,766,182,87600,78600,22500,7180,270,7.0,8,5,64.4,77777,9,999999999,120,0.0290,0,88,999.000,999.0,99.0 +1979,7,12,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.4,1.9,23,88100,962,1322,370,669,693,163,71200,70700,19600,4880,270,6.9,9,4,64.4,77777,9,999999999,120,0.0290,0,88,999.000,999.0,99.0 +1979,7,12,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,2.2,23,88100,790,1322,371,425,479,138,44800,48200,16000,3280,280,6.7,9,4,64.4,77777,9,999999999,120,0.0290,0,88,999.000,999.0,99.0 +1979,7,12,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,23.1,2.3,26,88100,589,1322,367,341,495,119,36600,48700,14900,2350,290,6.9,9,5,64.4,77777,9,999999999,129,0.0290,0,88,999.000,999.0,99.0 +1979,7,12,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,21.9,2.7,29,88100,373,1322,365,152,219,90,16300,19300,10800,1720,310,7.0,9,6,64.4,77777,9,999999999,129,0.0290,0,88,999.000,999.0,99.0 +1979,7,12,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,3.3,32,88100,157,1322,363,54,119,40,5700,6400,5000,730,320,7.2,9,7,64.4,3660,9,999999999,129,0.0290,0,88,999.000,999.0,99.0 +1979,7,12,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,19.3,3.1,35,88200,8,408,353,10,6,9,0,0,0,0,310,5.8,9,6,64.4,77777,9,999999999,129,0.0290,0,88,999.000,999.0,99.0 +1979,7,12,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,18.0,3.1,37,88200,0,0,343,0,0,0,0,0,0,0,310,4.5,8,5,64.4,77777,9,999999999,129,0.0290,0,88,999.000,999.0,99.0 +1979,7,12,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,16.7,2.8,40,88300,0,0,334,0,0,0,0,0,0,0,300,3.1,8,4,24.1,77777,9,999999999,129,0.0290,0,88,999.000,999.0,99.0 +1979,7,12,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,15.6,2.7,41,88300,0,0,327,0,0,0,0,0,0,0,300,3.8,6,3,24.1,77777,9,999999999,129,0.0290,0,88,999.000,999.0,99.0 +1979,7,13,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,14.4,2.0,43,88400,0,0,321,0,0,0,0,0,0,0,310,4.5,5,3,24.1,77777,9,999999999,120,0.0290,0,88,999.000,999.0,99.0 +1979,7,13,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,13.3,1.1,44,88400,0,0,312,0,0,0,0,0,0,0,310,5.2,3,2,24.1,77777,9,999999999,120,0.0290,0,88,999.000,999.0,99.0 +1979,7,13,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,12.8,1.1,44,88500,0,0,305,0,0,0,0,0,0,0,280,4.8,2,1,24.1,77777,9,999999999,120,0.0290,0,88,999.000,999.0,99.0 +1979,7,13,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,12.2,0.6,45,88500,0,0,302,0,0,0,0,0,0,0,260,4.5,1,1,24.1,77777,9,999999999,110,0.0290,0,88,999.000,999.0,99.0 +1979,7,13,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,0.0,45,88600,3,231,294,3,11,2,0,0,0,0,230,4.1,0,0,64.4,77777,9,999999999,110,0.0630,0,88,999.000,999.0,99.0 +1979,7,13,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,13.0,0.3,42,88600,132,1322,299,57,338,23,5800,19100,3900,420,240,5.1,0,0,64.4,77777,9,999999999,110,0.0630,0,88,999.000,999.0,99.0 +1979,7,13,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,14.3,0.5,39,88600,346,1322,305,209,644,40,21900,55900,7300,850,260,6.2,0,0,64.4,77777,9,999999999,110,0.0630,0,88,999.000,999.0,99.0 +1979,7,13,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,0.6,36,88600,563,1322,311,390,782,56,41000,74800,9100,1300,270,7.2,0,0,64.4,77777,9,999999999,110,0.0630,0,88,999.000,999.0,99.0 +1979,7,13,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,16.9,0.5,33,88500,767,1322,322,557,853,60,58500,84300,9500,1600,270,7.4,1,1,64.4,77777,9,999999999,110,0.0630,0,88,999.000,999.0,99.0 +1979,7,13,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,18.1,0.2,30,88500,943,1322,327,680,837,80,70800,83600,11000,2260,270,7.5,1,1,64.4,77777,9,999999999,110,0.0630,0,88,999.000,999.0,99.0 +1979,7,13,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,0.0,27,88500,1079,1322,338,771,781,132,82400,79200,17700,4800,270,7.7,2,2,64.4,77777,9,999999999,110,0.0630,0,88,999.000,999.0,99.0 +1979,7,13,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,20.7,-0.3,25,88400,1166,1322,339,864,877,88,89700,88100,11900,3870,280,8.1,1,1,64.4,77777,9,999999999,110,0.0630,0,88,999.000,999.0,99.0 +1979,7,13,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,22.0,-0.6,23,88300,1198,1322,344,921,913,91,95500,91700,12200,4450,290,8.4,1,1,64.4,77777,9,999999999,110,0.0630,0,88,999.000,999.0,99.0 +1979,7,13,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,-0.6,21,88300,1172,1322,344,935,946,94,97000,95000,12500,4150,300,8.8,0,0,64.4,77777,9,999999999,110,0.0630,0,88,999.000,999.0,99.0 +1979,7,13,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.1,-1.2,20,88200,1092,1322,354,776,835,84,80700,83800,11400,3060,290,8.3,2,1,64.4,77777,9,999999999,110,0.0630,0,88,999.000,999.0,99.0 +1979,7,13,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.8,-1.6,18,88200,961,1322,365,664,699,154,70900,71500,18800,4620,280,7.7,4,3,64.4,77777,9,999999999,100,0.0630,0,88,999.000,999.0,99.0 +1979,7,13,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,-1.7,17,88200,789,1322,371,461,544,135,48600,54800,15900,3210,270,7.2,6,4,64.4,7620,9,999999999,100,0.0630,0,88,999.000,999.0,99.0 +1979,7,13,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.3,-1.6,19,88100,587,1322,365,384,661,89,40500,64400,11800,1850,290,6.5,6,4,64.4,7620,9,999999999,100,0.0630,0,88,999.000,999.0,99.0 +1979,7,13,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,23.0,-1.2,21,88100,371,1322,359,206,464,74,21000,39900,9800,1350,300,5.9,7,4,64.4,7620,9,999999999,110,0.0630,0,88,999.000,999.0,99.0 +1979,7,13,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,-0.6,23,88100,155,1322,354,56,107,43,5800,5700,5200,800,320,5.2,7,4,64.4,7620,9,999999999,110,0.0630,0,88,999.000,999.0,99.0 +1979,7,13,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,20.0,-0.4,26,88100,7,386,343,6,13,4,0,0,0,0,300,4.3,5,3,64.4,77777,9,999999999,110,0.0630,0,88,999.000,999.0,99.0 +1979,7,13,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,18.4,-0.1,29,88200,0,0,336,0,0,0,0,0,0,0,270,3.5,4,3,64.4,77777,9,999999999,110,0.0630,0,88,999.000,999.0,99.0 +1979,7,13,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,16.7,0.0,32,88300,0,0,325,0,0,0,0,0,0,0,250,2.6,2,2,24.1,77777,9,999999999,110,0.0630,0,88,999.000,999.0,99.0 +1979,7,13,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,16.1,0.6,34,88300,0,0,323,0,0,0,0,0,0,0,250,3.1,3,2,24.1,77777,9,999999999,110,0.0630,0,88,999.000,999.0,99.0 +1979,7,14,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,15.6,0.7,36,88300,0,0,324,0,0,0,0,0,0,0,240,3.6,3,3,24.1,77777,9,999999999,110,0.0630,0,88,999.000,999.0,99.0 +1979,7,14,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,15.0,0.6,38,88300,0,0,322,0,0,0,0,0,0,0,240,4.1,4,3,24.1,77777,9,999999999,110,0.0630,0,88,999.000,999.0,99.0 +1979,7,14,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,14.3,1.0,40,88300,0,0,319,0,0,0,0,0,0,0,250,3.8,3,3,24.1,77777,9,999999999,110,0.0630,0,88,999.000,999.0,99.0 +1979,7,14,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,13.5,0.9,41,88400,0,0,312,0,0,0,0,0,0,0,260,3.4,3,2,24.1,77777,9,999999999,110,0.0630,0,88,999.000,999.0,99.0 +1979,7,14,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,0.6,43,88400,2,231,309,2,8,1,0,0,0,0,270,3.1,2,2,64.4,77777,9,999999999,110,0.0700,0,88,999.000,999.0,99.0 +1979,7,14,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,14.8,1.1,39,88400,129,1322,314,51,276,24,5200,15300,3700,430,270,4.3,1,1,64.4,77777,9,999999999,120,0.0700,0,88,999.000,999.0,99.0 +1979,7,14,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,16.9,1.4,36,88500,344,1322,323,196,595,40,20400,51600,7000,850,260,5.5,1,1,64.4,77777,9,999999999,120,0.0700,0,88,999.000,999.0,99.0 +1979,7,14,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,1.7,32,88500,561,1322,327,383,762,59,40900,73700,9600,1320,260,6.7,0,0,64.4,77777,9,999999999,120,0.0700,0,88,999.000,999.0,99.0 +1979,7,14,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,20.0,1.1,29,88500,765,1322,331,552,825,74,57700,81400,10500,1760,260,6.5,0,0,64.4,77777,9,999999999,120,0.0700,0,88,999.000,999.0,99.0 +1979,7,14,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,21.1,0.2,25,88500,941,1322,341,675,832,81,70300,83100,11100,2270,270,6.4,1,1,64.4,77777,9,999999999,110,0.0700,0,88,999.000,999.0,99.0 +1979,7,14,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,-0.6,22,88500,1077,1322,345,737,806,78,76800,80900,10800,2810,270,6.2,1,1,64.4,77777,9,999999999,110,0.0700,0,88,999.000,999.0,99.0 +1979,7,14,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,22.8,-0.9,21,88500,1164,1322,356,815,687,208,87200,70400,25100,10120,280,5.9,3,3,64.4,77777,9,999999999,110,0.0700,0,88,999.000,999.0,99.0 +1979,7,14,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,23.3,-1.1,20,88500,1196,1322,364,833,597,291,87300,60200,32700,15620,290,5.5,5,5,64.4,77777,9,999999999,100,0.0700,0,88,999.000,999.0,99.0 +1979,7,14,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,-1.1,19,88500,1171,1322,374,684,441,291,74200,46200,33200,14630,300,5.2,7,7,64.4,2740,9,999999999,100,0.0700,0,88,999.000,999.0,99.0 +1979,7,14,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.3,-1.0,19,88500,1090,1322,376,743,581,262,77500,58500,29200,9910,310,5.9,7,7,64.4,2740,9,999999999,100,0.0700,0,88,999.000,999.0,99.0 +1979,7,14,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.6,-0.6,19,88500,959,1322,378,483,342,234,52000,35600,26100,6890,310,6.5,7,7,64.4,2740,9,999999999,110,0.0700,0,88,999.000,999.0,99.0 +1979,7,14,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,0.0,19,88500,787,1322,381,535,558,201,56800,57100,22700,4720,320,7.2,7,7,64.4,2740,9,999999999,110,0.0700,0,88,999.000,999.0,99.0 +1979,7,14,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,23.1,0.6,24,88500,586,1322,365,327,430,136,34700,42200,16000,2710,320,5.7,5,5,64.4,77777,9,999999999,120,0.0700,0,88,999.000,999.0,99.0 +1979,7,14,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,21.3,1.7,28,88500,369,1322,355,189,414,73,20200,35800,10200,1320,330,4.1,4,4,64.4,77777,9,999999999,120,0.0700,0,88,999.000,999.0,99.0 +1979,7,14,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,2.8,33,88500,153,1322,341,60,199,37,6200,11100,5000,660,330,2.6,2,2,64.4,77777,9,999999999,129,0.0700,0,88,999.000,999.0,99.0 +1979,7,14,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,18.5,3.0,36,88600,7,364,337,5,19,3,0,0,0,0,320,2.6,2,2,64.4,77777,9,999999999,129,0.0700,0,88,999.000,999.0,99.0 +1979,7,14,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,17.6,3.3,38,88700,0,0,333,0,0,0,0,0,0,0,310,2.6,2,2,64.4,77777,9,999999999,129,0.0700,0,88,999.000,999.0,99.0 +1979,7,14,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,16.7,3.3,41,88800,0,0,329,0,0,0,0,0,0,0,300,2.6,2,2,24.1,77777,9,999999999,129,0.0700,0,88,999.000,999.0,99.0 +1979,7,14,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,15.6,3.7,44,88800,0,0,320,0,0,0,0,0,0,0,300,2.9,1,1,24.1,77777,9,999999999,139,0.0700,0,88,999.000,999.0,99.0 +1979,7,15,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,14.4,3.6,48,88900,0,0,315,0,0,0,0,0,0,0,290,3.3,1,1,24.1,77777,9,999999999,129,0.0700,0,88,999.000,999.0,99.0 +1979,7,15,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,13.3,3.3,51,88900,0,0,304,0,0,0,0,0,0,0,290,3.6,0,0,24.1,77777,9,999999999,129,0.0700,0,88,999.000,999.0,99.0 +1979,7,15,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,12.8,3.7,53,88900,0,0,308,0,0,0,0,0,0,0,280,3.6,1,1,24.1,77777,9,999999999,129,0.0700,0,88,999.000,999.0,99.0 +1979,7,15,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,12.2,3.6,55,88900,0,0,305,0,0,0,0,0,0,0,280,3.6,1,1,24.1,77777,9,999999999,129,0.0700,0,88,999.000,999.0,99.0 +1979,7,15,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,3.3,57,88900,2,209,307,5,15,2,0,0,0,0,270,3.6,2,2,64.4,77777,9,999999999,139,0.0370,0,88,999.000,999.0,99.0 +1979,7,15,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,13.5,4.0,53,89000,126,1322,311,52,315,22,5300,17400,3700,400,290,3.4,1,1,64.4,77777,9,999999999,139,0.0370,0,88,999.000,999.0,99.0 +1979,7,15,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,15.4,4.5,49,89000,341,1322,320,195,606,38,20500,52500,6900,820,300,3.3,1,1,64.4,77777,9,999999999,150,0.0370,0,88,999.000,999.0,99.0 +1979,7,15,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,5.0,45,89000,558,1322,323,391,820,43,41300,78400,8100,1150,320,3.1,0,0,64.4,77777,9,999999999,150,0.0370,0,88,999.000,999.0,99.0 +1979,7,15,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,18.5,5.3,42,89000,763,1322,329,569,888,55,59900,87800,9200,1520,330,3.8,0,0,64.4,77777,9,999999999,150,0.0370,0,88,999.000,999.0,99.0 +1979,7,15,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,19.8,5.4,39,89000,939,1322,335,724,927,63,75900,92700,10000,1950,350,4.5,0,0,64.4,77777,9,999999999,150,0.0370,0,88,999.000,999.0,99.0 +1979,7,15,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,5.6,36,88900,1075,1322,341,843,947,70,88200,95100,10700,2600,360,5.2,0,0,40.2,77777,9,999999999,150,0.0370,0,88,999.000,999.0,99.0 +1979,7,15,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,22.2,5.7,34,88900,1163,1322,358,740,703,121,80800,71800,17500,5750,360,5.4,2,2,40.2,77777,9,999999999,150,0.0370,0,88,999.000,999.0,99.0 +1979,7,15,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,23.3,5.7,33,88900,1195,1322,367,912,876,117,93800,87900,14200,5250,10,5.5,3,3,40.2,77777,9,999999999,160,0.0370,0,88,999.000,999.0,99.0 +1979,7,15,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,6.1,31,88900,1170,1322,379,625,499,182,67500,51400,21900,9100,10,5.7,5,5,40.2,77777,9,999999999,160,0.0370,0,88,999.000,999.0,99.0 +1979,7,15,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,23.9,6.2,33,88900,1089,1322,379,708,547,256,77000,57200,29800,9930,10,5.5,6,6,40.2,77777,9,999999999,160,0.0370,0,88,999.000,999.0,99.0 +1979,7,15,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,23.3,6.6,35,88900,958,1322,387,448,164,329,49100,17400,36500,10320,20,5.4,8,8,40.2,77777,9,999999999,170,0.0370,0,88,999.000,999.0,99.0 +1979,7,15,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,7.2,37,88900,786,1322,394,319,134,239,35000,14000,26700,6420,20,5.2,9,9,40.2,1830,9,999999999,170,0.0370,0,88,999.000,999.0,99.0 +1979,7,15,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,21.3,6.9,41,88900,584,1322,371,204,68,173,22300,6600,19400,5040,10,4.3,7,7,40.2,77777,9,999999999,170,0.0370,0,88,999.000,999.0,99.0 +1979,7,15,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,19.8,7.0,45,88900,367,1322,354,155,200,99,16400,17500,11600,1930,10,3.5,4,4,40.2,77777,9,999999999,170,0.0370,0,88,999.000,999.0,99.0 +1979,7,15,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,7.2,49,88900,150,1322,341,62,311,26,6300,18700,4200,470,360,2.6,2,2,48.3,77777,9,999999999,170,0.0370,0,88,999.000,999.0,99.0 +1979,7,15,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,17.6,6.7,49,88900,6,364,337,6,28,3,0,0,0,0,320,3.1,2,2,48.3,77777,9,999999999,170,0.0370,0,88,999.000,999.0,99.0 +1979,7,15,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,16.8,6.3,50,89000,0,0,333,0,0,0,0,0,0,0,290,3.6,2,2,48.3,77777,9,999999999,160,0.0370,0,88,999.000,999.0,99.0 +1979,7,15,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,16.1,5.6,50,89000,0,0,329,0,0,0,0,0,0,0,250,4.1,2,2,24.1,77777,9,999999999,150,0.0370,0,88,999.000,999.0,99.0 +1979,7,15,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,15.4,6.0,52,89000,0,0,326,0,0,0,0,0,0,0,260,3.9,2,2,24.1,77777,9,999999999,150,0.0370,0,88,999.000,999.0,99.0 +1979,7,16,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,14.6,5.9,55,89000,0,0,323,0,0,0,0,0,0,0,260,3.8,2,2,24.1,77777,9,999999999,150,0.0370,0,88,999.000,999.0,99.0 +1979,7,16,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,13.9,5.6,57,89100,0,0,319,0,0,0,0,0,0,0,270,3.6,2,2,24.1,77777,9,999999999,150,0.0370,0,88,999.000,999.0,99.0 +1979,7,16,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,12.4,5.8,63,89100,0,0,309,0,0,0,0,0,0,0,300,2.4,1,1,24.1,77777,9,999999999,150,0.0370,0,88,999.000,999.0,99.0 +1979,7,16,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,10.9,5.5,68,89100,0,0,302,0,0,0,0,0,0,0,330,1.2,1,1,24.1,77777,9,999999999,150,0.0370,0,88,999.000,999.0,99.0 +1979,7,16,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,5.0,74,89100,2,187,289,3,12,1,0,0,0,0,0,0.0,0,0,64.4,77777,9,999999999,150,0.0490,0,88,999.000,999.0,99.0 +1979,7,16,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,12.0,5.5,65,89100,123,1322,301,53,355,20,5300,21400,3400,390,350,0.7,0,0,64.4,77777,9,999999999,150,0.0490,0,88,999.000,999.0,99.0 +1979,7,16,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,14.6,5.8,57,89100,338,1322,312,204,658,35,21500,57100,6900,850,340,1.4,0,0,64.4,77777,9,999999999,160,0.0490,0,88,999.000,999.0,99.0 +1979,7,16,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,6.1,48,89200,556,1322,324,383,791,49,40300,75600,8500,1230,330,2.1,0,0,64.4,77777,9,999999999,160,0.0490,0,88,999.000,999.0,99.0 +1979,7,16,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,19.1,6.6,44,89200,760,1322,333,563,867,62,59000,85600,9700,1620,340,2.4,0,0,64.4,77777,9,999999999,160,0.0490,0,88,999.000,999.0,99.0 +1979,7,16,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,20.9,6.9,41,89100,937,1322,342,717,907,72,74900,90600,10600,2120,350,2.8,0,0,64.4,77777,9,999999999,170,0.0490,0,88,999.000,999.0,99.0 +1979,7,16,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,7.2,37,89100,1074,1322,351,837,930,79,87200,93300,11300,2820,360,3.1,0,0,64.4,77777,9,999999999,170,0.0490,0,88,999.000,999.0,99.0 +1979,7,16,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.3,6.9,34,89000,1161,1322,358,922,951,83,95800,95600,11700,3650,20,3.3,0,0,64.4,77777,9,999999999,170,0.0490,0,88,999.000,999.0,99.0 +1979,7,16,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,25.7,6.7,30,89000,1194,1322,364,950,955,85,98700,96000,11900,4150,40,3.4,0,0,64.4,77777,9,999999999,170,0.0490,0,88,999.000,999.0,99.0 +1979,7,16,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,6.7,27,88900,1168,1322,372,930,954,84,96700,95900,11800,3770,60,3.6,0,0,64.4,77777,9,999999999,160,0.0490,0,88,999.000,999.0,99.0 +1979,7,16,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,27.9,5.7,25,88900,1088,1322,374,857,942,80,89300,94500,11400,2930,60,3.8,0,0,64.4,77777,9,999999999,160,0.0490,0,88,999.000,999.0,99.0 +1979,7,16,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,28.7,4.9,22,88900,956,1322,377,741,919,73,77300,91900,10700,2190,70,3.9,0,0,64.4,77777,9,999999999,150,0.0490,0,88,999.000,999.0,99.0 +1979,7,16,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,4.4,20,88800,784,1322,380,589,882,64,61700,87300,9900,1680,70,4.1,0,0,64.4,77777,9,999999999,139,0.0490,0,88,999.000,999.0,99.0 +1979,7,16,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,27.9,4.1,22,88800,582,1322,372,411,813,51,43200,78100,8700,1280,100,3.8,0,0,64.4,77777,9,999999999,139,0.0490,0,88,999.000,999.0,99.0 +1979,7,16,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,26.5,4.2,25,88800,365,1322,365,228,686,37,23900,60600,7200,900,130,3.4,0,0,64.4,77777,9,999999999,150,0.0490,0,88,999.000,999.0,99.0 +1979,7,16,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,4.4,27,88800,148,1322,358,70,415,23,7000,26800,4000,450,160,3.1,0,0,64.4,77777,9,999999999,150,0.0490,0,88,999.000,999.0,99.0 +1979,7,16,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,23.0,4.8,32,88800,6,342,349,7,31,4,0,0,0,0,110,2.1,0,0,64.4,77777,9,999999999,150,0.0490,0,88,999.000,999.0,99.0 +1979,7,16,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,20.9,5.3,37,88800,0,0,340,0,0,0,0,0,0,0,50,1.0,0,0,64.4,77777,9,999999999,150,0.0490,0,88,999.000,999.0,99.0 +1979,7,16,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,18.9,5.6,42,88900,0,0,331,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,150,0.0490,0,88,999.000,999.0,99.0 +1979,7,16,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,17.2,5.8,46,88900,0,0,324,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,150,0.0490,0,88,999.000,999.0,99.0 +1979,7,17,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,15.6,5.5,51,88900,0,0,316,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,150,0.0490,0,88,999.000,999.0,99.0 +1979,7,17,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,13.9,5.0,55,88900,0,0,308,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,150,0.0490,0,88,999.000,999.0,99.0 +1979,7,17,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,13.7,5.4,56,88900,0,0,308,0,0,0,0,0,0,0,330,1.2,0,0,24.1,77777,9,999999999,150,0.0490,0,88,999.000,999.0,99.0 +1979,7,17,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,13.5,5.3,56,89000,0,0,307,0,0,0,0,0,0,0,300,2.4,0,0,24.1,77777,9,999999999,150,0.0490,0,88,999.000,999.0,99.0 +1979,7,17,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,5.0,57,89000,1,165,306,2,4,1,0,0,0,0,270,3.6,0,0,64.4,77777,9,999999999,150,0.0780,0,88,999.000,999.0,99.0 +1979,7,17,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,15.2,6.2,55,89000,120,1322,315,47,264,23,4800,14100,3500,410,300,3.1,0,0,64.4,77777,9,999999999,160,0.0780,0,88,999.000,999.0,99.0 +1979,7,17,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,17.0,7.3,53,89000,335,1322,324,194,589,44,20000,50400,7200,890,330,2.6,0,0,64.4,77777,9,999999999,170,0.0780,0,88,999.000,999.0,99.0 +1979,7,17,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,8.3,51,89000,553,1322,334,373,741,62,39500,71300,9600,1350,360,2.1,0,0,64.4,77777,9,999999999,179,0.0780,0,88,999.000,999.0,99.0 +1979,7,17,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,21.5,8.8,45,89000,758,1322,347,550,821,78,57300,80900,10900,1770,10,2.6,0,0,64.4,77777,9,999999999,189,0.0780,0,88,999.000,999.0,99.0 +1979,7,17,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.1,9.1,40,88900,935,1322,359,708,871,90,73500,86900,12000,2360,30,3.1,0,0,64.4,77777,9,999999999,189,0.0780,0,88,999.000,999.0,99.0 +1979,7,17,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,9.4,34,88900,1072,1322,373,831,901,99,86100,90300,12800,3220,40,3.6,0,0,64.4,77777,9,999999999,189,0.0780,0,88,999.000,999.0,99.0 +1979,7,17,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,28.5,8.0,29,88800,1160,1322,380,910,916,104,94000,91900,13300,4250,40,3.8,0,0,64.4,77777,9,999999999,189,0.0780,0,88,999.000,999.0,99.0 +1979,7,17,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,30.4,6.7,24,88800,1192,1322,388,942,924,106,97200,92700,13400,4850,40,3.9,0,0,64.4,77777,9,999999999,170,0.0780,0,88,999.000,999.0,99.0 +1979,7,17,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,5.6,19,88700,1167,1322,396,924,925,104,95400,92800,13300,4360,40,4.1,0,0,64.4,77777,9,999999999,150,0.0780,0,88,999.000,999.0,99.0 +1979,7,17,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,32.9,4.9,18,88700,1086,1322,398,851,911,100,88000,91300,12900,3360,30,3.8,0,0,64.4,77777,9,999999999,150,0.0780,0,88,999.000,999.0,99.0 +1979,7,17,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,33.7,4.5,16,88600,955,1322,402,735,886,92,76200,88400,12200,2460,30,3.4,0,0,64.4,77777,9,999999999,139,0.0780,0,88,999.000,999.0,99.0 +1979,7,17,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34.4,4.4,15,88600,782,1322,405,579,840,80,60300,83000,11100,1840,20,3.1,0,0,64.4,77777,9,999999999,139,0.0780,0,88,999.000,999.0,99.0 +1979,7,17,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,32.0,5.6,21,88600,580,1322,395,399,759,64,42300,73600,9900,1420,10,2.1,0,0,64.4,77777,9,999999999,160,0.0780,0,88,999.000,999.0,99.0 +1979,7,17,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,29.6,7.2,26,88600,363,1322,384,216,614,46,22300,53800,7500,940,10,1.0,0,0,64.4,77777,9,999999999,179,0.0780,0,88,999.000,999.0,99.0 +1979,7,17,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,8.9,32,88700,146,1322,374,63,320,27,6400,18800,4300,490,0,0.0,0,0,64.4,77777,9,999999999,189,0.0780,0,88,999.000,999.0,99.0 +1979,7,17,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,25.5,8.2,34,88700,5,320,365,4,14,3,0,0,0,0,330,1.2,0,0,64.4,77777,9,999999999,179,0.0780,0,88,999.000,999.0,99.0 +1979,7,17,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,23.9,7.6,35,88800,0,0,357,0,0,0,0,0,0,0,300,2.4,0,0,64.4,77777,9,999999999,170,0.0780,0,88,999.000,999.0,99.0 +1979,7,17,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,22.2,6.7,37,88800,0,0,348,0,0,0,0,0,0,0,270,3.6,0,0,24.1,77777,9,999999999,170,0.0780,0,88,999.000,999.0,99.0 +1979,7,17,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,20.7,6.8,40,88800,0,0,341,0,0,0,0,0,0,0,270,3.3,0,0,24.1,77777,9,999999999,160,0.0780,0,88,999.000,999.0,99.0 +1979,7,18,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,19.3,6.3,42,88800,0,0,334,0,0,0,0,0,0,0,260,2.9,0,0,24.1,77777,9,999999999,160,0.0780,0,88,999.000,999.0,99.0 +1979,7,18,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,17.8,5.6,45,88800,0,0,326,0,0,0,0,0,0,0,260,2.6,0,0,24.1,77777,9,999999999,150,0.0780,0,88,999.000,999.0,99.0 +1979,7,18,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,16.7,5.8,48,88800,0,0,321,0,0,0,0,0,0,0,290,1.7,0,0,24.1,77777,9,999999999,150,0.0780,0,88,999.000,999.0,99.0 +1979,7,18,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,15.5,5.5,50,88900,0,0,316,0,0,0,0,0,0,0,330,0.9,0,0,24.1,77777,9,999999999,150,0.0780,0,88,999.000,999.0,99.0 +1979,7,18,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,5.0,53,88900,1,143,310,4,13,1,0,0,0,0,0,0.0,0,0,64.4,77777,9,999999999,150,0.0300,0,88,999.000,999.0,99.0 +1979,7,18,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,16.6,5.9,49,88900,117,1322,321,53,425,16,5600,27200,3300,370,10,0.5,0,0,64.4,77777,9,999999999,160,0.0300,0,88,999.000,999.0,99.0 +1979,7,18,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,18.9,6.6,45,88900,332,1322,332,206,708,28,21900,61300,6500,770,20,1.0,0,0,64.4,77777,9,999999999,160,0.0300,0,88,999.000,999.0,99.0 +1979,7,18,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,7.2,41,88900,551,1322,343,386,830,39,40900,79300,7900,1090,30,1.5,0,0,64.4,77777,9,999999999,170,0.0300,0,88,999.000,999.0,99.0 +1979,7,18,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,23.3,7.3,36,88800,756,1322,353,565,898,50,59600,88700,8900,1430,40,1.5,0,0,64.4,77777,9,999999999,170,0.0300,0,88,999.000,999.0,99.0 +1979,7,18,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,25.6,7.2,32,88800,933,1322,364,722,937,58,75900,93700,9600,1830,50,1.5,0,0,64.4,77777,9,999999999,170,0.0300,0,88,999.000,999.0,99.0 +1979,7,18,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,7.2,27,88800,1070,1322,375,843,959,64,88400,96300,10300,2410,60,1.5,0,0,64.4,77777,9,999999999,170,0.0300,0,88,999.000,999.0,99.0 +1979,7,18,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,29.6,5.8,23,88700,1158,1322,383,923,973,68,96600,97900,10700,3100,30,2.2,0,0,64.4,77777,9,999999999,160,0.0300,0,88,999.000,999.0,99.0 +1979,7,18,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,31.5,4.4,19,88700,1190,1322,390,954,980,69,99800,98600,10800,3470,350,2.9,0,0,64.4,77777,9,999999999,150,0.0300,0,88,999.000,999.0,99.0 +1979,7,18,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,3.3,15,88600,1165,1322,398,937,982,68,98000,98800,10700,3170,320,3.6,0,0,64.4,77777,9,999999999,129,0.0300,0,88,999.000,999.0,99.0 +1979,7,18,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,33.3,2.7,15,88600,1085,1322,397,865,971,65,90600,97500,10400,2500,330,2.4,0,0,64.4,77777,9,999999999,129,0.0300,0,88,999.000,999.0,99.0 +1979,7,18,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,33.3,2.3,14,88500,953,1322,397,747,950,59,78400,95100,9800,1900,350,1.2,0,0,64.4,77777,9,999999999,129,0.0300,0,88,999.000,999.0,99.0 +1979,7,18,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,2.2,14,88500,780,1322,397,594,916,51,62600,90700,9000,1470,0,0.0,0,0,64.4,77777,9,999999999,120,0.0300,0,88,999.000,999.0,99.0 +1979,7,18,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,31.1,4.3,21,88400,578,1322,388,413,844,41,43600,81200,8000,1140,0,0.0,0,0,64.4,77777,9,999999999,160,0.0300,0,88,999.000,999.0,99.0 +1979,7,18,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,28.9,6.8,27,88400,360,1322,380,230,727,30,24300,64100,6800,820,0,0.0,0,0,64.4,77777,9,999999999,179,0.0300,0,88,999.000,999.0,99.0 +1979,7,18,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,9.4,34,88400,143,1322,373,71,477,18,7300,32400,3900,430,0,0.0,0,0,64.4,77777,9,999999999,189,0.0300,0,88,999.000,999.0,99.0 +1979,7,18,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,25.2,7.7,33,88500,4,298,363,9,47,3,0,0,0,0,330,1.2,0,0,64.4,77777,9,999999999,170,0.0300,0,88,999.000,999.0,99.0 +1979,7,18,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,23.7,6.2,32,88500,0,0,354,0,0,0,0,0,0,0,290,2.4,0,0,64.4,77777,9,999999999,160,0.0300,0,88,999.000,999.0,99.0 +1979,7,18,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,22.2,4.4,31,88500,0,0,345,0,0,0,0,0,0,0,260,3.6,0,0,24.1,77777,9,999999999,139,0.0300,0,88,999.000,999.0,99.0 +1979,7,18,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,20.5,4.5,34,88500,0,0,337,0,0,0,0,0,0,0,270,3.1,0,0,24.1,77777,9,999999999,139,0.0300,0,88,999.000,999.0,99.0 +1979,7,19,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,18.9,4.0,37,88500,0,0,329,0,0,0,0,0,0,0,270,2.6,0,0,24.1,77777,9,999999999,139,0.0300,0,88,999.000,999.0,99.0 +1979,7,19,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,17.2,3.3,40,88500,0,0,321,0,0,0,0,0,0,0,280,2.1,0,0,24.1,77777,9,999999999,129,0.0300,0,88,999.000,999.0,99.0 +1979,7,19,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,16.1,3.7,43,88500,0,0,316,0,0,0,0,0,0,0,310,1.4,0,0,24.1,77777,9,999999999,129,0.0300,0,88,999.000,999.0,99.0 +1979,7,19,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,15.0,3.6,46,88600,0,0,312,0,0,0,0,0,0,0,330,0.7,0,0,24.1,77777,9,999999999,129,0.0300,0,88,999.000,999.0,99.0 +1979,7,19,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,3.3,49,88600,1,121,306,3,5,1,0,0,0,0,0,0.0,0,0,64.4,77777,9,999999999,129,0.0480,0,88,999.000,999.0,99.0 +1979,7,19,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,17.0,4.6,44,88600,114,1323,321,49,345,19,4900,20200,3200,360,360,0.5,0,0,64.4,77777,9,999999999,139,0.0480,0,88,999.000,999.0,99.0 +1979,7,19,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,20.2,5.7,39,88600,329,1323,337,199,659,34,20900,56800,6800,830,10,1.0,0,0,64.4,77777,9,999999999,150,0.0480,0,88,999.000,999.0,99.0 +1979,7,19,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,6.7,34,88600,548,1323,353,379,796,48,39900,75900,8500,1210,10,1.5,0,0,64.4,77777,9,999999999,160,0.0480,0,88,999.000,999.0,99.0 +1979,7,19,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,25.0,6.1,30,88500,753,1323,360,559,871,61,58600,86000,9600,1600,20,1.9,0,0,64.4,77777,9,999999999,160,0.0480,0,88,999.000,999.0,99.0 +1979,7,19,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,26.6,5.2,26,88500,931,1323,367,717,915,71,75000,91400,10500,2080,20,2.2,0,0,64.4,77777,9,999999999,150,0.0480,0,88,999.000,999.0,99.0 +1979,7,19,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,4.4,22,88500,1068,1323,374,843,946,78,88000,94900,11300,2760,30,2.6,0,0,64.4,77777,9,999999999,139,0.0480,0,88,999.000,999.0,99.0 +1979,7,19,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,30.2,4.7,20,88400,1156,1323,391,832,834,101,86100,83700,12800,4120,20,2.4,1,1,64.4,77777,9,999999999,150,0.0480,0,88,999.000,999.0,99.0 +1979,7,19,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,32.0,5.0,19,88300,1189,1323,411,872,905,56,91800,91100,9700,2900,20,2.3,3,3,64.4,77777,9,999999999,150,0.0480,0,88,999.000,999.0,99.0 +1979,7,19,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.9,5.6,17,88200,1164,1323,425,845,785,152,89900,79500,19800,6970,10,2.1,4,4,64.4,77777,9,999999999,150,0.0480,0,88,999.000,999.0,99.0 +1979,7,19,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,33.3,4.4,16,88200,1083,1323,423,700,551,247,73300,55600,27600,9200,70,2.6,6,5,64.4,77777,9,999999999,139,0.0480,0,88,999.000,999.0,99.0 +1979,7,19,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,32.8,3.5,16,88200,951,1323,419,628,600,195,65900,60600,22200,5600,120,3.1,7,5,64.4,77777,9,999999999,129,0.0480,0,88,999.000,999.0,99.0 +1979,7,19,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,2.8,15,88100,779,1323,419,429,478,147,47000,49100,18000,3330,180,3.6,9,6,64.4,6100,9,999999999,129,0.0480,0,88,999.000,999.0,99.0 +1979,7,19,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,29.8,4.0,21,88200,576,1323,407,315,473,107,34000,46400,13800,2080,120,3.3,9,6,64.4,77777,9,999999999,150,0.0480,0,88,999.000,999.0,99.0 +1979,7,19,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,27.4,5.5,26,88200,358,1323,393,151,140,113,16300,12300,13000,2500,70,2.9,10,5,64.4,77777,9,999999999,160,0.0480,0,88,999.000,999.0,99.0 +1979,7,19,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,7.2,32,88300,140,1323,383,47,57,41,5100,3200,4800,860,10,2.6,10,5,64.4,77777,9,999999999,170,0.0480,0,88,999.000,999.0,99.0 +1979,7,19,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.1,6.7,33,88300,4,276,375,4,7,3,0,0,0,0,320,2.9,8,4,64.4,77777,9,999999999,160,0.0480,0,88,999.000,999.0,99.0 +1979,7,19,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,23.1,6.3,33,88300,0,0,369,0,0,0,0,0,0,0,260,3.3,7,4,64.4,77777,9,999999999,160,0.0480,0,88,999.000,999.0,99.0 +1979,7,19,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,22.2,5.6,34,88300,0,0,361,0,0,0,0,0,0,0,210,3.6,5,3,24.1,77777,9,999999999,150,0.0480,0,88,999.000,999.0,99.0 +1979,7,19,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,20.5,6.2,39,88300,0,0,350,0,0,0,0,0,0,0,210,3.1,4,2,24.1,77777,9,999999999,160,0.0480,0,88,999.000,999.0,99.0 +1979,7,20,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,18.9,6.3,43,88200,0,0,338,0,0,0,0,0,0,0,220,2.6,2,1,24.1,77777,9,999999999,160,0.0480,0,88,999.000,999.0,99.0 +1979,7,20,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,17.2,6.1,48,88200,0,0,324,0,0,0,0,0,0,0,220,2.1,1,0,24.1,77777,9,999999999,160,0.0480,0,88,999.000,999.0,99.0 +1979,7,20,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,16.7,6.5,50,88200,0,0,328,0,0,0,0,0,0,0,240,2.3,2,1,24.1,77777,9,999999999,160,0.0480,0,88,999.000,999.0,99.0 +1979,7,20,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,16.1,6.4,52,88200,0,0,330,0,0,0,0,0,0,0,260,2.4,3,2,24.1,77777,9,999999999,160,0.0480,0,88,999.000,999.0,99.0 +1979,7,20,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,6.1,54,88200,0,99,331,0,1,0,0,0,0,0,280,2.6,4,3,64.4,77777,9,999999999,160,0.0830,0,88,999.000,999.0,99.0 +1979,7,20,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,16.9,6.8,52,88200,111,1323,340,29,65,24,3100,2700,2900,420,290,2.2,5,4,64.4,77777,9,999999999,160,0.0830,0,88,999.000,999.0,99.0 +1979,7,20,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,18.1,7.3,49,88300,326,1323,352,117,161,77,12500,13400,9200,1450,310,1.9,7,6,64.4,77777,9,999999999,170,0.0830,0,88,999.000,999.0,99.0 +1979,7,20,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,7.8,47,88300,545,1323,363,243,218,153,26000,21700,17000,3200,320,1.5,8,7,64.4,7620,9,999999999,170,0.0830,0,88,999.000,999.0,99.0 +1979,7,20,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,21.8,7.9,41,88300,751,1323,371,404,324,220,43600,34200,24200,5220,320,1.9,7,6,64.4,6300,9,999999999,179,0.0830,0,88,999.000,999.0,99.0 +1979,7,20,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.3,7.8,36,88300,928,1323,380,688,740,168,72900,75200,20000,4720,330,2.2,7,5,64.4,4980,9,999999999,179,0.0830,0,88,999.000,999.0,99.0 +1979,7,20,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,7.8,30,88300,1066,1323,390,594,468,216,65500,49000,25900,7830,330,2.6,6,4,64.4,3660,9,999999999,170,0.0830,0,88,999.000,999.0,99.0 +1979,7,20,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,28.7,6.8,26,88200,1154,1323,399,828,691,223,88000,70500,26400,10400,360,3.1,5,4,64.4,77777,9,999999999,170,0.0830,0,88,999.000,999.0,99.0 +1979,7,20,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,30.8,5.7,21,88100,1187,1323,408,852,661,257,90000,67100,29700,13370,30,3.6,5,4,64.4,77777,9,999999999,160,0.0830,0,88,999.000,999.0,99.0 +1979,7,20,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,5.0,17,88000,1162,1323,418,806,690,198,86500,70800,24200,9560,60,4.1,4,4,64.4,77777,9,999999999,139,0.0830,0,88,999.000,999.0,99.0 +1979,7,20,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,32.4,4.4,17,88000,1081,1323,415,675,491,273,72900,51300,30900,10400,110,3.8,5,4,64.4,77777,9,999999999,139,0.0830,0,88,999.000,999.0,99.0 +1979,7,20,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,32.1,4.0,17,87900,950,1323,413,650,698,147,69500,71500,18200,4340,170,3.4,7,4,64.4,77777,9,999999999,139,0.0830,0,88,999.000,999.0,99.0 +1979,7,20,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,3.9,17,87900,776,1323,411,471,514,168,50800,52700,19800,3840,220,3.1,8,4,64.4,77777,9,999999999,139,0.0830,0,88,999.000,999.0,99.0 +1979,7,20,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,29.8,4.7,21,87900,574,1323,405,349,510,127,37200,49900,15500,2510,230,3.1,8,5,64.4,77777,9,999999999,150,0.0830,0,88,999.000,999.0,99.0 +1979,7,20,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,28.0,5.9,26,87900,355,1323,397,145,242,79,15500,20900,9900,1480,240,3.1,8,5,64.4,77777,9,999999999,160,0.0830,0,88,999.000,999.0,99.0 +1979,7,20,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,7.2,30,87900,137,1323,392,53,53,48,5700,2900,5400,1000,250,3.1,8,6,64.4,6100,9,999999999,170,0.0830,0,88,999.000,999.0,99.0 +1979,7,20,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.6,6.3,31,88000,3,254,380,2,2,2,0,0,0,0,250,3.3,6,5,64.4,77777,9,999999999,160,0.0830,0,88,999.000,999.0,99.0 +1979,7,20,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,23.2,5.5,32,88000,0,0,366,0,0,0,0,0,0,0,250,3.4,5,3,64.4,77777,9,999999999,150,0.0830,0,88,999.000,999.0,99.0 +1979,7,20,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,21.7,4.4,33,88100,0,0,354,0,0,0,0,0,0,0,250,3.6,3,2,24.1,77777,9,999999999,139,0.0830,0,88,999.000,999.0,99.0 +1979,7,20,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,20.6,4.8,35,88100,0,0,349,0,0,0,0,0,0,0,290,3.3,3,2,24.1,77777,9,999999999,139,0.0830,0,88,999.000,999.0,99.0 +1979,7,21,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,19.4,4.7,38,88100,0,0,347,0,0,0,0,0,0,0,330,2.9,4,3,24.1,77777,9,999999999,139,0.0830,0,88,999.000,999.0,99.0 +1979,7,21,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,18.3,4.4,40,88100,0,0,341,0,0,0,0,0,0,0,10,2.6,4,3,24.1,77777,9,999999999,139,0.0830,0,88,999.000,999.0,99.0 +1979,7,21,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,17.0,5.0,44,88100,0,0,332,0,0,0,0,0,0,0,10,2.4,3,2,24.1,77777,9,999999999,139,0.0830,0,88,999.000,999.0,99.0 +1979,7,21,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,15.7,5.1,49,88100,0,0,327,0,0,0,0,0,0,0,20,2.3,2,2,24.1,77777,9,999999999,150,0.0830,0,88,999.000,999.0,99.0 +1979,7,21,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,14.4,5.0,53,88100,0,55,316,0,0,0,0,0,0,0,20,2.1,1,1,64.4,77777,9,999999999,150,0.0830,0,88,999.000,999.0,99.0 +1979,7,21,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,16.5,6.1,50,88100,107,1323,327,45,374,15,4800,23300,2900,340,30,2.1,1,1,64.4,77777,9,999999999,160,0.0330,0,88,999.000,999.0,99.0 +1979,7,21,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,18.5,7.0,47,88100,323,1323,331,198,690,29,21000,59300,6500,770,30,2.1,0,0,64.4,77777,9,999999999,170,0.0330,0,88,999.000,999.0,99.0 +1979,7,21,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,7.8,44,88100,542,1323,341,374,811,40,39600,77300,7900,1100,40,2.1,0,0,64.4,77777,9,999999999,179,0.0330,0,88,999.000,999.0,99.0 +1979,7,21,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,23.5,8.1,38,88100,748,1323,355,552,882,52,58300,87100,8900,1450,40,2.6,0,0,64.4,77777,9,999999999,179,0.0330,0,88,999.000,999.0,99.0 +1979,7,21,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,26.5,8.2,33,88100,926,1323,370,710,925,60,74600,92500,9700,1860,50,3.1,0,0,64.4,77777,9,999999999,179,0.0330,0,88,999.000,999.0,99.0 +1979,7,21,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,8.3,27,88000,1064,1323,385,829,946,66,86900,95000,10400,2430,50,3.6,0,0,32.2,77777,9,999999999,179,0.0330,0,88,999.000,999.0,99.0 +1979,7,21,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,30.9,7.1,23,88000,1153,1323,391,911,962,70,95200,96700,10800,3120,50,4.1,0,0,32.2,77777,9,999999999,170,0.0330,0,88,999.000,999.0,99.0 +1979,7,21,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,32.4,5.9,20,87900,1185,1323,397,947,974,72,99000,98000,11000,3530,40,4.7,0,0,32.2,77777,9,999999999,160,0.0330,0,88,999.000,999.0,99.0 +1979,7,21,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.9,5.0,16,87900,1160,1323,404,930,976,71,97200,98100,10900,3220,40,5.2,0,0,64.4,77777,9,999999999,139,0.0330,0,88,999.000,999.0,99.0 +1979,7,21,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,34.3,3.4,15,87800,1079,1323,411,792,891,62,83100,89500,9900,2390,50,4.8,2,1,64.4,77777,9,999999999,139,0.0330,0,88,999.000,999.0,99.0 +1979,7,21,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,34.6,2.1,13,87700,948,1323,411,685,826,91,71100,82400,11900,2420,70,4.5,5,1,64.4,77777,9,999999999,129,0.0330,0,88,999.000,999.0,99.0 +1979,7,21,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.0,1.1,12,87700,774,1323,417,526,706,110,56100,71500,14200,2640,80,4.1,7,2,64.4,77777,9,999999999,120,0.0330,0,88,999.000,999.0,99.0 +1979,7,21,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,33.0,2.3,16,87600,571,1323,408,366,661,79,38800,64300,11000,1650,110,4.1,8,2,64.4,77777,9,999999999,129,0.0330,0,88,999.000,999.0,99.0 +1979,7,21,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,30.9,3.9,19,87600,352,1323,403,186,408,77,19600,34600,10400,1410,150,4.1,9,3,64.4,77777,9,999999999,139,0.0330,0,88,999.000,999.0,99.0 +1979,7,21,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,5.6,23,87600,134,1323,395,45,61,38,4800,3400,4500,790,180,4.1,10,3,64.4,77777,9,999999999,150,0.0330,0,88,999.000,999.0,99.0 +1979,7,21,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,27.4,5.2,24,87600,3,232,393,3,1,3,0,0,0,0,210,3.4,10,5,64.4,77777,9,999999999,150,0.0330,0,88,999.000,999.0,99.0 +1979,7,21,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,25.9,4.9,26,87700,0,0,393,0,0,0,0,0,0,0,230,2.8,9,7,64.4,77777,9,999999999,139,0.0330,0,88,999.000,999.0,99.0 +1979,7,21,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,24.4,4.4,27,87700,0,0,399,0,0,0,0,0,0,0,260,2.1,9,9,24.1,7620,9,999999999,139,0.0330,0,88,999.000,999.0,99.0 +1979,7,21,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,24.2,5.2,28,87700,0,0,399,0,0,0,0,0,0,0,280,2.4,9,9,24.1,7113,9,999999999,139,0.0330,0,88,999.000,999.0,99.0 +1979,7,22,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,24.1,5.5,30,87700,0,0,410,0,0,0,0,0,0,0,290,2.8,10,10,24.1,6607,9,999999999,150,0.0330,0,88,999.000,999.0,99.0 +1979,7,22,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,23.9,5.6,31,87700,0,0,409,0,0,0,0,0,0,0,310,3.1,10,10,24.1,6100,9,999999999,150,0.0330,0,88,999.000,999.0,99.0 +1979,7,22,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,23.9,7.2,34,87800,0,0,411,0,0,0,0,0,0,0,300,3.8,10,10,24.1,6100,9,999999999,170,0.0330,0,88,999.000,999.0,99.0 +1979,7,22,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,23.9,8.4,37,87800,0,0,413,0,0,0,0,0,0,0,290,4.5,10,10,24.1,6100,9,999999999,179,0.0330,0,88,999.000,999.0,99.0 +1979,7,22,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,23.9,9.4,40,87800,0,33,414,0,0,0,0,0,0,0,280,5.2,10,10,64.4,6100,9,999999999,189,0.0330,0,88,999.000,999.0,99.0 +1979,7,22,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.1,9.7,40,87900,104,1323,416,19,0,19,2200,0,2200,670,270,4.7,10,10,64.4,6607,9,999999999,189,0.0280,0,88,999.000,999.0,99.0 +1979,7,22,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.2,9.9,40,87900,320,1323,416,71,5,70,8100,200,8100,2610,270,4.1,10,10,64.4,7113,9,999999999,200,0.0280,0,88,999.000,999.0,99.0 +1979,7,22,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,10.0,40,88000,539,1323,418,165,5,163,18600,400,18400,6120,260,3.6,10,10,48.3,7620,9,999999999,200,0.0280,0,88,999.000,999.0,99.0 +1979,7,22,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,22.7,11.2,49,88000,746,1323,410,203,5,201,23500,400,23300,8540,270,4.6,10,10,48.3,6300,9,999999999,220,0.0280,0,88,999.000,999.0,99.0 +1979,7,22,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,21.1,12.2,59,88100,924,1323,402,320,3,317,36600,300,36400,13230,270,5.7,10,10,48.3,4980,9,999999999,229,0.0280,0,88,999.000,999.0,99.0 +1979,7,22,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,13.3,68,88200,1062,1323,395,190,9,183,23300,700,22700,9220,280,6.7,10,10,24.1,3660,9,999999999,240,0.0280,0,88,999.000,999.0,99.0 +1979,7,22,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,19.0,13.8,72,88200,1151,1323,393,385,1,384,45000,100,45000,16640,270,5.3,10,10,24.1,3660,9,999999999,250,0.0280,0,88,999.000,999.0,99.0 +1979,7,22,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,18.7,14.2,77,88200,1184,1323,392,403,4,400,47300,400,47000,17260,260,4.0,10,10,24.1,3660,9,999999999,259,0.0280,0,88,999.000,999.0,99.0 +1979,7,22,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,15.0,81,88200,1159,1323,391,240,0,239,29000,0,29000,11700,250,2.6,10,10,24.1,3660,9,999999999,270,0.0280,0,88,999.000,999.0,99.0 +1979,7,22,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,19.6,14.2,73,88200,1077,1323,386,574,320,313,63200,34800,34900,11310,200,2.2,10,9,24.1,4473,9,999999999,259,0.0280,0,88,999.000,999.0,99.0 +1979,7,22,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,20.9,13.6,65,88200,946,1323,392,298,39,269,32800,4000,29900,9970,140,1.9,10,9,24.1,5287,9,999999999,250,0.0280,0,88,999.000,999.0,99.0 +1979,7,22,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,13.3,57,88100,772,1323,390,338,114,272,37200,11600,30500,8540,90,1.5,10,8,32.2,6100,9,999999999,240,0.0280,0,88,999.000,999.0,99.0 +1979,7,22,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,21.8,13.4,60,88100,569,1323,382,260,236,158,27800,23800,17600,3330,110,2.4,10,7,32.2,6100,9,999999999,250,0.0280,0,88,999.000,999.0,99.0 +1979,7,22,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,21.5,13.8,63,88100,350,1323,381,131,93,106,14200,8100,12000,2340,120,3.2,10,7,32.2,6100,9,999999999,250,0.0280,0,88,999.000,999.0,99.0 +1979,7,22,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,14.4,66,88100,131,1323,375,33,21,31,3600,1300,3500,750,140,4.1,10,6,48.3,6100,9,999999999,259,0.0280,0,88,999.000,999.0,99.0 +1979,7,22,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,19.8,14.2,71,88100,2,210,365,6,10,4,0,0,0,0,90,3.2,8,5,48.3,77777,9,999999999,259,0.0280,0,88,999.000,999.0,99.0 +1979,7,22,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,18.5,14.2,76,88100,0,0,353,0,0,0,0,0,0,0,50,2.4,7,3,48.3,77777,9,999999999,259,0.0280,0,88,999.000,999.0,99.0 +1979,7,22,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,17.2,13.9,81,88100,0,0,343,0,0,0,0,0,0,0,360,1.5,5,2,24.1,77777,9,999999999,250,0.0280,0,88,999.000,999.0,99.0 +1979,7,22,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,16.5,14.0,83,88100,0,0,340,0,0,0,0,0,0,0,310,1.7,4,2,24.1,77777,9,999999999,250,0.0280,0,88,999.000,999.0,99.0 +1979,7,23,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,15.7,13.5,85,88100,0,0,336,0,0,0,0,0,0,0,260,1.9,4,2,24.1,77777,9,999999999,240,0.0280,0,88,999.000,999.0,99.0 +1979,7,23,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,15.0,12.8,87,88100,0,0,332,0,0,0,0,0,0,0,210,2.1,3,2,24.1,77777,9,999999999,240,0.0280,0,88,999.000,999.0,99.0 +1979,7,23,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,14.4,12.6,87,88100,0,0,329,0,0,0,0,0,0,0,260,1.4,3,2,24.1,77777,9,999999999,229,0.0280,0,88,999.000,999.0,99.0 +1979,7,23,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,13.9,11.9,87,88100,0,0,326,0,0,0,0,0,0,0,310,0.7,2,2,24.1,77777,9,999999999,220,0.0280,0,88,999.000,999.0,99.0 +1979,7,23,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,13.3,11.1,87,88100,0,11,322,0,0,0,0,0,0,0,0,0.0,2,2,32.2,77777,9,999999999,209,0.0280,0,88,999.000,999.0,99.0 +1979,7,23,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,13.9,11.8,87,88100,101,1323,332,36,99,28,3700,3800,3400,510,350,0.9,4,4,32.2,77777,9,999999999,220,0.0720,0,88,999.000,999.0,99.0 +1979,7,23,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,14.4,12.3,87,88200,317,1323,340,131,134,99,14200,11200,11500,2160,330,1.7,7,6,32.2,77777,9,999999999,229,0.0720,0,88,999.000,999.0,99.0 +1979,7,23,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,12.8,87,88200,537,1323,353,202,106,159,22100,10500,17800,3740,320,2.6,9,8,0.8,60,9,999999999,240,0.0720,0,88,999.000,999.0,99.0 +1979,7,23,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,18.3,10.7,68,88100,743,1323,354,305,218,183,33400,23000,20500,4190,290,2.4,6,5,0.8,77777,9,999999999,229,0.0720,0,88,999.000,999.0,99.0 +1979,7,23,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,21.7,8.4,49,88100,922,1323,362,588,580,183,61800,58600,20900,5020,260,2.3,3,3,0.8,77777,9,999999999,200,0.0720,0,88,999.000,999.0,99.0 +1979,7,23,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,6.1,30,88100,1060,1323,360,827,912,94,85700,91400,12400,3040,230,2.1,0,0,48.3,77777,9,999999999,160,0.0720,0,88,999.000,999.0,99.0 +1979,7,23,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,26.7,4.0,25,88000,1149,1323,366,887,904,99,91700,90700,12800,3960,250,3.5,0,0,48.3,77777,9,999999999,150,0.0720,0,88,999.000,999.0,99.0 +1979,7,23,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,28.3,1.8,19,88000,1182,1323,371,933,928,101,96400,93200,13000,4490,270,4.8,0,0,48.3,77777,9,999999999,129,0.0720,0,88,999.000,999.0,99.0 +1979,7,23,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,0.0,14,87900,1157,1323,377,922,937,100,95300,94000,13000,4090,290,6.2,0,0,64.4,77777,9,999999999,110,0.0720,0,88,999.000,999.0,99.0 +1979,7,23,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,30.2,0.3,15,87900,1075,1323,378,848,922,95,87800,92400,12500,3170,280,5.5,0,0,64.4,77777,9,999999999,110,0.0720,0,88,999.000,999.0,99.0 +1979,7,23,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,30.4,0.9,15,87800,943,1323,380,729,895,87,75600,89300,11800,2360,280,4.8,0,0,64.4,77777,9,999999999,120,0.0720,0,88,999.000,999.0,99.0 +1979,7,23,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,1.7,16,87800,770,1323,382,572,848,76,59500,83700,10800,1780,270,4.1,0,0,64.4,77777,9,999999999,120,0.0720,0,88,999.000,999.0,99.0 +1979,7,23,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,29.1,0.8,17,87800,566,1323,373,392,769,60,41500,74400,9700,1340,280,3.8,0,0,64.4,77777,9,999999999,120,0.0720,0,88,999.000,999.0,99.0 +1979,7,23,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,27.6,0.4,17,87800,347,1323,366,210,626,44,21600,54100,7400,900,280,3.4,0,0,64.4,77777,9,999999999,110,0.0720,0,88,999.000,999.0,99.0 +1979,7,23,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,0.0,18,87800,128,1323,358,55,310,24,5500,17100,3900,430,290,3.1,0,0,64.4,77777,9,999999999,110,0.0720,0,88,999.000,999.0,99.0 +1979,7,23,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,23.1,1.1,25,87800,2,187,345,3,7,2,0,0,0,0,340,3.1,0,0,64.4,77777,9,999999999,120,0.0720,0,88,999.000,999.0,99.0 +1979,7,23,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,20.2,2.3,33,87900,0,0,333,0,0,0,0,0,0,0,40,3.1,0,0,64.4,77777,9,999999999,129,0.0720,0,88,999.000,999.0,99.0 +1979,7,23,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,17.2,3.3,40,88000,0,0,321,0,0,0,0,0,0,0,90,3.1,0,0,24.1,77777,9,999999999,129,0.0720,0,88,999.000,999.0,99.0 +1979,7,23,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,16.8,5.6,48,88000,0,0,322,0,0,0,0,0,0,0,50,3.6,0,0,24.1,77777,9,999999999,150,0.0720,0,88,999.000,999.0,99.0 +1979,7,24,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,16.5,7.4,55,88100,0,0,322,0,0,0,0,0,0,0,10,4.1,0,0,24.1,77777,9,999999999,170,0.0720,0,88,999.000,999.0,99.0 +1979,7,24,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,16.1,8.9,63,88200,0,0,322,0,0,0,0,0,0,0,330,4.6,0,0,24.1,77777,9,999999999,189,0.0720,0,88,999.000,999.0,99.0 +1979,7,24,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,15.5,9.4,66,88200,0,0,326,0,0,0,0,0,0,0,320,4.4,1,1,24.1,77777,9,999999999,189,0.0720,0,88,999.000,999.0,99.0 +1979,7,24,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,15.0,9.5,69,88300,0,0,324,0,0,0,0,0,0,0,310,4.3,2,1,24.1,77777,9,999999999,189,0.0720,0,88,999.000,999.0,99.0 +1979,7,24,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,14.4,9.4,72,88300,0,0,325,0,0,0,0,0,0,0,300,4.1,3,2,32.2,77777,9,999999999,189,0.0720,0,88,999.000,999.0,99.0 +1979,7,24,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,15.7,9.7,68,88300,97,1313,335,35,101,27,3700,4000,3400,490,310,4.1,4,3,32.2,77777,9,999999999,200,0.0910,0,88,999.000,999.0,99.0 +1979,7,24,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,17.0,9.9,63,88300,313,1324,347,127,201,79,13500,16400,9600,1500,330,4.1,6,5,32.2,77777,9,999999999,200,0.0910,0,88,999.000,999.0,99.0 +1979,7,24,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,10.0,59,88400,534,1324,356,208,275,97,22600,26500,11900,1840,340,4.1,7,6,32.2,910,9,999999999,200,0.0910,0,88,999.000,999.0,99.0 +1979,7,24,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,19.2,10.1,56,88300,740,1324,358,356,264,208,38500,27900,22900,4860,330,4.8,5,5,32.2,77777,9,999999999,200,0.0910,0,88,999.000,999.0,99.0 +1979,7,24,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,20.2,10.0,52,88300,919,1324,357,465,394,191,50800,41000,22300,5200,330,5.5,4,3,32.2,77777,9,999999999,200,0.0910,0,88,999.000,999.0,99.0 +1979,7,24,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,10.0,49,88300,1058,1324,358,758,754,154,79500,75800,18800,5080,320,6.2,2,2,64.4,77777,9,999999999,200,0.0910,0,88,999.000,999.0,99.0 +1979,7,24,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,22.2,9.7,46,88300,1147,1324,358,838,851,99,86800,85400,12700,3930,330,6.2,1,1,64.4,77777,9,999999999,200,0.0910,0,88,999.000,999.0,99.0 +1979,7,24,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,23.3,9.4,42,88200,1180,1324,363,850,827,110,87600,83000,13500,4720,340,6.2,1,1,64.4,77777,9,999999999,200,0.0910,0,88,999.000,999.0,99.0 +1979,7,24,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,9.4,39,88200,1155,1324,361,904,904,113,93200,90600,14000,4390,350,6.2,0,0,64.4,77777,9,999999999,189,0.0910,0,88,999.000,999.0,99.0 +1979,7,24,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.4,9.1,39,88200,1073,1324,361,826,882,108,85200,88300,13500,3380,350,6.9,0,0,64.4,77777,9,999999999,189,0.0910,0,88,999.000,999.0,99.0 +1979,7,24,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.4,9.1,39,88200,941,1324,361,712,858,99,73600,85500,12700,2470,360,7.5,0,0,64.4,77777,9,999999999,189,0.0910,0,88,999.000,999.0,99.0 +1979,7,24,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,9.4,39,88200,767,1324,361,552,800,86,58800,80000,12300,2070,360,8.2,0,0,64.4,77777,9,999999999,189,0.0910,0,88,999.000,999.0,99.0 +1979,7,24,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,22.6,8.9,43,88200,563,1324,359,342,619,76,36200,60100,10600,1580,360,7.4,1,1,64.4,77777,9,999999999,189,0.0910,0,88,999.000,999.0,99.0 +1979,7,24,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,20.7,8.9,48,88300,343,1324,358,175,373,78,18400,31300,10300,1430,360,6.5,3,3,64.4,77777,9,999999999,189,0.0910,0,88,999.000,999.0,99.0 +1979,7,24,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,8.9,52,88300,125,1324,352,50,205,30,5100,10100,4200,540,360,5.7,4,4,48.3,77777,9,999999999,189,0.0910,0,88,999.000,999.0,99.0 +1979,7,24,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,18.3,8.9,54,88400,1,165,352,1,1,0,0,0,0,0,330,5.0,5,5,48.3,77777,9,999999999,189,0.0910,0,88,999.000,999.0,99.0 +1979,7,24,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,17.8,9.0,56,88400,0,0,353,0,0,0,0,0,0,0,310,4.3,6,6,48.3,77777,9,999999999,189,0.0910,0,88,999.000,999.0,99.0 +1979,7,24,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,17.2,8.9,58,88400,0,0,354,0,0,0,0,0,0,0,280,3.6,7,7,24.1,1830,9,999999999,189,0.0910,0,88,999.000,999.0,99.0 +1979,7,24,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,16.8,9.3,60,88400,0,0,358,0,0,0,0,0,0,0,280,3.6,8,8,24.1,1637,9,999999999,189,0.0910,0,88,999.000,999.0,99.0 +1979,7,25,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,16.5,9.2,61,88400,0,0,364,0,0,0,0,0,0,0,290,3.6,9,9,24.1,1443,9,999999999,189,0.0910,0,88,999.000,999.0,99.0 +1979,7,25,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,16.1,8.9,63,88400,0,0,372,0,0,0,0,0,0,0,290,3.6,10,10,24.1,1250,9,999999999,189,0.0910,0,88,999.000,999.0,99.0 +1979,7,25,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,15.9,9.3,64,88300,0,0,371,0,0,0,0,0,0,0,290,3.6,10,10,24.1,1290,9,999999999,189,0.0910,0,88,999.000,999.0,99.0 +1979,7,25,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,15.8,9.2,64,88300,0,0,370,0,0,0,0,0,0,0,300,3.6,10,10,24.1,1330,9,999999999,189,0.0910,0,88,999.000,999.0,99.0 +1979,7,25,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,15.6,8.9,65,88300,0,0,369,0,0,0,0,0,0,0,300,3.6,10,10,24.1,1370,9,999999999,189,0.0910,0,88,999.000,999.0,99.0 +1979,7,25,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,15.8,9.0,64,88300,94,1291,370,15,1,15,1800,0,1800,550,310,3.6,10,10,24.1,1370,9,999999999,189,0.0570,0,88,999.000,999.0,99.0 +1979,7,25,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,15.9,9.0,64,88300,310,1324,371,74,4,74,8500,200,8400,2680,330,3.6,10,10,24.1,1370,9,999999999,189,0.0570,0,88,999.000,999.0,99.0 +1979,7,25,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,8.9,63,88300,531,1324,372,169,5,167,19000,400,18800,6150,340,3.6,10,10,48.3,1370,9,999999999,189,0.0570,0,88,999.000,999.0,99.0 +1979,7,25,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,17.4,9.2,59,88300,738,1324,368,315,141,236,34400,14700,26200,6140,350,3.1,9,9,48.3,1930,9,999999999,189,0.0570,0,88,999.000,999.0,99.0 +1979,7,25,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,18.7,9.3,55,88200,917,1324,367,343,167,227,38300,17800,26000,6800,350,2.6,8,8,48.3,2490,9,999999999,189,0.0570,0,88,999.000,999.0,99.0 +1979,7,25,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,9.4,51,88200,1056,1324,368,564,308,318,61900,33400,35200,11030,360,2.1,7,7,48.3,3050,9,999999999,189,0.0570,0,88,999.000,999.0,99.0 +1979,7,25,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,21.1,9.5,48,88100,1145,1324,369,744,603,220,79000,61500,25700,9910,360,3.6,6,6,48.3,77777,9,999999999,200,0.0570,0,88,999.000,999.0,99.0 +1979,7,25,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,22.2,9.6,46,88100,1178,1324,369,815,703,188,88000,72300,23500,9600,360,5.2,4,4,48.3,77777,9,999999999,200,0.0570,0,88,999.000,999.0,99.0 +1979,7,25,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,10.0,43,88000,1153,1324,372,932,911,135,95400,91200,15900,4800,360,6.7,3,3,48.3,77777,9,999999999,200,0.0570,0,88,999.000,999.0,99.0 +1979,7,25,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,22.8,9.5,44,88000,1071,1324,365,774,814,113,79800,81500,13700,3430,360,7.2,2,2,48.3,77777,9,999999999,200,0.0570,0,88,999.000,999.0,99.0 +1979,7,25,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,22.2,9.3,45,88100,939,1324,357,664,848,60,69700,84800,9500,1890,360,7.7,1,1,48.3,77777,9,999999999,200,0.0570,0,88,999.000,999.0,99.0 +1979,7,25,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,9.4,46,88100,765,1324,348,555,841,66,58000,83000,9900,1680,360,8.2,0,0,64.4,77777,9,999999999,189,0.0570,0,88,999.000,999.0,99.0 +1979,7,25,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,20.0,8.9,51,88200,560,1324,346,363,725,54,38000,69300,8700,1280,360,7.2,1,1,64.4,77777,9,999999999,189,0.0570,0,88,999.000,999.0,99.0 +1979,7,25,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,18.4,8.9,55,88200,340,1324,339,189,540,48,19600,45900,7800,920,10,6.2,1,1,64.4,77777,9,999999999,189,0.0570,0,88,999.000,999.0,99.0 +1979,7,25,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,8.9,60,88300,121,1324,335,50,239,28,5000,12600,3900,480,10,5.2,2,2,64.4,77777,9,999999999,189,0.0570,0,88,999.000,999.0,99.0 +1979,7,25,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,16.1,8.9,62,88300,1,143,341,2,4,2,0,0,0,0,340,4.5,5,5,64.4,77777,9,999999999,189,0.0570,0,88,999.000,999.0,99.0 +1979,7,25,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,15.6,9.0,65,88400,0,0,346,0,0,0,0,0,0,0,310,3.8,7,7,64.4,77777,9,999999999,189,0.0570,0,88,999.000,999.0,99.0 +1979,7,25,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,15.0,8.9,67,88400,0,0,366,0,0,0,0,0,0,0,280,3.1,10,10,24.1,1160,9,999999999,189,0.0570,0,88,999.000,999.0,99.0 +1979,7,25,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,14.4,9.3,70,88400,0,0,341,0,0,0,0,0,0,0,270,3.1,7,7,24.1,77777,9,999999999,189,0.0570,0,88,999.000,999.0,99.0 +1979,7,26,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,13.9,9.2,72,88300,0,0,326,0,0,0,0,0,0,0,260,3.1,3,3,24.1,77777,9,999999999,189,0.0570,0,88,999.000,999.0,99.0 +1979,7,26,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,13.3,8.9,75,88300,0,0,310,0,0,0,0,0,0,0,250,3.1,0,0,24.1,77777,9,999999999,189,0.0570,0,88,999.000,999.0,99.0 +1979,7,26,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,12.8,8.9,76,88300,0,0,318,0,0,0,0,0,0,0,260,3.3,2,2,24.1,77777,9,999999999,179,0.0570,0,88,999.000,999.0,99.0 +1979,7,26,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,12.2,8.4,76,88300,0,0,323,0,0,0,0,0,0,0,280,3.4,5,5,24.1,77777,9,999999999,179,0.0570,0,88,999.000,999.0,99.0 +1979,7,26,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,11.7,7.8,77,88300,0,0,326,0,0,0,0,0,0,0,290,3.6,7,7,48.3,1160,9,999999999,170,0.0570,0,88,999.000,999.0,99.0 +1979,7,26,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,12.8,7.9,72,88200,90,1269,325,27,65,22,2900,2500,2700,380,330,2.9,5,5,48.3,77777,9,999999999,170,0.0650,0,88,999.000,999.0,99.0 +1979,7,26,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,13.9,7.9,67,88200,306,1324,322,158,465,50,16400,37900,7600,930,360,2.2,2,2,48.3,77777,9,999999999,170,0.0650,0,88,999.000,999.0,99.0 +1979,7,26,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,7.8,62,88200,527,1324,316,353,747,54,37000,70700,8800,1240,40,1.5,0,0,48.3,77777,9,999999999,170,0.0650,0,88,999.000,999.0,99.0 +1979,7,26,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,17.2,8.7,57,88100,735,1324,327,532,832,69,55700,81900,10200,1660,40,1.9,0,0,48.3,77777,9,999999999,179,0.0650,0,88,999.000,999.0,99.0 +1979,7,26,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,19.5,9.3,53,88100,914,1324,338,693,884,81,72200,88100,11300,2180,40,2.2,0,0,48.3,77777,9,999999999,189,0.0650,0,88,999.000,999.0,99.0 +1979,7,26,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,10.0,48,88000,1053,1324,349,814,908,89,84500,91000,12000,2900,40,2.6,0,0,64.4,77777,9,999999999,200,0.0650,0,88,999.000,999.0,99.0 +1979,7,26,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,23.4,9.3,42,87900,1142,1324,356,894,925,94,92700,92800,12500,3750,40,3.6,0,0,64.4,77777,9,999999999,200,0.0650,0,88,999.000,999.0,99.0 +1979,7,26,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,25.0,8.7,37,87900,1176,1324,363,921,927,95,95400,93100,12600,4200,40,4.7,0,0,64.4,77777,9,999999999,189,0.0650,0,88,999.000,999.0,99.0 +1979,7,26,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,8.3,31,87800,1151,1324,371,903,927,94,93500,93100,12500,3840,40,5.7,0,0,64.4,77777,9,999999999,179,0.0650,0,88,999.000,999.0,99.0 +1979,7,26,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,27.1,7.7,30,87800,1069,1324,372,835,919,90,86600,92100,12100,3020,40,5.5,0,0,64.4,77777,9,999999999,170,0.0650,0,88,999.000,999.0,99.0 +1979,7,26,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,27.4,7.3,28,87800,936,1324,373,717,894,82,74600,89200,11400,2260,30,5.4,0,0,64.4,77777,9,999999999,170,0.0650,0,88,999.000,999.0,99.0 +1979,7,26,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,7.2,27,87700,762,1324,375,563,849,71,58600,83800,10400,1720,30,5.2,0,0,64.4,77777,9,999999999,170,0.0650,0,88,999.000,999.0,99.0 +1979,7,26,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,25.8,7.6,33,87800,557,1324,366,383,768,57,40000,73300,9100,1300,20,5.0,0,0,64.4,77777,9,999999999,179,0.0650,0,88,999.000,999.0,99.0 +1979,7,26,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,23.7,8.5,40,87900,337,1324,357,201,621,41,20800,53400,7200,850,360,4.8,0,0,64.4,77777,9,999999999,189,0.0650,0,88,999.000,999.0,99.0 +1979,7,26,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,9.4,46,87900,118,1324,348,50,302,22,5000,16100,3600,400,350,4.6,0,0,64.4,77777,9,999999999,189,0.0650,0,88,999.000,999.0,99.0 +1979,7,26,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,20.6,8.9,47,88000,1,121,343,3,4,1,0,0,0,0,320,3.4,0,0,64.4,77777,9,999999999,189,0.0650,0,88,999.000,999.0,99.0 +1979,7,26,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,19.4,8.5,49,88000,0,0,337,0,0,0,0,0,0,0,290,2.2,0,0,64.4,77777,9,999999999,179,0.0650,0,88,999.000,999.0,99.0 +1979,7,26,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,18.3,7.8,50,88100,0,0,331,0,0,0,0,0,0,0,260,1.0,0,0,24.1,77777,9,999999999,170,0.0650,0,88,999.000,999.0,99.0 +1979,7,26,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,17.0,7.7,53,88100,0,0,325,0,0,0,0,0,0,0,260,1.9,0,0,24.1,77777,9,999999999,170,0.0650,0,88,999.000,999.0,99.0 +1979,7,27,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,15.7,7.0,55,88100,0,0,318,0,0,0,0,0,0,0,260,2.7,0,0,24.1,77777,9,999999999,160,0.0650,0,88,999.000,999.0,99.0 +1979,7,27,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,14.4,6.1,58,88100,0,0,312,0,0,0,0,0,0,0,260,3.6,0,0,24.1,77777,9,999999999,160,0.0650,0,88,999.000,999.0,99.0 +1979,7,27,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,13.5,6.3,61,88100,0,0,308,0,0,0,0,0,0,0,280,3.1,0,0,24.1,77777,9,999999999,160,0.0650,0,88,999.000,999.0,99.0 +1979,7,27,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,12.6,6.0,63,88100,0,0,304,0,0,0,0,0,0,0,290,2.6,0,0,24.1,77777,9,999999999,150,0.0650,0,88,999.000,999.0,99.0 +1979,7,27,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,11.7,5.6,66,88100,0,0,300,0,0,0,0,0,0,0,310,2.1,0,0,64.4,77777,9,999999999,150,0.0650,0,88,999.000,999.0,99.0 +1979,7,27,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,13.7,6.1,60,88100,87,1247,309,36,213,18,3500,10500,2700,330,330,2.1,0,0,64.4,77777,9,999999999,160,0.0670,0,88,999.000,999.0,99.0 +1979,7,27,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,15.8,6.4,54,88100,303,1324,318,173,585,38,17900,48700,6700,780,340,2.1,0,0,64.4,77777,9,999999999,160,0.0670,0,88,999.000,999.0,99.0 +1979,7,27,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,6.7,48,88200,524,1324,327,353,750,55,37600,71700,9100,1220,360,2.1,0,0,64.4,77777,9,999999999,160,0.0670,0,88,999.000,999.0,99.0 +1979,7,27,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,19.8,7.2,44,88100,732,1324,337,533,835,70,55700,82100,10300,1660,350,2.1,0,0,64.4,77777,9,999999999,170,0.0670,0,88,999.000,999.0,99.0 +1979,7,27,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,21.9,7.5,40,88000,912,1324,347,693,885,82,72200,88200,11300,2190,350,2.1,0,0,64.4,77777,9,999999999,170,0.0670,0,88,999.000,999.0,99.0 +1979,7,27,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,7.8,36,88000,1051,1324,357,816,912,90,84700,91400,12100,2900,340,2.1,0,0,64.4,77777,9,999999999,179,0.0670,0,88,999.000,999.0,99.0 +1979,7,27,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,25.7,7.0,31,87900,1140,1324,377,846,833,127,87000,83400,15000,4450,360,1.9,2,2,64.4,77777,9,999999999,170,0.0670,0,88,999.000,999.0,99.0 +1979,7,27,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,27.6,6.1,27,87900,1174,1324,392,832,695,213,88800,71100,25600,10610,30,1.7,5,4,64.4,77777,9,999999999,160,0.0670,0,88,999.000,999.0,99.0 +1979,7,27,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,5.6,22,87800,1148,1324,407,558,334,268,61000,35000,30600,12320,50,1.5,7,6,64.4,4270,9,999999999,150,0.0670,0,88,999.000,999.0,99.0 +1979,7,27,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,28.9,5.9,24,87800,1067,1324,405,592,416,255,64100,43500,29000,9320,90,3.6,7,6,64.4,3760,9,999999999,160,0.0670,0,88,999.000,999.0,99.0 +1979,7,27,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,28.3,6.4,25,87700,934,1324,407,530,395,250,56400,41000,27400,7090,140,5.6,8,7,64.4,3250,9,999999999,160,0.0670,0,88,999.000,999.0,99.0 +1979,7,27,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,7.2,27,87700,759,1324,406,385,291,217,41600,30800,23900,5160,180,7.7,8,7,64.4,2740,9,999999999,170,0.0670,0,88,999.000,999.0,99.0 +1979,7,27,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,25.8,7.1,32,87700,554,1324,390,200,149,137,22000,14900,15800,3240,160,6.5,6,6,64.4,77777,9,999999999,170,0.0670,0,88,999.000,999.0,99.0 +1979,7,27,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,23.7,7.4,36,87800,333,1324,374,165,354,74,17200,29400,9800,1350,140,5.3,5,4,64.4,77777,9,999999999,170,0.0670,0,88,999.000,999.0,99.0 +1979,7,27,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,7.8,41,87800,114,1324,361,44,156,30,4500,7300,3900,540,120,4.1,3,3,32.2,77777,9,999999999,170,0.0670,0,88,999.000,999.0,99.0 +1979,7,27,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,20.2,8.0,46,87800,0,99,351,1,2,1,0,0,0,0,160,3.4,2,2,32.2,77777,9,999999999,179,0.0670,0,88,999.000,999.0,99.0 +1979,7,27,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,18.7,8.3,51,87900,0,0,340,0,0,0,0,0,0,0,200,2.8,1,1,32.2,77777,9,999999999,179,0.0670,0,88,999.000,999.0,99.0 +1979,7,27,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,17.2,8.3,56,87900,0,0,326,0,0,0,0,0,0,0,240,2.1,0,0,24.1,77777,9,999999999,179,0.0670,0,88,999.000,999.0,99.0 +1979,7,27,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,15.2,8.6,64,87900,0,0,318,0,0,0,0,0,0,0,230,1.9,0,0,24.1,77777,9,999999999,179,0.0670,0,88,999.000,999.0,99.0 +1979,7,28,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,13.1,8.3,72,87900,0,0,308,0,0,0,0,0,0,0,230,1.7,0,0,24.1,77777,9,999999999,179,0.0670,0,88,999.000,999.0,99.0 +1979,7,28,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,11.1,7.8,80,87900,0,0,299,0,0,0,0,0,0,0,220,1.5,0,0,24.1,77777,9,999999999,170,0.0670,0,88,999.000,999.0,99.0 +1979,7,28,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,11.5,7.8,76,87900,0,0,301,0,0,0,0,0,0,0,250,2.0,0,0,24.1,77777,9,999999999,170,0.0670,0,88,999.000,999.0,99.0 +1979,7,28,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,11.8,7.3,73,88000,0,0,302,0,0,0,0,0,0,0,280,2.6,0,0,24.1,77777,9,999999999,170,0.0670,0,88,999.000,999.0,99.0 +1979,7,28,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,12.2,6.7,69,88000,0,0,303,0,0,0,0,0,0,0,310,3.1,0,0,64.4,77777,9,999999999,160,0.0670,0,88,999.000,999.0,99.0 +1979,7,28,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,14.1,7.4,64,88000,83,1225,318,25,71,19,2600,2700,2400,330,330,2.6,1,1,64.4,77777,9,999999999,170,0.1460,0,88,999.000,999.0,99.0 +1979,7,28,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,15.9,7.9,59,88000,300,1325,326,143,368,60,15200,29200,8600,1070,360,2.0,2,1,64.4,77777,9,999999999,170,0.1460,0,88,999.000,999.0,99.0 +1979,7,28,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,8.3,54,88000,521,1325,340,312,525,104,32100,49300,12700,2000,20,1.5,3,2,64.4,77777,9,999999999,179,0.1460,0,88,999.000,999.0,99.0 +1979,7,28,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,19.8,8.8,49,87900,729,1325,356,438,427,203,46000,43300,22200,4550,360,2.0,5,4,64.4,77777,9,999999999,189,0.1460,0,88,999.000,999.0,99.0 +1979,7,28,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,21.9,9.1,45,87900,909,1325,377,423,255,248,46400,27500,27500,6770,330,2.6,8,7,64.4,77777,9,999999999,189,0.1460,0,88,999.000,999.0,99.0 +1979,7,28,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,9.4,40,87800,1049,1325,403,423,128,321,46800,13700,35900,11320,310,3.1,10,9,48.3,4270,9,999999999,189,0.1460,0,88,999.000,999.0,99.0 +1979,7,28,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,23.2,9.7,43,87900,1138,1325,399,413,94,332,46000,10100,37300,13800,300,4.1,10,9,48.3,4270,9,999999999,200,0.1460,0,88,999.000,999.0,99.0 +1979,7,28,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,22.4,10.0,46,88000,1171,1325,395,522,219,327,57800,23900,36700,14920,300,5.2,10,9,48.3,4270,9,999999999,200,0.1460,0,88,999.000,999.0,99.0 +1979,7,28,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,10.6,49,88100,1146,1325,392,443,105,352,49200,11200,39400,14900,290,6.2,10,9,48.3,4270,9,999999999,200,0.1460,0,88,999.000,999.0,99.0 +1979,7,28,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,20.9,10.7,53,88000,1064,1325,388,345,2,343,40200,200,40000,15010,240,5.3,10,9,48.3,3760,9,999999999,209,0.1460,0,88,999.000,999.0,99.0 +1979,7,28,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,20.2,11.1,57,88000,931,1325,396,200,5,197,23900,400,23600,9380,190,4.5,10,10,48.3,3250,9,999999999,220,0.1460,0,88,999.000,999.0,99.0 +1979,7,28,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,11.7,61,88000,756,1325,393,152,0,152,18000,0,18000,6940,140,3.6,10,10,32.2,2740,9,999999999,220,0.1460,0,88,999.000,999.0,99.0 +1979,7,28,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,18.1,10.5,62,88000,551,1325,384,118,0,117,13600,0,13600,4880,180,4.1,10,10,32.2,2590,9,999999999,209,0.1460,0,88,999.000,999.0,99.0 +1979,7,28,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,16.9,9.6,64,88000,330,1325,366,105,26,98,11400,2300,10900,2480,220,4.7,10,9,32.2,2440,9,999999999,200,0.1460,0,88,999.000,999.0,99.0 +1979,7,28,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,8.9,65,88000,110,1325,359,21,4,20,2300,0,2300,710,260,5.2,10,9,32.2,2290,9,999999999,189,0.1460,0,88,999.000,999.0,99.0 +1979,7,28,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,14.7,9.1,70,88000,0,77,342,0,0,0,0,0,0,0,240,4.3,7,7,32.2,77777,9,999999999,189,0.1460,0,88,999.000,999.0,99.0 +1979,7,28,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,13.7,9.4,75,88000,0,0,328,0,0,0,0,0,0,0,220,3.5,5,4,32.2,77777,9,999999999,189,0.1460,0,88,999.000,999.0,99.0 +1979,7,28,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,12.8,9.4,80,88100,0,0,318,0,0,0,0,0,0,0,200,2.6,2,2,24.1,77777,9,999999999,189,0.1460,0,88,999.000,999.0,99.0 +1979,7,28,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,12.8,9.8,80,88100,0,0,322,0,0,0,0,0,0,0,230,2.2,3,3,24.1,77777,9,999999999,189,0.1460,0,88,999.000,999.0,99.0 +1979,7,29,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,12.8,9.7,80,88100,0,0,327,0,0,0,0,0,0,0,270,1.9,5,5,24.1,77777,9,999999999,189,0.1460,0,88,999.000,999.0,99.0 +1979,7,29,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,12.8,9.4,80,88100,0,0,329,0,0,0,0,0,0,0,300,1.5,6,6,24.1,2130,9,999999999,189,0.1460,0,88,999.000,999.0,99.0 +1979,7,29,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,12.8,9.8,80,88200,0,0,334,0,0,0,0,0,0,0,320,1.0,7,7,24.1,2130,9,999999999,189,0.1460,0,88,999.000,999.0,99.0 +1979,7,29,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,12.8,9.7,80,88200,0,0,339,0,0,0,0,0,0,0,340,0.5,9,8,24.1,2130,9,999999999,189,0.1460,0,88,999.000,999.0,99.0 +1979,7,29,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,12.8,9.4,80,88200,0,0,346,0,0,0,0,0,0,0,0,0.0,10,9,48.3,2130,9,999999999,189,0.1460,0,88,999.000,999.0,99.0 +1979,7,29,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,14.3,9.9,75,88200,80,1182,341,34,28,32,3700,1600,3600,710,360,0.7,8,7,48.3,77777,9,999999999,200,0.0430,0,88,999.000,999.0,99.0 +1979,7,29,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,15.7,10.3,70,88300,296,1325,338,119,122,91,12800,10000,10600,1970,360,1.4,5,4,48.3,77777,9,999999999,200,0.0430,0,88,999.000,999.0,99.0 +1979,7,29,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,10.6,65,88300,518,1325,340,311,547,96,32200,51500,12000,1870,360,2.1,3,2,64.4,77777,9,999999999,209,0.0430,0,88,999.000,999.0,99.0 +1979,7,29,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,19.1,10.3,58,88300,726,1325,348,522,800,82,55500,79600,11800,1910,20,2.6,2,2,64.4,77777,9,999999999,209,0.0430,0,88,999.000,999.0,99.0 +1979,7,29,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,20.9,9.8,50,88300,907,1325,352,663,880,59,69700,87900,9500,1800,50,3.1,2,1,64.4,77777,9,999999999,200,0.0430,0,88,999.000,999.0,99.0 +1979,7,29,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,9.4,43,88300,1046,1325,360,760,862,77,79300,86400,10900,2610,70,3.6,1,1,64.4,77777,9,999999999,189,0.0430,0,88,999.000,999.0,99.0 +1979,7,29,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.3,8.2,37,88200,1136,1325,371,817,818,113,84200,82000,13700,4110,10,3.6,2,2,64.4,77777,9,999999999,179,0.0430,0,88,999.000,999.0,99.0 +1979,7,29,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,25.7,7.0,32,88200,1169,1325,383,704,546,221,75000,55800,25700,10790,320,3.6,4,4,64.4,77777,9,999999999,170,0.0430,0,88,999.000,999.0,99.0 +1979,7,29,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,6.1,26,88100,1144,1325,393,803,671,221,85200,68400,26000,9900,260,3.6,5,5,64.4,77777,9,999999999,160,0.0430,0,88,999.000,999.0,99.0 +1979,7,29,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,27.6,4.7,24,88100,1062,1325,390,656,588,182,69900,60200,21600,6600,260,4.5,6,4,64.4,77777,9,999999999,150,0.0430,0,88,999.000,999.0,99.0 +1979,7,29,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,27.9,3.6,21,88000,929,1325,390,627,662,160,66400,67400,19100,4510,260,5.3,6,4,64.4,77777,9,999999999,139,0.0430,0,88,999.000,999.0,99.0 +1979,7,29,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,2.8,19,88000,753,1325,388,499,633,137,52200,63300,16200,3110,260,6.2,7,3,64.4,77777,9,999999999,129,0.0430,0,88,999.000,999.0,99.0 +1979,7,29,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,27.2,3.0,22,88000,548,1325,383,287,374,131,30200,36200,15200,2570,260,5.3,6,3,64.4,77777,9,999999999,129,0.0430,0,88,999.000,999.0,99.0 +1979,7,29,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,26.1,3.7,24,88000,326,1325,374,179,476,60,18300,39400,8600,1100,270,4.5,6,2,64.4,77777,9,999999999,139,0.0430,0,88,999.000,999.0,99.0 +1979,7,29,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,4.4,27,88000,106,1325,370,42,134,31,4300,6000,3800,560,270,3.6,5,2,64.4,77777,9,999999999,139,0.0430,0,88,999.000,999.0,99.0 +1979,7,29,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,23.0,5.0,32,88100,0,33,356,0,0,0,0,0,0,0,270,3.3,4,1,64.4,77777,9,999999999,150,0.0430,0,88,999.000,999.0,99.0 +1979,7,29,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,20.9,5.7,38,88100,0,0,347,0,0,0,0,0,0,0,270,2.9,3,1,64.4,77777,9,999999999,160,0.0430,0,88,999.000,999.0,99.0 +1979,7,29,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,18.9,6.1,43,88200,0,0,332,0,0,0,0,0,0,0,270,2.6,2,0,24.1,77777,9,999999999,160,0.0430,0,88,999.000,999.0,99.0 +1979,7,29,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,18.0,6.4,45,88200,0,0,334,0,0,0,0,0,0,0,260,3.1,3,1,24.1,77777,9,999999999,160,0.0430,0,88,999.000,999.0,99.0 +1979,7,30,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,17.0,6.1,48,88300,0,0,329,0,0,0,0,0,0,0,260,3.6,4,1,24.1,77777,9,999999999,150,0.0430,0,88,999.000,999.0,99.0 +1979,7,30,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,16.1,5.6,50,88300,0,0,329,0,0,0,0,0,0,0,250,4.1,5,2,24.1,77777,9,999999999,150,0.0430,0,88,999.000,999.0,99.0 +1979,7,30,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,15.7,7.1,56,88300,0,0,324,0,0,0,0,0,0,0,250,4.1,3,1,24.1,77777,9,999999999,160,0.0430,0,88,999.000,999.0,99.0 +1979,7,30,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,15.4,8.1,61,88400,0,0,324,0,0,0,0,0,0,0,260,4.1,2,1,24.1,77777,9,999999999,179,0.0430,0,88,999.000,999.0,99.0 +1979,7,30,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,15.0,8.9,67,88400,0,0,317,0,0,0,0,0,0,0,260,4.1,0,0,64.4,77777,9,999999999,189,0.0430,0,88,999.000,999.0,99.0 +1979,7,30,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,16.3,8.8,62,88400,77,1160,323,32,159,19,3100,7600,2600,340,290,3.8,0,0,64.4,77777,9,999999999,189,0.0790,0,88,999.000,999.0,99.0 +1979,7,30,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,17.6,8.6,56,88400,292,1325,328,159,535,41,16300,43800,6700,810,330,3.4,0,0,64.4,77777,9,999999999,189,0.0790,0,88,999.000,999.0,99.0 +1979,7,30,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,8.3,51,88500,515,1325,334,335,709,59,35300,67300,9200,1270,360,3.1,0,0,64.4,77777,9,999999999,179,0.0790,0,88,999.000,999.0,99.0 +1979,7,30,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,20.2,8.8,48,88400,723,1325,341,515,797,78,55000,79400,11600,1840,10,3.3,1,0,64.4,77777,9,999999999,189,0.0790,0,88,999.000,999.0,99.0 +1979,7,30,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,21.5,9.1,46,88400,904,1325,354,631,788,92,65500,78500,11900,2260,20,3.4,2,1,64.4,77777,9,999999999,189,0.0790,0,88,999.000,999.0,99.0 +1979,7,30,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,9.4,43,88400,1044,1325,360,744,823,94,77200,82400,12200,2930,30,3.6,3,1,64.4,77777,9,999999999,189,0.0790,0,88,999.000,999.0,99.0 +1979,7,30,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.8,8.4,37,88300,1133,1325,374,820,784,147,87200,79400,19200,6070,30,3.9,4,2,64.4,77777,9,999999999,189,0.0790,0,88,999.000,999.0,99.0 +1979,7,30,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,26.9,7.4,31,88300,1167,1325,387,740,604,206,79200,61900,24600,10010,40,4.3,4,3,64.4,77777,9,999999999,179,0.0790,0,88,999.000,999.0,99.0 +1979,7,30,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,6.7,25,88300,1142,1325,400,767,673,186,82500,69200,22800,8370,40,4.6,5,4,64.4,77777,9,999999999,170,0.0790,0,88,999.000,999.0,99.0 +1979,7,30,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,29.1,4.8,22,88200,1059,1325,395,757,749,156,79200,75300,18900,5130,40,4.4,4,3,64.4,77777,9,999999999,150,0.0790,0,88,999.000,999.0,99.0 +1979,7,30,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,29.2,3.1,20,88200,926,1325,393,664,726,153,70400,74000,18600,4310,50,4.3,3,3,64.4,77777,9,999999999,139,0.0790,0,88,999.000,999.0,99.0 +1979,7,30,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,1.7,17,88200,750,1325,389,516,733,98,53900,72700,12700,2200,50,4.1,2,2,64.4,77777,9,999999999,120,0.0790,0,88,999.000,999.0,99.0 +1979,7,30,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,27.2,3.6,25,88200,544,1325,375,337,633,75,35600,61000,10500,1540,30,3.6,1,1,64.4,77777,9,999999999,150,0.0790,0,88,999.000,999.0,99.0 +1979,7,30,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,25.0,5.9,32,88300,322,1325,367,176,531,46,18400,44300,7600,880,360,3.1,1,1,64.4,77777,9,999999999,170,0.0790,0,88,999.000,999.0,99.0 +1979,7,30,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,8.3,40,88300,102,1325,352,41,229,22,4000,11200,3200,390,340,2.6,0,0,64.4,77777,9,999999999,179,0.0790,0,88,999.000,999.0,99.0 +1979,7,30,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,21.7,7.8,41,88300,0,11,346,0,0,0,0,0,0,0,310,2.8,0,0,64.4,77777,9,999999999,179,0.0790,0,88,999.000,999.0,99.0 +1979,7,30,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,20.5,7.4,43,88400,0,0,340,0,0,0,0,0,0,0,280,2.9,0,0,64.4,77777,9,999999999,170,0.0790,0,88,999.000,999.0,99.0 +1979,7,30,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,19.4,6.7,44,88500,0,0,335,0,0,0,0,0,0,0,250,3.1,0,0,24.1,77777,9,999999999,160,0.0790,0,88,999.000,999.0,99.0 +1979,7,30,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,17.9,6.9,48,88500,0,0,328,0,0,0,0,0,0,0,240,2.8,0,0,24.1,77777,9,999999999,160,0.0790,0,88,999.000,999.0,99.0 +1979,7,31,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,16.5,6.6,52,88500,0,0,321,0,0,0,0,0,0,0,240,2.4,0,0,24.1,77777,9,999999999,160,0.0790,0,88,999.000,999.0,99.0 +1979,7,31,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,15.0,6.1,56,88600,0,0,314,0,0,0,0,0,0,0,230,2.1,0,0,24.1,77777,9,999999999,160,0.0790,0,88,999.000,999.0,99.0 +1979,7,31,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,14.1,6.7,59,88600,0,0,311,0,0,0,0,0,0,0,250,1.9,0,0,24.1,77777,9,999999999,160,0.0790,0,88,999.000,999.0,99.0 +1979,7,31,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,13.1,6.5,61,88600,0,0,306,0,0,0,0,0,0,0,270,1.7,0,0,24.1,77777,9,999999999,150,0.0790,0,88,999.000,999.0,99.0 +1979,7,31,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,12.2,5.6,64,88600,0,0,302,0,0,0,0,0,0,0,290,1.5,0,0,64.4,77777,9,999999999,150,0.0790,0,88,999.000,999.0,99.0 +1979,7,31,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,13.9,6.5,60,88600,73,1138,310,34,204,17,3200,9700,2500,310,330,1.7,0,0,64.4,77777,9,999999999,160,0.0580,0,88,999.000,999.0,99.0 +1979,7,31,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,15.5,7.1,56,88600,289,1326,317,163,585,35,16900,48100,6500,730,360,1.9,0,0,64.4,77777,9,999999999,160,0.0580,0,88,999.000,999.0,99.0 +1979,7,31,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,7.2,52,88600,511,1326,325,344,760,50,36200,71600,8500,1190,40,2.1,0,0,64.4,77777,9,999999999,170,0.0580,0,88,999.000,999.0,99.0 +1979,7,31,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,19.6,8.8,48,88600,720,1326,338,523,842,64,54800,82700,9800,1590,40,2.3,0,0,64.4,77777,9,999999999,179,0.0580,0,88,999.000,999.0,99.0 +1979,7,31,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,22.0,9.6,44,88500,901,1326,350,681,888,75,71100,88500,10800,2060,50,2.4,0,0,64.4,77777,9,999999999,189,0.0580,0,88,999.000,999.0,99.0 +1979,7,31,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,10.0,40,88500,1041,1326,362,803,914,83,83600,91600,11500,2710,50,2.6,0,0,64.4,77777,9,999999999,200,0.0580,0,88,999.000,999.0,99.0 +1979,7,31,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,26.5,9.5,34,88400,1131,1326,372,888,934,88,92200,93800,12000,3460,60,3.3,0,0,64.4,77777,9,999999999,189,0.0580,0,88,999.000,999.0,99.0 +1979,7,31,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,28.5,8.2,28,88400,1164,1326,380,922,944,90,95700,94800,12200,3880,70,3.9,0,0,64.4,77777,9,999999999,179,0.0580,0,88,999.000,999.0,99.0 +1979,7,31,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,6.7,22,88300,1139,1326,389,902,943,89,93600,94700,12100,3560,80,4.6,0,0,64.4,77777,9,999999999,160,0.0580,0,88,999.000,999.0,99.0 +1979,7,31,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,31.5,6.0,20,88200,1057,1326,392,831,932,84,86300,93400,11700,2810,30,4.4,0,0,64.4,77777,9,999999999,150,0.0580,0,88,999.000,999.0,99.0 +1979,7,31,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,32.4,5.2,18,88200,923,1326,396,709,904,77,73900,90200,11000,2150,330,4.3,0,0,64.4,77777,9,999999999,150,0.0580,0,88,999.000,999.0,99.0 +1979,7,31,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,4.4,16,88100,747,1326,400,555,862,66,57900,84900,10000,1650,280,4.1,0,0,64.4,77777,9,999999999,139,0.0580,0,88,999.000,999.0,99.0 +1979,7,31,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,30.9,3.4,17,88100,540,1326,386,375,785,52,39200,74600,8800,1240,280,3.6,0,0,64.4,77777,9,999999999,129,0.0580,0,88,999.000,999.0,99.0 +1979,7,31,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,28.5,2.6,19,88100,318,1326,373,192,633,37,19800,53700,6900,780,280,3.1,0,0,64.4,77777,9,999999999,129,0.0580,0,88,999.000,999.0,99.0 +1979,7,31,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,1.1,20,88100,98,1315,359,44,289,19,4300,14600,3100,350,280,2.6,0,0,64.4,77777,9,999999999,120,0.0580,0,88,999.000,999.0,99.0 +1979,7,31,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,24.4,1.5,22,88200,0,0,352,0,0,0,0,0,0,0,270,3.3,0,0,64.4,77777,9,999999999,120,0.0580,0,88,999.000,999.0,99.0 +1979,7,31,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,22.8,2.4,24,88200,0,0,345,0,0,0,0,0,0,0,260,3.5,0,0,64.4,77777,9,999999999,120,0.0580,0,88,999.000,999.0,99.0 +1979,7,31,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,21.2,3.2,26,88300,0,0,339,0,0,0,0,0,0,0,250,3.6,0,0,24.1,77777,9,999999999,110,0.0580,0,88,999.000,999.0,99.0 +1979,7,31,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,19.6,4.1,26,88300,0,0,332,0,0,0,0,0,0,0,240,3.8,0,0,24.1,77777,9,999999999,110,0.0580,0,88,999.000,999.0,99.0 +1978,8,1,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,18.1,4.9,54,88300,0,0,337,0,0,0,0,0,0,0,280,4.0,2,2,24.1,77777,9,999999999,170,0.0580,0,88,999.000,999.0,99.0 +1978,8,1,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,16.5,5.8,56,88300,0,0,331,0,0,0,0,0,0,0,270,4.2,2,2,24.1,77777,9,999999999,160,0.0580,0,88,999.000,999.0,99.0 +1978,8,1,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,14.9,6.6,60,88300,0,0,325,0,0,0,0,0,0,0,270,4.3,2,2,24.1,77777,9,999999999,160,0.0580,0,88,999.000,999.0,99.0 +1978,8,1,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,13.3,7.5,65,88300,0,0,319,0,0,0,0,0,0,0,270,4.5,2,2,24.1,77777,9,999999999,160,0.0580,0,88,999.000,999.0,99.0 +1978,8,1,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,12.2,6.7,69,88300,0,0,313,0,0,0,0,0,0,0,270,4.1,2,2,48.3,77777,9,999999999,160,0.0580,0,88,999.000,999.0,99.0 +1978,8,1,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,13.9,7.2,63,88300,69,1116,317,36,240,16,3300,11300,2600,290,310,3.4,1,1,48.3,77777,9,999999999,170,0.0280,0,88,999.000,999.0,99.0 +1978,8,1,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,15.5,7.5,58,88300,284,1326,324,166,655,25,17600,54400,5900,680,350,2.8,1,1,48.3,77777,9,999999999,170,0.0280,0,88,999.000,999.0,99.0 +1978,8,1,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,7.2,52,88300,507,1326,325,351,818,36,37200,77200,7600,1010,30,2.1,0,0,64.4,77777,9,999999999,170,0.0280,0,88,999.000,999.0,99.0 +1978,8,1,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,18.9,7.4,46,88300,717,1326,344,466,640,119,49100,63900,14600,2660,30,2.3,3,2,64.4,77777,9,999999999,170,0.0280,0,88,999.000,999.0,99.0 +1978,8,1,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,20.5,6.7,40,88300,898,1326,354,655,804,108,69500,81000,14600,2860,40,2.4,5,3,64.4,77777,9,999999999,160,0.0280,0,88,999.000,999.0,99.0 +1978,8,1,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,5.6,34,88300,1038,1326,367,752,756,158,78300,75800,18800,4890,40,2.6,8,5,64.4,6710,9,999999999,150,0.0280,0,88,999.000,999.0,99.0 +1978,8,1,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,23.3,6.0,32,88200,1128,1326,373,822,760,173,85800,76300,20700,6740,70,2.6,7,5,64.4,77777,9,999999999,150,0.0280,0,88,999.000,999.0,99.0 +1978,8,1,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.5,5.6,29,88100,1161,1326,378,749,612,210,79900,62600,24900,9980,100,2.6,6,5,64.4,77777,9,999999999,150,0.0280,0,88,999.000,999.0,99.0 +1978,8,1,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,5.0,27,88100,1136,1326,383,836,835,117,85900,83700,14100,4180,130,2.6,5,5,64.4,77777,9,999999999,150,0.0280,0,88,999.000,999.0,99.0 +1978,8,1,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.3,6.6,33,88100,1053,1326,382,612,514,202,64800,52300,23100,7090,90,4.8,6,6,64.4,77777,9,999999999,170,0.0280,0,88,999.000,999.0,99.0 +1978,8,1,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,23.0,7.9,40,88200,919,1326,377,502,362,249,54900,39000,27800,6870,40,7.1,7,6,64.4,77777,9,999999999,179,0.0280,0,88,999.000,999.0,99.0 +1978,8,1,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,9.4,46,88300,743,1326,377,324,149,240,35400,15500,26700,6260,360,9.3,8,7,64.4,2130,9,999999999,189,0.0280,0,88,999.000,999.0,99.0 +1978,8,1,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,19.7,9.1,51,88400,536,1326,372,252,179,179,27300,17600,20100,4200,360,8.4,8,8,64.4,1723,9,999999999,189,0.0280,0,88,999.000,999.0,99.0 +1978,8,1,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,17.6,9.0,57,88500,313,1326,361,104,38,95,11400,3300,10600,2370,350,7.6,9,8,64.4,1317,9,999999999,189,0.0280,0,88,999.000,999.0,99.0 +1978,8,1,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,8.3,62,88600,93,1271,358,22,6,22,2500,0,2500,750,350,6.7,9,9,40.2,910,9,999999999,179,0.0280,0,88,999.000,999.0,99.0 +1978,8,1,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,15.2,8.7,63,88700,0,0,357,0,0,0,0,0,0,0,350,6.2,9,9,40.2,890,9,999999999,179,0.0280,0,88,999.000,999.0,99.0 +1978,8,1,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,14.8,8.5,64,88700,0,0,365,0,0,0,0,0,0,0,340,5.7,10,10,40.2,870,9,999999999,179,0.0280,0,88,999.000,999.0,99.0 +1978,8,1,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,14.4,7.8,65,88800,0,0,362,0,0,0,0,0,0,0,340,5.2,10,10,24.1,850,9,999999999,179,0.0280,0,88,999.000,999.0,99.0 +1978,8,1,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,13.5,7.9,65,88900,0,0,357,0,0,0,0,0,0,0,340,5.4,10,10,24.1,850,9,999999999,170,0.0280,0,88,999.000,999.0,99.0 +1978,8,2,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,12.6,7.1,66,88900,0,0,352,0,0,0,0,0,0,0,340,5.5,10,10,24.1,850,9,999999999,160,0.0280,0,88,999.000,999.0,99.0 +1978,8,2,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,11.7,5.6,66,89000,0,0,346,0,0,0,0,0,0,0,340,5.7,10,10,24.1,850,9,999999999,150,0.0280,0,88,999.000,999.0,99.0 +1978,8,2,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,11.5,5.8,64,89000,0,0,345,0,0,0,0,0,0,0,320,5.5,10,10,24.1,893,9,999999999,150,0.0280,0,88,999.000,999.0,99.0 +1978,8,2,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,11.3,5.2,63,89000,0,0,343,0,0,0,0,0,0,0,310,5.4,10,10,24.1,937,9,999999999,139,0.0280,0,88,999.000,999.0,99.0 +1978,8,2,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,11.1,3.9,61,89000,0,0,341,0,0,0,0,0,0,0,290,5.2,10,10,24.1,980,9,999999999,139,0.0280,0,88,999.000,999.0,99.0 +1978,8,2,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,11.5,4.2,60,89100,66,1072,327,31,55,26,3200,2400,3100,540,310,4.5,9,8,24.1,1363,9,999999999,139,0.0470,0,88,999.000,999.0,99.0 +1978,8,2,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,11.8,4.4,58,89100,280,1326,323,96,93,76,10400,7400,8900,1640,330,3.8,7,7,24.1,1747,9,999999999,139,0.0470,0,88,999.000,999.0,99.0 +1978,8,2,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,3.9,57,89100,504,1326,318,179,187,108,19500,18300,12600,2110,350,3.1,6,5,48.3,2130,9,999999999,139,0.0470,0,88,999.000,999.0,99.0 +1978,8,2,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,13.1,4.6,54,89100,714,1326,325,390,385,181,41200,39000,20200,3960,350,2.1,7,6,48.3,1827,9,999999999,139,0.0470,0,88,999.000,999.0,99.0 +1978,8,2,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,14.1,4.5,51,89100,895,1326,334,449,287,255,49000,30900,28100,6890,360,1.0,8,7,48.3,1523,9,999999999,139,0.0470,0,88,999.000,999.0,99.0 +1978,8,2,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,3.9,48,89100,1035,1326,343,399,138,291,44400,14800,32800,10040,0,0.0,9,8,48.3,1220,9,999999999,139,0.0470,0,88,999.000,999.0,99.0 +1978,8,2,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,16.7,4.8,45,89000,1125,1326,339,690,540,230,72900,54900,26300,9660,340,1.0,6,5,48.3,77777,9,999999999,139,0.0470,0,88,999.000,999.0,99.0 +1978,8,2,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,18.3,5.0,41,89000,1159,1326,342,856,804,150,91000,81400,19700,6700,330,2.1,3,3,48.3,77777,9,999999999,150,0.0470,0,88,999.000,999.0,99.0 +1978,8,2,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,5.0,38,88900,1133,1326,335,875,926,80,91000,93000,11400,3250,310,3.1,0,0,48.3,77777,9,999999999,150,0.0470,0,88,999.000,999.0,99.0 +1978,8,2,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,20.6,5.5,38,88900,1050,1326,339,827,942,76,86000,94500,11100,2600,310,3.1,0,0,48.3,77777,9,999999999,150,0.0470,0,88,999.000,999.0,99.0 +1978,8,2,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,21.1,5.7,37,88900,916,1326,341,691,895,69,72100,89300,10300,2000,310,3.1,0,0,48.3,77777,9,999999999,160,0.0470,0,88,999.000,999.0,99.0 +1978,8,2,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,6.1,37,88800,739,1326,344,548,867,60,57200,85400,9500,1560,310,3.1,0,0,64.4,77777,9,999999999,160,0.0470,0,88,999.000,999.0,99.0 +1978,8,2,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,19.8,6.6,43,88800,532,1326,336,370,795,47,38700,75400,8400,1180,310,2.9,0,0,64.4,77777,9,999999999,170,0.0470,0,88,999.000,999.0,99.0 +1978,8,2,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,18.0,7.2,50,88900,309,1326,329,186,642,33,19300,54400,6600,790,310,2.8,0,0,64.4,77777,9,999999999,170,0.0470,0,88,999.000,999.0,99.0 +1978,8,2,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,7.2,56,88900,89,1249,320,43,299,17,4000,16700,2700,330,310,2.6,0,0,64.4,77777,9,999999999,170,0.0470,0,88,999.000,999.0,99.0 +1978,8,2,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,15.5,7.2,56,88900,0,0,318,0,0,0,0,0,0,0,310,3.1,0,0,64.4,77777,9,999999999,160,0.0470,0,88,999.000,999.0,99.0 +1978,8,2,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,15.0,6.7,55,88900,0,0,315,0,0,0,0,0,0,0,310,3.6,0,0,64.4,77777,9,999999999,160,0.0470,0,88,999.000,999.0,99.0 +1978,8,2,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,14.4,5.6,55,89000,0,0,311,0,0,0,0,0,0,0,310,4.1,0,0,24.1,77777,9,999999999,150,0.0470,0,88,999.000,999.0,99.0 +1978,8,2,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,13.5,6.4,59,89000,0,0,314,0,0,0,0,0,0,0,310,3.9,1,1,24.1,77777,9,999999999,150,0.0470,0,88,999.000,999.0,99.0 +1978,8,3,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,12.6,6.4,62,89000,0,0,310,0,0,0,0,0,0,0,310,3.8,1,1,24.1,77777,9,999999999,150,0.0470,0,88,999.000,999.0,99.0 +1978,8,3,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,11.7,5.6,66,89000,0,0,309,0,0,0,0,0,0,0,310,3.6,2,2,24.1,77777,9,999999999,150,0.0470,0,88,999.000,999.0,99.0 +1978,8,3,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,10.8,5.9,69,89000,0,0,302,0,0,0,0,0,0,0,310,2.9,1,1,24.1,77777,9,999999999,150,0.0470,0,88,999.000,999.0,99.0 +1978,8,3,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,9.8,5.6,71,89000,0,0,297,0,0,0,0,0,0,0,310,2.2,1,1,24.1,77777,9,999999999,150,0.0470,0,88,999.000,999.0,99.0 +1978,8,3,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,8.9,4.4,74,89000,0,0,287,0,0,0,0,0,0,0,310,1.5,0,0,48.3,77777,9,999999999,139,0.0470,0,88,999.000,999.0,99.0 +1978,8,3,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,10.7,5.3,69,89000,63,1050,295,26,98,18,2600,3900,2300,310,330,1.0,0,0,48.3,77777,9,999999999,150,0.1010,0,88,999.000,999.0,99.0 +1978,8,3,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,12.6,6.0,63,89100,277,1327,304,144,473,45,14900,37100,7200,840,340,0.5,0,0,48.3,77777,9,999999999,160,0.1010,0,88,999.000,999.0,99.0 +1978,8,3,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,6.1,58,89100,500,1327,312,323,675,67,33400,63300,9500,1350,0,0.0,0,0,64.4,77777,9,999999999,160,0.1010,0,88,999.000,999.0,99.0 +1978,8,3,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,16.3,7.0,53,89100,710,1327,321,506,779,87,53300,77100,11900,1950,340,0.9,0,0,64.4,77777,9,999999999,160,0.1010,0,88,999.000,999.0,99.0 +1978,8,3,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,18.1,7.1,47,89000,892,1327,329,669,839,102,71400,84700,14300,2730,330,1.7,0,0,64.4,77777,9,999999999,160,0.1010,0,88,999.000,999.0,99.0 +1978,8,3,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,6.7,42,89000,1033,1327,337,796,875,113,82100,87500,13900,3100,310,2.6,0,0,64.4,77777,9,999999999,160,0.1010,0,88,999.000,999.0,99.0 +1978,8,3,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,21.7,5.4,35,89000,1123,1327,344,880,895,119,90500,89600,14500,4040,310,2.6,0,0,64.4,77777,9,999999999,150,0.1010,0,88,999.000,999.0,99.0 +1978,8,3,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,23.3,3.4,28,88900,1156,1327,349,913,905,121,93800,90700,14600,4550,310,2.6,0,0,64.4,77777,9,999999999,139,0.1010,0,88,999.000,999.0,99.0 +1978,8,3,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,1.1,21,88900,1130,1327,354,894,905,120,92000,90600,14600,4160,310,2.6,0,0,64.4,77777,9,999999999,120,0.1010,0,88,999.000,999.0,99.0 +1978,8,3,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,25.7,0.5,19,88800,1047,1327,357,821,890,114,84400,89000,14000,3220,310,2.9,0,0,64.4,77777,9,999999999,110,0.1010,0,88,999.000,999.0,99.0 +1978,8,3,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,26.5,-0.4,18,88800,913,1327,359,697,857,104,71900,85300,13100,2370,310,3.3,0,0,64.4,77777,9,999999999,110,0.1010,0,88,999.000,999.0,99.0 +1978,8,3,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,-1.1,16,88700,735,1327,362,539,805,89,56700,80000,12300,2040,310,3.6,0,0,64.4,77777,9,999999999,100,0.1010,0,88,999.000,999.0,99.0 +1978,8,3,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,25.0,0.3,21,88700,528,1327,353,353,703,70,36400,66600,9900,1420,310,3.1,0,0,64.4,77777,9,999999999,120,0.1010,0,88,999.000,999.0,99.0 +1978,8,3,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,22.8,1.9,26,88700,305,1327,345,170,517,49,17400,42000,7800,920,310,2.6,0,0,64.4,77777,9,999999999,129,0.1010,0,88,999.000,999.0,99.0 +1978,8,3,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,2.8,31,88600,85,1205,336,36,155,22,3500,6600,3000,390,310,2.1,0,0,48.3,77777,9,999999999,129,0.1010,0,88,999.000,999.0,99.0 +1978,8,3,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,18.9,2.2,32,88600,0,0,327,0,0,0,0,0,0,0,310,2.6,0,0,48.3,77777,9,999999999,120,0.1010,0,88,999.000,999.0,99.0 +1978,8,3,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,17.3,1.1,33,88700,0,0,319,0,0,0,0,0,0,0,310,3.1,0,0,48.3,77777,9,999999999,120,0.1010,0,88,999.000,999.0,99.0 +1978,8,3,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,15.6,-0.6,34,88700,0,0,310,0,0,0,0,0,0,0,310,3.6,0,0,24.1,77777,9,999999999,110,0.1010,0,88,999.000,999.0,99.0 +1978,8,3,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,14.3,0.6,38,88700,0,0,305,0,0,0,0,0,0,0,330,2.4,0,0,24.1,77777,9,999999999,110,0.1010,0,88,999.000,999.0,99.0 +1978,8,4,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,13.0,1.0,43,88700,0,0,300,0,0,0,0,0,0,0,340,1.2,0,0,24.1,77777,9,999999999,110,0.1010,0,88,999.000,999.0,99.0 +1978,8,4,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,11.7,0.6,47,88700,0,0,294,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,110,0.1010,0,88,999.000,999.0,99.0 +1978,8,4,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,10.9,1.7,51,88800,0,0,292,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,120,0.1010,0,88,999.000,999.0,99.0 +1978,8,4,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,10.2,2.1,55,88800,0,0,290,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,120,0.1010,0,88,999.000,999.0,99.0 +1978,8,4,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,9.4,1.7,59,88800,0,0,286,0,0,0,0,0,0,0,0,0.0,0,0,64.4,77777,9,999999999,120,0.1010,0,88,999.000,999.0,99.0 +1978,8,4,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,11.1,3.3,58,88800,60,1029,295,33,230,13,2800,12300,2000,270,340,0.5,0,0,64.4,77777,9,999999999,129,0.0370,0,88,999.000,999.0,99.0 +1978,8,4,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,12.7,4.8,56,88800,273,1327,303,160,639,28,16900,52500,6100,700,330,1.0,0,0,64.4,77777,9,999999999,139,0.0370,0,88,999.000,999.0,99.0 +1978,8,4,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,5.6,55,88800,497,1327,311,340,798,40,36000,74900,7900,1060,310,1.5,0,0,64.4,77777,9,999999999,150,0.0370,0,88,999.000,999.0,99.0 +1978,8,4,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,16.8,3.9,44,88800,707,1327,320,521,871,55,54800,85500,9200,1460,310,1.9,1,0,64.4,77777,9,999999999,139,0.0370,0,88,999.000,999.0,99.0 +1978,8,4,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,19.3,1.3,32,88800,889,1327,334,655,886,59,68800,88400,9500,1760,310,2.2,1,1,64.4,77777,9,999999999,129,0.0370,0,88,999.000,999.0,99.0 +1978,8,4,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,-1.7,21,88700,1030,1327,342,751,870,73,78400,87200,10600,2440,310,2.6,2,1,48.3,77777,9,999999999,100,0.0370,0,88,999.000,999.0,99.0 +1978,8,4,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.5,1.5,21,88700,1120,1327,364,828,842,115,85300,84300,14000,3930,310,3.1,3,2,48.3,77777,9,999999999,120,0.0370,0,88,999.000,999.0,99.0 +1978,8,4,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,27.2,3.9,22,88600,1153,1327,380,852,794,159,90000,80200,20200,6870,310,3.6,4,2,48.3,77777,9,999999999,129,0.0370,0,88,999.000,999.0,99.0 +1978,8,4,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,6.1,22,88500,1128,1327,402,725,622,194,77500,63800,23200,8300,310,4.1,5,3,48.3,77777,9,999999999,160,0.0370,0,88,999.000,999.0,99.0 +1978,8,4,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,30.7,5.6,20,88500,1044,1327,401,672,646,161,72100,66400,19800,5640,350,3.4,4,2,48.3,77777,9,999999999,150,0.0370,0,88,999.000,999.0,99.0 +1978,8,4,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,31.5,5.0,19,88400,909,1327,404,639,708,150,67700,72100,18200,4120,40,2.8,4,2,48.3,77777,9,999999999,150,0.0370,0,88,999.000,999.0,99.0 +1978,8,4,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,4.4,17,88400,732,1327,401,505,798,60,52700,78500,9300,1550,80,2.1,3,1,64.4,77777,9,999999999,139,0.0370,0,88,999.000,999.0,99.0 +1978,8,4,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,30.0,5.4,22,88400,524,1327,391,285,536,71,30000,51300,9800,1450,30,2.3,3,1,64.4,77777,9,999999999,150,0.0370,0,88,999.000,999.0,99.0 +1978,8,4,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,27.8,6.6,26,88400,300,1327,387,150,417,53,15200,33500,7600,980,330,2.4,2,2,64.4,77777,9,999999999,160,0.0370,0,88,999.000,999.0,99.0 +1978,8,4,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,7.2,31,88400,81,1183,376,40,197,24,3800,9200,3200,410,280,2.6,2,2,64.4,77777,9,999999999,170,0.0370,0,88,999.000,999.0,99.0 +1978,8,4,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,23.0,7.2,36,88400,0,0,359,0,0,0,0,0,0,0,230,2.2,2,1,64.4,77777,9,999999999,170,0.0370,0,88,999.000,999.0,99.0 +1978,8,4,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,20.4,6.7,40,88400,0,0,346,0,0,0,0,0,0,0,170,1.9,1,1,64.4,77777,9,999999999,160,0.0370,0,88,999.000,999.0,99.0 +1978,8,4,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,17.8,5.6,45,88400,0,0,326,0,0,0,0,0,0,0,120,1.5,1,0,24.1,77777,9,999999999,150,0.0370,0,88,999.000,999.0,99.0 +1978,8,4,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,16.9,6.4,48,88400,0,0,323,0,0,0,0,0,0,0,130,1.7,1,0,24.1,77777,9,999999999,150,0.0370,0,88,999.000,999.0,99.0 +1978,8,5,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,15.9,6.4,51,88400,0,0,318,0,0,0,0,0,0,0,150,1.9,0,0,24.1,77777,9,999999999,150,0.0370,0,88,999.000,999.0,99.0 +1978,8,5,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,15.0,5.6,54,88500,0,0,314,0,0,0,0,0,0,0,160,2.1,0,0,24.1,77777,9,999999999,150,0.0370,0,88,999.000,999.0,99.0 +1978,8,5,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,14.3,6.3,57,88500,0,0,317,0,0,0,0,0,0,0,160,2.3,1,1,24.1,77777,9,999999999,150,0.0370,0,88,999.000,999.0,99.0 +1978,8,5,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,13.5,6.4,59,88500,0,0,318,0,0,0,0,0,0,0,160,2.4,3,2,24.1,77777,9,999999999,150,0.0370,0,88,999.000,999.0,99.0 +1978,8,5,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,12.8,5.6,62,88500,0,0,317,0,0,0,0,0,0,0,160,2.6,4,3,48.3,77777,9,999999999,150,0.0370,0,88,999.000,999.0,99.0 +1978,8,5,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,13.9,6.3,59,88600,57,1007,328,18,27,16,2000,1200,1900,330,190,2.6,6,5,48.3,77777,9,999999999,160,0.1020,0,88,999.000,999.0,99.0 +1978,8,5,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,15.0,6.8,57,88600,269,1327,346,82,56,71,9000,4600,8100,1790,220,2.6,8,8,48.3,77777,9,999999999,160,0.1020,0,88,999.000,999.0,99.0 +1978,8,5,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,6.7,54,88700,493,1327,369,123,8,120,14000,500,13800,4710,250,2.6,10,10,48.3,3660,9,999999999,160,0.1020,0,88,999.000,999.0,99.0 +1978,8,5,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,18.0,8.1,51,88700,704,1327,362,267,126,200,29400,13100,22400,5090,300,2.6,8,8,48.3,77777,9,999999999,170,0.1020,0,88,999.000,999.0,99.0 +1978,8,5,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,19.8,8.7,47,88700,886,1327,359,557,539,196,60300,55900,22900,5090,340,2.6,5,5,48.3,77777,9,999999999,179,0.1020,0,88,999.000,999.0,99.0 +1978,8,5,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,8.9,44,88700,1027,1327,363,779,790,164,80500,79000,19300,4870,30,2.6,3,3,48.3,77777,9,999999999,189,0.1020,0,88,999.000,999.0,99.0 +1978,8,5,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,25.4,9.5,37,88600,1117,1327,378,833,785,169,87000,78900,20400,6380,20,1.7,2,2,48.3,77777,9,999999999,200,0.1020,0,88,999.000,999.0,99.0 +1978,8,5,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,29.1,9.3,30,88500,1151,1327,397,837,803,138,89700,81600,18900,6070,10,0.9,2,2,48.3,77777,9,999999999,200,0.1020,0,88,999.000,999.0,99.0 +1978,8,5,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,8.9,23,88400,1125,1327,411,827,837,114,85100,83900,13900,3970,0,0.0,1,1,64.4,77777,9,999999999,189,0.1020,0,88,999.000,999.0,99.0 +1978,8,5,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,32.8,8.4,22,88400,1041,1327,416,736,789,113,75700,78900,13700,3160,20,0.9,3,2,64.4,77777,9,999999999,179,0.1020,0,88,999.000,999.0,99.0 +1978,8,5,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,32.8,7.8,21,88300,906,1327,422,562,493,222,60000,51100,25100,5980,30,1.7,4,4,64.4,77777,9,999999999,170,0.1020,0,88,999.000,999.0,99.0 +1978,8,5,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,7.2,20,88300,728,1327,425,402,322,223,43000,33800,24400,5250,50,2.6,6,5,64.4,7620,9,999999999,170,0.1020,0,88,999.000,999.0,99.0 +1978,8,5,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,30.9,7.3,23,88300,520,1327,411,275,348,137,28600,33200,15600,2690,350,2.4,5,4,64.4,77777,9,999999999,170,0.1020,0,88,999.000,999.0,99.0 +1978,8,5,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,29.1,7.6,25,88300,295,1327,399,143,355,62,14900,28000,8700,1110,300,2.3,3,3,64.4,77777,9,999999999,170,0.1020,0,88,999.000,999.0,99.0 +1978,8,5,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,7.2,28,88300,76,1162,385,31,81,24,3100,3000,2900,430,240,2.1,2,2,64.4,77777,9,999999999,170,0.1020,0,88,999.000,999.0,99.0 +1978,8,5,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,25.0,7.9,33,88400,0,0,369,0,0,0,0,0,0,0,190,2.4,1,1,64.4,77777,9,999999999,170,0.1020,0,88,999.000,999.0,99.0 +1978,8,5,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,22.8,8.1,39,88400,0,0,359,0,0,0,0,0,0,0,150,2.8,1,1,64.4,77777,9,999999999,179,0.1020,0,88,999.000,999.0,99.0 +1978,8,5,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,20.6,7.8,44,88500,0,0,341,0,0,0,0,0,0,0,100,3.1,0,0,24.1,77777,9,999999999,179,0.1020,0,88,999.000,999.0,99.0 +1978,8,5,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,19.3,8.1,46,88500,0,0,336,0,0,0,0,0,0,0,140,2.9,0,0,24.1,77777,9,999999999,170,0.1020,0,88,999.000,999.0,99.0 +1978,8,6,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,18.0,7.5,48,88600,0,0,329,0,0,0,0,0,0,0,180,2.8,0,0,24.1,77777,9,999999999,160,0.1020,0,88,999.000,999.0,99.0 +1978,8,6,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,16.7,6.1,50,88600,0,0,322,0,0,0,0,0,0,0,220,2.6,0,0,24.1,77777,9,999999999,160,0.1020,0,88,999.000,999.0,99.0 +1978,8,6,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,15.6,7.0,55,88600,0,0,318,0,0,0,0,0,0,0,270,1.7,0,0,24.1,77777,9,999999999,160,0.1020,0,88,999.000,999.0,99.0 +1978,8,6,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,14.4,7.3,59,88600,0,0,313,0,0,0,0,0,0,0,310,0.9,0,0,24.1,77777,9,999999999,160,0.1020,0,88,999.000,999.0,99.0 +1978,8,6,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,13.3,6.7,64,88700,0,0,307,0,0,0,0,0,0,0,0,0.0,0,0,64.4,77777,9,999999999,160,0.1020,0,88,999.000,999.0,99.0 +1978,8,6,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,15.2,7.6,60,88700,54,963,317,31,229,12,2600,12100,1900,250,0,0.0,0,0,64.4,77777,9,999999999,170,0.0310,0,88,999.000,999.0,99.0 +1978,8,6,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,17.0,8.2,55,88700,265,1328,325,153,633,25,16100,51600,5800,660,0,0.0,0,0,64.4,77777,9,999999999,179,0.0310,0,88,999.000,999.0,99.0 +1978,8,6,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,8.3,51,88800,490,1328,334,331,795,37,35100,74500,7600,1010,0,0.0,0,0,64.4,77777,9,999999999,179,0.0310,0,88,999.000,999.0,99.0 +1978,8,6,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,22.8,8.8,42,88700,701,1328,360,473,801,48,49900,78600,8300,1340,330,1.7,1,1,64.4,77777,9,999999999,189,0.0310,0,88,999.000,999.0,99.0 +1978,8,6,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,26.7,8.5,33,88700,883,1328,379,630,875,46,66700,87400,8500,1470,290,3.5,1,1,64.4,77777,9,999999999,189,0.0310,0,88,999.000,999.0,99.0 +1978,8,6,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,7.8,24,88700,1024,1328,403,729,798,111,75200,79700,13500,3020,260,5.2,2,2,64.4,77777,9,999999999,170,0.0310,0,88,999.000,999.0,99.0 +1978,8,6,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,31.7,6.3,20,88600,1115,1328,407,811,817,123,83400,81800,14600,3990,270,6.0,3,2,64.4,77777,9,999999999,160,0.0310,0,88,999.000,999.0,99.0 +1978,8,6,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,32.8,4.1,17,88600,1148,1328,414,493,407,139,54000,42300,17400,6440,270,6.9,5,3,64.4,77777,9,999999999,139,0.0310,0,88,999.000,999.0,99.0 +1978,8,6,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.9,1.7,13,88500,1122,1328,416,690,590,189,73800,60500,22600,7950,280,7.7,6,3,64.4,77777,9,999999999,120,0.0310,0,88,999.000,999.0,99.0 +1978,8,6,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,33.2,1.8,14,88500,1038,1328,413,712,653,198,75200,66500,23100,6700,290,8.6,6,3,64.4,77777,9,999999999,120,0.0310,0,88,999.000,999.0,99.0 +1978,8,6,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,32.4,1.7,14,88400,902,1328,404,628,766,104,66900,77300,14200,2800,300,9.4,5,2,64.4,77777,9,999999999,120,0.0310,0,88,999.000,999.0,99.0 +1978,8,6,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,1.7,15,88400,724,1328,401,477,714,84,50300,71000,11600,1940,310,10.3,5,2,64.4,77777,9,999999999,120,0.0310,0,88,999.000,999.0,99.0 +1978,8,6,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,29.7,1.4,16,88400,515,1328,390,320,620,76,33400,58900,10500,1530,300,8.2,6,2,64.4,77777,9,999999999,120,0.0310,0,88,999.000,999.0,99.0 +1978,8,6,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,27.6,1.3,18,88500,291,1328,383,146,324,73,15000,25300,9400,1340,280,6.2,7,3,64.4,77777,9,999999999,120,0.0310,0,88,999.000,999.0,99.0 +1978,8,6,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,0.6,19,88500,72,1118,372,31,69,25,3100,2500,3000,450,270,4.1,8,3,64.4,77777,9,999999999,110,0.0310,0,88,999.000,999.0,99.0 +1978,8,6,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,25.2,1.7,20,88500,0,0,371,0,0,0,0,0,0,0,270,4.5,7,3,64.4,77777,9,999999999,120,0.0310,0,88,999.000,999.0,99.0 +1978,8,6,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,24.8,2.2,22,88600,0,0,370,0,0,0,0,0,0,0,280,4.8,7,3,64.4,77777,9,999999999,120,0.0310,0,88,999.000,999.0,99.0 +1978,8,6,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,24.4,2.2,23,88600,0,0,368,0,0,0,0,0,0,0,280,5.2,6,3,24.1,77777,9,999999999,120,0.0310,0,88,999.000,999.0,99.0 +1978,8,6,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,23.7,3.4,25,88600,0,0,362,0,0,0,0,0,0,0,310,3.5,4,2,24.1,77777,9,999999999,129,0.0310,0,88,999.000,999.0,99.0 +1978,8,7,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,22.9,3.7,27,88600,0,0,354,0,0,0,0,0,0,0,330,1.7,2,1,24.1,77777,9,999999999,129,0.0310,0,88,999.000,999.0,99.0 +1978,8,7,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,22.2,3.3,29,88700,0,0,343,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,129,0.0310,0,88,999.000,999.0,99.0 +1978,8,7,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,20.2,4.2,34,88700,0,0,335,0,0,0,0,0,0,0,320,0.9,0,0,24.1,77777,9,999999999,139,0.0310,0,88,999.000,999.0,99.0 +1978,8,7,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,18.1,4.5,39,88700,0,0,332,0,0,0,0,0,0,0,290,1.7,1,1,24.1,77777,9,999999999,139,0.0310,0,88,999.000,999.0,99.0 +1978,8,7,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,16.1,3.9,44,88700,0,0,323,0,0,0,0,0,0,0,250,2.6,1,1,48.3,77777,9,999999999,139,0.0310,0,88,999.000,999.0,99.0 +1978,8,7,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,18.1,5.7,43,88700,51,941,334,30,163,16,2600,7200,2200,290,300,2.6,1,1,48.3,77777,9,999999999,150,0.0400,0,88,999.000,999.0,99.0 +1978,8,7,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,20.2,7.3,42,88800,261,1328,345,133,518,30,13800,41300,5700,640,360,2.6,2,1,48.3,77777,9,999999999,170,0.0400,0,88,999.000,999.0,99.0 +1978,8,7,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,8.3,41,88800,486,1328,356,303,709,42,32000,66300,7600,1080,50,2.6,2,1,64.4,77777,9,999999999,179,0.0400,0,88,999.000,999.0,99.0 +1978,8,7,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.8,7.5,34,88800,698,1328,368,510,870,51,53700,85300,8800,1390,360,4.5,1,1,64.4,77777,9,999999999,170,0.0400,0,88,999.000,999.0,99.0 +1978,8,7,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,27.4,5.9,26,88700,880,1328,372,666,902,66,69800,89900,10100,1870,320,6.3,1,0,64.4,77777,9,999999999,160,0.0400,0,88,999.000,999.0,99.0 +1978,8,7,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,3.9,19,88700,1022,1328,382,797,942,70,83400,94400,10600,2340,270,8.2,0,0,64.4,77777,9,999999999,139,0.0400,0,88,999.000,999.0,99.0 +1978,8,7,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,30.9,4.1,18,88700,1112,1328,387,877,955,74,91500,95900,11000,2900,290,7.5,0,0,64.4,77777,9,999999999,139,0.0400,0,88,999.000,999.0,99.0 +1978,8,7,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,31.9,3.6,16,88600,1145,1328,391,908,961,75,94600,96600,11100,3180,300,6.9,0,0,64.4,77777,9,999999999,129,0.0400,0,88,999.000,999.0,99.0 +1978,8,7,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,2.8,15,88600,1119,1328,395,892,965,74,92900,96900,11100,2940,320,6.2,0,0,64.4,77777,9,999999999,129,0.0400,0,88,999.000,999.0,99.0 +1978,8,7,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,32.1,3.1,16,88600,1035,1328,392,817,952,71,85200,95500,10700,2410,320,5.9,0,0,64.4,77777,9,999999999,129,0.0400,0,88,999.000,999.0,99.0 +1978,8,7,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,31.3,3.1,17,88500,899,1328,388,697,928,64,72800,92600,10000,1870,330,5.5,0,0,64.4,77777,9,999999999,129,0.0400,0,88,999.000,999.0,99.0 +1978,8,7,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,3.3,18,88500,720,1328,384,537,882,54,56200,86700,9100,1450,330,5.2,0,0,64.4,77777,9,999999999,139,0.0400,0,88,999.000,999.0,99.0 +1978,8,7,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,28.7,3.6,21,88500,511,1328,375,357,804,42,37200,75800,8000,1100,330,4.7,0,0,64.4,77777,9,999999999,139,0.0400,0,88,999.000,999.0,99.0 +1978,8,7,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,26.9,4.1,23,88600,286,1328,367,174,652,30,18000,54200,6400,740,330,4.1,0,0,64.4,77777,9,999999999,139,0.0400,0,88,999.000,999.0,99.0 +1978,8,7,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,3.9,26,88600,68,1096,357,38,265,15,3300,14200,2400,290,330,3.6,0,0,64.4,77777,9,999999999,139,0.0400,0,88,999.000,999.0,99.0 +1978,8,7,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,23.7,5.0,29,88600,0,0,353,0,0,0,0,0,0,0,300,3.6,0,0,64.4,77777,9,999999999,150,0.0400,0,88,999.000,999.0,99.0 +1978,8,7,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,22.4,5.6,33,88700,0,0,347,0,0,0,0,0,0,0,280,3.6,0,0,64.4,77777,9,999999999,150,0.0400,0,88,999.000,999.0,99.0 +1978,8,7,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,21.1,5.6,36,88700,0,0,341,0,0,0,0,0,0,0,250,3.6,0,0,24.1,77777,9,999999999,150,0.0400,0,88,999.000,999.0,99.0 +1978,8,7,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,19.4,6.4,41,88700,0,0,334,0,0,0,0,0,0,0,290,2.4,0,0,24.1,77777,9,999999999,150,0.0400,0,88,999.000,999.0,99.0 +1978,8,8,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,17.8,6.4,45,88800,0,0,327,0,0,0,0,0,0,0,320,1.2,0,0,24.1,77777,9,999999999,160,0.0400,0,88,999.000,999.0,99.0 +1978,8,8,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,16.1,5.6,50,88800,0,0,318,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,150,0.0400,0,88,999.000,999.0,99.0 +1978,8,8,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,15.0,6.3,54,88800,0,0,314,0,0,0,0,0,0,0,350,0.9,0,0,24.1,77777,9,999999999,150,0.0400,0,88,999.000,999.0,99.0 +1978,8,8,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,13.9,6.4,58,88900,0,0,310,0,0,0,0,0,0,0,350,1.7,0,0,24.1,77777,9,999999999,150,0.0400,0,88,999.000,999.0,99.0 +1978,8,8,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,12.8,5.6,62,88900,0,0,304,0,0,0,0,0,0,0,340,2.6,0,0,48.3,77777,9,999999999,150,0.0400,0,88,999.000,999.0,99.0 +1978,8,8,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,15.6,6.8,56,89000,48,919,318,31,214,12,2500,11100,1800,250,340,2.4,0,0,48.3,77777,9,999999999,170,0.0300,0,88,999.000,999.0,99.0 +1978,8,8,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,18.3,7.9,50,89000,257,1329,331,149,640,25,15800,51700,5800,650,340,2.3,0,0,48.3,77777,9,999999999,170,0.0300,0,88,999.000,999.0,99.0 +1978,8,8,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,8.3,44,89100,483,1329,344,329,802,36,34800,75000,7600,990,340,2.1,0,0,64.4,77777,9,999999999,179,0.0300,0,88,999.000,999.0,99.0 +1978,8,8,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,22.8,9.6,41,89000,694,1329,354,509,881,47,53800,86400,8600,1320,350,2.3,0,0,64.4,77777,9,999999999,189,0.0300,0,88,999.000,999.0,99.0 +1978,8,8,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.4,10.0,39,89000,877,1329,362,670,925,56,70400,92200,9400,1680,360,2.4,0,0,64.4,77777,9,999999999,189,0.0300,0,88,999.000,999.0,99.0 +1978,8,8,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,10.0,36,88900,1019,1329,370,794,950,63,83300,95300,10100,2160,10,2.6,0,0,64.4,77777,9,999999999,200,0.0300,0,88,999.000,999.0,99.0 +1978,8,8,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,27.0,10.2,34,88900,1109,1329,375,875,964,66,91500,96900,10500,2640,20,2.6,0,0,64.4,77777,9,999999999,200,0.0300,0,88,999.000,999.0,99.0 +1978,8,8,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,28.0,9.7,31,88800,1142,1329,379,906,970,68,94700,97500,10700,2920,40,2.6,0,0,64.4,77777,9,999999999,189,0.0300,0,88,999.000,999.0,99.0 +1978,8,8,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,8.9,29,88800,1116,1329,383,883,967,67,92300,97200,10600,2710,50,2.6,0,0,64.4,77777,9,999999999,189,0.0300,0,88,999.000,999.0,99.0 +1978,8,8,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,29.6,7.9,26,88700,1031,1329,385,810,956,63,84800,95900,10200,2200,50,2.8,0,0,64.4,77777,9,999999999,179,0.0300,0,88,999.000,999.0,99.0 +1978,8,8,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,30.4,6.7,23,88600,895,1329,388,691,934,57,72500,93200,9500,1730,50,2.9,0,0,64.4,77777,9,999999999,170,0.0300,0,88,999.000,999.0,99.0 +1978,8,8,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,5.6,20,88600,716,1329,390,537,897,49,56400,88200,8800,1370,50,3.1,0,0,64.4,77777,9,999999999,150,0.0300,0,88,999.000,999.0,99.0 +1978,8,8,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,28.9,5.5,23,88500,506,1329,379,356,823,38,37400,77600,7800,1040,100,3.1,0,0,64.4,77777,9,999999999,150,0.0300,0,88,999.000,999.0,99.0 +1978,8,8,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,26.6,5.6,26,88500,281,1329,367,173,675,26,17900,55900,6100,690,160,3.1,0,0,64.4,77777,9,999999999,150,0.0300,0,88,999.000,999.0,99.0 +1978,8,8,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,5.0,29,88500,64,1052,356,39,285,13,3200,15300,2200,270,210,3.1,0,0,64.4,77777,9,999999999,150,0.0300,0,88,999.000,999.0,99.0 +1978,8,8,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,22.6,5.3,32,88500,0,0,348,0,0,0,0,0,0,0,260,2.1,0,0,64.4,77777,9,999999999,150,0.0300,0,88,999.000,999.0,99.0 +1978,8,8,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,20.7,5.1,36,88500,0,0,339,0,0,0,0,0,0,0,310,1.0,0,0,64.4,77777,9,999999999,150,0.0300,0,88,999.000,999.0,99.0 +1978,8,8,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,18.9,4.4,39,88600,0,0,330,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,139,0.0300,0,88,999.000,999.0,99.0 +1978,8,8,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,18.0,5.4,42,88600,0,0,327,0,0,0,0,0,0,0,340,0.7,0,0,24.1,77777,9,999999999,150,0.0300,0,88,999.000,999.0,99.0 +1978,8,9,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,17.0,5.6,45,88600,0,0,322,0,0,0,0,0,0,0,310,1.4,0,0,24.1,77777,9,999999999,150,0.0300,0,88,999.000,999.0,99.0 +1978,8,9,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,16.1,5.0,48,88600,0,0,318,0,0,0,0,0,0,0,290,2.1,0,0,24.1,77777,9,999999999,150,0.0300,0,88,999.000,999.0,99.0 +1978,8,9,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,15.0,5.9,53,88600,0,0,314,0,0,0,0,0,0,0,310,1.4,0,0,24.1,77777,9,999999999,150,0.0300,0,88,999.000,999.0,99.0 +1978,8,9,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,13.9,6.2,57,88600,0,0,310,0,0,0,0,0,0,0,340,0.7,0,0,24.1,77777,9,999999999,150,0.0300,0,88,999.000,999.0,99.0 +1978,8,9,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,12.8,5.6,62,88600,0,0,304,0,0,0,0,0,0,0,0,0.0,0,0,64.4,77777,9,999999999,150,0.0300,0,88,999.000,999.0,99.0 +1978,8,9,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,14.6,6.5,58,88600,45,897,313,28,184,12,2300,8100,1900,220,0,0.0,0,0,64.4,77777,9,999999999,160,0.0360,0,88,999.000,999.0,99.0 +1978,8,9,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,16.5,7.1,53,88600,253,1329,322,145,616,26,15200,49500,5800,660,0,0.0,0,0,64.4,77777,9,999999999,170,0.0360,0,88,999.000,999.0,99.0 +1978,8,9,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,7.2,49,88600,479,1329,330,325,790,39,34400,73700,7800,1030,0,0.0,0,0,64.4,77777,9,999999999,170,0.0360,0,88,999.000,999.0,99.0 +1978,8,9,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,21.1,8.6,44,88500,691,1329,351,486,856,39,51600,84000,7900,1160,360,0.7,1,1,64.4,77777,9,999999999,179,0.0360,0,88,999.000,999.0,99.0 +1978,8,9,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,23.9,9.2,39,88500,874,1329,374,483,473,170,52800,49000,20500,4300,360,1.4,3,3,64.4,77777,9,999999999,189,0.0360,0,88,999.000,999.0,99.0 +1978,8,9,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,9.4,34,88400,1016,1329,392,650,606,184,68800,61800,21500,5970,360,2.1,4,4,64.4,77777,9,999999999,189,0.0360,0,88,999.000,999.0,99.0 +1978,8,9,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,28.9,9.1,29,88300,1106,1329,403,777,676,211,82300,68900,24800,8390,20,2.8,4,4,64.4,77777,9,999999999,189,0.0360,0,88,999.000,999.0,99.0 +1978,8,9,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,31.1,8.0,24,88200,1139,1329,410,774,706,166,81200,71100,20100,6720,30,3.4,3,3,64.4,77777,9,999999999,179,0.0360,0,88,999.000,999.0,99.0 +1978,8,9,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,6.7,19,88200,1112,1329,420,803,801,128,82200,80100,15000,4020,50,4.1,3,3,64.4,77777,9,999999999,160,0.0360,0,88,999.000,999.0,99.0 +1978,8,9,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,32.9,5.9,18,88100,1028,1329,417,643,541,222,67300,54700,24900,7240,50,3.8,3,3,64.4,77777,9,999999999,150,0.0360,0,88,999.000,999.0,99.0 +1978,8,9,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,32.6,4.8,18,88100,891,1329,414,602,715,118,63000,71700,14800,3000,50,3.4,4,3,64.4,77777,9,999999999,150,0.0360,0,88,999.000,999.0,99.0 +1978,8,9,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,3.9,17,88000,712,1329,410,526,809,88,55000,80000,12100,1970,50,3.1,4,3,64.4,77777,9,999999999,139,0.0360,0,88,999.000,999.0,99.0 +1978,8,9,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,30.0,4.6,21,88000,502,1329,400,300,577,78,31100,54400,10600,1550,90,3.1,4,3,64.4,77777,9,999999999,150,0.0360,0,88,999.000,999.0,99.0 +1978,8,9,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,27.8,5.4,24,88000,276,1329,385,142,395,57,14200,30500,7900,1010,120,3.1,3,2,64.4,77777,9,999999999,150,0.0360,0,88,999.000,999.0,99.0 +1978,8,9,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,5.6,28,88000,60,1030,374,31,128,20,2900,4900,2600,350,160,3.1,3,2,64.4,77777,9,999999999,150,0.0360,0,88,999.000,999.0,99.0 +1978,8,9,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,24.5,5.7,29,88000,0,0,373,0,0,0,0,0,0,0,110,2.8,4,3,64.4,77777,9,999999999,150,0.0360,0,88,999.000,999.0,99.0 +1978,8,9,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,23.3,5.3,30,88000,0,0,369,0,0,0,0,0,0,0,50,2.4,4,4,64.4,77777,9,999999999,139,0.0360,0,88,999.000,999.0,99.0 +1978,8,9,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,22.2,4.4,31,88000,0,0,365,0,0,0,0,0,0,0,360,2.1,5,5,24.1,77777,9,999999999,139,0.0360,0,88,999.000,999.0,99.0 +1978,8,9,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,21.5,5.8,34,88000,0,0,361,0,0,0,0,0,0,0,360,2.1,4,4,24.1,77777,9,999999999,150,0.0360,0,88,999.000,999.0,99.0 +1978,8,10,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,20.7,6.3,38,88000,0,0,358,0,0,0,0,0,0,0,10,2.1,4,4,24.1,77777,9,999999999,150,0.0360,0,88,999.000,999.0,99.0 +1978,8,10,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,20.0,6.1,41,88000,0,0,351,0,0,0,0,0,0,0,10,2.1,3,3,24.1,77777,9,999999999,160,0.0360,0,88,999.000,999.0,99.0 +1978,8,10,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,18.3,6.7,45,88000,0,0,344,0,0,0,0,0,0,0,320,1.9,3,3,24.1,77777,9,999999999,160,0.0360,0,88,999.000,999.0,99.0 +1978,8,10,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,16.7,6.5,50,88000,0,0,333,0,0,0,0,0,0,0,260,1.7,2,2,24.1,77777,9,999999999,160,0.0360,0,88,999.000,999.0,99.0 +1978,8,10,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,15.0,5.6,54,88000,0,0,324,0,0,0,0,0,0,0,210,1.5,2,2,64.4,77777,9,999999999,150,0.0360,0,88,999.000,999.0,99.0 +1978,8,10,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,16.3,6.3,51,88000,43,853,326,23,93,15,2100,3300,2000,260,260,1.0,1,1,64.4,77777,9,999999999,160,0.0650,0,88,999.000,999.0,99.0 +1978,8,10,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,17.6,6.8,48,88000,249,1330,333,125,487,33,12800,38000,5700,670,310,0.5,1,1,64.4,77777,9,999999999,160,0.0650,0,88,999.000,999.0,99.0 +1978,8,10,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,6.7,45,88000,475,1330,332,309,719,51,32700,67400,8600,1110,0,0.0,0,0,64.4,77777,9,999999999,160,0.0650,0,88,999.000,999.0,99.0 +1978,8,10,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,22.6,5.5,35,88000,688,1330,355,472,785,64,49400,76800,9600,1540,340,2.1,1,1,64.4,77777,9,999999999,160,0.0650,0,88,999.000,999.0,99.0 +1978,8,10,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,26.3,3.5,26,87900,871,1330,370,622,839,70,65000,83500,10200,1910,310,4.1,1,1,64.4,77777,9,999999999,150,0.0650,0,88,999.000,999.0,99.0 +1978,8,10,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,1.1,16,87900,1013,1330,391,738,801,125,78500,81000,16600,3890,290,6.2,2,2,64.4,77777,9,999999999,120,0.0650,0,88,999.000,999.0,99.0 +1978,8,10,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,31.1,2.4,16,87800,1103,1330,398,811,836,115,83600,83700,14000,3720,290,7.6,2,2,64.4,77777,9,999999999,120,0.0650,0,88,999.000,999.0,99.0 +1978,8,10,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,32.2,3.0,15,87700,1136,1330,405,851,877,98,88000,88000,12700,3730,290,8.9,2,2,64.4,77777,9,999999999,129,0.0650,0,88,999.000,999.0,99.0 +1978,8,10,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,3.3,15,87600,1109,1330,411,753,696,169,81100,71700,21200,6890,290,10.3,2,2,64.4,77777,9,999999999,129,0.0650,0,88,999.000,999.0,99.0 +1978,8,10,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,33.1,2.3,14,87600,1024,1330,409,555,497,169,59100,50900,19800,5620,290,8.6,2,2,64.4,77777,9,999999999,120,0.0650,0,88,999.000,999.0,99.0 +1978,8,10,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,33.0,1.1,13,87500,887,1330,407,639,748,136,68000,76300,17000,3650,280,6.9,2,2,64.4,77777,9,999999999,110,0.0650,0,88,999.000,999.0,99.0 +1978,8,10,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,0.0,12,87500,707,1330,404,496,743,97,51400,73100,12400,2070,280,5.2,2,2,64.4,77777,9,999999999,110,0.0650,0,88,999.000,999.0,99.0 +1978,8,10,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,30.0,0.5,15,87500,497,1330,390,312,619,77,32400,58200,10600,1530,280,4.7,2,2,64.4,77777,9,999999999,110,0.0650,0,88,999.000,999.0,99.0 +1978,8,10,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,27.2,1.1,19,87500,271,1330,377,115,268,59,12000,20300,7800,1060,280,4.1,2,2,64.4,77777,9,999999999,120,0.0650,0,88,999.000,999.0,99.0 +1978,8,10,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,1.1,22,87500,56,986,363,33,105,23,3000,4000,2800,410,280,3.6,2,2,64.4,77777,9,999999999,120,0.0650,0,88,999.000,999.0,99.0 +1978,8,10,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,23.3,1.5,23,87500,0,0,353,0,0,0,0,0,0,0,260,3.6,1,1,64.4,77777,9,999999999,120,0.0650,0,88,999.000,999.0,99.0 +1978,8,10,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,22.2,1.3,25,87500,0,0,348,0,0,0,0,0,0,0,250,3.6,1,1,64.4,77777,9,999999999,120,0.0650,0,88,999.000,999.0,99.0 +1978,8,10,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,21.1,0.6,26,87600,0,0,335,0,0,0,0,0,0,0,230,3.6,0,0,24.1,77777,9,999999999,110,0.0650,0,88,999.000,999.0,99.0 +1978,8,10,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,20.4,1.2,27,87600,0,0,333,0,0,0,0,0,0,0,230,3.6,0,0,24.1,77777,9,999999999,110,0.0650,0,88,999.000,999.0,99.0 +1978,8,11,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,19.6,1.0,27,87600,0,0,329,0,0,0,0,0,0,0,240,3.6,0,0,24.1,77777,9,999999999,110,0.0650,0,88,999.000,999.0,99.0 +1978,8,11,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,18.9,0.0,28,87500,0,0,325,0,0,0,0,0,0,0,240,3.6,0,0,24.1,77777,9,999999999,110,0.0650,0,88,999.000,999.0,99.0 +1978,8,11,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,17.6,1.3,32,87600,0,0,326,0,0,0,0,0,0,0,280,2.4,3,1,24.1,77777,9,999999999,110,0.0650,0,88,999.000,999.0,99.0 +1978,8,11,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,16.3,1.9,37,87600,0,0,326,0,0,0,0,0,0,0,320,1.2,5,2,24.1,77777,9,999999999,120,0.0650,0,88,999.000,999.0,99.0 +1978,8,11,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,15.0,1.7,41,87600,0,0,323,0,0,0,0,0,0,0,0,0.0,8,3,24.1,77777,9,999999999,120,0.0650,0,88,999.000,999.0,99.0 +1978,8,11,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,16.5,2.2,38,87600,40,831,330,15,25,13,1600,1000,1600,270,350,0.7,8,3,24.1,77777,9,999999999,120,0.0870,0,88,999.000,999.0,99.0 +1978,8,11,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,17.9,2.5,35,87700,245,1330,337,94,211,55,9800,15200,7000,990,350,1.4,7,3,24.1,77777,9,999999999,120,0.0870,0,88,999.000,999.0,99.0 +1978,8,11,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,2.2,32,87700,472,1330,344,275,484,102,29100,45100,13100,1920,340,2.1,7,3,48.3,77777,9,999999999,120,0.0870,0,88,999.000,999.0,99.0 +1978,8,11,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,21.8,2.4,27,87600,684,1330,352,356,381,159,37900,38400,18100,3370,360,2.4,6,2,48.3,77777,9,999999999,120,0.0870,0,88,999.000,999.0,99.0 +1978,8,11,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.3,1.7,23,87600,868,1330,363,601,673,160,63200,68000,18800,4090,30,2.8,5,2,48.3,77777,9,999999999,120,0.0870,0,88,999.000,999.0,99.0 +1978,8,11,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,0.6,18,87500,1010,1330,368,735,823,107,75800,82200,13300,2870,50,3.1,4,1,64.4,77777,9,999999999,110,0.0870,0,88,999.000,999.0,99.0 +1978,8,11,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,27.8,1.9,18,87500,1100,1330,381,807,784,156,84800,79000,19300,5680,50,3.4,5,2,64.4,77777,9,999999999,120,0.0870,0,88,999.000,999.0,99.0 +1978,8,11,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,28.9,2.5,18,87400,1133,1330,391,763,622,230,80600,63200,26600,9790,40,3.8,7,3,64.4,77777,9,999999999,120,0.0870,0,88,999.000,999.0,99.0 +1978,8,11,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,2.8,18,87400,1106,1330,400,824,742,204,87600,75800,24400,8110,40,4.1,8,4,64.4,77777,9,999999999,129,0.0870,0,88,999.000,999.0,99.0 +1978,8,11,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,30.6,2.7,17,87300,1020,1330,403,706,680,181,74900,69400,21500,5930,360,5.3,9,4,64.4,77777,9,999999999,129,0.0870,0,88,999.000,999.0,99.0 +1978,8,11,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,31.1,2.4,16,87300,883,1330,405,492,350,258,53400,37600,28400,6890,330,6.5,9,4,64.4,77777,9,999999999,120,0.0870,0,88,999.000,999.0,99.0 +1978,8,11,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,2.2,15,87200,703,1330,408,456,571,151,46900,56100,17200,3190,290,7.7,10,4,64.4,77777,9,999999999,120,0.0870,0,88,999.000,999.0,99.0 +1978,8,11,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,29.5,2.3,18,87300,492,1330,397,245,307,129,26000,29700,15000,2600,320,5.8,10,4,64.4,77777,9,999999999,129,0.0870,0,88,999.000,999.0,99.0 +1978,8,11,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,27.2,2.6,20,87300,265,1330,385,111,172,76,11600,12900,9000,1460,350,4.0,10,4,64.4,77777,9,999999999,129,0.0870,0,88,999.000,999.0,99.0 +1978,8,11,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,2.2,23,87400,52,942,374,24,36,20,2400,1500,2300,410,20,2.1,10,4,24.1,77777,9,999999999,129,0.0870,0,88,999.000,999.0,99.0 +1978,8,11,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,23.3,2.7,26,87400,0,0,363,0,0,0,0,0,0,0,340,2.4,9,3,24.1,77777,9,999999999,129,0.0870,0,88,999.000,999.0,99.0 +1978,8,11,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,21.7,2.7,28,87500,0,0,355,0,0,0,0,0,0,0,290,2.8,8,3,24.1,77777,9,999999999,129,0.0870,0,88,999.000,999.0,99.0 +1978,8,11,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,20.0,2.2,31,87500,0,0,343,0,0,0,0,0,0,0,250,3.1,7,2,24.1,77777,9,999999999,120,0.0870,0,88,999.000,999.0,99.0 +1978,8,11,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,18.7,3.4,35,87500,0,0,334,0,0,0,0,0,0,0,250,2.9,6,1,24.1,77777,9,999999999,129,0.0870,0,88,999.000,999.0,99.0 +1978,8,12,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,17.4,3.7,39,87500,0,0,328,0,0,0,0,0,0,0,240,2.8,4,1,24.1,77777,9,999999999,129,0.0870,0,88,999.000,999.0,99.0 +1978,8,12,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,16.1,3.3,43,87500,0,0,316,0,0,0,0,0,0,0,240,2.6,3,0,24.1,77777,9,999999999,129,0.0870,0,88,999.000,999.0,99.0 +1978,8,12,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,15.4,3.9,44,87600,0,0,314,0,0,0,0,0,0,0,280,1.7,2,0,24.1,77777,9,999999999,129,0.0870,0,88,999.000,999.0,99.0 +1978,8,12,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,14.6,3.7,46,87600,0,0,310,0,0,0,0,0,0,0,320,0.9,1,0,24.1,77777,9,999999999,129,0.0870,0,88,999.000,999.0,99.0 +1978,8,12,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,13.9,2.8,47,87600,0,0,306,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,129,0.0870,0,88,999.000,999.0,99.0 +1978,8,12,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,15.2,3.7,45,87600,37,809,313,25,159,10,1900,6800,1600,190,0,0.0,0,0,24.1,77777,9,999999999,129,0.0310,0,88,999.000,999.0,99.0 +1978,8,12,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,16.5,4.3,44,87600,241,1330,319,137,620,24,14500,49200,5600,620,0,0.0,0,0,24.1,77777,9,999999999,139,0.0310,0,88,999.000,999.0,99.0 +1978,8,12,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,4.4,42,87600,468,1330,325,319,802,36,33800,74500,7600,980,0,0.0,0,0,64.4,77777,9,999999999,139,0.0310,0,88,999.000,999.0,99.0 +1978,8,12,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,20.6,5.7,37,87600,681,1330,345,433,748,48,45600,73200,8100,1320,10,1.2,2,1,64.4,77777,9,999999999,150,0.0310,0,88,999.000,999.0,99.0 +1978,8,12,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,23.3,6.1,33,87600,864,1330,364,608,750,119,63600,75000,14800,2890,10,2.4,5,2,64.4,77777,9,999999999,160,0.0310,0,88,999.000,999.0,99.0 +1978,8,12,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,6.1,28,87500,1006,1330,381,735,754,162,78500,77200,20000,5210,20,3.6,7,3,64.4,77777,9,999999999,160,0.0310,0,88,999.000,999.0,99.0 +1978,8,12,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,27.2,6.7,26,87500,1097,1330,391,685,561,220,72300,57000,25200,8470,10,2.4,8,4,64.4,77777,9,999999999,160,0.0310,0,88,999.000,999.0,99.0 +1978,8,12,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,28.3,6.5,25,87500,1130,1330,403,795,711,188,85100,73000,23100,8040,10,1.2,8,6,64.4,77777,9,999999999,160,0.0310,0,88,999.000,999.0,99.0 +1978,8,12,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,6.1,23,87400,1102,1330,413,545,247,339,59700,26800,37400,12860,0,0.0,9,7,64.4,4570,9,999999999,160,0.0310,0,88,999.000,999.0,99.0 +1978,8,12,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,29.6,5.6,22,87400,1017,1330,413,578,441,239,62500,46000,27200,7730,40,1.0,9,7,64.4,5587,9,999999999,150,0.0310,0,88,999.000,999.0,99.0 +1978,8,12,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,29.8,5.0,21,87300,879,1330,414,397,167,285,43400,17600,31700,8210,80,2.1,10,7,64.4,6603,9,999999999,150,0.0310,0,88,999.000,999.0,99.0 +1978,8,12,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,4.4,20,87200,698,1330,414,321,243,193,34700,25400,21300,4360,120,3.1,10,7,24.1,7620,9,999999999,139,0.0310,0,88,999.000,999.0,99.0 +1978,8,12,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,28.1,5.4,24,87200,487,1330,400,241,399,93,25800,37600,12000,1740,170,3.4,9,6,24.1,5790,9,999999999,150,0.0310,0,88,999.000,999.0,99.0 +1978,8,12,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,26.3,6.6,29,87200,260,1330,392,119,247,69,12100,18300,8500,1270,210,3.8,8,6,24.1,3960,9,999999999,160,0.0310,0,88,999.000,999.0,99.0 +1978,8,12,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,7.2,33,87100,49,920,380,28,77,21,2700,2400,2500,380,260,4.1,7,5,24.1,2130,9,999999999,160,0.0310,0,88,999.000,999.0,99.0 +1978,8,12,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,23.1,7.7,36,87200,0,0,371,0,0,0,0,0,0,0,270,5.0,6,4,24.1,77777,9,999999999,170,0.0310,0,88,999.000,999.0,99.0 +1978,8,12,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,21.9,7.7,39,87400,0,0,365,0,0,0,0,0,0,0,270,5.8,5,4,24.1,77777,9,999999999,170,0.0310,0,88,999.000,999.0,99.0 +1978,8,12,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,20.6,7.2,42,87500,0,0,355,0,0,0,0,0,0,0,280,6.7,4,3,24.1,77777,9,999999999,170,0.0310,0,88,999.000,999.0,99.0 +1978,8,12,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,19.1,8.2,47,87500,0,0,349,0,0,0,0,0,0,0,270,7.4,5,3,24.1,77777,9,999999999,170,0.0310,0,88,999.000,999.0,99.0 +1978,8,13,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,17.6,8.4,53,87600,0,0,345,0,0,0,0,0,0,0,270,8.1,6,4,24.1,77777,9,999999999,170,0.0310,0,88,999.000,999.0,99.0 +1978,8,13,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,16.1,7.8,58,87600,0,0,337,0,0,0,0,0,0,0,260,8.8,7,4,24.1,7620,9,999999999,170,0.0310,0,88,999.000,999.0,99.0 +1978,8,13,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,15.9,8.3,58,87700,0,0,343,0,0,0,0,0,0,0,260,8.1,8,6,24.1,5537,9,999999999,170,0.0310,0,88,999.000,999.0,99.0 +1978,8,13,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,15.8,8.2,58,87700,0,0,352,0,0,0,0,0,0,0,270,7.4,9,8,24.1,3453,9,999999999,170,0.0310,0,88,999.000,999.0,99.0 +1978,8,13,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,15.6,7.2,58,87800,0,0,367,0,0,0,0,0,0,0,270,6.7,10,10,24.1,1370,9,999999999,170,0.0310,0,88,999.000,999.0,99.0 +1978,8,13,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,15.6,7.2,57,87800,35,787,367,8,1,7,800,0,800,270,260,6.2,10,10,24.1,1370,9,999999999,170,0.0530,0,88,999.000,999.0,99.0 +1978,8,13,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,15.6,6.9,55,87900,237,1331,357,64,24,59,6900,1900,6600,1480,260,5.7,10,9,24.1,1370,9,999999999,160,0.0530,0,88,999.000,999.0,99.0 +1978,8,13,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,6.1,54,87900,464,1331,356,176,64,153,19200,6000,17100,4050,250,5.2,10,9,48.3,1370,9,999999999,160,0.0530,0,88,999.000,999.0,99.0 +1978,8,13,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,15.8,7.5,56,87900,677,1331,358,250,68,216,27500,6800,24100,6510,250,4.8,10,9,48.3,1370,9,999999999,170,0.0530,0,88,999.000,999.0,99.0 +1978,8,13,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,15.9,8.1,58,87900,861,1331,370,230,33,209,25400,3300,23300,7420,250,4.5,10,10,48.3,1370,9,999999999,170,0.0530,0,88,999.000,999.0,99.0 +1978,8,13,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,8.3,60,87900,1003,1331,371,244,18,230,29000,1500,27900,10910,250,4.1,10,10,48.3,1370,9,999999999,179,0.0530,0,88,999.000,999.0,99.0 +1978,8,13,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,15.9,8.5,59,87900,1094,1331,370,375,7,369,43600,700,43000,15900,290,2.7,10,10,48.3,1370,9,999999999,179,0.0530,0,88,999.000,999.0,99.0 +1978,8,13,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,15.8,8.0,59,87900,1126,1331,369,356,8,350,41900,700,41200,15500,320,1.4,10,10,48.3,1370,9,999999999,170,0.0530,0,88,999.000,999.0,99.0 +1978,8,13,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,7.2,58,87900,1099,1331,367,323,1,321,37900,100,37800,14480,0,0.0,10,10,32.2,1370,9,999999999,170,0.0530,0,88,999.000,999.0,99.0 +1978,8,13,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,16.1,7.5,57,87900,1013,1331,360,495,168,366,54000,17800,40400,12190,360,1.0,10,9,32.2,1370,9,999999999,170,0.0530,0,88,999.000,999.0,99.0 +1978,8,13,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,16.7,7.6,55,87900,875,1331,363,292,77,241,32200,7800,27000,8470,350,2.1,10,9,32.2,1370,9,999999999,170,0.0530,0,88,999.000,999.0,99.0 +1978,8,13,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,7.8,54,87900,694,1331,358,173,91,125,19500,9500,14600,3160,350,3.1,10,8,24.1,1370,9,999999999,170,0.0530,0,88,999.000,999.0,99.0 +1978,8,13,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,16.5,8.3,58,87900,482,1331,363,141,52,122,15500,4900,13700,3460,330,3.1,10,9,24.1,1420,9,999999999,179,0.0530,0,88,999.000,999.0,99.0 +1978,8,13,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,15.7,8.9,63,87900,255,1331,359,91,27,86,10000,2200,9500,2020,320,3.1,10,9,24.1,1470,9,999999999,179,0.0530,0,88,999.000,999.0,99.0 +1978,8,13,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,8.9,67,88000,45,876,366,5,0,5,600,0,600,200,300,3.1,10,10,24.1,1520,9,999999999,189,0.0530,0,88,999.000,999.0,99.0 +1978,8,13,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,14.4,9.8,71,88000,0,0,364,0,0,0,0,0,0,0,320,2.1,10,10,24.1,1420,9,999999999,189,0.0530,0,88,999.000,999.0,99.0 +1978,8,13,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,13.9,10.2,76,88000,0,0,362,0,0,0,0,0,0,0,340,1.0,10,10,24.1,1320,9,999999999,189,0.0530,0,88,999.000,999.0,99.0 +1978,8,13,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,13.3,10.0,80,88100,0,0,359,0,0,0,0,0,0,0,0,0.0,10,10,24.1,1220,9,999999999,200,0.0530,0,88,999.000,999.0,99.0 +1978,8,13,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,13.1,10.3,78,88100,0,0,358,0,0,0,0,0,0,0,340,0.9,10,10,24.1,1220,9,999999999,189,0.0530,0,88,999.000,999.0,99.0 +1978,8,14,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,13.0,9.7,77,88100,0,0,357,0,0,0,0,0,0,0,310,1.7,10,10,24.1,1220,9,999999999,189,0.0530,0,88,999.000,999.0,99.0 +1978,8,14,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,12.8,8.3,75,88100,0,0,354,0,0,0,0,0,0,0,290,2.6,10,10,24.1,1220,9,999999999,179,0.0530,0,88,999.000,999.0,99.0 +1978,8,14,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,12.6,8.7,74,88100,0,0,354,0,0,0,0,0,0,0,290,2.6,10,10,24.1,1200,9,999999999,179,0.0530,0,88,999.000,999.0,99.0 +1978,8,14,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,12.4,8.3,73,88100,0,0,343,0,0,0,0,0,0,0,290,2.6,10,9,24.1,1180,9,999999999,170,0.0530,0,88,999.000,999.0,99.0 +1978,8,14,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,12.2,7.2,72,88200,0,0,340,0,0,0,0,0,0,0,290,2.6,10,9,24.1,1160,9,999999999,170,0.0530,0,88,999.000,999.0,99.0 +1978,8,14,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,12.8,7.5,69,88200,32,743,344,13,6,12,1400,300,1300,300,280,3.5,9,9,24.1,1160,9,999999999,170,0.0410,0,88,999.000,999.0,99.0 +1978,8,14,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,13.3,7.7,67,88200,232,1331,339,62,41,55,6800,3200,6300,1390,280,4.3,9,8,24.1,1160,9,999999999,170,0.0410,0,88,999.000,999.0,99.0 +1978,8,14,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,7.2,64,88200,460,1331,341,173,111,134,18800,10600,15200,3060,270,5.2,8,8,24.1,1160,9,999999999,170,0.0410,0,88,999.000,999.0,99.0 +1978,8,14,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,15.4,7.7,58,88200,674,1331,344,354,315,194,38000,32700,21400,4350,260,6.4,8,7,24.1,1687,9,999999999,170,0.0410,0,88,999.000,999.0,99.0 +1978,8,14,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,16.8,7.4,53,88200,858,1331,350,485,395,230,51400,40700,25200,5830,260,7.6,8,7,24.1,2213,9,999999999,170,0.0410,0,88,999.000,999.0,99.0 +1978,8,14,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,6.7,47,88200,1000,1331,352,488,315,249,53900,34200,28200,7580,250,8.8,8,6,32.2,2740,9,999999999,160,0.0410,0,88,999.000,999.0,99.0 +1978,8,14,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,19.1,6.5,43,88200,1090,1331,356,793,797,137,84300,80700,18100,5000,260,8.4,8,6,32.2,2740,9,999999999,160,0.0410,0,88,999.000,999.0,99.0 +1978,8,14,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,19.8,5.6,39,88200,1123,1331,358,822,687,239,86400,69700,27600,9800,260,8.1,7,6,32.2,2740,9,999999999,150,0.0410,0,88,999.000,999.0,99.0 +1978,8,14,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,4.4,35,88200,1095,1331,361,600,420,252,65200,43900,29000,9740,270,7.7,7,6,48.3,2740,9,999999999,139,0.0410,0,88,999.000,999.0,99.0 +1978,8,14,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,20.6,4.1,34,88100,1009,1331,357,746,765,161,79500,78400,20000,5200,280,8.2,6,5,48.3,77777,9,999999999,139,0.0410,0,88,999.000,999.0,99.0 +1978,8,14,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,20.6,3.7,33,88100,870,1331,357,504,356,268,54200,38200,29300,7120,280,8.8,5,5,48.3,77777,9,999999999,139,0.0410,0,88,999.000,999.0,99.0 +1978,8,14,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,3.3,32,88100,689,1331,353,402,519,131,41700,51200,15200,2800,290,9.3,4,4,64.4,77777,9,999999999,129,0.0410,0,88,999.000,999.0,99.0 +1978,8,14,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,19.7,3.0,33,88200,477,1331,351,276,508,91,28200,46800,11400,1730,280,7.2,5,5,64.4,77777,9,999999999,129,0.0410,0,88,999.000,999.0,99.0 +1978,8,14,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,18.7,2.9,34,88200,249,1331,350,102,141,75,10600,10200,8700,1460,270,5.2,6,6,64.4,77777,9,999999999,129,0.0410,0,88,999.000,999.0,99.0 +1978,8,14,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,2.2,35,88200,41,854,348,27,47,22,2700,1800,2600,450,260,3.1,7,7,48.3,1830,9,999999999,120,0.0410,0,88,999.000,999.0,99.0 +1978,8,14,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,17.2,2.9,37,88200,0,0,342,0,0,0,0,0,0,0,250,2.9,7,6,48.3,1830,9,999999999,129,0.0410,0,88,999.000,999.0,99.0 +1978,8,14,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,16.7,3.1,39,88200,0,0,340,0,0,0,0,0,0,0,230,2.8,7,6,48.3,1830,9,999999999,129,0.0410,0,88,999.000,999.0,99.0 +1978,8,14,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,16.1,2.8,41,88200,0,0,334,0,0,0,0,0,0,0,220,2.6,7,5,24.1,1830,9,999999999,129,0.0410,0,88,999.000,999.0,99.0 +1978,8,14,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,15.7,4.0,43,88200,0,0,341,0,0,0,0,0,0,0,270,1.7,8,7,24.1,1627,9,999999999,129,0.0410,0,88,999.000,999.0,99.0 +1978,8,15,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,15.4,4.3,46,88200,0,0,345,0,0,0,0,0,0,0,310,0.9,9,8,24.1,1423,9,999999999,139,0.0410,0,88,999.000,999.0,99.0 +1978,8,15,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,15.0,3.9,48,88200,0,0,360,0,0,0,0,0,0,0,0,0.0,10,10,24.1,1220,9,999999999,139,0.0410,0,88,999.000,999.0,99.0 +1978,8,15,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,14.1,5.0,53,88200,0,0,357,0,0,0,0,0,0,0,0,0.0,10,10,24.1,1373,9,999999999,139,0.0410,0,88,999.000,999.0,99.0 +1978,8,15,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,13.1,5.4,57,88100,0,0,343,0,0,0,0,0,0,0,0,0.0,9,9,24.1,1527,9,999999999,150,0.0410,0,88,999.000,999.0,99.0 +1978,8,15,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,12.2,5.0,62,88100,0,0,338,0,0,0,0,0,0,0,0,0.0,9,9,40.2,1680,9,999999999,150,0.0410,0,88,999.000,999.0,99.0 +1978,8,15,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,13.7,6.1,59,88100,30,721,339,18,10,17,1900,500,1900,400,30,0.7,8,8,40.2,2137,9,999999999,160,0.0480,0,88,999.000,999.0,99.0 +1978,8,15,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,15.2,6.9,57,88100,228,1332,342,79,93,63,8600,6800,7400,1340,60,1.4,8,7,40.2,2593,9,999999999,160,0.0480,0,88,999.000,999.0,99.0 +1978,8,15,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,7.2,54,88100,456,1332,345,193,121,152,20900,11400,17000,3460,90,2.1,7,6,48.3,3050,9,999999999,170,0.0480,0,88,999.000,999.0,99.0 +1978,8,15,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,18.9,7.5,47,88000,670,1332,356,273,228,158,29800,23700,17800,3410,70,2.8,7,6,48.3,3050,9,999999999,170,0.0480,0,88,999.000,999.0,99.0 +1978,8,15,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,21.1,7.0,40,87900,854,1332,366,474,318,270,51200,34000,29300,7090,60,3.4,8,6,48.3,3050,9,999999999,170,0.0480,0,88,999.000,999.0,99.0 +1978,8,15,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,6.1,33,87900,997,1332,376,685,676,176,72600,68900,20900,5500,40,4.1,8,6,64.4,3050,9,999999999,160,0.0480,0,88,999.000,999.0,99.0 +1978,8,15,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,23.5,6.1,31,87800,1087,1332,377,838,763,212,88600,77700,25100,7960,20,3.4,8,6,64.4,2540,9,999999999,150,0.0480,0,88,999.000,999.0,99.0 +1978,8,15,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,23.7,5.4,30,87700,1119,1332,377,613,372,299,65800,38900,33100,12430,350,2.8,8,6,64.4,2030,9,999999999,150,0.0480,0,88,999.000,999.0,99.0 +1978,8,15,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,4.4,28,87600,1091,1332,377,651,436,291,69700,45500,32300,11220,330,2.1,8,6,64.4,1520,9,999999999,139,0.0480,0,88,999.000,999.0,99.0 +1978,8,15,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,23.2,6.0,33,87500,1005,1332,376,530,286,312,57600,30900,34200,9860,320,3.8,8,6,64.4,1520,9,999999999,160,0.0480,0,88,999.000,999.0,99.0 +1978,8,15,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,22.4,7.4,39,87500,866,1332,378,467,496,141,49300,50400,16500,3650,320,5.5,8,7,64.4,1520,9,999999999,170,0.0480,0,88,999.000,999.0,99.0 +1978,8,15,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,8.9,44,87400,684,1332,376,356,339,180,38400,35300,20200,3990,310,7.2,8,7,64.4,1520,9,999999999,179,0.0480,0,88,999.000,999.0,99.0 +1978,8,15,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,20.8,9.6,49,87400,471,1332,378,166,22,158,18400,1600,17800,5490,260,6.0,9,8,64.4,1520,9,999999999,189,0.0480,0,88,999.000,999.0,99.0 +1978,8,15,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,19.8,10.4,54,87400,243,1332,382,89,158,60,9400,11300,7400,1120,200,4.8,9,9,64.4,1520,9,999999999,200,0.0480,0,88,999.000,999.0,99.0 +1978,8,15,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,10.6,59,87300,38,810,388,8,3,7,800,200,800,180,150,3.6,10,10,40.2,1520,9,999999999,209,0.0480,0,88,999.000,999.0,99.0 +1978,8,15,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,18.2,10.9,61,87300,0,0,375,0,0,0,0,0,0,0,200,3.6,9,9,40.2,1520,9,999999999,200,0.0480,0,88,999.000,999.0,99.0 +1978,8,15,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,17.4,10.7,63,87300,0,0,362,0,0,0,0,0,0,0,250,3.6,9,8,40.2,1520,9,999999999,200,0.0480,0,88,999.000,999.0,99.0 +1978,8,15,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,16.7,10.0,65,87200,0,0,352,0,0,0,0,0,0,0,300,3.6,8,7,24.1,1520,9,999999999,200,0.0480,0,88,999.000,999.0,99.0 +1978,8,15,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,15.6,10.6,69,87300,0,0,353,0,0,0,0,0,0,0,300,3.8,9,8,24.1,1520,9,999999999,200,0.0480,0,88,999.000,999.0,99.0 +1978,8,16,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,14.4,10.4,74,87400,0,0,355,0,0,0,0,0,0,0,290,3.9,9,9,24.1,1520,9,999999999,189,0.0480,0,88,999.000,999.0,99.0 +1978,8,16,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,13.3,9.4,78,87500,0,0,358,0,0,0,0,0,0,0,290,4.1,10,10,24.1,1520,9,999999999,189,0.0480,0,88,999.000,999.0,99.0 +1978,8,16,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,13.3,9.4,74,87500,0,0,358,0,0,0,0,0,0,0,300,3.9,10,10,24.1,1400,9,999999999,179,0.0480,0,88,999.000,999.0,99.0 +1978,8,16,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,13.3,8.7,71,87500,0,0,357,0,0,0,0,0,0,0,300,3.8,10,10,24.1,1280,9,999999999,179,0.0480,0,88,999.000,999.0,99.0 +1978,8,16,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,13.3,7.2,67,87500,0,0,355,0,0,0,0,0,0,0,310,3.6,10,10,24.1,1160,9,999999999,170,0.0480,0,88,999.000,999.0,99.0 +1978,8,16,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,14.1,7.2,63,87500,28,699,359,12,1,12,1400,0,1400,420,310,4.3,10,10,24.1,1687,9,999999999,170,0.0430,0,88,999.000,999.0,99.0 +1978,8,16,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,14.8,6.9,58,87500,224,1332,353,66,15,64,7400,400,7300,2090,300,5.0,10,9,24.1,2213,9,999999999,160,0.0430,0,88,999.000,999.0,99.0 +1978,8,16,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,6.1,54,87500,452,1332,356,117,47,101,12900,4400,11400,2880,300,5.7,10,9,48.3,2740,9,999999999,160,0.0430,0,88,999.000,999.0,99.0 +1978,8,16,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,16.0,6.6,52,87500,666,1332,358,242,68,207,26500,6800,23100,6230,300,5.0,10,9,48.3,2487,9,999999999,160,0.0430,0,88,999.000,999.0,99.0 +1978,8,16,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,16.3,6.3,50,87500,851,1332,369,252,13,244,29200,1100,28500,10520,310,4.3,10,10,48.3,2233,9,999999999,150,0.0430,0,88,999.000,999.0,99.0 +1978,8,16,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,5.6,48,87500,993,1332,371,273,16,262,32200,1400,31200,12000,310,3.6,10,10,64.4,1980,9,999999999,150,0.0430,0,88,999.000,999.0,99.0 +1978,8,16,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,16.3,6.7,51,87500,1084,1332,370,333,15,320,39000,1400,37900,14380,300,5.0,10,10,64.4,1880,9,999999999,160,0.0430,0,88,999.000,999.0,99.0 +1978,8,16,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,16.0,7.1,55,87400,1116,1332,369,307,10,298,36300,900,35600,13770,300,6.3,10,10,64.4,1780,9,999999999,160,0.0430,0,88,999.000,999.0,99.0 +1978,8,16,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,7.2,58,87400,1088,1332,367,218,10,209,26400,800,25700,10350,290,7.7,10,10,64.4,1680,9,999999999,170,0.0430,0,88,999.000,999.0,99.0 +1978,8,16,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,15.0,6.2,56,87500,1001,1332,363,298,3,296,34800,300,34600,13160,280,6.5,10,10,64.4,1627,9,999999999,160,0.0430,0,88,999.000,999.0,99.0 +1978,8,16,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,14.5,5.0,53,87500,861,1332,359,345,5,341,38800,500,38500,13100,270,5.3,10,10,64.4,1573,9,999999999,150,0.0430,0,88,999.000,999.0,99.0 +1978,8,16,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,3.9,51,87600,679,1332,354,229,4,227,25800,400,25700,8710,260,4.1,10,10,64.4,1520,9,999999999,139,0.0430,0,88,999.000,999.0,99.0 +1978,8,16,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,13.9,4.2,52,87600,466,1332,355,149,2,148,16600,100,16500,5240,260,3.9,10,10,64.4,1470,9,999999999,139,0.0430,0,88,999.000,999.0,99.0 +1978,8,16,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,13.9,4.6,52,87700,237,1332,355,78,1,78,8600,0,8500,2410,270,3.8,10,10,64.4,1420,9,999999999,139,0.0430,0,88,999.000,999.0,99.0 +1978,8,16,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,4.4,53,87700,34,766,355,18,0,18,2000,0,2000,580,270,3.6,10,10,40.2,1370,9,999999999,139,0.0430,0,88,999.000,999.0,99.0 +1978,8,16,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,13.3,4.4,53,87700,0,0,352,0,0,0,0,0,0,0,270,4.3,10,10,40.2,1370,9,999999999,139,0.0430,0,88,999.000,999.0,99.0 +1978,8,16,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,12.8,3.9,53,87800,0,0,349,0,0,0,0,0,0,0,270,5.0,10,10,40.2,1370,9,999999999,129,0.0430,0,88,999.000,999.0,99.0 +1978,8,16,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,12.2,2.8,53,87800,0,0,345,0,0,0,0,0,0,0,270,5.7,10,10,24.1,1370,9,999999999,129,0.0430,0,88,999.000,999.0,99.0 +1978,8,16,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,11.5,3.3,54,87800,0,0,326,0,0,0,0,0,0,0,270,5.2,8,8,24.1,77777,9,999999999,129,0.0430,0,88,999.000,999.0,99.0 +1978,8,17,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,10.7,2.9,56,87800,0,0,313,0,0,0,0,0,0,0,270,4.6,6,6,24.1,77777,9,999999999,120,0.0430,0,88,999.000,999.0,99.0 +1978,8,17,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,10.0,1.7,57,87800,0,0,303,0,0,0,0,0,0,0,270,4.1,4,4,24.1,77777,9,999999999,120,0.0430,0,88,999.000,999.0,99.0 +1978,8,17,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,9.4,2.1,57,87800,0,0,299,0,0,0,0,0,0,0,250,3.4,3,3,24.1,77777,9,999999999,120,0.0430,0,88,999.000,999.0,99.0 +1978,8,17,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,8.9,1.7,58,87800,0,0,296,0,0,0,0,0,0,0,220,2.8,3,3,24.1,77777,9,999999999,120,0.0430,0,88,999.000,999.0,99.0 +1978,8,17,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,8.3,0.6,58,87800,0,0,290,0,0,0,0,0,0,0,200,2.1,2,2,24.1,77777,9,999999999,110,0.0430,0,88,999.000,999.0,99.0 +1978,8,17,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,9.8,1.1,54,87800,26,678,302,16,34,13,0,0,0,0,230,3.8,5,4,24.1,77777,9,999999999,110,0.0310,0,88,999.000,999.0,99.0 +1978,8,17,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,11.3,1.4,49,87800,220,1333,317,93,132,71,10000,9400,8400,1510,260,5.5,7,7,24.1,77777,9,999999999,120,0.0310,0,88,999.000,999.0,99.0 +1978,8,17,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,1.1,45,87900,448,1333,336,185,112,148,20100,10500,16500,3360,290,7.2,10,9,48.3,1370,9,999999999,120,0.0310,0,88,999.000,999.0,99.0 +1978,8,17,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,12.6,2.7,49,87900,663,1333,337,305,201,204,33200,20600,23000,5070,290,7.9,10,9,48.3,1300,9,999999999,120,0.0310,0,88,999.000,999.0,99.0 +1978,8,17,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,12.4,3.5,53,88000,847,1333,347,183,1,182,21600,100,21600,8420,280,8.6,10,10,48.3,1230,9,999999999,129,0.0310,0,88,999.000,999.0,99.0 +1978,8,17,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,3.9,57,88100,990,1333,346,155,1,154,19000,100,18900,7790,280,9.3,10,10,40.2,1160,9,999999999,139,0.0310,0,88,999.000,999.0,99.0 +1978,8,17,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,12.4,4.5,56,88200,1080,1333,348,304,6,299,35900,500,35400,13680,280,9.3,10,10,40.2,1333,9,999999999,139,0.0310,0,88,999.000,999.0,99.0 +1978,8,17,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,12.6,4.3,56,88200,1112,1333,349,361,10,352,42200,900,41400,15490,270,9.3,10,10,40.2,1507,9,999999999,139,0.0310,0,88,999.000,999.0,99.0 +1978,8,17,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,3.9,55,88300,1084,1333,349,389,12,379,45100,1200,44100,16110,270,9.3,10,10,48.3,1680,9,999999999,139,0.0310,0,88,999.000,999.0,99.0 +1978,8,17,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,11.7,5.1,65,88400,997,1333,345,290,4,286,33800,400,33500,12810,300,7.1,10,10,48.3,1403,9,999999999,150,0.0310,0,88,999.000,999.0,99.0 +1978,8,17,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,10.5,6.1,76,88500,857,1333,340,336,3,334,37900,300,37700,12900,340,4.8,10,10,48.3,1127,9,999999999,160,0.0310,0,88,999.000,999.0,99.0 +1978,8,17,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,7.2,86,88600,674,1333,336,136,2,135,16000,100,15900,5970,10,2.6,10,10,16.1,850,9,999999999,170,0.0310,0,88,999.000,999.0,99.0 +1978,8,17,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,9.4,7.1,85,88600,460,1333,336,161,2,160,17800,200,17700,5440,10,2.2,10,10,16.1,800,9,999999999,170,0.0310,0,88,999.000,999.0,99.0 +1978,8,17,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,9.4,7.2,84,88600,232,1333,336,79,1,79,8600,0,8600,2390,360,1.9,10,10,16.1,750,9,999999999,160,0.0310,0,88,999.000,999.0,99.0 +1978,8,17,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,6.7,83,88700,31,722,336,16,0,16,1800,0,1800,530,360,1.5,10,10,24.1,700,9,999999999,160,0.0310,0,88,999.000,999.0,99.0 +1978,8,17,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,9.0,7.2,85,88700,0,0,335,0,0,0,0,0,0,0,360,1.0,10,10,24.1,1027,9,999999999,160,0.0310,0,88,999.000,999.0,99.0 +1978,8,17,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,8.7,7.2,87,88600,0,0,324,0,0,0,0,0,0,0,360,0.5,10,9,24.1,1353,9,999999999,160,0.0310,0,88,999.000,999.0,99.0 +1978,8,17,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,8.3,6.7,89,88600,0,0,322,0,0,0,0,0,0,0,0,0.0,10,9,24.1,1680,9,999999999,160,0.0310,0,88,999.000,999.0,99.0 +1978,8,17,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,8.1,7.5,90,88600,0,0,315,0,0,0,0,0,0,0,310,0.9,10,8,24.1,1627,9,999999999,160,0.0310,0,88,999.000,999.0,99.0 +1978,8,18,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,8.0,7.5,92,88600,0,0,314,0,0,0,0,0,0,0,250,1.7,10,8,24.1,1573,9,999999999,160,0.0310,0,88,999.000,999.0,99.0 +1978,8,18,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,7.8,6.7,93,88600,0,0,308,0,0,0,0,0,0,0,200,2.6,10,7,24.1,1520,9,999999999,160,0.0310,0,88,999.000,999.0,99.0 +1978,8,18,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,7.4,7.2,94,88600,0,0,306,0,0,0,0,0,0,0,250,1.7,9,7,24.1,1430,9,999999999,160,0.0310,0,88,999.000,999.0,99.0 +1978,8,18,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,7.1,7.1,95,88600,0,0,302,0,0,0,0,0,0,0,310,0.9,8,6,24.1,1340,9,999999999,160,0.0310,0,88,999.000,999.0,99.0 +1978,8,18,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,6.7,6.1,96,88600,0,0,299,0,0,0,0,0,0,0,0,0.0,7,6,24.1,1250,9,999999999,160,0.0310,0,88,999.000,999.0,99.0 +1978,8,18,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,8.4,6.6,88,88600,24,633,310,7,11,6,0,0,0,0,360,0.9,7,7,24.1,1240,9,999999999,160,0.0670,0,88,999.000,999.0,99.0 +1978,8,18,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,10.0,7.0,80,88600,215,1333,318,102,198,69,10500,13100,8400,1350,350,1.7,8,7,24.1,1230,9,999999999,160,0.0670,0,88,999.000,999.0,99.0 +1978,8,18,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,6.7,72,88600,444,1333,330,190,124,149,20600,11600,16700,3380,350,2.6,8,8,48.3,1220,9,999999999,160,0.0670,0,88,999.000,999.0,99.0 +1978,8,18,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,13.4,7.0,64,88600,659,1333,333,257,155,180,28300,15900,20400,4460,320,4.1,7,7,48.3,2033,9,999999999,160,0.0670,0,88,999.000,999.0,99.0 +1978,8,18,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,15.0,6.5,56,88600,844,1333,340,527,496,211,56100,51100,23700,5220,300,5.7,7,7,48.3,2847,9,999999999,160,0.0670,0,88,999.000,999.0,99.0 +1978,8,18,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,5.6,48,88600,986,1333,343,509,402,210,55500,41900,24400,6340,270,7.2,6,6,48.3,3660,9,999999999,150,0.0670,0,88,999.000,999.0,99.0 +1978,8,18,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,17.8,5.6,44,88500,1077,1333,353,693,521,269,74600,54400,30500,9930,270,6.9,7,7,48.3,2847,9,999999999,150,0.0670,0,88,999.000,999.0,99.0 +1978,8,18,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,18.9,4.9,39,88500,1109,1333,357,509,292,265,56800,31800,30300,9870,280,6.5,7,7,48.3,2033,9,999999999,150,0.0670,0,88,999.000,999.0,99.0 +1978,8,18,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,3.9,35,88400,1080,1333,367,537,201,373,58900,21400,41500,13680,280,6.2,8,8,48.3,1220,9,999999999,139,0.0670,0,88,999.000,999.0,99.0 +1978,8,18,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,20.6,3.6,33,88400,992,1333,364,634,513,249,67900,53400,28000,7690,290,5.5,7,7,48.3,1220,9,999999999,139,0.0670,0,88,999.000,999.0,99.0 +1978,8,18,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,21.1,3.2,31,88300,852,1333,366,447,456,152,49000,47200,18800,3700,290,4.8,7,7,48.3,1220,9,999999999,129,0.0670,0,88,999.000,999.0,99.0 +1978,8,18,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,2.8,29,88300,669,1333,364,342,326,177,36900,33900,19900,3890,300,4.1,6,6,48.3,1220,9,999999999,129,0.0670,0,88,999.000,999.0,99.0 +1978,8,18,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,19.8,3.3,34,88300,455,1333,350,232,369,104,24300,34000,12700,1960,280,3.8,5,4,48.3,77777,9,999999999,129,0.0670,0,88,999.000,999.0,99.0 +1978,8,18,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,18.0,3.9,39,88200,226,1333,339,100,276,51,10200,19100,7000,920,260,3.4,3,3,48.3,77777,9,999999999,139,0.0670,0,88,999.000,999.0,99.0 +1978,8,18,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,3.9,44,88200,28,700,323,17,44,13,1600,1100,1600,220,240,3.1,2,1,64.4,77777,9,999999999,139,0.0670,0,88,999.000,999.0,99.0 +1978,8,18,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,14.6,4.2,48,88200,0,0,316,0,0,0,0,0,0,0,300,2.9,3,1,64.4,77777,9,999999999,139,0.0670,0,88,999.000,999.0,99.0 +1978,8,18,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,13.2,4.0,53,88200,0,0,310,0,0,0,0,0,0,0,350,2.8,3,1,64.4,77777,9,999999999,139,0.0670,0,88,999.000,999.0,99.0 +1978,8,18,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,11.7,3.3,57,88200,0,0,303,0,0,0,0,0,0,0,50,2.6,4,1,24.1,77777,9,999999999,129,0.0670,0,88,999.000,999.0,99.0 +1978,8,18,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,10.8,4.3,62,88200,0,0,300,0,0,0,0,0,0,0,30,1.7,4,1,24.1,77777,9,999999999,139,0.0670,0,88,999.000,999.0,99.0 +1978,8,19,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,9.8,4.5,66,88200,0,0,300,0,0,0,0,0,0,0,20,0.9,5,2,24.1,77777,9,999999999,139,0.0670,0,88,999.000,999.0,99.0 +1978,8,19,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,8.9,3.9,71,88200,0,0,296,0,0,0,0,0,0,0,0,0.0,5,2,24.1,77777,9,999999999,139,0.0670,0,88,999.000,999.0,99.0 +1978,8,19,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,8.5,4.6,73,88200,0,0,295,0,0,0,0,0,0,0,320,0.7,5,2,24.1,77777,9,999999999,139,0.0670,0,88,999.000,999.0,99.0 +1978,8,19,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,8.2,4.7,75,88100,0,0,297,0,0,0,0,0,0,0,280,1.4,5,3,24.1,77777,9,999999999,139,0.0670,0,88,999.000,999.0,99.0 +1978,8,19,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,7.8,3.9,77,88100,0,0,294,0,0,0,0,0,0,0,240,2.1,5,3,24.1,77777,9,999999999,139,0.0670,0,88,999.000,999.0,99.0 +1978,8,19,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,8.9,4.4,73,88100,22,611,299,15,31,12,0,0,0,0,250,2.1,6,3,24.1,77777,9,999999999,139,0.0470,0,88,999.000,999.0,99.0 +1978,8,19,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,10.0,4.7,68,88100,211,1334,304,68,104,52,7300,6800,6200,960,270,2.1,7,3,24.1,77777,9,999999999,139,0.0470,0,88,999.000,999.0,99.0 +1978,8,19,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,4.4,64,88200,440,1334,309,252,410,115,26100,37300,13800,2190,280,2.1,8,3,64.4,77777,9,999999999,139,0.0470,0,88,999.000,999.0,99.0 +1978,8,19,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,14.3,5.9,56,88100,655,1334,327,323,400,126,35100,40100,15300,2570,320,2.1,8,4,64.4,77777,9,999999999,150,0.0470,0,88,999.000,999.0,99.0 +1978,8,19,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,17.4,6.5,49,88000,840,1334,348,362,214,227,39500,22900,25100,5710,360,2.1,9,6,64.4,77777,9,999999999,160,0.0470,0,88,999.000,999.0,99.0 +1978,8,19,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,6.7,41,88000,983,1334,368,466,253,279,51100,27400,30800,8390,40,2.1,9,7,64.4,3660,9,999999999,160,0.0470,0,88,999.000,999.0,99.0 +1978,8,19,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,21.5,6.1,36,87900,1073,1334,377,277,67,223,31400,7200,25600,8080,40,2.6,9,8,64.4,3050,9,999999999,150,0.0470,0,88,999.000,999.0,99.0 +1978,8,19,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,22.4,4.8,32,87900,1105,1334,380,353,130,245,39900,14000,28300,9370,50,3.1,10,8,64.4,2440,9,999999999,139,0.0470,0,88,999.000,999.0,99.0 +1978,8,19,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,3.3,27,87900,1076,1334,391,310,103,227,35100,11100,26200,8260,50,3.6,10,9,64.4,1830,9,999999999,129,0.0470,0,88,999.000,999.0,99.0 +1978,8,19,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,23.5,2.7,25,87800,988,1334,391,379,89,312,41700,9100,34900,11680,40,3.1,10,9,64.4,1727,9,999999999,129,0.0470,0,88,999.000,999.0,99.0 +1978,8,19,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,23.7,1.8,24,87800,847,1334,402,259,2,258,29800,200,29700,10900,30,2.6,10,10,64.4,1623,9,999999999,120,0.0470,0,88,999.000,999.0,99.0 +1978,8,19,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,1.1,22,87700,663,1334,402,162,24,150,17900,2400,16700,4770,20,2.1,10,10,48.3,1520,9,999999999,110,0.0470,0,88,999.000,999.0,99.0 +1978,8,19,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,21.9,2.5,29,87800,449,1334,394,141,15,136,15800,1000,15400,4860,10,2.8,10,10,48.3,1520,9,999999999,129,0.0470,0,88,999.000,999.0,99.0 +1978,8,19,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,19.8,4.1,36,87800,219,1334,385,50,0,50,5600,0,5600,1750,360,3.4,10,10,48.3,1520,9,999999999,139,0.0470,0,88,999.000,999.0,99.0 +1978,8,19,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,5.0,43,87900,25,656,375,10,0,10,0,0,0,0,350,4.1,10,10,24.1,1520,9,999999999,150,0.0470,0,88,999.000,999.0,99.0 +1978,8,19,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,17.1,5.5,45,87900,0,0,355,0,0,0,0,0,0,0,320,3.6,9,8,24.1,2030,9,999999999,150,0.0470,0,88,999.000,999.0,99.0 +1978,8,19,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,16.3,5.5,48,88000,0,0,345,0,0,0,0,0,0,0,290,3.1,8,7,24.1,2540,9,999999999,150,0.0470,0,88,999.000,999.0,99.0 +1978,8,19,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,15.6,5.0,50,88100,0,0,334,0,0,0,0,0,0,0,260,2.6,7,5,24.1,3050,9,999999999,150,0.0470,0,88,999.000,999.0,99.0 +1978,8,19,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,14.3,6.0,55,88100,0,0,330,0,0,0,0,0,0,0,290,2.6,7,5,24.1,3050,9,999999999,150,0.0470,0,88,999.000,999.0,99.0 +1978,8,20,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,13.0,6.2,61,88100,0,0,324,0,0,0,0,0,0,0,320,2.6,7,5,24.1,3050,9,999999999,150,0.0470,0,88,999.000,999.0,99.0 +1978,8,20,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,11.7,5.6,66,88100,0,0,317,0,0,0,0,0,0,0,350,2.6,7,5,24.1,3050,9,999999999,150,0.0470,0,88,999.000,999.0,99.0 +1978,8,20,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,11.9,6.3,65,88100,0,0,322,0,0,0,0,0,0,0,320,2.9,8,6,24.1,3050,9,999999999,150,0.0470,0,88,999.000,999.0,99.0 +1978,8,20,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,12.0,6.4,65,88100,0,0,331,0,0,0,0,0,0,0,290,3.3,9,8,24.1,3050,9,999999999,150,0.0470,0,88,999.000,999.0,99.0 +1978,8,20,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,12.2,5.6,64,88100,0,0,339,0,0,0,0,0,0,0,260,3.6,10,9,24.1,3050,9,999999999,150,0.0470,0,88,999.000,999.0,99.0 +1978,8,20,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,12.8,6.3,63,88100,20,589,342,10,3,9,0,0,0,0,280,2.9,10,9,24.1,2947,9,999999999,160,0.0330,0,88,999.000,999.0,99.0 +1978,8,20,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,13.3,6.8,63,88100,207,1334,345,79,14,77,8600,400,8500,2200,290,2.2,10,9,24.1,2843,9,999999999,160,0.0330,0,88,999.000,999.0,99.0 +1978,8,20,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,6.7,62,88100,436,1334,348,159,60,140,17500,5600,15700,3670,310,1.5,10,9,64.4,2740,9,999999999,160,0.0330,0,88,999.000,999.0,99.0 +1978,8,20,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,15.7,7.8,57,88100,651,1334,345,329,356,154,34900,35600,17500,3190,310,2.2,8,7,64.4,77777,9,999999999,170,0.0330,0,88,999.000,999.0,99.0 +1978,8,20,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,17.6,8.0,52,88100,837,1334,345,538,640,135,57100,64800,16300,3370,320,2.9,5,4,64.4,77777,9,999999999,170,0.0330,0,88,999.000,999.0,99.0 +1978,8,20,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,7.8,47,88100,979,1334,347,633,659,146,67800,67600,18100,4480,320,3.6,3,2,64.4,77777,9,999999999,170,0.0330,0,88,999.000,999.0,99.0 +1978,8,20,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,20.7,7.8,42,88000,1069,1334,357,774,764,158,80800,76800,19100,5220,330,2.4,5,3,64.4,77777,9,999999999,170,0.0330,0,88,999.000,999.0,99.0 +1978,8,20,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,22.0,7.1,38,87900,1101,1334,368,788,778,142,83500,78700,18400,5250,350,1.2,6,5,64.4,77777,9,999999999,160,0.0330,0,88,999.000,999.0,99.0 +1978,8,20,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,6.1,33,87900,1072,1334,376,550,366,254,59500,38200,28700,9210,0,0.0,8,6,64.4,7620,9,999999999,160,0.0330,0,88,999.000,999.0,99.0 +1978,8,20,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.2,6.4,32,87800,983,1334,381,443,217,282,48400,23500,31100,8500,350,1.0,8,6,64.4,7620,9,999999999,160,0.0330,0,88,999.000,999.0,99.0 +1978,8,20,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,25.2,6.5,30,87800,842,1334,387,513,536,170,53200,53800,19200,4140,350,2.1,8,6,64.4,7620,9,999999999,160,0.0330,0,88,999.000,999.0,99.0 +1978,8,20,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,6.7,29,87700,658,1334,391,311,281,171,33600,29100,19200,3720,340,3.1,8,6,64.4,7620,9,999999999,160,0.0330,0,88,999.000,999.0,99.0 +1978,8,20,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.1,7.0,34,87800,443,1334,386,208,206,138,21800,19200,15400,2840,330,6.2,9,7,64.4,5587,9,999999999,170,0.0330,0,88,999.000,999.0,99.0 +1978,8,20,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,22.0,7.4,39,87900,213,1334,376,72,78,60,7900,5500,7000,1270,330,9.3,9,7,64.4,3553,9,999999999,170,0.0330,0,88,999.000,999.0,99.0 +1978,8,20,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,7.2,44,88000,22,612,371,15,7,14,0,0,0,0,320,12.4,10,8,24.1,1520,9,999999999,170,0.0330,0,88,999.000,999.0,99.0 +1978,8,20,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,18.1,8.3,53,88100,0,0,353,0,0,0,0,0,0,0,290,9.1,9,6,24.1,77777,9,999999999,179,0.0330,0,88,999.000,999.0,99.0 +1978,8,20,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,16.3,8.9,61,88100,0,0,342,0,0,0,0,0,0,0,250,5.9,7,5,24.1,77777,9,999999999,189,0.0330,0,88,999.000,999.0,99.0 +1978,8,20,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,14.4,8.9,70,88200,0,0,328,0,0,0,0,0,0,0,220,2.6,6,3,24.1,77777,9,999999999,189,0.0330,0,88,999.000,999.0,99.0 +1978,8,20,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,13.9,9.2,70,88200,0,0,323,0,0,0,0,0,0,0,270,1.7,5,2,24.1,77777,9,999999999,179,0.0330,0,88,999.000,999.0,99.0 +1978,8,21,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,13.3,8.6,69,88200,0,0,320,0,0,0,0,0,0,0,310,0.9,4,2,24.1,77777,9,999999999,170,0.0330,0,88,999.000,999.0,99.0 +1978,8,21,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,12.8,7.2,69,88300,0,0,312,0,0,0,0,0,0,0,0,0.0,3,1,24.1,77777,9,999999999,170,0.0330,0,88,999.000,999.0,99.0 +1978,8,21,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,11.5,7.8,75,88300,0,0,307,0,0,0,0,0,0,0,0,0.0,2,1,24.1,77777,9,999999999,170,0.0330,0,88,999.000,999.0,99.0 +1978,8,21,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,10.2,7.6,80,88300,0,0,295,0,0,0,0,0,0,0,0,0.0,1,0,24.1,77777,9,999999999,170,0.0330,0,88,999.000,999.0,99.0 +1978,8,21,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,8.9,6.7,86,88300,0,0,289,0,0,0,0,0,0,0,0,0.0,0,0,64.4,77777,9,999999999,160,0.0330,0,88,999.000,999.0,99.0 +1978,8,21,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,10.6,7.8,81,88300,18,545,297,15,77,8,0,0,0,0,0,0.0,0,0,64.4,77777,9,999999999,170,0.0440,0,88,999.000,999.0,99.0 +1978,8,21,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,12.2,8.6,77,88300,202,1335,305,106,523,26,10900,38000,5100,540,0,0.0,0,0,64.4,77777,9,999999999,179,0.0440,0,88,999.000,999.0,99.0 +1978,8,21,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,8.9,72,88300,432,1335,312,279,736,39,29400,67300,7600,990,0,0.0,0,0,64.4,77777,9,999999999,189,0.0440,0,88,999.000,999.0,99.0 +1978,8,21,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,16.3,9.2,62,88300,648,1335,323,465,846,52,48900,82300,8900,1350,20,0.9,0,0,64.4,77777,9,999999999,189,0.0440,0,88,999.000,999.0,99.0 +1978,8,21,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,18.7,8.7,52,88200,833,1335,334,623,893,63,65300,88700,9800,1730,40,1.7,0,0,64.4,77777,9,999999999,179,0.0440,0,88,999.000,999.0,99.0 +1978,8,21,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,7.8,42,88200,976,1335,344,753,928,70,78500,92900,10500,2170,60,2.6,0,0,64.4,77777,9,999999999,170,0.0440,0,88,999.000,999.0,99.0 +1978,8,21,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,22.8,8.2,38,88100,1066,1335,359,784,898,63,82100,90200,10000,2320,60,3.3,1,1,64.4,77777,9,999999999,170,0.0440,0,88,999.000,999.0,99.0 +1978,8,21,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.4,7.8,34,88100,1097,1335,366,865,957,73,90100,96100,10900,2740,50,3.9,1,1,64.4,77777,9,999999999,170,0.0440,0,88,999.000,999.0,99.0 +1978,8,21,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,7.2,30,88000,1067,1335,379,851,949,87,88200,95100,12000,2900,50,4.6,2,2,64.4,77777,9,999999999,170,0.0440,0,88,999.000,999.0,99.0 +1978,8,21,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,26.3,7.1,29,87900,979,1335,384,562,523,175,59300,53200,20200,5270,40,4.1,5,3,64.4,77777,9,999999999,170,0.0440,0,88,999.000,999.0,99.0 +1978,8,21,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,26.5,6.9,29,87800,837,1335,384,554,639,149,58100,64500,17600,3680,40,3.6,7,3,64.4,77777,9,999999999,160,0.0440,0,88,999.000,999.0,99.0 +1978,8,21,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,6.7,28,87700,652,1335,388,390,471,157,41100,47000,18100,3260,30,3.1,10,4,64.4,77777,9,999999999,160,0.0440,0,88,999.000,999.0,99.0 +1978,8,21,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,25.2,6.8,31,87800,437,1335,387,172,102,137,18500,9500,15400,3100,350,3.3,10,6,64.4,77777,9,999999999,160,0.0440,0,88,999.000,999.0,99.0 +1978,8,21,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,23.7,7.1,34,87800,207,1335,390,75,63,65,8100,4300,7400,1380,310,3.4,10,8,64.4,77777,9,999999999,160,0.0440,0,88,999.000,999.0,99.0 +1978,8,21,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,6.7,37,87800,19,590,401,10,1,10,0,0,0,0,270,3.6,10,10,24.1,1830,9,999999999,160,0.0440,0,88,999.000,999.0,99.0 +1978,8,21,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,21.1,7.6,41,87800,0,0,385,0,0,0,0,0,0,0,270,3.9,9,9,24.1,1830,9,999999999,170,0.0440,0,88,999.000,999.0,99.0 +1978,8,21,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,20.0,8.0,45,87900,0,0,372,0,0,0,0,0,0,0,280,4.3,9,8,24.1,1830,9,999999999,170,0.0440,0,88,999.000,999.0,99.0 +1978,8,21,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,18.9,7.8,49,87900,0,0,361,0,0,0,0,0,0,0,280,4.6,8,7,24.1,1830,9,999999999,179,0.0440,0,88,999.000,999.0,99.0 +1978,8,21,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,18.0,8.3,51,87900,0,0,350,0,0,0,0,0,0,0,280,4.1,7,5,24.1,77777,9,999999999,170,0.0440,0,88,999.000,999.0,99.0 +1978,8,22,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,17.0,7.9,52,87900,0,0,342,0,0,0,0,0,0,0,290,3.6,5,4,24.1,77777,9,999999999,170,0.0440,0,88,999.000,999.0,99.0 +1978,8,22,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,16.1,6.7,54,87900,0,0,330,0,0,0,0,0,0,0,290,3.1,4,2,24.1,77777,9,999999999,160,0.0440,0,88,999.000,999.0,99.0 +1978,8,22,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,15.4,7.2,56,87800,0,0,331,0,0,0,0,0,0,0,280,3.3,5,3,24.1,77777,9,999999999,160,0.0440,0,88,999.000,999.0,99.0 +1978,8,22,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,14.6,7.1,58,87800,0,0,330,0,0,0,0,0,0,0,270,3.4,6,4,24.1,77777,9,999999999,160,0.0440,0,88,999.000,999.0,99.0 +1978,8,22,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,13.9,6.1,60,87700,0,0,328,0,0,0,0,0,0,0,260,3.6,7,5,40.2,7620,9,999999999,160,0.0440,0,88,999.000,999.0,99.0 +1978,8,22,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,14.8,7.0,59,87700,16,523,333,8,11,7,0,0,0,0,280,3.6,6,5,40.2,77777,9,999999999,160,0.0600,0,88,999.000,999.0,99.0 +1978,8,22,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,15.8,7.7,57,87600,198,1336,336,86,264,47,9000,17000,6500,850,290,3.6,6,4,40.2,77777,9,999999999,170,0.0600,0,88,999.000,999.0,99.0 +1978,8,22,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,7.8,56,87500,428,1336,340,195,289,102,21000,26800,12400,1980,310,3.6,5,4,64.4,77777,9,999999999,170,0.0600,0,88,999.000,999.0,99.0 +1978,8,22,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,18.7,8.9,51,87500,644,1336,351,368,521,116,38400,51000,13800,2420,330,3.6,6,4,64.4,77777,9,999999999,179,0.0600,0,88,999.000,999.0,99.0 +1978,8,22,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,20.8,9.1,46,87400,829,1336,359,526,618,140,55500,62400,16700,3450,350,3.6,7,3,64.4,77777,9,999999999,179,0.0600,0,88,999.000,999.0,99.0 +1978,8,22,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,8.9,41,87300,972,1336,368,606,529,219,65600,55100,25400,6450,10,3.6,8,3,64.4,77777,9,999999999,179,0.0600,0,88,999.000,999.0,99.0 +1978,8,22,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,23.2,9.6,41,87200,1062,1336,374,673,636,164,72200,65300,20100,5890,340,5.1,8,4,64.4,77777,9,999999999,189,0.0600,0,88,999.000,999.0,99.0 +1978,8,22,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,23.5,9.6,40,87100,1093,1336,382,681,491,277,73300,51300,31200,10620,310,6.7,8,6,64.4,77777,9,999999999,189,0.0600,0,88,999.000,999.0,99.0 +1978,8,22,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,9.4,40,87000,1063,1336,388,645,461,276,69200,48100,30800,9850,280,8.2,8,7,32.2,1520,9,999999999,189,0.0600,0,88,999.000,999.0,99.0 +1978,8,22,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,21.3,8.0,43,87200,974,1336,369,601,515,222,64900,53600,25700,6570,280,9.1,7,6,32.2,77777,9,999999999,179,0.0600,0,88,999.000,999.0,99.0 +1978,8,22,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,18.7,6.5,45,87400,832,1336,351,469,479,167,50800,49400,20000,4000,270,9.9,5,5,32.2,77777,9,999999999,160,0.0600,0,88,999.000,999.0,99.0 +1978,8,22,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,5.0,48,87600,647,1336,334,389,544,122,40200,53200,14400,2530,270,10.8,4,4,48.3,77777,9,999999999,150,0.0600,0,88,999.000,999.0,99.0 +1978,8,22,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,15.4,4.5,48,87700,431,1336,333,266,582,74,27300,52500,10300,1410,280,8.9,5,5,48.3,77777,9,999999999,139,0.0600,0,88,999.000,999.0,99.0 +1978,8,22,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,14.6,4.2,49,87700,201,1336,329,83,141,61,8600,8900,7200,1180,280,7.1,5,5,48.3,77777,9,999999999,139,0.0600,0,88,999.000,999.0,99.0 +1978,8,22,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,3.3,49,87800,17,545,328,11,17,10,0,0,0,0,290,5.2,6,6,32.2,2440,9,999999999,129,0.0600,0,88,999.000,999.0,99.0 +1978,8,22,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,12.8,3.8,53,87800,0,0,318,0,0,0,0,0,0,0,300,4.5,4,4,32.2,77777,9,999999999,129,0.0600,0,88,999.000,999.0,99.0 +1978,8,22,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,11.7,3.8,57,87900,0,0,308,0,0,0,0,0,0,0,300,3.8,2,2,32.2,77777,9,999999999,129,0.0600,0,88,999.000,999.0,99.0 +1978,8,22,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,10.6,3.3,61,87900,0,0,293,0,0,0,0,0,0,0,310,3.1,0,0,24.1,77777,9,999999999,129,0.0600,0,88,999.000,999.0,99.0 +1978,8,22,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,10.0,4.1,63,87900,0,0,291,0,0,0,0,0,0,0,260,2.8,0,0,24.1,77777,9,999999999,129,0.0600,0,88,999.000,999.0,99.0 +1978,8,23,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,9.5,4.1,66,87900,0,0,289,0,0,0,0,0,0,0,220,2.4,0,0,24.1,77777,9,999999999,129,0.0600,0,88,999.000,999.0,99.0 +1978,8,23,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,8.9,3.3,68,87900,0,0,286,0,0,0,0,0,0,0,170,2.1,0,0,24.1,77777,9,999999999,129,0.0600,0,88,999.000,999.0,99.0 +1978,8,23,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,9.1,4.0,67,87900,0,0,293,0,0,0,0,0,0,0,190,2.3,1,1,24.1,77777,9,999999999,129,0.0600,0,88,999.000,999.0,99.0 +1978,8,23,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,9.2,4.1,67,88000,0,0,293,0,0,0,0,0,0,0,210,2.4,1,1,24.1,77777,9,999999999,129,0.0600,0,88,999.000,999.0,99.0 +1978,8,23,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,9.4,3.3,66,88000,0,0,297,0,0,0,0,0,0,0,230,2.6,2,2,40.2,77777,9,999999999,129,0.0600,0,88,999.000,999.0,99.0 +1978,8,23,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,10.3,4.0,64,88000,14,501,302,11,27,9,0,0,0,0,270,1.7,2,2,40.2,77777,9,999999999,139,0.0580,0,88,999.000,999.0,99.0 +1978,8,23,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,11.3,4.5,61,88100,193,1336,302,92,445,27,9400,31700,4800,540,320,0.9,1,1,40.2,77777,9,999999999,139,0.0580,0,88,999.000,999.0,99.0 +1978,8,23,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,4.4,59,88100,424,1336,306,257,662,46,27100,60500,7900,1000,0,0.0,1,1,64.4,77777,9,999999999,139,0.0580,0,88,999.000,999.0,99.0 +1978,8,23,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,14.6,4.2,50,88100,640,1336,316,420,741,63,45100,73000,10000,1460,340,1.7,3,1,64.4,77777,9,999999999,139,0.0580,0,88,999.000,999.0,99.0 +1978,8,23,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,17.0,3.2,40,88000,826,1336,330,548,714,104,57600,71400,13400,2500,330,3.5,4,2,64.4,77777,9,999999999,129,0.0580,0,88,999.000,999.0,99.0 +1978,8,23,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,1.7,31,88000,968,1336,340,683,769,123,72200,77500,15900,3490,310,5.2,6,2,64.4,77777,9,999999999,120,0.0580,0,88,999.000,999.0,99.0 +1978,8,23,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,20.3,2.6,30,88000,1058,1336,348,708,639,199,74900,65100,23200,6950,310,5.2,7,3,64.4,77777,9,999999999,120,0.0580,0,88,999.000,999.0,99.0 +1978,8,23,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,21.3,2.8,29,88000,1089,1336,359,720,577,247,75300,58200,27700,9090,320,5.2,9,5,64.4,77777,9,999999999,129,0.0580,0,88,999.000,999.0,99.0 +1978,8,23,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,2.8,28,88000,1059,1336,367,564,319,309,61800,34600,34300,10560,320,5.2,10,6,64.4,6100,9,999999999,129,0.0580,0,88,999.000,999.0,99.0 +1978,8,23,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,23.1,2.9,27,87900,969,1336,365,570,460,233,61200,47900,26400,6860,320,5.2,8,4,64.4,77777,9,999999999,129,0.0580,0,88,999.000,999.0,99.0 +1978,8,23,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.1,2.8,25,87900,827,1336,367,427,412,169,46200,42500,19800,4030,310,5.2,5,3,64.4,77777,9,999999999,129,0.0580,0,88,999.000,999.0,99.0 +1978,8,23,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,2.8,24,87900,641,1336,363,437,763,65,46400,75100,10200,1500,310,5.2,3,1,64.4,77777,9,999999999,129,0.0580,0,88,999.000,999.0,99.0 +1978,8,23,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,22.6,3.4,30,87900,425,1336,352,267,671,49,27600,61200,8100,1040,280,4.0,4,1,64.4,77777,9,999999999,139,0.0580,0,88,999.000,999.0,99.0 +1978,8,23,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,20.2,4.2,36,88000,194,1336,335,100,406,38,9900,27000,6000,680,240,2.7,6,0,64.4,77777,9,999999999,139,0.0580,0,88,999.000,999.0,99.0 +1978,8,23,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,4.4,42,88000,14,501,325,14,40,10,0,0,0,0,210,1.5,7,0,32.2,77777,9,999999999,139,0.0580,0,88,999.000,999.0,99.0 +1978,8,23,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,16.1,4.8,46,88000,0,0,324,0,0,0,0,0,0,0,240,2.0,6,1,32.2,77777,9,999999999,139,0.0580,0,88,999.000,999.0,99.0 +1978,8,23,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,14.5,4.6,51,88000,0,0,316,0,0,0,0,0,0,0,260,2.6,5,1,32.2,77777,9,999999999,139,0.0580,0,88,999.000,999.0,99.0 +1978,8,23,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,12.8,3.9,55,88100,0,0,312,0,0,0,0,0,0,0,290,3.1,4,2,24.1,77777,9,999999999,139,0.0580,0,88,999.000,999.0,99.0 +1978,8,23,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,12.1,4.7,58,88100,0,0,306,0,0,0,0,0,0,0,290,2.8,3,1,24.1,77777,9,999999999,139,0.0580,0,88,999.000,999.0,99.0 +1978,8,24,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,11.3,4.7,61,88100,0,0,303,0,0,0,0,0,0,0,280,2.4,1,1,24.1,77777,9,999999999,139,0.0580,0,88,999.000,999.0,99.0 +1978,8,24,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,10.6,3.9,64,88100,0,0,293,0,0,0,0,0,0,0,280,2.1,0,0,24.1,77777,9,999999999,139,0.0580,0,88,999.000,999.0,99.0 +1978,8,24,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,10.0,4.4,65,88100,0,0,297,0,0,0,0,0,0,0,280,2.1,2,1,24.1,77777,9,999999999,139,0.0580,0,88,999.000,999.0,99.0 +1978,8,24,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,9.5,4.3,67,88100,0,0,299,0,0,0,0,0,0,0,290,2.1,5,2,24.1,77777,9,999999999,139,0.0580,0,88,999.000,999.0,99.0 +1978,8,24,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,8.9,3.3,68,88100,0,0,298,0,0,0,0,0,0,0,290,2.1,7,3,40.2,77777,9,999999999,129,0.0580,0,88,999.000,999.0,99.0 +1978,8,24,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,10.0,4.0,65,88100,13,479,300,13,39,9,0,0,0,0,310,1.4,8,2,40.2,77777,9,999999999,139,0.0350,0,88,999.000,999.0,99.0 +1978,8,24,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,11.1,4.5,62,88100,189,1337,306,76,212,46,7900,13300,6000,830,340,0.7,9,2,40.2,77777,9,999999999,139,0.0350,0,88,999.000,999.0,99.0 +1978,8,24,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,4.4,59,88200,420,1337,306,252,518,88,25700,45900,11300,1610,0,0.0,10,1,64.4,77777,9,999999999,139,0.0350,0,88,999.000,999.0,99.0 +1978,8,24,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,14.8,5.5,52,88100,636,1337,319,419,683,92,44300,67400,12200,1970,20,1.0,10,1,64.4,77777,9,999999999,150,0.0350,0,88,999.000,999.0,99.0 +1978,8,24,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,17.4,5.8,46,88100,822,1337,324,620,805,122,64100,79900,14800,2730,30,2.1,10,0,64.4,77777,9,999999999,150,0.0350,0,88,999.000,999.0,99.0 +1978,8,24,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,5.6,39,88100,964,1337,336,750,841,140,78100,84300,17200,3780,50,3.1,10,0,64.4,77777,9,999999999,150,0.0350,0,88,999.000,999.0,99.0 +1978,8,24,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,22.6,6.3,34,88000,1054,1337,349,823,846,152,86100,85100,18800,4860,30,3.4,10,0,64.4,77777,9,999999999,160,0.0350,0,88,999.000,999.0,99.0 +1978,8,24,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,25.2,6.3,30,87900,1085,1337,368,795,825,120,81500,82500,14400,3550,20,3.8,9,1,64.4,77777,9,999999999,160,0.0350,0,88,999.000,999.0,99.0 +1978,8,24,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,6.1,25,87800,1054,1337,381,725,748,130,76900,75700,17000,4340,360,4.1,9,1,64.4,77777,9,999999999,160,0.0350,0,88,999.000,999.0,99.0 +1978,8,24,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,28.9,4.5,22,87700,964,1337,385,698,807,111,74400,81700,15300,3220,360,4.1,9,1,64.4,77777,9,999999999,150,0.0350,0,88,999.000,999.0,99.0 +1978,8,24,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,30.0,2.8,18,87700,822,1337,388,574,748,109,59800,74600,13800,2560,10,4.1,10,1,64.4,77777,9,999999999,129,0.0350,0,88,999.000,999.0,99.0 +1978,8,24,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,1.1,15,87600,635,1337,391,421,691,87,44300,68300,11800,1870,10,4.1,10,1,64.4,77777,9,999999999,120,0.0350,0,88,999.000,999.0,99.0 +1978,8,24,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,29.1,1.9,18,87700,419,1337,391,236,400,108,24300,35800,13100,2040,330,4.5,9,3,64.4,77777,9,999999999,129,0.0350,0,88,999.000,999.0,99.0 +1978,8,24,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,27.0,2.9,22,87700,188,1337,385,82,217,50,8300,13500,6400,910,300,4.8,9,4,64.4,77777,9,999999999,129,0.0350,0,88,999.000,999.0,99.0 +1978,8,24,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,3.3,25,87700,12,457,381,11,23,9,0,0,0,0,260,5.2,8,6,24.1,2130,9,999999999,129,0.0350,0,88,999.000,999.0,99.0 +1978,8,24,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,23.7,3.8,27,87800,0,0,372,0,0,0,0,0,0,0,260,4.7,7,5,24.1,77777,9,999999999,129,0.0350,0,88,999.000,999.0,99.0 +1978,8,24,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,22.4,3.8,29,87800,0,0,360,0,0,0,0,0,0,0,260,4.1,7,3,24.1,77777,9,999999999,129,0.0350,0,88,999.000,999.0,99.0 +1978,8,24,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,21.1,3.3,31,87900,0,0,350,0,0,0,0,0,0,0,260,3.6,6,2,24.1,77777,9,999999999,129,0.0350,0,88,999.000,999.0,99.0 +1978,8,24,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,19.1,4.3,37,87900,0,0,341,0,0,0,0,0,0,0,250,3.3,5,2,24.1,77777,9,999999999,139,0.0350,0,88,999.000,999.0,99.0 +1978,8,25,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,17.0,4.5,42,88000,0,0,327,0,0,0,0,0,0,0,240,2.9,3,1,24.1,77777,9,999999999,139,0.0350,0,88,999.000,999.0,99.0 +1978,8,25,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,15.0,3.9,48,88000,0,0,318,0,0,0,0,0,0,0,230,2.6,2,1,24.1,77777,9,999999999,139,0.0350,0,88,999.000,999.0,99.0 +1978,8,25,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,13.7,4.4,52,88000,0,0,317,0,0,0,0,0,0,0,240,2.8,4,2,24.1,77777,9,999999999,139,0.0350,0,88,999.000,999.0,99.0 +1978,8,25,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,12.4,4.3,55,88000,0,0,311,0,0,0,0,0,0,0,240,2.9,5,2,24.1,77777,9,999999999,139,0.0350,0,88,999.000,999.0,99.0 +1978,8,25,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,11.1,3.3,59,88100,0,0,307,0,0,0,0,0,0,0,250,3.1,7,3,24.1,77777,9,999999999,129,0.0350,0,88,999.000,999.0,99.0 +1978,8,25,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,12.6,4.0,55,88100,11,435,312,9,31,6,0,0,0,0,290,2.1,5,2,24.1,77777,9,999999999,139,0.0540,0,88,999.000,999.0,99.0 +1978,8,25,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,14.1,4.5,52,88100,184,1337,315,88,436,27,8900,30400,4700,530,320,1.0,2,1,24.1,77777,9,999999999,139,0.0540,0,88,999.000,999.0,99.0 +1978,8,25,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,4.4,48,88100,415,1337,315,230,601,42,24400,54800,7400,930,0,0.0,0,0,64.4,77777,9,999999999,139,0.0540,0,88,999.000,999.0,99.0 +1978,8,25,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,17.8,5.9,44,88100,632,1337,326,447,822,56,46900,79700,9100,1380,360,0.5,0,0,64.4,77777,9,999999999,150,0.0540,0,88,999.000,999.0,99.0 +1978,8,25,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,20.0,6.5,41,88000,818,1337,337,612,884,68,63900,87600,10200,1780,10,1.0,0,0,64.4,77777,9,999999999,160,0.0540,0,88,999.000,999.0,99.0 +1978,8,25,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,6.7,37,88000,961,1337,348,737,915,76,76800,91400,10900,2220,10,1.5,0,0,64.4,77777,9,999999999,160,0.0540,0,88,999.000,999.0,99.0 +1978,8,25,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.4,5.6,30,87900,1050,1337,357,818,926,85,84800,92800,11700,2750,30,2.4,1,0,64.4,77777,9,999999999,150,0.0540,0,88,999.000,999.0,99.0 +1978,8,25,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,26.7,3.8,24,87900,1081,1337,373,801,881,84,83100,88300,11500,2900,40,3.2,1,1,64.4,77777,9,999999999,139,0.0540,0,88,999.000,999.0,99.0 +1978,8,25,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,1.7,17,87800,1050,1337,381,774,886,73,80600,88800,10700,2490,60,4.1,2,1,64.4,77777,9,999999999,120,0.0540,0,88,999.000,999.0,99.0 +1978,8,25,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,28.2,3.1,20,87800,959,1337,388,676,733,145,72100,75100,18100,4290,30,4.6,4,3,64.4,77777,9,999999999,129,0.0540,0,88,999.000,999.0,99.0 +1978,8,25,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,27.4,4.3,23,87800,816,1337,389,511,584,150,53300,58700,17400,3590,350,5.2,5,4,64.4,77777,9,999999999,139,0.0540,0,88,999.000,999.0,99.0 +1978,8,25,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,5.6,26,87800,630,1337,393,330,306,184,35200,31400,20400,4030,320,5.7,7,6,64.4,2440,9,999999999,150,0.0540,0,88,999.000,999.0,99.0 +1978,8,25,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,25.0,5.3,28,87900,413,1337,388,151,55,134,16500,5100,15000,3460,310,5.9,8,7,64.4,2643,9,999999999,150,0.0540,0,88,999.000,999.0,99.0 +1978,8,25,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,23.4,5.2,31,88000,181,1337,380,76,111,61,8200,7100,7200,1290,290,6.0,8,7,64.4,2847,9,999999999,150,0.0540,0,88,999.000,999.0,99.0 +1978,8,25,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,4.4,33,88100,10,412,376,7,2,7,0,0,0,0,280,6.2,9,8,64.4,3050,9,999999999,139,0.0540,0,88,999.000,999.0,99.0 +1978,8,25,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,20.4,5.3,37,88200,0,0,371,0,0,0,0,0,0,0,280,5.9,9,8,64.4,4573,9,999999999,150,0.0540,0,88,999.000,999.0,99.0 +1978,8,25,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,19.1,5.7,41,88200,0,0,359,0,0,0,0,0,0,0,270,5.5,10,7,64.4,6097,9,999999999,150,0.0540,0,88,999.000,999.0,99.0 +1978,8,25,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,17.8,5.6,45,88300,0,0,353,0,0,0,0,0,0,0,270,5.2,10,7,24.1,7620,9,999999999,150,0.0540,0,88,999.000,999.0,99.0 +1978,8,25,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,17.1,6.0,46,88300,0,0,346,0,0,0,0,0,0,0,270,4.8,10,6,24.1,77777,9,999999999,150,0.0540,0,88,999.000,999.0,99.0 +1978,8,26,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,16.3,5.6,47,88300,0,0,338,0,0,0,0,0,0,0,280,4.5,9,5,24.1,77777,9,999999999,150,0.0540,0,88,999.000,999.0,99.0 +1978,8,26,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,15.6,4.4,48,88400,0,0,331,0,0,0,0,0,0,0,280,4.1,9,4,24.1,77777,9,999999999,139,0.0540,0,88,999.000,999.0,99.0 +1978,8,26,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,14.3,5.3,53,88400,0,0,326,0,0,0,0,0,0,0,310,3.8,8,4,24.1,77777,9,999999999,150,0.0540,0,88,999.000,999.0,99.0 +1978,8,26,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,13.0,5.6,59,88400,0,0,318,0,0,0,0,0,0,0,330,3.4,8,3,24.1,77777,9,999999999,150,0.0540,0,88,999.000,999.0,99.0 +1978,8,26,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,11.7,5.0,64,88400,0,0,312,0,0,0,0,0,0,0,360,3.1,7,3,24.1,77777,9,999999999,150,0.0540,0,88,999.000,999.0,99.0 +1978,8,26,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,12.2,5.3,62,88400,10,413,314,8,16,6,0,0,0,0,320,2.9,7,3,24.1,77777,9,999999999,150,0.0430,0,88,999.000,999.0,99.0 +1978,8,26,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,12.8,5.5,59,88400,180,1338,320,76,209,48,7800,12700,6100,870,290,2.8,8,4,24.1,77777,9,999999999,150,0.0430,0,88,999.000,999.0,99.0 +1978,8,26,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,5.0,57,88500,411,1338,321,190,320,91,20000,28500,11300,1690,250,2.6,8,4,64.4,77777,9,999999999,150,0.0430,0,88,999.000,999.0,99.0 +1978,8,26,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,15.0,5.9,52,88400,628,1338,333,320,325,167,34500,33300,18800,3590,290,2.6,9,5,64.4,77777,9,999999999,150,0.0430,0,88,999.000,999.0,99.0 +1978,8,26,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,16.6,6.0,48,88400,814,1338,343,527,526,205,56000,54000,23000,4900,330,2.6,9,6,64.4,77777,9,999999999,150,0.0430,0,88,999.000,999.0,99.0 +1978,8,26,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,5.6,43,88400,957,1338,355,463,318,235,51200,34400,26500,6650,10,2.6,10,7,64.4,7620,9,999999999,150,0.0430,0,88,999.000,999.0,99.0 +1978,8,26,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,19.4,5.8,40,88300,1046,1338,361,367,93,293,40700,9900,32900,10140,10,2.8,10,7,64.4,7620,9,999999999,150,0.0430,0,88,999.000,999.0,99.0 +1978,8,26,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,20.6,5.2,36,88200,1076,1338,372,414,165,280,46200,17700,31900,10150,360,2.9,10,8,64.4,7620,9,999999999,150,0.0430,0,88,999.000,999.0,99.0 +1978,8,26,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,4.4,33,88200,1045,1338,376,557,282,335,60500,30500,36600,11290,360,3.1,10,8,64.4,7620,9,999999999,139,0.0430,0,88,999.000,999.0,99.0 +1978,8,26,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,21.3,6.9,41,88100,954,1338,377,484,269,290,52500,29000,31700,8440,300,2.8,10,8,64.4,5690,9,999999999,170,0.0430,0,88,999.000,999.0,99.0 +1978,8,26,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,21.0,9.3,49,88100,811,1338,379,414,358,195,44100,36800,21800,4620,250,2.4,9,8,64.4,3760,9,999999999,200,0.0430,0,88,999.000,999.0,99.0 +1978,8,26,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,11.7,57,88100,624,1338,380,223,171,142,24200,17600,16000,2960,190,2.1,9,8,48.3,1830,9,999999999,220,0.0430,0,88,999.000,999.0,99.0 +1978,8,26,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,19.8,9.8,52,88100,406,1338,381,156,117,120,16900,10700,13700,2690,230,2.8,9,9,48.3,1830,9,999999999,200,0.0430,0,88,999.000,999.0,99.0 +1978,8,26,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,19.1,8.0,48,88200,174,1338,376,52,29,48,5700,2100,5400,1140,270,3.4,10,9,48.3,1830,9,999999999,170,0.0430,0,88,999.000,999.0,99.0 +1978,8,26,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,5.6,43,88200,8,368,379,2,0,2,0,0,0,0,310,4.1,10,10,24.1,1830,9,999999999,150,0.0430,0,88,999.000,999.0,99.0 +1978,8,26,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,16.6,8.0,58,88300,0,0,373,0,0,0,0,0,0,0,280,3.9,10,10,24.1,1780,9,999999999,179,0.0430,0,88,999.000,999.0,99.0 +1978,8,26,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,15.0,9.8,72,88400,0,0,367,0,0,0,0,0,0,0,260,3.8,10,10,24.1,1730,9,999999999,200,0.0430,0,88,999.000,999.0,99.0 +1978,8,26,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,13.3,11.1,87,88500,0,0,360,0,0,0,0,0,0,0,230,3.6,10,10,16.1,1680,9,999999999,209,0.0430,0,88,999.000,999.0,99.0 +1978,8,26,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,13.1,11.8,87,88500,0,0,360,0,0,0,0,0,0,0,280,3.3,10,10,16.1,1680,9,999999999,209,0.0430,0,88,999.000,999.0,99.0 +1978,8,27,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,13.0,11.6,86,88400,0,0,359,0,0,0,0,0,0,0,340,2.9,10,10,16.1,1680,9,999999999,209,0.0430,0,88,999.000,999.0,99.0 +1978,8,27,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,12.8,10.6,86,88400,0,0,357,0,0,0,0,0,0,0,30,2.6,10,10,24.1,1680,9,999999999,209,0.0430,0,88,999.000,999.0,99.0 +1978,8,27,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,12.6,11.5,88,88400,0,0,340,0,0,0,0,0,0,0,340,2.2,10,8,24.1,77777,9,999999999,209,0.0430,0,88,999.000,999.0,99.0 +1978,8,27,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,12.4,11.7,91,88400,0,0,334,0,0,0,0,0,0,0,280,1.9,10,7,24.1,77777,9,999999999,209,0.0430,0,88,999.000,999.0,99.0 +1978,8,27,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,12.2,11.1,93,88400,0,0,326,0,0,0,0,0,0,0,230,1.5,10,5,24.1,77777,9,999999999,209,0.0430,0,88,999.000,999.0,99.0 +1978,8,27,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,12.8,11.4,90,88500,8,390,332,4,4,4,0,0,0,0,200,1.7,10,6,24.1,77777,9,999999999,209,0.0350,0,88,999.000,999.0,99.0 +1978,8,27,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,13.3,11.6,86,88500,175,1338,343,71,58,63,7700,4200,7200,1400,170,1.9,9,8,24.1,77777,9,999999999,209,0.0350,0,88,999.000,999.0,99.0 +1978,8,27,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,11.1,83,88600,407,1338,353,155,107,122,16800,9800,13800,2730,140,2.1,9,9,40.2,1520,9,999999999,209,0.0350,0,88,999.000,999.0,99.0 +1978,8,27,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,15.0,10.9,74,88600,624,1338,351,252,109,201,27400,11000,22300,4900,180,2.1,8,8,40.2,1317,9,999999999,200,0.0350,0,88,999.000,999.0,99.0 +1978,8,27,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,16.1,9.8,65,88500,810,1338,349,408,332,205,44500,35400,23000,4960,230,2.1,7,7,40.2,1113,9,999999999,189,0.0350,0,88,999.000,999.0,99.0 +1978,8,27,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,8.3,56,88500,953,1338,349,663,670,183,69700,67900,21200,5210,270,2.1,6,6,48.3,910,9,999999999,179,0.0350,0,88,999.000,999.0,99.0 +1978,8,27,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,18.5,7.0,47,88500,1042,1338,350,722,660,205,76100,67000,23700,6850,280,2.9,6,5,48.3,77777,9,999999999,170,0.0350,0,88,999.000,999.0,99.0 +1978,8,27,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,19.8,5.0,39,88500,1072,1338,354,736,689,180,78400,70600,21800,6530,280,3.8,5,5,48.3,77777,9,999999999,150,0.0350,0,88,999.000,999.0,99.0 +1978,8,27,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,2.8,30,88500,1040,1338,355,582,454,227,63400,47400,26400,7590,290,4.6,5,4,64.4,77777,9,999999999,129,0.0350,0,88,999.000,999.0,99.0 +1978,8,27,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,21.1,2.3,29,88500,949,1338,355,635,655,166,67000,66600,19600,4750,290,5.0,6,4,64.4,77777,9,999999999,129,0.0350,0,88,999.000,999.0,99.0 +1978,8,27,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,21.1,1.7,28,88500,805,1338,354,534,720,95,56200,72100,12700,2290,280,5.3,7,4,64.4,77777,9,999999999,120,0.0350,0,88,999.000,999.0,99.0 +1978,8,27,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,1.1,27,88500,618,1338,353,348,452,136,36900,44700,16200,2740,280,5.7,8,4,64.4,77777,9,999999999,120,0.0350,0,88,999.000,999.0,99.0 +1978,8,27,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,19.6,1.8,31,88600,400,1338,344,177,255,99,18800,23000,11900,1920,280,5.0,5,3,64.4,77777,9,999999999,120,0.0350,0,88,999.000,999.0,99.0 +1978,8,27,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,18.2,2.6,36,88600,167,1338,331,67,285,29,6700,17900,4400,530,290,4.3,3,1,64.4,77777,9,999999999,129,0.0350,0,88,999.000,999.0,99.0 +1978,8,27,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,2.8,40,88700,6,346,318,11,54,5,0,0,0,0,290,3.6,0,0,64.4,77777,9,999999999,129,0.0350,0,88,999.000,999.0,99.0 +1978,8,27,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,15.0,4.1,48,88700,0,0,312,0,0,0,0,0,0,0,280,3.3,0,0,64.4,77777,9,999999999,139,0.0350,0,88,999.000,999.0,99.0 +1978,8,27,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,13.4,4.8,56,88700,0,0,306,0,0,0,0,0,0,0,280,2.9,0,0,64.4,77777,9,999999999,150,0.0350,0,88,999.000,999.0,99.0 +1978,8,27,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,11.7,5.0,64,88700,0,0,299,0,0,0,0,0,0,0,270,2.6,0,0,24.1,77777,9,999999999,150,0.0350,0,88,999.000,999.0,99.0 +1978,8,27,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,10.9,5.3,65,88800,0,0,296,0,0,0,0,0,0,0,300,1.7,0,0,24.1,77777,9,999999999,139,0.0350,0,88,999.000,999.0,99.0 +1978,8,28,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,10.2,4.7,65,88800,0,0,292,0,0,0,0,0,0,0,330,0.9,0,0,24.1,77777,9,999999999,139,0.0350,0,88,999.000,999.0,99.0 +1978,8,28,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,9.4,3.3,66,88800,0,0,288,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,129,0.0350,0,88,999.000,999.0,99.0 +1978,8,28,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,8.7,4.0,70,88800,0,0,286,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,129,0.0350,0,88,999.000,999.0,99.0 +1978,8,28,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,7.9,4.1,73,88900,0,0,282,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,129,0.0350,0,88,999.000,999.0,99.0 +1978,8,28,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,7.2,3.3,77,88900,0,0,279,0,0,0,0,0,0,0,0,0.0,0,0,64.4,77777,9,999999999,129,0.0350,0,88,999.000,999.0,99.0 +1978,8,28,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,7.9,4.2,76,88900,7,368,283,7,27,4,0,0,0,0,0,0.0,0,0,64.4,77777,9,999999999,139,0.0590,0,88,999.000,999.0,99.0 +1978,8,28,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,8.7,4.9,75,88900,171,1339,286,82,427,27,8200,28800,4600,510,0,0.0,0,0,64.4,77777,9,999999999,139,0.0590,0,88,999.000,999.0,99.0 +1978,8,28,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,5.0,74,88900,403,1339,289,254,694,44,26700,62600,7900,950,0,0.0,0,0,64.4,77777,9,999999999,150,0.0590,0,88,999.000,999.0,99.0 +1978,8,28,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,12.4,5.9,64,88900,620,1339,309,395,640,97,41500,62700,12500,2030,10,1.0,3,1,64.4,77777,9,999999999,150,0.0590,0,88,999.000,999.0,99.0 +1978,8,28,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,15.3,6.0,53,88900,806,1339,321,511,630,130,54100,63600,15700,3130,30,2.1,7,1,64.4,77777,9,999999999,160,0.0590,0,88,999.000,999.0,99.0 +1978,8,28,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,5.6,43,88800,949,1339,339,663,713,155,70500,72700,18800,4460,40,3.1,10,2,64.4,77777,9,999999999,150,0.0590,0,88,999.000,999.0,99.0 +1978,8,28,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,19.1,5.8,40,88800,1038,1339,349,621,492,237,67300,51400,27400,7890,60,3.1,10,4,64.4,77777,9,999999999,150,0.0590,0,88,999.000,999.0,99.0 +1978,8,28,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,19.8,5.2,38,88700,1067,1339,355,694,511,284,74200,53300,31600,10190,90,3.1,10,5,64.4,77777,9,999999999,150,0.0590,0,88,999.000,999.0,99.0 +1978,8,28,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,4.4,35,88700,1035,1339,365,543,159,419,58900,16800,45900,14280,110,3.1,10,7,64.4,7620,9,999999999,139,0.0590,0,88,999.000,999.0,99.0 +1978,8,28,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,20.8,4.3,34,88700,944,1339,366,484,234,318,53000,24800,35500,9700,110,2.9,10,7,64.4,7113,9,999999999,139,0.0590,0,88,999.000,999.0,99.0 +1978,8,28,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,20.9,4.1,33,88600,799,1339,366,367,273,202,40000,29100,22600,4840,120,2.8,9,7,64.4,6607,9,999999999,139,0.0590,0,88,999.000,999.0,99.0 +1978,8,28,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,3.9,32,88600,611,1339,367,265,135,203,28800,13600,22500,4920,120,2.6,9,7,64.4,6100,9,999999999,139,0.0590,0,88,999.000,999.0,99.0 +1978,8,28,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,19.8,5.1,39,88600,393,1339,368,143,90,116,15500,8100,13100,2590,160,2.6,9,8,64.4,6100,9,999999999,150,0.0590,0,88,999.000,999.0,99.0 +1978,8,28,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,18.5,6.5,45,88600,161,1339,363,40,7,40,4600,0,4500,1330,210,2.6,10,8,64.4,6100,9,999999999,160,0.0590,0,88,999.000,999.0,99.0 +1978,8,28,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,7.2,52,88600,5,301,365,3,1,3,0,0,0,0,250,2.6,10,9,24.1,6100,9,999999999,170,0.0590,0,88,999.000,999.0,99.0 +1978,8,28,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,16.1,7.6,55,88600,0,0,352,0,0,0,0,0,0,0,260,2.4,10,8,24.1,6100,9,999999999,170,0.0590,0,88,999.000,999.0,99.0 +1978,8,28,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,15.0,7.4,59,88600,0,0,337,0,0,0,0,0,0,0,280,2.3,9,6,24.1,6100,9,999999999,170,0.0590,0,88,999.000,999.0,99.0 +1978,8,28,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,13.9,6.7,62,88700,0,0,329,0,0,0,0,0,0,0,290,2.1,9,5,24.1,6100,9,999999999,160,0.0590,0,88,999.000,999.0,99.0 +1978,8,28,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,13.5,7.2,62,88700,0,0,325,0,0,0,0,0,0,0,280,2.8,8,4,24.1,77777,9,999999999,160,0.0590,0,88,999.000,999.0,99.0 +1978,8,29,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,13.2,6.8,62,88700,0,0,323,0,0,0,0,0,0,0,270,3.4,6,4,24.1,77777,9,999999999,160,0.0590,0,88,999.000,999.0,99.0 +1978,8,29,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,12.8,5.6,62,88700,0,0,317,0,0,0,0,0,0,0,260,4.1,5,3,24.1,77777,9,999999999,150,0.0590,0,88,999.000,999.0,99.0 +1978,8,29,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,12.4,6.3,63,88800,0,0,319,0,0,0,0,0,0,0,260,3.9,6,4,24.1,77777,9,999999999,150,0.0590,0,88,999.000,999.0,99.0 +1978,8,29,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,12.1,6.4,65,88800,0,0,320,0,0,0,0,0,0,0,270,3.8,7,5,24.1,77777,9,999999999,150,0.0590,0,88,999.000,999.0,99.0 +1978,8,29,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,11.7,5.6,66,88800,0,0,320,0,0,0,0,0,0,0,270,3.6,8,6,64.4,7620,9,999999999,150,0.0590,0,88,999.000,999.0,99.0 +1978,8,29,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,12.8,5.9,62,88800,6,324,320,0,1,0,0,0,0,0,300,3.4,5,4,64.4,77777,9,999999999,150,0.1230,0,88,999.000,999.0,99.0 +1978,8,29,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,13.9,6.1,58,88800,166,1340,320,63,197,38,6500,11500,5100,680,340,3.3,3,2,64.4,77777,9,999999999,150,0.1230,0,88,999.000,999.0,99.0 +1978,8,29,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,5.6,54,88800,398,1340,314,232,561,64,24100,49600,9300,1220,10,3.1,0,0,64.4,77777,9,999999999,150,0.1230,0,88,999.000,999.0,99.0 +1978,8,29,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,16.3,6.7,51,88800,615,1340,321,416,710,87,44000,69700,11900,1840,360,3.1,0,0,64.4,77777,9,999999999,160,0.1230,0,88,999.000,999.0,99.0 +1978,8,29,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,17.6,6.9,48,88700,802,1340,327,578,784,106,60400,78100,13600,2440,360,3.1,0,0,64.4,77777,9,999999999,160,0.1230,0,88,999.000,999.0,99.0 +1978,8,29,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,6.7,45,88700,945,1340,332,710,832,119,74900,83800,15700,3260,350,3.1,0,0,64.4,77777,9,999999999,160,0.1230,0,88,999.000,999.0,99.0 +1978,8,29,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,20.4,6.5,40,88600,1034,1340,339,786,850,127,83600,86000,17100,4050,360,3.3,0,0,64.4,77777,9,999999999,160,0.1230,0,88,999.000,999.0,99.0 +1978,8,29,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,21.8,5.6,34,88600,1063,1340,344,821,866,129,84100,86500,15300,3410,20,3.4,0,0,64.4,77777,9,999999999,150,0.1230,0,88,999.000,999.0,99.0 +1978,8,29,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,4.4,29,88500,1031,1340,350,794,861,127,84200,87100,17100,4030,30,3.6,0,0,64.4,77777,9,999999999,139,0.1230,0,88,999.000,999.0,99.0 +1978,8,29,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.1,4.9,29,88400,939,1340,361,675,729,160,71400,74200,19300,4510,30,3.6,1,1,64.4,77777,9,999999999,150,0.1230,0,88,999.000,999.0,99.0 +1978,8,29,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.8,5.2,28,88400,794,1340,365,540,738,98,56600,73700,12900,2300,40,3.6,1,1,64.4,77777,9,999999999,150,0.1230,0,88,999.000,999.0,99.0 +1978,8,29,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,5.6,28,88300,605,1340,374,385,580,119,39600,56000,14200,2380,40,3.6,2,2,64.4,77777,9,999999999,150,0.1230,0,88,999.000,999.0,99.0 +1978,8,29,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,23.4,6.2,34,88300,386,1340,359,216,522,62,22200,45800,9000,1180,350,3.3,1,1,64.4,77777,9,999999999,160,0.1230,0,88,999.000,999.0,99.0 +1978,8,29,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,21.1,7.0,41,88300,154,1340,349,62,234,34,6400,13100,4900,600,310,2.9,1,1,64.4,77777,9,999999999,170,0.1230,0,88,999.000,999.0,99.0 +1978,8,29,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,7.2,47,88300,4,257,333,4,4,3,0,0,0,0,260,2.6,0,0,24.1,77777,9,999999999,170,0.1230,0,88,999.000,999.0,99.0 +1978,8,29,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,18.0,7.6,49,88300,0,0,329,0,0,0,0,0,0,0,260,2.9,0,0,24.1,77777,9,999999999,170,0.1230,0,88,999.000,999.0,99.0 +1978,8,29,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,17.0,7.4,52,88300,0,0,324,0,0,0,0,0,0,0,250,3.3,0,0,24.1,77777,9,999999999,170,0.1230,0,88,999.000,999.0,99.0 +1978,8,29,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,16.1,6.7,54,88300,0,0,320,0,0,0,0,0,0,0,250,3.6,0,0,24.1,77777,9,999999999,160,0.1230,0,88,999.000,999.0,99.0 +1978,8,29,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,14.6,7.5,60,88300,0,0,314,0,0,0,0,0,0,0,250,2.9,0,0,24.1,77777,9,999999999,170,0.1230,0,88,999.000,999.0,99.0 +1978,8,30,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,13.2,7.5,66,88300,0,0,308,0,0,0,0,0,0,0,240,2.2,0,0,24.1,77777,9,999999999,170,0.1230,0,88,999.000,999.0,99.0 +1978,8,30,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,11.7,6.7,72,88300,0,0,301,0,0,0,0,0,0,0,240,1.5,0,0,24.1,77777,9,999999999,160,0.1230,0,88,999.000,999.0,99.0 +1978,8,30,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,10.8,7.2,76,88300,0,0,297,0,0,0,0,0,0,0,280,1.0,1,0,24.1,77777,9,999999999,160,0.1230,0,88,999.000,999.0,99.0 +1978,8,30,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,9.8,7.1,79,88300,0,0,293,0,0,0,0,0,0,0,320,0.5,2,0,24.1,77777,9,999999999,160,0.1230,0,88,999.000,999.0,99.0 +1978,8,30,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,8.9,6.1,83,88300,0,0,288,0,0,0,0,0,0,0,0,0.0,3,0,24.1,77777,9,999999999,160,0.1230,0,88,999.000,999.0,99.0 +1978,8,30,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,10.4,6.4,76,88300,5,302,295,5,14,3,0,0,0,0,0,0.0,3,0,24.1,77777,9,999999999,160,0.0670,0,88,999.000,999.0,99.0 +1978,8,30,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,11.8,6.6,69,88300,162,1340,307,72,341,31,7400,20900,4800,550,0,0.0,3,1,24.1,77777,9,999999999,160,0.0670,0,88,999.000,999.0,99.0 +1978,8,30,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,6.1,62,88300,394,1340,313,231,574,61,24000,50700,9100,1170,0,0.0,3,1,64.4,77777,9,999999999,160,0.0670,0,88,999.000,999.0,99.0 +1978,8,30,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,15.5,7.2,56,88200,611,1340,324,364,609,84,38600,59800,11200,1780,10,0.7,3,1,64.4,77777,9,999999999,160,0.0670,0,88,999.000,999.0,99.0 +1978,8,30,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,17.8,7.4,50,88200,798,1340,334,553,781,85,59100,78400,12300,2100,20,1.4,4,1,64.4,77777,9,999999999,170,0.0670,0,88,999.000,999.0,99.0 +1978,8,30,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,7.2,44,88100,940,1340,344,658,710,156,69800,72400,18900,4420,30,2.1,4,1,64.4,77777,9,999999999,170,0.0670,0,88,999.000,999.0,99.0 +1978,8,30,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,21.9,7.0,38,88000,1029,1340,361,734,746,157,76100,74700,18600,4650,30,2.8,6,3,64.4,77777,9,999999999,170,0.0670,0,88,999.000,999.0,99.0 +1978,8,30,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,23.7,6.1,33,88000,1058,1340,372,674,550,237,73300,57500,27800,8230,30,3.4,8,4,64.4,77777,9,999999999,160,0.0670,0,88,999.000,999.0,99.0 +1978,8,30,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,5.0,27,87900,1026,1340,387,533,206,374,58100,21900,41400,12560,30,4.1,10,6,64.4,7620,9,999999999,150,0.0670,0,88,999.000,999.0,99.0 +1978,8,30,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,25.8,4.9,26,87900,933,1340,392,500,379,233,53300,39300,25900,6470,60,3.8,10,7,64.4,6300,9,999999999,150,0.0670,0,88,999.000,999.0,99.0 +1978,8,30,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,25.9,4.6,26,87800,788,1340,392,374,232,236,40200,24600,25700,5760,80,3.4,10,7,64.4,4980,9,999999999,139,0.0670,0,88,999.000,999.0,99.0 +1978,8,30,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,4.4,25,87800,599,1340,399,211,131,151,23200,13300,17200,3630,110,3.1,10,8,64.4,3660,9,999999999,139,0.0670,0,88,999.000,999.0,99.0 +1978,8,30,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,23.5,6.4,36,87800,380,1340,397,122,27,114,13300,2400,12600,2950,150,2.9,10,9,64.4,3660,9,999999999,170,0.0670,0,88,999.000,999.0,99.0 +1978,8,30,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,20.9,8.5,48,87800,147,1340,386,37,15,35,4000,1000,3900,850,200,2.8,10,9,64.4,3660,9,999999999,189,0.0670,0,88,999.000,999.0,99.0 +1978,8,30,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,10.0,59,87800,3,212,385,1,0,1,0,0,0,0,240,2.6,10,10,24.1,3660,9,999999999,200,0.0670,0,88,999.000,999.0,99.0 +1978,8,30,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,17.8,9.8,58,87800,0,0,371,0,0,0,0,0,0,0,250,2.9,10,9,24.1,3660,9,999999999,189,0.0670,0,88,999.000,999.0,99.0 +1978,8,30,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,17.2,9.1,57,87700,0,0,367,0,0,0,0,0,0,0,250,3.3,10,9,24.1,3660,9,999999999,179,0.0670,0,88,999.000,999.0,99.0 +1978,8,30,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,16.7,7.8,56,87700,0,0,355,0,0,0,0,0,0,0,260,3.6,10,8,24.1,3660,9,999999999,170,0.0670,0,88,999.000,999.0,99.0 +1978,8,30,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,15.0,8.8,64,87700,0,0,356,0,0,0,0,0,0,0,260,4.3,10,9,24.1,3457,9,999999999,179,0.0670,0,88,999.000,999.0,99.0 +1978,8,31,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,13.4,8.9,72,87700,0,0,348,0,0,0,0,0,0,0,270,5.0,10,9,24.1,3253,9,999999999,179,0.0670,0,88,999.000,999.0,99.0 +1978,8,31,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,11.7,8.3,80,87700,0,0,349,0,0,0,0,0,0,0,270,5.7,10,10,24.1,3050,9,999999999,179,0.0670,0,88,999.000,999.0,99.0 +1978,8,31,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,11.9,9.6,82,87700,0,0,342,0,0,0,0,0,0,0,300,3.8,10,9,24.1,2643,9,999999999,189,0.0670,0,88,999.000,999.0,99.0 +1978,8,31,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,12.0,10.2,84,87600,0,0,330,0,0,0,0,0,0,0,330,1.9,10,7,24.1,2237,9,999999999,189,0.0670,0,88,999.000,999.0,99.0 +1978,8,31,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,12.2,10.0,86,87600,0,0,327,0,0,0,0,0,0,0,0,0.0,10,6,24.1,1830,9,999999999,200,0.0670,0,88,999.000,999.0,99.0 +1978,8,31,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,13.7,9.8,77,87600,4,279,334,4,5,4,0,0,0,0,40,0.7,9,6,24.1,3253,9,999999999,189,0.0360,0,88,999.000,999.0,99.0 +1978,8,31,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,15.2,9.3,67,87600,157,1341,337,67,105,55,7200,6200,6500,1150,90,1.4,8,5,24.1,4677,9,999999999,189,0.0360,0,88,999.000,999.0,99.0 +1978,8,31,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,8.3,58,87600,389,1341,343,214,424,90,22400,37100,11600,1670,130,2.1,7,5,48.3,6100,9,999999999,179,0.0360,0,88,999.000,999.0,99.0 +1978,8,31,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,18.9,9.4,52,87700,607,1341,355,386,621,103,40300,60400,12900,2110,180,3.3,7,5,48.3,5083,9,999999999,189,0.0360,0,88,999.000,999.0,99.0 +1978,8,31,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,21.1,9.6,47,87700,794,1341,370,465,382,237,50000,40600,26000,5810,240,4.5,8,6,48.3,4067,9,999999999,189,0.0360,0,88,999.000,999.0,99.0 +1978,8,31,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,9.4,41,87700,936,1341,380,574,534,199,62400,55500,23500,5480,290,5.7,8,6,24.1,3050,9,999999999,189,0.0360,0,88,999.000,999.0,99.0 +1978,8,31,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,23.9,9.4,38,87700,1025,1341,380,591,524,187,62400,53400,21500,6060,290,6.9,7,5,24.1,77777,9,999999999,179,0.0360,0,88,999.000,999.0,99.0 +1978,8,31,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,24.4,8.7,36,87600,1054,1341,382,607,463,241,65800,48400,27700,8280,280,8.1,6,5,24.1,77777,9,999999999,179,0.0360,0,88,999.000,999.0,99.0 +1978,8,31,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,7.8,33,87600,1021,1341,381,729,745,157,77900,76400,19600,5130,280,9.3,5,4,40.2,77777,9,999999999,170,0.0360,0,88,999.000,999.0,99.0 +1978,8,31,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,25.0,7.5,32,87600,928,1341,381,593,670,125,63700,68800,16000,3550,290,7.9,6,4,40.2,77777,9,999999999,170,0.0360,0,88,999.000,999.0,99.0 +1978,8,31,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,25.0,7.1,32,87600,782,1341,380,450,436,192,47600,44600,21500,4420,290,6.6,6,4,40.2,77777,9,999999999,170,0.0360,0,88,999.000,999.0,99.0 +1978,8,31,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,6.7,31,87500,592,1341,379,310,444,110,33300,43700,13900,2150,300,5.2,7,4,64.4,6100,9,999999999,160,0.0360,0,88,999.000,999.0,99.0 +1978,8,31,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,22.8,6.8,36,87600,373,1341,369,126,115,94,13800,10300,11000,2080,310,4.7,7,4,64.4,6100,9,999999999,170,0.0360,0,88,999.000,999.0,99.0 +1978,8,31,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,20.5,7.1,42,87600,140,1341,360,46,79,38,5000,4500,4600,790,310,4.1,7,5,64.4,6100,9,999999999,170,0.0360,0,88,999.000,999.0,99.0 +1978,8,31,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,6.7,47,87600,2,168,349,5,5,4,0,0,0,0,320,3.6,7,5,24.1,6100,9,999999999,160,0.0360,0,88,999.000,999.0,99.0 +1978,8,31,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,18.3,7.4,48,87600,0,0,347,0,0,0,0,0,0,0,330,2.4,5,4,24.1,77777,9,999999999,160,0.0360,0,88,999.000,999.0,99.0 +1978,8,31,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,17.6,7.9,48,87600,0,0,342,0,0,0,0,0,0,0,350,2.1,4,3,24.1,77777,9,999999999,170,0.0360,0,88,999.000,999.0,99.0 +1978,8,31,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,16.9,8.3,49,87600,0,0,336,0,0,0,0,0,0,0,0,1.7,2,2,24.1,77777,9,999999999,170,0.0360,0,88,999.000,999.0,99.0 +1978,8,31,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,16.2,8.8,53,87600,0,0,333,0,0,0,0,0,0,0,330,1.4,2,2,24.1,77777,9,999999999,170,0.0360,0,88,999.000,999.0,99.0 +2002,9,1,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.4,9.2,60,88700,0,0,319,0,0,0,0,0,0,0,0,1.0,0,0,16.0,77777,9,999999999,150,0.0750,0,88,0.200,0.0,1.0 +2002,9,1,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.7,9.7,67,88700,0,0,317,0,0,0,0,0,0,0,0,0.7,0,0,16.0,77777,9,999999999,150,0.0750,0,88,0.200,0.0,1.0 +2002,9,1,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.0,10.1,75,88600,0,0,314,0,0,0,0,0,0,0,230,0.3,0,0,16.0,77777,9,999999999,150,0.0750,0,88,0.200,0.0,1.0 +2002,9,1,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,10.6,84,88500,0,0,312,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,139,0.0750,0,88,0.200,0.0,1.0 +2002,9,1,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,10.0,80,88100,0,0,311,0,0,0,0,0,0,0,290,1.5,0,0,16.0,77777,9,999999999,139,0.0750,0,88,0.200,0.0,1.0 +2002,9,1,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,10.6,80,88500,3,235,314,0,0,0,0,0,0,0,260,2.6,0,0,16.0,77777,9,999999999,150,0.0750,0,88,0.200,0.0,1.0 +2002,9,1,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,11.1,83,88500,151,1342,331,17,0,17,2000,0,2000,660,0,0.0,10,4,16.0,77777,9,999999999,170,0.0750,0,88,0.200,0.0,1.0 +2002,9,1,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,11.7,84,88500,384,1342,334,121,27,114,13300,2400,12600,2960,0,0.0,10,4,16.0,77777,9,999999999,179,0.0750,0,88,0.200,0.0,1.0 +2002,9,1,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,11.7,84,88500,602,1342,334,182,23,172,20700,1800,19900,6720,200,2.6,10,4,16.0,77777,9,999999999,189,0.0750,0,88,0.200,0.0,1.0 +2002,9,1,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,11.7,72,88500,788,1342,345,576,650,193,59200,64100,21500,4260,290,2.6,9,4,16.0,77777,9,999999999,200,0.0750,0,88,0.200,0.0,1.0 +2002,9,1,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,11.7,61,87900,931,1342,382,612,587,204,63800,59000,22800,5490,90,1.5,10,9,16.0,2743,9,999999999,209,0.0750,0,88,0.200,0.0,1.0 +2002,9,1,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,8.9,35,88700,1019,1342,385,655,460,305,69200,47800,32800,9940,180,2.1,5,4,16.0,77777,9,999999999,200,0.0750,0,88,0.200,0.0,1.0 +2002,9,1,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,6.1,24,88600,1048,1342,399,467,114,377,51400,11700,42200,14490,270,9.8,6,5,16.0,77777,9,999999999,189,0.0750,0,88,0.200,0.0,1.0 +2002,9,1,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,6.1,25,88600,1014,1342,420,491,145,381,53500,15400,41900,12590,270,10.8,10,9,16.0,77777,9,999999999,189,0.0750,0,88,0.200,0.0,1.0 +2002,9,1,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,6.7,29,88600,921,1342,411,250,12,242,29300,1000,28600,10880,280,9.3,10,9,16.0,3048,9,999999999,189,0.0750,0,88,0.200,0.0,1.0 +2002,9,1,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,6.7,30,88700,775,1342,408,106,0,106,12900,0,12900,5150,280,11.8,10,9,16.0,3048,9,999999999,189,0.0750,0,88,0.200,0.0,1.0 +2002,9,1,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,7.2,33,87800,585,1342,414,71,0,71,8600,0,8600,3270,280,9.3,10,10,16.0,2743,9,999999999,200,0.0750,0,88,0.200,0.0,1.0 +2002,9,1,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,7.8,37,88700,365,1342,409,43,0,43,5100,0,5100,1820,300,10.8,10,10,16.0,2438,9,999999999,189,0.0750,0,88,0.200,0.0,1.0 +2002,9,1,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,8.3,42,88800,131,1342,400,0,0,0,0,0,0,0,310,6.7,10,10,16.0,3048,9,999999999,179,0.0750,0,88,0.200,0.0,1.0 +2002,9,1,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,7.8,42,88900,1,123,397,0,0,0,0,0,0,0,290,5.2,10,10,16.0,2591,9,999999999,170,0.0750,0,88,0.200,0.0,1.0 +2002,9,1,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,7.2,42,88900,0,0,393,0,0,0,0,0,0,0,290,9.3,10,10,16.0,3048,9,999999999,170,0.0750,0,88,0.200,0.0,1.0 +2002,9,1,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,7.2,43,88900,0,0,371,0,0,0,0,0,0,0,280,9.8,9,8,16.0,77777,9,999999999,170,0.0750,0,88,0.200,0.0,1.0 +2002,9,1,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,7.2,47,88200,0,0,366,0,0,0,0,0,0,0,280,6.2,9,8,16.0,77777,9,999999999,170,0.0750,0,88,0.200,0.0,1.0 +2002,9,1,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,6.7,47,88800,0,0,370,0,0,0,0,0,0,0,280,5.7,10,9,16.0,77777,9,999999999,170,0.0750,0,88,0.200,0.0,1.0 +2002,9,2,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,6.1,46,88800,0,0,349,0,0,0,0,0,0,0,280,7.2,6,6,16.0,77777,9,999999999,170,0.0750,0,88,0.200,0.0,1.0 +2002,9,2,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,6.1,48,88800,0,0,356,0,0,0,0,0,0,0,270,4.6,8,8,16.0,77777,9,999999999,170,0.0750,0,88,0.200,0.0,1.0 +2002,9,2,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,6.1,51,88800,0,0,319,0,0,0,0,0,0,0,240,3.6,0,0,16.0,77777,9,999999999,170,0.0750,0,88,0.200,0.0,1.0 +2002,9,2,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,6.1,55,88800,0,0,328,0,0,0,0,0,0,0,220,3.1,3,3,16.0,77777,9,999999999,170,0.0750,0,88,0.200,0.0,1.0 +2002,9,2,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,6.7,58,88300,0,0,346,0,0,0,0,0,0,0,220,3.1,8,8,16.0,2134,9,999999999,170,0.0750,0,88,0.200,0.0,1.0 +2002,9,2,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,6.7,66,88800,2,213,315,0,0,0,0,0,0,0,0,0.0,2,2,16.0,77777,9,999999999,170,0.0750,0,88,0.200,0.0,1.0 +2002,9,2,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,7.2,64,88800,147,1342,311,56,336,19,5700,21800,3400,400,0,0.0,0,0,16.0,77777,9,999999999,170,0.0750,0,88,0.200,0.0,1.0 +2002,9,2,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,8.3,58,88900,379,1342,324,242,696,44,25300,61700,7800,930,60,2.6,0,0,16.0,77777,9,999999999,170,0.0750,0,88,0.200,0.0,1.0 +2002,9,2,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,8.3,50,88900,597,1342,334,423,795,68,44700,77200,10300,1480,20,1.5,0,0,16.0,77777,9,999999999,170,0.0750,0,88,0.200,0.0,1.0 +2002,9,2,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,7.2,42,88900,784,1342,341,586,826,103,61500,82100,13400,2340,90,2.6,0,0,16.0,77777,9,999999999,170,0.0750,0,88,0.200,0.0,1.0 +2002,9,2,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,6.7,35,88200,926,1342,350,707,907,80,73800,90500,11200,2170,20,2.6,0,0,16.0,77777,9,999999999,170,0.0750,0,88,0.200,0.0,1.0 +2002,9,2,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,2.8,24,88900,1015,1342,356,813,956,88,84500,95600,12000,2610,300,4.1,0,0,16.0,77777,9,999999999,179,0.0750,0,88,0.200,0.0,1.0 +2002,9,2,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,3.3,23,88900,1043,1342,362,813,884,124,83700,88300,14900,3180,290,6.2,0,0,16.0,77777,9,999999999,179,0.0750,0,88,0.200,0.0,1.0 +2002,9,2,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,5.0,23,88800,1009,1342,372,788,872,131,83400,88000,17100,3920,300,4.6,0,0,16.0,77777,9,999999999,179,0.0750,0,88,0.200,0.0,1.0 +2002,9,2,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,5.6,25,88800,916,1342,370,732,935,93,76100,93100,12400,2270,90,2.6,0,0,16.0,77777,9,999999999,179,0.0750,0,88,0.200,0.0,1.0 +2002,9,2,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,6.1,25,88700,769,1342,374,599,895,85,62300,88100,11700,1810,100,2.1,0,0,16.0,77777,9,999999999,170,0.0750,0,88,0.200,0.0,1.0 +2002,9,2,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,6.7,26,87800,578,1342,377,429,814,77,44500,78100,10800,1570,100,3.1,0,0,16.0,77777,9,999999999,160,0.0750,0,88,0.200,0.0,1.0 +2002,9,2,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,6.7,26,88700,358,1342,375,273,720,81,27700,60400,11600,1430,290,5.7,0,0,16.0,77777,9,999999999,160,0.0750,0,88,0.200,0.0,1.0 +2002,9,2,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,7.2,32,88600,124,1342,361,0,0,0,0,0,0,0,260,3.1,0,0,16.0,77777,9,999999999,160,0.0750,0,88,0.200,0.0,1.0 +2002,9,2,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,7.2,34,88600,0,78,356,0,0,0,0,0,0,0,240,3.1,0,0,16.0,77777,9,999999999,160,0.0750,0,88,0.200,0.0,1.0 +2002,9,2,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,8.3,50,88500,0,0,334,0,0,0,0,0,0,0,10,2.6,0,0,16.0,77777,9,999999999,150,0.0750,0,88,0.200,0.0,1.0 +2002,9,2,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,7.8,47,88400,0,0,347,0,0,0,0,0,0,0,0,0.0,2,2,16.0,77777,9,999999999,150,0.0750,0,88,0.200,0.0,1.0 +2002,9,2,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,7.2,50,87800,0,0,339,0,0,0,0,0,0,0,200,2.6,3,2,16.0,77777,9,999999999,150,0.0750,0,88,0.200,0.0,1.0 +2002,9,2,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,7.8,60,88300,0,0,325,0,0,0,0,0,0,0,0,0.0,1,1,16.0,77777,9,999999999,150,0.0750,0,88,0.200,0.0,1.0 +2002,9,3,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,7.2,57,88200,0,0,324,0,0,0,0,0,0,0,260,2.1,1,1,16.0,77777,9,999999999,150,0.0750,0,88,0.200,0.0,1.0 +2002,9,3,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,7.2,64,88200,0,0,317,0,0,0,0,0,0,0,280,2.1,1,1,16.0,77777,9,999999999,150,0.0750,0,88,0.200,0.0,1.0 +2002,9,3,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,7.2,62,88100,0,0,313,0,0,0,0,0,0,0,0,0.0,1,0,16.0,77777,9,999999999,150,0.0750,0,88,0.200,0.0,1.0 +2002,9,3,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,7.2,69,88100,0,0,306,0,0,0,0,0,0,0,350,1.5,0,0,16.0,77777,9,999999999,139,0.0750,0,88,0.200,0.0,1.0 +2002,9,3,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,7.8,74,87700,0,0,304,0,0,0,0,0,0,0,270,1.5,0,0,16.0,77777,9,999999999,139,0.0750,0,88,0.200,0.0,1.0 +2002,9,3,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,7.2,74,88100,2,190,301,0,0,0,0,0,0,0,290,2.6,0,0,16.0,77777,9,999999999,150,0.0750,0,88,0.200,0.0,1.0 +2002,9,3,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,7.2,53,88300,142,1343,334,54,349,18,5700,22400,3300,380,220,2.6,2,2,16.0,77777,9,999999999,150,0.0750,0,88,0.200,0.0,1.0 +2002,9,3,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,8.3,58,88300,375,1343,335,232,652,50,24000,57200,8000,1000,170,2.1,2,2,16.0,77777,9,999999999,150,0.0750,0,88,0.200,0.0,1.0 +2002,9,3,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,8.3,49,88400,593,1343,356,402,704,91,42500,68500,12200,1880,120,3.6,5,5,16.0,77777,9,999999999,160,0.0750,0,88,0.200,0.0,1.0 +2002,9,3,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,8.3,41,88400,780,1343,361,575,790,115,59500,78100,14100,2480,30,3.1,2,2,16.0,77777,9,999999999,160,0.0750,0,88,0.200,0.0,1.0 +2002,9,3,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,9.4,41,87600,922,1343,368,690,800,140,71600,79800,16700,3460,300,2.1,2,2,16.0,77777,9,999999999,170,0.0750,0,88,0.200,0.0,1.0 +2002,9,3,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,11.1,39,88400,1010,1343,379,655,490,286,69600,50900,31200,9100,330,3.6,1,1,16.0,77777,9,999999999,170,0.0750,0,88,0.200,0.0,1.0 +2002,9,3,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,10.6,34,88400,1038,1343,396,764,559,331,80200,58100,35200,11230,360,2.1,3,3,16.0,77777,9,999999999,179,0.0750,0,88,0.200,0.0,1.0 +2002,9,3,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,29.4,10.6,31,88300,1004,1343,404,132,0,132,16400,0,16400,6820,60,2.6,3,3,16.0,77777,9,999999999,179,0.0750,0,88,0.200,0.0,1.0 +2002,9,3,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,13.9,57,88300,910,1343,394,495,257,321,53100,27600,34400,9060,190,5.2,8,8,16.0,3658,9,999999999,179,0.0750,0,88,0.200,1.0,1.0 +2002,9,3,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,10.0,33,88300,762,1343,401,509,485,232,52800,49300,24800,5370,160,7.2,9,5,16.0,77777,9,999999999,189,0.0750,0,88,0.200,0.0,1.0 +2002,9,3,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,7.8,27,87300,572,1343,401,319,330,178,33800,33100,19700,3850,190,7.2,10,5,16.0,77777,9,999999999,189,0.0750,0,88,0.200,0.0,1.0 +2002,9,3,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,11.1,43,88300,351,1343,393,178,155,137,18900,13300,15400,3020,320,7.2,9,7,16.0,77777,9,999999999,179,0.0750,0,88,0.200,0.0,1.0 +2002,9,3,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,12.8,57,88200,117,1343,376,0,0,0,0,0,0,0,260,4.1,10,6,16.0,77777,9,999999999,170,0.0750,0,88,0.200,0.0,1.0 +2002,9,3,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,11.7,59,88200,0,34,377,0,0,0,0,0,0,0,260,3.6,9,8,16.0,77777,9,999999999,170,0.0750,0,88,0.200,0.0,1.0 +2002,9,3,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,11.1,57,88100,0,0,376,0,0,0,0,0,0,0,200,1.5,9,8,16.0,77777,9,999999999,170,0.0750,0,88,0.200,0.0,1.0 +2002,9,3,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,12.2,72,88100,0,0,357,0,0,0,0,0,0,0,0,0.0,8,7,16.0,77777,9,999999999,170,0.0750,0,88,0.200,0.0,1.0 +2002,9,3,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,10.6,63,87600,0,0,346,0,0,0,0,0,0,0,240,3.1,4,3,16.0,77777,9,999999999,170,0.0750,0,88,0.200,0.0,1.0 +2002,9,3,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,11.1,77,88000,0,0,330,0,0,0,0,0,0,0,300,3.1,3,2,16.0,77777,9,999999999,170,0.0750,0,88,0.200,0.0,1.0 +2002,9,4,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,10.0,65,88100,0,0,332,0,0,0,0,0,0,0,250,4.6,1,1,16.0,77777,9,999999999,170,0.0740,0,88,0.200,0.0,1.0 +2002,9,4,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,10.0,60,88200,0,0,331,0,0,0,0,0,0,0,270,4.1,0,0,16.0,77777,9,999999999,160,0.0740,0,88,0.200,0.0,1.0 +2002,9,4,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,11.1,67,88300,0,0,329,0,0,0,0,0,0,0,270,4.6,0,0,16.0,77777,9,999999999,170,0.0740,0,88,0.200,0.0,1.0 +2002,9,4,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,11.1,72,88200,0,0,356,0,0,0,0,0,0,0,260,4.1,8,8,16.0,77777,9,999999999,170,0.0740,0,88,0.200,0.0,1.0 +2002,9,4,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,10.6,75,87800,0,0,341,0,0,0,0,0,0,0,260,4.1,7,6,16.0,77777,9,999999999,170,0.0740,0,88,0.200,0.0,1.0 +2002,9,4,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,10.0,75,88300,1,146,332,0,0,0,0,0,0,0,250,3.6,5,4,16.0,77777,9,999999999,170,0.0740,0,88,0.200,0.0,1.0 +2002,9,4,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,10.0,67,88400,137,1344,342,51,320,18,5200,20200,3200,380,250,3.1,6,5,16.0,77777,9,999999999,160,0.0740,0,88,0.200,0.0,1.0 +2002,9,4,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,10.6,63,88500,370,1344,349,198,419,82,20900,36000,10900,1500,300,2.6,4,4,16.0,77777,9,999999999,150,0.0740,0,88,0.200,0.0,1.0 +2002,9,4,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,11.1,61,88600,589,1344,352,382,629,106,39800,60600,13200,2130,10,1.5,3,3,0.0,77777,9,999999999,139,0.0740,0,88,0.200,0.0,1.0 +2002,9,4,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,10.6,53,88600,775,1344,356,564,761,124,59800,76600,15500,2900,350,2.1,3,2,0.0,77777,9,999999999,129,0.0740,0,88,0.200,0.0,1.0 +2002,9,4,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,11.1,51,87900,918,1344,362,662,830,94,68800,82600,12200,2290,290,1.5,2,2,16.0,77777,9,999999999,129,0.0740,0,88,0.200,0.0,1.0 +2002,9,4,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,11.7,46,88600,1006,1344,368,772,854,131,81600,86100,17000,3880,80,2.6,1,1,16.0,77777,9,999999999,139,0.0740,0,88,0.200,0.0,1.0 +2002,9,4,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,11.7,42,88600,1033,1344,370,759,625,277,81100,65100,30900,9170,70,2.6,0,0,16.0,77777,9,999999999,150,0.0740,0,88,0.200,0.0,1.0 +2002,9,4,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,11.7,38,88600,999,1344,378,397,85,334,43800,8700,37300,12400,120,1.5,0,0,16.0,77777,9,999999999,170,0.0740,0,88,0.200,0.0,1.0 +2002,9,4,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,10.0,34,88600,904,1344,388,450,171,334,48900,18000,36700,9770,160,2.1,2,2,16.0,77777,9,999999999,170,0.0740,0,88,0.200,0.0,1.0 +2002,9,4,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,29.4,8.3,27,88600,756,1344,411,545,442,296,57500,46500,31300,7460,0,0.0,6,6,16.0,77777,9,999999999,179,0.0740,0,88,0.200,0.0,1.0 +2002,9,4,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.9,7.8,27,87600,565,1344,398,144,0,144,16400,0,16400,5730,100,1.5,3,3,16.0,77777,9,999999999,179,0.0740,0,88,0.200,0.0,1.0 +2002,9,4,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,12.2,43,88500,343,1344,387,204,217,148,21600,18500,16800,3250,10,6.2,4,3,16.0,77777,9,999999999,179,0.0740,0,88,0.200,0.0,1.0 +2002,9,4,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,12.2,46,88600,110,1332,390,32,109,24,3500,5100,3100,420,310,5.2,7,6,16.0,77777,9,999999999,170,0.0740,0,88,0.200,0.0,1.0 +2002,9,4,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,12.8,53,88600,0,0,379,0,0,0,0,0,0,0,290,5.2,6,5,16.0,77777,9,999999999,170,0.0740,0,88,0.200,0.0,1.0 +2002,9,4,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,13.3,63,88600,0,0,376,0,0,0,0,0,0,0,280,3.6,7,7,16.0,77777,9,999999999,170,0.0740,0,88,0.200,0.0,1.0 +2002,9,4,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,12.8,68,88600,0,0,367,0,0,0,0,0,0,0,280,4.6,8,7,16.0,77777,9,999999999,170,0.0740,0,88,0.200,0.0,1.0 +2002,9,4,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,12.8,70,87900,0,0,377,0,0,0,0,0,0,0,290,5.2,10,9,16.0,77777,9,999999999,170,0.0740,0,88,0.200,0.0,1.0 +2002,9,4,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,12.2,72,88500,0,0,363,0,0,0,0,0,0,0,270,4.1,10,8,16.0,77777,9,999999999,170,0.0740,0,88,0.200,0.0,1.0 +2002,9,5,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,12.2,75,88500,0,0,368,0,0,0,0,0,0,0,260,5.2,10,9,16.0,77777,9,999999999,170,0.0740,0,88,0.200,0.0,1.0 +2002,9,5,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,12.2,75,88500,0,0,328,0,0,0,0,0,0,0,260,4.1,0,0,16.0,77777,9,999999999,170,0.0740,0,88,0.200,0.0,1.0 +2002,9,5,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,12.2,78,88500,0,0,345,0,0,0,0,0,0,0,260,1.5,5,5,16.0,77777,9,999999999,160,0.0740,0,88,0.200,0.0,1.0 +2002,9,5,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,12.2,80,88400,0,0,350,0,0,0,0,0,0,0,280,3.6,8,7,16.0,77777,9,999999999,150,0.0740,0,88,0.200,0.0,1.0 +2002,9,5,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,11.7,81,88000,0,0,339,0,0,0,0,0,0,0,270,2.6,5,5,16.0,77777,9,999999999,139,0.0740,0,88,0.200,0.0,1.0 +2002,9,5,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,11.7,84,88500,1,123,343,0,0,0,0,0,0,0,270,3.1,8,7,16.0,77777,9,999999999,139,0.0740,0,88,0.200,0.0,1.0 +2002,9,5,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,11.7,84,88500,133,1344,328,41,182,23,4200,10200,3200,420,260,3.1,2,2,16.0,77777,9,999999999,139,0.0740,0,88,0.200,0.0,1.0 +2002,9,5,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,11.7,75,88600,366,1344,336,197,429,80,20800,36700,10800,1460,280,3.1,2,2,16.0,77777,9,999999999,139,0.0740,0,88,0.200,0.0,1.0 +2002,9,5,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.7,11.5,67,88600,584,1344,338,377,617,108,39200,59300,13300,2160,290,2.3,2,1,16.0,77777,9,999999999,150,0.0740,0,88,0.200,0.0,1.0 +2002,9,5,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,11.1,59,88700,771,1344,346,558,755,124,59100,75900,15500,2880,300,1.5,1,1,16.0,77777,9,999999999,160,0.0740,0,88,0.200,0.0,1.0 +2002,9,5,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,11.1,53,88700,913,1344,354,662,592,259,69900,61200,28200,7030,350,2.1,1,1,16.0,77777,9,999999999,160,0.0740,0,88,0.200,0.0,1.0 +2002,9,5,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,11.1,53,88600,1001,1344,371,140,0,140,17300,0,17300,7180,30,2.6,6,6,16.0,77777,9,999999999,160,0.0740,0,88,0.200,0.0,1.0 +2002,9,5,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,11.1,53,88600,1028,1344,382,340,36,312,37500,3700,34700,12100,350,3.6,8,8,16.0,77777,9,999999999,160,0.0740,0,88,0.200,0.0,1.0 +2002,9,5,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,11.1,53,88600,993,1344,401,133,0,133,16500,0,16500,6840,60,2.6,10,10,16.0,3048,9,999999999,160,0.0740,0,88,0.200,0.0,1.0 +2002,9,5,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,12.2,59,88600,898,1344,389,364,92,303,40100,9400,33800,10360,360,3.1,9,9,16.0,2743,9,999999999,170,0.0740,0,88,0.200,0.0,1.0 +2002,9,5,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,12.2,53,88600,750,1344,378,454,361,252,48400,38000,27200,6110,30,4.1,8,6,16.0,77777,9,999999999,170,0.0740,0,88,0.200,0.0,1.0 +2002,9,5,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,12.8,57,87800,558,1344,373,363,566,128,38500,54800,15700,2510,10,1.5,7,5,16.0,77777,9,999999999,170,0.0740,0,88,0.200,0.0,1.0 +2002,9,5,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,11.7,61,88500,336,1344,340,220,588,73,22400,48400,10300,1290,350,4.1,0,0,16.0,77777,9,999999999,160,0.0740,0,88,0.200,0.0,1.0 +2002,9,5,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,10.6,67,88500,103,1288,327,32,285,11,3700,18000,2200,310,300,6.2,0,0,16.0,77777,9,999999999,160,0.0740,0,88,0.200,0.0,1.0 +2002,9,5,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,10.0,69,88600,0,0,340,0,0,0,0,0,0,0,290,5.2,5,5,16.0,77777,9,999999999,150,0.0740,0,88,0.200,0.0,1.0 +2002,9,5,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,10.0,77,88600,0,0,332,0,0,0,0,0,0,0,310,3.1,5,5,16.0,77777,9,999999999,150,0.0740,0,88,0.200,0.0,1.0 +2002,9,5,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,10.0,72,88600,0,0,367,0,0,0,0,0,0,0,290,4.6,10,10,16.0,1006,9,999999999,150,0.0740,0,88,0.200,0.0,1.0 +2002,9,5,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,9.4,74,88100,0,0,361,0,0,0,0,0,0,0,270,4.1,10,10,16.0,1006,9,999999999,150,0.0740,0,88,0.200,0.0,1.0 +2002,9,5,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,9.4,72,88600,0,0,364,0,0,0,0,0,0,0,320,3.6,10,10,16.0,640,9,999999999,150,0.0740,0,88,0.200,0.0,1.0 +2002,9,6,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,9.4,74,88500,0,0,361,0,0,0,0,0,0,0,310,4.1,10,10,16.0,549,9,999999999,150,0.0740,0,88,0.200,0.0,1.0 +2002,9,6,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,9.4,74,88500,0,0,361,0,0,0,0,0,0,0,320,3.6,10,10,16.0,732,9,999999999,150,0.0740,0,88,0.200,0.0,1.0 +2002,9,6,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,9.4,74,88500,0,0,361,0,0,0,0,0,0,0,300,2.1,10,10,16.0,914,9,999999999,139,0.0740,0,88,0.200,0.0,1.0 +2002,9,6,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,8.9,75,88400,0,0,357,0,0,0,0,0,0,0,300,3.1,10,10,16.0,732,9,999999999,129,0.0740,0,88,0.200,0.0,1.0 +2002,9,6,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,8.9,75,88000,0,0,357,0,0,0,0,0,0,0,290,3.6,10,10,16.0,600,9,999999999,129,0.0740,0,88,0.200,0.0,1.0 +2002,9,6,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,8.9,75,88400,1,101,357,0,0,0,0,0,0,0,250,2.6,10,10,16.0,762,9,999999999,139,0.0740,0,88,0.200,0.0,1.0 +2002,9,6,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,8.9,75,88400,128,1345,357,8,0,8,1000,0,1000,320,280,5.2,10,10,16.0,762,9,999999999,150,0.0740,0,88,0.200,0.0,1.0 +2002,9,6,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,8.9,75,88400,361,1345,357,37,0,37,4500,0,4500,1590,280,3.6,10,10,16.0,762,9,999999999,170,0.0740,0,88,0.200,0.0,1.0 +2002,9,6,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,9.4,77,88500,580,1345,358,68,0,68,8300,0,8300,3140,270,3.6,10,10,16.0,762,9,999999999,179,0.0740,0,88,0.200,0.0,1.0 +2002,9,6,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,10.6,86,88500,766,1345,357,106,0,106,12900,0,12900,5120,290,3.1,10,10,6.4,610,9,999999999,189,0.0740,0,88,0.200,1.0,1.0 +2002,9,6,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,11.1,93,88000,908,1345,355,112,0,112,13900,0,13900,5710,290,3.1,10,10,16.0,457,9,999999999,200,0.0740,0,88,0.200,2.0,1.0 +2002,9,6,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,11.1,87,88400,996,1345,360,246,12,237,29100,1000,28400,11090,300,2.6,10,10,16.0,305,9,999999999,209,0.0740,0,88,0.200,0.0,1.0 +2002,9,6,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,11.1,83,88400,1023,1345,363,158,0,158,19400,0,19400,8020,330,1.5,10,10,16.0,427,9,999999999,209,0.0740,0,88,0.200,0.0,1.0 +2002,9,6,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,10.6,75,88400,988,1345,368,265,12,256,31200,1000,30400,11720,350,1.5,10,10,16.0,2134,9,999999999,209,0.0740,0,88,0.200,0.0,1.0 +2002,9,6,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,10.6,70,88400,892,1345,374,325,37,300,35700,3800,33200,10210,360,2.6,10,10,16.0,610,9,999999999,209,0.0740,0,88,0.200,0.0,1.0 +2002,9,6,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,11.7,78,88300,743,1345,373,185,0,185,21400,0,21400,7960,20,2.6,10,10,16.0,1981,9,999999999,200,0.0740,0,88,0.200,0.0,1.0 +2002,9,6,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,11.1,72,87700,551,1345,351,170,7,168,19200,500,19000,6270,10,2.1,10,7,16.0,77777,9,999999999,200,0.0740,0,88,0.200,0.0,1.0 +2002,9,6,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,10.6,72,88200,329,1345,348,71,0,71,8100,0,8100,2650,340,1.5,10,7,16.0,77777,9,999999999,200,0.0740,0,88,0.200,0.0,1.0 +2002,9,6,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,10.6,72,88200,96,1244,371,9,0,9,1100,0,1100,350,0,0.0,10,10,16.0,3353,9,999999999,200,0.0740,0,88,0.200,0.0,1.0 +2002,9,6,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.0,11.0,82,88200,0,0,364,0,0,0,0,0,0,0,340,3.6,10,10,16.1,870,9,999999999,200,0.0740,0,88,0.200,0.0,1.0 +2002,9,6,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,11.7,84,88200,0,0,366,0,0,0,0,0,0,0,310,1.5,10,10,16.0,640,9,999999999,200,0.0740,0,88,0.200,0.0,1.0 +2002,9,6,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,10.6,78,88100,0,0,365,0,0,0,0,0,0,0,290,2.1,10,10,16.0,640,9,999999999,200,0.0740,0,88,0.200,0.0,1.0 +2002,9,6,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,10.6,80,87500,0,0,363,0,0,0,0,0,0,0,270,3.1,10,10,16.0,914,9,999999999,200,0.0740,0,88,0.200,0.0,1.0 +2002,9,6,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,10.6,80,88000,0,0,363,0,0,0,0,0,0,0,300,2.1,10,10,16.0,853,9,999999999,200,0.0740,0,88,0.200,0.0,1.0 +2002,9,7,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,10.6,80,88000,0,0,363,0,0,0,0,0,0,0,320,3.1,10,10,16.0,792,9,999999999,209,0.0730,0,88,0.200,0.0,1.0 +2002,9,7,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,10.6,86,88000,0,0,357,0,0,0,0,0,0,0,250,3.6,10,10,8.0,1036,9,999999999,209,0.0730,0,88,0.200,3.0,1.0 +2002,9,7,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,8.3,74,88000,0,0,354,0,0,0,0,0,0,0,250,4.1,10,10,16.0,1494,9,999999999,209,0.0730,0,88,0.200,0.0,1.0 +2002,9,7,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,8.9,83,88100,0,0,350,0,0,0,0,0,0,0,250,3.1,10,10,16.0,1981,9,999999999,200,0.0730,0,88,0.200,0.0,1.0 +2002,9,7,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,8.9,80,87700,0,0,352,0,0,0,0,0,0,0,270,1.5,10,10,16.0,2438,9,999999999,189,0.0730,0,88,0.200,0.0,1.0 +2002,9,7,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,8.3,77,88200,0,56,351,0,0,0,0,0,0,0,270,2.1,10,10,16.0,1829,9,999999999,179,0.0730,0,88,0.200,0.0,1.0 +2002,9,7,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,9.4,83,88100,123,1346,343,8,0,8,1000,0,1000,320,10,2.1,10,9,16.0,2743,9,999999999,179,0.0730,0,88,0.200,0.0,1.0 +2002,9,7,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,9.4,80,88200,356,1346,356,41,0,41,4900,0,4900,1730,300,3.6,10,10,16.0,3048,9,999999999,170,0.0730,0,88,0.200,0.0,1.0 +2002,9,7,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,8.9,75,88300,575,1346,348,229,97,187,25100,9500,21000,5260,90,2.1,9,9,16.0,2134,9,999999999,170,0.0730,0,88,0.200,0.0,1.0 +2002,9,7,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,10.0,77,88400,762,1346,339,345,135,269,37500,14000,29600,7060,360,3.6,10,7,16.0,77777,9,999999999,160,0.0730,0,88,0.200,0.0,1.0 +2002,9,7,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,8.3,64,87800,904,1346,355,185,6,181,22100,500,21800,8590,300,2.1,10,9,16.0,3353,9,999999999,160,0.0730,0,88,0.200,0.0,1.0 +2002,9,7,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,7.2,56,88400,991,1346,359,181,0,181,21900,0,21900,8910,0,0.0,9,9,16.0,3353,9,999999999,160,0.0730,0,88,0.200,0.0,1.0 +2002,9,7,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,7.2,56,88500,1018,1346,370,140,0,140,17300,0,17300,7210,0,0.0,10,10,16.0,2591,9,999999999,150,0.0730,0,88,0.200,0.0,1.0 +2002,9,7,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,10.0,72,88400,982,1346,367,152,0,152,18600,0,18600,7660,140,5.2,10,10,16.0,1433,9,999999999,150,0.0730,0,88,0.200,0.0,1.0 +2002,9,7,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,9.4,72,88400,886,1346,364,133,0,133,16200,0,16200,6580,170,5.7,10,10,16.0,1158,9,999999999,150,0.0730,0,88,0.200,0.0,1.0 +2002,9,7,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,7.8,65,88400,737,1346,362,93,0,93,11400,0,11400,4500,190,4.6,10,10,16.0,3048,9,999999999,139,0.0730,0,88,0.200,0.0,1.0 +2002,9,7,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,5.6,51,87900,544,1346,355,139,0,139,15800,0,15800,5470,140,3.1,10,9,16.0,3353,9,999999999,139,0.0730,0,88,0.200,0.0,1.0 +2002,9,7,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,8.9,70,88500,322,1346,363,157,154,121,16900,12800,13800,2640,120,5.2,10,10,16.0,3353,9,999999999,139,0.0730,0,88,0.200,0.0,1.0 +2002,9,7,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,9.4,77,88500,89,1200,336,19,68,14,2100,3000,1900,240,120,2.6,8,7,16.0,77777,9,999999999,129,0.0730,0,88,0.200,0.0,1.0 +2002,9,7,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,10.0,89,88400,0,0,325,0,0,0,0,0,0,0,150,2.1,6,6,16.0,77777,9,999999999,129,0.0730,0,88,0.200,0.0,1.0 +2002,9,7,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,10.0,86,88500,0,0,353,0,0,0,0,0,0,0,270,3.6,10,10,16.0,1981,9,999999999,129,0.0730,0,88,0.200,0.0,1.0 +2002,9,7,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,5.0,63,88600,0,0,345,0,0,0,0,0,0,0,240,6.7,10,10,16.0,1981,9,999999999,120,0.0730,0,88,0.200,0.0,1.0 +2002,9,7,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,4.4,59,88100,0,0,347,0,0,0,0,0,0,0,230,4.6,10,10,16.0,1463,9,999999999,120,0.0730,0,88,0.200,0.0,1.0 +2002,9,7,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,5.6,74,88500,0,0,308,0,0,0,0,0,0,0,100,1.5,5,4,16.0,77777,9,999999999,120,0.0730,0,88,0.200,0.0,1.0 +2002,9,8,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,5.6,74,88500,0,0,305,0,0,0,0,0,0,0,0,0.0,4,3,16.0,3658,9,999999999,120,0.0730,0,88,0.200,0.0,1.0 +2002,9,8,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,5.6,74,88600,0,0,338,0,0,0,0,0,0,0,0,0.0,10,10,16.0,3353,9,999999999,110,0.0730,0,88,0.200,0.0,1.0 +2002,9,8,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,5.0,74,88600,0,0,334,0,0,0,0,0,0,0,320,2.1,10,10,16.0,3658,9,999999999,120,0.0730,0,88,0.200,0.0,1.0 +2002,9,8,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,5.0,77,88700,0,0,300,0,0,0,0,0,0,0,280,3.1,3,3,16.0,77777,9,999999999,120,0.0730,0,88,0.200,0.0,1.0 +2002,9,8,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,4.4,76,88300,0,0,290,0,0,0,0,0,0,0,0,0.0,1,1,16.0,77777,9,999999999,120,0.0730,0,88,0.200,0.0,1.0 +2002,9,8,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,3.9,80,88700,0,34,279,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,110,0.0730,0,88,0.200,0.0,1.0 +2002,9,8,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,5.0,77,88800,118,1346,287,44,360,13,4700,23100,2700,350,270,1.5,0,0,16.0,77777,9,999999999,100,0.0730,0,88,0.200,0.0,1.0 +2002,9,8,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.0,5.0,66,88900,352,1346,296,218,661,45,22600,57100,7700,910,200,1.5,0,0,16.1,77777,9,999999999,89,0.0730,0,88,0.200,0.0,1.0 +2002,9,8,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,3.9,53,89000,571,1346,318,379,690,86,40000,66600,11700,1760,130,1.5,3,3,16.0,77777,9,999999999,89,0.0730,0,88,0.200,0.0,1.0 +2002,9,8,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,4.4,51,89100,757,1346,323,536,725,127,56500,72600,15600,2900,270,4.1,3,3,16.0,77777,9,999999999,100,0.0730,0,88,0.200,0.0,1.0 +2002,9,8,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,3.3,42,88500,899,1346,332,589,569,208,63400,58900,24000,5430,280,5.7,4,4,16.0,77777,9,999999999,100,0.0730,0,88,0.200,0.0,1.0 +2002,9,8,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,3.3,39,89100,986,1346,337,415,90,349,45700,9200,38900,12650,290,7.2,4,4,16.0,77777,9,999999999,89,0.0730,0,88,0.200,0.0,1.0 +2002,9,8,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,0.6,33,89100,1012,1346,318,711,565,285,75500,58700,31200,9060,260,5.7,0,0,16.0,77777,9,999999999,89,0.0730,0,88,0.200,0.0,1.0 +2002,9,8,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,0.0,30,89100,976,1346,336,632,454,302,66300,47000,32100,9080,280,6.7,4,4,16.0,77777,9,999999999,89,0.0730,0,88,0.200,0.0,1.0 +2002,9,8,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,1.1,31,89100,880,1346,345,625,594,235,66200,61300,26000,6060,270,3.6,6,6,16.0,77777,9,999999999,89,0.0730,0,88,0.200,0.0,1.0 +2002,9,8,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,0.6,29,89100,730,1346,348,236,50,209,26000,5000,23300,6600,250,5.2,6,6,16.0,77777,9,999999999,89,0.0730,0,88,0.200,0.0,1.0 +2002,9,8,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,0.6,29,88400,537,1346,332,369,517,162,38000,49400,18200,3250,290,5.7,1,1,16.0,77777,9,999999999,100,0.0730,0,88,0.200,0.0,1.0 +2002,9,8,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,-0.6,29,89100,314,1346,325,236,536,111,23700,42700,13700,2140,290,6.7,1,1,16.0,77777,9,999999999,100,0.0730,0,88,0.200,0.0,1.0 +2002,9,8,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,0.0,34,89100,83,1156,310,25,227,12,3000,13000,2100,270,270,4.6,0,0,16.0,77777,9,999999999,100,0.0730,0,88,0.200,0.0,1.0 +2002,9,8,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,-0.6,34,89200,0,0,307,0,0,0,0,0,0,0,240,3.6,0,0,16.0,77777,9,999999999,100,0.0730,0,88,0.200,0.0,1.0 +2002,9,8,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,2.2,54,89100,0,0,294,0,0,0,0,0,0,0,270,4.6,0,0,16.0,77777,9,999999999,100,0.0730,0,88,0.200,0.0,1.0 +2002,9,8,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,1.7,54,89100,0,0,291,0,0,0,0,0,0,0,260,2.1,0,0,16.0,77777,9,999999999,89,0.0730,0,88,0.200,0.0,1.0 +2002,9,8,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,2.2,63,88700,0,0,290,0,0,0,0,0,0,0,120,3.1,1,1,16.0,77777,9,999999999,89,0.0730,0,88,0.200,0.0,1.0 +2002,9,8,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,1.1,58,89000,0,0,289,0,0,0,0,0,0,0,250,2.1,1,1,16.0,77777,9,999999999,89,0.0730,0,88,0.200,0.0,1.0 +2002,9,9,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,1.7,70,89000,0,0,281,0,0,0,0,0,0,0,320,2.1,1,1,16.0,77777,9,999999999,89,0.0730,0,88,0.200,0.0,1.0 +2002,9,9,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,1.7,65,89000,0,0,285,0,0,0,0,0,0,0,250,1.5,1,1,16.0,77777,9,999999999,89,0.0730,0,88,0.200,0.0,1.0 +2002,9,9,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,1.1,67,89000,0,0,284,0,0,0,0,0,0,0,170,1.5,2,2,16.0,77777,9,999999999,80,0.0730,0,88,0.200,0.0,1.0 +2002,9,9,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,0.6,65,89000,0,0,283,0,0,0,0,0,0,0,190,1.5,2,2,16.0,77777,9,999999999,80,0.0730,0,88,0.200,0.0,1.0 +2002,9,9,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,1.1,73,88800,0,0,279,0,0,0,0,0,0,0,250,2.6,2,2,16.0,77777,9,999999999,80,0.0730,0,88,0.200,0.0,1.0 +2002,9,9,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.9,2.2,89,89000,0,11,274,0,0,0,0,0,0,0,250,2.1,2,2,16.0,77777,9,999999999,80,0.0730,0,88,0.200,0.0,1.0 +2002,9,9,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,2.8,79,89200,114,1347,274,43,346,14,4600,21900,2700,350,0,0.0,0,0,16.0,77777,9,999999999,80,0.0730,0,88,0.200,0.0,1.0 +2002,9,9,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,2.8,74,89300,347,1347,278,209,648,41,21800,56000,7300,860,270,1.5,0,0,16.0,77777,9,999999999,89,0.0730,0,88,0.200,0.0,1.0 +2002,9,9,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,2.2,54,89500,566,1347,294,403,798,67,42400,76700,10100,1430,340,2.1,0,0,16.0,77777,9,999999999,89,0.0730,0,88,0.200,0.0,1.0 +2002,9,9,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,1.7,44,89600,753,1347,305,562,830,97,59000,82300,12900,2160,50,1.5,0,0,16.0,77777,9,999999999,89,0.0730,0,88,0.200,0.0,1.0 +2002,9,9,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,1.7,35,89000,894,1347,319,689,930,70,72200,92600,10500,1940,340,1.5,0,0,16.0,77777,9,999999999,100,0.0730,0,88,0.200,0.0,1.0 +2002,9,9,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,0.6,28,89700,981,1347,328,766,902,108,79300,90000,13600,2650,260,4.6,0,0,16.0,77777,9,999999999,100,0.0730,0,88,0.200,0.0,1.0 +2002,9,9,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,1.7,28,89700,1007,1347,337,784,926,90,81500,92600,12100,2590,290,7.2,0,0,16.0,77777,9,999999999,100,0.0730,0,88,0.200,0.0,1.0 +2002,9,9,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,2.2,27,89700,971,1347,342,766,939,87,79700,93800,11900,2400,260,8.2,0,0,16.0,77777,9,999999999,110,0.0730,0,88,0.200,0.0,1.0 +2002,9,9,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,1.7,26,89700,874,1347,342,679,888,101,70300,88100,13000,2160,270,6.2,0,0,16.0,77777,9,999999999,110,0.0730,0,88,0.200,0.0,1.0 +2002,9,9,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,2.2,27,89700,724,1347,342,552,838,101,57400,82500,13000,2140,260,7.2,0,0,16.0,77777,9,999999999,110,0.0730,0,88,0.200,0.0,1.0 +2002,9,9,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,2.8,28,88800,530,1347,343,380,728,93,39600,68800,12400,1830,300,5.2,0,0,16.0,77777,9,999999999,110,0.0730,0,88,0.200,0.0,1.0 +2002,9,9,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,2.8,29,89700,307,1347,341,230,653,81,23000,51200,11300,1360,270,4.1,0,0,16.0,77777,9,999999999,120,0.0730,0,88,0.200,0.0,1.0 +2002,9,9,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,2.8,32,89600,77,1111,333,22,262,8,2900,16000,1700,250,220,2.1,0,0,16.0,77777,9,999999999,120,0.0730,0,88,0.200,0.0,1.0 +2002,9,9,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,3.9,41,89600,0,0,321,0,0,0,0,0,0,0,210,2.6,0,0,16.0,77777,9,999999999,120,0.0730,0,88,0.200,0.0,1.0 +2002,9,9,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,5.6,60,89400,0,0,306,0,0,0,0,0,0,0,290,2.6,0,0,16.0,77777,9,999999999,120,0.0730,0,88,0.200,0.0,1.0 +2002,9,9,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,4.4,57,89400,0,0,303,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,120,0.0730,0,88,0.200,0.0,1.0 +2002,9,9,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,4.4,59,88900,0,0,300,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,129,0.0730,0,88,0.200,0.0,1.0 +2002,9,9,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,3.9,57,89300,0,0,300,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,129,0.0730,0,88,0.200,0.0,1.0 +2002,9,10,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,3.9,63,89300,0,0,293,0,0,0,0,0,0,0,290,2.6,0,0,16.0,77777,9,999999999,129,0.0720,0,88,0.200,0.0,1.0 +2002,9,10,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,3.9,68,89200,0,0,288,0,0,0,0,0,0,0,190,1.5,0,0,16.0,77777,9,999999999,129,0.0720,0,88,0.200,0.0,1.0 +2002,9,10,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,3.9,76,89200,0,0,282,0,0,0,0,0,0,0,170,1.5,0,0,14.4,77777,9,999999999,120,0.0720,0,88,0.200,0.0,1.0 +2002,9,10,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,3.9,71,89200,0,0,286,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,110,0.0720,0,88,0.200,0.0,1.0 +2002,9,10,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,3.3,71,88900,0,0,283,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,100,0.0720,0,88,0.200,0.0,1.0 +2002,9,10,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,3.9,82,89200,0,0,277,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,100,0.0720,0,88,0.200,0.0,1.0 +2002,9,10,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,5.0,80,89300,109,1337,285,39,340,12,4400,21800,2500,330,270,2.6,0,0,16.0,77777,9,999999999,100,0.0720,0,88,0.200,0.0,1.0 +2002,9,10,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,5.0,71,89400,342,1348,292,215,684,41,22400,58800,7500,850,0,0.0,0,0,16.0,77777,9,999999999,110,0.0720,0,88,0.200,0.0,1.0 +2002,9,10,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,5.0,61,89500,561,1348,301,383,746,71,39900,71400,10200,1470,350,1.5,0,0,16.0,77777,9,999999999,100,0.0720,0,88,0.200,0.0,1.0 +2002,9,10,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,4.4,49,89500,748,1348,312,556,824,98,58300,81600,12900,2170,0,0.0,0,0,16.0,77777,9,999999999,100,0.0720,0,88,0.200,0.0,1.0 +2002,9,10,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,5.6,45,88800,889,1348,326,689,888,101,71300,88200,13000,2220,20,1.5,0,0,16.0,77777,9,999999999,100,0.0720,0,88,0.200,0.0,1.0 +2002,9,10,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,6.7,42,89500,976,1348,337,737,776,173,78100,79000,20800,5110,30,2.6,0,0,16.0,77777,9,999999999,100,0.0720,0,88,0.200,0.0,1.0 +2002,9,10,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,6.1,35,89500,1002,1348,347,748,806,147,78000,80800,17800,4140,50,1.5,0,0,16.0,77777,9,999999999,110,0.0720,0,88,0.200,0.0,1.0 +2002,9,10,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,4.4,28,89400,965,1348,353,735,855,121,77900,86200,16000,3380,60,2.6,0,0,16.0,77777,9,999999999,110,0.0720,0,88,0.200,0.0,1.0 +2002,9,10,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,4.4,26,89400,868,1348,358,673,889,99,69700,88200,12800,2130,80,2.6,0,0,16.0,77777,9,999999999,100,0.0720,0,88,0.200,0.0,1.0 +2002,9,10,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,5.0,27,89300,717,1348,362,539,832,95,56300,82000,12600,2050,90,4.6,0,0,16.0,77777,9,999999999,100,0.0720,0,88,0.200,0.0,1.0 +2002,9,10,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,3.9,25,88400,523,1348,360,366,644,115,37400,60000,14100,2150,90,5.2,0,0,16.0,77777,9,999999999,100,0.0720,0,88,0.200,0.0,1.0 +2002,9,10,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,2.8,24,89200,299,1348,353,223,494,113,22200,38400,13600,2200,110,3.6,0,0,16.0,77777,9,999999999,100,0.0720,0,88,0.200,0.0,1.0 +2002,9,10,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,2.2,26,89100,71,1067,345,18,187,9,2400,10600,1600,210,180,1.5,0,0,16.0,77777,9,999999999,100,0.0720,0,88,0.200,0.0,1.0 +2002,9,10,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,5.0,39,89000,0,0,333,0,0,0,0,0,0,0,240,4.1,0,0,16.0,77777,9,999999999,89,0.0720,0,88,0.200,0.0,1.0 +2002,9,10,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,4.4,44,89000,0,0,320,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,89,0.0720,0,88,0.200,0.0,1.0 +2002,9,10,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,5.0,49,88900,0,0,316,0,0,0,0,0,0,0,240,2.1,0,0,16.0,77777,9,999999999,89,0.0720,0,88,0.200,0.0,1.0 +2002,9,10,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,5.0,53,88400,0,0,310,0,0,0,0,0,0,0,230,1.5,0,0,16.0,77777,9,999999999,89,0.0720,0,88,0.200,0.0,1.0 +2002,9,10,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,3.9,51,88800,0,0,307,0,0,0,0,0,0,0,240,2.1,0,0,16.0,77777,9,999999999,89,0.0720,0,88,0.200,0.0,1.0 +2002,9,11,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,5.0,59,88800,0,0,304,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,89,0.0720,0,88,0.200,0.0,1.0 +2002,9,11,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,4.4,61,88800,0,0,298,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,89,0.0720,0,88,0.200,0.0,1.0 +2002,9,11,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,4.4,65,88700,0,0,294,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,89,0.0720,0,88,0.200,0.0,1.0 +2002,9,11,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,4.4,73,88700,0,0,287,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,89,0.0720,0,88,0.200,0.0,1.0 +2002,9,11,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,4.4,71,88400,0,0,289,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,89,0.0720,0,88,0.200,0.0,1.0 +2002,9,11,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,5.0,80,88700,0,0,285,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,89,0.0720,0,88,0.200,0.0,1.0 +2002,9,11,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,5.0,74,88800,104,1292,289,38,319,13,4300,20300,2500,340,0,0.0,0,0,16.0,77777,9,999999999,89,0.0720,0,88,0.200,0.0,1.0 +2002,9,11,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,5.0,66,88900,338,1348,296,198,608,46,20400,51700,7400,910,110,1.5,0,0,16.0,77777,9,999999999,89,0.0720,0,88,0.200,0.0,1.0 +2002,9,11,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,5.6,60,89000,557,1348,306,372,723,73,38700,68900,10200,1490,0,0.0,0,0,16.0,77777,9,999999999,100,0.0720,0,88,0.200,0.0,1.0 +2002,9,11,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,6.1,51,89100,743,1348,319,556,853,84,59100,84900,12200,1950,360,1.5,0,0,16.0,77777,9,999999999,100,0.0720,0,88,0.200,0.0,1.0 +2002,9,11,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,6.1,45,88400,885,1348,329,639,823,97,68400,83100,13800,2550,0,0.0,0,0,16.0,77777,9,999999999,100,0.0720,0,88,0.200,0.0,1.0 +2002,9,11,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,5.6,35,89100,971,1348,344,766,920,102,79400,91800,13100,2550,20,2.1,0,0,16.0,77777,9,999999999,100,0.0720,0,88,0.200,0.0,1.0 +2002,9,11,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,5.6,30,89200,996,1348,357,778,944,79,81200,94400,11300,2370,320,2.1,0,0,16.0,77777,9,999999999,100,0.0720,0,88,0.200,0.0,1.0 +2002,9,11,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,6.1,27,89200,959,1348,368,767,946,93,79700,94400,12400,2420,340,1.5,0,0,16.0,77777,9,999999999,100,0.0720,0,88,0.200,0.0,1.0 +2002,9,11,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,3.3,21,89200,861,1348,370,667,871,109,70300,87300,14500,2670,350,2.1,0,0,16.0,77777,9,999999999,100,0.0720,0,88,0.200,0.0,1.0 +2002,9,11,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,2.8,20,89200,710,1348,370,526,795,106,54200,77800,13100,2160,10,2.1,0,0,16.0,77777,9,999999999,89,0.0720,0,88,0.200,0.0,1.0 +2002,9,11,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,2.8,20,88100,516,1348,370,368,719,93,38300,67500,12400,1810,330,1.5,0,0,16.0,77777,9,999999999,89,0.0720,0,88,0.200,0.0,1.0 +2002,9,11,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,3.9,22,89100,292,1348,368,217,614,84,21600,46800,11400,1370,20,1.5,0,0,16.0,77777,9,999999999,89,0.0720,0,88,0.200,0.0,1.0 +2002,9,11,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,6.1,35,89000,65,1023,347,15,218,6,2200,13100,1400,200,300,2.1,0,0,16.0,77777,9,999999999,89,0.0720,0,88,0.200,0.0,1.0 +2002,9,11,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,4.4,34,89000,0,0,337,0,0,0,0,0,0,0,250,4.1,0,0,16.0,77777,9,999999999,89,0.0720,0,88,0.200,0.0,1.0 +2002,9,11,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,4.4,36,89000,0,0,335,0,0,0,0,0,0,0,240,4.1,0,0,16.0,77777,9,999999999,89,0.0720,0,88,0.200,0.0,1.0 +2002,9,11,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,4.4,38,88900,0,0,330,0,0,0,0,0,0,0,240,3.6,0,0,16.0,77777,9,999999999,89,0.0720,0,88,0.200,0.0,1.0 +2002,9,11,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,5.6,51,88300,0,0,316,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,89,0.0720,0,88,0.200,0.0,1.0 +2002,9,11,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,5.0,53,88800,0,0,310,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,89,0.0720,0,88,0.200,0.0,1.0 +2002,9,12,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,4.4,55,88700,0,0,305,0,0,0,0,0,0,0,290,3.1,0,0,16.0,77777,9,999999999,80,0.0720,0,88,0.200,0.0,1.0 +2002,9,12,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,5.0,55,88700,0,0,308,0,0,0,0,0,0,0,230,2.1,0,0,16.0,77777,9,999999999,80,0.0720,0,88,0.200,0.0,1.0 +2002,9,12,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,5.0,66,88600,0,0,296,0,0,0,0,0,0,0,80,1.5,0,0,16.0,77777,9,999999999,80,0.0720,0,88,0.200,0.0,1.0 +2002,9,12,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,4.4,65,88600,0,0,294,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,80,0.0720,0,88,0.200,0.0,1.0 +2002,9,12,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,5.0,68,88300,0,0,294,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,80,0.0720,0,88,0.200,0.0,1.0 +2002,9,12,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,4.4,73,88600,0,0,287,0,0,0,0,0,0,0,290,2.6,0,0,16.0,77777,9,999999999,80,0.0720,0,88,0.200,0.0,1.0 +2002,9,12,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,5.6,74,88700,100,1270,292,33,209,17,3600,11000,2700,320,0,0.0,1,0,16.0,77777,9,999999999,80,0.0720,0,88,0.200,0.0,1.0 +2002,9,12,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,5.6,64,88800,333,1349,302,165,338,82,17200,27800,10400,1510,0,0.0,0,0,16.0,77777,9,999999999,80,0.0720,0,88,0.200,0.0,1.0 +2002,9,12,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,6.1,55,88900,552,1349,320,376,711,85,39600,68100,11700,1720,360,1.5,1,1,16.0,77777,9,999999999,80,0.0720,0,88,0.200,0.0,1.0 +2002,9,12,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,5.6,46,88900,738,1349,330,550,847,85,58300,84200,12100,1960,0,0.0,1,1,16.0,77777,9,999999999,80,0.0720,0,88,0.200,0.0,1.0 +2002,9,12,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,6.7,42,88300,880,1349,348,627,793,109,66400,79600,14300,2740,60,2.1,3,2,16.0,77777,9,999999999,80,0.0720,0,88,0.200,0.0,1.0 +2002,9,12,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,7.2,35,89000,966,1349,365,749,908,97,77700,90600,12700,2480,80,2.1,2,2,16.0,77777,9,999999999,80,0.0720,0,88,0.200,0.0,1.0 +2002,9,12,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,8.3,33,89000,991,1349,378,767,914,93,79600,91300,12300,2550,100,2.1,2,2,16.0,77777,9,999999999,80,0.0720,0,88,0.200,0.0,1.0 +2002,9,12,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,4.4,22,89000,953,1349,384,742,903,102,76800,90000,13100,2470,120,2.6,2,2,16.0,77777,9,999999999,80,0.0720,0,88,0.200,0.0,1.0 +2002,9,12,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,2.8,19,88900,855,1349,384,628,754,149,66300,76200,17900,3720,80,4.1,2,2,16.0,77777,9,999999999,89,0.0720,0,88,0.200,0.0,1.0 +2002,9,12,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.9,2.8,19,88900,703,1349,391,527,815,101,54500,79800,12800,2090,120,5.2,3,3,16.0,77777,9,999999999,89,0.0720,0,88,0.200,0.0,1.0 +2002,9,12,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,3.3,20,87900,508,1349,385,354,661,104,36400,61400,13200,1970,100,3.6,2,2,16.0,77777,9,999999999,89,0.0720,0,88,0.200,0.0,1.0 +2002,9,12,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,4.4,23,88800,284,1349,381,182,435,91,18500,33200,11500,1720,110,2.6,2,2,16.0,77777,9,999999999,100,0.0720,0,88,0.200,0.0,1.0 +2002,9,12,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,5.6,30,88700,59,978,368,11,144,5,1500,8500,1000,180,240,2.1,2,2,14.4,77777,9,999999999,100,0.0720,0,88,0.200,0.0,1.0 +2002,9,12,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,4.4,33,88700,0,0,346,0,0,0,0,0,0,0,250,4.1,1,1,16.0,77777,9,999999999,100,0.0720,0,88,0.200,0.0,1.0 +2002,9,12,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,5.6,45,88600,0,0,326,0,0,0,0,0,0,0,280,4.1,0,0,16.0,77777,9,999999999,100,0.0720,0,88,0.200,0.0,1.0 +2002,9,12,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,3.9,41,88500,0,0,321,0,0,0,0,0,0,0,270,3.6,0,0,16.0,77777,9,999999999,100,0.0720,0,88,0.200,0.0,1.0 +2002,9,12,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,3.3,39,88000,0,0,321,0,0,0,0,0,0,0,230,3.1,0,0,16.0,77777,9,999999999,110,0.0720,0,88,0.200,0.0,1.0 +2002,9,12,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,3.3,47,88400,0,0,309,0,0,0,0,0,0,0,120,1.5,0,0,16.0,77777,9,999999999,110,0.0720,0,88,0.200,0.0,1.0 +2002,9,13,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,4.4,53,88400,0,0,308,0,0,0,0,0,0,0,130,1.5,0,0,16.0,77777,9,999999999,110,0.0710,0,88,0.200,0.0,1.0 +2002,9,13,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,4.4,55,88400,0,0,305,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,110,0.0710,0,88,0.200,0.0,1.0 +2002,9,13,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,4.4,59,88300,0,0,300,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,100,0.0710,0,88,0.200,0.0,1.0 +2002,9,13,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,4.4,63,88300,0,0,296,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,89,0.0710,0,88,0.200,0.0,1.0 +2002,9,13,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,4.4,68,88000,0,0,291,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,80,0.0710,0,88,0.200,0.0,1.0 +2002,9,13,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,3.9,68,88300,0,0,288,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,80,0.0710,0,88,0.200,0.0,1.0 +2002,9,13,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,3.9,63,88400,95,1249,293,28,229,12,3200,13600,2100,270,0,0.0,0,0,16.0,77777,9,999999999,80,0.0710,0,88,0.200,0.0,1.0 +2002,9,13,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,5.0,61,88500,328,1350,301,188,579,47,19200,48700,7400,900,20,1.5,0,0,16.0,77777,9,999999999,80,0.0710,0,88,0.200,0.0,1.0 +2002,9,13,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,5.6,57,88600,547,1350,309,366,721,73,38000,68500,10100,1470,0,0.0,0,0,16.0,77777,9,999999999,89,0.0710,0,88,0.200,0.0,1.0 +2002,9,13,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,5.0,46,88700,734,1350,320,534,818,88,56400,81100,12200,1990,0,0.0,0,0,16.0,77777,9,999999999,89,0.0710,0,88,0.200,0.0,1.0 +2002,9,13,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,5.6,37,88100,875,1350,339,633,852,79,66000,84700,11000,2010,100,2.1,0,0,16.0,77777,9,999999999,100,0.0710,0,88,0.200,0.0,1.0 +2002,9,13,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,4.4,26,88900,960,1350,358,719,794,153,76800,81100,19000,4440,0,0.0,0,0,16.0,77777,9,999999999,100,0.0710,0,88,0.200,0.0,1.0 +2002,9,13,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,1.1,18,88900,985,1350,365,767,860,137,80300,86400,17200,3810,10,2.1,0,0,16.0,77777,9,999999999,100,0.0710,0,88,0.200,0.0,1.0 +2002,9,13,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,1.7,18,88900,947,1350,368,704,801,141,73200,80000,16900,3610,10,4.6,0,0,16.0,77777,9,999999999,100,0.0710,0,88,0.200,0.0,1.0 +2002,9,13,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.9,-2.2,13,88900,848,1350,368,629,804,122,65400,80000,15000,2810,290,5.2,0,0,16.0,77777,9,999999999,100,0.0710,0,88,0.200,0.0,1.0 +2002,9,13,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.9,-1.1,14,88900,696,1350,370,529,847,91,55300,83200,12200,1950,290,6.2,0,0,16.0,77777,9,999999999,100,0.0710,0,88,0.200,0.0,1.0 +2002,9,13,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,1.7,18,87900,501,1350,368,356,709,92,36900,66000,12300,1770,270,4.6,0,0,16.0,77777,9,999999999,89,0.0710,0,88,0.200,0.0,1.0 +2002,9,13,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,7.8,35,88800,277,1350,359,204,600,80,20200,44800,11000,1300,360,5.7,0,0,16.0,77777,9,999999999,89,0.0710,0,88,0.200,0.0,1.0 +2002,9,13,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,7.8,44,88800,54,934,341,9,184,4,1700,10800,1000,150,280,3.1,0,0,16.0,77777,9,999999999,89,0.0710,0,88,0.200,0.0,1.0 +2002,9,13,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,7.2,45,88900,0,0,335,0,0,0,0,0,0,0,300,4.6,0,0,16.0,77777,9,999999999,89,0.0710,0,88,0.200,0.0,1.0 +2002,9,13,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,7.2,52,88900,0,0,325,0,0,0,0,0,0,0,270,3.6,0,0,16.0,77777,9,999999999,100,0.0710,0,88,0.200,0.0,1.0 +2002,9,13,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,6.7,52,88900,0,0,322,0,0,0,0,0,0,0,250,4.1,0,0,16.0,77777,9,999999999,100,0.0710,0,88,0.200,0.0,1.0 +2002,9,13,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,6.7,55,88400,0,0,317,0,0,0,0,0,0,0,250,3.6,0,0,16.0,77777,9,999999999,100,0.0710,0,88,0.200,0.0,1.0 +2002,9,13,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,6.7,60,88800,0,0,312,0,0,0,0,0,0,0,250,3.6,0,0,16.0,77777,9,999999999,100,0.0710,0,88,0.200,0.0,1.0 +2002,9,14,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,6.1,62,88800,0,0,307,0,0,0,0,0,0,0,260,3.6,0,0,16.0,77777,9,999999999,89,0.0710,0,88,0.200,0.0,1.0 +2002,9,14,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,6.1,64,88800,0,0,305,0,0,0,0,0,0,0,250,3.6,0,0,16.0,77777,9,999999999,89,0.0710,0,88,0.200,0.0,1.0 +2002,9,14,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,6.1,68,88800,0,0,300,0,0,0,0,0,0,0,310,1.5,0,0,16.0,77777,9,999999999,89,0.0710,0,88,0.200,0.0,1.0 +2002,9,14,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,5.6,74,88800,0,0,292,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,89,0.0710,0,88,0.200,0.0,1.0 +2002,9,14,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,5.0,80,88500,0,0,285,0,0,0,0,0,0,0,40,1.5,0,0,16.0,77777,9,999999999,89,0.0710,0,88,0.200,0.0,1.0 +2002,9,14,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,5.0,77,88800,0,0,287,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,89,0.0710,0,88,0.200,0.0,1.0 +2002,9,14,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,5.0,77,88900,91,1227,287,30,272,12,3500,16000,2300,270,0,0.0,0,0,16.0,77777,9,999999999,89,0.0710,0,88,0.200,0.0,1.0 +2002,9,14,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,5.6,71,89000,323,1351,295,187,567,51,19500,46800,8200,960,0,0.0,0,0,16.0,77777,9,999999999,89,0.0710,0,88,0.200,0.0,1.0 +2002,9,14,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,6.1,62,89100,542,1351,307,375,778,62,39600,74300,9700,1330,0,0.0,0,0,16.0,77777,9,999999999,89,0.0710,0,88,0.200,0.0,1.0 +2002,9,14,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,6.7,58,89100,729,1351,321,539,835,87,56900,82800,12100,1970,80,1.5,1,1,16.0,77777,9,999999999,89,0.0710,0,88,0.200,0.0,1.0 +2002,9,14,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,7.2,48,88500,870,1351,330,660,876,95,68600,86900,12400,2120,40,2.1,0,0,16.0,77777,9,999999999,89,0.0710,0,88,0.200,0.0,1.0 +2002,9,14,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,8.3,44,89200,955,1351,344,731,854,126,77100,85900,16200,3400,0,0.0,0,0,16.0,77777,9,999999999,100,0.0710,0,88,0.200,0.0,1.0 +2002,9,14,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,8.3,38,89200,979,1351,355,743,842,130,78200,84700,16600,3640,80,2.6,0,0,16.0,77777,9,999999999,110,0.0710,0,88,0.200,0.0,1.0 +2002,9,14,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,4.4,25,89200,941,1351,363,711,819,139,73900,81800,16800,3530,80,3.6,0,0,16.0,77777,9,999999999,110,0.0710,0,88,0.200,0.0,1.0 +2002,9,14,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,2.8,20,89200,842,1351,370,623,804,120,64800,80000,14800,2750,80,1.5,0,0,16.0,77777,9,999999999,110,0.0710,0,88,0.200,0.0,1.0 +2002,9,14,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,2.8,19,89200,689,1351,372,516,810,101,53200,79100,12700,2050,70,3.1,0,0,16.0,77777,9,999999999,100,0.0710,0,88,0.200,0.0,1.0 +2002,9,14,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,3.9,22,88200,494,1351,371,325,545,125,34000,51100,15200,2410,70,3.1,0,0,16.0,77777,9,999999999,89,0.0710,0,88,0.200,0.0,1.0 +2002,9,14,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,5.0,26,89100,269,1351,364,136,212,94,14100,15800,10900,1910,120,2.1,0,0,16.0,77777,9,999999999,89,0.0710,0,88,0.200,0.0,1.0 +2002,9,14,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,7.2,41,89000,49,889,367,5,60,3,800,3300,600,80,270,2.6,7,6,16.0,77777,9,999999999,100,0.0710,0,88,0.200,0.0,1.0 +2002,9,14,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,4.4,37,88900,0,0,355,0,0,0,0,0,0,0,300,2.6,7,6,16.0,77777,9,999999999,100,0.0710,0,88,0.200,0.0,1.0 +2002,9,14,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,4.4,41,88900,0,0,344,0,0,0,0,0,0,0,0,0.0,6,5,16.0,77777,9,999999999,100,0.0710,0,88,0.200,0.0,1.0 +2002,9,14,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,3.3,38,88900,0,0,340,0,0,0,0,0,0,0,0,0.0,5,4,16.0,77777,9,999999999,100,0.0710,0,88,0.200,0.0,1.0 +2002,9,14,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,3.3,45,88200,0,0,327,0,0,0,0,0,0,0,0,0.0,4,4,16.0,77777,9,999999999,100,0.0710,0,88,0.200,0.0,1.0 +2002,9,14,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,3.3,45,88700,0,0,321,0,0,0,0,0,0,0,0,0.0,2,2,16.0,77777,9,999999999,100,0.0710,0,88,0.200,0.0,1.0 +2002,9,15,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,3.3,45,88700,0,0,330,0,0,0,0,0,0,0,260,1.5,6,5,16.0,77777,9,999999999,100,0.0710,0,88,0.200,0.0,1.0 +2002,9,15,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,3.9,51,88600,0,0,307,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,100,0.0710,0,88,0.200,0.0,1.0 +2002,9,15,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,3.9,55,88600,0,0,302,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,89,0.0710,0,88,0.200,0.0,1.0 +2002,9,15,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,3.9,61,88500,0,0,313,0,0,0,0,0,0,0,0,0.0,6,5,16.0,77777,9,999999999,80,0.0710,0,88,0.200,0.0,1.0 +2002,9,15,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,3.3,54,88200,0,0,315,0,0,0,0,0,0,0,0,0.0,10,4,16.0,77777,9,999999999,80,0.0710,0,88,0.200,0.0,1.0 +2002,9,15,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,3.3,61,88600,0,0,308,0,0,0,0,0,0,0,0,0.0,10,4,16.0,77777,9,999999999,89,0.0710,0,88,0.200,0.0,1.0 +2002,9,15,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,3.9,63,88600,87,1182,308,13,3,12,1500,0,1500,460,0,0.0,10,4,16.0,77777,9,999999999,100,0.0710,0,88,0.200,0.0,1.0 +2002,9,15,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,4.4,57,88700,318,1351,321,89,31,81,9700,2600,9100,2100,0,0.0,10,5,16.0,77777,9,999999999,110,0.0710,0,88,0.200,0.0,1.0 +2002,9,15,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,4.4,49,88800,537,1351,334,321,408,158,33100,39000,17500,3160,0,0.0,10,6,16.0,77777,9,999999999,110,0.0710,0,88,0.200,0.0,1.0 +2002,9,15,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,5.0,43,88900,724,1351,352,448,473,195,47200,47800,21500,4300,20,1.5,10,7,16.0,77777,9,999999999,110,0.0710,0,88,0.200,0.0,1.0 +2002,9,15,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,5.6,37,88200,864,1351,366,531,485,220,56500,50000,24500,5520,10,1.5,10,7,16.0,77777,9,999999999,100,0.0710,0,88,0.200,0.0,1.0 +2002,9,15,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,3.9,28,88900,950,1351,378,708,752,178,74700,76200,21000,4980,0,0.0,9,7,16.0,77777,9,999999999,100,0.0710,0,88,0.200,0.0,1.0 +2002,9,15,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,5.0,25,88900,974,1351,403,694,698,190,73100,70700,22000,5500,360,2.1,9,8,16.0,77777,9,999999999,110,0.0710,0,88,0.200,0.0,1.0 +2002,9,15,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,5.0,23,88900,935,1351,405,693,795,142,71900,79300,16900,3530,360,1.5,8,7,16.0,77777,9,999999999,110,0.0710,0,88,0.200,0.0,1.0 +2002,9,15,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,31.1,5.0,19,88800,835,1351,409,590,676,172,61600,67600,19700,4090,0,0.0,5,4,16.0,77777,9,999999999,110,0.0710,0,88,0.200,0.0,1.0 +2002,9,15,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,32.2,-2.2,11,88800,682,1351,392,459,597,156,48900,60000,18500,3280,180,4.1,1,1,16.0,77777,9,999999999,110,0.0710,0,88,0.200,0.0,1.0 +2002,9,15,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,31.7,-2.2,11,87600,486,1351,402,328,587,116,33300,53400,14000,2100,170,5.2,4,4,16.0,77777,9,999999999,110,0.0710,0,88,0.200,0.0,1.0 +2002,9,15,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.6,-3.3,11,88700,261,1351,395,142,285,87,14800,20900,10700,1740,180,4.6,5,4,16.0,77777,9,999999999,120,0.0710,0,88,0.200,0.0,1.0 +2002,9,15,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,-2.2,13,88600,44,845,391,4,73,2,700,4200,400,80,180,4.6,10,6,16.0,77777,9,999999999,129,0.0710,0,88,0.200,0.0,1.0 +2002,9,15,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,-1.1,16,88500,0,0,384,0,0,0,0,0,0,0,180,5.7,10,6,16.0,77777,9,999999999,129,0.0710,0,88,0.200,0.0,1.0 +2002,9,15,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,-1.1,15,88400,0,0,394,0,0,0,0,0,0,0,190,7.2,10,7,16.0,77777,9,999999999,139,0.0710,0,88,0.200,0.0,1.0 +2002,9,15,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,0.6,23,88400,0,0,371,0,0,0,0,0,0,0,270,3.1,8,7,16.0,77777,9,999999999,150,0.0710,0,88,0.200,0.0,1.0 +2002,9,15,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,1.1,27,87600,0,0,353,0,0,0,0,0,0,0,270,3.6,7,5,16.0,77777,9,999999999,150,0.0710,0,88,0.200,0.0,1.0 +2002,9,15,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,0.6,27,88200,0,0,357,0,0,0,0,0,0,0,300,2.6,8,7,16.0,77777,9,999999999,150,0.0710,0,88,0.200,0.0,1.0 +2002,9,16,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,1.1,31,88200,0,0,340,0,0,0,0,0,0,0,160,2.1,5,4,16.0,77777,9,999999999,150,0.0700,0,88,0.200,0.0,1.0 +2002,9,16,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,1.7,39,88100,0,0,312,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,139,0.0700,0,88,0.200,0.0,1.0 +2002,9,16,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,2.2,40,88000,0,0,313,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,129,0.0700,0,88,0.200,0.0,1.0 +2002,9,16,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,1.7,42,87900,0,0,317,0,0,0,0,0,0,0,280,2.1,2,2,16.0,77777,9,999999999,129,0.0700,0,88,0.200,0.0,1.0 +2002,9,16,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,1.7,41,87500,0,0,331,0,0,0,0,0,0,0,180,1.5,7,6,16.0,77777,9,999999999,120,0.0700,0,88,0.200,0.0,1.0 +2002,9,16,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,2.2,47,87900,0,0,327,0,0,0,0,0,0,0,0,0.0,8,7,16.0,77777,9,999999999,120,0.0700,0,88,0.200,0.0,1.0 +2002,9,16,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,2.2,45,87900,83,1161,319,14,53,11,1700,2300,1500,180,0,0.0,3,3,16.0,77777,9,999999999,129,0.0700,0,88,0.200,0.0,1.0 +2002,9,16,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,3.3,49,87900,313,1352,325,88,21,83,9600,1800,9200,2120,70,1.5,5,5,16.0,77777,9,999999999,129,0.0700,0,88,0.200,0.0,1.0 +2002,9,16,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,2.2,35,88000,532,1352,354,206,74,177,22600,7100,19800,4820,0,0.0,9,8,16.0,77777,9,999999999,139,0.0700,0,88,0.200,0.0,1.0 +2002,9,16,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,2.8,33,88100,719,1352,363,343,175,249,37200,18000,27500,6350,330,1.5,10,8,16.0,77777,9,999999999,150,0.0700,0,88,0.200,0.0,1.0 +2002,9,16,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,2.8,28,87400,859,1352,371,593,657,174,61900,65900,19900,4260,0,0.0,8,7,16.0,77777,9,999999999,150,0.0700,0,88,0.200,0.0,1.0 +2002,9,16,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,3.3,24,88100,944,1352,381,708,687,227,73300,68600,25300,6070,10,1.5,6,5,16.0,77777,9,999999999,150,0.0700,0,88,0.200,0.0,1.0 +2002,9,16,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,4.4,22,88100,968,1352,387,244,12,235,28700,1000,28000,10860,10,3.6,3,2,16.0,77777,9,999999999,150,0.0700,0,88,0.200,0.0,1.0 +2002,9,16,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,2.2,19,88100,928,1352,385,343,42,314,37700,4300,34800,10920,270,5.7,3,3,16.0,77777,9,999999999,150,0.0700,0,88,0.200,0.0,1.0 +2002,9,16,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,1.7,20,88000,829,1352,379,255,12,248,29300,1100,28700,10390,250,8.2,5,4,14.4,77777,9,999999999,150,0.0700,0,88,0.200,0.0,1.0 +2002,9,16,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,2.8,22,88100,675,1352,391,124,0,124,14600,0,14600,5550,270,5.7,9,7,16.0,77777,9,999999999,139,0.0700,0,88,0.200,0.0,1.0 +2002,9,16,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,3.3,24,87200,479,1352,378,139,0,139,15600,0,15600,5080,280,3.1,10,4,16.0,77777,9,999999999,139,0.0700,0,88,0.200,0.0,1.0 +2002,9,16,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,2.2,23,88100,254,1352,374,50,0,50,5700,0,5700,1840,290,6.2,10,4,16.0,77777,9,999999999,139,0.0700,0,88,0.200,0.0,1.0 +2002,9,16,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,1.7,25,88200,40,800,372,1,0,1,100,0,100,40,280,5.7,10,7,16.0,77777,9,999999999,150,0.0700,0,88,0.200,0.0,1.0 +2002,9,16,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,1.1,25,88200,0,0,393,0,0,0,0,0,0,0,260,4.6,10,10,16.0,3048,9,999999999,150,0.0700,0,88,0.200,0.0,1.0 +2002,9,16,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,3.3,34,88100,0,0,353,0,0,0,0,0,0,0,250,3.6,10,6,16.0,77777,9,999999999,150,0.0700,0,88,0.200,0.0,1.0 +2002,9,16,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,1.1,30,88100,0,0,358,0,0,0,0,0,0,0,250,3.6,10,8,16.0,77777,9,999999999,150,0.0700,0,88,0.200,0.0,1.0 +2002,9,16,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,1.7,34,87500,0,0,371,0,0,0,0,0,0,0,280,2.1,10,10,16.0,3353,9,999999999,160,0.0700,0,88,0.200,0.0,1.0 +2002,9,16,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,2.2,38,88000,0,0,339,0,0,0,0,0,0,0,300,3.1,7,6,16.0,77777,9,999999999,160,0.0700,0,88,0.200,0.0,1.0 +2002,9,17,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,2.2,35,88000,0,0,372,0,0,0,0,0,0,0,250,4.6,10,10,16.0,3048,9,999999999,160,0.0700,0,88,0.200,0.0,1.0 +2002,9,17,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,2.8,38,88000,0,0,370,0,0,0,0,0,0,0,260,4.6,10,10,16.0,2591,9,999999999,160,0.0700,0,88,0.200,0.0,1.0 +2002,9,17,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,7.2,67,87900,0,0,355,0,0,0,0,0,0,0,250,4.1,10,10,16.0,2134,9,999999999,170,0.0700,0,88,0.200,0.0,1.0 +2002,9,17,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,8.3,77,87800,0,0,351,0,0,0,0,0,0,0,260,3.1,10,10,16.0,2591,9,999999999,170,0.0700,0,88,0.200,0.0,1.0 +2002,9,17,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,7.8,74,87400,0,0,351,0,0,0,0,0,0,0,0,0.0,10,10,16.0,3353,9,999999999,179,0.0700,0,88,0.200,0.0,1.0 +2002,9,17,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,7.8,72,87800,0,0,354,0,0,0,0,0,0,0,260,2.6,10,10,16.0,2438,9,999999999,179,0.0700,0,88,0.200,0.0,1.0 +2002,9,17,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,7.2,71,87900,78,1139,350,5,0,5,600,0,600,200,280,3.6,10,10,16.0,2286,9,999999999,179,0.0700,0,88,0.200,0.0,1.0 +2002,9,17,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,8.9,89,87900,308,1353,344,30,0,30,3600,0,3600,1260,0,0.0,10,10,12.8,1829,9,999999999,179,0.0700,0,88,0.200,2.0,1.0 +2002,9,17,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,9.4,92,87900,527,1353,345,105,0,105,12200,0,12200,4360,0,0.0,10,10,9.6,1097,9,999999999,170,0.0700,0,88,0.200,2.0,1.0 +2002,9,17,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,9.4,92,87900,714,1353,345,121,0,121,14400,0,14400,5560,0,0.0,10,10,11.2,1829,9,999999999,160,0.0700,0,88,0.200,1.0,1.0 +2002,9,17,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,10.0,93,87600,854,1353,348,106,0,106,13100,0,13100,5320,80,2.1,10,10,6.4,1067,9,999999999,150,0.0700,0,88,0.200,1.0,1.0 +2002,9,17,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,10.0,89,87900,939,1353,341,123,0,123,15200,0,15200,6260,110,3.1,10,9,16.0,945,9,999999999,150,0.0700,0,88,0.200,0.0,1.0 +2002,9,17,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,9.4,86,87900,962,1353,350,165,0,165,20000,0,20000,8140,100,2.6,10,10,14.4,1524,9,999999999,150,0.0700,0,88,0.200,0.0,1.0 +2002,9,17,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,9.4,86,87900,922,1353,350,165,0,165,19900,0,19900,8010,90,1.5,10,10,11.2,975,9,999999999,150,0.0700,0,88,0.200,0.0,1.0 +2002,9,17,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,10.6,90,88000,822,1353,354,148,0,148,17700,0,17700,6980,90,2.1,10,10,16.0,1097,9,999999999,160,0.0700,0,88,0.200,0.0,1.0 +2002,9,17,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,9.4,77,88000,668,1353,336,183,0,183,20900,0,20900,7420,190,1.5,10,7,16.0,77777,9,999999999,160,0.0700,0,88,0.200,0.0,1.0 +2002,9,17,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,7.8,67,87500,471,1353,349,132,0,132,14800,0,14800,4870,0,0.0,10,9,16.0,1829,9,999999999,160,0.0700,0,88,0.200,0.0,1.0 +2002,9,17,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,9.4,74,88000,246,1353,351,174,316,116,17500,22200,13500,2550,20,1.5,10,9,16.0,77777,9,999999999,150,0.0700,0,88,0.200,0.0,1.0 +2002,9,17,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,11.1,93,88000,35,755,355,2,65,1,500,3600,300,40,330,1.5,10,10,6.4,1463,9,999999999,139,0.0700,0,88,0.200,0.0,1.0 +2002,9,17,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,10.0,96,88000,0,0,324,0,0,0,0,0,0,0,280,2.1,8,7,16.0,77777,9,999999999,139,0.0700,0,88,0.200,0.0,1.0 +2002,9,17,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,10.0,93,88100,0,0,326,0,0,0,0,0,0,0,230,3.1,8,7,16.0,77777,9,999999999,139,0.0700,0,88,0.200,0.0,1.0 +2002,9,17,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,7.8,83,88200,0,0,343,0,0,0,0,0,0,0,260,2.1,10,10,16.0,2134,9,999999999,129,0.0700,0,88,0.200,0.0,1.0 +2002,9,17,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,8.3,83,87700,0,0,346,0,0,0,0,0,0,0,270,2.1,10,10,16.0,1981,9,999999999,129,0.0700,0,88,0.200,0.0,1.0 +2002,9,17,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,9.4,92,88200,0,0,345,0,0,0,0,0,0,0,280,2.1,10,10,16.0,1433,9,999999999,129,0.0700,0,88,0.200,0.0,1.0 +2002,9,18,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,8.9,89,88200,0,0,344,0,0,0,0,0,0,0,0,0.0,10,10,16.0,1524,9,999999999,129,0.0690,0,88,0.200,0.0,1.0 +2002,9,18,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,9.4,89,88300,0,0,347,0,0,0,0,0,0,0,230,1.5,10,10,14.4,1433,9,999999999,129,0.0690,0,88,0.200,0.0,1.0 +2002,9,18,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,8.9,86,88300,0,0,347,0,0,0,0,0,0,0,0,0.0,10,10,16.0,1463,9,999999999,129,0.0690,0,88,0.200,0.0,1.0 +2002,9,18,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,6.1,71,88300,0,0,343,0,0,0,0,0,0,0,260,5.2,10,10,16.0,1676,9,999999999,129,0.0690,0,88,0.200,0.0,1.0 +2002,9,18,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,5.6,71,87900,0,0,340,0,0,0,0,0,0,0,290,3.1,10,10,16.0,1372,9,999999999,129,0.0690,0,88,0.200,0.0,1.0 +2002,9,18,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,5.6,71,88400,0,0,340,0,0,0,0,0,0,0,260,5.7,10,10,16.0,1676,9,999999999,129,0.0690,0,88,0.200,0.0,1.0 +2002,9,18,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,5.0,68,88500,74,1094,340,3,0,3,400,0,400,120,290,4.1,10,10,16.0,1829,9,999999999,120,0.0690,0,88,0.200,0.0,1.0 +2002,9,18,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,5.6,69,88600,303,1354,343,166,420,72,17400,33200,9900,1320,280,2.1,10,10,16.0,1829,9,999999999,120,0.0690,0,88,0.200,0.0,1.0 +2002,9,18,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,5.0,63,88700,522,1354,328,352,645,103,36400,60400,13000,1970,260,8.2,8,8,16.0,1829,9,999999999,110,0.0690,0,88,0.200,0.0,1.0 +2002,9,18,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,4.4,57,88700,709,1354,350,384,297,228,40900,31000,24700,5320,280,7.2,10,10,16.0,1524,9,999999999,110,0.0690,0,88,0.200,0.0,1.0 +2002,9,18,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,4.4,55,88200,849,1354,342,397,172,289,43300,18100,32000,8030,280,7.2,9,9,16.0,1829,9,999999999,110,0.0690,0,88,0.200,0.0,1.0 +2002,9,18,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,4.4,49,88800,933,1354,360,252,18,239,29500,1500,28400,10800,250,6.2,10,10,16.0,1829,9,999999999,110,0.0690,0,88,0.200,0.0,1.0 +2002,9,18,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,3.3,47,88700,956,1354,356,536,301,323,57800,32400,34800,9480,290,5.7,10,10,16.0,1829,9,999999999,110,0.0690,0,88,0.200,0.0,1.0 +2002,9,18,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,0.6,35,88800,916,1354,344,650,656,205,67600,65700,23000,5310,290,7.7,8,8,16.0,1981,9,999999999,110,0.0690,0,88,0.200,0.0,1.0 +2002,9,18,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,0.6,33,88800,815,1354,337,613,818,119,63500,81100,14600,2630,290,10.3,5,5,16.0,77777,9,999999999,110,0.0690,0,88,0.200,0.0,1.0 +2002,9,18,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,0.6,33,88700,661,1354,332,485,643,170,51000,64100,19600,3560,290,8.2,3,3,16.0,77777,9,999999999,110,0.0690,0,88,0.200,0.0,1.0 +2002,9,18,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,0.6,34,88100,464,1354,337,230,229,151,24100,21600,16700,3170,280,9.3,6,6,16.0,77777,9,999999999,110,0.0690,0,88,0.200,0.0,1.0 +2002,9,18,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,1.1,39,88800,238,1354,327,165,287,115,16700,19800,13200,2550,290,7.2,5,5,16.0,77777,9,999999999,110,0.0690,0,88,0.200,0.0,1.0 +2002,9,18,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,1.1,43,88700,31,711,312,1,52,1,400,2900,300,40,280,4.1,2,2,16.0,77777,9,999999999,120,0.0690,0,88,0.200,0.0,1.0 +2002,9,18,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,1.1,45,88700,0,0,305,0,0,0,0,0,0,0,260,4.6,1,1,16.0,77777,9,999999999,129,0.0690,0,88,0.200,0.0,1.0 +2002,9,18,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,1.7,47,88700,0,0,310,0,0,0,0,0,0,0,270,4.6,2,2,16.0,77777,9,999999999,129,0.0690,0,88,0.200,0.0,1.0 +2002,9,18,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,1.1,43,88700,0,0,302,0,0,0,0,0,0,0,260,7.7,0,0,16.0,77777,9,999999999,129,0.0690,0,88,0.200,0.0,1.0 +2002,9,18,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,1.7,49,88200,0,0,315,0,0,0,0,0,0,0,280,4.1,6,5,16.0,77777,9,999999999,129,0.0690,0,88,0.200,0.0,1.0 +2002,9,18,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,1.7,49,88600,0,0,310,0,0,0,0,0,0,0,270,6.7,3,3,16.0,77777,9,999999999,129,0.0690,0,88,0.200,0.0,1.0 +2002,9,19,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,1.7,49,88700,0,0,298,0,0,0,0,0,0,0,270,8.2,0,0,16.0,77777,9,999999999,129,0.0690,0,88,0.200,0.0,1.0 +2002,9,19,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,2.2,50,88700,0,0,298,0,0,0,0,0,0,0,260,5.2,0,0,16.0,77777,9,999999999,139,0.0690,0,88,0.200,0.0,1.0 +2002,9,19,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,2.2,52,88600,0,0,296,0,0,0,0,0,0,0,280,5.2,0,0,16.0,77777,9,999999999,129,0.0690,0,88,0.200,0.0,1.0 +2002,9,19,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,2.2,50,88600,0,0,308,0,0,0,0,0,0,0,270,5.7,2,2,16.0,77777,9,999999999,129,0.0690,0,88,0.200,0.0,1.0 +2002,9,19,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,1.7,49,88200,0,0,298,0,0,0,0,0,0,0,270,6.2,0,0,16.0,77777,9,999999999,129,0.0690,0,88,0.200,0.0,1.0 +2002,9,19,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,1.1,45,88700,0,0,299,0,0,0,0,0,0,0,270,7.2,0,0,16.0,77777,9,999999999,129,0.0690,0,88,0.200,0.0,1.0 +2002,9,19,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,1.7,47,88700,71,1072,300,18,217,8,2500,13200,1600,250,250,3.1,0,0,16.0,77777,9,999999999,129,0.0690,0,88,0.200,0.0,1.0 +2002,9,19,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,2.2,44,88700,298,1354,307,169,553,47,17600,44300,7800,880,250,2.6,0,0,16.0,77777,9,999999999,129,0.0690,0,88,0.200,0.0,1.0 +2002,9,19,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,2.2,40,88800,517,1354,313,356,780,58,37700,73900,9400,1250,260,6.7,0,0,16.0,77777,9,999999999,129,0.0690,0,88,0.200,0.0,1.0 +2002,9,19,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,2.8,38,88700,703,1354,320,520,857,74,54400,83800,10700,1610,260,7.7,0,0,16.0,77777,9,999999999,120,0.0690,0,88,0.200,0.0,1.0 +2002,9,19,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,3.3,35,88000,843,1354,328,615,881,64,64500,87500,9900,1750,270,6.7,0,0,16.0,77777,9,999999999,120,0.0690,0,88,0.200,0.0,1.0 +2002,9,19,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,3.9,33,88700,927,1354,337,714,896,99,74100,89200,12800,2330,270,6.2,0,0,16.0,77777,9,999999999,120,0.0690,0,88,0.200,0.0,1.0 +2002,9,19,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,3.3,30,88600,950,1354,341,720,843,127,75700,84700,16100,3380,250,6.7,0,0,16.0,77777,9,999999999,110,0.0690,0,88,0.200,0.0,1.0 +2002,9,19,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,2.2,25,88600,909,1354,347,682,801,143,70400,79600,16800,3380,250,8.2,0,0,16.0,77777,9,999999999,110,0.0690,0,88,0.200,0.0,1.0 +2002,9,19,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,2.8,24,88400,808,1354,353,607,831,110,63400,82600,14000,2490,260,8.2,0,0,16.0,77777,9,999999999,100,0.0690,0,88,0.200,0.0,1.0 +2002,9,19,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,3.3,24,88400,654,1354,357,487,796,102,51400,78400,13500,2170,230,5.2,0,0,16.0,77777,9,999999999,80,0.0690,0,88,0.200,0.0,1.0 +2002,9,19,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,1.1,21,87400,456,1354,354,295,555,107,31000,50900,13800,2020,270,7.7,0,0,16.0,77777,9,999999999,69,0.0690,0,88,0.200,0.0,1.0 +2002,9,19,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,1.1,22,88200,230,1354,349,176,456,98,17200,31100,11900,1930,270,3.1,0,0,16.0,77777,9,999999999,69,0.0690,0,88,0.200,0.0,1.0 +2002,9,19,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,-1.1,21,88200,27,666,342,0,0,0,0,0,0,0,260,2.6,1,1,16.0,77777,9,999999999,69,0.0690,0,88,0.200,0.0,1.0 +2002,9,19,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,-2.2,20,88100,0,0,349,0,0,0,0,0,0,0,200,3.1,7,4,16.0,77777,9,999999999,69,0.0690,0,88,0.200,0.0,1.0 +2002,9,19,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,-3.3,18,88100,0,0,353,0,0,0,0,0,0,0,250,7.7,10,5,16.0,77777,9,999999999,80,0.0690,0,88,0.200,0.0,1.0 +2002,9,19,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,-2.2,23,88100,0,0,344,0,0,0,0,0,0,0,280,3.6,10,5,16.0,77777,9,999999999,80,0.0690,0,88,0.200,0.0,1.0 +2002,9,19,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,-0.6,32,87400,0,0,330,0,0,0,0,0,0,0,220,3.6,10,5,16.0,77777,9,999999999,89,0.0690,0,88,0.200,0.0,1.0 +2002,9,19,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,0.0,36,87900,0,0,326,0,0,0,0,0,0,0,270,4.1,7,5,16.0,77777,9,999999999,110,0.0690,0,88,0.200,0.0,1.0 +2002,9,20,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,0.6,37,87900,0,0,308,0,0,0,0,0,0,0,270,4.1,0,0,16.0,77777,9,999999999,120,0.0680,0,88,0.200,0.0,1.0 +2002,9,20,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,1.1,39,87900,0,0,356,0,0,0,0,0,0,0,270,3.1,10,10,16.0,2896,9,999999999,139,0.0680,0,88,0.200,0.0,1.0 +2002,9,20,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,1.1,39,87900,0,0,356,0,0,0,0,0,0,0,240,3.1,10,10,16.0,3048,9,999999999,139,0.0680,0,88,0.200,0.0,1.0 +2002,9,20,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,1.1,34,88000,0,0,367,0,0,0,0,0,0,0,240,3.6,10,10,16.0,3048,9,999999999,139,0.0680,0,88,0.200,0.0,1.0 +2002,9,20,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,2.8,38,87500,0,0,370,0,0,0,0,0,0,0,270,7.7,10,10,16.0,2591,9,999999999,139,0.0680,0,88,0.200,0.0,1.0 +2002,9,20,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,0.6,60,87900,0,0,298,0,0,0,0,0,0,0,310,1.5,6,6,16.0,77777,9,999999999,120,0.0680,0,88,0.200,0.0,1.0 +2002,9,20,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,0.6,65,88100,67,1050,308,14,70,11,1800,2900,1600,180,350,5.2,9,9,16.0,2896,9,999999999,110,0.0680,0,88,0.200,0.0,1.0 +2002,9,20,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,0.6,60,88200,293,1355,321,56,0,56,6400,0,6400,2110,200,3.1,10,10,16.0,2134,9,999999999,89,0.0680,0,88,0.200,0.0,1.0 +2002,9,20,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,1.7,56,88200,512,1355,333,327,536,124,34400,50700,15200,2400,150,2.1,10,10,16.0,2134,9,999999999,80,0.0680,0,88,0.200,0.0,1.0 +2002,9,20,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,2.2,42,88400,698,1355,320,499,769,102,51500,75200,12700,2080,300,5.7,2,2,16.0,77777,9,999999999,69,0.0680,0,88,0.200,0.0,1.0 +2002,9,20,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,0.6,33,87800,838,1355,332,564,674,146,59500,67900,17400,3560,290,8.2,3,3,16.0,77777,9,999999999,69,0.0680,0,88,0.200,0.0,1.0 +2002,9,20,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,-2.8,23,88500,922,1355,325,585,424,296,63200,45600,32100,8260,290,10.3,1,1,16.0,77777,9,999999999,69,0.0680,0,88,0.200,0.0,1.0 +2002,9,20,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,-3.9,20,88500,944,1355,334,738,843,150,76200,83900,17600,3690,290,8.8,4,3,16.0,77777,9,999999999,69,0.0680,0,88,0.200,0.0,1.0 +2002,9,20,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,-6.7,15,88400,903,1355,325,657,753,154,69600,76400,18600,4070,280,10.3,1,1,16.0,77777,9,999999999,69,0.0680,0,88,0.200,0.0,1.0 +2002,9,20,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,-7.8,14,88400,801,1355,324,595,763,142,62500,76600,17100,3330,300,9.3,1,1,16.0,77777,9,999999999,69,0.0680,0,88,0.200,0.0,1.0 +2002,9,20,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,-8.9,13,88400,646,1355,330,466,714,125,48500,69500,15200,2560,290,10.3,3,3,16.0,77777,9,999999999,69,0.0680,0,88,0.200,0.0,1.0 +2002,9,20,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,-10.0,12,87700,449,1355,326,334,748,86,34500,67600,12000,1610,300,10.3,3,3,16.0,77777,9,999999999,69,0.0680,0,88,0.200,0.0,1.0 +2002,9,20,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,-8.9,15,88500,222,1355,313,146,410,79,14600,27600,10100,1510,290,6.7,1,1,16.0,77777,9,999999999,69,0.0680,0,88,0.200,0.0,1.0 +2002,9,20,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,-7.8,18,88400,24,621,299,0,0,0,0,0,0,0,260,6.7,0,0,16.0,77777,9,999999999,60,0.0680,0,88,0.200,0.0,1.0 +2002,9,20,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,-7.8,21,88500,0,0,292,0,0,0,0,0,0,0,260,3.6,0,0,16.0,77777,9,999999999,60,0.0680,0,88,0.200,0.0,1.0 +2002,9,20,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,-8.3,21,88500,0,0,292,0,0,0,0,0,0,0,250,3.6,1,1,16.0,77777,9,999999999,60,0.0680,0,88,0.200,0.0,1.0 +2002,9,20,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,-8.3,22,88500,0,0,290,0,0,0,0,0,0,0,270,5.2,1,1,16.0,77777,9,999999999,60,0.0680,0,88,0.200,0.0,1.0 +2002,9,20,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,-6.7,27,88100,0,0,282,0,0,0,0,0,0,0,270,4.6,0,0,16.0,77777,9,999999999,60,0.0680,0,88,0.200,0.0,1.0 +2002,9,20,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,-7.8,24,88500,0,0,292,0,0,0,0,0,0,0,270,6.2,2,2,16.0,77777,9,999999999,60,0.0680,0,88,0.200,0.0,1.0 +2002,9,21,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,-7.2,28,88600,0,0,282,0,0,0,0,0,0,0,280,5.2,1,1,16.0,77777,9,999999999,60,0.0680,0,88,0.200,0.0,1.0 +2002,9,21,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,-6.7,29,88600,0,0,278,0,0,0,0,0,0,0,280,4.1,0,0,16.0,77777,9,999999999,60,0.0680,0,88,0.200,0.0,1.0 +2002,9,21,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,-1.1,55,88800,0,0,275,0,0,0,0,0,0,0,320,3.6,0,0,16.0,77777,9,999999999,60,0.0680,0,88,0.200,0.0,1.0 +2002,9,21,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,-0.6,59,88800,0,0,282,0,0,0,0,0,0,0,290,5.2,2,2,16.0,77777,9,999999999,60,0.0680,0,88,0.200,0.0,1.0 +2002,9,21,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,0.0,67,88700,0,0,281,0,0,0,0,0,0,0,270,2.6,3,3,16.0,77777,9,999999999,69,0.0680,0,88,0.200,0.0,1.0 +2002,9,21,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,0.0,67,89000,0,0,278,0,0,0,0,0,0,0,250,3.6,2,2,16.0,77777,9,999999999,69,0.0680,0,88,0.200,0.0,1.0 +2002,9,21,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,0.6,68,89100,63,1028,314,13,132,8,1800,7400,1300,190,270,3.1,10,10,16.0,1250,9,999999999,69,0.0680,0,88,0.200,0.0,1.0 +2002,9,21,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,0.6,60,89300,288,1356,306,140,369,61,14700,28500,8700,1100,300,3.1,8,8,16.0,2438,9,999999999,69,0.0680,0,88,0.200,0.0,1.0 +2002,9,21,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,1.1,60,89400,507,1356,324,213,141,160,23100,13700,18000,3700,270,2.6,10,10,16.0,1128,9,999999999,69,0.0680,0,88,0.200,0.0,1.0 +2002,9,21,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,0.6,54,89500,693,1356,329,420,396,217,44800,41200,23700,4990,300,3.6,10,10,16.0,975,9,999999999,69,0.0680,0,88,0.200,0.0,1.0 +2002,9,21,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,0.0,50,89100,833,1356,322,542,580,185,58400,59700,21600,4410,0,0.0,9,9,16.0,975,9,999999999,69,0.0680,0,88,0.200,0.0,1.0 +2002,9,21,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,-0.6,42,89500,916,1356,317,415,137,322,45200,14400,35500,9460,30,2.1,7,7,16.0,77777,9,999999999,69,0.0680,0,88,0.200,0.0,1.0 +2002,9,21,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,-1.1,41,89600,938,1356,316,690,650,239,73600,67400,26900,6590,50,2.6,7,7,16.0,77777,9,999999999,69,0.0680,0,88,0.200,0.0,1.0 +2002,9,21,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,-1.1,39,89600,896,1356,295,626,650,195,65100,65100,22000,4930,80,2.6,1,0,16.0,77777,9,999999999,80,0.0680,0,88,0.200,0.0,1.0 +2002,9,21,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,-0.6,37,89600,794,1356,320,596,813,118,61600,80300,14400,2540,20,3.1,6,5,16.0,77777,9,999999999,69,0.0680,0,88,0.200,0.0,1.0 +2002,9,21,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,-1.1,35,89600,639,1356,302,468,785,97,48000,75800,12200,1880,20,3.1,0,0,16.0,77777,9,999999999,69,0.0680,0,88,0.200,0.0,1.0 +2002,9,21,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,-1.1,35,88900,441,1356,312,328,744,85,33700,66900,11900,1580,10,1.5,2,2,16.0,77777,9,999999999,60,0.0680,0,88,0.200,0.0,1.0 +2002,9,21,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,-1.1,38,89500,215,1356,312,157,534,72,15300,35000,9800,1100,0,0.0,4,4,16.0,77777,9,999999999,60,0.0680,0,88,0.200,0.0,1.0 +2002,9,21,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,-0.6,44,89400,20,576,296,0,0,0,0,0,0,0,210,2.1,1,1,16.0,77777,9,999999999,69,0.0680,0,88,0.200,0.0,1.0 +2002,9,21,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,-0.6,49,89300,0,0,284,0,0,0,0,0,0,0,240,4.1,0,0,16.0,77777,9,999999999,69,0.0680,0,88,0.200,0.0,1.0 +2002,9,21,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,1.1,70,89300,0,0,278,0,0,0,0,0,0,0,0,0.0,1,1,16.0,77777,9,999999999,69,0.0680,0,88,0.200,0.0,1.0 +2002,9,21,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,-1.1,55,89300,0,0,280,0,0,0,0,0,0,0,0,0.0,1,1,16.0,77777,9,999999999,69,0.0680,0,88,0.200,0.0,1.0 +2002,9,21,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,0.0,65,88900,0,0,280,0,0,0,0,0,0,0,0,0.0,2,2,16.0,77777,9,999999999,69,0.0680,0,88,0.200,0.0,1.0 +2002,9,21,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,0.0,65,89200,0,0,298,0,0,0,0,0,0,0,0,0.0,8,8,16.0,77777,9,999999999,69,0.0680,0,88,0.200,0.0,1.0 +2002,9,22,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,-1.1,67,89100,0,0,285,0,0,0,0,0,0,0,50,1.5,8,7,16.0,77777,9,999999999,80,0.0680,0,88,0.200,0.0,1.0 +2002,9,22,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,-0.6,70,89100,0,0,264,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,80,0.0680,0,88,0.200,0.0,1.0 +2002,9,22,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.9,-0.6,72,89000,0,0,262,0,0,0,0,0,0,0,280,1.5,0,0,16.0,77777,9,999999999,80,0.0680,0,88,0.200,0.0,1.0 +2002,9,22,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.8,-0.6,78,88900,0,0,267,0,0,0,0,0,0,0,0,0.0,2,2,16.0,77777,9,999999999,80,0.0680,0,88,0.200,0.0,1.0 +2002,9,22,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.8,-1.7,71,88700,0,0,272,0,0,0,0,0,0,0,0,0.0,5,5,16.0,77777,9,999999999,89,0.0680,0,88,0.200,0.0,1.0 +2002,9,22,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.2,-1.1,78,88900,0,0,276,0,0,0,0,0,0,0,0,0.0,9,7,16.0,77777,9,999999999,89,0.0680,0,88,0.200,0.0,1.0 +2002,9,22,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.8,-1.1,75,89000,59,984,273,9,92,5,1200,5200,900,130,0,0.0,5,5,16.0,77777,9,999999999,89,0.0680,0,88,0.200,0.0,1.0 +2002,9,22,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,0.0,73,89100,283,1357,281,110,163,75,11500,12500,8900,1430,360,1.5,8,5,16.0,77777,9,999999999,100,0.0680,0,88,0.200,0.0,1.0 +2002,9,22,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,0.6,73,89200,502,1357,284,335,631,101,34500,58400,12800,1910,0,0.0,9,5,16.0,77777,9,999999999,100,0.0680,0,88,0.200,0.0,1.0 +2002,9,22,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,0.6,52,89200,688,1357,307,477,670,137,49600,65700,16200,2860,70,3.6,6,6,16.0,77777,9,999999999,110,0.0680,0,88,0.200,0.0,1.0 +2002,9,22,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,-2.2,32,89400,827,1357,310,603,863,75,63000,85500,10700,1850,40,2.1,3,2,16.0,77777,9,999999999,110,0.0680,0,88,0.200,0.0,1.0 +2002,9,22,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,-3.3,24,89400,910,1357,313,690,842,124,72300,84300,15600,3100,70,2.6,0,0,16.0,77777,9,999999999,120,0.0680,0,88,0.200,0.0,1.0 +2002,9,22,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,-3.3,21,89400,932,1357,323,690,789,147,73600,80400,18200,4070,10,2.1,0,0,16.0,77777,9,999999999,120,0.0680,0,88,0.200,0.0,1.0 +2002,9,22,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,-0.6,22,89500,890,1357,337,646,772,138,68800,78500,17200,3620,310,4.6,0,0,16.0,77777,9,999999999,120,0.0680,0,88,0.200,0.0,1.0 +2002,9,22,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,-1.1,21,89500,787,1357,350,549,641,176,56800,63400,19800,3910,340,5.2,3,3,16.0,77777,9,999999999,120,0.0680,0,88,0.200,0.0,1.0 +2002,9,22,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,-0.6,22,89500,632,1357,362,462,741,116,48100,72100,14500,2370,340,8.8,6,6,16.0,77777,9,999999999,120,0.0680,0,88,0.200,0.0,1.0 +2002,9,22,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,2.8,37,88700,433,1357,340,313,747,74,32500,67200,11000,1410,360,8.8,4,4,16.0,77777,9,999999999,129,0.0680,0,88,0.200,0.0,1.0 +2002,9,22,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,2.8,46,89500,207,1357,326,146,459,76,14500,29700,10000,1460,350,6.7,5,5,16.0,77777,9,999999999,129,0.0680,0,88,0.200,0.0,1.0 +2002,9,22,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,2.2,50,89600,17,531,311,0,0,0,0,0,0,0,330,5.2,3,3,16.0,77777,9,999999999,129,0.0680,0,88,0.200,0.0,1.0 +2002,9,22,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,1.7,52,89600,0,0,310,0,0,0,0,0,0,0,330,5.7,5,5,16.0,77777,9,999999999,139,0.0680,0,88,0.200,0.0,1.0 +2002,9,22,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,1.1,54,89600,0,0,316,0,0,0,0,0,0,0,320,4.6,9,8,16.0,77777,9,999999999,129,0.0680,0,88,0.200,0.0,1.0 +2002,9,22,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,1.1,60,89500,0,0,309,0,0,0,0,0,0,0,270,4.1,8,8,16.0,77777,9,999999999,129,0.0680,0,88,0.200,0.0,1.0 +2002,9,22,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,0.6,60,89100,0,0,293,0,0,0,0,0,0,0,260,4.1,4,4,16.0,77777,9,999999999,129,0.0680,0,88,0.200,0.0,1.0 +2002,9,22,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,0.6,65,89400,0,0,280,0,0,0,0,0,0,0,270,3.6,1,1,16.0,77777,9,999999999,129,0.0680,0,88,0.200,0.0,1.0 +2002,9,23,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,0.6,68,89400,0,0,272,0,0,0,0,0,0,0,260,4.6,0,0,16.0,77777,9,999999999,120,0.0670,0,88,0.200,0.0,1.0 +2002,9,23,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,0.0,65,89300,0,0,271,0,0,0,0,0,0,0,240,4.1,0,0,16.0,77777,9,999999999,120,0.0670,0,88,0.200,0.0,1.0 +2002,9,23,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,0.0,67,89200,0,0,269,0,0,0,0,0,0,0,250,3.6,0,0,16.0,77777,9,999999999,120,0.0670,0,88,0.200,0.0,1.0 +2002,9,23,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,-0.6,67,89200,0,0,267,0,0,0,0,0,0,0,240,3.1,0,0,16.0,77777,9,999999999,129,0.0670,0,88,0.200,0.0,1.0 +2002,9,23,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.3,-0.6,75,89000,0,0,260,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,129,0.0670,0,88,0.200,0.0,1.0 +2002,9,23,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.2,-0.6,81,89100,0,0,256,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,129,0.0670,0,88,0.200,0.0,1.0 +2002,9,23,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.2,-0.6,81,89100,56,962,256,10,164,5,1700,9700,1100,180,110,1.5,0,0,16.0,77777,9,999999999,129,0.0670,0,88,0.200,0.0,1.0 +2002,9,23,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,0.0,73,89200,278,1357,265,152,539,41,15400,43000,6600,780,30,1.5,0,0,16.0,77777,9,999999999,129,0.0670,0,88,0.200,0.0,1.0 +2002,9,23,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,0.0,62,89200,497,1357,274,320,659,78,33500,61600,10900,1530,0,0.0,0,0,16.0,77777,9,999999999,129,0.0670,0,88,0.200,0.0,1.0 +2002,9,23,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,1.1,58,89300,682,1357,283,492,792,93,51200,77500,12100,1940,90,1.5,0,0,16.0,77777,9,999999999,129,0.0670,0,88,0.200,0.0,1.0 +2002,9,23,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,2.2,52,88700,821,1357,311,552,686,136,58400,69200,16400,3280,70,3.1,4,4,16.0,77777,9,999999999,129,0.0670,0,88,0.200,0.0,1.0 +2002,9,23,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,2.8,46,89300,904,1357,321,691,818,144,71100,81200,16800,3350,90,3.1,3,3,16.0,77777,9,999999999,139,0.0670,0,88,0.200,0.0,1.0 +2002,9,23,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,3.3,38,89200,925,1357,334,672,722,178,70600,72900,20700,4760,100,2.1,3,2,16.0,77777,9,999999999,150,0.0670,0,88,0.200,0.0,1.0 +2002,9,23,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,3.3,35,89200,883,1357,339,633,741,150,67100,75100,18100,3860,100,3.1,2,2,16.0,77777,9,999999999,170,0.0670,0,88,0.200,0.0,1.0 +2002,9,23,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,3.9,33,89100,780,1357,343,564,771,119,59900,77700,15100,2790,40,3.1,1,1,16.0,77777,9,999999999,150,0.0670,0,88,0.200,0.0,1.0 +2002,9,23,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,3.3,31,89100,624,1357,353,419,489,194,43200,48100,21000,4070,70,2.6,3,3,16.0,77777,9,999999999,129,0.0670,0,88,0.200,0.0,1.0 +2002,9,23,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,3.9,35,88200,426,1357,361,93,0,93,10600,0,10600,3610,80,2.1,7,7,16.0,77777,9,999999999,110,0.0670,0,88,0.200,0.0,1.0 +2002,9,23,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,3.3,33,89000,199,1357,360,27,0,27,3200,0,3200,1040,140,1.5,10,7,16.0,77777,9,999999999,110,0.0670,0,88,0.200,0.0,1.0 +2002,9,23,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,3.3,37,88900,14,486,352,0,0,0,0,0,0,0,190,3.1,10,7,16.0,77777,9,999999999,110,0.0670,0,88,0.200,0.0,1.0 +2002,9,23,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,3.9,42,88900,0,0,341,0,0,0,0,0,0,0,250,4.1,7,6,16.0,77777,9,999999999,110,0.0670,0,88,0.200,0.0,1.0 +2002,9,23,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,4.4,49,88800,0,0,343,0,0,0,0,0,0,0,0,0.0,9,8,16.0,77777,9,999999999,110,0.0670,0,88,0.200,0.0,1.0 +2002,9,23,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,5.6,55,88700,0,0,330,0,0,0,0,0,0,0,340,2.1,5,5,16.0,77777,9,999999999,110,0.0670,0,88,0.200,0.0,1.0 +2002,9,23,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,3.9,47,88100,0,0,330,0,0,0,0,0,0,0,0,0.0,5,5,16.0,77777,9,999999999,110,0.0670,0,88,0.200,0.0,1.0 +2002,9,23,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,5.0,63,88500,0,0,314,0,0,0,0,0,0,0,10,2.1,4,4,16.0,77777,9,999999999,110,0.0670,0,88,0.200,0.0,1.0 +2002,9,24,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,4.4,59,88500,0,0,318,0,0,0,0,0,0,0,0,0.0,5,5,16.0,77777,9,999999999,110,0.0670,0,88,0.200,0.0,1.0 +2002,9,24,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,3.3,54,88500,0,0,299,0,0,0,0,0,0,0,230,2.1,0,0,16.0,77777,9,999999999,100,0.0670,0,88,0.200,0.0,1.0 +2002,9,24,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,5.0,77,88400,0,0,287,0,0,0,0,0,0,0,40,1.5,0,0,16.0,77777,9,999999999,110,0.0670,0,88,0.200,0.0,1.0 +2002,9,24,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,5.0,71,88600,0,0,316,0,0,0,0,0,0,0,350,5.7,7,7,16.0,77777,9,999999999,110,0.0670,0,88,0.200,0.0,1.0 +2002,9,24,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,5.0,77,88400,0,0,316,0,0,0,0,0,0,0,300,4.1,8,8,16.0,640,9,999999999,110,0.0670,0,88,0.200,0.0,1.0 +2002,9,24,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,5.6,80,88700,0,0,332,0,0,0,0,0,0,0,300,2.6,10,10,16.0,579,9,999999999,110,0.0670,0,88,0.200,0.0,1.0 +2002,9,24,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,5.6,80,88800,52,939,332,1,0,1,100,0,100,40,290,4.1,10,10,16.0,518,9,999999999,110,0.0670,0,88,0.200,0.0,1.0 +2002,9,24,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,5.6,80,88800,273,1358,332,32,0,32,3800,0,3800,1300,280,4.1,10,10,16.0,457,9,999999999,110,0.0670,0,88,0.200,0.0,1.0 +2002,9,24,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,5.6,77,88800,492,1358,335,122,6,120,13900,400,13800,4650,300,3.1,10,10,16.0,518,9,999999999,110,0.0670,0,88,0.200,0.0,1.0 +2002,9,24,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,5.0,68,88800,677,1358,340,225,23,213,25400,2000,24400,8260,290,3.6,10,10,16.0,671,9,999999999,110,0.0670,0,88,0.200,0.0,1.0 +2002,9,24,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,5.0,68,88400,816,1358,340,195,6,192,22900,500,22600,8540,310,3.1,10,10,16.0,701,9,999999999,120,0.0670,0,88,0.200,0.0,1.0 +2002,9,24,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.0,4.0,58,88800,898,1358,345,287,36,263,31600,3700,29200,9160,320,4.1,10,10,16.1,930,9,999999999,120,0.0670,0,88,0.200,0.0,1.0 +2002,9,24,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,4.4,53,88800,919,1358,355,550,343,317,59000,36800,34000,8920,290,3.6,10,10,16.0,1006,9,999999999,120,0.0670,0,88,0.200,0.0,1.0 +2002,9,24,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,3.9,51,88800,876,1358,345,621,657,196,64400,65600,22000,4800,340,3.6,10,9,16.0,77777,9,999999999,120,0.0670,0,88,0.200,0.0,1.0 +2002,9,24,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,3.9,51,88800,773,1358,345,463,376,248,49500,39700,26900,6040,340,6.7,9,9,16.0,77777,9,999999999,120,0.0670,0,88,0.200,0.0,1.0 +2002,9,24,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,3.3,52,88800,617,1358,332,376,388,199,39800,39500,21900,4420,330,5.2,9,8,16.0,77777,9,999999999,120,0.0670,0,88,0.200,0.0,1.0 +2002,9,24,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,3.9,61,88300,418,1358,324,189,125,150,20200,11400,16700,3370,340,6.7,8,8,16.0,77777,9,999999999,120,0.0670,0,88,0.200,0.0,1.0 +2002,9,24,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,3.3,63,88900,191,1358,335,147,282,107,14500,16800,12200,2470,340,5.2,10,10,16.0,3353,9,999999999,110,0.0670,0,88,0.200,0.0,1.0 +2002,9,24,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,2.8,63,88900,12,441,322,0,0,0,0,0,0,0,300,4.1,10,9,16.0,77777,9,999999999,110,0.0670,0,88,0.200,0.0,1.0 +2002,9,24,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,2.2,63,88900,0,0,328,0,0,0,0,0,0,0,270,3.6,10,10,16.0,3048,9,999999999,110,0.0670,0,88,0.200,0.0,1.0 +2002,9,24,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,2.8,68,89000,0,0,326,0,0,0,0,0,0,0,260,5.2,10,10,16.0,3048,9,999999999,110,0.0670,0,88,0.200,0.0,1.0 +2002,9,24,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,1.1,65,89000,0,0,304,0,0,0,0,0,0,0,260,4.1,8,8,16.0,77777,9,999999999,110,0.0670,0,88,0.200,0.0,1.0 +2002,9,24,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,1.1,63,88600,0,0,313,0,0,0,0,0,0,0,270,5.2,9,9,16.0,1250,9,999999999,100,0.0670,0,88,0.200,0.0,1.0 +2002,9,24,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,0.6,60,89000,0,0,321,0,0,0,0,0,0,0,270,4.6,10,10,16.0,1067,9,999999999,100,0.0670,0,88,0.200,0.0,1.0 +2002,9,25,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,0.6,60,89000,0,0,321,0,0,0,0,0,0,0,280,3.6,10,10,16.0,1128,9,999999999,89,0.0660,0,88,0.200,0.0,1.0 +2002,9,25,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,0.6,60,89000,0,0,321,0,0,0,0,0,0,0,270,3.6,10,10,16.0,1189,9,999999999,89,0.0660,0,88,0.200,0.0,1.0 +2002,9,25,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,0.6,60,89000,0,0,321,0,0,0,0,0,0,0,280,3.1,10,10,16.0,1189,9,999999999,89,0.0660,0,88,0.200,0.0,1.0 +2002,9,25,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,0.0,58,89000,0,0,321,0,0,0,0,0,0,0,270,3.1,10,10,16.0,1372,9,999999999,80,0.0660,0,88,0.200,0.0,1.0 +2002,9,25,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,0.0,60,88600,0,0,318,0,0,0,0,0,0,0,270,3.1,10,10,16.0,1433,9,999999999,80,0.0660,0,88,0.200,0.0,1.0 +2002,9,25,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,0.0,60,89100,0,0,318,0,0,0,0,0,0,0,270,2.6,10,10,16.0,1433,9,999999999,80,0.0660,0,88,0.200,0.0,1.0 +2002,9,25,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,0.0,60,89100,49,895,318,3,0,3,400,0,400,120,280,2.6,10,10,16.0,1006,9,999999999,69,0.0660,0,88,0.200,0.0,1.0 +2002,9,25,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,0.0,58,89100,268,1359,321,78,55,67,8500,4500,7700,1690,280,3.6,10,10,16.0,1494,9,999999999,69,0.0660,0,88,0.200,0.0,1.0 +2002,9,25,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,0.0,54,89200,486,1359,295,309,494,131,32000,46000,15500,2540,300,2.1,3,3,16.0,77777,9,999999999,69,0.0660,0,88,0.200,0.0,1.0 +2002,9,25,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,1.1,52,89200,672,1359,290,486,808,85,50800,79100,11600,1820,330,2.1,0,0,16.0,77777,9,999999999,69,0.0660,0,88,0.200,0.0,1.0 +2002,9,25,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,1.1,48,88600,810,1359,295,558,739,116,59600,74900,14800,2810,0,0.0,0,0,16.0,77777,9,999999999,69,0.0660,0,88,0.200,0.0,1.0 +2002,9,25,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,1.7,49,89100,892,1359,298,661,830,115,69700,83200,14900,2870,40,1.5,0,0,16.0,77777,9,999999999,69,0.0660,0,88,0.200,0.0,1.0 +2002,9,25,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,1.7,42,89100,913,1359,307,685,819,133,71200,81700,16100,3240,80,2.6,0,0,16.0,77777,9,999999999,69,0.0660,0,88,0.200,0.0,1.0 +2002,9,25,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,1.1,37,89000,870,1359,311,641,821,114,67300,82100,14600,2760,80,3.1,0,0,16.0,77777,9,999999999,69,0.0660,0,88,0.200,0.0,1.0 +2002,9,25,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,0.6,34,88900,766,1359,316,579,858,94,61100,85300,12800,2140,80,2.1,0,0,16.0,77777,9,999999999,69,0.0660,0,88,0.200,0.0,1.0 +2002,9,25,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,0.6,33,88900,610,1359,318,445,770,99,46800,74900,13100,2040,80,2.1,0,0,16.0,77777,9,999999999,80,0.0660,0,88,0.200,0.0,1.0 +2002,9,25,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,0.6,33,88100,410,1359,318,286,640,93,29100,55800,12300,1660,80,4.1,0,0,16.0,77777,9,999999999,80,0.0660,0,88,0.200,0.0,1.0 +2002,9,25,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,2.2,40,88800,183,1359,326,0,0,0,0,0,0,0,110,2.6,3,3,16.0,77777,9,999999999,89,0.0660,0,88,0.200,0.0,1.0 +2002,9,25,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,2.8,47,88800,10,396,322,0,0,0,0,0,0,0,230,2.1,5,4,16.0,77777,9,999999999,89,0.0660,0,88,0.200,0.0,1.0 +2002,9,25,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,1.7,50,88700,0,0,320,0,0,0,0,0,0,0,260,3.6,7,7,16.0,77777,9,999999999,100,0.0660,0,88,0.200,0.0,1.0 +2002,9,25,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,1.1,50,88700,0,0,313,0,0,0,0,0,0,0,0,0.0,6,6,16.0,77777,9,999999999,100,0.0660,0,88,0.200,0.0,1.0 +2002,9,25,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,0.6,50,88600,0,0,295,0,0,0,0,0,0,0,250,2.6,1,1,16.0,77777,9,999999999,100,0.0660,0,88,0.200,0.0,1.0 +2002,9,25,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,0.6,56,88200,0,0,283,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,100,0.0660,0,88,0.200,0.0,1.0 +2002,9,25,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,0.6,58,88500,0,0,308,0,0,0,0,0,0,0,250,2.6,8,8,16.0,2743,9,999999999,100,0.0660,0,88,0.200,0.0,1.0 +2002,9,26,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,0.6,58,88500,0,0,308,0,0,0,0,0,0,0,0,0.0,8,8,16.0,2134,9,999999999,89,0.0660,0,88,0.200,0.0,1.0 +2002,9,26,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,0.6,65,88400,0,0,274,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,89,0.0660,0,88,0.200,0.0,1.0 +2002,9,26,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,0.6,65,88300,0,0,286,0,0,0,0,0,0,0,0,0.0,8,3,16.0,77777,9,999999999,100,0.0660,0,88,0.200,0.0,1.0 +2002,9,26,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,0.0,73,88200,0,0,265,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,100,0.0660,0,88,0.200,0.0,1.0 +2002,9,26,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,0.0,73,88000,0,0,274,0,0,0,0,0,0,0,180,1.5,2,2,16.0,77777,9,999999999,110,0.0660,0,88,0.200,0.0,1.0 +2002,9,26,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,0.0,73,88200,0,0,276,0,0,0,0,0,0,0,0,0.0,3,3,16.0,77777,9,999999999,110,0.0660,0,88,0.200,0.0,1.0 +2002,9,26,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.3,0.6,82,88200,46,873,275,1,0,1,100,0,100,40,30,2.1,5,4,16.0,77777,9,999999999,110,0.0660,0,88,0.200,0.0,1.0 +2002,9,26,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,0.6,76,88200,262,1360,281,32,0,32,3800,0,3800,1290,290,1.5,7,5,16.0,77777,9,999999999,110,0.0660,0,88,0.200,0.0,1.0 +2002,9,26,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,1.1,67,88300,481,1360,297,70,0,70,8300,0,8300,3010,0,0.0,9,7,16.0,77777,9,999999999,100,0.0660,0,88,0.200,0.0,1.0 +2002,9,26,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,1.7,63,88300,666,1360,298,120,0,120,14200,0,14200,5360,300,1.5,10,5,16.0,77777,9,999999999,100,0.0660,0,88,0.200,0.0,1.0 +2002,9,26,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,1.7,56,87800,804,1360,306,262,30,244,28800,3000,27000,7920,0,0.0,10,5,16.0,77777,9,999999999,100,0.0660,0,88,0.200,0.0,1.0 +2002,9,26,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,2.2,50,88300,886,1360,313,433,173,320,47100,18200,35200,9140,110,1.5,10,4,16.0,77777,9,999999999,100,0.0660,0,88,0.200,0.0,1.0 +2002,9,26,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,3.3,47,88200,906,1360,334,483,241,322,52600,25400,35700,9350,60,2.6,10,7,16.0,77777,9,999999999,100,0.0660,0,88,0.200,0.0,1.0 +2002,9,26,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,0.6,35,88200,863,1360,344,282,36,259,31000,3700,28700,8760,0,0.0,9,8,16.0,77777,9,999999999,110,0.0660,0,88,0.200,0.0,1.0 +2002,9,26,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,1.7,38,88200,759,1360,345,157,0,157,18500,0,18500,7050,20,3.1,10,8,16.0,77777,9,999999999,110,0.0660,0,88,0.200,0.0,1.0 +2002,9,26,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,0.0,32,88200,602,1360,334,136,0,136,15700,0,15700,5640,0,0.0,10,5,16.0,77777,9,999999999,110,0.0660,0,88,0.200,0.0,1.0 +2002,9,26,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,-1.1,30,88200,403,1360,336,87,0,87,9900,0,9900,3350,0,0.0,10,7,16.0,3353,9,999999999,120,0.0660,0,88,0.200,0.0,1.0 +2002,9,26,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,0.0,34,88200,175,1360,348,0,0,0,0,0,0,0,0,0.0,10,9,16.0,3048,9,999999999,120,0.0660,0,88,0.200,0.0,1.0 +2002,9,26,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,0.6,39,88200,8,351,336,0,0,0,0,0,0,0,270,2.1,10,8,16.0,77777,9,999999999,120,0.0660,0,88,0.200,0.0,1.0 +2002,9,26,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,1.1,43,88200,0,0,322,0,0,0,0,0,0,0,310,4.6,10,6,16.0,77777,9,999999999,120,0.0660,0,88,0.200,0.0,1.0 +2002,9,26,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,1.1,45,88200,0,0,320,0,0,0,0,0,0,0,310,4.1,10,6,16.0,3658,9,999999999,120,0.0660,0,88,0.200,0.0,1.0 +2002,9,26,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,1.1,48,88100,0,0,315,0,0,0,0,0,0,0,320,4.6,10,6,16.0,77777,9,999999999,120,0.0660,0,88,0.200,0.0,1.0 +2002,9,26,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,1.7,52,87700,0,0,338,0,0,0,0,0,0,0,320,6.2,10,10,16.0,3353,9,999999999,120,0.0660,0,88,0.200,0.0,1.0 +2002,9,26,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,2.8,61,88100,0,0,334,0,0,0,0,0,0,0,290,3.6,10,10,16.0,2896,9,999999999,129,0.0660,0,88,0.200,0.0,1.0 +2002,9,27,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,3.3,66,88000,0,0,332,0,0,0,0,0,0,0,270,3.6,10,10,16.0,2591,9,999999999,129,0.0650,0,88,0.200,0.0,1.0 +2002,9,27,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,3.9,68,88000,0,0,333,0,0,0,0,0,0,0,270,4.6,10,10,16.0,1676,9,999999999,129,0.0650,0,88,0.200,0.0,1.0 +2002,9,27,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,4.4,73,88000,0,0,331,0,0,0,0,0,0,0,270,3.6,10,10,16.0,1829,9,999999999,129,0.0650,0,88,0.200,0.0,1.0 +2002,9,27,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,5.6,83,88000,0,0,329,0,0,0,0,0,0,0,270,3.6,10,10,16.0,1402,9,999999999,129,0.0650,0,88,0.200,0.0,1.0 +2002,9,27,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,6.1,89,87700,0,0,328,0,0,0,0,0,0,0,270,4.1,10,10,16.0,1494,9,999999999,129,0.0650,0,88,0.200,0.0,1.0 +2002,9,27,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,6.1,89,88000,0,0,328,0,0,0,0,0,0,0,300,3.1,10,10,12.8,975,9,999999999,129,0.0650,0,88,0.200,1.0,1.0 +2002,9,27,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,5.6,90,88000,43,850,324,1,0,1,100,0,100,40,300,3.6,10,10,11.2,884,9,999999999,129,0.0650,0,88,0.200,1.0,1.0 +2002,9,27,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,5.6,90,88100,257,1361,324,24,0,24,2900,0,2900,990,300,3.1,10,10,9.6,762,9,999999999,129,0.0650,0,88,0.200,1.0,1.0 +2002,9,27,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,6.1,93,88100,476,1361,325,65,0,65,7700,0,7700,2820,330,3.1,10,10,8.0,884,9,999999999,129,0.0650,0,88,0.200,1.0,1.0 +2002,9,27,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,6.1,93,88100,661,1361,325,120,0,120,14200,0,14200,5340,330,3.1,10,10,9.6,792,9,999999999,129,0.0650,0,88,0.200,1.0,1.0 +2002,9,27,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,6.1,89,87800,799,1361,328,173,0,173,20300,0,20300,7800,330,2.6,10,10,9.6,914,9,999999999,129,0.0650,0,88,0.200,1.0,1.0 +2002,9,27,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,5.6,86,88200,880,1361,327,222,6,219,26100,500,25700,9800,360,5.7,10,10,11.2,1006,9,999999999,139,0.0650,0,88,0.200,0.0,1.0 +2002,9,27,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.0,6.0,87,88200,900,1361,329,171,0,171,20400,0,20400,8150,350,5.7,10,10,11.3,900,9,999999999,139,0.0650,0,88,0.200,0.0,1.0 +2002,9,27,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,6.1,86,88300,856,1361,330,135,0,135,16300,0,16300,6560,350,4.1,10,10,16.0,914,9,999999999,139,0.0650,0,88,0.200,0.0,1.0 +2002,9,27,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,6.1,86,88300,752,1361,330,103,0,103,12500,0,12500,4940,330,3.6,10,10,14.4,1067,9,999999999,129,0.0650,0,88,0.200,0.0,1.0 +2002,9,27,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,5.6,80,88400,595,1361,332,221,57,195,24100,5600,21700,5500,10,4.1,10,10,14.4,701,9,999999999,129,0.0650,0,88,0.200,0.0,1.0 +2002,9,27,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,5.0,77,87900,395,1361,332,49,0,49,5800,0,5800,2080,360,4.1,10,10,16.0,914,9,999999999,129,0.0650,0,88,0.200,0.0,1.0 +2002,9,27,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,5.0,80,88400,167,1361,329,0,0,0,0,0,0,0,360,3.6,10,10,16.0,1158,9,999999999,120,0.0650,0,88,0.200,0.0,1.0 +2002,9,27,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,5.0,82,88400,6,306,326,0,0,0,0,0,0,0,10,1.5,10,10,16.0,1158,9,999999999,120,0.0650,0,88,0.200,0.0,1.0 +2002,9,27,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,5.0,82,88500,0,0,326,0,0,0,0,0,0,0,340,2.1,10,10,16.0,1433,9,999999999,120,0.0650,0,88,0.200,0.0,1.0 +2002,9,27,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,4.4,79,88500,0,0,326,0,0,0,0,0,0,0,310,2.6,10,10,16.0,2134,9,999999999,120,0.0650,0,88,0.200,0.0,1.0 +2002,9,27,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,3.9,80,88500,0,0,322,0,0,0,0,0,0,0,300,2.6,10,10,16.0,1402,9,999999999,120,0.0650,0,88,0.200,0.0,1.0 +2002,9,27,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,4.4,82,88500,0,0,323,0,0,0,0,0,0,0,270,2.6,10,10,16.0,1463,9,999999999,120,0.0650,0,88,0.200,0.0,1.0 +2002,9,27,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,4.4,82,88500,0,0,323,0,0,0,0,0,0,0,270,2.1,10,10,16.0,1280,9,999999999,120,0.0650,0,88,0.200,0.0,1.0 +2002,9,28,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,4.4,85,88500,0,0,321,0,0,0,0,0,0,0,260,2.1,10,10,16.0,1280,9,999999999,120,0.0650,0,88,0.200,0.0,1.0 +2002,9,28,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,4.4,82,88500,0,0,323,0,0,0,0,0,0,0,290,1.5,10,10,16.0,1219,9,999999999,120,0.0650,0,88,0.200,0.0,1.0 +2002,9,28,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,4.4,82,88500,0,0,323,0,0,0,0,0,0,0,0,0.0,10,10,16.0,1097,9,999999999,110,0.0650,0,88,0.200,0.0,1.0 +2002,9,28,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,5.0,86,88400,0,0,324,0,0,0,0,0,0,0,140,1.5,10,10,16.0,975,9,999999999,100,0.0650,0,88,0.200,0.0,1.0 +2002,9,28,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,4.4,82,88000,0,0,323,0,0,0,0,0,0,0,140,1.5,10,10,16.0,1097,9,999999999,89,0.0650,0,88,0.200,0.0,1.0 +2002,9,28,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,5.0,93,88400,0,0,319,0,0,0,0,0,0,0,280,2.1,10,10,16.0,1158,9,999999999,89,0.0650,0,88,0.200,0.0,1.0 +2002,9,28,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,3.3,82,88400,40,806,317,2,0,2,300,0,300,80,270,2.1,10,10,16.0,1158,9,999999999,89,0.0650,0,88,0.200,0.0,1.0 +2002,9,28,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,4.4,82,88500,252,1361,323,69,40,61,7500,3200,6900,1540,100,3.1,10,10,16.0,1097,9,999999999,89,0.0650,0,88,0.200,0.0,1.0 +2002,9,28,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,3.3,66,88500,470,1361,305,292,487,123,30300,44900,14800,2360,100,2.1,5,5,16.0,77777,9,999999999,89,0.0650,0,88,0.200,0.0,1.0 +2002,9,28,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,3.3,63,88500,655,1361,307,464,773,91,48100,75100,11800,1850,120,2.6,5,5,16.0,77777,9,999999999,89,0.0650,0,88,0.200,0.0,1.0 +2002,9,28,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,4.4,61,87900,793,1361,298,551,774,99,58000,77100,13000,2280,90,6.2,0,0,16.0,77777,9,999999999,89,0.0650,0,88,0.200,0.0,1.0 +2002,9,28,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,5.0,57,88400,874,1361,306,667,890,94,69300,88300,12400,2100,80,5.7,0,0,16.0,77777,9,999999999,89,0.0650,0,88,0.200,0.0,1.0 +2002,9,28,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,5.6,53,88400,894,1361,314,661,813,126,68900,81200,15500,3040,90,6.7,0,0,16.0,77777,9,999999999,89,0.0650,0,88,0.200,0.0,1.0 +2002,9,28,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,5.6,50,88300,849,1361,318,623,809,117,65000,80600,14600,2720,80,5.2,0,0,16.0,77777,9,999999999,89,0.0650,0,88,0.200,0.0,1.0 +2002,9,28,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,5.6,45,88300,745,1361,326,555,822,104,57600,81000,13200,2210,90,6.2,0,0,16.0,77777,9,999999999,89,0.0650,0,88,0.200,0.0,1.0 +2002,9,28,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,5.0,43,88200,587,1361,325,443,850,75,46200,81700,10800,1550,70,4.6,0,0,16.0,77777,9,999999999,80,0.0650,0,88,0.200,0.0,1.0 +2002,9,28,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,5.0,43,87500,387,1361,332,279,666,89,28300,56900,12000,1570,90,4.6,1,1,16.0,77777,9,999999999,69,0.0650,0,88,0.200,0.0,1.0 +2002,9,28,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,5.0,46,88100,160,1361,327,0,0,0,0,0,0,0,140,3.1,1,1,16.0,77777,9,999999999,69,0.0650,0,88,0.200,0.0,1.0 +2002,9,28,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,6.1,62,88000,4,284,307,0,0,0,0,0,0,0,240,3.1,0,0,16.0,77777,9,999999999,80,0.0650,0,88,0.200,0.0,1.0 +2002,9,28,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,4.4,61,88000,0,0,298,0,0,0,0,0,0,0,240,3.1,0,0,16.0,77777,9,999999999,89,0.0650,0,88,0.200,0.0,1.0 +2002,9,28,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,2.2,50,87900,0,0,298,0,0,0,0,0,0,0,240,4.1,0,0,16.0,77777,9,999999999,89,0.0650,0,88,0.200,0.0,1.0 +2002,9,28,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,2.8,61,87900,0,0,290,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,100,0.0650,0,88,0.200,0.0,1.0 +2002,9,28,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,2.8,61,87400,0,0,290,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,100,0.0650,0,88,0.200,0.0,1.0 +2002,9,28,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,3.3,73,87700,0,0,281,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,100,0.0650,0,88,0.200,0.0,1.0 +2002,9,29,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,2.8,76,87700,0,0,276,0,0,0,0,0,0,0,360,1.5,0,0,16.0,77777,9,999999999,110,0.0640,0,88,0.200,0.0,1.0 +2002,9,29,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,2.8,76,87600,0,0,276,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,110,0.0640,0,88,0.200,0.0,1.0 +2002,9,29,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,2.2,79,87500,0,0,271,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,110,0.0640,0,88,0.200,0.0,1.0 +2002,9,29,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,2.8,82,87500,0,0,272,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,110,0.0640,0,88,0.200,0.0,1.0 +2002,9,29,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,2.2,82,87300,0,0,269,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,100,0.0640,0,88,0.200,0.0,1.0 +2002,9,29,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,1.7,83,87500,0,0,266,0,0,0,0,0,0,0,210,1.5,0,0,16.0,77777,9,999999999,110,0.0640,0,88,0.200,0.0,1.0 +2002,9,29,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.9,1.7,86,87500,37,783,264,2,86,1,600,4900,400,40,0,0.0,0,0,16.0,77777,9,999999999,110,0.0640,0,88,0.200,0.0,1.0 +2002,9,29,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,3.9,82,87600,246,1362,277,126,510,33,12900,39300,5800,660,0,0.0,0,0,16.0,77777,9,999999999,110,0.0640,0,88,0.200,0.0,1.0 +2002,9,29,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,4.4,71,87700,465,1362,294,301,688,65,30900,63100,9300,1260,360,1.5,1,1,16.0,77777,9,999999999,110,0.0640,0,88,0.200,0.0,1.0 +2002,9,29,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,4.4,63,87700,649,1362,306,473,830,76,49900,81200,11100,1660,0,0.0,2,2,16.0,77777,9,999999999,110,0.0640,0,88,0.200,0.0,1.0 +2002,9,29,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,4.4,51,87100,787,1362,310,551,715,137,58000,71600,16500,3160,360,1.5,0,0,16.0,77777,9,999999999,110,0.0640,0,88,0.200,0.0,1.0 +2002,9,29,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,4.4,47,87700,868,1362,331,515,334,301,55000,35700,32200,8040,0,0.0,4,4,16.0,77777,9,999999999,120,0.0640,0,88,0.200,0.0,1.0 +2002,9,29,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,3.9,40,87700,887,1362,356,129,0,129,15700,0,15700,6390,70,2.1,8,8,16.0,3048,9,999999999,120,0.0640,0,88,0.200,0.0,1.0 +2002,9,29,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,2.8,36,87600,842,1362,348,328,85,275,36000,8600,30700,9010,90,2.1,6,6,16.0,77777,9,999999999,129,0.0640,0,88,0.200,0.0,1.0 +2002,9,29,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,2.2,32,87600,738,1362,362,481,476,222,49900,48100,23800,4990,0,0.0,9,8,16.0,77777,9,999999999,120,0.0640,0,88,0.200,0.0,1.0 +2002,9,29,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,2.2,32,87500,580,1362,352,368,512,150,38600,49800,17300,3000,10,3.1,7,6,16.0,77777,9,999999999,120,0.0640,0,88,0.200,0.0,1.0 +2002,9,29,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,3.3,35,86700,379,1362,345,202,292,120,21100,25500,14000,2440,110,2.6,4,4,16.0,77777,9,999999999,120,0.0640,0,88,0.200,0.0,1.0 +2002,9,29,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,2.8,37,87500,152,1362,355,0,0,0,0,0,0,0,0,0.0,8,8,16.0,77777,9,999999999,120,0.0640,0,88,0.200,0.0,1.0 +2002,9,29,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,2.8,42,87500,3,238,352,0,0,0,0,0,0,0,280,6.2,9,9,12.8,3353,9,999999999,120,0.0640,0,88,0.200,0.0,1.0 +2002,9,29,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,4.4,53,87500,0,0,355,0,0,0,0,0,0,0,260,9.8,10,10,14.4,2743,9,999999999,120,0.0640,0,88,0.200,0.0,1.0 +2002,9,29,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,6.7,80,87500,0,0,339,0,0,0,0,0,0,0,290,3.1,10,10,16.0,1676,9,999999999,120,0.0640,0,88,0.200,0.0,1.0 +2002,9,29,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,7.2,83,87500,0,0,339,0,0,0,0,0,0,0,60,1.5,10,10,16.0,2286,9,999999999,120,0.0640,0,88,0.200,0.0,1.0 +2002,9,29,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,2.8,71,87200,0,0,324,0,0,0,0,0,0,0,260,12.4,10,10,16.0,2134,9,999999999,120,0.0640,0,88,0.200,0.0,1.0 +2002,9,29,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,1.7,68,87500,0,0,320,0,0,0,0,0,0,0,270,8.2,10,10,16.0,2591,9,999999999,110,0.0640,0,88,0.200,0.0,1.0 +2002,9,30,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,0.6,63,87600,0,0,310,0,0,0,0,0,0,0,250,5.7,9,9,16.0,2743,9,999999999,100,0.0640,0,88,0.200,0.0,1.0 +2002,9,30,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,1.1,67,87600,0,0,291,0,0,0,0,0,0,0,250,3.6,6,5,16.0,77777,9,999999999,100,0.0640,0,88,0.200,0.0,1.0 +2002,9,30,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,1.1,70,87600,0,0,272,0,0,0,0,0,0,0,280,3.6,0,0,16.0,77777,9,999999999,89,0.0640,0,88,0.200,0.0,1.0 +2002,9,30,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,0.6,68,87600,0,0,288,0,0,0,0,0,0,0,330,2.6,5,5,16.0,77777,9,999999999,80,0.0640,0,88,0.200,0.0,1.0 +2002,9,30,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,0.0,65,87500,0,0,277,0,0,0,0,0,0,0,200,2.1,1,1,16.0,77777,9,999999999,80,0.0640,0,88,0.200,0.0,1.0 +2002,9,30,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,-0.6,64,87700,0,0,274,0,0,0,0,0,0,0,0,0.0,1,1,16.0,77777,9,999999999,69,0.0640,0,88,0.200,0.0,1.0 +2002,9,30,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,-2.2,54,87800,34,761,311,1,0,1,100,0,100,40,230,2.6,10,10,16.0,1981,9,999999999,69,0.0640,0,88,0.200,0.0,1.0 +2002,9,30,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,-1.1,59,87900,241,1363,297,124,379,57,12900,26800,8200,1030,250,6.7,8,8,12.8,2134,9,999999999,69,0.0640,0,88,0.200,0.0,1.0 +2002,9,30,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,-4.4,39,88000,459,1363,281,272,531,93,28000,48000,11700,1720,240,7.2,1,1,14.4,77777,9,999999999,69,0.0640,0,88,0.200,0.0,1.0 +2002,9,30,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,-5.6,32,88100,644,1363,284,411,551,149,43600,54700,17600,3050,300,5.2,1,1,16.0,77777,9,999999999,69,0.0640,0,88,0.200,0.0,1.0 +2002,9,30,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,-6.1,30,87700,781,1363,295,440,348,239,47200,36800,26000,5790,260,9.8,4,4,16.0,77777,9,999999999,60,0.0640,0,88,0.200,0.0,1.0 +2002,9,30,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,-6.1,29,88200,862,1363,311,591,639,186,61400,63800,21000,4480,270,7.2,8,8,16.0,2134,9,999999999,60,0.0640,0,88,0.200,0.0,1.0 +2002,9,30,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,-6.7,25,88200,880,1363,296,588,584,209,62900,60300,23900,5270,270,6.2,2,2,16.0,77777,9,999999999,60,0.0640,0,88,0.200,0.0,1.0 +2002,9,30,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,-7.2,23,88200,836,1363,333,496,329,294,52900,35000,31400,7650,280,9.8,10,10,16.0,2286,9,999999999,60,0.0640,0,88,0.200,0.0,1.0 +2002,9,30,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,-6.1,27,88200,730,1363,332,96,0,96,11700,0,11700,4590,310,6.7,10,10,16.0,2743,9,999999999,60,0.0640,0,88,0.200,0.0,1.0 +2002,9,30,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,-1.7,43,88200,572,1363,329,285,199,201,30700,19700,22400,4770,320,9.8,10,10,16.0,2286,9,999999999,60,0.0640,0,88,0.200,0.0,1.0 +2002,9,30,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,-1.7,45,87800,371,1363,302,195,187,144,20800,16300,16300,3190,250,7.2,6,6,16.0,77777,9,999999999,50,0.0640,0,88,0.200,0.0,1.0 +2002,9,30,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,-2.8,44,88400,144,1363,311,0,0,0,0,0,0,0,250,5.2,9,9,16.0,2286,9,999999999,50,0.0640,0,88,0.200,0.0,1.0 +2002,9,30,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,-3.3,46,88400,2,193,284,0,0,0,0,0,0,0,210,3.6,3,3,16.0,77777,9,999999999,50,0.0640,0,88,0.200,0.0,1.0 +2002,9,30,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,-2.2,56,88500,0,0,294,0,0,0,0,0,0,0,320,3.1,9,8,16.0,77777,9,999999999,50,0.0640,0,88,0.200,0.0,1.0 +2002,9,30,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,-2.8,53,88500,0,0,293,0,0,0,0,0,0,0,290,5.2,9,8,16.0,77777,9,999999999,60,0.0640,0,88,0.200,0.0,1.0 +2002,9,30,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.3,-1.3,66,88500,0,0,287,0,0,0,0,0,0,0,300,4.5,5,5,16.0,77777,9,999999999,60,0.0640,0,88,0.200,0.0,1.0 +2002,9,30,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.0,0.0,67,88300,0,0,317,0,0,0,0,0,0,0,280,3.7,10,10,16.0,1524,9,999999999,60,0.0640,0,88,0.200,0.0,1.0 +2002,9,30,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.7,1.3,72,88600,0,0,306,0,0,0,0,0,0,0,270,3.0,8,8,16.0,2134,9,999999999,60,0.0640,0,88,0.200,0.0,1.0 +2000,10,1,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.5,2.6,59,87900,0,0,327,0,0,0,0,0,0,0,230,2.2,10,10,16.0,2134,9,999999999,80,0.0630,0,88,0.200,0.0,1.0 +2000,10,1,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.2,4.0,63,87900,0,0,332,0,0,0,0,0,0,0,290,1.5,10,10,16.0,1981,9,999999999,80,0.0630,0,88,0.200,0.0,1.0 +2000,10,1,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.9,5.3,69,87900,0,0,337,0,0,0,0,0,0,0,160,0.7,10,10,16.0,1829,9,999999999,80,0.0630,0,88,0.200,0.0,1.0 +2000,10,1,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,6.7,77,87800,0,0,342,0,0,0,0,0,0,0,0,0.0,10,10,16.0,1829,9,999999999,80,0.0630,0,88,0.200,0.0,1.0 +2000,10,1,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,7.2,79,87500,0,0,342,0,0,0,0,0,0,0,190,2.1,10,10,16.0,1463,9,999999999,80,0.0630,0,88,0.200,0.0,1.0 +2000,10,1,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,7.8,90,87800,0,0,337,0,0,0,0,0,0,0,110,2.6,10,10,16.0,1829,9,999999999,80,0.0630,0,88,0.200,0.0,1.0 +2000,10,1,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,8.3,93,87700,30,716,338,0,0,0,0,0,0,0,210,1.5,10,10,16.0,1676,9,999999999,80,0.0630,0,88,0.200,0.0,1.0 +2000,10,1,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,8.3,96,87600,233,1365,335,23,0,23,2800,0,2800,940,290,2.6,10,10,9.6,1524,9,999999999,80,0.0630,0,88,0.200,0.0,1.0 +2000,10,1,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,8.3,96,87600,451,1365,335,50,0,50,6000,0,6000,2200,20,2.6,10,10,9.6,1676,9,999999999,80,0.0630,0,88,0.200,0.0,1.0 +2000,10,1,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,8.3,96,87800,636,1365,335,83,0,83,10000,0,10000,3840,250,2.6,10,10,4.8,1128,9,999999999,80,0.0630,0,88,0.200,2.0,1.0 +2000,10,1,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,6.1,71,87300,773,1365,327,489,526,191,52000,53600,21500,4320,260,3.6,10,8,16.0,2896,9,999999999,80,0.0630,0,88,0.200,1.0,1.0 +2000,10,1,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,7.2,60,87800,853,1365,334,351,90,295,38600,9200,32900,9600,280,8.8,7,5,16.0,77777,9,999999999,80,0.0630,0,88,0.200,0.0,1.0 +2000,10,1,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,5.6,57,87900,871,1365,334,276,24,260,31700,2100,30300,11000,280,9.8,7,7,16.0,77777,9,999999999,80,0.0630,0,88,0.200,0.0,1.0 +2000,10,1,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,6.7,55,88000,826,1365,356,380,122,307,41800,12400,34300,9640,270,9.3,9,9,16.0,3048,9,999999999,80,0.0630,0,88,0.200,0.0,1.0 +2000,10,1,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,5.0,49,88000,720,1365,337,338,118,276,37100,11900,30800,8030,260,8.2,6,6,16.0,77777,9,999999999,80,0.0630,0,88,0.200,0.0,1.0 +2000,10,1,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,4.4,47,88000,561,1365,364,326,309,199,34200,30700,21600,4410,290,7.7,10,10,16.0,2134,9,999999999,80,0.0630,0,88,0.200,0.0,1.0 +2000,10,1,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,5.6,51,87400,360,1365,347,53,0,53,6200,0,6200,2160,280,5.2,8,8,16.0,1463,9,999999999,80,0.0630,0,88,0.200,0.0,1.0 +2000,10,1,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,5.6,60,88000,133,1365,344,0,0,0,0,0,0,0,260,6.7,9,9,16.0,2134,9,999999999,80,0.0630,0,88,0.200,0.0,1.0 +2000,10,1,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,5.0,57,88000,1,125,353,0,0,0,0,0,0,0,270,3.6,10,10,16.0,1981,9,999999999,80,0.0630,0,88,0.200,0.0,1.0 +2000,10,1,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,4.4,59,88100,0,0,318,0,0,0,0,0,0,0,260,3.6,5,5,16.0,77777,9,999999999,80,0.0630,0,88,0.200,0.0,1.0 +2000,10,1,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,4.4,63,88100,0,0,325,0,0,0,0,0,0,0,290,2.1,8,8,16.0,3048,9,999999999,80,0.0630,0,88,0.200,0.0,1.0 +2000,10,1,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,3.9,55,88200,0,0,349,0,0,0,0,0,0,0,260,5.2,10,10,16.0,1676,9,999999999,80,0.0630,0,88,0.200,0.0,1.0 +2000,10,1,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,5.0,63,87600,0,0,345,0,0,0,0,0,0,0,280,2.1,10,10,16.0,1463,9,999999999,80,0.0630,0,88,0.200,0.0,1.0 +2000,10,1,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,3.9,57,88100,0,0,346,0,0,0,0,0,0,0,250,6.2,10,10,16.0,1829,9,999999999,89,0.0630,0,88,0.200,0.0,1.0 +2000,10,2,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,3.9,59,88200,0,0,344,0,0,0,0,0,0,0,260,5.2,10,10,16.0,1829,9,999999999,89,0.0620,0,88,0.200,0.0,1.0 +2000,10,2,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,3.9,63,88100,0,0,338,0,0,0,0,0,0,0,270,3.6,10,10,16.0,2134,9,999999999,89,0.0620,0,88,0.200,0.0,1.0 +2000,10,2,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,5.0,74,88100,0,0,334,0,0,0,0,0,0,0,260,6.7,10,10,16.0,1097,9,999999999,89,0.0620,0,88,0.200,0.0,1.0 +2000,10,2,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,5.6,77,88200,0,0,335,0,0,0,0,0,0,0,280,4.1,10,10,16.0,1829,9,999999999,100,0.0620,0,88,0.200,0.0,1.0 +2000,10,2,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,5.0,77,87800,0,0,316,0,0,0,0,0,0,0,0,0.0,8,8,16.0,2743,9,999999999,100,0.0620,0,88,0.200,0.0,1.0 +2000,10,2,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,4.4,73,88200,0,0,304,0,0,0,0,0,0,0,220,3.1,6,5,16.0,77777,9,999999999,100,0.0620,0,88,0.200,0.0,1.0 +2000,10,2,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,4.4,76,88200,27,671,297,0,0,0,0,0,0,0,230,3.1,3,3,16.0,77777,9,999999999,100,0.0620,0,88,0.200,0.0,1.0 +2000,10,2,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,5.0,77,88300,228,1365,287,120,573,24,12700,44400,5300,600,260,3.1,0,0,16.0,77777,9,999999999,110,0.0620,0,88,0.200,0.0,1.0 +2000,10,2,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,3.3,59,88400,446,1365,295,288,707,56,29900,64600,8800,1140,270,4.6,0,0,16.0,77777,9,999999999,110,0.0620,0,88,0.200,0.0,1.0 +2000,10,2,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,0.0,41,88400,630,1365,298,461,829,77,48300,80600,11000,1640,260,8.2,0,0,16.0,77777,9,999999999,110,0.0620,0,88,0.200,0.0,1.0 +2000,10,2,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,-2.8,30,87900,767,1365,313,534,762,105,55600,75300,13200,2280,260,9.3,3,3,16.0,77777,9,999999999,110,0.0620,0,88,0.200,0.0,1.0 +2000,10,2,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,-2.8,28,88500,847,1365,305,656,752,188,67900,74800,21400,4420,260,7.7,0,0,16.0,77777,9,999999999,120,0.0620,0,88,0.200,0.0,1.0 +2000,10,2,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,-3.3,26,88500,864,1365,337,251,42,225,27800,4200,25100,7780,310,7.2,8,8,16.0,2438,9,999999999,120,0.0620,0,88,0.200,0.0,1.0 +2000,10,2,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,-2.8,26,88500,819,1365,357,374,128,297,40600,13400,32500,8030,300,9.3,10,10,16.0,2438,9,999999999,129,0.0620,0,88,0.200,0.0,1.0 +2000,10,2,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,-2.8,27,88500,712,1365,354,90,0,90,10900,0,10900,4300,300,6.7,10,10,16.0,2438,9,999999999,129,0.0620,0,88,0.200,0.0,1.0 +2000,10,2,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,-2.8,28,88500,553,1365,351,328,329,194,34400,32500,21200,4280,290,8.2,10,10,16.0,2438,9,999999999,139,0.0620,0,88,0.200,0.0,1.0 +2000,10,2,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,-1.7,33,87900,352,1365,331,204,409,98,20900,34100,12100,1840,300,6.7,8,8,16.0,2438,9,999999999,139,0.0620,0,88,0.200,0.0,1.0 +2000,10,2,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,-1.7,39,88500,125,1365,298,0,0,0,0,0,0,0,290,5.7,1,1,16.0,77777,9,999999999,150,0.0620,0,88,0.200,0.0,1.0 +2000,10,2,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,-1.7,45,88500,0,80,283,0,0,0,0,0,0,0,300,3.6,1,0,16.0,77777,9,999999999,150,0.0620,0,88,0.200,0.0,1.0 +2000,10,2,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,-1.1,49,88600,0,0,287,0,0,0,0,0,0,0,260,5.2,2,1,16.0,77777,9,999999999,160,0.0620,0,88,0.200,0.0,1.0 +2000,10,2,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,-2.2,46,88600,0,0,283,0,0,0,0,0,0,0,260,5.7,1,1,16.0,77777,9,999999999,160,0.0620,0,88,0.200,0.0,1.0 +2000,10,2,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,-2.8,48,88600,0,0,273,0,0,0,0,0,0,0,280,2.6,0,0,16.0,77777,9,999999999,170,0.0620,0,88,0.200,0.0,1.0 +2000,10,2,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,-2.2,52,88300,0,0,288,0,0,0,0,0,0,0,290,4.1,5,5,16.0,77777,9,999999999,170,0.0620,0,88,0.200,0.0,1.0 +2000,10,2,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,-2.8,49,88600,0,0,276,0,0,0,0,0,0,0,250,5.7,1,1,16.0,77777,9,999999999,160,0.0620,0,88,0.200,0.0,1.0 +2000,10,3,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,-3.3,49,88600,0,0,273,0,0,0,0,0,0,0,260,5.2,1,1,16.0,77777,9,999999999,160,0.0620,0,88,0.200,0.0,1.0 +2000,10,3,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,-3.3,49,88600,0,0,268,0,0,0,0,0,0,0,260,5.7,0,0,16.0,77777,9,999999999,150,0.0620,0,88,0.200,0.0,1.0 +2000,10,3,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.3,-2.8,63,88600,0,0,258,0,0,0,0,0,0,0,240,2.1,0,0,16.0,77777,9,999999999,139,0.0620,0,88,0.200,0.0,1.0 +2000,10,3,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.8,-2.8,65,88600,0,0,261,0,0,0,0,0,0,0,200,2.6,1,1,16.0,77777,9,999999999,139,0.0620,0,88,0.200,0.0,1.0 +2000,10,3,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.2,-3.3,65,88400,0,0,258,0,0,0,0,0,0,0,180,2.1,1,1,16.0,77777,9,999999999,129,0.0620,0,88,0.200,0.0,1.0 +2000,10,3,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.7,-2.8,70,88600,0,0,252,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,120,0.0620,0,88,0.200,0.0,1.0 +2000,10,3,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.1,-1.7,80,88700,25,649,264,0,0,0,0,0,0,0,310,1.5,5,4,16.0,77777,9,999999999,120,0.0620,0,88,0.200,0.0,1.0 +2000,10,3,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.8,-1.7,71,88800,222,1366,272,67,63,57,7300,4500,6600,1210,0,0.0,6,5,16.0,77777,9,999999999,110,0.0620,0,88,0.200,0.0,1.0 +2000,10,3,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,-1.1,64,88900,440,1366,307,159,78,134,17400,7200,15100,3530,70,1.5,10,10,16.0,2134,9,999999999,100,0.0620,0,88,0.200,0.0,1.0 +2000,10,3,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,-1.7,50,88900,624,1366,288,455,585,187,47000,57500,20600,3900,130,2.6,4,3,16.0,77777,9,999999999,100,0.0620,0,88,0.200,0.0,1.0 +2000,10,3,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,-2.2,41,88400,760,1366,299,300,100,244,33000,10100,27300,7600,70,2.6,5,4,16.0,77777,9,999999999,89,0.0620,0,88,0.200,0.0,1.0 +2000,10,3,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,-3.9,33,88900,840,1366,331,357,90,302,39300,9200,33600,9640,360,2.1,10,10,16.0,2286,9,999999999,89,0.0620,0,88,0.200,0.0,1.0 +2000,10,3,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,-2.8,37,88900,858,1366,333,417,175,307,45300,18300,33800,8540,360,3.6,10,10,16.0,2286,9,999999999,89,0.0620,0,88,0.200,0.0,1.0 +2000,10,3,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,-5.0,29,88900,812,1366,324,401,128,324,43900,13100,36100,9880,300,4.1,10,9,16.0,2438,9,999999999,89,0.0620,0,88,0.200,0.0,1.0 +2000,10,3,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,-3.3,33,88900,705,1366,328,340,124,275,37200,12500,30700,7880,290,4.6,10,9,16.0,77777,9,999999999,89,0.0620,0,88,0.200,0.0,1.0 +2000,10,3,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,-3.3,34,88900,546,1366,319,274,200,194,29500,19600,21700,4550,350,5.7,9,8,16.0,77777,9,999999999,89,0.0620,0,88,0.200,0.0,1.0 +2000,10,3,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,-3.3,36,88300,344,1366,321,120,37,111,13200,3200,12300,2740,340,5.2,10,9,16.0,77777,9,999999999,89,0.0620,0,88,0.200,0.0,1.0 +2000,10,3,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,-3.3,38,88900,117,1366,311,0,0,0,0,0,0,0,340,5.7,9,8,16.0,77777,9,999999999,89,0.0620,0,88,0.200,0.0,1.0 +2000,10,3,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,-2.2,46,88800,0,34,312,0,0,0,0,0,0,0,300,2.6,9,9,16.0,3353,9,999999999,89,0.0620,0,88,0.200,0.0,1.0 +2000,10,3,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,-1.7,52,88800,0,0,296,0,0,0,0,0,0,0,280,3.1,7,7,16.0,77777,9,999999999,89,0.0620,0,88,0.200,0.0,1.0 +2000,10,3,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,-2.8,48,88800,0,0,315,0,0,0,0,0,0,0,230,3.1,10,10,16.0,3353,9,999999999,89,0.0620,0,88,0.200,0.0,1.0 +2000,10,3,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,-2.8,49,88700,0,0,271,0,0,0,0,0,0,0,230,2.6,0,0,16.0,77777,9,999999999,89,0.0620,0,88,0.200,0.0,1.0 +2000,10,3,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,-2.2,58,88300,0,0,265,0,0,0,0,0,0,0,320,1.5,0,0,16.0,77777,9,999999999,89,0.0620,0,88,0.200,0.0,1.0 +2000,10,3,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.3,-2.2,66,88500,0,0,264,0,0,0,0,0,0,0,40,2.1,1,1,16.0,77777,9,999999999,89,0.0620,0,88,0.200,0.0,1.0 +2000,10,4,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.3,-2.2,66,88500,0,0,259,0,0,0,0,0,0,0,100,1.5,1,0,16.0,77777,9,999999999,80,0.0610,0,88,0.200,0.0,1.0 +2000,10,4,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.2,-2.8,68,88400,0,0,254,0,0,0,0,0,0,0,180,2.1,0,0,16.0,77777,9,999999999,80,0.0610,0,88,0.200,0.0,1.0 +2000,10,4,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.1,-2.8,73,88400,0,0,250,0,0,0,0,0,0,0,350,1.5,0,0,16.0,77777,9,999999999,80,0.0610,0,88,0.200,0.0,1.0 +2000,10,4,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.6,-2.8,76,88300,0,0,248,0,0,0,0,0,0,0,280,1.5,0,0,16.0,77777,9,999999999,80,0.0610,0,88,0.200,0.0,1.0 +2000,10,4,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.0,-2.8,79,88200,0,0,251,0,0,0,0,0,0,0,210,1.5,1,1,16.0,77777,9,999999999,69,0.0610,0,88,0.200,0.0,1.0 +2000,10,4,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.6,-2.8,76,88400,0,0,261,0,0,0,0,0,0,0,210,1.5,7,4,16.0,77777,9,999999999,69,0.0610,0,88,0.200,0.0,1.0 +2000,10,4,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-0.6,-2.8,83,88400,23,627,258,0,0,0,0,0,0,0,80,1.5,7,5,16.0,77777,9,999999999,69,0.0610,0,88,0.200,0.0,1.0 +2000,10,4,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.8,-1.1,75,88500,217,1367,273,66,62,56,7200,4400,6500,1190,100,1.5,8,5,16.0,77777,9,999999999,69,0.0610,0,88,0.200,0.0,1.0 +2000,10,4,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,0.0,73,88600,435,1367,283,154,61,135,16900,5600,15100,3530,0,0.0,7,6,16.0,77777,9,999999999,60,0.0610,0,88,0.200,0.0,1.0 +2000,10,4,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,-1.1,55,88700,618,1367,308,382,313,240,39900,31700,25500,5580,320,1.5,9,9,16.0,3048,9,999999999,60,0.0610,0,88,0.200,0.0,1.0 +2000,10,4,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,-2.8,39,88300,754,1367,328,150,0,150,17700,0,17700,6770,270,7.2,10,10,16.0,1676,9,999999999,60,0.0610,0,88,0.200,0.0,1.0 +2000,10,4,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.9,-3.9,55,88800,834,1367,299,345,84,294,38000,8600,32700,9390,350,10.8,10,10,16.0,1676,9,999999999,60,0.0610,0,88,0.200,0.0,1.0 +2000,10,4,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.8,-2.8,65,88900,851,1367,296,356,109,288,39100,11100,32200,9390,350,9.8,10,10,16.0,2438,9,999999999,60,0.0610,0,88,0.200,0.0,1.0 +2000,10,4,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.1,-5.6,58,89000,804,1367,285,207,6,203,24000,500,23700,8820,360,8.8,10,10,16.0,884,9,999999999,60,0.0610,0,88,0.200,0.0,1.0 +2000,10,4,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.0,-6.1,60,89100,698,1367,280,181,0,181,20800,0,20800,7500,330,6.7,10,10,16.0,1006,9,999999999,60,0.0610,0,88,0.200,0.0,1.0 +2000,10,4,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-0.6,-6.1,63,89100,538,1367,278,166,6,163,18600,500,18400,6000,340,8.2,10,10,11.2,1067,9,999999999,60,0.0610,0,88,0.200,0.0,1.0 +2000,10,4,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.7,-4.4,80,88800,337,1367,275,111,15,108,12300,800,12100,3510,330,6.2,10,10,4.8,945,9,999999999,60,0.0610,0,88,0.200,0.0,1.0 +2000,10,4,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.7,-6.7,65,89100,110,1356,273,18,8,18,2100,500,2000,460,330,6.2,10,10,6.4,1067,9,999999999,60,0.0610,0,88,0.200,0.0,1.0 +2000,10,4,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.7,-6.7,65,89200,0,0,273,0,0,0,0,0,0,0,310,5.2,10,10,14.4,1128,9,999999999,60,0.0610,0,88,0.200,0.0,1.0 +2000,10,4,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.7,-6.7,65,89200,0,0,273,0,0,0,0,0,0,0,320,4.1,10,10,16.0,1036,9,999999999,60,0.0610,0,88,0.200,0.0,1.0 +2000,10,4,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.3,-4.4,91,89200,0,0,269,0,0,0,0,0,0,0,320,4.6,10,10,4.0,914,9,999999999,60,0.0610,0,88,0.200,0.0,1.0 +2000,10,4,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.3,-4.4,91,89100,0,0,269,0,0,0,0,0,0,0,260,3.6,10,10,3.2,366,9,999999999,60,0.0610,0,88,0.200,0.0,1.0 +2000,10,4,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.3,-5.6,82,89100,0,0,268,0,0,0,0,0,0,0,270,3.6,10,10,14.4,914,9,999999999,60,0.0610,0,88,0.200,0.0,1.0 +2000,10,4,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.3,-5.6,82,89200,0,0,268,0,0,0,0,0,0,0,270,3.6,10,10,16.0,2743,9,999999999,60,0.0610,0,88,0.200,0.0,1.0 +2000,10,5,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.3,-6.1,79,89200,0,0,267,0,0,0,0,0,0,0,290,2.6,10,10,14.4,1341,9,999999999,60,0.0610,0,88,0.200,0.0,1.0 +2000,10,5,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.3,-5.6,82,89300,0,0,268,0,0,0,0,0,0,0,280,2.1,10,10,16.0,1280,9,999999999,60,0.0610,0,88,0.200,0.0,1.0 +2000,10,5,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.3,-5.0,87,89300,0,0,268,0,0,0,0,0,0,0,300,3.6,10,10,2.8,396,9,999999999,50,0.0610,0,88,0.200,0.0,1.0 +2000,10,5,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.3,-5.6,82,89300,0,0,268,0,0,0,0,0,0,0,280,2.6,10,10,16.0,1219,9,999999999,50,0.0610,0,88,0.200,0.0,1.0 +2000,10,5,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.3,-5.6,82,89100,0,0,268,0,0,0,0,0,0,0,290,2.6,10,10,14.4,1158,9,999999999,50,0.0610,0,88,0.200,0.0,1.0 +2000,10,5,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.3,-6.1,79,89300,0,0,267,0,0,0,0,0,0,0,280,3.6,10,10,16.0,1097,9,999999999,50,0.0610,0,88,0.200,0.0,1.0 +2000,10,5,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.3,-6.1,79,89400,20,581,267,0,0,0,0,0,0,0,270,3.1,10,10,16.0,1036,9,999999999,50,0.0610,0,88,0.200,0.0,1.0 +2000,10,5,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.8,-6.7,72,89400,212,1368,268,40,0,40,4600,0,4600,1450,290,2.6,10,10,16.0,975,9,999999999,50,0.0610,0,88,0.200,0.0,1.0 +2000,10,5,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.2,-7.2,65,89500,429,1368,270,113,11,110,12800,700,12600,4070,320,1.5,10,10,16.0,975,9,999999999,50,0.0610,0,88,0.200,0.0,1.0 +2000,10,5,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.1,-6.1,66,89600,612,1368,276,325,266,205,34300,26900,22200,4580,340,2.6,10,10,16.0,853,9,999999999,50,0.0610,0,88,0.200,0.0,1.0 +2000,10,5,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-0.6,-6.1,63,89200,748,1368,278,278,94,226,30500,9400,25300,7070,350,1.5,10,10,16.0,853,9,999999999,50,0.0610,0,88,0.200,0.0,1.0 +2000,10,5,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.6,-6.1,57,89600,827,1368,283,462,316,271,49600,33600,29200,6890,350,1.5,10,10,16.0,1433,9,999999999,50,0.0610,0,88,0.200,0.0,1.0 +2000,10,5,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.2,-5.6,53,89600,844,1368,290,608,754,141,64300,76100,17100,3450,360,2.1,10,10,16.0,1250,9,999999999,50,0.0610,0,88,0.200,0.0,1.0 +2000,10,5,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.8,-5.6,51,89600,797,1368,265,622,909,90,64600,89600,12200,1860,360,1.5,3,3,16.0,77777,9,999999999,50,0.0610,0,88,0.200,0.0,1.0 +2000,10,5,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.3,-5.6,49,89600,690,1368,260,522,864,85,54900,84900,11900,1850,0,0.0,1,1,16.0,77777,9,999999999,60,0.0610,0,88,0.200,0.0,1.0 +2000,10,5,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,-4.4,51,89500,531,1368,261,396,824,76,40800,77400,10600,1470,10,1.5,0,0,16.0,77777,9,999999999,60,0.0610,0,88,0.200,0.0,1.0 +2000,10,5,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,-4.4,48,89000,329,1368,263,239,743,60,23800,61300,9000,990,20,2.1,0,0,16.0,77777,9,999999999,60,0.0610,0,88,0.200,0.0,1.0 +2000,10,5,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.8,-3.9,59,89500,103,1311,260,36,363,9,4200,23000,2300,280,330,1.5,1,1,16.0,77777,9,999999999,60,0.0610,0,88,0.200,0.0,1.0 +2000,10,5,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.1,-4.4,64,89500,0,0,253,0,0,0,0,0,0,0,250,3.6,2,1,16.0,77777,9,999999999,69,0.0610,0,88,0.200,0.0,1.0 +2000,10,5,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.1,-4.4,64,89500,0,0,253,0,0,0,0,0,0,0,250,4.1,1,1,16.0,77777,9,999999999,69,0.0610,0,88,0.200,0.0,1.0 +2000,10,5,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.0,-5.0,66,89500,0,0,244,0,0,0,0,0,0,0,250,3.6,0,0,16.0,77777,9,999999999,69,0.0610,0,88,0.200,0.0,1.0 +2000,10,5,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.1,-5.6,68,89500,0,0,240,0,0,0,0,0,0,0,250,3.6,0,0,16.0,77777,9,999999999,69,0.0610,0,88,0.200,0.0,1.0 +2000,10,5,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.1,-5.6,68,89200,0,0,240,0,0,0,0,0,0,0,250,3.6,0,0,16.0,77777,9,999999999,80,0.0610,0,88,0.200,0.0,1.0 +2000,10,5,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.7,-6.1,69,89500,0,0,237,0,0,0,0,0,0,0,260,3.1,0,0,16.0,77777,9,999999999,69,0.0610,0,88,0.200,0.0,1.0 +2000,10,6,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.2,-6.1,72,89400,0,0,235,0,0,0,0,0,0,0,250,2.6,0,0,16.0,77777,9,999999999,69,0.0600,0,88,0.200,0.0,1.0 +2000,10,6,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.9,-6.7,79,89400,0,0,229,0,0,0,0,0,0,0,260,2.1,0,0,16.0,77777,9,999999999,69,0.0600,0,88,0.200,0.0,1.0 +2000,10,6,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.9,-6.7,79,89400,0,0,229,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,69,0.0600,0,88,0.200,0.0,1.0 +2000,10,6,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-4.4,-6.7,82,89300,0,0,227,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,60,0.0600,0,88,0.200,0.0,1.0 +2000,10,6,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-5.6,-7.2,87,89300,0,0,223,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,60,0.0600,0,88,0.200,0.0,1.0 +2000,10,6,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-5.0,-7.8,79,89400,0,0,224,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,60,0.0600,0,88,0.200,0.0,1.0 +2000,10,6,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-5.6,-7.8,83,89400,18,559,222,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,50,0.0600,0,88,0.200,0.0,1.0 +2000,10,6,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-4.4,-6.7,82,89500,206,1369,227,104,534,23,11000,40200,4900,560,0,0.0,0,0,16.0,77777,9,999999999,50,0.0600,0,88,0.200,0.0,1.0 +2000,10,6,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.2,-5.6,75,89600,423,1369,236,279,753,46,29500,68100,8300,1020,0,0.0,0,0,16.0,77777,9,999999999,50,0.0600,0,88,0.200,0.0,1.0 +2000,10,6,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-0.6,-5.6,66,89600,606,1369,241,443,839,70,46700,81300,10600,1510,0,0.0,0,0,16.0,77777,9,999999999,50,0.0600,0,88,0.200,0.0,1.0 +2000,10,6,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.7,-4.4,61,89300,742,1369,251,560,926,57,59100,91100,9500,1500,0,0.0,0,0,16.0,77777,9,999999999,40,0.0600,0,88,0.200,0.0,1.0 +2000,10,6,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.3,-3.9,57,89700,821,1369,257,638,913,89,66400,90200,12100,1920,360,2.1,0,0,16.0,77777,9,999999999,50,0.0600,0,88,0.200,0.0,1.0 +2000,10,6,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,-3.9,49,89700,837,1369,266,651,910,92,67600,90000,12300,1970,0,0.0,0,0,16.0,77777,9,999999999,50,0.0600,0,88,0.200,0.0,1.0 +2000,10,6,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,-5.0,40,89800,790,1369,271,577,799,114,59700,79000,14000,2450,0,0.0,0,0,16.0,77777,9,999999999,50,0.0600,0,88,0.200,0.0,1.0 +2000,10,6,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,-10.0,24,89800,683,1369,270,488,746,115,51300,73600,14400,2450,0,0.0,0,0,16.0,77777,9,999999999,50,0.0600,0,88,0.200,0.0,1.0 +2000,10,6,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,-11.1,22,89800,523,1369,269,351,637,106,36000,59400,13300,2010,360,2.1,0,0,16.0,77777,9,999999999,50,0.0600,0,88,0.200,0.0,1.0 +2000,10,6,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,-11.1,21,89100,321,1369,271,221,599,80,22200,47700,11000,1360,0,0.0,0,0,16.0,77777,9,999999999,60,0.0600,0,88,0.200,0.0,1.0 +2000,10,6,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,-11.1,23,89800,96,1266,265,30,281,11,3600,17600,2200,310,240,2.1,0,0,16.0,77777,9,999999999,60,0.0600,0,88,0.200,0.0,1.0 +2000,10,6,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,-12.2,26,89700,0,0,253,0,0,0,0,0,0,0,240,3.1,0,0,16.0,77777,9,999999999,60,0.0600,0,88,0.200,0.0,1.0 +2000,10,6,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.8,-11.1,32,89700,0,0,248,0,0,0,0,0,0,0,250,4.1,0,0,16.0,77777,9,999999999,60,0.0600,0,88,0.200,0.0,1.0 +2000,10,6,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.2,-10.0,36,89700,0,0,247,0,0,0,0,0,0,0,250,4.6,0,0,16.0,77777,9,999999999,69,0.0600,0,88,0.200,0.0,1.0 +2000,10,6,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.1,-10.0,39,89600,0,0,243,0,0,0,0,0,0,0,250,3.1,0,0,16.0,77777,9,999999999,69,0.0600,0,88,0.200,0.0,1.0 +2000,10,6,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.7,-8.3,57,89300,0,0,235,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,69,0.0600,0,88,0.200,0.0,1.0 +2000,10,6,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.2,-9.4,54,89500,0,0,232,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,69,0.0600,0,88,0.200,0.0,1.0 +2000,10,7,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.2,-9.4,54,89500,0,0,232,0,0,0,0,0,0,0,260,1.5,0,0,16.0,77777,9,999999999,60,0.0600,0,88,0.200,0.0,1.0 +2000,10,7,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.9,-9.4,62,89500,0,0,227,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,60,0.0600,0,88,0.200,0.0,1.0 +2000,10,7,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-4.4,-10.0,61,89400,0,0,224,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,60,0.0600,0,88,0.200,0.0,1.0 +2000,10,7,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-4.4,-10.0,61,89400,0,0,224,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,50,0.0600,0,88,0.200,0.0,1.0 +2000,10,7,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-5.6,-9.4,72,89300,0,0,221,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,50,0.0600,0,88,0.200,0.0,1.0 +2000,10,7,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-5.6,-10.0,68,89300,0,0,220,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,50,0.0600,0,88,0.200,0.0,1.0 +2000,10,7,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-5.6,-10.0,68,89400,16,536,220,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,40,0.0600,0,88,0.200,0.0,1.0 +2000,10,7,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-5.0,-8.3,75,89500,201,1369,224,99,516,24,10600,38500,4900,550,100,1.5,0,0,16.0,77777,9,999999999,40,0.0600,0,88,0.200,0.0,1.0 +2000,10,7,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.2,-8.3,59,89600,418,1369,233,274,740,47,28700,66800,8300,1000,0,0.0,0,0,16.0,77777,9,999999999,40,0.0600,0,88,0.200,0.0,1.0 +2000,10,7,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.0,-8.3,49,89600,601,1369,241,427,804,73,44700,77600,10600,1540,0,0.0,0,0,16.0,77777,9,999999999,30,0.0600,0,88,0.200,0.0,1.0 +2000,10,7,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.3,-7.2,43,89300,736,1369,254,521,826,76,54400,81000,10800,1670,360,1.5,0,0,16.0,77777,9,999999999,30,0.0600,0,88,0.200,0.0,1.0 +2000,10,7,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,-6.1,40,89700,814,1369,263,632,913,87,65700,90200,11900,1890,0,0.0,0,0,16.0,77777,9,999999999,40,0.0600,0,88,0.200,0.0,1.0 +2000,10,7,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,-6.1,33,89700,831,1369,274,578,718,141,61000,72300,17000,3390,300,2.6,0,0,16.0,77777,9,999999999,40,0.0600,0,88,0.200,0.0,1.0 +2000,10,7,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,-6.1,29,89700,783,1369,283,578,836,98,60700,83100,13100,2230,330,1.5,0,0,16.0,77777,9,999999999,50,0.0600,0,88,0.200,0.0,1.0 +2000,10,7,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,-7.8,22,89700,676,1369,288,490,784,101,50300,76100,12600,1990,0,0.0,0,0,16.0,77777,9,999999999,60,0.0600,0,88,0.200,0.0,1.0 +2000,10,7,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,-7.2,22,89600,516,1369,291,385,788,87,40100,73900,12200,1700,270,3.6,0,0,16.0,77777,9,999999999,69,0.0600,0,88,0.200,0.0,1.0 +2000,10,7,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,-7.8,23,88800,314,1369,286,238,697,78,23900,55000,11300,1320,270,3.6,0,0,16.0,77777,9,999999999,69,0.0600,0,88,0.200,0.0,1.0 +2000,10,7,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,-7.2,29,89500,89,1221,275,29,313,10,3600,19400,2200,290,250,3.6,0,0,16.0,77777,9,999999999,80,0.0600,0,88,0.200,0.0,1.0 +2000,10,7,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,-6.7,35,89400,0,0,267,0,0,0,0,0,0,0,240,3.6,0,0,16.0,77777,9,999999999,89,0.0600,0,88,0.200,0.0,1.0 +2000,10,7,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.3,-7.2,43,89300,0,0,254,0,0,0,0,0,0,0,260,1.5,0,0,16.0,77777,9,999999999,89,0.0600,0,88,0.200,0.0,1.0 +2000,10,7,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.2,-6.7,48,89300,0,0,250,0,0,0,0,0,0,0,0,0.0,1,0,16.0,77777,9,999999999,100,0.0600,0,88,0.200,0.0,1.0 +2000,10,7,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.6,-7.2,52,89200,0,0,249,0,0,0,0,0,0,0,240,1.5,1,1,16.0,77777,9,999999999,110,0.0600,0,88,0.200,0.0,1.0 +2000,10,7,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.6,-7.2,52,88900,0,0,244,0,0,0,0,0,0,0,100,1.5,0,0,16.0,77777,9,999999999,110,0.0600,0,88,0.200,0.0,1.0 +2000,10,7,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-0.6,-7.8,54,89100,0,0,239,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,110,0.0600,0,88,0.200,0.0,1.0 +2000,10,8,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.1,-7.8,57,89000,0,0,238,0,0,0,0,0,0,0,210,1.5,0,0,16.0,77777,9,999999999,100,0.0600,0,88,0.200,0.0,1.0 +2000,10,8,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.7,-7.8,59,88900,0,0,235,0,0,0,0,0,0,0,100,1.5,0,0,16.0,77777,9,999999999,100,0.0600,0,88,0.200,0.0,1.0 +2000,10,8,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.7,-7.8,59,88900,0,0,235,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,100,0.0600,0,88,0.200,0.0,1.0 +2000,10,8,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.8,-7.8,65,88900,0,0,232,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,89,0.0600,0,88,0.200,0.0,1.0 +2000,10,8,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.9,-7.8,71,88800,0,0,228,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,89,0.0600,0,88,0.200,0.0,1.0 +2000,10,8,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.3,-7.8,68,88900,0,0,230,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,80,0.0600,0,88,0.200,0.0,1.0 +2000,10,8,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.9,-7.2,75,88900,14,491,228,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,80,0.0600,0,88,0.200,0.0,1.0 +2000,10,8,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.2,-6.7,68,89100,195,1370,235,101,554,22,10700,41000,4900,530,0,0.0,0,0,16.0,77777,9,999999999,69,0.0600,0,88,0.200,0.0,1.0 +2000,10,8,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.6,-6.7,54,89200,412,1370,245,277,761,47,29100,68400,8400,1010,0,0.0,0,0,16.0,77777,9,999999999,69,0.0600,0,88,0.200,0.0,1.0 +2000,10,8,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.3,-5.6,49,89200,595,1370,255,426,821,69,44900,79300,10400,1480,350,2.1,0,0,16.0,77777,9,999999999,60,0.0600,0,88,0.200,0.0,1.0 +2000,10,8,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,-6.1,40,88700,730,1370,269,527,873,60,55300,85700,9600,1520,0,0.0,2,1,16.0,77777,9,999999999,60,0.0600,0,88,0.200,0.0,1.0 +2000,10,8,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,-7.2,29,89300,808,1370,275,615,907,78,64100,89600,11100,1820,360,1.5,0,0,16.0,77777,9,999999999,69,0.0600,0,88,0.200,0.0,1.0 +2000,10,8,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,-6.7,24,89300,824,1370,289,627,935,64,65900,92600,10100,1700,360,1.5,0,0,16.0,77777,9,999999999,80,0.0600,0,88,0.200,0.0,1.0 +2000,10,8,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,-5.6,24,89200,776,1370,297,611,952,69,63900,93800,10600,1690,360,1.5,0,0,16.0,77777,9,999999999,100,0.0600,0,88,0.200,0.0,1.0 +2000,10,8,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,-4.4,23,89200,668,1370,307,512,885,79,54000,86800,11500,1720,360,1.5,0,0,16.0,77777,9,999999999,110,0.0600,0,88,0.200,0.0,1.0 +2000,10,8,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,-4.4,23,89200,508,1370,307,395,816,91,40900,76000,12600,1750,0,0.0,0,0,16.0,77777,9,999999999,120,0.0600,0,88,0.200,0.0,1.0 +2000,10,8,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,-4.4,23,88300,306,1370,307,208,418,114,20600,32600,13300,2220,300,2.1,0,0,16.0,77777,9,999999999,129,0.0600,0,88,0.200,0.0,1.0 +2000,10,8,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,-3.9,30,89000,82,1176,294,23,179,13,2800,9000,2100,250,0,0.0,0,0,16.0,77777,9,999999999,139,0.0600,0,88,0.200,0.0,1.0 +2000,10,8,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,-3.9,36,89000,0,0,283,0,0,0,0,0,0,0,200,2.1,0,0,16.0,77777,9,999999999,150,0.0600,0,88,0.200,0.0,1.0 +2000,10,8,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,-4.4,39,88900,0,0,276,0,0,0,0,0,0,0,220,2.1,0,0,16.0,77777,9,999999999,170,0.0600,0,88,0.200,0.0,1.0 +2000,10,8,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,-4.4,43,88800,0,0,269,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,179,0.0600,0,88,0.200,0.0,1.0 +2000,10,8,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,-4.4,48,88700,0,0,263,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,189,0.0600,0,88,0.200,0.0,1.0 +2000,10,8,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,-4.4,46,88300,0,0,265,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,200,0.0600,0,88,0.200,0.0,1.0 +2000,10,8,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,-4.4,51,88600,0,0,261,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,189,0.0600,0,88,0.200,0.0,1.0 +2000,10,9,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.8,-4.4,57,88500,0,0,255,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,179,0.0590,0,88,0.200,0.0,1.0 +2000,10,9,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.2,-4.4,59,88400,0,0,252,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,170,0.0590,0,88,0.200,0.0,1.0 +2000,10,9,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.7,-4.4,61,88400,0,0,251,0,0,0,0,0,0,0,250,2.1,0,0,16.0,77777,9,999999999,160,0.0590,0,88,0.200,0.0,1.0 +2000,10,9,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.1,-4.4,64,88300,0,0,248,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,139,0.0590,0,88,0.200,0.0,1.0 +2000,10,9,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.0,-5.0,66,88200,0,0,244,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,129,0.0590,0,88,0.200,0.0,1.0 +2000,10,9,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-0.6,-4.4,73,88300,0,0,242,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,120,0.0590,0,88,0.200,0.0,1.0 +2000,10,9,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-0.6,-5.6,66,88300,13,468,241,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,110,0.0590,0,88,0.200,0.0,1.0 +2000,10,9,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.6,-3.9,69,88400,190,1371,247,93,517,21,9800,37900,4600,520,290,1.5,0,0,16.0,77777,9,999999999,100,0.0590,0,88,0.200,0.0,1.0 +2000,10,9,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.8,-2.8,65,88400,406,1371,256,258,699,50,26800,62500,8300,1020,360,1.5,0,0,16.0,77777,9,999999999,89,0.0590,0,88,0.200,0.0,1.0 +2000,10,9,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,-2.8,53,88500,589,1371,267,421,814,70,44200,78400,10400,1480,0,0.0,0,0,16.0,77777,9,999999999,80,0.0590,0,88,0.200,0.0,1.0 +2000,10,9,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,-2.8,41,88000,723,1371,282,554,884,86,58400,87400,12200,1920,360,2.1,0,0,16.0,77777,9,999999999,69,0.0590,0,88,0.200,0.0,1.0 +2000,10,9,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,-3.9,31,88500,801,1371,292,621,877,106,64900,87100,13800,2380,0,0.0,0,0,16.0,77777,9,999999999,69,0.0590,0,88,0.200,0.0,1.0 +2000,10,9,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,-5.0,25,88500,817,1371,298,640,917,92,66500,90500,12400,1910,290,2.1,0,0,16.0,77777,9,999999999,69,0.0590,0,88,0.200,0.0,1.0 +2000,10,9,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,-4.4,22,88400,769,1371,312,566,824,102,59100,81500,13200,2240,0,0.0,0,0,16.0,77777,9,999999999,69,0.0590,0,88,0.200,0.0,1.0 +2000,10,9,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,-4.4,19,88300,661,1371,319,478,779,101,50500,76800,13300,2150,0,0.0,0,0,16.0,77777,9,999999999,69,0.0590,0,88,0.200,0.0,1.0 +2000,10,9,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,-3.9,20,88300,500,1371,322,373,818,73,38200,75900,10400,1390,310,2.1,0,0,16.0,77777,9,999999999,80,0.0590,0,88,0.200,0.0,1.0 +2000,10,9,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,-3.9,20,87300,298,1371,320,226,643,85,22400,49100,11700,1380,0,0.0,0,0,16.0,77777,9,999999999,80,0.0590,0,88,0.200,0.0,1.0 +2000,10,9,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,-3.3,26,88100,76,1131,307,22,261,8,2900,15900,1700,250,220,2.6,0,0,16.0,77777,9,999999999,80,0.0590,0,88,0.200,0.0,1.0 +2000,10,9,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,-3.9,30,88000,0,0,294,0,0,0,0,0,0,0,240,3.1,0,0,16.0,77777,9,999999999,80,0.0590,0,88,0.200,0.0,1.0 +2000,10,9,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,-4.4,33,87900,0,0,285,0,0,0,0,0,0,0,200,2.1,0,0,16.0,77777,9,999999999,80,0.0590,0,88,0.200,0.0,1.0 +2000,10,9,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,-4.4,37,87800,0,0,278,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,89,0.0590,0,88,0.200,0.0,1.0 +2000,10,9,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,-4.4,39,87800,0,0,276,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,89,0.0590,0,88,0.200,0.0,1.0 +2000,10,9,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,-4.4,42,87300,0,0,271,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,89,0.0590,0,88,0.200,0.0,1.0 +2000,10,9,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,-4.4,45,87600,0,0,272,0,0,0,0,0,0,0,130,1.5,1,1,16.0,77777,9,999999999,89,0.0590,0,88,0.200,0.0,1.0 +2000,10,10,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,-4.4,45,87600,0,0,272,0,0,0,0,0,0,0,0,0.0,1,1,16.0,77777,9,999999999,89,0.0590,0,88,0.200,0.0,1.0 +2000,10,10,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.9,-4.4,52,87400,0,0,259,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,89,0.0590,0,88,0.200,0.0,1.0 +2000,10,10,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.8,-4.4,57,87300,0,0,255,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,89,0.0590,0,88,0.200,0.0,1.0 +2000,10,10,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.3,-4.4,55,87300,0,0,257,0,0,0,0,0,0,0,0,0.0,1,0,16.0,77777,9,999999999,89,0.0590,0,88,0.200,0.0,1.0 +2000,10,10,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.9,-3.9,55,87200,0,0,268,0,0,0,0,0,0,0,0,0.0,2,2,16.0,77777,9,999999999,89,0.0590,0,88,0.200,0.0,1.0 +2000,10,10,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.8,-3.9,59,87300,0,0,260,0,0,0,0,0,0,0,0,0.0,3,1,16.0,77777,9,999999999,89,0.0590,0,88,0.200,0.0,1.0 +2000,10,10,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.1,-3.3,70,87300,11,446,254,0,0,0,0,0,0,0,0,0.0,2,1,16.0,77777,9,999999999,89,0.0590,0,88,0.200,0.0,1.0 +2000,10,10,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.9,-2.2,63,87400,184,1372,269,23,0,23,2700,0,2700,890,300,2.1,4,2,16.0,77777,9,999999999,80,0.0590,0,88,0.200,0.0,1.0 +2000,10,10,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,6.5,-2.3,52,87400,400,1372,280,124,44,111,13600,4000,12400,2920,320,1.4,4,2,16.0,77777,9,999999999,80,0.0590,0,88,0.200,999.0,99.0 +2000,10,10,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,9.4,-2.7,41,87300,583,1372,291,292,231,194,31700,23000,21900,4610,340,0.7,5,2,16.0,77777,9,999999999,80,0.0590,0,88,0.200,999.0,99.0 +2000,10,10,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,-3.3,33,87300,717,1372,305,465,595,153,48000,58300,17400,3200,0,0.0,5,3,16.0,77777,9,999999999,80,0.0590,0,88,0.200,0.0,1.0 +2000,10,10,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,-2.8,27,87200,795,1372,320,609,746,175,62900,73800,20000,3890,360,1.5,6,3,16.0,77777,9,999999999,80,0.0590,0,88,0.200,0.0,1.0 +2000,10,10,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,-4.4,20,87100,810,1372,331,394,223,262,43000,23300,29200,7020,360,1.5,6,3,16.0,77777,9,999999999,89,0.0590,0,88,0.200,0.0,1.0 +2000,10,10,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,-1.1,27,87100,762,1372,335,254,24,240,28800,2100,27600,9560,360,1.5,7,3,16.0,77777,9,999999999,89,0.0590,0,88,0.200,0.0,1.0 +2000,10,10,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,-1.7,24,87000,654,1372,339,211,19,202,23800,1600,23100,7760,330,2.6,7,3,16.0,77777,9,999999999,89,0.0590,0,88,0.200,0.0,1.0 +2000,10,10,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,-1.1,27,87000,493,1372,332,155,13,150,17300,900,16900,5380,320,4.1,6,3,16.0,77777,9,999999999,89,0.0590,0,88,0.200,0.0,1.0 +2000,10,10,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,-2.8,25,86900,291,1372,324,168,198,125,17700,15600,14300,2710,320,5.7,3,2,16.0,77777,9,999999999,89,0.0590,0,88,0.200,0.0,1.0 +2000,10,10,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,-2.8,27,87000,70,1086,320,14,76,11,1800,3100,1600,180,280,6.2,6,3,16.0,77777,9,999999999,89,0.0590,0,88,0.200,0.0,1.0 +2000,10,10,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,-3.3,28,87100,0,0,315,0,0,0,0,0,0,0,300,4.1,7,3,16.0,77777,9,999999999,89,0.0590,0,88,0.200,0.0,1.0 +2000,10,10,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,-4.4,29,87100,0,0,306,0,0,0,0,0,0,0,290,3.1,6,3,16.0,77777,9,999999999,100,0.0590,0,88,0.200,0.0,1.0 +2000,10,10,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,-2.2,37,87200,0,0,304,0,0,0,0,0,0,0,320,4.6,5,3,16.0,77777,9,999999999,100,0.0590,0,88,0.200,0.0,1.0 +2000,10,10,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,-1.1,45,87300,0,0,295,0,0,0,0,0,0,0,300,4.6,3,2,16.0,77777,9,999999999,100,0.0590,0,88,0.200,0.0,1.0 +2000,10,10,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,-0.6,47,87400,0,0,301,0,0,0,0,0,0,0,270,4.1,6,4,16.0,77777,9,999999999,100,0.0590,0,88,0.200,0.0,1.0 +2000,10,10,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,-1.1,45,87800,0,0,303,0,0,0,0,0,0,0,300,4.6,6,5,16.0,77777,9,999999999,100,0.0590,0,88,0.200,0.0,1.0 +2000,10,11,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,-1.1,45,87900,0,0,309,0,0,0,0,0,0,0,300,3.1,8,7,16.0,3048,9,999999999,110,0.0580,0,88,0.200,0.0,1.0 +2000,10,11,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,0.0,54,87900,0,0,326,0,0,0,0,0,0,0,310,4.6,10,10,16.0,3048,9,999999999,110,0.0580,0,88,0.200,0.0,1.0 +2000,10,11,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,0.0,56,88000,0,0,323,0,0,0,0,0,0,0,310,5.2,10,10,16.0,3353,9,999999999,110,0.0580,0,88,0.200,0.0,1.0 +2000,10,11,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,0.0,58,88100,0,0,321,0,0,0,0,0,0,0,290,6.7,10,10,16.0,1829,9,999999999,120,0.0580,0,88,0.200,0.0,1.0 +2000,10,11,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,-1.1,59,87800,0,0,312,0,0,0,0,0,0,0,290,4.6,10,10,16.0,914,9,999999999,120,0.0580,0,88,0.200,0.0,1.0 +2000,10,11,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,0.0,65,88100,0,0,313,0,0,0,0,0,0,0,330,4.6,10,10,16.0,1036,9,999999999,120,0.0580,0,88,0.200,0.0,1.0 +2000,10,11,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,0.0,67,88200,9,400,311,0,0,0,0,0,0,0,350,4.6,10,10,14.4,914,9,999999999,129,0.0580,0,88,0.200,0.0,1.0 +2000,10,11,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,0.0,73,88200,178,1373,306,14,0,14,1700,0,1700,570,290,3.1,10,10,9.6,792,9,999999999,129,0.0580,0,88,0.200,1.0,1.0 +2000,10,11,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,0.0,73,88200,395,1373,306,40,0,40,4800,0,4800,1730,340,4.1,10,10,14.4,579,9,999999999,129,0.0580,0,88,0.200,0.0,1.0 +2000,10,11,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,0.0,73,88300,577,1373,306,92,0,92,10900,0,10900,4040,300,3.6,10,10,16.0,1158,9,999999999,139,0.0580,0,88,0.200,0.0,1.0 +2000,10,11,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,0.0,70,87900,711,1373,308,105,0,105,12600,0,12600,4900,320,4.6,10,10,16.0,732,9,999999999,139,0.0580,0,88,0.200,0.0,1.0 +2000,10,11,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,0.0,67,88200,788,1373,311,100,0,100,12200,0,12200,4880,330,7.2,10,10,16.0,671,9,999999999,139,0.0580,0,88,0.200,0.0,1.0 +2000,10,11,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,0.0,67,88200,803,1373,311,99,0,99,12100,0,12100,4870,330,5.2,10,10,16.0,488,9,999999999,139,0.0580,0,88,0.200,0.0,1.0 +2000,10,11,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,0.0,70,88200,755,1373,308,143,0,143,16900,0,16900,6500,330,5.7,10,10,16.0,488,9,999999999,139,0.0580,0,88,0.200,0.0,1.0 +2000,10,11,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,0.0,70,88200,646,1373,308,113,0,113,13300,0,13300,5020,340,5.7,10,10,14.4,823,9,999999999,139,0.0580,0,88,0.200,0.0,1.0 +2000,10,11,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,0.0,70,88200,485,1373,308,148,7,146,16600,500,16400,5240,330,7.2,10,10,12.8,488,9,999999999,139,0.0580,0,88,0.200,0.0,1.0 +2000,10,11,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,0.0,70,88200,283,1373,308,40,0,40,4700,0,4700,1580,330,5.7,10,10,14.4,488,9,999999999,129,0.0580,0,88,0.200,0.0,1.0 +2000,10,11,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,0.0,70,88200,65,1041,308,3,0,3,400,0,400,120,340,5.2,10,10,16.0,427,9,999999999,129,0.0580,0,88,0.200,0.0,1.0 +2000,10,11,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,0.0,70,88300,0,0,308,0,0,0,0,0,0,0,340,6.2,10,10,16.0,488,9,999999999,129,0.0580,0,88,0.200,0.0,1.0 +2000,10,11,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,0.0,73,88300,0,0,306,0,0,0,0,0,0,0,350,4.6,10,10,6.4,518,9,999999999,129,0.0580,0,88,0.200,1.0,1.0 +2000,10,11,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.3,0.0,79,88300,0,0,301,0,0,0,0,0,0,0,280,4.6,10,10,8.0,396,9,999999999,129,0.0580,0,88,0.200,3.0,1.0 +2000,10,11,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.2,0.0,85,88300,0,0,296,0,0,0,0,0,0,0,270,3.6,10,10,8.0,457,9,999999999,129,0.0580,0,88,0.200,2.0,1.0 +2000,10,11,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.7,0.0,88,88000,0,0,294,0,0,0,0,0,0,0,260,4.1,10,10,8.0,610,9,999999999,129,0.0580,0,88,0.200,2.0,1.0 +2000,10,11,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.2,0.0,85,88200,0,0,296,0,0,0,0,0,0,0,260,3.6,10,10,9.6,610,9,999999999,129,0.0580,0,88,0.200,1.0,1.0 +2000,10,12,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.8,1.7,92,88200,0,0,300,0,0,0,0,0,0,0,260,2.6,10,10,16.0,1067,9,999999999,129,0.0580,0,88,0.200,0.0,1.0 +2000,10,12,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.3,1.7,89,88200,0,0,303,0,0,0,0,0,0,0,0,0.0,10,10,16.0,914,9,999999999,129,0.0580,0,88,0.200,0.0,1.0 +2000,10,12,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.8,2.2,96,88200,0,0,301,0,0,0,0,0,0,0,0,0.0,10,10,14.4,853,9,999999999,120,0.0580,0,88,0.200,0.0,1.0 +2000,10,12,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.8,2.2,96,88200,0,0,301,0,0,0,0,0,0,0,0,0.0,10,10,9.6,579,9,999999999,120,0.0580,0,88,0.200,1.0,1.0 +2000,10,12,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.8,1.7,92,87800,0,0,300,0,0,0,0,0,0,0,0,0.0,10,10,11.2,823,9,999999999,120,0.0580,0,88,0.200,1.0,1.0 +2000,10,12,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.2,1.7,96,88100,0,0,298,0,0,0,0,0,0,0,50,1.5,10,10,8.0,91,9,999999999,120,0.0580,0,88,0.200,1.0,1.0 +2000,10,12,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.7,1.1,96,88100,8,378,295,0,0,0,0,0,0,0,80,2.1,10,10,8.0,91,9,999999999,120,0.0580,0,88,0.200,1.0,1.0 +2000,10,12,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.7,1.1,96,88100,173,1373,295,19,0,19,2300,0,2300,740,40,1.5,10,10,9.6,152,9,999999999,120,0.0580,0,88,0.200,0.0,1.0 +2000,10,12,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.1,0.6,96,88100,389,1373,292,48,0,48,5700,0,5700,2030,330,1.5,10,10,3.2,30,9,999999999,120,0.0580,0,88,0.200,1.0,1.0 +2000,10,12,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.6,0.0,96,88200,570,1373,289,97,0,97,11400,0,11400,4200,0,0.0,10,10,1.2,30,9,999999999,120,0.0580,0,88,0.200,1.0,1.0 +2000,10,12,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.1,0.6,96,87900,705,1373,292,94,0,94,11400,0,11400,4440,0,0.0,10,10,6.4,671,9,999999999,120,0.0580,0,88,0.200,1.0,1.0 +2000,10,12,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.1,0.6,96,88200,782,1373,292,100,0,100,12200,0,12200,4870,10,1.5,10,10,3.2,30,9,999999999,110,0.0580,0,88,0.200,0.0,1.0 +2000,10,12,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.7,1.1,96,88200,796,1373,295,173,0,173,20300,0,20300,7750,10,1.5,10,10,3.2,61,9,999999999,110,0.0580,0,88,0.200,0.0,1.0 +2000,10,12,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.7,1.1,96,88100,748,1373,295,215,6,212,24600,500,24400,8700,0,0.0,10,10,3.2,61,9,999999999,110,0.0580,0,88,0.200,0.0,1.0 +2000,10,12,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.2,1.1,92,88200,639,1373,297,184,6,181,20900,500,20700,7110,0,0.0,10,10,3.2,122,9,999999999,110,0.0580,0,88,0.200,0.0,1.0 +2000,10,12,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.8,2.2,96,88200,478,1373,301,132,0,132,14800,0,14800,4870,40,1.5,10,10,8.0,183,9,999999999,100,0.0580,0,88,0.200,0.0,1.0 +2000,10,12,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.2,1.7,96,87900,276,1373,298,69,0,69,7700,0,7700,2390,350,2.1,10,10,6.4,61,9,999999999,100,0.0580,0,88,0.200,0.0,1.0 +2000,10,12,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.7,1.7,100,88200,59,1019,296,4,0,4,500,0,500,160,300,1.5,10,10,9.6,61,9,999999999,100,0.0580,0,88,0.200,0.0,1.0 +2000,10,12,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.2,1.7,96,88300,0,0,298,0,0,0,0,0,0,0,20,2.1,10,10,4.8,183,9,999999999,100,0.0580,0,88,0.200,0.0,1.0 +2000,10,12,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.7,1.1,96,88300,0,0,295,0,0,0,0,0,0,0,10,1.5,10,10,8.0,183,9,999999999,89,0.0580,0,88,0.200,0.0,1.0 +2000,10,12,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.7,1.1,96,88300,0,0,295,0,0,0,0,0,0,0,0,0.0,10,10,4.8,122,9,999999999,89,0.0580,0,88,0.200,0.0,1.0 +2000,10,12,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.2,1.7,96,88400,0,0,298,0,0,0,0,0,0,0,290,1.5,10,10,4.8,122,9,999999999,89,0.0580,0,88,0.200,0.0,1.0 +2000,10,12,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.2,1.7,96,88000,0,0,298,0,0,0,0,0,0,0,0,0.0,10,10,4.8,244,9,999999999,89,0.0580,0,88,0.200,0.0,1.0 +2000,10,12,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.2,1.7,96,88300,0,0,298,0,0,0,0,0,0,0,0,0.0,10,10,12.8,945,9,999999999,89,0.0580,0,88,0.200,0.0,1.0 +2000,10,13,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.2,1.7,96,88300,0,0,298,0,0,0,0,0,0,0,0,0.0,10,10,11.2,152,9,999999999,89,0.0580,0,88,0.200,0.0,1.0 +2000,10,13,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.2,1.7,96,88300,0,0,298,0,0,0,0,0,0,0,0,0.0,10,10,9.6,152,9,999999999,89,0.0580,0,88,0.200,0.0,1.0 +2000,10,13,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.2,1.7,96,88300,0,0,298,0,0,0,0,0,0,0,0,0.0,10,10,9.6,152,9,999999999,100,0.0580,0,88,0.200,0.0,1.0 +2000,10,13,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.2,1.7,96,88300,0,0,298,0,0,0,0,0,0,0,20,2.1,10,10,11.2,152,9,999999999,100,0.0580,0,88,0.200,1.0,1.0 +2000,10,13,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.7,1.1,96,88000,0,0,295,0,0,0,0,0,0,0,30,1.5,10,10,12.8,152,9,999999999,100,0.0580,0,88,0.200,2.0,1.0 +2000,10,13,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.7,1.1,96,88300,0,0,295,0,0,0,0,0,0,0,0,0.0,10,10,9.6,701,9,999999999,110,0.0580,0,88,0.200,0.0,1.0 +2000,10,13,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.7,1.1,96,88400,7,355,295,0,0,0,0,0,0,0,0,0.0,10,10,8.0,640,9,999999999,110,0.0580,0,88,0.200,1.0,1.0 +2000,10,13,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.2,1.7,96,88400,167,1374,298,13,0,13,1600,0,1600,530,0,0.0,10,10,6.4,792,9,999999999,110,0.0580,0,88,0.200,0.0,1.0 +2000,10,13,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.2,1.7,96,88500,383,1374,298,39,0,39,4700,0,4700,1680,0,0.0,10,10,9.6,91,9,999999999,120,0.0580,0,88,0.200,0.0,1.0 +2000,10,13,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.8,1.7,92,88500,564,1374,300,107,0,107,12500,0,12500,4530,0,0.0,10,10,9.6,91,9,999999999,120,0.0580,0,88,0.200,0.0,1.0 +2000,10,13,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.3,2.2,92,88200,698,1374,303,111,0,111,13200,0,13200,5100,0,0.0,10,10,14.4,1250,9,999999999,120,0.0580,0,88,0.200,0.0,1.0 +2000,10,13,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,2.8,89,88600,775,1374,309,105,0,105,12800,0,12800,5060,0,0.0,10,10,16.0,1250,9,999999999,129,0.0580,0,88,0.200,0.0,1.0 +2000,10,13,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,3.3,93,88600,789,1374,309,99,0,99,12100,0,12100,4840,20,2.1,10,10,16.0,213,9,999999999,129,0.0580,0,88,0.200,0.0,1.0 +2000,10,13,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,3.9,93,88600,741,1374,312,150,0,150,17600,0,17600,6690,0,0.0,10,10,16.0,213,9,999999999,129,0.0580,0,88,0.200,0.0,1.0 +2000,10,13,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,4.4,92,88600,632,1374,316,121,0,121,14200,0,14200,5250,40,2.6,10,10,16.0,213,9,999999999,129,0.0580,0,88,0.200,0.0,1.0 +2000,10,13,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,4.4,89,88600,471,1374,318,92,0,92,10600,0,10600,3720,70,2.6,10,10,16.0,335,9,999999999,129,0.0580,0,88,0.200,0.0,1.0 +2000,10,13,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,3.9,86,88100,268,1374,309,113,91,96,12200,7000,10800,2060,80,3.6,9,9,16.0,396,9,999999999,129,0.0580,0,88,0.200,0.0,1.0 +2000,10,13,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,3.9,89,88600,54,973,315,6,29,5,800,1100,700,80,40,2.1,10,10,16.0,396,9,999999999,129,0.0580,0,88,0.200,0.0,1.0 +2000,10,13,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,3.9,93,88600,0,0,312,0,0,0,0,0,0,0,0,0.0,10,10,12.8,945,9,999999999,129,0.0580,0,88,0.200,0.0,1.0 +2000,10,13,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,3.9,97,88600,0,0,310,0,0,0,0,0,0,0,270,1.5,10,10,11.2,884,9,999999999,129,0.0580,0,88,0.200,0.0,1.0 +2000,10,13,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,3.9,97,88700,0,0,310,0,0,0,0,0,0,0,0,0.0,10,10,8.0,884,9,999999999,129,0.0580,0,88,0.200,1.0,1.0 +2000,10,13,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,4.4,96,88700,0,0,313,0,0,0,0,0,0,0,0,0.0,10,10,6.4,122,9,999999999,129,0.0580,0,88,0.200,0.0,1.0 +2000,10,13,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,4.4,96,88300,0,0,313,0,0,0,0,0,0,0,0,0.0,10,10,9.6,1189,9,999999999,129,0.0580,0,88,0.200,0.0,1.0 +2000,10,13,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,3.9,97,88700,0,0,310,0,0,0,0,0,0,0,0,0.0,10,10,4.8,1311,9,999999999,129,0.0580,0,88,0.200,0.0,1.0 +2000,10,14,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,3.9,97,88700,0,0,310,0,0,0,0,0,0,0,300,1.5,10,10,4.8,91,9,999999999,129,0.0570,0,88,0.200,0.0,1.0 +2000,10,14,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,3.9,97,88700,0,0,310,0,0,0,0,0,0,0,240,1.5,10,10,0.8,30,9,999999999,129,0.0570,0,88,0.200,0.0,1.0 +2000,10,14,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,3.9,97,88700,0,0,310,0,0,0,0,0,0,0,0,0.0,10,10,2.4,1981,9,999999999,120,0.0570,0,88,0.200,0.0,1.0 +2000,10,14,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,3.9,97,88700,0,0,310,0,0,0,0,0,0,0,0,0.0,10,10,3.2,30,9,999999999,120,0.0570,0,88,0.200,0.0,1.0 +2000,10,14,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,3.9,97,88400,0,0,310,0,0,0,0,0,0,0,0,0.0,10,10,8.0,1067,9,999999999,120,0.0570,0,88,0.200,0.0,1.0 +2000,10,14,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,3.9,97,88700,0,0,310,0,0,0,0,0,0,0,0,0.0,10,10,9.6,1219,9,999999999,120,0.0570,0,88,0.200,0.0,1.0 +2000,10,14,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,3.9,97,88700,5,309,310,0,0,0,0,0,0,0,0,0.0,10,10,8.0,1158,9,999999999,120,0.0570,0,88,0.200,0.0,1.0 +2000,10,14,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,3.9,97,88800,162,1375,310,18,0,18,2100,0,2100,700,330,1.5,10,10,4.0,2743,9,999999999,110,0.0570,0,88,0.200,0.0,1.0 +2000,10,14,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,3.9,93,88800,377,1375,312,83,0,83,9400,0,9400,3130,0,0.0,10,10,4.8,91,9,999999999,110,0.0570,0,88,0.200,0.0,1.0 +2000,10,14,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,4.4,89,88800,558,1375,318,163,12,158,18400,900,18000,5990,0,0.0,10,10,12.8,1128,9,999999999,110,0.0570,0,88,0.200,0.0,1.0 +2000,10,14,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,5.6,86,88400,692,1375,311,138,0,138,16200,0,16200,6070,40,1.5,8,8,14.4,1128,9,999999999,110,0.0570,0,88,0.200,0.0,1.0 +2000,10,14,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,4.4,71,88900,768,1375,333,222,6,219,25500,500,25200,9040,70,2.1,10,10,16.0,1280,9,999999999,100,0.0570,0,88,0.200,0.0,1.0 +2000,10,14,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,5.0,71,88900,783,1375,337,222,6,219,25500,500,25300,9130,70,2.6,10,10,16.0,1158,9,999999999,100,0.0570,0,88,0.200,0.0,1.0 +2000,10,14,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,2.8,58,88900,734,1375,337,275,31,258,30900,2900,29300,9720,270,5.2,10,10,16.0,1311,9,999999999,100,0.0570,0,88,0.200,0.0,1.0 +2000,10,14,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,2.8,58,88900,625,1375,337,228,31,213,25400,2700,24200,7750,270,4.6,10,10,16.0,1829,9,999999999,89,0.0570,0,88,0.200,0.0,1.0 +2000,10,14,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,2.8,58,88800,463,1375,321,226,179,166,24300,16800,18600,3770,260,6.7,9,8,16.0,3048,9,999999999,89,0.0570,0,88,0.200,0.0,1.0 +2000,10,14,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,2.8,61,88300,261,1375,305,132,244,86,13700,17700,10400,1720,240,2.6,5,4,16.0,77777,9,999999999,89,0.0570,0,88,0.200,0.0,1.0 +2000,10,14,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,2.8,63,88800,50,928,316,5,71,3,800,3900,600,80,200,2.6,9,8,16.0,2743,9,999999999,80,0.0570,0,88,0.200,0.0,1.0 +2000,10,14,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,3.3,68,88900,0,0,330,0,0,0,0,0,0,0,290,2.1,10,10,16.0,1494,9,999999999,80,0.0570,0,88,0.200,0.0,1.0 +2000,10,14,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,4.4,79,88800,0,0,326,0,0,0,0,0,0,0,260,4.1,10,10,16.0,1981,9,999999999,80,0.0570,0,88,0.200,0.0,1.0 +2000,10,14,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,3.9,80,88800,0,0,302,0,0,0,0,0,0,0,0,0.0,10,7,16.0,77777,9,999999999,69,0.0570,0,88,0.200,0.0,1.0 +2000,10,14,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,4.4,85,88800,0,0,321,0,0,0,0,0,0,0,0,0.0,10,10,16.0,1981,9,999999999,69,0.0570,0,88,0.200,0.0,1.0 +2000,10,14,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,4.4,85,88400,0,0,312,0,0,0,0,0,0,0,0,0.0,9,9,16.0,2438,9,999999999,60,0.0570,0,88,0.200,0.0,1.0 +2000,10,14,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,3.9,86,88700,0,0,309,0,0,0,0,0,0,0,300,2.1,9,9,16.0,1524,9,999999999,69,0.0570,0,88,0.200,0.0,1.0 +2000,10,15,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,3.9,86,88700,0,0,289,0,0,0,0,0,0,0,120,2.1,5,4,16.0,3658,9,999999999,69,0.0570,0,88,0.200,0.0,1.0 +2000,10,15,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,3.9,93,88700,0,0,304,0,0,0,0,0,0,0,0,0.0,9,9,16.0,1433,9,999999999,69,0.0570,0,88,0.200,0.0,1.0 +2000,10,15,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,2.8,79,88700,0,0,286,0,0,0,0,0,0,0,290,1.5,3,3,16.0,77777,9,999999999,69,0.0570,0,88,0.200,0.0,1.0 +2000,10,15,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,3.3,93,88600,0,0,282,0,0,0,0,0,0,0,210,2.1,4,4,16.0,77777,9,999999999,69,0.0570,0,88,0.200,0.0,1.0 +2000,10,15,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.3,2.8,97,88400,0,0,277,0,0,0,0,0,0,0,0,0.0,5,4,16.0,77777,9,999999999,69,0.0570,0,88,0.200,0.0,1.0 +2000,10,15,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.7,1.7,100,88600,0,0,265,0,0,0,0,0,0,0,0,0.0,2,2,16.0,77777,9,999999999,69,0.0570,0,88,0.200,0.0,1.0 +2000,10,15,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.2,0.6,89,88600,4,287,257,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,69,0.0570,0,88,0.200,0.0,1.0 +2000,10,15,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.8,1.1,89,88600,156,1376,260,51,148,34,5300,8200,4400,600,0,0.0,0,0,16.0,77777,9,999999999,69,0.0570,0,88,0.200,0.0,1.0 +2000,10,15,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.3,2.2,92,88700,371,1376,274,229,550,80,23300,46400,10700,1420,310,2.1,3,3,9.6,77777,9,999999999,69,0.0570,0,88,0.200,0.0,1.0 +2000,10,15,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,2.8,82,88700,552,1376,272,391,811,64,41100,77300,9900,1360,0,0.0,0,0,16.0,77777,9,999999999,80,0.0570,0,88,0.200,0.0,1.0 +2000,10,15,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,3.3,73,88300,685,1376,281,508,865,75,53000,84200,10900,1560,0,0.0,0,0,16.0,77777,9,999999999,80,0.0570,0,88,0.200,0.0,1.0 +2000,10,15,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,3.9,63,88800,762,1376,293,579,847,109,60000,83400,13600,2300,80,1.5,0,0,16.0,77777,9,999999999,80,0.0570,0,88,0.200,0.0,1.0 +2000,10,15,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,0.6,42,88800,776,1376,319,518,688,129,54600,68900,15700,2940,300,4.6,5,5,16.0,77777,9,999999999,80,0.0570,0,88,0.200,0.0,1.0 +2000,10,15,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,0.0,38,88800,726,1376,303,524,790,106,54100,77400,13100,2160,280,3.6,0,0,16.0,77777,9,999999999,80,0.0570,0,88,0.200,0.0,1.0 +2000,10,15,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,0.0,38,88700,617,1376,303,435,734,105,45500,71200,13500,2140,280,5.7,0,0,16.0,77777,9,999999999,89,0.0570,0,88,0.200,0.0,1.0 +2000,10,15,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,0.0,38,88700,456,1376,303,304,659,85,31400,59600,11600,1590,250,5.2,0,0,16.0,77777,9,999999999,89,0.0570,0,88,0.200,0.0,1.0 +2000,10,15,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,0.0,41,88100,254,1376,298,183,454,99,18000,32400,12100,1930,270,5.2,0,0,16.0,77777,9,999999999,89,0.0570,0,88,0.200,0.0,1.0 +2000,10,15,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,1.1,52,88700,45,883,290,6,122,3,1100,7000,700,110,210,3.1,0,0,16.0,77777,9,999999999,89,0.0570,0,88,0.200,0.0,1.0 +2000,10,15,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,1.1,58,88700,0,0,283,0,0,0,0,0,0,0,220,2.6,0,0,16.0,77777,9,999999999,100,0.0570,0,88,0.200,0.0,1.0 +2000,10,15,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,1.7,73,88600,0,0,278,0,0,0,0,0,0,0,300,3.6,1,1,16.0,77777,9,999999999,100,0.0570,0,88,0.200,0.0,1.0 +2000,10,15,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,1.7,70,88700,0,0,281,0,0,0,0,0,0,0,0,0.0,2,1,16.0,77777,9,999999999,100,0.0570,0,88,0.200,0.0,1.0 +2000,10,15,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,1.7,79,88600,0,0,278,0,0,0,0,0,0,0,280,3.1,4,2,16.0,77777,9,999999999,100,0.0570,0,88,0.200,0.0,1.0 +2000,10,15,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,1.7,76,88200,0,0,280,0,0,0,0,0,0,0,0,0.0,4,2,16.0,77777,9,999999999,110,0.0570,0,88,0.200,0.0,1.0 +2000,10,15,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,1.7,79,88500,0,0,283,0,0,0,0,0,0,0,0,0.0,8,4,16.0,77777,9,999999999,110,0.0570,0,88,0.200,0.0,1.0 +2000,10,16,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,2.2,82,88500,0,0,281,0,0,0,0,0,0,0,360,2.1,6,3,16.0,77777,9,999999999,110,0.0560,0,88,0.200,0.0,1.0 +2000,10,16,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,1.1,79,88500,0,0,271,0,0,0,0,0,0,0,220,3.1,2,1,16.0,77777,9,999999999,110,0.0560,0,88,0.200,0.0,1.0 +2000,10,16,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.8,1.1,89,88500,0,0,260,0,0,0,0,0,0,0,150,1.5,0,0,16.0,77777,9,999999999,110,0.0560,0,88,0.200,0.0,1.0 +2000,10,16,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.9,0.6,79,88500,0,0,268,0,0,0,0,0,0,0,210,2.1,1,1,16.0,77777,9,999999999,100,0.0560,0,88,0.200,0.0,1.0 +2000,10,16,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.8,0.6,85,88300,0,0,268,0,0,0,0,0,0,0,190,2.6,4,2,16.0,77777,9,999999999,100,0.0560,0,88,0.200,0.0,1.0 +2000,10,16,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.1,0.6,96,88500,0,0,261,0,0,0,0,0,0,0,0,0.0,5,2,16.0,77777,9,999999999,100,0.0560,0,88,0.200,0.0,1.0 +2000,10,16,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.8,1.1,89,88600,3,241,271,0,0,0,0,0,0,0,260,2.1,6,3,16.0,77777,9,999999999,100,0.0560,0,88,0.200,0.0,1.0 +2000,10,16,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.9,1.7,86,88800,151,1377,276,17,0,17,2000,0,2000,660,0,0.0,7,3,16.0,77777,9,999999999,100,0.0560,0,88,0.200,0.0,1.0 +2000,10,16,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,2.2,79,88800,365,1377,290,90,5,89,10200,300,10100,3240,0,0.0,10,6,16.0,77777,9,999999999,100,0.0560,0,88,0.200,0.0,1.0 +2000,10,16,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,2.2,76,88800,546,1377,288,380,609,138,39800,58300,16600,2710,320,1.5,8,4,16.0,77777,9,999999999,100,0.0560,0,88,0.200,0.0,1.0 +2000,10,16,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,1.7,56,88400,679,1377,298,496,853,74,51800,82900,10800,1550,240,2.1,2,2,16.0,77777,9,999999999,100,0.0560,0,88,0.200,0.0,1.0 +2000,10,16,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,3.3,52,89000,755,1377,308,544,752,130,57100,74900,15900,2900,270,2.1,1,1,16.0,77777,9,999999999,110,0.0560,0,88,0.200,0.0,1.0 +2000,10,16,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,2.2,38,89000,769,1377,317,506,561,192,53600,57000,21600,4310,300,2.1,0,0,16.0,77777,9,999999999,110,0.0560,0,88,0.200,0.0,1.0 +2000,10,16,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,1.7,35,89000,719,1377,335,164,0,164,19100,0,19100,7070,270,5.7,4,4,16.0,77777,9,999999999,120,0.0560,0,88,0.200,0.0,1.0 +2000,10,16,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,1.7,36,89000,610,1377,348,129,0,129,15000,0,15000,5420,210,2.1,8,8,16.0,2438,9,999999999,129,0.0560,0,88,0.200,0.0,1.0 +2000,10,16,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,2.2,35,89000,449,1377,354,51,0,51,6100,0,6100,2230,260,3.1,9,8,16.0,3200,9,999999999,129,0.0560,0,88,0.200,0.0,1.0 +2000,10,16,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,2.8,41,88200,246,1377,332,143,166,113,15000,12100,12800,2420,310,2.1,9,4,16.0,77777,9,999999999,139,0.0560,0,88,0.200,0.0,1.0 +2000,10,16,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,2.8,44,89000,41,837,329,3,41,3,600,1900,500,60,0,0.0,9,5,16.0,77777,9,999999999,139,0.0560,0,88,0.200,0.0,1.0 +2000,10,16,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,3.3,54,88900,0,0,336,0,0,0,0,0,0,0,250,3.6,9,9,16.0,2286,9,999999999,150,0.0560,0,88,0.200,0.0,1.0 +2000,10,16,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,2.8,53,88900,0,0,309,0,0,0,0,0,0,0,230,3.6,4,2,16.0,77777,9,999999999,150,0.0560,0,88,0.200,0.0,1.0 +2000,10,16,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,3.3,61,88900,0,0,305,0,0,0,0,0,0,0,110,1.5,7,3,16.0,77777,9,999999999,160,0.0560,0,88,0.200,0.0,1.0 +2000,10,16,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,3.3,73,88800,0,0,287,0,0,0,0,0,0,0,160,2.6,3,1,16.0,77777,9,999999999,160,0.0560,0,88,0.200,0.0,1.0 +2000,10,16,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,2.8,76,88400,0,0,276,0,0,0,0,0,0,0,260,2.6,1,0,16.0,77777,9,999999999,170,0.0560,0,88,0.200,0.0,1.0 +2000,10,16,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,2.2,70,88700,0,0,283,0,0,0,0,0,0,0,0,0.0,2,1,16.0,77777,9,999999999,160,0.0560,0,88,0.200,0.0,1.0 +2000,10,17,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,2.2,73,88700,0,0,285,0,0,0,0,0,0,0,0,0.0,4,2,16.0,77777,9,999999999,160,0.0560,0,88,0.200,0.0,1.0 +2000,10,17,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,2.2,86,88700,0,0,278,0,0,0,0,0,0,0,70,2.6,6,3,16.0,77777,9,999999999,150,0.0560,0,88,0.200,0.0,1.0 +2000,10,17,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,2.2,79,88800,0,0,280,0,0,0,0,0,0,0,90,1.5,5,2,16.0,77777,9,999999999,150,0.0560,0,88,0.200,0.0,1.0 +2000,10,17,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,1.7,79,88800,0,0,278,0,0,0,0,0,0,0,0,0.0,5,2,16.0,77777,9,999999999,139,0.0560,0,88,0.200,0.0,1.0 +2000,10,17,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.8,1.1,89,88600,0,0,268,0,0,0,0,0,0,0,0,0.0,5,2,16.0,77777,9,999999999,129,0.0560,0,88,0.200,0.0,1.0 +2000,10,17,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,1.7,79,88900,0,0,283,0,0,0,0,0,0,0,0,0.0,6,4,16.0,77777,9,999999999,129,0.0560,0,88,0.200,0.0,1.0 +2000,10,17,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,1.7,79,88900,3,218,278,0,0,0,0,0,0,0,0,0.0,5,2,16.0,77777,9,999999999,120,0.0560,0,88,0.200,0.0,1.0 +2000,10,17,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,2.2,73,89000,145,1377,285,41,102,30,4400,5100,3800,530,0,0.0,5,2,16.0,77777,9,999999999,120,0.0560,0,88,0.200,0.0,1.0 +2000,10,17,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,3.3,71,89100,359,1377,283,210,477,85,21900,40100,11400,1570,0,0.0,1,0,16.0,77777,9,999999999,110,0.0560,0,88,0.200,0.0,1.0 +2000,10,17,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,3.9,63,89200,540,1377,293,385,821,61,40500,78100,9800,1300,330,2.1,0,0,16.0,77777,9,999999999,110,0.0560,0,88,0.200,0.0,1.0 +2000,10,17,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,3.3,52,88600,673,1377,308,463,800,71,49400,78800,10800,1610,0,0.0,1,1,16.0,77777,9,999999999,100,0.0560,0,88,0.200,0.0,1.0 +2000,10,17,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,4.4,49,89200,748,1377,312,574,865,102,59600,85200,13200,2180,0,0.0,0,0,16.0,77777,9,999999999,100,0.0560,0,88,0.200,0.0,1.0 +2000,10,17,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,5.6,46,89200,762,1377,323,513,706,120,54100,70700,14900,2720,30,1.5,0,0,16.0,77777,9,999999999,100,0.0560,0,88,0.200,0.0,1.0 +2000,10,17,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,5.0,37,89200,712,1377,346,466,613,148,48200,60100,17000,3090,60,4.1,4,2,16.0,77777,9,999999999,100,0.0560,0,88,0.200,0.0,1.0 +2000,10,17,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,2.2,29,89200,603,1377,352,366,478,156,38300,46700,17800,3150,120,3.1,6,3,16.0,77777,9,999999999,110,0.0560,0,88,0.200,0.0,1.0 +2000,10,17,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,2.2,29,89100,441,1377,352,266,429,128,27300,38600,14900,2470,170,3.6,6,3,16.0,77777,9,999999999,110,0.0560,0,88,0.200,0.0,1.0 +2000,10,17,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,2.2,31,88200,239,1377,346,183,391,115,18400,26800,13700,2560,180,5.2,6,3,16.0,77777,9,999999999,110,0.0560,0,88,0.200,0.0,1.0 +2000,10,17,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,1.7,32,89100,37,792,337,3,87,2,700,4900,500,80,200,4.1,4,2,16.0,77777,9,999999999,110,0.0560,0,88,0.200,0.0,1.0 +2000,10,17,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,3.9,51,89000,0,0,313,0,0,0,0,0,0,0,260,3.6,2,1,16.0,77777,9,999999999,110,0.0560,0,88,0.200,0.0,1.0 +2000,10,17,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,3.9,63,88800,0,0,293,0,0,0,0,0,0,0,250,3.1,0,0,16.0,77777,9,999999999,110,0.0560,0,88,0.200,0.0,1.0 +2000,10,17,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,3.3,59,88900,0,0,295,0,0,0,0,0,0,0,10,1.5,0,0,16.0,77777,9,999999999,120,0.0560,0,88,0.200,0.0,1.0 +2000,10,17,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,3.3,68,88700,0,0,286,0,0,0,0,0,0,0,10,2.1,0,0,16.0,77777,9,999999999,120,0.0560,0,88,0.200,0.0,1.0 +2000,10,17,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,2.8,74,88300,0,0,278,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,120,0.0560,0,88,0.200,0.0,1.0 +2000,10,17,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,2.8,74,88600,0,0,278,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,120,0.0560,0,88,0.200,0.0,1.0 +2000,10,18,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,2.2,73,88600,0,0,276,0,0,0,0,0,0,0,230,1.5,0,0,16.0,77777,9,999999999,110,0.0560,0,88,0.200,0.0,1.0 +2000,10,18,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,2.2,70,88600,0,0,278,0,0,0,0,0,0,0,260,2.1,0,0,16.0,77777,9,999999999,110,0.0560,0,88,0.200,0.0,1.0 +2000,10,18,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,1.7,73,88500,0,0,273,0,0,0,0,0,0,0,240,1.5,0,0,16.0,77777,9,999999999,110,0.0560,0,88,0.200,0.0,1.0 +2000,10,18,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,1.7,83,88500,0,0,266,0,0,0,0,0,0,0,250,1.5,0,0,16.0,77777,9,999999999,110,0.0560,0,88,0.200,0.0,1.0 +2000,10,18,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,1.7,79,88300,0,0,269,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,100,0.0560,0,88,0.200,0.0,1.0 +2000,10,18,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.9,0.6,79,88400,0,0,263,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,100,0.0560,0,88,0.200,0.0,1.0 +2000,10,18,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.3,0.6,82,88400,2,195,261,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,100,0.0560,0,88,0.200,0.0,1.0 +2000,10,18,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,2.2,79,88600,139,1378,271,47,205,26,4800,11600,3600,470,0,0.0,0,0,16.0,77777,9,999999999,100,0.0560,0,88,0.200,0.0,1.0 +2000,10,18,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,3.3,73,88600,353,1378,281,209,578,60,21600,48700,9100,1110,0,0.0,1,0,16.0,77777,9,999999999,89,0.0560,0,88,0.200,0.0,1.0 +2000,10,18,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,2.8,58,88700,534,1378,292,369,723,88,38500,68300,12000,1730,330,1.5,0,0,16.0,77777,9,999999999,89,0.0560,0,88,0.200,0.0,1.0 +2000,10,18,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,2.8,51,88100,666,1378,301,419,600,128,43500,58500,15100,2630,300,2.1,0,0,16.0,77777,9,999999999,89,0.0560,0,88,0.200,0.0,1.0 +2000,10,18,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,3.9,46,88700,742,1378,314,456,418,231,48800,43800,25200,5450,300,4.1,1,0,16.0,77777,9,999999999,89,0.0560,0,88,0.200,0.0,1.0 +2000,10,18,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,4.4,44,88700,755,1378,330,365,205,252,39700,21200,28000,6510,0,0.0,4,2,16.0,77777,9,999999999,89,0.0560,0,88,0.200,0.0,1.0 +2000,10,18,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,-0.6,22,88800,705,1378,351,493,625,172,52200,62800,19900,3670,260,5.7,7,3,16.0,77777,9,999999999,80,0.0560,0,88,0.200,0.0,1.0 +2000,10,18,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,1.1,28,88800,596,1378,345,417,755,90,44000,73100,12300,1850,290,7.7,4,3,16.0,77777,9,999999999,80,0.0560,0,88,0.200,0.0,1.0 +2000,10,18,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,2.2,32,88800,434,1378,336,294,638,92,30000,56500,12100,1670,300,5.7,1,1,16.0,77777,9,999999999,80,0.0560,0,88,0.200,0.0,1.0 +2000,10,18,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,1.7,35,88000,232,1378,325,174,454,98,17100,30800,11900,1940,270,5.7,2,1,16.0,77777,9,999999999,80,0.0560,0,88,0.200,0.0,1.0 +2000,10,18,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,2.2,44,88700,33,770,313,2,91,1,600,5000,400,40,270,4.6,2,1,16.0,77777,9,999999999,80,0.0560,0,88,0.200,0.0,1.0 +2000,10,18,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,1.7,42,88800,0,0,320,0,0,0,0,0,0,0,260,4.6,6,3,16.0,77777,9,999999999,80,0.0560,0,88,0.200,0.0,1.0 +2000,10,18,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,1.7,45,88700,0,0,315,0,0,0,0,0,0,0,180,3.1,7,3,16.0,3658,9,999999999,69,0.0560,0,88,0.200,0.0,1.0 +2000,10,18,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,1.7,45,88700,0,0,332,0,0,0,0,0,0,0,220,3.1,9,8,16.0,3353,9,999999999,69,0.0560,0,88,0.200,0.0,1.0 +2000,10,18,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,1.7,45,88600,0,0,315,0,0,0,0,0,0,0,170,3.6,7,3,16.0,77777,9,999999999,69,0.0560,0,88,0.200,0.0,1.0 +2000,10,18,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,2.2,54,88100,0,0,314,0,0,0,0,0,0,0,80,2.1,8,6,16.0,77777,9,999999999,69,0.0560,0,88,0.200,0.0,1.0 +2000,10,18,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,3.3,66,88500,0,0,316,0,0,0,0,0,0,0,310,4.1,9,8,16.0,3353,9,999999999,69,0.0560,0,88,0.200,0.0,1.0 +2000,10,19,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,2.8,57,88600,0,0,314,0,0,0,0,0,0,0,290,2.1,8,6,16.0,77777,9,999999999,80,0.0550,0,88,0.200,0.0,1.0 +2000,10,19,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,3.3,59,88500,0,0,340,0,0,0,0,0,0,0,260,5.7,10,10,16.0,3048,9,999999999,80,0.0550,0,88,0.200,0.0,1.0 +2000,10,19,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,3.3,61,88500,0,0,305,0,0,0,0,0,0,0,270,5.2,7,3,16.0,77777,9,999999999,80,0.0550,0,88,0.200,0.0,1.0 +2000,10,19,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,4.4,71,88500,0,0,317,0,0,0,0,0,0,0,310,5.2,9,8,16.0,3353,9,999999999,80,0.0550,0,88,0.200,0.0,1.0 +2000,10,19,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,4.4,79,88400,0,0,326,0,0,0,0,0,0,0,280,4.6,10,10,14.4,1158,9,999999999,89,0.0550,0,88,0.200,0.0,1.0 +2000,10,19,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,2.8,71,88700,0,0,324,0,0,0,0,0,0,0,290,5.7,10,10,16.0,2743,9,999999999,89,0.0550,0,88,0.200,0.0,1.0 +2000,10,19,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,1.7,63,88700,1,149,309,0,0,0,0,0,0,0,220,3.1,9,8,16.0,3353,9,999999999,89,0.0550,0,88,0.200,0.0,1.0 +2000,10,19,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,1.1,60,88800,134,1379,309,56,334,24,5800,18600,4000,430,250,4.1,8,8,16.0,3353,9,999999999,89,0.0550,0,88,0.200,0.0,1.0 +2000,10,19,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,1.1,58,88900,347,1379,303,199,566,56,20700,47500,8700,1050,280,1.5,6,6,16.0,77777,9,999999999,89,0.0550,0,88,0.200,0.0,1.0 +2000,10,19,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,1.1,52,88900,527,1379,300,368,791,64,38400,74700,9800,1330,300,3.1,3,2,16.0,77777,9,999999999,100,0.0550,0,88,0.200,0.0,1.0 +2000,10,19,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,1.1,45,88500,660,1379,299,451,806,64,47300,78200,9800,1460,270,4.6,0,0,16.0,77777,9,999999999,100,0.0550,0,88,0.200,0.0,1.0 +2000,10,19,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,0.6,42,89000,735,1379,301,527,788,105,54400,77300,13100,2170,260,5.7,0,0,16.0,77777,9,999999999,100,0.0550,0,88,0.200,0.0,1.0 +2000,10,19,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,-0.6,37,88900,748,1379,302,501,725,106,53300,72800,13700,2410,270,7.2,0,0,16.0,77777,9,999999999,100,0.0550,0,88,0.200,0.0,1.0 +2000,10,19,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,0.0,38,88900,698,1379,303,467,644,140,48400,63100,16400,2910,270,5.2,0,0,16.0,77777,9,999999999,100,0.0550,0,88,0.200,0.0,1.0 +2000,10,19,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,0.0,38,88900,589,1379,303,447,724,137,45600,68400,16300,2590,280,9.3,0,0,16.0,77777,9,999999999,100,0.0550,0,88,0.200,0.0,1.0 +2000,10,19,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,0.0,37,88900,427,1379,305,297,681,85,30400,60200,11700,1560,280,5.7,0,0,16.0,77777,9,999999999,100,0.0550,0,88,0.200,0.0,1.0 +2000,10,19,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,0.0,40,88300,225,1379,300,165,529,78,16400,35600,10600,1490,290,4.1,0,0,16.0,77777,9,999999999,100,0.0550,0,88,0.200,0.0,1.0 +2000,10,19,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,0.0,46,88900,29,724,291,1,95,0,0,0,0,0,250,2.1,0,0,16.0,77777,9,999999999,100,0.0550,0,88,0.200,0.0,1.0 +2000,10,19,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,0.0,44,88900,0,0,294,0,0,0,0,0,0,0,230,3.1,0,0,16.0,77777,9,999999999,100,0.0550,0,88,0.200,0.0,1.0 +2000,10,19,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,0.6,58,88800,0,0,286,0,0,0,0,0,0,0,0,0.0,1,1,16.0,77777,9,999999999,100,0.0550,0,88,0.200,0.0,1.0 +2000,10,19,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,0.0,60,88800,0,0,281,0,0,0,0,0,0,0,170,2.1,3,1,16.0,77777,9,999999999,89,0.0550,0,88,0.200,0.0,1.0 +2000,10,19,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,0.0,70,88700,0,0,272,0,0,0,0,0,0,0,0,0.0,1,1,16.0,77777,9,999999999,89,0.0550,0,88,0.200,0.0,1.0 +2000,10,19,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,0.0,73,88400,0,0,265,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,89,0.0550,0,88,0.200,0.0,1.0 +2000,10,19,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.9,0.0,76,88600,0,0,268,0,0,0,0,0,0,0,0,0.0,1,1,16.0,77777,9,999999999,89,0.0550,0,88,0.200,0.0,1.0 +2000,10,20,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.3,-0.6,75,88500,0,0,269,0,0,0,0,0,0,0,0,0.0,4,2,16.0,77777,9,999999999,100,0.0550,0,88,0.200,0.0,1.0 +2000,10,20,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.3,-0.6,75,88500,0,0,260,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,100,0.0550,0,88,0.200,0.0,1.0 +2000,10,20,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.8,-1.1,75,88500,0,0,258,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,100,0.0550,0,88,0.200,0.0,1.0 +2000,10,20,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.2,-0.6,81,88400,0,0,256,0,0,0,0,0,0,0,150,1.5,0,0,16.0,77777,9,999999999,100,0.0550,0,88,0.200,0.0,1.0 +2000,10,20,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.6,-1.1,87,88100,0,0,254,0,0,0,0,0,0,0,260,1.5,2,1,16.0,77777,9,999999999,100,0.0550,0,88,0.200,0.0,1.0 +2000,10,20,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.7,-1.1,81,88300,0,0,259,0,0,0,0,0,0,0,0,0.0,2,1,16.0,77777,9,999999999,100,0.0550,0,88,0.200,0.0,1.0 +2000,10,20,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.2,-1.1,78,88200,1,126,260,0,0,0,0,0,0,0,0,0.0,3,1,16.0,77777,9,999999999,100,0.0550,0,88,0.200,0.0,1.0 +2000,10,20,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.8,0.0,82,88200,128,1380,267,33,53,28,3600,2800,3400,580,0,0.0,5,2,16.0,77777,9,999999999,100,0.0550,0,88,0.200,0.0,1.0 +2000,10,20,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,0.0,70,88300,341,1380,279,126,91,103,13600,7700,11700,2260,0,0.0,6,3,16.0,77777,9,999999999,100,0.0550,0,88,0.200,0.0,1.0 +2000,10,20,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,0.0,65,88300,521,1380,283,277,304,161,29200,29600,18000,3400,360,1.5,6,3,16.0,77777,9,999999999,100,0.0550,0,88,0.200,0.0,1.0 +2000,10,20,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,0.0,56,87800,653,1380,292,396,476,170,41500,47200,19100,3530,360,1.5,7,3,16.0,77777,9,999999999,100,0.0550,0,88,0.200,0.0,1.0 +2000,10,20,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,0.0,44,88200,728,1380,306,316,113,256,34700,11400,28600,7600,340,1.5,5,3,16.0,77777,9,999999999,110,0.0550,0,88,0.200,0.0,1.0 +2000,10,20,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,0.0,41,88100,741,1380,308,445,399,230,47600,41800,25100,5420,320,1.5,5,2,16.0,77777,9,999999999,120,0.0550,0,88,0.200,0.0,1.0 +2000,10,20,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,0.0,36,88000,691,1380,323,507,785,113,53400,77500,14400,2420,60,1.5,8,4,16.0,77777,9,999999999,129,0.0550,0,88,0.200,0.0,1.0 +2000,10,20,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,0.0,26,88000,582,1380,347,412,649,138,42000,61100,16200,2580,190,5.7,9,4,16.0,77777,9,999999999,139,0.0550,0,88,0.200,0.0,1.0 +2000,10,20,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,-1.7,24,87900,420,1380,339,185,142,141,19900,12900,15900,3160,180,6.7,8,3,16.0,77777,9,999999999,139,0.0550,0,88,0.200,0.0,1.0 +2000,10,20,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,-1.1,26,87000,218,1380,337,155,294,108,15500,19000,12500,2410,180,12.4,7,3,16.0,77777,9,999999999,150,0.0550,0,88,0.200,0.0,1.0 +2000,10,20,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,-1.1,27,87700,26,678,331,0,0,0,0,0,0,0,180,8.8,6,2,16.0,77777,9,999999999,160,0.0550,0,88,0.200,0.0,1.0 +2000,10,20,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,-1.1,28,87700,0,0,326,0,0,0,0,0,0,0,140,5.2,5,2,16.0,77777,9,999999999,170,0.0550,0,88,0.200,0.0,1.0 +2000,10,20,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,-1.1,30,87600,0,0,325,0,0,0,0,0,0,0,130,5.2,7,3,16.0,77777,9,999999999,170,0.0550,0,88,0.200,0.0,1.0 +2000,10,20,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,-1.1,29,87500,0,0,330,0,0,0,0,0,0,0,160,5.2,9,4,16.0,77777,9,999999999,179,0.0550,0,88,0.200,0.0,1.0 +2000,10,20,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,-1.1,28,87500,0,0,332,0,0,0,0,0,0,0,160,4.6,9,4,16.0,77777,9,999999999,189,0.0550,0,88,0.200,0.0,1.0 +2000,10,20,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,-1.1,27,86700,0,0,340,0,0,0,0,0,0,0,190,7.2,9,6,16.0,77777,9,999999999,200,0.0550,0,88,0.200,0.0,1.0 +2000,10,20,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,0.0,41,87300,0,0,328,0,0,0,0,0,0,0,250,3.1,9,8,16.0,3353,9,999999999,189,0.0550,0,88,0.200,0.0,1.0 +2000,10,21,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,1.7,49,87200,0,0,343,0,0,0,0,0,0,0,300,3.6,10,10,16.0,3353,9,999999999,179,0.0550,0,88,0.200,0.0,1.0 +2000,10,21,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,2.8,51,87200,0,0,338,0,0,0,0,0,0,0,300,6.2,9,9,16.0,3048,9,999999999,179,0.0550,0,88,0.200,0.0,1.0 +2000,10,21,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,3.9,59,87200,0,0,344,0,0,0,0,0,0,0,270,8.8,10,10,16.0,2438,9,999999999,170,0.0550,0,88,0.200,0.0,1.0 +2000,10,21,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,3.3,63,87300,0,0,335,0,0,0,0,0,0,0,270,7.7,10,10,16.0,1829,9,999999999,160,0.0550,0,88,0.200,0.0,1.0 +2000,10,21,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,2.8,66,87000,0,0,329,0,0,0,0,0,0,0,260,3.6,10,10,16.0,1829,9,999999999,150,0.0550,0,88,0.200,0.0,1.0 +2000,10,21,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,2.2,63,87400,0,0,328,0,0,0,0,0,0,0,260,4.1,10,10,16.0,1676,9,999999999,150,0.0550,0,88,0.200,0.0,1.0 +2000,10,21,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,2.8,71,87400,0,81,324,0,0,0,0,0,0,0,250,5.7,10,10,16.0,1524,9,999999999,139,0.0550,0,88,0.200,0.0,1.0 +2000,10,21,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,1.7,65,87500,123,1381,323,13,0,13,1500,0,1500,500,260,6.2,10,10,16.0,1463,9,999999999,129,0.0550,0,88,0.200,0.0,1.0 +2000,10,21,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,0.0,60,87600,335,1381,318,42,0,42,5000,0,5000,1730,260,6.7,10,10,16.0,1402,9,999999999,129,0.0550,0,88,0.200,0.0,1.0 +2000,10,21,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,-0.6,57,87700,515,1381,317,85,0,85,10000,0,10000,3610,260,6.2,10,10,16.0,1829,9,999999999,120,0.0550,0,88,0.200,0.0,1.0 +2000,10,21,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,-1.1,55,87500,647,1381,317,99,0,99,11800,0,11800,4480,260,6.2,10,10,16.0,1524,9,999999999,110,0.0550,0,88,0.200,0.0,1.0 +2000,10,21,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,-1.1,51,87900,722,1381,322,117,0,117,14000,0,14000,5390,270,4.6,10,10,16.0,1524,9,999999999,110,0.0550,0,88,0.200,0.0,1.0 +2000,10,21,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,-2.2,48,88000,735,1381,318,87,0,87,10600,0,10600,4200,270,6.7,10,10,16.0,1829,9,999999999,110,0.0550,0,88,0.200,0.0,1.0 +2000,10,21,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,-2.2,46,88100,684,1381,321,79,0,79,9600,0,9600,3760,280,6.2,10,10,16.0,1524,9,999999999,120,0.0550,0,88,0.200,0.0,1.0 +2000,10,21,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,-2.8,46,88200,575,1381,309,116,0,116,13500,0,13500,4850,270,10.3,10,9,16.0,77777,9,999999999,120,0.0550,0,88,0.200,0.0,1.0 +2000,10,21,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,-3.9,42,88300,413,1381,316,204,217,139,21300,19500,15400,2900,280,7.2,10,10,16.0,2134,9,999999999,120,0.0550,0,88,0.200,0.0,1.0 +2000,10,21,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,-4.4,42,88000,211,1381,304,143,253,104,14300,16000,11800,2320,270,8.8,10,9,16.0,3048,9,999999999,120,0.0550,0,88,0.200,0.0,1.0 +2000,10,21,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,-3.3,49,88500,23,633,309,0,0,0,0,0,0,0,280,8.2,10,10,16.0,3048,9,999999999,120,0.0550,0,88,0.200,0.0,1.0 +2000,10,21,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,-3.9,49,88700,0,0,287,0,0,0,0,0,0,0,270,5.7,8,7,16.0,77777,9,999999999,120,0.0550,0,88,0.200,0.0,1.0 +2000,10,21,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,-3.9,53,88700,0,0,279,0,0,0,0,0,0,0,270,5.7,7,6,16.0,77777,9,999999999,120,0.0550,0,88,0.200,0.0,1.0 +2000,10,21,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,-4.4,51,88800,0,0,272,0,0,0,0,0,0,0,260,5.2,3,3,16.0,77777,9,999999999,120,0.0550,0,88,0.200,0.0,1.0 +2000,10,21,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,-5.0,48,88800,0,0,265,0,0,0,0,0,0,0,270,6.7,1,1,16.0,77777,9,999999999,120,0.0550,0,88,0.200,0.0,1.0 +2000,10,21,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.9,-5.0,50,88600,0,0,269,0,0,0,0,0,0,0,280,4.1,3,3,16.0,77777,9,999999999,120,0.0550,0,88,0.200,0.0,1.0 +2000,10,21,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.2,-4.4,59,88900,0,0,265,0,0,0,0,0,0,0,290,3.1,4,4,16.0,77777,9,999999999,120,0.0550,0,88,0.200,0.0,1.0 +2000,10,22,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.8,-4.4,57,89100,0,0,260,0,0,0,0,0,0,0,250,5.2,1,1,16.0,77777,9,999999999,110,0.0540,0,88,0.200,0.0,1.0 +2000,10,22,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.8,-4.4,57,89100,0,0,260,0,0,0,0,0,0,0,240,3.6,1,1,16.0,77777,9,999999999,110,0.0540,0,88,0.200,0.0,1.0 +2000,10,22,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.2,-5.0,56,89100,0,0,252,0,0,0,0,0,0,0,250,4.1,0,0,16.0,77777,9,999999999,100,0.0540,0,88,0.200,0.0,1.0 +2000,10,22,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-0.6,-4.4,73,89100,0,0,242,0,0,0,0,0,0,0,230,1.5,0,0,16.0,77777,9,999999999,100,0.0540,0,88,0.200,0.0,1.0 +2000,10,22,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.0,-5.0,66,89000,0,0,244,0,0,0,0,0,0,0,210,2.1,0,0,16.0,77777,9,999999999,89,0.0540,0,88,0.200,0.0,1.0 +2000,10,22,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.1,-5.0,72,89300,0,0,240,0,0,0,0,0,0,0,220,1.5,0,0,16.0,77777,9,999999999,89,0.0540,0,88,0.200,0.0,1.0 +2000,10,22,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.6,-5.0,63,89400,0,58,246,0,0,0,0,0,0,0,220,2.6,0,0,16.0,77777,9,999999999,80,0.0540,0,88,0.200,0.0,1.0 +2000,10,22,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.7,-4.4,80,89400,117,1381,238,45,361,14,4700,22900,2800,350,340,1.5,0,0,16.0,77777,9,999999999,69,0.0540,0,88,0.200,0.0,1.0 +2000,10,22,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.7,-3.3,67,89500,329,1381,252,195,658,38,20400,55700,7100,800,0,0.0,0,0,16.0,77777,9,999999999,69,0.0540,0,88,0.200,0.0,1.0 +2000,10,22,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,-4.4,48,89600,509,1381,263,336,709,73,34400,65900,10000,1390,0,0.0,0,0,16.0,77777,9,999999999,60,0.0540,0,88,0.200,0.0,1.0 +2000,10,22,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,-7.2,34,89200,640,1381,267,439,817,59,46100,79000,9400,1400,190,4.1,0,0,16.0,77777,9,999999999,60,0.0540,0,88,0.200,0.0,1.0 +2000,10,22,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,-7.8,29,89700,715,1381,272,526,853,83,55600,84200,11800,1850,320,3.6,0,0,16.0,77777,9,999999999,60,0.0540,0,88,0.200,0.0,1.0 +2000,10,22,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,-7.2,30,89600,728,1381,273,483,713,106,51300,71200,13600,2360,110,2.6,0,0,16.0,77777,9,999999999,60,0.0540,0,88,0.200,0.0,1.0 +2000,10,22,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,-6.1,33,89500,677,1381,274,443,589,152,47100,58900,18100,3150,60,3.1,0,0,16.0,77777,9,999999999,60,0.0540,0,88,0.200,0.0,1.0 +2000,10,22,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,-6.1,33,89500,568,1381,274,415,695,128,42400,65300,15400,2410,0,0.0,0,0,16.0,77777,9,999999999,69,0.0540,0,88,0.200,0.0,1.0 +2000,10,22,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,-4.4,37,89500,406,1381,278,269,552,106,27800,48400,13600,2000,90,3.1,0,0,16.0,77777,9,999999999,69,0.0540,0,88,0.200,0.0,1.0 +2000,10,22,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,-3.9,42,89500,204,1381,274,131,310,85,13300,19300,10400,1790,100,4.1,0,0,16.0,77777,9,999999999,69,0.0540,0,88,0.200,0.0,1.0 +2000,10,22,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,-4.4,45,89500,20,610,267,0,0,0,0,0,0,0,200,2.6,0,0,16.0,77777,9,999999999,69,0.0540,0,88,0.200,0.0,1.0 +2000,10,22,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.9,-4.4,52,89400,0,0,259,0,0,0,0,0,0,0,240,2.6,0,0,16.0,77777,9,999999999,80,0.0540,0,88,0.200,0.0,1.0 +2000,10,22,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,-6.1,44,89500,0,0,259,0,0,0,0,0,0,0,230,2.6,0,0,16.0,77777,9,999999999,80,0.0540,0,88,0.200,0.0,1.0 +2000,10,22,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.2,-6.1,51,89400,0,0,251,0,0,0,0,0,0,0,260,2.1,0,0,16.0,77777,9,999999999,80,0.0540,0,88,0.200,0.0,1.0 +2000,10,22,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.6,-6.1,57,89300,0,0,245,0,0,0,0,0,0,0,320,2.1,0,0,16.0,77777,9,999999999,80,0.0540,0,88,0.200,0.0,1.0 +2000,10,22,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.1,-6.1,66,89000,0,0,239,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,80,0.0540,0,88,0.200,0.0,1.0 +2000,10,22,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.1,-6.1,66,89100,0,0,239,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,80,0.0540,0,88,0.200,0.0,1.0 +2000,10,23,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.7,-6.1,69,89100,0,0,237,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,80,0.0540,0,88,0.200,0.0,1.0 +2000,10,23,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.2,-6.1,72,89100,0,0,235,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,80,0.0540,0,88,0.200,0.0,1.0 +2000,10,23,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.8,-5.6,79,89100,0,0,234,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,80,0.0540,0,88,0.200,0.0,1.0 +2000,10,23,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.8,-5.6,79,89000,0,0,234,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,80,0.0540,0,88,0.200,0.0,1.0 +2000,10,23,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.8,-6.7,72,88900,0,0,233,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,80,0.0540,0,88,0.200,0.0,1.0 +2000,10,23,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.8,-6.7,72,89100,0,0,233,0,0,0,0,0,0,0,330,2.1,0,0,16.0,77777,9,999999999,80,0.0540,0,88,0.200,0.0,1.0 +2000,10,23,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.9,-6.1,83,89100,0,12,229,0,0,0,0,0,0,0,290,2.1,0,0,16.0,77777,9,999999999,80,0.0540,0,88,0.200,0.0,1.0 +2000,10,23,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.7,-4.4,80,89100,111,1382,238,43,343,15,4400,20000,2800,310,330,1.5,0,0,16.0,77777,9,999999999,80,0.0540,0,88,0.200,0.0,1.0 +2000,10,23,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.0,-4.4,69,89200,323,1382,244,190,645,38,19800,54200,7000,790,0,0.0,0,0,16.0,77777,9,999999999,80,0.0540,0,88,0.200,0.0,1.0 +2000,10,23,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.8,-4.4,57,89300,503,1382,255,350,817,51,36700,76200,8900,1160,0,0.0,0,0,16.0,77777,9,999999999,80,0.0540,0,88,0.200,0.0,1.0 +2000,10,23,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,-4.4,45,88800,634,1382,267,455,840,69,48300,81900,10600,1520,20,1.5,0,0,16.0,77777,9,999999999,80,0.0540,0,88,0.200,0.0,1.0 +2000,10,23,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,-5.0,38,89300,709,1382,273,503,728,129,52600,71800,15600,2750,50,2.1,0,0,16.0,77777,9,999999999,89,0.0540,0,88,0.200,0.0,1.0 +2000,10,23,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,-4.4,36,89300,721,1382,280,477,707,107,50600,70500,13700,2370,70,3.1,0,0,16.0,77777,9,999999999,89,0.0540,0,88,0.200,0.0,1.0 +2000,10,23,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,-4.4,32,89300,671,1382,287,443,620,141,45700,60200,16400,2850,90,3.6,0,0,16.0,77777,9,999999999,100,0.0540,0,88,0.200,0.0,1.0 +2000,10,23,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,-4.4,31,89200,561,1382,289,394,734,96,41200,69800,12700,1900,80,4.1,0,0,16.0,77777,9,999999999,100,0.0540,0,88,0.200,0.0,1.0 +2000,10,23,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,-5.0,29,89200,399,1382,288,289,767,67,29000,66900,9700,1160,90,4.1,0,0,16.0,77777,9,999999999,110,0.0540,0,88,0.200,0.0,1.0 +2000,10,23,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,-1.7,43,88500,197,1382,285,163,606,76,15800,37100,10400,1080,90,1.5,0,0,16.0,77777,9,999999999,110,0.0540,0,88,0.200,0.0,1.0 +2000,10,23,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,-3.3,46,89100,18,564,272,0,0,0,0,0,0,0,250,4.1,0,0,16.0,77777,9,999999999,120,0.0540,0,88,0.200,0.0,1.0 +2000,10,23,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,-2.8,58,89100,0,0,262,0,0,0,0,0,0,0,270,4.6,0,0,16.0,77777,9,999999999,120,0.0540,0,88,0.200,0.0,1.0 +2000,10,23,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.3,-3.9,57,89000,0,0,257,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,129,0.0540,0,88,0.200,0.0,1.0 +2000,10,23,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.9,-3.3,57,88900,0,0,260,0,0,0,0,0,0,0,240,2.1,0,0,16.0,77777,9,999999999,129,0.0540,0,88,0.200,0.0,1.0 +2000,10,23,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.3,-3.9,57,88900,0,0,257,0,0,0,0,0,0,0,230,2.1,0,0,16.0,77777,9,999999999,139,0.0540,0,88,0.200,0.0,1.0 +2000,10,23,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.1,-3.9,67,88500,0,0,249,0,0,0,0,0,0,0,220,2.1,0,0,16.0,77777,9,999999999,139,0.0540,0,88,0.200,0.0,1.0 +2000,10,23,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.1,-3.9,67,88800,0,0,249,0,0,0,0,0,0,0,270,2.1,0,0,16.0,77777,9,999999999,139,0.0540,0,88,0.200,0.0,1.0 +2000,10,24,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.6,-3.9,69,88700,0,0,247,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,139,0.0540,0,88,0.200,0.0,1.0 +2000,10,24,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.0,-3.9,72,88600,0,0,245,0,0,0,0,0,0,0,150,1.5,0,0,16.0,77777,9,999999999,129,0.0540,0,88,0.200,0.0,1.0 +2000,10,24,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.1,-3.9,79,88500,0,0,241,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,129,0.0540,0,88,0.200,0.0,1.0 +2000,10,24,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.1,-3.9,79,88500,0,0,241,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,129,0.0540,0,88,0.200,0.0,1.0 +2000,10,24,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.3,-3.9,95,88400,0,0,233,0,0,0,0,0,0,0,280,2.6,0,0,16.0,77777,9,999999999,129,0.0540,0,88,0.200,0.0,1.0 +2000,10,24,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.2,-4.4,83,88600,0,0,237,0,0,0,0,0,0,0,260,2.6,0,0,16.0,77777,9,999999999,129,0.0540,0,88,0.200,0.0,1.0 +2000,10,24,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.1,-3.9,79,88600,0,0,241,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,120,0.0540,0,88,0.200,0.0,1.0 +2000,10,24,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.0,-2.8,79,88700,106,1371,251,19,49,15,2100,2100,1900,250,0,0.0,3,1,16.0,77777,9,999999999,120,0.0540,0,88,0.200,0.0,1.0 +2000,10,24,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.1,-2.2,77,88700,317,1383,250,188,484,77,19600,38600,10700,1410,0,0.0,1,0,16.0,77777,9,999999999,120,0.0540,0,88,0.200,0.0,1.0 +2000,10,24,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.8,-1.7,71,88700,496,1383,257,339,788,55,35700,73800,9200,1170,40,2.1,0,0,16.0,77777,9,999999999,120,0.0540,0,88,0.200,0.0,1.0 +2000,10,24,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,-1.1,64,88300,628,1383,271,428,810,58,44900,78100,9300,1370,30,1.5,1,1,16.0,77777,9,999999999,120,0.0540,0,88,0.200,0.0,1.0 +2000,10,24,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,-1.1,51,88700,702,1383,284,520,871,77,54300,84900,11100,1590,20,1.5,2,1,16.0,77777,9,999999999,120,0.0540,0,88,0.200,0.0,1.0 +2000,10,24,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,-0.6,47,88700,714,1383,299,477,731,98,49500,71600,12300,2040,40,2.6,4,3,16.0,77777,9,999999999,120,0.0540,0,88,0.200,0.0,1.0 +2000,10,24,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,-0.6,41,88700,664,1383,301,444,676,118,46300,66100,14500,2450,0,0.0,2,1,16.0,77777,9,999999999,129,0.0540,0,88,0.200,0.0,1.0 +2000,10,24,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,-1.1,38,88700,554,1383,307,381,690,103,39400,65200,13200,2000,80,3.1,3,2,16.0,77777,9,999999999,129,0.0540,0,88,0.200,0.0,1.0 +2000,10,24,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,-1.1,37,88700,392,1383,309,292,735,82,29700,63100,11700,1470,40,1.5,4,2,16.0,77777,9,999999999,139,0.0540,0,88,0.200,0.0,1.0 +2000,10,24,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,0.0,50,88000,191,1383,302,25,0,25,2900,0,2900,960,310,2.1,7,4,16.0,77777,9,999999999,139,0.0540,0,88,0.200,0.0,1.0 +2000,10,24,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,-0.6,49,88600,15,519,307,0,0,0,0,0,0,0,230,2.1,9,7,16.0,77777,9,999999999,139,0.0540,0,88,0.200,0.0,1.0 +2000,10,24,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,-0.6,55,88600,0,0,292,0,0,0,0,0,0,0,0,0.0,6,4,16.0,77777,9,999999999,150,0.0540,0,88,0.200,0.0,1.0 +2000,10,24,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,-0.6,62,88500,0,0,287,0,0,0,0,0,0,0,230,1.5,5,5,16.0,77777,9,999999999,150,0.0540,0,88,0.200,0.0,1.0 +2000,10,24,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,0.0,67,88500,0,0,291,0,0,0,0,0,0,0,80,1.5,8,7,16.0,77777,9,999999999,160,0.0540,0,88,0.200,0.0,1.0 +2000,10,24,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,0.0,67,88500,0,0,291,0,0,0,0,0,0,0,0,0.0,8,7,16.0,3658,9,999999999,160,0.0540,0,88,0.200,0.0,1.0 +2000,10,24,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,0.0,70,88100,0,0,281,0,0,0,0,0,0,0,280,1.5,7,4,16.0,3658,9,999999999,170,0.0540,0,88,0.200,0.0,1.0 +2000,10,24,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,0.0,67,88400,0,0,285,0,0,0,0,0,0,0,0,0.0,9,5,16.0,3658,9,999999999,160,0.0540,0,88,0.200,0.0,1.0 +2000,10,25,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,0.6,70,88400,0,0,312,0,0,0,0,0,0,0,0,0.0,10,10,16.0,3353,9,999999999,160,0.0530,0,88,0.200,0.0,1.0 +2000,10,25,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,0.6,68,88400,0,0,314,0,0,0,0,0,0,0,270,1.5,10,10,16.0,2896,9,999999999,150,0.0530,0,88,0.200,0.0,1.0 +2000,10,25,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,1.1,70,88400,0,0,314,0,0,0,0,0,0,0,150,1.5,10,10,16.0,2743,9,999999999,150,0.0530,0,88,0.200,0.0,1.0 +2000,10,25,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,1.1,76,88400,0,0,309,0,0,0,0,0,0,0,170,2.1,10,10,16.0,3048,9,999999999,139,0.0530,0,88,0.200,0.0,1.0 +2000,10,25,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,0.6,68,88100,0,0,314,0,0,0,0,0,0,0,190,1.5,10,10,16.0,3353,9,999999999,139,0.0530,0,88,0.200,0.0,1.0 +2000,10,25,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,1.7,83,88500,0,0,307,0,0,0,0,0,0,0,320,1.5,10,10,16.0,3353,9,999999999,139,0.0530,0,88,0.200,0.0,1.0 +2000,10,25,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,1.7,76,88600,0,0,313,0,0,0,0,0,0,0,0,0.0,10,10,16.0,2743,9,999999999,129,0.0530,0,88,0.200,0.0,1.0 +2000,10,25,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,1.7,65,88600,101,1349,314,5,0,5,600,0,600,200,250,3.1,9,9,16.0,3048,9,999999999,129,0.0530,0,88,0.200,0.0,1.0 +2000,10,25,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,2.8,76,88700,311,1384,319,77,11,75,8700,500,8600,2660,80,2.1,10,10,16.0,1676,9,999999999,120,0.0530,0,88,0.200,0.0,1.0 +2000,10,25,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,2.8,66,88700,490,1384,329,234,228,153,24700,21800,16900,3210,230,1.5,10,10,16.0,1829,9,999999999,120,0.0530,0,88,0.200,0.0,1.0 +2000,10,25,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,1.1,47,88200,621,1384,326,367,452,163,38300,44400,18300,3330,340,3.6,8,8,16.0,77777,9,999999999,110,0.0530,0,88,0.200,0.0,1.0 +2000,10,25,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,1.1,47,88800,695,1384,333,368,262,236,39000,27100,25300,5510,330,2.6,10,9,16.0,3048,9,999999999,120,0.0530,0,88,0.200,0.0,1.0 +2000,10,25,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,1.7,52,88700,708,1384,338,93,0,93,11300,0,11300,4390,10,3.6,10,10,16.0,2896,9,999999999,120,0.0530,0,88,0.200,0.0,1.0 +2000,10,25,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,0.0,44,88700,657,1384,330,325,215,222,35200,21800,24800,5440,300,2.1,9,9,16.0,77777,9,999999999,129,0.0530,0,88,0.200,0.0,1.0 +2000,10,25,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,0.0,40,88700,547,1384,318,338,419,172,35700,41200,19400,3690,340,3.1,7,5,16.0,77777,9,999999999,129,0.0530,0,88,0.200,0.0,1.0 +2000,10,25,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,0.6,45,88700,385,1384,317,64,0,64,7400,0,7400,2570,20,1.5,8,6,16.0,77777,9,999999999,139,0.0530,0,88,0.200,0.0,1.0 +2000,10,25,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,1.1,48,88000,184,1384,340,135,252,102,13400,14500,11500,2350,0,0.0,10,10,16.0,3353,9,999999999,139,0.0530,0,88,0.200,0.0,1.0 +2000,10,25,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,1.7,56,88600,13,496,333,0,0,0,0,0,0,0,10,2.6,10,10,16.0,3353,9,999999999,150,0.0530,0,88,0.200,0.0,1.0 +2000,10,25,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,1.1,60,88500,0,0,315,0,0,0,0,0,0,0,320,2.1,9,9,16.0,3353,9,999999999,150,0.0530,0,88,0.200,0.0,1.0 +2000,10,25,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,1.1,67,88400,0,0,302,0,0,0,0,0,0,0,270,3.1,9,8,16.0,3353,9,999999999,160,0.0530,0,88,0.200,0.0,1.0 +2000,10,25,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,0.6,73,88400,0,0,281,0,0,0,0,0,0,0,270,3.6,5,4,16.0,77777,9,999999999,160,0.0530,0,88,0.200,0.0,1.0 +2000,10,25,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,0.6,73,88400,0,0,276,0,0,0,0,0,0,0,270,4.1,3,2,16.0,77777,9,999999999,170,0.0530,0,88,0.200,0.0,1.0 +2000,10,25,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.8,0.0,82,88100,0,0,272,0,0,0,0,0,0,0,0,0.0,4,4,16.0,77777,9,999999999,170,0.0530,0,88,0.200,0.0,1.0 +2000,10,25,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.9,0.0,76,88300,0,0,268,0,0,0,0,0,0,0,230,3.6,1,1,16.0,77777,9,999999999,170,0.0530,0,88,0.200,0.0,1.0 +2000,10,26,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.2,-0.6,81,88300,0,0,256,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,170,0.0530,0,88,0.200,0.0,1.0 +2000,10,26,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.8,0.0,82,88300,0,0,259,0,0,0,0,0,0,0,90,1.5,0,0,16.0,77777,9,999999999,170,0.0530,0,88,0.200,0.0,1.0 +2000,10,26,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.7,-0.6,84,88300,0,0,254,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,170,0.0530,0,88,0.200,0.0,1.0 +2000,10,26,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.1,-1.1,84,88300,0,0,251,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,160,0.0530,0,88,0.200,0.0,1.0 +2000,10,26,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.6,-2.2,80,88100,0,0,249,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,160,0.0530,0,88,0.200,0.0,1.0 +2000,10,26,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.6,-2.2,80,88300,0,0,249,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,160,0.0530,0,88,0.200,0.0,1.0 +2000,10,26,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.7,-2.8,91,88200,0,0,240,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,160,0.0530,0,88,0.200,0.0,1.0 +2000,10,26,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.6,-1.7,83,88400,95,1304,249,32,294,12,3700,18300,2300,320,290,2.1,0,0,16.0,77777,9,999999999,160,0.0530,0,88,0.200,0.0,1.0 +2000,10,26,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.1,-0.6,88,88400,305,1385,252,174,491,65,17700,38700,9100,1140,20,2.1,0,0,12.8,77777,9,999999999,160,0.0530,0,88,0.200,0.0,1.0 +2000,10,26,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.2,0.0,85,88400,484,1385,270,268,370,138,28400,35200,16100,2830,90,1.5,4,4,16.0,77777,9,999999999,150,0.0530,0,88,0.200,0.0,1.0 +2000,10,26,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,-1.1,61,88100,615,1385,280,372,534,134,39600,52500,16200,2670,0,0.0,3,3,16.0,77777,9,999999999,150,0.0530,0,88,0.200,0.0,1.0 +2000,10,26,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,-0.6,57,88400,689,1385,275,491,787,98,50700,76600,12400,1980,0,0.0,1,0,16.0,77777,9,999999999,150,0.0530,0,88,0.200,0.0,1.0 +2000,10,26,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,-0.6,49,88400,701,1385,284,478,774,84,50200,76100,11500,1840,320,2.1,1,0,16.0,77777,9,999999999,139,0.0530,0,88,0.200,0.0,1.0 +2000,10,26,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,0.6,48,88400,650,1385,298,445,713,109,46600,69700,13800,2260,350,2.1,1,1,16.0,77777,9,999999999,129,0.0530,0,88,0.200,0.0,1.0 +2000,10,26,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,1.1,48,88400,540,1385,301,376,749,82,39400,71100,11600,1640,20,1.5,2,1,16.0,77777,9,999999999,120,0.0530,0,88,0.200,0.0,1.0 +2000,10,26,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,1.1,48,88400,379,1385,310,261,638,85,26400,53900,11600,1500,50,2.1,4,4,16.0,77777,9,999999999,120,0.0530,0,88,0.200,0.0,1.0 +2000,10,26,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,1.1,52,87700,178,1385,296,0,0,0,0,0,0,0,300,1.5,1,1,16.0,77777,9,999999999,110,0.0530,0,88,0.200,0.0,1.0 +2000,10,26,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,0.6,58,88300,11,450,286,0,0,0,0,0,0,0,280,3.1,1,1,16.0,77777,9,999999999,100,0.0530,0,88,0.200,0.0,1.0 +2000,10,26,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,1.1,65,88300,0,0,289,0,0,0,0,0,0,0,250,3.6,4,3,16.0,77777,9,999999999,89,0.0530,0,88,0.200,0.0,1.0 +2000,10,26,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,0.6,65,88200,0,0,291,0,0,0,0,0,0,0,260,3.6,7,5,16.0,77777,9,999999999,80,0.0530,0,88,0.200,0.0,1.0 +2000,10,26,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,0.6,70,88200,0,0,282,0,0,0,0,0,0,0,250,3.1,6,3,16.0,77777,9,999999999,80,0.0530,0,88,0.200,0.0,1.0 +2000,10,26,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,0.6,73,88200,0,0,276,0,0,0,0,0,0,0,240,3.1,2,2,16.0,77777,9,999999999,69,0.0530,0,88,0.200,0.0,1.0 +2000,10,26,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.9,0.6,79,87800,0,0,304,0,0,0,0,0,0,0,320,1.5,10,10,16.0,3353,9,999999999,60,0.0530,0,88,0.200,0.0,1.0 +2000,10,26,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.9,0.6,79,88100,0,0,275,0,0,0,0,0,0,0,0,0.0,5,3,16.0,77777,9,999999999,69,0.0530,0,88,0.200,0.0,1.0 +2000,10,27,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.3,0.6,82,88000,0,0,277,0,0,0,0,0,0,0,250,2.1,7,5,16.0,77777,9,999999999,69,0.0530,0,88,0.200,0.0,1.0 +2000,10,27,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.3,0.6,82,88000,0,0,275,0,0,0,0,0,0,0,0,0.0,4,4,16.0,77777,9,999999999,80,0.0530,0,88,0.200,0.0,1.0 +2000,10,27,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.7,0.0,88,87900,0,0,260,0,0,0,0,0,0,0,360,1.5,1,1,16.0,77777,9,999999999,80,0.0530,0,88,0.200,0.0,1.0 +2000,10,27,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.1,-0.6,88,87900,0,0,252,0,0,0,0,0,0,0,0,0.0,0,0,14.4,77777,9,999999999,89,0.0530,0,88,0.200,0.0,1.0 +2000,10,27,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.7,0.0,88,87700,0,0,255,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,89,0.0530,0,88,0.200,0.0,1.0 +2000,10,27,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.0,-1.1,91,87900,0,0,256,0,0,0,0,0,0,0,0,0.0,4,2,16.0,77777,9,999999999,100,0.0530,0,88,0.200,0.0,1.0 +2000,10,27,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.0,-1.1,91,87900,0,0,258,0,0,0,0,0,0,0,130,1.5,7,3,16.0,77777,9,999999999,100,0.0530,0,88,0.200,0.0,1.0 +2000,10,27,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.7,0.0,88,88000,90,1281,266,27,230,12,3100,13200,2100,270,0,0.0,7,3,14.4,77777,9,999999999,110,0.0530,0,88,0.200,0.0,1.0 +2000,10,27,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.9,1.7,86,88100,300,1385,276,160,474,57,16400,37300,8300,1030,30,1.5,6,3,12.8,77777,9,999999999,110,0.0530,0,88,0.200,0.0,1.0 +2000,10,27,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,1.7,79,88100,478,1385,274,312,695,71,32700,64200,10500,1390,0,0.0,2,1,16.0,77777,9,999999999,120,0.0530,0,88,0.200,0.0,1.0 +2000,10,27,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,2.2,70,87600,608,1385,278,404,751,74,42400,72500,10500,1550,310,2.1,1,0,16.0,77777,9,999999999,120,0.0530,0,88,0.200,0.0,1.0 +2000,10,27,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,2.8,61,88100,682,1385,295,450,620,143,46400,60300,16600,2910,350,1.5,1,1,16.0,77777,9,999999999,120,0.0530,0,88,0.200,0.0,1.0 +2000,10,27,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,3.3,59,88100,694,1385,312,403,478,163,42800,47900,18700,3430,310,1.5,5,5,16.0,77777,9,999999999,110,0.0530,0,88,0.200,0.0,1.0 +2000,10,27,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,3.3,56,88000,644,1385,326,386,406,196,41000,41500,21700,4350,0,0.0,8,8,16.0,2743,9,999999999,110,0.0530,0,88,0.200,0.0,1.0 +2000,10,27,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,3.9,55,88100,534,1385,349,385,547,173,39100,51700,19100,3500,320,2.6,10,10,16.0,3048,9,999999999,100,0.0530,0,88,0.200,0.0,1.0 +2000,10,27,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,3.9,55,88100,372,1385,349,75,0,75,8600,0,8600,2870,300,1.5,10,10,16.0,3048,9,999999999,100,0.0530,0,88,0.200,0.0,1.0 +2000,10,27,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,3.9,57,87400,171,1385,346,0,0,0,0,0,0,0,0,0.0,10,10,16.0,2438,9,999999999,89,0.0530,0,88,0.200,0.0,1.0 +2000,10,27,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,3.3,59,88000,9,404,340,0,0,0,0,0,0,0,0,0.0,10,10,16.0,3048,9,999999999,89,0.0530,0,88,0.200,0.0,1.0 +2000,10,27,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,2.8,58,88000,0,0,321,0,0,0,0,0,0,0,230,2.6,8,8,16.0,2438,9,999999999,80,0.0530,0,88,0.200,0.0,1.0 +2000,10,27,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,1.7,50,88100,0,0,341,0,0,0,0,0,0,0,180,4.6,10,10,16.0,3048,9,999999999,80,0.0530,0,88,0.200,0.0,1.0 +2000,10,27,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,1.7,59,87900,0,0,301,0,0,0,0,0,0,0,190,2.6,4,4,16.0,77777,9,999999999,80,0.0530,0,88,0.200,0.0,1.0 +2000,10,27,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,1.1,63,87800,0,0,293,0,0,0,0,0,0,0,300,3.1,4,4,16.0,77777,9,999999999,69,0.0530,0,88,0.200,0.0,1.0 +2000,10,27,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,2.8,76,87400,0,0,319,0,0,0,0,0,0,0,230,2.1,10,10,16.0,2591,9,999999999,69,0.0530,0,88,0.200,0.0,1.0 +2000,10,27,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,1.7,79,87700,0,0,269,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,69,0.0530,0,88,0.200,0.0,1.0 +2000,10,28,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,1.7,76,87700,0,0,283,0,0,0,0,0,0,0,0,0.0,3,3,16.0,77777,9,999999999,69,0.0520,0,88,0.200,0.0,1.0 +2000,10,28,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,1.1,79,87600,0,0,277,0,0,0,0,0,0,0,0,0.0,3,3,16.0,77777,9,999999999,69,0.0520,0,88,0.200,0.0,1.0 +2000,10,28,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.3,0.6,82,87500,0,0,261,0,0,0,0,0,0,0,260,2.1,0,0,16.0,77777,9,999999999,69,0.0520,0,88,0.200,0.0,1.0 +2000,10,28,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.2,0.0,85,87500,0,0,256,0,0,0,0,0,0,0,190,2.6,0,0,16.0,77777,9,999999999,80,0.0520,0,88,0.200,0.0,1.0 +2000,10,28,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.7,-0.6,84,87300,0,0,254,0,0,0,0,0,0,0,130,3.1,0,0,16.0,77777,9,999999999,80,0.0520,0,88,0.200,0.0,1.0 +2000,10,28,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.2,0.0,85,87500,0,0,261,0,0,0,0,0,0,0,0,0.0,2,1,16.0,77777,9,999999999,80,0.0520,0,88,0.200,0.0,1.0 +2000,10,28,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.2,0.0,85,87500,0,0,265,0,0,0,0,0,0,0,0,0.0,5,2,16.0,77777,9,999999999,80,0.0520,0,88,0.200,0.0,1.0 +2000,10,28,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.2,0.6,89,87500,85,1236,268,11,0,11,1300,0,1300,420,330,2.1,7,3,16.0,77777,9,999999999,80,0.0520,0,88,0.200,0.0,1.0 +2000,10,28,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.8,0.6,85,87600,294,1386,271,107,142,77,11300,11000,9000,1470,0,0.0,7,3,16.0,77777,9,999999999,80,0.0520,0,88,0.200,0.0,1.0 +2000,10,28,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.9,1.7,86,87600,471,1386,280,316,574,120,32900,52700,14900,2300,320,1.5,9,5,16.0,77777,9,999999999,80,0.0520,0,88,0.200,0.0,1.0 +2000,10,28,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,2.2,76,87300,602,1386,288,360,475,153,37700,46400,17500,3080,50,1.5,8,4,16.0,77777,9,999999999,89,0.0520,0,88,0.200,0.0,1.0 +2000,10,28,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,2.2,61,87800,676,1386,301,339,191,246,36600,19400,27100,6080,50,1.5,8,4,16.0,77777,9,999999999,89,0.0520,0,88,0.200,0.0,1.0 +2000,10,28,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,2.2,56,87700,688,1386,307,360,272,224,38200,28100,24200,5160,320,1.5,7,4,16.0,77777,9,999999999,89,0.0520,0,88,0.200,0.0,1.0 +2000,10,28,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,2.8,51,87700,637,1386,314,459,708,133,47300,68200,15900,2630,0,0.0,6,3,16.0,77777,9,999999999,89,0.0520,0,88,0.200,0.0,1.0 +2000,10,28,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,-1.7,31,87700,527,1386,324,393,840,72,40500,78700,10400,1410,160,4.6,9,5,16.0,77777,9,999999999,89,0.0520,0,88,0.200,0.0,1.0 +2000,10,28,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,-2.8,27,87800,366,1386,323,276,791,66,27400,67000,9600,1080,150,5.7,8,4,16.0,77777,9,999999999,89,0.0520,0,88,0.200,0.0,1.0 +2000,10,28,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,-1.7,32,87000,165,1386,316,0,0,0,0,0,0,0,160,3.1,7,3,16.0,77777,9,999999999,89,0.0520,0,88,0.200,0.0,1.0 +2000,10,28,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,13.2,-1.2,36,87400,8,381,312,0,0,0,0,0,0,0,180,3.1,7,3,16.0,77777,9,999999999,89,0.0520,0,88,0.200,999.0,99.0 +2000,10,28,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,-1.1,38,87700,0,0,310,0,0,0,0,0,0,0,190,3.1,6,3,16.0,77777,9,999999999,89,0.0520,0,88,0.200,0.0,1.0 +2000,10,28,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,-1.1,38,87800,0,0,307,0,0,0,0,0,0,0,190,2.6,4,2,16.0,77777,9,999999999,89,0.0520,0,88,0.200,0.0,1.0 +2000,10,28,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,-1.1,51,87700,0,0,291,0,0,0,0,0,0,0,0,0.0,5,3,16.0,77777,9,999999999,89,0.0520,0,88,0.200,0.0,1.0 +2000,10,28,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,-1.7,47,87700,0,0,293,0,0,0,0,0,0,0,130,2.6,6,3,16.0,77777,9,999999999,89,0.0520,0,88,0.200,0.0,1.0 +2000,10,28,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,-1.1,61,87700,0,0,280,0,0,0,0,0,0,0,300,2.6,6,3,16.0,77777,9,999999999,89,0.0520,0,88,0.200,0.0,1.0 +2000,10,28,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,0.0,70,87300,0,0,279,0,0,0,0,0,0,0,320,2.6,5,3,16.0,77777,9,999999999,80,0.0520,0,88,0.200,0.0,1.0 +2000,10,29,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.9,-1.1,69,87600,0,0,271,0,0,0,0,0,0,0,250,2.6,5,2,16.0,77777,9,999999999,80,0.0520,0,88,0.200,0.0,1.0 +2000,10,29,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,-1.1,61,87600,0,0,280,0,0,0,0,0,0,0,0,0.0,6,3,16.0,77777,9,999999999,80,0.0520,0,88,0.200,0.0,1.0 +2000,10,29,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.9,-1.1,69,87600,0,0,277,0,0,0,0,0,0,0,270,1.5,7,5,16.0,77777,9,999999999,80,0.0520,0,88,0.200,0.0,1.0 +2000,10,29,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,-0.6,67,87600,0,0,293,0,0,0,0,0,0,0,0,0.0,9,8,16.0,3353,9,999999999,80,0.0520,0,88,0.200,0.0,1.0 +2000,10,29,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.9,0.0,76,87300,0,0,289,0,0,0,0,0,0,0,280,2.1,10,8,16.0,3353,9,999999999,80,0.0520,0,88,0.200,0.0,1.0 +2000,10,29,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,-0.6,67,87600,0,0,280,0,0,0,0,0,0,0,250,2.1,10,4,16.0,77777,9,999999999,80,0.0520,0,88,0.200,0.0,1.0 +2000,10,29,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.9,0.0,76,87600,0,0,295,0,0,0,0,0,0,0,310,1.5,10,9,16.0,3353,9,999999999,80,0.0520,0,88,0.200,0.0,1.0 +2000,10,29,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,0.0,70,87700,80,1213,281,4,0,4,500,0,500,160,0,0.0,9,4,16.0,77777,9,999999999,80,0.0520,0,88,0.200,0.0,1.0 +2000,10,29,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,0.0,60,87700,288,1387,288,110,173,74,11600,13300,8900,1410,0,0.0,5,3,16.0,77777,9,999999999,80,0.0520,0,88,0.200,0.0,1.0 +2000,10,29,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,0.0,58,87800,465,1387,292,207,182,146,22400,17100,16700,3320,0,0.0,4,4,16.0,77777,9,999999999,80,0.0520,0,88,0.200,0.0,1.0 +2000,10,29,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,1.1,60,87300,596,1387,324,71,0,71,8600,0,8600,3260,20,1.5,10,10,16.0,3048,9,999999999,80,0.0520,0,88,0.200,0.0,1.0 +2000,10,29,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,2.8,58,87800,669,1387,337,292,137,226,31700,13900,24900,5570,80,3.6,10,10,16.0,2134,9,999999999,80,0.0520,0,88,0.200,0.0,1.0 +2000,10,29,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,2.8,63,87900,681,1387,331,81,0,81,9900,0,9900,3830,270,8.8,10,10,16.0,1829,9,999999999,89,0.0520,0,88,0.200,0.0,1.0 +2000,10,29,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,3.3,79,88000,630,1387,320,73,0,73,8900,0,8900,3410,230,3.6,10,10,16.0,1097,9,999999999,89,0.0520,0,88,0.200,2.0,1.0 +2000,10,29,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,4.4,82,88100,520,1387,323,60,0,60,7200,0,7200,2690,230,2.1,10,10,16.0,2591,9,999999999,100,0.0520,0,88,0.200,0.0,1.0 +2000,10,29,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,2.8,71,88100,359,1387,324,38,0,38,4600,0,4600,1610,230,3.1,10,10,16.0,1372,9,999999999,100,0.0520,0,88,0.200,0.0,1.0 +2000,10,29,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,3.9,76,87700,159,1387,325,0,0,0,0,0,0,0,220,2.1,10,10,16.0,2743,9,999999999,100,0.0520,0,88,0.200,0.0,1.0 +2000,10,29,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,3.9,82,88100,6,335,320,0,0,0,0,0,0,0,170,1.5,10,10,16.0,3048,9,999999999,110,0.0520,0,88,0.200,0.0,1.0 +2000,10,29,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,4.4,92,88200,0,0,316,0,0,0,0,0,0,0,0,0.0,10,10,16.0,2743,9,999999999,110,0.0520,0,88,0.200,0.0,1.0 +2000,10,29,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,3.3,85,88200,0,0,315,0,0,0,0,0,0,0,250,2.1,10,10,16.0,3048,9,999999999,120,0.0520,0,88,0.200,0.0,1.0 +2000,10,29,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,3.3,89,88100,0,0,312,0,0,0,0,0,0,0,330,2.6,10,10,16.0,3048,9,999999999,120,0.0520,0,88,0.200,0.0,1.0 +2000,10,29,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,2.8,86,88200,0,0,311,0,0,0,0,0,0,0,0,0.0,10,10,16.0,1219,9,999999999,129,0.0520,0,88,0.200,0.0,1.0 +2000,10,29,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,3.3,85,87800,0,0,315,0,0,0,0,0,0,0,230,1.5,10,10,16.0,1341,9,999999999,129,0.0520,0,88,0.200,0.0,1.0 +2000,10,29,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,2.8,86,88200,0,0,311,0,0,0,0,0,0,0,260,3.1,10,10,16.0,1006,9,999999999,129,0.0520,0,88,0.200,0.0,1.0 +2000,10,30,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,2.8,86,88200,0,0,311,0,0,0,0,0,0,0,240,2.6,10,10,16.0,884,9,999999999,129,0.0520,0,88,0.200,0.0,1.0 +2000,10,30,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,2.8,89,88200,0,0,309,0,0,0,0,0,0,0,260,3.1,10,10,16.0,1006,9,999999999,129,0.0520,0,88,0.200,0.0,1.0 +2000,10,30,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,2.8,89,88200,0,0,309,0,0,0,0,0,0,0,260,3.1,10,10,16.0,975,9,999999999,129,0.0520,0,88,0.200,0.0,1.0 +2000,10,30,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.9,2.2,89,88200,0,0,306,0,0,0,0,0,0,0,270,4.1,10,10,14.4,671,9,999999999,129,0.0520,0,88,0.200,0.0,1.0 +2000,10,30,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.3,1.7,89,87900,0,0,303,0,0,0,0,0,0,0,260,4.1,10,10,16.0,671,9,999999999,129,0.0520,0,88,0.200,0.0,1.0 +2000,10,30,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.3,2.2,92,88300,0,0,303,0,0,0,0,0,0,0,250,3.1,10,10,16.0,823,9,999999999,129,0.0520,0,88,0.200,0.0,1.0 +2000,10,30,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.3,2.2,92,88300,0,0,303,0,0,0,0,0,0,0,260,3.1,10,10,14.4,549,9,999999999,129,0.0520,0,88,0.200,0.0,1.0 +2000,10,30,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.3,2.2,92,88400,76,1168,303,4,0,4,500,0,500,160,280,3.6,10,10,16.0,518,9,999999999,129,0.0520,0,88,0.200,0.0,1.0 +2000,10,30,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.3,2.2,92,88400,282,1388,303,47,0,47,5400,0,5400,1800,280,4.6,10,10,16.0,518,9,999999999,129,0.0520,0,88,0.200,0.0,1.0 +2000,10,30,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.3,2.2,92,88500,459,1388,303,69,0,69,8100,0,8100,2910,270,4.6,10,10,16.0,518,9,999999999,129,0.0520,0,88,0.200,0.0,1.0 +2000,10,30,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.9,2.2,89,88200,589,1388,306,65,0,65,7900,0,7900,3000,280,3.1,10,10,16.0,518,9,999999999,129,0.0520,0,88,0.200,0.0,1.0 +2000,10,30,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,1.7,83,88500,663,1388,307,88,0,88,10600,0,10600,4080,310,4.6,10,10,16.0,945,9,999999999,129,0.0520,0,88,0.200,0.0,1.0 +2000,10,30,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,0.6,76,88500,675,1388,306,81,0,81,9800,0,9800,3820,330,4.6,10,10,16.0,762,9,999999999,129,0.0520,0,88,0.200,0.0,1.0 +2000,10,30,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,0.6,73,88600,624,1388,309,73,0,73,8900,0,8900,3390,310,3.6,10,10,16.0,823,9,999999999,129,0.0520,0,88,0.200,0.0,1.0 +2000,10,30,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,1.1,76,88600,514,1388,309,60,0,60,7200,0,7200,2680,300,3.6,10,10,16.0,762,9,999999999,129,0.0520,0,88,0.200,0.0,1.0 +2000,10,30,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,0.6,73,88600,353,1388,309,49,0,49,5800,0,5800,2000,310,2.6,10,10,16.0,1676,9,999999999,129,0.0520,0,88,0.200,0.0,1.0 +2000,10,30,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,0.6,73,88300,153,1388,309,0,0,0,0,0,0,0,300,2.6,10,10,16.0,1829,9,999999999,129,0.0520,0,88,0.200,0.0,1.0 +2000,10,30,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,1.1,79,88700,5,312,307,0,0,0,0,0,0,0,270,2.6,10,10,16.0,1829,9,999999999,129,0.0520,0,88,0.200,0.0,1.0 +2000,10,30,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,1.1,79,88700,0,0,307,0,0,0,0,0,0,0,260,3.6,10,10,16.0,1829,9,999999999,129,0.0520,0,88,0.200,0.0,1.0 +2000,10,30,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.9,1.1,82,88700,0,0,305,0,0,0,0,0,0,0,270,3.6,10,10,16.0,2896,9,999999999,129,0.0520,0,88,0.200,0.0,1.0 +2000,10,30,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.3,1.1,85,88700,0,0,302,0,0,0,0,0,0,0,250,3.1,10,10,16.0,2286,9,999999999,129,0.0520,0,88,0.200,0.0,1.0 +2000,10,30,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.3,1.1,85,88700,0,0,302,0,0,0,0,0,0,0,270,3.1,10,10,16.0,2134,9,999999999,129,0.0520,0,88,0.200,0.0,1.0 +2000,10,30,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.3,1.1,85,88300,0,0,287,0,0,0,0,0,0,0,270,2.1,8,8,16.0,77777,9,999999999,129,0.0520,0,88,0.200,0.0,1.0 +2000,10,30,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.8,0.6,85,88600,0,0,291,0,0,0,0,0,0,0,250,2.6,9,9,16.0,3048,9,999999999,129,0.0520,0,88,0.200,0.0,1.0 +2000,10,31,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.8,0.6,85,88600,0,0,299,0,0,0,0,0,0,0,260,2.6,10,10,16.0,1433,9,999999999,120,0.0510,0,88,0.200,0.0,1.0 +2000,10,31,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.8,0.6,85,88600,0,0,299,0,0,0,0,0,0,0,290,1.5,10,10,16.0,1494,9,999999999,120,0.0510,0,88,0.200,0.0,1.0 +2000,10,31,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.8,1.1,89,88600,0,0,300,0,0,0,0,0,0,0,0,0.0,10,10,16.0,1341,9,999999999,110,0.0510,0,88,0.200,0.0,1.0 +2000,10,31,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.8,1.1,89,88600,0,0,300,0,0,0,0,0,0,0,0,0.0,10,10,16.0,1280,9,999999999,110,0.0510,0,88,0.200,0.0,1.0 +2000,10,31,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.8,0.6,85,88200,0,0,299,0,0,0,0,0,0,0,120,1.5,10,10,16.0,1402,9,999999999,110,0.0510,0,88,0.200,0.0,1.0 +2000,10,31,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.2,1.1,92,88500,0,0,297,0,0,0,0,0,0,0,0,0.0,10,10,16.0,1524,9,999999999,100,0.0510,0,88,0.200,0.0,1.0 +2000,10,31,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.8,0.6,85,88600,0,0,299,0,0,0,0,0,0,0,0,0.0,10,10,16.0,1524,9,999999999,100,0.0510,0,88,0.200,0.0,1.0 +2000,10,31,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.8,1.1,89,88600,71,1145,300,4,0,4,500,0,500,160,80,1.5,10,10,16.0,1676,9,999999999,89,0.0510,0,88,0.200,0.0,1.0 +2000,10,31,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.3,1.1,85,88600,276,1388,302,66,5,65,7400,200,7400,2280,140,1.5,10,10,16.0,1676,9,999999999,89,0.0510,0,88,0.200,0.0,1.0 +2000,10,31,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.9,1.7,86,88700,453,1388,305,162,68,139,17700,6300,15600,3660,40,1.5,10,10,16.0,2134,9,999999999,80,0.0510,0,88,0.200,0.0,1.0 +2000,10,31,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,1.7,83,88200,583,1388,307,174,18,167,19700,1400,19100,6340,60,2.1,10,10,16.0,2438,9,999999999,80,0.0510,0,88,0.200,0.0,1.0 +2000,10,31,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,1.7,73,88600,656,1388,306,257,60,229,28200,6000,25400,6510,80,2.1,9,9,16.0,77777,9,999999999,80,0.0510,0,88,0.200,0.0,1.0 +2000,10,31,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,-2.2,48,88600,668,1388,303,367,351,197,39200,36100,21700,4390,270,5.2,9,8,16.0,77777,9,999999999,69,0.0510,0,88,0.200,0.0,1.0 +2000,10,31,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,-3.9,40,88600,617,1388,299,414,666,117,42900,64100,14300,2330,270,5.2,8,7,16.0,77777,9,999999999,69,0.0510,0,88,0.200,0.0,1.0 +2000,10,31,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,-2.2,46,88600,508,1388,312,330,633,97,34000,58600,12500,1840,270,5.2,9,9,16.0,3353,9,999999999,69,0.0510,0,88,0.200,0.0,1.0 +2000,10,31,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,-2.8,44,88600,347,1388,296,196,348,109,20500,29100,13200,2200,280,4.1,6,6,16.0,77777,9,999999999,60,0.0510,0,88,0.200,0.0,1.0 +2000,10,31,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,-3.9,47,88100,147,1388,268,52,0,52,5600,0,5600,1460,290,4.6,1,0,16.0,77777,9,999999999,60,0.0510,0,88,0.200,0.0,1.0 +2000,10,31,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,-3.9,53,88600,4,266,261,0,0,0,0,0,0,0,250,1.5,0,0,16.0,77777,9,999999999,60,0.0510,0,88,0.200,0.0,1.0 +2000,10,31,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.9,-3.3,57,88600,0,0,260,0,0,0,0,0,0,0,220,2.6,0,0,16.0,77777,9,999999999,60,0.0510,0,88,0.200,0.0,1.0 +2000,10,31,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.9,-5.6,47,88600,0,0,269,0,0,0,0,0,0,0,240,3.6,3,3,16.0,77777,9,999999999,50,0.0510,0,88,0.200,0.0,1.0 +2000,10,31,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,-3.9,53,88600,0,0,301,0,0,0,0,0,0,0,260,3.6,10,10,16.0,2438,9,999999999,50,0.0510,0,88,0.200,0.0,1.0 +2000,10,31,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.5,-3.8,63,88600,0,0,298,0,0,0,0,0,0,0,280,3.4,10,10,16.0,1250,9,999999999,50,0.0510,0,88,0.200,0.0,1.0 +2000,10,31,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.5,-3.8,58,88200,0,0,293,0,0,0,0,0,0,0,260,3.2,10,10,16.0,1524,9,999999999,40,0.0510,0,88,0.200,0.0,1.0 +2000,10,31,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.6,-3.8,58,88500,0,0,289,0,0,0,0,0,0,0,260,3.0,10,10,16.0,2896,9,999999999,40,0.0510,0,88,0.200,0.0,1.0 +1980,11,1,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,0.6,-3.7,83,88300,0,0,247,0,0,0,0,0,0,0,100,2.8,2,0,16.0,77777,9,999999999,89,0.0510,0,88,999.000,999.0,99.0 +1980,11,1,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-0.2,-3.7,85,88300,0,0,244,0,0,0,0,0,0,0,150,2.6,2,0,24.1,77777,9,999999999,89,0.0510,0,88,999.000,999.0,99.0 +1980,11,1,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-1.2,-3.7,86,88300,0,0,245,0,0,0,0,0,0,0,150,2.4,3,1,24.1,77777,9,999999999,89,0.0510,0,88,999.000,999.0,99.0 +1980,11,1,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-2.2,-3.8,87,88300,0,0,242,0,0,0,0,0,0,0,150,2.2,5,1,24.1,77777,9,999999999,89,0.0510,0,88,999.000,999.0,99.0 +1980,11,1,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-2.8,-4.4,88,88300,0,0,242,0,0,0,0,0,0,0,150,2.6,6,2,24.1,77777,9,999999999,80,0.0510,0,88,999.000,999.0,99.0 +1980,11,1,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-2.8,-4.2,88,88300,0,0,247,0,0,0,0,0,0,0,100,1.7,7,4,24.1,77777,9,999999999,80,0.0510,0,88,999.000,999.0,99.0 +1980,11,1,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-2.8,-4.3,88,88300,0,0,249,0,0,0,0,0,0,0,50,0.9,9,5,24.1,77777,9,999999999,80,0.0510,0,88,999.000,999.0,99.0 +1980,11,1,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-2.8,-4.4,88,88300,67,1123,254,28,53,24,3000,2300,2800,500,0,0.0,10,7,64.4,7620,9,999999999,80,0.0170,0,88,999.000,999.0,99.0 +1980,11,1,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,-0.4,-2.7,82,88300,271,1389,264,85,82,69,9300,6400,8000,1480,0,0.0,10,7,64.4,7620,9,999999999,89,0.0170,0,88,999.000,999.0,99.0 +1980,11,1,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,2.0,-1.4,76,88300,448,1389,280,160,138,115,17500,12900,13300,2600,0,0.0,10,8,64.4,7620,9,999999999,100,0.0170,0,88,999.000,999.0,99.0 +1980,11,1,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,-0.6,70,88300,578,1389,290,263,123,212,28800,12100,23800,5680,0,0.0,10,8,64.4,7620,9,999999999,110,0.0170,0,88,999.000,999.0,99.0 +1980,11,1,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,7.0,-0.4,60,88200,651,1389,293,213,92,170,23500,9400,19100,4150,310,0.9,8,6,64.4,77777,9,999999999,110,0.0170,0,88,999.000,999.0,99.0 +1980,11,1,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,9.6,-0.8,50,88100,663,1389,297,389,556,121,40300,54200,14300,2490,270,1.7,5,3,64.4,77777,9,999999999,110,0.0170,0,88,999.000,999.0,99.0 +1980,11,1,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,-1.1,40,88000,612,1389,300,406,766,65,42900,74400,10000,1440,220,2.6,3,1,64.4,77777,9,999999999,100,0.0170,0,88,999.000,999.0,99.0 +1980,11,1,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,11.7,-0.4,43,87900,502,1389,306,333,735,63,34300,68500,9400,1280,230,2.4,5,3,64.4,77777,9,999999999,110,0.0170,0,88,999.000,999.0,99.0 +1980,11,1,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,11.1,0.2,47,87900,341,1389,309,150,324,69,15800,26700,9200,1250,240,2.3,7,5,64.4,77777,9,999999999,110,0.0170,0,88,999.000,999.0,99.0 +1980,11,1,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,0.6,50,87800,142,1389,313,46,78,38,5000,4400,4600,790,250,2.1,9,7,64.4,7620,9,999999999,110,0.0170,0,88,999.000,999.0,99.0 +1980,11,1,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,9.8,0.4,51,87800,3,243,306,5,6,4,0,0,0,0,250,2.4,8,6,64.4,77777,9,999999999,110,0.0170,0,88,999.000,999.0,99.0 +1980,11,1,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,9.1,0.0,53,87800,0,0,300,0,0,0,0,0,0,0,250,2.8,6,5,64.4,77777,9,999999999,110,0.0170,0,88,999.000,999.0,99.0 +1980,11,1,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,8.3,-0.6,54,87800,0,0,294,0,0,0,0,0,0,0,250,3.1,5,4,24.1,77777,9,999999999,110,0.0170,0,88,999.000,999.0,99.0 +1980,11,1,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,8.1,-1.5,51,87900,0,0,294,0,0,0,0,0,0,0,250,3.6,6,5,24.1,77777,9,999999999,100,0.0170,0,88,999.000,999.0,99.0 +1980,11,1,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,8.0,-2.6,47,87900,0,0,295,0,0,0,0,0,0,0,250,4.1,8,6,24.1,77777,9,999999999,89,0.0170,0,88,999.000,999.0,99.0 +1980,11,1,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,7.8,-3.9,44,88000,0,0,296,0,0,0,0,0,0,0,250,4.6,9,7,24.1,4270,9,999999999,89,0.0170,0,88,999.000,999.0,99.0 +1980,11,1,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,6.7,-3.5,49,87900,0,0,286,0,0,0,0,0,0,0,240,3.9,6,5,24.1,77777,9,999999999,89,0.0170,0,88,999.000,999.0,99.0 +1980,11,2,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,5.5,-2.7,55,87900,0,0,275,0,0,0,0,0,0,0,240,3.3,3,2,24.1,77777,9,999999999,89,0.0170,0,88,999.000,999.0,99.0 +1980,11,2,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,4.4,-2.8,60,87900,0,0,262,0,0,0,0,0,0,0,230,2.6,0,0,24.1,77777,9,999999999,89,0.0170,0,88,999.000,999.0,99.0 +1980,11,2,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,4.0,-2.3,62,87900,0,0,270,0,0,0,0,0,0,0,260,2.9,2,2,24.1,77777,9,999999999,89,0.0170,0,88,999.000,999.0,99.0 +1980,11,2,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,3.7,-2.5,63,87900,0,0,273,0,0,0,0,0,0,0,290,3.3,5,4,24.1,77777,9,999999999,89,0.0170,0,88,999.000,999.0,99.0 +1980,11,2,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,3.3,-2.8,65,87900,0,0,276,0,0,0,0,0,0,0,320,3.6,7,6,24.1,2440,9,999999999,89,0.0170,0,88,999.000,999.0,99.0 +1980,11,2,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,4.8,-1.3,64,88000,0,0,287,0,0,0,0,0,0,0,300,4.8,8,7,24.1,2440,9,999999999,100,0.0170,0,88,999.000,999.0,99.0 +1980,11,2,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,6.3,-0.1,64,88100,0,0,299,0,0,0,0,0,0,0,270,6.0,8,8,24.1,2440,9,999999999,110,0.0170,0,88,999.000,999.0,99.0 +1980,11,2,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,1.1,63,88200,63,1077,313,22,23,20,2400,1000,2300,410,250,7.2,9,9,48.3,2440,9,999999999,120,0.0310,0,88,999.000,999.0,99.0 +1980,11,2,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,8.9,0.9,57,88200,265,1390,303,104,95,86,11200,7200,9800,1850,250,7.5,6,6,48.3,77777,9,999999999,110,0.0310,0,88,999.000,999.0,99.0 +1980,11,2,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,10.0,0.4,51,88200,442,1390,302,188,338,80,20200,30600,10500,1470,260,7.9,4,4,48.3,77777,9,999999999,110,0.0310,0,88,999.000,999.0,99.0 +1980,11,2,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,-0.6,45,88300,571,1390,296,378,814,41,40000,77600,8000,1110,260,8.2,1,1,64.4,77777,9,999999999,110,0.0310,0,88,999.000,999.0,99.0 +1980,11,2,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,11.3,-0.8,43,88300,645,1390,304,423,701,95,44500,68800,12500,2000,260,8.0,3,3,64.4,77777,9,999999999,100,0.0310,0,88,999.000,999.0,99.0 +1980,11,2,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,11.5,-1.5,40,88300,656,1390,306,426,670,106,44500,65600,13400,2220,270,7.9,4,4,64.4,77777,9,999999999,100,0.0310,0,88,999.000,999.0,99.0 +1980,11,2,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,-2.2,38,88300,606,1390,312,249,241,143,26900,24400,16200,2960,270,7.7,6,6,64.4,1520,9,999999999,100,0.0310,0,88,999.000,999.0,99.0 +1980,11,2,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,11.3,-2.2,38,88400,496,1390,310,210,254,118,22500,24400,13800,2340,260,7.5,6,6,64.4,1520,9,999999999,89,0.0310,0,88,999.000,999.0,99.0 +1980,11,2,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,11.0,-2.4,39,88400,335,1390,308,140,215,87,14700,17700,10400,1680,250,7.4,6,6,64.4,1520,9,999999999,89,0.0310,0,88,999.000,999.0,99.0 +1980,11,2,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,-2.8,39,88500,136,1390,306,59,202,38,5900,10200,4900,690,240,7.2,6,6,64.4,1520,9,999999999,89,0.0310,0,88,999.000,999.0,99.0 +1980,11,2,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,9.5,-2.6,42,88600,2,197,305,5,9,4,0,0,0,0,240,5.3,7,7,64.4,1520,9,999999999,89,0.0310,0,88,999.000,999.0,99.0 +1980,11,2,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,8.3,-2.6,46,88600,0,0,300,0,0,0,0,0,0,0,250,3.4,8,7,64.4,1520,9,999999999,89,0.0310,0,88,999.000,999.0,99.0 +1980,11,2,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,7.2,-2.8,49,88700,0,0,300,0,0,0,0,0,0,0,250,1.5,9,8,24.1,1520,9,999999999,89,0.0310,0,88,999.000,999.0,99.0 +1980,11,2,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,6.8,-2.4,51,88700,0,0,305,0,0,0,0,0,0,0,250,2.4,9,9,24.1,1520,9,999999999,89,0.0310,0,88,999.000,999.0,99.0 +1980,11,2,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,6.5,-2.2,54,88700,0,0,304,0,0,0,0,0,0,0,260,3.2,10,9,24.1,1520,9,999999999,100,0.0310,0,88,999.000,999.0,99.0 +1980,11,2,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,6.1,-2.2,56,88800,0,0,311,0,0,0,0,0,0,0,260,4.1,10,10,24.1,1520,9,999999999,100,0.0310,0,88,999.000,999.0,99.0 +1980,11,2,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,5.5,-2.1,58,88800,0,0,293,0,0,0,0,0,0,0,250,3.9,8,8,24.1,77777,9,999999999,100,0.0310,0,88,999.000,999.0,99.0 +1980,11,3,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,5.0,-1.7,60,88800,0,0,284,0,0,0,0,0,0,0,250,3.8,7,6,24.1,77777,9,999999999,100,0.0310,0,88,999.000,999.0,99.0 +1980,11,3,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,4.4,-2.2,62,88800,0,0,276,0,0,0,0,0,0,0,240,3.6,5,4,24.1,77777,9,999999999,100,0.0310,0,88,999.000,999.0,99.0 +1980,11,3,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,4.6,-1.6,62,88800,0,0,282,0,0,0,0,0,0,0,250,3.6,7,6,24.1,77777,9,999999999,100,0.0310,0,88,999.000,999.0,99.0 +1980,11,3,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,4.8,-1.6,62,88800,0,0,291,0,0,0,0,0,0,0,260,3.6,8,8,24.1,77777,9,999999999,100,0.0310,0,88,999.000,999.0,99.0 +1980,11,3,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,5.0,-1.7,62,88800,0,0,306,0,0,0,0,0,0,0,270,3.6,10,10,24.1,7620,9,999999999,100,0.0310,0,88,999.000,999.0,99.0 +1980,11,3,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,3.9,-1.3,69,88900,0,0,294,0,0,0,0,0,0,0,260,2.9,10,9,24.1,6300,9,999999999,100,0.0310,0,88,999.000,999.0,99.0 +1980,11,3,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,2.8,-1.2,75,88900,0,0,289,0,0,0,0,0,0,0,260,2.2,10,9,24.1,4980,9,999999999,100,0.0310,0,88,999.000,999.0,99.0 +1980,11,3,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,-1.1,82,88900,59,1054,279,20,6,19,2100,300,2100,460,250,1.5,10,8,64.4,3660,9,999999999,100,0.0560,0,88,999.000,999.0,99.0 +1980,11,3,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,3.2,-0.5,76,88900,259,1391,285,66,44,58,7300,3500,6600,1480,290,1.0,9,8,64.4,3253,9,999999999,110,0.0560,0,88,999.000,999.0,99.0 +1980,11,3,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,4.6,-0.3,69,89000,436,1391,291,187,134,145,20200,12300,16300,3260,320,0.5,9,8,64.4,2847,9,999999999,110,0.0560,0,88,999.000,999.0,99.0 +1980,11,3,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,-0.6,63,89000,565,1391,297,166,134,112,18600,13400,13200,2630,0,0.0,8,8,64.4,2440,9,999999999,110,0.0560,0,88,999.000,999.0,99.0 +1980,11,3,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,8.0,-0.6,55,89000,638,1391,306,272,206,176,29700,20900,20100,4270,330,2.2,9,8,64.4,2643,9,999999999,110,0.0560,0,88,999.000,999.0,99.0 +1980,11,3,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,9.8,-1.2,48,89000,650,1391,308,323,348,159,34900,35700,18100,3390,310,4.5,9,7,64.4,2847,9,999999999,100,0.0560,0,88,999.000,999.0,99.0 +1980,11,3,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,-1.7,40,88900,599,1391,316,256,208,166,27400,21000,18300,3540,280,6.7,10,7,64.4,3050,9,999999999,100,0.0560,0,88,999.000,999.0,99.0 +1980,11,3,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,11.3,-1.2,42,88900,490,1391,315,177,136,129,19400,13000,14800,2950,300,5.3,10,7,64.4,2490,9,999999999,100,0.0560,0,88,999.000,999.0,99.0 +1980,11,3,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,11.0,-0.8,44,88900,329,1391,319,102,73,84,11100,6100,9600,1830,330,4.0,9,8,64.4,1930,9,999999999,100,0.0560,0,88,999.000,999.0,99.0 +1980,11,3,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,-0.6,46,88900,130,1391,317,36,22,34,3900,1400,3800,800,350,2.6,9,8,64.4,1370,9,999999999,110,0.0560,0,88,999.000,999.0,99.0 +1980,11,3,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,10.0,-0.2,49,88900,2,174,315,2,1,2,0,0,0,0,350,2.6,9,8,64.4,1330,9,999999999,110,0.0560,0,88,999.000,999.0,99.0 +1980,11,3,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,9.5,0.0,51,88900,0,0,320,0,0,0,0,0,0,0,350,2.6,10,9,64.4,1290,9,999999999,110,0.0560,0,88,999.000,999.0,99.0 +1980,11,3,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,8.9,0.0,54,89000,0,0,317,0,0,0,0,0,0,0,350,2.6,10,9,24.1,1250,9,999999999,110,0.0560,0,88,999.000,999.0,99.0 +1980,11,3,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,8.7,0.6,56,89000,0,0,317,0,0,0,0,0,0,0,300,2.4,10,9,24.1,1250,9,999999999,110,0.0560,0,88,999.000,999.0,99.0 +1980,11,3,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,8.5,0.9,59,89000,0,0,325,0,0,0,0,0,0,0,240,2.3,10,10,24.1,1250,9,999999999,120,0.0560,0,88,999.000,999.0,99.0 +1980,11,3,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,8.3,1.1,61,89000,0,0,324,0,0,0,0,0,0,0,190,2.1,10,10,24.1,1250,9,999999999,120,0.0560,0,88,999.000,999.0,99.0 +1980,11,3,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,7.9,1.4,63,89000,0,0,323,0,0,0,0,0,0,0,190,2.1,10,10,24.1,1290,9,999999999,120,0.0560,0,88,999.000,999.0,99.0 +1980,11,4,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,7.6,2.0,66,89000,0,0,322,0,0,0,0,0,0,0,200,2.1,10,10,24.1,1330,9,999999999,120,0.0560,0,88,999.000,999.0,99.0 +1980,11,4,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,7.2,1.7,68,89000,0,0,320,0,0,0,0,0,0,0,200,2.1,10,10,24.1,1370,9,999999999,120,0.0560,0,88,999.000,999.0,99.0 +1980,11,4,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,7.0,2.3,70,89000,0,0,320,0,0,0,0,0,0,0,190,2.3,10,10,24.1,1420,9,999999999,120,0.0560,0,88,999.000,999.0,99.0 +1980,11,4,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,6.9,2.3,72,88900,0,0,319,0,0,0,0,0,0,0,170,2.4,10,10,24.1,1470,9,999999999,129,0.0560,0,88,999.000,999.0,99.0 +1980,11,4,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,6.7,2.2,74,88900,0,0,318,0,0,0,0,0,0,0,160,2.6,10,10,24.1,1520,9,999999999,129,0.0560,0,88,999.000,999.0,99.0 +1980,11,4,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,7.2,2.7,73,89000,0,0,321,0,0,0,0,0,0,0,110,1.7,10,10,24.1,1520,9,999999999,129,0.0560,0,88,999.000,999.0,99.0 +1980,11,4,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,7.8,3.1,72,89000,0,0,324,0,0,0,0,0,0,0,50,0.9,10,10,24.1,1520,9,999999999,129,0.0560,0,88,999.000,999.0,99.0 +1980,11,4,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,3.3,71,89000,55,1009,327,26,5,25,2800,0,2800,760,0,0.0,10,10,48.3,1520,9,999999999,129,0.0160,0,88,999.000,999.0,99.0 +1980,11,4,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,10.5,4.6,66,89100,253,1391,339,65,2,64,7200,100,7200,2170,340,1.4,10,10,48.3,2233,9,999999999,139,0.0160,0,88,999.000,999.0,99.0 +1980,11,4,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,12.8,5.6,61,89100,429,1391,341,165,153,117,17900,14100,13600,2630,320,2.7,10,9,48.3,2947,9,999999999,150,0.0160,0,88,999.000,999.0,99.0 +1980,11,4,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,6.1,56,89100,559,1391,353,212,108,168,23000,10600,18700,3940,300,4.1,10,9,64.4,3660,9,999999999,160,0.0160,0,88,999.000,999.0,99.0 +1980,11,4,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,14.4,6.6,59,89100,632,1391,343,234,85,195,25700,8400,21800,5630,360,3.8,10,8,64.4,4980,9,999999999,160,0.0160,0,88,999.000,999.0,99.0 +1980,11,4,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,13.9,6.7,61,89000,644,1391,341,343,304,201,36300,31000,21900,4480,50,3.4,10,8,64.4,6300,9,999999999,160,0.0160,0,88,999.000,999.0,99.0 +1980,11,4,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,6.7,64,89000,593,1391,332,315,320,177,33400,32100,19600,3820,110,3.1,10,7,64.4,7620,9,999999999,160,0.0160,0,88,999.000,999.0,99.0 +1980,11,4,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,12.9,6.9,66,89000,484,1391,327,249,228,169,26700,21600,19200,3860,110,2.6,10,6,64.4,77777,9,999999999,160,0.0160,0,88,999.000,999.0,99.0 +1980,11,4,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,12.6,6.9,67,89000,324,1391,323,149,304,77,15400,24400,9700,1410,120,2.0,10,5,64.4,77777,9,999999999,160,0.0160,0,88,999.000,999.0,99.0 +1980,11,4,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,6.7,69,88900,125,1391,318,52,90,44,5600,4600,5200,920,120,1.5,10,4,64.4,77777,9,999999999,160,0.0160,0,88,999.000,999.0,99.0 +1980,11,4,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,9.8,5.8,76,88900,1,151,304,6,14,3,0,0,0,0,150,1.7,8,3,64.4,77777,9,999999999,150,0.0160,0,88,999.000,999.0,99.0 +1980,11,4,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,7.4,4.6,82,88900,0,0,293,0,0,0,0,0,0,0,170,1.9,7,3,64.4,77777,9,999999999,139,0.0160,0,88,999.000,999.0,99.0 +1980,11,4,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,5.0,3.3,89,88900,0,0,279,0,0,0,0,0,0,0,200,2.1,5,2,24.1,77777,9,999999999,129,0.0160,0,88,999.000,999.0,99.0 +1980,11,4,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,4.4,3.0,89,88900,0,0,273,0,0,0,0,0,0,0,200,2.3,3,1,24.1,77777,9,999999999,129,0.0160,0,88,999.000,999.0,99.0 +1980,11,4,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,3.9,2.4,89,88900,0,0,270,0,0,0,0,0,0,0,190,2.4,2,1,24.1,77777,9,999999999,129,0.0160,0,88,999.000,999.0,99.0 +1980,11,4,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,3.3,1.7,89,88900,0,0,262,0,0,0,0,0,0,0,190,2.6,0,0,24.1,77777,9,999999999,120,0.0160,0,88,999.000,999.0,99.0 +1980,11,4,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,2.6,1.2,90,88900,0,0,259,0,0,0,0,0,0,0,190,2.2,0,0,24.1,77777,9,999999999,120,0.0160,0,88,999.000,999.0,99.0 +1980,11,5,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,1.8,1.0,91,88900,0,0,256,0,0,0,0,0,0,0,190,1.9,0,0,24.1,77777,9,999999999,110,0.0160,0,88,999.000,999.0,99.0 +1980,11,5,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,1.1,0.0,92,88900,0,0,252,0,0,0,0,0,0,0,190,1.5,0,0,24.1,77777,9,999999999,110,0.0160,0,88,999.000,999.0,99.0 +1980,11,5,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,0.5,-0.1,92,88800,0,0,250,0,0,0,0,0,0,0,190,1.7,0,0,24.1,77777,9,999999999,110,0.0160,0,88,999.000,999.0,99.0 +1980,11,5,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,0.0,-0.9,92,88800,0,0,248,0,0,0,0,0,0,0,190,1.9,0,0,24.1,77777,9,999999999,100,0.0160,0,88,999.000,999.0,99.0 +1980,11,5,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-0.6,-1.7,92,88800,0,0,245,0,0,0,0,0,0,0,190,2.1,0,0,24.1,77777,9,999999999,100,0.0160,0,88,999.000,999.0,99.0 +1980,11,5,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-0.6,-1.5,92,88800,0,0,245,0,0,0,0,0,0,0,250,1.4,0,0,24.1,77777,9,999999999,100,0.0160,0,88,999.000,999.0,99.0 +1980,11,5,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-0.6,-1.6,92,88700,0,0,250,0,0,0,0,0,0,0,300,0.7,1,1,24.1,77777,9,999999999,100,0.0160,0,88,999.000,999.0,99.0 +1980,11,5,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-0.6,-1.7,92,88700,51,986,249,24,111,15,2300,4100,2100,260,0,0.0,1,1,64.4,77777,9,999999999,100,0.0620,0,88,999.000,999.0,99.0 +1980,11,5,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,1.8,0.4,88,88700,247,1392,260,116,358,52,11800,25900,7100,910,0,0.0,3,1,64.4,77777,9,999999999,110,0.0620,0,88,999.000,999.0,99.0 +1980,11,5,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,4.3,2.1,84,88600,423,1392,271,249,593,67,25900,52800,9700,1280,0,0.0,6,1,64.4,77777,9,999999999,120,0.0620,0,88,999.000,999.0,99.0 +1980,11,5,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,3.3,80,88600,553,1392,282,352,658,89,36800,62500,11800,1770,0,0.0,8,1,64.4,77777,9,999999999,129,0.0620,0,88,999.000,999.0,99.0 +1980,11,5,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,9.3,3.6,69,88500,626,1392,293,398,583,134,40800,55800,15600,2620,360,0.5,9,1,64.4,77777,9,999999999,139,0.0620,0,88,999.000,999.0,99.0 +1980,11,5,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,11.8,3.5,59,88400,638,1392,308,426,689,108,44400,67000,13600,2220,350,1.0,9,2,64.4,77777,9,999999999,139,0.0620,0,88,999.000,999.0,99.0 +1980,11,5,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,3.3,48,88300,587,1392,319,376,583,127,38300,55200,15000,2420,350,1.5,10,2,64.4,77777,9,999999999,129,0.0620,0,88,999.000,999.0,99.0 +1980,11,5,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,12.7,3.7,55,88200,478,1392,315,243,388,108,25500,35800,13100,2040,290,1.9,10,3,64.4,77777,9,999999999,139,0.0620,0,88,999.000,999.0,99.0 +1980,11,5,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,11.1,3.9,62,88100,318,1392,308,156,301,86,15900,23900,10400,1600,240,2.2,10,3,64.4,77777,9,999999999,139,0.0620,0,88,999.000,999.0,99.0 +1980,11,5,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,3.9,69,88000,120,1392,303,38,61,32,4100,3100,3800,660,180,2.6,10,4,64.4,77777,9,999999999,139,0.0620,0,88,999.000,999.0,99.0 +1980,11,5,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,8.3,3.9,74,87900,1,104,303,1,0,1,0,0,0,0,120,1.7,10,6,64.4,77777,9,999999999,139,0.0620,0,88,999.000,999.0,99.0 +1980,11,5,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,7.2,3.7,78,87900,0,0,307,0,0,0,0,0,0,0,60,0.9,10,8,64.4,77777,9,999999999,139,0.0620,0,88,999.000,999.0,99.0 +1980,11,5,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,6.1,3.3,83,87900,0,0,317,0,0,0,0,0,0,0,0,0.0,10,10,24.1,7620,9,999999999,129,0.0620,0,88,999.000,999.0,99.0 +1980,11,5,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,5.2,3.0,85,87800,0,0,297,0,0,0,0,0,0,0,50,0.7,8,8,24.1,77777,9,999999999,129,0.0620,0,88,999.000,999.0,99.0 +1980,11,5,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,4.2,2.4,87,87800,0,0,285,0,0,0,0,0,0,0,100,1.4,7,6,24.1,77777,9,999999999,120,0.0620,0,88,999.000,999.0,99.0 +1980,11,5,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,3.3,1.7,89,87800,0,0,276,0,0,0,0,0,0,0,150,2.1,5,4,24.1,77777,9,999999999,120,0.0620,0,88,999.000,999.0,99.0 +1980,11,5,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,2.9,1.4,89,87800,0,0,272,0,0,0,0,0,0,0,180,1.9,4,3,24.1,77777,9,999999999,120,0.0620,0,88,999.000,999.0,99.0 +1980,11,6,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,2.6,1.4,89,87700,0,0,264,0,0,0,0,0,0,0,200,1.7,3,1,24.1,77777,9,999999999,110,0.0620,0,88,999.000,999.0,99.0 +1980,11,6,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,2.2,0.6,89,87700,0,0,257,0,0,0,0,0,0,0,230,1.5,2,0,24.1,77777,9,999999999,110,0.0620,0,88,999.000,999.0,99.0 +1980,11,6,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,1.8,0.9,90,87600,0,0,256,0,0,0,0,0,0,0,230,1.5,3,0,24.1,77777,9,999999999,110,0.0620,0,88,999.000,999.0,99.0 +1980,11,6,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,1.5,0.5,91,87600,0,0,254,0,0,0,0,0,0,0,240,1.5,3,0,24.1,77777,9,999999999,110,0.0620,0,88,999.000,999.0,99.0 +1980,11,6,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,1.1,0.0,92,87500,0,0,252,0,0,0,0,0,0,0,240,1.5,4,0,24.1,77777,9,999999999,110,0.0620,0,88,999.000,999.0,99.0 +1980,11,6,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,2.2,0.7,89,87500,0,0,268,0,0,0,0,0,0,0,250,2.2,6,3,24.1,77777,9,999999999,110,0.0620,0,88,999.000,999.0,99.0 +1980,11,6,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,3.3,1.3,85,87500,0,0,283,0,0,0,0,0,0,0,270,2.9,8,7,24.1,77777,9,999999999,120,0.0620,0,88,999.000,999.0,99.0 +1980,11,6,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,1.7,82,87500,47,940,307,14,4,14,1600,0,1600,490,280,3.6,10,10,64.4,2440,9,999999999,120,0.0250,0,88,999.000,999.0,99.0 +1980,11,6,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,7.4,2.3,70,87500,241,1393,313,88,50,80,9700,3900,9000,1850,280,3.3,10,9,64.4,2237,9,999999999,120,0.0250,0,88,999.000,999.0,99.0 +1980,11,6,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,10.3,2.5,59,87500,417,1393,319,138,112,104,15100,10200,12000,2320,280,2.9,9,8,64.4,2033,9,999999999,129,0.0250,0,88,999.000,999.0,99.0 +1980,11,6,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,2.2,47,87500,547,1393,327,217,216,131,23300,21300,14900,2650,280,2.6,9,7,64.4,1830,9,999999999,120,0.0250,0,88,999.000,999.0,99.0 +1980,11,6,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,13.3,2.5,47,87500,620,1393,328,322,409,138,34100,40200,16100,2760,270,3.5,8,7,64.4,2237,9,999999999,120,0.0250,0,88,999.000,999.0,99.0 +1980,11,6,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,13.3,2.4,47,87500,632,1393,324,340,334,188,36200,34000,20700,4130,260,4.3,7,6,64.4,2643,9,999999999,120,0.0250,0,88,999.000,999.0,99.0 +1980,11,6,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,2.2,47,87500,581,1393,324,251,90,213,27400,8800,23700,5710,250,5.2,6,6,64.4,3050,9,999999999,120,0.0250,0,88,999.000,999.0,99.0 +1980,11,6,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,12.6,2.2,49,87500,472,1393,324,259,343,141,27200,32300,16200,2910,250,5.2,7,7,64.4,3050,9,999999999,120,0.0250,0,88,999.000,999.0,99.0 +1980,11,6,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,11.8,2.1,51,87600,312,1393,320,136,131,106,14500,10700,12100,2300,240,5.2,7,7,64.4,3050,9,999999999,120,0.0250,0,88,999.000,999.0,99.0 +1980,11,6,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,1.7,53,87600,114,1393,322,44,72,38,4700,3500,4400,790,240,5.2,8,8,64.4,3050,9,999999999,120,0.0250,0,88,999.000,999.0,99.0 +1980,11,6,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,11.1,1.7,52,87600,0,81,329,3,0,2,0,0,0,0,250,5.7,9,9,64.4,2540,9,999999999,120,0.0250,0,88,999.000,999.0,99.0 +1980,11,6,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,11.1,1.5,51,87600,0,0,329,0,0,0,0,0,0,0,260,6.2,9,9,64.4,2030,9,999999999,120,0.0250,0,88,999.000,999.0,99.0 +1980,11,6,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,11.1,1.1,50,87600,0,0,337,0,0,0,0,0,0,0,270,6.7,10,10,24.1,1520,9,999999999,120,0.0250,0,88,999.000,999.0,99.0 +1980,11,6,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,8.7,1.1,60,87600,0,0,311,0,0,0,0,0,0,0,240,5.2,9,8,24.1,77777,9,999999999,120,0.0250,0,88,999.000,999.0,99.0 +1980,11,6,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,6.3,1.0,69,87600,0,0,292,0,0,0,0,0,0,0,210,3.6,9,6,24.1,77777,9,999999999,120,0.0250,0,88,999.000,999.0,99.0 +1980,11,6,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,3.9,0.6,79,87500,0,0,277,0,0,0,0,0,0,0,180,2.1,8,4,24.1,77777,9,999999999,110,0.0250,0,88,999.000,999.0,99.0 +1980,11,6,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,4.3,1.2,80,87500,0,0,279,0,0,0,0,0,0,0,180,2.1,8,4,24.1,77777,9,999999999,120,0.0250,0,88,999.000,999.0,99.0 +1980,11,7,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,4.6,2.1,81,87500,0,0,281,0,0,0,0,0,0,0,180,2.1,8,4,24.1,77777,9,999999999,120,0.0250,0,88,999.000,999.0,99.0 +1980,11,7,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,5.0,2.2,82,87500,0,0,283,0,0,0,0,0,0,0,180,2.1,8,4,24.1,77777,9,999999999,120,0.0250,0,88,999.000,999.0,99.0 +1980,11,7,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,4.6,2.3,82,87400,0,0,282,0,0,0,0,0,0,0,200,2.3,7,4,24.1,77777,9,999999999,120,0.0250,0,88,999.000,999.0,99.0 +1980,11,7,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,4.3,1.7,82,87400,0,0,278,0,0,0,0,0,0,0,210,2.4,6,3,24.1,77777,9,999999999,120,0.0250,0,88,999.000,999.0,99.0 +1980,11,7,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,3.9,1.1,82,87300,0,0,275,0,0,0,0,0,0,0,230,2.6,5,3,24.1,77777,9,999999999,120,0.0250,0,88,999.000,999.0,99.0 +1980,11,7,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,4.6,1.6,80,87200,0,0,281,0,0,0,0,0,0,0,230,2.4,7,4,24.1,77777,9,999999999,120,0.0250,0,88,999.000,999.0,99.0 +1980,11,7,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,5.4,2.0,78,87100,0,0,284,0,0,0,0,0,0,0,230,2.3,8,4,24.1,77777,9,999999999,120,0.0250,0,88,999.000,999.0,99.0 +1980,11,7,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,2.2,76,87100,44,917,290,20,19,19,2200,1000,2100,450,230,2.1,10,5,64.4,77777,9,999999999,120,0.0170,0,88,999.000,999.0,99.0 +1980,11,7,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,9.1,3.9,69,87100,235,1393,310,88,77,75,9500,5600,8500,1600,270,1.4,10,7,64.4,77777,9,999999999,139,0.0170,0,88,999.000,999.0,99.0 +1980,11,7,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,12.0,5.2,63,87000,411,1393,330,165,174,113,17900,15800,13300,2520,320,0.7,10,8,64.4,77777,9,999999999,150,0.0170,0,88,999.000,999.0,99.0 +1980,11,7,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,6.1,56,87000,541,1393,363,89,5,87,10500,300,10400,3740,0,0.0,10,10,48.3,3050,9,999999999,160,0.0170,0,88,999.000,999.0,99.0 +1980,11,7,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,14.1,7.0,62,86900,614,1393,359,158,7,155,18100,500,17800,6200,40,0.7,10,10,48.3,2593,9,999999999,160,0.0170,0,88,999.000,999.0,99.0 +1980,11,7,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,13.1,7.4,69,86900,626,1393,355,244,6,241,26900,500,26700,8200,80,1.4,10,10,48.3,2137,9,999999999,170,0.0170,0,88,999.000,999.0,99.0 +1980,11,7,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,7.8,75,86800,575,1393,351,111,11,106,12900,700,12600,4500,120,2.1,10,10,24.1,1680,9,999999999,170,0.0170,0,88,999.000,999.0,99.0 +1980,11,7,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,12.4,7.0,70,86600,466,1393,351,135,5,134,15200,300,15100,4810,170,2.8,10,10,24.1,2033,9,999999999,160,0.0170,0,88,999.000,999.0,99.0 +1980,11,7,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,12.6,6.1,64,86500,307,1393,351,95,0,95,10400,0,10400,3060,220,3.4,10,10,24.1,2387,9,999999999,150,0.0170,0,88,999.000,999.0,99.0 +1980,11,7,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,5.0,59,86400,109,1393,350,41,0,41,4400,0,4400,1120,270,4.1,10,10,24.1,2740,9,999999999,139,0.0170,0,88,999.000,999.0,99.0 +1980,11,7,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,10.2,4.3,67,86500,0,35,337,0,0,0,0,0,0,0,270,3.4,10,10,24.1,2183,9,999999999,139,0.0170,0,88,999.000,999.0,99.0 +1980,11,7,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,7.6,3.3,74,86600,0,0,324,0,0,0,0,0,0,0,270,2.8,10,10,24.1,1627,9,999999999,129,0.0170,0,88,999.000,999.0,99.0 +1980,11,7,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,5.0,2.2,82,86800,0,0,311,0,0,0,0,0,0,0,270,2.1,10,10,24.1,1070,9,999999999,120,0.0170,0,88,999.000,999.0,99.0 +1980,11,7,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,5.7,2.2,77,86800,0,0,305,0,0,0,0,0,0,0,270,3.5,9,9,24.1,1100,9,999999999,120,0.0170,0,88,999.000,999.0,99.0 +1980,11,7,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,6.5,2.1,73,86900,0,0,309,0,0,0,0,0,0,0,260,4.8,9,9,24.1,1130,9,999999999,120,0.0170,0,88,999.000,999.0,99.0 +1980,11,7,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,7.2,1.7,68,86900,0,0,305,0,0,0,0,0,0,0,260,6.2,8,8,24.1,1160,9,999999999,120,0.0170,0,88,999.000,999.0,99.0 +1980,11,7,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,7.2,0.8,64,86900,0,0,299,0,0,0,0,0,0,0,260,5.5,7,7,24.1,77777,9,999999999,110,0.0170,0,88,999.000,999.0,99.0 +1980,11,8,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,7.2,0.3,60,86900,0,0,295,0,0,0,0,0,0,0,270,4.8,6,6,24.1,77777,9,999999999,110,0.0170,0,88,999.000,999.0,99.0 +1980,11,8,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,7.2,-1.1,56,86900,0,0,291,0,0,0,0,0,0,0,270,4.1,5,5,24.1,77777,9,999999999,100,0.0170,0,88,999.000,999.0,99.0 +1980,11,8,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,7.4,-1.0,54,86900,0,0,292,0,0,0,0,0,0,0,270,6.2,5,5,24.1,77777,9,999999999,100,0.0170,0,88,999.000,999.0,99.0 +1980,11,8,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,7.6,-1.6,52,86900,0,0,292,0,0,0,0,0,0,0,260,8.2,5,5,24.1,77777,9,999999999,100,0.0170,0,88,999.000,999.0,99.0 +1980,11,8,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,7.8,-2.2,50,86900,0,0,292,0,0,0,0,0,0,0,260,10.3,5,5,24.1,77777,9,999999999,100,0.0170,0,88,999.000,999.0,99.0 +1980,11,8,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,7.8,-1.9,51,87000,0,0,290,0,0,0,0,0,0,0,260,12.0,4,4,24.1,77777,9,999999999,100,0.0170,0,88,999.000,999.0,99.0 +1980,11,8,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,7.8,-1.7,51,87000,0,0,288,0,0,0,0,0,0,0,260,13.7,3,3,24.1,77777,9,999999999,100,0.0170,0,88,999.000,999.0,99.0 +1980,11,8,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,-1.7,52,87000,40,871,285,21,62,16,2100,1800,2000,280,260,15.4,2,2,48.3,77777,9,999999999,100,0.0650,0,88,999.000,999.0,99.0 +1980,11,8,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,8.7,-1.3,49,87100,230,1394,290,112,425,41,11400,30100,6400,740,260,14.6,2,2,48.3,77777,9,999999999,100,0.0650,0,88,999.000,999.0,99.0 +1980,11,8,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,9.7,-1.3,46,87200,406,1394,294,242,636,56,24800,56200,8400,1080,260,13.7,2,2,48.3,77777,9,999999999,100,0.0650,0,88,999.000,999.0,99.0 +1980,11,8,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,-1.7,43,87300,535,1394,297,348,667,90,36100,62800,12000,1760,260,12.9,2,2,64.4,77777,9,999999999,100,0.0650,0,88,999.000,999.0,99.0 +1980,11,8,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,10.8,-1.4,42,87300,608,1394,298,402,705,92,42200,68400,12200,1890,260,12.9,2,2,64.4,77777,9,999999999,100,0.0650,0,88,999.000,999.0,99.0 +1980,11,8,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,10.9,-1.5,42,87400,620,1394,301,385,617,108,40000,59600,13300,2180,260,12.9,3,3,64.4,77777,9,999999999,100,0.0650,0,88,999.000,999.0,99.0 +1980,11,8,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,-1.7,41,87400,569,1394,302,331,524,115,35300,50700,14500,2230,260,12.9,3,3,64.4,77777,9,999999999,100,0.0650,0,88,999.000,999.0,99.0 +1980,11,8,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,10.2,-2.3,41,87500,461,1394,295,307,715,68,31100,64900,9600,1270,260,10.8,2,2,64.4,77777,9,999999999,89,0.0650,0,88,999.000,999.0,99.0 +1980,11,8,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,9.2,-3.0,42,87500,301,1394,286,166,575,40,16900,46900,6800,790,260,8.8,1,1,64.4,77777,9,999999999,89,0.0650,0,88,999.000,999.0,99.0 +1980,11,8,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,-3.9,42,87600,105,1394,276,45,285,21,4300,14000,3300,370,260,6.7,0,0,64.4,77777,9,999999999,89,0.0650,0,88,999.000,999.0,99.0 +1980,11,8,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,7.2,-3.7,46,87600,0,12,272,0,0,0,0,0,0,0,320,6.0,0,0,64.4,77777,9,999999999,89,0.0650,0,88,999.000,999.0,99.0 +1980,11,8,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,6.1,-3.7,49,87700,0,0,268,0,0,0,0,0,0,0,10,5.3,0,0,64.4,77777,9,999999999,89,0.0650,0,88,999.000,999.0,99.0 +1980,11,8,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,5.0,-3.9,53,87700,0,0,263,0,0,0,0,0,0,0,70,4.6,0,0,24.1,77777,9,999999999,89,0.0650,0,88,999.000,999.0,99.0 +1980,11,8,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,4.8,-3.7,54,87700,0,0,263,0,0,0,0,0,0,0,110,3.9,0,0,24.1,77777,9,999999999,89,0.0650,0,88,999.000,999.0,99.0 +1980,11,8,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,4.6,-3.7,54,87800,0,0,262,0,0,0,0,0,0,0,160,3.3,0,0,24.1,77777,9,999999999,89,0.0650,0,88,999.000,999.0,99.0 +1980,11,8,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,4.4,-3.9,55,87800,0,0,261,0,0,0,0,0,0,0,200,2.6,0,0,24.1,77777,9,999999999,89,0.0650,0,88,999.000,999.0,99.0 +1980,11,8,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,4.8,-3.5,55,87800,0,0,263,0,0,0,0,0,0,0,210,4.1,1,0,24.1,77777,9,999999999,89,0.0650,0,88,999.000,999.0,99.0 +1980,11,9,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,5.2,-2.7,55,87800,0,0,265,0,0,0,0,0,0,0,230,5.7,2,0,24.1,77777,9,999999999,89,0.0650,0,88,999.000,999.0,99.0 +1980,11,9,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,5.6,-2.8,55,87800,0,0,267,0,0,0,0,0,0,0,240,7.2,3,0,24.1,77777,9,999999999,89,0.0650,0,88,999.000,999.0,99.0 +1980,11,9,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,4.8,-2.5,57,87800,0,0,273,0,0,0,0,0,0,0,220,5.7,4,2,24.1,77777,9,999999999,89,0.0650,0,88,999.000,999.0,99.0 +1980,11,9,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,4.1,-2.9,60,87800,0,0,274,0,0,0,0,0,0,0,190,4.1,5,4,24.1,77777,9,999999999,89,0.0650,0,88,999.000,999.0,99.0 +1980,11,9,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,3.3,-3.3,62,87800,0,0,275,0,0,0,0,0,0,0,170,2.6,6,6,24.1,1830,9,999999999,89,0.0650,0,88,999.000,999.0,99.0 +1980,11,9,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,2.4,-3.3,65,87800,0,0,269,0,0,0,0,0,0,0,160,2.6,5,5,24.1,77777,9,999999999,89,0.0650,0,88,999.000,999.0,99.0 +1980,11,9,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,1.5,-3.6,69,87900,0,0,266,0,0,0,0,0,0,0,140,2.6,5,5,24.1,77777,9,999999999,89,0.0650,0,88,999.000,999.0,99.0 +1980,11,9,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.6,-3.9,72,87900,37,848,260,19,27,17,2000,1000,2000,350,130,2.6,4,4,64.4,77777,9,999999999,89,0.0360,0,88,999.000,999.0,99.0 +1980,11,9,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,3.2,-3.9,61,87900,224,1395,268,97,346,41,9900,24200,6000,740,170,2.8,3,3,64.4,77777,9,999999999,89,0.0360,0,88,999.000,999.0,99.0 +1980,11,9,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,5.7,-4.2,50,87900,400,1395,277,181,340,83,19200,29700,10600,1520,200,2.9,3,3,64.4,77777,9,999999999,89,0.0360,0,88,999.000,999.0,99.0 +1980,11,9,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,-5.0,39,88000,529,1395,284,343,709,72,35200,66400,10000,1410,240,3.1,2,2,64.4,77777,9,999999999,80,0.0360,0,88,999.000,999.0,99.0 +1980,11,9,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,9.2,-4.9,36,87900,602,1395,288,406,768,72,42400,74000,10400,1510,250,4.3,2,2,64.4,77777,9,999999999,80,0.0360,0,88,999.000,999.0,99.0 +1980,11,9,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,10.2,-5.2,34,87900,614,1395,294,386,670,88,40600,65200,11800,1830,270,5.5,3,3,64.4,77777,9,999999999,80,0.0360,0,88,999.000,999.0,99.0 +1980,11,9,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,-5.6,31,87900,564,1395,298,361,711,70,37400,67700,9900,1440,280,6.7,3,3,64.4,77777,9,999999999,80,0.0360,0,88,999.000,999.0,99.0 +1980,11,9,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,9.6,-4.9,36,87900,455,1395,292,261,472,105,27300,42900,13200,1980,260,5.0,3,3,64.4,77777,9,999999999,80,0.0360,0,88,999.000,999.0,99.0 +1980,11,9,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,8.2,-4.3,42,87900,296,1395,284,160,486,55,16300,38000,8100,990,250,3.2,2,2,64.4,77777,9,999999999,89,0.0360,0,88,999.000,999.0,99.0 +1980,11,9,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,-3.9,47,87900,100,1383,279,45,307,20,4500,15300,3300,360,230,1.5,2,2,64.4,77777,9,999999999,89,0.0360,0,88,999.000,999.0,99.0 +1980,11,9,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,4.7,-3.7,55,87900,0,0,267,0,0,0,0,0,0,0,170,1.9,1,1,64.4,77777,9,999999999,89,0.0360,0,88,999.000,999.0,99.0 +1980,11,9,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,2.6,-3.7,64,88000,0,0,259,0,0,0,0,0,0,0,120,2.2,1,1,64.4,77777,9,999999999,89,0.0360,0,88,999.000,999.0,99.0 +1980,11,9,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,0.6,-3.9,72,88000,0,0,247,0,0,0,0,0,0,0,60,2.6,0,0,24.1,77777,9,999999999,89,0.0360,0,88,999.000,999.0,99.0 +1980,11,9,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,0.0,-3.7,75,88000,0,0,253,0,0,0,0,0,0,0,20,2.4,2,2,24.1,77777,9,999999999,89,0.0360,0,88,999.000,999.0,99.0 +1980,11,9,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-0.5,-3.7,79,88000,0,0,254,0,0,0,0,0,0,0,330,2.3,3,3,24.1,77777,9,999999999,89,0.0360,0,88,999.000,999.0,99.0 +1980,11,9,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-1.1,-3.9,82,88000,0,0,255,0,0,0,0,0,0,0,290,2.1,5,5,24.1,77777,9,999999999,89,0.0360,0,88,999.000,999.0,99.0 +1980,11,9,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-2.0,-4.4,84,88000,0,0,250,0,0,0,0,0,0,0,310,1.4,4,4,24.1,77777,9,999999999,80,0.0360,0,88,999.000,999.0,99.0 +1980,11,10,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-3.0,-4.6,86,88000,0,0,241,0,0,0,0,0,0,0,340,0.7,2,2,24.1,77777,9,999999999,80,0.0360,0,88,999.000,999.0,99.0 +1980,11,10,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-3.9,-5.6,88,88000,0,0,234,0,0,0,0,0,0,0,0,0.0,1,1,24.1,77777,9,999999999,80,0.0360,0,88,999.000,999.0,99.0 +1980,11,10,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-2.8,-4.2,87,88000,0,0,245,0,0,0,0,0,0,0,10,0.5,4,3,24.1,77777,9,999999999,80,0.0360,0,88,999.000,999.0,99.0 +1980,11,10,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-1.7,-3.5,86,88000,0,0,256,0,0,0,0,0,0,0,10,1.0,7,6,24.1,77777,9,999999999,89,0.0360,0,88,999.000,999.0,99.0 +1980,11,10,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-0.6,-2.8,85,88100,0,0,268,0,0,0,0,0,0,0,20,1.5,10,8,24.1,1680,9,999999999,89,0.0360,0,88,999.000,999.0,99.0 +1980,11,10,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-0.8,-2.8,85,88100,0,0,267,0,0,0,0,0,0,0,10,1.0,10,8,24.1,1730,9,999999999,89,0.0360,0,88,999.000,999.0,99.0 +1980,11,10,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-0.9,-3.0,85,88100,0,0,272,0,0,0,0,0,0,0,10,0.5,10,9,24.1,1780,9,999999999,89,0.0360,0,88,999.000,999.0,99.0 +1980,11,10,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.1,-3.3,85,88100,34,802,271,12,7,11,1200,400,1200,280,0,0.0,10,9,48.3,1830,9,999999999,89,0.0330,0,88,999.000,999.0,99.0 +1980,11,10,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,0.0,-1.8,85,88100,218,1395,277,60,28,55,6500,2100,6200,1350,30,0.5,10,9,48.3,1677,9,999999999,100,0.0330,0,88,999.000,999.0,99.0 +1980,11,10,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,1.1,-0.7,85,88200,394,1395,291,112,13,109,12600,800,12400,3830,60,1.0,10,10,48.3,1523,9,999999999,100,0.0330,0,88,999.000,999.0,99.0 +1980,11,10,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,0.0,85,88200,523,1395,296,147,2,146,16500,100,16500,5430,90,1.5,10,10,24.1,1370,9,999999999,110,0.0330,0,88,999.000,999.0,99.0 +1980,11,10,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,3.9,-0.8,72,88200,596,1395,294,224,99,181,24500,9700,20400,5130,150,3.1,9,9,24.1,1420,9,999999999,100,0.0330,0,88,999.000,999.0,99.0 +1980,11,10,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,5.5,-2.0,60,88100,608,1395,300,228,95,186,25000,9300,20900,5300,200,4.6,9,9,24.1,1470,9,999999999,100,0.0330,0,88,999.000,999.0,99.0 +1980,11,10,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,-3.3,47,88100,558,1395,299,346,503,142,35900,48200,16600,2800,260,6.2,8,8,48.3,1520,9,999999999,89,0.0330,0,88,999.000,999.0,99.0 +1980,11,10,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,5.9,-3.3,51,88200,450,1395,286,162,148,114,17800,13800,13300,2570,270,5.2,9,6,48.3,77777,9,999999999,89,0.0330,0,88,999.000,999.0,99.0 +1980,11,10,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,4.6,-3.5,56,88200,291,1395,276,135,316,67,13900,24200,8800,1220,270,4.1,9,4,48.3,77777,9,999999999,89,0.0330,0,88,999.000,999.0,99.0 +1980,11,10,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,-3.9,60,88300,95,1361,265,41,116,32,4200,4500,3900,600,280,3.1,10,2,64.4,77777,9,999999999,89,0.0330,0,88,999.000,999.0,99.0 +1980,11,10,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,2.6,-3.9,62,88300,0,0,267,0,0,0,0,0,0,0,270,3.6,10,4,64.4,77777,9,999999999,89,0.0330,0,88,999.000,999.0,99.0 +1980,11,10,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,1.8,-4.1,65,88300,0,0,272,0,0,0,0,0,0,0,260,4.1,10,7,64.4,77777,9,999999999,89,0.0330,0,88,999.000,999.0,99.0 +1980,11,10,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,1.1,-4.4,67,88400,0,0,279,0,0,0,0,0,0,0,250,4.6,10,9,24.1,7620,9,999999999,80,0.0330,0,88,999.000,999.0,99.0 +1980,11,10,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,0.5,-4.4,69,88400,0,0,276,0,0,0,0,0,0,0,220,3.8,10,9,24.1,7620,9,999999999,80,0.0330,0,88,999.000,999.0,99.0 +1980,11,10,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,0.0,-4.6,70,88400,0,0,282,0,0,0,0,0,0,0,200,2.9,10,10,24.1,7620,9,999999999,80,0.0330,0,88,999.000,999.0,99.0 +1980,11,10,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-0.6,-5.0,72,88500,0,0,279,0,0,0,0,0,0,0,170,2.1,10,10,24.1,7620,9,999999999,80,0.0330,0,88,999.000,999.0,99.0 +1980,11,10,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-1.0,-4.7,75,88400,0,0,278,0,0,0,0,0,0,0,130,2.4,10,10,24.1,6300,9,999999999,80,0.0330,0,88,999.000,999.0,99.0 +1980,11,11,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-1.3,-4.1,79,88400,0,0,277,0,0,0,0,0,0,0,80,2.8,10,10,24.1,4980,9,999999999,80,0.0330,0,88,999.000,999.0,99.0 +1980,11,11,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-1.7,-4.4,82,88400,0,0,275,0,0,0,0,0,0,0,40,3.1,10,10,24.1,3660,9,999999999,80,0.0330,0,88,999.000,999.0,99.0 +1980,11,11,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-1.3,-3.8,81,88300,0,0,277,0,0,0,0,0,0,0,80,2.8,10,10,24.1,2897,9,999999999,89,0.0330,0,88,999.000,999.0,99.0 +1980,11,11,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-1.0,-3.8,79,88300,0,0,279,0,0,0,0,0,0,0,130,2.4,10,10,24.1,2133,9,999999999,89,0.0330,0,88,999.000,999.0,99.0 +1980,11,11,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-0.6,-3.9,78,88300,0,0,280,0,0,0,0,0,0,0,170,2.1,10,10,24.1,1370,9,999999999,89,0.0330,0,88,999.000,999.0,99.0 +1980,11,11,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-0.6,-3.5,79,88300,0,0,281,0,0,0,0,0,0,0,160,1.9,10,10,24.1,1370,9,999999999,89,0.0330,0,88,999.000,999.0,99.0 +1980,11,11,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-0.6,-3.4,81,88300,0,0,281,0,0,0,0,0,0,0,150,1.7,10,10,24.1,1370,9,999999999,89,0.0330,0,88,999.000,999.0,99.0 +1980,11,11,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-0.6,-3.3,82,88300,31,779,281,11,2,11,1300,0,1300,390,140,1.5,10,10,24.1,1370,9,999999999,89,0.0410,0,88,999.000,999.0,99.0 +1980,11,11,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,-0.2,-2.4,83,88300,213,1396,283,42,1,42,4800,0,4800,1500,190,1.9,10,10,24.1,1107,9,999999999,89,0.0410,0,88,999.000,999.0,99.0 +1980,11,11,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,0.2,-1.8,84,88300,388,1396,286,101,14,97,11400,800,11100,3520,250,2.2,10,10,24.1,843,9,999999999,100,0.0410,0,88,999.000,999.0,99.0 +1980,11,11,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.6,-1.7,85,88300,517,1396,287,136,5,134,15400,300,15200,5090,300,2.6,10,10,4.8,580,9,999999999,100,0.0410,0,88,999.000,999.0,99.0 +1980,11,11,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,0.6,-1.4,85,88200,590,1396,288,200,4,198,22200,300,22100,7070,300,2.9,10,10,4.8,620,9,999999999,100,0.0410,0,88,999.000,999.0,99.0 +1980,11,11,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,0.6,-1.5,85,88200,602,1396,288,173,4,172,19600,300,19500,6570,300,3.3,10,10,4.8,660,9,999999999,100,0.0410,0,88,999.000,999.0,99.0 +1980,11,11,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.6,-1.7,85,88200,553,1396,287,166,3,165,18600,200,18500,6070,300,3.6,10,10,6.4,700,9,999999999,100,0.0410,0,88,999.000,999.0,99.0 +1980,11,11,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,0.4,-1.3,87,88200,445,1396,287,144,3,143,15900,200,15900,4850,290,3.4,10,10,6.4,527,9,999999999,100,0.0410,0,88,999.000,999.0,99.0 +1980,11,11,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,0.2,-1.1,90,88200,286,1396,286,103,2,103,11200,100,11200,3040,290,3.3,10,10,6.4,353,9,999999999,100,0.0410,0,88,999.000,999.0,99.0 +1980,11,11,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.0,-1.1,92,88200,91,1315,286,27,0,27,3000,0,3000,860,280,3.1,10,10,3.2,180,9,999999999,100,0.0410,0,88,999.000,999.0,99.0 +1980,11,11,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-0.2,-1.1,92,88200,0,0,285,0,0,0,0,0,0,0,280,2.9,10,10,3.2,180,9,999999999,100,0.0410,0,88,999.000,999.0,99.0 +1980,11,11,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-0.4,-1.3,92,88200,0,0,284,0,0,0,0,0,0,0,290,2.8,10,10,3.2,180,9,999999999,100,0.0410,0,88,999.000,999.0,99.0 +1980,11,11,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-0.6,-1.7,92,88300,0,0,282,0,0,0,0,0,0,0,290,2.6,10,10,4.0,180,9,999999999,100,0.0410,0,88,999.000,999.0,99.0 +1980,11,11,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-0.6,-1.9,90,88300,0,0,282,0,0,0,0,0,0,0,290,2.6,10,10,4.0,577,9,999999999,100,0.0410,0,88,999.000,999.0,99.0 +1980,11,11,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-0.6,-2.2,87,88300,0,0,282,0,0,0,0,0,0,0,280,2.6,10,10,4.0,973,9,999999999,89,0.0410,0,88,999.000,999.0,99.0 +1980,11,11,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-0.6,-2.8,85,88300,0,0,281,0,0,0,0,0,0,0,280,2.6,10,10,16.1,1370,9,999999999,89,0.0410,0,88,999.000,999.0,99.0 +1980,11,11,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-0.6,-2.5,86,88300,0,0,282,0,0,0,0,0,0,0,310,1.7,10,10,16.1,963,9,999999999,89,0.0410,0,88,999.000,999.0,99.0 +1980,11,12,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-0.6,-1.9,88,88300,0,0,282,0,0,0,0,0,0,0,330,0.9,10,10,16.1,557,9,999999999,89,0.0410,0,88,999.000,999.0,99.0 +1980,11,12,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-0.6,-2.2,89,88300,0,0,282,0,0,0,0,0,0,0,0,0.0,10,10,3.2,150,9,999999999,100,0.0410,0,88,999.000,999.0,99.0 +1980,11,12,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-1.0,-1.9,90,88300,0,0,281,0,0,0,0,0,0,0,0,0.0,10,10,3.2,863,9,999999999,89,0.0410,0,88,999.000,999.0,99.0 +1980,11,12,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-1.3,-2.3,91,88300,0,0,279,0,0,0,0,0,0,0,0,0.0,10,10,3.2,1577,9,999999999,89,0.0410,0,88,999.000,999.0,99.0 +1980,11,12,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-1.7,-2.8,92,88300,0,0,277,0,0,0,0,0,0,0,0,0.0,10,10,16.1,2290,9,999999999,89,0.0410,0,88,999.000,999.0,99.0 +1980,11,12,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-2.2,-3.2,92,88400,0,0,267,0,0,0,0,0,0,0,310,0.5,9,9,16.1,1913,9,999999999,89,0.0410,0,88,999.000,999.0,99.0 +1980,11,12,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-2.8,-3.7,92,88400,0,0,258,0,0,0,0,0,0,0,260,1.0,9,8,16.1,1537,9,999999999,89,0.0410,0,88,999.000,999.0,99.0 +1980,11,12,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-3.3,-4.4,92,88500,28,733,252,13,6,13,0,0,0,0,210,1.5,8,7,48.3,1160,9,999999999,80,0.0580,0,88,999.000,999.0,99.0 +1980,11,12,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,-2.2,-3.5,89,88500,207,1397,254,82,204,52,8500,13200,6500,950,260,1.0,7,6,48.3,77777,9,999999999,89,0.0580,0,88,999.000,999.0,99.0 +1980,11,12,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,-1.1,-2.9,85,88500,382,1397,256,143,60,127,15700,5400,14200,3140,310,0.5,6,5,48.3,77777,9,999999999,89,0.0580,0,88,999.000,999.0,99.0 +1980,11,12,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.0,-2.8,82,88600,511,1397,259,259,398,113,27400,37400,13700,2160,0,0.0,5,4,48.3,77777,9,999999999,89,0.0580,0,88,999.000,999.0,99.0 +1980,11,12,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,0.9,-2.5,77,88600,584,1397,264,384,587,136,40400,56900,16500,2690,10,0.9,6,5,48.3,77777,9,999999999,89,0.0580,0,88,999.000,999.0,99.0 +1980,11,12,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,1.9,-2.6,72,88600,597,1397,274,312,408,136,32900,39800,15900,2700,20,1.7,8,7,48.3,77777,9,999999999,89,0.0580,0,88,999.000,999.0,99.0 +1980,11,12,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,-2.8,67,88600,547,1397,281,231,215,147,24700,21200,16400,3050,30,2.6,9,8,64.4,1370,9,999999999,89,0.0580,0,88,999.000,999.0,99.0 +1980,11,12,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,2.2,-3.4,66,88600,440,1397,274,156,76,132,17100,7000,14900,3460,20,1.7,8,7,64.4,1270,9,999999999,89,0.0580,0,88,999.000,999.0,99.0 +1980,11,12,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,1.7,-4.1,65,88600,281,1397,271,111,230,64,11500,17300,8000,1160,10,0.9,7,7,64.4,1170,9,999999999,89,0.0580,0,88,999.000,999.0,99.0 +1980,11,12,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.1,-5.0,64,88700,87,1292,265,39,154,26,3800,6400,3400,470,0,0.0,6,6,64.4,1070,9,999999999,80,0.0580,0,88,999.000,999.0,99.0 +1980,11,12,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,0.0,-5.2,68,88700,0,0,261,0,0,0,0,0,0,0,330,1.2,6,6,64.4,77777,9,999999999,80,0.0580,0,88,999.000,999.0,99.0 +1980,11,12,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-1.1,-5.6,71,88800,0,0,254,0,0,0,0,0,0,0,300,2.4,5,5,64.4,77777,9,999999999,80,0.0580,0,88,999.000,999.0,99.0 +1980,11,12,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-2.2,-6.1,75,88800,0,0,249,0,0,0,0,0,0,0,270,3.6,5,5,24.1,77777,9,999999999,80,0.0580,0,88,999.000,999.0,99.0 +1980,11,12,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-3.1,-6.3,78,88900,0,0,244,0,0,0,0,0,0,0,260,3.1,4,4,24.1,77777,9,999999999,80,0.0580,0,88,999.000,999.0,99.0 +1980,11,12,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-4.1,-6.6,82,88900,0,0,238,0,0,0,0,0,0,0,260,2.6,3,3,24.1,77777,9,999999999,69,0.0580,0,88,999.000,999.0,99.0 +1980,11,12,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-5.0,-7.2,85,88900,0,0,232,0,0,0,0,0,0,0,250,2.1,2,2,24.1,77777,9,999999999,69,0.0580,0,88,999.000,999.0,99.0 +1980,11,12,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-5.9,-7.9,86,88900,0,0,225,0,0,0,0,0,0,0,290,1.4,1,1,24.1,77777,9,999999999,69,0.0580,0,88,999.000,999.0,99.0 +1980,11,13,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-6.9,-8.2,87,88900,0,0,222,0,0,0,0,0,0,0,320,0.7,1,1,24.1,77777,9,999999999,69,0.0580,0,88,999.000,999.0,99.0 +1980,11,13,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-7.8,-9.4,88,88900,0,0,214,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,60,0.0580,0,88,999.000,999.0,99.0 +1980,11,13,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-8.0,-9.1,88,89000,0,0,213,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,60,0.0580,0,88,999.000,999.0,99.0 +1980,11,13,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-8.1,-9.5,88,89000,0,0,213,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,60,0.0580,0,88,999.000,999.0,99.0 +1980,11,13,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-8.3,-10.0,88,89000,0,0,212,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,60,0.0580,0,88,999.000,999.0,99.0 +1980,11,13,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-7.9,-9.6,87,89100,0,0,213,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,60,0.0580,0,88,999.000,999.0,99.0 +1980,11,13,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-7.6,-9.5,85,89100,0,0,214,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,60,0.0580,0,88,999.000,999.0,99.0 +1980,11,13,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-7.2,-9.4,84,89100,26,710,216,20,131,8,0,0,0,0,0,0.0,0,0,48.3,77777,9,999999999,60,0.0340,0,88,999.000,999.0,99.0 +1980,11,13,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,-5.5,-7.7,82,89100,202,1397,223,110,595,23,11600,44200,5200,540,20,0.9,0,0,48.3,77777,9,999999999,69,0.0340,0,88,999.000,999.0,99.0 +1980,11,13,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,-3.9,-6.4,80,89200,377,1397,229,243,774,33,25700,68100,7300,850,30,1.7,0,0,48.3,77777,9,999999999,69,0.0340,0,88,999.000,999.0,99.0 +1980,11,13,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-2.2,-5.6,78,89200,506,1397,236,350,852,40,37100,79600,8100,1050,50,2.6,0,0,64.4,77777,9,999999999,80,0.0340,0,88,999.000,999.0,99.0 +1980,11,13,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,-0.9,-5.6,70,89100,579,1397,240,414,887,44,43700,84600,8500,1160,80,2.4,0,0,64.4,77777,9,999999999,80,0.0340,0,88,999.000,999.0,99.0 +1980,11,13,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,0.4,-6.2,62,89100,591,1397,244,430,902,45,45300,86300,8600,1180,110,2.3,0,0,64.4,77777,9,999999999,80,0.0340,0,88,999.000,999.0,99.0 +1980,11,13,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,-6.7,54,89000,542,1397,248,389,884,42,40900,83500,8400,1110,140,2.1,0,0,64.4,77777,9,999999999,69,0.0340,0,88,999.000,999.0,99.0 +1980,11,13,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,0.4,-6.5,60,89000,434,1397,244,296,823,36,31100,74700,7700,940,150,2.3,0,0,64.4,77777,9,999999999,80,0.0340,0,88,999.000,999.0,99.0 +1980,11,13,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,-0.9,-6.5,66,89000,276,1397,239,168,694,28,17600,56500,6400,690,160,2.4,0,0,64.4,77777,9,999999999,80,0.0340,0,88,999.000,999.0,99.0 +1980,11,13,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-2.2,-6.7,72,89000,83,1269,235,44,343,15,4000,18800,2600,300,170,2.6,0,0,64.4,77777,9,999999999,80,0.0340,0,88,999.000,999.0,99.0 +1980,11,13,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-3.1,-7.0,74,89000,0,0,231,0,0,0,0,0,0,0,210,2.8,0,0,64.4,77777,9,999999999,69,0.0340,0,88,999.000,999.0,99.0 +1980,11,13,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-4.1,-7.6,76,89100,0,0,227,0,0,0,0,0,0,0,250,2.9,0,0,64.4,77777,9,999999999,69,0.0340,0,88,999.000,999.0,99.0 +1980,11,13,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-5.0,-8.3,78,89100,0,0,224,0,0,0,0,0,0,0,290,3.1,0,0,24.1,77777,9,999999999,69,0.0340,0,88,999.000,999.0,99.0 +1980,11,13,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-5.7,-8.7,79,89100,0,0,221,0,0,0,0,0,0,0,280,2.6,0,0,24.1,77777,9,999999999,69,0.0340,0,88,999.000,999.0,99.0 +1980,11,13,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-6.5,-9.2,80,89100,0,0,218,0,0,0,0,0,0,0,260,2.0,0,0,24.1,77777,9,999999999,60,0.0340,0,88,999.000,999.0,99.0 +1980,11,13,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-7.2,-10.0,81,89100,0,0,215,0,0,0,0,0,0,0,250,1.5,0,0,24.1,77777,9,999999999,60,0.0340,0,88,999.000,999.0,99.0 +1980,11,13,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-7.8,-10.3,82,89100,0,0,213,0,0,0,0,0,0,0,230,1.7,0,0,24.1,77777,9,999999999,60,0.0340,0,88,999.000,999.0,99.0 +1980,11,14,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-8.3,-10.3,83,89100,0,0,211,0,0,0,0,0,0,0,200,1.9,0,0,24.1,77777,9,999999999,60,0.0340,0,88,999.000,999.0,99.0 +1980,11,14,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-8.9,-11.1,84,89000,0,0,209,0,0,0,0,0,0,0,180,2.1,0,0,24.1,77777,9,999999999,60,0.0340,0,88,999.000,999.0,99.0 +1980,11,14,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-9.3,-11.0,84,89000,0,0,208,0,0,0,0,0,0,0,180,2.1,0,0,24.1,77777,9,999999999,60,0.0340,0,88,999.000,999.0,99.0 +1980,11,14,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-9.6,-11.6,84,89000,0,0,206,0,0,0,0,0,0,0,180,2.1,0,0,24.1,77777,9,999999999,60,0.0340,0,88,999.000,999.0,99.0 +1980,11,14,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-10.0,-12.2,84,89000,0,0,204,0,0,0,0,0,0,0,180,2.1,0,0,24.1,77777,9,999999999,60,0.0340,0,88,999.000,999.0,99.0 +1980,11,14,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-9.6,-12.0,82,89000,0,0,206,0,0,0,0,0,0,0,120,1.4,0,0,24.1,77777,9,999999999,60,0.0340,0,88,999.000,999.0,99.0 +1980,11,14,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-9.3,-12.1,79,89000,0,0,207,0,0,0,0,0,0,0,60,0.7,0,0,24.1,77777,9,999999999,60,0.0340,0,88,999.000,999.0,99.0 +1980,11,14,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-8.9,-12.2,77,89000,23,687,208,21,167,7,0,0,0,0,0,0.0,0,0,64.4,77777,9,999999999,60,0.0180,0,88,999.000,999.0,99.0 +1980,11,14,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,-7.4,-10.9,74,89000,196,1398,214,111,660,18,11900,48800,5000,490,0,0.0,0,0,64.4,77777,9,999999999,60,0.0180,0,88,999.000,999.0,99.0 +1980,11,14,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,-5.9,-9.9,71,89000,371,1398,219,249,834,26,26500,73300,7000,750,0,0.0,0,0,64.4,77777,9,999999999,60,0.0180,0,88,999.000,999.0,99.0 +1980,11,14,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-4.4,-9.4,68,89000,500,1398,225,359,908,32,38200,84800,7800,920,0,0.0,0,0,64.4,77777,9,999999999,60,0.0180,0,88,999.000,999.0,99.0 +1980,11,14,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,-3.1,-9.3,62,88900,573,1398,229,424,940,35,45000,89700,8000,1010,40,1.2,0,0,64.4,77777,9,999999999,60,0.0180,0,88,999.000,999.0,99.0 +1980,11,14,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,-1.9,-9.6,55,88800,586,1398,233,435,944,36,46200,90300,8100,1040,70,2.4,0,0,64.4,77777,9,999999999,60,0.0180,0,88,999.000,999.0,99.0 +1980,11,14,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-0.6,-10.0,49,88700,537,1398,237,393,926,34,41700,87500,7900,980,110,3.6,0,0,64.4,77777,9,999999999,60,0.0180,0,88,999.000,999.0,99.0 +1980,11,14,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,-1.7,-9.3,57,88700,430,1398,234,301,874,29,31900,79300,7400,830,110,3.3,0,0,64.4,77777,9,999999999,60,0.0180,0,88,999.000,999.0,99.0 +1980,11,14,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,-2.8,-8.7,64,88600,272,1398,231,171,751,22,18000,60900,6100,620,120,2.9,0,0,64.4,77777,9,999999999,69,0.0180,0,88,999.000,999.0,99.0 +1980,11,14,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-3.9,-8.3,72,88600,79,1247,227,46,412,12,4300,24600,2600,300,120,2.6,0,0,64.4,77777,9,999999999,69,0.0180,0,88,999.000,999.0,99.0 +1980,11,14,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-5.0,-8.7,75,88600,0,0,223,0,0,0,0,0,0,0,150,2.6,0,0,64.4,77777,9,999999999,69,0.0180,0,88,999.000,999.0,99.0 +1980,11,14,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-6.1,-9.3,78,88700,0,0,219,0,0,0,0,0,0,0,190,2.6,0,0,64.4,77777,9,999999999,60,0.0180,0,88,999.000,999.0,99.0 +1980,11,14,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-7.2,-10.0,81,88700,0,0,215,0,0,0,0,0,0,0,220,2.6,0,0,24.1,77777,9,999999999,60,0.0180,0,88,999.000,999.0,99.0 +1980,11,14,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-7.8,-10.4,81,88700,0,0,213,0,0,0,0,0,0,0,220,2.2,0,0,24.1,77777,9,999999999,60,0.0180,0,88,999.000,999.0,99.0 +1980,11,14,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-8.3,-10.9,81,88800,0,0,211,0,0,0,0,0,0,0,220,1.9,0,0,24.1,77777,9,999999999,60,0.0180,0,88,999.000,999.0,99.0 +1980,11,14,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-8.9,-11.7,81,88800,0,0,208,0,0,0,0,0,0,0,220,1.5,0,0,24.1,77777,9,999999999,60,0.0180,0,88,999.000,999.0,99.0 +1980,11,14,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-8.9,-11.6,81,88900,0,0,208,0,0,0,0,0,0,0,270,1.0,0,0,24.1,77777,9,999999999,60,0.0180,0,88,999.000,999.0,99.0 +1980,11,15,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-8.9,-11.2,81,88900,0,0,209,0,0,0,0,0,0,0,310,0.5,0,0,24.1,77777,9,999999999,60,0.0180,0,88,999.000,999.0,99.0 +1980,11,15,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-8.9,-11.7,81,88900,0,0,208,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,60,0.0180,0,88,999.000,999.0,99.0 +1980,11,15,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-9.5,-11.8,81,89000,0,0,206,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,60,0.0180,0,88,999.000,999.0,99.0 +1980,11,15,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-10.0,-12.5,80,89000,0,0,204,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,50,0.0180,0,88,999.000,999.0,99.0 +1980,11,15,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-10.6,-13.3,80,89100,0,0,202,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,50,0.0180,0,88,999.000,999.0,99.0 +1980,11,15,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-10.6,-13.1,80,89200,0,0,202,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,50,0.0180,0,88,999.000,999.0,99.0 +1980,11,15,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-10.6,-13.2,80,89300,0,0,202,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,50,0.0180,0,88,999.000,999.0,99.0 +1980,11,15,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-10.6,-13.3,80,89300,21,641,202,19,129,7,0,0,0,0,0,0.0,0,0,64.4,77777,9,999999999,50,0.0280,0,88,999.000,999.0,99.0 +1980,11,15,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,-8.9,-11.1,82,89400,191,1399,216,93,454,30,9300,31400,5000,560,310,0.5,2,2,64.4,77777,9,999999999,60,0.0280,0,88,999.000,999.0,99.0 +1980,11,15,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,-7.3,-9.2,83,89400,365,1399,228,174,262,105,18300,22400,12400,2090,250,1.0,5,5,64.4,77777,9,999999999,60,0.0280,0,88,999.000,999.0,99.0 +1980,11,15,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-5.6,-7.8,85,89500,494,1399,240,197,105,159,21200,10000,17700,3640,200,1.5,7,7,16.1,850,9,999999999,69,0.0280,0,88,999.000,999.0,99.0 +1980,11,15,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,-4.7,-6.7,84,89500,568,1399,248,237,95,198,25900,9300,22100,5330,250,1.0,8,8,16.1,850,9,999999999,69,0.0280,0,88,999.000,999.0,99.0 +1980,11,15,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,-3.7,-6.2,82,89500,581,1399,258,187,92,149,20600,9200,16800,3520,310,0.5,9,9,16.1,850,9,999999999,80,0.0280,0,88,999.000,999.0,99.0 +1980,11,15,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-2.8,-5.6,81,89500,532,1399,270,171,2,170,19000,200,19000,6020,0,0.0,10,10,40.2,850,9,999999999,80,0.0280,0,88,999.000,999.0,99.0 +1980,11,15,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,-1.7,-5.4,75,89500,425,1399,267,151,64,131,16500,5900,14700,3380,320,0.9,10,9,40.2,1023,9,999999999,80,0.0280,0,88,999.000,999.0,99.0 +1980,11,15,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,-0.5,-5.4,70,89500,267,1399,271,107,28,101,11600,2300,11200,2260,290,1.7,9,9,40.2,1197,9,999999999,80,0.0280,0,88,999.000,999.0,99.0 +1980,11,15,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.6,-5.6,64,89500,76,1224,270,19,22,17,2100,1000,2000,350,250,2.6,9,8,48.3,1370,9,999999999,80,0.0280,0,88,999.000,999.0,99.0 +1980,11,15,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-0.7,-5.2,72,89500,0,0,265,0,0,0,0,0,0,0,290,1.7,9,8,48.3,1330,9,999999999,80,0.0280,0,88,999.000,999.0,99.0 +1980,11,15,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-2.0,-5.0,80,89500,0,0,266,0,0,0,0,0,0,0,320,0.9,10,9,48.3,1290,9,999999999,80,0.0280,0,88,999.000,999.0,99.0 +1980,11,15,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-3.3,-5.0,88,89500,0,0,261,0,0,0,0,0,0,0,0,0.0,10,9,24.1,1250,9,999999999,80,0.0280,0,88,999.000,999.0,99.0 +1980,11,15,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-3.9,-5.7,86,89500,0,0,248,0,0,0,0,0,0,0,320,1.0,8,7,24.1,77777,9,999999999,80,0.0280,0,88,999.000,999.0,99.0 +1980,11,15,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-4.4,-6.7,83,89500,0,0,239,0,0,0,0,0,0,0,270,2.1,7,4,24.1,77777,9,999999999,69,0.0280,0,88,999.000,999.0,99.0 +1980,11,15,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-5.0,-7.8,81,89500,0,0,232,0,0,0,0,0,0,0,230,3.1,5,2,24.1,77777,9,999999999,69,0.0280,0,88,999.000,999.0,99.0 +1980,11,15,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-6.1,-8.5,83,89500,0,0,224,0,0,0,0,0,0,0,210,2.8,3,1,24.1,77777,9,999999999,69,0.0280,0,88,999.000,999.0,99.0 +1980,11,16,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-7.2,-8.8,86,89500,0,0,220,0,0,0,0,0,0,0,200,2.4,2,1,24.1,77777,9,999999999,69,0.0280,0,88,999.000,999.0,99.0 +1980,11,16,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-8.3,-10.0,88,89500,0,0,212,0,0,0,0,0,0,0,180,2.1,0,0,24.1,77777,9,999999999,60,0.0280,0,88,999.000,999.0,99.0 +1980,11,16,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-8.7,-10.3,85,89500,0,0,210,0,0,0,0,0,0,0,120,1.4,0,0,24.1,77777,9,999999999,60,0.0280,0,88,999.000,999.0,99.0 +1980,11,16,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-9.0,-11.2,83,89500,0,0,208,0,0,0,0,0,0,0,60,0.7,0,0,24.1,77777,9,999999999,60,0.0280,0,88,999.000,999.0,99.0 +1980,11,16,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-9.4,-12.2,80,89500,0,0,206,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,60,0.0280,0,88,999.000,999.0,99.0 +1980,11,16,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-9.2,-12.0,79,89500,0,0,207,0,0,0,0,0,0,0,330,0.5,0,0,24.1,77777,9,999999999,60,0.0280,0,88,999.000,999.0,99.0 +1980,11,16,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-9.1,-12.1,78,89500,0,0,207,0,0,0,0,0,0,0,310,1.0,0,0,24.1,77777,9,999999999,60,0.0280,0,88,999.000,999.0,99.0 +1980,11,16,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-8.9,-12.2,77,89400,19,618,208,14,60,8,0,0,0,0,280,1.5,0,0,64.4,77777,9,999999999,60,0.0600,0,88,999.000,999.0,99.0 +1980,11,16,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,-7.2,-10.5,75,89400,185,1399,215,92,473,29,9300,32400,5000,540,310,1.0,0,0,64.4,77777,9,999999999,60,0.0600,0,88,999.000,999.0,99.0 +1980,11,16,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,-5.6,-9.2,74,89400,360,1399,221,222,696,42,23200,60100,7600,870,330,0.5,0,0,64.4,77777,9,999999999,60,0.0600,0,88,999.000,999.0,99.0 +1980,11,16,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-3.9,-8.3,72,89400,489,1399,227,330,795,51,34700,73700,8900,1130,0,0.0,0,0,64.4,77777,9,999999999,69,0.0600,0,88,999.000,999.0,99.0 +1980,11,16,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,-2.4,-8.2,65,89300,562,1399,233,393,832,56,41200,78900,9300,1260,0,0.0,0,0,64.4,77777,9,999999999,69,0.0600,0,88,999.000,999.0,99.0 +1980,11,16,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,-0.9,-8.5,57,89200,575,1399,238,406,841,57,42500,80000,9400,1290,0,0.0,0,0,64.4,77777,9,999999999,69,0.0600,0,88,999.000,999.0,99.0 +1980,11,16,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.6,-8.9,50,89100,527,1399,243,366,820,54,38300,76900,9200,1200,0,0.0,0,0,64.4,77777,9,999999999,69,0.0600,0,88,999.000,999.0,99.0 +1980,11,16,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,-0.5,-8.4,56,89100,420,1399,239,272,737,48,28300,66300,8300,1000,40,0.9,1,0,64.4,77777,9,999999999,69,0.0600,0,88,999.000,999.0,99.0 +1980,11,16,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,-1.7,-8.0,63,89000,263,1399,235,148,559,40,14700,43300,6500,740,80,1.7,3,0,64.4,77777,9,999999999,69,0.0600,0,88,999.000,999.0,99.0 +1980,11,16,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-2.8,-7.8,69,89000,72,1201,232,36,191,20,3300,8700,2700,350,120,2.6,4,0,64.4,77777,9,999999999,69,0.0600,0,88,999.000,999.0,99.0 +1980,11,16,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-4.6,-8.5,74,89000,0,0,225,0,0,0,0,0,0,0,80,1.7,4,0,64.4,77777,9,999999999,69,0.0600,0,88,999.000,999.0,99.0 +1980,11,16,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-6.5,-9.5,79,89000,0,0,222,0,0,0,0,0,0,0,40,0.9,5,1,64.4,77777,9,999999999,60,0.0600,0,88,999.000,999.0,99.0 +1980,11,16,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-8.3,-10.6,84,88900,0,0,215,0,0,0,0,0,0,0,0,0.0,5,1,24.1,77777,9,999999999,60,0.0600,0,88,999.000,999.0,99.0 +1980,11,16,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-8.1,-10.2,84,88900,0,0,216,0,0,0,0,0,0,0,330,0.9,5,1,24.1,77777,9,999999999,60,0.0600,0,88,999.000,999.0,99.0 +1980,11,16,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-8.0,-10.0,84,88900,0,0,220,0,0,0,0,0,0,0,300,1.7,5,2,24.1,77777,9,999999999,60,0.0600,0,88,999.000,999.0,99.0 +1980,11,16,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-7.8,-10.0,84,88900,0,0,220,0,0,0,0,0,0,0,270,2.6,5,2,24.1,77777,9,999999999,60,0.0600,0,88,999.000,999.0,99.0 +1980,11,16,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-8.2,-10.3,84,88900,0,0,221,0,0,0,0,0,0,0,270,2.8,6,3,24.1,77777,9,999999999,60,0.0600,0,88,999.000,999.0,99.0 +1980,11,17,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-8.5,-10.3,84,88900,0,0,220,0,0,0,0,0,0,0,280,2.9,7,3,24.1,77777,9,999999999,60,0.0600,0,88,999.000,999.0,99.0 +1980,11,17,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-8.9,-11.1,84,88800,0,0,220,0,0,0,0,0,0,0,280,3.1,8,4,24.1,77777,9,999999999,60,0.0600,0,88,999.000,999.0,99.0 +1980,11,17,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-9.5,-11.4,83,88800,0,0,217,0,0,0,0,0,0,0,250,2.6,8,4,24.1,77777,9,999999999,60,0.0600,0,88,999.000,999.0,99.0 +1980,11,17,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-10.0,-12.3,81,88800,0,0,215,0,0,0,0,0,0,0,230,2.0,8,4,24.1,77777,9,999999999,50,0.0600,0,88,999.000,999.0,99.0 +1980,11,17,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-10.6,-13.3,80,88800,0,0,212,0,0,0,0,0,0,0,200,1.5,8,4,24.1,77777,9,999999999,50,0.0600,0,88,999.000,999.0,99.0 +1980,11,17,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-10.0,-12.6,80,88800,0,0,215,0,0,0,0,0,0,0,250,1.0,8,4,24.1,77777,9,999999999,50,0.0600,0,88,999.000,999.0,99.0 +1980,11,17,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-9.5,-12.1,81,88800,0,0,217,0,0,0,0,0,0,0,310,0.5,9,4,24.1,77777,9,999999999,60,0.0600,0,88,999.000,999.0,99.0 +1980,11,17,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-8.9,-11.7,81,88800,17,572,219,12,24,10,0,0,0,0,0,0.0,9,4,64.4,77777,9,999999999,60,0.0250,0,88,999.000,999.0,99.0 +1980,11,17,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,-7.4,-10.0,80,88800,180,1400,226,71,135,54,7400,7800,6400,1040,350,1.2,9,4,64.4,77777,9,999999999,60,0.0250,0,88,999.000,999.0,99.0 +1980,11,17,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,-5.9,-8.7,79,88800,355,1400,234,168,132,134,17900,11200,15000,2940,350,2.4,9,5,64.4,77777,9,999999999,69,0.0250,0,88,999.000,999.0,99.0 +1980,11,17,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-4.4,-7.8,78,88800,484,1400,240,293,586,89,30200,53600,11600,1680,340,3.6,9,5,64.4,7620,9,999999999,69,0.0250,0,88,999.000,999.0,99.0 +1980,11,17,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,-3.3,-7.8,71,88800,557,1400,242,343,601,102,35500,56800,12800,1980,350,2.4,8,4,64.4,77777,9,999999999,69,0.0250,0,88,999.000,999.0,99.0 +1980,11,17,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,-2.2,-8.4,63,88700,570,1400,245,325,466,134,34200,44900,15800,2630,350,1.2,6,4,64.4,77777,9,999999999,69,0.0250,0,88,999.000,999.0,99.0 +1980,11,17,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.1,-8.9,56,88600,522,1400,247,292,533,91,30200,49800,11500,1760,0,0.0,5,3,64.4,77777,9,999999999,69,0.0250,0,88,999.000,999.0,99.0 +1980,11,17,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,-1.5,-8.5,58,88700,416,1400,246,213,510,60,22200,45300,8700,1160,0,0.0,4,3,64.4,77777,9,999999999,69,0.0250,0,88,999.000,999.0,99.0 +1980,11,17,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,-1.8,-8.3,61,88700,259,1400,242,139,533,38,13900,41100,6300,720,0,0.0,3,2,64.4,77777,9,999999999,69,0.0250,0,88,999.000,999.0,99.0 +1980,11,17,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-2.2,-8.3,63,88700,69,1178,241,32,207,15,2900,9600,2300,280,0,0.0,2,2,24.1,77777,9,999999999,69,0.0250,0,88,999.000,999.0,99.0 +1980,11,17,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-3.1,-8.3,67,88800,0,0,238,0,0,0,0,0,0,0,310,1.2,2,2,24.1,77777,9,999999999,69,0.0250,0,88,999.000,999.0,99.0 +1980,11,17,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-4.1,-8.5,70,88800,0,0,234,0,0,0,0,0,0,0,250,2.4,2,2,24.1,77777,9,999999999,69,0.0250,0,88,999.000,999.0,99.0 +1980,11,17,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-5.0,-8.9,74,88800,0,0,231,0,0,0,0,0,0,0,200,3.6,2,2,24.1,77777,9,999999999,69,0.0250,0,88,999.000,999.0,99.0 +1980,11,17,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-4.4,-8.1,74,88800,0,0,236,0,0,0,0,0,0,0,140,3.6,4,3,24.1,77777,9,999999999,69,0.0250,0,88,999.000,999.0,99.0 +1980,11,17,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-3.9,-7.6,75,88900,0,0,242,0,0,0,0,0,0,0,90,3.6,7,5,24.1,77777,9,999999999,69,0.0250,0,88,999.000,999.0,99.0 +1980,11,17,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-3.3,-7.2,75,88900,0,0,246,0,0,0,0,0,0,0,30,3.6,9,6,24.1,7620,9,999999999,69,0.0250,0,88,999.000,999.0,99.0 +1980,11,17,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-3.1,-7.0,75,88900,0,0,250,0,0,0,0,0,0,0,350,3.1,9,7,24.1,5740,9,999999999,69,0.0250,0,88,999.000,999.0,99.0 +1980,11,18,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-3.0,-6.4,75,88900,0,0,251,0,0,0,0,0,0,0,310,2.6,8,7,24.1,3860,9,999999999,69,0.0250,0,88,999.000,999.0,99.0 +1980,11,18,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-2.8,-6.7,75,88900,0,0,256,0,0,0,0,0,0,0,270,2.1,8,8,24.1,1980,9,999999999,69,0.0250,0,88,999.000,999.0,99.0 +1980,11,18,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-2.8,-6.0,76,88900,0,0,256,0,0,0,0,0,0,0,270,2.1,8,8,24.1,1980,9,999999999,80,0.0250,0,88,999.000,999.0,99.0 +1980,11,18,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-2.8,-6.0,77,88900,0,0,256,0,0,0,0,0,0,0,280,2.1,8,8,24.1,1980,9,999999999,80,0.0250,0,88,999.000,999.0,99.0 +1980,11,18,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-2.8,-6.1,78,88900,0,0,256,0,0,0,0,0,0,0,280,2.1,8,8,24.1,1980,9,999999999,80,0.0250,0,88,999.000,999.0,99.0 +1980,11,18,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-2.4,-5.8,77,88900,0,0,258,0,0,0,0,0,0,0,260,2.3,8,8,24.1,1707,9,999999999,80,0.0250,0,88,999.000,999.0,99.0 +1980,11,18,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-2.1,-5.6,76,88900,0,0,265,0,0,0,0,0,0,0,250,2.4,9,9,24.1,1433,9,999999999,80,0.0250,0,88,999.000,999.0,99.0 +1980,11,18,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.7,-5.6,75,88900,15,549,266,7,0,7,0,0,0,0,230,2.6,9,9,40.2,1160,9,999999999,80,0.0220,0,88,999.000,999.0,99.0 +1980,11,18,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,0.7,-4.6,67,88900,175,1400,277,56,10,54,6000,100,6000,1630,230,3.3,9,9,40.2,1160,9,999999999,80,0.0220,0,88,999.000,999.0,99.0 +1980,11,18,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,3.2,-4.0,59,89000,349,1400,282,138,83,117,15100,7300,13200,2840,240,3.9,8,8,40.2,1160,9,999999999,89,0.0220,0,88,999.000,999.0,99.0 +1980,11,18,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,-3.9,51,89000,478,1400,292,231,144,181,24600,13500,20000,4130,240,4.6,8,8,40.2,1160,9,999999999,89,0.0220,0,88,999.000,999.0,99.0 +1980,11,18,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,6.5,-3.4,49,89000,552,1400,292,245,155,183,26400,15200,20400,4280,250,5.5,7,7,40.2,3313,9,999999999,89,0.0220,0,88,999.000,999.0,99.0 +1980,11,18,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,7.4,-3.3,46,88900,565,1400,292,289,313,162,30700,31000,18200,3430,250,6.3,7,6,40.2,5467,9,999999999,89,0.0220,0,88,999.000,999.0,99.0 +1980,11,18,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,-3.3,44,88900,517,1400,293,232,173,167,25000,16700,18800,3860,260,7.2,6,5,40.2,7620,9,999999999,89,0.0220,0,88,999.000,999.0,99.0 +1980,11,18,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,7.2,-3.5,46,88900,411,1400,288,185,212,122,19400,19000,13800,2470,260,5.7,7,5,40.2,7620,9,999999999,89,0.0220,0,88,999.000,999.0,99.0 +1980,11,18,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,6.1,-3.8,49,88900,255,1400,286,100,174,67,10400,12400,8100,1270,250,4.1,8,6,40.2,7620,9,999999999,89,0.0220,0,88,999.000,999.0,99.0 +1980,11,18,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,-4.4,51,88900,66,1155,281,32,67,27,3200,2200,3100,500,250,2.6,9,6,64.4,7620,9,999999999,89,0.0220,0,88,999.000,999.0,99.0 +1980,11,18,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,3.9,-4.2,55,88900,0,0,274,0,0,0,0,0,0,0,240,2.6,7,5,64.4,77777,9,999999999,89,0.0220,0,88,999.000,999.0,99.0 +1980,11,18,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,2.8,-4.2,60,89000,0,0,266,0,0,0,0,0,0,0,220,2.6,5,3,64.4,77777,9,999999999,89,0.0220,0,88,999.000,999.0,99.0 +1980,11,18,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,1.7,-4.4,64,89000,0,0,259,0,0,0,0,0,0,0,210,2.6,3,2,24.1,77777,9,999999999,80,0.0220,0,88,999.000,999.0,99.0 +1980,11,18,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,0.4,-4.2,71,89000,0,0,259,0,0,0,0,0,0,0,260,1.7,5,4,24.1,77777,9,999999999,89,0.0220,0,88,999.000,999.0,99.0 +1980,11,18,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-0.9,-4.2,78,89000,0,0,261,0,0,0,0,0,0,0,310,0.9,7,7,24.1,77777,9,999999999,89,0.0220,0,88,999.000,999.0,99.0 +1980,11,18,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-2.2,-4.4,85,89000,0,0,266,0,0,0,0,0,0,0,0,0.0,9,9,24.1,5490,9,999999999,89,0.0220,0,88,999.000,999.0,99.0 +1980,11,18,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-2.2,-4.5,84,88900,0,0,266,0,0,0,0,0,0,0,330,0.7,9,9,24.1,5183,9,999999999,80,0.0220,0,88,999.000,999.0,99.0 +1980,11,19,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-2.2,-4.3,83,88900,0,0,260,0,0,0,0,0,0,0,290,1.4,8,8,24.1,4877,9,999999999,80,0.0220,0,88,999.000,999.0,99.0 +1980,11,19,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-2.2,-5.0,82,88900,0,0,259,0,0,0,0,0,0,0,260,2.1,8,8,24.1,4570,9,999999999,80,0.0220,0,88,999.000,999.0,99.0 +1980,11,19,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-2.4,-4.5,83,88800,0,0,252,0,0,0,0,0,0,0,250,1.9,6,6,24.1,77777,9,999999999,80,0.0220,0,88,999.000,999.0,99.0 +1980,11,19,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-2.6,-4.7,84,88800,0,0,249,0,0,0,0,0,0,0,240,1.7,5,5,24.1,77777,9,999999999,80,0.0220,0,88,999.000,999.0,99.0 +1980,11,19,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-2.8,-5.0,85,88700,0,0,244,0,0,0,0,0,0,0,230,1.5,3,3,24.1,77777,9,999999999,80,0.0220,0,88,999.000,999.0,99.0 +1980,11,19,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-3.3,-5.4,85,88700,0,0,244,0,0,0,0,0,0,0,230,1.9,4,4,24.1,77777,9,999999999,80,0.0220,0,88,999.000,999.0,99.0 +1980,11,19,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-3.9,-6.0,85,88600,0,0,243,0,0,0,0,0,0,0,240,2.2,6,5,24.1,77777,9,999999999,80,0.0220,0,88,999.000,999.0,99.0 +1980,11,19,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-4.4,-6.7,85,88600,13,502,243,10,10,9,0,0,0,0,240,2.6,7,6,40.2,7620,9,999999999,80,0.0230,0,88,999.000,999.0,99.0 +1980,11,19,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,-2.0,-5.0,79,88600,170,1401,253,66,200,42,6900,11500,5500,760,200,3.1,8,6,40.2,7620,9,999999999,80,0.0230,0,88,999.000,999.0,99.0 +1980,11,19,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,0.4,-3.7,73,88600,344,1401,264,138,121,109,15000,10300,12400,2390,160,3.6,9,6,40.2,7620,9,999999999,89,0.0230,0,88,999.000,999.0,99.0 +1980,11,19,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,-2.8,67,88600,473,1401,274,240,357,119,25000,32700,13900,2280,120,4.1,10,6,64.4,7620,9,999999999,89,0.0230,0,88,999.000,999.0,99.0 +1980,11,19,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,4.6,-2.8,59,88600,547,1401,284,243,205,162,26400,20100,18500,3780,130,3.2,10,7,64.4,5497,9,999999999,89,0.0230,0,88,999.000,999.0,99.0 +1980,11,19,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,6.5,-3.4,50,88600,560,1401,292,192,96,153,21000,9500,17200,3590,130,2.4,9,7,64.4,3373,9,999999999,89,0.0230,0,88,999.000,999.0,99.0 +1980,11,19,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,-3.9,42,88600,513,1401,303,216,135,166,23300,13000,18500,3830,140,1.5,9,8,64.4,1250,9,999999999,89,0.0230,0,88,999.000,999.0,99.0 +1980,11,19,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,7.6,-4.1,43,88600,407,1401,292,203,315,110,21400,28100,13200,2180,180,3.1,6,6,64.4,77777,9,999999999,89,0.0230,0,88,999.000,999.0,99.0 +1980,11,19,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,6.8,-4.4,44,88700,251,1401,281,127,396,54,12700,28700,7500,940,230,4.6,4,3,64.4,77777,9,999999999,80,0.0230,0,88,999.000,999.0,99.0 +1980,11,19,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,-5.0,45,88700,64,1133,272,37,257,16,3200,13300,2300,290,270,6.2,1,1,64.4,77777,9,999999999,80,0.0230,0,88,999.000,999.0,99.0 +1980,11,19,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,5.5,-4.8,47,88800,0,0,273,0,0,0,0,0,0,0,260,6.4,2,2,64.4,77777,9,999999999,80,0.0230,0,88,999.000,999.0,99.0 +1980,11,19,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,5.0,-4.8,49,88800,0,0,276,0,0,0,0,0,0,0,260,6.5,4,4,64.4,77777,9,999999999,80,0.0230,0,88,999.000,999.0,99.0 +1980,11,19,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,4.4,-5.0,51,88900,0,0,276,0,0,0,0,0,0,0,250,6.7,5,5,24.1,77777,9,999999999,80,0.0230,0,88,999.000,999.0,99.0 +1980,11,19,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,4.0,-5.0,52,88900,0,0,270,0,0,0,0,0,0,0,250,6.5,4,3,24.1,77777,9,999999999,80,0.0230,0,88,999.000,999.0,99.0 +1980,11,19,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,3.7,-5.2,52,89000,0,0,266,0,0,0,0,0,0,0,260,6.4,3,2,24.1,77777,9,999999999,80,0.0230,0,88,999.000,999.0,99.0 +1980,11,19,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,3.3,-5.6,53,89000,0,0,255,0,0,0,0,0,0,0,260,6.2,2,0,24.1,77777,9,999999999,80,0.0230,0,88,999.000,999.0,99.0 +1980,11,19,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,1.3,-5.9,60,89000,0,0,253,0,0,0,0,0,0,0,240,4.6,3,1,24.1,77777,9,999999999,80,0.0230,0,88,999.000,999.0,99.0 +1980,11,20,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-0.8,-5.9,68,89000,0,0,245,0,0,0,0,0,0,0,230,3.1,4,1,24.1,77777,9,999999999,80,0.0230,0,88,999.000,999.0,99.0 +1980,11,20,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-2.8,-6.7,75,89000,0,0,240,0,0,0,0,0,0,0,210,1.5,5,2,24.1,77777,9,999999999,69,0.0230,0,88,999.000,999.0,99.0 +1980,11,20,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-3.5,-6.8,76,89000,0,0,238,0,0,0,0,0,0,0,260,1.0,4,2,24.1,77777,9,999999999,69,0.0230,0,88,999.000,999.0,99.0 +1980,11,20,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-4.3,-7.5,77,89000,0,0,231,0,0,0,0,0,0,0,310,0.5,4,1,24.1,77777,9,999999999,69,0.0230,0,88,999.000,999.0,99.0 +1980,11,20,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-5.0,-8.3,78,89000,0,0,228,0,0,0,0,0,0,0,0,0.0,3,1,24.1,77777,9,999999999,69,0.0230,0,88,999.000,999.0,99.0 +1980,11,20,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-5.7,-8.3,81,89000,0,0,226,0,0,0,0,0,0,0,0,0.0,5,1,24.1,77777,9,999999999,69,0.0230,0,88,999.000,999.0,99.0 +1980,11,20,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-6.5,-8.6,85,89000,0,0,223,0,0,0,0,0,0,0,0,0.0,7,1,24.1,77777,9,999999999,69,0.0230,0,88,999.000,999.0,99.0 +1980,11,20,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-7.2,-8.9,88,89000,11,479,220,9,29,7,0,0,0,0,0,0.0,9,1,24.1,77777,9,999999999,69,0.0440,0,88,999.000,999.0,99.0 +1980,11,20,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,-5.2,-7.2,84,89000,164,1402,236,68,152,50,7100,8200,6100,960,0,0.0,9,4,24.1,77777,9,999999999,69,0.0440,0,88,999.000,999.0,99.0 +1980,11,20,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,-3.1,-5.9,79,89000,339,1402,248,151,219,98,15900,18100,11500,1940,0,0.0,10,6,24.1,77777,9,999999999,80,0.0440,0,88,999.000,999.0,99.0 +1980,11,20,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.1,-5.0,75,89000,468,1402,269,139,45,124,15300,4200,13900,3380,0,0.0,10,9,64.4,7620,9,999999999,80,0.0440,0,88,999.000,999.0,99.0 +1980,11,20,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,-0.4,-4.7,71,88900,542,1402,272,214,62,190,23400,6000,21100,5030,0,0.0,10,9,64.4,7113,9,999999999,80,0.0440,0,88,999.000,999.0,99.0 +1980,11,20,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,0.4,-4.8,68,88800,556,1402,283,91,4,89,10700,200,10600,3840,0,0.0,10,10,64.4,6607,9,999999999,80,0.0440,0,88,999.000,999.0,99.0 +1980,11,20,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.1,-5.0,64,88800,508,1402,286,138,3,136,15500,200,15400,5090,0,0.0,10,10,64.4,6100,9,999999999,80,0.0440,0,88,999.000,999.0,99.0 +1980,11,20,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,0.7,-4.8,66,88700,403,1402,277,85,1,85,9700,100,9700,3250,10,0.9,10,9,64.4,5490,9,999999999,80,0.0440,0,88,999.000,999.0,99.0 +1980,11,20,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,0.4,-4.8,67,88700,247,1402,276,85,51,76,9300,4000,8600,1800,20,1.7,10,9,64.4,4880,9,999999999,80,0.0440,0,88,999.000,999.0,99.0 +1980,11,20,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.0,-5.0,69,88600,61,1110,268,24,16,23,2600,900,2600,530,30,2.6,10,8,48.3,4270,9,999999999,80,0.0440,0,88,999.000,999.0,99.0 +1980,11,20,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-0.2,-5.2,68,88500,0,0,273,0,0,0,0,0,0,0,70,2.6,10,9,48.3,4067,9,999999999,80,0.0440,0,88,999.000,999.0,99.0 +1980,11,20,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-0.4,-5.6,67,88500,0,0,272,0,0,0,0,0,0,0,100,2.6,10,9,48.3,3863,9,999999999,80,0.0440,0,88,999.000,999.0,99.0 +1980,11,20,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-0.6,-6.1,66,88400,0,0,278,0,0,0,0,0,0,0,140,2.6,10,10,24.1,3660,9,999999999,80,0.0440,0,88,999.000,999.0,99.0 +1980,11,20,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-0.8,-5.7,68,88400,0,0,278,0,0,0,0,0,0,0,180,2.4,10,10,24.1,4473,9,999999999,80,0.0440,0,88,999.000,999.0,99.0 +1980,11,20,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-0.9,-5.6,70,88400,0,0,270,0,0,0,0,0,0,0,210,2.3,10,9,24.1,5287,9,999999999,80,0.0440,0,88,999.000,999.0,99.0 +1980,11,20,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-1.1,-5.6,72,88300,0,0,269,0,0,0,0,0,0,0,250,2.1,10,9,24.1,6100,9,999999999,80,0.0440,0,88,999.000,999.0,99.0 +1980,11,20,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-1.3,-5.5,73,88300,0,0,268,0,0,0,0,0,0,0,250,2.3,10,9,24.1,6100,9,999999999,80,0.0440,0,88,999.000,999.0,99.0 +1980,11,21,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-1.5,-5.1,74,88200,0,0,275,0,0,0,0,0,0,0,250,2.4,10,10,24.1,6100,9,999999999,80,0.0440,0,88,999.000,999.0,99.0 +1980,11,21,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-1.7,-5.6,75,88200,0,0,274,0,0,0,0,0,0,0,250,2.6,10,10,24.1,6100,9,999999999,80,0.0440,0,88,999.000,999.0,99.0 +1980,11,21,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-2.1,-5.3,76,88100,0,0,260,0,0,0,0,0,0,0,260,2.6,10,8,24.1,77777,9,999999999,80,0.0440,0,88,999.000,999.0,99.0 +1980,11,21,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-2.4,-5.7,77,88000,0,0,254,0,0,0,0,0,0,0,260,2.6,10,7,24.1,77777,9,999999999,80,0.0440,0,88,999.000,999.0,99.0 +1980,11,21,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-2.8,-6.1,78,87900,0,0,247,0,0,0,0,0,0,0,270,2.6,10,5,24.1,77777,9,999999999,80,0.0440,0,88,999.000,999.0,99.0 +1980,11,21,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-2.4,-5.9,76,87800,0,0,251,0,0,0,0,0,0,0,270,2.8,10,6,24.1,77777,9,999999999,80,0.0440,0,88,999.000,999.0,99.0 +1980,11,21,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-2.1,-6.0,74,87800,0,0,252,0,0,0,0,0,0,0,280,2.9,10,6,24.1,77777,9,999999999,80,0.0440,0,88,999.000,999.0,99.0 +1980,11,21,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.7,-6.1,72,87700,10,456,256,9,10,8,0,0,0,0,280,3.1,10,7,64.4,4270,9,999999999,80,0.0150,0,88,999.000,999.0,99.0 +1980,11,21,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,0.9,-5.3,63,87600,159,1402,267,52,99,41,5500,5200,4900,760,300,3.6,10,7,64.4,4270,9,999999999,80,0.0150,0,88,999.000,999.0,99.0 +1980,11,21,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,3.5,-4.9,54,87600,334,1402,278,107,112,81,11800,9400,9600,1770,310,4.1,10,7,64.4,4270,9,999999999,80,0.0150,0,88,999.000,999.0,99.0 +1980,11,21,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,-5.0,45,87500,463,1402,288,209,226,134,22100,21100,15100,2740,330,4.6,10,7,64.4,4270,9,999999999,80,0.0150,0,88,999.000,999.0,99.0 +1980,11,21,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,8.3,-5.2,38,87300,537,1402,302,210,150,152,22900,14600,17200,3530,290,6.0,10,8,64.4,3660,9,999999999,80,0.0150,0,88,999.000,999.0,99.0 +1980,11,21,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,10.6,-6.0,32,87200,551,1402,311,247,114,201,26900,11100,22500,5290,240,7.4,10,8,64.4,3050,9,999999999,80,0.0150,0,88,999.000,999.0,99.0 +1980,11,21,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,-6.7,25,87100,504,1402,327,152,69,127,16700,6500,14300,3560,200,8.8,10,9,64.4,2440,9,999999999,69,0.0150,0,88,999.000,999.0,99.0 +1980,11,21,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,12.2,-6.2,27,87000,399,1402,325,141,42,129,15400,3800,14300,3240,200,8.4,10,9,64.4,2440,9,999999999,80,0.0150,0,88,999.000,999.0,99.0 +1980,11,21,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,11.7,-5.8,29,86900,244,1402,332,77,29,72,8400,2300,8000,1720,200,8.1,10,10,64.4,2440,9,999999999,80,0.0150,0,88,999.000,999.0,99.0 +1980,11,21,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,-5.6,31,86800,59,1087,329,22,2,22,2500,0,2500,700,200,7.7,10,10,24.1,2440,9,999999999,80,0.0150,0,88,999.000,999.0,99.0 +1980,11,21,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,10.7,-5.2,32,86800,0,0,328,0,0,0,0,0,0,0,200,7.5,10,10,24.1,2187,9,999999999,80,0.0150,0,88,999.000,999.0,99.0 +1980,11,21,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,10.4,-5.0,34,86800,0,0,327,0,0,0,0,0,0,0,200,7.4,10,10,24.1,1933,9,999999999,80,0.0150,0,88,999.000,999.0,99.0 +1980,11,21,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,10.0,-5.0,35,86800,0,0,325,0,0,0,0,0,0,0,200,7.2,10,10,24.1,1680,9,999999999,80,0.0150,0,88,999.000,999.0,99.0 +1980,11,21,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,9.4,-3.9,39,86800,0,0,324,0,0,0,0,0,0,0,200,7.2,10,10,24.1,1680,9,999999999,89,0.0150,0,88,999.000,999.0,99.0 +1980,11,21,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,8.9,-2.9,44,86800,0,0,322,0,0,0,0,0,0,0,190,7.2,10,10,24.1,1680,9,999999999,89,0.0150,0,88,999.000,999.0,99.0 +1980,11,21,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,8.3,-2.2,48,86800,0,0,321,0,0,0,0,0,0,0,190,7.2,10,10,24.1,1680,9,999999999,100,0.0150,0,88,999.000,999.0,99.0 +1980,11,21,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,8.5,-2.3,47,86800,0,0,321,0,0,0,0,0,0,0,190,7.0,10,10,24.1,1680,9,999999999,89,0.0150,0,88,999.000,999.0,99.0 +1980,11,22,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,8.7,-2.1,45,86800,0,0,323,0,0,0,0,0,0,0,190,6.9,10,10,24.1,1680,9,999999999,89,0.0150,0,88,999.000,999.0,99.0 +1980,11,22,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,8.9,-2.8,44,86900,0,0,323,0,0,0,0,0,0,0,190,6.7,10,10,24.1,1680,9,999999999,89,0.0150,0,88,999.000,999.0,99.0 +1980,11,22,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,8.0,-1.8,49,87000,0,0,320,0,0,0,0,0,0,0,230,6.5,10,10,24.1,1537,9,999999999,100,0.0150,0,88,999.000,999.0,99.0 +1980,11,22,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,7.0,-1.4,55,87100,0,0,316,0,0,0,0,0,0,0,260,6.4,10,10,24.1,1393,9,999999999,100,0.0150,0,88,999.000,999.0,99.0 +1980,11,22,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,6.1,-1.1,60,87200,0,0,312,0,0,0,0,0,0,0,300,6.2,10,10,24.1,1250,9,999999999,100,0.0150,0,88,999.000,999.0,99.0 +1980,11,22,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,3.5,-3.0,62,87400,0,0,284,0,0,0,0,0,0,0,300,5.9,9,8,24.1,77777,9,999999999,89,0.0150,0,88,999.000,999.0,99.0 +1980,11,22,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,0.9,-5.0,64,87600,0,0,262,0,0,0,0,0,0,0,310,5.5,7,5,24.1,77777,9,999999999,80,0.0150,0,88,999.000,999.0,99.0 +1980,11,22,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.7,-7.2,66,87900,8,409,246,8,29,5,0,0,0,0,310,5.2,6,3,24.1,77777,9,999999999,69,0.0310,0,88,999.000,999.0,99.0 +1980,11,22,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,-1.3,-7.2,63,88000,154,1403,250,53,108,41,5600,5600,4900,760,320,5.2,6,4,24.1,77777,9,999999999,69,0.0310,0,88,999.000,999.0,99.0 +1980,11,22,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,-1.0,-7.5,59,88100,329,1403,250,145,290,76,15100,23400,9600,1390,330,5.2,5,4,24.1,77777,9,999999999,69,0.0310,0,88,999.000,999.0,99.0 +1980,11,22,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-0.6,-8.3,56,88200,458,1403,253,183,195,119,19500,18200,13500,2370,340,5.2,5,5,32.2,77777,9,999999999,69,0.0310,0,88,999.000,999.0,99.0 +1980,11,22,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,0.2,-8.2,53,88200,532,1403,254,339,610,106,34800,56800,13200,2000,340,4.7,4,4,32.2,77777,9,999999999,69,0.0310,0,88,999.000,999.0,99.0 +1980,11,22,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,0.9,-8.5,49,88200,547,1403,255,379,775,74,38900,73000,10400,1450,350,4.1,3,3,32.2,77777,9,999999999,69,0.0310,0,88,999.000,999.0,99.0 +1980,11,22,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,-8.9,46,88200,500,1403,255,337,773,59,35100,72000,9300,1220,350,3.6,2,2,64.4,77777,9,999999999,69,0.0310,0,88,999.000,999.0,99.0 +1980,11,22,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,0.6,-8.7,50,88200,395,1403,247,244,726,37,25700,64500,7400,910,360,3.1,1,1,64.4,77777,9,999999999,69,0.0310,0,88,999.000,999.0,99.0 +1980,11,22,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,-0.6,-8.7,54,88300,240,1403,243,138,573,38,13800,42900,6400,690,360,2.6,1,1,64.4,77777,9,999999999,69,0.0310,0,88,999.000,999.0,99.0 +1980,11,22,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.7,-8.9,58,88400,56,1064,234,35,267,13,2900,13700,2100,260,10,2.1,0,0,64.4,77777,9,999999999,69,0.0310,0,88,999.000,999.0,99.0 +1980,11,22,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-2.8,-8.9,62,88400,0,0,231,0,0,0,0,0,0,0,320,2.3,0,0,64.4,77777,9,999999999,69,0.0310,0,88,999.000,999.0,99.0 +1980,11,22,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-3.9,-9.1,67,88500,0,0,227,0,0,0,0,0,0,0,280,2.4,0,0,64.4,77777,9,999999999,60,0.0310,0,88,999.000,999.0,99.0 +1980,11,22,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-5.0,-9.4,71,88500,0,0,223,0,0,0,0,0,0,0,230,2.6,0,0,24.1,77777,9,999999999,60,0.0310,0,88,999.000,999.0,99.0 +1980,11,22,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-6.3,-9.8,75,88600,0,0,218,0,0,0,0,0,0,0,270,1.7,0,0,24.1,77777,9,999999999,60,0.0310,0,88,999.000,999.0,99.0 +1980,11,22,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-7.6,-10.3,80,88600,0,0,214,0,0,0,0,0,0,0,320,0.9,0,0,24.1,77777,9,999999999,60,0.0310,0,88,999.000,999.0,99.0 +1980,11,22,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-8.9,-11.1,84,88600,0,0,209,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,60,0.0310,0,88,999.000,999.0,99.0 +1980,11,22,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-8.9,-11.0,84,88600,0,0,209,0,0,0,0,0,0,0,60,0.5,0,0,24.1,77777,9,999999999,60,0.0310,0,88,999.000,999.0,99.0 +1980,11,23,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-8.9,-10.6,84,88600,0,0,209,0,0,0,0,0,0,0,120,1.0,0,0,24.1,77777,9,999999999,60,0.0310,0,88,999.000,999.0,99.0 +1980,11,23,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-8.9,-11.1,84,88600,0,0,209,0,0,0,0,0,0,0,180,1.5,0,0,24.1,77777,9,999999999,60,0.0310,0,88,999.000,999.0,99.0 +1980,11,23,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-9.3,-11.4,82,88600,0,0,207,0,0,0,0,0,0,0,180,1.5,0,0,24.1,77777,9,999999999,60,0.0310,0,88,999.000,999.0,99.0 +1980,11,23,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-9.6,-12.3,79,88600,0,0,206,0,0,0,0,0,0,0,190,1.5,0,0,24.1,77777,9,999999999,50,0.0310,0,88,999.000,999.0,99.0 +1980,11,23,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-10.0,-13.3,77,88600,0,0,204,0,0,0,0,0,0,0,190,1.5,0,0,24.1,77777,9,999999999,50,0.0310,0,88,999.000,999.0,99.0 +1980,11,23,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-9.6,-13.0,76,88600,0,0,212,0,0,0,0,0,0,0,170,1.5,3,2,24.1,77777,9,999999999,50,0.0310,0,88,999.000,999.0,99.0 +1980,11,23,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-9.3,-12.8,75,88500,0,0,215,0,0,0,0,0,0,0,160,1.5,5,3,24.1,77777,9,999999999,50,0.0310,0,88,999.000,999.0,99.0 +1980,11,23,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-8.9,-12.8,74,88500,7,386,220,4,4,3,0,0,0,0,140,1.5,8,5,64.4,6100,9,999999999,50,0.0640,0,88,999.000,999.0,99.0 +1980,11,23,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,-7.6,-10.9,75,88500,150,1403,222,51,119,38,5400,6000,4700,700,90,1.0,6,3,64.4,77777,9,999999999,60,0.0640,0,88,999.000,999.0,99.0 +1980,11,23,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,-6.3,-9.4,77,88500,324,1403,226,152,337,74,15900,27000,9600,1350,50,0.5,5,2,64.4,77777,9,999999999,60,0.0640,0,88,999.000,999.0,99.0 +1980,11,23,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-5.0,-8.3,78,88400,453,1403,224,292,721,58,30200,65600,8900,1160,0,0.0,3,0,64.4,77777,9,999999999,69,0.0640,0,88,999.000,999.0,99.0 +1980,11,23,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,-3.5,-8.5,68,88300,528,1403,229,360,778,65,37400,73100,9800,1330,0,0.0,3,0,64.4,77777,9,999999999,69,0.0640,0,88,999.000,999.0,99.0 +1980,11,23,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,-2.1,-9.3,59,88200,542,1403,233,375,803,62,39300,76100,9700,1310,0,0.0,2,0,64.4,77777,9,999999999,60,0.0640,0,88,999.000,999.0,99.0 +1980,11,23,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-0.6,-10.0,49,88100,496,1403,237,334,771,59,34700,71700,9300,1220,0,0.0,2,0,64.4,77777,9,999999999,60,0.0640,0,88,999.000,999.0,99.0 +1980,11,23,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,-1.3,-9.8,52,88100,392,1403,240,225,545,71,23100,47000,9900,1310,330,1.2,4,1,64.4,77777,9,999999999,60,0.0640,0,88,999.000,999.0,99.0 +1980,11,23,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,-2.1,-9.8,55,88000,237,1403,242,100,280,52,10400,19400,7100,940,310,2.4,6,3,64.4,77777,9,999999999,60,0.0640,0,88,999.000,999.0,99.0 +1980,11,23,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-2.8,-10.0,58,88000,54,1041,242,21,44,18,2200,1400,2100,310,280,3.6,8,4,64.4,77777,9,999999999,60,0.0640,0,88,999.000,999.0,99.0 +1980,11,23,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-3.7,-10.0,61,88000,0,0,238,0,0,0,0,0,0,0,270,3.1,8,4,64.4,77777,9,999999999,60,0.0640,0,88,999.000,999.0,99.0 +1980,11,23,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-4.7,-10.2,65,88000,0,0,235,0,0,0,0,0,0,0,260,2.6,8,4,64.4,77777,9,999999999,60,0.0640,0,88,999.000,999.0,99.0 +1980,11,23,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-5.6,-10.6,68,88100,0,0,231,0,0,0,0,0,0,0,250,2.1,8,4,24.1,77777,9,999999999,60,0.0640,0,88,999.000,999.0,99.0 +1980,11,23,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-6.1,-10.4,71,88100,0,0,231,0,0,0,0,0,0,0,270,2.1,9,5,24.1,77777,9,999999999,60,0.0640,0,88,999.000,999.0,99.0 +1980,11,23,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-6.7,-10.4,74,88100,0,0,229,0,0,0,0,0,0,0,280,2.1,9,5,24.1,77777,9,999999999,60,0.0640,0,88,999.000,999.0,99.0 +1980,11,23,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-7.2,-10.6,77,88200,0,0,229,0,0,0,0,0,0,0,300,2.1,10,6,24.1,6100,9,999999999,60,0.0640,0,88,999.000,999.0,99.0 +1980,11,23,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-7.4,-10.3,79,88200,0,0,229,0,0,0,0,0,0,0,250,1.9,10,6,24.1,6100,9,999999999,60,0.0640,0,88,999.000,999.0,99.0 +1980,11,24,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-7.6,-9.7,82,88300,0,0,232,0,0,0,0,0,0,0,210,1.7,10,7,24.1,6100,9,999999999,60,0.0640,0,88,999.000,999.0,99.0 +1980,11,24,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-7.8,-10.0,84,88300,0,0,231,0,0,0,0,0,0,0,160,1.5,10,7,24.1,6100,9,999999999,60,0.0640,0,88,999.000,999.0,99.0 +1980,11,24,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-6.3,-9.3,77,88400,0,0,234,0,0,0,0,0,0,0,200,1.7,10,6,24.1,77777,9,999999999,60,0.0640,0,88,999.000,999.0,99.0 +1980,11,24,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-4.8,-9.3,70,88500,0,0,239,0,0,0,0,0,0,0,230,1.9,10,6,24.1,77777,9,999999999,60,0.0640,0,88,999.000,999.0,99.0 +1980,11,24,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-3.3,-9.4,63,88600,0,0,242,0,0,0,0,0,0,0,270,2.1,10,5,24.1,77777,9,999999999,60,0.0640,0,88,999.000,999.0,99.0 +1980,11,24,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-3.1,-9.2,62,88700,0,0,243,0,0,0,0,0,0,0,280,2.4,10,5,24.1,77777,9,999999999,60,0.0640,0,88,999.000,999.0,99.0 +1980,11,24,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-3.0,-9.3,62,88800,0,0,241,0,0,0,0,0,0,0,280,2.8,10,4,24.1,77777,9,999999999,60,0.0640,0,88,999.000,999.0,99.0 +1980,11,24,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-2.8,-9.4,61,88900,6,363,242,7,11,6,0,0,0,0,290,3.1,10,4,64.4,77777,9,999999999,60,0.0170,0,88,999.000,999.0,99.0 +1980,11,24,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,-1.7,-9.2,56,89000,145,1404,248,59,70,52,6300,3900,5900,1090,280,3.3,9,5,64.4,77777,9,999999999,60,0.0170,0,88,999.000,999.0,99.0 +1980,11,24,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,-0.5,-9.4,50,89100,319,1404,252,122,253,64,12900,20200,8300,1150,260,3.4,7,5,64.4,77777,9,999999999,60,0.0170,0,88,999.000,999.0,99.0 +1980,11,24,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.6,-10.0,45,89200,448,1404,258,220,308,121,23300,28500,14200,2430,250,3.6,6,6,64.4,1980,9,999999999,60,0.0170,0,88,999.000,999.0,99.0 +1980,11,24,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,1.3,-9.7,43,89200,523,1404,257,354,699,91,36600,65200,12200,1760,260,5.0,4,4,64.4,77777,9,999999999,60,0.0170,0,88,999.000,999.0,99.0 +1980,11,24,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,2.1,-9.8,41,89200,538,1404,258,338,658,83,35200,62200,11300,1640,260,6.3,3,3,64.4,77777,9,999999999,60,0.0170,0,88,999.000,999.0,99.0 +1980,11,24,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,-10.0,39,89200,492,1404,254,327,781,51,34300,72400,8800,1130,270,7.7,1,1,64.4,77777,9,999999999,60,0.0170,0,88,999.000,999.0,99.0 +1980,11,24,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,1.5,-9.8,43,89300,388,1404,250,235,745,26,24900,66100,6500,760,270,6.3,1,1,64.4,77777,9,999999999,60,0.0170,0,88,999.000,999.0,99.0 +1980,11,24,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,0.2,-9.8,47,89300,234,1404,240,130,649,19,13700,50500,5200,540,270,5.0,0,0,64.4,77777,9,999999999,60,0.0170,0,88,999.000,999.0,99.0 +1980,11,24,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.1,-10.0,51,89300,52,1041,236,34,313,10,2900,17700,1900,260,270,3.6,0,0,64.4,77777,9,999999999,60,0.0170,0,88,999.000,999.0,99.0 +1980,11,24,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-2.8,-10.0,58,89400,0,0,230,0,0,0,0,0,0,0,260,3.3,0,0,64.4,77777,9,999999999,60,0.0170,0,88,999.000,999.0,99.0 +1980,11,24,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-4.4,-10.2,64,89400,0,0,224,0,0,0,0,0,0,0,260,2.9,0,0,64.4,77777,9,999999999,60,0.0170,0,88,999.000,999.0,99.0 +1980,11,24,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-6.1,-10.6,71,89400,0,0,218,0,0,0,0,0,0,0,250,2.6,0,0,24.1,77777,9,999999999,60,0.0170,0,88,999.000,999.0,99.0 +1980,11,24,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-6.3,-10.6,71,89400,0,0,222,0,0,0,0,0,0,0,240,2.6,3,1,24.1,77777,9,999999999,60,0.0170,0,88,999.000,999.0,99.0 +1980,11,24,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-6.5,-10.7,71,89400,0,0,226,0,0,0,0,0,0,0,230,2.6,6,3,24.1,77777,9,999999999,60,0.0170,0,88,999.000,999.0,99.0 +1980,11,24,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-6.7,-11.1,71,89400,0,0,227,0,0,0,0,0,0,0,220,2.6,9,4,24.1,77777,9,999999999,60,0.0170,0,88,999.000,999.0,99.0 +1980,11,24,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-7.4,-11.2,74,89400,0,0,223,0,0,0,0,0,0,0,240,2.6,8,3,24.1,77777,9,999999999,60,0.0170,0,88,999.000,999.0,99.0 +1980,11,25,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-8.2,-11.0,78,89400,0,0,220,0,0,0,0,0,0,0,270,2.6,6,3,24.1,77777,9,999999999,60,0.0170,0,88,999.000,999.0,99.0 +1980,11,25,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-8.9,-11.7,81,89400,0,0,215,0,0,0,0,0,0,0,290,2.6,5,2,24.1,77777,9,999999999,60,0.0170,0,88,999.000,999.0,99.0 +1980,11,25,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-8.3,-10.5,82,89300,0,0,222,0,0,0,0,0,0,0,310,1.7,7,4,24.1,77777,9,999999999,60,0.0170,0,88,999.000,999.0,99.0 +1980,11,25,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-7.8,-9.9,83,89300,0,0,228,0,0,0,0,0,0,0,340,0.9,8,6,24.1,77777,9,999999999,60,0.0170,0,88,999.000,999.0,99.0 +1980,11,25,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-7.2,-9.4,84,89200,0,0,237,0,0,0,0,0,0,0,0,0.0,10,8,24.1,6710,9,999999999,60,0.0170,0,88,999.000,999.0,99.0 +1980,11,25,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-6.8,-9.2,82,89100,0,0,238,0,0,0,0,0,0,0,40,0.7,10,8,24.1,5490,9,999999999,60,0.0170,0,88,999.000,999.0,99.0 +1980,11,25,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-6.5,-9.3,80,89000,0,0,239,0,0,0,0,0,0,0,80,1.4,10,8,24.1,4270,9,999999999,60,0.0170,0,88,999.000,999.0,99.0 +1980,11,25,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-6.1,-9.4,78,89000,5,316,241,6,8,5,0,0,0,0,120,2.1,10,8,48.3,3050,9,999999999,60,0.0210,0,88,999.000,999.0,99.0 +1980,11,25,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,-5.2,-8.8,74,88900,140,1404,245,44,48,39,4800,2700,4500,810,80,1.4,10,8,48.3,2693,9,999999999,69,0.0210,0,88,999.000,999.0,99.0 +1980,11,25,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,-4.2,-8.6,70,88900,314,1404,254,112,65,98,12300,5500,11100,2380,40,0.7,10,9,48.3,2337,9,999999999,69,0.0210,0,88,999.000,999.0,99.0 +1980,11,25,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-3.3,-8.9,66,88900,444,1404,257,153,38,141,16800,3500,15600,3640,0,0.0,10,9,64.4,1980,9,999999999,69,0.0210,0,88,999.000,999.0,99.0 +1980,11,25,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,-0.7,-8.7,56,88900,519,1404,262,241,115,198,26300,11100,22200,5040,320,1.7,9,8,64.4,3557,9,999999999,69,0.0210,0,88,999.000,999.0,99.0 +1980,11,25,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,1.8,-9.1,46,88800,534,1404,264,250,350,116,26500,33200,13800,2230,290,3.5,9,6,64.4,5133,9,999999999,69,0.0210,0,88,999.000,999.0,99.0 +1980,11,25,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,-9.4,36,88800,488,1404,271,234,296,130,24900,28100,15000,2630,250,5.2,8,5,48.3,6710,9,999999999,60,0.0210,0,88,999.000,999.0,99.0 +1980,11,25,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,4.0,-8.1,41,88800,385,1404,276,137,64,119,14900,5700,13400,3000,270,4.8,9,7,48.3,4890,9,999999999,69,0.0210,0,88,999.000,999.0,99.0 +1980,11,25,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,3.7,-7.0,45,88800,231,1404,281,98,189,66,10200,12700,8100,1270,290,4.5,9,8,48.3,3070,9,999999999,69,0.0210,0,88,999.000,999.0,99.0 +1980,11,25,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,-6.1,50,88800,50,1018,294,16,4,16,1800,0,1800,540,310,4.1,10,10,48.3,1250,9,999999999,80,0.0210,0,88,999.000,999.0,99.0 +1980,11,25,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,3.1,-5.7,52,88800,0,0,286,0,0,0,0,0,0,0,300,5.3,9,9,48.3,1290,9,999999999,80,0.0210,0,88,999.000,999.0,99.0 +1980,11,25,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,3.0,-5.6,53,88800,0,0,279,0,0,0,0,0,0,0,280,6.5,8,8,48.3,1330,9,999999999,80,0.0210,0,88,999.000,999.0,99.0 +1980,11,25,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,2.8,-5.6,55,88800,0,0,274,0,0,0,0,0,0,0,270,7.7,7,7,24.1,1370,9,999999999,80,0.0210,0,88,999.000,999.0,99.0 +1980,11,25,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,3.0,-5.6,53,88900,0,0,275,0,0,0,0,0,0,0,270,7.4,7,7,24.1,1370,9,999999999,80,0.0210,0,88,999.000,999.0,99.0 +1980,11,25,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,3.1,-5.7,52,88900,0,0,280,0,0,0,0,0,0,0,270,7.0,8,8,24.1,1370,9,999999999,80,0.0210,0,88,999.000,999.0,99.0 +1980,11,25,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,3.3,-6.1,50,89000,0,0,280,0,0,0,0,0,0,0,270,6.7,8,8,24.1,1370,9,999999999,80,0.0210,0,88,999.000,999.0,99.0 +1980,11,25,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,3.1,-6.8,48,89000,0,0,271,0,0,0,0,0,0,0,270,8.2,6,6,24.1,77777,9,999999999,69,0.0210,0,88,999.000,999.0,99.0 +1980,11,26,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,3.0,-7.1,46,89000,0,0,264,0,0,0,0,0,0,0,280,9.8,3,3,24.1,77777,9,999999999,69,0.0210,0,88,999.000,999.0,99.0 +1980,11,26,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,2.8,-8.3,44,89000,0,0,256,0,0,0,0,0,0,0,280,11.3,1,1,24.1,77777,9,999999999,69,0.0210,0,88,999.000,999.0,99.0 +1980,11,26,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,2.1,-7.7,47,89000,0,0,254,0,0,0,0,0,0,0,300,8.4,1,1,24.1,77777,9,999999999,69,0.0210,0,88,999.000,999.0,99.0 +1980,11,26,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,1.3,-7.7,51,89100,0,0,246,0,0,0,0,0,0,0,330,5.5,0,0,24.1,77777,9,999999999,69,0.0210,0,88,999.000,999.0,99.0 +1980,11,26,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,0.6,-7.8,54,89200,0,0,244,0,0,0,0,0,0,0,350,2.6,0,0,24.1,77777,9,999999999,69,0.0210,0,88,999.000,999.0,99.0 +1980,11,26,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,0.4,-8.0,53,89200,0,0,247,0,0,0,0,0,0,0,330,2.9,3,1,24.1,77777,9,999999999,69,0.0210,0,88,999.000,999.0,99.0 +1980,11,26,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,0.2,-8.4,53,89300,0,0,252,0,0,0,0,0,0,0,310,3.3,7,3,24.1,77777,9,999999999,69,0.0210,0,88,999.000,999.0,99.0 +1980,11,26,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.0,-8.9,52,89300,4,293,253,3,4,3,0,0,0,0,290,3.6,10,4,64.4,77777,9,999999999,69,0.0520,0,88,999.000,999.0,99.0 +1980,11,26,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,1.3,-8.3,48,89300,135,1405,260,45,12,44,4900,0,4900,1290,290,3.6,10,5,64.4,77777,9,999999999,69,0.0520,0,88,999.000,999.0,99.0 +1980,11,26,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,2.6,-8.1,45,89300,309,1405,265,120,80,102,13100,6800,11600,2430,290,3.6,9,5,64.4,77777,9,999999999,69,0.0520,0,88,999.000,999.0,99.0 +1980,11,26,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,-8.3,41,89300,439,1405,273,216,293,124,22800,26900,14400,2510,290,3.6,9,6,64.4,7620,9,999999999,69,0.0520,0,88,999.000,999.0,99.0 +1980,11,26,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,4.8,-8.5,37,89300,515,1405,271,210,284,105,22300,26700,12500,1990,280,4.5,6,4,64.4,77777,9,999999999,69,0.0520,0,88,999.000,999.0,99.0 +1980,11,26,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,5.8,-9.3,34,89200,530,1405,270,333,597,106,34100,55500,13100,2000,280,5.3,3,2,64.4,77777,9,999999999,69,0.0520,0,88,999.000,999.0,99.0 +1980,11,26,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,-10.0,30,89200,485,1405,264,332,816,47,34800,75500,8600,1100,270,6.2,0,0,64.4,77777,9,999999999,60,0.0520,0,88,999.000,999.0,99.0 +1980,11,26,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,5.6,-10.2,31,89200,381,1405,259,244,739,41,25600,65000,7800,920,270,5.3,0,0,64.4,77777,9,999999999,60,0.0520,0,88,999.000,999.0,99.0 +1980,11,26,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,4.4,-10.5,33,89200,228,1405,255,127,578,31,12800,42900,5800,610,270,4.5,0,0,64.4,77777,9,999999999,60,0.0520,0,88,999.000,999.0,99.0 +1980,11,26,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,-11.1,34,89200,49,995,250,28,172,14,2400,7300,2000,260,270,3.6,0,0,64.4,77777,9,999999999,60,0.0520,0,88,999.000,999.0,99.0 +1980,11,26,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,1.3,-10.7,41,89200,0,0,243,0,0,0,0,0,0,0,300,2.4,0,0,64.4,77777,9,999999999,60,0.0520,0,88,999.000,999.0,99.0 +1980,11,26,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-0.8,-10.6,48,89100,0,0,236,0,0,0,0,0,0,0,330,1.2,0,0,64.4,77777,9,999999999,60,0.0520,0,88,999.000,999.0,99.0 +1980,11,26,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-2.8,-10.6,55,89100,0,0,229,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,60,0.0520,0,88,999.000,999.0,99.0 +1980,11,26,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-3.3,-10.4,58,89100,0,0,232,0,0,0,0,0,0,0,330,0.9,2,1,24.1,77777,9,999999999,60,0.0520,0,88,999.000,999.0,99.0 +1980,11,26,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-3.9,-10.4,60,89100,0,0,233,0,0,0,0,0,0,0,300,1.7,5,2,24.1,77777,9,999999999,60,0.0520,0,88,999.000,999.0,99.0 +1980,11,26,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-4.4,-10.6,63,89000,0,0,234,0,0,0,0,0,0,0,270,2.6,7,3,24.1,77777,9,999999999,60,0.0520,0,88,999.000,999.0,99.0 +1980,11,26,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-3.9,-9.8,64,89000,0,0,240,0,0,0,0,0,0,0,250,2.4,8,5,24.1,77777,9,999999999,60,0.0520,0,88,999.000,999.0,99.0 +1980,11,27,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-3.3,-8.6,65,88900,0,0,252,0,0,0,0,0,0,0,220,2.3,9,8,24.1,77777,9,999999999,69,0.0520,0,88,999.000,999.0,99.0 +1980,11,27,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-2.8,-8.3,66,88900,0,0,267,0,0,0,0,0,0,0,200,2.1,10,10,24.1,6100,9,999999999,69,0.0520,0,88,999.000,999.0,99.0 +1980,11,27,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-2.6,-7.8,65,88900,0,0,268,0,0,0,0,0,0,0,220,2.1,10,10,24.1,4727,9,999999999,69,0.0520,0,88,999.000,999.0,99.0 +1980,11,27,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-2.4,-8.0,64,88800,0,0,269,0,0,0,0,0,0,0,250,2.1,10,10,24.1,3353,9,999999999,69,0.0520,0,88,999.000,999.0,99.0 +1980,11,27,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-2.2,-8.3,63,88800,0,0,269,0,0,0,0,0,0,0,270,2.1,10,10,24.1,1980,9,999999999,69,0.0520,0,88,999.000,999.0,99.0 +1980,11,27,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-2.0,-8.0,63,88700,0,0,270,0,0,0,0,0,0,0,240,2.1,10,10,24.1,1777,9,999999999,69,0.0520,0,88,999.000,999.0,99.0 +1980,11,27,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-1.9,-7.8,63,88600,0,0,263,0,0,0,0,0,0,0,210,2.1,10,9,24.1,1573,9,999999999,69,0.0520,0,88,999.000,999.0,99.0 +1980,11,27,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.7,-7.8,63,88600,3,269,264,2,1,2,0,0,0,0,180,2.1,10,9,48.3,1370,9,999999999,69,0.0400,0,88,999.000,999.0,99.0 +1980,11,27,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,0.0,-7.4,57,88500,131,1405,271,33,14,32,3600,900,3600,760,120,1.4,10,9,48.3,1420,9,999999999,69,0.0400,0,88,999.000,999.0,99.0 +1980,11,27,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,1.6,-7.4,50,88500,305,1405,278,89,3,88,9800,100,9800,2900,60,0.7,10,9,48.3,1470,9,999999999,69,0.0400,0,88,999.000,999.0,99.0 +1980,11,27,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,-7.8,44,88400,435,1405,284,130,42,117,14300,3800,13100,3130,0,0.0,10,9,64.4,1520,9,999999999,69,0.0400,0,88,999.000,999.0,99.0 +1980,11,27,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,3.7,-7.3,44,88300,510,1405,286,237,255,144,25200,24500,16200,2970,320,0.5,10,9,64.4,2030,9,999999999,69,0.0400,0,88,999.000,999.0,99.0 +1980,11,27,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,4.0,-7.2,43,88200,526,1405,282,214,187,143,23300,18200,16500,3310,280,1.0,10,8,64.4,2540,9,999999999,69,0.0400,0,88,999.000,999.0,99.0 +1980,11,27,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,-7.2,43,88100,481,1405,283,166,106,129,18100,10100,14600,2940,240,1.5,10,8,64.4,3050,9,999999999,69,0.0400,0,88,999.000,999.0,99.0 +1980,11,27,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,4.4,-6.7,44,88100,378,1405,290,146,82,123,15900,7300,13900,3050,240,1.9,10,9,64.4,2847,9,999999999,69,0.0400,0,88,999.000,999.0,99.0 +1980,11,27,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,4.4,-6.3,46,88000,225,1405,290,83,60,73,9000,4600,8300,1680,240,2.2,10,9,64.4,2643,9,999999999,80,0.0400,0,88,999.000,999.0,99.0 +1980,11,27,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,-6.1,47,87900,47,996,299,18,8,17,1900,400,1900,410,240,2.6,10,10,64.4,2440,9,999999999,80,0.0400,0,88,999.000,999.0,99.0 +1980,11,27,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,4.4,-5.9,47,87800,0,0,285,0,0,0,0,0,0,0,250,3.5,9,8,64.4,3660,9,999999999,80,0.0400,0,88,999.000,999.0,99.0 +1980,11,27,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,4.4,-5.9,47,87800,0,0,280,0,0,0,0,0,0,0,270,4.3,7,7,64.4,4880,9,999999999,80,0.0400,0,88,999.000,999.0,99.0 +1980,11,27,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,4.4,-6.1,47,87700,0,0,274,0,0,0,0,0,0,0,280,5.2,6,5,24.1,6100,9,999999999,80,0.0400,0,88,999.000,999.0,99.0 +1980,11,27,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,6.3,-4.2,47,87700,0,0,282,0,0,0,0,0,0,0,280,6.4,5,4,24.1,77777,9,999999999,80,0.0400,0,88,999.000,999.0,99.0 +1980,11,27,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,8.1,-2.6,46,87800,0,0,291,0,0,0,0,0,0,0,270,7.6,5,4,24.1,77777,9,999999999,89,0.0400,0,88,999.000,999.0,99.0 +1980,11,27,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,10.0,-1.1,46,87800,0,0,298,0,0,0,0,0,0,0,270,8.8,4,3,24.1,77777,9,999999999,100,0.0400,0,88,999.000,999.0,99.0 +1980,11,27,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,8.3,-1.6,50,87900,0,0,288,0,0,0,0,0,0,0,270,7.6,3,2,24.1,77777,9,999999999,100,0.0400,0,88,999.000,999.0,99.0 +1980,11,28,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,6.7,-1.8,54,88000,0,0,277,0,0,0,0,0,0,0,280,6.4,1,1,24.1,77777,9,999999999,100,0.0400,0,88,999.000,999.0,99.0 +1980,11,28,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,5.0,-2.8,58,88100,0,0,264,0,0,0,0,0,0,0,280,5.2,0,0,24.1,77777,9,999999999,89,0.0400,0,88,999.000,999.0,99.0 +1980,11,28,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,4.8,-3.8,53,88100,0,0,268,0,0,0,0,0,0,0,280,5.2,1,1,24.1,77777,9,999999999,89,0.0400,0,88,999.000,999.0,99.0 +1980,11,28,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,4.6,-5.5,48,88200,0,0,265,0,0,0,0,0,0,0,280,5.2,1,1,24.1,77777,9,999999999,80,0.0400,0,88,999.000,999.0,99.0 +1980,11,28,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,4.4,-7.2,43,88200,0,0,266,0,0,0,0,0,0,0,280,5.2,2,2,24.1,77777,9,999999999,69,0.0400,0,88,999.000,999.0,99.0 +1980,11,28,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,4.2,-7.2,43,88300,0,0,268,0,0,0,0,0,0,0,280,5.5,4,3,24.1,77777,9,999999999,69,0.0400,0,88,999.000,999.0,99.0 +1980,11,28,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,4.1,-7.5,43,88400,0,0,268,0,0,0,0,0,0,0,280,5.9,5,3,24.1,77777,9,999999999,69,0.0400,0,88,999.000,999.0,99.0 +1980,11,28,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,-7.8,43,88500,2,223,269,5,7,4,0,0,0,0,280,6.2,7,4,64.4,6100,9,999999999,69,0.0170,0,88,999.000,999.0,99.0 +1980,11,28,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,4.6,-7.9,39,88500,127,1406,269,50,177,35,5200,8500,4400,640,280,7.6,7,3,64.4,77777,9,999999999,69,0.0170,0,88,999.000,999.0,99.0 +1980,11,28,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,5.4,-8.4,36,88600,300,1406,272,150,401,64,15800,31100,9100,1160,280,8.9,6,3,64.4,77777,9,999999999,69,0.0170,0,88,999.000,999.0,99.0 +1980,11,28,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,-9.4,32,88600,430,1406,271,260,625,68,27100,55800,10000,1300,280,10.3,6,2,64.4,77777,9,999999999,60,0.0170,0,88,999.000,999.0,99.0 +1980,11,28,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,6.1,-9.1,32,88500,506,1406,274,249,373,114,26300,34900,13600,2180,280,9.4,7,3,64.4,77777,9,999999999,60,0.0170,0,88,999.000,999.0,99.0 +1980,11,28,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,6.1,-9.2,32,88500,523,1406,278,197,213,118,21300,20700,13600,2340,270,8.6,9,5,64.4,77777,9,999999999,60,0.0170,0,88,999.000,999.0,99.0 +1980,11,28,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,-9.4,32,88400,478,1406,280,204,70,180,22300,6600,20000,4500,270,7.7,10,6,64.4,7620,9,999999999,60,0.0170,0,88,999.000,999.0,99.0 +1980,11,28,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,5.2,-8.9,36,88300,376,1406,280,147,90,123,16100,8000,13900,3040,230,6.0,10,7,64.4,6503,9,999999999,69,0.0170,0,88,999.000,999.0,99.0 +1980,11,28,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,4.2,-8.5,39,88300,223,1406,287,86,72,75,9300,5000,8500,1590,200,4.3,10,9,64.4,5387,9,999999999,69,0.0170,0,88,999.000,999.0,99.0 +1980,11,28,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,-8.3,43,88300,46,972,292,14,3,14,1600,0,1600,490,160,2.6,10,10,64.4,4270,9,999999999,69,0.0170,0,88,999.000,999.0,99.0 +1980,11,28,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,2.4,-7.9,47,88200,0,0,280,0,0,0,0,0,0,0,180,2.8,10,9,64.4,4270,9,999999999,69,0.0170,0,88,999.000,999.0,99.0 +1980,11,28,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,1.5,-7.8,50,88100,0,0,277,0,0,0,0,0,0,0,210,2.9,10,9,64.4,4270,9,999999999,69,0.0170,0,88,999.000,999.0,99.0 +1980,11,28,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,0.6,-7.8,54,88100,0,0,268,0,0,0,0,0,0,0,230,3.1,10,8,24.1,4270,9,999999999,69,0.0170,0,88,999.000,999.0,99.0 +1980,11,28,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-0.9,-7.8,60,88000,0,0,262,0,0,0,0,0,0,0,220,2.6,9,8,24.1,4677,9,999999999,69,0.0170,0,88,999.000,999.0,99.0 +1980,11,28,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-2.4,-7.9,66,87900,0,0,252,0,0,0,0,0,0,0,210,2.0,9,7,24.1,5083,9,999999999,69,0.0170,0,88,999.000,999.0,99.0 +1980,11,28,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-3.9,-8.3,72,87900,0,0,246,0,0,0,0,0,0,0,200,1.5,8,7,24.1,5490,9,999999999,69,0.0170,0,88,999.000,999.0,99.0 +1980,11,28,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-3.7,-7.9,73,87800,0,0,251,0,0,0,0,0,0,0,250,1.0,9,8,24.1,4677,9,999999999,69,0.0170,0,88,999.000,999.0,99.0 +1980,11,29,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-3.5,-7.1,74,87600,0,0,258,0,0,0,0,0,0,0,310,0.5,9,9,24.1,3863,9,999999999,69,0.0170,0,88,999.000,999.0,99.0 +1980,11,29,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-3.3,-7.2,75,87500,0,0,266,0,0,0,0,0,0,0,0,0.0,10,10,24.1,3050,9,999999999,69,0.0170,0,88,999.000,999.0,99.0 +1980,11,29,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-3.3,-6.7,75,87400,0,0,259,0,0,0,0,0,0,0,0,0.0,10,9,24.1,3050,9,999999999,69,0.0170,0,88,999.000,999.0,99.0 +1980,11,29,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-3.3,-6.9,75,87300,0,0,253,0,0,0,0,0,0,0,0,0.0,10,8,24.1,3050,9,999999999,69,0.0170,0,88,999.000,999.0,99.0 +1980,11,29,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-3.3,-7.2,75,87100,0,0,249,0,0,0,0,0,0,0,0,0.0,10,7,24.1,3050,9,999999999,69,0.0170,0,88,999.000,999.0,99.0 +1980,11,29,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-3.7,-7.2,76,87000,0,0,245,0,0,0,0,0,0,0,330,0.9,9,6,24.1,4067,9,999999999,69,0.0170,0,88,999.000,999.0,99.0 +1980,11,29,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-4.0,-7.5,77,86900,0,0,244,0,0,0,0,0,0,0,290,1.7,7,6,24.1,5083,9,999999999,69,0.0170,0,88,999.000,999.0,99.0 +1980,11,29,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-4.4,-7.8,78,86700,2,199,240,6,3,5,0,0,0,0,260,2.6,6,5,64.4,6100,9,999999999,69,0.0190,0,88,999.000,999.0,99.0 +1980,11,29,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,-1.5,-6.8,68,86700,122,1406,253,40,89,32,4200,3900,3800,590,230,2.9,7,6,64.4,4980,9,999999999,69,0.0190,0,88,999.000,999.0,99.0 +1980,11,29,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,1.5,-6.2,57,86600,296,1406,268,119,92,100,12800,7300,11300,2160,210,3.3,7,7,64.4,3860,9,999999999,80,0.0190,0,88,999.000,999.0,99.0 +1980,11,29,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,-6.1,47,86500,426,1406,285,183,137,141,19700,12500,15900,3160,180,3.6,8,8,64.4,2740,9,999999999,80,0.0190,0,88,999.000,999.0,99.0 +1980,11,29,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,7.9,-6.3,38,86400,502,1406,299,172,14,167,19000,1100,18700,5720,210,6.5,8,8,64.4,2333,9,999999999,80,0.0190,0,88,999.000,999.0,99.0 +1980,11,29,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,11.5,-7.1,29,86400,519,1406,309,229,229,144,24300,22200,16100,2970,240,9.5,8,7,64.4,1927,9,999999999,80,0.0190,0,88,999.000,999.0,99.0 +1980,11,29,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,-7.8,20,86300,475,1406,323,213,192,147,23000,18100,16800,3340,270,12.4,8,7,64.4,1520,9,999999999,69,0.0190,0,88,999.000,999.0,99.0 +1980,11,29,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,10.9,-5.2,40,86500,373,1406,313,117,69,98,12800,6100,11100,2550,270,10.8,9,8,64.4,1267,9,999999999,89,0.0190,0,88,999.000,999.0,99.0 +1980,11,29,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,6.9,-2.8,59,86700,221,1406,305,86,60,76,9300,4600,8600,1710,280,9.3,9,9,64.4,1013,9,999999999,100,0.0190,0,88,999.000,999.0,99.0 +1980,11,29,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,-0.6,79,86900,45,973,298,7,2,7,900,0,900,270,280,7.7,10,10,16.1,760,9,999999999,100,0.0190,0,88,999.000,999.0,99.0 +1980,11,29,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,2.8,-0.9,76,86800,0,0,298,0,0,0,0,0,0,0,270,6.5,10,10,16.1,963,9,999999999,100,0.0190,0,88,999.000,999.0,99.0 +1980,11,29,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,2.8,-1.5,73,86800,0,0,297,0,0,0,0,0,0,0,260,5.3,10,10,16.1,1167,9,999999999,100,0.0190,0,88,999.000,999.0,99.0 +1980,11,29,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,2.8,-2.2,70,86800,0,0,296,0,0,0,0,0,0,0,250,4.1,10,10,24.1,1370,9,999999999,89,0.0190,0,88,999.000,999.0,99.0 +1980,11,29,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,2.1,-2.0,74,86900,0,0,293,0,0,0,0,0,0,0,260,4.1,10,10,24.1,1370,9,999999999,100,0.0190,0,88,999.000,999.0,99.0 +1980,11,29,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,1.3,-2.0,78,86900,0,0,282,0,0,0,0,0,0,0,260,4.1,9,9,24.1,1370,9,999999999,100,0.0190,0,88,999.000,999.0,99.0 +1980,11,29,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,0.6,-2.2,82,87000,0,0,279,0,0,0,0,0,0,0,270,4.1,9,9,24.1,1370,9,999999999,100,0.0190,0,88,999.000,999.0,99.0 +1980,11,29,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,1.0,-3.4,74,87000,0,0,279,0,0,0,0,0,0,0,270,4.5,9,9,24.1,1827,9,999999999,89,0.0190,0,88,999.000,999.0,99.0 +1980,11,30,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,1.3,-4.3,65,87000,0,0,288,0,0,0,0,0,0,0,280,4.8,10,10,24.1,2283,9,999999999,80,0.0190,0,88,999.000,999.0,99.0 +1980,11,30,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,1.7,-6.1,57,87000,0,0,287,0,0,0,0,0,0,0,280,5.2,10,10,24.1,2740,9,999999999,80,0.0190,0,88,999.000,999.0,99.0 +1980,11,30,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,0.6,-5.6,62,87100,0,0,270,0,0,0,0,0,0,0,310,3.5,9,8,24.1,77777,9,999999999,80,0.0190,0,88,999.000,999.0,99.0 +1980,11,30,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-0.6,-5.8,67,87100,0,0,255,0,0,0,0,0,0,0,330,1.7,8,5,24.1,77777,9,999999999,80,0.0190,0,88,999.000,999.0,99.0 +1980,11,30,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-1.7,-6.1,72,87100,0,0,247,0,0,0,0,0,0,0,0,0.0,7,3,24.1,77777,9,999999999,80,0.0190,0,88,999.000,999.0,99.0 +1980,11,30,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-2.2,-6.1,74,87200,0,0,249,0,0,0,0,0,0,0,60,1.0,8,5,24.1,77777,9,999999999,80,0.0190,0,88,999.000,999.0,99.0 +1980,11,30,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-2.8,-6.4,76,87200,0,0,249,0,0,0,0,0,0,0,120,2.1,9,6,24.1,77777,9,999999999,69,0.0190,0,88,999.000,999.0,99.0 +1980,11,30,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-3.3,-6.7,78,87200,1,176,254,3,1,2,0,0,0,0,180,3.1,10,8,48.3,2740,9,999999999,69,0.0250,0,88,999.000,999.0,99.0 +1980,11,30,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,-2.0,-6.1,72,87300,118,1407,259,47,103,39,4900,4300,4600,750,120,2.1,9,8,48.3,2183,9,999999999,80,0.0250,0,88,999.000,999.0,99.0 +1980,11,30,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,-0.7,-5.9,67,87400,292,1407,260,125,163,91,13500,12900,10800,1960,60,1.0,9,7,48.3,1627,9,999999999,80,0.0250,0,88,999.000,999.0,99.0 +1980,11,30,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.6,-6.1,61,87500,422,1407,265,206,179,152,22100,16200,17200,3400,0,0.0,8,7,64.4,1070,9,999999999,80,0.0250,0,88,999.000,999.0,99.0 +1980,11,30,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,0.6,-5.0,65,87500,499,1407,266,207,203,134,22000,19400,15100,2730,360,1.7,8,7,64.4,1017,9,999999999,80,0.0250,0,88,999.000,999.0,99.0 +1980,11,30,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,0.6,-4.5,68,87400,516,1407,271,227,237,140,24200,22900,15800,2870,360,3.5,9,8,64.4,963,9,999999999,80,0.0250,0,88,999.000,999.0,99.0 +1980,11,30,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.6,-3.9,72,87400,472,1407,271,138,29,128,15100,2700,14200,3480,360,5.2,9,8,24.1,910,9,999999999,89,0.0250,0,88,999.000,999.0,99.0 +1980,11,30,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,-1.3,-5.4,73,87500,370,1407,268,108,87,84,11800,7600,9800,1850,340,5.4,9,9,24.1,770,9,999999999,80,0.0250,0,88,999.000,999.0,99.0 +1980,11,30,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9*9*9*9,-3.1,-7.0,73,87700,219,1407,260,76,120,57,8000,7800,6800,1070,310,5.5,10,9,24.1,630,9,999999999,69,0.0250,0,88,999.000,999.0,99.0 +1980,11,30,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-5.0,-8.9,74,87800,43,950,258,15,1,15,1700,0,1700,510,290,5.7,10,10,16.1,490,9,999999999,69,0.0250,0,88,999.000,999.0,99.0 +1980,11,30,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-6.3,-10.2,73,87900,0,0,251,0,0,0,0,0,0,0,300,5.9,10,10,16.1,510,9,999999999,60,0.0250,0,88,999.000,999.0,99.0 +1980,11,30,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-7.6,-11.7,72,88000,0,0,245,0,0,0,0,0,0,0,310,6.0,10,10,16.1,530,9,999999999,60,0.0250,0,88,999.000,999.0,99.0 +1980,11,30,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-8.9,-13.3,71,88100,0,0,239,0,0,0,0,0,0,0,320,6.2,10,10,16.1,550,9,999999999,50,0.0250,0,88,999.000,999.0,99.0 +1980,11,30,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-9.6,-14.2,69,88100,0,0,236,0,0,0,0,0,0,0,310,6.4,10,10,16.1,670,9,999999999,50,0.0250,0,88,999.000,999.0,99.0 +1980,11,30,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-9.3,-13.5,66,88200,0,0,237,0,0,0,0,0,0,0,300,5.8,10,10,16.1,790,9,999999999,50,0.0250,0,88,999.000,999.0,99.0 +1980,11,30,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-9.1,-13.0,64,88300,0,0,238,0,0,0,0,0,0,0,290,5.2,10,10,24.1,910,9,999999999,40,0.0250,0,88,999.000,999.0,99.0 +1980,11,30,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-8.9,-12.4,65,88300,0,0,240,0,0,0,0,0,0,0,290,4.6,10,10,24.1,760,9,999999999,40,0.0250,0,88,999.000,999.0,99.0 +1988,12,1,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-8.8,-11.9,78,89400,0,0,208,0,0,0,0,0,0,0,190,3.9,1,0,24.1,77777,9,999999999,60,0.0250,0,88,999.000,999.0,99.0 +1988,12,1,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-8.6,-11.3,74,89400,0,0,210,0,0,0,0,0,0,0,40,3.3,1,0,24.1,77777,9,999999999,60,0.0250,0,88,999.000,999.0,99.0 +1988,12,1,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-8.4,-10.8,77,89400,0,0,211,0,0,0,0,0,0,0,30,2.7,2,0,24.1,77777,9,999999999,60,0.0250,0,88,999.000,999.0,99.0 +1988,12,1,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-8.3,-10.3,81,89300,0,0,215,0,0,0,0,0,0,0,240,2.1,2,1,24.1,77777,9,999999999,60,0.0250,0,88,999.000,999.0,99.0 +1988,12,1,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-7.2,-9.4,84,89300,0,0,220,0,0,0,0,0,0,0,260,3.1,3,1,24.1,77777,9,999999999,60,0.0250,0,88,999.000,999.0,99.0 +1988,12,1,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-8.3,-9.4,92,89300,0,0,216,0,0,0,0,0,0,0,270,3.6,3,1,24.1,77777,9,999999999,60,0.0250,0,88,999.000,999.0,99.0 +1988,12,1,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-7.8,-8.3,96,89300,0,0,219,0,0,0,0,0,0,0,250,3.1,4,1,24.1,77777,9,999999999,69,0.0250,0,88,999.000,999.0,99.0 +1988,12,1,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-6.7,-8.9,84,89300,1,152,227,4,7,2,0,0,0,0,290,2.6,6,3,48.3,77777,9,999999999,69,0.0250,0,88,999.000,999.0,99.0 +1988,12,1,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-6.1,-7.8,88,89300,114,1407,230,46,91,39,4800,3700,4500,760,340,1.5,8,3,64.4,77777,9,999999999,69,0.0250,0,88,999.000,999.0,99.0 +1988,12,1,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-4.4,-6.7,85,89300,287,1407,235,150,476,52,15400,36800,7800,940,320,2.1,7,2,64.4,77777,9,999999999,80,0.0250,0,88,999.000,999.0,99.0 +1988,12,1,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.7,-7.2,66,89300,418,1407,246,206,460,69,21400,40600,9300,1300,300,2.6,7,3,64.4,77777,9,999999999,69,0.0250,0,88,999.000,999.0,99.0 +1988,12,1,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.0,-5.6,67,89200,495,1407,251,296,564,96,30400,51600,12100,1800,300,3.6,7,2,64.4,77777,9,999999999,80,0.0250,0,88,999.000,999.0,99.0 +1988,12,1,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.1,-6.7,57,89100,512,1407,254,319,674,71,33500,63200,10400,1410,290,3.1,7,2,64.4,77777,9,999999999,80,0.0250,0,88,999.000,999.0,99.0 +1988,12,1,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,-8.9,44,89100,469,1407,253,276,606,72,28700,55400,10200,1390,300,2.6,8,1,64.4,77777,9,999999999,69,0.0250,0,88,999.000,999.0,99.0 +1988,12,1,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,-6.7,52,89000,368,1407,250,214,663,38,22400,57900,7200,880,290,3.1,4,0,64.4,77777,9,999999999,69,0.0250,0,88,999.000,999.0,99.0 +1988,12,1,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.1,-5.6,62,88900,216,1407,247,121,605,26,12700,45800,5600,580,270,3.6,3,0,64.4,77777,9,999999999,80,0.0250,0,88,999.000,999.0,99.0 +1988,12,1,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.1,-7.2,64,88900,42,950,243,25,133,14,2100,5400,1800,250,240,3.1,6,1,64.4,77777,9,999999999,69,0.0250,0,88,999.000,999.0,99.0 +1988,12,1,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-3.9,-7.8,75,88900,0,0,228,0,0,0,0,0,0,0,0,0.0,3,0,24.1,77777,9,999999999,69,0.0250,0,88,999.000,999.0,99.0 +1988,12,1,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-5.0,-8.3,78,88800,0,0,224,0,0,0,0,0,0,0,230,2.6,0,0,24.1,77777,9,999999999,69,0.0250,0,88,999.000,999.0,99.0 +1988,12,1,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-6.1,-7.8,88,88800,0,0,221,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,69,0.0250,0,88,999.000,999.0,99.0 +1988,12,1,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-6.7,-7.8,92,88800,0,0,219,0,0,0,0,0,0,0,220,3.1,0,0,24.1,77777,9,999999999,69,0.0250,0,88,999.000,999.0,99.0 +1988,12,1,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-7.8,-10.6,81,88800,0,0,213,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,60,0.0250,0,88,999.000,999.0,99.0 +1988,12,1,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-7.8,-10.6,81,88700,0,0,213,0,0,0,0,0,0,0,180,2.1,0,0,24.1,77777,9,999999999,60,0.0250,0,88,999.000,999.0,99.0 +1988,12,1,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-8.9,-9.4,96,88700,0,0,210,0,0,0,0,0,0,0,200,2.1,0,0,24.1,77777,9,999999999,60,0.0250,0,88,999.000,999.0,99.0 +1988,12,2,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-7.8,-10.1,95,88700,0,0,213,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,69,0.0250,0,88,999.000,999.0,99.0 +1988,12,2,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-8.3,-9.9,93,88700,0,0,212,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,60,0.0250,0,88,999.000,999.0,99.0 +1988,12,2,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-8.9,-11.1,92,88700,0,0,209,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,60,0.0250,0,88,999.000,999.0,99.0 +1988,12,2,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-10.0,-11.8,91,88700,0,0,205,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,60,0.0250,0,88,999.000,999.0,99.0 +1988,12,2,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-10.6,-11.7,89,88700,0,0,203,0,0,0,0,0,0,0,180,1.5,0,0,24.1,77777,9,999999999,60,0.0250,0,88,999.000,999.0,99.0 +1988,12,2,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-11.1,-12.8,88,88700,0,0,201,0,0,0,0,0,0,0,330,3.6,0,0,24.1,77777,9,999999999,50,0.0250,0,88,999.000,999.0,99.0 +1988,12,2,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-10.0,-11.7,88,88700,0,0,205,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,60,0.0250,0,88,999.000,999.0,99.0 +1988,12,2,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-9.4,-11.1,88,88700,1,129,214,3,4,2,0,0,0,0,160,1.5,7,2,64.4,77777,9,999999999,60,0.0160,0,88,999.000,999.0,99.0 +1988,12,2,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-7.8,-10.0,84,88700,110,1408,222,41,227,24,4200,11200,3300,420,180,2.1,8,3,64.4,77777,9,999999999,60,0.0160,0,88,999.000,999.0,99.0 +1988,12,2,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-3.9,-7.8,75,88800,283,1408,235,139,367,65,14500,27700,8900,1180,20,1.5,7,2,64.4,77777,9,999999999,69,0.0160,0,88,999.000,999.0,99.0 +1988,12,2,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-3.3,-6.7,78,88800,414,1408,239,222,540,62,23200,47800,9000,1190,0,0.0,7,2,64.4,77777,9,999999999,69,0.0160,0,88,999.000,999.0,99.0 +1988,12,2,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.6,-7.8,54,88700,491,1408,256,244,431,92,26100,40100,12000,1710,330,2.6,8,4,64.4,77777,9,999999999,69,0.0160,0,88,999.000,999.0,99.0 +1988,12,2,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.6,-6.7,59,88700,509,1408,259,240,162,181,25800,15500,20100,4170,0,0.0,10,5,64.4,77777,9,999999999,80,0.0160,0,88,999.000,999.0,99.0 +1988,12,2,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,-5.6,59,88700,466,1408,264,196,110,159,21000,10300,17600,3610,90,2.1,10,5,64.4,77777,9,999999999,80,0.0160,0,88,999.000,999.0,99.0 +1988,12,2,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,-7.2,48,88800,365,1408,267,197,417,87,20400,35000,11300,1610,230,1.5,10,5,64.4,77777,9,999999999,69,0.0160,0,88,999.000,999.0,99.0 +1988,12,2,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,-6.1,55,88800,215,1408,276,71,58,62,7700,4000,7100,1310,0,0.0,10,8,64.4,7620,9,999999999,80,0.0160,0,88,999.000,999.0,99.0 +1988,12,2,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-0.6,-5.6,69,88900,41,927,271,23,10,22,2500,500,2400,490,190,2.1,10,9,48.3,4880,9,999999999,80,0.0160,0,88,999.000,999.0,99.0 +1988,12,2,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-1.1,-4.4,78,88900,0,0,278,0,0,0,0,0,0,0,0,0.0,10,10,24.1,4570,9,999999999,80,0.0160,0,88,999.000,999.0,99.0 +1988,12,2,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-1.7,-5.0,78,88900,0,0,275,0,0,0,0,0,0,0,210,1.5,10,10,24.1,4880,9,999999999,80,0.0160,0,88,999.000,999.0,99.0 +1988,12,2,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-1.7,-5.6,75,89000,0,0,266,0,0,0,0,0,0,0,330,1.5,10,9,24.1,4880,9,999999999,80,0.0160,0,88,999.000,999.0,99.0 +1988,12,2,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-3.3,-5.0,88,89000,0,0,248,0,0,0,0,0,0,0,250,2.6,9,6,24.1,6100,9,999999999,80,0.0160,0,88,999.000,999.0,99.0 +1988,12,2,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-3.3,-6.1,81,89100,0,0,250,0,0,0,0,0,0,0,360,2.1,9,7,24.1,6100,9,999999999,80,0.0160,0,88,999.000,999.0,99.0 +1988,12,2,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-2.2,-4.4,85,89200,0,0,266,0,0,0,0,0,0,0,330,1.5,10,9,24.1,6100,9,999999999,89,0.0160,0,88,999.000,999.0,99.0 +1988,12,2,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-2.2,-5.0,82,89200,0,0,273,0,0,0,0,0,0,0,0,0.0,10,10,24.1,6100,9,999999999,80,0.0160,0,88,999.000,999.0,99.0 +1988,12,3,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-1.7,-5.2,82,89300,0,0,267,0,0,0,0,0,0,0,0,0.0,10,9,24.1,5693,9,999999999,89,0.0160,0,88,999.000,999.0,99.0 +1988,12,3,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-2.8,-4.6,82,89300,0,0,263,0,0,0,0,0,0,0,270,2.1,9,9,24.1,5287,9,999999999,80,0.0160,0,88,999.000,999.0,99.0 +1988,12,3,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-2.2,-5.3,82,89400,0,0,259,0,0,0,0,0,0,0,0,0.0,9,8,24.1,4880,9,999999999,80,0.0160,0,88,999.000,999.0,99.0 +1988,12,3,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-2.2,-5.6,81,89500,0,0,255,0,0,0,0,0,0,0,270,3.1,9,7,24.1,4473,9,999999999,80,0.0160,0,88,999.000,999.0,99.0 +1988,12,3,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-2.8,-5.0,81,89400,0,0,250,0,0,0,0,0,0,0,180,2.1,9,6,24.1,4067,9,999999999,80,0.0160,0,88,999.000,999.0,99.0 +1988,12,3,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-2.8,-5.6,81,89400,0,0,250,0,0,0,0,0,0,0,0,0.0,8,6,24.1,3660,9,999999999,80,0.0160,0,88,999.000,999.0,99.0 +1988,12,3,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-4.4,-6.7,85,89400,0,0,241,0,0,0,0,0,0,0,260,3.1,8,5,24.1,6710,9,999999999,80,0.0160,0,88,999.000,999.0,99.0 +1988,12,3,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-5.0,-6.7,88,89500,0,82,233,0,0,0,0,0,0,0,270,2.6,2,2,64.4,77777,9,999999999,69,0.0160,0,88,999.000,999.0,99.0 +1988,12,3,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-3.3,-6.1,81,89500,106,1408,239,48,366,20,4700,20200,3200,350,260,3.6,2,2,64.4,77777,9,999999999,80,0.0180,0,88,999.000,999.0,99.0 +1988,12,3,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-0.6,-5.6,69,89500,280,1408,241,172,750,22,18300,61200,6100,620,0,0.0,0,0,64.4,77777,9,999999999,80,0.0180,0,88,999.000,999.0,99.0 +1988,12,3,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.1,-6.1,59,89600,411,1408,247,277,848,28,29500,76100,7200,800,0,0.0,0,0,64.4,77777,9,999999999,80,0.0180,0,88,999.000,999.0,99.0 +1988,12,3,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,-5.0,59,89500,488,1408,252,344,895,32,36700,83100,7700,910,0,0.0,0,0,64.4,77777,9,999999999,80,0.0180,0,88,999.000,999.0,99.0 +1988,12,3,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,-2.2,67,89500,506,1408,259,355,890,32,37700,83200,7700,920,0,0.0,0,0,64.4,77777,9,999999999,100,0.0180,0,88,999.000,999.0,99.0 +1988,12,3,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,-5.0,49,89400,464,1408,262,324,884,30,34400,81300,7500,870,0,0.0,0,0,64.4,77777,9,999999999,80,0.0180,0,88,999.000,999.0,99.0 +1988,12,3,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,-3.9,51,89400,363,1408,266,239,816,26,25400,71200,6900,740,0,0.0,0,0,64.4,77777,9,999999999,89,0.0180,0,88,999.000,999.0,99.0 +1988,12,3,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,-4.4,55,89400,213,1408,259,124,675,19,13000,51000,5200,520,0,0.0,0,0,64.4,77777,9,999999999,89,0.0180,0,88,999.000,999.0,99.0 +1988,12,3,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.1,-6.1,69,89500,40,927,239,30,253,9,2300,13900,1600,230,250,3.6,0,0,64.4,77777,9,999999999,80,0.0180,0,88,999.000,999.0,99.0 +1988,12,3,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-2.8,-5.6,81,89500,0,0,234,0,0,0,0,0,0,0,230,3.1,0,0,24.1,77777,9,999999999,80,0.0180,0,88,999.000,999.0,99.0 +1988,12,3,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-2.8,-5.0,85,89500,0,0,234,0,0,0,0,0,0,0,240,2.1,0,0,24.1,77777,9,999999999,80,0.0180,0,88,999.000,999.0,99.0 +1988,12,3,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-3.9,-6.7,81,89600,0,0,229,0,0,0,0,0,0,0,180,2.1,0,0,24.1,77777,9,999999999,69,0.0180,0,88,999.000,999.0,99.0 +1988,12,3,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-4.4,-7.2,81,89600,0,0,227,0,0,0,0,0,0,0,300,1.5,0,0,24.1,77777,9,999999999,69,0.0180,0,88,999.000,999.0,99.0 +1988,12,3,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-5.0,-7.8,81,89600,0,0,224,0,0,0,0,0,0,0,250,2.6,0,0,24.1,77777,9,999999999,69,0.0180,0,88,999.000,999.0,99.0 +1988,12,3,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-6.1,-7.8,88,89600,0,0,221,0,0,0,0,0,0,0,190,1.5,0,0,24.1,77777,9,999999999,69,0.0180,0,88,999.000,999.0,99.0 +1988,12,3,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-6.7,-6.7,100,89700,0,0,219,0,0,0,0,0,0,0,200,2.1,0,0,24.1,77777,9,999999999,69,0.0180,0,88,999.000,999.0,99.0 +1988,12,4,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-6.1,-7.4,99,89700,0,0,221,0,0,0,0,0,0,0,0,0.0,1,0,24.1,77777,9,999999999,80,0.0180,0,88,999.000,999.0,99.0 +1988,12,4,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-6.7,-7.4,97,89700,0,0,219,0,0,0,0,0,0,0,90,1.5,1,0,24.1,77777,9,999999999,69,0.0180,0,88,999.000,999.0,99.0 +1988,12,4,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-7.8,-8.7,96,89700,0,0,214,0,0,0,0,0,0,0,0,0.0,2,0,24.1,77777,9,999999999,69,0.0180,0,88,999.000,999.0,99.0 +1988,12,4,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-8.3,-9.5,95,89700,0,0,216,0,0,0,0,0,0,0,0,0.0,3,1,24.1,77777,9,999999999,69,0.0180,0,88,999.000,999.0,99.0 +1988,12,4,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-9.4,-9.4,93,89700,0,0,213,0,0,0,0,0,0,0,0,0.0,4,1,24.1,77777,9,999999999,60,0.0180,0,88,999.000,999.0,99.0 +1988,12,4,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-9.4,-10.6,92,89700,0,0,212,0,0,0,0,0,0,0,0,0.0,4,1,24.1,77777,9,999999999,60,0.0180,0,88,999.000,999.0,99.0 +1988,12,4,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-10.0,-10.6,96,89700,0,0,210,0,0,0,0,0,0,0,0,0.0,5,1,24.1,77777,9,999999999,60,0.0180,0,88,999.000,999.0,99.0 +1988,12,4,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-8.9,-10.0,92,89700,0,59,217,0,0,0,0,0,0,0,160,2.1,8,2,64.4,77777,9,999999999,60,0.0180,0,88,999.000,999.0,99.0 +1988,12,4,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-7.8,-9.4,88,89700,102,1409,214,45,412,15,4800,25000,2900,320,0,0.0,0,0,64.4,77777,9,999999999,60,0.0310,0,88,999.000,999.0,99.0 +1988,12,4,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-6.1,-7.8,88,89700,276,1409,221,165,705,27,17600,57200,6300,680,0,0.0,0,0,64.4,77777,9,999999999,69,0.0310,0,88,999.000,999.0,99.0 +1988,12,4,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-3.9,-6.7,81,89700,407,1409,229,271,816,33,28700,73000,7500,880,0,0.0,0,0,64.4,77777,9,999999999,80,0.0310,0,88,999.000,999.0,99.0 +1988,12,4,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.7,-5.6,75,89700,485,1409,237,336,862,38,35700,79800,8000,1000,0,0.0,0,0,64.4,77777,9,999999999,80,0.0310,0,88,999.000,999.0,99.0 +1988,12,4,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.0,-4.4,72,89600,503,1409,244,352,868,39,37200,80900,8100,1030,0,0.0,0,0,64.4,77777,9,999999999,89,0.0310,0,88,999.000,999.0,99.0 +1988,12,4,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,-5.0,62,89500,461,1409,250,317,849,36,33500,77900,7800,960,0,0.0,0,0,64.4,77777,9,999999999,80,0.0310,0,88,999.000,999.0,99.0 +1988,12,4,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,-5.0,59,89400,362,1409,252,234,783,31,24800,68200,7200,810,320,1.5,0,0,64.4,77777,9,999999999,80,0.0310,0,88,999.000,999.0,99.0 +1988,12,4,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.1,-5.6,62,89400,212,1409,247,119,625,23,12500,47000,5300,560,300,1.5,0,0,64.4,77777,9,999999999,80,0.0310,0,88,999.000,999.0,99.0 +1988,12,4,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.7,-6.1,72,89400,40,927,237,27,203,11,2100,9900,1600,220,280,2.1,0,0,64.4,77777,9,999999999,80,0.0310,0,88,999.000,999.0,99.0 +1988,12,4,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-3.9,-6.7,81,89400,0,0,229,0,0,0,0,0,0,0,200,2.1,0,0,24.1,77777,9,999999999,69,0.0310,0,88,999.000,999.0,99.0 +1988,12,4,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-5.6,-7.2,88,89300,0,0,223,0,0,0,0,0,0,0,230,1.5,0,0,24.1,77777,9,999999999,69,0.0310,0,88,999.000,999.0,99.0 +1988,12,4,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-5.0,-7.2,85,89300,0,0,225,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,69,0.0310,0,88,999.000,999.0,99.0 +1988,12,4,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-5.6,-7.2,88,89200,0,0,223,0,0,0,0,0,0,0,250,3.1,0,0,24.1,77777,9,999999999,69,0.0310,0,88,999.000,999.0,99.0 +1988,12,4,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-5.6,-6.7,92,89200,0,0,223,0,0,0,0,0,0,0,290,2.1,0,0,24.1,77777,9,999999999,69,0.0310,0,88,999.000,999.0,99.0 +1988,12,4,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-6.7,-7.8,92,89200,0,0,219,0,0,0,0,0,0,0,260,3.1,0,0,24.1,77777,9,999999999,69,0.0310,0,88,999.000,999.0,99.0 +1988,12,4,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-7.8,-8.3,96,89100,0,0,215,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,69,0.0310,0,88,999.000,999.0,99.0 +1988,12,5,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-7.8,-8.9,95,89100,0,0,214,0,0,0,0,0,0,0,180,2.6,0,0,24.1,77777,9,999999999,69,0.0310,0,88,999.000,999.0,99.0 +1988,12,5,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-8.3,-8.6,95,89100,0,0,213,0,0,0,0,0,0,0,270,2.1,0,0,24.1,77777,9,999999999,69,0.0310,0,88,999.000,999.0,99.0 +1988,12,5,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-8.9,-9.7,94,89000,0,0,210,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,60,0.0310,0,88,999.000,999.0,99.0 +1988,12,5,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-9.4,-10.3,93,89000,0,0,208,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,60,0.0310,0,88,999.000,999.0,99.0 +1988,12,5,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-10.0,-10.1,93,88900,0,0,206,0,0,0,0,0,0,0,320,2.1,0,0,24.1,77777,9,999999999,60,0.0310,0,88,999.000,999.0,99.0 +1988,12,5,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-10.0,-11.1,92,88900,0,0,205,0,0,0,0,0,0,0,150,2.1,0,0,24.1,77777,9,999999999,60,0.0310,0,88,999.000,999.0,99.0 +1988,12,5,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-10.6,-11.7,92,88800,0,0,203,0,0,0,0,0,0,0,190,2.1,0,0,24.1,77777,9,999999999,60,0.0310,0,88,999.000,999.0,99.0 +1988,12,5,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-10.6,-11.7,92,88800,0,35,203,0,0,0,0,0,0,0,330,2.6,0,0,64.4,77777,9,999999999,60,0.0310,0,88,999.000,999.0,99.0 +1988,12,5,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-11.1,-11.7,96,88800,98,1409,201,46,430,14,4700,25900,2900,310,0,0.0,0,0,64.4,77777,9,999999999,60,0.0250,0,88,999.000,999.0,99.0 +1988,12,5,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-7.8,-8.9,92,88700,272,1409,214,165,723,24,17500,58500,6100,640,0,0.0,0,0,64.4,77777,9,999999999,69,0.0250,0,88,999.000,999.0,99.0 +1988,12,5,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-4.4,-5.6,92,88800,404,1409,228,270,831,30,28700,74300,7300,830,260,3.1,0,0,64.4,77777,9,999999999,80,0.0250,0,88,999.000,999.0,99.0 +1988,12,5,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.1,-5.0,75,88700,482,1409,240,336,877,34,35700,81200,7800,940,110,2.1,0,0,64.4,77777,9,999999999,80,0.0250,0,88,999.000,999.0,99.0 +1988,12,5,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.1,-5.6,62,88700,501,1409,247,353,887,35,37400,82700,7900,970,70,1.5,0,0,64.4,77777,9,999999999,80,0.0250,0,88,999.000,999.0,99.0 +1988,12,5,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,-4.4,59,88600,459,1409,263,286,733,45,30100,67100,8100,1050,170,1.5,3,2,64.4,77777,9,999999999,80,0.0250,0,88,999.000,999.0,99.0 +1988,12,5,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.0,-5.0,69,88600,360,1409,257,211,579,62,21700,48600,9300,1140,0,0.0,5,4,64.4,77777,9,999999999,80,0.0250,0,88,999.000,999.0,99.0 +1988,12,5,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.0,-4.4,72,88700,210,1409,261,84,124,65,9000,8400,7700,1380,170,1.5,8,6,64.4,3660,9,999999999,80,0.0250,0,88,999.000,999.0,99.0 +1988,12,5,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,-5.6,47,88700,39,904,288,16,19,14,1700,700,1600,290,240,4.6,9,8,48.3,3660,9,999999999,80,0.0250,0,88,999.000,999.0,99.0 +1988,12,5,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,5.6,-5.6,45,88700,0,0,290,0,0,0,0,0,0,0,0,0.0,9,8,24.1,1830,9,999999999,80,0.0250,0,88,999.000,999.0,99.0 +1988,12,5,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,5.6,-5.6,45,88700,0,0,282,0,0,0,0,0,0,0,280,5.7,8,6,24.1,1680,9,999999999,80,0.0250,0,88,999.000,999.0,99.0 +1988,12,5,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,5.6,-4.4,49,88800,0,0,281,0,0,0,0,0,0,0,280,6.2,7,5,24.1,3660,9,999999999,89,0.0250,0,88,999.000,999.0,99.0 +1988,12,5,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,3.9,-3.9,57,88800,0,0,275,0,0,0,0,0,0,0,200,2.1,7,5,24.1,3660,9,999999999,89,0.0250,0,88,999.000,999.0,99.0 +1988,12,5,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,3.3,-2.8,65,88900,0,0,273,0,0,0,0,0,0,0,290,3.1,8,5,24.1,3350,9,999999999,89,0.0250,0,88,999.000,999.0,99.0 +1988,12,5,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,4.4,-2.8,60,88900,0,0,288,0,0,0,0,0,0,0,210,2.6,10,8,24.1,1830,9,999999999,89,0.0250,0,88,999.000,999.0,99.0 +1988,12,5,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,3.9,-2.8,62,88900,0,0,281,0,0,0,0,0,0,0,230,4.1,9,7,24.1,1830,9,999999999,89,0.0250,0,88,999.000,999.0,99.0 +1988,12,6,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,5.0,-2.7,66,88900,0,0,286,0,0,0,0,0,0,0,270,2.6,7,7,24.1,2135,9,999999999,100,0.0250,0,88,999.000,999.0,99.0 +1988,12,6,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,5.6,-1.8,70,88900,0,0,284,0,0,0,0,0,0,0,0,0.0,5,5,24.1,2440,9,999999999,110,0.0250,0,88,999.000,999.0,99.0 +1988,12,6,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,1.7,-2.3,74,88800,0,0,261,0,0,0,0,0,0,0,180,3.1,2,2,24.1,2745,9,999999999,89,0.0250,0,88,999.000,999.0,99.0 +1988,12,6,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,0.6,-2.2,77,88800,0,0,249,0,0,0,0,0,0,0,0,0.0,0,0,24.1,3050,9,999999999,89,0.0250,0,88,999.000,999.0,99.0 +1988,12,6,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,0.0,-1.3,81,88700,0,0,258,0,0,0,0,0,0,0,320,2.6,3,3,24.1,3355,9,999999999,89,0.0250,0,88,999.000,999.0,99.0 +1988,12,6,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,0.6,-1.7,85,88600,0,0,269,0,0,0,0,0,0,0,260,2.6,7,7,24.1,3660,9,999999999,100,0.0250,0,88,999.000,999.0,99.0 +1988,12,6,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,0.6,-1.7,85,88600,0,0,287,0,0,0,0,0,0,0,260,3.6,10,10,24.1,3350,9,999999999,100,0.0250,0,88,999.000,999.0,99.0 +1988,12,6,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,1.7,-2.2,76,88600,0,12,292,0,0,0,0,0,0,0,0,0.0,10,10,32.2,3350,9,999999999,100,0.0250,0,88,999.000,999.0,99.0 +1988,12,6,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.1,-1.7,82,88500,95,1409,290,30,12,29,3300,700,3200,650,0,0.0,10,10,32.2,3050,9,999999999,100,0.0230,0,88,999.000,999.0,99.0 +1988,12,6,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,-1.1,82,88500,269,1409,293,55,3,54,6200,100,6200,1960,340,2.6,10,10,32.2,3050,9,999999999,100,0.0230,0,88,999.000,999.0,99.0 +1988,12,6,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,-1.7,79,88500,401,1409,292,115,11,112,12800,700,12600,3910,300,4.6,10,10,32.2,2440,9,999999999,100,0.0230,0,88,999.000,999.0,99.0 +1988,12,6,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,-1.7,70,88400,479,1409,299,148,12,144,16500,900,16200,5080,310,3.1,10,10,24.1,1980,9,999999999,100,0.0230,0,88,999.000,999.0,99.0 +1988,12,6,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,-1.1,70,88400,498,1409,302,180,4,179,19800,300,19700,5880,260,2.6,10,10,32.2,1680,9,999999999,100,0.0230,0,88,999.000,999.0,99.0 +1988,12,6,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,-0.6,73,88400,457,1409,303,147,8,144,16200,600,16100,4930,250,2.1,10,10,32.2,1830,9,999999999,110,0.0230,0,88,999.000,999.0,99.0 +1988,12,6,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,-0.6,70,88300,358,1409,305,111,4,110,12200,200,12200,3620,0,0.0,10,10,24.1,1680,9,999999999,110,0.0230,0,88,999.000,999.0,99.0 +1988,12,6,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,-0.6,79,88300,209,1409,298,38,3,37,4300,0,4300,1350,90,2.1,10,10,24.1,910,9,999999999,110,0.0230,0,88,999.000,999.0,99.0 +1988,12,6,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,0.6,92,88400,39,904,294,12,0,12,1400,0,1400,420,250,1.5,10,10,11.3,700,9,999999999,110,0.0230,0,88,999.000,999.0,99.0 +1988,12,6,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,1.7,-0.6,85,88500,0,0,293,0,0,0,0,0,0,0,320,7.7,10,10,12.9,700,9,999999999,110,0.0230,0,88,999.000,999.0,99.0 +1988,12,6,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,1.7,-1.1,82,88600,0,0,293,0,0,0,0,0,0,0,320,6.2,10,10,16.1,880,9,999999999,100,0.0230,0,88,999.000,999.0,99.0 +1988,12,6,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,1.1,-1.7,82,88700,0,0,290,0,0,0,0,0,0,0,320,4.1,10,10,16.1,1830,9,999999999,100,0.0230,0,88,999.000,999.0,99.0 +1988,12,6,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,0.6,-2.2,82,88800,0,0,287,0,0,0,0,0,0,0,320,5.2,10,10,12.9,1340,9,999999999,100,0.0230,0,88,999.000,999.0,99.0 +1988,12,6,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,0.0,-1.7,89,88900,0,0,285,0,0,0,0,0,0,0,280,4.6,10,10,8.0,640,9,999999999,100,0.0230,0,88,999.000,999.0,99.0 +1988,12,6,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-1.1,-1.7,96,89000,0,0,280,0,0,0,0,0,0,0,280,4.6,10,10,8.0,610,9,999999999,100,0.0230,0,88,999.000,999.0,99.0 +1988,12,6,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-1.1,-2.8,89,89000,0,0,279,0,0,0,0,0,0,0,260,3.6,10,10,11.3,610,9,999999999,89,0.0230,0,88,999.000,999.0,99.0 +1988,12,7,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-1.1,-3.4,89,89100,0,0,279,0,0,0,0,0,0,0,270,3.6,10,10,11.3,610,9,999999999,89,0.0230,0,88,999.000,999.0,99.0 +1988,12,7,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-1.7,-3.3,89,89100,0,0,276,0,0,0,0,0,0,0,290,3.6,10,10,16.1,610,9,999999999,89,0.0230,0,88,999.000,999.0,99.0 +1988,12,7,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-2.2,-4.1,89,89100,0,0,273,0,0,0,0,0,0,0,270,3.1,10,10,16.1,740,9,999999999,89,0.0230,0,88,999.000,999.0,99.0 +1988,12,7,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-2.2,-4.3,89,89100,0,0,273,0,0,0,0,0,0,0,270,3.6,10,10,16.1,870,9,999999999,89,0.0230,0,88,999.000,999.0,99.0 +1988,12,7,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-2.8,-3.7,89,89100,0,0,271,0,0,0,0,0,0,0,270,3.6,10,10,16.1,1000,9,999999999,89,0.0230,0,88,999.000,999.0,99.0 +1988,12,7,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-2.8,-4.4,89,89200,0,0,271,0,0,0,0,0,0,0,270,4.1,10,10,9.7,1130,9,999999999,89,0.0230,0,88,999.000,999.0,99.0 +1988,12,7,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-2.8,-4.4,89,89300,0,0,271,0,0,0,0,0,0,0,270,4.1,10,10,9.7,730,9,999999999,89,0.0230,0,88,999.000,999.0,99.0 +1988,12,7,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-2.8,-5.6,81,89300,0,0,270,0,0,0,0,0,0,0,270,4.6,10,10,16.1,580,9,999999999,80,0.0230,0,88,999.000,999.0,99.0 +1988,12,7,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-2.8,-5.6,81,89400,91,1398,270,29,0,29,3200,0,3200,880,270,4.1,10,10,48.3,520,9,999999999,80,0.0490,0,88,999.000,999.0,99.0 +1988,12,7,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-2.8,-5.6,81,89400,265,1410,270,88,1,87,9500,0,9500,2650,280,4.1,10,10,32.2,760,9,999999999,80,0.0490,0,88,999.000,999.0,99.0 +1988,12,7,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-2.2,-5.6,78,89400,397,1410,272,150,1,149,16200,100,16200,4540,270,3.6,10,10,32.2,760,9,999999999,80,0.0490,0,88,999.000,999.0,99.0 +1988,12,7,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.7,-5.6,75,89400,476,1410,274,169,1,169,18600,100,18600,5520,300,3.1,10,10,32.2,1370,9,999999999,80,0.0490,0,88,999.000,999.0,99.0 +1988,12,7,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.7,-5.6,75,89300,496,1410,274,178,0,178,19600,0,19600,5840,310,2.1,10,10,32.2,1340,9,999999999,80,0.0490,0,88,999.000,999.0,99.0 +1988,12,7,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.1,-5.6,72,89300,455,1410,276,165,0,165,18100,0,18100,5280,350,3.1,10,10,32.2,790,9,999999999,80,0.0490,0,88,999.000,999.0,99.0 +1988,12,7,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.7,-5.6,75,89300,357,1410,274,137,1,137,14900,100,14800,4020,360,2.1,10,10,32.2,730,9,999999999,80,0.0490,0,88,999.000,999.0,99.0 +1988,12,7,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.7,-5.6,75,89300,208,1410,274,76,1,76,8200,0,8200,2130,0,0.0,10,10,32.2,1830,9,999999999,80,0.0490,0,88,999.000,999.0,99.0 +1988,12,7,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-3.3,-5.0,88,89300,38,905,255,18,27,16,1900,1000,1900,330,160,2.6,8,8,32.2,1830,9,999999999,80,0.0490,0,88,999.000,999.0,99.0 +1988,12,7,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-5.6,-6.7,92,89300,0,0,238,0,0,0,0,0,0,0,190,2.6,7,6,24.1,1680,9,999999999,69,0.0490,0,88,999.000,999.0,99.0 +1988,12,7,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-8.3,-9.4,92,89300,0,0,219,0,0,0,0,0,0,0,230,2.6,7,2,24.1,77777,9,999999999,60,0.0490,0,88,999.000,999.0,99.0 +1988,12,7,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-6.1,-7.8,88,89300,0,0,228,0,0,0,0,0,0,0,260,3.6,8,2,24.1,77777,9,999999999,69,0.0490,0,88,999.000,999.0,99.0 +1988,12,7,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-7.2,-8.3,92,89300,0,0,226,0,0,0,0,0,0,0,10,1.5,8,3,24.1,77777,9,999999999,69,0.0490,0,88,999.000,999.0,99.0 +1988,12,7,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-10.0,-11.1,92,89300,0,0,212,0,0,0,0,0,0,0,300,2.6,6,2,24.1,77777,9,999999999,60,0.0490,0,88,999.000,999.0,99.0 +1988,12,7,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-9.4,-10.0,96,89400,0,0,215,0,0,0,0,0,0,0,310,2.6,6,2,24.1,77777,9,999999999,60,0.0490,0,88,999.000,999.0,99.0 +1988,12,7,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-10.0,-10.6,96,89400,0,0,210,0,0,0,0,0,0,0,20,1.5,3,1,24.1,77777,9,999999999,60,0.0490,0,88,999.000,999.0,99.0 +1988,12,8,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-9.4,-11.1,96,89400,0,0,214,0,0,0,0,0,0,0,0,0.0,4,2,24.1,77777,9,999999999,60,0.0490,0,88,999.000,999.0,99.0 +1988,12,8,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-8.9,-10.8,96,89400,0,0,220,0,0,0,0,0,0,0,0,0.0,5,4,24.1,77777,9,999999999,60,0.0490,0,88,999.000,999.0,99.0 +1988,12,8,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-10.6,-11.9,96,89400,0,0,215,0,0,0,0,0,0,0,240,2.6,6,5,24.1,77777,9,999999999,60,0.0490,0,88,999.000,999.0,99.0 +1988,12,8,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-9.4,-12.5,96,89400,0,0,220,0,0,0,0,0,0,0,0,0.0,7,6,24.1,77777,9,999999999,60,0.0490,0,88,999.000,999.0,99.0 +1988,12,8,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-11.7,-12.2,96,89400,0,0,215,0,0,0,0,0,0,0,180,1.5,8,7,16.1,77777,9,999999999,60,0.0490,0,88,999.000,999.0,99.0 +1988,12,8,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-8.3,-8.9,96,89400,0,0,238,0,0,0,0,0,0,0,0,0.0,9,9,16.1,180,9,999999999,69,0.0490,0,88,999.000,999.0,99.0 +1988,12,8,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-8.3,-8.9,96,89400,0,0,245,0,0,0,0,0,0,0,0,0.0,10,10,12.9,90,9,999999999,69,0.0490,0,88,999.000,999.0,99.0 +1988,12,8,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-8.9,-10.0,92,89300,0,0,242,0,0,0,0,0,0,0,180,2.1,10,10,1.6,90,9,999999999,60,0.0490,0,88,999.000,999.0,99.0 +1988,12,8,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-7.2,-7.8,96,89300,88,1375,250,22,3,21,2400,0,2400,710,0,0.0,10,10,0.4,30,9,999999999,69,0.0470,0,88,999.000,999.0,99.0 +1988,12,8,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-6.7,-6.7,100,89300,262,1410,253,74,29,68,8000,2300,7600,1680,0,0.0,10,10,0.8,3050,9,999999999,69,0.0470,0,88,999.000,999.0,99.0 +1988,12,8,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-5.6,-6.1,96,89300,394,1410,258,101,10,98,11300,500,11200,3550,0,0.0,10,10,3.2,3050,9,999999999,80,0.0470,0,88,999.000,999.0,99.0 +1988,12,8,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-3.9,-5.6,88,89100,474,1410,240,258,370,133,26500,33800,15100,2580,0,0.0,7,3,16.1,77777,9,999999999,80,0.0470,0,88,999.000,999.0,99.0 +1988,12,8,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.7,-5.0,78,89100,494,1410,254,288,445,130,29700,41200,15200,2520,0,0.0,8,6,48.3,3050,9,999999999,80,0.0470,0,88,999.000,999.0,99.0 +1988,12,8,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-2.2,-5.0,82,89000,453,1410,273,167,75,142,18200,7000,15900,3690,290,2.1,10,10,64.4,1680,9,999999999,80,0.0470,0,88,999.000,999.0,99.0 +1988,12,8,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-2.2,-5.0,82,88900,356,1410,273,107,1,107,11800,100,11800,3550,0,0.0,10,10,64.4,1520,9,999999999,80,0.0470,0,88,999.000,999.0,99.0 +1988,12,8,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.7,-3.9,85,88800,207,1410,276,72,7,71,7800,200,7800,2060,0,0.0,10,10,32.2,1520,9,999999999,89,0.0470,0,88,999.000,999.0,99.0 +1988,12,8,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-0.6,-5.0,72,88800,38,905,279,19,1,19,2100,0,2100,600,180,3.1,10,10,24.1,1070,9,999999999,80,0.0470,0,88,999.000,999.0,99.0 +1988,12,8,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,0.6,-5.0,67,88800,0,0,284,0,0,0,0,0,0,0,110,2.6,10,10,24.1,910,9,999999999,80,0.0470,0,88,999.000,999.0,99.0 +1988,12,8,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,2.2,-3.3,67,88800,0,0,293,0,0,0,0,0,0,0,260,4.6,10,10,16.1,850,9,999999999,89,0.0470,0,88,999.000,999.0,99.0 +1988,12,8,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,0.0,-1.7,89,88800,0,0,277,0,0,0,0,0,0,0,180,4.6,9,9,16.1,1520,9,999999999,100,0.0470,0,88,999.000,999.0,99.0 +1988,12,8,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,3.3,-2.2,67,88700,0,0,280,0,0,0,0,0,0,0,250,6.7,7,7,16.1,1680,9,999999999,100,0.0470,0,88,999.000,999.0,99.0 +1988,12,8,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,3.3,-1.1,73,88700,0,0,285,0,0,0,0,0,0,0,260,7.2,8,8,16.1,1520,9,999999999,100,0.0470,0,88,999.000,999.0,99.0 +1988,12,8,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,3.9,-1.1,70,88600,0,0,288,0,0,0,0,0,0,0,220,4.1,8,8,16.1,1370,9,999999999,100,0.0470,0,88,999.000,999.0,99.0 +1988,12,8,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,0.0,-1.7,89,88700,0,0,271,0,0,0,0,0,0,0,280,3.1,8,8,24.1,3350,9,999999999,100,0.0470,0,88,999.000,999.0,99.0 +1988,12,9,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-0.6,-1.9,90,88700,0,0,269,0,0,0,0,0,0,0,90,4.1,8,8,24.1,2690,9,999999999,100,0.0470,0,88,999.000,999.0,99.0 +1988,12,9,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,0.0,-1.4,91,88700,0,0,277,0,0,0,0,0,0,0,250,4.6,9,9,24.1,2030,9,999999999,100,0.0470,0,88,999.000,999.0,99.0 +1988,12,9,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-1.1,-2.2,92,88700,0,0,272,0,0,0,0,0,0,0,180,2.6,9,9,16.1,1370,9,999999999,100,0.0470,0,88,999.000,999.0,99.0 +1988,12,9,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-1.1,-1.7,96,88700,0,0,273,0,0,0,0,0,0,0,190,2.1,9,9,16.1,1220,9,999999999,100,0.0470,0,88,999.000,999.0,99.0 +1988,12,9,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-0.6,-1.7,92,88600,0,0,275,0,0,0,0,0,0,0,240,2.6,9,9,16.1,1340,9,999999999,100,0.0470,0,88,999.000,999.0,99.0 +1988,12,9,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-1.1,-2.2,92,88600,0,0,280,0,0,0,0,0,0,0,190,2.6,10,10,24.1,1130,9,999999999,100,0.0470,0,88,999.000,999.0,99.0 +1988,12,9,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-1.7,-2.2,96,88600,0,0,277,0,0,0,0,0,0,0,0,0.0,10,10,24.1,1430,9,999999999,100,0.0470,0,88,999.000,999.0,99.0 +1988,12,9,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,0.0,-1.1,92,88600,0,0,286,0,0,0,0,0,0,0,200,4.1,10,10,24.1,1430,9,999999999,100,0.0470,0,88,999.000,999.0,99.0 +1988,12,9,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,0.0,85,88600,85,1352,296,30,4,30,3300,0,3300,890,240,4.1,10,10,48.3,1830,9,999999999,110,0.0360,0,88,999.000,999.0,99.0 +1988,12,9,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.6,-0.6,92,88600,259,1411,281,86,61,74,9300,4900,8400,1790,70,3.6,9,9,48.3,1830,9,999999999,110,0.0360,0,88,999.000,999.0,99.0 +1988,12,9,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,-0.6,85,88600,392,1411,275,195,107,166,21400,9800,18600,3780,30,2.6,7,7,48.3,1680,9,999999999,110,0.0360,0,88,999.000,999.0,99.0 +1988,12,9,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,0.6,76,88600,471,1411,287,217,224,141,22800,21000,15700,2910,120,2.1,7,7,48.3,1680,9,999999999,110,0.0360,0,88,999.000,999.0,99.0 +1988,12,9,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,0.6,71,88500,492,1411,286,250,330,134,26500,31400,15500,2730,290,5.2,5,5,48.3,77777,9,999999999,110,0.0360,0,88,999.000,999.0,99.0 +1988,12,9,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,0.0,63,88500,452,1411,283,276,588,86,28300,52600,11400,1590,290,7.2,5,2,48.3,77777,9,999999999,110,0.0360,0,88,999.000,999.0,99.0 +1988,12,9,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,0.0,61,88500,355,1411,281,208,558,66,21200,46400,9500,1200,300,6.7,9,1,64.4,77777,9,999999999,110,0.0360,0,88,999.000,999.0,99.0 +1988,12,9,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,-0.6,65,88500,207,1411,285,95,47,88,10300,3600,9800,1820,270,4.6,9,5,64.4,7620,9,999999999,110,0.0360,0,88,999.000,999.0,99.0 +1988,12,9,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,0.0,73,88600,38,905,276,22,42,19,2300,1500,2200,390,270,4.1,8,3,64.4,77777,9,999999999,110,0.0360,0,88,999.000,999.0,99.0 +1988,12,9,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,3.3,-0.6,76,88600,0,0,273,0,0,0,0,0,0,0,280,3.6,8,4,24.1,77777,9,999999999,110,0.0360,0,88,999.000,999.0,99.0 +1988,12,9,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,3.9,-1.1,70,88600,0,0,280,0,0,0,0,0,0,0,290,4.1,10,6,24.1,7620,9,999999999,100,0.0360,0,88,999.000,999.0,99.0 +1988,12,9,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,4.4,-1.7,65,88500,0,0,277,0,0,0,0,0,0,0,280,4.6,8,4,24.1,77777,9,999999999,100,0.0360,0,88,999.000,999.0,99.0 +1988,12,9,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,2.2,-1.7,76,88500,0,0,266,0,0,0,0,0,0,0,270,2.6,7,3,24.1,77777,9,999999999,100,0.0360,0,88,999.000,999.0,99.0 +1988,12,9,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,0.6,-2.2,82,88500,0,0,259,0,0,0,0,0,0,0,300,2.6,7,3,24.1,77777,9,999999999,100,0.0360,0,88,999.000,999.0,99.0 +1988,12,9,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-0.6,-2.2,89,88500,0,0,249,0,0,0,0,0,0,0,270,2.1,3,1,24.1,77777,9,999999999,100,0.0360,0,88,999.000,999.0,99.0 +1988,12,9,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-1.1,-2.2,92,88500,0,0,242,0,0,0,0,0,0,0,340,2.1,2,0,24.1,77777,9,999999999,100,0.0360,0,88,999.000,999.0,99.0 +1988,12,10,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-2.2,-2.8,96,88500,0,0,243,0,0,0,0,0,0,0,210,2.1,3,1,24.1,77777,9,999999999,89,0.0360,0,88,999.000,999.0,99.0 +1988,12,10,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-1.1,-2.8,89,88500,0,0,250,0,0,0,0,0,0,0,230,3.1,4,2,24.1,77777,9,999999999,89,0.0360,0,88,999.000,999.0,99.0 +1988,12,10,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-1.1,-3.4,91,88500,0,0,252,0,0,0,0,0,0,0,330,2.1,5,3,24.1,77777,9,999999999,100,0.0360,0,88,999.000,999.0,99.0 +1988,12,10,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-2.2,-3.5,94,88400,0,0,252,0,0,0,0,0,0,0,0,0.0,6,5,24.1,77777,9,999999999,89,0.0360,0,88,999.000,999.0,99.0 +1988,12,10,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-2.2,-2.8,96,88400,0,0,254,0,0,0,0,0,0,0,200,2.1,7,6,24.1,77777,9,999999999,89,0.0360,0,88,999.000,999.0,99.0 +1988,12,10,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-2.2,-2.8,96,88400,0,0,257,0,0,0,0,0,0,0,270,2.1,8,7,24.1,2440,9,999999999,89,0.0360,0,88,999.000,999.0,99.0 +1988,12,10,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-2.2,-2.8,96,88400,0,0,262,0,0,0,0,0,0,0,0,0.0,9,8,24.1,3660,9,999999999,89,0.0360,0,88,999.000,999.0,99.0 +1988,12,10,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-1.7,-2.2,96,88300,0,0,270,0,0,0,0,0,0,0,0,0.0,10,9,48.3,3660,9,999999999,100,0.0360,0,88,999.000,999.0,99.0 +1988,12,10,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.1,-1.7,96,88300,82,1329,267,30,23,28,3200,1300,3100,630,290,1.5,10,8,48.3,3350,9,999999999,100,0.0420,0,88,999.000,999.0,99.0 +1988,12,10,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.7,-2.2,96,88300,256,1411,270,61,0,61,6800,0,6800,2100,270,2.1,10,9,64.4,3350,9,999999999,100,0.0420,0,88,999.000,999.0,99.0 +1988,12,10,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.0,-1.1,92,88200,389,1411,272,130,82,107,14100,7300,12100,2370,240,2.1,10,8,64.4,3350,9,999999999,100,0.0420,0,88,999.000,999.0,99.0 +1988,12,10,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,-2.2,56,88200,469,1411,281,243,459,89,26000,42100,11900,1650,270,5.7,8,3,64.4,77777,9,999999999,100,0.0420,0,88,999.000,999.0,99.0 +1988,12,10,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,-2.8,49,88100,490,1411,282,246,474,81,25600,43600,10400,1560,270,8.8,3,2,64.4,77777,9,999999999,89,0.0420,0,88,999.000,999.0,99.0 +1988,12,10,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,-1.1,54,88100,451,1411,293,195,224,123,20700,20700,14000,2480,320,5.7,5,5,48.3,77777,9,999999999,100,0.0420,0,88,999.000,999.0,99.0 +1988,12,10,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,-1.1,56,88100,354,1411,291,140,171,97,14800,14300,11200,1900,310,6.2,5,5,48.3,77777,9,999999999,100,0.0420,0,88,999.000,999.0,99.0 +1988,12,10,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,-2.2,50,88100,206,1411,292,89,217,57,9100,13900,7000,1050,260,5.7,5,5,48.3,77777,9,999999999,100,0.0420,0,88,999.000,999.0,99.0 +1988,12,10,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,-2.2,58,88200,38,905,286,25,48,21,2500,1700,2400,430,300,5.2,6,6,48.3,1680,9,999999999,100,0.0420,0,88,999.000,999.0,99.0 +1988,12,10,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,5.6,-2.2,58,88300,0,0,286,0,0,0,0,0,0,0,280,5.7,6,6,24.1,1680,9,999999999,100,0.0420,0,88,999.000,999.0,99.0 +1988,12,10,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,5.0,-2.2,60,88300,0,0,279,0,0,0,0,0,0,0,270,4.6,4,4,24.1,77777,9,999999999,100,0.0420,0,88,999.000,999.0,99.0 +1988,12,10,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,5.6,-2.8,55,88300,0,0,280,0,0,0,0,0,0,0,280,6.2,4,4,24.1,77777,9,999999999,89,0.0420,0,88,999.000,999.0,99.0 +1988,12,10,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,5.0,-2.8,58,88400,0,0,273,0,0,0,0,0,0,0,280,6.2,2,2,24.1,77777,9,999999999,89,0.0420,0,88,999.000,999.0,99.0 +1988,12,10,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,4.4,-3.3,57,88400,0,0,270,0,0,0,0,0,0,0,290,6.7,2,2,24.1,77777,9,999999999,89,0.0420,0,88,999.000,999.0,99.0 +1988,12,10,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,5.0,-3.9,53,88400,0,0,279,0,0,0,0,0,0,0,280,6.2,5,5,24.1,77777,9,999999999,89,0.0420,0,88,999.000,999.0,99.0 +1988,12,10,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,4.4,-3.9,55,88500,0,0,272,0,0,0,0,0,0,0,280,6.2,3,3,24.1,77777,9,999999999,89,0.0420,0,88,999.000,999.0,99.0 +1988,12,11,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,4.4,-4.0,58,88500,0,0,272,0,0,0,0,0,0,0,280,5.7,3,3,24.1,77777,9,999999999,89,0.0420,0,88,999.000,999.0,99.0 +1988,12,11,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,3.9,-3.3,62,88600,0,0,268,0,0,0,0,0,0,0,280,5.2,2,2,24.1,77777,9,999999999,89,0.0420,0,88,999.000,999.0,99.0 +1988,12,11,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,3.3,-3.9,65,88600,0,0,265,0,0,0,0,0,0,0,290,4.1,2,2,24.1,77777,9,999999999,89,0.0420,0,88,999.000,999.0,99.0 +1988,12,11,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,2.8,-4.1,68,88700,0,0,260,0,0,0,0,0,0,0,290,3.6,1,1,24.1,77777,9,999999999,89,0.0420,0,88,999.000,999.0,99.0 +1988,12,11,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,2.2,-3.4,72,88700,0,0,258,0,0,0,0,0,0,0,280,3.6,1,1,24.1,77777,9,999999999,100,0.0420,0,88,999.000,999.0,99.0 +1988,12,11,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,0.0,-3.9,75,88700,0,0,245,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,89,0.0420,0,88,999.000,999.0,99.0 +1988,12,11,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,0.6,-3.3,76,88700,0,0,248,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,89,0.0420,0,88,999.000,999.0,99.0 +1988,12,11,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-3.3,-4.4,92,88700,0,0,243,0,0,0,0,0,0,0,290,2.1,7,3,48.3,77777,9,999999999,80,0.0420,0,88,999.000,999.0,99.0 +1988,12,11,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.7,-3.3,89,88700,79,1305,244,33,157,21,3300,6300,2900,370,270,2.1,8,1,48.3,77777,9,999999999,89,0.0330,0,88,999.000,999.0,99.0 +1988,12,11,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-0.6,-3.3,82,88700,253,1411,248,124,422,48,12700,30800,7100,860,300,2.6,7,1,48.3,77777,9,999999999,89,0.0330,0,88,999.000,999.0,99.0 +1988,12,11,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.1,-2.8,76,88800,386,1411,263,191,290,111,20100,25300,13100,2220,100,1.5,10,4,48.3,77777,9,999999999,89,0.0330,0,88,999.000,999.0,99.0 +1988,12,11,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,-2.2,70,88700,467,1411,296,128,4,126,14300,300,14200,4590,50,1.5,10,10,64.4,7620,9,999999999,100,0.0330,0,88,999.000,999.0,99.0 +1988,12,11,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,-2.2,67,88700,488,1411,274,273,473,108,28700,43800,13500,2040,90,2.6,10,5,64.4,77777,9,999999999,100,0.0330,0,88,999.000,999.0,99.0 +1988,12,11,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,-2.2,62,88600,449,1411,271,249,459,101,26100,41400,12800,1890,260,2.1,10,2,64.4,77777,9,999999999,100,0.0330,0,88,999.000,999.0,99.0 +1988,12,11,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,-2.2,52,88500,353,1411,288,185,471,66,18900,39100,9100,1200,220,2.1,8,4,64.4,77777,9,999999999,100,0.0330,0,88,999.000,999.0,99.0 +1988,12,11,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,-2.2,56,88500,206,1411,281,77,189,49,8000,12100,6200,890,270,5.7,8,3,64.4,77777,9,999999999,100,0.0330,0,88,999.000,999.0,99.0 +1988,12,11,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,-2.8,58,88500,38,906,278,19,38,16,1900,1000,1800,280,120,2.1,9,4,64.4,77777,9,999999999,89,0.0330,0,88,999.000,999.0,99.0 +1988,12,11,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,6.7,-2.8,51,88500,0,0,285,0,0,0,0,0,0,0,300,2.1,8,4,24.1,77777,9,999999999,89,0.0330,0,88,999.000,999.0,99.0 +1988,12,11,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,2.2,-1.7,76,88400,0,0,276,0,0,0,0,0,0,0,140,4.1,10,7,24.1,3050,9,999999999,100,0.0330,0,88,999.000,999.0,99.0 +1988,12,11,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,3.9,-1.1,70,88300,0,0,302,0,0,0,0,0,0,0,360,2.1,10,10,24.1,2740,9,999999999,100,0.0330,0,88,999.000,999.0,99.0 +1988,12,11,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,2.8,-1.7,73,88300,0,0,297,0,0,0,0,0,0,0,330,3.6,10,10,24.1,2130,9,999999999,100,0.0330,0,88,999.000,999.0,99.0 +1988,12,11,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,2.2,-2.8,70,88200,0,0,293,0,0,0,0,0,0,0,300,3.1,10,10,24.1,1980,9,999999999,89,0.0330,0,88,999.000,999.0,99.0 +1988,12,11,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,2.8,-2.8,67,88300,0,0,296,0,0,0,0,0,0,0,260,2.6,10,10,24.1,1830,9,999999999,89,0.0330,0,88,999.000,999.0,99.0 +1988,12,11,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,2.8,-1.7,73,88300,0,0,297,0,0,0,0,0,0,0,120,1.5,10,10,24.1,1520,9,999999999,100,0.0330,0,88,999.000,999.0,99.0 +1988,12,12,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,2.2,-1.6,70,88300,0,0,286,0,0,0,0,0,0,0,290,2.6,9,9,24.1,16770,9,999999999,89,0.0330,0,88,999.000,999.0,99.0 +1988,12,12,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,7.8,-0.6,67,88300,0,0,305,0,0,0,0,0,0,0,230,2.1,8,8,24.1,77777,9,999999999,120,0.0330,0,88,999.000,999.0,99.0 +1988,12,12,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,7.2,-1.0,64,88400,0,0,297,0,0,0,0,0,0,0,340,3.1,7,7,24.1,77777,9,999999999,110,0.0330,0,88,999.000,999.0,99.0 +1988,12,12,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,7.8,-0.9,61,88400,0,0,294,0,0,0,0,0,0,0,290,4.1,6,5,24.1,77777,9,999999999,110,0.0330,0,88,999.000,999.0,99.0 +1988,12,12,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,7.8,0.0,58,88400,0,0,292,0,0,0,0,0,0,0,260,6.2,5,4,24.1,77777,9,999999999,110,0.0330,0,88,999.000,999.0,99.0 +1988,12,12,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,5.6,0.0,68,88400,0,0,281,0,0,0,0,0,0,0,320,2.6,4,3,24.1,77777,9,999999999,110,0.0330,0,88,999.000,999.0,99.0 +1988,12,12,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,7.2,0.0,61,88400,0,0,285,0,0,0,0,0,0,0,260,4.6,3,2,24.1,77777,9,999999999,110,0.0330,0,88,999.000,999.0,99.0 +1988,12,12,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,7.8,0.6,61,88500,0,0,298,0,0,0,0,0,0,0,270,6.2,9,6,48.3,3050,9,999999999,110,0.0330,0,88,999.000,999.0,99.0 +1988,12,12,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,-0.6,54,88500,77,1282,307,20,3,20,2300,0,2300,670,260,6.7,10,8,48.3,1490,9,999999999,110,0.0310,0,88,999.000,999.0,99.0 +1988,12,12,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,0.6,54,88500,250,1412,305,76,73,63,8300,5400,7300,1350,270,8.8,10,6,48.3,1490,9,999999999,110,0.0310,0,88,999.000,999.0,99.0 +1988,12,12,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,-1.7,45,88500,384,1412,302,187,329,97,19400,28100,11700,1820,300,7.7,9,5,48.3,7620,9,999999999,100,0.0310,0,88,999.000,999.0,99.0 +1988,12,12,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,-1.1,42,88400,465,1412,308,270,499,105,28400,45500,13300,1980,280,9.3,10,4,48.3,77777,9,999999999,100,0.0310,0,88,999.000,999.0,99.0 +1988,12,12,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,-1.1,39,88400,487,1412,310,306,621,90,31500,56700,11800,1690,260,7.2,9,3,48.3,77777,9,999999999,100,0.0310,0,88,999.000,999.0,99.0 +1988,12,12,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,0.6,44,88400,448,1412,314,240,459,93,25400,41400,12200,1730,240,5.2,8,4,48.3,77777,9,999999999,110,0.0310,0,88,999.000,999.0,99.0 +1988,12,12,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,-1.1,40,88400,352,1412,312,139,282,68,14800,23400,8900,1230,270,7.2,5,5,64.4,77777,9,999999999,100,0.0310,0,88,999.000,999.0,99.0 +1988,12,12,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,-1.1,45,88400,206,1412,308,98,296,55,10100,18900,7300,1010,300,2.6,8,6,64.4,1520,9,999999999,100,0.0310,0,88,999.000,999.0,99.0 +1988,12,12,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,1.7,63,88300,38,906,301,16,25,14,1700,900,1600,290,320,4.1,8,6,64.4,1520,9,999999999,120,0.0310,0,88,999.000,999.0,99.0 +1988,12,12,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,7.2,1.7,68,88300,0,0,311,0,0,0,0,0,0,0,190,1.5,10,9,24.1,1680,9,999999999,120,0.0310,0,88,999.000,999.0,99.0 +1988,12,12,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,6.7,2.2,74,88100,0,0,303,0,0,0,0,0,0,0,180,2.6,8,8,24.1,1680,9,999999999,129,0.0310,0,88,999.000,999.0,99.0 +1988,12,12,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,5.6,1.7,76,88000,0,0,298,0,0,0,0,0,0,0,180,3.6,8,8,24.1,1680,9,999999999,120,0.0310,0,88,999.000,999.0,99.0 +1988,12,12,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,5.6,2.2,79,87900,0,0,305,0,0,0,0,0,0,0,20,4.1,10,9,24.1,1370,9,999999999,120,0.0310,0,88,999.000,999.0,99.0 +1988,12,12,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,3.9,1.7,86,87800,0,0,305,0,0,0,0,0,0,0,230,2.6,10,10,24.1,7620,9,999999999,120,0.0310,0,88,999.000,999.0,99.0 +1988,12,12,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,3.9,1.1,82,87700,0,0,275,0,0,0,0,0,0,0,140,2.6,7,3,24.1,77777,9,999999999,120,0.0310,0,88,999.000,999.0,99.0 +1988,12,12,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,3.3,1.1,86,87600,0,0,275,0,0,0,0,0,0,0,110,2.1,10,4,24.1,77777,9,999999999,120,0.0310,0,88,999.000,999.0,99.0 +1988,12,13,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,7.2,1.2,66,87600,0,0,291,0,0,0,0,0,0,0,160,3.1,9,4,24.1,77777,9,999999999,120,0.0310,0,88,999.000,999.0,99.0 +1988,12,13,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,10.0,2.0,57,87400,0,0,306,0,0,0,0,0,0,0,230,7.2,9,5,24.1,77777,9,999999999,120,0.0310,0,88,999.000,999.0,99.0 +1988,12,13,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,10.0,1.5,55,87300,0,0,305,0,0,0,0,0,0,0,230,6.2,8,5,24.1,77777,9,999999999,120,0.0310,0,88,999.000,999.0,99.0 +1988,12,13,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,11.1,1.5,52,87200,0,0,310,0,0,0,0,0,0,0,280,7.7,8,5,24.1,77777,9,999999999,120,0.0310,0,88,999.000,999.0,99.0 +1988,12,13,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,11.1,2.4,55,87000,0,0,311,0,0,0,0,0,0,0,240,11.3,7,5,24.1,77777,9,999999999,120,0.0310,0,88,999.000,999.0,99.0 +1988,12,13,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,7.2,2.0,69,87100,0,0,297,0,0,0,0,0,0,0,280,9.3,7,6,24.1,12156,9,999999999,120,0.0310,0,88,999.000,999.0,99.0 +1988,12,13,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,7.8,2.2,68,87200,0,0,299,0,0,0,0,0,0,0,280,8.2,6,6,24.1,1220,9,999999999,120,0.0310,0,88,999.000,999.0,99.0 +1988,12,13,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,7.2,0.6,63,87200,0,0,303,0,0,0,0,0,0,0,290,7.2,8,8,48.3,1220,9,999999999,110,0.0310,0,88,999.000,999.0,99.0 +1988,12,13,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,-2.2,52,87200,74,1259,292,21,29,19,2300,1300,2200,390,280,9.3,6,6,48.3,1220,9,999999999,100,0.0580,0,88,999.000,999.0,99.0 +1988,12,13,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,-7.8,31,87400,248,1412,294,99,98,82,10600,7200,9400,1750,280,17.5,8,7,48.3,1220,9,999999999,69,0.0580,0,88,999.000,999.0,99.0 +1988,12,13,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,-6.1,45,87700,382,1412,282,167,284,90,17400,24200,10900,1670,290,17.0,7,7,48.3,1220,9,999999999,80,0.0580,0,88,999.000,999.0,99.0 +1988,12,13,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,-10.6,29,87700,463,1412,274,213,297,115,22800,27700,13600,2280,260,20.1,4,4,48.3,77777,9,999999999,60,0.0580,0,88,999.000,999.0,99.0 +1988,12,13,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,-8.3,36,87700,485,1412,273,219,312,111,23000,28800,13000,2110,280,12.4,5,3,48.3,77777,9,999999999,69,0.0580,0,88,999.000,999.0,99.0 +1988,12,13,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,-8.3,36,87700,448,1412,275,184,265,99,19800,24500,12000,1910,280,12.4,5,4,48.3,77777,9,999999999,69,0.0580,0,88,999.000,999.0,99.0 +1988,12,13,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,-10.0,33,87700,352,1412,266,209,599,58,21600,50000,9000,1080,290,13.4,2,2,48.3,77777,9,999999999,60,0.0580,0,88,999.000,999.0,99.0 +1988,12,13,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,-9.4,38,87600,206,1412,262,100,395,42,10200,26300,6300,740,270,13.4,2,2,48.3,77777,9,999999999,60,0.0580,0,88,999.000,999.0,99.0 +1988,12,13,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,-8.9,42,87700,38,906,255,21,106,12,1700,4300,1500,220,280,10.8,1,1,64.4,77777,9,999999999,69,0.0580,0,88,999.000,999.0,99.0 +1988,12,13,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,1.1,-9.4,46,87800,0,0,244,0,0,0,0,0,0,0,300,3.1,0,0,24.1,77777,9,999999999,60,0.0580,0,88,999.000,999.0,99.0 +1988,12,13,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,1.7,-8.3,48,87900,0,0,260,0,0,0,0,0,0,0,260,5.2,4,4,24.1,77777,9,999999999,69,0.0580,0,88,999.000,999.0,99.0 +1988,12,13,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,1.1,-6.7,57,87900,0,0,263,0,0,0,0,0,0,0,270,6.2,6,6,24.1,1520,9,999999999,69,0.0580,0,88,999.000,999.0,99.0 +1988,12,13,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,1.1,-6.7,57,88000,0,0,284,0,0,0,0,0,0,0,260,6.7,10,10,24.1,1460,9,999999999,69,0.0580,0,88,999.000,999.0,99.0 +1988,12,13,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,1.1,-8.9,48,88000,0,0,264,0,0,0,0,0,0,0,270,8.8,8,7,24.1,3050,9,999999999,69,0.0580,0,88,999.000,999.0,99.0 +1988,12,13,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,1.1,-7.8,52,88100,0,0,269,0,0,0,0,0,0,0,280,5.2,8,8,24.1,3050,9,999999999,69,0.0580,0,88,999.000,999.0,99.0 +1988,12,13,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,0.6,-8.3,52,88100,0,0,267,0,0,0,0,0,0,0,280,5.7,8,8,24.1,3050,9,999999999,69,0.0580,0,88,999.000,999.0,99.0 +1988,12,14,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,0.6,-7.7,58,88200,0,0,268,0,0,0,0,0,0,0,280,7.2,8,8,24.1,2593,9,999999999,69,0.0580,0,88,999.000,999.0,99.0 +1988,12,14,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,0.0,-6.4,63,88300,0,0,272,0,0,0,0,0,0,0,290,5.7,9,9,24.1,2137,9,999999999,80,0.0580,0,88,999.000,999.0,99.0 +1988,12,14,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,0.0,-6.4,69,88300,0,0,272,0,0,0,0,0,0,0,290,5.7,9,9,24.1,1680,9,999999999,80,0.0580,0,88,999.000,999.0,99.0 +1988,12,14,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,0.0,-5.9,74,88300,0,0,273,0,0,0,0,0,0,0,320,4.6,9,9,24.1,1223,9,999999999,89,0.0580,0,88,999.000,999.0,99.0 +1988,12,14,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-0.6,-4.5,80,88400,0,0,272,0,0,0,0,0,0,0,320,3.6,9,9,24.1,767,9,999999999,89,0.0580,0,88,999.000,999.0,99.0 +1988,12,14,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-2.2,-4.4,85,88500,0,0,273,0,0,0,0,0,0,0,320,7.7,10,10,6.4,310,9,999999999,80,0.0580,0,88,999.000,999.0,99.0 +1988,12,14,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-3.3,-3.9,96,88600,0,0,269,0,0,0,0,0,0,0,330,9.3,10,10,1.6,310,9,999999999,89,0.0580,0,88,999.000,999.0,99.0 +1988,12,14,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-3.9,-6.1,85,88800,0,0,265,0,0,0,0,0,0,0,330,5.7,10,10,12.9,1220,9,999999999,80,0.0580,0,88,999.000,999.0,99.0 +1988,12,14,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-3.9,-7.2,78,88900,72,1259,256,26,16,25,2800,900,2800,570,330,6.2,9,9,12.9,2440,9,999999999,69,0.0240,0,88,999.000,999.0,99.0 +1988,12,14,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-3.9,-6.7,81,89100,245,1412,251,84,68,72,9100,5000,8200,1540,350,6.7,9,8,16.1,1680,9,999999999,69,0.0240,0,88,999.000,999.0,99.0 +1988,12,14,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-4.4,-6.1,88,89200,380,1412,250,149,137,112,16100,12000,12900,2470,340,5.7,9,8,6.4,1680,9,999999999,80,0.0240,0,88,999.000,999.0,99.0 +1988,12,14,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-4.4,-6.7,85,89300,461,1412,255,130,13,126,14600,900,14300,4560,330,6.2,10,9,6.4,1520,9,999999999,80,0.0240,0,88,999.000,999.0,99.0 +1988,12,14,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-4.4,-7.8,78,89300,484,1412,261,138,20,131,15500,1400,15000,4810,330,6.7,10,10,16.1,1520,9,999999999,69,0.0240,0,88,999.000,999.0,99.0 +1988,12,14,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-4.4,-7.8,78,89400,447,1412,261,160,16,155,17600,1200,17200,5040,320,5.7,10,10,16.1,1680,9,999999999,69,0.0240,0,88,999.000,999.0,99.0 +1988,12,14,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-3.9,-8.3,72,89400,352,1412,263,96,7,94,10700,400,10600,3260,320,5.2,10,10,16.1,1680,9,999999999,69,0.0240,0,88,999.000,999.0,99.0 +1988,12,14,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-4.4,-8.3,75,89500,206,1412,261,59,1,59,6500,0,6500,1860,310,5.2,10,10,24.1,1680,9,999999999,69,0.0240,0,88,999.000,999.0,99.0 +1988,12,14,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-4.4,-8.9,72,89700,38,906,260,14,0,14,1600,0,1600,480,310,4.6,10,10,24.1,1830,9,999999999,69,0.0240,0,88,999.000,999.0,99.0 +1988,12,14,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-5.0,-8.3,78,89700,0,0,258,0,0,0,0,0,0,0,320,4.1,10,10,24.1,1830,9,999999999,69,0.0240,0,88,999.000,999.0,99.0 +1988,12,14,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-5.6,-7.8,85,89800,0,0,256,0,0,0,0,0,0,0,300,3.6,10,10,24.1,1830,9,999999999,69,0.0240,0,88,999.000,999.0,99.0 +1988,12,14,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-5.6,-7.8,85,89800,0,0,256,0,0,0,0,0,0,0,320,4.6,10,10,24.1,1830,9,999999999,69,0.0240,0,88,999.000,999.0,99.0 +1988,12,14,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-5.6,-7.8,85,89900,0,0,256,0,0,0,0,0,0,0,320,3.6,10,10,24.1,1830,9,999999999,69,0.0240,0,88,999.000,999.0,99.0 +1988,12,14,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-5.6,-9.4,74,89900,0,0,255,0,0,0,0,0,0,0,320,3.6,10,10,24.1,1680,9,999999999,60,0.0240,0,88,999.000,999.0,99.0 +1988,12,14,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-5.6,-9.4,74,89900,0,0,255,0,0,0,0,0,0,0,260,4.1,10,10,24.1,1830,9,999999999,60,0.0240,0,88,999.000,999.0,99.0 +1988,12,14,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-5.6,-9.4,74,89800,0,0,255,0,0,0,0,0,0,0,280,3.1,10,10,24.1,1680,9,999999999,60,0.0240,0,88,999.000,999.0,99.0 +1988,12,15,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-6.1,-9.4,78,89800,0,0,246,0,0,0,0,0,0,0,300,3.1,9,9,16.1,1680,9,999999999,60,0.0240,0,88,999.000,999.0,99.0 +1988,12,15,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-6.7,-9.3,82,89800,0,0,235,0,0,0,0,0,0,0,340,2.1,7,7,16.1,20703,9,999999999,60,0.0240,0,88,999.000,999.0,99.0 +1988,12,15,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-7.2,-10.5,85,89800,0,0,230,0,0,0,0,0,0,0,0,0.0,6,6,16.1,77777,9,999999999,60,0.0240,0,88,999.000,999.0,99.0 +1988,12,15,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-8.9,-11.2,89,89700,0,0,219,0,0,0,0,0,0,0,290,3.6,4,4,16.1,77777,9,999999999,60,0.0240,0,88,999.000,999.0,99.0 +1988,12,15,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-10.0,-11.1,92,89700,0,0,214,0,0,0,0,0,0,0,80,2.6,3,3,24.1,77777,9,999999999,60,0.0240,0,88,999.000,999.0,99.0 +1988,12,15,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-10.0,-10.6,96,89600,0,0,210,0,0,0,0,0,0,0,20,1.5,1,1,24.1,77777,9,999999999,60,0.0240,0,88,999.000,999.0,99.0 +1988,12,15,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-11.7,-15.6,73,89700,0,0,197,0,0,0,0,0,0,0,190,2.6,0,0,24.1,77777,9,999999999,50,0.0240,0,88,999.000,999.0,99.0 +1988,12,15,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-12.8,-15.0,84,89700,0,0,194,0,0,0,0,0,0,0,0,0.0,0,0,64.4,77777,9,999999999,50,0.0240,0,88,999.000,999.0,99.0 +1988,12,15,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-13.3,-16.7,76,89600,70,1236,191,35,286,13,3100,15100,2200,270,20,1.5,0,0,64.4,77777,9,999999999,40,0.0270,0,88,999.000,999.0,99.0 +1988,12,15,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-11.7,-14.4,80,89700,243,1412,198,145,684,26,15300,53500,6000,630,0,0.0,0,0,64.4,77777,9,999999999,50,0.0270,0,88,999.000,999.0,99.0 +1988,12,15,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-9.4,-13.3,74,89700,378,1412,205,254,817,34,26900,71800,7600,860,300,2.6,0,0,64.4,77777,9,999999999,50,0.0270,0,88,999.000,999.0,99.0 +1988,12,15,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-6.7,-13.3,60,89700,460,1412,214,324,869,39,34300,79600,8200,1000,0,0.0,0,0,64.4,77777,9,999999999,50,0.0270,0,88,999.000,999.0,99.0 +1988,12,15,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-5.6,-11.7,63,89600,483,1412,219,341,873,40,36000,80700,8300,1030,70,1.5,0,0,64.4,77777,9,999999999,60,0.0270,0,88,999.000,999.0,99.0 +1988,12,15,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-5.0,-12.2,57,89600,446,1412,220,311,856,38,32800,78000,8100,970,70,3.1,0,0,64.4,77777,9,999999999,60,0.0270,0,88,999.000,999.0,99.0 +1988,12,15,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-5.0,-13.3,53,89600,352,1412,220,231,781,34,24300,67400,7400,830,110,3.1,1,0,64.4,77777,9,999999999,50,0.0270,0,88,999.000,999.0,99.0 +1988,12,15,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-5.0,-11.7,60,89700,206,1412,236,86,165,61,8900,10300,7400,1180,110,3.6,7,6,64.4,2130,9,999999999,60,0.0270,0,88,999.000,999.0,99.0 +1988,12,15,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-5.0,-11.1,63,89700,39,906,256,22,1,22,2400,0,2400,650,130,2.6,10,10,64.4,2130,9,999999999,60,0.0270,0,88,999.000,999.0,99.0 +1988,12,15,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-5.0,-11.7,60,89700,0,0,255,0,0,0,0,0,0,0,140,3.6,10,10,24.1,1370,9,999999999,60,0.0270,0,88,999.000,999.0,99.0 +1988,12,15,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-6.7,-11.7,68,89700,0,0,226,0,0,0,0,0,0,0,110,3.6,4,4,24.1,77777,9,999999999,60,0.0270,0,88,999.000,999.0,99.0 +1988,12,15,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-6.7,-12.2,65,89800,0,0,224,0,0,0,0,0,0,0,140,2.6,3,3,24.1,77777,9,999999999,60,0.0270,0,88,999.000,999.0,99.0 +1988,12,15,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-6.7,-11.7,68,89800,0,0,230,0,0,0,0,0,0,0,270,2.6,7,6,24.1,2130,9,999999999,60,0.0270,0,88,999.000,999.0,99.0 +1988,12,15,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-7.8,-11.1,77,89800,0,0,219,0,0,0,0,0,0,0,180,1.5,2,2,24.1,77777,9,999999999,60,0.0270,0,88,999.000,999.0,99.0 +1988,12,15,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-7.8,-11.1,77,89800,0,0,212,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,60,0.0270,0,88,999.000,999.0,99.0 +1988,12,15,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-10.0,-12.2,84,89800,0,0,204,0,0,0,0,0,0,0,170,2.1,0,0,24.1,77777,9,999999999,60,0.0270,0,88,999.000,999.0,99.0 +1988,12,16,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-10.0,-12.2,84,89800,0,0,204,0,0,0,0,0,0,0,270,3.1,0,0,24.1,77777,9,999999999,60,0.0270,0,88,999.000,999.0,99.0 +1988,12,16,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-12.2,-12.2,84,89800,0,0,198,0,0,0,0,0,0,0,170,1.5,0,0,24.1,77777,9,999999999,50,0.0270,0,88,999.000,999.0,99.0 +1988,12,16,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-11.7,-12.9,84,89800,0,0,199,0,0,0,0,0,0,0,220,2.1,0,0,24.1,77777,9,999999999,50,0.0270,0,88,999.000,999.0,99.0 +1988,12,16,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-12.2,-13.3,84,89800,0,0,197,0,0,0,0,0,0,0,320,1.5,0,0,24.1,77777,9,999999999,50,0.0270,0,88,999.000,999.0,99.0 +1988,12,16,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-12.2,-13.0,84,89800,0,0,197,0,0,0,0,0,0,0,190,2.1,0,0,24.1,77777,9,999999999,50,0.0270,0,88,999.000,999.0,99.0 +1988,12,16,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-11.7,-13.9,84,89800,0,0,198,0,0,0,0,0,0,0,310,2.1,0,0,24.1,77777,9,999999999,50,0.0270,0,88,999.000,999.0,99.0 +1988,12,16,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-12.8,-15.0,84,89800,0,0,194,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,50,0.0270,0,88,999.000,999.0,99.0 +1988,12,16,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-12.8,-15.0,84,89800,0,0,194,0,0,0,0,0,0,0,0,0.0,1,0,24.1,77777,9,999999999,50,0.0270,0,88,999.000,999.0,99.0 +1988,12,16,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-12.2,-14.4,84,89900,68,1213,196,37,321,13,3400,18600,2300,280,330,2.1,1,0,32.2,77777,9,999999999,50,0.0240,0,88,999.000,999.0,99.0 +1988,12,16,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-8.9,-12.2,77,89900,241,1413,208,142,684,24,15000,53400,5800,610,360,1.5,0,0,48.3,77777,9,999999999,60,0.0240,0,88,999.000,999.0,99.0 +1988,12,16,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-7.2,-11.1,74,89900,376,1413,214,249,813,32,26500,71400,7400,840,360,1.5,0,0,64.4,77777,9,999999999,60,0.0240,0,88,999.000,999.0,99.0 +1988,12,16,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-6.1,-11.1,68,89800,459,1413,218,321,870,37,34000,79700,8000,970,310,2.6,0,0,64.4,77777,9,999999999,60,0.0240,0,88,999.000,999.0,99.0 +1988,12,16,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-4.4,-11.1,60,89700,483,1413,223,343,886,38,36300,81900,8200,1000,320,2.1,0,0,64.4,77777,9,999999999,60,0.0240,0,88,999.000,999.0,99.0 +1988,12,16,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-2.8,-10.6,56,89700,446,1413,229,312,868,36,33100,79100,8000,950,30,2.1,0,0,64.4,77777,9,999999999,60,0.0240,0,88,999.000,999.0,99.0 +1988,12,16,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-3.3,-10.6,58,89600,352,1413,228,232,800,31,24600,69100,7200,800,0,0.0,0,0,64.4,77777,9,999999999,60,0.0240,0,88,999.000,999.0,99.0 +1988,12,16,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-3.3,-10.6,58,89600,207,1413,228,119,650,23,12600,48600,5400,550,360,3.1,0,0,64.4,77777,9,999999999,60,0.0240,0,88,999.000,999.0,99.0 +1988,12,16,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-5.6,-11.1,65,89600,39,930,219,27,228,10,2100,11200,1600,210,0,0.0,0,0,64.4,77777,9,999999999,60,0.0240,0,88,999.000,999.0,99.0 +1988,12,16,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-7.2,-11.1,74,89600,0,0,214,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,60,0.0240,0,88,999.000,999.0,99.0 +1988,12,16,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-7.8,-10.6,81,89600,0,0,213,0,0,0,0,0,0,0,210,3.1,0,0,24.1,77777,9,999999999,60,0.0240,0,88,999.000,999.0,99.0 +1988,12,16,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-8.3,-11.1,81,89600,0,0,211,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,60,0.0240,0,88,999.000,999.0,99.0 +1988,12,16,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-10.6,-13.9,77,89600,0,0,201,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,50,0.0240,0,88,999.000,999.0,99.0 +1988,12,16,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-10.6,-12.8,84,89600,0,0,202,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,50,0.0240,0,88,999.000,999.0,99.0 +1988,12,16,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-10.6,-12.8,84,89600,0,0,202,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,50,0.0240,0,88,999.000,999.0,99.0 +1988,12,16,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-11.7,-13.3,88,89600,0,0,198,0,0,0,0,0,0,0,130,2.1,0,0,24.1,77777,9,999999999,50,0.0240,0,88,999.000,999.0,99.0 +1988,12,17,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-11.1,-12.8,88,89600,0,0,201,0,0,0,0,0,0,0,270,1.5,0,0,24.1,77777,9,999999999,50,0.0240,0,88,999.000,999.0,99.0 +1988,12,17,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-11.7,-12.8,92,89600,0,0,199,0,0,0,0,0,0,0,160,1.5,0,0,24.1,77777,9,999999999,50,0.0240,0,88,999.000,999.0,99.0 +1988,12,17,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-11.1,-13.7,92,89600,0,0,200,0,0,0,0,0,0,0,200,2.6,0,0,24.1,77777,9,999999999,60,0.0240,0,88,999.000,999.0,99.0 +1988,12,17,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-12.2,-14.1,92,89500,0,0,196,0,0,0,0,0,0,0,210,1.5,0,0,24.1,77777,9,999999999,50,0.0240,0,88,999.000,999.0,99.0 +1988,12,17,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-11.7,-13.6,92,89500,0,0,198,0,0,0,0,0,0,0,330,2.6,0,0,24.1,77777,9,999999999,50,0.0240,0,88,999.000,999.0,99.0 +1988,12,17,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-13.3,-14.4,92,89500,0,0,193,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,50,0.0240,0,88,999.000,999.0,99.0 +1988,12,17,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-12.8,-13.9,92,89500,0,0,195,0,0,0,0,0,0,0,240,1.5,0,0,24.1,77777,9,999999999,50,0.0240,0,88,999.000,999.0,99.0 +1988,12,17,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-13.9,-15.0,91,89500,0,0,191,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,50,0.0240,0,88,999.000,999.0,99.0 +1988,12,17,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-12.2,-13.3,92,89500,66,1189,197,32,244,14,2900,12700,2100,270,0,0.0,0,0,32.2,77777,9,999999999,50,0.0440,0,88,999.000,999.0,99.0 +1988,12,17,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-10.0,-11.7,88,89500,239,1413,205,134,617,29,14100,48000,6000,630,70,1.5,0,0,32.2,77777,9,999999999,60,0.0440,0,88,999.000,999.0,99.0 +1988,12,17,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-7.2,-10.0,81,89500,374,1413,215,240,762,37,25400,66800,7600,880,0,0.0,0,0,32.2,77777,9,999999999,60,0.0440,0,88,999.000,999.0,99.0 +1988,12,17,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-6.1,-9.4,78,89400,457,1413,219,310,823,42,32700,75300,8200,1020,30,1.5,0,0,32.2,77777,9,999999999,60,0.0440,0,88,999.000,999.0,99.0 +1988,12,17,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-5.0,-9.4,71,89300,482,1413,223,331,838,43,34900,77400,8400,1060,310,2.1,0,0,32.2,77777,9,999999999,60,0.0440,0,88,999.000,999.0,99.0 +1988,12,17,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-3.3,-8.9,66,89200,446,1413,229,296,786,46,31100,71500,8400,1040,20,2.1,2,0,32.2,77777,9,999999999,69,0.0440,0,88,999.000,999.0,99.0 +1988,12,17,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-2.8,-8.9,63,89200,352,1413,231,221,740,36,23400,63900,7400,850,320,1.5,0,0,48.3,77777,9,999999999,69,0.0440,0,88,999.000,999.0,99.0 +1988,12,17,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-3.3,-8.3,69,89200,208,1413,230,112,569,27,11700,42500,5400,560,0,0.0,0,0,64.4,77777,9,999999999,69,0.0440,0,88,999.000,999.0,99.0 +1988,12,17,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-5.6,-8.9,78,89100,40,930,221,24,160,11,1900,6600,1600,210,180,2.6,0,0,64.4,77777,9,999999999,69,0.0440,0,88,999.000,999.0,99.0 +1988,12,17,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-6.7,-8.9,84,89100,0,0,218,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,69,0.0440,0,88,999.000,999.0,99.0 +1988,12,17,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-8.9,-10.6,88,89000,0,0,209,0,0,0,0,0,0,0,270,2.6,0,0,24.1,77777,9,999999999,60,0.0440,0,88,999.000,999.0,99.0 +1988,12,17,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-8.3,-10.0,88,89000,0,0,216,0,0,0,0,0,0,0,0,0.0,4,1,24.1,77777,9,999999999,60,0.0440,0,88,999.000,999.0,99.0 +1988,12,17,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-8.9,-11.1,84,88900,0,0,216,0,0,0,0,0,0,0,190,2.6,7,2,24.1,77777,9,999999999,60,0.0440,0,88,999.000,999.0,99.0 +1988,12,17,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-8.3,-10.0,88,88800,0,0,224,0,0,0,0,0,0,0,0,0.0,8,5,24.1,7620,9,999999999,60,0.0440,0,88,999.000,999.0,99.0 +1988,12,17,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-10.0,-11.7,88,88800,0,0,225,0,0,0,0,0,0,0,210,2.1,10,8,24.1,7620,9,999999999,60,0.0440,0,88,999.000,999.0,99.0 +1988,12,17,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-10.0,-11.7,88,88800,0,0,222,0,0,0,0,0,0,0,0,0.0,10,7,24.1,7620,9,999999999,60,0.0440,0,88,999.000,999.0,99.0 +1988,12,18,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-10.0,-12.1,90,88700,0,0,219,0,0,0,0,0,0,0,130,1.5,9,6,24.1,77777,9,999999999,60,0.0440,0,88,999.000,999.0,99.0 +1988,12,18,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-10.6,-11.7,92,88600,0,0,215,0,0,0,0,0,0,0,360,2.1,8,5,24.1,77777,9,999999999,60,0.0440,0,88,999.000,999.0,99.0 +1988,12,18,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-11.1,-12.6,93,88600,0,0,211,0,0,0,0,0,0,0,0,0.0,7,4,24.1,77777,9,999999999,60,0.0440,0,88,999.000,999.0,99.0 +1988,12,18,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-12.2,-13.0,94,88500,0,0,206,0,0,0,0,0,0,0,0,0.0,5,3,24.1,77777,9,999999999,50,0.0440,0,88,999.000,999.0,99.0 +1988,12,18,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-12.2,-12.5,95,88300,0,0,204,0,0,0,0,0,0,0,0,0.0,4,2,24.1,77777,9,999999999,50,0.0440,0,88,999.000,999.0,99.0 +1988,12,18,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-12.8,-13.3,96,88300,0,0,199,0,0,0,0,0,0,0,0,0.0,3,1,16.1,77777,9,999999999,50,0.0440,0,88,999.000,999.0,99.0 +1988,12,18,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-12.8,-13.3,96,88200,0,0,195,0,0,0,0,0,0,0,240,1.5,2,0,16.1,77777,9,999999999,50,0.0440,0,88,999.000,999.0,99.0 +1988,12,18,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-13.3,-13.9,96,88100,0,0,201,0,0,0,0,0,0,0,0,0.0,7,3,16.1,77777,9,999999999,50,0.0440,0,88,999.000,999.0,99.0 +1988,12,18,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-13.9,-15.0,91,88100,65,1189,199,31,113,22,3000,4200,2700,390,0,0.0,6,3,16.1,77777,9,999999999,50,0.0210,0,88,999.000,999.0,99.0 +1988,12,18,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-12.8,-13.3,96,88000,237,1413,204,116,434,43,11900,30900,6700,770,170,1.5,7,3,16.1,77777,9,999999999,50,0.0210,0,88,999.000,999.0,99.0 +1988,12,18,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-8.9,-10.0,92,87900,373,1413,219,194,394,89,20200,33300,11300,1650,30,1.5,8,3,24.1,77777,9,999999999,60,0.0210,0,88,999.000,999.0,99.0 +1988,12,18,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-6.7,-8.9,84,87700,456,1413,225,288,723,53,30100,66000,8600,1100,360,1.5,4,2,24.1,77777,9,999999999,69,0.0210,0,88,999.000,999.0,99.0 +1988,12,18,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-3.3,-7.8,72,87600,481,1413,234,302,754,43,31800,69600,8000,1060,320,2.6,2,1,32.2,77777,9,999999999,69,0.0210,0,88,999.000,999.0,99.0 +1988,12,18,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-0.6,-7.8,59,87400,446,1413,239,302,848,33,32100,77300,7600,900,0,0.0,1,0,48.3,77777,9,999999999,69,0.0210,0,88,999.000,999.0,99.0 +1988,12,18,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-0.6,-7.2,61,87300,353,1413,240,229,797,28,24300,69000,7000,770,340,1.5,1,0,48.3,77777,9,999999999,69,0.0210,0,88,999.000,999.0,99.0 +1988,12,18,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.1,-7.2,64,87200,209,1413,238,116,638,21,12300,47800,5200,540,0,0.0,1,0,64.4,77777,9,999999999,69,0.0210,0,88,999.000,999.0,99.0 +1988,12,18,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-3.9,-7.8,75,87100,40,930,228,28,238,9,2200,13000,1500,230,200,2.6,0,0,64.4,77777,9,999999999,69,0.0210,0,88,999.000,999.0,99.0 +1988,12,18,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-5.6,-8.3,81,87000,0,0,222,0,0,0,0,0,0,0,250,3.1,0,0,24.1,77777,9,999999999,69,0.0210,0,88,999.000,999.0,99.0 +1988,12,18,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-6.1,-8.9,81,86900,0,0,220,0,0,0,0,0,0,0,220,3.1,0,0,24.1,77777,9,999999999,69,0.0210,0,88,999.000,999.0,99.0 +1988,12,18,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-7.2,-10.0,81,86900,0,0,215,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,60,0.0210,0,88,999.000,999.0,99.0 +1988,12,18,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-7.8,-11.7,74,86900,0,0,212,0,0,0,0,0,0,0,30,2.6,0,0,24.1,77777,9,999999999,60,0.0210,0,88,999.000,999.0,99.0 +1988,12,18,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-7.8,-11.7,74,86900,0,0,212,0,0,0,0,0,0,0,270,3.6,0,0,24.1,77777,9,999999999,60,0.0210,0,88,999.000,999.0,99.0 +1988,12,18,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-10.0,-12.2,84,86900,0,0,204,0,0,0,0,0,0,0,280,3.1,0,0,24.1,77777,9,999999999,50,0.0210,0,88,999.000,999.0,99.0 +1988,12,18,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-6.7,-9.4,81,86900,0,0,232,0,0,0,0,0,0,0,270,3.6,6,6,24.1,3660,9,999999999,60,0.0210,0,88,999.000,999.0,99.0 +1988,12,19,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-7.2,-9.3,76,86800,0,0,233,0,0,0,0,0,0,0,140,2.6,7,7,24.1,3598,9,999999999,60,0.0210,0,88,999.000,999.0,99.0 +1988,12,19,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-6.1,-8.4,70,86800,0,0,238,0,0,0,0,0,0,0,220,2.1,7,7,24.1,3536,9,999999999,60,0.0210,0,88,999.000,999.0,99.0 +1988,12,19,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-2.8,-8.8,65,86800,0,0,254,0,0,0,0,0,0,0,200,2.1,8,8,24.1,3474,9,999999999,69,0.0210,0,88,999.000,999.0,99.0 +1988,12,19,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-3.9,-8.7,59,86800,0,0,255,0,0,0,0,0,0,0,190,2.6,9,9,24.1,3412,9,999999999,60,0.0210,0,88,999.000,999.0,99.0 +1988,12,19,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,0.6,-7.8,54,86700,0,0,273,0,0,0,0,0,0,0,270,5.2,9,9,24.1,3350,9,999999999,69,0.0210,0,88,999.000,999.0,99.0 +1988,12,19,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-2.8,-7.8,69,86700,0,0,267,0,0,0,0,0,0,0,30,2.6,10,10,24.1,1680,9,999999999,69,0.0210,0,88,999.000,999.0,99.0 +1988,12,19,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-3.3,-7.8,72,86700,0,0,265,0,0,0,0,0,0,0,180,2.6,10,10,24.1,1340,9,999999999,69,0.0210,0,88,999.000,999.0,99.0 +1988,12,19,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,0.0,-6.7,61,86700,0,0,280,0,0,0,0,0,0,0,300,6.2,10,10,32.2,1340,9,999999999,69,0.0210,0,88,999.000,999.0,99.0 +1988,12,19,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.6,-4.4,70,86700,63,1166,285,11,2,11,1300,0,1300,410,280,6.7,10,10,48.3,1430,9,999999999,80,0.0330,0,88,999.000,999.0,99.0 +1988,12,19,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.1,-4.4,67,86800,235,1413,287,62,11,60,6900,300,6800,2000,310,5.7,10,10,48.3,3660,9,999999999,80,0.0330,0,88,999.000,999.0,99.0 +1988,12,19,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.6,-4.4,70,86800,372,1413,285,107,5,105,11800,300,11700,3600,310,2.6,10,10,48.3,3660,9,999999999,80,0.0330,0,88,999.000,999.0,99.0 +1988,12,19,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,-3.9,67,86800,456,1413,272,199,148,151,21400,13700,17000,3410,300,6.2,9,7,48.3,3660,9,999999999,89,0.0330,0,88,999.000,999.0,99.0 +1988,12,19,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,-3.3,62,86700,481,1413,283,178,138,131,19400,13100,15000,2980,300,7.2,8,8,48.3,3350,9,999999999,89,0.0330,0,88,999.000,999.0,99.0 +1988,12,19,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,-3.9,60,86700,446,1413,282,149,133,106,16300,12400,12400,2390,280,7.2,8,8,48.3,2900,9,999999999,89,0.0330,0,88,999.000,999.0,99.0 +1988,12,19,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,-3.3,67,86800,353,1413,278,137,82,116,14900,7200,13100,2830,320,6.2,9,8,48.3,1370,9,999999999,89,0.0330,0,88,999.000,999.0,99.0 +1988,12,19,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.0,-1.1,92,86900,210,1413,278,63,68,52,6800,4600,6100,1100,280,5.2,10,9,24.1,1100,9,999999999,100,0.0330,0,88,999.000,999.0,99.0 +1988,12,19,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-0.6,-2.2,89,87000,41,954,282,14,5,14,1600,300,1600,340,360,6.2,10,10,9.7,940,9,999999999,89,0.0330,0,88,999.000,999.0,99.0 +1988,12,19,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-3.3,-5.6,85,87200,0,0,268,0,0,0,0,0,0,0,340,4.6,10,10,6.4,910,9,999999999,80,0.0330,0,88,999.000,999.0,99.0 +1988,12,19,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-3.9,-5.0,92,87200,0,0,266,0,0,0,0,0,0,0,300,4.1,10,10,8.0,980,9,999999999,80,0.0330,0,88,999.000,999.0,99.0 +1988,12,19,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-3.9,-5.0,92,87400,0,0,266,0,0,0,0,0,0,0,300,4.6,10,10,0.8,150,9,999999999,80,0.0330,0,88,999.000,999.0,99.0 +1988,12,19,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-5.0,-6.7,88,87400,0,0,247,0,0,0,0,0,0,0,290,3.6,8,8,24.1,1220,9,999999999,69,0.0330,0,88,999.000,999.0,99.0 +1988,12,19,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-5.0,-6.7,88,87500,0,0,243,0,0,0,0,0,0,0,250,3.1,7,7,24.1,1460,9,999999999,69,0.0330,0,88,999.000,999.0,99.0 +1988,12,19,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-9.4,-10.6,92,87500,0,0,218,0,0,0,0,0,0,0,220,2.1,4,4,24.1,77777,9,999999999,60,0.0330,0,88,999.000,999.0,99.0 +1988,12,19,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-11.1,-12.2,92,87500,0,0,213,0,0,0,0,0,0,0,0,0.0,5,5,24.1,77777,9,999999999,60,0.0330,0,88,999.000,999.0,99.0 +1988,12,20,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-11.1,-11.7,96,87500,0,0,213,0,0,0,0,0,0,0,200,1.5,5,5,24.1,77777,9,999999999,60,0.0330,0,88,999.000,999.0,99.0 +1988,12,20,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-12.8,-12.8,96,87500,0,0,207,0,0,0,0,0,0,0,20,3.1,5,5,24.1,77777,9,999999999,50,0.0330,0,88,999.000,999.0,99.0 +1988,12,20,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-14.4,-14.4,96,87500,0,0,201,0,0,0,0,0,0,0,160,1.5,5,5,24.1,77777,9,999999999,50,0.0330,0,88,999.000,999.0,99.0 +1988,12,20,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-12.8,-14.3,96,87500,0,0,206,0,0,0,0,0,0,0,320,2.1,5,5,24.1,77777,9,999999999,50,0.0330,0,88,999.000,999.0,99.0 +1988,12,20,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-13.9,-14.4,96,87500,0,0,202,0,0,0,0,0,0,0,280,3.1,5,5,16.1,77777,9,999999999,50,0.0330,0,88,999.000,999.0,99.0 +1988,12,20,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-12.2,-13.3,92,87500,0,0,209,0,0,0,0,0,0,0,270,1.5,5,5,24.1,1830,9,999999999,50,0.0330,0,88,999.000,999.0,99.0 +1988,12,20,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-12.2,-13.3,92,87500,0,0,209,0,0,0,0,0,0,0,120,4.1,5,5,24.1,77777,9,999999999,50,0.0330,0,88,999.000,999.0,99.0 +1988,12,20,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-10.6,-11.1,96,87500,0,0,224,0,0,0,0,0,0,0,260,1.5,8,8,32.2,7620,9,999999999,60,0.0330,0,88,999.000,999.0,99.0 +1988,12,20,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-12.8,-13.9,92,87500,62,1166,214,27,35,24,2800,1400,2700,490,70,1.5,8,8,48.3,7620,9,999999999,50,0.0240,0,88,999.000,999.0,99.0 +1988,12,20,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-10.6,-11.1,96,87500,234,1414,212,117,396,51,11800,27700,7200,880,170,2.6,4,3,48.3,77777,9,999999999,60,0.0240,0,88,999.000,999.0,99.0 +1988,12,20,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-7.8,-9.4,88,87500,371,1414,225,179,429,66,18400,36300,8900,1210,270,1.5,4,4,48.3,77777,9,999999999,60,0.0240,0,88,999.000,999.0,99.0 +1988,12,20,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-7.8,-9.4,88,87400,455,1414,235,185,127,143,19900,11800,16100,3230,0,0.0,8,8,48.3,3050,9,999999999,60,0.0240,0,88,999.000,999.0,99.0 +1988,12,20,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-7.2,-8.9,88,87300,481,1414,227,257,392,123,26700,36000,14400,2360,80,1.5,8,4,48.3,77777,9,999999999,69,0.0240,0,88,999.000,999.0,99.0 +1988,12,20,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-4.4,-8.3,75,87300,447,1414,237,221,358,107,23000,32200,12800,2020,330,2.1,8,4,48.3,77777,9,999999999,69,0.0240,0,88,999.000,999.0,99.0 +1988,12,20,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-4.4,-8.9,72,87200,354,1414,237,153,221,97,16100,18500,11400,1900,290,2.6,8,4,64.4,77777,9,999999999,69,0.0240,0,88,999.000,999.0,99.0 +1988,12,20,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-7.2,-9.4,84,87200,211,1414,230,85,118,68,9200,8000,8000,1440,0,0.0,8,6,64.4,7620,9,999999999,60,0.0240,0,88,999.000,999.0,99.0 +1988,12,20,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-8.3,-10.0,88,87200,42,954,226,26,44,22,2600,1600,2500,450,210,2.1,10,6,48.3,7620,9,999999999,60,0.0240,0,88,999.000,999.0,99.0 +1988,12,20,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-7.2,-10.0,81,87100,0,0,233,0,0,0,0,0,0,0,0,0.0,10,7,48.3,7620,9,999999999,60,0.0240,0,88,999.000,999.0,99.0 +1988,12,20,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-7.8,-10.0,84,87100,0,0,231,0,0,0,0,0,0,0,320,1.5,10,7,24.1,7620,9,999999999,60,0.0240,0,88,999.000,999.0,99.0 +1988,12,20,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-7.2,-8.9,88,87100,0,0,242,0,0,0,0,0,0,0,0,0.0,10,9,24.1,2290,9,999999999,69,0.0240,0,88,999.000,999.0,99.0 +1988,12,20,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-6.7,-8.9,84,87000,0,0,235,0,0,0,0,0,0,0,120,2.6,10,7,24.1,7620,9,999999999,60,0.0240,0,88,999.000,999.0,99.0 +1988,12,20,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-6.7,-7.8,92,87000,0,0,240,0,0,0,0,0,0,0,340,1.5,10,8,24.1,1980,9,999999999,69,0.0240,0,88,999.000,999.0,99.0 +1988,12,20,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-6.7,-8.3,88,86900,0,0,240,0,0,0,0,0,0,0,0,0.0,10,8,24.1,1680,9,999999999,69,0.0240,0,88,999.000,999.0,99.0 +1988,12,20,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-6.7,-7.8,92,86900,0,0,240,0,0,0,0,0,0,0,0,0.0,10,8,24.1,1680,9,999999999,69,0.0240,0,88,999.000,999.0,99.0 +1988,12,21,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-5.6,-7.2,88,86900,0,0,245,0,0,0,0,0,0,0,170,1.5,10,8,16.1,1680,9,999999999,69,0.0240,0,88,999.000,999.0,99.0 +1988,12,21,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-5.0,-6.5,88,86800,0,0,253,0,0,0,0,0,0,0,0,0.0,10,9,16.1,2023,9,999999999,69,0.0240,0,88,999.000,999.0,99.0 +1988,12,21,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-5.0,-7.2,88,86800,0,0,252,0,0,0,0,0,0,0,0,0.0,10,9,16.1,2365,9,999999999,69,0.0240,0,88,999.000,999.0,99.0 +1988,12,21,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-5.6,-7.4,88,86700,0,0,250,0,0,0,0,0,0,0,0,0.0,10,9,16.1,2708,9,999999999,69,0.0240,0,88,999.000,999.0,99.0 +1988,12,21,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-5.0,-6.7,88,86700,0,0,253,0,0,0,0,0,0,0,0,0.0,10,9,24.1,3050,9,999999999,69,0.0240,0,88,999.000,999.0,99.0 +1988,12,21,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-5.0,-7.2,85,86700,0,0,259,0,0,0,0,0,0,0,180,2.1,10,10,24.1,2130,9,999999999,69,0.0240,0,88,999.000,999.0,99.0 +1988,12,21,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-7.8,-9.4,88,86600,0,0,247,0,0,0,0,0,0,0,150,2.1,10,10,24.1,2590,9,999999999,60,0.0240,0,88,999.000,999.0,99.0 +1988,12,21,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-7.8,-8.9,92,86600,0,0,240,0,0,0,0,0,0,0,330,2.6,10,9,24.1,3050,9,999999999,60,0.0240,0,88,999.000,999.0,99.0 +1988,12,21,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-7.2,-7.8,96,86600,60,1143,243,16,22,14,1700,900,1700,290,170,2.1,10,9,48.3,2290,9,999999999,69,0.0220,0,88,999.000,999.0,99.0 +1988,12,21,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-5.0,-6.7,88,86600,232,1414,243,97,178,67,10100,12000,8100,1300,0,0.0,9,7,48.3,3660,9,999999999,69,0.0220,0,88,999.000,999.0,99.0 +1988,12,21,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-5.6,-6.7,92,86600,370,1414,245,148,51,135,16200,4600,15000,3210,280,1.5,10,8,48.3,2740,9,999999999,69,0.0220,0,88,999.000,999.0,99.0 +1988,12,21,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-4.4,-6.7,85,86600,455,1414,255,157,28,148,17300,2000,16700,4980,110,2.1,10,9,32.2,1100,9,999999999,69,0.0220,0,88,999.000,999.0,99.0 +1988,12,21,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-2.8,-4.4,89,86600,481,1414,271,126,6,124,14200,400,14100,4620,80,2.1,10,10,4.8,210,9,999999999,80,0.0220,0,88,999.000,999.0,99.0 +1988,12,21,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.0,-3.9,75,86600,447,1414,283,189,9,186,20400,700,20200,5450,320,4.1,10,10,32.2,1370,9,999999999,89,0.0220,0,88,999.000,999.0,99.0 +1988,12,21,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.6,-4.4,70,86700,355,1414,285,123,5,122,13500,300,13400,3800,280,7.2,10,10,24.1,1520,9,999999999,80,0.0220,0,88,999.000,999.0,99.0 +1988,12,21,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.0,-5.0,69,86800,212,1414,282,59,8,58,6500,200,6500,1870,270,5.2,10,10,24.1,1830,9,999999999,80,0.0220,0,88,999.000,999.0,99.0 +1988,12,21,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-0.6,-5.0,72,86900,43,978,279,15,0,15,1700,0,1700,510,240,3.6,10,10,32.2,1830,9,999999999,80,0.0220,0,88,999.000,999.0,99.0 +1988,12,21,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-0.6,-5.6,69,86900,0,0,278,0,0,0,0,0,0,0,240,3.6,10,10,24.1,1830,9,999999999,80,0.0220,0,88,999.000,999.0,99.0 +1988,12,21,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-1.7,-6.1,72,87000,0,0,266,0,0,0,0,0,0,0,230,3.1,10,9,24.1,1830,9,999999999,80,0.0220,0,88,999.000,999.0,99.0 +1988,12,21,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-1.7,-7.8,64,87000,0,0,259,0,0,0,0,0,0,0,260,3.6,10,8,24.1,3050,9,999999999,69,0.0220,0,88,999.000,999.0,99.0 +1988,12,21,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-3.9,-10.0,63,87100,0,0,242,0,0,0,0,0,0,0,240,2.6,10,6,24.1,3050,9,999999999,60,0.0220,0,88,999.000,999.0,99.0 +1988,12,21,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-3.3,-9.4,63,87100,0,0,238,0,0,0,0,0,0,0,230,3.6,5,3,24.1,77777,9,999999999,60,0.0220,0,88,999.000,999.0,99.0 +1988,12,21,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-5.6,-10.0,71,87100,0,0,232,0,0,0,0,0,0,0,210,3.6,5,4,24.1,77777,9,999999999,60,0.0220,0,88,999.000,999.0,99.0 +1988,12,21,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-4.4,-10.0,66,87100,0,0,240,0,0,0,0,0,0,0,200,3.1,6,6,24.1,3050,9,999999999,60,0.0220,0,88,999.000,999.0,99.0 +1988,12,22,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-6.7,-10.6,74,87200,0,0,231,0,0,0,0,0,0,0,20,1.5,6,6,32.2,77777,9,999999999,60,0.0220,0,88,999.000,999.0,99.0 +1988,12,22,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-6.1,-10.5,77,87200,0,0,233,0,0,0,0,0,0,0,50,1.5,6,6,32.2,77777,9,999999999,60,0.0220,0,88,999.000,999.0,99.0 +1988,12,22,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-10.0,-11.7,79,87200,0,0,219,0,0,0,0,0,0,0,70,3.1,6,6,32.2,77777,9,999999999,50,0.0220,0,88,999.000,999.0,99.0 +1988,12,22,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-6.7,-12.3,82,87300,0,0,232,0,0,0,0,0,0,0,190,3.1,7,7,32.2,20583,9,999999999,60,0.0220,0,88,999.000,999.0,99.0 +1988,12,22,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-10.0,-12.2,84,87300,0,0,221,0,0,0,0,0,0,0,330,3.1,7,7,32.2,1520,9,999999999,50,0.0220,0,88,999.000,999.0,99.0 +1988,12,22,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-8.3,-10.0,88,87200,0,0,229,0,0,0,0,0,0,0,240,2.1,7,7,24.1,2440,9,999999999,60,0.0220,0,88,999.000,999.0,99.0 +1988,12,22,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-8.9,-10.6,88,87200,0,0,226,0,0,0,0,0,0,0,220,1.5,7,7,24.1,2440,9,999999999,60,0.0220,0,88,999.000,999.0,99.0 +1988,12,22,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-10.6,-11.7,92,87300,0,0,228,0,0,0,0,0,0,0,210,1.5,9,9,32.2,2290,9,999999999,60,0.0220,0,88,999.000,999.0,99.0 +1988,12,22,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-7.8,-9.4,88,87200,59,1143,235,23,22,21,2400,1200,2400,490,240,1.5,8,8,48.3,2290,9,999999999,60,0.0340,0,88,999.000,999.0,99.0 +1988,12,22,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-6.1,-8.3,85,87300,231,1414,242,120,280,74,12100,18900,9000,1400,330,2.1,8,8,48.3,2290,9,999999999,69,0.0340,0,88,999.000,999.0,99.0 +1988,12,22,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-4.4,-7.8,78,87300,369,1414,245,177,378,78,18700,31900,10300,1430,320,2.6,7,7,48.3,2290,9,999999999,69,0.0340,0,88,999.000,999.0,99.0 +1988,12,22,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-3.9,-7.8,75,87200,454,1414,250,169,95,139,18600,8800,15700,3630,0,0.0,8,8,64.4,2130,9,999999999,69,0.0340,0,88,999.000,999.0,99.0 +1988,12,22,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-2.2,-6.7,72,87100,481,1414,254,142,38,129,15600,3600,14400,3520,0,0.0,7,7,64.4,2130,9,999999999,69,0.0340,0,88,999.000,999.0,99.0 +1988,12,22,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-2.2,-7.2,69,87100,448,1414,250,253,483,99,26600,43500,12800,1850,280,1.5,6,6,64.4,2130,9,999999999,69,0.0340,0,88,999.000,999.0,99.0 +1988,12,22,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-2.8,-7.8,69,87000,356,1414,239,204,522,71,20800,43300,9800,1270,0,0.0,7,2,64.4,77777,9,999999999,69,0.0340,0,88,999.000,999.0,99.0 +1988,12,22,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-5.0,-7.8,81,87000,214,1414,234,101,320,53,10500,20900,7300,960,360,1.5,6,3,64.4,77777,9,999999999,69,0.0340,0,88,999.000,999.0,99.0 +1988,12,22,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-5.0,-7.8,81,87000,44,978,246,20,19,19,2200,1000,2100,440,310,3.6,9,8,48.3,2290,9,999999999,69,0.0340,0,88,999.000,999.0,99.0 +1988,12,22,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-6.7,-8.3,88,86900,0,0,245,0,0,0,0,0,0,0,30,1.5,9,9,48.3,2290,9,999999999,69,0.0340,0,88,999.000,999.0,99.0 +1988,12,22,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-6.7,-8.3,88,86900,0,0,245,0,0,0,0,0,0,0,230,2.1,10,9,24.1,2290,9,999999999,69,0.0340,0,88,999.000,999.0,99.0 +1988,12,22,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-5.6,-7.2,88,86900,0,0,250,0,0,0,0,0,0,0,0,0.0,10,9,24.1,2290,9,999999999,69,0.0340,0,88,999.000,999.0,99.0 +1988,12,22,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-6.7,-8.9,84,86900,0,0,251,0,0,0,0,0,0,0,240,2.1,10,10,24.1,2290,9,999999999,60,0.0340,0,88,999.000,999.0,99.0 +1988,12,22,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-5.6,-7.8,85,86900,0,0,256,0,0,0,0,0,0,0,310,2.1,10,10,24.1,2290,9,999999999,69,0.0340,0,88,999.000,999.0,99.0 +1988,12,22,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-5.0,-7.2,85,86900,0,0,259,0,0,0,0,0,0,0,290,2.1,10,10,24.1,1220,9,999999999,69,0.0340,0,88,999.000,999.0,99.0 +1988,12,22,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-4.4,-10.0,66,87000,0,0,246,0,0,0,0,0,0,0,240,2.6,10,8,24.1,3050,9,999999999,60,0.0340,0,88,999.000,999.0,99.0 +1988,12,23,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-6.1,-8.3,85,87000,0,0,242,0,0,0,0,0,0,0,290,2.6,10,8,16.1,1680,9,999999999,69,0.0340,0,88,999.000,999.0,99.0 +1988,12,23,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-5.6,-7.8,85,87000,0,0,249,0,0,0,0,0,0,0,270,2.6,10,9,16.1,1830,9,999999999,69,0.0340,0,88,999.000,999.0,99.0 +1988,12,23,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-5.0,-8.8,86,87100,0,0,251,0,0,0,0,0,0,0,180,2.1,10,9,16.1,2440,9,999999999,69,0.0340,0,88,999.000,999.0,99.0 +1988,12,23,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-6.1,-9.3,87,87100,0,0,246,0,0,0,0,0,0,0,180,2.1,10,9,16.1,3050,9,999999999,69,0.0340,0,88,999.000,999.0,99.0 +1988,12,23,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-7.2,-8.9,88,87100,0,0,242,0,0,0,0,0,0,0,320,2.1,10,9,24.1,3660,9,999999999,69,0.0340,0,88,999.000,999.0,99.0 +1988,12,23,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-7.8,-8.9,92,87200,0,0,247,0,0,0,0,0,0,0,0,0.0,10,10,24.1,1830,9,999999999,69,0.0340,0,88,999.000,999.0,99.0 +1988,12,23,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-7.8,-8.9,92,87200,0,0,247,0,0,0,0,0,0,0,140,3.6,10,10,24.1,1830,9,999999999,69,0.0340,0,88,999.000,999.0,99.0 +1988,12,23,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-3.9,-8.3,72,87300,0,0,263,0,0,0,0,0,0,0,350,3.1,10,10,48.3,2900,9,999999999,69,0.0340,0,88,999.000,999.0,99.0 +1988,12,23,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-2.8,-8.3,66,87400,58,1120,259,17,21,16,1900,900,1900,330,300,4.1,10,9,48.3,3050,9,999999999,69,0.0530,0,88,999.000,999.0,99.0 +1988,12,23,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.7,-9.4,56,87500,230,1414,263,79,53,70,8600,4100,7900,1640,270,6.2,10,9,48.3,3050,9,999999999,60,0.0530,0,88,999.000,999.0,99.0 +1988,12,23,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-2.2,-8.3,63,87600,368,1414,256,148,116,118,16000,10000,13300,2600,260,5.2,10,8,64.4,3050,9,999999999,69,0.0530,0,88,999.000,999.0,99.0 +1988,12,23,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.1,-8.3,58,87600,454,1414,251,226,206,160,24300,19100,18100,3610,270,5.7,7,5,64.4,6100,9,999999999,69,0.0530,0,88,999.000,999.0,99.0 +1988,12,23,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.0,-10.6,45,87600,482,1414,258,220,258,132,23400,24400,15100,2690,270,7.7,8,7,64.4,2440,9,999999999,60,0.0530,0,88,999.000,999.0,99.0 +1988,12,23,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.0,-11.1,43,87600,449,1414,255,200,156,150,21500,14400,16900,3380,280,8.8,8,6,64.4,1520,9,999999999,60,0.0530,0,88,999.000,999.0,99.0 +1988,12,23,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.0,-8.9,52,87600,358,1414,260,190,284,118,19800,23800,13700,2420,270,7.2,8,7,48.3,1520,9,999999999,69,0.0530,0,88,999.000,999.0,99.0 +1988,12,23,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.7,-9.4,56,87700,215,1414,248,89,250,50,9200,16400,6700,900,260,6.2,7,5,48.3,3050,9,999999999,60,0.0530,0,88,999.000,999.0,99.0 +1988,12,23,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-4.4,-9.4,69,87700,46,1002,243,15,8,14,1600,400,1600,340,0,0.0,9,7,48.3,3050,9,999999999,60,0.0530,0,88,999.000,999.0,99.0 +1988,12,23,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-4.4,-10.6,63,87700,0,0,246,0,0,0,0,0,0,0,250,3.1,10,8,24.1,3050,9,999999999,60,0.0530,0,88,999.000,999.0,99.0 +1988,12,23,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-3.3,-8.3,69,87700,0,0,252,0,0,0,0,0,0,0,240,2.1,10,8,24.1,3050,9,999999999,69,0.0530,0,88,999.000,999.0,99.0 +1988,12,23,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-4.4,-8.3,75,87800,0,0,241,0,0,0,0,0,0,0,270,3.6,10,6,24.1,6100,9,999999999,69,0.0530,0,88,999.000,999.0,99.0 +1988,12,23,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-5.6,-11.1,65,87800,0,0,232,0,0,0,0,0,0,0,110,2.1,9,5,24.1,6100,9,999999999,60,0.0530,0,88,999.000,999.0,99.0 +1988,12,23,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-5.6,-10.6,68,87800,0,0,233,0,0,0,0,0,0,0,170,3.1,9,5,24.1,6100,9,999999999,60,0.0530,0,88,999.000,999.0,99.0 +1988,12,23,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-4.4,-10.6,63,87900,0,0,242,0,0,0,0,0,0,0,130,2.6,9,7,24.1,1980,9,999999999,60,0.0530,0,88,999.000,999.0,99.0 +1988,12,23,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-7.8,-11.1,77,87900,0,0,230,0,0,0,0,0,0,0,110,2.6,9,7,24.1,1680,9,999999999,60,0.0530,0,88,999.000,999.0,99.0 +1988,12,24,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-7.8,-11.4,78,87900,0,0,229,0,0,0,0,0,0,0,240,3.1,9,7,24.1,16898,9,999999999,60,0.0530,0,88,999.000,999.0,99.0 +1988,12,24,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-7.2,-10.9,80,87900,0,0,232,0,0,0,0,0,0,0,180,2.6,9,7,24.1,77777,9,999999999,60,0.0530,0,88,999.000,999.0,99.0 +1988,12,24,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-7.8,-11.8,81,87900,0,0,229,0,0,0,0,0,0,0,180,2.6,9,7,24.1,77777,9,999999999,60,0.0530,0,88,999.000,999.0,99.0 +1988,12,24,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-9.4,-12.2,83,87900,0,0,223,0,0,0,0,0,0,0,270,4.1,10,7,24.1,77777,9,999999999,60,0.0530,0,88,999.000,999.0,99.0 +1988,12,24,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-9.4,-11.7,84,87900,0,0,224,0,0,0,0,0,0,0,110,2.1,10,7,32.2,77777,9,999999999,60,0.0530,0,88,999.000,999.0,99.0 +1988,12,24,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-12.2,-13.9,88,87900,0,0,212,0,0,0,0,0,0,0,210,3.6,10,7,24.1,6710,9,999999999,50,0.0530,0,88,999.000,999.0,99.0 +1988,12,24,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-10.6,-12.2,88,87900,0,0,219,0,0,0,0,0,0,0,210,2.6,10,7,24.1,3660,9,999999999,60,0.0530,0,88,999.000,999.0,99.0 +1988,12,24,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-11.7,-13.9,84,87900,0,0,217,0,0,0,0,0,0,0,350,2.1,10,8,64.4,2290,9,999999999,50,0.0530,0,88,999.000,999.0,99.0 +1988,12,24,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-11.7,-13.9,84,87900,57,1120,214,31,57,27,3200,2300,3100,560,260,1.5,10,7,64.4,6710,9,999999999,50,0.0160,0,88,999.000,999.0,99.0 +1988,12,24,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-10.0,-12.2,84,88000,229,1414,211,108,325,55,11200,22000,7600,1000,100,2.6,7,2,64.4,77777,9,999999999,60,0.0160,0,88,999.000,999.0,99.0 +1988,12,24,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-7.8,-12.8,68,88000,368,1414,215,230,744,35,24300,64900,7300,860,0,0.0,2,1,64.4,77777,9,999999999,50,0.0160,0,88,999.000,999.0,99.0 +1988,12,24,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-6.1,-10.6,71,87900,454,1414,218,319,885,33,33900,81000,7800,910,320,2.6,0,0,64.4,77777,9,999999999,60,0.0160,0,88,999.000,999.0,99.0 +1988,12,24,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-5.0,-11.7,60,87800,482,1414,232,258,431,110,27100,39700,13500,2090,0,0.0,8,4,64.4,77777,9,999999999,60,0.0160,0,88,999.000,999.0,99.0 +1988,12,24,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-5.0,-11.7,60,87700,450,1414,239,215,227,142,22500,20900,15800,2950,0,0.0,10,7,64.4,6710,9,999999999,60,0.0160,0,88,999.000,999.0,99.0 +1988,12,24,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-6.7,-11.7,68,87700,359,1414,242,102,42,91,11200,3700,10200,2370,0,0.0,10,9,64.4,6710,9,999999999,60,0.0160,0,88,999.000,999.0,99.0 +1988,12,24,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-6.1,-11.7,65,87700,217,1414,244,75,37,69,8200,2800,7700,1590,300,2.1,10,9,64.4,4880,9,999999999,60,0.0160,0,88,999.000,999.0,99.0 +1988,12,24,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-8.3,-12.2,74,87600,47,1002,230,21,3,21,2300,0,2300,650,280,2.6,10,8,64.4,4880,9,999999999,60,0.0160,0,88,999.000,999.0,99.0 +1988,12,24,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-8.9,-13.3,71,87600,0,0,227,0,0,0,0,0,0,0,280,2.6,10,8,24.1,4880,9,999999999,50,0.0160,0,88,999.000,999.0,99.0 +1988,12,24,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-7.8,-11.7,74,87600,0,0,238,0,0,0,0,0,0,0,280,3.6,10,9,24.1,4270,9,999999999,60,0.0160,0,88,999.000,999.0,99.0 +1988,12,24,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-8.9,-12.2,77,87600,0,0,240,0,0,0,0,0,0,0,340,5.2,10,10,24.1,4270,9,999999999,50,0.0160,0,88,999.000,999.0,99.0 +1988,12,24,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-10.0,-14.4,70,87700,0,0,227,0,0,0,0,0,0,0,290,5.7,10,9,24.1,4270,9,999999999,50,0.0160,0,88,999.000,999.0,99.0 +1988,12,24,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-11.7,-15.6,73,87700,0,0,221,0,0,0,0,0,0,0,300,5.7,10,9,24.1,4270,9,999999999,50,0.0160,0,88,999.000,999.0,99.0 +1988,12,24,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-12.2,-16.1,73,87800,0,0,214,0,0,0,0,0,0,0,300,6.2,10,8,24.1,1980,9,999999999,50,0.0160,0,88,999.000,999.0,99.0 +1988,12,24,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-12.8,-16.7,73,87700,0,0,216,0,0,0,0,0,0,0,290,5.7,10,9,24.1,1220,9,999999999,40,0.0160,0,88,999.000,999.0,99.0 +1988,12,25,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-12.8,-16.9,74,87800,0,0,216,0,0,0,0,0,0,0,290,6.7,10,9,24.1,1138,9,999999999,40,0.0160,0,88,999.000,999.0,99.0 +1988,12,25,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-13.3,-16.3,75,87800,0,0,215,0,0,0,0,0,0,0,310,5.7,10,9,24.1,1057,9,999999999,40,0.0160,0,88,999.000,999.0,99.0 +1988,12,25,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-13.3,-17.0,77,87800,0,0,214,0,0,0,0,0,0,0,310,4.1,10,9,24.1,975,9,999999999,40,0.0160,0,88,999.000,999.0,99.0 +1988,12,25,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-13.9,-17.2,78,87800,0,0,218,0,0,0,0,0,0,0,310,3.6,10,10,24.1,893,9,999999999,40,0.0160,0,88,999.000,999.0,99.0 +1988,12,25,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-14.4,-16.6,79,87800,0,0,217,0,0,0,0,0,0,0,310,4.6,10,10,24.1,812,9,999999999,40,0.0160,0,88,999.000,999.0,99.0 +1988,12,25,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-14.4,-17.2,80,87800,0,0,216,0,0,0,0,0,0,0,300,5.2,10,10,8.0,730,9,999999999,40,0.0160,0,88,999.000,999.0,99.0 +1988,12,25,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-14.4,-17.8,76,87800,0,0,216,0,0,0,0,0,0,0,320,5.2,10,10,11.3,850,9,999999999,40,0.0160,0,88,999.000,999.0,99.0 +1988,12,25,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-14.4,-19.4,66,87900,0,0,214,0,0,0,0,0,0,0,320,4.1,10,10,24.1,1010,9,999999999,40,0.0160,0,88,999.000,999.0,99.0 +1988,12,25,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-15.6,-19.4,72,87900,56,1120,210,15,3,14,1600,0,1600,490,330,7.2,10,10,24.1,1250,9,999999999,40,0.0160,0,88,999.000,999.0,99.0 +1988,12,25,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-15.6,-20.0,69,87900,229,1414,210,79,22,76,8700,1700,8400,1740,310,6.7,10,10,24.1,1220,9,999999999,40,0.0160,0,88,999.000,999.0,99.0 +1988,12,25,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-15.0,-20.0,66,88000,367,1414,212,113,8,111,12500,500,12400,3690,320,5.7,10,10,12.9,1280,9,999999999,40,0.0160,0,88,999.000,999.0,99.0 +1988,12,25,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-15.0,-20.0,66,88000,454,1414,212,150,5,148,16500,400,16400,4970,320,7.7,10,10,16.1,1100,9,999999999,40,0.0160,0,88,999.000,999.0,99.0 +1988,12,25,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-15.0,-20.0,66,87900,483,1414,212,165,5,163,18200,400,18000,5460,330,7.2,10,10,16.1,1070,9,999999999,40,0.0160,0,88,999.000,999.0,99.0 +1988,12,25,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-15.6,-20.0,69,87900,451,1414,210,140,2,139,15500,100,15400,4780,360,7.2,10,10,8.0,910,9,999999999,40,0.0160,0,88,999.000,999.0,99.0 +1988,12,25,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-16.1,-18.9,79,87900,361,1414,209,136,0,136,14700,0,14700,4040,340,5.2,10,10,3.2,850,9,999999999,40,0.0160,0,88,999.000,999.0,99.0 +1988,12,25,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-16.7,-18.9,83,88000,219,1414,207,75,4,74,8100,100,8100,2170,330,6.2,10,10,1.6,700,9,999999999,40,0.0160,0,88,999.000,999.0,99.0 +1988,12,25,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-16.7,-18.9,83,88000,48,1025,207,23,1,23,2500,0,2500,690,320,5.7,10,10,1.0,310,9,999999999,40,0.0160,0,88,999.000,999.0,99.0 +1988,12,25,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-16.7,-18.9,83,88100,0,0,207,0,0,0,0,0,0,0,310,5.2,10,10,1.6,310,9,999999999,40,0.0160,0,88,999.000,999.0,99.0 +1988,12,25,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-16.7,-18.9,83,88100,0,0,207,0,0,0,0,0,0,0,300,4.6,10,10,1.6,310,9,999999999,40,0.0160,0,88,999.000,999.0,99.0 +1988,12,25,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-16.7,-19.4,79,88100,0,0,207,0,0,0,0,0,0,0,300,4.6,10,10,1.6,310,9,999999999,40,0.0160,0,88,999.000,999.0,99.0 +1988,12,25,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-16.7,-20.0,76,88100,0,0,206,0,0,0,0,0,0,0,290,3.6,10,10,3.2,1070,9,999999999,40,0.0160,0,88,999.000,999.0,99.0 +1988,12,25,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-17.2,-20.0,79,88100,0,0,199,0,0,0,0,0,0,0,280,3.6,10,9,6.4,1370,9,999999999,40,0.0160,0,88,999.000,999.0,99.0 +1988,12,25,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-17.2,-20.0,79,88100,0,0,199,0,0,0,0,0,0,0,280,3.1,10,9,4.8,1010,9,999999999,40,0.0160,0,88,999.000,999.0,99.0 +1988,12,25,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-17.2,-20.0,79,88100,0,0,205,0,0,0,0,0,0,0,280,3.1,10,10,9.7,1220,9,999999999,40,0.0160,0,88,999.000,999.0,99.0 +1988,12,26,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-17.2,-20.1,79,88100,0,0,205,0,0,0,0,0,0,0,260,3.1,10,10,9.7,1240,9,999999999,40,0.0160,0,88,999.000,999.0,99.0 +1988,12,26,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-17.2,-19.4,79,88100,0,0,205,0,0,0,0,0,0,0,270,2.6,10,10,9.7,1260,9,999999999,40,0.0160,0,88,999.000,999.0,99.0 +1988,12,26,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-16.7,-20.0,79,88100,0,0,206,0,0,0,0,0,0,0,270,2.1,10,10,9.7,1280,9,999999999,40,0.0160,0,88,999.000,999.0,99.0 +1988,12,26,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-17.2,-20.2,79,88100,0,0,205,0,0,0,0,0,0,0,270,2.1,10,10,9.7,1300,9,999999999,40,0.0160,0,88,999.000,999.0,99.0 +1988,12,26,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-17.2,-19.5,79,88100,0,0,205,0,0,0,0,0,0,0,0,0.0,10,10,9.7,1320,9,999999999,40,0.0160,0,88,999.000,999.0,99.0 +1988,12,26,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-17.2,-20.0,79,88100,0,0,205,0,0,0,0,0,0,0,360,2.1,10,10,9.7,1340,9,999999999,40,0.0160,0,88,999.000,999.0,99.0 +1988,12,26,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-17.2,-18.9,87,88200,0,0,206,0,0,0,0,0,0,0,0,0.0,10,10,8.0,1520,9,999999999,40,0.0160,0,88,999.000,999.0,99.0 +1988,12,26,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-17.2,-18.9,87,88200,0,0,206,0,0,0,0,0,0,0,110,2.1,10,10,8.0,1520,9,999999999,40,0.0160,0,88,999.000,999.0,99.0 +1988,12,26,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-16.7,-18.9,83,88200,56,1096,207,22,1,22,2400,0,2400,690,80,1.5,10,10,6.4,1250,9,999999999,40,0.0300,0,88,999.000,999.0,99.0 +1988,12,26,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-16.7,-18.9,83,88200,228,1415,202,74,2,74,8100,100,8100,2220,130,2.1,10,9,6.4,7620,9,999999999,40,0.0300,0,88,999.000,999.0,99.0 +1988,12,26,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-16.1,-18.9,79,88200,367,1415,196,157,165,114,17000,14300,13200,2510,120,2.6,8,7,24.1,7620,9,999999999,40,0.0300,0,88,999.000,999.0,99.0 +1988,12,26,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-14.4,-18.3,73,88200,455,1415,202,245,335,137,25800,31000,15800,2820,110,4.1,8,7,24.1,1220,9,999999999,40,0.0300,0,88,999.000,999.0,99.0 +1988,12,26,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-13.9,-17.8,73,88200,484,1415,188,343,879,41,36300,81300,8400,1040,100,3.1,0,0,48.3,77777,9,999999999,40,0.0300,0,88,999.000,999.0,99.0 +1988,12,26,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-13.3,-18.9,63,88100,452,1415,189,317,865,39,33600,79000,8200,990,130,4.1,0,0,48.3,77777,9,999999999,40,0.0300,0,88,999.000,999.0,99.0 +1988,12,26,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-13.9,-18.9,66,88200,363,1415,188,241,808,34,25700,70300,7500,840,140,3.6,0,0,48.3,77777,9,999999999,40,0.0300,0,88,999.000,999.0,99.0 +1988,12,26,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-15.0,-20.0,66,88200,221,1415,184,128,653,25,13500,49700,5700,580,140,3.1,0,0,48.3,77777,9,999999999,40,0.0300,0,88,999.000,999.0,99.0 +1988,12,26,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-17.8,-21.1,75,88200,50,1049,175,31,243,12,2500,12200,1900,240,230,1.5,0,0,48.3,77777,9,999999999,40,0.0300,0,88,999.000,999.0,99.0 +1988,12,26,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-19.4,-21.7,83,88300,0,0,170,0,0,0,0,0,0,0,280,4.1,0,0,24.1,77777,9,999999999,40,0.0300,0,88,999.000,999.0,99.0 +1988,12,26,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-19.4,-22.2,79,88300,0,0,170,0,0,0,0,0,0,0,260,2.6,0,0,24.1,77777,9,999999999,40,0.0300,0,88,999.000,999.0,99.0 +1988,12,26,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-20.0,-21.7,87,88300,0,0,169,0,0,0,0,0,0,0,280,2.6,0,0,24.1,77777,9,999999999,40,0.0300,0,88,999.000,999.0,99.0 +1988,12,26,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-20.0,-23.3,75,88300,0,0,167,0,0,0,0,0,0,0,290,2.1,0,0,24.1,77777,9,999999999,30,0.0300,0,88,999.000,999.0,99.0 +1988,12,26,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-20.6,-22.8,83,88300,0,0,166,0,0,0,0,0,0,0,290,3.1,0,0,24.1,77777,9,999999999,30,0.0300,0,88,999.000,999.0,99.0 +1988,12,26,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-21.7,-23.9,82,88300,0,0,163,0,0,0,0,0,0,0,260,2.1,1,0,24.1,77777,9,999999999,30,0.0300,0,88,999.000,999.0,99.0 +1988,12,26,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-20.0,-22.2,83,88300,0,0,168,0,0,0,0,0,0,0,260,3.1,3,0,24.1,77777,9,999999999,40,0.0300,0,88,999.000,999.0,99.0 +1988,12,27,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-20.6,-21.8,84,88300,0,0,170,0,0,0,0,0,0,0,270,2.1,4,1,24.1,77777,9,999999999,30,0.0300,0,88,999.000,999.0,99.0 +1988,12,27,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-19.4,-20.7,84,88300,0,0,178,0,0,0,0,0,0,0,0,0.0,5,3,24.1,77777,9,999999999,40,0.0300,0,88,999.000,999.0,99.0 +1988,12,27,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-18.9,-20.8,85,88300,0,0,181,0,0,0,0,0,0,0,270,2.1,6,4,24.1,77777,9,999999999,40,0.0300,0,88,999.000,999.0,99.0 +1988,12,27,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-18.9,-20.5,86,88300,0,0,184,0,0,0,0,0,0,0,0,0.0,7,6,24.1,77777,9,999999999,40,0.0300,0,88,999.000,999.0,99.0 +1988,12,27,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-17.8,-19.3,86,88300,0,0,191,0,0,0,0,0,0,0,120,1.5,8,7,24.1,15503,9,999999999,40,0.0300,0,88,999.000,999.0,99.0 +1988,12,27,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-17.8,-19.4,87,88300,0,0,198,0,0,0,0,0,0,0,0,0.0,9,9,24.1,3050,9,999999999,40,0.0300,0,88,999.000,999.0,99.0 +1988,12,27,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-17.2,-19.4,83,88300,0,0,205,0,0,0,0,0,0,0,330,2.6,10,10,24.1,3050,9,999999999,40,0.0300,0,88,999.000,999.0,99.0 +1988,12,27,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-16.1,-18.9,79,88300,0,0,209,0,0,0,0,0,0,0,290,2.1,10,10,48.3,2900,9,999999999,40,0.0300,0,88,999.000,999.0,99.0 +1988,12,27,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-16.1,-18.9,79,88300,55,1096,209,13,2,13,1500,0,1500,460,270,2.6,10,10,48.3,3050,9,999999999,40,0.0270,0,88,999.000,999.0,99.0 +1988,12,27,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-15.0,-18.3,76,88400,228,1415,213,57,3,56,6300,100,6300,1880,310,3.1,10,10,64.4,3050,9,999999999,40,0.0270,0,88,999.000,999.0,99.0 +1988,12,27,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-13.9,-17.8,73,88400,367,1415,217,114,7,112,12600,400,12500,3710,340,3.1,10,10,64.4,3050,9,999999999,40,0.0270,0,88,999.000,999.0,99.0 +1988,12,27,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-13.3,-17.2,73,88300,455,1415,214,170,110,134,18400,10200,15100,3030,310,2.6,10,9,64.4,2900,9,999999999,40,0.0270,0,88,999.000,999.0,99.0 +1988,12,27,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-11.1,-16.7,64,88300,485,1415,222,198,138,150,21400,13100,16900,3420,290,1.5,10,9,64.4,3050,9,999999999,40,0.0270,0,88,999.000,999.0,99.0 +1988,12,27,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-11.1,-16.7,64,88200,454,1415,217,195,112,159,20900,10400,17600,3590,320,2.6,10,8,64.4,2740,9,999999999,40,0.0270,0,88,999.000,999.0,99.0 +1988,12,27,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-11.1,-16.1,67,88200,365,1415,218,217,317,135,22400,26800,15400,2860,330,2.6,10,8,64.4,2900,9,999999999,50,0.0270,0,88,999.000,999.0,99.0 +1988,12,27,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-11.1,-16.7,64,88200,224,1415,209,99,205,67,10400,13500,8200,1300,310,2.6,8,5,64.4,2900,9,999999999,40,0.0270,0,88,999.000,999.0,99.0 +1988,12,27,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-12.8,-16.7,73,88200,52,1073,208,25,43,21,2500,1700,2500,430,280,2.1,10,7,48.3,2900,9,999999999,40,0.0270,0,88,999.000,999.0,99.0 +1988,12,27,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-13.3,-16.7,76,88300,0,0,204,0,0,0,0,0,0,0,240,3.1,10,6,24.1,2900,9,999999999,40,0.0270,0,88,999.000,999.0,99.0 +1988,12,27,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-12.2,-15.6,77,88300,0,0,209,0,0,0,0,0,0,0,270,2.6,10,6,24.1,7620,9,999999999,50,0.0270,0,88,999.000,999.0,99.0 +1988,12,27,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-12.2,-15.6,77,88300,0,0,211,0,0,0,0,0,0,0,260,2.1,10,7,24.1,1830,9,999999999,50,0.0270,0,88,999.000,999.0,99.0 +1988,12,27,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-12.8,-16.7,73,88300,0,0,211,0,0,0,0,0,0,0,280,2.1,10,8,24.1,1830,9,999999999,40,0.0270,0,88,999.000,999.0,99.0 +1988,12,27,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-13.9,-16.1,84,88300,0,0,208,0,0,0,0,0,0,0,130,1.5,10,8,24.1,1830,9,999999999,50,0.0270,0,88,999.000,999.0,99.0 +1988,12,27,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-13.3,-15.6,84,88300,0,0,205,0,0,0,0,0,0,0,310,1.5,10,6,24.1,1830,9,999999999,50,0.0270,0,88,999.000,999.0,99.0 +1988,12,27,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-15.0,-16.7,87,88300,0,0,199,0,0,0,0,0,0,0,260,1.5,10,6,24.1,2740,9,999999999,40,0.0270,0,88,999.000,999.0,99.0 +1988,12,28,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-15.0,-16.7,87,88300,0,0,201,0,0,0,0,0,0,0,140,1.5,10,7,16.1,77777,9,999999999,40,0.0270,0,88,999.000,999.0,99.0 +1988,12,28,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-14.4,-16.4,88,88300,0,0,203,0,0,0,0,0,0,0,180,2.1,10,7,16.1,77777,9,999999999,50,0.0270,0,88,999.000,999.0,99.0 +1988,12,28,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-15.6,-17.5,89,88300,0,0,202,0,0,0,0,0,0,0,0,0.0,10,8,16.1,77777,9,999999999,40,0.0270,0,88,999.000,999.0,99.0 +1988,12,28,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-16.1,-18.1,90,88300,0,0,200,0,0,0,0,0,0,0,0,0.0,10,8,16.1,77777,9,999999999,40,0.0270,0,88,999.000,999.0,99.0 +1988,12,28,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-16.7,-17.8,91,88300,0,0,202,0,0,0,0,0,0,0,180,1.5,10,9,16.1,77777,9,999999999,40,0.0270,0,88,999.000,999.0,99.0 +1988,12,28,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-16.7,-17.8,91,88200,0,0,202,0,0,0,0,0,0,0,90,1.5,10,9,24.1,3050,9,999999999,40,0.0270,0,88,999.000,999.0,99.0 +1988,12,28,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-15.6,-16.7,91,88200,0,0,213,0,0,0,0,0,0,0,0,0.0,10,10,24.1,3050,9,999999999,40,0.0270,0,88,999.000,999.0,99.0 +1988,12,28,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-16.1,-17.8,87,88300,0,0,210,0,0,0,0,0,0,0,340,2.1,10,10,48.3,3050,9,999999999,40,0.0270,0,88,999.000,999.0,99.0 +1988,12,28,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-15.6,-17.2,87,88300,55,1096,202,22,13,21,2400,700,2300,490,20,1.5,10,8,48.3,1220,9,999999999,40,0.0290,0,88,999.000,999.0,99.0 +1988,12,28,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-15.6,-16.7,91,88300,227,1415,197,80,54,71,8700,4200,8000,1650,0,0.0,8,6,48.3,1220,9,999999999,40,0.0290,0,88,999.000,999.0,99.0 +1988,12,28,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-11.7,-15.0,77,88200,368,1415,206,182,353,89,18800,29600,11100,1650,220,1.5,8,3,64.4,77777,9,999999999,50,0.0290,0,88,999.000,999.0,99.0 +1988,12,28,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-10.0,-15.0,67,88200,456,1415,213,316,645,107,32000,57000,13500,1890,0,0.0,9,4,64.4,77777,9,999999999,50,0.0290,0,88,999.000,999.0,99.0 +1988,12,28,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-8.9,-13.3,71,88100,486,1415,218,311,602,104,31800,54400,13000,1900,170,2.6,9,4,64.4,77777,9,999999999,50,0.0290,0,88,999.000,999.0,99.0 +1988,12,28,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-6.7,-12.2,65,88100,456,1415,224,245,450,100,25900,40800,12700,1870,110,2.1,8,3,64.4,77777,9,999999999,60,0.0290,0,88,999.000,999.0,99.0 +1988,12,28,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-7.2,-12.2,68,88100,367,1415,217,217,680,40,22800,59000,7400,850,250,2.6,4,1,64.4,77777,9,999999999,60,0.0290,0,88,999.000,999.0,99.0 +1988,12,28,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-7.2,-12.8,65,88100,226,1415,220,112,477,35,11600,33700,6200,650,320,2.6,2,2,64.4,77777,9,999999999,50,0.0290,0,88,999.000,999.0,99.0 +1988,12,28,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-10.6,-13.3,80,88100,54,1073,206,33,256,13,2700,12900,2000,260,190,2.1,1,1,48.3,77777,9,999999999,50,0.0290,0,88,999.000,999.0,99.0 +1988,12,28,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-7.8,-12.8,68,88100,0,0,211,0,0,0,0,0,0,0,200,3.1,0,0,24.1,77777,9,999999999,50,0.0290,0,88,999.000,999.0,99.0 +1988,12,28,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-12.2,-15.0,80,88100,0,0,196,0,0,0,0,0,0,0,270,2.1,0,0,24.1,77777,9,999999999,50,0.0290,0,88,999.000,999.0,99.0 +1988,12,28,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-8.3,-12.8,71,88000,0,0,209,0,0,0,0,0,0,0,310,2.6,0,0,24.1,77777,9,999999999,50,0.0290,0,88,999.000,999.0,99.0 +1988,12,28,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-13.3,-15.6,84,88000,0,0,198,0,0,0,0,0,0,0,0,0.0,3,2,24.1,77777,9,999999999,50,0.0290,0,88,999.000,999.0,99.0 +1988,12,28,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-11.7,-14.4,80,88000,0,0,214,0,0,0,0,0,0,0,0,0.0,8,7,24.1,3660,9,999999999,50,0.0290,0,88,999.000,999.0,99.0 +1988,12,28,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-12.8,-14.4,88,88000,0,0,218,0,0,0,0,0,0,0,0,0.0,9,9,24.1,1310,9,999999999,50,0.0290,0,88,999.000,999.0,99.0 +1988,12,28,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-10.0,-14.4,70,88000,0,0,217,0,0,0,0,0,0,0,310,3.1,6,6,24.1,3660,9,999999999,50,0.0290,0,88,999.000,999.0,99.0 +1988,12,29,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-7.2,-12.8,65,88000,0,0,230,0,0,0,0,0,0,0,150,4.1,7,7,24.1,3660,9,999999999,50,0.0290,0,88,999.000,999.0,99.0 +1988,12,29,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-5.6,-11.8,69,88000,0,0,237,0,0,0,0,0,0,0,310,3.6,7,7,24.1,3660,9,999999999,60,0.0290,0,88,999.000,999.0,99.0 +1988,12,29,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-4.4,-12.2,73,87900,0,0,244,0,0,0,0,0,0,0,130,4.1,8,8,24.1,3660,9,999999999,69,0.0290,0,88,999.000,999.0,99.0 +1988,12,29,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-6.7,-12.1,77,87900,0,0,236,0,0,0,0,0,0,0,120,3.6,8,8,24.1,3660,9,999999999,60,0.0290,0,88,999.000,999.0,99.0 +1988,12,29,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-8.3,-11.1,81,87900,0,0,236,0,0,0,0,0,0,0,110,4.1,9,9,16.1,3660,9,999999999,60,0.0290,0,88,999.000,999.0,99.0 +1988,12,29,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-8.3,-10.0,88,87800,0,0,237,0,0,0,0,0,0,0,0,0.0,9,9,24.1,1680,9,999999999,60,0.0290,0,88,999.000,999.0,99.0 +1988,12,29,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-8.3,-10.6,84,87800,0,0,244,0,0,0,0,0,0,0,140,2.6,10,10,24.1,1830,9,999999999,60,0.0290,0,88,999.000,999.0,99.0 +1988,12,29,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-7.2,-11.1,74,87700,0,0,247,0,0,0,0,0,0,0,120,4.1,10,10,32.2,1680,9,999999999,60,0.0290,0,88,999.000,999.0,99.0 +1988,12,29,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-7.8,-10.0,84,87700,54,1096,246,16,13,14,1600,700,1600,350,290,2.6,10,10,32.2,2740,9,999999999,60,0.0290,0,88,999.000,999.0,99.0 +1988,12,29,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-7.8,-10.0,84,87700,227,1415,246,84,9,82,9000,300,9000,2330,20,1.5,10,10,32.2,2740,9,999999999,60,0.0290,0,88,999.000,999.0,99.0 +1988,12,29,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-6.7,-10.0,78,87700,368,1415,250,98,8,96,11000,400,10900,3380,350,2.1,10,10,4.8,610,9,999999999,60,0.0290,0,88,999.000,999.0,99.0 +1988,12,29,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-6.7,-8.3,88,87500,457,1415,252,145,1,145,16100,100,16100,4930,320,3.6,10,10,8.0,610,9,999999999,69,0.0290,0,88,999.000,999.0,99.0 +1988,12,29,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-6.1,-7.8,88,87500,487,1415,255,159,5,157,17600,400,17500,5390,300,3.1,10,10,6.4,610,9,999999999,69,0.0290,0,88,999.000,999.0,99.0 +1988,12,29,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-5.6,-7.2,88,87500,457,1415,250,180,51,164,19700,4800,18200,4100,240,2.6,10,9,11.3,760,9,999999999,69,0.0290,0,88,999.000,999.0,99.0 +1988,12,29,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-4.4,-7.8,78,87500,369,1415,261,136,13,132,14700,800,14500,4050,0,0.0,10,10,11.3,760,9,999999999,69,0.0290,0,88,999.000,999.0,99.0 +1988,12,29,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-5.0,-6.7,88,87500,229,1415,260,64,6,63,7100,200,7000,2030,130,1.5,10,10,9.7,880,9,999999999,69,0.0290,0,88,999.000,999.0,99.0 +1988,12,29,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-5.6,-6.7,92,87500,56,1096,257,17,5,16,1800,300,1800,390,270,3.1,10,10,24.1,820,9,999999999,69,0.0290,0,88,999.000,999.0,99.0 +1988,12,29,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-5.0,-6.7,88,87500,0,0,260,0,0,0,0,0,0,0,250,3.1,10,10,24.1,1520,9,999999999,69,0.0290,0,88,999.000,999.0,99.0 +1988,12,29,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-5.0,-6.7,88,87500,0,0,260,0,0,0,0,0,0,0,250,2.1,10,10,24.1,1520,9,999999999,69,0.0290,0,88,999.000,999.0,99.0 +1988,12,29,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-5.0,-6.1,92,87500,0,0,260,0,0,0,0,0,0,0,250,2.1,10,10,24.1,1490,9,999999999,80,0.0290,0,88,999.000,999.0,99.0 +1988,12,29,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-5.0,-7.2,85,87500,0,0,259,0,0,0,0,0,0,0,280,2.6,10,10,24.1,1520,9,999999999,69,0.0290,0,88,999.000,999.0,99.0 +1988,12,29,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-4.4,-6.7,85,87500,0,0,262,0,0,0,0,0,0,0,290,2.1,10,10,24.1,1340,9,999999999,69,0.0290,0,88,999.000,999.0,99.0 +1988,12,29,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-5.0,-6.7,88,87500,0,0,260,0,0,0,0,0,0,0,270,2.1,10,10,11.3,1430,9,999999999,69,0.0290,0,88,999.000,999.0,99.0 +1988,12,29,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-5.6,-6.7,92,87500,0,0,257,0,0,0,0,0,0,0,0,0.0,10,10,9.7,1370,9,999999999,69,0.0290,0,88,999.000,999.0,99.0 +1988,12,30,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-6.1,-6.7,96,87400,0,0,256,0,0,0,0,0,0,0,240,2.6,10,10,9.7,1250,9,999999999,69,0.0290,0,88,999.000,999.0,99.0 +1988,12,30,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-6.7,-6.7,95,87400,0,0,253,0,0,0,0,0,0,0,0,0.0,10,10,9.7,1310,9,999999999,69,0.0290,0,88,999.000,999.0,99.0 +1988,12,30,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-5.6,-6.4,94,87400,0,0,258,0,0,0,0,0,0,0,260,2.1,10,10,9.7,1370,9,999999999,69,0.0290,0,88,999.000,999.0,99.0 +1988,12,30,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-5.6,-6.4,93,87400,0,0,251,0,0,0,0,0,0,0,270,2.6,10,9,9.7,1430,9,999999999,69,0.0290,0,88,999.000,999.0,99.0 +1988,12,30,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-4.4,-5.6,92,87300,0,0,256,0,0,0,0,0,0,0,260,2.6,10,9,16.1,1490,9,999999999,80,0.0290,0,88,999.000,999.0,99.0 +1988,12,30,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-4.4,-5.6,92,87300,0,0,256,0,0,0,0,0,0,0,0,0.0,10,9,24.1,1520,9,999999999,80,0.0290,0,88,999.000,999.0,99.0 +1988,12,30,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-5.6,-6.7,92,87300,0,0,250,0,0,0,0,0,0,0,0,0.0,10,9,24.1,1520,9,999999999,69,0.0290,0,88,999.000,999.0,99.0 +1988,12,30,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-5.0,-6.1,92,87300,0,0,248,0,0,0,0,0,0,0,260,1.5,10,8,32.2,1520,9,999999999,80,0.0290,0,88,999.000,999.0,99.0 +1988,12,30,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-5.6,-7.2,88,87300,54,1073,245,30,36,28,3200,1400,3100,580,0,0.0,10,8,48.3,1980,9,999999999,69,0.0130,0,88,999.000,999.0,99.0 +1988,12,30,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-5.6,-7.2,88,87200,227,1415,245,88,63,77,9500,4900,8700,1750,210,2.1,10,8,48.3,3660,9,999999999,69,0.0130,0,88,999.000,999.0,99.0 +1988,12,30,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-3.3,-5.6,85,87300,369,1415,268,110,9,108,12200,500,12100,3640,270,2.6,10,10,48.3,1680,9,999999999,80,0.0130,0,88,999.000,999.0,99.0 +1988,12,30,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.7,-5.6,75,87200,458,1415,266,151,89,122,16500,8300,13800,2760,0,0.0,10,9,48.3,1680,9,999999999,80,0.0130,0,88,999.000,999.0,99.0 +1988,12,30,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.7,-5.6,75,87100,489,1415,266,194,58,174,21200,5500,19300,4440,230,1.5,10,9,48.3,3660,9,999999999,80,0.0130,0,88,999.000,999.0,99.0 +1988,12,30,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.1,-5.0,75,87100,460,1415,269,231,248,150,24200,23000,16700,3160,300,2.6,9,9,48.3,6100,9,999999999,80,0.0130,0,88,999.000,999.0,99.0 +1988,12,30,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.1,-3.9,70,87100,372,1415,279,132,52,118,14400,4600,13200,2930,300,2.6,9,9,48.3,1680,9,999999999,89,0.0130,0,88,999.000,999.0,99.0 +1988,12,30,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.6,-3.9,73,87200,232,1415,271,73,23,69,8000,1800,7700,1630,270,2.6,8,8,48.3,2130,9,999999999,89,0.0130,0,88,999.000,999.0,99.0 +1988,12,30,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-3.3,-6.1,81,87200,58,1120,254,32,3,32,3400,0,3400,850,250,2.1,10,8,32.2,1980,9,999999999,80,0.0130,0,88,999.000,999.0,99.0 +1988,12,30,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-2.8,-5.6,81,87200,0,0,262,0,0,0,0,0,0,0,250,3.6,10,9,24.1,1980,9,999999999,80,0.0130,0,88,999.000,999.0,99.0 +1988,12,30,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-2.8,-6.1,78,87200,0,0,269,0,0,0,0,0,0,0,250,2.6,10,10,24.1,1830,9,999999999,80,0.0130,0,88,999.000,999.0,99.0 +1988,12,30,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-3.3,-5.0,88,87200,0,0,268,0,0,0,0,0,0,0,240,2.6,10,10,24.1,1520,9,999999999,80,0.0130,0,88,999.000,999.0,99.0 +1988,12,30,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-3.9,-6.7,81,87200,0,0,264,0,0,0,0,0,0,0,250,2.6,10,10,24.1,3660,9,999999999,69,0.0130,0,88,999.000,999.0,99.0 +1988,12,30,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-5.6,-7.8,85,87200,0,0,244,0,0,0,0,0,0,0,240,2.6,9,8,24.1,3660,9,999999999,69,0.0130,0,88,999.000,999.0,99.0 +1988,12,30,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-2.8,-5.6,81,87200,0,0,262,0,0,0,0,0,0,0,250,3.6,10,9,24.1,3660,9,999999999,80,0.0130,0,88,999.000,999.0,99.0 +1988,12,30,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-2.8,-5.6,81,87200,0,0,262,0,0,0,0,0,0,0,0,0.0,10,9,24.1,3660,9,999999999,80,0.0130,0,88,999.000,999.0,99.0 +1988,12,31,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-3.3,-6.1,81,87200,0,0,254,0,0,0,0,0,0,0,190,2.1,9,8,24.1,77777,9,999999999,80,0.0130,0,88,999.000,999.0,99.0 +1988,12,31,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-3.3,-5.9,83,87300,0,0,250,0,0,0,0,0,0,0,200,3.1,9,7,24.1,77777,9,999999999,80,0.0130,0,88,999.000,999.0,99.0 +1988,12,31,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-1.7,-7.0,85,87400,0,0,252,0,0,0,0,0,0,0,220,3.1,8,6,24.1,77777,9,999999999,89,0.0130,0,88,999.000,999.0,99.0 +1988,12,31,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-2.8,-7.5,88,87500,0,0,248,0,0,0,0,0,0,0,170,2.1,7,6,24.1,77777,9,999999999,80,0.0130,0,88,999.000,999.0,99.0 +1988,12,31,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-3.9,-7.3,90,87500,0,0,242,0,0,0,0,0,0,0,250,2.1,6,5,24.1,17746,9,999999999,80,0.0130,0,88,999.000,999.0,99.0 +1988,12,31,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-7.2,-8.3,92,87500,0,0,228,0,0,0,0,0,0,0,10,1.5,6,4,24.1,2740,9,999999999,69,0.0130,0,88,999.000,999.0,99.0 +1988,12,31,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-6.7,-6.7,100,87500,0,0,229,0,0,0,0,0,0,0,300,3.1,5,3,24.1,77777,9,999999999,69,0.0130,0,88,999.000,999.0,99.0 +1988,12,31,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-6.7,-8.3,88,87700,0,0,240,0,0,0,0,0,0,0,330,2.1,9,8,32.2,1830,9,999999999,69,0.0130,0,88,999.000,999.0,99.0 +1988,12,31,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-7.8,-10.0,84,87700,54,1073,246,6,3,6,700,200,700,160,340,4.1,10,10,24.1,1680,9,999999999,60,0.0350,0,88,999.000,999.0,99.0 +1988,12,31,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-8.9,-11.7,81,87800,228,1415,240,55,7,54,6200,100,6100,1840,350,3.6,10,10,24.1,1680,9,999999999,60,0.0350,0,88,999.000,999.0,99.0 +1988,12,31,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-9.4,-12.8,77,87900,369,1415,238,97,11,94,10900,600,10700,3340,330,4.1,10,10,24.1,610,9,999999999,50,0.0350,0,88,999.000,999.0,99.0 +1988,12,31,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-9.4,-13.3,74,87900,459,1415,231,202,105,168,22100,9900,18900,4180,350,4.1,10,9,24.1,610,9,999999999,50,0.0350,0,88,999.000,999.0,99.0 +1988,12,31,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-9.4,-13.9,70,87900,491,1415,230,176,55,157,19300,5200,17500,4130,320,4.1,10,9,24.1,610,9,999999999,50,0.0350,0,88,999.000,999.0,99.0 +1988,12,31,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-10.0,-15.0,67,87900,462,1415,213,295,553,114,30800,50200,14300,2170,330,4.1,10,4,24.1,610,9,999999999,50,0.0350,0,88,999.000,999.0,99.0 +1988,12,31,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-11.1,-15.6,70,87900,374,1415,210,173,266,102,18200,22800,12200,2010,320,3.6,10,5,24.1,77777,9,999999999,50,0.0350,0,88,999.000,999.0,99.0 +1988,12,31,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-11.7,-16.1,70,87900,234,1415,208,97,70,86,10700,5500,9700,1910,320,4.1,10,5,24.1,77777,9,999999999,50,0.0350,0,88,999.000,999.0,99.0 +1988,12,31,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-13.3,-17.2,73,88000,60,1144,206,22,27,20,2400,1100,2300,410,310,3.6,10,7,24.1,3050,9,999999999,40,0.0350,0,88,999.000,999.0,99.0 +1988,12,31,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-14.4,-17.8,76,88000,0,0,197,0,0,0,0,0,0,0,280,3.1,10,4,24.1,77777,9,999999999,40,0.0350,0,88,999.000,999.0,99.0 +1988,12,31,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-14.4,-17.8,76,88000,0,0,197,0,0,0,0,0,0,0,280,3.6,10,4,24.1,77777,9,999999999,40,0.0350,0,88,999.000,999.0,99.0 +1988,12,31,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-15.6,-18.9,76,88000,0,0,211,0,0,0,0,0,0,0,280,3.1,10,10,16.1,610,9,999999999,40,0.0350,0,88,999.000,999.0,99.0 +1988,12,31,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-15.0,-20.0,66,88000,0,0,212,0,0,0,0,0,0,0,300,2.6,10,10,16.1,610,9,999999999,40,0.0350,0,88,999.000,999.0,99.0 +1988,12,31,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-14.4,-16.1,87,88000,0,0,217,0,0,0,0,0,0,0,290,1.5,10,10,4.8,370,9,999999999,50,0.0350,0,88,999.000,999.0,99.0 +1988,12,31,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9*_*9*9*9*9*9,-15.0,-16.7,87,88000,0,0,201,0,0,0,0,0,0,0,330,1.5,7,7,16.1,1220,9,999999999,40,0.0350,0,88,999.000,999.0,99.0 +1988,12,31,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9*_*9*9*9*9*9,-16.4,-17.1,94,87900,0,0,191,0,0,0,0,0,0,0,240,1.5,4,4,16.1,1181,9,999999999,40,0.0350,0,88,999.000,999.0,99.0 diff --git a/example_files/resources/hpxml-measures/weather/USA_OR_Portland.Intl.AP.726980_TMY3-cache.csv b/example_files/resources/hpxml-measures/weather/USA_OR_Portland.Intl.AP.726980_TMY3-cache.csv new file mode 100644 index 00000000..bf89e0a0 --- /dev/null +++ b/example_files/resources/hpxml-measures/weather/USA_OR_Portland.Intl.AP.726980_TMY3-cache.csv @@ -0,0 +1,35 @@ +WeatherHeader.City,String,Portland International Ap +WeatherHeader.State,String,OR +WeatherHeader.Country,String,USA +WeatherHeader.DataSource,String,TMY3 +WeatherHeader.Station,String,726980 +WeatherHeader.Latitude,Float,45.6 +WeatherHeader.Longitude,Float,-122.62 +WeatherHeader.Timezone,Float,-8.0 +WeatherHeader.Altitude,Float,19.68503937007874 +WeatherHeader.LocalPressure,Float,0.9992758528723594 +WeatherHeader.RecordsPerHour,Fixnum,1 +WeatherData.AnnualAvgDrybulb,Float,54.02721232876719 +WeatherData.AnnualMinDrybulb,Float,24.08 +WeatherData.AnnualMaxDrybulb,Float,100.03999999999999 +WeatherData.CDD50F,Float,2459.2275000000013 +WeatherData.CDD65F,Float,295.9050000000003 +WeatherData.HDD50F,Float,989.2950000000001 +WeatherData.HDD65F,Float,4300.972499999999 +WeatherData.AnnualAvgWindspeed,Float,3.3792237442919677 +WeatherData.MonthlyAvgDrybulbs,Array,41.899032258064494,44.33589285714284,46.970725806451625,53.047499999999985,57.10225806451613,63.62949999999998,67.8328225806452,68.15701612903226,63.078000000000046,55.01532258064521,47.29675000000002,39.37685483870967 +WeatherData.GroundMonthlyTemps,Array,48.95498030709081,46.75380333328184,46.577525187328945,47.62209613362148,51.81546640229709,55.98930217333981,59.607794719316246,61.90002075218189,62.094757943976504,60.230417336854146,56.704198475270516,52.658398985351425 +WeatherData.WSF,Float,0.52 +WeatherData.MonthlyAvgDailyHighDrybulbs,Array,47.31161290322581,52.13428571428571,55.97483870967742,61.166,66.83870967741936,74.186,79.18903225806451,79.6825806451613,74.438,62.79161290322581,53.264,44.75096774193548 +WeatherData.MonthlyAvgDailyLowDrybulbs,Array,36.87741935483871,37.39357142857143,38.4741935483871,46.052,48.79225806451613,54.128,58.082580645161286,58.59935483870968,52.861999999999995,47.98516129032258,42.44,34.258709677419354 +WeatherDesign.HeatingDrybulb,Float,28.58 +WeatherDesign.HeatingWindspeed,Float,12.5 +WeatherDesign.CoolingDrybulb,Float,87.08000000000001 +WeatherDesign.CoolingWetbulb,Float,66.56 +WeatherDesign.CoolingHumidityRatio,Float,0.009062490878777247 +WeatherDesign.CoolingWindspeed,Float,4.7 +WeatherDesign.DailyTemperatureRange,Float,21.96 +WeatherDesign.DehumidDrybulb,Float,71.42 +WeatherDesign.DehumidHumidityRatio,Float,0.011082752390407657 +WeatherDesign.CoolingDirectNormal,Float,854.0 +WeatherDesign.CoolingDiffuseHorizontal,Float,226.0 diff --git a/example_files/resources/hpxml-measures/weather/USA_OR_Portland.Intl.AP.726980_TMY3.epw b/example_files/resources/hpxml-measures/weather/USA_OR_Portland.Intl.AP.726980_TMY3.epw new file mode 100644 index 00000000..2544b34c --- /dev/null +++ b/example_files/resources/hpxml-measures/weather/USA_OR_Portland.Intl.AP.726980_TMY3.epw @@ -0,0 +1,8768 @@ +LOCATION,Portland International Ap,OR,USA,TMY3,726980,45.60,-122.62,-8.0,6.0 +DESIGN CONDITIONS,1,Climate Design Data 2009 ASHRAE Handbook,,Heating,12,-4.5,-1.9,-12.7,1.3,-1.5,-8.7,1.8,1.5,14.3,1.9,12.5,4.3,5.1,120,Cooling,8,12.2,32.9,19.7,30.6,19.2,28.6,18.5,20.8,30.6,19.9,29.2,19,27.3,4.7,310,17.1,12.3,24,16.3,11.7,22.9,15.6,11.1,21.9,59.9,30.8,56.6,29.1,53.6,27.3,1111,Extremes,10.6,8.8,7.9,25.1,-6.4,37.2,3.3,1.8,-8.8,38.5,-10.7,39.6,-12.5,40.6,-14.9,41.9 +TYPICAL/EXTREME PERIODS,6,Summer - Week Nearest Max Temperature For Period,Extreme,8/ 5,8/11,Summer - Week Nearest Average Temperature For Period,Typical,8/12,8/18,Winter - Week Nearest Min Temperature For Period,Extreme,1/ 1,1/ 7,Winter - Week Nearest Average Temperature For Period,Typical,1/15,1/21,Autumn - Week Nearest Average Temperature For Period,Typical,11/12,11/18,Spring - Week Nearest Average Temperature For Period,Typical,5/ 6,5/12 +GROUND TEMPERATURES,3,.5,,,,5.00,6.36,9.00,11.51,16.25,18.75,19.44,18.17,15.25,11.60,8.01,5.64,2,,,,6.87,7.20,8.71,10.39,14.04,16.37,17.53,17.27,15.60,13.08,10.25,8.02,4,,,,8.81,8.57,9.23,10.19,12.60,14.40,15.57,15.86,15.13,13.65,11.73,9.99 +HOLIDAYS/DAYLIGHT SAVINGS,No,0,0,0 +COMMENTS 1,Custom/User Format -- WMO#726980; NREL TMY Data Set (2008); Period of Record 1973-2005 (Generally) +COMMENTS 2, -- Ground temps produced with a standard soil diffusivity of 2.3225760E-03 {m**2/day} +DATA PERIODS,1,1,Data,Sunday, 1/ 1,12/31 +1976,1,1,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,-6.1,52,103000,0,0,253,0,0,0,0,0,0,0,80,5.2,0,0,24.1,77777,9,999999999,60,0.0720,0,88,999.000,999.0,99.0 +1976,1,1,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,-6.1,55,103000,0,0,251,0,0,0,0,0,0,0,90,2.6,0,0,24.1,77777,9,999999999,60,0.0720,0,88,999.000,999.0,99.0 +1976,1,1,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.1,-5.6,62,103000,0,0,247,0,0,0,0,0,0,0,10,2.1,0,0,24.1,77777,9,999999999,50,0.0720,0,88,999.000,999.0,99.0 +1976,1,1,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,-7.2,50,103000,0,0,250,0,0,0,0,0,0,0,60,4.1,0,0,24.1,77777,9,999999999,50,0.0720,0,88,999.000,999.0,99.0 +1976,1,1,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.1,-3.9,82,102900,0,0,241,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,50,0.0720,0,88,999.000,999.0,99.0 +1976,1,1,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.6,-6.7,59,102900,0,0,245,0,0,0,0,0,0,0,80,3.1,0,0,24.1,77777,9,999999999,60,0.0720,0,88,999.000,999.0,99.0 +1976,1,1,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.0,-6.1,64,102900,0,0,243,0,0,0,0,0,0,0,50,2.6,0,0,24.1,77777,9,999999999,60,0.0720,0,88,999.000,999.0,99.0 +1976,1,1,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.1,-4.4,78,102900,1,177,241,3,4,2,0,0,0,0,310,3.1,6,0,80.5,77777,9,999999999,60,0.0790,0,88,999.000,999.0,99.0 +1976,1,1,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.7,-2.8,92,103000,118,1415,240,47,222,28,4846,10260,3986,501,270,3.1,4,0,1.6,77777,9,999999999,60,0.0790,0,88,999.000,999.0,99.0 +1976,1,1,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.0,-1.7,89,103000,292,1415,247,159,450,65,16014,34400,8861,1122,260,3.1,8,0,48.3,77777,9,999999999,60,0.0790,0,88,999.000,999.0,99.0 +1976,1,1,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,-1.7,79,103000,422,1415,253,261,582,86,26628,50816,11371,1555,310,2.6,8,0,48.3,77777,9,999999999,69,0.0790,0,88,999.000,999.0,99.0 +1976,1,1,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,-2.2,73,102900,497,1415,254,324,654,93,33406,59968,12214,1751,260,2.6,7,0,48.3,77777,9,999999999,69,0.0790,0,88,999.000,999.0,99.0 +1976,1,1,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,-2.8,62,102900,512,1415,260,336,683,89,34974,63300,11959,1707,310,3.6,6,0,80.5,77777,9,999999999,69,0.0790,0,88,999.000,999.0,99.0 +1976,1,1,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,-2.8,58,102800,465,1415,264,299,619,95,30614,55491,12292,1737,290,2.6,8,0,80.5,77777,9,999999999,80,0.0790,0,88,999.000,999.0,99.0 +1976,1,1,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,-3.9,55,102800,359,1415,261,209,521,77,21324,43065,10323,1356,330,3.1,8,0,80.5,77777,9,999999999,80,0.0790,0,88,999.000,999.0,99.0 +1976,1,1,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,-3.3,60,102800,203,1415,260,94,288,53,9725,18272,7077,970,310,2.1,9,0,80.5,77777,9,999999999,80,0.0790,0,88,999.000,999.0,99.0 +1976,1,1,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,-6.7,52,102800,32,837,259,16,33,13,1563,832,1526,221,160,3.6,7,2,80.5,77777,9,999999999,80,0.0790,0,88,999.000,999.0,99.0 +1976,1,1,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,-5.6,59,102700,0,0,254,0,0,0,0,0,0,0,80,2.6,5,1,24.1,77777,9,999999999,80,0.0720,0,88,999.000,999.0,99.0 +1976,1,1,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.6,-6.7,59,102700,0,0,253,0,0,0,0,0,0,0,100,1.5,2,2,24.1,77777,9,999999999,89,0.0720,0,88,999.000,999.0,99.0 +1976,1,1,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.1,-6.1,69,102700,0,0,239,0,0,0,0,0,0,0,200,1.0,0,0,24.1,77777,9,999999999,89,0.0720,0,88,999.000,999.0,99.0 +1976,1,1,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.0,-5.6,67,102700,0,0,243,0,0,0,0,0,0,0,30,1.0,0,0,24.1,77777,9,999999999,89,0.0720,0,88,999.000,999.0,99.0 +1976,1,1,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-0.6,-5.0,72,102700,0,0,242,0,0,0,0,0,0,0,80,2.6,0,0,24.1,77777,9,999999999,89,0.0720,0,88,999.000,999.0,99.0 +1976,1,1,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-3.3,-5.0,88,102700,0,0,232,0,0,0,0,0,0,0,300,2.6,0,0,24.1,77777,9,999999999,89,0.0720,0,88,999.000,999.0,99.0 +1976,1,1,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-2.8,-5.0,85,102700,0,0,242,0,0,0,0,0,0,0,270,1.5,2,2,24.1,77777,9,999999999,89,0.0720,0,88,999.000,999.0,99.0 +1976,1,2,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.7,-3.3,89,102600,0,0,263,0,0,0,0,0,0,0,0,0.0,10,8,24.1,4270,9,999999999,89,0.0720,0,88,999.000,999.0,99.0 +1976,1,2,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.7,-3.3,89,102600,0,0,263,0,0,0,0,0,0,0,0,0.0,10,8,24.1,3960,9,999999999,100,0.0720,0,88,999.000,999.0,99.0 +1976,1,2,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-0.6,-2.8,85,102600,0,0,274,0,0,0,0,0,0,0,0,0.0,10,9,24.1,3050,9,999999999,100,0.0720,0,88,999.000,999.0,99.0 +1976,1,2,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.7,-3.3,89,102500,0,0,247,0,0,0,0,0,0,0,0,0.0,3,2,24.1,77777,9,999999999,100,0.0720,0,88,999.000,999.0,99.0 +1976,1,2,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.1,-2.8,89,102500,0,0,252,0,0,0,0,0,0,0,0,0.0,3,3,24.1,77777,9,999999999,100,0.0720,0,88,999.000,999.0,99.0 +1976,1,2,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.1,-3.3,85,102500,0,0,271,0,0,0,0,0,0,0,0,0.0,10,9,24.1,3050,9,999999999,100,0.0720,0,88,999.000,999.0,99.0 +1976,1,2,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.0,-4.4,72,102500,0,0,282,0,0,0,0,0,0,0,140,3.1,10,10,24.1,3050,9,999999999,100,0.0720,0,88,999.000,999.0,99.0 +1976,1,2,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.6,-5.6,64,102600,1,177,276,1,0,1,0,0,0,0,120,4.1,10,9,80.5,3050,9,999999999,100,0.0370,0,88,999.000,999.0,99.0 +1976,1,2,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.6,-5.0,67,102600,118,1415,284,18,5,18,2100,0,2100,650,180,4.1,10,10,80.5,3050,9,999999999,100,0.0370,0,88,999.000,999.0,99.0 +1976,1,2,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,-5.6,59,102600,293,1415,280,90,52,79,9800,4300,8900,1960,140,7.7,10,9,80.5,6100,9,999999999,100,0.0370,0,88,999.000,999.0,99.0 +1976,1,2,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,-6.7,52,102600,424,1415,265,238,488,91,25100,43200,12100,1690,150,7.2,10,5,80.5,77777,9,999999999,100,0.0370,0,88,999.000,999.0,99.0 +1976,1,2,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,-5.6,49,102600,499,1415,273,234,351,110,24700,32700,13200,2090,130,4.6,7,4,80.5,6100,9,999999999,100,0.0370,0,88,999.000,999.0,99.0 +1976,1,2,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,-5.6,49,102500,514,1415,285,215,170,153,23400,16400,17400,3520,130,7.7,10,8,80.5,4570,9,999999999,100,0.0370,0,88,999.000,999.0,99.0 +1976,1,2,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,-5.0,49,102400,467,1415,288,184,42,170,20100,4000,18800,4250,120,5.2,10,8,80.5,4570,9,999999999,100,0.0370,0,88,999.000,999.0,99.0 +1976,1,2,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,-5.0,51,102500,362,1415,300,116,3,115,12700,200,12700,3730,120,5.7,10,10,80.5,4570,9,999999999,100,0.0370,0,88,999.000,999.0,99.0 +1976,1,2,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,-5.0,53,102500,207,1415,298,76,5,76,8300,100,8200,2110,130,4.1,10,10,80.5,3050,9,999999999,100,0.0370,0,88,999.000,999.0,99.0 +1976,1,2,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,-5.0,55,102500,34,837,295,10,1,10,1200,0,1200,360,130,4.1,10,10,80.5,1010,9,999999999,100,0.0370,0,88,999.000,999.0,99.0 +1976,1,2,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,-3.9,62,102500,0,0,294,0,0,0,0,0,0,0,140,3.6,10,10,24.1,1070,9,999999999,100,0.0720,0,88,999.000,999.0,99.0 +1976,1,2,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,-4.4,59,102400,0,0,294,0,0,0,0,0,0,0,130,5.7,10,10,24.1,1100,9,999999999,100,0.0720,0,88,999.000,999.0,99.0 +1976,1,2,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,-4.4,59,102400,0,0,294,0,0,0,0,0,0,0,130,5.2,10,10,24.1,1010,9,999999999,110,0.0720,0,88,999.000,999.0,99.0 +1976,1,2,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,-5.0,59,102400,0,0,291,0,0,0,0,0,0,0,130,6.2,10,10,24.1,2740,9,999999999,110,0.0720,0,88,999.000,999.0,99.0 +1976,1,2,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,-3.3,65,102400,0,0,295,0,0,0,0,0,0,0,130,5.2,10,10,19.3,1010,9,999999999,110,0.0720,0,88,999.000,999.0,99.0 +1976,1,2,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,-4.4,62,102400,0,0,291,0,0,0,0,0,0,0,130,4.6,10,10,24.1,1070,9,999999999,110,0.0720,0,88,999.000,999.0,99.0 +1976,1,2,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,-2.8,73,102400,0,0,291,0,0,0,0,0,0,0,130,5.2,10,10,19.3,880,9,999999999,110,0.0720,0,88,999.000,999.0,99.0 +1976,1,3,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,-1.7,79,102300,0,0,292,0,0,0,0,0,0,0,120,5.2,10,10,24.1,910,9,999999999,110,0.0720,0,88,999.000,999.0,99.0 +1976,1,3,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,-2.8,73,102300,0,0,291,0,0,0,0,0,0,0,120,6.7,10,10,24.1,910,9,999999999,120,0.0720,0,88,999.000,999.0,99.0 +1976,1,3,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,-2.2,76,102400,0,0,292,0,0,0,0,0,0,0,120,5.2,10,10,24.1,580,9,999999999,120,0.0720,0,88,999.000,999.0,99.0 +1976,1,3,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.1,-1.1,85,102300,0,0,290,0,0,0,0,0,0,0,120,6.7,10,10,11.3,550,9,999999999,120,0.0720,0,88,999.000,999.0,99.0 +1976,1,3,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.1,-0.6,89,102200,0,0,291,0,0,0,0,0,0,0,120,6.7,10,10,24.1,850,9,999999999,120,0.0720,0,88,999.000,999.0,99.0 +1976,1,3,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.1,-1.1,85,102200,0,0,290,0,0,0,0,0,0,0,130,5.7,10,10,24.1,940,9,999999999,129,0.0720,0,88,999.000,999.0,99.0 +1976,1,3,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.1,-1.1,85,102200,0,0,290,0,0,0,0,0,0,0,130,6.7,10,10,11.3,730,9,999999999,129,0.0720,0,88,999.000,999.0,99.0 +1976,1,3,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.1,-1.1,85,102200,1,177,290,1,0,1,0,0,0,0,140,5.2,10,10,11.3,430,9,999999999,139,0.1300,0,88,999.000,999.0,99.0 +1976,1,3,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.6,-1.1,89,102200,118,1415,288,16,0,16,1900,0,1900,590,130,5.7,10,10,6.4,370,9,999999999,139,0.1300,0,88,999.000,999.0,99.0 +1976,1,3,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.6,-1.1,89,102300,294,1415,288,35,2,34,4100,0,4100,1380,120,6.7,10,10,6.4,430,9,999999999,150,0.1300,0,88,999.000,999.0,99.0 +1976,1,3,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.6,-0.6,92,102300,425,1415,289,59,3,58,7000,100,6900,2430,130,6.2,10,10,6.4,430,9,999999999,150,0.1300,0,88,999.000,999.0,99.0 +1976,1,3,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.1,-0.6,89,102200,501,1415,291,93,1,93,10800,100,10800,3800,120,5.2,10,10,8.0,460,9,999999999,150,0.1300,0,88,999.000,999.0,99.0 +1976,1,3,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.1,-0.6,89,102100,516,1415,291,96,1,96,11200,100,11200,3950,130,6.2,10,10,8.0,490,9,999999999,160,0.1300,0,88,999.000,999.0,99.0 +1976,1,3,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.1,0.0,92,102000,470,1415,291,87,1,87,10100,100,10100,3520,120,7.7,10,10,8.0,460,9,999999999,160,0.1300,0,88,999.000,999.0,99.0 +1976,1,3,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,0.0,89,102000,365,1415,294,64,1,64,7400,0,7400,2500,130,6.7,10,10,12.9,460,9,999999999,170,0.1300,0,88,999.000,999.0,99.0 +1976,1,3,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,0.6,92,102000,210,1415,294,50,1,50,5600,0,5600,1690,130,7.2,10,10,16.1,430,9,999999999,170,0.1300,0,88,999.000,999.0,99.0 +1976,1,3,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,1.1,92,101900,36,861,297,7,0,7,800,0,800,270,140,5.7,10,10,19.3,460,9,999999999,179,0.1300,0,88,999.000,999.0,99.0 +1976,1,3,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,0.6,85,101900,0,0,299,0,0,0,0,0,0,0,120,5.7,10,10,19.3,520,9,999999999,179,0.0720,0,88,999.000,999.0,99.0 +1976,1,3,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,0.6,89,101900,0,0,297,0,0,0,0,0,0,0,120,6.2,10,10,12.9,580,9,999999999,189,0.0720,0,88,999.000,999.0,99.0 +1976,1,3,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,1.1,92,101900,0,0,297,0,0,0,0,0,0,0,130,6.2,10,10,19.3,640,9,999999999,189,0.0720,0,88,999.000,999.0,99.0 +1976,1,3,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,1.7,92,101900,0,0,300,0,0,0,0,0,0,0,130,6.2,10,10,24.1,640,9,999999999,200,0.0720,0,88,999.000,999.0,99.0 +1976,1,3,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,1.7,89,101800,0,0,303,0,0,0,0,0,0,0,120,4.6,10,10,24.1,760,9,999999999,200,0.0720,0,88,999.000,999.0,99.0 +1976,1,3,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,1.7,92,101800,0,0,300,0,0,0,0,0,0,0,130,5.2,10,10,12.9,670,9,999999999,200,0.0720,0,88,999.000,999.0,99.0 +1976,1,3,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,2.2,93,101800,0,0,303,0,0,0,0,0,0,0,130,6.2,10,10,11.3,610,9,999999999,209,0.0720,0,88,999.000,999.0,99.0 +1976,1,4,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,2.2,93,101700,0,0,303,0,0,0,0,0,0,0,130,6.2,10,10,9.7,460,9,999999999,220,0.0720,0,88,999.000,999.0,99.0 +1976,1,4,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,2.2,96,101600,0,0,301,0,0,0,0,0,0,0,130,6.2,10,10,9.7,460,9,999999999,220,0.0720,0,88,999.000,999.0,99.0 +1976,1,4,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,2.2,96,101600,0,0,301,0,0,0,0,0,0,0,130,5.7,10,10,9.7,460,9,999999999,229,0.0720,0,88,999.000,999.0,99.0 +1976,1,4,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,2.2,96,101600,0,0,301,0,0,0,0,0,0,0,140,5.7,10,10,9.7,460,9,999999999,229,0.0720,0,88,999.000,999.0,99.0 +1976,1,4,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,2.2,96,101400,0,0,301,0,0,0,0,0,0,0,130,6.2,10,10,9.7,460,9,999999999,220,0.0720,0,88,999.000,999.0,99.0 +1976,1,4,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,2.2,93,101400,0,0,303,0,0,0,0,0,0,0,130,6.2,10,10,8.0,370,9,999999999,220,0.0720,0,88,999.000,999.0,99.0 +1976,1,4,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,3.3,96,101400,0,0,307,0,0,0,0,0,0,0,130,4.6,10,10,8.0,340,9,999999999,209,0.0720,0,88,999.000,999.0,99.0 +1976,1,4,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,3.9,93,101300,1,177,312,1,0,1,0,0,0,0,140,3.6,10,10,11.3,400,9,999999999,209,0.0670,0,88,999.000,999.0,99.0 +1976,1,4,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,7.2,89,101300,119,1415,334,20,0,20,2300,0,2300,710,210,7.7,10,10,9.7,400,9,999999999,200,0.0670,0,88,999.000,999.0,99.0 +1976,1,4,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,7.2,83,101200,294,1415,339,58,0,58,6600,0,6600,2140,180,11.3,10,10,32.2,490,9,999999999,200,0.0670,0,88,999.000,999.0,99.0 +1976,1,4,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,7.8,89,101300,426,1415,337,83,0,83,9500,0,9500,3260,210,7.7,10,10,6.4,490,9,999999999,189,0.0670,0,88,999.000,999.0,99.0 +1976,1,4,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,8.3,89,101200,503,1415,341,97,1,97,11300,100,11200,3940,210,7.7,10,10,9.7,400,9,999999999,179,0.0670,0,88,999.000,999.0,99.0 +1976,1,4,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,8.3,89,101100,519,1415,341,101,1,101,11700,100,11700,4120,200,10.3,10,10,12.9,460,9,999999999,179,0.0670,0,88,999.000,999.0,99.0 +1976,1,4,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,8.3,89,101100,473,1415,341,88,1,88,10200,100,10200,3560,220,6.2,10,10,12.9,400,9,999999999,170,0.0670,0,88,999.000,999.0,99.0 +1976,1,4,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,8.3,89,101100,368,1415,341,69,1,68,7800,0,7800,2630,220,7.7,10,10,12.9,370,9,999999999,170,0.0670,0,88,999.000,999.0,99.0 +1976,1,4,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,8.3,89,101100,213,1415,341,35,0,35,4000,0,4000,1300,210,8.8,10,10,12.9,370,9,999999999,160,0.0670,0,88,999.000,999.0,99.0 +1976,1,4,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,8.9,93,101100,38,884,341,8,0,8,900,0,900,300,210,6.2,10,10,4.8,460,9,999999999,150,0.0670,0,88,999.000,999.0,99.0 +1976,1,4,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,8.9,93,101100,0,0,341,0,0,0,0,0,0,0,180,6.2,10,10,6.4,370,9,999999999,150,0.0720,0,88,999.000,999.0,99.0 +1976,1,4,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,8.3,86,101100,0,0,343,0,0,0,0,0,0,0,200,4.6,10,10,19.3,1040,9,999999999,139,0.0720,0,88,999.000,999.0,99.0 +1976,1,4,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,8.3,86,101000,0,0,343,0,0,0,0,0,0,0,240,4.1,10,10,19.3,1370,9,999999999,139,0.0720,0,88,999.000,999.0,99.0 +1976,1,4,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,6.1,80,101100,0,0,326,0,0,0,0,0,0,0,290,5.7,9,9,24.1,1490,9,999999999,129,0.0720,0,88,999.000,999.0,99.0 +1976,1,4,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,4.4,83,101100,0,0,294,0,0,0,0,0,0,0,290,4.6,4,4,24.1,77777,9,999999999,129,0.0720,0,88,999.000,999.0,99.0 +1976,1,4,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,3.9,83,101100,0,0,320,0,0,0,0,0,0,0,0,0.0,10,10,24.1,1160,9,999999999,120,0.0720,0,88,999.000,999.0,99.0 +1976,1,4,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,3.3,83,101100,0,0,302,0,0,0,0,0,0,0,30,1.0,8,8,19.3,1040,9,999999999,110,0.0720,0,88,999.000,999.0,99.0 +1976,1,5,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,4.4,93,101000,0,0,316,0,0,0,0,0,0,0,160,1.5,10,10,19.3,580,9,999999999,110,0.0730,0,88,999.000,999.0,99.0 +1976,1,5,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,4.4,93,101000,0,0,307,0,0,0,0,0,0,0,100,3.1,10,9,24.1,1340,9,999999999,100,0.0730,0,88,999.000,999.0,99.0 +1976,1,5,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,4.4,93,101000,0,0,307,0,0,0,0,0,0,0,110,3.6,9,9,24.1,980,9,999999999,100,0.0730,0,88,999.000,999.0,99.0 +1976,1,5,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,3.3,96,101000,0,0,288,0,0,0,0,0,0,0,110,3.6,7,7,24.1,1370,9,999999999,89,0.0730,0,88,999.000,999.0,99.0 +1976,1,5,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,3.3,89,101000,0,0,303,0,0,0,0,0,0,0,0,0.0,9,9,24.1,1680,9,999999999,89,0.0730,0,88,999.000,999.0,99.0 +1976,1,5,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,3.3,93,100900,0,0,309,0,0,0,0,0,0,0,110,3.6,10,10,24.1,1980,9,999999999,89,0.0730,0,88,999.000,999.0,99.0 +1976,1,5,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,3.3,89,100900,0,0,312,0,0,0,0,0,0,0,80,2.1,10,10,24.1,1280,9,999999999,100,0.0730,0,88,999.000,999.0,99.0 +1976,1,5,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,3.3,89,100900,1,177,312,1,0,1,0,0,0,0,120,3.1,10,10,11.3,730,9,999999999,100,0.0880,0,88,999.000,999.0,99.0 +1976,1,5,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,2.8,86,101100,119,1415,311,17,0,17,2000,0,2000,630,250,5.2,10,10,12.9,670,9,999999999,100,0.0880,0,88,999.000,999.0,99.0 +1976,1,5,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,2.2,89,101200,296,1415,306,49,0,49,5700,0,5700,1880,260,5.2,10,10,19.3,670,9,999999999,100,0.0880,0,88,999.000,999.0,99.0 +1976,1,5,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,3.3,86,101400,428,1415,299,204,346,99,21400,30700,12000,1850,240,3.1,8,8,32.2,670,9,999999999,110,0.0880,0,88,999.000,999.0,99.0 +1976,1,5,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,3.3,80,101500,505,1415,304,234,195,164,25300,18600,18600,3760,260,2.6,8,8,32.2,1220,9,999999999,110,0.0880,0,88,999.000,999.0,99.0 +1976,1,5,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,3.9,77,101500,521,1415,310,233,89,200,25500,8600,22300,5070,210,2.6,8,8,32.2,1070,9,999999999,110,0.0880,0,88,999.000,999.0,99.0 +1976,1,5,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,2.8,68,101500,476,1415,311,181,170,124,19900,16100,14400,2820,250,3.6,8,8,32.2,1220,9,999999999,110,0.0880,0,88,999.000,999.0,99.0 +1976,1,5,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,2.2,68,101500,372,1415,323,109,13,106,12100,700,12000,3620,220,7.7,10,10,48.3,1070,9,999999999,120,0.0880,0,88,999.000,999.0,99.0 +1976,1,5,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,2.8,74,101600,217,1415,321,25,2,25,3000,0,3000,980,230,5.7,10,10,19.3,1070,9,999999999,120,0.0880,0,88,999.000,999.0,99.0 +1976,1,5,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,3.3,83,101600,40,908,317,6,1,6,700,0,700,230,220,7.2,10,10,32.2,940,9,999999999,120,0.0880,0,88,999.000,999.0,99.0 +1976,1,5,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,3.3,83,101700,0,0,317,0,0,0,0,0,0,0,180,1.5,10,10,24.1,700,9,999999999,110,0.0730,0,88,999.000,999.0,99.0 +1976,1,5,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,3.9,89,101700,0,0,315,0,0,0,0,0,0,0,210,5.2,10,10,24.1,940,9,999999999,110,0.0730,0,88,999.000,999.0,99.0 +1976,1,5,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,3.3,86,101700,0,0,315,0,0,0,0,0,0,0,210,7.2,10,10,11.3,340,9,999999999,100,0.0730,0,88,999.000,999.0,99.0 +1976,1,5,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,3.3,89,101700,0,0,312,0,0,0,0,0,0,0,220,7.7,10,10,24.1,1520,9,999999999,100,0.0730,0,88,999.000,999.0,99.0 +1976,1,5,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,3.3,89,101800,0,0,312,0,0,0,0,0,0,0,230,7.2,10,10,24.1,1010,9,999999999,89,0.0730,0,88,999.000,999.0,99.0 +1976,1,5,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,2.8,86,101800,0,0,311,0,0,0,0,0,0,0,230,4.6,10,10,24.1,940,9,999999999,89,0.0730,0,88,999.000,999.0,99.0 +1976,1,5,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,1.7,86,101800,0,0,278,0,0,0,0,0,0,0,240,2.6,4,4,24.1,77777,9,999999999,89,0.0730,0,88,999.000,999.0,99.0 +1976,1,6,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,1.7,89,101900,0,0,278,0,0,0,0,0,0,0,0,0.0,6,5,24.1,1980,9,999999999,80,0.0730,0,88,999.000,999.0,99.0 +1976,1,6,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,1.7,86,102000,0,0,291,0,0,0,0,0,0,0,190,2.1,8,8,24.1,1680,9,999999999,80,0.0730,0,88,999.000,999.0,99.0 +1976,1,6,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,2.2,89,102000,0,0,297,0,0,0,0,0,0,0,210,4.1,10,9,24.1,1680,9,999999999,69,0.0730,0,88,999.000,999.0,99.0 +1976,1,6,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,1.7,86,102000,0,0,305,0,0,0,0,0,0,0,200,4.1,10,10,24.1,1830,9,999999999,69,0.0730,0,88,999.000,999.0,99.0 +1976,1,6,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,2.2,89,102100,0,0,306,0,0,0,0,0,0,0,210,4.6,10,10,24.1,1220,9,999999999,69,0.0730,0,88,999.000,999.0,99.0 +1976,1,6,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,1.1,86,102200,0,0,280,0,0,0,0,0,0,0,0,0.0,6,6,24.1,1830,9,999999999,80,0.0730,0,88,999.000,999.0,99.0 +1976,1,6,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,1.7,86,102200,0,0,305,0,0,0,0,0,0,0,190,2.1,10,10,24.1,1220,9,999999999,80,0.0730,0,88,999.000,999.0,99.0 +1976,1,6,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,1.7,86,102300,1,177,297,0,0,0,0,0,0,0,230,2.6,10,9,24.1,1830,9,999999999,80,0.1350,0,88,999.000,999.0,99.0 +1976,1,6,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,1.7,82,102500,120,1415,307,20,3,20,2300,0,2300,720,200,2.1,10,10,32.2,1340,9,999999999,89,0.1350,0,88,999.000,999.0,99.0 +1976,1,6,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,2.2,79,102500,297,1415,298,94,30,88,10300,2500,9800,2140,240,2.6,8,8,32.2,1340,9,999999999,89,0.1350,0,88,999.000,999.0,99.0 +1976,1,6,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,2.8,79,102600,429,1415,301,134,37,123,14700,3400,13700,3220,250,2.6,8,8,32.2,1830,9,999999999,89,0.1350,0,88,999.000,999.0,99.0 +1976,1,6,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,2.2,76,102600,507,1415,300,215,98,180,23600,9400,20200,4640,190,1.5,8,8,32.2,1220,9,999999999,100,0.1350,0,88,999.000,999.0,99.0 +1976,1,6,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,1.7,71,102600,524,1415,302,171,108,131,18800,10500,14900,3020,220,1.5,8,8,32.2,2440,9,999999999,100,0.1350,0,88,999.000,999.0,99.0 +1976,1,6,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,1.7,68,102600,479,1415,320,79,36,67,8800,3300,7600,2010,240,3.1,10,10,32.2,2440,9,999999999,100,0.1350,0,88,999.000,999.0,99.0 +1976,1,6,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,1.7,68,102600,375,1415,320,107,14,103,11900,800,11700,3570,210,2.6,10,10,32.2,1220,9,999999999,110,0.1350,0,88,999.000,999.0,99.0 +1976,1,6,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,1.7,71,102500,220,1415,318,47,3,46,5200,0,5200,1620,220,4.1,10,10,32.2,3660,9,999999999,110,0.1350,0,88,999.000,999.0,99.0 +1976,1,6,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,2.2,74,102500,43,931,318,15,0,15,1700,0,1700,510,220,4.1,10,10,64.4,1160,9,999999999,120,0.1350,0,88,999.000,999.0,99.0 +1976,1,6,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,2.2,76,102500,0,0,316,0,0,0,0,0,0,0,200,5.2,10,10,24.1,1680,9,999999999,129,0.0730,0,88,999.000,999.0,99.0 +1976,1,6,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,2.2,76,102400,0,0,316,0,0,0,0,0,0,0,210,6.2,10,10,24.1,1010,9,999999999,139,0.0730,0,88,999.000,999.0,99.0 +1976,1,6,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,3.3,83,102400,0,0,317,0,0,0,0,0,0,0,210,5.7,10,10,12.9,460,9,999999999,150,0.0730,0,88,999.000,999.0,99.0 +1976,1,6,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,2.8,86,102400,0,0,311,0,0,0,0,0,0,0,210,5.2,10,10,12.9,430,9,999999999,160,0.0730,0,88,999.000,999.0,99.0 +1976,1,6,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,2.2,86,102400,0,0,308,0,0,0,0,0,0,0,200,3.1,10,10,12.9,430,9,999999999,160,0.0730,0,88,999.000,999.0,99.0 +1976,1,6,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,2.2,89,102400,0,0,306,0,0,0,0,0,0,0,170,4.1,10,10,12.9,370,9,999999999,170,0.0730,0,88,999.000,999.0,99.0 +1976,1,6,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,1.7,92,102200,0,0,300,0,0,0,0,0,0,0,130,4.1,10,10,12.9,210,9,999999999,179,0.0730,0,88,999.000,999.0,99.0 +1976,1,7,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,1.7,96,102100,0,0,298,0,0,0,0,0,0,0,120,5.2,10,10,8.0,340,9,999999999,189,0.0730,0,88,999.000,999.0,99.0 +1976,1,7,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,2.2,93,102000,0,0,303,0,0,0,0,0,0,0,130,4.6,10,10,9.7,370,9,999999999,200,0.0730,0,88,999.000,999.0,99.0 +1976,1,7,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,2.2,93,102000,0,0,303,0,0,0,0,0,0,0,130,4.1,10,10,9.7,370,9,999999999,209,0.0730,0,88,999.000,999.0,99.0 +1976,1,7,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,1.7,96,101900,0,0,298,0,0,0,0,0,0,0,120,5.2,10,10,4.8,370,9,999999999,220,0.0730,0,88,999.000,999.0,99.0 +1976,1,7,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,2.2,96,101900,0,0,301,0,0,0,0,0,0,0,120,5.2,10,10,9.7,370,9,999999999,220,0.0730,0,88,999.000,999.0,99.0 +1976,1,7,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,2.2,93,101800,0,0,303,0,0,0,0,0,0,0,130,6.2,10,10,9.7,340,9,999999999,220,0.0730,0,88,999.000,999.0,99.0 +1976,1,7,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,2.8,96,101800,0,0,304,0,0,0,0,0,0,0,130,6.2,10,10,3.2,340,9,999999999,220,0.0730,0,88,999.000,999.0,99.0 +1976,1,7,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,2.8,96,101700,1,177,304,1,0,1,0,0,0,0,130,4.1,10,10,4.8,90,9,999999999,220,0.0820,0,88,999.000,999.0,99.0 +1976,1,7,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,2.8,93,101800,121,1415,306,18,1,17,2000,0,2000,630,130,6.7,10,10,6.4,310,9,999999999,220,0.0820,0,88,999.000,999.0,99.0 +1976,1,7,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,2.8,93,101700,298,1415,306,50,1,50,5800,0,5800,1920,120,7.7,10,10,6.4,310,9,999999999,220,0.0820,0,88,999.000,999.0,99.0 +1976,1,7,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,3.3,93,101700,431,1415,309,77,3,76,8900,200,8900,3050,120,5.7,10,10,6.4,340,9,999999999,209,0.0820,0,88,999.000,999.0,99.0 +1976,1,7,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,3.3,93,101500,509,1415,309,89,2,88,10400,100,10300,3670,130,7.7,10,10,6.4,370,9,999999999,209,0.0820,0,88,999.000,999.0,99.0 +1976,1,7,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,3.3,93,101400,527,1415,309,112,1,112,12900,100,12900,4490,130,5.2,10,10,6.4,310,9,999999999,209,0.0820,0,88,999.000,999.0,99.0 +1976,1,7,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,3.9,93,101300,482,1415,312,94,0,94,10800,0,10800,3780,130,7.2,10,10,2.0,240,9,999999999,209,0.0820,0,88,999.000,999.0,99.0 +1976,1,7,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,4.4,93,101300,379,1415,316,64,1,64,7400,0,7400,2540,130,5.2,10,10,6.4,240,9,999999999,209,0.0820,0,88,999.000,999.0,99.0 +1976,1,7,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,5.0,96,101400,224,1415,316,35,1,35,4100,0,4100,1320,120,4.6,10,10,11.3,310,9,999999999,209,0.0820,0,88,999.000,999.0,99.0 +1976,1,7,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,5.6,93,101300,45,979,322,16,0,16,1800,0,1800,540,120,5.7,10,10,16.1,340,9,999999999,200,0.0820,0,88,999.000,999.0,99.0 +1976,1,7,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,5.0,93,101300,0,0,319,0,0,0,0,0,0,0,120,6.7,10,10,19.3,310,9,999999999,200,0.0730,0,88,999.000,999.0,99.0 +1976,1,7,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,5.0,93,101200,0,0,319,0,0,0,0,0,0,0,130,5.2,10,10,19.3,240,9,999999999,189,0.0730,0,88,999.000,999.0,99.0 +1976,1,7,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,5.6,96,101200,0,0,319,0,0,0,0,0,0,0,90,5.2,10,10,11.3,270,9,999999999,189,0.0730,0,88,999.000,999.0,99.0 +1976,1,7,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,7.2,96,101200,0,0,329,0,0,0,0,0,0,0,140,3.6,10,10,12.9,270,9,999999999,179,0.0730,0,88,999.000,999.0,99.0 +1976,1,7,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,9.4,90,101200,0,0,347,0,0,0,0,0,0,0,190,4.1,10,10,24.1,340,9,999999999,179,0.0730,0,88,999.000,999.0,99.0 +1976,1,7,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,9.4,90,101200,0,0,347,0,0,0,0,0,0,0,200,3.6,10,10,24.1,340,9,999999999,170,0.0730,0,88,999.000,999.0,99.0 +1976,1,7,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,6.1,93,101200,0,0,325,0,0,0,0,0,0,0,110,4.1,10,10,24.1,1340,9,999999999,160,0.0730,0,88,999.000,999.0,99.0 +1976,1,8,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,4.4,93,101200,0,0,316,0,0,0,0,0,0,0,110,6.2,10,10,24.1,910,9,999999999,160,0.0730,0,88,999.000,999.0,99.0 +1976,1,8,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,3.9,93,101200,0,0,312,0,0,0,0,0,0,0,120,6.7,10,10,24.1,3350,9,999999999,150,0.0730,0,88,999.000,999.0,99.0 +1976,1,8,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,3.9,93,101300,0,0,312,0,0,0,0,0,0,0,100,4.1,10,10,24.1,3350,9,999999999,150,0.0730,0,88,999.000,999.0,99.0 +1976,1,8,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,4.4,93,101300,0,0,316,0,0,0,0,0,0,0,100,2.6,10,10,24.1,1220,9,999999999,139,0.0730,0,88,999.000,999.0,99.0 +1976,1,8,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,6.1,83,101300,0,0,333,0,0,0,0,0,0,0,190,3.6,10,10,24.1,1830,9,999999999,139,0.0730,0,88,999.000,999.0,99.0 +1976,1,8,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,5.6,80,101200,0,0,332,0,0,0,0,0,0,0,190,4.1,10,10,24.1,1680,9,999999999,139,0.0730,0,88,999.000,999.0,99.0 +1976,1,8,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,4.4,77,101300,0,0,299,0,0,0,0,0,0,0,190,3.1,4,4,24.1,77777,9,999999999,139,0.0730,0,88,999.000,999.0,99.0 +1976,1,8,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,5.6,83,101300,2,177,329,1,0,1,0,0,0,0,110,2.6,10,10,24.1,580,9,999999999,139,0.0610,0,88,999.000,999.0,99.0 +1976,1,8,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,5.6,80,101300,122,1415,332,31,1,31,3400,0,3400,990,170,3.6,10,10,32.2,1070,9,999999999,139,0.0610,0,88,999.000,999.0,99.0 +1976,1,8,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,5.6,80,101400,300,1415,332,101,1,101,11000,0,11000,3080,200,3.6,10,10,32.2,1680,9,999999999,139,0.0610,0,88,999.000,999.0,99.0 +1976,1,8,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,5.6,80,101400,433,1415,332,141,0,141,15500,0,15500,4690,240,3.1,10,10,32.2,1040,9,999999999,139,0.0610,0,88,999.000,999.0,99.0 +1976,1,8,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,6.1,77,101300,512,1415,338,170,1,170,18900,100,18800,5820,200,5.2,10,10,32.2,940,9,999999999,139,0.0610,0,88,999.000,999.0,99.0 +1976,1,8,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,5.6,74,101200,530,1415,338,179,1,179,19900,100,19800,6140,210,5.2,10,10,32.2,940,9,999999999,139,0.0610,0,88,999.000,999.0,99.0 +1976,1,8,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,5.6,74,101200,486,1415,338,173,0,173,19000,0,19000,5650,200,6.2,10,10,32.2,1040,9,999999999,139,0.0610,0,88,999.000,999.0,99.0 +1976,1,8,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,6.1,80,101200,383,1415,326,109,36,99,11900,3200,11100,2590,200,4.6,10,9,32.2,640,9,999999999,139,0.0610,0,88,999.000,999.0,99.0 +1976,1,8,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,6.1,83,101200,228,1415,317,60,38,54,6600,2900,6100,1340,190,6.2,9,8,32.2,1220,9,999999999,139,0.0610,0,88,999.000,999.0,99.0 +1976,1,8,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,3.9,83,101300,48,1002,320,8,1,8,1000,0,1000,300,240,4.1,10,10,24.1,850,9,999999999,139,0.0610,0,88,999.000,999.0,99.0 +1976,1,8,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,3.9,86,101300,0,0,317,0,0,0,0,0,0,0,200,5.2,10,10,24.1,2290,9,999999999,129,0.0730,0,88,999.000,999.0,99.0 +1976,1,8,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,5.0,89,101300,0,0,321,0,0,0,0,0,0,0,200,5.7,10,10,19.3,1520,9,999999999,129,0.0730,0,88,999.000,999.0,99.0 +1976,1,8,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,4.4,86,101300,0,0,321,0,0,0,0,0,0,0,220,6.2,10,10,24.1,1040,9,999999999,129,0.0730,0,88,999.000,999.0,99.0 +1976,1,8,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,3.9,86,101300,0,0,317,0,0,0,0,0,0,0,230,4.1,10,10,24.1,1220,9,999999999,120,0.0730,0,88,999.000,999.0,99.0 +1976,1,8,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,3.9,86,101300,0,0,317,0,0,0,0,0,0,0,180,4.1,10,10,24.1,850,9,999999999,120,0.0730,0,88,999.000,999.0,99.0 +1976,1,8,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,4.4,86,101400,0,0,321,0,0,0,0,0,0,0,180,5.2,10,10,24.1,850,9,999999999,120,0.0730,0,88,999.000,999.0,99.0 +1976,1,8,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,3.3,86,101400,0,0,287,0,0,0,0,0,0,0,210,6.2,4,4,24.1,77777,9,999999999,110,0.0730,0,88,999.000,999.0,99.0 +1976,1,9,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,3.3,86,101300,0,0,282,0,0,0,0,0,0,0,220,5.2,2,2,24.1,77777,9,999999999,110,0.0730,0,88,999.000,999.0,99.0 +1976,1,9,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,3.3,86,101400,0,0,299,0,0,0,0,0,0,0,210,6.7,8,8,24.1,1680,9,999999999,110,0.0730,0,88,999.000,999.0,99.0 +1976,1,9,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,3.3,86,101400,0,0,295,0,0,0,0,0,0,0,220,2.6,7,7,24.1,1370,9,999999999,100,0.0730,0,88,999.000,999.0,99.0 +1976,1,9,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,2.2,79,101500,0,0,294,0,0,0,0,0,0,0,0,0.0,7,7,24.1,1370,9,999999999,100,0.0730,0,88,999.000,999.0,99.0 +1976,1,9,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,2.8,86,101500,0,0,311,0,0,0,0,0,0,0,250,2.1,10,10,24.1,940,9,999999999,100,0.0730,0,88,999.000,999.0,99.0 +1976,1,9,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,2.2,93,101500,0,0,268,0,0,0,0,0,0,0,0,0.0,1,1,24.1,77777,9,999999999,100,0.0730,0,88,999.000,999.0,99.0 +1976,1,9,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,2.2,93,101600,0,0,271,0,0,0,0,0,0,0,0,0.0,2,2,24.1,77777,9,999999999,100,0.0730,0,88,999.000,999.0,99.0 +1976,1,9,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,1.7,92,101600,2,200,269,5,21,2,0,0,0,0,70,1.5,2,2,19.3,77777,9,999999999,100,0.0300,0,88,999.000,999.0,99.0 +1976,1,9,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,2.2,93,101700,123,1415,268,53,326,24,5400,17200,3900,430,140,1.5,1,1,19.3,77777,9,999999999,100,0.0300,0,88,999.000,999.0,99.0 +1976,1,9,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,3.3,86,101800,301,1415,278,168,626,33,17700,51900,6500,750,140,1.5,1,1,16.1,77777,9,999999999,100,0.0300,0,88,999.000,999.0,99.0 +1976,1,9,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,3.9,83,101800,436,1415,292,183,225,113,19400,20500,13100,2240,210,3.1,4,4,19.3,77777,9,999999999,110,0.0300,0,88,999.000,999.0,99.0 +1976,1,9,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,3.3,80,101800,515,1415,299,200,162,141,21900,15600,16100,3250,170,2.6,7,7,24.1,460,9,999999999,110,0.0300,0,88,999.000,999.0,99.0 +1976,1,9,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,3.3,77,101700,533,1415,291,334,558,124,35200,52800,15300,2400,200,3.6,3,3,24.1,77777,9,999999999,110,0.0300,0,88,999.000,999.0,99.0 +1976,1,9,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,2.8,76,101800,489,1415,295,225,283,127,24000,26900,14700,2560,210,1.5,7,6,32.2,2440,9,999999999,110,0.0300,0,88,999.000,999.0,99.0 +1976,1,9,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,2.8,76,101800,386,1415,299,160,142,121,17300,12500,13800,2680,350,2.1,10,7,32.2,2440,9,999999999,110,0.0300,0,88,999.000,999.0,99.0 +1976,1,9,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,2.8,74,101800,232,1415,301,79,103,62,8600,7400,7400,1320,0,0.0,10,7,32.2,7620,9,999999999,110,0.0300,0,88,999.000,999.0,99.0 +1976,1,9,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,2.2,71,101800,50,1026,300,25,29,22,2600,1100,2500,450,0,0.0,10,7,32.2,3960,9,999999999,110,0.0300,0,88,999.000,999.0,99.0 +1976,1,9,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,2.2,76,101900,0,0,316,0,0,0,0,0,0,0,190,3.1,10,10,24.1,1040,9,999999999,110,0.0730,0,88,999.000,999.0,99.0 +1976,1,9,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,3.3,86,101900,0,0,315,0,0,0,0,0,0,0,190,3.1,10,10,24.1,820,9,999999999,110,0.0730,0,88,999.000,999.0,99.0 +1976,1,9,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,3.3,86,102000,0,0,289,0,0,0,0,0,0,0,180,3.6,6,5,24.1,1520,9,999999999,120,0.0730,0,88,999.000,999.0,99.0 +1976,1,9,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,2.8,86,102000,0,0,284,0,0,0,0,0,0,0,200,3.1,4,4,24.1,77777,9,999999999,120,0.0730,0,88,999.000,999.0,99.0 +1976,1,9,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,2.8,83,102100,0,0,305,0,0,0,0,0,0,0,140,2.1,9,9,24.1,2290,9,999999999,120,0.0730,0,88,999.000,999.0,99.0 +1976,1,9,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,2.8,83,102100,0,0,314,0,0,0,0,0,0,0,190,5.2,10,10,24.1,2740,9,999999999,120,0.0730,0,88,999.000,999.0,99.0 +1976,1,9,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,2.8,83,102000,0,0,314,0,0,0,0,0,0,0,200,5.2,10,10,24.1,2740,9,999999999,120,0.0730,0,88,999.000,999.0,99.0 +1976,1,10,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,2.2,76,102000,0,0,316,0,0,0,0,0,0,0,200,5.2,10,10,24.1,1830,9,999999999,129,0.0730,0,88,999.000,999.0,99.0 +1976,1,10,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,2.2,76,102100,0,0,316,0,0,0,0,0,0,0,210,5.2,10,10,24.1,1340,9,999999999,129,0.0730,0,88,999.000,999.0,99.0 +1976,1,10,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,2.2,74,102100,0,0,318,0,0,0,0,0,0,0,200,5.7,10,10,24.1,1280,9,999999999,129,0.0730,0,88,999.000,999.0,99.0 +1976,1,10,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,2.2,74,102000,0,0,318,0,0,0,0,0,0,0,190,7.7,10,10,24.1,1370,9,999999999,129,0.0730,0,88,999.000,999.0,99.0 +1976,1,10,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,1.7,71,102000,0,0,318,0,0,0,0,0,0,0,200,8.2,10,10,24.1,1370,9,999999999,129,0.0730,0,88,999.000,999.0,99.0 +1976,1,10,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,1.1,68,102000,0,0,317,0,0,0,0,0,0,0,210,8.2,10,10,24.1,2130,9,999999999,129,0.0730,0,88,999.000,999.0,99.0 +1976,1,10,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,1.7,71,101900,0,0,318,0,0,0,0,0,0,0,200,9.3,10,10,24.1,1980,9,999999999,129,0.0730,0,88,999.000,999.0,99.0 +1976,1,10,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,1.7,71,101900,2,200,318,1,0,1,0,0,0,0,220,7.7,10,10,24.1,3050,9,999999999,129,0.0320,0,88,999.000,999.0,99.0 +1976,1,10,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,2.2,74,101900,125,1415,318,20,10,19,2200,600,2100,490,210,7.7,10,10,24.1,1340,9,999999999,129,0.0320,0,88,999.000,999.0,99.0 +1976,1,10,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,2.8,76,101900,303,1415,319,46,6,45,5400,200,5400,1770,210,10.3,10,10,24.1,730,9,999999999,139,0.0320,0,88,999.000,999.0,99.0 +1976,1,10,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,2.8,76,102000,438,1415,319,81,8,78,9300,400,9200,3140,210,10.3,10,10,32.2,700,9,999999999,139,0.0320,0,88,999.000,999.0,99.0 +1976,1,10,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,2.8,74,101900,518,1415,321,90,2,90,10600,100,10500,3760,200,9.3,10,10,32.2,760,9,999999999,139,0.0320,0,88,999.000,999.0,99.0 +1976,1,10,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,2.8,71,101800,536,1415,324,107,1,106,12300,100,12300,4340,200,8.2,10,10,48.3,760,9,999999999,139,0.0320,0,88,999.000,999.0,99.0 +1976,1,10,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,2.8,68,101700,493,1415,326,194,2,194,21200,200,21200,6030,200,8.2,10,10,48.3,760,9,999999999,139,0.0320,0,88,999.000,999.0,99.0 +1976,1,10,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,2.8,68,101700,390,1415,326,115,4,114,12800,200,12700,3890,190,8.2,10,10,48.3,790,9,999999999,139,0.0320,0,88,999.000,999.0,99.0 +1976,1,10,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,3.3,71,101600,236,1415,327,76,1,76,8300,0,8300,2300,200,7.7,10,10,48.3,760,9,999999999,139,0.0320,0,88,999.000,999.0,99.0 +1976,1,10,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,3.9,74,101500,53,1049,328,21,0,21,2300,0,2300,670,200,8.8,10,10,24.1,640,9,999999999,139,0.0320,0,88,999.000,999.0,99.0 +1976,1,10,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,3.9,74,101400,0,0,319,0,0,0,0,0,0,0,190,10.3,10,9,24.1,580,9,999999999,139,0.0730,0,88,999.000,999.0,99.0 +1976,1,10,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,5.0,80,101400,0,0,329,0,0,0,0,0,0,0,200,7.2,10,10,24.1,490,9,999999999,139,0.0730,0,88,999.000,999.0,99.0 +1976,1,10,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,5.0,80,101400,0,0,305,0,0,0,0,0,0,0,210,7.7,8,6,24.1,550,9,999999999,139,0.0730,0,88,999.000,999.0,99.0 +1976,1,10,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,5.0,77,101400,0,0,332,0,0,0,0,0,0,0,230,8.8,10,10,24.1,490,9,999999999,139,0.0730,0,88,999.000,999.0,99.0 +1976,1,10,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,6.1,86,101300,0,0,330,0,0,0,0,0,0,0,210,7.7,10,10,19.3,490,9,999999999,150,0.0730,0,88,999.000,999.0,99.0 +1976,1,10,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,6.1,86,101300,0,0,330,0,0,0,0,0,0,0,220,9.3,10,10,19.3,460,9,999999999,150,0.0730,0,88,999.000,999.0,99.0 +1976,1,10,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,6.7,89,101300,0,0,331,0,0,0,0,0,0,0,230,8.2,10,10,8.0,370,9,999999999,150,0.0730,0,88,999.000,999.0,99.0 +1976,1,11,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,6.1,86,101300,0,0,330,0,0,0,0,0,0,0,250,7.7,10,10,11.3,400,9,999999999,150,0.0730,0,88,999.000,999.0,99.0 +1976,1,11,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,5.6,89,101300,0,0,324,0,0,0,0,0,0,0,250,3.1,10,10,11.3,1040,9,999999999,150,0.0730,0,88,999.000,999.0,99.0 +1976,1,11,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,4.4,83,101300,0,0,323,0,0,0,0,0,0,0,250,4.1,10,10,24.1,1040,9,999999999,150,0.0730,0,88,999.000,999.0,99.0 +1976,1,11,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,4.4,86,101400,0,0,321,0,0,0,0,0,0,0,310,3.1,10,10,24.1,1830,9,999999999,150,0.0730,0,88,999.000,999.0,99.0 +1976,1,11,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,5.0,93,101400,0,0,319,0,0,0,0,0,0,0,350,2.1,10,10,11.3,730,9,999999999,150,0.0730,0,88,999.000,999.0,99.0 +1976,1,11,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,4.4,89,101400,0,0,318,0,0,0,0,0,0,0,250,1.5,10,10,24.1,670,9,999999999,139,0.0730,0,88,999.000,999.0,99.0 +1976,1,11,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,2.8,86,101500,0,0,288,0,0,0,0,0,0,0,330,2.1,6,6,24.1,2740,9,999999999,139,0.0730,0,88,999.000,999.0,99.0 +1976,1,11,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,2.2,86,101600,2,200,285,4,11,2,0,0,0,0,160,2.6,6,6,24.1,3050,9,999999999,129,0.0320,0,88,999.000,999.0,99.0 +1976,1,11,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,2.8,86,101600,126,1414,281,55,345,24,5600,18400,4000,430,220,6.2,3,3,32.2,77777,9,999999999,129,0.0320,0,88,999.000,999.0,99.0 +1976,1,11,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,3.9,83,101700,305,1414,287,120,266,63,12700,20700,8200,1140,210,5.7,2,2,32.2,77777,9,999999999,129,0.0320,0,88,999.000,999.0,99.0 +1976,1,11,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,3.9,74,101800,441,1414,296,205,444,66,21400,39900,8900,1270,190,6.2,3,3,32.2,77777,9,999999999,120,0.0320,0,88,999.000,999.0,99.0 +1976,1,11,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,3.3,68,101700,521,1414,314,151,58,129,16500,5500,14500,3650,190,5.7,8,8,32.2,980,9,999999999,120,0.0320,0,88,999.000,999.0,99.0 +1976,1,11,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,3.3,68,101600,540,1414,321,191,62,167,20900,6000,18600,4540,200,5.2,9,9,32.2,980,9,999999999,110,0.0320,0,88,999.000,999.0,99.0 +1976,1,11,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,2.2,66,101500,497,1414,326,151,7,148,16800,500,16600,5270,220,6.7,10,10,32.2,1340,9,999999999,110,0.0320,0,88,999.000,999.0,99.0 +1976,1,11,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,3.3,80,101600,395,1414,320,72,10,69,8300,500,8200,2730,230,8.2,10,10,11.3,730,9,999999999,100,0.0320,0,88,999.000,999.0,99.0 +1976,1,11,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,2.2,79,101600,241,1414,305,66,48,58,7300,3700,6600,1440,0,0.0,9,9,32.2,1370,9,999999999,100,0.0320,0,88,999.000,999.0,99.0 +1976,1,11,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,2.2,79,101600,56,1073,298,20,13,19,2200,700,2100,450,180,2.1,10,8,32.2,2130,9,999999999,100,0.0320,0,88,999.000,999.0,99.0 +1976,1,11,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,2.2,79,101500,0,0,298,0,0,0,0,0,0,0,180,2.6,8,8,24.1,1340,9,999999999,100,0.0730,0,88,999.000,999.0,99.0 +1976,1,11,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,2.2,86,101500,0,0,283,0,0,0,0,0,0,0,190,4.1,6,5,24.1,2740,9,999999999,89,0.0730,0,88,999.000,999.0,99.0 +1976,1,11,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,2.2,82,101500,0,0,311,0,0,0,0,0,0,0,170,4.1,10,10,24.1,1280,9,999999999,89,0.0730,0,88,999.000,999.0,99.0 +1976,1,11,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,2.2,82,101500,0,0,311,0,0,0,0,0,0,0,220,4.1,10,10,24.1,490,9,999999999,89,0.0730,0,88,999.000,999.0,99.0 +1976,1,11,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,2.2,86,101500,0,0,308,0,0,0,0,0,0,0,160,4.1,10,10,24.1,2740,9,999999999,89,0.0730,0,88,999.000,999.0,99.0 +1976,1,11,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,2.2,82,101400,0,0,311,0,0,0,0,0,0,0,180,4.1,10,10,11.3,850,9,999999999,89,0.0730,0,88,999.000,999.0,99.0 +1976,1,11,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,2.8,86,101300,0,0,311,0,0,0,0,0,0,0,210,4.1,10,10,24.1,460,9,999999999,89,0.0730,0,88,999.000,999.0,99.0 +1976,1,12,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,2.2,86,101200,0,0,308,0,0,0,0,0,0,0,230,7.7,10,10,16.1,430,9,999999999,89,0.0740,0,88,999.000,999.0,99.0 +1976,1,12,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,2.2,89,101300,0,0,306,0,0,0,0,0,0,0,250,3.6,10,10,24.1,550,9,999999999,80,0.0740,0,88,999.000,999.0,99.0 +1976,1,12,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,1.7,89,101400,0,0,303,0,0,0,0,0,0,0,220,3.6,10,10,16.1,550,9,999999999,80,0.0740,0,88,999.000,999.0,99.0 +1976,1,12,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,1.7,92,101500,0,0,300,0,0,0,0,0,0,0,230,2.1,10,10,24.1,1160,9,999999999,80,0.0740,0,88,999.000,999.0,99.0 +1976,1,12,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,2.2,93,101500,0,0,303,0,0,0,0,0,0,0,0,0.0,10,10,19.3,400,9,999999999,80,0.0740,0,88,999.000,999.0,99.0 +1976,1,12,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,1.1,89,101600,0,0,273,0,0,0,0,0,0,0,210,2.1,4,4,24.1,77777,9,999999999,80,0.0740,0,88,999.000,999.0,99.0 +1976,1,12,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,1.1,89,101700,0,0,300,0,0,0,0,0,0,0,0,0.0,10,10,24.1,1100,9,999999999,89,0.0740,0,88,999.000,999.0,99.0 +1976,1,12,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,1.1,86,101700,2,224,280,1,2,1,0,0,0,0,180,2.1,6,6,24.1,980,9,999999999,89,0.0890,0,88,999.000,999.0,99.0 +1976,1,12,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,1.7,89,101900,128,1414,288,33,20,31,3600,1300,3500,740,210,5.2,8,8,32.2,940,9,999999999,89,0.0890,0,88,999.000,999.0,99.0 +1976,1,12,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,2.8,86,102000,308,1414,296,97,68,82,10500,5500,9300,1780,220,4.6,8,8,32.2,1370,9,999999999,89,0.0890,0,88,999.000,999.0,99.0 +1976,1,12,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,3.3,83,102100,443,1414,302,133,28,124,14600,2600,13700,3290,220,6.2,8,8,32.2,3050,9,999999999,89,0.0890,0,88,999.000,999.0,99.0 +1976,1,12,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,2.8,74,102100,524,1414,312,175,52,156,19200,5000,17400,4250,230,6.7,10,9,32.2,1520,9,999999999,89,0.0890,0,88,999.000,999.0,99.0 +1976,1,12,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,2.2,66,102100,543,1414,294,313,482,127,32900,45800,15200,2470,220,5.2,10,3,32.2,77777,9,999999999,89,0.0890,0,88,999.000,999.0,99.0 +1976,1,12,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,0.6,61,102100,501,1414,291,292,474,125,30600,44100,14900,2410,230,5.2,10,3,32.2,77777,9,999999999,100,0.0890,0,88,999.000,999.0,99.0 +1976,1,12,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,0.0,60,102200,399,1414,295,169,222,107,18000,19600,12400,2120,230,4.1,10,6,32.2,7620,9,999999999,100,0.0890,0,88,999.000,999.0,99.0 +1976,1,12,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,0.6,63,102200,245,1414,303,75,60,65,8200,4400,7400,1390,230,2.6,10,8,32.2,7620,9,999999999,100,0.0890,0,88,999.000,999.0,99.0 +1976,1,12,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,1.7,71,102200,60,1096,318,6,1,5,600,0,600,200,200,3.6,10,10,24.1,760,9,999999999,100,0.0890,0,88,999.000,999.0,99.0 +1976,1,12,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,2.2,86,102200,0,0,308,0,0,0,0,0,0,0,210,3.6,10,10,24.1,580,9,999999999,110,0.0740,0,88,999.000,999.0,99.0 +1976,1,12,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,2.2,86,102200,0,0,299,0,0,0,0,0,0,0,130,2.6,9,9,24.1,1220,9,999999999,110,0.0740,0,88,999.000,999.0,99.0 +1976,1,12,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,2.8,93,102300,0,0,298,0,0,0,0,0,0,0,120,4.1,9,9,24.1,1220,9,999999999,120,0.0740,0,88,999.000,999.0,99.0 +1976,1,12,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,2.8,93,102300,0,0,306,0,0,0,0,0,0,0,120,1.5,10,10,24.1,700,9,999999999,120,0.0740,0,88,999.000,999.0,99.0 +1976,1,12,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,2.2,89,102400,0,0,291,0,0,0,0,0,0,0,130,3.6,10,8,24.1,7620,9,999999999,129,0.0740,0,88,999.000,999.0,99.0 +1976,1,12,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,2.8,93,102300,0,0,306,0,0,0,0,0,0,0,140,4.6,10,10,24.1,640,9,999999999,129,0.0740,0,88,999.000,999.0,99.0 +1976,1,12,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,2.2,89,102400,0,0,291,0,0,0,0,0,0,0,130,3.6,10,8,24.1,1830,9,999999999,129,0.0740,0,88,999.000,999.0,99.0 +1976,1,13,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,2.2,89,102200,0,0,306,0,0,0,0,0,0,0,150,4.1,10,10,24.1,1280,9,999999999,139,0.0740,0,88,999.000,999.0,99.0 +1976,1,13,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,2.2,93,102200,0,0,284,0,0,0,0,0,0,0,120,3.6,10,7,24.1,3350,9,999999999,139,0.0740,0,88,999.000,999.0,99.0 +1976,1,13,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,2.2,93,102200,0,0,303,0,0,0,0,0,0,0,130,2.6,10,10,24.1,2130,9,999999999,150,0.0740,0,88,999.000,999.0,99.0 +1976,1,13,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,2.2,93,102300,0,0,303,0,0,0,0,0,0,0,120,3.6,10,10,24.1,1400,9,999999999,150,0.0740,0,88,999.000,999.0,99.0 +1976,1,13,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,2.2,93,102200,0,0,303,0,0,0,0,0,0,0,130,4.6,10,10,16.1,1160,9,999999999,150,0.0740,0,88,999.000,999.0,99.0 +1976,1,13,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,2.2,93,102200,0,0,303,0,0,0,0,0,0,0,120,6.2,10,10,11.3,700,9,999999999,150,0.0740,0,88,999.000,999.0,99.0 +1976,1,13,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,1.7,100,102100,0,0,296,0,0,0,0,0,0,0,120,5.7,10,10,24.1,730,9,999999999,150,0.0740,0,88,999.000,999.0,99.0 +1976,1,13,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,1.7,89,102100,2,224,303,0,0,0,0,0,0,0,140,4.6,10,10,24.1,790,9,999999999,139,0.1560,0,88,999.000,999.0,99.0 +1976,1,13,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,1.7,86,102100,130,1414,305,15,2,14,1700,0,1700,540,120,4.6,10,10,12.9,640,9,999999999,139,0.1560,0,88,999.000,999.0,99.0 +1976,1,13,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,2.2,89,102200,310,1414,306,33,1,33,4000,0,4000,1360,120,5.2,10,10,6.4,580,9,999999999,139,0.1560,0,88,999.000,999.0,99.0 +1976,1,13,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,2.2,89,102100,446,1414,306,61,6,59,7200,300,7100,2510,130,6.2,10,10,8.0,640,9,999999999,139,0.1560,0,88,999.000,999.0,99.0 +1976,1,13,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,2.2,86,102000,527,1414,308,97,2,96,11300,100,11200,3990,120,6.7,10,10,9.7,460,9,999999999,139,0.1560,0,88,999.000,999.0,99.0 +1976,1,13,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,2.8,89,102000,547,1414,309,113,5,111,13000,300,12900,4540,120,6.2,10,10,6.4,460,9,999999999,139,0.1560,0,88,999.000,999.0,99.0 +1976,1,13,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,3.3,93,102000,505,1414,309,89,2,88,10300,100,10300,3650,120,5.7,10,10,2.4,430,9,999999999,129,0.1560,0,88,999.000,999.0,99.0 +1976,1,13,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,2.8,89,102000,403,1414,309,114,2,113,12700,100,12600,3940,130,6.2,10,10,9.7,430,9,999999999,129,0.1560,0,88,999.000,999.0,99.0 +1976,1,13,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,2.8,89,101900,250,1414,309,59,0,59,6600,0,6600,2030,140,5.2,10,10,8.0,400,9,999999999,129,0.1560,0,88,999.000,999.0,99.0 +1976,1,13,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,2.8,93,101900,63,1143,306,11,0,11,1300,0,1300,410,140,7.2,10,10,6.4,370,9,999999999,139,0.1560,0,88,999.000,999.0,99.0 +1976,1,13,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,2.8,93,101800,0,0,306,0,0,0,0,0,0,0,130,7.2,10,10,4.8,370,9,999999999,150,0.0740,0,88,999.000,999.0,99.0 +1976,1,13,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,2.8,93,101800,0,0,306,0,0,0,0,0,0,0,130,7.2,10,10,6.4,460,9,999999999,150,0.0740,0,88,999.000,999.0,99.0 +1976,1,13,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,2.8,93,101700,0,0,306,0,0,0,0,0,0,0,130,7.2,10,10,11.3,520,9,999999999,160,0.0740,0,88,999.000,999.0,99.0 +1976,1,13,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,2.8,93,101700,0,0,306,0,0,0,0,0,0,0,130,7.2,10,10,11.3,460,9,999999999,170,0.0740,0,88,999.000,999.0,99.0 +1976,1,13,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,3.3,93,101600,0,0,309,0,0,0,0,0,0,0,130,7.2,10,10,16.1,460,9,999999999,179,0.0740,0,88,999.000,999.0,99.0 +1976,1,13,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,3.3,89,101600,0,0,312,0,0,0,0,0,0,0,130,7.2,10,10,11.3,460,9,999999999,179,0.0740,0,88,999.000,999.0,99.0 +1976,1,13,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,3.9,93,101500,0,0,312,0,0,0,0,0,0,0,130,7.7,10,10,11.3,460,9,999999999,189,0.0740,0,88,999.000,999.0,99.0 +1976,1,14,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,4.4,93,101500,0,0,316,0,0,0,0,0,0,0,130,6.7,10,10,16.1,520,9,999999999,200,0.0740,0,88,999.000,999.0,99.0 +1976,1,14,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,5.0,93,101400,0,0,319,0,0,0,0,0,0,0,130,5.7,10,10,16.1,520,9,999999999,200,0.0740,0,88,999.000,999.0,99.0 +1976,1,14,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,5.6,86,101500,0,0,327,0,0,0,0,0,0,0,120,5.7,10,10,16.1,520,9,999999999,209,0.0740,0,88,999.000,999.0,99.0 +1976,1,14,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,8.3,86,101400,0,0,343,0,0,0,0,0,0,0,190,8.8,10,10,19.3,520,9,999999999,220,0.0740,0,88,999.000,999.0,99.0 +1976,1,14,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,8.3,86,101300,0,0,343,0,0,0,0,0,0,0,200,9.3,10,10,19.3,520,9,999999999,220,0.0740,0,88,999.000,999.0,99.0 +1976,1,14,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,8.3,86,101200,0,0,343,0,0,0,0,0,0,0,180,8.2,10,10,19.3,490,9,999999999,220,0.0740,0,88,999.000,999.0,99.0 +1976,1,14,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,8.3,86,101200,0,0,343,0,0,0,0,0,0,0,210,11.3,10,10,19.3,460,9,999999999,229,0.0740,0,88,999.000,999.0,99.0 +1976,1,14,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,8.3,86,101300,3,247,343,1,0,1,0,0,0,0,210,9.8,10,10,9.7,460,9,999999999,229,0.0470,0,88,999.000,999.0,99.0 +1976,1,14,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,8.9,86,101500,132,1414,347,22,1,22,2500,0,2500,790,220,9.8,10,10,12.9,400,9,999999999,229,0.0470,0,88,999.000,999.0,99.0 +1976,1,14,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,8.9,86,101700,313,1414,347,100,1,99,10900,0,10900,3140,240,8.2,10,10,24.1,1520,9,999999999,229,0.0470,0,88,999.000,999.0,99.0 +1976,1,14,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,9.4,90,101800,449,1414,347,161,1,161,17700,100,17600,5150,210,3.6,10,10,24.1,1340,9,999999999,229,0.0470,0,88,999.000,999.0,99.0 +1976,1,14,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,9.4,86,101800,531,1414,350,177,2,177,19700,200,19600,6110,200,5.2,10,10,32.2,1280,9,999999999,229,0.0470,0,88,999.000,999.0,99.0 +1976,1,14,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,9.4,86,101800,551,1414,350,180,1,179,20000,100,19900,6310,200,3.6,10,10,32.2,1280,9,999999999,229,0.0470,0,88,999.000,999.0,99.0 +1976,1,14,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,9.4,86,101800,509,1414,350,103,1,103,11900,100,11900,4150,210,4.6,10,10,32.2,850,9,999999999,240,0.0470,0,88,999.000,999.0,99.0 +1976,1,14,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,9.4,86,101900,408,1414,350,80,1,79,9100,100,9100,3080,210,3.6,10,10,16.1,370,9,999999999,240,0.0470,0,88,999.000,999.0,99.0 +1976,1,14,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,10.0,93,102000,254,1414,348,74,0,74,8100,0,8100,2360,220,2.6,10,10,19.3,400,9,999999999,240,0.0470,0,88,999.000,999.0,99.0 +1976,1,14,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,10.0,93,102000,67,1167,348,20,0,20,2200,0,2200,660,220,2.6,10,10,19.3,3960,9,999999999,240,0.0470,0,88,999.000,999.0,99.0 +1976,1,14,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,10.0,86,102000,0,0,353,0,0,0,0,0,0,0,200,7.7,10,10,19.3,400,9,999999999,240,0.0740,0,88,999.000,999.0,99.0 +1976,1,14,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,10.0,90,102100,0,0,351,0,0,0,0,0,0,0,220,6.2,10,10,19.3,430,9,999999999,240,0.0740,0,88,999.000,999.0,99.0 +1976,1,14,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,10.0,83,102200,0,0,356,0,0,0,0,0,0,0,220,8.2,10,10,19.3,460,9,999999999,240,0.0740,0,88,999.000,999.0,99.0 +1976,1,14,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,10.0,86,102200,0,0,353,0,0,0,0,0,0,0,210,5.7,10,10,24.1,1980,9,999999999,240,0.0740,0,88,999.000,999.0,99.0 +1976,1,14,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,9.4,83,102200,0,0,353,0,0,0,0,0,0,0,240,3.1,10,10,24.1,1980,9,999999999,250,0.0740,0,88,999.000,999.0,99.0 +1976,1,14,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,9.4,80,102300,0,0,356,0,0,0,0,0,0,0,200,4.1,10,10,24.1,1280,9,999999999,250,0.0740,0,88,999.000,999.0,99.0 +1976,1,14,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,9.4,80,102300,0,0,356,0,0,0,0,0,0,0,230,5.7,10,10,24.1,1220,9,999999999,250,0.0740,0,88,999.000,999.0,99.0 +1976,1,15,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,8.9,77,102300,0,0,345,0,0,0,0,0,0,0,220,7.7,9,9,24.1,1220,9,999999999,250,0.0740,0,88,999.000,999.0,99.0 +1976,1,15,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,8.9,77,102400,0,0,355,0,0,0,0,0,0,0,220,7.7,10,10,24.1,1160,9,999999999,250,0.0740,0,88,999.000,999.0,99.0 +1976,1,15,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,8.9,77,102400,0,0,355,0,0,0,0,0,0,0,210,7.7,10,10,24.1,1980,9,999999999,250,0.0740,0,88,999.000,999.0,99.0 +1976,1,15,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,8.9,77,102400,0,0,355,0,0,0,0,0,0,0,210,6.2,10,10,24.1,1680,9,999999999,250,0.0740,0,88,999.000,999.0,99.0 +1976,1,15,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,8.9,77,102500,0,0,355,0,0,0,0,0,0,0,220,4.6,10,10,24.1,1370,9,999999999,250,0.0740,0,88,999.000,999.0,99.0 +1976,1,15,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,9.4,80,102400,0,0,356,0,0,0,0,0,0,0,220,6.2,10,10,24.1,1100,9,999999999,250,0.0740,0,88,999.000,999.0,99.0 +1976,1,15,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,9.4,80,102500,0,0,356,0,0,0,0,0,0,0,230,7.7,10,10,24.1,1370,9,999999999,250,0.0740,0,88,999.000,999.0,99.0 +1976,1,15,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,8.9,75,102500,3,247,357,2,0,2,0,0,0,0,220,7.2,10,10,32.2,1280,9,999999999,250,0.0960,0,88,999.000,999.0,99.0 +1976,1,15,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,9.4,78,102600,134,1414,358,33,0,33,3700,0,3700,1070,190,4.1,10,10,48.3,1220,9,999999999,250,0.0960,0,88,999.000,999.0,99.0 +1976,1,15,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,9.4,78,102700,315,1414,358,84,0,84,9300,0,9300,2860,200,5.2,10,10,48.3,1340,9,999999999,250,0.0960,0,88,999.000,999.0,99.0 +1976,1,15,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,9.4,78,102900,452,1414,358,82,1,81,9400,100,9400,3270,230,5.2,10,10,16.1,580,9,999999999,259,0.0960,0,88,999.000,999.0,99.0 +1976,1,15,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,10.0,78,102900,534,1414,362,173,1,173,19300,100,19200,6060,190,4.1,10,10,32.2,2290,9,999999999,259,0.0960,0,88,999.000,999.0,99.0 +1976,1,15,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,10.0,75,102900,555,1414,364,106,0,106,12300,0,12300,4410,210,7.2,10,10,64.4,640,9,999999999,259,0.0960,0,88,999.000,999.0,99.0 +1976,1,15,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,10.0,78,102900,513,1414,362,173,0,173,19100,0,19100,5890,220,7.2,10,10,48.3,850,9,999999999,259,0.0960,0,88,999.000,999.0,99.0 +1976,1,15,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,10.0,78,102900,412,1414,362,77,1,77,8900,0,8900,3030,190,6.7,10,10,48.3,730,9,999999999,259,0.0960,0,88,999.000,999.0,99.0 +1976,1,15,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,10.0,75,102900,259,1414,364,78,1,78,8600,0,8600,2460,200,2.6,10,10,56.3,730,9,999999999,259,0.0960,0,88,999.000,999.0,99.0 +1976,1,15,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,10.0,83,103000,70,1190,356,19,0,19,2100,0,2100,640,130,4.1,10,10,32.2,880,9,999999999,250,0.0960,0,88,999.000,999.0,99.0 +1976,1,15,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,10.0,86,103000,0,0,353,0,0,0,0,0,0,0,100,2.6,10,10,24.1,1010,9,999999999,250,0.0740,0,88,999.000,999.0,99.0 +1976,1,15,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,10.0,86,103000,0,0,353,0,0,0,0,0,0,0,100,4.1,10,10,24.1,1040,9,999999999,240,0.0740,0,88,999.000,999.0,99.0 +1976,1,15,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,10.0,90,102900,0,0,351,0,0,0,0,0,0,0,130,4.1,10,10,24.1,1040,9,999999999,229,0.0740,0,88,999.000,999.0,99.0 +1976,1,15,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,9.4,93,103000,0,0,335,0,0,0,0,0,0,0,90,2.6,9,9,24.1,1100,9,999999999,220,0.0740,0,88,999.000,999.0,99.0 +1976,1,15,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,10.0,96,103000,0,0,317,0,0,0,0,0,0,0,170,1.5,5,5,24.1,77777,9,999999999,220,0.0740,0,88,999.000,999.0,99.0 +1976,1,15,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,8.9,96,103000,0,0,293,0,0,0,0,0,0,0,100,3.6,0,0,11.3,77777,9,999999999,209,0.0740,0,88,999.000,999.0,99.0 +1976,1,15,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,8.3,96,102900,0,0,335,0,0,0,0,0,0,0,0,0.0,10,10,0.2,30,9,999999999,200,0.0740,0,88,999.000,999.0,99.0 +1976,1,16,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,7.8,96,102800,0,0,332,0,0,0,0,0,0,0,0,0.0,10,10,0.2,0,9,999999999,189,0.0740,0,88,999.000,999.0,99.0 +1976,1,16,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,6.1,96,102900,0,0,302,0,0,0,0,0,0,0,310,2.1,7,7,0.4,77777,9,999999999,189,0.0740,0,88,999.000,999.0,99.0 +1976,1,16,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,7.2,100,102800,0,0,326,0,0,0,0,0,0,0,0,0.0,10,10,1.3,120,9,999999999,179,0.0740,0,88,999.000,999.0,99.0 +1976,1,16,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,6.7,100,102800,0,0,323,0,0,0,0,0,0,0,0,0.0,10,10,0.4,0,9,999999999,170,0.0740,0,88,999.000,999.0,99.0 +1976,1,16,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,7.2,100,102700,0,0,326,0,0,0,0,0,0,0,0,0.0,10,10,0.4,0,9,999999999,170,0.0740,0,88,999.000,999.0,99.0 +1976,1,16,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,7.2,100,102700,0,0,326,0,0,0,0,0,0,0,0,0.0,10,10,0.2,0,9,999999999,170,0.0740,0,88,999.000,999.0,99.0 +1976,1,16,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,7.2,100,102700,0,0,326,0,0,0,0,0,0,0,0,0.0,10,10,0.2,0,9,999999999,160,0.0740,0,88,999.000,999.0,99.0 +1976,1,16,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,6.7,100,102700,3,271,323,2,0,2,0,0,0,0,0,0.0,10,10,0.2,30,9,999999999,160,0.0360,0,88,999.000,999.0,99.0 +1976,1,16,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,6.7,100,102800,136,1414,323,39,0,39,4300,0,4300,1200,310,2.6,10,10,0.1,30,9,999999999,160,0.0360,0,88,999.000,999.0,99.0 +1976,1,16,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,6.7,100,102800,318,1414,323,102,1,102,11200,100,11200,3220,320,2.6,10,10,0.1,30,9,999999999,160,0.0360,0,88,999.000,999.0,99.0 +1976,1,16,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,7.2,100,102800,456,1414,326,172,1,172,18800,100,18800,5370,0,0.0,10,10,0.2,60,9,999999999,160,0.0360,0,88,999.000,999.0,99.0 +1976,1,16,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,7.2,100,102700,538,1414,326,194,1,194,21400,100,21400,6470,310,2.1,10,10,0.2,60,9,999999999,160,0.0360,0,88,999.000,999.0,99.0 +1976,1,16,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,7.8,100,102600,559,1414,330,200,1,200,22100,100,22100,6770,0,0.0,10,10,0.2,60,9,999999999,150,0.0360,0,88,999.000,999.0,99.0 +1976,1,16,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,7.8,100,102600,518,1414,330,189,0,189,20800,0,20800,6210,0,0.0,10,10,0.1,60,9,999999999,150,0.0360,0,88,999.000,999.0,99.0 +1976,1,16,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,8.9,100,102600,417,1414,336,141,0,141,15500,0,15500,4570,200,2.1,10,10,0.2,60,9,999999999,150,0.0360,0,88,999.000,999.0,99.0 +1976,1,16,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,8.9,100,102600,264,1414,336,88,0,88,9600,0,9600,2650,200,2.1,10,10,0.2,60,9,999999999,150,0.0360,0,88,999.000,999.0,99.0 +1976,1,16,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,8.3,100,102400,74,1213,332,22,0,22,2500,0,2500,720,0,0.0,10,10,0.1,30,9,999999999,150,0.0360,0,88,999.000,999.0,99.0 +1976,1,16,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,8.3,100,102500,0,0,332,0,0,0,0,0,0,0,0,0.0,10,10,0.1,30,9,999999999,150,0.0740,0,88,999.000,999.0,99.0 +1976,1,16,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,7.2,100,102500,0,0,326,0,0,0,0,0,0,0,0,0.0,10,10,0.1,30,9,999999999,150,0.0740,0,88,999.000,999.0,99.0 +1976,1,16,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,7.8,100,102500,0,0,330,0,0,0,0,0,0,0,0,0.0,10,10,0.1,30,9,999999999,150,0.0740,0,88,999.000,999.0,99.0 +1976,1,16,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,7.2,100,102600,0,0,326,0,0,0,0,0,0,0,0,0.0,10,10,0.1,30,9,999999999,150,0.0740,0,88,999.000,999.0,99.0 +1976,1,16,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,7.2,100,102600,0,0,326,0,0,0,0,0,0,0,0,0.0,10,10,0.1,30,9,999999999,150,0.0740,0,88,999.000,999.0,99.0 +1976,1,16,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,7.2,100,102600,0,0,326,0,0,0,0,0,0,0,0,0.0,10,10,0.1,30,9,999999999,139,0.0740,0,88,999.000,999.0,99.0 +1976,1,16,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,7.2,100,102600,0,0,326,0,0,0,0,0,0,0,0,0.0,10,10,0.2,30,9,999999999,139,0.0740,0,88,999.000,999.0,99.0 +1976,1,17,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,7.2,100,102500,0,0,326,0,0,0,0,0,0,0,0,0.0,10,10,0.2,30,9,999999999,139,0.0750,0,88,999.000,999.0,99.0 +1976,1,17,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,7.2,100,102500,0,0,326,0,0,0,0,0,0,0,0,0.0,10,10,0.4,30,9,999999999,139,0.0750,0,88,999.000,999.0,99.0 +1976,1,17,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,6.7,96,102600,0,0,326,0,0,0,0,0,0,0,0,0.0,10,10,1.3,60,9,999999999,139,0.0750,0,88,999.000,999.0,99.0 +1976,1,17,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,6.7,96,102500,0,0,326,0,0,0,0,0,0,0,180,2.1,10,10,1.6,120,9,999999999,139,0.0750,0,88,999.000,999.0,99.0 +1976,1,17,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,6.7,96,102500,0,0,326,0,0,0,0,0,0,0,180,1.5,10,10,2.4,120,9,999999999,139,0.0750,0,88,999.000,999.0,99.0 +1976,1,17,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,6.7,100,102500,0,0,323,0,0,0,0,0,0,0,180,3.1,10,10,2.4,120,9,999999999,139,0.0750,0,88,999.000,999.0,99.0 +1976,1,17,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,6.1,100,102400,0,0,320,0,0,0,0,0,0,0,180,3.6,10,10,3.2,120,9,999999999,129,0.0750,0,88,999.000,999.0,99.0 +1976,1,17,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,6.1,100,102500,4,271,320,2,0,2,0,0,0,0,90,2.6,10,10,0.8,60,9,999999999,129,0.0380,0,88,999.000,999.0,99.0 +1976,1,17,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,6.1,100,102500,139,1414,320,44,1,44,4800,0,4800,1300,90,3.1,10,10,0.2,60,9,999999999,129,0.0380,0,88,999.000,999.0,99.0 +1976,1,17,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,6.1,100,102600,321,1414,320,64,1,64,7300,0,7300,2380,120,3.6,10,10,0.8,60,9,999999999,129,0.0380,0,88,999.000,999.0,99.0 +1976,1,17,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,6.1,100,102500,459,1414,320,100,0,100,11400,0,11400,3870,110,3.6,10,10,0.4,60,9,999999999,120,0.0380,0,88,999.000,999.0,99.0 +1976,1,17,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,6.1,96,102500,542,1414,323,114,1,114,13200,100,13100,4610,100,2.1,10,10,0.4,60,9,999999999,120,0.0380,0,88,999.000,999.0,99.0 +1976,1,17,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,6.7,96,102500,564,1414,326,118,0,118,13600,0,13600,4820,80,2.1,10,10,1.3,60,9,999999999,120,0.0380,0,88,999.000,999.0,99.0 +1976,1,17,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,6.7,96,102400,523,1414,326,106,0,106,12200,0,12200,4290,100,2.6,10,10,1.6,210,9,999999999,110,0.0380,0,88,999.000,999.0,99.0 +1976,1,17,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,6.7,96,102500,422,1414,326,88,2,87,10000,100,10000,3360,100,3.1,10,10,2.4,7620,9,999999999,110,0.0380,0,88,999.000,999.0,99.0 +1976,1,17,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,7.2,96,102500,269,1414,329,85,1,85,9300,0,9300,2640,120,2.6,10,10,2.4,210,9,999999999,110,0.0380,0,88,999.000,999.0,99.0 +1976,1,17,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,7.2,93,102500,78,1260,331,24,0,24,2700,0,2700,770,190,4.1,10,10,8.0,460,9,999999999,110,0.0380,0,88,999.000,999.0,99.0 +1976,1,17,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,7.2,93,102500,0,0,331,0,0,0,0,0,0,0,210,2.6,10,10,4.8,270,9,999999999,100,0.0750,0,88,999.000,999.0,99.0 +1976,1,17,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,7.8,96,102600,0,0,332,0,0,0,0,0,0,0,40,2.1,10,10,4.8,240,9,999999999,100,0.0750,0,88,999.000,999.0,99.0 +1976,1,17,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,7.2,96,102600,0,0,308,0,0,0,0,0,0,0,170,1.5,7,7,9.7,1040,9,999999999,100,0.0750,0,88,999.000,999.0,99.0 +1976,1,17,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,6.7,96,102600,0,0,305,0,0,0,0,0,0,0,320,2.6,7,7,24.1,1070,9,999999999,100,0.0750,0,88,999.000,999.0,99.0 +1976,1,17,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,5.6,89,102700,0,0,293,0,0,0,0,0,0,0,320,3.6,3,3,24.1,77777,9,999999999,89,0.0750,0,88,999.000,999.0,99.0 +1976,1,17,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,3.3,93,102800,0,0,286,0,0,0,0,0,0,0,280,3.6,6,6,24.1,4270,9,999999999,89,0.0750,0,88,999.000,999.0,99.0 +1976,1,17,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,3.9,83,102900,0,0,320,0,0,0,0,0,0,0,340,3.6,10,10,24.1,1100,9,999999999,89,0.0750,0,88,999.000,999.0,99.0 +1976,1,18,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,4.4,86,103000,0,0,321,0,0,0,0,0,0,0,320,2.6,10,10,24.1,940,9,999999999,89,0.0750,0,88,999.000,999.0,99.0 +1976,1,18,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,4.4,89,103000,0,0,318,0,0,0,0,0,0,0,310,2.6,10,10,24.1,910,9,999999999,89,0.0750,0,88,999.000,999.0,99.0 +1976,1,18,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,4.4,89,103000,0,0,318,0,0,0,0,0,0,0,310,2.6,10,10,24.1,910,9,999999999,80,0.0750,0,88,999.000,999.0,99.0 +1976,1,18,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,3.9,83,103000,0,0,320,0,0,0,0,0,0,0,340,4.1,10,10,24.1,910,9,999999999,80,0.0750,0,88,999.000,999.0,99.0 +1976,1,18,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,3.3,80,103100,0,0,320,0,0,0,0,0,0,0,350,4.1,10,10,24.1,940,9,999999999,80,0.0750,0,88,999.000,999.0,99.0 +1976,1,18,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,3.3,83,103100,0,0,317,0,0,0,0,0,0,0,240,2.6,10,10,24.1,1010,9,999999999,80,0.0750,0,88,999.000,999.0,99.0 +1976,1,18,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,3.3,83,103100,0,0,302,0,0,0,0,0,0,0,300,4.1,8,8,24.1,1010,9,999999999,89,0.0750,0,88,999.000,999.0,99.0 +1976,1,18,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,2.8,86,103100,4,294,303,2,0,2,0,0,0,0,180,1.5,9,9,24.1,1010,9,999999999,89,0.1140,0,88,999.000,999.0,99.0 +1976,1,18,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,2.8,93,103100,142,1413,277,40,128,27,4200,6600,3600,470,0,0.0,3,3,24.1,77777,9,999999999,89,0.1140,0,88,999.000,999.0,99.0 +1976,1,18,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,3.9,80,103200,324,1413,285,164,450,60,16800,36200,8400,1080,0,0.0,1,1,24.1,77777,9,999999999,89,0.1140,0,88,999.000,999.0,99.0 +1976,1,18,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,4.4,80,103200,463,1413,302,221,275,131,23400,25600,15000,2670,0,0.0,6,6,24.1,580,9,999999999,89,0.1140,0,88,999.000,999.0,99.0 +1976,1,18,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,4.4,74,103100,546,1413,299,270,348,135,28200,33100,15400,2640,10,3.1,3,3,24.1,77777,9,999999999,89,0.1140,0,88,999.000,999.0,99.0 +1976,1,18,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,3.9,71,103000,568,1413,286,366,702,84,38600,67100,11600,1690,350,2.1,1,0,64.4,77777,9,999999999,89,0.1140,0,88,999.000,999.0,99.0 +1976,1,18,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,3.9,66,102900,527,1413,291,331,674,80,34900,63300,11100,1580,350,4.1,1,0,80.5,77777,9,999999999,100,0.1140,0,88,999.000,999.0,99.0 +1976,1,18,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,4.4,69,102900,427,1413,291,247,604,66,26000,53700,9700,1260,360,6.7,0,0,80.5,77777,9,999999999,100,0.1140,0,88,999.000,999.0,99.0 +1976,1,18,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,4.4,71,102900,274,1413,289,132,412,53,13600,31000,7600,940,320,4.1,2,0,80.5,77777,9,999999999,100,0.1140,0,88,999.000,999.0,99.0 +1976,1,18,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,4.4,74,102800,83,1284,287,31,100,23,3100,4100,2800,410,350,2.1,2,0,80.5,77777,9,999999999,100,0.1140,0,88,999.000,999.0,99.0 +1976,1,18,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,3.9,74,102800,0,0,284,0,0,0,0,0,0,0,340,4.6,2,0,24.1,77777,9,999999999,100,0.0750,0,88,999.000,999.0,99.0 +1976,1,18,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,2.8,83,102800,0,0,272,0,0,0,0,0,0,0,290,2.1,1,0,24.1,77777,9,999999999,89,0.0750,0,88,999.000,999.0,99.0 +1976,1,18,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,2.2,82,102900,0,0,269,0,0,0,0,0,0,0,300,3.1,1,0,24.1,77777,9,999999999,89,0.0750,0,88,999.000,999.0,99.0 +1976,1,18,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,2.2,86,102900,0,0,267,0,0,0,0,0,0,0,0,0.0,1,0,24.1,77777,9,999999999,89,0.0750,0,88,999.000,999.0,99.0 +1976,1,18,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,2.2,89,102900,0,0,265,0,0,0,0,0,0,0,290,2.6,0,0,24.1,77777,9,999999999,89,0.0750,0,88,999.000,999.0,99.0 +1976,1,18,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,1.7,86,102900,0,0,264,0,0,0,0,0,0,0,250,2.1,0,0,24.1,77777,9,999999999,89,0.0750,0,88,999.000,999.0,99.0 +1976,1,18,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,1.7,92,102900,0,0,260,0,0,0,0,0,0,0,320,2.6,0,0,24.1,77777,9,999999999,89,0.0750,0,88,999.000,999.0,99.0 +1976,1,19,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,0.6,92,102800,0,0,255,0,0,0,0,0,0,0,300,2.1,0,0,24.1,77777,9,999999999,89,0.0750,0,88,999.000,999.0,99.0 +1976,1,19,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,0.0,89,102800,0,0,255,0,0,0,0,0,0,0,300,2.6,0,0,24.1,77777,9,999999999,80,0.0750,0,88,999.000,999.0,99.0 +1976,1,19,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.1,0.0,92,102800,0,0,252,0,0,0,0,0,0,0,310,3.1,0,0,24.1,77777,9,999999999,80,0.0750,0,88,999.000,999.0,99.0 +1976,1,19,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.1,-0.6,89,102800,0,0,252,0,0,0,0,0,0,0,310,2.6,0,0,24.1,77777,9,999999999,80,0.0750,0,88,999.000,999.0,99.0 +1976,1,19,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.0,-0.6,96,102800,0,0,248,0,0,0,0,0,0,0,290,2.6,0,0,24.1,77777,9,999999999,80,0.0750,0,88,999.000,999.0,99.0 +1976,1,19,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,0.6,92,102800,0,0,255,0,0,0,0,0,0,0,310,2.6,0,0,24.1,77777,9,999999999,80,0.0750,0,88,999.000,999.0,99.0 +1976,1,19,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,0.6,92,102800,0,0,260,0,0,0,0,0,0,0,300,2.6,2,1,24.1,77777,9,999999999,80,0.0750,0,88,999.000,999.0,99.0 +1976,1,19,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,-0.6,85,102800,5,318,254,2,2,2,0,0,0,0,240,2.6,0,0,64.4,77777,9,999999999,80,0.1510,0,88,999.000,999.0,99.0 +1976,1,19,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,1.1,82,102800,144,1413,264,52,164,35,5400,8600,4500,630,240,2.6,0,0,120.7,77777,9,999999999,80,0.1510,0,88,999.000,999.0,99.0 +1976,1,19,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,2.8,79,102800,328,1413,274,167,439,64,17000,35400,8700,1140,290,3.1,0,0,120.7,77777,9,999999999,80,0.1510,0,88,999.000,999.0,99.0 +1976,1,19,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,1.7,59,102800,467,1413,286,275,580,83,28500,52500,11000,1560,120,5.2,0,0,120.7,77777,9,999999999,80,0.1510,0,88,999.000,999.0,99.0 +1976,1,19,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,1.1,50,102700,550,1413,292,344,643,94,35900,60600,12200,1840,120,5.2,0,0,120.7,77777,9,999999999,80,0.1510,0,88,999.000,999.0,99.0 +1976,1,19,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,0.6,47,102600,573,1413,294,363,659,96,38000,62700,12400,1900,120,6.7,0,0,120.7,77777,9,999999999,80,0.1510,0,88,999.000,999.0,99.0 +1976,1,19,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,-0.6,40,102400,532,1413,298,328,630,91,34200,59000,11900,1760,110,8.2,0,0,120.7,77777,9,999999999,80,0.1510,0,88,999.000,999.0,99.0 +1976,1,19,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,-2.2,36,102400,432,1413,296,243,546,77,25200,48400,10400,1430,90,7.7,0,0,120.7,77777,9,999999999,80,0.1510,0,88,999.000,999.0,99.0 +1976,1,19,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,-3.3,34,102400,279,1413,292,129,369,57,13700,27600,8300,1020,90,9.3,0,0,120.7,77777,9,999999999,80,0.1510,0,88,999.000,999.0,99.0 +1976,1,19,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,-3.9,35,102400,87,1307,287,29,72,23,3000,2700,2800,410,100,8.8,0,0,80.5,77777,9,999999999,80,0.1510,0,88,999.000,999.0,99.0 +1976,1,19,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,-4.4,36,102400,0,0,282,0,0,0,0,0,0,0,100,8.8,0,0,24.1,77777,9,999999999,80,0.0750,0,88,999.000,999.0,99.0 +1976,1,19,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,-4.4,38,102300,0,0,280,0,0,0,0,0,0,0,110,10.3,0,0,24.1,77777,9,999999999,80,0.0750,0,88,999.000,999.0,99.0 +1976,1,19,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,-5.0,36,102300,0,0,279,0,0,0,0,0,0,0,110,8.2,0,0,24.1,77777,9,999999999,69,0.0750,0,88,999.000,999.0,99.0 +1976,1,19,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,-4.4,39,102300,0,0,278,0,0,0,0,0,0,0,130,7.2,0,0,24.1,77777,9,999999999,69,0.0750,0,88,999.000,999.0,99.0 +1976,1,19,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,-3.3,46,102300,0,0,275,0,0,0,0,0,0,0,120,7.7,0,0,24.1,77777,9,999999999,69,0.0750,0,88,999.000,999.0,99.0 +1976,1,19,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,-3.3,46,102300,0,0,275,0,0,0,0,0,0,0,110,7.7,0,0,24.1,77777,9,999999999,69,0.0750,0,88,999.000,999.0,99.0 +1976,1,19,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,-2.2,53,102300,0,0,272,0,0,0,0,0,0,0,110,7.2,0,0,24.1,77777,9,999999999,69,0.0750,0,88,999.000,999.0,99.0 +1976,1,20,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,-1.7,60,102300,0,0,268,0,0,0,0,0,0,0,120,5.7,0,0,24.1,77777,9,999999999,60,0.0750,0,88,999.000,999.0,99.0 +1976,1,20,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,-2.2,58,102300,0,0,267,0,0,0,0,0,0,0,130,4.6,0,0,24.1,77777,9,999999999,60,0.0750,0,88,999.000,999.0,99.0 +1976,1,20,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,-2.2,60,102400,0,0,265,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,60,0.0750,0,88,999.000,999.0,99.0 +1976,1,20,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,-1.7,70,102300,0,0,259,0,0,0,0,0,0,0,110,5.2,0,0,24.1,77777,9,999999999,60,0.0750,0,88,999.000,999.0,99.0 +1976,1,20,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,-1.1,68,102300,0,0,264,0,0,0,0,0,0,0,120,7.2,0,0,24.1,77777,9,999999999,60,0.0750,0,88,999.000,999.0,99.0 +1976,1,20,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,-1.1,70,102300,0,0,262,0,0,0,0,0,0,0,130,7.2,0,0,24.1,77777,9,999999999,60,0.0750,0,88,999.000,999.0,99.0 +1976,1,20,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,-1.1,70,102400,0,0,262,0,0,0,0,0,0,0,130,8.8,0,0,64.4,77777,9,999999999,60,0.0750,0,88,999.000,999.0,99.0 +1976,1,20,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,-1.1,70,102400,5,318,262,6,37,2,0,0,0,0,130,8.8,0,0,64.4,77777,9,999999999,60,0.0510,0,88,999.000,999.0,99.0 +1976,1,20,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,-1.1,65,102500,147,1413,266,68,418,24,6800,26200,4100,440,120,9.3,0,0,120.7,77777,9,999999999,60,0.0510,0,88,999.000,999.0,99.0 +1976,1,20,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,-1.1,58,102600,331,1413,273,199,681,38,20700,57300,7200,790,130,7.2,0,0,120.7,77777,9,999999999,60,0.0510,0,88,999.000,999.0,99.0 +1976,1,20,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,-1.1,56,102600,471,1413,275,311,788,48,32800,72400,8600,1080,120,8.2,0,0,120.7,77777,9,999999999,69,0.0510,0,88,999.000,999.0,99.0 +1976,1,20,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,-0.6,56,102600,555,1413,277,382,837,53,40300,79100,9100,1220,130,7.2,0,0,120.7,77777,9,999999999,69,0.0510,0,88,999.000,999.0,99.0 +1976,1,20,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,-0.6,54,102500,577,1413,279,402,849,55,42400,80700,9300,1270,130,6.7,0,0,120.7,77777,9,999999999,69,0.0510,0,88,999.000,999.0,99.0 +1976,1,20,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,0.0,56,102500,537,1413,280,366,827,52,38700,77800,9000,1200,130,7.7,0,0,120.7,77777,9,999999999,69,0.0510,0,88,999.000,999.0,99.0 +1976,1,20,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,-0.6,56,102500,437,1413,277,280,764,45,29800,69200,8300,1020,130,8.2,0,0,120.7,77777,9,999999999,69,0.0510,0,88,999.000,999.0,99.0 +1976,1,20,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,-0.6,58,102600,284,1413,275,157,620,35,16600,49600,6500,710,130,7.7,0,0,120.7,77777,9,999999999,69,0.0510,0,88,999.000,999.0,99.0 +1976,1,20,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,-1.1,63,102600,92,1354,268,39,269,18,3900,13200,2900,330,130,7.7,0,0,80.5,77777,9,999999999,69,0.0510,0,88,999.000,999.0,99.0 +1976,1,20,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,-1.7,62,102600,0,0,265,0,0,0,0,0,0,0,120,9.8,0,0,24.1,77777,9,999999999,80,0.0750,0,88,999.000,999.0,99.0 +1976,1,20,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,-1.7,65,102700,0,0,263,0,0,0,0,0,0,0,130,8.8,0,0,24.1,77777,9,999999999,80,0.0750,0,88,999.000,999.0,99.0 +1976,1,20,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,-1.7,67,102700,0,0,261,0,0,0,0,0,0,0,130,7.7,0,0,24.1,77777,9,999999999,80,0.0750,0,88,999.000,999.0,99.0 +1976,1,20,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,-1.7,67,102700,0,0,261,0,0,0,0,0,0,0,120,7.2,0,0,24.1,77777,9,999999999,80,0.0750,0,88,999.000,999.0,99.0 +1976,1,20,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,-1.7,70,102800,0,0,259,0,0,0,0,0,0,0,130,6.2,0,0,24.1,77777,9,999999999,89,0.0750,0,88,999.000,999.0,99.0 +1976,1,20,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,-1.7,70,102800,0,0,259,0,0,0,0,0,0,0,130,7.2,0,0,24.1,77777,9,999999999,89,0.0750,0,88,999.000,999.0,99.0 +1976,1,20,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,-1.7,73,102800,0,0,257,0,0,0,0,0,0,0,130,7.2,0,0,24.1,77777,9,999999999,89,0.0750,0,88,999.000,999.0,99.0 +1976,1,21,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,-1.7,73,102800,0,0,257,0,0,0,0,0,0,0,130,6.2,0,0,24.1,77777,9,999999999,89,0.0760,0,88,999.000,999.0,99.0 +1976,1,21,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.6,-1.7,85,102800,0,0,249,0,0,0,0,0,0,0,70,3.1,0,0,24.1,77777,9,999999999,89,0.0760,0,88,999.000,999.0,99.0 +1976,1,21,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.1,-1.7,82,102800,0,0,251,0,0,0,0,0,0,0,110,3.1,0,0,24.1,77777,9,999999999,100,0.0760,0,88,999.000,999.0,99.0 +1976,1,21,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,-2.2,73,102800,0,0,254,0,0,0,0,0,0,0,130,5.2,0,0,24.1,77777,9,999999999,100,0.0760,0,88,999.000,999.0,99.0 +1976,1,21,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.6,-2.2,82,102800,0,0,249,0,0,0,0,0,0,0,80,2.6,0,0,24.1,77777,9,999999999,100,0.0760,0,88,999.000,999.0,99.0 +1976,1,21,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.0,-2.2,85,102800,0,0,246,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,89,0.0760,0,88,999.000,999.0,99.0 +1976,1,21,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-0.6,-2.2,89,102800,0,0,244,0,0,0,0,0,0,0,110,2.1,0,0,80.5,77777,9,999999999,89,0.0760,0,88,999.000,999.0,99.0 +1976,1,21,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,-2.2,76,102800,6,341,253,8,48,3,0,0,0,0,120,4.6,0,0,80.5,77777,9,999999999,89,0.0410,0,88,999.000,999.0,99.0 +1976,1,21,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,-1.1,79,102800,151,1413,255,71,457,22,7200,29100,4100,430,0,0.0,0,0,80.5,77777,9,999999999,89,0.0410,0,88,999.000,999.0,99.0 +1976,1,21,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,-1.1,70,102900,335,1413,267,172,540,43,17700,45300,6900,860,330,2.1,1,1,80.5,77777,9,999999999,89,0.0410,0,88,999.000,999.0,99.0 +1976,1,21,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,-1.1,56,102800,475,1413,280,293,759,37,31100,70000,7500,980,0,0.0,1,1,80.5,77777,9,999999999,80,0.0410,0,88,999.000,999.0,99.0 +1976,1,21,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,-1.1,56,102700,559,1413,275,354,741,60,37500,70700,9400,1290,130,5.7,3,0,120.7,77777,9,999999999,80,0.0410,0,88,999.000,999.0,99.0 +1976,1,21,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,-0.6,56,102600,582,1413,277,392,823,53,41400,78400,9000,1260,130,7.2,1,0,120.7,77777,9,999999999,80,0.0410,0,88,999.000,999.0,99.0 +1976,1,21,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,-1.1,56,102600,542,1413,275,372,826,55,39200,77800,9300,1220,130,7.2,2,0,120.7,77777,9,999999999,80,0.0410,0,88,999.000,999.0,99.0 +1976,1,21,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,-1.1,56,102500,442,1413,275,284,763,47,30200,69200,8400,1040,130,6.7,2,0,120.7,77777,9,999999999,69,0.0410,0,88,999.000,999.0,99.0 +1976,1,21,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,-1.1,58,102500,289,1413,273,163,652,32,17600,53500,6500,730,130,7.2,0,0,80.5,77777,9,999999999,69,0.0410,0,88,999.000,999.0,99.0 +1976,1,21,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,-1.7,62,102500,96,1377,265,43,308,18,4100,17100,2800,340,140,7.2,1,0,80.5,77777,9,999999999,69,0.0410,0,88,999.000,999.0,99.0 +1976,1,21,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,-1.7,65,102500,0,0,263,0,0,0,0,0,0,0,120,5.7,1,0,24.1,77777,9,999999999,80,0.0760,0,88,999.000,999.0,99.0 +1976,1,21,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,-1.7,70,102400,0,0,259,0,0,0,0,0,0,0,130,5.7,2,0,24.1,77777,9,999999999,80,0.0760,0,88,999.000,999.0,99.0 +1976,1,21,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,-1.7,73,102300,0,0,257,0,0,0,0,0,0,0,130,5.2,6,0,24.1,77777,9,999999999,89,0.0760,0,88,999.000,999.0,99.0 +1976,1,21,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,-1.7,73,102300,0,0,257,0,0,0,0,0,0,0,120,5.2,6,0,24.1,77777,9,999999999,89,0.0760,0,88,999.000,999.0,99.0 +1976,1,21,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.1,-1.7,82,102400,0,0,251,0,0,0,0,0,0,0,120,3.1,7,0,24.1,77777,9,999999999,89,0.0760,0,88,999.000,999.0,99.0 +1976,1,21,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.1,-1.1,85,102400,0,0,260,0,0,0,0,0,0,0,110,1.5,8,2,24.1,77777,9,999999999,100,0.0760,0,88,999.000,999.0,99.0 +1976,1,21,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,-1.7,79,102300,0,0,264,0,0,0,0,0,0,0,130,5.2,8,3,24.1,77777,9,999999999,100,0.0760,0,88,999.000,999.0,99.0 +1976,1,22,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,-1.7,79,102200,0,0,266,0,0,0,0,0,0,0,130,4.1,10,4,24.1,77777,9,999999999,110,0.0760,0,88,999.000,999.0,99.0 +1976,1,22,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,-1.7,76,102100,0,0,272,0,0,0,0,0,0,0,140,4.6,10,6,24.1,4570,9,999999999,110,0.0760,0,88,999.000,999.0,99.0 +1976,1,22,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,-1.7,79,102200,0,0,292,0,0,0,0,0,0,0,90,3.1,10,10,24.1,3350,9,999999999,120,0.0760,0,88,999.000,999.0,99.0 +1976,1,22,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,-1.1,79,102100,0,0,295,0,0,0,0,0,0,0,0,0.0,10,10,24.1,3350,9,999999999,120,0.0760,0,88,999.000,999.0,99.0 +1976,1,22,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,-1.1,79,102100,0,0,295,0,0,0,0,0,0,0,110,4.1,10,10,24.1,2740,9,999999999,129,0.0760,0,88,999.000,999.0,99.0 +1976,1,22,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,-1.7,73,102100,0,0,297,0,0,0,0,0,0,0,140,5.2,10,10,24.1,2290,9,999999999,139,0.0760,0,88,999.000,999.0,99.0 +1976,1,22,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,-1.7,70,102100,0,0,299,0,0,0,0,0,0,0,130,6.2,10,10,24.1,1520,9,999999999,139,0.0760,0,88,999.000,999.0,99.0 +1976,1,22,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,-0.6,79,102100,7,365,298,0,0,0,0,0,0,0,120,6.2,10,10,24.1,1100,9,999999999,150,0.1600,0,88,999.000,999.0,99.0 +1976,1,22,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,1.1,92,102200,154,1412,297,14,0,14,1700,0,1700,550,50,2.6,10,10,3.2,910,9,999999999,160,0.1600,0,88,999.000,999.0,99.0 +1976,1,22,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,1.1,92,102300,339,1412,297,46,5,45,5400,200,5400,1830,110,2.1,10,10,3.2,400,9,999999999,160,0.1600,0,88,999.000,999.0,99.0 +1976,1,22,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,1.7,92,102400,479,1412,300,66,4,65,7900,200,7800,2790,120,4.1,10,10,2.4,240,9,999999999,170,0.1600,0,88,999.000,999.0,99.0 +1976,1,22,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,1.7,92,102300,564,1412,300,75,0,75,9000,0,9000,3330,120,2.1,10,10,2.0,90,9,999999999,179,0.1600,0,88,999.000,999.0,99.0 +1976,1,22,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,2.2,93,102200,587,1412,303,87,3,86,10400,200,10300,3800,110,1.5,10,10,2.0,430,9,999999999,189,0.1600,0,88,999.000,999.0,99.0 +1976,1,22,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,2.8,96,102200,547,1412,304,83,3,82,9800,200,9800,3560,90,2.1,10,10,2.0,60,9,999999999,200,0.1600,0,88,999.000,999.0,99.0 +1976,1,22,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,2.8,93,102200,448,1412,306,109,1,109,12400,100,12300,4070,110,2.6,10,10,3.2,210,9,999999999,200,0.1600,0,88,999.000,999.0,99.0 +1976,1,22,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,3.9,93,102300,294,1412,312,64,1,63,7100,0,7100,2280,0,0.0,10,10,6.4,210,9,999999999,209,0.1600,0,88,999.000,999.0,99.0 +1976,1,22,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,3.3,89,102400,101,1412,312,26,0,26,2900,0,2900,830,330,2.6,10,10,6.4,240,9,999999999,200,0.1600,0,88,999.000,999.0,99.0 +1976,1,22,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,3.3,93,102400,0,12,309,0,0,0,0,0,0,0,290,2.1,10,10,6.4,180,9,999999999,189,0.0760,0,88,999.000,999.0,99.0 +1976,1,22,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,3.3,93,102400,0,0,309,0,0,0,0,0,0,0,0,0.0,10,10,4.8,150,9,999999999,179,0.0760,0,88,999.000,999.0,99.0 +1976,1,22,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,3.3,93,102400,0,0,309,0,0,0,0,0,0,0,300,1.5,10,10,4.8,90,9,999999999,160,0.0760,0,88,999.000,999.0,99.0 +1976,1,22,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,3.3,93,102500,0,0,309,0,0,0,0,0,0,0,290,3.1,10,10,2.4,60,9,999999999,150,0.0760,0,88,999.000,999.0,99.0 +1976,1,22,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,3.3,89,102500,0,0,312,0,0,0,0,0,0,0,300,3.1,10,10,3.2,150,9,999999999,139,0.0760,0,88,999.000,999.0,99.0 +1976,1,22,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,3.3,96,102600,0,0,307,0,0,0,0,0,0,0,270,2.1,10,10,4.8,760,9,999999999,129,0.0760,0,88,999.000,999.0,99.0 +1976,1,22,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,2.2,96,102600,0,0,301,0,0,0,0,0,0,0,290,2.6,10,10,0.2,60,9,999999999,120,0.0760,0,88,999.000,999.0,99.0 +1976,1,23,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,1.7,96,102500,0,0,298,0,0,0,0,0,0,0,330,2.6,10,10,0.2,60,9,999999999,100,0.0760,0,88,999.000,999.0,99.0 +1976,1,23,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.1,0.6,96,102500,0,0,292,0,0,0,0,0,0,0,0,0.0,10,10,0.2,60,9,999999999,89,0.0760,0,88,999.000,999.0,99.0 +1976,1,23,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,1.7,96,102500,0,0,298,0,0,0,0,0,0,0,0,0.0,10,10,0.2,60,9,999999999,80,0.0760,0,88,999.000,999.0,99.0 +1976,1,23,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,0.0,82,102600,0,0,299,0,0,0,0,0,0,0,0,0.0,10,10,0.2,60,9,999999999,69,0.0760,0,88,999.000,999.0,99.0 +1976,1,23,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,2.2,100,102600,0,0,298,0,0,0,0,0,0,0,350,2.6,10,10,0.2,60,9,999999999,69,0.0760,0,88,999.000,999.0,99.0 +1976,1,23,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,2.2,100,102600,0,0,298,0,0,0,0,0,0,0,0,0.0,10,10,0.2,60,9,999999999,69,0.0760,0,88,999.000,999.0,99.0 +1976,1,23,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,1.7,96,102400,0,0,298,0,0,0,0,0,0,0,0,0.0,10,10,0.4,60,9,999999999,69,0.0760,0,88,999.000,999.0,99.0 +1976,1,23,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,1.7,100,102600,7,388,296,4,0,4,0,0,0,0,0,0.0,10,10,1.6,90,9,999999999,69,0.0560,0,88,999.000,999.0,99.0 +1976,1,23,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,1.1,96,102600,157,1412,295,41,0,41,4500,0,4500,1320,0,0.0,10,10,2.4,150,9,999999999,69,0.0560,0,88,999.000,999.0,99.0 +1976,1,23,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,1.7,96,102600,343,1412,298,116,1,116,12700,100,12700,3620,140,3.1,10,10,1.6,90,9,999999999,60,0.0560,0,88,999.000,999.0,99.0 +1976,1,23,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,2.2,96,102600,483,1412,301,155,0,155,17200,0,17200,5320,60,2.6,10,10,4.8,120,9,999999999,60,0.0560,0,88,999.000,999.0,99.0 +1976,1,23,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,1.7,89,102600,568,1412,303,191,1,191,21300,100,21200,6690,300,2.1,10,10,6.4,180,9,999999999,60,0.0560,0,88,999.000,999.0,99.0 +1976,1,23,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,2.2,89,102500,592,1412,306,212,2,211,23500,200,23400,7280,290,3.6,10,10,9.7,270,9,999999999,60,0.0560,0,88,999.000,999.0,99.0 +1976,1,23,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,2.2,89,102500,553,1412,291,202,8,199,22300,700,22000,6700,310,3.6,10,8,9.7,310,9,999999999,60,0.0560,0,88,999.000,999.0,99.0 +1976,1,23,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,2.2,86,102500,453,1412,289,229,281,139,24100,26000,15800,2880,310,2.6,7,7,9.7,460,9,999999999,60,0.0560,0,88,999.000,999.0,99.0 +1976,1,23,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,1.7,82,102500,300,1412,288,106,96,85,11400,7700,9800,1840,0,0.0,7,7,9.7,460,9,999999999,60,0.0560,0,88,999.000,999.0,99.0 +1976,1,23,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,1.1,89,102500,107,1412,275,31,24,29,3400,1400,3300,670,0,0.0,5,5,19.3,77777,9,999999999,60,0.0560,0,88,999.000,999.0,99.0 +1976,1,23,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,1.1,89,102400,0,35,291,0,0,0,0,0,0,0,110,2.1,9,9,24.1,1220,9,999999999,60,0.0760,0,88,999.000,999.0,99.0 +1976,1,23,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,1.7,92,102400,0,0,300,0,0,0,0,0,0,0,130,2.1,10,10,24.1,1220,9,999999999,60,0.0760,0,88,999.000,999.0,99.0 +1976,1,23,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,0.6,92,102400,0,0,266,0,0,0,0,0,0,0,80,2.6,3,3,24.1,77777,9,999999999,60,0.0760,0,88,999.000,999.0,99.0 +1976,1,23,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,0.0,89,102400,0,0,294,0,0,0,0,0,0,0,50,1.5,10,10,19.3,700,9,999999999,60,0.0760,0,88,999.000,999.0,99.0 +1976,1,23,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,0.6,92,102400,0,0,294,0,0,0,0,0,0,0,0,0.0,10,10,19.3,520,9,999999999,60,0.0760,0,88,999.000,999.0,99.0 +1976,1,23,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,1.1,96,102500,0,0,295,0,0,0,0,0,0,0,0,0.0,10,10,4.0,490,9,999999999,69,0.0760,0,88,999.000,999.0,99.0 +1976,1,23,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.6,0.0,96,102600,0,0,289,0,0,0,0,0,0,0,270,3.6,10,10,0.8,490,9,999999999,69,0.0760,0,88,999.000,999.0,99.0 +1976,1,24,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.6,0.6,100,102600,0,0,290,0,0,0,0,0,0,0,280,2.6,10,10,0.4,490,9,999999999,69,0.0770,0,88,999.000,999.0,99.0 +1976,1,24,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.0,0.0,100,102600,0,0,287,0,0,0,0,0,0,0,260,3.1,10,10,0.2,60,9,999999999,69,0.0770,0,88,999.000,999.0,99.0 +1976,1,24,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.0,0.0,100,102600,0,0,287,0,0,0,0,0,0,0,0,0.0,10,10,0.2,60,9,999999999,69,0.0770,0,88,999.000,999.0,99.0 +1976,1,24,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.0,0.0,100,102600,0,0,287,0,0,0,0,0,0,0,0,0.0,10,10,0.2,60,9,999999999,69,0.0770,0,88,999.000,999.0,99.0 +1976,1,24,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.0,0.0,100,102600,0,0,287,0,0,0,0,0,0,0,0,0.0,10,10,0.2,60,9,999999999,69,0.0770,0,88,999.000,999.0,99.0 +1976,1,24,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.0,0.0,100,102600,0,0,287,0,0,0,0,0,0,0,0,0.0,10,10,0.2,60,9,999999999,69,0.0770,0,88,999.000,999.0,99.0 +1976,1,24,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.6,0.6,100,102600,0,0,290,0,0,0,0,0,0,0,0,0.0,10,10,0.4,60,9,999999999,69,0.0770,0,88,999.000,999.0,99.0 +1976,1,24,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.6,0.6,100,102700,8,412,290,1,0,1,0,0,0,0,0,0.0,10,10,0.4,60,9,999999999,69,0.0670,0,88,999.000,999.0,99.0 +1976,1,24,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.6,0.6,100,102700,161,1412,290,47,4,47,5200,0,5200,1450,0,0.0,10,10,0.4,60,9,999999999,69,0.0670,0,88,999.000,999.0,99.0 +1976,1,24,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.6,0.6,100,102800,347,1412,290,90,1,90,10100,0,10100,3140,0,0.0,10,10,1.6,90,9,999999999,60,0.0670,0,88,999.000,999.0,99.0 +1976,1,24,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.6,0.6,100,102800,488,1412,290,137,8,134,15400,500,15200,4900,300,3.6,10,10,1.3,60,9,999999999,60,0.0670,0,88,999.000,999.0,99.0 +1976,1,24,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.1,0.6,96,102800,573,1412,292,174,3,173,19500,200,19400,6360,220,2.1,10,10,1.6,90,9,999999999,60,0.0670,0,88,999.000,999.0,99.0 +1976,1,24,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,0.0,89,102700,597,1412,294,173,2,172,19500,200,19400,6500,130,2.1,10,10,4.8,120,9,999999999,60,0.0670,0,88,999.000,999.0,99.0 +1976,1,24,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,0.0,85,102700,558,1412,296,156,6,153,17500,400,17400,5780,0,0.0,10,10,9.7,240,9,999999999,60,0.0670,0,88,999.000,999.0,99.0 +1976,1,24,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,0.0,85,102700,458,1412,296,135,2,134,15000,100,15000,4730,0,0.0,10,10,12.9,240,9,999999999,60,0.0670,0,88,999.000,999.0,99.0 +1976,1,24,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,0.6,85,102700,305,1412,259,153,418,63,15600,32700,8500,1110,260,2.6,8,0,24.1,77777,9,999999999,60,0.0670,0,88,999.000,999.0,99.0 +1976,1,24,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.1,0.0,92,102600,112,1412,263,37,75,31,3900,3000,3600,570,270,4.1,8,3,8.0,77777,9,999999999,60,0.0670,0,88,999.000,999.0,99.0 +1976,1,24,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.1,0.0,92,102600,0,59,291,0,0,0,0,0,0,0,300,3.6,10,10,4.8,90,9,999999999,60,0.0770,0,88,999.000,999.0,99.0 +1976,1,24,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.6,0.0,96,102600,0,0,289,0,0,0,0,0,0,0,330,2.6,10,10,2.4,90,9,999999999,60,0.0770,0,88,999.000,999.0,99.0 +1976,1,24,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.6,0.0,96,102600,0,0,289,0,0,0,0,0,0,0,340,2.1,10,10,0.8,60,9,999999999,60,0.0770,0,88,999.000,999.0,99.0 +1976,1,24,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.0,0.0,100,102600,0,0,287,0,0,0,0,0,0,0,60,2.1,10,10,0.4,30,9,999999999,60,0.0770,0,88,999.000,999.0,99.0 +1976,1,24,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.0,0.0,100,102600,0,0,287,0,0,0,0,0,0,0,0,0.0,10,10,0.4,30,9,999999999,60,0.0770,0,88,999.000,999.0,99.0 +1976,1,24,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.0,-0.6,96,102700,0,0,286,0,0,0,0,0,0,0,0,0.0,10,10,0.4,30,9,999999999,50,0.0770,0,88,999.000,999.0,99.0 +1976,1,24,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.0,-0.6,96,102700,0,0,286,0,0,0,0,0,0,0,70,2.6,10,10,0.4,30,9,999999999,50,0.0770,0,88,999.000,999.0,99.0 +1976,1,25,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-0.6,-0.6,100,102700,0,0,284,0,0,0,0,0,0,0,0,0.0,10,10,0.4,60,9,999999999,50,0.0770,0,88,999.000,999.0,99.0 +1976,1,25,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-0.6,-0.6,100,102700,0,0,284,0,0,0,0,0,0,0,0,0.0,10,10,0.4,60,9,999999999,50,0.0770,0,88,999.000,999.0,99.0 +1976,1,25,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-0.6,-0.6,100,102700,0,0,284,0,0,0,0,0,0,0,0,0.0,10,10,0.4,60,9,999999999,50,0.0770,0,88,999.000,999.0,99.0 +1976,1,25,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.1,-1.7,96,102700,0,0,280,0,0,0,0,0,0,0,0,0.0,10,10,0.8,60,9,999999999,50,0.0770,0,88,999.000,999.0,99.0 +1976,1,25,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.1,-1.7,96,102600,0,0,280,0,0,0,0,0,0,0,0,0.0,10,10,0.8,60,9,999999999,50,0.0770,0,88,999.000,999.0,99.0 +1976,1,25,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.1,-1.7,96,102600,0,0,280,0,0,0,0,0,0,0,0,0.0,10,10,0.8,60,9,999999999,50,0.0770,0,88,999.000,999.0,99.0 +1976,1,25,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.1,-1.7,96,102600,0,0,280,0,0,0,0,0,0,0,0,0.0,10,10,1.3,60,9,999999999,60,0.0770,0,88,999.000,999.0,99.0 +1976,1,25,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.1,-1.7,96,102600,9,435,280,4,0,4,0,0,0,0,0,0.0,10,10,1.3,60,9,999999999,60,0.0430,0,88,999.000,999.0,99.0 +1976,1,25,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.1,-1.7,96,102600,165,1411,280,36,4,36,4100,0,4100,1220,0,0.0,10,10,2.0,60,9,999999999,60,0.0430,0,88,999.000,999.0,99.0 +1976,1,25,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-0.6,-1.7,92,102700,351,1411,282,78,4,77,8800,200,8800,2840,0,0.0,10,10,3.2,90,9,999999999,60,0.0430,0,88,999.000,999.0,99.0 +1976,1,25,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-0.6,-1.7,92,102700,492,1411,282,124,3,123,14000,200,14000,4650,0,0.0,10,10,3.2,90,9,999999999,60,0.0430,0,88,999.000,999.0,99.0 +1976,1,25,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.0,-1.1,92,102600,578,1411,286,213,5,211,23500,400,23300,7150,320,2.1,10,10,4.8,120,9,999999999,60,0.0430,0,88,999.000,999.0,99.0 +1976,1,25,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.6,-1.1,89,102600,603,1411,288,167,1,167,18900,100,18900,6410,350,1.5,10,10,8.0,180,9,999999999,60,0.0430,0,88,999.000,999.0,99.0 +1976,1,25,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.1,-1.1,85,102500,564,1411,290,176,2,175,19600,200,19600,6330,50,2.1,10,10,8.0,240,9,999999999,69,0.0430,0,88,999.000,999.0,99.0 +1976,1,25,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,-1.1,82,102500,464,1411,262,283,542,106,29900,49400,13600,2000,0,0.0,10,2,8.0,77777,9,999999999,69,0.0430,0,88,999.000,999.0,99.0 +1976,1,25,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,-0.6,82,102500,311,1411,264,150,375,69,15900,29500,9400,1260,270,1.5,10,2,6.4,77777,9,999999999,69,0.0430,0,88,999.000,999.0,99.0 +1976,1,25,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.1,-0.6,89,102500,117,1411,267,43,63,37,4500,3100,4300,770,0,0.0,10,5,6.4,77777,9,999999999,69,0.0430,0,88,999.000,999.0,99.0 +1976,1,25,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.6,-0.6,92,102500,0,106,289,0,0,0,0,0,0,0,140,2.6,10,10,4.0,240,9,999999999,69,0.0770,0,88,999.000,999.0,99.0 +1976,1,25,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.6,-0.6,92,102400,0,0,289,0,0,0,0,0,0,0,180,3.6,10,10,4.0,240,9,999999999,80,0.0770,0,88,999.000,999.0,99.0 +1976,1,25,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.6,-0.6,92,102400,0,0,289,0,0,0,0,0,0,0,180,2.1,10,10,4.0,150,9,999999999,80,0.0770,0,88,999.000,999.0,99.0 +1976,1,25,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.6,-0.6,92,102400,0,0,289,0,0,0,0,0,0,0,200,2.6,10,10,4.0,150,9,999999999,80,0.0770,0,88,999.000,999.0,99.0 +1976,1,25,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.6,-0.6,92,102400,0,0,289,0,0,0,0,0,0,0,200,3.1,10,10,4.0,150,9,999999999,80,0.0770,0,88,999.000,999.0,99.0 +1976,1,25,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.0,-1.1,92,102500,0,0,286,0,0,0,0,0,0,0,180,2.1,10,10,4.0,120,9,999999999,80,0.0770,0,88,999.000,999.0,99.0 +1976,1,25,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.0,-1.1,92,102500,0,0,286,0,0,0,0,0,0,0,140,3.1,10,10,4.0,120,9,999999999,80,0.0770,0,88,999.000,999.0,99.0 +1976,1,26,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.0,-1.1,92,102500,0,0,286,0,0,0,0,0,0,0,150,3.6,10,10,4.0,120,9,999999999,89,0.0770,0,88,999.000,999.0,99.0 +1976,1,26,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.0,-1.7,89,102500,0,0,285,0,0,0,0,0,0,0,0,0.0,10,10,4.8,3050,9,999999999,89,0.0770,0,88,999.000,999.0,99.0 +1976,1,26,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.0,-1.7,89,102600,0,0,285,0,0,0,0,0,0,0,150,2.1,10,10,9.7,2440,9,999999999,89,0.0770,0,88,999.000,999.0,99.0 +1976,1,26,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.6,-1.7,85,102600,0,0,287,0,0,0,0,0,0,0,0,0.0,10,10,9.7,2440,9,999999999,89,0.0770,0,88,999.000,999.0,99.0 +1976,1,26,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.6,-1.1,89,102500,0,0,288,0,0,0,0,0,0,0,130,3.1,10,10,9.7,2130,9,999999999,100,0.0770,0,88,999.000,999.0,99.0 +1976,1,26,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.1,-1.1,85,102500,0,0,290,0,0,0,0,0,0,0,0,0.0,10,10,9.7,1830,9,999999999,100,0.0770,0,88,999.000,999.0,99.0 +1976,1,26,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.1,-1.1,85,102500,0,0,290,0,0,0,0,0,0,0,0,0.0,10,10,9.7,1680,9,999999999,110,0.0770,0,88,999.000,999.0,99.0 +1976,1,26,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,0.0,89,102600,10,459,294,0,0,0,0,0,0,0,0,0.0,10,10,12.9,1680,9,999999999,110,0.0710,0,88,999.000,999.0,99.0 +1976,1,26,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,0.0,89,102600,169,1411,294,44,3,44,4900,0,4900,1420,130,2.6,10,10,11.3,1680,9,999999999,120,0.0710,0,88,999.000,999.0,99.0 +1976,1,26,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,0.6,89,102600,355,1411,297,58,4,57,6700,200,6700,2260,120,3.1,10,10,16.1,1520,9,999999999,129,0.0710,0,88,999.000,999.0,99.0 +1976,1,26,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,1.1,86,102600,497,1411,302,124,8,121,14000,500,13900,4620,0,0.0,10,10,16.1,1520,9,999999999,129,0.0710,0,88,999.000,999.0,99.0 +1976,1,26,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,1.1,82,102600,583,1411,305,196,9,192,21800,700,21500,6840,120,2.1,10,10,24.1,1680,9,999999999,139,0.0710,0,88,999.000,999.0,99.0 +1976,1,26,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,1.7,86,102500,608,1411,305,191,8,188,21500,700,21200,6950,90,2.1,10,10,24.1,1830,9,999999999,139,0.0710,0,88,999.000,999.0,99.0 +1976,1,26,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,1.7,79,102400,569,1411,310,171,2,170,19200,200,19100,6260,120,2.6,10,10,24.1,1830,9,999999999,150,0.0710,0,88,999.000,999.0,99.0 +1976,1,26,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,2.2,79,102400,470,1411,313,147,3,146,16300,200,16200,5050,110,4.6,10,10,24.1,1520,9,999999999,150,0.0710,0,88,999.000,999.0,99.0 +1976,1,26,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,2.8,83,102300,317,1411,314,85,0,85,9500,0,9500,2890,100,3.1,10,10,32.2,1520,9,999999999,160,0.0710,0,88,999.000,999.0,99.0 +1976,1,26,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,2.8,83,102300,122,1411,314,27,0,27,3000,0,3000,910,130,2.6,10,10,32.2,1680,9,999999999,170,0.0710,0,88,999.000,999.0,99.0 +1976,1,26,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,2.8,79,102200,1,129,316,0,0,0,0,0,0,0,130,5.2,10,10,24.1,1100,9,999999999,179,0.0770,0,88,999.000,999.0,99.0 +1976,1,26,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,2.8,79,102300,0,0,316,0,0,0,0,0,0,0,100,2.1,10,10,24.1,1100,9,999999999,189,0.0770,0,88,999.000,999.0,99.0 +1976,1,26,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,3.9,83,102100,0,0,320,0,0,0,0,0,0,0,120,3.6,10,10,24.1,1220,9,999999999,189,0.0770,0,88,999.000,999.0,99.0 +1976,1,26,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,3.9,80,102100,0,0,322,0,0,0,0,0,0,0,130,4.1,10,10,24.1,1220,9,999999999,200,0.0770,0,88,999.000,999.0,99.0 +1976,1,26,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,3.9,80,102100,0,0,322,0,0,0,0,0,0,0,120,3.6,10,10,24.1,940,9,999999999,209,0.0770,0,88,999.000,999.0,99.0 +1976,1,26,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,1.1,50,102100,0,0,337,0,0,0,0,0,0,0,220,5.7,10,10,24.1,910,9,999999999,220,0.0770,0,88,999.000,999.0,99.0 +1976,1,26,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,2.8,55,102200,0,0,342,0,0,0,0,0,0,0,220,6.2,10,10,24.1,910,9,999999999,229,0.0770,0,88,999.000,999.0,99.0 +1976,1,27,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,3.9,59,102100,0,0,344,0,0,0,0,0,0,0,190,6.7,10,10,24.1,760,9,999999999,229,0.0780,0,88,999.000,999.0,99.0 +1976,1,27,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,6.1,72,102100,0,0,343,0,0,0,0,0,0,0,160,4.1,10,10,19.3,760,9,999999999,240,0.0780,0,88,999.000,999.0,99.0 +1976,1,27,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,6.7,74,102200,0,0,344,0,0,0,0,0,0,0,180,5.7,10,10,24.1,670,9,999999999,250,0.0780,0,88,999.000,999.0,99.0 +1976,1,27,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,7.8,83,102300,0,0,343,0,0,0,0,0,0,0,230,5.2,10,10,6.4,580,9,999999999,259,0.0780,0,88,999.000,999.0,99.0 +1976,1,27,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,8.3,86,102400,0,0,343,0,0,0,0,0,0,0,200,6.7,10,10,6.4,610,9,999999999,259,0.0780,0,88,999.000,999.0,99.0 +1976,1,27,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,8.3,86,102400,0,0,343,0,0,0,0,0,0,0,200,7.7,10,10,6.4,820,9,999999999,250,0.0780,0,88,999.000,999.0,99.0 +1976,1,27,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,8.3,89,102500,0,0,341,0,0,0,0,0,0,0,200,7.2,10,10,6.4,120,9,999999999,250,0.0780,0,88,999.000,999.0,99.0 +1976,1,27,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,8.3,89,102500,11,482,341,4,0,4,0,0,0,0,200,8.2,10,10,9.7,1010,9,999999999,250,0.0540,0,88,999.000,999.0,99.0 +1976,1,27,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,8.3,93,102500,173,1411,338,27,1,27,3100,0,3100,1000,190,8.8,10,10,16.1,1160,9,999999999,240,0.0540,0,88,999.000,999.0,99.0 +1976,1,27,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,8.3,89,102600,360,1411,341,115,1,114,12600,100,12600,3700,200,4.1,10,10,24.1,1220,9,999999999,240,0.0540,0,88,999.000,999.0,99.0 +1976,1,27,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,8.3,86,102700,502,1411,343,173,1,173,19100,100,19100,5810,240,2.1,10,10,24.1,400,9,999999999,240,0.0540,0,88,999.000,999.0,99.0 +1976,1,27,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,8.9,90,102700,589,1411,344,199,1,198,22100,100,22000,7010,200,2.1,10,10,24.1,370,9,999999999,229,0.0540,0,88,999.000,999.0,99.0 +1976,1,27,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,8.9,90,102700,614,1411,344,125,1,124,14400,100,14400,5220,140,2.1,10,10,24.1,370,9,999999999,229,0.0540,0,88,999.000,999.0,99.0 +1976,1,27,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,8.9,83,102600,575,1411,350,189,1,189,21100,100,21100,6710,150,2.6,10,10,24.1,460,9,999999999,229,0.0540,0,88,999.000,999.0,99.0 +1976,1,27,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,8.9,80,102600,475,1411,352,102,0,102,11700,0,11700,4000,210,1.5,10,10,24.1,460,9,999999999,220,0.0540,0,88,999.000,999.0,99.0 +1976,1,27,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,8.9,83,102600,322,1411,350,104,1,104,11400,100,11400,3290,190,1.5,10,10,24.1,400,9,999999999,220,0.0540,0,88,999.000,999.0,99.0 +1976,1,27,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,9.4,86,102600,128,1411,350,30,0,30,3300,0,3300,990,160,2.1,10,10,12.9,460,9,999999999,209,0.0540,0,88,999.000,999.0,99.0 +1976,1,27,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,8.9,86,102600,1,176,347,1,0,1,0,0,0,0,90,2.1,10,10,24.1,760,9,999999999,209,0.0540,0,88,999.000,999.0,99.0 +1976,1,27,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,8.9,96,102500,0,0,338,0,0,0,0,0,0,0,70,2.6,10,10,24.1,700,9,999999999,200,0.0780,0,88,999.000,999.0,99.0 +1976,1,27,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,9.4,96,102500,0,0,342,0,0,0,0,0,0,0,100,2.6,10,10,12.9,670,9,999999999,200,0.0780,0,88,999.000,999.0,99.0 +1976,1,27,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,9.4,96,102500,0,0,342,0,0,0,0,0,0,0,100,2.6,10,10,6.4,400,9,999999999,189,0.0780,0,88,999.000,999.0,99.0 +1976,1,27,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,9.4,96,102500,0,0,342,0,0,0,0,0,0,0,130,4.1,10,10,8.0,490,9,999999999,189,0.0780,0,88,999.000,999.0,99.0 +1976,1,27,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,8.9,96,102500,0,0,338,0,0,0,0,0,0,0,130,3.1,10,10,24.1,700,9,999999999,179,0.0780,0,88,999.000,999.0,99.0 +1976,1,27,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,8.9,93,102500,0,0,341,0,0,0,0,0,0,0,130,5.2,10,10,24.1,730,9,999999999,170,0.0780,0,88,999.000,999.0,99.0 +1976,1,28,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,8.3,96,102400,0,0,335,0,0,0,0,0,0,0,70,2.1,10,10,24.1,880,9,999999999,170,0.0780,0,88,999.000,999.0,99.0 +1976,1,28,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,7.8,96,102400,0,0,332,0,0,0,0,0,0,0,0,0.0,10,10,24.1,850,9,999999999,160,0.0780,0,88,999.000,999.0,99.0 +1976,1,28,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,7.8,96,102300,0,0,323,0,0,0,0,0,0,0,0,0.0,9,9,24.1,850,9,999999999,160,0.0780,0,88,999.000,999.0,99.0 +1976,1,28,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,6.7,96,102200,0,0,326,0,0,0,0,0,0,0,0,0.0,10,10,11.3,3960,9,999999999,150,0.0780,0,88,999.000,999.0,99.0 +1976,1,28,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,6.1,100,102200,0,0,291,0,0,0,0,0,0,0,270,1.5,4,4,1.3,77777,9,999999999,139,0.0780,0,88,999.000,999.0,99.0 +1976,1,28,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,7.2,100,102200,0,0,326,0,0,0,0,0,0,0,320,2.1,10,10,0.4,30,9,999999999,139,0.0780,0,88,999.000,999.0,99.0 +1976,1,28,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,6.1,100,102200,0,0,320,0,0,0,0,0,0,0,110,3.1,10,10,0.4,30,9,999999999,129,0.0780,0,88,999.000,999.0,99.0 +1976,1,28,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,6.1,100,102300,13,505,289,8,7,7,0,0,0,0,210,1.5,5,3,0.8,77777,9,999999999,129,0.0610,0,88,999.000,999.0,99.0 +1976,1,28,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,6.1,100,102300,177,1410,294,61,127,45,6400,7200,5500,840,0,0.0,8,5,0.4,4570,9,999999999,120,0.0610,0,88,999.000,999.0,99.0 +1976,1,28,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,7.2,100,102400,365,1410,326,84,2,84,9500,100,9500,3070,60,2.1,10,10,0.8,60,9,999999999,110,0.0610,0,88,999.000,999.0,99.0 +1976,1,28,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,9.4,100,102400,507,1410,323,177,118,134,19300,11400,15200,3080,200,2.6,8,8,4.8,120,9,999999999,110,0.0610,0,88,999.000,999.0,99.0 +1976,1,28,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,8.9,96,102400,594,1410,338,182,2,181,20400,200,20300,6690,170,2.6,10,10,6.4,120,9,999999999,100,0.0610,0,88,999.000,999.0,99.0 +1976,1,28,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,8.9,93,102400,619,1410,341,153,2,153,17600,100,17500,6130,190,2.1,10,10,8.0,150,9,999999999,100,0.0610,0,88,999.000,999.0,99.0 +1976,1,28,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,8.9,90,102300,581,1410,344,221,8,217,24300,700,24000,7270,170,2.6,10,10,11.3,240,9,999999999,89,0.0610,0,88,999.000,999.0,99.0 +1976,1,28,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,8.9,83,102300,481,1410,340,187,106,151,20300,10000,16800,3440,180,2.1,9,9,11.3,310,9,999999999,89,0.0610,0,88,999.000,999.0,99.0 +1976,1,28,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,8.3,86,102300,328,1410,318,116,165,78,12400,13400,9300,1480,210,3.1,6,6,11.3,310,9,999999999,80,0.0610,0,88,999.000,999.0,99.0 +1976,1,28,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,7.2,89,102300,133,1410,307,49,77,42,5300,4100,4900,880,220,2.6,5,5,11.3,77777,9,999999999,80,0.0610,0,88,999.000,999.0,99.0 +1976,1,28,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,6.7,93,102300,2,200,328,1,1,1,0,0,0,0,190,2.1,10,10,11.3,270,9,999999999,80,0.0610,0,88,999.000,999.0,99.0 +1976,1,28,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,6.7,89,102300,0,0,331,0,0,0,0,0,0,0,0,0.0,10,10,11.3,340,9,999999999,80,0.0780,0,88,999.000,999.0,99.0 +1976,1,28,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,7.2,89,102400,0,0,334,0,0,0,0,0,0,0,0,0.0,10,10,11.3,340,9,999999999,80,0.0780,0,88,999.000,999.0,99.0 +1976,1,28,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,7.2,93,102400,0,0,331,0,0,0,0,0,0,0,240,2.6,10,10,11.3,310,9,999999999,80,0.0780,0,88,999.000,999.0,99.0 +1976,1,28,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,7.2,89,102400,0,0,334,0,0,0,0,0,0,0,240,2.6,10,10,11.3,310,9,999999999,89,0.0780,0,88,999.000,999.0,99.0 +1976,1,28,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,7.2,93,102400,0,0,331,0,0,0,0,0,0,0,0,0.0,10,10,11.3,270,9,999999999,89,0.0780,0,88,999.000,999.0,99.0 +1976,1,28,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,7.2,89,102400,0,0,334,0,0,0,0,0,0,0,0,0.0,10,10,11.3,240,9,999999999,89,0.0780,0,88,999.000,999.0,99.0 +1976,1,29,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,7.2,93,102400,0,0,331,0,0,0,0,0,0,0,130,2.1,10,10,11.3,210,9,999999999,89,0.0780,0,88,999.000,999.0,99.0 +1976,1,29,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,6.7,96,102300,0,0,326,0,0,0,0,0,0,0,120,2.1,10,10,11.3,180,9,999999999,89,0.0780,0,88,999.000,999.0,99.0 +1976,1,29,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,5.6,93,102300,0,0,322,0,0,0,0,0,0,0,120,2.6,10,10,12.9,180,9,999999999,89,0.0780,0,88,999.000,999.0,99.0 +1976,1,29,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,5.0,93,102200,0,0,319,0,0,0,0,0,0,0,120,3.6,10,10,12.9,240,9,999999999,89,0.0780,0,88,999.000,999.0,99.0 +1976,1,29,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,5.0,93,102200,0,0,319,0,0,0,0,0,0,0,120,2.1,10,10,12.9,210,9,999999999,89,0.0780,0,88,999.000,999.0,99.0 +1976,1,29,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,4.4,93,102200,0,0,316,0,0,0,0,0,0,0,100,4.1,10,10,12.9,240,9,999999999,89,0.0780,0,88,999.000,999.0,99.0 +1976,1,29,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,3.3,89,102200,0,0,292,0,0,0,0,0,0,0,110,2.1,7,7,24.1,240,9,999999999,89,0.0780,0,88,999.000,999.0,99.0 +1976,1,29,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,2.8,89,102200,14,529,300,3,0,3,0,0,0,0,130,2.6,9,9,16.1,240,9,999999999,89,0.1830,0,88,999.000,999.0,99.0 +1976,1,29,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,3.9,93,102300,181,1410,312,25,0,25,2900,0,2900,950,210,2.1,10,10,11.3,270,9,999999999,89,0.1830,0,88,999.000,999.0,99.0 +1976,1,29,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,3.9,86,102400,369,1410,287,171,282,97,18100,24100,11800,1890,180,4.1,4,3,11.3,77777,9,999999999,89,0.1830,0,88,999.000,999.0,99.0 +1976,1,29,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,4.4,86,102600,512,1410,292,293,401,147,30100,37400,16500,2890,110,6.2,5,4,11.3,77777,9,999999999,89,0.1830,0,88,999.000,999.0,99.0 +1976,1,29,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,3.9,80,102600,600,1410,302,186,118,136,20600,11800,15600,3230,90,3.6,7,7,12.9,580,9,999999999,89,0.1830,0,88,999.000,999.0,99.0 +1976,1,29,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,3.3,74,102600,625,1410,325,160,9,156,18300,700,18000,6250,130,2.1,10,10,12.9,520,9,999999999,89,0.1830,0,88,999.000,999.0,99.0 +1976,1,29,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,3.9,80,102600,586,1410,322,161,35,146,17700,3400,16200,4270,120,3.1,10,10,12.9,550,9,999999999,89,0.1830,0,88,999.000,999.0,99.0 +1976,1,29,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,4.4,80,102600,487,1410,326,133,3,132,15000,200,14900,4850,70,4.1,10,10,12.9,550,9,999999999,89,0.1830,0,88,999.000,999.0,99.0 +1976,1,29,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,3.9,77,102600,334,1410,325,69,1,68,7800,0,7800,2540,270,2.1,10,10,16.1,490,9,999999999,89,0.1830,0,88,999.000,999.0,99.0 +1976,1,29,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,4.4,80,102700,139,1410,326,24,1,24,2800,0,2800,860,0,0.0,10,10,16.1,490,9,999999999,89,0.1830,0,88,999.000,999.0,99.0 +1976,1,29,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,3.3,74,102800,3,223,325,0,0,0,0,0,0,0,10,2.1,10,10,12.9,490,9,999999999,89,0.1830,0,88,999.000,999.0,99.0 +1976,1,29,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,3.9,80,102900,0,0,322,0,0,0,0,0,0,0,30,2.1,10,10,12.9,520,9,999999999,89,0.0780,0,88,999.000,999.0,99.0 +1976,1,29,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,3.9,80,102900,0,0,322,0,0,0,0,0,0,0,50,2.1,10,10,12.9,520,9,999999999,89,0.0780,0,88,999.000,999.0,99.0 +1976,1,29,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,3.3,77,102900,0,0,322,0,0,0,0,0,0,0,0,0.0,10,10,12.9,490,9,999999999,89,0.0780,0,88,999.000,999.0,99.0 +1976,1,29,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,3.9,83,102900,0,0,320,0,0,0,0,0,0,0,80,2.1,10,10,12.9,490,9,999999999,89,0.0780,0,88,999.000,999.0,99.0 +1976,1,29,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,3.9,83,103000,0,0,320,0,0,0,0,0,0,0,0,0.0,10,10,12.9,490,9,999999999,80,0.0780,0,88,999.000,999.0,99.0 +1976,1,29,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,3.3,80,103100,0,0,320,0,0,0,0,0,0,0,30,2.6,10,10,12.9,460,9,999999999,80,0.0780,0,88,999.000,999.0,99.0 +1976,1,30,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,3.3,80,103100,0,0,320,0,0,0,0,0,0,0,350,2.6,10,10,16.1,430,9,999999999,80,0.0790,0,88,999.000,999.0,99.0 +1976,1,30,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,3.3,83,103100,0,0,317,0,0,0,0,0,0,0,130,1.5,10,10,16.1,460,9,999999999,80,0.0790,0,88,999.000,999.0,99.0 +1976,1,30,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,3.3,83,103200,0,0,317,0,0,0,0,0,0,0,0,0.0,10,10,16.1,460,9,999999999,80,0.0790,0,88,999.000,999.0,99.0 +1976,1,30,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,2.8,79,103200,0,0,316,0,0,0,0,0,0,0,10,2.1,10,10,16.1,460,9,999999999,80,0.0790,0,88,999.000,999.0,99.0 +1976,1,30,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,2.2,89,103100,0,0,291,0,0,0,0,0,0,0,90,1.5,8,8,19.3,460,9,999999999,80,0.0790,0,88,999.000,999.0,99.0 +1976,1,30,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,2.8,89,103200,0,0,300,0,0,0,0,0,0,0,0,0.0,9,9,19.3,430,9,999999999,80,0.0790,0,88,999.000,999.0,99.0 +1976,1,30,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,1.7,89,103200,0,0,262,0,0,0,0,0,0,0,0,0.0,0,0,32.2,77777,9,999999999,80,0.0790,0,88,999.000,999.0,99.0 +1976,1,30,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,1.7,92,103200,16,552,260,9,23,7,0,0,0,0,90,1.5,0,0,11.3,77777,9,999999999,80,0.1000,0,88,999.000,999.0,99.0 +1976,1,30,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,2.2,89,103300,186,1410,265,81,333,37,8300,21200,5400,650,20,1.5,0,0,11.3,77777,9,999999999,80,0.1000,0,88,999.000,999.0,99.0 +1976,1,30,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,2.2,79,103300,374,1410,271,213,586,57,22200,50200,8800,1080,0,0.0,0,0,11.3,77777,9,999999999,80,0.1000,0,88,999.000,999.0,99.0 +1976,1,30,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,2.8,74,103300,518,1410,278,331,688,79,34900,64400,11100,1550,270,2.6,2,0,32.2,77777,9,999999999,80,0.1000,0,88,999.000,999.0,99.0 +1976,1,30,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,3.3,68,103200,605,1410,286,404,756,80,42000,72400,10800,1600,340,3.1,0,0,80.5,77777,9,999999999,80,0.1000,0,88,999.000,999.0,99.0 +1976,1,30,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,3.9,61,103100,631,1410,295,428,774,82,44600,74600,11100,1670,290,2.1,0,0,80.5,77777,9,999999999,80,0.1000,0,88,999.000,999.0,99.0 +1976,1,30,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,4.4,62,103000,592,1410,298,395,754,78,41000,72000,10600,1560,260,2.1,0,0,80.5,77777,9,999999999,80,0.1000,0,88,999.000,999.0,99.0 +1976,1,30,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,5.6,60,102900,493,1410,306,308,688,68,31800,63400,9500,1310,320,3.1,0,0,80.5,77777,9,999999999,80,0.1000,0,88,999.000,999.0,99.0 +1976,1,30,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,5.6,60,102900,340,1410,306,184,550,53,19400,45500,8300,990,260,2.1,0,0,80.5,77777,9,999999999,80,0.1000,0,88,999.000,999.0,99.0 +1976,1,30,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,5.6,62,102900,144,1410,304,54,247,30,5600,13900,4200,520,0,0.0,0,0,80.5,77777,9,999999999,80,0.1000,0,88,999.000,999.0,99.0 +1976,1,30,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,5.0,77,102900,4,270,287,2,5,1,0,0,0,0,0,0.0,0,0,80.5,77777,9,999999999,80,0.1000,0,88,999.000,999.0,99.0 +1976,1,30,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,3.9,77,102900,0,0,282,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,80,0.0790,0,88,999.000,999.0,99.0 +1976,1,30,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,2.2,66,102900,0,0,282,0,0,0,0,0,0,0,250,3.1,0,0,24.1,77777,9,999999999,69,0.0790,0,88,999.000,999.0,99.0 +1976,1,30,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,1.1,65,102900,0,0,277,0,0,0,0,0,0,0,250,3.1,0,0,24.1,77777,9,999999999,69,0.0790,0,88,999.000,999.0,99.0 +1976,1,30,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,3.3,80,102900,0,0,277,0,0,0,0,0,0,0,320,2.6,0,0,24.1,77777,9,999999999,69,0.0790,0,88,999.000,999.0,99.0 +1976,1,30,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,3.3,86,102900,0,0,273,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,69,0.0790,0,88,999.000,999.0,99.0 +1976,1,30,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,1.7,89,102900,0,0,262,0,0,0,0,0,0,0,270,3.1,0,0,24.1,77777,9,999999999,69,0.0790,0,88,999.000,999.0,99.0 +1976,1,31,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,2.8,89,102900,0,0,267,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,60,0.0790,0,88,999.000,999.0,99.0 +1976,1,31,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,2.2,93,102900,0,0,263,0,0,0,0,0,0,0,300,2.6,0,0,24.1,77777,9,999999999,60,0.0790,0,88,999.000,999.0,99.0 +1976,1,31,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,1.7,96,102800,0,0,263,0,0,0,0,0,0,0,300,2.1,1,1,1.3,77777,9,999999999,60,0.0790,0,88,999.000,999.0,99.0 +1976,1,31,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.1,1.1,100,102800,0,0,258,0,0,0,0,0,0,0,0,0.0,1,1,0.8,77777,9,999999999,60,0.0790,0,88,999.000,999.0,99.0 +1976,1,31,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,1.1,96,102700,0,0,261,0,0,0,0,0,0,0,0,0.0,1,1,0.8,77777,9,999999999,60,0.0790,0,88,999.000,999.0,99.0 +1976,1,31,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-0.6,-1.1,96,102700,0,0,245,0,0,0,0,0,0,0,300,2.1,0,0,11.3,77777,9,999999999,60,0.0790,0,88,999.000,999.0,99.0 +1976,1,31,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.0,-1.1,92,102700,0,0,247,0,0,0,0,0,0,0,290,2.1,0,0,64.4,77777,9,999999999,60,0.0790,0,88,999.000,999.0,99.0 +1976,1,31,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-0.6,-2.2,89,102700,17,575,244,12,59,7,0,0,0,0,0,0.0,0,0,64.4,77777,9,999999999,69,0.0600,0,88,999.000,999.0,99.0 +1976,1,31,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.6,0.0,96,102700,191,1409,255,90,411,34,9200,26700,5600,610,280,4.6,1,1,16.1,77777,9,999999999,69,0.0600,0,88,999.000,999.0,99.0 +1976,1,31,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,1.7,89,102700,379,1409,267,184,427,69,19000,36400,9100,1270,320,3.6,1,1,19.3,77777,9,999999999,69,0.0600,0,88,999.000,999.0,99.0 +1976,1,31,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,2.8,79,102600,523,1409,279,325,633,90,33900,59000,11800,1740,300,3.6,2,1,64.4,77777,9,999999999,69,0.0600,0,88,999.000,999.0,99.0 +1976,1,31,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,2.8,66,102600,611,1409,291,366,680,71,38500,65600,10000,1510,300,2.1,2,1,64.4,77777,9,999999999,69,0.0600,0,88,999.000,999.0,99.0 +1976,1,31,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,2.2,59,102500,636,1409,295,418,751,79,43800,72700,10800,1640,180,3.6,2,1,64.4,77777,9,999999999,80,0.0600,0,88,999.000,999.0,99.0 +1976,1,31,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,1.7,57,102400,598,1409,294,410,799,72,43200,76700,10400,1500,120,5.7,3,1,64.4,77777,9,999999999,80,0.0600,0,88,999.000,999.0,99.0 +1976,1,31,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,1.1,59,102300,499,1409,293,259,446,102,27700,41600,12900,1920,140,6.2,4,2,64.4,77777,9,999999999,80,0.0600,0,88,999.000,999.0,99.0 +1976,1,31,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,0.6,56,102400,346,1409,292,170,392,75,18000,32200,10100,1370,130,6.2,4,2,64.4,77777,9,999999999,80,0.0600,0,88,999.000,999.0,99.0 +1976,1,31,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,0.6,65,102400,150,1409,280,59,274,31,6100,15800,4400,540,120,5.2,4,1,80.5,77777,9,999999999,80,0.0600,0,88,999.000,999.0,99.0 +1976,1,31,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,0.0,68,102400,5,294,269,4,19,2,0,0,0,0,120,6.2,2,0,80.5,77777,9,999999999,89,0.0600,0,88,999.000,999.0,99.0 +1976,1,31,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,-0.6,68,102400,0,0,267,0,0,0,0,0,0,0,140,6.7,1,0,24.1,77777,9,999999999,89,0.0790,0,88,999.000,999.0,99.0 +1976,1,31,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,0.0,76,102400,0,0,263,0,0,0,0,0,0,0,120,6.2,0,0,24.1,77777,9,999999999,89,0.0790,0,88,999.000,999.0,99.0 +1976,1,31,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,-0.6,76,102400,0,0,260,0,0,0,0,0,0,0,120,6.2,0,0,24.1,77777,9,999999999,89,0.0790,0,88,999.000,999.0,99.0 +1976,1,31,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.2,-0.2,79,102400,0,0,260,0,0,0,0,0,0,0,130,6.0,0,0,24.1,77777,9,999999999,89,0.0790,0,88,999.000,999.0,99.0 +1976,1,31,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.2,0.1,79,102400,0,0,260,0,0,0,0,0,0,0,120,5.7,0,0,24.1,77777,9,999999999,100,0.0790,0,88,999.000,999.0,99.0 +1976,1,31,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.1,0.4,85,102500,0,0,260,0,0,0,0,0,0,0,0,5.5,0,0,24.1,77777,9,999999999,100,0.0790,0,88,999.000,999.0,99.0 +1977,2,1,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.0,0.7,93,102600,0,0,300,0,0,0,0,0,0,0,120,5.3,10,10,16.1,760,9,999999999,139,0.0750,0,88,999.000,999.0,99.0 +1977,2,1,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.9,1.0,92,102600,0,0,300,0,0,0,0,0,0,0,120,5.1,10,10,16.1,850,9,999999999,129,0.0750,0,88,999.000,999.0,99.0 +1977,2,1,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.9,1.4,92,102600,0,0,292,0,0,0,0,0,0,0,120,4.8,10,9,16.1,850,9,999999999,129,0.0750,0,88,999.000,999.0,99.0 +1977,2,1,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,1.7,92,102600,0,0,300,0,0,0,0,0,0,0,120,4.6,10,10,16.1,880,9,999999999,129,0.0750,0,88,999.000,999.0,99.0 +1977,2,1,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,1.7,92,102600,0,0,300,0,0,0,0,0,0,0,120,5.2,10,10,16.1,490,9,999999999,129,0.0750,0,88,999.000,999.0,99.0 +1977,2,1,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,1.7,92,102600,0,0,300,0,0,0,0,0,0,0,120,4.1,10,10,16.1,490,9,999999999,129,0.0750,0,88,999.000,999.0,99.0 +1977,2,1,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,1.7,92,102700,0,0,300,0,0,0,0,0,0,0,120,2.6,10,10,11.3,400,9,999999999,120,0.0750,0,88,999.000,999.0,99.0 +1977,2,1,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,1.7,92,102700,20,622,300,8,0,8,0,0,0,0,120,3.6,10,10,11.3,400,9,999999999,120,0.1630,0,88,999.000,999.0,99.0 +1977,2,1,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,2.2,93,102700,199,1409,303,48,0,48,5400,0,5400,1610,130,4.1,10,10,11.3,400,9,999999999,120,0.1630,0,88,999.000,999.0,99.0 +1977,2,1,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,2.2,89,102800,389,1409,306,113,0,113,12500,0,12500,3870,120,3.6,10,10,16.1,400,9,999999999,110,0.1630,0,88,999.000,999.0,99.0 +1977,2,1,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,2.8,86,102700,533,1409,292,257,223,173,27900,21600,19600,4010,120,2.6,9,7,16.1,400,9,999999999,110,0.1630,0,88,999.000,999.0,99.0 +1977,2,1,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,3.3,80,102700,621,1409,286,374,569,125,38800,54500,14700,2450,40,2.1,2,2,16.1,77777,9,999999999,110,0.1630,0,88,999.000,999.0,99.0 +1977,2,1,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,3.3,77,102600,647,1409,279,416,674,110,44000,65600,13700,2250,10,1.5,0,0,24.1,77777,9,999999999,110,0.1630,0,88,999.000,999.0,99.0 +1977,2,1,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,3.9,74,102500,609,1409,298,322,414,145,34200,40400,16600,2900,80,1.5,5,4,24.1,77777,9,999999999,100,0.1630,0,88,999.000,999.0,99.0 +1977,2,1,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,3.9,69,102400,510,1409,294,278,518,93,29100,47900,11700,1770,130,2.1,1,1,32.2,77777,9,999999999,100,0.1630,0,88,999.000,999.0,99.0 +1977,2,1,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,2.2,68,102400,356,1409,286,167,414,65,17500,34500,8700,1190,130,4.6,1,1,72.4,77777,9,999999999,100,0.1630,0,88,999.000,999.0,99.0 +1977,2,1,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,1.1,71,102400,160,1409,281,45,80,37,4900,4200,4400,670,120,5.2,3,2,72.4,77777,9,999999999,100,0.1630,0,88,999.000,999.0,99.0 +1977,2,1,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,0.6,76,102400,7,364,277,1,1,1,0,0,0,0,120,5.2,4,3,24.1,77777,9,999999999,100,0.1630,0,88,999.000,999.0,99.0 +1977,2,1,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,0.6,82,102400,0,0,270,0,0,0,0,0,0,0,120,6.2,3,2,24.1,77777,9,999999999,100,0.0750,0,88,999.000,999.0,99.0 +1977,2,1,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,0.6,82,102300,0,0,287,0,0,0,0,0,0,0,120,3.6,9,8,24.1,310,9,999999999,100,0.0750,0,88,999.000,999.0,99.0 +1977,2,1,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,0.0,79,102300,0,0,274,0,0,0,0,0,0,0,130,3.6,4,4,24.1,77777,9,999999999,100,0.0750,0,88,999.000,999.0,99.0 +1977,2,1,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,-1.1,82,102300,0,0,262,0,0,0,0,0,0,0,150,2.6,2,2,24.1,77777,9,999999999,89,0.0750,0,88,999.000,999.0,99.0 +1977,2,1,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,0.6,82,102300,0,0,301,0,0,0,0,0,0,0,120,3.1,10,10,24.1,240,9,999999999,89,0.0750,0,88,999.000,999.0,99.0 +1977,2,1,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,-0.6,82,102300,0,0,264,0,0,0,0,0,0,0,130,2.6,2,2,24.1,77777,9,999999999,89,0.0750,0,88,999.000,999.0,99.0 +1977,2,2,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,-1.1,82,102200,0,0,254,0,0,0,0,0,0,0,120,1.5,0,0,24.1,77777,9,999999999,89,0.0760,0,88,999.000,999.0,99.0 +1977,2,2,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.1,-0.6,89,102200,0,0,291,0,0,0,0,0,0,0,150,1.5,10,10,24.1,210,9,999999999,89,0.0760,0,88,999.000,999.0,99.0 +1977,2,2,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,-0.6,82,102200,0,0,295,0,0,0,0,0,0,0,110,1.5,10,10,24.1,240,9,999999999,89,0.0760,0,88,999.000,999.0,99.0 +1977,2,2,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.1,-0.6,89,102200,0,0,252,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,89,0.0760,0,88,999.000,999.0,99.0 +1977,2,2,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.0,-0.6,96,102100,0,0,253,0,0,0,0,0,0,0,330,1.5,1,1,24.1,77777,9,999999999,89,0.0760,0,88,999.000,999.0,99.0 +1977,2,2,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.1,0.6,96,102100,0,0,292,0,0,0,0,0,0,0,60,1.5,10,10,6.4,90,9,999999999,89,0.0760,0,88,999.000,999.0,99.0 +1977,2,2,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-0.6,-1.1,96,102100,0,0,253,0,0,0,0,0,0,0,0,0.0,2,2,6.4,77777,9,999999999,89,0.0760,0,88,999.000,999.0,99.0 +1977,2,2,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.1,0.6,96,102200,22,646,284,4,0,4,0,0,0,0,30,1.5,10,9,6.4,90,9,999999999,89,0.1570,0,88,999.000,999.0,99.0 +1977,2,2,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,1.1,96,102200,204,1408,269,74,107,59,8100,7200,7000,1250,290,2.1,8,4,16.1,77777,9,999999999,89,0.1570,0,88,999.000,999.0,99.0 +1977,2,2,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,1.7,89,102100,394,1408,267,207,489,71,21500,42200,9600,1310,310,3.6,1,1,32.2,77777,9,999999999,89,0.1570,0,88,999.000,999.0,99.0 +1977,2,2,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,-0.6,63,102100,539,1408,276,310,544,103,32200,50800,12700,1960,120,6.2,1,1,64.4,77777,9,999999999,80,0.1570,0,88,999.000,999.0,99.0 +1977,2,2,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,-0.6,60,102100,627,1408,282,370,550,127,40000,54100,15800,2520,120,7.7,2,2,64.4,77777,9,999999999,80,0.1570,0,88,999.000,999.0,99.0 +1977,2,2,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,-1.1,56,102000,653,1408,280,393,598,119,41300,58100,14300,2420,120,8.2,1,1,64.4,77777,9,999999999,80,0.1570,0,88,999.000,999.0,99.0 +1977,2,2,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,-0.6,58,101900,615,1408,275,369,612,104,38900,59000,13000,2100,120,7.7,0,0,64.4,77777,9,999999999,80,0.1570,0,88,999.000,999.0,99.0 +1977,2,2,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,-1.1,56,101900,516,1408,275,307,600,89,32200,55800,11600,1710,120,8.2,0,0,64.4,77777,9,999999999,80,0.1570,0,88,999.000,999.0,99.0 +1977,2,2,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,-1.7,58,101900,363,1408,270,182,453,68,19000,37900,9200,1240,120,7.7,0,0,64.4,77777,9,999999999,80,0.1570,0,88,999.000,999.0,99.0 +1977,2,2,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,-1.7,60,101800,166,1408,268,57,172,37,6000,9800,4800,660,110,7.7,0,0,64.4,77777,9,999999999,80,0.1570,0,88,999.000,999.0,99.0 +1977,2,2,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,-2.2,65,101800,8,387,261,3,2,3,0,0,0,0,110,7.2,0,0,64.4,77777,9,999999999,80,0.1570,0,88,999.000,999.0,99.0 +1977,2,2,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,-2.2,65,101900,0,0,261,0,0,0,0,0,0,0,120,7.7,0,0,24.1,77777,9,999999999,80,0.0760,0,88,999.000,999.0,99.0 +1977,2,2,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,-2.8,60,101900,0,0,262,0,0,0,0,0,0,0,110,10.3,0,0,24.1,77777,9,999999999,80,0.0760,0,88,999.000,999.0,99.0 +1977,2,2,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,-2.8,62,101900,0,0,260,0,0,0,0,0,0,0,110,7.7,0,0,24.1,77777,9,999999999,80,0.0760,0,88,999.000,999.0,99.0 +1977,2,2,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,-2.8,62,101900,0,0,260,0,0,0,0,0,0,0,110,7.7,0,0,24.1,77777,9,999999999,80,0.0760,0,88,999.000,999.0,99.0 +1977,2,2,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,-2.8,62,101900,0,0,260,0,0,0,0,0,0,0,110,8.8,0,0,24.1,77777,9,999999999,69,0.0760,0,88,999.000,999.0,99.0 +1977,2,2,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,-2.8,65,102000,0,0,258,0,0,0,0,0,0,0,110,7.7,0,0,24.1,77777,9,999999999,69,0.0760,0,88,999.000,999.0,99.0 +1977,2,3,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,-3.3,62,102000,0,0,258,0,0,0,0,0,0,0,100,6.2,0,0,24.1,77777,9,999999999,69,0.0760,0,88,999.000,999.0,99.0 +1977,2,3,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,-3.3,62,102000,0,0,258,0,0,0,0,0,0,0,110,7.7,0,0,24.1,77777,9,999999999,69,0.0760,0,88,999.000,999.0,99.0 +1977,2,3,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,-3.3,70,102000,0,0,252,0,0,0,0,0,0,0,120,6.2,0,0,24.1,77777,9,999999999,69,0.0760,0,88,999.000,999.0,99.0 +1977,2,3,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,-3.3,70,102000,0,0,252,0,0,0,0,0,0,0,80,4.1,0,0,24.1,77777,9,999999999,69,0.0760,0,88,999.000,999.0,99.0 +1977,2,3,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,-3.3,70,102100,0,0,252,0,0,0,0,0,0,0,110,5.2,0,0,24.1,77777,9,999999999,69,0.0760,0,88,999.000,999.0,99.0 +1977,2,3,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,-3.3,67,102100,0,0,253,0,0,0,0,0,0,0,90,4.1,0,0,24.1,77777,9,999999999,69,0.0760,0,88,999.000,999.0,99.0 +1977,2,3,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.1,-3.3,73,102100,0,0,249,0,0,0,0,0,0,0,120,4.1,0,0,24.1,77777,9,999999999,69,0.0760,0,88,999.000,999.0,99.0 +1977,2,3,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,-3.3,70,102200,25,692,252,17,79,9,0,0,0,0,70,4.1,0,0,80.5,77777,9,999999999,69,0.0560,0,88,999.000,999.0,99.0 +1977,2,3,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,-2.8,67,102300,209,1408,256,103,496,30,10600,35600,5300,580,120,6.2,0,0,64.4,77777,9,999999999,69,0.0560,0,88,999.000,999.0,99.0 +1977,2,3,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,-2.8,60,102400,400,1408,262,245,716,44,26100,63600,7900,930,130,5.7,0,0,64.4,77777,9,999999999,69,0.0560,0,88,999.000,999.0,99.0 +1977,2,3,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,-2.8,53,102400,544,1408,269,367,815,54,39000,76800,9100,1220,130,7.7,0,0,64.4,77777,9,999999999,69,0.0560,0,88,999.000,999.0,99.0 +1977,2,3,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,-2.2,51,102300,633,1408,273,444,859,61,47100,82700,9800,1390,130,6.7,0,0,64.4,77777,9,999999999,69,0.0560,0,88,999.000,999.0,99.0 +1977,2,3,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,-2.2,51,102300,659,1408,273,466,871,62,49500,84300,9800,1430,130,8.2,0,0,64.4,77777,9,999999999,69,0.0560,0,88,999.000,999.0,99.0 +1977,2,3,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,-2.2,51,102300,622,1408,273,432,854,60,46000,82000,9700,1360,130,8.2,0,0,64.4,77777,9,999999999,69,0.0560,0,88,999.000,999.0,99.0 +1977,2,3,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,-2.2,51,102300,522,1408,273,346,802,52,36900,75100,8900,1180,130,7.2,0,0,64.4,77777,9,999999999,69,0.0560,0,88,999.000,999.0,99.0 +1977,2,3,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,-2.2,53,102300,369,1408,272,217,688,41,23300,59800,7500,860,120,7.7,0,0,64.4,77777,9,999999999,69,0.0560,0,88,999.000,999.0,99.0 +1977,2,3,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,-2.8,60,102400,172,1408,262,75,423,26,7900,28200,4400,500,120,6.7,0,0,64.4,77777,9,999999999,69,0.0560,0,88,999.000,999.0,99.0 +1977,2,3,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,-2.8,65,102400,10,434,267,6,24,4,0,0,0,0,120,7.2,2,2,64.4,77777,9,999999999,80,0.0560,0,88,999.000,999.0,99.0 +1977,2,3,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,-2.8,67,102400,0,0,267,0,0,0,0,0,0,0,120,6.7,3,3,24.1,77777,9,999999999,80,0.0760,0,88,999.000,999.0,99.0 +1977,2,3,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,-2.8,67,102500,0,0,277,0,0,0,0,0,0,0,120,6.2,7,7,24.1,1520,9,999999999,89,0.0760,0,88,999.000,999.0,99.0 +1977,2,3,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,-2.8,70,102500,0,0,262,0,0,0,0,0,0,0,120,5.2,2,2,24.1,77777,9,999999999,89,0.0760,0,88,999.000,999.0,99.0 +1977,2,3,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,-2.8,70,102500,0,0,262,0,0,0,0,0,0,0,110,4.1,2,2,24.1,77777,9,999999999,89,0.0760,0,88,999.000,999.0,99.0 +1977,2,3,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,-2.2,73,102500,0,0,275,0,0,0,0,0,0,0,110,4.1,7,7,24.1,2440,9,999999999,100,0.0760,0,88,999.000,999.0,99.0 +1977,2,3,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,-2.8,70,102500,0,0,271,0,0,0,0,0,0,0,120,4.1,6,6,24.1,2440,9,999999999,100,0.0760,0,88,999.000,999.0,99.0 +1977,2,4,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,-2.8,67,102600,0,0,265,0,0,0,0,0,0,0,120,5.2,3,2,24.1,77777,9,999999999,110,0.0770,0,88,999.000,999.0,99.0 +1977,2,4,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,-2.2,73,102600,0,0,275,0,0,0,0,0,0,0,60,2.1,7,7,24.1,3660,9,999999999,110,0.0770,0,88,999.000,999.0,99.0 +1977,2,4,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,-2.8,73,102700,0,0,263,0,0,0,0,0,0,0,120,5.2,7,3,24.1,77777,9,999999999,120,0.0770,0,88,999.000,999.0,99.0 +1977,2,4,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,-2.8,70,102700,0,0,262,0,0,0,0,0,0,0,120,6.7,3,2,24.1,77777,9,999999999,120,0.0770,0,88,999.000,999.0,99.0 +1977,2,4,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,-2.8,73,102700,0,0,269,0,0,0,0,0,0,0,120,6.7,8,6,24.1,3660,9,999999999,120,0.0770,0,88,999.000,999.0,99.0 +1977,2,4,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,-2.8,70,102800,0,0,293,0,0,0,0,0,0,0,110,6.7,10,10,24.1,3660,9,999999999,120,0.0770,0,88,999.000,999.0,99.0 +1977,2,4,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.1,-2.2,79,102800,0,0,275,0,0,0,0,0,0,0,40,2.1,9,8,72.4,2740,9,999999999,120,0.0770,0,88,999.000,999.0,99.0 +1977,2,4,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,-1.7,79,102800,27,716,278,16,6,16,0,0,0,0,100,3.1,9,8,80.5,2740,9,999999999,120,0.0450,0,88,999.000,999.0,99.0 +1977,2,4,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,-2.8,64,102900,215,1408,290,66,43,59,7200,3200,6700,1410,100,6.2,9,9,64.4,2290,9,999999999,120,0.0450,0,88,999.000,999.0,99.0 +1977,2,4,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,-1.7,65,102900,405,1408,289,130,136,91,14400,12300,10800,2020,80,5.2,8,8,64.4,2130,9,999999999,110,0.0450,0,88,999.000,999.0,99.0 +1977,2,4,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,0.0,70,102900,550,1408,293,263,217,179,28600,21200,20200,4180,340,2.6,8,8,64.4,1980,9,999999999,110,0.0450,0,88,999.000,999.0,99.0 +1977,2,4,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,-1.1,63,102900,639,1408,295,269,179,189,29500,18100,21300,4570,120,1.5,8,8,64.4,1980,9,999999999,110,0.0450,0,88,999.000,999.0,99.0 +1977,2,4,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,-0.6,58,102800,666,1408,289,399,527,152,42700,52400,17800,3120,120,2.1,5,4,64.4,77777,9,999999999,110,0.0450,0,88,999.000,999.0,99.0 +1977,2,4,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,-1.1,54,102700,628,1408,293,383,585,125,39900,56200,14800,2470,130,7.2,5,5,64.4,77777,9,999999999,110,0.0450,0,88,999.000,999.0,99.0 +1977,2,4,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,-1.1,58,102600,529,1408,287,274,386,131,28900,36500,15100,2550,120,7.7,8,4,64.4,77777,9,999999999,110,0.0450,0,88,999.000,999.0,99.0 +1977,2,4,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,-1.1,60,102600,375,1408,286,134,183,86,14500,15800,10200,1640,120,5.7,10,5,64.4,77777,9,999999999,110,0.0450,0,88,999.000,999.0,99.0 +1977,2,4,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,-1.7,62,102500,178,1408,281,69,24,66,7500,1700,7300,1420,120,5.7,10,5,64.4,77777,9,999999999,110,0.0450,0,88,999.000,999.0,99.0 +1977,2,4,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,-1.7,67,102500,11,457,275,8,16,6,0,0,0,0,120,5.2,8,4,64.4,77777,9,999999999,110,0.0450,0,88,999.000,999.0,99.0 +1977,2,4,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,-1.7,67,102500,0,0,277,0,0,0,0,0,0,0,120,5.2,10,5,24.1,77777,9,999999999,110,0.0770,0,88,999.000,999.0,99.0 +1977,2,4,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,-1.7,73,102400,0,0,268,0,0,0,0,0,0,0,120,4.1,10,3,24.1,77777,9,999999999,120,0.0770,0,88,999.000,999.0,99.0 +1977,2,4,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,-2.2,70,102400,0,0,265,0,0,0,0,0,0,0,130,5.2,8,2,24.1,77777,9,999999999,120,0.0770,0,88,999.000,999.0,99.0 +1977,2,4,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,-2.2,73,102400,0,0,259,0,0,0,0,0,0,0,120,5.2,5,1,24.1,77777,9,999999999,120,0.0770,0,88,999.000,999.0,99.0 +1977,2,4,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,-2.8,73,102400,0,0,257,0,0,0,0,0,0,0,120,4.1,2,1,24.1,77777,9,999999999,120,0.0770,0,88,999.000,999.0,99.0 +1977,2,4,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,-2.2,76,102300,0,0,253,0,0,0,0,0,0,0,110,4.1,2,0,24.1,77777,9,999999999,120,0.0770,0,88,999.000,999.0,99.0 +1977,2,5,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.6,-1.7,85,102300,0,0,249,0,0,0,0,0,0,0,70,2.6,1,0,24.1,77777,9,999999999,129,0.0770,0,88,999.000,999.0,99.0 +1977,2,5,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.1,-2.2,79,102300,0,0,250,0,0,0,0,0,0,0,120,6.2,1,0,24.1,77777,9,999999999,129,0.0770,0,88,999.000,999.0,99.0 +1977,2,5,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,-2.8,73,102300,0,0,252,0,0,0,0,0,0,0,120,5.7,4,0,24.1,77777,9,999999999,129,0.0770,0,88,999.000,999.0,99.0 +1977,2,5,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,-2.8,73,102200,0,0,277,0,0,0,0,0,0,0,110,7.2,10,8,24.1,4570,9,999999999,129,0.0770,0,88,999.000,999.0,99.0 +1977,2,5,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.6,-2.2,82,102200,0,0,287,0,0,0,0,0,0,0,360,2.1,10,10,24.1,6100,9,999999999,129,0.0770,0,88,999.000,999.0,99.0 +1977,2,5,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.0,-1.7,89,102200,0,0,267,0,0,0,0,0,0,0,10,2.1,8,7,24.1,6100,9,999999999,129,0.0770,0,88,999.000,999.0,99.0 +1977,2,5,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,-2.2,76,102200,0,0,292,0,0,0,0,0,0,0,70,3.1,10,10,64.4,3660,9,999999999,139,0.0770,0,88,999.000,999.0,99.0 +1977,2,5,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,-2.8,70,102200,29,739,293,7,0,7,800,0,800,260,110,7.7,10,10,72.4,1980,9,999999999,139,0.1720,0,88,999.000,999.0,99.0 +1977,2,5,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,-1.7,76,102300,220,1407,294,39,2,39,4500,0,4500,1430,360,2.1,10,10,64.4,1830,9,999999999,139,0.1720,0,88,999.000,999.0,99.0 +1977,2,5,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,-1.1,76,102300,411,1407,297,58,4,57,6900,200,6800,2370,80,3.1,10,10,32.2,1980,9,999999999,139,0.1720,0,88,999.000,999.0,99.0 +1977,2,5,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,-1.1,68,102300,556,1407,304,166,5,164,18600,400,18500,6040,0,0.0,10,10,64.4,2740,9,999999999,139,0.1720,0,88,999.000,999.0,99.0 +1977,2,5,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,-0.6,68,102200,645,1407,299,127,29,113,14000,2800,12700,3590,120,5.7,10,9,64.4,2740,9,999999999,139,0.1720,0,88,999.000,999.0,99.0 +1977,2,5,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,-1.7,58,102200,672,1407,303,229,50,205,25100,5000,22800,6020,130,7.7,10,9,64.4,3050,9,999999999,150,0.1720,0,88,999.000,999.0,99.0 +1977,2,5,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,-1.7,56,102300,634,1407,305,246,101,201,27100,10000,22600,5730,120,6.2,9,9,64.4,3050,9,999999999,150,0.1720,0,88,999.000,999.0,99.0 +1977,2,5,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,-1.7,58,102300,535,1407,296,181,70,154,19800,6700,17300,4260,130,6.2,8,8,64.4,2740,9,999999999,150,0.1720,0,88,999.000,999.0,99.0 +1977,2,5,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,-2.2,58,102300,381,1407,300,61,0,61,7100,0,7100,2450,130,6.2,9,9,64.4,2130,9,999999999,150,0.1720,0,88,999.000,999.0,99.0 +1977,2,5,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,-1.1,68,102200,184,1407,304,23,31,19,2700,2000,2400,400,120,7.7,10,10,64.4,1220,9,999999999,150,0.1720,0,88,999.000,999.0,99.0 +1977,2,5,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,-1.7,67,102300,13,504,302,2,0,2,0,0,0,0,120,7.7,10,10,24.1,1070,9,999999999,150,0.1720,0,88,999.000,999.0,99.0 +1977,2,5,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,-1.7,67,102300,0,0,302,0,0,0,0,0,0,0,120,7.2,10,10,24.1,980,9,999999999,150,0.0770,0,88,999.000,999.0,99.0 +1977,2,5,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,-1.7,67,102400,0,0,302,0,0,0,0,0,0,0,120,6.7,10,10,24.1,760,9,999999999,150,0.0770,0,88,999.000,999.0,99.0 +1977,2,5,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,-1.7,67,102400,0,0,302,0,0,0,0,0,0,0,120,6.2,10,10,24.1,730,9,999999999,150,0.0770,0,88,999.000,999.0,99.0 +1977,2,5,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,-1.7,67,102500,0,0,302,0,0,0,0,0,0,0,110,6.7,10,10,24.1,640,9,999999999,150,0.0770,0,88,999.000,999.0,99.0 +1977,2,5,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,-1.1,70,102500,0,0,302,0,0,0,0,0,0,0,110,8.2,10,10,24.1,520,9,999999999,160,0.0770,0,88,999.000,999.0,99.0 +1977,2,5,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,-0.6,73,102500,0,0,303,0,0,0,0,0,0,0,120,6.7,10,10,24.1,520,9,999999999,160,0.0770,0,88,999.000,999.0,99.0 +1977,2,6,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,-0.6,73,102500,0,0,303,0,0,0,0,0,0,0,120,6.7,10,10,24.1,580,9,999999999,160,0.0770,0,88,999.000,999.0,99.0 +1977,2,6,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,-1.1,70,102600,0,0,302,0,0,0,0,0,0,0,110,5.2,10,10,24.1,580,9,999999999,160,0.0770,0,88,999.000,999.0,99.0 +1977,2,6,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,-1.1,70,102600,0,0,302,0,0,0,0,0,0,0,120,5.7,10,10,24.1,580,9,999999999,160,0.0770,0,88,999.000,999.0,99.0 +1977,2,6,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,-1.1,70,102600,0,0,302,0,0,0,0,0,0,0,120,4.6,10,10,24.1,700,9,999999999,160,0.0770,0,88,999.000,999.0,99.0 +1977,2,6,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,-1.1,70,102600,0,0,302,0,0,0,0,0,0,0,110,3.6,10,10,24.1,610,9,999999999,160,0.0770,0,88,999.000,999.0,99.0 +1977,2,6,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,-1.1,70,102600,0,0,302,0,0,0,0,0,0,0,120,6.2,10,10,24.1,610,9,999999999,160,0.0770,0,88,999.000,999.0,99.0 +1977,2,6,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,-1.7,67,102600,0,0,287,0,0,0,0,0,0,0,120,5.2,9,8,72.4,610,9,999999999,160,0.0770,0,88,999.000,999.0,99.0 +1977,2,6,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,-1.7,70,102600,32,762,277,16,17,14,1600,600,1600,290,120,4.6,7,6,80.5,2440,9,999999999,170,0.0470,0,88,999.000,999.0,99.0 +1977,2,6,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,-1.7,67,102600,226,1407,273,88,111,70,9500,7800,8200,1490,130,4.1,7,3,64.4,77777,9,999999999,170,0.0470,0,88,999.000,999.0,99.0 +1977,2,6,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,-1.1,65,102600,417,1407,288,149,65,130,16300,5900,14600,3320,120,5.2,8,7,64.4,7620,9,999999999,170,0.0470,0,88,999.000,999.0,99.0 +1977,2,6,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,-0.6,58,102500,563,1407,297,278,198,199,30000,19400,22200,4670,130,7.7,7,7,64.4,7620,9,999999999,170,0.0470,0,88,999.000,999.0,99.0 +1977,2,6,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,-1.1,56,102500,652,1407,297,347,414,157,36800,40900,17800,3220,130,7.2,8,7,64.4,7620,9,999999999,170,0.0470,0,88,999.000,999.0,99.0 +1977,2,6,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,-0.6,54,102500,678,1407,314,277,88,235,30400,8800,26200,6720,120,7.7,10,9,64.4,7620,9,999999999,179,0.0470,0,88,999.000,999.0,99.0 +1977,2,6,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,-0.6,54,102500,641,1407,314,226,57,200,24800,5600,22200,5750,130,6.2,10,9,64.4,7620,9,999999999,179,0.0470,0,88,999.000,999.0,99.0 +1977,2,6,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,-0.6,56,102500,541,1407,311,118,37,103,12900,3500,11600,3080,120,8.2,10,9,64.4,7620,9,999999999,179,0.0470,0,88,999.000,999.0,99.0 +1977,2,6,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,-1.1,54,102500,387,1407,311,141,14,138,15500,900,15200,4300,130,6.7,10,9,64.4,3660,9,999999999,179,0.0470,0,88,999.000,999.0,99.0 +1977,2,6,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,-1.1,60,102400,190,1407,289,63,180,40,6800,11100,5300,710,130,6.2,7,6,80.5,3660,9,999999999,179,0.0470,0,88,999.000,999.0,99.0 +1977,2,6,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,-1.7,65,102400,15,528,268,11,49,6,0,0,0,0,120,7.7,2,1,80.5,77777,9,999999999,179,0.0470,0,88,999.000,999.0,99.0 +1977,2,6,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,-1.7,65,102400,0,0,263,0,0,0,0,0,0,0,120,6.2,0,0,24.1,77777,9,999999999,170,0.0770,0,88,999.000,999.0,99.0 +1977,2,6,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,-1.7,65,102400,0,0,263,0,0,0,0,0,0,0,120,7.2,0,0,24.1,77777,9,999999999,170,0.0770,0,88,999.000,999.0,99.0 +1977,2,6,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,-1.7,65,102400,0,0,263,0,0,0,0,0,0,0,90,7.2,0,0,24.1,77777,9,999999999,170,0.0770,0,88,999.000,999.0,99.0 +1977,2,6,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,-2.2,65,102300,0,0,272,0,0,0,0,0,0,0,120,6.2,4,3,24.1,77777,9,999999999,160,0.0770,0,88,999.000,999.0,99.0 +1977,2,6,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,-2.2,62,102300,0,0,274,0,0,0,0,0,0,0,110,7.7,4,3,24.1,77777,9,999999999,160,0.0770,0,88,999.000,999.0,99.0 +1977,2,6,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,-2.2,62,102300,0,0,274,0,0,0,0,0,0,0,90,4.1,4,3,24.1,77777,9,999999999,160,0.0770,0,88,999.000,999.0,99.0 +1977,2,7,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,-2.2,65,102300,0,0,261,0,0,0,0,0,0,0,100,4.1,2,0,24.1,77777,9,999999999,160,0.0780,0,88,999.000,999.0,99.0 +1977,2,7,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,-2.2,65,102200,0,0,269,0,0,0,0,0,0,0,90,5.2,6,2,24.1,77777,9,999999999,150,0.0780,0,88,999.000,999.0,99.0 +1977,2,7,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,-2.2,65,102200,0,0,269,0,0,0,0,0,0,0,100,7.2,6,2,24.1,77777,9,999999999,150,0.0780,0,88,999.000,999.0,99.0 +1977,2,7,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,-2.8,65,102100,0,0,263,0,0,0,0,0,0,0,90,4.6,6,1,24.1,77777,9,999999999,150,0.0780,0,88,999.000,999.0,99.0 +1977,2,7,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,-2.8,65,102000,0,0,267,0,0,0,0,0,0,0,100,8.8,7,2,24.1,77777,9,999999999,150,0.0780,0,88,999.000,999.0,99.0 +1977,2,7,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,-2.8,65,102000,0,0,258,0,0,0,0,0,0,0,100,9.8,4,0,24.1,77777,9,999999999,150,0.0780,0,88,999.000,999.0,99.0 +1977,2,7,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,-3.3,62,101900,0,0,258,0,0,0,0,0,0,0,100,9.3,5,0,24.1,77777,9,999999999,150,0.0780,0,88,999.000,999.0,99.0 +1977,2,7,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,-3.3,62,101900,35,809,262,16,35,13,1600,900,1500,220,100,9.3,7,1,40.2,77777,9,999999999,150,0.0860,0,88,999.000,999.0,99.0 +1977,2,7,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,-2.8,58,101900,231,1406,269,85,203,53,9000,13900,6700,960,100,10.3,7,1,72.4,77777,9,999999999,150,0.0860,0,88,999.000,999.0,99.0 +1977,2,7,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,-2.8,53,101900,423,1406,277,203,319,108,21200,28200,12700,2040,100,9.8,7,2,72.4,77777,9,999999999,150,0.0860,0,88,999.000,999.0,99.0 +1977,2,7,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,-2.2,50,101700,569,1406,285,334,573,104,34900,54300,12800,2030,110,10.3,7,2,80.5,77777,9,999999999,139,0.0860,0,88,999.000,999.0,99.0 +1977,2,7,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,-1.7,46,101800,658,1406,292,424,621,135,44000,60000,15800,2690,100,10.3,5,2,80.5,77777,9,999999999,139,0.0860,0,88,999.000,999.0,99.0 +1977,2,7,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,-1.7,46,101800,685,1406,297,376,448,160,40100,44700,18300,3330,110,7.7,7,4,80.5,7620,9,999999999,139,0.0860,0,88,999.000,999.0,99.0 +1977,2,7,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,-1.1,48,101800,647,1406,303,343,266,222,36300,27100,23800,5060,120,8.8,8,6,80.5,7620,9,999999999,139,0.0860,0,88,999.000,999.0,99.0 +1977,2,7,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,-1.7,50,101700,548,1406,312,161,75,132,17700,7200,14900,3810,110,8.2,9,9,80.5,6100,9,999999999,139,0.0860,0,88,999.000,999.0,99.0 +1977,2,7,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,-1.7,54,101700,394,1406,296,190,291,110,20300,25600,13100,2190,120,8.2,9,7,80.5,6100,9,999999999,139,0.0860,0,88,999.000,999.0,99.0 +1977,2,7,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,-1.7,60,101700,196,1406,290,61,41,56,6700,3000,6300,1320,120,6.2,9,7,80.5,6100,9,999999999,139,0.0860,0,88,999.000,999.0,99.0 +1977,2,7,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,-5.0,51,101700,17,574,300,6,0,6,0,0,0,0,110,7.7,10,10,24.1,6100,9,999999999,139,0.0860,0,88,999.000,999.0,99.0 +1977,2,7,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,-2.2,62,101700,0,0,284,0,0,0,0,0,0,0,120,5.7,8,7,24.1,6100,9,999999999,139,0.0780,0,88,999.000,999.0,99.0 +1977,2,7,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,-1.7,62,101600,0,0,287,0,0,0,0,0,0,0,110,7.7,7,7,24.1,5180,9,999999999,139,0.0780,0,88,999.000,999.0,99.0 +1977,2,7,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,-2.2,58,101600,0,0,286,0,0,0,0,0,0,0,100,8.2,6,6,24.1,2740,9,999999999,139,0.0780,0,88,999.000,999.0,99.0 +1977,2,7,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,-2.2,60,101600,0,0,283,0,0,0,0,0,0,0,120,4.1,6,6,24.1,2740,9,999999999,150,0.0780,0,88,999.000,999.0,99.0 +1977,2,7,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,-2.2,62,101500,0,0,295,0,0,0,0,0,0,0,120,4.1,10,9,24.1,6100,9,999999999,150,0.0780,0,88,999.000,999.0,99.0 +1977,2,7,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,-1.7,65,101400,0,0,304,0,0,0,0,0,0,0,90,2.1,10,10,24.1,6100,9,999999999,150,0.0780,0,88,999.000,999.0,99.0 +1977,2,8,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,-2.2,67,101400,0,0,280,0,0,0,0,0,0,0,100,2.6,10,7,24.1,6100,9,999999999,150,0.0780,0,88,999.000,999.0,99.0 +1977,2,8,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,-2.2,65,101400,0,0,293,0,0,0,0,0,0,0,110,5.2,10,9,24.1,6100,9,999999999,150,0.0780,0,88,999.000,999.0,99.0 +1977,2,8,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,-1.1,76,101500,0,0,297,0,0,0,0,0,0,0,110,2.6,10,10,24.1,6100,9,999999999,150,0.0780,0,88,999.000,999.0,99.0 +1977,2,8,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,-1.7,70,101500,0,0,274,0,0,0,0,0,0,0,120,5.2,10,5,24.1,77777,9,999999999,150,0.0780,0,88,999.000,999.0,99.0 +1977,2,8,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,-2.2,67,101500,0,0,270,0,0,0,0,0,0,0,120,5.7,10,3,24.1,77777,9,999999999,150,0.0780,0,88,999.000,999.0,99.0 +1977,2,8,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,-2.2,67,101500,0,0,280,0,0,0,0,0,0,0,120,5.2,10,7,24.1,6100,9,999999999,150,0.0780,0,88,999.000,999.0,99.0 +1977,2,8,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,-2.2,70,101500,0,0,272,0,0,0,0,0,0,0,120,5.2,10,5,24.1,77777,9,999999999,150,0.0780,0,88,999.000,999.0,99.0 +1977,2,8,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,-2.2,70,101500,38,832,282,20,10,19,2100,500,2100,440,130,4.1,10,8,40.2,6100,9,999999999,150,0.0410,0,88,999.000,999.0,99.0 +1977,2,8,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,-1.1,73,101500,237,1406,285,55,5,54,6200,100,6100,1870,330,4.1,10,8,40.2,6100,9,999999999,150,0.0410,0,88,999.000,999.0,99.0 +1977,2,8,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,-1.1,70,101500,429,1406,288,156,86,130,17100,7900,14700,3370,340,2.1,10,8,40.2,6100,9,999999999,150,0.0410,0,88,999.000,999.0,99.0 +1977,2,8,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,-0.6,68,101600,575,1406,285,258,279,144,27800,27800,16400,2970,320,1.5,10,6,40.2,6710,9,999999999,139,0.0410,0,88,999.000,999.0,99.0 +1977,2,8,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,-0.6,60,101600,665,1406,287,424,592,146,45500,58800,17500,2980,270,2.6,9,4,40.2,77777,9,999999999,139,0.0410,0,88,999.000,999.0,99.0 +1977,2,8,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,-0.6,54,101500,691,1406,289,367,384,180,38700,38300,19800,3810,130,5.2,7,2,40.2,77777,9,999999999,139,0.0410,0,88,999.000,999.0,99.0 +1977,2,8,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,-0.6,54,101500,654,1406,285,444,807,73,47500,78700,10700,1590,140,5.7,5,1,64.4,77777,9,999999999,139,0.0410,0,88,999.000,999.0,99.0 +1977,2,8,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,-1.1,56,101600,554,1406,302,231,171,165,25300,16800,18700,3860,130,7.2,8,8,64.4,2440,9,999999999,139,0.0410,0,88,999.000,999.0,99.0 +1977,2,8,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,-0.6,58,101700,400,1406,309,143,54,128,15700,4900,14300,3220,120,6.7,9,9,64.4,2440,9,999999999,139,0.0410,0,88,999.000,999.0,99.0 +1977,2,8,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,-0.6,63,101700,202,1406,287,56,94,43,6000,5800,5200,780,130,6.2,5,5,32.2,77777,9,999999999,139,0.0410,0,88,999.000,999.0,99.0 +1977,2,8,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,-1.1,65,101800,20,597,266,15,81,7,0,0,0,0,130,5.7,0,0,32.2,77777,9,999999999,139,0.0410,0,88,999.000,999.0,99.0 +1977,2,8,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,-1.1,68,101800,0,0,269,0,0,0,0,0,0,0,130,4.6,1,1,24.1,77777,9,999999999,139,0.0780,0,88,999.000,999.0,99.0 +1977,2,8,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,-0.6,73,101900,0,0,276,0,0,0,0,0,0,0,120,5.7,4,4,24.1,77777,9,999999999,139,0.0780,0,88,999.000,999.0,99.0 +1977,2,8,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,-1.1,76,102000,0,0,266,0,0,0,0,0,0,0,140,2.6,2,2,24.1,77777,9,999999999,139,0.0780,0,88,999.000,999.0,99.0 +1977,2,8,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,-1.1,76,102100,0,0,263,0,0,0,0,0,0,0,110,5.2,1,1,24.1,77777,9,999999999,150,0.0780,0,88,999.000,999.0,99.0 +1977,2,8,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,-0.6,79,102100,0,0,267,0,0,0,0,0,0,0,110,4.6,2,2,24.1,77777,9,999999999,150,0.0780,0,88,999.000,999.0,99.0 +1977,2,8,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,-0.6,79,102200,0,0,284,0,0,0,0,0,0,0,120,3.6,8,8,24.1,1830,9,999999999,150,0.0780,0,88,999.000,999.0,99.0 +1977,2,9,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,-0.6,85,102200,0,0,275,0,0,0,0,0,0,0,70,2.1,7,7,24.1,1830,9,999999999,150,0.0790,0,88,999.000,999.0,99.0 +1977,2,9,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,-1.1,82,102200,0,0,265,0,0,0,0,0,0,0,110,2.1,8,3,24.1,77777,9,999999999,150,0.0790,0,88,999.000,999.0,99.0 +1977,2,9,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,0.0,85,102200,0,0,296,0,0,0,0,0,0,0,80,2.1,10,10,24.1,2130,9,999999999,150,0.0790,0,88,999.000,999.0,99.0 +1977,2,9,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,0.6,89,102300,0,0,297,0,0,0,0,0,0,0,110,2.6,10,10,16.1,1520,9,999999999,150,0.0790,0,88,999.000,999.0,99.0 +1977,2,9,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,0.0,85,102300,0,0,296,0,0,0,0,0,0,0,10,2.1,10,10,24.1,1520,9,999999999,150,0.0790,0,88,999.000,999.0,99.0 +1977,2,9,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,0.6,92,102400,0,0,294,0,0,0,0,0,0,0,330,1.5,10,10,24.1,850,9,999999999,150,0.0790,0,88,999.000,999.0,99.0 +1977,2,9,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,0.6,89,102400,0,0,297,0,0,0,0,0,0,0,110,2.1,10,10,24.1,850,9,999999999,150,0.0790,0,88,999.000,999.0,99.0 +1977,2,9,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,1.1,92,102400,41,878,278,17,15,16,1800,800,1800,390,90,2.1,9,7,24.1,1830,9,999999999,160,0.0750,0,88,999.000,999.0,99.0 +1977,2,9,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,1.1,86,102400,243,1405,294,58,52,50,6500,3800,5900,1070,320,2.1,10,9,24.1,850,9,999999999,160,0.0750,0,88,999.000,999.0,99.0 +1977,2,9,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,1.1,82,102400,435,1405,305,117,5,115,13100,300,13000,4170,130,1.5,10,10,40.2,760,9,999999999,160,0.0750,0,88,999.000,999.0,99.0 +1977,2,9,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,1.7,79,102400,581,1405,310,155,0,155,17600,0,17600,5980,330,2.1,10,10,24.1,850,9,999999999,160,0.0750,0,88,999.000,999.0,99.0 +1977,2,9,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,1.7,76,102400,671,1405,313,189,10,184,21500,800,21100,7310,360,1.5,10,10,24.1,1680,9,999999999,160,0.0750,0,88,999.000,999.0,99.0 +1977,2,9,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,2.8,71,102300,698,1405,315,309,98,261,34000,9800,29000,7400,40,2.6,9,9,16.1,1830,9,999999999,160,0.0750,0,88,999.000,999.0,99.0 +1977,2,9,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,3.3,64,102200,660,1405,307,265,218,164,28800,22400,18300,3520,80,3.1,8,5,24.1,1830,9,999999999,170,0.0750,0,88,999.000,999.0,99.0 +1977,2,9,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,2.8,55,102200,561,1405,302,332,631,83,35300,60200,11200,1670,60,2.1,5,1,40.2,77777,9,999999999,170,0.0750,0,88,999.000,999.0,99.0 +1977,2,9,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,3.3,55,102100,406,1405,309,220,440,95,23300,38400,12100,1770,60,2.6,8,2,40.2,77777,9,999999999,170,0.0750,0,88,999.000,999.0,99.0 +1977,2,9,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,3.9,59,102100,208,1405,322,66,38,61,7300,2800,6900,1430,100,2.6,8,7,40.2,3050,9,999999999,170,0.0750,0,88,999.000,999.0,99.0 +1977,2,9,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,3.9,66,102100,22,644,326,9,4,9,0,0,0,0,120,3.6,10,9,24.1,3660,9,999999999,170,0.0750,0,88,999.000,999.0,99.0 +1977,2,9,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,3.9,69,102000,0,0,333,0,0,0,0,0,0,0,120,4.1,10,10,24.1,1980,9,999999999,170,0.0790,0,88,999.000,999.0,99.0 +1977,2,9,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,4.4,74,102000,0,0,331,0,0,0,0,0,0,0,110,3.6,10,10,24.1,1370,9,999999999,170,0.0790,0,88,999.000,999.0,99.0 +1977,2,9,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,4.4,74,102100,0,0,331,0,0,0,0,0,0,0,120,4.6,10,10,24.1,1340,9,999999999,170,0.0790,0,88,999.000,999.0,99.0 +1977,2,9,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,4.4,77,101900,0,0,328,0,0,0,0,0,0,0,110,5.2,10,10,24.1,1520,9,999999999,179,0.0790,0,88,999.000,999.0,99.0 +1977,2,9,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,4.4,77,101900,0,0,328,0,0,0,0,0,0,0,120,4.1,10,10,24.1,1340,9,999999999,179,0.0790,0,88,999.000,999.0,99.0 +1977,2,9,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,4.4,80,101900,0,0,326,0,0,0,0,0,0,0,120,3.1,10,10,24.1,1220,9,999999999,179,0.0790,0,88,999.000,999.0,99.0 +1977,2,10,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,4.4,80,101900,0,0,326,0,0,0,0,0,0,0,120,5.2,10,10,16.1,1680,9,999999999,179,0.0790,0,88,999.000,999.0,99.0 +1977,2,10,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,5.0,89,101900,0,0,321,0,0,0,0,0,0,0,110,5.7,10,10,24.1,1980,9,999999999,179,0.0790,0,88,999.000,999.0,99.0 +1977,2,10,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,6.1,96,101700,0,0,323,0,0,0,0,0,0,0,100,6.2,10,10,16.1,2130,9,999999999,179,0.0790,0,88,999.000,999.0,99.0 +1977,2,10,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,6.7,89,101700,0,0,331,0,0,0,0,0,0,0,140,5.2,10,10,24.1,1680,9,999999999,179,0.0790,0,88,999.000,999.0,99.0 +1977,2,10,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,5.6,89,101600,0,0,324,0,0,0,0,0,0,0,120,2.1,10,10,24.1,1520,9,999999999,179,0.0790,0,88,999.000,999.0,99.0 +1977,2,10,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,5.6,66,101600,0,0,346,0,0,0,0,0,0,0,200,8.8,10,10,24.1,1520,9,999999999,170,0.0790,0,88,999.000,999.0,99.0 +1977,2,10,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,6.1,64,101600,0,0,352,0,0,0,0,0,0,0,200,11.8,10,10,24.1,1070,9,999999999,170,0.0790,0,88,999.000,999.0,99.0 +1977,2,10,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,7.8,77,101600,45,901,348,8,5,8,900,300,900,210,200,10.3,10,10,11.3,850,9,999999999,160,0.0400,0,88,999.000,999.0,99.0 +1977,2,10,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,8.3,77,101800,249,1405,351,30,7,29,3600,100,3600,1160,210,8.8,10,10,11.3,760,9,999999999,160,0.0400,0,88,999.000,999.0,99.0 +1977,2,10,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,8.9,77,101800,442,1405,338,166,81,140,18100,7500,15800,3610,210,7.2,8,8,24.1,760,9,999999999,150,0.0400,0,88,999.000,999.0,99.0 +1977,2,10,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,9.4,72,101900,588,1405,364,101,11,96,11900,700,11600,4180,210,6.7,10,10,24.1,460,9,999999999,150,0.0400,0,88,999.000,999.0,99.0 +1977,2,10,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,9.4,83,102000,678,1405,353,146,12,141,17100,900,16700,6050,240,7.2,10,10,11.3,460,9,999999999,150,0.0400,0,88,999.000,999.0,99.0 +1977,2,10,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,7.8,75,102100,705,1405,341,287,109,233,31600,10900,26100,6850,250,5.7,9,9,24.1,1160,9,999999999,139,0.0400,0,88,999.000,999.0,99.0 +1977,2,10,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,7.2,69,102100,667,1405,343,257,84,217,28200,8300,24200,6270,210,7.7,9,9,24.1,910,9,999999999,139,0.0400,0,88,999.000,999.0,99.0 +1977,2,10,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,5.6,60,102200,567,1405,354,157,6,155,17800,400,17600,5900,250,7.7,10,10,24.1,1160,9,999999999,129,0.0400,0,88,999.000,999.0,99.0 +1977,2,10,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,5.6,60,102300,413,1405,354,96,3,96,11000,200,10900,3580,250,5.7,10,10,24.1,1160,9,999999999,129,0.0400,0,88,999.000,999.0,99.0 +1977,2,10,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,5.0,59,102300,214,1405,341,67,39,61,7300,2900,6900,1450,230,5.7,10,9,32.2,1070,9,999999999,129,0.0400,0,88,999.000,999.0,99.0 +1977,2,10,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,3.9,57,102400,24,667,329,11,10,10,0,0,0,0,260,6.7,9,8,24.1,1340,9,999999999,129,0.0400,0,88,999.000,999.0,99.0 +1977,2,10,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,4.4,62,102500,0,0,344,0,0,0,0,0,0,0,240,4.6,10,10,24.1,1280,9,999999999,129,0.0790,0,88,999.000,999.0,99.0 +1977,2,10,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,4.4,62,102700,0,0,344,0,0,0,0,0,0,0,260,5.2,10,10,24.1,1340,9,999999999,129,0.0790,0,88,999.000,999.0,99.0 +1977,2,10,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,4.4,64,102700,0,0,332,0,0,0,0,0,0,0,240,2.6,9,9,24.1,1280,9,999999999,129,0.0790,0,88,999.000,999.0,99.0 +1977,2,10,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,4.4,74,102800,0,0,322,0,0,0,0,0,0,0,0,0.0,9,9,24.1,1280,9,999999999,129,0.0790,0,88,999.000,999.0,99.0 +1977,2,10,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,5.0,80,102800,0,0,313,0,0,0,0,0,0,0,120,1.5,8,8,24.1,1280,9,999999999,120,0.0790,0,88,999.000,999.0,99.0 +1977,2,10,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,4.4,86,102800,0,0,301,0,0,0,0,0,0,0,120,2.6,7,7,24.1,1280,9,999999999,120,0.0790,0,88,999.000,999.0,99.0 +1977,2,11,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,5.0,93,102800,0,0,310,0,0,0,0,0,0,0,120,2.6,9,9,24.1,1340,9,999999999,120,0.0800,0,88,999.000,999.0,99.0 +1977,2,11,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,4.4,93,102800,0,0,274,0,0,0,0,0,0,0,150,1.5,0,0,16.1,77777,9,999999999,120,0.0800,0,88,999.000,999.0,99.0 +1977,2,11,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,2.8,93,102800,0,0,277,0,0,0,0,0,0,0,110,2.1,3,3,16.1,77777,9,999999999,120,0.0800,0,88,999.000,999.0,99.0 +1977,2,11,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,3.3,96,102900,0,0,282,0,0,0,0,0,0,0,120,1.5,5,5,16.1,77777,9,999999999,120,0.0800,0,88,999.000,999.0,99.0 +1977,2,11,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,3.3,96,102900,0,0,277,0,0,0,0,0,0,0,0,0.0,3,3,16.1,77777,9,999999999,129,0.0800,0,88,999.000,999.0,99.0 +1977,2,11,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,3.3,96,102900,0,0,277,0,0,0,0,0,0,0,340,1.5,4,3,16.1,77777,9,999999999,139,0.0800,0,88,999.000,999.0,99.0 +1977,2,11,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,2.2,100,102900,0,0,284,0,0,0,0,0,0,0,260,2.1,8,8,9.7,2440,9,999999999,150,0.0800,0,88,999.000,999.0,99.0 +1977,2,11,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,2.8,96,102900,48,948,295,12,3,12,1400,0,1400,430,0,0.0,9,9,11.3,1130,9,999999999,160,0.1120,0,88,999.000,999.0,99.0 +1977,2,11,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,4.4,100,102900,255,1404,310,40,5,39,4600,100,4600,1500,360,1.5,10,10,16.1,1220,9,999999999,170,0.1120,0,88,999.000,999.0,99.0 +1977,2,11,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,5.0,93,102900,448,1404,319,106,4,105,12100,200,12000,3980,0,0.0,10,10,16.1,1160,9,999999999,189,0.1120,0,88,999.000,999.0,99.0 +1977,2,11,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,5.6,93,102900,594,1404,322,188,1,188,21100,100,21000,6870,300,2.6,10,10,24.1,3050,9,999999999,200,0.1120,0,88,999.000,999.0,99.0 +1977,2,11,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,5.6,77,102900,684,1404,335,200,7,196,22600,600,22400,7720,0,0.0,10,10,24.1,1830,9,999999999,209,0.1120,0,88,999.000,999.0,99.0 +1977,2,11,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,6.7,77,102800,711,1404,342,246,6,243,27600,500,27300,9050,0,0.0,10,10,16.1,1070,9,999999999,220,0.1120,0,88,999.000,999.0,99.0 +1977,2,11,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,8.3,89,102800,674,1404,341,116,3,115,13800,200,13700,5130,90,2.6,10,10,4.0,760,9,999999999,229,0.1120,0,88,999.000,999.0,99.0 +1977,2,11,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,9.4,96,102800,574,1404,342,185,0,185,20600,0,20600,6640,90,2.6,10,10,11.3,520,9,999999999,240,0.1120,0,88,999.000,999.0,99.0 +1977,2,11,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,9.4,93,102800,419,1404,345,128,1,127,14100,100,14100,4340,140,2.6,10,10,11.3,460,9,999999999,250,0.1120,0,88,999.000,999.0,99.0 +1977,2,11,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,8.9,96,102700,220,1404,338,51,1,51,5700,0,5700,1750,90,2.1,10,10,12.9,490,9,999999999,240,0.1120,0,88,999.000,999.0,99.0 +1977,2,11,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,9.4,96,102800,27,714,342,9,0,9,0,0,0,0,110,1.5,10,10,12.9,460,9,999999999,240,0.1120,0,88,999.000,999.0,99.0 +1977,2,11,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,8.9,96,102800,0,0,338,0,0,0,0,0,0,0,100,2.6,10,10,11.3,460,9,999999999,229,0.0800,0,88,999.000,999.0,99.0 +1977,2,11,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,9.4,96,102700,0,0,342,0,0,0,0,0,0,0,120,4.1,10,10,24.1,610,9,999999999,229,0.0800,0,88,999.000,999.0,99.0 +1977,2,11,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,9.4,96,102700,0,0,342,0,0,0,0,0,0,0,120,4.1,10,10,24.1,610,9,999999999,220,0.0800,0,88,999.000,999.0,99.0 +1977,2,11,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,8.9,96,102700,0,0,338,0,0,0,0,0,0,0,120,2.1,10,10,24.1,430,9,999999999,220,0.0800,0,88,999.000,999.0,99.0 +1977,2,11,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,8.9,96,102700,0,0,338,0,0,0,0,0,0,0,120,3.6,10,10,24.1,1400,9,999999999,209,0.0800,0,88,999.000,999.0,99.0 +1977,2,11,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,8.9,96,102700,0,0,338,0,0,0,0,0,0,0,120,3.6,10,10,24.1,940,9,999999999,200,0.0800,0,88,999.000,999.0,99.0 +1977,2,12,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,9.4,100,102600,0,0,339,0,0,0,0,0,0,0,120,3.1,10,10,11.3,820,9,999999999,200,0.0800,0,88,999.000,999.0,99.0 +1977,2,12,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,9.4,100,102600,0,0,339,0,0,0,0,0,0,0,110,4.1,10,10,16.1,790,9,999999999,189,0.0800,0,88,999.000,999.0,99.0 +1977,2,12,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,8.9,100,102600,0,0,336,0,0,0,0,0,0,0,100,3.1,10,10,16.1,700,9,999999999,189,0.0800,0,88,999.000,999.0,99.0 +1977,2,12,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,10.0,100,102600,0,0,343,0,0,0,0,0,0,0,110,2.6,10,10,16.1,640,9,999999999,179,0.0800,0,88,999.000,999.0,99.0 +1977,2,12,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,10.0,100,102600,0,0,343,0,0,0,0,0,0,0,110,4.6,10,10,16.1,940,9,999999999,189,0.0800,0,88,999.000,999.0,99.0 +1977,2,12,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,9.4,100,102700,0,0,339,0,0,0,0,0,0,0,90,2.1,10,10,16.1,460,9,999999999,189,0.0800,0,88,999.000,999.0,99.0 +1977,2,12,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,9.4,100,102700,0,0,339,0,0,0,0,0,0,0,110,4.6,10,10,16.1,1070,9,999999999,200,0.0800,0,88,999.000,999.0,99.0 +1977,2,12,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,10.6,90,102700,52,971,354,18,0,18,2000,0,2000,600,150,4.6,10,10,16.1,820,9,999999999,200,0.0790,0,88,999.000,999.0,99.0 +1977,2,12,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,10.6,86,102900,261,1404,357,73,1,73,8100,0,8100,2390,150,2.6,10,10,24.1,310,9,999999999,200,0.0790,0,88,999.000,999.0,99.0 +1977,2,12,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,11.7,87,102600,454,1404,329,243,378,122,25300,34200,14200,2340,140,6.2,8,3,24.1,77777,9,999999999,209,0.0790,0,88,999.000,999.0,99.0 +1977,2,12,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,11.7,84,102900,601,1404,366,196,1,195,21800,100,21800,7070,250,4.1,10,10,24.1,490,9,999999999,220,0.0790,0,88,999.000,999.0,99.0 +1977,2,12,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,10.6,75,102800,691,1404,368,174,11,169,20100,900,19600,7000,240,5.2,10,10,40.2,610,9,999999999,220,0.0790,0,88,999.000,999.0,99.0 +1977,2,12,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,11.1,78,102800,718,1404,369,106,1,105,12700,100,12600,4880,240,4.1,10,10,24.1,730,9,999999999,229,0.0790,0,88,999.000,999.0,99.0 +1977,2,12,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,12.2,84,102800,680,1404,370,110,5,108,13100,300,13000,4890,230,5.2,10,10,11.3,760,9,999999999,229,0.0790,0,88,999.000,999.0,99.0 +1977,2,12,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,12.2,84,102800,580,1404,370,87,0,87,10300,0,10300,3830,230,6.2,10,10,11.3,820,9,999999999,229,0.0790,0,88,999.000,999.0,99.0 +1977,2,12,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,12.2,87,102800,425,1404,367,79,0,78,9000,0,9000,3110,220,4.6,10,10,16.1,790,9,999999999,240,0.0790,0,88,999.000,999.0,99.0 +1977,2,12,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,12.2,87,102800,226,1404,367,68,3,67,7400,100,7400,2100,190,3.1,10,10,24.1,790,9,999999999,229,0.0790,0,88,999.000,999.0,99.0 +1977,2,12,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,11.7,87,102900,30,737,364,9,0,9,1100,0,1100,330,240,2.6,10,10,24.1,1280,9,999999999,220,0.0790,0,88,999.000,999.0,99.0 +1977,2,12,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,10.6,86,102900,0,0,357,0,0,0,0,0,0,0,300,6.2,10,10,24.1,910,9,999999999,200,0.0800,0,88,999.000,999.0,99.0 +1977,2,12,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,8.9,83,103000,0,0,350,0,0,0,0,0,0,0,350,4.6,10,10,24.1,550,9,999999999,189,0.0800,0,88,999.000,999.0,99.0 +1977,2,12,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,7.2,80,103100,0,0,333,0,0,0,0,0,0,0,320,4.6,9,9,24.1,1340,9,999999999,179,0.0800,0,88,999.000,999.0,99.0 +1977,2,12,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,7.2,89,103100,0,0,299,0,0,0,0,0,0,0,300,3.6,2,2,24.1,77777,9,999999999,170,0.0800,0,88,999.000,999.0,99.0 +1977,2,12,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,5.6,96,103100,0,0,277,0,0,0,0,0,0,0,230,2.6,0,0,24.1,77777,9,999999999,160,0.0800,0,88,999.000,999.0,99.0 +1977,2,12,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,5.0,100,103100,0,0,272,0,0,0,0,0,0,0,250,1.5,0,0,24.1,77777,9,999999999,150,0.0800,0,88,999.000,999.0,99.0 +1977,2,13,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,4.4,100,103200,0,0,269,0,0,0,0,0,0,0,350,1.5,0,0,24.1,77777,9,999999999,139,0.0810,0,88,999.000,999.0,99.0 +1977,2,13,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,4.4,100,103200,0,0,269,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,120,0.0810,0,88,999.000,999.0,99.0 +1977,2,13,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,4.4,100,103300,0,0,283,0,0,0,0,0,0,0,40,1.5,4,4,24.1,77777,9,999999999,110,0.0810,0,88,999.000,999.0,99.0 +1977,2,13,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,4.4,100,103300,0,0,302,0,0,0,0,0,0,0,0,0.0,9,9,16.1,240,9,999999999,100,0.0810,0,88,999.000,999.0,99.0 +1977,2,13,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,5.0,100,103300,0,0,314,0,0,0,0,0,0,0,70,1.5,10,10,11.3,310,9,999999999,100,0.0810,0,88,999.000,999.0,99.0 +1977,2,13,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,3.9,100,103300,0,0,299,0,0,0,0,0,0,0,110,2.6,9,9,2.0,370,9,999999999,100,0.0810,0,88,999.000,999.0,99.0 +1977,2,13,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,3.3,100,103300,0,0,296,0,0,0,0,0,0,0,290,1.5,9,9,0.4,370,9,999999999,110,0.0810,0,88,999.000,999.0,99.0 +1977,2,13,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,3.9,100,103300,56,1017,308,16,0,16,1800,0,1800,560,290,2.1,10,10,0.6,370,9,999999999,110,0.1400,0,88,999.000,999.0,99.0 +1977,2,13,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,4.4,100,103300,268,1403,310,62,0,62,7000,0,7000,2170,0,0.0,10,10,1.3,340,9,999999999,110,0.1400,0,88,999.000,999.0,99.0 +1977,2,13,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,5.6,100,103300,461,1403,317,126,1,126,14200,100,14100,4570,0,0.0,10,10,2.0,210,9,999999999,110,0.1400,0,88,999.000,999.0,99.0 +1977,2,13,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,6.1,100,103300,608,1403,320,178,1,178,20100,100,20100,6740,290,2.1,10,10,2.0,210,9,999999999,120,0.1400,0,88,999.000,999.0,99.0 +1977,2,13,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,6.1,93,103300,698,1403,325,247,0,247,27600,0,27600,9010,290,2.1,10,10,11.3,150,9,999999999,120,0.1400,0,88,999.000,999.0,99.0 +1977,2,13,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,6.1,89,103200,725,1403,312,260,155,181,28900,16000,20600,4560,290,2.6,9,8,11.3,210,9,999999999,120,0.1400,0,88,999.000,999.0,99.0 +1977,2,13,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,6.1,80,103100,687,1403,305,398,358,225,42500,36900,24300,5180,290,5.2,9,4,11.3,77777,9,999999999,129,0.1400,0,88,999.000,999.0,99.0 +1977,2,13,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,6.7,74,103100,587,1403,308,334,490,132,35800,47500,15800,2600,280,3.6,5,2,11.3,77777,9,999999999,129,0.1400,0,88,999.000,999.0,99.0 +1977,2,13,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,6.1,69,103100,432,1403,300,217,469,75,22700,41700,9900,1410,320,2.1,1,0,16.1,77777,9,999999999,129,0.1400,0,88,999.000,999.0,99.0 +1977,2,13,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,5.6,66,102900,232,1403,305,78,159,52,8400,10800,6600,950,0,0.0,3,1,24.1,77777,9,999999999,129,0.1400,0,88,999.000,999.0,99.0 +1977,2,13,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,5.0,80,102900,33,783,290,11,18,9,1100,700,1100,180,300,1.5,1,1,24.1,77777,9,999999999,129,0.1400,0,88,999.000,999.0,99.0 +1977,2,13,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,5.0,86,102900,0,0,280,0,0,0,0,0,0,0,340,1.5,1,0,24.1,77777,9,999999999,129,0.0810,0,88,999.000,999.0,99.0 +1977,2,13,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,4.4,96,102900,0,0,271,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,129,0.0810,0,88,999.000,999.0,99.0 +1977,2,13,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,3.3,93,102900,0,0,268,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,129,0.0810,0,88,999.000,999.0,99.0 +1977,2,13,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,2.8,93,102900,0,0,265,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,129,0.0810,0,88,999.000,999.0,99.0 +1977,2,13,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,2.2,96,102800,0,0,261,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,129,0.0810,0,88,999.000,999.0,99.0 +1977,2,13,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.6,0.6,100,102800,0,0,251,0,0,0,0,0,0,0,0,0.0,0,0,16.1,77777,9,999999999,129,0.0810,0,88,999.000,999.0,99.0 +1977,2,14,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.1,1.1,100,102800,0,0,253,0,0,0,0,0,0,0,0,0.0,0,0,4.8,77777,9,999999999,129,0.0810,0,88,999.000,999.0,99.0 +1977,2,14,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.1,1.1,100,102800,0,0,258,0,0,0,0,0,0,0,60,1.5,1,1,0.8,77777,9,999999999,129,0.0810,0,88,999.000,999.0,99.0 +1977,2,14,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-0.6,-0.6,100,102800,0,0,258,0,0,0,0,0,0,0,300,2.1,4,4,0.4,77777,9,999999999,129,0.0810,0,88,999.000,999.0,99.0 +1977,2,14,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.0,0.0,100,102800,0,0,257,0,0,0,0,0,0,0,0,0.0,2,2,1.3,77777,9,999999999,129,0.0810,0,88,999.000,999.0,99.0 +1977,2,14,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-0.6,-0.6,100,102800,0,0,250,0,0,0,0,0,0,0,120,1.5,1,1,2.0,77777,9,999999999,129,0.0810,0,88,999.000,999.0,99.0 +1977,2,14,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.1,-1.1,100,102800,0,0,248,0,0,0,0,0,0,0,310,2.6,1,1,0.8,77777,9,999999999,129,0.0810,0,88,999.000,999.0,99.0 +1977,2,14,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.6,0.6,100,102700,0,0,251,0,0,0,0,0,0,0,310,2.6,0,0,80.5,77777,9,999999999,129,0.0810,0,88,999.000,999.0,99.0 +1977,2,14,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.1,1.1,100,102800,61,1040,253,28,138,16,2500,6300,2100,290,300,2.1,1,0,32.2,77777,9,999999999,120,0.0650,0,88,999.000,999.0,99.0 +1977,2,14,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,2.2,100,102800,274,1403,258,141,534,39,14700,42000,6400,750,260,3.6,1,0,11.3,77777,9,999999999,120,0.0650,0,88,999.000,999.0,99.0 +1977,2,14,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,3.9,89,102800,468,1403,273,288,709,55,30500,65200,8700,1140,290,2.6,1,0,16.1,77777,9,999999999,120,0.0650,0,88,999.000,999.0,99.0 +1977,2,14,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,4.4,77,102700,615,1403,284,415,802,67,44400,77700,10200,1460,290,3.1,1,0,24.1,77777,9,999999999,120,0.0650,0,88,999.000,999.0,99.0 +1977,2,14,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,2.2,55,102600,705,1403,294,493,841,75,53100,83000,11200,1700,280,4.1,1,0,80.5,77777,9,999999999,120,0.0650,0,88,999.000,999.0,99.0 +1977,2,14,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,2.2,46,102600,732,1403,305,518,854,77,54700,83500,11000,1630,270,4.6,1,0,80.5,77777,9,999999999,110,0.0650,0,88,999.000,999.0,99.0 +1977,2,14,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,1.7,41,102500,694,1403,309,486,840,74,52200,82700,11100,1670,280,2.6,1,0,80.5,77777,9,999999999,110,0.0650,0,88,999.000,999.0,99.0 +1977,2,14,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,1.1,35,102400,594,1403,316,397,793,65,42500,76400,10000,1410,100,1.5,1,0,80.5,77777,9,999999999,110,0.0650,0,88,999.000,999.0,99.0 +1977,2,14,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,1.7,37,102400,438,1403,317,266,697,52,28200,63100,8400,1070,130,2.6,1,0,80.5,77777,9,999999999,110,0.0650,0,88,999.000,999.0,99.0 +1977,2,14,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,0.0,34,102400,238,1403,318,108,367,47,11200,26100,6700,830,290,1.5,6,1,80.5,77777,9,999999999,110,0.0650,0,88,999.000,999.0,99.0 +1977,2,14,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,1.1,45,102300,36,806,299,21,78,13,1800,2600,1700,220,130,2.1,3,0,80.5,77777,9,999999999,110,0.0650,0,88,999.000,999.0,99.0 +1977,2,14,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,0.0,56,102300,0,0,280,0,0,0,0,0,0,0,120,2.6,1,0,80.5,77777,9,999999999,110,0.0810,0,88,999.000,999.0,99.0 +1977,2,14,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,-0.6,56,102300,0,0,277,0,0,0,0,0,0,0,160,1.5,0,0,24.1,77777,9,999999999,110,0.0810,0,88,999.000,999.0,99.0 +1977,2,14,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,1.7,76,102300,0,0,271,0,0,0,0,0,0,0,100,3.1,0,0,24.1,77777,9,999999999,110,0.0810,0,88,999.000,999.0,99.0 +1977,2,14,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,2.2,86,102300,0,0,267,0,0,0,0,0,0,0,280,2.1,0,0,24.1,77777,9,999999999,110,0.0810,0,88,999.000,999.0,99.0 +1977,2,14,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,2.8,89,102300,0,0,279,0,0,0,0,0,0,0,310,2.1,7,3,24.1,77777,9,999999999,120,0.0810,0,88,999.000,999.0,99.0 +1977,2,14,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,2.2,89,102300,0,0,276,0,0,0,0,0,0,0,0,0.0,8,3,24.1,77777,9,999999999,120,0.0810,0,88,999.000,999.0,99.0 +1977,2,15,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,1.7,89,102300,0,0,262,0,0,0,0,0,0,0,120,1.5,8,0,24.1,77777,9,999999999,120,0.0820,0,88,999.000,999.0,99.0 +1977,2,15,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,1.7,92,102200,0,0,265,0,0,0,0,0,0,0,0,0.0,10,1,24.1,77777,9,999999999,120,0.0820,0,88,999.000,999.0,99.0 +1977,2,15,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,0.6,73,102100,0,0,284,0,0,0,0,0,0,0,0,0.0,8,5,24.1,7620,9,999999999,120,0.0820,0,88,999.000,999.0,99.0 +1977,2,15,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,2.2,89,102000,0,0,306,0,0,0,0,0,0,0,120,4.1,10,10,24.1,7620,9,999999999,120,0.0820,0,88,999.000,999.0,99.0 +1977,2,15,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,1.1,82,102000,0,0,290,0,0,0,0,0,0,0,0,0.0,9,8,24.1,7620,9,999999999,120,0.0820,0,88,999.000,999.0,99.0 +1977,2,15,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,0.0,82,102100,0,0,267,0,0,0,0,0,0,0,250,2.1,2,2,24.1,77777,9,999999999,120,0.0820,0,88,999.000,999.0,99.0 +1977,2,15,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,0.0,89,102200,0,0,272,0,0,0,0,0,0,0,220,2.1,8,6,24.1,6400,9,999999999,120,0.0820,0,88,999.000,999.0,99.0 +1977,2,15,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,0.0,89,102400,65,1086,272,19,7,18,2000,400,2000,440,60,2.1,8,6,40.2,6400,9,999999999,120,0.1270,0,88,999.000,999.0,99.0 +1977,2,15,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,1.7,86,102400,281,1402,278,122,220,78,12800,16500,9500,1510,0,0.0,8,4,40.2,77777,9,999999999,120,0.1270,0,88,999.000,999.0,99.0 +1977,2,15,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,1.1,68,102300,474,1402,280,265,505,97,28600,46500,12800,1810,0,0.0,4,1,40.2,77777,9,999999999,120,0.1270,0,88,999.000,999.0,99.0 +1977,2,15,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,0.6,52,102200,621,1402,293,382,630,106,40300,60900,13200,2150,120,3.6,4,1,80.5,77777,9,999999999,120,0.1270,0,88,999.000,999.0,99.0 +1977,2,15,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,1.7,51,102200,711,1402,305,471,647,145,49100,63300,16800,3000,80,3.1,6,2,80.5,77777,9,999999999,120,0.1270,0,88,999.000,999.0,99.0 +1977,2,15,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,1.7,45,102100,738,1402,320,434,491,178,46300,49600,20100,3860,50,3.1,8,5,80.5,7620,9,999999999,120,0.1270,0,88,999.000,999.0,99.0 +1977,2,15,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,1.7,38,102000,701,1402,345,308,123,247,33800,12300,27700,7130,80,3.6,8,8,80.5,7620,9,999999999,120,0.1270,0,88,999.000,999.0,99.0 +1977,2,15,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,2.8,40,101900,600,1402,344,253,165,184,27700,16500,20600,4380,70,4.1,10,7,80.5,7620,9,999999999,120,0.1270,0,88,999.000,999.0,99.0 +1977,2,15,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,2.8,41,102000,444,1402,347,176,165,125,19300,15300,14500,2820,20,2.6,10,8,80.5,7620,9,999999999,120,0.1270,0,88,999.000,999.0,99.0 +1977,2,15,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,2.2,47,101900,245,1402,324,88,82,74,9500,6000,8500,1580,120,3.1,10,6,80.5,7620,9,999999999,120,0.1270,0,88,999.000,999.0,99.0 +1977,2,15,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,2.2,57,101800,39,853,320,8,4,8,900,200,900,210,90,2.6,10,8,80.5,7620,9,999999999,120,0.1270,0,88,999.000,999.0,99.0 +1977,2,15,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,2.8,63,101900,0,0,331,0,0,0,0,0,0,0,320,3.6,10,10,24.1,7620,9,999999999,110,0.0820,0,88,999.000,999.0,99.0 +1977,2,15,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,2.2,61,101800,0,0,322,0,0,0,0,0,0,0,100,2.1,10,9,24.1,7620,9,999999999,110,0.0820,0,88,999.000,999.0,99.0 +1977,2,15,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,3.3,74,101800,0,0,325,0,0,0,0,0,0,0,110,3.1,10,10,24.1,6100,9,999999999,110,0.0820,0,88,999.000,999.0,99.0 +1977,2,15,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,3.3,74,101800,0,0,316,0,0,0,0,0,0,0,150,3.1,10,9,24.1,6100,9,999999999,110,0.0820,0,88,999.000,999.0,99.0 +1977,2,15,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,3.3,80,101900,0,0,311,0,0,0,0,0,0,0,110,4.1,10,9,24.1,6100,9,999999999,110,0.0820,0,88,999.000,999.0,99.0 +1977,2,15,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,2.2,79,101900,0,0,283,0,0,0,0,0,0,0,110,4.1,7,3,24.1,77777,9,999999999,110,0.0820,0,88,999.000,999.0,99.0 +1977,2,16,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,2.2,74,101900,0,0,290,0,0,0,0,0,0,0,120,5.2,8,4,24.1,77777,9,999999999,100,0.0820,0,88,999.000,999.0,99.0 +1977,2,16,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,2.2,74,102000,0,0,318,0,0,0,0,0,0,0,120,4.1,10,10,24.1,6100,9,999999999,100,0.0820,0,88,999.000,999.0,99.0 +1977,2,16,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,2.2,76,102000,0,0,316,0,0,0,0,0,0,0,120,3.6,10,10,24.1,6100,9,999999999,100,0.0820,0,88,999.000,999.0,99.0 +1977,2,16,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,2.8,79,102000,0,0,316,0,0,0,0,0,0,0,120,4.1,10,10,24.1,6100,9,999999999,100,0.0820,0,88,999.000,999.0,99.0 +1977,2,16,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,2.8,86,102100,0,0,292,0,0,0,0,0,0,0,130,4.1,10,7,24.1,6100,9,999999999,100,0.0820,0,88,999.000,999.0,99.0 +1977,2,16,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,3.3,93,102200,0,0,309,0,0,0,0,0,0,0,120,2.6,10,10,24.1,6100,9,999999999,110,0.0820,0,88,999.000,999.0,99.0 +1977,2,16,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,5.6,93,102200,0,0,322,0,0,0,0,0,0,0,140,5.2,10,10,24.1,1680,9,999999999,110,0.0820,0,88,999.000,999.0,99.0 +1977,2,16,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,6.1,96,102300,70,1109,323,17,2,17,2000,0,2000,600,120,4.1,10,10,24.1,1520,9,999999999,120,0.0460,0,88,999.000,999.0,99.0 +1977,2,16,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,6.1,93,102400,287,1401,325,63,12,61,7200,400,7100,2210,70,3.6,10,10,24.1,940,9,999999999,129,0.0460,0,88,999.000,999.0,99.0 +1977,2,16,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,7.2,93,102500,481,1401,331,123,4,122,13900,300,13900,4580,90,3.6,10,10,24.1,880,9,999999999,129,0.0460,0,88,999.000,999.0,99.0 +1977,2,16,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,7.8,89,102500,628,1401,337,203,3,201,22700,300,22600,7430,160,4.6,10,10,32.2,880,9,999999999,139,0.0460,0,88,999.000,999.0,99.0 +1977,2,16,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,7.8,80,102500,718,1401,345,209,9,204,23800,800,23400,8170,150,5.7,10,10,32.2,880,9,999999999,139,0.0460,0,88,999.000,999.0,99.0 +1977,2,16,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,7.8,80,102400,745,1401,345,219,1,219,25000,100,24900,8770,60,3.1,10,10,40.2,790,9,999999999,150,0.0460,0,88,999.000,999.0,99.0 +1977,2,16,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,7.8,75,102400,707,1401,351,246,4,244,27600,400,27400,9040,90,5.2,10,10,48.3,880,9,999999999,150,0.0460,0,88,999.000,999.0,99.0 +1977,2,16,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,7.8,75,102400,607,1401,351,186,5,184,20900,400,20800,6880,80,3.1,10,10,48.3,880,9,999999999,150,0.0460,0,88,999.000,999.0,99.0 +1977,2,16,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,7.8,75,102300,451,1401,351,133,2,132,14800,100,14700,4650,80,3.1,10,10,48.3,850,9,999999999,160,0.0460,0,88,999.000,999.0,99.0 +1977,2,16,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,7.8,77,102200,251,1401,348,70,0,70,7700,0,7700,2280,140,3.6,10,10,24.1,1160,9,999999999,160,0.0460,0,88,999.000,999.0,99.0 +1977,2,16,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,7.8,77,102200,43,876,348,15,0,15,1700,0,1700,520,80,2.1,10,10,24.1,1160,9,999999999,150,0.0460,0,88,999.000,999.0,99.0 +1977,2,16,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,7.2,77,102200,0,0,335,0,0,0,0,0,0,0,130,3.1,9,9,24.1,1160,9,999999999,150,0.0820,0,88,999.000,999.0,99.0 +1977,2,16,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,7.2,83,102300,0,0,339,0,0,0,0,0,0,0,310,3.1,10,10,24.1,1010,9,999999999,150,0.0820,0,88,999.000,999.0,99.0 +1977,2,16,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,7.8,86,102300,0,0,340,0,0,0,0,0,0,0,280,1.5,10,10,24.1,910,9,999999999,139,0.0820,0,88,999.000,999.0,99.0 +1977,2,16,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,7.8,93,102400,0,0,335,0,0,0,0,0,0,0,270,2.1,10,10,16.1,670,9,999999999,139,0.0820,0,88,999.000,999.0,99.0 +1977,2,16,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,8.3,96,102400,0,0,335,0,0,0,0,0,0,0,300,2.6,10,10,24.1,760,9,999999999,139,0.0820,0,88,999.000,999.0,99.0 +1977,2,16,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,7.8,96,102400,0,0,332,0,0,0,0,0,0,0,50,1.5,10,10,24.1,640,9,999999999,129,0.0820,0,88,999.000,999.0,99.0 +1977,2,17,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,8.9,100,102400,0,0,336,0,0,0,0,0,0,0,90,2.1,10,10,16.1,910,9,999999999,129,0.0830,0,88,999.000,999.0,99.0 +1977,2,17,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,8.3,100,102500,0,0,317,0,0,0,0,0,0,0,70,1.5,8,8,16.1,940,9,999999999,129,0.0830,0,88,999.000,999.0,99.0 +1977,2,17,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,8.3,100,102500,0,0,332,0,0,0,0,0,0,0,120,2.1,10,10,24.1,760,9,999999999,120,0.0830,0,88,999.000,999.0,99.0 +1977,2,17,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,8.3,100,102400,0,0,332,0,0,0,0,0,0,0,80,2.6,10,10,24.1,520,9,999999999,120,0.0830,0,88,999.000,999.0,99.0 +1977,2,17,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,8.9,96,102500,0,0,338,0,0,0,0,0,0,0,100,2.1,10,10,24.1,700,9,999999999,120,0.0830,0,88,999.000,999.0,99.0 +1977,2,17,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,8.9,90,102500,0,0,344,0,0,0,0,0,0,0,120,2.1,10,10,24.1,460,9,999999999,129,0.0830,0,88,999.000,999.0,99.0 +1977,2,17,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,8.9,93,102500,0,0,341,0,0,0,0,0,0,0,170,2.1,10,10,24.1,460,9,999999999,129,0.0830,0,88,999.000,999.0,99.0 +1977,2,17,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,8.3,96,102600,75,1156,326,17,15,16,1900,800,1800,400,130,2.1,10,9,24.1,490,9,999999999,129,0.0670,0,88,999.000,999.0,99.0 +1977,2,17,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,8.3,69,102600,294,1401,337,111,84,93,11900,6700,10500,2010,170,1.5,10,7,24.1,7620,9,999999999,129,0.0670,0,88,999.000,999.0,99.0 +1977,2,17,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,8.9,86,102700,488,1401,310,285,410,144,29400,37800,16200,2830,200,2.1,10,2,24.1,77777,9,999999999,139,0.0670,0,88,999.000,999.0,99.0 +1977,2,17,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,7.8,69,102700,635,1401,325,354,443,155,37500,43600,17700,3150,150,5.2,10,4,48.3,77777,9,999999999,139,0.0670,0,88,999.000,999.0,99.0 +1977,2,17,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,7.2,62,102700,725,1401,334,467,524,198,49100,52700,21700,4310,240,5.2,10,6,48.3,7620,9,999999999,139,0.0670,0,88,999.000,999.0,99.0 +1977,2,17,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,6.7,60,102600,752,1401,360,217,10,212,24800,800,24400,8630,230,4.1,10,10,64.4,7620,9,999999999,139,0.0670,0,88,999.000,999.0,99.0 +1977,2,17,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,6.7,56,102600,714,1401,331,494,648,168,53000,65100,19600,3570,230,3.1,10,3,80.5,77777,9,999999999,150,0.0670,0,88,999.000,999.0,99.0 +1977,2,17,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,6.7,56,102600,613,1401,328,367,567,122,38300,54300,14400,2390,360,3.1,8,2,80.5,77777,9,999999999,150,0.0670,0,88,999.000,999.0,99.0 +1977,2,17,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,6.7,56,102600,457,1401,328,261,474,109,27700,43100,13500,2060,330,2.6,8,2,80.5,77777,9,999999999,150,0.0670,0,88,999.000,999.0,99.0 +1977,2,17,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,6.1,54,102500,257,1401,327,103,222,64,11100,15900,8200,1200,320,1.5,8,2,80.5,77777,9,999999999,150,0.0670,0,88,999.000,999.0,99.0 +1977,2,17,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,5.6,62,102500,46,899,314,23,43,18,2200,1300,2100,310,360,2.1,8,2,80.5,77777,9,999999999,139,0.0670,0,88,999.000,999.0,99.0 +1977,2,17,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,5.6,69,102600,0,0,303,0,0,0,0,0,0,0,0,0.0,6,1,24.1,77777,9,999999999,139,0.0830,0,88,999.000,999.0,99.0 +1977,2,17,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,5.6,80,102600,0,0,293,0,0,0,0,0,0,0,80,1.5,4,1,24.1,77777,9,999999999,139,0.0830,0,88,999.000,999.0,99.0 +1977,2,17,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,5.6,86,102600,0,0,296,0,0,0,0,0,0,0,0,0.0,9,3,24.1,77777,9,999999999,129,0.0830,0,88,999.000,999.0,99.0 +1977,2,17,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,5.0,89,102600,0,0,284,0,0,0,0,0,0,0,0,0.0,6,1,24.1,77777,9,999999999,129,0.0830,0,88,999.000,999.0,99.0 +1977,2,17,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,4.4,93,102600,0,0,274,0,0,0,0,0,0,0,0,0.0,2,0,24.1,77777,9,999999999,129,0.0830,0,88,999.000,999.0,99.0 +1977,2,17,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,4.4,96,102600,0,0,271,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,120,0.0830,0,88,999.000,999.0,99.0 +1977,2,18,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,3.9,100,102700,0,0,267,0,0,0,0,0,0,0,220,1.5,0,0,11.3,77777,9,999999999,120,0.0830,0,88,999.000,999.0,99.0 +1977,2,18,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,3.9,100,102700,0,0,267,0,0,0,0,0,0,0,220,1.5,0,0,11.3,77777,9,999999999,120,0.0830,0,88,999.000,999.0,99.0 +1977,2,18,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,3.9,100,102600,0,0,278,0,0,0,0,0,0,0,310,2.1,3,3,8.0,77777,9,999999999,110,0.0830,0,88,999.000,999.0,99.0 +1977,2,18,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,3.9,100,102600,0,0,308,0,0,0,0,0,0,0,0,0.0,10,10,0.2,60,9,999999999,110,0.0830,0,88,999.000,999.0,99.0 +1977,2,18,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,3.3,100,102600,0,0,304,0,0,0,0,0,0,0,0,0.0,10,10,0.2,60,9,999999999,110,0.0830,0,88,999.000,999.0,99.0 +1977,2,18,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,3.3,100,102600,0,0,304,0,0,0,0,0,0,0,0,0.0,10,10,0.2,60,9,999999999,100,0.0830,0,88,999.000,999.0,99.0 +1977,2,18,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,3.3,100,102500,0,0,304,0,0,0,0,0,0,0,0,0.0,10,10,0.2,0,9,999999999,100,0.0830,0,88,999.000,999.0,99.0 +1977,2,18,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,3.3,100,102500,80,1178,304,17,2,17,2000,0,2000,600,280,3.1,10,10,0.2,0,9,999999999,100,0.0420,0,88,999.000,999.0,99.0 +1977,2,18,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,2.8,100,102500,301,1400,302,58,8,56,6600,300,6600,2110,280,1.5,10,10,0.2,0,9,999999999,89,0.0420,0,88,999.000,999.0,99.0 +1977,2,18,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,3.9,100,102400,495,1400,308,133,9,130,15000,600,14800,4860,280,3.1,10,10,0.2,0,9,999999999,89,0.0420,0,88,999.000,999.0,99.0 +1977,2,18,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,5.0,100,102400,642,1400,288,346,428,152,36900,42300,17400,3100,280,4.1,5,5,1.3,77777,9,999999999,89,0.0420,0,88,999.000,999.0,99.0 +1977,2,18,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,7.2,93,102300,732,1400,287,532,911,60,56600,89200,9700,1510,320,2.6,0,0,11.3,77777,9,999999999,80,0.0420,0,88,999.000,999.0,99.0 +1977,2,18,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,7.2,72,102100,759,1400,303,552,915,61,58700,89900,9800,1550,270,3.1,0,0,48.3,77777,9,999999999,80,0.0420,0,88,999.000,999.0,99.0 +1977,2,18,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,7.8,62,102000,721,1400,316,520,905,59,55400,88500,9600,1480,260,3.6,0,0,48.3,77777,9,999999999,80,0.0420,0,88,999.000,999.0,99.0 +1977,2,18,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,7.8,56,102000,620,1400,324,435,875,52,46500,84200,9100,1290,270,3.6,0,0,80.5,77777,9,999999999,69,0.0420,0,88,999.000,999.0,99.0 +1977,2,18,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,3.3,35,101900,464,1400,331,300,792,42,32300,72700,8100,1030,90,7.2,0,0,80.5,77777,9,999999999,69,0.0420,0,88,999.000,999.0,99.0 +1977,2,18,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,1.7,31,101800,263,1400,329,142,613,30,15400,49100,6100,680,100,7.2,0,0,80.5,77777,9,999999999,69,0.0420,0,88,999.000,999.0,99.0 +1977,2,18,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,1.1,33,101800,50,945,321,30,173,13,2400,7700,1900,240,100,8.2,0,0,80.5,77777,9,999999999,69,0.0420,0,88,999.000,999.0,99.0 +1977,2,18,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,1.1,35,101800,0,0,316,0,0,0,0,0,0,0,110,7.7,0,0,24.1,77777,9,999999999,80,0.0830,0,88,999.000,999.0,99.0 +1977,2,18,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,1.7,39,101800,0,0,312,0,0,0,0,0,0,0,100,6.7,0,0,24.1,77777,9,999999999,80,0.0830,0,88,999.000,999.0,99.0 +1977,2,18,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,2.2,44,101800,0,0,307,0,0,0,0,0,0,0,110,5.7,0,0,24.1,77777,9,999999999,80,0.0830,0,88,999.000,999.0,99.0 +1977,2,18,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,2.8,51,101900,0,0,301,0,0,0,0,0,0,0,110,4.1,0,0,24.1,77777,9,999999999,80,0.0830,0,88,999.000,999.0,99.0 +1977,2,18,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,2.8,61,101900,0,0,290,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,80,0.0830,0,88,999.000,999.0,99.0 +1977,2,18,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,0.6,63,101900,0,0,276,0,0,0,0,0,0,0,110,1.5,0,0,24.1,77777,9,999999999,80,0.0830,0,88,999.000,999.0,99.0 +1977,2,19,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,3.3,74,101900,0,0,281,0,0,0,0,0,0,0,310,3.6,0,0,24.1,77777,9,999999999,89,0.0840,0,88,999.000,999.0,99.0 +1977,2,19,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,2.8,83,101900,0,0,272,0,0,0,0,0,0,0,260,2.1,0,0,24.1,77777,9,999999999,89,0.0840,0,88,999.000,999.0,99.0 +1977,2,19,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,2.2,86,101900,0,0,267,0,0,0,0,0,0,0,290,3.6,0,0,24.1,77777,9,999999999,89,0.0840,0,88,999.000,999.0,99.0 +1977,2,19,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,2.8,89,102000,0,0,267,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,89,0.0840,0,88,999.000,999.0,99.0 +1977,2,19,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,1.1,86,102000,0,0,262,0,0,0,0,0,0,0,290,2.6,0,0,24.1,77777,9,999999999,89,0.0840,0,88,999.000,999.0,99.0 +1977,2,19,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,2.2,89,102000,0,0,270,0,0,0,0,0,0,0,270,2.6,3,1,24.1,77777,9,999999999,89,0.0840,0,88,999.000,999.0,99.0 +1977,2,19,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,2.2,89,102000,0,0,265,0,0,0,0,0,0,0,0,0.0,5,0,64.4,77777,9,999999999,89,0.0840,0,88,999.000,999.0,99.0 +1977,2,19,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,3.3,93,102000,86,1225,279,29,39,26,3200,1800,3000,540,300,1.5,8,3,64.4,77777,9,999999999,89,0.0590,0,88,999.000,999.0,99.0 +1977,2,19,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,4.4,80,102000,308,1400,292,137,304,71,14400,23800,9200,1300,320,2.1,10,2,64.4,77777,9,999999999,89,0.0590,0,88,999.000,999.0,99.0 +1977,2,19,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,4.4,62,102000,502,1400,319,255,304,147,27100,29100,16700,3050,340,2.6,10,6,64.4,7620,9,999999999,89,0.0590,0,88,999.000,999.0,99.0 +1977,2,19,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,3.9,48,102000,649,1400,333,332,280,204,35500,28600,22200,4570,20,1.5,10,6,64.4,7620,9,999999999,80,0.0590,0,88,999.000,999.0,99.0 +1977,2,19,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,4.4,46,102000,739,1400,336,484,528,208,50800,53200,22600,4590,90,3.6,8,5,64.4,7620,9,999999999,80,0.0590,0,88,999.000,999.0,99.0 +1977,2,19,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,4.4,42,101900,766,1400,344,427,349,238,45900,36700,25800,5670,100,5.2,10,5,64.4,77777,9,999999999,80,0.0590,0,88,999.000,999.0,99.0 +1977,2,19,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,4.4,39,101800,728,1400,344,476,632,150,49600,62000,17300,3140,100,7.2,8,3,80.5,77777,9,999999999,80,0.0590,0,88,999.000,999.0,99.0 +1977,2,19,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,4.4,39,101800,627,1400,336,370,626,93,39500,61000,12100,1930,110,6.7,4,1,80.5,77777,9,999999999,80,0.0590,0,88,999.000,999.0,99.0 +1977,2,19,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,4.4,39,101700,470,1400,336,270,646,56,28600,59400,8500,1150,100,6.2,3,1,80.5,77777,9,999999999,80,0.0590,0,88,999.000,999.0,99.0 +1977,2,19,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,3.9,41,101600,269,1400,335,125,343,61,13300,25300,8400,1110,110,6.7,6,3,80.5,77777,9,999999999,89,0.0590,0,88,999.000,999.0,99.0 +1977,2,19,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,3.9,48,101500,54,968,333,25,20,23,2600,1100,2600,530,100,6.7,10,6,80.5,7620,9,999999999,100,0.0590,0,88,999.000,999.0,99.0 +1977,2,19,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,3.3,55,101500,0,0,329,0,0,0,0,0,0,0,90,2.6,8,8,24.1,7620,9,999999999,110,0.0840,0,88,999.000,999.0,99.0 +1977,2,19,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,3.3,55,101400,0,0,312,0,0,0,0,0,0,0,120,4.1,7,3,24.1,77777,9,999999999,120,0.0840,0,88,999.000,999.0,99.0 +1977,2,19,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,2.2,47,101300,0,0,313,0,0,0,0,0,0,0,120,7.7,5,2,24.1,77777,9,999999999,129,0.0840,0,88,999.000,999.0,99.0 +1977,2,19,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,2.8,59,101300,0,0,305,0,0,0,0,0,0,0,110,5.7,6,3,24.1,77777,9,999999999,139,0.0840,0,88,999.000,999.0,99.0 +1977,2,19,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,2.8,71,101200,0,0,295,0,0,0,0,0,0,0,270,2.6,5,4,24.1,77777,9,999999999,139,0.0840,0,88,999.000,999.0,99.0 +1977,2,19,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,2.8,71,101200,0,0,293,0,0,0,0,0,0,0,130,5.2,4,3,24.1,77777,9,999999999,150,0.0840,0,88,999.000,999.0,99.0 +1977,2,20,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,2.2,59,101100,0,0,302,0,0,0,0,0,0,0,100,4.6,6,3,24.1,77777,9,999999999,160,0.0840,0,88,999.000,999.0,99.0 +1977,2,20,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,2.2,59,101000,0,0,334,0,0,0,0,0,0,0,50,2.6,10,10,24.1,6100,9,999999999,170,0.0840,0,88,999.000,999.0,99.0 +1977,2,20,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,1.7,51,100900,0,0,341,0,0,0,0,0,0,0,130,5.2,10,10,24.1,6100,9,999999999,179,0.0840,0,88,999.000,999.0,99.0 +1977,2,20,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,1.7,51,100900,0,0,341,0,0,0,0,0,0,0,140,5.2,10,10,24.1,2740,9,999999999,189,0.0840,0,88,999.000,999.0,99.0 +1977,2,20,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,1.7,53,100900,0,0,338,0,0,0,0,0,0,0,120,7.2,10,10,24.1,2740,9,999999999,189,0.0840,0,88,999.000,999.0,99.0 +1977,2,20,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,1.1,47,100900,0,0,343,0,0,0,0,0,0,0,130,4.1,10,10,24.1,2740,9,999999999,179,0.0840,0,88,999.000,999.0,99.0 +1977,2,20,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,1.1,49,100800,0,0,340,0,0,0,0,0,0,0,120,6.2,10,10,24.1,2740,9,999999999,179,0.0840,0,88,999.000,999.0,99.0 +1977,2,20,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,1.7,53,100900,92,1271,338,15,3,15,1800,0,1800,550,120,7.7,10,10,64.4,2740,9,999999999,170,0.0770,0,88,999.000,999.0,99.0 +1977,2,20,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,1.7,53,100800,315,1399,338,53,1,53,6100,0,6100,2050,110,9.3,10,10,80.5,3050,9,999999999,160,0.0770,0,88,999.000,999.0,99.0 +1977,2,20,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,2.2,51,100900,509,1399,344,125,6,123,14200,400,14100,4750,90,3.6,10,10,80.5,3050,9,999999999,160,0.0770,0,88,999.000,999.0,99.0 +1977,2,20,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,2.2,51,101000,656,1399,344,111,8,107,13100,500,12900,4790,100,5.7,10,10,32.2,1830,9,999999999,150,0.0770,0,88,999.000,999.0,99.0 +1977,2,20,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,6.7,69,101000,746,1399,349,130,10,125,15500,700,15100,5750,100,6.2,10,10,11.3,1520,9,999999999,150,0.0770,0,88,999.000,999.0,99.0 +1977,2,20,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,8.9,80,100900,773,1399,352,146,8,142,17300,600,17000,6480,160,6.2,10,10,11.3,1520,9,999999999,150,0.0770,0,88,999.000,999.0,99.0 +1977,2,20,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,9.4,83,101000,734,1399,353,140,6,137,16500,400,16300,6150,170,6.7,10,10,12.9,1370,9,999999999,139,0.0770,0,88,999.000,999.0,99.0 +1977,2,20,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,10.0,86,101100,633,1399,353,214,4,212,23900,300,23700,7710,160,6.7,10,10,24.1,1370,9,999999999,139,0.0770,0,88,999.000,999.0,99.0 +1977,2,20,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,9.4,80,101100,476,1399,356,131,0,131,14700,0,14700,4790,170,5.7,10,10,24.1,1220,9,999999999,129,0.0770,0,88,999.000,999.0,99.0 +1977,2,20,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,7.8,75,101200,275,1399,325,108,119,85,11700,9200,9900,1830,220,7.2,6,6,40.2,6100,9,999999999,129,0.0770,0,88,999.000,999.0,99.0 +1977,2,20,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,6.1,69,101200,58,1014,313,26,99,16,2400,3800,2100,280,230,3.6,3,3,40.2,77777,9,999999999,129,0.0770,0,88,999.000,999.0,99.0 +1977,2,20,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,5.0,71,101300,0,0,302,0,0,0,0,0,0,0,10,1.5,2,2,24.1,77777,9,999999999,129,0.0840,0,88,999.000,999.0,99.0 +1977,2,20,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,4.4,83,101300,0,0,280,0,0,0,0,0,0,0,120,3.1,0,0,24.1,77777,9,999999999,120,0.0840,0,88,999.000,999.0,99.0 +1977,2,20,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,5.6,89,101300,0,0,281,0,0,0,0,0,0,0,100,4.6,0,0,24.1,77777,9,999999999,120,0.0840,0,88,999.000,999.0,99.0 +1977,2,20,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,5.6,93,101200,0,0,279,0,0,0,0,0,0,0,110,5.2,0,0,24.1,77777,9,999999999,120,0.0840,0,88,999.000,999.0,99.0 +1977,2,20,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,5.0,93,101000,0,0,276,0,0,0,0,0,0,0,90,4.1,0,0,24.1,77777,9,999999999,120,0.0840,0,88,999.000,999.0,99.0 +1977,2,20,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,4.4,93,100800,0,0,279,0,0,0,0,0,0,0,120,3.6,1,1,24.1,77777,9,999999999,120,0.0840,0,88,999.000,999.0,99.0 +1977,2,21,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,4.4,93,100600,0,0,316,0,0,0,0,0,0,0,120,3.1,10,10,24.1,3660,9,999999999,110,0.0850,0,88,999.000,999.0,99.0 +1977,2,21,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,4.4,93,100400,0,0,316,0,0,0,0,0,0,0,330,1.5,10,10,24.1,3660,9,999999999,110,0.0850,0,88,999.000,999.0,99.0 +1977,2,21,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,4.4,93,100200,0,0,316,0,0,0,0,0,0,0,290,3.1,10,10,24.1,3660,9,999999999,110,0.0850,0,88,999.000,999.0,99.0 +1977,2,21,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,4.4,93,100000,0,0,316,0,0,0,0,0,0,0,60,5.2,10,10,24.1,2440,9,999999999,110,0.0850,0,88,999.000,999.0,99.0 +1977,2,21,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,3.3,74,99800,0,0,325,0,0,0,0,0,0,0,130,7.7,10,10,24.1,1830,9,999999999,110,0.0850,0,88,999.000,999.0,99.0 +1977,2,21,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,1.7,59,99700,0,0,330,0,0,0,0,0,0,0,120,7.7,10,10,24.1,1830,9,999999999,110,0.0850,0,88,999.000,999.0,99.0 +1977,2,21,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,4.4,77,100000,0,0,328,0,0,0,0,0,0,0,230,8.8,10,10,16.1,910,9,999999999,110,0.0850,0,88,999.000,999.0,99.0 +1977,2,21,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,5.0,86,100000,98,1293,324,18,49,14,2000,2000,1800,230,130,6.7,10,10,32.2,1220,9,999999999,110,0.0570,0,88,999.000,999.0,99.0 +1977,2,21,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,4.4,89,100100,322,1398,318,41,2,41,4900,100,4900,1670,120,5.2,10,10,32.2,1070,9,999999999,110,0.0570,0,88,999.000,999.0,99.0 +1977,2,21,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,5.6,80,100000,516,1398,323,140,32,129,15500,3000,14300,3650,180,8.8,9,9,32.2,850,9,999999999,110,0.0570,0,88,999.000,999.0,99.0 +1977,2,21,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,4.4,69,100100,663,1398,327,285,60,256,31200,6000,28300,7070,190,9.3,9,9,32.2,1220,9,999999999,120,0.0570,0,88,999.000,999.0,99.0 +1977,2,21,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,4.4,66,100100,753,1398,339,181,117,119,20700,12300,14100,3050,200,9.8,10,10,24.1,910,9,999999999,120,0.0570,0,88,999.000,999.0,99.0 +1977,2,21,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,3.3,66,100000,780,1398,308,371,256,230,40100,27000,25000,5480,220,9.3,8,6,40.2,3660,9,999999999,120,0.0570,0,88,999.000,999.0,99.0 +1977,2,21,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,4.4,64,100100,741,1398,320,292,142,218,32100,14700,24300,5550,190,9.8,9,7,40.2,1070,9,999999999,120,0.0570,0,88,999.000,999.0,99.0 +1977,2,21,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,6.1,83,100200,640,1398,333,74,4,72,9000,200,8900,3370,210,8.8,10,10,6.4,760,9,999999999,120,0.0570,0,88,999.000,999.0,99.0 +1977,2,21,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,5.6,86,100200,483,1398,327,120,11,116,13600,700,13400,4440,200,7.2,10,10,32.2,1370,9,999999999,120,0.0570,0,88,999.000,999.0,99.0 +1977,2,21,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,5.0,80,100200,281,1398,329,31,2,30,3600,0,3600,1230,210,9.3,10,10,40.2,1010,9,999999999,120,0.0570,0,88,999.000,999.0,99.0 +1977,2,21,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,5.0,83,100300,62,1037,326,7,2,7,900,0,900,270,210,7.2,10,10,24.1,1010,9,999999999,120,0.0570,0,88,999.000,999.0,99.0 +1977,2,21,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,3.9,80,100500,0,0,322,0,0,0,0,0,0,0,210,6.7,10,10,24.1,1010,9,999999999,120,0.0850,0,88,999.000,999.0,99.0 +1977,2,21,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,4.4,86,100500,0,0,321,0,0,0,0,0,0,0,220,8.8,10,10,24.1,1010,9,999999999,120,0.0850,0,88,999.000,999.0,99.0 +1977,2,21,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,4.4,89,100600,0,0,298,0,0,0,0,0,0,0,190,5.2,7,7,24.1,1250,9,999999999,120,0.0850,0,88,999.000,999.0,99.0 +1977,2,21,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,5.0,89,100700,0,0,306,0,0,0,0,0,0,0,190,6.7,8,8,24.1,1340,9,999999999,120,0.0850,0,88,999.000,999.0,99.0 +1977,2,21,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,4.4,86,100700,0,0,305,0,0,0,0,0,0,0,210,8.2,8,8,24.1,1100,9,999999999,120,0.0850,0,88,999.000,999.0,99.0 +1977,2,21,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,4.4,86,100800,0,0,321,0,0,0,0,0,0,0,210,8.2,10,10,24.1,940,9,999999999,120,0.0850,0,88,999.000,999.0,99.0 +1977,2,22,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,5.0,93,100900,0,0,319,0,0,0,0,0,0,0,200,7.2,10,10,11.3,1160,9,999999999,120,0.0850,0,88,999.000,999.0,99.0 +1977,2,22,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,5.0,93,100900,0,0,319,0,0,0,0,0,0,0,310,9.3,10,10,16.1,1160,9,999999999,120,0.0850,0,88,999.000,999.0,99.0 +1977,2,22,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,5.0,93,101000,0,0,319,0,0,0,0,0,0,0,220,6.7,10,10,11.3,400,9,999999999,120,0.0850,0,88,999.000,999.0,99.0 +1977,2,22,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,4.4,89,101100,0,0,318,0,0,0,0,0,0,0,210,8.2,10,10,11.3,640,9,999999999,120,0.0850,0,88,999.000,999.0,99.0 +1977,2,22,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,4.4,89,101100,0,0,309,0,0,0,0,0,0,0,200,8.8,9,9,24.1,1220,9,999999999,120,0.0850,0,88,999.000,999.0,99.0 +1977,2,22,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,4.4,89,101100,0,0,318,0,0,0,0,0,0,0,200,8.2,10,10,24.1,1220,9,999999999,120,0.0850,0,88,999.000,999.0,99.0 +1977,2,22,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,4.4,89,101200,0,0,318,0,0,0,0,0,0,0,210,5.7,10,10,32.2,1370,9,999999999,120,0.0850,0,88,999.000,999.0,99.0 +1977,2,22,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,4.4,89,101200,104,1339,318,28,4,27,3100,0,3100,890,200,5.7,10,10,32.2,1220,9,999999999,120,0.0340,0,88,999.000,999.0,99.0 +1977,2,22,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,4.4,89,101300,329,1398,318,54,4,53,6300,100,6200,2080,200,7.7,10,10,16.1,1370,9,999999999,120,0.0340,0,88,999.000,999.0,99.0 +1977,2,22,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,4.4,89,101400,523,1398,318,153,3,152,17200,200,17100,5570,220,7.2,10,10,24.1,430,9,999999999,110,0.0340,0,88,999.000,999.0,99.0 +1977,2,22,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,5.0,89,101400,671,1398,321,235,4,233,26200,400,26100,8490,210,6.7,10,10,24.1,430,9,999999999,110,0.0340,0,88,999.000,999.0,99.0 +1977,2,22,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,5.0,89,101500,761,1398,321,150,3,148,17600,200,17500,6650,210,5.2,10,10,16.1,460,9,999999999,110,0.0340,0,88,999.000,999.0,99.0 +1977,2,22,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,5.0,89,101600,787,1398,321,279,1,278,31300,100,31300,10550,230,4.1,10,10,24.1,760,9,999999999,110,0.0340,0,88,999.000,999.0,99.0 +1977,2,22,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,5.0,83,101600,748,1398,326,154,2,153,18100,200,18000,6780,220,5.2,10,10,24.1,980,9,999999999,110,0.0340,0,88,999.000,999.0,99.0 +1977,2,22,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,5.0,80,101600,646,1398,329,132,1,132,15400,100,15400,5630,230,6.2,10,10,24.1,1070,9,999999999,110,0.0340,0,88,999.000,999.0,99.0 +1977,2,22,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,3.9,86,101700,489,1398,297,191,78,164,21000,7400,18400,4280,230,2.1,7,7,32.2,1220,9,999999999,110,0.0340,0,88,999.000,999.0,99.0 +1977,2,22,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,4.4,86,101700,288,1398,290,142,432,56,14800,33300,7900,1000,120,2.1,3,3,40.2,77777,9,999999999,110,0.0340,0,88,999.000,999.0,99.0 +1977,2,22,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,3.9,86,101700,66,1083,287,34,160,19,3000,7400,2500,340,80,1.5,3,3,40.2,77777,9,999999999,100,0.0340,0,88,999.000,999.0,99.0 +1977,2,22,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,2.8,86,101700,0,0,275,0,0,0,0,0,0,0,140,2.6,1,1,24.1,77777,9,999999999,100,0.0850,0,88,999.000,999.0,99.0 +1977,2,22,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,2.2,89,101700,0,0,265,0,0,0,0,0,0,0,120,2.6,0,0,24.1,77777,9,999999999,100,0.0850,0,88,999.000,999.0,99.0 +1977,2,22,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,2.8,89,101700,0,0,286,0,0,0,0,0,0,0,0,0.0,6,6,24.1,1220,9,999999999,89,0.0850,0,88,999.000,999.0,99.0 +1977,2,22,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,2.8,86,101700,0,0,279,0,0,0,0,0,0,0,60,2.1,2,2,24.1,77777,9,999999999,89,0.0850,0,88,999.000,999.0,99.0 +1977,2,22,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,1.7,89,101700,0,0,262,0,0,0,0,0,0,0,90,2.6,0,0,24.1,77777,9,999999999,89,0.0850,0,88,999.000,999.0,99.0 +1977,2,22,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,0.6,92,101600,0,0,260,0,0,0,0,0,0,0,100,3.6,1,1,24.1,77777,9,999999999,80,0.0850,0,88,999.000,999.0,99.0 +1977,2,23,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,1.1,96,101600,0,0,264,0,0,0,0,0,0,0,140,2.6,2,2,24.1,77777,9,999999999,80,0.0860,0,88,999.000,999.0,99.0 +1977,2,23,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.1,0.0,92,101500,0,0,265,0,0,0,0,0,0,0,250,3.1,4,4,0.8,77777,9,999999999,80,0.0860,0,88,999.000,999.0,99.0 +1977,2,23,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.6,0.6,100,101500,0,0,290,0,0,0,0,0,0,0,300,3.6,10,10,0.2,30,9,999999999,69,0.0860,0,88,999.000,999.0,99.0 +1977,2,23,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.6,0.6,100,101400,0,0,290,0,0,0,0,0,0,0,310,4.1,10,10,0.2,30,9,999999999,69,0.0860,0,88,999.000,999.0,99.0 +1977,2,23,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.6,0.6,100,101300,0,0,290,0,0,0,0,0,0,0,0,0.0,10,10,0.4,30,9,999999999,69,0.0860,0,88,999.000,999.0,99.0 +1977,2,23,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.6,0.6,100,101200,0,0,290,0,0,0,0,0,0,0,290,2.6,10,10,0.4,30,9,999999999,80,0.0860,0,88,999.000,999.0,99.0 +1977,2,23,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.0,0.0,100,101100,0,0,287,0,0,0,0,0,0,0,300,2.6,10,10,0.2,60,9,999999999,80,0.0860,0,88,999.000,999.0,99.0 +1977,2,23,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.6,0.6,100,101100,110,1385,290,16,9,15,1700,500,1700,390,340,3.1,10,10,0.1,60,9,999999999,89,0.0620,0,88,999.000,999.0,99.0 +1977,2,23,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.6,0.6,100,101000,336,1397,290,74,23,69,8200,2000,7700,1850,320,3.6,10,10,0.2,60,9,999999999,89,0.0620,0,88,999.000,999.0,99.0 +1977,2,23,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.6,0.0,96,101000,530,1397,275,229,203,153,25100,19800,17600,3550,340,2.6,10,8,3.2,3660,9,999999999,89,0.0620,0,88,999.000,999.0,99.0 +1977,2,23,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,1.1,92,101000,678,1397,278,366,393,177,38600,39100,19500,3720,340,2.1,10,7,16.1,3660,9,999999999,100,0.0620,0,88,999.000,999.0,99.0 +1977,2,23,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,2.8,86,100900,768,1397,284,432,342,245,46300,35900,26400,5880,270,4.1,10,4,32.2,77777,9,999999999,100,0.0620,0,88,999.000,999.0,99.0 +1977,2,23,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,2.2,76,100900,794,1397,300,340,124,270,37000,12900,29700,7100,280,4.1,10,8,32.2,6100,9,999999999,110,0.0620,0,88,999.000,999.0,99.0 +1977,2,23,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,1.7,66,100900,755,1397,307,383,324,210,41600,34000,23100,4860,300,3.6,10,8,32.2,3660,9,999999999,110,0.0620,0,88,999.000,999.0,99.0 +1977,2,23,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,1.7,63,100900,653,1397,325,133,11,128,15600,800,15200,5530,190,6.7,10,10,24.1,1220,9,999999999,120,0.0620,0,88,999.000,999.0,99.0 +1977,2,23,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,4.4,80,101000,496,1397,326,79,9,76,9300,500,9200,3230,100,6.2,10,10,16.1,1220,9,999999999,120,0.0620,0,88,999.000,999.0,99.0 +1977,2,23,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,3.9,83,101000,294,1397,320,47,1,47,5500,0,5500,1820,160,3.6,10,10,32.2,2130,9,999999999,120,0.0620,0,88,999.000,999.0,99.0 +1977,2,23,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,4.4,89,101000,71,1106,318,12,2,12,1400,0,1400,450,80,2.6,10,10,24.1,760,9,999999999,120,0.0620,0,88,999.000,999.0,99.0 +1977,2,23,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,4.4,89,101000,0,0,318,0,0,0,0,0,0,0,100,3.6,10,10,24.1,940,9,999999999,120,0.0860,0,88,999.000,999.0,99.0 +1977,2,23,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,3.9,86,101000,0,0,317,0,0,0,0,0,0,0,120,2.6,10,10,24.1,1250,9,999999999,120,0.0860,0,88,999.000,999.0,99.0 +1977,2,23,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,3.3,83,101000,0,0,317,0,0,0,0,0,0,0,70,5.2,10,10,24.1,1220,9,999999999,120,0.0860,0,88,999.000,999.0,99.0 +1977,2,23,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,3.9,86,101100,0,0,317,0,0,0,0,0,0,0,220,3.1,10,10,24.1,820,9,999999999,120,0.0860,0,88,999.000,999.0,99.0 +1977,2,23,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,4.4,89,101200,0,0,318,0,0,0,0,0,0,0,190,3.6,10,10,24.1,790,9,999999999,120,0.0860,0,88,999.000,999.0,99.0 +1977,2,23,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,3.9,89,101300,0,0,315,0,0,0,0,0,0,0,120,3.6,10,10,16.1,700,9,999999999,120,0.0860,0,88,999.000,999.0,99.0 +1977,2,24,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,4.4,93,101400,0,0,316,0,0,0,0,0,0,0,150,5.7,10,10,8.0,550,9,999999999,120,0.0860,0,88,999.000,999.0,99.0 +1977,2,24,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,3.9,89,101500,0,0,315,0,0,0,0,0,0,0,130,3.6,10,10,8.0,400,9,999999999,120,0.0860,0,88,999.000,999.0,99.0 +1977,2,24,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,3.9,93,101500,0,0,312,0,0,0,0,0,0,0,140,3.6,10,10,8.0,400,9,999999999,120,0.0860,0,88,999.000,999.0,99.0 +1977,2,24,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,3.3,89,101600,0,0,312,0,0,0,0,0,0,0,180,5.7,10,10,11.3,400,9,999999999,120,0.0860,0,88,999.000,999.0,99.0 +1977,2,24,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,2.8,86,101700,0,0,311,0,0,0,0,0,0,0,170,3.1,10,10,11.3,400,9,999999999,120,0.0860,0,88,999.000,999.0,99.0 +1977,2,24,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,3.3,93,101700,0,0,309,0,0,0,0,0,0,0,120,4.1,10,10,11.3,340,9,999999999,120,0.0860,0,88,999.000,999.0,99.0 +1977,2,24,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,2.8,93,101800,0,12,306,0,0,0,0,0,0,0,130,4.1,10,10,11.3,340,9,999999999,120,0.0860,0,88,999.000,999.0,99.0 +1977,2,24,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,2.8,93,101900,117,1396,306,15,3,14,1700,0,1700,530,120,3.6,10,10,11.3,340,9,999999999,120,0.0540,0,88,999.000,999.0,99.0 +1977,2,24,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,3.3,96,102000,343,1396,307,65,2,65,7500,100,7500,2490,120,4.6,10,10,6.4,400,9,999999999,120,0.0540,0,88,999.000,999.0,99.0 +1977,2,24,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,3.3,93,102000,538,1396,309,93,2,93,11000,100,10900,3940,130,4.1,10,10,6.4,400,9,999999999,120,0.0540,0,88,999.000,999.0,99.0 +1977,2,24,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,3.3,89,102100,685,1396,312,156,1,155,18000,100,18000,6560,170,5.7,10,10,16.1,400,9,999999999,120,0.0540,0,88,999.000,999.0,99.0 +1977,2,24,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,3.3,89,102100,775,1396,312,162,2,161,19000,200,18900,7170,130,3.1,10,10,9.7,430,9,999999999,120,0.0540,0,88,999.000,999.0,99.0 +1977,2,24,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,4.4,96,102100,801,1396,313,276,2,275,31200,200,31100,10630,110,5.2,10,10,24.1,490,9,999999999,120,0.0540,0,88,999.000,999.0,99.0 +1977,2,24,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,4.4,96,102100,762,1396,313,279,0,278,31100,0,31100,10300,90,4.1,10,10,24.1,460,9,999999999,120,0.0540,0,88,999.000,999.0,99.0 +1977,2,24,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,5.6,89,102100,660,1396,324,222,0,222,24800,0,24800,8170,210,5.2,10,10,24.1,700,9,999999999,120,0.0540,0,88,999.000,999.0,99.0 +1977,2,24,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,5.0,86,102100,502,1396,324,98,1,97,11300,100,11200,3960,210,2.6,10,10,19.3,880,9,999999999,120,0.0540,0,88,999.000,999.0,99.0 +1977,2,24,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,4.4,86,102200,300,1396,321,52,1,51,5900,0,5900,1960,330,3.6,10,10,16.1,760,9,999999999,120,0.0540,0,88,999.000,999.0,99.0 +1977,2,24,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,4.4,89,102200,75,1129,292,22,19,20,2300,1100,2300,490,250,1.5,5,5,24.1,77777,9,999999999,120,0.0540,0,88,999.000,999.0,99.0 +1977,2,24,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,3.3,96,102300,0,0,288,0,0,0,0,0,0,0,90,2.6,7,7,24.1,1070,9,999999999,120,0.0860,0,88,999.000,999.0,99.0 +1977,2,24,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,4.4,100,102300,0,0,310,0,0,0,0,0,0,0,130,2.1,10,10,24.1,940,9,999999999,120,0.0860,0,88,999.000,999.0,99.0 +1977,2,24,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,3.9,93,102400,0,0,293,0,0,0,0,0,0,0,0,0.0,7,7,24.1,910,9,999999999,120,0.0860,0,88,999.000,999.0,99.0 +1977,2,24,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,3.9,93,102400,0,0,293,0,0,0,0,0,0,0,0,0.0,7,7,24.1,820,9,999999999,120,0.0860,0,88,999.000,999.0,99.0 +1977,2,24,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,3.3,100,102500,0,0,304,0,0,0,0,0,0,0,280,2.1,10,10,16.1,1220,9,999999999,120,0.0860,0,88,999.000,999.0,99.0 +1977,2,24,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,3.9,100,102500,0,0,308,0,0,0,0,0,0,0,0,0.0,10,10,4.8,1220,9,999999999,120,0.0860,0,88,999.000,999.0,99.0 +1977,2,25,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,3.9,100,102500,0,0,308,0,0,0,0,0,0,0,0,0.0,10,10,12.9,1520,9,999999999,120,0.0870,0,88,999.000,999.0,99.0 +1977,2,25,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,3.9,96,102600,0,0,310,0,0,0,0,0,0,0,0,0.0,10,10,12.9,1340,9,999999999,120,0.0870,0,88,999.000,999.0,99.0 +1977,2,25,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,3.9,96,102500,0,0,310,0,0,0,0,0,0,0,160,3.6,10,10,16.1,1520,9,999999999,120,0.0870,0,88,999.000,999.0,99.0 +1977,2,25,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,3.3,93,102600,0,0,301,0,0,0,0,0,0,0,0,0.0,9,9,24.1,1280,9,999999999,120,0.0870,0,88,999.000,999.0,99.0 +1977,2,25,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,2.8,93,102500,0,0,306,0,0,0,0,0,0,0,160,2.6,10,10,24.1,1520,9,999999999,120,0.0870,0,88,999.000,999.0,99.0 +1977,2,25,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,2.8,89,102500,0,0,309,0,0,0,0,0,0,0,190,3.6,10,10,24.1,1370,9,999999999,120,0.0870,0,88,999.000,999.0,99.0 +1977,2,25,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,3.3,93,102500,0,58,309,0,0,0,0,0,0,0,200,5.7,10,10,11.3,980,9,999999999,120,0.0870,0,88,999.000,999.0,99.0 +1977,2,25,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,3.9,96,102500,124,1396,310,18,5,18,2100,0,2100,660,190,4.6,10,10,11.3,910,9,999999999,120,0.0380,0,88,999.000,999.0,99.0 +1977,2,25,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,3.9,93,102500,350,1396,312,66,10,63,7500,400,7400,2440,190,6.2,10,10,24.1,1220,9,999999999,120,0.0380,0,88,999.000,999.0,99.0 +1977,2,25,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,3.9,89,102500,545,1396,315,84,11,80,10000,600,9700,3490,190,6.7,10,10,24.1,1220,9,999999999,129,0.0380,0,88,999.000,999.0,99.0 +1977,2,25,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,3.9,86,102500,692,1396,317,154,10,149,17900,700,17500,6400,210,6.7,10,10,24.1,520,9,999999999,129,0.0380,0,88,999.000,999.0,99.0 +1977,2,25,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,3.9,86,102400,782,1396,317,127,1,126,15100,100,15100,5900,190,9.3,10,10,24.1,520,9,999999999,129,0.0380,0,88,999.000,999.0,99.0 +1977,2,25,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,3.9,83,102300,808,1396,320,154,9,148,18200,700,17800,6840,200,7.7,10,10,24.1,520,9,999999999,129,0.0380,0,88,999.000,999.0,99.0 +1977,2,25,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,3.3,80,102200,768,1396,320,160,5,158,18900,400,18700,7040,190,8.8,10,10,24.1,520,9,999999999,129,0.0380,0,88,999.000,999.0,99.0 +1977,2,25,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,3.9,82,102100,666,1396,320,125,1,125,14700,100,14700,5480,190,8.8,10,10,24.1,520,9,999999999,129,0.0380,0,88,999.000,999.0,99.0 +1977,2,25,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,4.4,86,102100,508,1396,321,116,3,115,13300,200,13200,4530,220,10.8,10,10,16.1,520,9,999999999,129,0.0380,0,88,999.000,999.0,99.0 +1977,2,25,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,5.0,89,102100,306,1396,321,58,0,58,6600,0,6600,2180,230,8.2,10,10,16.1,430,9,999999999,129,0.0380,0,88,999.000,999.0,99.0 +1977,2,25,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,5.0,89,102100,80,1175,321,15,0,15,1700,0,1700,550,220,8.2,10,10,11.3,610,9,999999999,129,0.0380,0,88,999.000,999.0,99.0 +1977,2,25,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,5.0,89,102100,0,0,321,0,0,0,0,0,0,0,220,8.2,10,10,24.1,700,9,999999999,129,0.0870,0,88,999.000,999.0,99.0 +1977,2,25,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,5.6,96,102300,0,0,319,0,0,0,0,0,0,0,300,3.1,10,10,24.1,850,9,999999999,120,0.0870,0,88,999.000,999.0,99.0 +1977,2,25,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,3.9,93,102400,0,0,297,0,0,0,0,0,0,0,270,3.6,8,8,24.1,980,9,999999999,120,0.0870,0,88,999.000,999.0,99.0 +1977,2,25,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,2.8,89,102500,0,0,283,0,0,0,0,0,0,0,210,4.1,9,5,24.1,3660,9,999999999,120,0.0870,0,88,999.000,999.0,99.0 +1977,2,25,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,2.8,83,102500,0,0,314,0,0,0,0,0,0,0,240,4.1,10,10,24.1,850,9,999999999,120,0.0870,0,88,999.000,999.0,99.0 +1977,2,25,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,2.2,82,102600,0,0,311,0,0,0,0,0,0,0,260,3.1,10,10,24.1,850,9,999999999,120,0.0870,0,88,999.000,999.0,99.0 +1977,2,26,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,2.8,93,102600,0,0,306,0,0,0,0,0,0,0,60,2.1,10,10,24.1,3660,9,999999999,110,0.0880,0,88,999.000,999.0,99.0 +1977,2,26,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,2.8,93,102700,0,0,306,0,0,0,0,0,0,0,70,2.6,10,10,24.1,3660,9,999999999,110,0.0880,0,88,999.000,999.0,99.0 +1977,2,26,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,2.8,93,102700,0,0,306,0,0,0,0,0,0,0,60,2.6,10,10,24.1,3960,9,999999999,110,0.0880,0,88,999.000,999.0,99.0 +1977,2,26,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,2.8,96,102700,0,0,304,0,0,0,0,0,0,0,100,2.6,10,10,24.1,3960,9,999999999,110,0.0880,0,88,999.000,999.0,99.0 +1977,2,26,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,3.3,96,102800,0,0,307,0,0,0,0,0,0,0,0,0.0,10,10,16.1,1830,9,999999999,110,0.0880,0,88,999.000,999.0,99.0 +1977,2,26,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,3.3,96,102800,0,0,307,0,0,0,0,0,0,0,40,1.5,10,10,16.1,1830,9,999999999,120,0.0880,0,88,999.000,999.0,99.0 +1977,2,26,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,2.8,96,102800,1,105,304,0,0,0,0,0,0,0,0,0.0,10,10,11.3,3660,9,999999999,120,0.0880,0,88,999.000,999.0,99.0 +1977,2,26,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,2.8,93,102900,131,1395,292,16,9,16,1900,600,1800,420,100,1.5,9,8,11.3,3660,9,999999999,129,0.1370,0,88,999.000,999.0,99.0 +1977,2,26,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,5.0,96,102900,358,1395,316,78,4,77,8900,200,8800,2870,130,2.1,10,10,8.0,210,9,999999999,129,0.1370,0,88,999.000,999.0,99.0 +1977,2,26,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,5.6,96,102900,552,1395,319,119,10,115,13700,700,13500,4710,100,2.6,10,10,11.3,270,9,999999999,139,0.1370,0,88,999.000,999.0,99.0 +1977,2,26,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,6.7,89,102900,699,1395,299,466,581,178,49400,58200,20200,3780,70,3.6,10,3,16.1,77777,9,999999999,139,0.1370,0,88,999.000,999.0,99.0 +1977,2,26,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,4.4,69,102900,789,1395,336,265,62,230,29200,6200,25600,7330,210,4.1,10,10,24.1,3050,9,999999999,139,0.1370,0,88,999.000,999.0,99.0 +1977,2,26,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,4.4,69,102800,815,1395,336,232,1,231,26600,100,26500,9620,190,5.7,10,10,32.2,1830,9,999999999,150,0.1370,0,88,999.000,999.0,99.0 +1977,2,26,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,3.3,61,102800,775,1395,338,279,4,277,31400,400,31200,10430,200,5.2,10,10,32.2,1160,9,999999999,150,0.1370,0,88,999.000,999.0,99.0 +1977,2,26,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,3.9,66,102700,673,1395,336,181,5,179,20700,400,20500,7210,180,3.6,10,10,32.2,1010,9,999999999,160,0.1370,0,88,999.000,999.0,99.0 +1977,2,26,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,5.6,74,102700,515,1395,338,114,1,114,13100,100,13100,4530,160,4.1,10,10,9.7,760,9,999999999,160,0.1370,0,88,999.000,999.0,99.0 +1977,2,26,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,7.2,93,102700,312,1395,331,36,3,35,4300,100,4200,1440,120,4.1,10,10,4.0,210,9,999999999,160,0.1370,0,88,999.000,999.0,99.0 +1977,2,26,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,6.7,96,102600,85,1197,326,12,1,12,1400,0,1400,450,110,6.2,10,10,6.4,120,9,999999999,160,0.1370,0,88,999.000,999.0,99.0 +1977,2,26,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,6.7,96,102600,0,0,326,0,0,0,0,0,0,0,120,5.2,10,10,6.4,340,9,999999999,160,0.0880,0,88,999.000,999.0,99.0 +1977,2,26,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,6.7,96,102600,0,0,326,0,0,0,0,0,0,0,110,6.2,10,10,16.1,180,9,999999999,170,0.0880,0,88,999.000,999.0,99.0 +1977,2,26,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,6.7,96,102600,0,0,326,0,0,0,0,0,0,0,120,6.2,10,10,16.1,270,9,999999999,170,0.0880,0,88,999.000,999.0,99.0 +1977,2,26,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,7.8,96,102600,0,0,332,0,0,0,0,0,0,0,180,6.2,10,10,16.1,1370,9,999999999,170,0.0880,0,88,999.000,999.0,99.0 +1977,2,26,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,7.8,89,102600,0,0,337,0,0,0,0,0,0,0,200,6.2,10,10,24.1,1160,9,999999999,170,0.0880,0,88,999.000,999.0,99.0 +1977,2,26,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,7.8,89,102600,0,0,337,0,0,0,0,0,0,0,180,4.6,10,10,24.1,980,9,999999999,170,0.0880,0,88,999.000,999.0,99.0 +1977,2,27,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,7.8,89,102600,0,0,337,0,0,0,0,0,0,0,210,5.2,10,10,24.1,1830,9,999999999,179,0.0880,0,88,999.000,999.0,99.0 +1977,2,27,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,7.2,86,102600,0,0,336,0,0,0,0,0,0,0,190,4.1,10,10,24.1,1100,9,999999999,179,0.0880,0,88,999.000,999.0,99.0 +1977,2,27,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,7.2,86,102500,0,0,336,0,0,0,0,0,0,0,200,5.2,10,10,24.1,1400,9,999999999,179,0.0880,0,88,999.000,999.0,99.0 +1977,2,27,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,7.2,86,102500,0,0,336,0,0,0,0,0,0,0,190,5.2,10,10,24.1,1280,9,999999999,179,0.0880,0,88,999.000,999.0,99.0 +1977,2,27,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,6.7,83,102500,0,0,336,0,0,0,0,0,0,0,200,6.7,10,10,24.1,1830,9,999999999,179,0.0880,0,88,999.000,999.0,99.0 +1977,2,27,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,6.7,83,102500,0,0,336,0,0,0,0,0,0,0,180,7.7,10,10,24.1,1340,9,999999999,179,0.0880,0,88,999.000,999.0,99.0 +1977,2,27,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,6.7,83,102500,1,151,336,0,0,0,0,0,0,0,190,6.2,10,10,24.1,1280,9,999999999,179,0.0670,0,88,999.000,999.0,99.0 +1977,2,27,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,6.7,83,102500,138,1394,336,29,1,29,3300,0,3300,990,180,5.7,10,10,24.1,1220,9,999999999,179,0.0670,0,88,999.000,999.0,99.0 +1977,2,27,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,6.7,77,102500,365,1394,342,119,0,119,13100,0,13100,3850,180,6.7,10,10,24.1,1040,9,999999999,179,0.0670,0,88,999.000,999.0,99.0 +1977,2,27,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,6.7,74,102500,560,1394,344,184,1,184,20500,100,20500,6540,190,6.7,10,10,32.2,700,9,999999999,179,0.0670,0,88,999.000,999.0,99.0 +1977,2,27,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,6.7,74,102500,707,1394,344,264,1,264,29500,100,29400,9470,200,7.2,10,10,32.2,640,9,999999999,179,0.0670,0,88,999.000,999.0,99.0 +1977,2,27,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,6.7,74,102400,796,1394,344,268,1,267,30300,100,30200,10410,160,5.7,10,10,40.2,670,9,999999999,179,0.0670,0,88,999.000,999.0,99.0 +1977,2,27,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,7.8,83,102000,822,1394,343,298,1,297,33500,100,33500,11330,100,4.6,10,10,40.2,760,9,999999999,179,0.0670,0,88,999.000,999.0,99.0 +1977,2,27,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,8.9,90,102200,782,1394,344,261,1,260,29500,100,29400,10120,110,4.1,10,10,22.5,760,9,999999999,179,0.0670,0,88,999.000,999.0,99.0 +1977,2,27,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,8.9,90,102100,679,1394,344,247,1,246,27500,100,27400,8840,110,5.2,10,10,24.1,730,9,999999999,179,0.0670,0,88,999.000,999.0,99.0 +1977,2,27,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,8.9,90,102000,521,1394,344,167,1,167,18600,100,18600,5890,110,6.2,10,10,24.1,760,9,999999999,179,0.0670,0,88,999.000,999.0,99.0 +1977,2,27,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,8.3,86,101900,318,1394,343,55,1,55,6400,0,6400,2120,120,5.2,10,10,3.2,460,9,999999999,179,0.0670,0,88,999.000,999.0,99.0 +1977,2,27,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,8.3,93,101900,90,1243,338,17,0,17,2000,0,2000,610,120,4.1,10,10,6.4,340,9,999999999,179,0.0670,0,88,999.000,999.0,99.0 +1977,2,27,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,8.3,93,101800,0,0,338,0,0,0,0,0,0,0,110,5.2,10,10,8.0,370,9,999999999,170,0.0880,0,88,999.000,999.0,99.0 +1977,2,27,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,8.9,96,101700,0,0,338,0,0,0,0,0,0,0,110,5.2,10,10,11.3,370,9,999999999,170,0.0880,0,88,999.000,999.0,99.0 +1977,2,27,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,8.3,93,101600,0,0,338,0,0,0,0,0,0,0,120,5.2,10,10,11.3,370,9,999999999,170,0.0880,0,88,999.000,999.0,99.0 +1977,2,27,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,8.3,93,101600,0,0,338,0,0,0,0,0,0,0,120,5.2,10,10,11.3,270,9,999999999,160,0.0880,0,88,999.000,999.0,99.0 +1977,2,27,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,8.3,93,101500,0,0,338,0,0,0,0,0,0,0,120,5.2,10,10,8.0,270,9,999999999,160,0.0880,0,88,999.000,999.0,99.0 +1977,2,27,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,8.3,93,101300,0,0,338,0,0,0,0,0,0,0,130,6.2,10,10,24.1,270,9,999999999,160,0.0880,0,88,999.000,999.0,99.0 +1977,2,28,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,7.8,93,101200,0,0,335,0,0,0,0,0,0,0,110,7.2,10,10,24.1,490,9,999999999,160,0.0890,0,88,999.000,999.0,99.0 +1977,2,28,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,7.2,89,101200,0,0,334,0,0,0,0,0,0,0,120,6.2,10,10,24.1,670,9,999999999,150,0.0890,0,88,999.000,999.0,99.0 +1977,2,28,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,7.2,86,101200,0,0,336,0,0,0,0,0,0,0,240,4.6,10,10,16.1,1400,9,999999999,150,0.0890,0,88,999.000,999.0,99.0 +1977,2,28,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,5.6,83,101200,0,0,329,0,0,0,0,0,0,0,220,5.2,10,10,16.1,1160,9,999999999,150,0.0890,0,88,999.000,999.0,99.0 +1977,2,28,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,5.6,89,101300,0,0,324,0,0,0,0,0,0,0,140,5.2,10,10,16.1,940,9,999999999,150,0.0890,0,88,999.000,999.0,99.0 +1977,2,28,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,4.4,83,101300,0,0,323,0,0,0,0,0,0,0,200,7.2,10,10,11.3,880,9,999999999,150,0.0890,0,88,999.000,999.0,99.0 +1977,2,28,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,5.6,89,101400,2,174,324,2,0,2,0,0,0,0,170,5.2,10,10,24.1,580,9,999999999,139,0.0890,0,88,999.000,999.0,99.0 +1977,2,28,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,5.0,86,101400,146,1394,303,45,49,40,4900,2800,4600,840,190,7.7,8,7,40.2,2130,9,999999999,139,0.0890,0,88,999.000,999.0,99.0 +1977,2,28,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,3.9,80,101400,373,1394,294,171,352,79,18300,29900,10300,1450,170,7.2,5,4,48.3,77777,9,999999999,139,0.0890,0,88,999.000,999.0,99.0 +1977,2,28,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,3.9,74,101300,567,1394,312,253,164,188,27600,16200,21000,4430,170,7.7,8,8,48.3,820,9,999999999,139,0.0890,0,88,999.000,999.0,99.0 +1977,2,28,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,2.2,61,101200,714,1394,315,287,177,197,31600,18300,22300,4950,170,11.8,8,8,48.3,820,9,999999999,129,0.0890,0,88,999.000,999.0,99.0 +1977,2,28,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,2.2,61,101200,803,1394,331,194,2,193,22600,200,22500,8400,170,11.3,10,10,32.2,880,9,999999999,129,0.0890,0,88,999.000,999.0,99.0 +1977,2,28,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,2.8,68,101000,829,1394,326,155,6,151,18400,400,18100,7030,180,10.8,10,10,24.1,790,9,999999999,129,0.0890,0,88,999.000,999.0,99.0 +1977,2,28,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,3.9,83,101000,789,1394,320,137,1,137,16400,100,16300,6360,200,12.4,10,10,16.1,460,9,999999999,129,0.0890,0,88,999.000,999.0,99.0 +1977,2,28,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,3.9,83,101100,686,1394,320,140,4,138,16400,300,16200,6010,200,10.3,10,10,16.1,550,9,999999999,120,0.0890,0,88,999.000,999.0,99.0 +1977,2,28,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,3.3,83,101000,527,1394,317,90,2,89,10500,100,10500,3770,180,10.3,10,10,16.1,430,9,999999999,120,0.0890,0,88,999.000,999.0,99.0 +1977,2,28,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,3.9,86,101000,324,1394,317,43,1,42,5000,0,5000,1710,200,7.7,10,10,16.1,430,9,999999999,120,0.0890,0,88,999.000,999.0,99.0 +1977,2,28,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,3.9,86,101100,95,1266,317,12,1,12,1400,0,1400,460,190,8.2,10,10,16.1,430,9,999999999,120,0.0890,0,88,999.000,999.0,99.0 +1977,2,28,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,3.9,86,101100,0,0,317,0,0,0,0,0,0,0,210,6.7,10,10,16.1,760,9,999999999,120,0.0890,0,88,999.000,999.0,99.0 +1977,2,28,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,4.4,89,101100,0,0,318,0,0,0,0,0,0,0,210,7.7,10,10,24.1,850,9,999999999,120,0.0890,0,88,999.000,999.0,99.0 +1977,2,28,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,4.4,89,101100,0,0,318,0,0,0,0,0,0,0,210,8.2,10,10,24.1,850,9,999999999,120,0.0890,0,88,999.000,999.0,99.0 +1977,2,28,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.4,4.9,89,101200,0,0,320,0,0,0,0,0,0,0,200,7.3,10,10,24.1,980,9,999999999,120,0.0890,0,88,999.000,999.0,99.0 +1977,2,28,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,5.4,89,101300,0,0,322,0,0,0,0,0,0,0,230,6.5,10,10,24.1,730,9,999999999,120,0.0890,0,88,999.000,999.0,99.0 +1977,2,28,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.0,5.9,89,101300,0,0,324,0,0,0,0,0,0,0,220,5.6,10,10,24.1,850,9,999999999,120,0.0890,0,88,999.000,999.0,99.0 +1988,3,1,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.4,6.3,93,101200,0,0,306,0,0,0,0,0,0,0,100,4.7,7,7,24.1,2440,9,999999999,179,0.0900,0,88,999.000,999.0,99.0 +1988,3,1,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.7,6.8,93,101200,0,0,312,0,0,0,0,0,0,0,170,3.8,8,8,24.1,2590,9,999999999,179,0.0900,0,88,999.000,999.0,99.0 +1988,3,1,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.0,7.3,93,101200,0,0,306,0,0,0,0,0,0,0,150,3.0,6,6,24.1,2590,9,999999999,179,0.0900,0,88,999.000,999.0,99.0 +1988,3,1,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,7.8,96,101300,0,0,332,0,0,0,0,0,0,0,80,2.1,10,10,24.1,2590,9,999999999,179,0.0900,0,88,999.000,999.0,99.0 +1988,3,1,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,8.3,96,101300,0,0,335,0,0,0,0,0,0,0,100,2.6,10,10,24.1,2440,9,999999999,179,0.0900,0,88,999.000,999.0,99.0 +1988,3,1,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,8.3,90,101400,0,0,341,0,0,0,0,0,0,0,0,0.0,10,10,24.1,460,9,999999999,170,0.0900,0,88,999.000,999.0,99.0 +1988,3,1,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,9.4,93,101500,3,244,345,0,0,0,0,0,0,0,190,3.1,10,10,12.9,460,9,999999999,170,0.1030,0,88,999.000,999.0,99.0 +1988,3,1,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,8.3,93,101600,155,1392,338,17,3,17,2100,0,2100,660,210,7.2,10,10,12.9,980,9,999999999,170,0.1030,0,88,999.000,999.0,99.0 +1988,3,1,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,7.8,93,101700,382,1392,335,70,5,69,8100,200,8100,2720,200,5.7,10,10,6.4,610,9,999999999,160,0.1030,0,88,999.000,999.0,99.0 +1988,3,1,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,7.8,96,101800,577,1392,332,95,6,92,11200,400,11000,4020,210,4.1,10,10,6.4,520,9,999999999,160,0.1030,0,88,999.000,999.0,99.0 +1988,3,1,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,7.8,93,101900,724,1392,335,137,8,133,16200,600,15900,5980,200,3.6,10,10,9.7,520,9,999999999,160,0.1030,0,88,999.000,999.0,99.0 +1988,3,1,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,7.2,86,102000,813,1392,336,231,4,228,26500,300,26300,9530,190,4.1,10,10,24.1,1130,9,999999999,150,0.1030,0,88,999.000,999.0,99.0 +1988,3,1,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,7.2,80,102000,838,1392,342,283,1,282,32100,100,32000,11160,200,4.1,10,10,32.2,1340,9,999999999,150,0.1030,0,88,999.000,999.0,99.0 +1988,3,1,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,7.2,77,102000,797,1392,345,265,0,264,29900,0,29900,10360,210,3.1,10,10,40.2,940,9,999999999,150,0.1030,0,88,999.000,999.0,99.0 +1988,3,1,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,6.1,69,102100,694,1392,346,245,0,245,27400,0,27400,8980,180,3.1,10,10,40.2,1520,9,999999999,139,0.1030,0,88,999.000,999.0,99.0 +1988,3,1,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,6.1,69,102100,535,1392,346,169,1,169,18900,100,18900,6040,190,3.1,10,10,48.3,1980,9,999999999,139,0.1030,0,88,999.000,999.0,99.0 +1988,3,1,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,6.1,69,102100,332,1392,337,80,33,73,8900,2800,8200,1940,170,3.1,9,9,48.3,1980,9,999999999,139,0.1030,0,88,999.000,999.0,99.0 +1988,3,1,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,5.6,69,102100,102,1311,343,24,2,23,2600,0,2600,790,160,3.1,10,10,48.3,1980,9,999999999,139,0.1030,0,88,999.000,999.0,99.0 +1988,3,1,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,6.1,77,102100,0,0,338,0,0,0,0,0,0,0,120,2.6,10,10,24.1,1520,9,999999999,139,0.0900,0,88,999.000,999.0,99.0 +1988,3,1,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,5.6,74,102200,0,0,338,0,0,0,0,0,0,0,110,2.6,10,10,24.1,1520,9,999999999,139,0.0900,0,88,999.000,999.0,99.0 +1988,3,1,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,6.1,80,102200,0,0,335,0,0,0,0,0,0,0,110,2.6,10,10,24.1,1520,9,999999999,139,0.0900,0,88,999.000,999.0,99.0 +1988,3,1,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,6.1,83,102200,0,0,317,0,0,0,0,0,0,0,120,3.1,8,8,24.1,1520,9,999999999,139,0.0900,0,88,999.000,999.0,99.0 +1988,3,1,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,5.6,83,102200,0,0,309,0,0,0,0,0,0,0,120,2.6,7,7,24.1,1680,9,999999999,129,0.0900,0,88,999.000,999.0,99.0 +1988,3,1,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,5.6,89,102200,0,0,309,0,0,0,0,0,0,0,110,2.6,10,8,24.1,3050,9,999999999,129,0.0900,0,88,999.000,999.0,99.0 +1988,3,2,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,5.6,86,102200,0,0,311,0,0,0,0,0,0,0,120,2.6,10,8,24.1,3050,9,999999999,129,0.0910,0,88,999.000,999.0,99.0 +1988,3,2,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,5.0,86,102200,0,0,297,0,0,0,0,0,0,0,110,2.1,10,5,24.1,77777,9,999999999,129,0.0910,0,88,999.000,999.0,99.0 +1988,3,2,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,5.0,86,102200,0,0,315,0,0,0,0,0,0,0,120,2.6,10,9,24.1,1490,9,999999999,129,0.0910,0,88,999.000,999.0,99.0 +1988,3,2,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,4.4,83,102200,0,0,297,0,0,0,0,0,0,0,120,2.6,10,5,24.1,77777,9,999999999,129,0.0910,0,88,999.000,999.0,99.0 +1988,3,2,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,5.0,86,102200,0,0,303,0,0,0,0,0,0,0,140,2.1,10,7,24.1,3050,9,999999999,139,0.0910,0,88,999.000,999.0,99.0 +1988,3,2,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,4.4,86,102200,0,0,321,0,0,0,0,0,0,0,120,2.6,10,10,24.1,3050,9,999999999,139,0.0910,0,88,999.000,999.0,99.0 +1988,3,2,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,5.0,86,102200,4,290,315,0,0,0,0,0,0,0,120,2.6,10,9,24.1,3660,9,999999999,150,0.1130,0,88,999.000,999.0,99.0 +1988,3,2,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,5.0,80,102100,163,1392,329,30,2,30,3400,0,3400,1070,110,3.6,10,10,64.4,3660,9,999999999,160,0.1130,0,88,999.000,999.0,99.0 +1988,3,2,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,5.6,80,102100,390,1392,332,130,10,127,14300,600,14100,4170,100,3.1,10,10,64.4,2440,9,999999999,160,0.1130,0,88,999.000,999.0,99.0 +1988,3,2,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,5.6,77,102100,584,1392,335,156,3,155,17700,200,17600,6030,70,2.6,10,10,64.4,2440,9,999999999,170,0.1130,0,88,999.000,999.0,99.0 +1988,3,2,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,6.1,77,102100,731,1392,338,193,6,189,22100,500,21800,7860,170,2.6,10,10,64.4,1980,9,999999999,179,0.1130,0,88,999.000,999.0,99.0 +1988,3,2,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,5.0,66,102000,820,1392,342,140,6,137,16800,400,16600,6460,220,4.1,10,10,48.3,1680,9,999999999,179,0.1130,0,88,999.000,999.0,99.0 +1988,3,2,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,5.0,66,102000,845,1392,342,258,3,256,29500,300,29300,10560,210,4.1,10,10,32.2,1520,9,999999999,189,0.1130,0,88,999.000,999.0,99.0 +1988,3,2,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,6.7,80,101900,804,1392,339,160,4,158,18900,300,18800,7200,180,3.1,10,10,24.1,820,9,999999999,200,0.1130,0,88,999.000,999.0,99.0 +1988,3,2,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,6.1,74,101800,701,1392,341,223,3,221,25100,300,25000,8510,180,4.1,10,10,24.1,820,9,999999999,200,0.1130,0,88,999.000,999.0,99.0 +1988,3,2,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,6.7,80,101800,542,1392,339,104,1,103,12000,100,12000,4290,190,5.2,10,10,9.7,910,9,999999999,209,0.1130,0,88,999.000,999.0,99.0 +1988,3,2,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,7.8,90,101700,338,1392,337,53,0,53,6200,0,6200,2100,150,2.6,10,10,19.3,520,9,999999999,200,0.1130,0,88,999.000,999.0,99.0 +1988,3,2,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,7.8,90,101700,107,1334,337,16,0,16,1900,0,1900,590,170,2.6,10,10,32.2,520,9,999999999,189,0.1130,0,88,999.000,999.0,99.0 +1988,3,2,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,7.8,86,101700,0,0,340,0,0,0,0,0,0,0,170,2.6,10,10,24.1,460,9,999999999,179,0.0910,0,88,999.000,999.0,99.0 +1988,3,2,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,8.3,93,101700,0,0,328,0,0,0,0,0,0,0,190,3.1,9,9,24.1,2130,9,999999999,170,0.0910,0,88,999.000,999.0,99.0 +1988,3,2,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,8.3,90,101700,0,0,341,0,0,0,0,0,0,0,210,6.2,10,10,24.1,1310,9,999999999,160,0.0910,0,88,999.000,999.0,99.0 +1988,3,2,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,8.9,96,101800,0,0,338,0,0,0,0,0,0,0,320,5.2,10,10,6.4,240,9,999999999,150,0.0910,0,88,999.000,999.0,99.0 +1988,3,2,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,6.1,86,101800,0,0,330,0,0,0,0,0,0,0,330,3.6,10,10,24.1,1130,9,999999999,139,0.0910,0,88,999.000,999.0,99.0 +1988,3,2,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,5.0,83,101900,0,0,326,0,0,0,0,0,0,0,310,2.6,10,10,24.1,1340,9,999999999,129,0.0910,0,88,999.000,999.0,99.0 +1988,3,3,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,3.9,77,102000,0,0,325,0,0,0,0,0,0,0,320,3.6,10,10,24.1,1460,9,999999999,120,0.0910,0,88,999.000,999.0,99.0 +1988,3,3,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,3.3,77,102000,0,0,306,0,0,0,0,0,0,0,310,3.6,8,8,24.1,1460,9,999999999,110,0.0910,0,88,999.000,999.0,99.0 +1988,3,3,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,2.2,83,102100,0,0,283,0,0,0,0,0,0,0,250,2.1,4,4,24.1,77777,9,999999999,100,0.0910,0,88,999.000,999.0,99.0 +1988,3,3,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,2.2,93,102100,0,0,271,0,0,0,0,0,0,0,0,0.0,5,2,24.1,77777,9,999999999,89,0.0910,0,88,999.000,999.0,99.0 +1988,3,3,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,2.2,100,102100,0,0,272,0,0,0,0,0,0,0,80,1.5,8,4,24.1,77777,9,999999999,89,0.0910,0,88,999.000,999.0,99.0 +1988,3,3,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,2.8,96,102100,0,0,281,0,0,0,0,0,0,0,100,2.1,10,6,24.1,3050,9,999999999,89,0.0910,0,88,999.000,999.0,99.0 +1988,3,3,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,2.2,89,102100,6,313,274,2,3,2,0,0,0,0,0,0.0,8,2,64.4,77777,9,999999999,100,0.1080,0,88,999.000,999.0,99.0 +1988,3,3,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,2.8,93,102200,170,1391,274,65,226,38,6900,13100,5300,680,140,2.6,2,2,64.4,77777,9,999999999,100,0.1080,0,88,999.000,999.0,99.0 +1988,3,3,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,3.3,83,102200,397,1391,280,225,582,60,23700,51000,9100,1140,90,3.1,1,1,48.3,77777,9,999999999,100,0.1080,0,88,999.000,999.0,99.0 +1988,3,3,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,3.9,77,102200,592,1391,294,364,584,117,37800,55600,14000,2280,90,3.1,3,3,48.3,77777,9,999999999,100,0.1080,0,88,999.000,999.0,99.0 +1988,3,3,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,1.7,57,102200,738,1391,303,470,567,169,50200,57300,19600,3650,40,2.1,7,4,48.3,6100,9,999999999,110,0.1080,0,88,999.000,999.0,99.0 +1988,3,3,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,0.6,52,102200,827,1391,307,367,233,229,39800,24800,25100,5590,350,3.1,9,6,56.3,6100,9,999999999,110,0.1080,0,88,999.000,999.0,99.0 +1988,3,3,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,0.6,52,102100,852,1391,311,568,470,281,60900,50000,30200,7240,80,2.1,9,7,56.3,6100,9,999999999,110,0.1080,0,88,999.000,999.0,99.0 +1988,3,3,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,0.0,48,102100,811,1391,304,511,543,196,54600,55500,22100,4530,80,3.1,9,4,64.4,77777,9,999999999,110,0.1080,0,88,999.000,999.0,99.0 +1988,3,3,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,0.0,48,102000,707,1391,309,335,231,218,36600,23700,24500,5470,70,2.6,10,6,64.4,3050,9,999999999,120,0.1080,0,88,999.000,999.0,99.0 +1988,3,3,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,0.0,50,102000,548,1391,302,244,226,156,26100,22300,17300,3270,0,0.0,8,4,64.4,77777,9,999999999,120,0.1080,0,88,999.000,999.0,99.0 +1988,3,3,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,-0.6,47,101900,344,1391,333,74,9,72,8400,400,8400,2690,40,1.5,10,10,64.4,3350,9,999999999,129,0.1080,0,88,999.000,999.0,99.0 +1988,3,3,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,0.0,50,101900,112,1379,331,26,0,26,2900,0,2900,880,130,2.1,10,10,64.4,2590,9,999999999,139,0.1080,0,88,999.000,999.0,99.0 +1988,3,3,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,0.0,52,101900,0,0,319,0,0,0,0,0,0,0,80,1.5,9,9,24.1,2290,9,999999999,139,0.0910,0,88,999.000,999.0,99.0 +1988,3,3,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,1.1,59,101900,0,0,327,0,0,0,0,0,0,0,110,2.1,10,10,24.1,1130,9,999999999,150,0.0910,0,88,999.000,999.0,99.0 +1988,3,3,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,2.2,66,101900,0,0,326,0,0,0,0,0,0,0,100,2.1,10,10,24.1,1830,9,999999999,160,0.0910,0,88,999.000,999.0,99.0 +1988,3,3,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,2.8,68,101900,0,0,326,0,0,0,0,0,0,0,130,3.1,10,10,24.1,940,9,999999999,160,0.0910,0,88,999.000,999.0,99.0 +1988,3,3,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,3.3,71,101900,0,0,327,0,0,0,0,0,0,0,110,2.1,10,10,24.1,820,9,999999999,170,0.0910,0,88,999.000,999.0,99.0 +1988,3,3,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,3.3,71,101900,0,0,327,0,0,0,0,0,0,0,130,4.1,10,10,24.1,610,9,999999999,179,0.0910,0,88,999.000,999.0,99.0 +1988,3,4,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,6.7,100,101800,0,0,323,0,0,0,0,0,0,0,120,3.6,10,10,4.8,370,9,999999999,189,0.0920,0,88,999.000,999.0,99.0 +1988,3,4,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,6.1,96,101800,0,0,323,0,0,0,0,0,0,0,120,2.6,10,10,24.1,520,9,999999999,200,0.0920,0,88,999.000,999.0,99.0 +1988,3,4,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,5.6,93,101800,0,0,322,0,0,0,0,0,0,0,120,3.6,10,10,24.1,460,9,999999999,200,0.0920,0,88,999.000,999.0,99.0 +1988,3,4,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,5.6,93,101700,0,0,322,0,0,0,0,0,0,0,120,4.1,10,10,24.1,460,9,999999999,209,0.0920,0,88,999.000,999.0,99.0 +1988,3,4,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,6.1,96,101700,0,0,323,0,0,0,0,0,0,0,120,5.2,10,10,24.1,580,9,999999999,209,0.0920,0,88,999.000,999.0,99.0 +1988,3,4,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,6.1,93,101600,0,0,325,0,0,0,0,0,0,0,120,4.6,10,10,24.1,520,9,999999999,200,0.0920,0,88,999.000,999.0,99.0 +1988,3,4,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,6.1,93,101600,7,359,325,1,0,1,0,0,0,0,120,4.1,10,10,24.1,610,9,999999999,200,0.1680,0,88,999.000,999.0,99.0 +1988,3,4,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,6.1,93,101600,178,1390,325,20,1,20,2400,0,2400,780,130,4.1,10,10,16.1,760,9,999999999,200,0.1680,0,88,999.000,999.0,99.0 +1988,3,4,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,6.7,93,101600,405,1390,328,67,0,67,7800,0,7800,2710,140,4.1,10,10,11.3,760,9,999999999,200,0.1680,0,88,999.000,999.0,99.0 +1988,3,4,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,7.2,96,101700,599,1390,329,98,3,97,11600,200,11500,4260,140,3.6,10,10,3.2,760,9,999999999,200,0.1680,0,88,999.000,999.0,99.0 +1988,3,4,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,8.9,100,101700,746,1390,336,127,3,125,15100,200,15000,5760,120,3.1,10,10,4.0,520,9,999999999,189,0.1680,0,88,999.000,999.0,99.0 +1988,3,4,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,9.4,96,101800,834,1390,342,141,1,141,17000,100,16900,6670,310,4.1,10,10,6.4,490,9,999999999,189,0.1680,0,88,999.000,999.0,99.0 +1988,3,4,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,8.3,93,101800,858,1390,338,182,0,182,21400,0,21400,8310,330,3.1,10,10,9.7,880,9,999999999,189,0.1680,0,88,999.000,999.0,99.0 +1988,3,4,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,8.3,93,101900,817,1390,338,291,0,291,32800,0,32800,11180,30,1.5,10,10,12.9,1520,9,999999999,189,0.1680,0,88,999.000,999.0,99.0 +1988,3,4,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,7.8,86,102000,713,1390,340,137,1,136,16100,100,16000,6050,120,1.5,10,10,9.7,1220,9,999999999,179,0.1680,0,88,999.000,999.0,99.0 +1988,3,4,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,8.3,93,102000,554,1390,338,95,1,95,11200,100,11200,4060,110,1.5,10,10,9.7,1430,9,999999999,179,0.1680,0,88,999.000,999.0,99.0 +1988,3,4,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,7.8,86,102100,350,1390,310,146,198,97,15500,16600,11300,1900,170,3.6,4,4,32.2,77777,9,999999999,170,0.1680,0,88,999.000,999.0,99.0 +1988,3,4,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,7.8,90,102100,118,1390,310,28,25,26,3100,1500,3000,630,150,2.6,5,5,32.2,77777,9,999999999,170,0.1680,0,88,999.000,999.0,99.0 +1988,3,4,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,7.2,93,102200,0,12,307,0,0,0,0,0,0,0,0,0.0,6,6,24.1,1980,9,999999999,160,0.0920,0,88,999.000,999.0,99.0 +1988,3,4,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,6.1,89,102200,0,0,301,0,0,0,0,0,0,0,190,2.6,5,5,24.1,77777,9,999999999,150,0.0920,0,88,999.000,999.0,99.0 +1988,3,4,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,4.4,83,102200,0,0,285,0,0,0,0,0,0,0,230,2.6,1,1,24.1,77777,9,999999999,150,0.0920,0,88,999.000,999.0,99.0 +1988,3,4,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,5.0,93,102300,0,0,276,0,0,0,0,0,0,0,160,1.5,0,0,24.1,77777,9,999999999,139,0.0920,0,88,999.000,999.0,99.0 +1988,3,4,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,3.9,89,102300,0,0,282,0,0,0,0,0,0,0,140,2.1,3,2,24.1,77777,9,999999999,129,0.0920,0,88,999.000,999.0,99.0 +1988,3,4,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,4.4,93,102300,0,0,279,0,0,0,0,0,0,0,120,2.1,8,1,24.1,77777,9,999999999,129,0.0920,0,88,999.000,999.0,99.0 +1988,3,5,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,3.3,96,102400,0,0,280,0,0,0,0,0,0,0,120,2.6,10,4,24.1,77777,9,999999999,120,0.0920,0,88,999.000,999.0,99.0 +1988,3,5,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,3.3,100,102400,0,0,277,0,0,0,0,0,0,0,120,1.5,10,4,24.1,77777,9,999999999,110,0.0920,0,88,999.000,999.0,99.0 +1988,3,5,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,3.3,96,102400,0,0,275,0,0,0,0,0,0,0,120,1.5,10,2,24.1,77777,9,999999999,110,0.0920,0,88,999.000,999.0,99.0 +1988,3,5,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,2.8,96,102300,0,0,272,0,0,0,0,0,0,0,120,2.1,10,2,24.1,77777,9,999999999,100,0.0920,0,88,999.000,999.0,99.0 +1988,3,5,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,3.3,100,102200,0,0,282,0,0,0,0,0,0,0,120,1.5,10,6,24.1,520,9,999999999,110,0.0920,0,88,999.000,999.0,99.0 +1988,3,5,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,3.3,96,102200,0,0,298,0,0,0,0,0,0,0,130,2.1,10,9,24.1,520,9,999999999,110,0.0920,0,88,999.000,999.0,99.0 +1988,3,5,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,3.9,96,102200,9,405,310,1,0,1,0,0,0,0,120,2.1,10,10,24.1,520,9,999999999,120,0.0520,0,88,999.000,999.0,99.0 +1988,3,5,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,4.4,96,102200,185,1389,313,47,5,46,5200,0,5200,1520,140,1.5,10,10,24.1,520,9,999999999,129,0.0520,0,88,999.000,999.0,99.0 +1988,3,5,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,4.4,93,102200,413,1389,316,113,8,111,12700,500,12600,3980,120,3.6,10,10,48.3,520,9,999999999,129,0.0520,0,88,999.000,999.0,99.0 +1988,3,5,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,5.0,89,102200,607,1389,321,174,10,169,19600,800,19300,6540,120,3.1,10,10,48.3,1220,9,999999999,139,0.0520,0,88,999.000,999.0,99.0 +1988,3,5,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,5.6,89,102100,753,1389,324,230,1,230,26200,100,26200,9160,110,2.6,10,10,48.3,1220,9,999999999,150,0.0520,0,88,999.000,999.0,99.0 +1988,3,5,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,5.6,83,102100,841,1389,329,274,6,270,31200,500,30800,10910,140,3.1,10,10,48.3,1680,9,999999999,150,0.0520,0,88,999.000,999.0,99.0 +1988,3,5,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,5.0,74,102000,865,1389,334,193,1,193,22700,100,22700,8740,180,4.1,10,10,32.2,1680,9,999999999,160,0.0520,0,88,999.000,999.0,99.0 +1988,3,5,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,4.4,66,101900,824,1389,339,276,0,276,31300,0,31300,10900,180,5.2,10,10,40.2,1520,9,999999999,170,0.0520,0,88,999.000,999.0,99.0 +1988,3,5,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,3.9,64,101800,720,1389,338,236,1,235,26600,100,26500,9010,190,5.7,10,10,48.3,1370,9,999999999,170,0.0520,0,88,999.000,999.0,99.0 +1988,3,5,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,3.9,64,101700,560,1389,338,111,1,111,12900,100,12900,4620,170,6.7,10,10,32.2,1130,9,999999999,179,0.0520,0,88,999.000,999.0,99.0 +1988,3,5,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,5.0,71,101700,356,1389,337,72,1,72,8300,0,8200,2730,190,12.9,10,10,32.2,940,9,999999999,170,0.0520,0,88,999.000,999.0,99.0 +1988,3,5,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,6.1,80,101700,123,1389,335,21,0,21,2400,0,2400,750,180,6.7,10,10,40.2,1010,9,999999999,170,0.0520,0,88,999.000,999.0,99.0 +1988,3,5,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,6.1,83,101600,0,35,333,0,0,0,0,0,0,0,180,5.2,10,10,24.1,730,9,999999999,160,0.0920,0,88,999.000,999.0,99.0 +1988,3,5,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,5.0,74,101600,0,0,334,0,0,0,0,0,0,0,180,6.2,10,10,24.1,730,9,999999999,150,0.0920,0,88,999.000,999.0,99.0 +1988,3,5,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,5.6,80,101600,0,0,332,0,0,0,0,0,0,0,210,4.6,10,10,24.1,730,9,999999999,150,0.0920,0,88,999.000,999.0,99.0 +1988,3,5,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,5.0,89,101700,0,0,321,0,0,0,0,0,0,0,310,6.2,10,10,24.1,460,9,999999999,139,0.0920,0,88,999.000,999.0,99.0 +1988,3,5,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,5.0,93,101700,0,0,319,0,0,0,0,0,0,0,340,2.6,10,10,24.1,1310,9,999999999,129,0.0920,0,88,999.000,999.0,99.0 +1988,3,5,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,4.4,93,101800,0,0,316,0,0,0,0,0,0,0,260,2.6,10,10,16.1,760,9,999999999,129,0.0920,0,88,999.000,999.0,99.0 +1988,3,6,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,3.9,89,101800,0,0,315,0,0,0,0,0,0,0,200,2.6,10,10,24.1,760,9,999999999,120,0.0930,0,88,999.000,999.0,99.0 +1988,3,6,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,3.9,89,101900,0,0,315,0,0,0,0,0,0,0,200,2.6,10,10,24.1,2900,9,999999999,110,0.0930,0,88,999.000,999.0,99.0 +1988,3,6,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,3.3,89,101900,0,0,292,0,0,0,0,0,0,0,200,2.6,7,7,24.1,2900,9,999999999,110,0.0930,0,88,999.000,999.0,99.0 +1988,3,6,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,2.8,86,102000,0,0,292,0,0,0,0,0,0,0,220,1.5,7,7,24.1,2900,9,999999999,100,0.0930,0,88,999.000,999.0,99.0 +1988,3,6,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,2.8,93,102100,0,0,287,0,0,0,0,0,0,0,190,2.6,7,7,24.1,1830,9,999999999,100,0.0930,0,88,999.000,999.0,99.0 +1988,3,6,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,2.8,93,102200,0,0,287,0,0,0,0,0,0,0,150,2.1,7,7,24.1,1460,9,999999999,100,0.0930,0,88,999.000,999.0,99.0 +1988,3,6,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,2.8,93,102200,12,451,279,2,1,2,0,0,0,0,210,3.6,4,4,24.1,77777,9,999999999,100,0.1240,0,88,999.000,999.0,99.0 +1988,3,6,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,3.3,89,102300,193,1389,289,60,78,50,6600,5100,5900,1050,200,4.1,6,6,40.2,1340,9,999999999,100,0.1240,0,88,999.000,999.0,99.0 +1988,3,6,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,3.9,83,102400,420,1389,300,169,118,134,18300,10800,15100,3000,200,4.1,7,7,40.2,1430,9,999999999,100,0.1240,0,88,999.000,999.0,99.0 +1988,3,6,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,3.3,77,102400,614,1389,306,213,100,169,23400,10100,18900,4060,210,2.6,8,8,40.2,1370,9,999999999,100,0.1240,0,88,999.000,999.0,99.0 +1988,3,6,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,2.8,66,102400,760,1389,305,241,91,192,26800,9500,21600,4960,230,4.1,6,6,40.2,1370,9,999999999,100,0.1240,0,88,999.000,999.0,99.0 +1988,3,6,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,1.7,57,102500,848,1389,303,605,698,179,63000,69500,20400,4180,290,3.6,4,4,40.2,77777,9,999999999,100,0.1240,0,88,999.000,999.0,99.0 +1988,3,6,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,1.7,53,102500,872,1389,313,573,599,198,61700,61700,22900,4850,220,3.1,6,6,40.2,1980,9,999999999,100,0.1240,0,88,999.000,999.0,99.0 +1988,3,6,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,3.3,71,102500,830,1389,318,331,84,281,36400,8500,31300,8930,340,5.2,9,9,40.2,1220,9,999999999,100,0.1240,0,88,999.000,999.0,99.0 +1988,3,6,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,2.8,74,102600,726,1389,321,132,1,132,15700,100,15600,5960,290,2.6,10,10,40.2,1680,9,999999999,100,0.1240,0,88,999.000,999.0,99.0 +1988,3,6,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,2.8,68,102500,566,1389,317,125,14,119,14400,900,14000,4900,200,3.6,9,9,40.2,1980,9,999999999,100,0.1240,0,88,999.000,999.0,99.0 +1988,3,6,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,3.3,74,102600,362,1389,325,109,4,108,12100,200,12000,3630,210,2.1,10,10,40.2,1830,9,999999999,100,0.1240,0,88,999.000,999.0,99.0 +1988,3,6,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,3.9,80,102700,129,1389,322,13,1,13,1600,0,1600,500,310,4.1,10,10,56.3,1430,9,999999999,100,0.1240,0,88,999.000,999.0,99.0 +1988,3,6,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,2.8,77,102700,0,81,319,0,0,0,0,0,0,0,160,2.1,10,10,24.1,1830,9,999999999,100,0.0930,0,88,999.000,999.0,99.0 +1988,3,6,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,3.3,80,102700,0,0,320,0,0,0,0,0,0,0,0,0.0,10,10,24.1,2290,9,999999999,100,0.0930,0,88,999.000,999.0,99.0 +1988,3,6,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,3.9,89,102800,0,0,300,0,0,0,0,0,0,0,60,2.1,8,8,24.1,2130,9,999999999,100,0.0930,0,88,999.000,999.0,99.0 +1988,3,6,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,3.3,89,102800,0,0,282,0,0,0,0,0,0,0,0,0.0,4,3,24.1,77777,9,999999999,100,0.0930,0,88,999.000,999.0,99.0 +1988,3,6,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,2.8,96,102900,0,0,263,0,0,0,0,0,0,0,110,2.1,0,0,24.1,77777,9,999999999,100,0.0930,0,88,999.000,999.0,99.0 +1988,3,6,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,2.8,100,102800,0,0,270,0,0,0,0,0,0,0,250,1.5,2,2,24.1,77777,9,999999999,100,0.0930,0,88,999.000,999.0,99.0 +1988,3,7,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,1.7,100,102900,0,0,265,0,0,0,0,0,0,0,250,2.6,2,2,16.1,77777,9,999999999,100,0.0940,0,88,999.000,999.0,99.0 +1988,3,7,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.1,1.1,100,102900,0,0,253,0,0,0,0,0,0,0,210,2.1,0,0,16.1,77777,9,999999999,100,0.0940,0,88,999.000,999.0,99.0 +1988,3,7,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,2.8,100,102900,0,0,302,0,0,0,0,0,0,0,0,0.0,10,10,4.8,150,9,999999999,100,0.0940,0,88,999.000,999.0,99.0 +1988,3,7,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,2.2,100,102900,0,0,298,0,0,0,0,0,0,0,0,0.0,10,10,0.1,90,9,999999999,100,0.0940,0,88,999.000,999.0,99.0 +1988,3,7,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,2.2,100,102900,0,0,298,0,0,0,0,0,0,0,0,0.0,10,10,0.1,90,9,999999999,100,0.0940,0,88,999.000,999.0,99.0 +1988,3,7,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,2.2,100,102900,0,0,298,0,0,0,0,0,0,0,350,2.1,10,10,0.1,30,9,999999999,100,0.0940,0,88,999.000,999.0,99.0 +1988,3,7,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,2.2,100,102900,14,497,298,3,0,3,0,0,0,0,360,1.5,10,10,0.1,30,9,999999999,110,0.0780,0,88,999.000,999.0,99.0 +1988,3,7,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,2.2,100,102900,200,1388,298,41,2,41,4700,0,4700,1450,310,2.6,10,10,0.2,60,9,999999999,110,0.0780,0,88,999.000,999.0,99.0 +1988,3,7,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,1.7,100,102900,428,1388,296,109,2,108,12200,100,12200,3980,330,2.6,10,10,0.4,30,9,999999999,110,0.0780,0,88,999.000,999.0,99.0 +1988,3,7,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,2.8,100,102900,622,1388,302,183,7,180,20700,600,20500,6930,0,0.0,10,10,0.8,60,9,999999999,110,0.0780,0,88,999.000,999.0,99.0 +1988,3,7,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,3.3,93,102800,767,1388,309,231,2,229,26200,200,26100,9250,250,2.1,10,10,4.0,210,9,999999999,120,0.0780,0,88,999.000,999.0,99.0 +1988,3,7,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,4.4,83,102800,855,1388,285,586,786,103,62200,78600,13600,2480,310,3.1,3,1,24.1,77777,9,999999999,120,0.0780,0,88,999.000,999.0,99.0 +1988,3,7,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,4.4,71,102600,879,1388,294,630,841,99,67400,84500,13700,2480,270,3.1,3,1,40.2,77777,9,999999999,120,0.0780,0,88,999.000,999.0,99.0 +1988,3,7,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,3.3,59,102500,837,1388,304,565,739,120,60500,74900,15200,2930,300,3.1,4,2,64.4,77777,9,999999999,129,0.0780,0,88,999.000,999.0,99.0 +1988,3,7,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,3.9,53,102500,732,1388,315,474,634,140,49500,62600,16400,3000,250,3.1,7,2,64.4,77777,9,999999999,129,0.0780,0,88,999.000,999.0,99.0 +1988,3,7,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,3.9,53,102400,572,1388,315,240,346,98,26300,33600,12400,1870,310,3.1,4,2,64.4,77777,9,999999999,129,0.0780,0,88,999.000,999.0,99.0 +1988,3,7,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,3.9,53,102300,368,1388,315,212,532,72,21800,44900,9900,1300,290,2.6,5,2,64.4,77777,9,999999999,139,0.0780,0,88,999.000,999.0,99.0 +1988,3,7,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,4.4,66,102200,135,1388,306,50,217,30,5300,11000,4300,530,290,3.6,3,3,64.4,77777,9,999999999,139,0.0780,0,88,999.000,999.0,99.0 +1988,3,7,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,3.9,64,102200,1,104,306,1,1,0,0,0,0,0,320,1.5,3,3,64.4,77777,9,999999999,150,0.0780,0,88,999.000,999.0,99.0 +1988,3,7,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,4.4,77,102200,0,0,312,0,0,0,0,0,0,0,110,2.1,9,8,24.1,7620,9,999999999,160,0.0940,0,88,999.000,999.0,99.0 +1988,3,7,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,4.4,83,102200,0,0,303,0,0,0,0,0,0,0,60,2.1,10,7,24.1,7620,9,999999999,160,0.0940,0,88,999.000,999.0,99.0 +1988,3,7,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,3.9,74,102100,0,0,312,0,0,0,0,0,0,0,80,2.1,10,8,24.1,3960,9,999999999,170,0.0940,0,88,999.000,999.0,99.0 +1988,3,7,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,2.8,71,102100,0,0,290,0,0,0,0,0,0,0,160,2.1,3,2,24.1,77777,9,999999999,179,0.0940,0,88,999.000,999.0,99.0 +1988,3,7,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,3.9,89,102100,0,0,295,0,0,0,0,0,0,0,100,2.1,10,7,24.1,7620,9,999999999,179,0.0940,0,88,999.000,999.0,99.0 +1988,3,8,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,3.9,93,102100,0,0,287,0,0,0,0,0,0,0,90,3.1,8,5,24.1,7620,9,999999999,189,0.0940,0,88,999.000,999.0,99.0 +1988,3,8,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,2.8,77,102100,0,0,295,0,0,0,0,0,0,0,150,2.1,8,6,24.1,3350,9,999999999,200,0.0940,0,88,999.000,999.0,99.0 +1988,3,8,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,3.9,83,102000,0,0,311,0,0,0,0,0,0,0,230,2.1,10,9,24.1,2740,9,999999999,200,0.0940,0,88,999.000,999.0,99.0 +1988,3,8,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,4.4,89,102000,0,0,318,0,0,0,0,0,0,0,340,1.5,10,10,24.1,2900,9,999999999,209,0.0940,0,88,999.000,999.0,99.0 +1988,3,8,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,4.4,86,102000,0,0,321,0,0,0,0,0,0,0,100,2.1,10,10,12.9,2440,9,999999999,209,0.0940,0,88,999.000,999.0,99.0 +1988,3,8,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,5.0,89,102100,0,0,321,0,0,0,0,0,0,0,110,3.1,10,10,16.1,1980,9,999999999,209,0.0940,0,88,999.000,999.0,99.0 +1988,3,8,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,4.4,86,102100,16,543,321,3,3,3,0,0,0,0,100,3.1,10,10,64.4,2130,9,999999999,209,0.0400,0,88,999.000,999.0,99.0 +1988,3,8,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,4.4,86,102100,208,1387,321,27,1,27,3200,0,3200,1040,120,4.1,10,10,12.9,1370,9,999999999,209,0.0400,0,88,999.000,999.0,99.0 +1988,3,8,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,5.0,89,102000,435,1387,321,81,0,81,9400,0,9400,3250,130,2.6,10,10,32.2,1680,9,999999999,209,0.0400,0,88,999.000,999.0,99.0 +1988,3,8,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,5.0,89,102000,629,1387,321,141,10,137,16400,700,16100,5740,70,2.1,10,10,32.2,1980,9,999999999,220,0.0400,0,88,999.000,999.0,99.0 +1988,3,8,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,5.0,83,102000,775,1387,326,168,3,166,19600,200,19500,7370,70,2.6,10,10,24.1,1680,9,999999999,220,0.0400,0,88,999.000,999.0,99.0 +1988,3,8,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,6.7,89,101900,862,1387,331,159,6,155,19000,500,18700,7320,90,3.1,10,10,19.3,1220,9,999999999,220,0.0400,0,88,999.000,999.0,99.0 +1988,3,8,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,7.2,93,101900,886,1387,331,184,2,182,21700,200,21600,8440,110,3.1,10,10,19.3,1430,9,999999999,220,0.0400,0,88,999.000,999.0,99.0 +1988,3,8,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,7.8,93,101800,843,1387,335,176,0,175,20600,0,20600,8000,160,2.6,10,10,3.2,400,9,999999999,220,0.0400,0,88,999.000,999.0,99.0 +1988,3,8,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,7.8,93,101800,739,1387,335,169,4,168,19800,300,19600,7260,140,3.1,10,10,6.4,1220,9,999999999,220,0.0400,0,88,999.000,999.0,99.0 +1988,3,8,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,7.8,90,101800,578,1387,337,119,1,119,13800,100,13800,4950,190,4.6,10,10,6.4,1070,9,999999999,220,0.0400,0,88,999.000,999.0,99.0 +1988,3,8,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,7.2,89,101800,373,1387,334,72,1,72,8300,0,8300,2790,210,7.7,10,10,12.9,1070,9,999999999,209,0.0400,0,88,999.000,999.0,99.0 +1988,3,8,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,7.2,93,101800,140,1387,331,25,1,25,2900,0,2900,890,180,6.7,10,10,16.1,1190,9,999999999,200,0.0400,0,88,999.000,999.0,99.0 +1988,3,8,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,7.8,93,102000,1,150,335,1,0,1,0,0,0,0,200,5.7,10,10,24.1,1220,9,999999999,189,0.0400,0,88,999.000,999.0,99.0 +1988,3,8,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,7.2,89,102000,0,0,334,0,0,0,0,0,0,0,230,5.2,10,10,24.1,1340,9,999999999,179,0.0940,0,88,999.000,999.0,99.0 +1988,3,8,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,6.7,89,102100,0,0,331,0,0,0,0,0,0,0,230,4.1,10,10,24.1,3050,9,999999999,170,0.0940,0,88,999.000,999.0,99.0 +1988,3,8,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,6.1,86,102100,0,0,330,0,0,0,0,0,0,0,230,4.1,10,10,24.1,3050,9,999999999,160,0.0940,0,88,999.000,999.0,99.0 +1988,3,8,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,5.0,86,102100,0,0,324,0,0,0,0,0,0,0,250,3.1,10,10,24.1,1280,9,999999999,160,0.0940,0,88,999.000,999.0,99.0 +1988,3,8,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,3.9,83,102200,0,0,311,0,0,0,0,0,0,0,10,2.1,9,9,24.1,1280,9,999999999,150,0.0940,0,88,999.000,999.0,99.0 +1988,3,9,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,4.4,89,102200,0,0,298,0,0,0,0,0,0,0,220,2.6,7,7,24.1,1220,9,999999999,139,0.0950,0,88,999.000,999.0,99.0 +1988,3,9,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,4.4,86,102300,0,0,312,0,0,0,0,0,0,0,190,2.1,9,9,24.1,1680,9,999999999,129,0.0950,0,88,999.000,999.0,99.0 +1988,3,9,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,3.9,86,102300,0,0,309,0,0,0,0,0,0,0,190,2.1,9,9,24.1,1520,9,999999999,120,0.0950,0,88,999.000,999.0,99.0 +1988,3,9,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,3.9,89,102300,0,0,295,0,0,0,0,0,0,0,190,4.1,7,7,24.1,2590,9,999999999,110,0.0950,0,88,999.000,999.0,99.0 +1988,3,9,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,3.3,86,102400,0,0,291,0,0,0,0,0,0,0,190,4.1,6,6,24.1,2440,9,999999999,110,0.0950,0,88,999.000,999.0,99.0 +1988,3,9,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,3.9,89,102400,0,0,306,0,0,0,0,0,0,0,200,3.6,9,9,24.1,1220,9,999999999,100,0.0950,0,88,999.000,999.0,99.0 +1988,3,9,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,3.9,93,102500,19,566,312,5,0,5,0,0,0,0,200,2.6,10,10,16.1,910,9,999999999,100,0.0980,0,88,999.000,999.0,99.0 +1988,3,9,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,4.4,93,102600,216,1386,316,55,0,55,6100,0,6100,1830,310,1.5,10,10,12.9,610,9,999999999,100,0.0980,0,88,999.000,999.0,99.0 +1988,3,9,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,4.4,86,102700,443,1386,321,143,0,143,15800,0,15800,4860,290,3.1,10,10,24.1,760,9,999999999,100,0.0980,0,88,999.000,999.0,99.0 +1988,3,9,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,4.4,89,102800,637,1386,318,128,0,128,14900,0,14900,5480,280,3.1,10,10,24.1,820,9,999999999,89,0.0980,0,88,999.000,999.0,99.0 +1988,3,9,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,3.9,74,102800,782,1386,312,240,25,226,27500,2200,26300,9280,300,3.1,8,8,40.2,1100,9,999999999,89,0.0980,0,88,999.000,999.0,99.0 +1988,3,9,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,4.4,71,102800,869,1386,317,416,396,168,45500,40900,19800,4050,300,5.2,8,8,40.2,1130,9,999999999,89,0.0980,0,88,999.000,999.0,99.0 +1988,3,9,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,2.8,68,102900,892,1386,311,409,295,220,45000,31600,24600,5600,310,7.7,8,8,40.2,1520,9,999999999,89,0.0980,0,88,999.000,999.0,99.0 +1988,3,9,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,1.7,59,102900,850,1386,309,417,226,278,45500,23700,30900,7610,310,10.3,7,7,40.2,1220,9,999999999,89,0.0980,0,88,999.000,999.0,99.0 +1988,3,9,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,0.0,50,102900,745,1386,304,456,478,200,48000,48300,21900,4430,300,5.7,5,5,40.2,77777,9,999999999,80,0.0980,0,88,999.000,999.0,99.0 +1988,3,9,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,1.7,63,103000,584,1386,301,224,61,198,24500,6000,22000,5450,290,5.7,6,6,40.2,1980,9,999999999,80,0.0980,0,88,999.000,999.0,99.0 +1988,3,9,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,1.1,63,103000,379,1386,291,172,355,76,18400,30500,10100,1380,280,4.1,3,3,64.4,77777,9,999999999,80,0.0980,0,88,999.000,999.0,99.0 +1988,3,9,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,2.2,76,103000,146,1386,290,42,84,34,4500,4200,4100,610,270,4.1,5,5,32.2,77777,9,999999999,80,0.0980,0,88,999.000,999.0,99.0 +1988,3,9,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,2.2,79,103100,2,173,290,0,1,0,0,0,0,0,310,2.6,6,6,24.1,2130,9,999999999,80,0.0980,0,88,999.000,999.0,99.0 +1988,3,9,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,2.2,79,103100,0,0,313,0,0,0,0,0,0,0,280,2.6,10,10,24.1,1070,9,999999999,80,0.0950,0,88,999.000,999.0,99.0 +1988,3,9,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,1.7,86,103100,0,0,280,0,0,0,0,0,0,0,270,2.1,5,5,24.1,77777,9,999999999,80,0.0950,0,88,999.000,999.0,99.0 +1988,3,9,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,2.8,86,103200,0,0,311,0,0,0,0,0,0,0,330,2.6,10,10,24.1,2130,9,999999999,89,0.0950,0,88,999.000,999.0,99.0 +1988,3,9,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,2.8,89,103200,0,0,309,0,0,0,0,0,0,0,230,2.6,10,10,24.1,2130,9,999999999,89,0.0950,0,88,999.000,999.0,99.0 +1988,3,9,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,2.2,86,103200,0,0,308,0,0,0,0,0,0,0,330,1.5,10,10,24.1,2130,9,999999999,89,0.0950,0,88,999.000,999.0,99.0 +1988,3,10,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,2.8,100,103200,0,0,287,0,0,0,0,0,0,0,70,2.1,8,8,24.1,1980,9,999999999,89,0.0950,0,88,999.000,999.0,99.0 +1988,3,10,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,2.8,96,103200,0,0,289,0,0,0,0,0,0,0,0,0.0,8,8,24.1,2130,9,999999999,89,0.0950,0,88,999.000,999.0,99.0 +1988,3,10,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,2.8,96,103200,0,0,295,0,0,0,0,0,0,0,0,0.0,9,9,24.1,910,9,999999999,89,0.0950,0,88,999.000,999.0,99.0 +1988,3,10,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,2.2,96,103100,0,0,286,0,0,0,0,0,0,0,110,2.1,8,8,24.1,2130,9,999999999,89,0.0950,0,88,999.000,999.0,99.0 +1988,3,10,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,1.7,96,103100,0,0,271,0,0,0,0,0,0,0,110,2.1,4,4,24.1,77777,9,999999999,89,0.0950,0,88,999.000,999.0,99.0 +1988,3,10,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,2.2,100,103100,0,0,280,0,0,0,0,0,0,0,120,1.5,7,7,24.1,1070,9,999999999,89,0.0950,0,88,999.000,999.0,99.0 +1988,3,10,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,2.2,93,103100,22,612,284,6,3,5,0,0,0,0,90,1.5,7,7,19.3,1680,9,999999999,89,0.1290,0,88,999.000,999.0,99.0 +1988,3,10,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,2.2,89,103200,223,1386,286,66,46,59,7300,3500,6700,1440,0,0.0,7,7,24.1,1250,9,999999999,89,0.1290,0,88,999.000,999.0,99.0 +1988,3,10,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,2.2,83,103200,451,1386,296,160,120,122,17600,11200,13900,2760,0,0.0,10,8,16.1,820,9,999999999,89,0.1290,0,88,999.000,999.0,99.0 +1988,3,10,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,2.8,77,103200,644,1386,319,84,0,84,10100,0,10100,3880,360,2.6,10,10,32.2,1130,9,999999999,89,0.1290,0,88,999.000,999.0,99.0 +1988,3,10,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,2.2,71,103200,789,1386,292,359,232,227,38800,24500,24700,5430,280,2.6,5,4,32.2,77777,9,999999999,100,0.1290,0,88,999.000,999.0,99.0 +1988,3,10,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,2.2,66,103100,876,1386,297,541,481,238,57200,49500,25900,5960,320,2.6,4,4,40.2,77777,9,999999999,100,0.1290,0,88,999.000,999.0,99.0 +1988,3,10,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,1.1,56,103000,899,1386,305,411,195,285,45100,20600,31700,8110,300,4.6,8,6,48.3,7620,9,999999999,100,0.1290,0,88,999.000,999.0,99.0 +1988,3,10,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,1.1,54,103000,856,1386,311,423,330,220,46300,35200,24500,5450,310,3.6,10,7,56.3,2130,9,999999999,100,0.1290,0,88,999.000,999.0,99.0 +1988,3,10,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,0.6,52,102900,751,1386,311,358,206,247,39100,21300,27500,6350,310,3.1,10,7,56.3,9140,9,999999999,100,0.1290,0,88,999.000,999.0,99.0 +1988,3,10,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,0.0,50,102900,590,1386,315,269,202,183,29300,20100,20700,4350,300,3.1,9,8,64.4,2290,9,999999999,100,0.1290,0,88,999.000,999.0,99.0 +1988,3,10,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,-1.1,46,102900,385,1386,314,124,45,112,13600,4000,12500,2880,340,3.6,10,8,64.4,7620,9,999999999,100,0.1290,0,88,999.000,999.0,99.0 +1988,3,10,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,0.0,56,102900,151,1386,294,46,25,44,5100,1700,4900,1020,20,2.6,8,4,64.4,77777,9,999999999,89,0.1290,0,88,999.000,999.0,99.0 +1988,3,10,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,0.0,63,102800,2,196,283,1,1,1,0,0,0,0,20,2.1,6,2,24.1,77777,9,999999999,89,0.1290,0,88,999.000,999.0,99.0 +1988,3,10,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,1.7,79,102900,0,0,278,0,0,0,0,0,0,0,120,2.1,5,2,24.1,77777,9,999999999,89,0.0950,0,88,999.000,999.0,99.0 +1988,3,10,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,1.1,79,102900,0,0,271,0,0,0,0,0,0,0,90,2.1,2,1,24.1,77777,9,999999999,89,0.0950,0,88,999.000,999.0,99.0 +1988,3,10,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,1.7,86,102900,0,0,264,0,0,0,0,0,0,0,120,2.6,1,0,24.1,77777,9,999999999,89,0.0950,0,88,999.000,999.0,99.0 +1988,3,10,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,0.6,92,102900,0,0,255,0,0,0,0,0,0,0,110,2.1,1,0,24.1,77777,9,999999999,80,0.0950,0,88,999.000,999.0,99.0 +1988,3,10,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,0.6,92,102900,0,0,255,0,0,0,0,0,0,0,110,2.6,0,0,24.1,77777,9,999999999,80,0.0950,0,88,999.000,999.0,99.0 +1988,3,11,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.1,0.6,96,102800,0,0,253,0,0,0,0,0,0,0,100,2.1,0,0,24.1,77777,9,999999999,80,0.0960,0,88,999.000,999.0,99.0 +1988,3,11,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.1,0.6,96,102900,0,0,253,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,80,0.0960,0,88,999.000,999.0,99.0 +1988,3,11,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-0.6,-0.6,100,102900,0,0,246,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,69,0.0960,0,88,999.000,999.0,99.0 +1988,3,11,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.1,-1.1,100,102900,0,0,243,0,0,0,0,0,0,0,0,0.0,0,0,12.9,77777,9,999999999,69,0.0960,0,88,999.000,999.0,99.0 +1988,3,11,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.7,-1.7,100,102900,0,0,257,0,0,0,0,0,0,0,0,0.0,6,6,1.6,77777,9,999999999,69,0.0960,0,88,999.000,999.0,99.0 +1988,3,11,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.0,0.0,100,102900,0,0,287,0,0,0,0,0,0,0,110,2.1,10,10,0.1,30,9,999999999,69,0.0960,0,88,999.000,999.0,99.0 +1988,3,11,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.0,0.0,100,102900,26,658,287,4,1,3,0,0,0,0,90,2.1,10,10,0.1,30,9,999999999,69,0.0830,0,88,999.000,999.0,99.0 +1988,3,11,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.6,0.6,100,102900,231,1385,290,48,2,48,5500,0,5500,1710,0,0.0,10,10,0.4,90,9,999999999,69,0.0830,0,88,999.000,999.0,99.0 +1988,3,11,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.6,0.6,100,102900,458,1385,290,122,12,118,13800,800,13500,4390,310,1.5,10,10,0.2,30,9,999999999,69,0.0830,0,88,999.000,999.0,99.0 +1988,3,11,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.1,1.1,100,102900,652,1385,292,232,8,228,25900,700,25500,8260,0,0.0,10,10,1.6,120,9,999999999,69,0.0830,0,88,999.000,999.0,99.0 +1988,3,11,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,2.2,89,102900,796,1385,270,549,810,85,59000,81000,12300,2040,300,1.5,1,1,11.3,77777,9,999999999,69,0.0830,0,88,999.000,999.0,99.0 +1988,3,11,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,2.8,71,102800,883,1385,281,657,886,94,68600,87900,12400,2090,290,3.1,0,0,48.3,77777,9,999999999,69,0.0830,0,88,999.000,999.0,99.0 +1988,3,11,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,1.7,55,102800,906,1385,291,674,886,96,70300,88000,12600,2170,320,3.1,0,0,64.4,77777,9,999999999,69,0.0830,0,88,999.000,999.0,99.0 +1988,3,11,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,0.6,47,102700,863,1385,300,563,757,92,60500,76200,12900,2320,250,3.1,1,1,64.4,77777,9,999999999,69,0.0830,0,88,999.000,999.0,99.0 +1988,3,11,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,-1.7,34,102700,757,1385,307,511,796,76,53500,78200,10700,1690,10,1.5,1,1,64.4,77777,9,999999999,69,0.0830,0,88,999.000,999.0,99.0 +1988,3,11,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,-2.2,33,102600,596,1385,306,362,642,86,38400,62200,11500,1770,240,2.1,1,1,64.4,77777,9,999999999,69,0.0830,0,88,999.000,999.0,99.0 +1988,3,11,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,-2.2,33,102500,391,1385,306,216,577,54,22800,50500,8500,1040,0,0.0,1,1,64.4,77777,9,999999999,69,0.0830,0,88,999.000,999.0,99.0 +1988,3,11,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,-2.2,36,102500,157,1385,296,65,320,30,6800,19000,4600,530,300,1.5,0,0,64.4,77777,9,999999999,69,0.0830,0,88,999.000,999.0,99.0 +1988,3,11,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,0.0,50,102500,3,242,287,3,7,1,0,0,0,0,350,2.6,0,0,24.1,77777,9,999999999,69,0.0830,0,88,999.000,999.0,99.0 +1988,3,11,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,0.6,63,102500,0,0,276,0,0,0,0,0,0,0,200,1.5,0,0,24.1,77777,9,999999999,69,0.0960,0,88,999.000,999.0,99.0 +1988,3,11,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,0.0,65,102500,0,0,271,0,0,0,0,0,0,0,130,2.1,0,0,24.1,77777,9,999999999,69,0.0960,0,88,999.000,999.0,99.0 +1988,3,11,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,1.7,79,102500,0,0,269,0,0,0,0,0,0,0,120,2.6,0,0,24.1,77777,9,999999999,80,0.0960,0,88,999.000,999.0,99.0 +1988,3,11,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,1.7,86,102600,0,0,264,0,0,0,0,0,0,0,120,3.6,0,0,24.1,77777,9,999999999,80,0.0960,0,88,999.000,999.0,99.0 +1988,3,11,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,1.1,86,102600,0,0,262,0,0,0,0,0,0,0,120,2.6,0,0,24.1,77777,9,999999999,80,0.0960,0,88,999.000,999.0,99.0 +1988,3,12,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,0.6,89,102600,0,0,257,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,80,0.0970,0,88,999.000,999.0,99.0 +1988,3,12,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,0.0,89,102600,0,0,255,0,0,0,0,0,0,0,260,1.5,0,0,24.1,77777,9,999999999,80,0.0970,0,88,999.000,999.0,99.0 +1988,3,12,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.6,-0.6,92,102600,0,0,250,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,80,0.0970,0,88,999.000,999.0,99.0 +1988,3,12,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.0,-0.6,96,102600,0,0,248,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,80,0.0970,0,88,999.000,999.0,99.0 +1988,3,12,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.0,-1.1,92,102600,0,0,247,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,80,0.0970,0,88,999.000,999.0,99.0 +1988,3,12,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.6,0.0,96,102700,0,0,251,0,0,0,0,0,0,0,130,1.5,0,0,24.1,77777,9,999999999,80,0.0970,0,88,999.000,999.0,99.0 +1988,3,12,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-0.6,-1.1,96,102700,29,704,245,17,52,11,1500,1700,1400,190,0,0.0,0,0,64.4,77777,9,999999999,80,0.0860,0,88,999.000,999.0,99.0 +1988,3,12,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,0.6,89,102700,239,1384,257,116,449,39,12100,32600,6400,720,0,0.0,0,0,64.4,77777,9,999999999,80,0.0860,0,88,999.000,999.0,99.0 +1988,3,12,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,1.1,79,102800,466,1384,266,291,689,60,30300,63200,9000,1200,120,2.1,0,0,40.2,77777,9,999999999,80,0.0860,0,88,999.000,999.0,99.0 +1988,3,12,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,1.1,71,102800,659,1384,272,455,797,77,48200,77900,11000,1670,180,1.5,0,0,56.3,77777,9,999999999,89,0.0860,0,88,999.000,999.0,99.0 +1988,3,12,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,1.1,63,102800,804,1384,279,583,852,90,62300,85100,12700,2140,330,2.6,0,0,56.3,77777,9,999999999,89,0.0860,0,88,999.000,999.0,99.0 +1988,3,12,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,1.7,57,102700,890,1384,289,662,881,97,69000,87400,12600,2120,360,2.1,0,0,64.4,77777,9,999999999,89,0.0860,0,88,999.000,999.0,99.0 +1988,3,12,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,0.6,47,102700,912,1384,294,685,891,99,71300,88500,12800,2200,220,2.1,0,0,64.4,77777,9,999999999,89,0.0860,0,88,999.000,999.0,99.0 +1988,3,12,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,1.7,44,102600,869,1384,305,647,880,95,67400,87200,12500,2050,330,2.6,0,0,64.4,77777,9,999999999,89,0.0860,0,88,999.000,999.0,99.0 +1988,3,12,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,0.6,38,102600,763,1384,308,551,844,86,58600,83900,12200,1980,0,0.0,0,0,64.4,77777,9,999999999,89,0.0860,0,88,999.000,999.0,99.0 +1988,3,12,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,-0.6,34,102500,602,1384,310,407,772,72,42900,74400,10400,1520,290,2.6,0,0,64.4,77777,9,999999999,89,0.0860,0,88,999.000,999.0,99.0 +1988,3,12,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,1.1,39,102500,396,1384,309,234,632,54,24200,55700,8200,1050,310,2.6,0,0,64.4,77777,9,999999999,89,0.0860,0,88,999.000,999.0,99.0 +1988,3,12,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,-0.6,37,102500,162,1384,302,67,317,31,7000,19200,4700,550,0,0.0,0,0,64.4,77777,9,999999999,89,0.0860,0,88,999.000,999.0,99.0 +1988,3,12,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,0.0,47,102500,4,265,291,4,8,2,0,0,0,0,0,0.0,0,0,64.4,77777,9,999999999,89,0.0860,0,88,999.000,999.0,99.0 +1988,3,12,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,0.6,52,102500,0,0,287,0,0,0,0,0,0,0,320,2.6,0,0,24.1,77777,9,999999999,89,0.0970,0,88,999.000,999.0,99.0 +1988,3,12,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,0.6,61,102600,0,0,279,0,0,0,0,0,0,0,280,3.1,0,0,24.1,77777,9,999999999,89,0.0970,0,88,999.000,999.0,99.0 +1988,3,12,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,1.1,68,102600,0,0,275,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,89,0.0970,0,88,999.000,999.0,99.0 +1988,3,12,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,2.8,80,102700,0,0,274,0,0,0,0,0,0,0,110,2.6,0,0,24.1,77777,9,999999999,89,0.0970,0,88,999.000,999.0,99.0 +1988,3,12,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,2.8,83,102700,0,0,272,0,0,0,0,0,0,0,110,2.6,0,0,24.1,77777,9,999999999,89,0.0970,0,88,999.000,999.0,99.0 +1988,3,13,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,1.7,86,102700,0,0,264,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,89,0.0970,0,88,999.000,999.0,99.0 +1988,3,13,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,1.7,89,102700,0,0,262,0,0,0,0,0,0,0,110,3.6,0,0,24.1,77777,9,999999999,89,0.0970,0,88,999.000,999.0,99.0 +1988,3,13,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.1,0.0,92,102700,0,0,252,0,0,0,0,0,0,0,290,2.1,0,0,24.1,77777,9,999999999,89,0.0970,0,88,999.000,999.0,99.0 +1988,3,13,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,1.1,93,102700,0,0,257,0,0,0,0,0,0,0,290,2.1,0,0,24.1,77777,9,999999999,89,0.0970,0,88,999.000,999.0,99.0 +1988,3,13,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.1,0.0,92,102700,0,0,252,0,0,0,0,0,0,0,130,1.5,0,0,24.1,77777,9,999999999,89,0.0970,0,88,999.000,999.0,99.0 +1988,3,13,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.1,0.0,92,102700,0,0,257,0,0,0,0,0,0,0,250,1.5,2,1,24.1,77777,9,999999999,89,0.0970,0,88,999.000,999.0,99.0 +1988,3,13,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.1,0.6,96,102600,33,749,261,21,96,12,1800,3200,1600,210,220,1.5,4,2,64.4,77777,9,999999999,89,0.0440,0,88,999.000,999.0,99.0 +1988,3,13,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,2.8,96,102700,247,1383,275,118,331,60,12400,23500,8200,1090,0,0.0,8,3,32.2,77777,9,999999999,89,0.0440,0,88,999.000,999.0,99.0 +1988,3,13,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,3.3,83,102700,474,1383,289,228,333,115,24000,30700,13500,2190,300,1.5,10,4,24.1,77777,9,999999999,89,0.0440,0,88,999.000,999.0,99.0 +1988,3,13,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,2.8,68,102700,666,1383,300,308,251,188,33200,25900,20700,4150,310,2.6,10,5,32.2,77777,9,999999999,89,0.0440,0,88,999.000,999.0,99.0 +1988,3,13,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,3.3,64,102600,811,1383,303,553,677,158,58000,67500,18300,3610,290,3.1,10,3,40.2,77777,9,999999999,100,0.0440,0,88,999.000,999.0,99.0 +1988,3,13,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,1.1,49,102600,897,1383,310,626,648,207,65000,64500,23000,5050,270,2.6,10,4,48.3,77777,9,999999999,100,0.0440,0,88,999.000,999.0,99.0 +1988,3,13,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,3.3,49,102500,919,1383,328,506,381,253,55200,40900,28000,6740,240,3.1,10,6,40.2,9140,9,999999999,100,0.0440,0,88,999.000,999.0,99.0 +1988,3,13,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,2.8,44,102500,875,1383,359,317,3,315,35900,300,35700,12340,290,3.6,10,10,48.3,7620,9,999999999,100,0.0440,0,88,999.000,999.0,99.0 +1988,3,13,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,3.3,46,102400,769,1383,359,259,10,253,29300,900,28800,9890,250,3.1,10,10,56.3,7010,9,999999999,100,0.0440,0,88,999.000,999.0,99.0 +1988,3,13,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,3.9,46,102400,608,1383,363,193,21,184,21800,1700,21000,6940,300,2.6,10,10,48.3,6100,9,999999999,100,0.0440,0,88,999.000,999.0,99.0 +1988,3,13,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,2.8,43,102400,402,1383,332,165,145,124,18000,13100,14200,2760,310,2.6,10,5,32.2,77777,9,999999999,100,0.0440,0,88,999.000,999.0,99.0 +1988,3,13,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,1.7,42,102400,168,1383,325,51,49,45,5500,3000,5200,940,330,5.2,10,5,32.2,77777,9,999999999,100,0.0440,0,88,999.000,999.0,99.0 +1988,3,13,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,2.2,49,102400,5,288,319,6,5,5,0,0,0,0,300,4.6,10,5,32.2,77777,9,999999999,100,0.0440,0,88,999.000,999.0,99.0 +1988,3,13,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,3.3,59,102400,0,0,319,0,0,0,0,0,0,0,290,3.6,10,7,24.1,3660,9,999999999,100,0.0970,0,88,999.000,999.0,99.0 +1988,3,13,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,3.3,61,102400,0,0,305,0,0,0,0,0,0,0,300,3.6,7,3,24.1,77777,9,999999999,100,0.0970,0,88,999.000,999.0,99.0 +1988,3,13,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,2.8,68,102400,0,0,295,0,0,0,0,0,0,0,290,3.6,3,3,24.1,77777,9,999999999,100,0.0970,0,88,999.000,999.0,99.0 +1988,3,13,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,2.2,68,102400,0,0,280,0,0,0,0,0,0,0,290,2.6,0,0,24.1,77777,9,999999999,100,0.0970,0,88,999.000,999.0,99.0 +1988,3,13,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,2.8,71,102400,0,0,281,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,100,0.0970,0,88,999.000,999.0,99.0 +1988,3,14,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,3.3,89,102500,0,0,270,0,0,0,0,0,0,0,80,2.1,0,0,24.1,77777,9,999999999,100,0.0980,0,88,999.000,999.0,99.0 +1988,3,14,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,2.8,89,102500,0,0,267,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,100,0.0980,0,88,999.000,999.0,99.0 +1988,3,14,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,2.8,96,102400,0,0,263,0,0,0,0,0,0,0,110,2.6,0,0,24.1,77777,9,999999999,100,0.0980,0,88,999.000,999.0,99.0 +1988,3,14,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,1.7,96,102400,0,0,258,0,0,0,0,0,0,0,100,1.5,0,0,24.1,77777,9,999999999,100,0.0980,0,88,999.000,999.0,99.0 +1988,3,14,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,1.7,96,102400,0,0,258,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,100,0.0980,0,88,999.000,999.0,99.0 +1988,3,14,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.1,0.6,96,102500,0,0,253,0,0,0,0,0,0,0,310,1.5,0,0,24.1,77777,9,999999999,100,0.0980,0,88,999.000,999.0,99.0 +1988,3,14,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,2.2,100,102400,37,795,298,6,0,6,700,0,700,230,10,2.6,10,10,0.4,30,9,999999999,100,0.1190,0,88,999.000,999.0,99.0 +1988,3,14,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,2.8,100,102400,254,1383,302,36,10,34,4000,800,3800,930,0,0.0,10,10,0.8,30,9,999999999,100,0.1190,0,88,999.000,999.0,99.0 +1988,3,14,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,3.3,100,102400,481,1383,304,124,3,123,14000,200,14000,4640,20,1.5,10,10,0.4,60,9,999999999,100,0.1190,0,88,999.000,999.0,99.0 +1988,3,14,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,3.9,89,102300,674,1383,292,396,383,210,42300,39500,23000,4760,310,2.6,6,6,4.0,150,9,999999999,100,0.1190,0,88,999.000,999.0,99.0 +1988,3,14,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,4.4,86,102300,818,1383,321,223,5,220,25700,400,25500,9370,360,5.2,10,10,12.9,270,9,999999999,100,0.1190,0,88,999.000,999.0,99.0 +1988,3,14,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,3.3,69,102300,904,1383,321,254,5,251,29500,400,29200,10880,320,4.1,9,9,40.2,820,9,999999999,100,0.1190,0,88,999.000,999.0,99.0 +1988,3,14,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,3.3,59,102100,925,1383,307,679,756,174,71600,76300,20400,4550,340,4.6,3,3,48.3,77777,9,999999999,100,0.1190,0,88,999.000,999.0,99.0 +1988,3,14,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,2.8,53,102000,881,1383,309,622,754,142,66200,76400,17300,3590,320,4.6,2,2,64.4,77777,9,999999999,100,0.1190,0,88,999.000,999.0,99.0 +1988,3,14,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,1.1,45,102000,775,1383,305,527,746,110,56400,75100,14200,2550,310,4.6,1,1,64.4,77777,9,999999999,100,0.1190,0,88,999.000,999.0,99.0 +1988,3,14,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,1.1,42,101900,613,1383,310,380,657,90,40400,64000,11900,1870,330,5.2,1,1,64.4,77777,9,999999999,100,0.1190,0,88,999.000,999.0,99.0 +1988,3,14,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,0.0,42,101800,408,1383,298,232,568,65,24300,50100,9400,1230,340,6.2,0,0,64.4,77777,9,999999999,100,0.1190,0,88,999.000,999.0,99.0 +1988,3,14,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,0.0,45,101700,173,1383,294,68,260,36,7200,15300,5300,640,330,4.6,0,0,40.2,77777,9,999999999,89,0.1190,0,88,999.000,999.0,99.0 +1988,3,14,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,-0.6,47,101800,6,334,289,3,5,3,0,0,0,0,320,4.1,0,0,24.1,77777,9,999999999,89,0.1190,0,88,999.000,999.0,99.0 +1988,3,14,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,-2.8,44,101800,0,0,280,0,0,0,0,0,0,0,310,3.6,0,0,24.1,77777,9,999999999,80,0.0980,0,88,999.000,999.0,99.0 +1988,3,14,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,-5.0,39,101800,0,0,275,0,0,0,0,0,0,0,330,4.6,0,0,24.1,77777,9,999999999,80,0.0980,0,88,999.000,999.0,99.0 +1988,3,14,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,-5.0,42,101900,0,0,271,0,0,0,0,0,0,0,320,3.1,0,0,24.1,77777,9,999999999,80,0.0980,0,88,999.000,999.0,99.0 +1988,3,14,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,-2.2,62,102000,0,0,263,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,69,0.0980,0,88,999.000,999.0,99.0 +1988,3,14,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,-1.7,67,102000,0,0,261,0,0,0,0,0,0,0,70,2.1,0,0,24.1,77777,9,999999999,69,0.0980,0,88,999.000,999.0,99.0 +1988,3,15,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,-2.2,70,102000,0,0,257,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,60,0.0990,0,88,999.000,999.0,99.0 +1988,3,15,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.1,-2.2,79,102000,0,0,250,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,60,0.0990,0,88,999.000,999.0,99.0 +1988,3,15,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.1,-1.1,85,102000,0,0,251,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,50,0.0990,0,88,999.000,999.0,99.0 +1988,3,15,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.1,-1.1,85,102000,0,0,251,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,50,0.0990,0,88,999.000,999.0,99.0 +1988,3,15,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.0,-1.7,89,102100,0,0,247,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,50,0.0990,0,88,999.000,999.0,99.0 +1988,3,15,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.7,-3.3,89,102100,0,0,239,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,50,0.0990,0,88,999.000,999.0,99.0 +1988,3,15,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.7,-2.8,92,102100,42,841,240,25,119,13,2000,5100,1700,240,280,2.1,0,0,64.4,77777,9,999999999,60,0.0580,0,88,999.000,999.0,99.0 +1988,3,15,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,0.6,89,102100,262,1382,257,140,564,34,14600,44200,6100,680,280,2.1,0,0,40.2,77777,9,999999999,60,0.0580,0,88,999.000,999.0,99.0 +1988,3,15,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,0.6,76,102100,489,1382,265,322,771,51,34200,71600,8700,1140,240,2.1,0,0,32.2,77777,9,999999999,60,0.0580,0,88,999.000,999.0,99.0 +1988,3,15,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,0.0,61,102100,681,1382,276,490,868,64,51700,84500,10000,1490,300,2.6,0,0,64.4,77777,9,999999999,60,0.0580,0,88,999.000,999.0,99.0 +1988,3,15,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,-1.1,46,102000,825,1382,286,619,915,74,65000,90500,10800,1810,280,3.6,0,0,64.4,77777,9,999999999,60,0.0580,0,88,999.000,999.0,99.0 +1988,3,15,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,0.6,42,102000,910,1382,301,700,943,80,73400,93800,11400,2060,300,3.6,0,0,64.4,77777,9,999999999,60,0.0580,0,88,999.000,999.0,99.0 +1988,3,15,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,-1.7,30,101900,932,1382,310,720,950,81,75500,94600,11500,2120,90,5.7,0,0,64.4,77777,9,999999999,60,0.0580,0,88,999.000,999.0,99.0 +1988,3,15,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,-1.7,29,101800,888,1382,313,676,932,78,70800,92600,11200,1980,90,4.6,0,0,64.4,77777,9,999999999,69,0.0580,0,88,999.000,999.0,99.0 +1988,3,15,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,-2.2,27,101800,781,1382,315,581,902,71,60900,88900,10600,1700,90,5.7,0,0,64.4,77777,9,999999999,69,0.0580,0,88,999.000,999.0,99.0 +1988,3,15,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,-2.8,26,101800,619,1382,314,435,840,60,45900,80800,9600,1370,100,6.7,0,0,64.4,77777,9,999999999,69,0.0580,0,88,999.000,999.0,99.0 +1988,3,15,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,-2.8,28,101800,413,1382,309,259,720,45,27500,64800,8100,960,110,6.2,0,0,64.4,77777,9,999999999,69,0.0580,0,88,999.000,999.0,99.0 +1988,3,15,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,-3.9,27,101800,179,1382,303,84,441,28,8600,29900,4700,530,110,6.2,0,0,64.4,77777,9,999999999,60,0.0580,0,88,999.000,999.0,99.0 +1988,3,15,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,-1.1,42,101800,7,357,293,8,29,4,0,0,0,0,30,2.6,0,0,24.1,77777,9,999999999,60,0.0580,0,88,999.000,999.0,99.0 +1988,3,15,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,-2.8,37,101900,0,0,291,0,0,0,0,0,0,0,70,3.1,0,0,24.1,77777,9,999999999,60,0.0990,0,88,999.000,999.0,99.0 +1988,3,15,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,-1.7,48,102000,0,0,281,0,0,0,0,0,0,0,70,1.5,0,0,24.1,77777,9,999999999,60,0.0990,0,88,999.000,999.0,99.0 +1988,3,15,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,-1.1,52,102000,0,0,279,0,0,0,0,0,0,0,80,2.6,0,0,24.1,77777,9,999999999,60,0.0990,0,88,999.000,999.0,99.0 +1988,3,15,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,-1.1,63,102000,0,0,268,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,50,0.0990,0,88,999.000,999.0,99.0 +1988,3,15,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,0.0,70,102000,0,0,267,0,0,0,0,0,0,0,220,2.6,0,0,24.1,77777,9,999999999,50,0.0990,0,88,999.000,999.0,99.0 +1988,3,16,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,2.2,86,102100,0,0,267,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,50,0.0990,0,88,999.000,999.0,99.0 +1988,3,16,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,1.1,86,102100,0,0,262,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,40,0.0990,0,88,999.000,999.0,99.0 +1988,3,16,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,0.6,89,102200,0,0,257,0,0,0,0,0,0,0,330,1.5,0,0,24.1,77777,9,999999999,40,0.0990,0,88,999.000,999.0,99.0 +1988,3,16,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,0.0,89,102200,0,0,255,0,0,0,0,0,0,0,300,2.1,0,0,24.1,77777,9,999999999,40,0.0990,0,88,999.000,999.0,99.0 +1988,3,16,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,1.1,93,102300,0,0,257,0,0,0,0,0,0,0,310,2.1,0,0,24.1,77777,9,999999999,40,0.0990,0,88,999.000,999.0,99.0 +1988,3,16,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.6,-1.1,89,102300,0,0,250,0,0,0,0,0,0,0,280,2.6,0,0,64.4,77777,9,999999999,40,0.0990,0,88,999.000,999.0,99.0 +1988,3,16,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,0.0,89,102400,46,886,255,18,12,17,1900,600,1900,410,290,2.1,2,0,64.4,77777,9,999999999,40,0.2120,0,88,999.000,999.0,99.0 +1988,3,16,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,2.2,86,102400,270,1381,267,116,256,67,12100,19000,8400,1230,290,3.1,2,0,64.4,77777,9,999999999,40,0.2120,0,88,999.000,999.0,99.0 +1988,3,16,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,2.8,71,102500,497,1381,281,288,498,110,30600,46600,13800,2090,270,2.6,2,0,64.4,77777,9,999999999,40,0.2120,0,88,999.000,999.0,99.0 +1988,3,16,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,0.6,47,102400,689,1381,294,459,633,145,47600,61700,16800,2970,100,5.7,2,0,64.4,77777,9,999999999,40,0.2120,0,88,999.000,999.0,99.0 +1988,3,16,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,-3.9,28,102500,832,1381,301,590,701,169,61700,69900,19400,3930,90,5.2,2,0,64.4,77777,9,999999999,50,0.2120,0,88,999.000,999.0,99.0 +1988,3,16,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,-5.0,23,102400,917,1381,307,670,735,183,70400,73900,21100,4700,90,6.2,2,0,64.4,77777,9,999999999,50,0.2120,0,88,999.000,999.0,99.0 +1988,3,16,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,-4.4,23,102400,938,1381,310,691,744,186,72600,74900,21500,4920,80,6.2,2,0,64.4,77777,9,999999999,50,0.2120,0,88,999.000,999.0,99.0 +1988,3,16,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,-5.0,22,102300,894,1381,311,648,726,179,67900,72900,20600,4460,80,6.7,2,0,64.4,77777,9,999999999,50,0.2120,0,88,999.000,999.0,99.0 +1988,3,16,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,-4.4,23,102300,787,1381,312,545,687,155,57000,68300,18000,3470,90,5.2,1,0,64.4,77777,9,999999999,50,0.2120,0,88,999.000,999.0,99.0 +1988,3,16,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,-5.6,21,102300,625,1381,311,397,606,124,41200,58400,14800,2470,90,5.7,0,0,64.4,77777,9,999999999,50,0.2120,0,88,999.000,999.0,99.0 +1988,3,16,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,-5.0,23,102300,419,1381,307,222,441,89,23600,39200,11700,1650,90,4.6,0,0,64.4,77777,9,999999999,50,0.2120,0,88,999.000,999.0,99.0 +1988,3,16,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,-5.0,26,102300,184,1381,300,65,146,46,6900,8600,5800,850,80,4.1,0,0,64.4,77777,9,999999999,60,0.2120,0,88,999.000,999.0,99.0 +1988,3,16,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,-4.4,31,102400,9,380,291,4,1,4,0,0,0,0,90,3.1,0,0,24.1,77777,9,999999999,60,0.2120,0,88,999.000,999.0,99.0 +1988,3,16,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,-4.4,34,102500,0,0,287,0,0,0,0,0,0,0,90,3.1,0,0,24.1,77777,9,999999999,60,0.0990,0,88,999.000,999.0,99.0 +1988,3,16,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,-5.6,32,102500,0,0,283,0,0,0,0,0,0,0,110,3.6,0,0,24.1,77777,9,999999999,60,0.0990,0,88,999.000,999.0,99.0 +1988,3,16,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,-4.4,38,102500,0,0,280,0,0,0,0,0,0,0,130,2.1,0,0,24.1,77777,9,999999999,60,0.0990,0,88,999.000,999.0,99.0 +1988,3,16,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,-2.2,52,102600,0,0,273,0,0,0,0,0,0,0,320,2.1,0,0,24.1,77777,9,999999999,69,0.0990,0,88,999.000,999.0,99.0 +1988,3,16,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,0.6,63,102600,0,0,276,0,0,0,0,0,0,0,340,3.1,0,0,24.1,77777,9,999999999,69,0.0990,0,88,999.000,999.0,99.0 +1988,3,17,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,0.6,73,102600,0,0,268,0,0,0,0,0,0,0,300,2.1,0,0,24.1,77777,9,999999999,69,0.1000,0,88,999.000,999.0,99.0 +1988,3,17,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,0.0,79,102700,0,0,261,0,0,0,0,0,0,0,300,2.6,0,0,24.1,77777,9,999999999,80,0.1000,0,88,999.000,999.0,99.0 +1988,3,17,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,-0.6,70,102600,0,0,264,0,0,0,0,0,0,0,10,2.1,0,0,24.1,77777,9,999999999,80,0.1000,0,88,999.000,999.0,99.0 +1988,3,17,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,-2.8,58,102600,0,0,264,0,0,0,0,0,0,0,50,1.5,0,0,24.1,77777,9,999999999,80,0.1000,0,88,999.000,999.0,99.0 +1988,3,17,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.6,-1.7,85,102700,0,0,249,0,0,0,0,0,0,0,280,3.1,0,0,24.1,77777,9,999999999,80,0.1000,0,88,999.000,999.0,99.0 +1988,3,17,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,0.6,89,102700,0,0,257,0,0,0,0,0,0,0,270,2.1,3,0,64.4,77777,9,999999999,80,0.1000,0,88,999.000,999.0,99.0 +1988,3,17,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.1,-0.6,89,102800,51,909,252,30,119,19,2700,4500,2500,340,240,1.5,7,0,64.4,77777,9,999999999,80,0.0460,0,88,999.000,999.0,99.0 +1988,3,17,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,1.1,79,102800,278,1380,275,129,369,56,13800,27800,8200,1000,270,2.6,7,2,64.4,77777,9,999999999,80,0.0460,0,88,999.000,999.0,99.0 +1988,3,17,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,0.6,61,102900,504,1380,279,335,655,98,34800,60500,12600,1850,300,3.6,10,0,64.4,77777,9,999999999,80,0.0460,0,88,999.000,999.0,99.0 +1988,3,17,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,0.0,50,102900,696,1380,287,504,811,97,52500,79200,12400,1990,320,2.6,6,0,64.4,77777,9,999999999,89,0.0460,0,88,999.000,999.0,99.0 +1988,3,17,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,-1.7,37,102900,839,1380,297,640,835,133,68100,84300,16600,3230,270,2.1,8,0,64.4,77777,9,999999999,89,0.0460,0,88,999.000,999.0,99.0 +1988,3,17,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,-0.6,35,102800,924,1380,307,717,857,145,74100,85100,17000,3390,340,2.6,8,0,64.4,77777,9,999999999,89,0.0460,0,88,999.000,999.0,99.0 +1988,3,17,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,0.0,31,102800,945,1380,328,662,636,227,71100,65900,25900,6150,360,2.6,10,2,64.4,77777,9,999999999,89,0.0460,0,88,999.000,999.0,99.0 +1988,3,17,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,-1.1,28,102700,900,1380,329,652,696,199,67900,69500,22400,4920,360,2.1,10,2,64.4,77777,9,999999999,89,0.0460,0,88,999.000,999.0,99.0 +1988,3,17,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,-0.6,28,102700,793,1380,332,540,642,171,56000,63500,19400,3780,300,1.5,10,2,64.4,77777,9,999999999,89,0.0460,0,88,999.000,999.0,99.0 +1988,3,17,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,-0.6,29,102600,630,1380,330,393,492,169,41200,48500,19000,3480,70,1.5,10,2,64.4,77777,9,999999999,89,0.0460,0,88,999.000,999.0,99.0 +1988,3,17,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,-1.1,27,102600,424,1380,331,231,398,109,24100,35400,13100,2060,110,2.1,10,2,64.4,77777,9,999999999,89,0.0460,0,88,999.000,999.0,99.0 +1988,3,17,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,0.6,35,102600,190,1380,323,82,290,43,8700,17900,6200,770,120,4.1,8,2,64.4,77777,9,999999999,89,0.0460,0,88,999.000,999.0,99.0 +1988,3,17,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,-0.6,37,102600,10,426,312,10,23,7,0,0,0,0,120,3.6,8,2,24.1,77777,9,999999999,89,0.0460,0,88,999.000,999.0,99.0 +1988,3,17,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,1.1,54,102700,0,0,297,0,0,0,0,0,0,0,110,3.1,5,2,24.1,77777,9,999999999,89,0.1000,0,88,999.000,999.0,99.0 +1988,3,17,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,1.7,63,102700,0,0,287,0,0,0,0,0,0,0,130,2.6,5,1,24.1,77777,9,999999999,89,0.1000,0,88,999.000,999.0,99.0 +1988,3,17,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,2.2,66,102700,0,0,288,0,0,0,0,0,0,0,0,0.0,4,1,24.1,77777,9,999999999,89,0.1000,0,88,999.000,999.0,99.0 +1988,3,17,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,2.2,68,102700,0,0,286,0,0,0,0,0,0,0,360,2.1,4,1,24.1,77777,9,999999999,80,0.1000,0,88,999.000,999.0,99.0 +1988,3,17,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,2.2,74,102700,0,0,281,0,0,0,0,0,0,0,60,2.6,3,1,24.1,77777,9,999999999,80,0.1000,0,88,999.000,999.0,99.0 +1988,3,18,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,2.8,80,102700,0,0,274,0,0,0,0,0,0,0,320,2.1,0,0,24.1,77777,9,999999999,80,0.1010,0,88,999.000,999.0,99.0 +1988,3,18,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,1.1,79,102700,0,0,266,0,0,0,0,0,0,0,290,2.1,0,0,24.1,77777,9,999999999,80,0.1010,0,88,999.000,999.0,99.0 +1988,3,18,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,3.3,96,102700,0,0,266,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,80,0.1010,0,88,999.000,999.0,99.0 +1988,3,18,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,1.1,89,102700,0,0,260,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,80,0.1010,0,88,999.000,999.0,99.0 +1988,3,18,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,1.7,93,102700,0,0,260,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,80,0.1010,0,88,999.000,999.0,99.0 +1988,3,18,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,2.8,93,102700,0,0,265,0,0,0,0,0,0,0,310,1.5,1,0,40.2,77777,9,999999999,80,0.1010,0,88,999.000,999.0,99.0 +1988,3,18,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,0.6,92,102700,56,954,260,24,69,18,2400,2300,2300,310,260,1.5,3,1,40.2,77777,9,999999999,80,0.0930,0,88,999.000,999.0,99.0 +1988,3,18,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,3.3,93,102700,286,1379,279,120,210,77,12700,16000,9400,1480,0,0.0,8,3,40.2,77777,9,999999999,80,0.0930,0,88,999.000,999.0,99.0 +1988,3,18,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,3.3,71,102700,512,1379,293,321,517,130,33600,48700,15500,2520,330,1.5,10,2,64.4,77777,9,999999999,80,0.0930,0,88,999.000,999.0,99.0 +1988,3,18,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,2.8,61,102700,703,1379,295,471,643,145,49000,62900,16800,3010,360,1.5,10,1,64.4,77777,9,999999999,80,0.0930,0,88,999.000,999.0,99.0 +1988,3,18,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,2.2,47,102600,846,1379,316,580,657,178,60500,65500,20200,4180,340,1.5,10,3,64.4,77777,9,999999999,80,0.0930,0,88,999.000,999.0,99.0 +1988,3,18,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,1.7,39,102500,930,1379,326,642,607,234,68700,62800,26200,6250,60,2.6,10,3,64.4,77777,9,999999999,80,0.0930,0,88,999.000,999.0,99.0 +1988,3,18,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,1.7,33,102400,951,1379,338,671,608,253,71400,62900,27900,6980,30,2.6,10,3,64.4,77777,9,999999999,80,0.0930,0,88,999.000,999.0,99.0 +1988,3,18,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,2.2,31,102400,906,1379,343,653,689,201,67900,68800,22600,5010,30,2.6,7,2,64.4,77777,9,999999999,80,0.0930,0,88,999.000,999.0,99.0 +1988,3,18,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,1.1,27,102300,798,1379,347,538,711,127,57100,71500,15600,2970,10,2.6,6,2,64.4,77777,9,999999999,80,0.0930,0,88,999.000,999.0,99.0 +1988,3,18,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,1.1,27,102300,636,1379,347,409,655,108,43000,63800,13500,2220,30,2.6,5,2,64.4,77777,9,999999999,80,0.0930,0,88,999.000,999.0,99.0 +1988,3,18,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,1.1,29,102200,430,1379,342,189,273,105,20400,25000,12600,2050,30,2.1,4,2,64.4,77777,9,999999999,80,0.0930,0,88,999.000,999.0,99.0 +1988,3,18,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,0.6,28,102200,195,1379,338,75,178,50,7900,10900,6400,930,0,0.0,6,2,40.2,77777,9,999999999,89,0.0930,0,88,999.000,999.0,99.0 +1988,3,18,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,1.1,38,102200,12,448,325,7,10,6,0,0,0,0,310,2.1,7,3,24.1,77777,9,999999999,89,0.0930,0,88,999.000,999.0,99.0 +1988,3,18,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,3.9,55,102200,0,0,312,0,0,0,0,0,0,0,250,3.1,6,2,19.3,77777,9,999999999,89,0.1010,0,88,999.000,999.0,99.0 +1988,3,18,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,2.2,46,102200,0,0,319,0,0,0,0,0,0,0,290,2.6,7,3,24.1,77777,9,999999999,89,0.1010,0,88,999.000,999.0,99.0 +1988,3,18,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,3.3,64,102200,0,0,305,0,0,0,0,0,0,0,100,1.5,8,4,24.1,77777,9,999999999,89,0.1010,0,88,999.000,999.0,99.0 +1988,3,18,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,3.9,69,102200,0,0,301,0,0,0,0,0,0,0,90,1.5,7,3,24.1,77777,9,999999999,100,0.1010,0,88,999.000,999.0,99.0 +1988,3,18,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,3.3,69,102200,0,0,295,0,0,0,0,0,0,0,0,0.0,4,2,19.3,77777,9,999999999,100,0.1010,0,88,999.000,999.0,99.0 +1988,3,19,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,3.9,80,102200,0,0,289,0,0,0,0,0,0,0,120,2.1,2,2,24.1,77777,9,999999999,100,0.1010,0,88,999.000,999.0,99.0 +1988,3,19,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,3.3,86,102200,0,0,278,0,0,0,0,0,0,0,0,0.0,1,1,24.1,77777,9,999999999,100,0.1010,0,88,999.000,999.0,99.0 +1988,3,19,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,3.9,86,102200,0,0,275,0,0,0,0,0,0,0,150,1.5,0,0,24.1,77777,9,999999999,110,0.1010,0,88,999.000,999.0,99.0 +1988,3,19,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,2.8,89,102200,0,0,267,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,110,0.1010,0,88,999.000,999.0,99.0 +1988,3,19,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,3.3,96,102200,0,0,266,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,110,0.1010,0,88,999.000,999.0,99.0 +1988,3,19,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,2.8,93,102100,0,0,277,0,0,0,0,0,0,0,120,1.5,8,3,24.1,77777,9,999999999,110,0.1010,0,88,999.000,999.0,99.0 +1988,3,19,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,3.3,93,102100,62,999,284,20,19,18,2100,800,2100,370,0,0.0,10,5,32.2,77777,9,999999999,110,0.0860,0,88,999.000,999.0,99.0 +1988,3,19,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,3.9,83,102100,293,1379,294,123,186,84,13000,14400,9900,1640,100,2.6,10,5,24.1,77777,9,999999999,110,0.0860,0,88,999.000,999.0,99.0 +1988,3,19,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,5.0,77,102100,519,1379,304,273,356,140,29300,34600,16200,2870,0,0.0,10,5,64.4,77777,9,999999999,110,0.0860,0,88,999.000,999.0,99.0 +1988,3,19,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,5.6,74,102100,710,1379,313,348,222,234,37900,22800,26100,5900,40,2.6,10,6,64.4,7620,9,999999999,110,0.0860,0,88,999.000,999.0,99.0 +1988,3,19,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,5.0,57,102000,853,1379,327,463,354,245,50300,37800,26900,6180,320,2.1,10,6,64.4,7620,9,999999999,110,0.0860,0,88,999.000,999.0,99.0 +1988,3,19,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,5.0,48,102000,937,1379,334,583,451,277,61300,46600,29500,7580,20,2.6,9,4,32.2,77777,9,999999999,110,0.0860,0,88,999.000,999.0,99.0 +1988,3,19,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,4.4,42,101800,957,1379,344,624,486,287,65500,50200,30600,8080,20,2.6,10,5,32.2,77777,9,999999999,110,0.0860,0,88,999.000,999.0,99.0 +1988,3,19,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,4.4,39,101700,912,1379,349,522,441,231,55700,45600,25500,6020,90,2.1,10,5,32.2,77777,9,999999999,110,0.0860,0,88,999.000,999.0,99.0 +1988,3,19,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,5.6,36,101700,804,1379,359,485,534,174,52300,54700,20300,3980,220,7.2,8,4,64.4,77777,9,999999999,110,0.0860,0,88,999.000,999.0,99.0 +1988,3,19,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,5.6,38,101600,641,1379,356,342,435,141,36700,43100,16500,2860,220,7.2,9,4,64.4,77777,9,999999999,110,0.0860,0,88,999.000,999.0,99.0 +1988,3,19,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,2.8,33,101600,435,1379,357,125,106,92,13900,9900,10800,2070,240,5.2,9,7,64.4,2290,9,999999999,110,0.0860,0,88,999.000,999.0,99.0 +1988,3,19,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,1.1,33,101600,200,1379,347,55,45,49,6100,3300,5600,1200,260,3.6,9,7,64.4,2440,9,999999999,120,0.0860,0,88,999.000,999.0,99.0 +1988,3,19,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,2.8,43,101700,13,471,344,3,1,3,0,0,0,0,250,4.1,10,8,24.1,2740,9,999999999,120,0.0860,0,88,999.000,999.0,99.0 +1988,3,19,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,5.0,53,101700,0,0,341,0,0,0,0,0,0,0,240,4.1,10,8,24.1,2440,9,999999999,129,0.1010,0,88,999.000,999.0,99.0 +1988,3,19,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,5.6,58,101700,0,0,334,0,0,0,0,0,0,0,230,2.6,10,7,24.1,2590,9,999999999,129,0.1010,0,88,999.000,999.0,99.0 +1988,3,19,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,6.1,64,101700,0,0,335,0,0,0,0,0,0,0,220,3.6,10,8,24.1,2740,9,999999999,139,0.1010,0,88,999.000,999.0,99.0 +1988,3,19,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,6.1,67,101700,0,0,327,0,0,0,0,0,0,0,190,3.6,10,7,24.1,2740,9,999999999,139,0.1010,0,88,999.000,999.0,99.0 +1988,3,19,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,6.7,64,101600,0,0,345,0,0,0,0,0,0,0,160,3.1,10,9,24.1,2590,9,999999999,139,0.1010,0,88,999.000,999.0,99.0 +1988,3,20,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,6.7,64,101600,0,0,355,0,0,0,0,0,0,0,190,5.7,10,10,24.1,1130,9,999999999,150,0.1020,0,88,999.000,999.0,99.0 +1988,3,20,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,6.7,62,101600,0,0,358,0,0,0,0,0,0,0,210,5.7,10,10,24.1,1490,9,999999999,150,0.1020,0,88,999.000,999.0,99.0 +1988,3,20,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,7.2,67,101700,0,0,355,0,0,0,0,0,0,0,210,4.6,10,10,24.1,940,9,999999999,160,0.1020,0,88,999.000,999.0,99.0 +1988,3,20,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,7.8,72,101700,0,0,354,0,0,0,0,0,0,0,200,5.2,10,10,24.1,1830,9,999999999,160,0.1020,0,88,999.000,999.0,99.0 +1988,3,20,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,8.3,75,101700,0,0,354,0,0,0,0,0,0,0,200,3.6,10,10,24.1,1430,9,999999999,160,0.1020,0,88,999.000,999.0,99.0 +1988,3,20,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,8.3,77,101700,0,0,351,0,0,0,0,0,0,0,220,3.6,10,10,64.4,2440,9,999999999,160,0.1020,0,88,999.000,999.0,99.0 +1988,3,20,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,8.9,80,101700,67,1045,330,22,6,21,2400,0,2400,700,220,6.7,9,7,64.4,2590,9,999999999,160,0.0730,0,88,999.000,999.0,99.0 +1988,3,20,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,8.3,75,101700,301,1378,345,53,21,48,5800,1700,5400,1320,200,5.7,10,9,64.4,3350,9,999999999,160,0.0730,0,88,999.000,999.0,99.0 +1988,3,20,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,8.3,72,101800,527,1378,357,153,7,150,17200,500,17000,5590,220,4.6,10,10,32.2,3660,9,999999999,160,0.0730,0,88,999.000,999.0,99.0 +1988,3,20,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,7.8,67,101800,718,1378,359,223,9,218,25300,800,24900,8620,220,7.2,10,10,32.2,1830,9,999999999,160,0.0730,0,88,999.000,999.0,99.0 +1988,3,20,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,7.2,60,101700,860,1378,364,341,7,337,38400,700,37900,12680,230,6.7,10,10,32.2,3660,9,999999999,170,0.0730,0,88,999.000,999.0,99.0 +1988,3,20,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,6.7,58,101700,943,1378,363,270,3,268,31300,300,31100,11700,240,5.7,10,10,32.2,3660,9,999999999,170,0.0730,0,88,999.000,999.0,99.0 +1988,3,20,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,6.1,56,101700,963,1378,363,331,5,328,38000,500,37600,13540,250,6.7,10,10,32.2,3350,9,999999999,170,0.0730,0,88,999.000,999.0,99.0 +1988,3,20,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,6.7,60,101700,918,1378,360,277,2,276,32000,200,31900,11750,240,5.2,10,10,32.2,3050,9,999999999,170,0.0730,0,88,999.000,999.0,99.0 +1988,3,20,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,6.7,60,101600,810,1378,360,274,2,273,31100,200,31000,10760,240,4.1,10,10,32.2,1830,9,999999999,170,0.0730,0,88,999.000,999.0,99.0 +1988,3,20,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,6.1,60,101600,647,1378,357,193,2,192,21800,200,21800,7440,220,6.7,10,10,32.2,1830,9,999999999,170,0.0730,0,88,999.000,999.0,99.0 +1988,3,20,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,6.1,62,101600,441,1378,354,131,1,130,14500,100,14500,4590,230,4.1,10,10,40.2,1980,9,999999999,170,0.0730,0,88,999.000,999.0,99.0 +1988,3,20,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,5.0,62,101600,206,1378,331,51,17,49,5600,1300,5500,1210,220,4.1,10,8,40.2,2590,9,999999999,170,0.0730,0,88,999.000,999.0,99.0 +1988,3,20,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,4.4,62,101600,15,517,344,5,0,5,0,0,0,0,180,4.1,10,10,24.1,1680,9,999999999,170,0.0730,0,88,999.000,999.0,99.0 +1988,3,20,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,5.6,66,101600,0,0,346,0,0,0,0,0,0,0,200,3.1,10,10,24.1,940,9,999999999,170,0.1020,0,88,999.000,999.0,99.0 +1988,3,20,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,4.4,64,101700,0,0,341,0,0,0,0,0,0,0,200,3.6,10,10,24.1,1220,9,999999999,170,0.1020,0,88,999.000,999.0,99.0 +1988,3,20,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,7.2,83,101600,0,0,339,0,0,0,0,0,0,0,210,4.6,10,10,24.1,1190,9,999999999,179,0.1020,0,88,999.000,999.0,99.0 +1988,3,20,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,7.8,90,101700,0,0,337,0,0,0,0,0,0,0,180,2.6,10,10,16.1,1310,9,999999999,179,0.1020,0,88,999.000,999.0,99.0 +1988,3,20,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,7.8,90,101600,0,0,337,0,0,0,0,0,0,0,180,3.6,10,10,24.1,1100,9,999999999,179,0.1020,0,88,999.000,999.0,99.0 +1988,3,21,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,7.2,83,101600,0,0,339,0,0,0,0,0,0,0,150,3.1,10,10,24.1,850,9,999999999,179,0.1020,0,88,999.000,999.0,99.0 +1988,3,21,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,7.2,83,101600,0,0,339,0,0,0,0,0,0,0,190,3.1,10,10,24.1,820,9,999999999,179,0.1020,0,88,999.000,999.0,99.0 +1988,3,21,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,7.8,90,101600,0,0,337,0,0,0,0,0,0,0,200,4.1,10,10,24.1,940,9,999999999,179,0.1020,0,88,999.000,999.0,99.0 +1988,3,21,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,7.8,93,101600,0,0,335,0,0,0,0,0,0,0,210,4.1,10,10,24.1,1980,9,999999999,179,0.1020,0,88,999.000,999.0,99.0 +1988,3,21,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,7.2,89,101500,0,0,334,0,0,0,0,0,0,0,210,3.6,10,10,24.1,2590,9,999999999,179,0.1020,0,88,999.000,999.0,99.0 +1988,3,21,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,7.2,93,101600,0,0,322,0,0,0,0,0,0,0,100,4.1,10,9,24.1,5180,9,999999999,170,0.1020,0,88,999.000,999.0,99.0 +1988,3,21,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,7.8,93,101600,73,1090,335,18,4,18,2100,0,2100,630,120,2.6,10,10,32.2,4570,9,999999999,170,0.0990,0,88,999.000,999.0,99.0 +1988,3,21,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,7.8,90,101600,309,1377,337,79,5,78,8900,200,8800,2730,150,2.6,10,10,48.3,1980,9,999999999,160,0.0990,0,88,999.000,999.0,99.0 +1988,3,21,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,7.2,86,101700,534,1377,336,114,1,114,13200,100,13200,4640,200,3.6,10,10,32.2,2130,9,999999999,160,0.0990,0,88,999.000,999.0,99.0 +1988,3,21,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,7.8,90,101800,725,1377,337,117,2,116,14000,100,13900,5370,250,3.1,10,10,16.1,1340,9,999999999,150,0.0990,0,88,999.000,999.0,99.0 +1988,3,21,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,6.7,80,101800,867,1377,339,277,4,275,31700,400,31500,11320,260,3.6,10,10,32.2,1830,9,999999999,150,0.0990,0,88,999.000,999.0,99.0 +1988,3,21,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,4.4,66,101900,950,1377,339,310,3,308,35600,300,35400,12900,260,4.1,10,10,32.2,940,9,999999999,150,0.0990,0,88,999.000,999.0,99.0 +1988,3,21,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,4.4,64,101800,969,1377,341,320,3,318,36800,300,36600,13330,310,3.1,10,10,32.2,1130,9,999999999,139,0.0990,0,88,999.000,999.0,99.0 +1988,3,21,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,3.3,57,101800,923,1377,343,319,2,317,36300,200,36200,12900,260,2.6,10,10,32.2,1070,9,999999999,139,0.0990,0,88,999.000,999.0,99.0 +1988,3,21,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,2.8,53,101800,815,1377,328,390,216,262,42600,22600,29200,7030,260,3.6,10,8,32.2,3350,9,999999999,129,0.0990,0,88,999.000,999.0,99.0 +1988,3,21,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,2.8,51,101800,652,1377,326,367,380,187,39400,39000,20800,4120,260,3.1,9,7,32.2,7620,9,999999999,129,0.0990,0,88,999.000,999.0,99.0 +1988,3,21,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,2.8,53,101800,446,1377,328,139,92,109,15300,8600,12500,2460,280,3.6,9,8,48.3,2900,9,999999999,129,0.0990,0,88,999.000,999.0,99.0 +1988,3,21,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,4.4,66,101800,211,1377,330,58,1,58,6400,0,6400,1880,300,2.6,9,9,48.3,2740,9,999999999,129,0.0990,0,88,999.000,999.0,99.0 +1988,3,21,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,2.2,59,101900,17,539,334,5,0,5,0,0,0,0,280,3.1,10,10,24.1,2290,9,999999999,129,0.0990,0,88,999.000,999.0,99.0 +1988,3,21,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,2.8,66,102000,0,0,329,0,0,0,0,0,0,0,260,2.1,10,10,24.1,2440,9,999999999,129,0.1020,0,88,999.000,999.0,99.0 +1988,3,21,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,2.8,66,102000,0,0,329,0,0,0,0,0,0,0,260,2.6,10,10,24.1,2290,9,999999999,129,0.1020,0,88,999.000,999.0,99.0 +1988,3,21,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,3.3,71,102000,0,0,311,0,0,0,0,0,0,0,200,3.1,10,8,24.1,2900,9,999999999,129,0.1020,0,88,999.000,999.0,99.0 +1988,3,21,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,3.3,69,102000,0,0,330,0,0,0,0,0,0,0,160,2.6,10,10,24.1,2130,9,999999999,129,0.1020,0,88,999.000,999.0,99.0 +1988,3,21,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,3.3,71,101900,0,0,327,0,0,0,0,0,0,0,150,3.1,10,10,24.1,2440,9,999999999,129,0.1020,0,88,999.000,999.0,99.0 +1988,3,22,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,4.4,80,101900,0,0,317,0,0,0,0,0,0,0,150,3.1,10,9,24.1,1520,9,999999999,129,0.1030,0,88,999.000,999.0,99.0 +1988,3,22,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,3.3,71,101900,0,0,327,0,0,0,0,0,0,0,150,2.6,10,10,24.1,1220,9,999999999,129,0.1030,0,88,999.000,999.0,99.0 +1988,3,22,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,4.4,83,101800,0,0,323,0,0,0,0,0,0,0,180,3.1,10,10,24.1,1370,9,999999999,129,0.1030,0,88,999.000,999.0,99.0 +1988,3,22,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,5.0,86,101800,0,0,324,0,0,0,0,0,0,0,170,5.2,10,10,24.1,1490,9,999999999,129,0.1030,0,88,999.000,999.0,99.0 +1988,3,22,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,3.9,80,101800,0,0,322,0,0,0,0,0,0,0,130,3.1,10,10,24.1,1460,9,999999999,129,0.1030,0,88,999.000,999.0,99.0 +1988,3,22,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,4.4,89,101700,0,0,318,0,0,0,0,0,0,0,130,3.1,10,10,64.4,2440,9,999999999,129,0.1030,0,88,999.000,999.0,99.0 +1988,3,22,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,5.0,86,101600,79,1135,315,18,1,18,2100,0,2100,640,130,3.6,10,9,64.4,2290,9,999999999,139,0.0690,0,88,999.000,999.0,99.0 +1988,3,22,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,4.4,80,101600,316,1376,326,61,28,55,6800,2300,6200,1510,110,4.1,10,10,64.4,1980,9,999999999,139,0.0690,0,88,999.000,999.0,99.0 +1988,3,22,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,5.0,80,101500,542,1376,329,158,2,157,17800,200,17700,5860,100,5.2,10,10,48.3,1980,9,999999999,139,0.0690,0,88,999.000,999.0,99.0 +1988,3,22,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,4.4,66,101500,732,1376,339,223,8,219,25400,700,25000,8760,180,7.2,10,10,48.3,1220,9,999999999,139,0.0690,0,88,999.000,999.0,99.0 +1988,3,22,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,4.4,62,101400,873,1376,344,329,2,328,37200,200,37000,12660,180,5.7,10,10,48.3,1220,9,999999999,139,0.0690,0,88,999.000,999.0,99.0 +1988,3,22,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,4.4,59,101300,956,1376,347,199,8,193,23700,600,23200,9180,160,5.7,10,10,48.3,1220,9,999999999,139,0.0690,0,88,999.000,999.0,99.0 +1988,3,22,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,5.6,64,101200,975,1376,348,310,4,308,35900,400,35600,13110,170,5.7,10,10,48.3,1340,9,999999999,150,0.0690,0,88,999.000,999.0,99.0 +1988,3,22,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,5.0,60,101000,929,1376,350,300,2,299,34500,200,34300,12490,150,5.7,10,10,48.3,1430,9,999999999,150,0.0690,0,88,999.000,999.0,99.0 +1988,3,22,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,6.7,77,100900,821,1376,342,319,1,318,35700,100,35700,11860,130,4.6,10,10,48.3,1520,9,999999999,150,0.0690,0,88,999.000,999.0,99.0 +1988,3,22,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,6.7,64,100700,658,1376,355,126,1,125,14700,100,14700,5480,190,5.7,10,10,48.3,1520,9,999999999,150,0.0690,0,88,999.000,999.0,99.0 +1988,3,22,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,7.2,67,100500,451,1376,355,88,0,88,10200,0,10200,3530,180,5.7,10,10,48.3,1520,9,999999999,150,0.0690,0,88,999.000,999.0,99.0 +1988,3,22,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,8.9,83,100500,217,1376,350,39,0,39,4500,0,4500,1430,210,6.2,10,10,6.4,910,9,999999999,150,0.0690,0,88,999.000,999.0,99.0 +1988,3,22,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,9.4,86,100400,19,562,350,6,0,6,0,0,0,0,200,5.2,10,10,6.4,910,9,999999999,139,0.0690,0,88,999.000,999.0,99.0 +1988,3,22,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,7.8,83,100500,0,0,343,0,0,0,0,0,0,0,250,8.2,10,10,6.4,1070,9,999999999,139,0.1030,0,88,999.000,999.0,99.0 +1988,3,22,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,7.2,86,100600,0,0,315,0,0,0,0,0,0,0,210,4.6,7,7,9.7,1980,9,999999999,139,0.1030,0,88,999.000,999.0,99.0 +1988,3,22,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,6.7,83,100600,0,0,311,0,0,0,0,0,0,0,180,4.6,6,6,11.3,1980,9,999999999,139,0.1030,0,88,999.000,999.0,99.0 +1988,3,22,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,7.2,89,100500,0,0,304,0,0,0,0,0,0,0,190,4.1,4,4,12.9,77777,9,999999999,129,0.1030,0,88,999.000,999.0,99.0 +1988,3,22,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,6.1,86,100600,0,0,309,0,0,0,0,0,0,0,200,3.6,7,7,16.1,1310,9,999999999,129,0.1030,0,88,999.000,999.0,99.0 +1988,3,23,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,6.1,86,100600,0,0,330,0,0,0,0,0,0,0,180,3.1,10,10,24.1,1340,9,999999999,129,0.1040,0,88,999.000,999.0,99.0 +1988,3,23,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,6.1,86,100700,0,0,301,0,0,0,0,0,0,0,200,5.2,4,4,24.1,77777,9,999999999,129,0.1040,0,88,999.000,999.0,99.0 +1988,3,23,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,5.6,86,100800,0,0,318,0,0,0,0,0,0,0,200,5.2,9,9,24.1,1370,9,999999999,120,0.1040,0,88,999.000,999.0,99.0 +1988,3,23,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,6.1,89,100900,0,0,328,0,0,0,0,0,0,0,200,3.1,10,10,24.1,1130,9,999999999,120,0.1040,0,88,999.000,999.0,99.0 +1988,3,23,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,5.6,86,101000,0,0,318,0,0,0,0,0,0,0,200,3.6,9,9,24.1,1220,9,999999999,120,0.1040,0,88,999.000,999.0,99.0 +1988,3,23,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,5.0,83,101100,0,0,326,0,0,0,0,0,0,0,200,3.6,10,10,24.1,1310,9,999999999,120,0.1040,0,88,999.000,999.0,99.0 +1988,3,23,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,5.0,86,101200,86,1181,324,14,0,14,1600,0,1600,520,200,4.1,10,10,56.3,1010,9,999999999,120,0.0720,0,88,999.000,999.0,99.0 +1988,3,23,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,5.0,86,101300,324,1375,324,55,1,55,6400,0,6400,2140,210,5.7,10,10,32.2,1370,9,999999999,120,0.0720,0,88,999.000,999.0,99.0 +1988,3,23,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,5.0,80,101400,549,1375,329,181,1,180,20100,100,20100,6430,210,7.7,10,10,32.2,1980,9,999999999,120,0.0720,0,88,999.000,999.0,99.0 +1988,3,23,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,5.6,86,101500,739,1375,327,148,1,147,17400,100,17300,6570,220,5.2,10,10,19.3,910,9,999999999,110,0.0720,0,88,999.000,999.0,99.0 +1988,3,23,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,6.7,89,101600,880,1375,331,318,0,318,36000,0,36000,12510,250,3.1,10,10,24.1,1220,9,999999999,110,0.0720,0,88,999.000,999.0,99.0 +1988,3,23,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,5.6,77,101700,963,1375,325,326,76,273,36000,7700,30600,9910,230,5.7,9,9,32.2,3050,9,999999999,110,0.0720,0,88,999.000,999.0,99.0 +1988,3,23,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,5.6,80,101900,981,1375,323,502,198,361,54700,20900,39700,11160,220,7.7,9,9,24.1,1460,9,999999999,110,0.0720,0,88,999.000,999.0,99.0 +1988,3,23,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,3.9,64,102000,935,1375,329,359,71,311,39600,7300,34600,10740,230,5.2,9,9,32.2,1520,9,999999999,110,0.0720,0,88,999.000,999.0,99.0 +1988,3,23,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,2.8,59,102100,826,1375,316,349,200,229,38500,21000,25900,6190,240,5.7,7,7,40.2,1980,9,999999999,110,0.0720,0,88,999.000,999.0,99.0 +1988,3,23,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,5.0,77,102200,663,1375,316,246,69,213,27000,6900,23700,6230,260,4.1,8,8,40.2,1830,9,999999999,110,0.0720,0,88,999.000,999.0,99.0 +1988,3,23,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,1.7,57,102300,457,1375,317,159,93,128,17300,8700,14400,2900,260,5.7,8,8,40.2,1980,9,999999999,110,0.0720,0,88,999.000,999.0,99.0 +1988,3,23,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,2.8,66,102400,222,1375,320,74,43,68,8200,3300,7700,1600,280,4.6,9,9,40.2,1980,9,999999999,110,0.0720,0,88,999.000,999.0,99.0 +1988,3,23,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,2.2,71,102500,21,585,312,8,3,8,0,0,0,0,250,4.6,9,9,24.1,1490,9,999999999,120,0.0720,0,88,999.000,999.0,99.0 +1988,3,23,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,2.2,74,102500,0,0,310,0,0,0,0,0,0,0,220,3.1,9,9,24.1,1980,9,999999999,120,0.1040,0,88,999.000,999.0,99.0 +1988,3,23,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,3.3,77,102600,0,0,322,0,0,0,0,0,0,0,250,2.6,10,10,24.1,1070,9,999999999,120,0.1040,0,88,999.000,999.0,99.0 +1988,3,23,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,3.9,86,102600,0,0,317,0,0,0,0,0,0,0,170,3.1,10,10,24.1,1680,9,999999999,129,0.1040,0,88,999.000,999.0,99.0 +1988,3,23,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,3.9,83,102700,0,0,311,0,0,0,0,0,0,0,200,3.6,9,9,24.1,1980,9,999999999,129,0.1040,0,88,999.000,999.0,99.0 +1988,3,23,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,4.4,89,102700,0,0,318,0,0,0,0,0,0,0,180,3.1,10,10,19.3,1830,9,999999999,129,0.1040,0,88,999.000,999.0,99.0 +1988,3,24,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,4.4,86,102700,0,0,321,0,0,0,0,0,0,0,180,4.6,10,10,24.1,1980,9,999999999,129,0.1040,0,88,999.000,999.0,99.0 +1988,3,24,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,4.4,86,102600,0,0,321,0,0,0,0,0,0,0,190,3.6,10,10,24.1,2130,9,999999999,139,0.1040,0,88,999.000,999.0,99.0 +1988,3,24,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,4.4,86,102600,0,0,321,0,0,0,0,0,0,0,180,3.1,10,10,16.1,2130,9,999999999,139,0.1040,0,88,999.000,999.0,99.0 +1988,3,24,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,4.4,89,102600,0,0,318,0,0,0,0,0,0,0,190,3.1,10,10,16.1,1100,9,999999999,139,0.1040,0,88,999.000,999.0,99.0 +1988,3,24,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,4.4,89,102500,0,0,318,0,0,0,0,0,0,0,210,3.1,10,10,16.1,940,9,999999999,150,0.1040,0,88,999.000,999.0,99.0 +1988,3,24,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,4.4,89,102600,0,0,318,0,0,0,0,0,0,0,200,4.1,10,10,16.1,820,9,999999999,150,0.1040,0,88,999.000,999.0,99.0 +1988,3,24,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,5.0,93,102500,92,1226,319,12,5,11,1300,300,1200,290,190,4.1,10,10,16.1,730,9,999999999,150,0.0970,0,88,999.000,999.0,99.0 +1988,3,24,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,4.4,89,102500,332,1375,318,42,3,41,5000,100,4900,1690,190,4.1,10,10,16.1,670,9,999999999,160,0.0970,0,88,999.000,999.0,99.0 +1988,3,24,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,5.0,93,102500,557,1375,319,112,1,111,12900,100,12900,4630,170,4.6,10,10,12.9,640,9,999999999,160,0.0970,0,88,999.000,999.0,99.0 +1988,3,24,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,5.0,93,102400,746,1375,319,129,1,129,15400,100,15400,5940,170,5.2,10,10,9.7,730,9,999999999,170,0.0970,0,88,999.000,999.0,99.0 +1988,3,24,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,5.0,89,102400,887,1375,321,188,0,188,22200,0,22200,8700,200,5.2,10,10,11.3,520,9,999999999,179,0.0970,0,88,999.000,999.0,99.0 +1988,3,24,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,5.0,89,102400,969,1375,321,220,5,217,26100,400,25800,10140,180,5.2,10,10,11.3,460,9,999999999,179,0.0970,0,88,999.000,999.0,99.0 +1988,3,24,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,5.0,86,102300,987,1375,324,213,3,211,25400,200,25200,10000,200,5.7,10,10,11.3,610,9,999999999,189,0.0970,0,88,999.000,999.0,99.0 +1988,3,24,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,5.6,89,102200,940,1375,324,185,1,184,22100,100,22000,8780,190,5.2,10,10,11.3,610,9,999999999,189,0.0970,0,88,999.000,999.0,99.0 +1988,3,24,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,5.6,86,102200,832,1375,327,181,3,179,21300,200,21100,8120,200,7.2,10,10,16.1,610,9,999999999,200,0.0970,0,88,999.000,999.0,99.0 +1988,3,24,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,6.1,89,102100,668,1375,328,139,1,138,16200,100,16100,5970,200,6.2,10,10,16.1,580,9,999999999,200,0.0970,0,88,999.000,999.0,99.0 +1988,3,24,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,6.7,93,102000,462,1375,328,88,1,87,10100,100,10100,3530,200,6.2,10,10,16.1,610,9,999999999,200,0.0970,0,88,999.000,999.0,99.0 +1988,3,24,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,6.7,89,102000,227,1375,331,36,0,36,4200,0,4200,1360,200,7.2,10,10,9.7,460,9,999999999,200,0.0970,0,88,999.000,999.0,99.0 +1988,3,24,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,7.2,89,102000,23,630,334,6,0,6,0,0,0,0,200,7.7,10,10,9.7,490,9,999999999,200,0.0970,0,88,999.000,999.0,99.0 +1988,3,24,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,7.8,93,102000,0,0,335,0,0,0,0,0,0,0,200,7.2,10,10,9.7,820,9,999999999,200,0.1040,0,88,999.000,999.0,99.0 +1988,3,24,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,8.3,93,102000,0,0,338,0,0,0,0,0,0,0,200,6.2,10,10,9.7,880,9,999999999,200,0.1040,0,88,999.000,999.0,99.0 +1988,3,24,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,8.3,93,102100,0,0,338,0,0,0,0,0,0,0,230,6.2,10,10,8.0,880,9,999999999,200,0.1040,0,88,999.000,999.0,99.0 +1988,3,24,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,8.3,93,102200,0,0,338,0,0,0,0,0,0,0,230,4.1,10,10,11.3,1070,9,999999999,200,0.1040,0,88,999.000,999.0,99.0 +1988,3,24,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,8.3,93,102300,0,0,338,0,0,0,0,0,0,0,210,3.1,10,10,11.3,520,9,999999999,200,0.1040,0,88,999.000,999.0,99.0 +1988,3,25,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,8.3,93,102400,0,0,338,0,0,0,0,0,0,0,210,2.6,10,10,16.1,490,9,999999999,200,0.1050,0,88,999.000,999.0,99.0 +1988,3,25,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,8.3,93,102500,0,0,338,0,0,0,0,0,0,0,250,3.1,10,10,24.1,1130,9,999999999,200,0.1050,0,88,999.000,999.0,99.0 +1988,3,25,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,8.3,93,102500,0,0,338,0,0,0,0,0,0,0,290,2.1,10,10,24.1,1070,9,999999999,200,0.1050,0,88,999.000,999.0,99.0 +1988,3,25,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,7.8,96,102500,0,0,332,0,0,0,0,0,0,0,50,1.5,10,10,24.1,580,9,999999999,200,0.1050,0,88,999.000,999.0,99.0 +1988,3,25,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,7.8,96,102600,0,0,332,0,0,0,0,0,0,0,0,0.0,10,10,24.1,700,9,999999999,200,0.1050,0,88,999.000,999.0,99.0 +1988,3,25,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,7.8,93,102600,0,0,335,0,0,0,0,0,0,0,190,1.5,10,10,24.1,1370,9,999999999,200,0.1050,0,88,999.000,999.0,99.0 +1988,3,25,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,8.3,93,102600,99,1271,338,16,0,16,1900,0,1900,590,210,2.1,10,10,24.1,1370,9,999999999,200,0.0670,0,88,999.000,999.0,99.0 +1988,3,25,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,8.3,93,102600,339,1374,338,68,1,68,7800,0,7800,2580,220,2.6,10,10,12.9,1220,9,999999999,200,0.0670,0,88,999.000,999.0,99.0 +1988,3,25,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,8.9,96,102600,564,1374,338,116,1,116,13500,100,13500,4820,0,0.0,10,10,6.4,340,9,999999999,200,0.0670,0,88,999.000,999.0,99.0 +1988,3,25,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,9.4,100,102500,753,1374,339,262,1,262,29600,100,29500,9990,130,2.1,10,10,16.1,340,9,999999999,200,0.0670,0,88,999.000,999.0,99.0 +1988,3,25,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,10.0,86,102500,893,1374,353,332,1,331,37500,100,37500,12950,190,3.6,10,10,48.3,610,9,999999999,189,0.0670,0,88,999.000,999.0,99.0 +1988,3,25,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,10.0,78,102400,975,1374,362,335,1,334,38400,100,38300,13820,190,5.7,10,10,48.3,730,9,999999999,189,0.0670,0,88,999.000,999.0,99.0 +1988,3,25,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,10.0,78,102400,993,1374,362,351,1,351,40300,100,40200,14410,200,7.2,10,10,48.3,730,9,999999999,189,0.0670,0,88,999.000,999.0,99.0 +1988,3,25,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,9.4,78,102500,946,1374,358,330,2,329,37700,200,37600,13430,190,7.2,10,10,24.1,760,9,999999999,189,0.0670,0,88,999.000,999.0,99.0 +1988,3,25,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,10.0,83,102400,837,1374,356,287,1,287,32600,100,32600,11370,190,5.2,10,10,24.1,610,9,999999999,189,0.0670,0,88,999.000,999.0,99.0 +1988,3,25,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,10.6,83,102400,674,1374,359,134,1,133,15600,100,15600,5820,180,4.1,10,10,24.1,730,9,999999999,189,0.0670,0,88,999.000,999.0,99.0 +1988,3,25,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,10.6,83,102300,467,1374,359,146,1,146,16300,100,16300,5110,220,4.1,10,10,24.1,730,9,999999999,189,0.0670,0,88,999.000,999.0,99.0 +1988,3,25,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,9.4,78,102300,232,1374,358,71,1,71,7800,0,7800,2230,230,3.6,10,10,24.1,850,9,999999999,189,0.0670,0,88,999.000,999.0,99.0 +1988,3,25,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,8.3,75,102300,26,653,354,12,0,12,1400,0,1400,420,230,5.2,10,10,24.1,880,9,999999999,189,0.0670,0,88,999.000,999.0,99.0 +1988,3,25,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,8.3,77,102200,0,0,329,0,0,0,0,0,0,0,220,5.7,7,7,24.1,1980,9,999999999,189,0.1050,0,88,999.000,999.0,99.0 +1988,3,25,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,7.8,77,102300,0,0,317,0,0,0,0,0,0,0,120,3.1,4,4,24.1,77777,9,999999999,189,0.1050,0,88,999.000,999.0,99.0 +1988,3,25,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,8.3,83,102300,0,0,318,0,0,0,0,0,0,0,180,4.1,5,5,24.1,77777,9,999999999,200,0.1050,0,88,999.000,999.0,99.0 +1988,3,25,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,8.3,83,102200,0,0,329,0,0,0,0,0,0,0,200,7.2,8,8,24.1,3050,9,999999999,200,0.1050,0,88,999.000,999.0,99.0 +1988,3,25,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,8.3,80,102200,0,0,339,0,0,0,0,0,0,0,210,7.2,9,9,24.1,2590,9,999999999,200,0.1050,0,88,999.000,999.0,99.0 +1988,3,26,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,8.3,80,102200,0,0,349,0,0,0,0,0,0,0,210,8.2,10,10,24.1,2290,9,999999999,200,0.1060,0,88,999.000,999.0,99.0 +1988,3,26,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,8.3,83,102100,0,0,346,0,0,0,0,0,0,0,210,6.2,10,10,24.1,1680,9,999999999,200,0.1060,0,88,999.000,999.0,99.0 +1988,3,26,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,8.3,83,102000,0,0,336,0,0,0,0,0,0,0,220,5.2,9,9,24.1,1680,9,999999999,200,0.1060,0,88,999.000,999.0,99.0 +1988,3,26,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,8.3,83,101900,0,0,336,0,0,0,0,0,0,0,210,5.7,9,9,24.1,1680,9,999999999,200,0.1060,0,88,999.000,999.0,99.0 +1988,3,26,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,8.3,83,101800,0,0,346,0,0,0,0,0,0,0,210,5.2,10,10,24.1,1680,9,999999999,189,0.1060,0,88,999.000,999.0,99.0 +1988,3,26,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,8.3,86,101600,0,0,343,0,0,0,0,0,0,0,190,8.2,10,10,24.1,1680,9,999999999,189,0.1060,0,88,999.000,999.0,99.0 +1988,3,26,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,8.9,93,101600,106,1316,341,18,0,18,2100,0,2100,660,190,3.6,10,10,16.1,580,9,999999999,179,0.1450,0,88,999.000,999.0,99.0 +1988,3,26,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,8.9,93,101500,347,1373,341,52,1,52,6100,0,6100,2100,220,4.1,10,10,16.1,610,9,999999999,170,0.1450,0,88,999.000,999.0,99.0 +1988,3,26,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,9.4,93,101400,571,1373,345,117,1,117,13600,100,13600,4880,180,4.1,10,10,24.1,610,9,999999999,160,0.1450,0,88,999.000,999.0,99.0 +1988,3,26,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,9.4,93,101300,760,1373,345,163,1,162,19000,100,19000,7200,200,6.2,10,10,24.1,520,9,999999999,150,0.1450,0,88,999.000,999.0,99.0 +1988,3,26,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,10.0,93,101200,900,1373,348,187,0,187,22200,0,22200,8730,200,6.2,10,10,24.1,610,9,999999999,150,0.1450,0,88,999.000,999.0,99.0 +1988,3,26,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,10.0,93,101200,981,1373,348,202,0,202,24100,0,24100,9640,240,7.2,10,10,4.8,490,9,999999999,139,0.1450,0,88,999.000,999.0,99.0 +1988,3,26,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,7.2,93,101400,999,1373,331,206,0,206,24600,0,24600,9860,330,7.2,10,10,8.0,610,9,999999999,129,0.1450,0,88,999.000,999.0,99.0 +1988,3,26,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,5.6,80,101500,951,1373,323,405,76,352,44500,7800,39100,12050,300,3.6,9,9,16.1,1070,9,999999999,129,0.1450,0,88,999.000,999.0,99.0 +1988,3,26,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,3.9,74,101600,842,1373,328,254,10,248,29200,900,28700,10400,300,5.7,10,10,19.3,1010,9,999999999,120,0.1450,0,88,999.000,999.0,99.0 +1988,3,26,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,2.8,68,101600,679,1373,306,304,227,192,32700,23500,21100,4280,280,7.7,7,7,32.2,1830,9,999999999,110,0.1450,0,88,999.000,999.0,99.0 +1988,3,26,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,0.6,54,101700,472,1373,305,161,173,102,17500,16400,11900,1970,280,5.2,6,6,64.4,1830,9,999999999,110,0.1450,0,88,999.000,999.0,99.0 +1988,3,26,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,1.7,71,101800,238,1373,302,75,67,64,8200,4900,7400,1360,300,4.1,8,8,48.3,2130,9,999999999,100,0.1450,0,88,999.000,999.0,99.0 +1988,3,26,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,1.7,79,102000,28,675,295,3,0,3,400,0,400,120,230,6.2,8,8,24.1,2440,9,999999999,100,0.1450,0,88,999.000,999.0,99.0 +1988,3,26,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,1.1,86,102100,0,0,283,0,0,0,0,0,0,0,290,2.6,7,7,24.1,2740,9,999999999,100,0.1060,0,88,999.000,999.0,99.0 +1988,3,26,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,0.6,76,102100,0,0,306,0,0,0,0,0,0,0,270,3.1,10,10,24.1,1680,9,999999999,100,0.1060,0,88,999.000,999.0,99.0 +1988,3,26,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,1.1,86,102100,0,0,275,0,0,0,0,0,0,0,250,2.6,5,4,24.1,77777,9,999999999,89,0.1060,0,88,999.000,999.0,99.0 +1988,3,26,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,1.7,86,102100,0,0,297,0,0,0,0,0,0,0,220,8.8,10,9,24.1,1830,9,999999999,89,0.1060,0,88,999.000,999.0,99.0 +1988,3,26,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,1.7,89,102100,0,0,294,0,0,0,0,0,0,0,220,5.7,9,9,24.1,2900,9,999999999,89,0.1060,0,88,999.000,999.0,99.0 +1988,3,27,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,2.2,89,102100,0,0,306,0,0,0,0,0,0,0,240,5.7,10,10,24.1,1010,9,999999999,89,0.1060,0,88,999.000,999.0,99.0 +1988,3,27,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,1.7,89,102300,0,0,276,0,0,0,0,0,0,0,250,3.1,4,4,24.1,77777,9,999999999,89,0.1060,0,88,999.000,999.0,99.0 +1988,3,27,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,0.6,89,102400,0,0,268,0,0,0,0,0,0,0,200,2.1,3,3,24.1,77777,9,999999999,80,0.1060,0,88,999.000,999.0,99.0 +1988,3,27,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,2.2,93,102400,0,0,295,0,0,0,0,0,0,0,190,2.1,9,9,24.1,1070,9,999999999,80,0.1060,0,88,999.000,999.0,99.0 +1988,3,27,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,2.2,89,102500,0,0,306,0,0,0,0,0,0,0,210,2.6,10,10,24.1,1100,9,999999999,80,0.1060,0,88,999.000,999.0,99.0 +1988,3,27,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,2.2,93,102500,0,0,303,0,0,0,0,0,0,0,210,4.1,10,10,32.2,1100,9,999999999,80,0.1060,0,88,999.000,999.0,99.0 +1988,3,27,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,2.8,93,102500,113,1361,306,28,0,28,3100,0,3100,930,200,3.1,10,10,32.2,1370,9,999999999,80,0.1030,0,88,999.000,999.0,99.0 +1988,3,27,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,2.8,89,102500,355,1372,289,111,48,98,12100,4200,11000,2520,210,3.6,7,7,32.2,1070,9,999999999,80,0.1030,0,88,999.000,999.0,99.0 +1988,3,27,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,3.9,89,102600,578,1372,315,162,137,104,17900,13800,12100,2040,220,3.6,10,10,32.2,1310,9,999999999,80,0.1030,0,88,999.000,999.0,99.0 +1988,3,27,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,3.9,77,102700,767,1372,310,301,60,268,33100,6100,29700,8190,290,4.1,8,8,40.2,1490,9,999999999,89,0.1030,0,88,999.000,999.0,99.0 +1988,3,27,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,4.4,71,102700,906,1372,317,433,151,333,47000,15900,36500,9600,280,7.2,8,8,40.2,1680,9,999999999,89,0.1030,0,88,999.000,999.0,99.0 +1988,3,27,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,2.2,59,102700,987,1372,309,759,694,260,78300,68900,28500,7150,310,5.7,6,6,48.3,1680,9,999999999,89,0.1030,0,88,999.000,999.0,99.0 +1988,3,27,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,2.8,61,102700,1005,1372,313,568,379,291,62100,41000,32100,8740,300,7.2,7,7,48.3,1980,9,999999999,89,0.1030,0,88,999.000,999.0,99.0 +1988,3,27,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,1.7,53,102700,957,1372,310,504,384,236,54000,39800,26100,6570,300,6.2,5,5,48.3,77777,9,999999999,89,0.1030,0,88,999.000,999.0,99.0 +1988,3,27,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,0.0,45,102800,847,1372,311,426,364,201,45600,37400,22400,4850,300,7.2,5,5,48.3,77777,9,999999999,89,0.1030,0,88,999.000,999.0,99.0 +1988,3,27,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,1.1,54,102700,684,1372,308,290,196,193,31900,20100,21900,4800,330,6.2,6,6,48.3,1520,9,999999999,89,0.1030,0,88,999.000,999.0,99.0 +1988,3,27,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,-1.1,46,102800,477,1372,305,232,276,136,24600,26200,15500,2780,330,6.2,6,6,64.4,2130,9,999999999,89,0.1030,0,88,999.000,999.0,99.0 +1988,3,27,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,0.0,54,102800,243,1372,292,104,293,53,11000,20700,7300,950,300,5.7,2,2,64.4,77777,9,999999999,89,0.1030,0,88,999.000,999.0,99.0 +1988,3,27,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,0.6,61,102800,31,720,284,15,41,10,1300,1100,1300,160,290,4.1,1,1,64.4,77777,9,999999999,89,0.1030,0,88,999.000,999.0,99.0 +1988,3,27,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,0.6,68,102900,0,0,284,0,0,0,0,0,0,0,260,3.1,3,3,24.1,77777,9,999999999,89,0.1060,0,88,999.000,999.0,99.0 +1988,3,27,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,1.1,73,102900,0,0,279,0,0,0,0,0,0,0,310,2.6,2,2,24.1,77777,9,999999999,89,0.1060,0,88,999.000,999.0,99.0 +1988,3,27,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,1.7,82,103000,0,0,288,0,0,0,0,0,0,0,290,2.6,7,7,24.1,1130,9,999999999,89,0.1060,0,88,999.000,999.0,99.0 +1988,3,27,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,2.2,79,103000,0,0,294,0,0,0,0,0,0,0,270,2.6,7,7,24.1,1220,9,999999999,100,0.1060,0,88,999.000,999.0,99.0 +1988,3,27,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,1.7,86,103000,0,0,286,0,0,0,0,0,0,0,260,2.6,7,7,24.1,1680,9,999999999,100,0.1060,0,88,999.000,999.0,99.0 +1988,3,28,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,2.2,89,103100,0,0,281,0,0,0,0,0,0,0,100,2.1,5,5,24.1,77777,9,999999999,100,0.1070,0,88,999.000,999.0,99.0 +1988,3,28,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,2.8,93,103100,0,0,306,0,0,0,0,0,0,0,70,2.6,10,10,24.1,1490,9,999999999,100,0.1070,0,88,999.000,999.0,99.0 +1988,3,28,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,3.3,96,103100,0,0,307,0,0,0,0,0,0,0,80,2.1,10,10,24.1,1340,9,999999999,100,0.1070,0,88,999.000,999.0,99.0 +1988,3,28,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,2.8,93,103100,0,0,306,0,0,0,0,0,0,0,90,2.1,10,10,24.1,1980,9,999999999,100,0.1070,0,88,999.000,999.0,99.0 +1988,3,28,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,1.1,93,103100,0,0,273,0,0,0,0,0,0,0,0,0.0,5,5,24.1,77777,9,999999999,100,0.1070,0,88,999.000,999.0,99.0 +1988,3,28,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,1.1,93,103100,0,11,275,0,0,0,0,0,0,0,100,2.6,6,6,32.2,1980,9,999999999,110,0.1070,0,88,999.000,999.0,99.0 +1988,3,28,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,2.2,89,103100,121,1371,279,41,66,35,4400,3400,4100,730,130,2.6,6,4,32.2,1980,9,999999999,110,0.0910,0,88,999.000,999.0,99.0 +1988,3,28,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,2.8,83,103200,362,1371,281,174,410,66,18000,34700,8800,1210,120,2.6,3,2,32.2,77777,9,999999999,110,0.0910,0,88,999.000,999.0,99.0 +1988,3,28,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,3.3,83,103200,586,1371,308,222,159,155,24500,15900,17700,3690,110,3.1,9,9,48.3,1100,9,999999999,120,0.0910,0,88,999.000,999.0,99.0 +1988,3,28,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,2.2,68,103100,773,1371,308,398,234,266,43300,24300,29500,6960,150,3.6,9,8,48.3,3350,9,999999999,120,0.0910,0,88,999.000,999.0,99.0 +1988,3,28,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,2.8,68,103100,912,1371,326,358,48,326,39400,4900,36100,10930,70,3.1,10,10,48.3,1460,9,999999999,120,0.0910,0,88,999.000,999.0,99.0 +1988,3,28,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,2.2,63,103100,993,1371,328,311,10,304,36100,900,35400,13160,110,3.1,10,10,48.3,1520,9,999999999,129,0.0910,0,88,999.000,999.0,99.0 +1988,3,28,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,2.2,61,103000,1010,1371,331,430,8,425,48700,800,48100,16230,60,2.6,10,10,48.3,1830,9,999999999,129,0.0910,0,88,999.000,999.0,99.0 +1988,3,28,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,1.7,57,102900,962,1371,333,263,5,259,30600,400,30300,11560,70,2.6,10,10,56.3,1830,9,999999999,129,0.0910,0,88,999.000,999.0,99.0 +1988,3,28,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,0.6,49,102700,853,1371,328,363,73,317,39800,7500,35200,10090,210,2.6,10,9,56.3,1980,9,999999999,139,0.0910,0,88,999.000,999.0,99.0 +1988,3,28,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,0.0,47,102600,689,1371,336,207,8,203,23500,700,23200,8040,200,3.6,10,10,64.4,6100,9,999999999,139,0.0910,0,88,999.000,999.0,99.0 +1988,3,28,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,-0.6,47,102500,482,1371,333,94,7,91,10800,400,10700,3730,200,5.2,10,10,64.4,4570,9,999999999,139,0.0910,0,88,999.000,999.0,99.0 +1988,3,28,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,1.7,59,102500,248,1371,330,40,3,40,4700,100,4700,1520,270,6.7,10,10,24.1,1460,9,999999999,129,0.0910,0,88,999.000,999.0,99.0 +1988,3,28,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,4.4,86,102500,33,743,321,4,0,4,500,0,500,160,240,2.1,10,10,16.1,980,9,999999999,129,0.0910,0,88,999.000,999.0,99.0 +1988,3,28,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,5.0,93,102500,0,0,319,0,0,0,0,0,0,0,270,3.1,10,10,24.1,880,9,999999999,129,0.1070,0,88,999.000,999.0,99.0 +1988,3,28,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,4.4,89,102400,0,0,318,0,0,0,0,0,0,0,210,3.1,10,10,24.1,730,9,999999999,120,0.1070,0,88,999.000,999.0,99.0 +1988,3,28,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,4.4,93,102300,0,0,316,0,0,0,0,0,0,0,160,2.1,10,10,24.1,1370,9,999999999,120,0.1070,0,88,999.000,999.0,99.0 +1988,3,28,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,4.4,93,102200,0,0,316,0,0,0,0,0,0,0,150,2.6,10,10,24.1,1490,9,999999999,120,0.1070,0,88,999.000,999.0,99.0 +1988,3,28,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,4.4,93,102100,0,0,316,0,0,0,0,0,0,0,150,2.6,10,10,24.1,1460,9,999999999,110,0.1070,0,88,999.000,999.0,99.0 +1988,3,29,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,3.9,89,102000,0,0,315,0,0,0,0,0,0,0,210,3.6,10,10,24.1,1100,9,999999999,110,0.1080,0,88,999.000,999.0,99.0 +1988,3,29,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,4.4,89,102000,0,0,318,0,0,0,0,0,0,0,230,3.6,10,10,24.1,1010,9,999999999,110,0.1080,0,88,999.000,999.0,99.0 +1988,3,29,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,4.4,89,101900,0,0,318,0,0,0,0,0,0,0,220,6.2,10,10,24.1,1010,9,999999999,100,0.1080,0,88,999.000,999.0,99.0 +1988,3,29,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,4.4,89,101900,0,0,318,0,0,0,0,0,0,0,230,4.1,10,10,24.1,940,9,999999999,100,0.1080,0,88,999.000,999.0,99.0 +1988,3,29,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,5.0,93,101900,0,0,319,0,0,0,0,0,0,0,230,3.6,10,10,24.1,980,9,999999999,100,0.1080,0,88,999.000,999.0,99.0 +1988,3,29,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,3.3,89,102000,0,57,284,0,0,0,0,0,0,0,250,2.6,4,4,32.2,77777,9,999999999,100,0.1080,0,88,999.000,999.0,99.0 +1988,3,29,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,3.9,89,102100,128,1371,300,32,26,30,3600,1600,3400,720,260,2.1,8,8,32.2,1830,9,999999999,100,0.0550,0,88,999.000,999.0,99.0 +1988,3,29,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,3.9,86,102100,370,1371,291,217,491,86,22900,41800,11600,1590,250,2.1,5,5,32.2,77777,9,999999999,100,0.0550,0,88,999.000,999.0,99.0 +1988,3,29,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,3.3,77,102200,593,1371,306,260,169,187,28300,16900,21000,4460,240,3.6,8,8,32.2,910,9,999999999,100,0.0550,0,88,999.000,999.0,99.0 +1988,3,29,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,4.4,86,102200,780,1371,305,242,174,144,27100,18500,16600,3210,300,3.6,8,8,24.1,820,9,999999999,100,0.0550,0,88,999.000,999.0,99.0 +1988,3,29,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,4.4,77,102200,919,1371,312,220,68,175,25000,7300,20100,5100,270,6.7,8,8,19.3,880,9,999999999,100,0.0550,0,88,999.000,999.0,99.0 +1988,3,29,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,3.9,69,102200,999,1371,312,658,595,224,68600,59800,24900,6470,290,5.2,7,7,24.1,1220,9,999999999,100,0.0550,0,88,999.000,999.0,99.0 +1988,3,29,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,5.6,74,102200,1016,1371,321,528,146,420,57200,15400,45700,13540,290,4.1,8,8,24.1,1130,9,999999999,100,0.0550,0,88,999.000,999.0,99.0 +1988,3,29,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,6.1,74,102200,968,1371,319,532,280,335,57300,30100,36000,9890,290,4.6,7,7,32.2,1070,9,999999999,100,0.0550,0,88,999.000,999.0,99.0 +1988,3,29,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,4.4,74,102200,858,1371,315,293,278,119,33100,28800,15000,2800,310,6.7,8,8,24.1,1220,9,999999999,100,0.0550,0,88,999.000,999.0,99.0 +1988,3,29,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,4.4,71,102200,694,1371,317,304,148,229,33100,15200,25400,5730,310,6.7,8,8,32.2,1220,9,999999999,100,0.0550,0,88,999.000,999.0,99.0 +1988,3,29,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,3.3,69,102300,487,1371,303,278,557,81,29100,51600,10700,1570,300,5.2,5,5,48.3,77777,9,999999999,100,0.0550,0,88,999.000,999.0,99.0 +1988,3,29,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,3.3,71,102300,253,1371,303,96,186,62,10200,13400,7800,1160,300,4.1,6,6,48.3,7620,9,999999999,100,0.0550,0,88,999.000,999.0,99.0 +1988,3,29,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,2.8,71,102400,36,765,315,10,4,9,1000,200,1000,230,290,3.1,9,9,64.4,1830,9,999999999,100,0.0550,0,88,999.000,999.0,99.0 +1988,3,29,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,2.8,77,102500,0,0,299,0,0,0,0,0,0,0,270,2.6,9,7,24.1,1830,9,999999999,100,0.1080,0,88,999.000,999.0,99.0 +1988,3,29,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,2.8,77,102600,0,0,310,0,0,0,0,0,0,0,250,2.6,10,9,24.1,940,9,999999999,100,0.1080,0,88,999.000,999.0,99.0 +1988,3,29,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,2.8,80,102600,0,0,316,0,0,0,0,0,0,0,250,2.6,10,10,24.1,1220,9,999999999,100,0.1080,0,88,999.000,999.0,99.0 +1988,3,29,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,2.8,80,102600,0,0,316,0,0,0,0,0,0,0,270,2.1,10,10,24.1,940,9,999999999,110,0.1080,0,88,999.000,999.0,99.0 +1988,3,29,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,2.8,77,102600,0,0,319,0,0,0,0,0,0,0,250,2.6,10,10,24.1,980,9,999999999,110,0.1080,0,88,999.000,999.0,99.0 +1988,3,30,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,2.8,80,102600,0,0,316,0,0,0,0,0,0,0,270,2.6,10,10,19.3,1100,9,999999999,110,0.1080,0,88,999.000,999.0,99.0 +1988,3,30,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,2.8,80,102700,0,0,316,0,0,0,0,0,0,0,250,2.1,10,10,24.1,1310,9,999999999,110,0.1080,0,88,999.000,999.0,99.0 +1988,3,30,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,3.9,86,102700,0,0,317,0,0,0,0,0,0,0,220,1.5,10,10,24.1,880,9,999999999,110,0.1080,0,88,999.000,999.0,99.0 +1988,3,30,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,3.9,89,102700,0,0,315,0,0,0,0,0,0,0,200,2.1,10,10,24.1,880,9,999999999,110,0.1080,0,88,999.000,999.0,99.0 +1988,3,30,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,3.9,89,102700,0,0,315,0,0,0,0,0,0,0,230,2.1,10,10,11.3,760,9,999999999,110,0.1080,0,88,999.000,999.0,99.0 +1988,3,30,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,4.4,93,102700,1,103,316,0,0,0,0,0,0,0,170,1.5,10,10,24.1,850,9,999999999,110,0.1050,0,88,999.000,999.0,99.0 +1988,3,30,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,4.4,93,102800,136,1370,316,25,1,24,2800,0,2800,860,190,2.1,10,10,24.1,880,9,999999999,110,0.1050,0,88,999.000,999.0,99.0 +1988,3,30,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,5.0,89,102800,377,1370,321,80,7,78,9100,300,9000,2990,210,2.6,10,10,32.2,820,9,999999999,120,0.1050,0,88,999.000,999.0,99.0 +1988,3,30,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,4.4,83,102900,600,1370,308,256,115,206,28100,11300,23100,5740,170,2.6,8,8,24.1,1830,9,999999999,120,0.1050,0,88,999.000,999.0,99.0 +1988,3,30,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,3.9,74,102900,787,1370,328,220,8,216,25400,700,25000,9090,0,0.0,10,10,24.1,580,9,999999999,120,0.1050,0,88,999.000,999.0,99.0 +1988,3,30,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,4.4,77,102900,925,1370,312,295,109,221,32900,11600,25100,6480,0,0.0,8,8,32.2,910,9,999999999,120,0.1050,0,88,999.000,999.0,99.0 +1988,3,30,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,3.3,61,102900,1005,1370,316,590,426,278,62700,44200,30200,8460,220,2.1,7,7,24.1,1830,9,999999999,120,0.1050,0,88,999.000,999.0,99.0 +1988,3,30,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,3.3,59,102900,1021,1370,319,392,181,258,43400,19600,28800,7810,220,1.5,7,7,48.3,1680,9,999999999,129,0.1050,0,88,999.000,999.0,99.0 +1988,3,30,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,3.3,57,102900,973,1370,321,507,359,253,54200,37200,27700,7260,0,0.0,7,7,48.3,1830,9,999999999,129,0.1050,0,88,999.000,999.0,99.0 +1988,3,30,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,2.8,53,102800,863,1370,323,492,279,317,52400,29700,33700,8500,230,2.6,7,7,48.3,1830,9,999999999,129,0.1050,0,88,999.000,999.0,99.0 +1988,3,30,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,3.3,51,102800,699,1370,325,410,437,187,43000,43800,20600,4020,240,4.1,6,6,56.3,1680,9,999999999,129,0.1050,0,88,999.000,999.0,99.0 +1988,3,30,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,2.8,53,102800,492,1370,328,162,32,151,17800,3000,16700,4080,270,2.6,8,8,64.4,1980,9,999999999,129,0.1050,0,88,999.000,999.0,99.0 +1988,3,30,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,3.9,59,102700,258,1370,327,79,57,68,8600,4600,7800,1690,290,2.6,8,8,64.4,1830,9,999999999,139,0.1050,0,88,999.000,999.0,99.0 +1988,3,30,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,3.9,66,102700,39,810,308,14,15,13,1600,600,1500,270,290,2.1,6,5,64.4,9140,9,999999999,139,0.1050,0,88,999.000,999.0,99.0 +1988,3,30,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,4.4,71,102800,0,0,317,0,0,0,0,0,0,0,290,2.1,8,8,24.1,1680,9,999999999,139,0.1080,0,88,999.000,999.0,99.0 +1988,3,30,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,4.4,77,102800,0,0,299,0,0,0,0,0,0,0,300,2.1,4,4,24.1,77777,9,999999999,139,0.1080,0,88,999.000,999.0,99.0 +1988,3,30,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,3.9,77,102800,0,0,299,0,0,0,0,0,0,0,280,2.1,5,5,24.1,77777,9,999999999,150,0.1080,0,88,999.000,999.0,99.0 +1988,3,30,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,3.9,74,102800,0,0,328,0,0,0,0,0,0,0,0,0.0,10,10,24.1,2590,9,999999999,150,0.1080,0,88,999.000,999.0,99.0 +1988,3,30,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,3.9,74,102800,0,0,328,0,0,0,0,0,0,0,300,2.1,10,10,24.1,2130,9,999999999,150,0.1080,0,88,999.000,999.0,99.0 +1988,3,31,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,3.9,74,102800,0,0,319,0,0,0,0,0,0,0,0,0.0,9,9,24.1,1680,9,999999999,150,0.1090,0,88,999.000,999.0,99.0 +1988,3,31,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,5.6,89,102800,0,0,324,0,0,0,0,0,0,0,120,2.1,10,10,24.1,1520,9,999999999,150,0.1090,0,88,999.000,999.0,99.0 +1988,3,31,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,4.4,89,102800,0,0,298,0,0,0,0,0,0,0,120,2.1,7,7,24.1,7620,9,999999999,160,0.1090,0,88,999.000,999.0,99.0 +1988,3,31,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,4.4,96,102800,0,0,280,0,0,0,0,0,0,0,0,0.0,5,2,16.1,77777,9,999999999,160,0.1090,0,88,999.000,999.0,99.0 +1988,3,31,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,3.9,96,102800,0,0,274,0,0,0,0,0,0,0,0,0.0,4,1,11.3,77777,9,999999999,160,0.1090,0,88,999.000,999.0,99.0 +1988,3,31,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,4.4,100,102800,1,148,291,0,0,0,0,0,0,0,0,0.0,7,7,11.3,2130,9,999999999,150,0.1530,0,88,999.000,999.0,99.0 +1988,3,31,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,5.0,96,102800,143,1369,316,33,2,32,3600,0,3600,1080,0,0.0,10,10,24.1,1980,9,999999999,150,0.1530,0,88,999.000,999.0,99.0 +1988,3,31,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,5.0,86,102800,384,1369,324,66,4,65,7700,200,7600,2610,60,2.1,10,10,40.2,1980,9,999999999,150,0.1530,0,88,999.000,999.0,99.0 +1988,3,31,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,5.6,77,102800,607,1369,310,311,343,159,33500,34800,18100,3360,300,2.1,6,6,24.1,1980,9,999999999,139,0.1530,0,88,999.000,999.0,99.0 +1988,3,31,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,5.6,74,102800,793,1369,298,524,691,124,55700,69600,15300,2910,260,2.6,1,1,32.2,77777,9,999999999,139,0.1530,0,88,999.000,999.0,99.0 +1988,3,31,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,5.6,66,102700,931,1369,300,658,765,138,68400,76300,16400,3380,330,2.1,0,0,48.3,77777,9,999999999,139,0.1530,0,88,999.000,999.0,99.0 +1988,3,31,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,1.7,47,102600,1011,1369,300,754,822,147,78800,82300,17800,4080,300,2.6,0,0,64.4,77777,9,999999999,129,0.1530,0,88,999.000,999.0,99.0 +1988,3,31,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,2.2,46,102600,1027,1369,305,763,820,149,79900,82200,18000,4260,210,2.6,0,0,64.4,77777,9,999999999,129,0.1530,0,88,999.000,999.0,99.0 +1988,3,31,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,4.4,48,102400,978,1369,315,721,809,144,75200,80900,17300,3780,290,3.1,0,0,64.4,77777,9,999999999,129,0.1530,0,88,999.000,999.0,99.0 +1988,3,31,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,6.1,48,102400,868,1369,324,618,769,132,66100,78100,16500,3350,360,3.1,0,0,64.4,77777,9,999999999,120,0.1530,0,88,999.000,999.0,99.0 +1988,3,31,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,6.7,48,102300,704,1369,327,475,708,112,50300,70300,14100,2440,310,4.1,0,0,64.4,77777,9,999999999,120,0.1530,0,88,999.000,999.0,99.0 +1988,3,31,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,6.1,48,102200,497,1369,330,284,541,89,29700,50200,11400,1710,340,5.2,1,1,64.4,77777,9,999999999,120,0.1530,0,88,999.000,999.0,99.0 +1988,3,31,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,6.7,52,102200,263,1369,329,111,286,57,11800,21100,7700,1030,330,4.1,1,1,64.4,77777,9,999999999,120,0.1530,0,88,999.000,999.0,99.0 +1988,3,31,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,7.2,62,102100,42,833,319,14,18,12,1500,700,1400,250,330,3.1,2,1,64.4,77777,9,999999999,120,0.1530,0,88,999.000,999.0,99.0 +1988,3,31,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,7.8,69,102100,0,0,315,0,0,0,0,0,0,0,330,3.1,3,1,40.2,77777,9,999999999,120,0.1090,0,88,999.000,999.0,99.0 +1988,3,31,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,7.8,80,102100,0,0,309,0,0,0,0,0,0,0,310,2.6,5,2,24.1,77777,9,999999999,120,0.1090,0,88,999.000,999.0,99.0 +1988,3,31,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,7.6,80,102100,0,0,310,0,0,0,0,0,0,0,300,3.0,6,3,24.1,77777,9,999999999,129,0.1090,0,88,999.000,999.0,99.0 +1988,3,31,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.2,7.5,83,102100,0,0,295,0,0,0,0,0,0,0,300,3.5,2,0,24.1,77777,9,999999999,129,0.1090,0,88,999.000,999.0,99.0 +1988,3,31,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.7,7.3,86,102100,0,0,293,0,0,0,0,0,0,0,300,3.9,1,0,24.1,77777,9,999999999,129,0.1090,0,88,999.000,999.0,99.0 +1996,4,1,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.2,7.2,86,100200,0,0,336,0,0,0,0,0,0,0,80,4.4,10,10,16.0,1494,9,999999999,139,0.1220,0,88,0.150,0.0,1.0 +1996,4,1,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.7,7.0,86,100100,0,0,333,0,0,0,0,0,0,0,100,4.8,10,10,16.0,1402,9,999999999,139,0.1220,0,88,0.150,0.0,1.0 +1996,4,1,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,6.9,90,100100,0,0,331,0,0,0,0,0,0,0,90,5.3,10,10,16.0,2438,9,999999999,139,0.1220,0,88,0.150,0.0,1.0 +1996,4,1,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,6.7,93,100100,0,0,328,0,0,0,0,0,0,0,110,5.7,10,10,11.2,914,9,999999999,139,0.1220,0,88,0.150,1.0,1.0 +1996,4,1,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,7.2,93,100000,0,0,331,0,0,0,0,0,0,0,100,4.6,10,10,11.2,1676,9,999999999,139,0.1220,0,88,0.150,1.0,1.0 +1996,4,1,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,7.8,93,100000,2,194,335,0,0,0,0,0,0,0,100,4.6,10,10,11.2,1463,9,999999999,139,0.1220,0,88,0.150,1.0,1.0 +1996,4,1,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,7.2,93,100100,151,1368,331,21,0,21,2400,0,2400,790,110,5.7,10,10,11.3,1128,9,999999999,139,0.1220,0,88,0.150,1.0,1.0 +1996,4,1,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,7.8,90,100100,392,1368,328,96,76,74,10700,6900,8700,1640,80,3.1,10,9,16.0,1524,9,999999999,139,0.1220,0,88,0.150,2.0,1.0 +1996,4,1,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,9.4,86,100100,614,1368,340,219,87,179,24000,8500,20100,5220,110,5.2,10,9,16.0,1676,9,999999999,139,0.1220,0,88,0.150,0.0,1.0 +1996,4,1,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,8.3,67,100100,800,1368,345,329,127,255,36000,13300,28200,6800,180,8.2,10,8,16.0,1067,9,999999999,139,0.1220,0,88,0.150,0.0,1.0 +1996,4,1,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,7.2,60,100200,938,1368,354,211,97,145,24300,10400,17100,4300,170,8.2,10,9,16.0,1341,9,999999999,129,0.1220,0,88,0.150,0.0,1.0 +1996,4,1,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,6.7,55,100200,1017,1368,356,231,12,222,27500,1000,26800,10560,170,8.2,10,9,16.0,1372,9,999999999,129,0.1220,0,88,0.150,0.0,1.0 +1996,4,1,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,6.1,50,100200,1032,1368,371,224,0,224,26700,0,26700,10690,200,8.8,10,10,16.0,1829,9,999999999,129,0.1220,0,88,0.150,0.0,1.0 +1996,4,1,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,7.2,62,100200,983,1368,351,424,34,399,47900,3500,45400,15440,210,6.2,10,9,16.0,1829,9,999999999,129,0.1220,0,88,0.150,0.0,1.0 +1996,4,1,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,5.6,51,100300,873,1368,355,441,155,342,47700,16200,37300,9620,210,9.8,10,9,16.0,1463,9,999999999,129,0.1220,0,88,0.150,0.0,1.0 +1996,4,1,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,6.7,55,100300,709,1368,349,408,90,361,44600,9200,39800,9450,220,7.2,10,8,16.0,1981,9,999999999,129,0.1220,0,88,0.150,0.0,1.0 +1996,4,1,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,5.6,55,100300,503,1368,349,138,58,116,15100,5500,13100,3340,220,7.2,10,9,16.0,2134,9,999999999,120,0.1220,0,88,0.150,0.0,1.0 +1996,4,1,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,8.3,74,100400,269,1368,345,42,0,41,4800,0,4800,1590,240,3.6,10,9,16.0,1981,9,999999999,120,0.1220,0,88,0.150,0.0,1.0 +1996,4,1,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,8.3,80,100400,45,855,312,13,42,11,1500,1300,1400,180,230,3.1,9,2,16.0,77777,9,999999999,120,0.1220,0,88,0.150,0.0,1.0 +1996,4,1,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,8.3,77,100500,0,0,342,0,0,0,0,0,0,0,190,1.5,10,9,16.0,1829,9,999999999,120,0.1220,0,88,0.150,0.0,1.0 +1996,4,1,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,6.7,71,100600,0,0,337,0,0,0,0,0,0,0,200,4.6,10,9,16.0,1829,9,999999999,120,0.1220,0,88,0.150,0.0,1.0 +1996,4,1,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,7.8,83,100600,0,0,326,0,0,0,0,0,0,0,220,2.1,10,8,16.0,2286,9,999999999,120,0.1220,0,88,0.150,0.0,1.0 +1996,4,1,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,7.8,83,100700,0,0,343,0,0,0,0,0,0,0,220,3.6,10,10,16.0,1036,9,999999999,120,0.1220,0,88,0.150,0.0,1.0 +1996,4,1,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,8.3,93,100800,0,0,338,0,0,0,0,0,0,0,300,5.2,10,10,8.0,518,9,999999999,110,0.1220,0,88,0.150,0.0,1.0 +1996,4,2,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,6.1,86,100900,0,0,330,0,0,0,0,0,0,0,300,5.7,10,10,11.2,762,9,999999999,110,0.1220,0,88,0.150,0.0,1.0 +1996,4,2,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,5.0,86,101000,0,0,324,0,0,0,0,0,0,0,300,5.2,10,10,11.2,1097,9,999999999,110,0.1220,0,88,0.150,0.0,1.0 +1996,4,2,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,3.9,82,101100,0,0,320,0,0,0,0,0,0,0,300,4.6,10,10,16.0,1219,9,999999999,110,0.1220,0,88,0.150,0.0,1.0 +1996,4,2,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,3.3,79,101100,0,0,320,0,0,0,0,0,0,0,300,5.7,10,10,16.0,1494,9,999999999,110,0.1220,0,88,0.150,0.0,1.0 +1996,4,2,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,3.9,82,101200,0,0,320,0,0,0,0,0,0,0,280,3.6,10,10,16.0,1524,9,999999999,110,0.1220,0,88,0.150,0.0,1.0 +1996,4,2,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,3.9,82,101300,3,239,320,0,0,0,0,0,0,0,270,3.6,10,10,16.0,1829,9,999999999,110,0.1220,0,88,0.150,0.0,1.0 +1996,4,2,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,3.9,80,101300,158,1367,322,23,0,23,2700,0,2700,860,300,4.1,10,10,16.0,1829,9,999999999,110,0.1220,0,88,0.150,0.0,1.0 +1996,4,2,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,3.9,80,101400,399,1367,314,218,134,179,23100,11900,19600,4000,280,3.6,10,9,16.0,1372,9,999999999,110,0.1220,0,88,0.150,0.0,1.0 +1996,4,2,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,2.2,68,101500,621,1367,314,165,118,111,18600,12000,13100,2680,310,3.6,10,9,16.0,1372,9,999999999,110,0.1220,0,88,0.150,0.0,1.0 +1996,4,2,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,1.7,63,101500,807,1367,305,398,103,337,43600,10500,37400,10100,0,0.0,9,7,16.0,1829,9,999999999,110,0.1220,0,88,0.150,0.0,1.0 +1996,4,2,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,1.1,56,101500,944,1367,320,326,65,281,35900,6600,31300,10020,0,0.0,10,9,16.0,1372,9,999999999,110,0.1220,0,88,0.150,0.0,1.0 +1996,4,2,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,0.0,50,101600,1022,1367,322,295,61,250,32700,6200,28100,9780,260,1.5,10,9,16.0,1829,9,999999999,110,0.1220,0,88,0.150,0.0,1.0 +1996,4,2,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,1.1,50,101600,1038,1367,328,602,121,509,66000,12700,56300,17530,180,2.6,10,9,16.0,2134,9,999999999,110,0.1220,0,88,0.150,0.0,1.0 +1996,4,2,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,1.7,54,101600,988,1367,327,417,101,343,45800,10400,38300,12310,160,3.1,10,9,16.0,1676,9,999999999,110,0.1220,0,88,0.150,0.0,1.0 +1996,4,2,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,1.7,54,101600,878,1367,327,364,59,326,40000,6000,36100,10590,110,2.1,10,9,16.0,1829,9,999999999,110,0.1220,0,88,0.150,0.0,1.0 +1996,4,2,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,1.1,50,101600,714,1367,337,151,0,151,17700,0,17700,6620,60,3.1,10,10,16.0,2438,9,999999999,110,0.1220,0,88,0.150,0.0,1.0 +1996,4,2,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,1.1,50,101600,507,1367,328,162,42,147,17800,4000,16400,4060,70,3.1,10,9,16.0,2286,9,999999999,110,0.1220,0,88,0.150,0.0,1.0 +1996,4,2,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,1.1,50,101600,274,1367,302,128,295,69,13300,22100,8800,1260,80,3.1,7,2,16.0,77777,9,999999999,120,0.1220,0,88,0.150,0.0,1.0 +1996,4,2,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,1.1,54,101600,48,900,300,14,48,12,1600,1600,1500,200,90,2.1,8,3,16.0,77777,9,999999999,120,0.1220,0,88,0.150,0.0,1.0 +1996,4,2,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,1.7,56,101700,0,0,298,0,0,0,0,0,0,0,90,2.6,7,2,16.0,77777,9,999999999,120,0.1220,0,88,0.150,0.0,1.0 +1996,4,2,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,2.2,63,101700,0,0,297,0,0,0,0,0,0,0,70,2.1,8,3,16.0,77777,9,999999999,120,0.1220,0,88,0.150,0.0,1.0 +1996,4,2,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,3.3,73,101700,0,0,296,0,0,0,0,0,0,0,90,1.5,9,4,16.0,77777,9,999999999,120,0.1220,0,88,0.150,0.0,1.0 +1996,4,2,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,2.8,71,101800,0,0,293,0,0,0,0,0,0,0,70,2.1,8,3,16.0,77777,9,999999999,120,0.1220,0,88,0.150,0.0,1.0 +1996,4,2,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,3.3,79,101900,0,0,311,0,0,0,0,0,0,0,0,0.0,10,9,16.0,1829,9,999999999,120,0.1220,0,88,0.150,0.0,1.0 +1996,4,3,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,3.3,82,101900,0,0,317,0,0,0,0,0,0,0,130,2.6,10,10,16.0,1829,9,999999999,120,0.1230,0,88,0.150,0.0,1.0 +1996,4,3,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,3.9,86,101900,0,0,317,0,0,0,0,0,0,0,110,3.1,10,10,16.0,1829,9,999999999,120,0.1230,0,88,0.150,0.0,1.0 +1996,4,3,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,3.9,89,101900,0,0,282,0,0,0,0,0,0,0,110,3.6,2,2,16.0,77777,9,999999999,120,0.1230,0,88,0.150,0.0,1.0 +1996,4,3,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,3.3,85,101900,0,0,273,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,120,0.1230,0,88,0.150,0.0,1.0 +1996,4,3,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.9,2.8,93,101900,0,0,274,0,0,0,0,0,0,0,110,2.1,2,2,16.0,77777,9,999999999,120,0.1230,0,88,0.150,0.0,1.0 +1996,4,3,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,2.8,89,102000,5,285,279,0,9,0,0,0,0,0,110,2.6,3,3,16.0,77777,9,999999999,120,0.1230,0,88,0.150,0.0,1.0 +1996,4,3,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,3.3,89,102000,166,1367,279,65,259,33,6600,15800,4600,580,100,2.1,2,2,16.0,77777,9,999999999,120,0.1230,0,88,0.150,0.0,1.0 +1996,4,3,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,4.4,85,102100,407,1367,290,233,402,113,24000,35300,13400,2150,120,4.1,3,3,16.0,77777,9,999999999,120,0.1230,0,88,0.150,0.0,1.0 +1996,4,3,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,3.9,68,102100,628,1367,298,408,688,92,43300,67400,12200,1930,90,2.1,2,2,16.0,77777,9,999999999,120,0.1230,0,88,0.150,0.0,1.0 +1996,4,3,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,4.4,65,102100,813,1367,309,541,570,201,57500,58400,22700,4720,50,3.1,4,4,16.0,77777,9,999999999,120,0.1230,0,88,0.150,0.0,1.0 +1996,4,3,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,3.3,56,102200,950,1367,307,646,716,148,69000,73100,18100,4160,160,2.1,2,2,16.0,77777,9,999999999,120,0.1230,0,88,0.150,0.0,1.0 +1996,4,3,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,3.9,53,102100,1028,1367,318,608,556,189,64400,56500,21700,5920,140,2.1,3,3,16.0,77777,9,999999999,120,0.1230,0,88,0.150,0.0,1.0 +1996,4,3,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,2.2,44,102100,1043,1367,318,679,704,142,71500,70800,17300,4290,170,2.1,2,2,16.0,77777,9,999999999,120,0.1230,0,88,0.150,0.0,1.0 +1996,4,3,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,1.1,37,102100,993,1367,325,596,526,213,64900,54800,24900,6250,230,1.5,3,3,16.0,77777,9,999999999,120,0.1230,0,88,0.150,0.0,1.0 +1996,4,3,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,1.1,37,102100,883,1367,322,603,762,110,63700,76400,14200,2730,350,3.1,2,2,16.0,77777,9,999999999,120,0.1230,0,88,0.150,0.0,1.0 +1996,4,3,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,1.1,36,102100,719,1367,327,451,516,180,47800,52100,20300,3900,340,3.1,3,3,16.0,77777,9,999999999,120,0.1230,0,88,0.150,0.0,1.0 +1996,4,3,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,1.7,38,102100,512,1367,328,304,567,91,31600,53000,11700,1760,320,3.1,3,3,16.0,77777,9,999999999,120,0.1230,0,88,0.150,0.0,1.0 +1996,4,3,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,1.1,37,102100,278,1367,311,139,459,46,14500,35600,7200,850,310,1.5,2,0,16.0,77777,9,999999999,120,0.1230,0,88,0.150,0.0,1.0 +1996,4,3,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,2.2,45,102100,51,922,305,15,87,10,1600,4000,1400,190,340,1.5,2,0,16.0,77777,9,999999999,120,0.1230,0,88,0.150,0.0,1.0 +1996,4,3,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,2.2,45,102200,0,0,305,0,0,0,0,0,0,0,20,2.6,2,0,16.0,77777,9,999999999,120,0.1230,0,88,0.150,0.0,1.0 +1996,4,3,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,2.8,54,102300,0,0,297,0,0,0,0,0,0,0,80,2.1,2,0,16.0,77777,9,999999999,120,0.1230,0,88,0.150,0.0,1.0 +1996,4,3,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,3.9,66,102300,0,0,291,0,0,0,0,0,0,0,70,2.1,3,0,16.0,77777,9,999999999,120,0.1230,0,88,0.150,0.0,1.0 +1996,4,3,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,3.9,71,102300,0,0,286,0,0,0,0,0,0,0,110,3.1,2,0,16.0,77777,9,999999999,120,0.1230,0,88,0.150,0.0,1.0 +1996,4,3,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,4.4,73,102400,0,0,299,0,0,0,0,0,0,0,90,2.6,3,3,16.0,77777,9,999999999,120,0.1230,0,88,0.150,0.0,1.0 +1996,4,4,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,4.4,79,102400,0,0,295,0,0,0,0,0,0,0,60,2.1,3,3,16.0,77777,9,999999999,120,0.1240,0,88,0.150,0.0,1.0 +1996,4,4,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,3.3,76,102400,0,0,291,0,0,0,0,0,0,0,100,1.5,3,3,16.0,77777,9,999999999,120,0.1240,0,88,0.150,0.0,1.0 +1996,4,4,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,3.9,82,102500,0,0,277,0,0,0,0,0,0,0,60,2.1,0,0,16.0,77777,9,999999999,120,0.1240,0,88,0.150,0.0,1.0 +1996,4,4,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,3.3,82,102500,0,0,274,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,120,0.1240,0,88,0.150,0.0,1.0 +1996,4,4,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,3.3,82,102500,0,0,274,0,0,0,0,0,0,0,80,2.1,0,0,16.0,77777,9,999999999,120,0.1240,0,88,0.150,0.0,1.0 +1996,4,4,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,2.8,82,102600,6,330,272,0,1,0,0,0,0,0,80,1.5,0,0,16.0,77777,9,999999999,129,0.1240,0,88,0.150,0.0,1.0 +1996,4,4,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,3.3,76,102600,173,1366,279,62,162,41,6400,9600,5200,740,0,0.0,0,0,16.0,77777,9,999999999,129,0.1240,0,88,0.150,0.0,1.0 +1996,4,4,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,3.9,76,102600,414,1366,282,216,444,82,23100,39500,11200,1500,60,2.1,0,0,16.0,77777,9,999999999,129,0.1240,0,88,0.150,0.0,1.0 +1996,4,4,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,4.4,68,102600,635,1366,291,405,622,115,42200,60500,14000,2350,350,1.5,0,0,16.0,77777,9,999999999,129,0.1240,0,88,0.150,0.0,1.0 +1996,4,4,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,4.4,61,102600,819,1366,298,569,714,141,60100,71800,16900,3350,0,0.0,0,0,16.0,77777,9,999999999,129,0.1240,0,88,0.150,0.0,1.0 +1996,4,4,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,5.0,57,102600,955,1366,306,693,764,158,73800,77800,19200,4450,290,1.5,0,0,16.0,77777,9,999999999,139,0.1240,0,88,0.150,0.0,1.0 +1996,4,4,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,6.7,54,102500,1033,1366,320,765,789,167,81800,80700,20600,5370,10,2.1,0,0,16.0,77777,9,999999999,139,0.1240,0,88,0.150,0.0,1.0 +1996,4,4,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,6.1,46,102500,1048,1366,327,778,793,169,83300,81200,20900,5580,160,1.5,0,0,16.0,77777,9,999999999,139,0.1240,0,88,0.150,0.0,1.0 +1996,4,4,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,5.6,40,102400,998,1366,333,732,777,163,78100,79300,19900,4920,60,2.1,0,0,16.0,77777,9,999999999,139,0.1240,0,88,0.150,0.0,1.0 +1996,4,4,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,4.4,36,102300,887,1366,335,630,739,150,66800,74800,18100,3850,0,0.0,0,0,16.0,77777,9,999999999,139,0.1240,0,88,0.150,0.0,1.0 +1996,4,4,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,5.0,36,102300,723,1366,338,482,668,128,50600,66200,15400,2790,290,2.6,0,0,16.0,77777,9,999999999,150,0.1240,0,88,0.150,0.0,1.0 +1996,4,4,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,4.4,36,102300,517,1366,335,303,542,98,31400,50600,12200,1880,310,2.1,0,0,16.0,77777,9,999999999,150,0.1240,0,88,0.150,0.0,1.0 +1996,4,4,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,6.7,44,102300,283,1366,335,126,313,61,13300,23900,8300,1100,280,3.1,0,0,16.0,77777,9,999999999,150,0.1240,0,88,0.150,0.0,1.0 +1996,4,4,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,6.1,48,102300,55,945,324,13,26,12,1600,1100,1500,250,20,1.5,0,0,16.0,77777,9,999999999,150,0.1240,0,88,0.150,0.0,1.0 +1996,4,4,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,6.1,48,102400,0,0,324,0,0,0,0,0,0,0,110,3.1,0,0,16.0,77777,9,999999999,150,0.1240,0,88,0.150,0.0,1.0 +1996,4,4,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,6.1,53,102400,0,0,317,0,0,0,0,0,0,0,90,3.6,0,0,16.0,77777,9,999999999,150,0.1240,0,88,0.150,0.0,1.0 +1996,4,4,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,6.7,60,102400,0,0,312,0,0,0,0,0,0,0,100,4.1,0,0,16.0,77777,9,999999999,160,0.1240,0,88,0.150,0.0,1.0 +1996,4,4,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,6.1,59,102400,0,0,309,0,0,0,0,0,0,0,90,3.1,0,0,16.0,77777,9,999999999,160,0.1240,0,88,0.150,0.0,1.0 +1996,4,4,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,6.1,64,102400,0,0,305,0,0,0,0,0,0,0,130,2.6,0,0,16.0,77777,9,999999999,160,0.1240,0,88,0.150,0.0,1.0 +1996,4,5,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,6.1,64,102400,0,0,305,0,0,0,0,0,0,0,100,3.1,0,0,16.0,77777,9,999999999,160,0.1250,0,88,0.150,0.0,1.0 +1996,4,5,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,6.1,68,102400,0,0,300,0,0,0,0,0,0,0,60,3.6,0,0,16.0,77777,9,999999999,160,0.1250,0,88,0.150,0.0,1.0 +1996,4,5,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,6.1,74,102400,0,0,295,0,0,0,0,0,0,0,50,2.1,0,0,16.0,77777,9,999999999,170,0.1250,0,88,0.150,0.0,1.0 +1996,4,5,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,5.0,66,102400,0,0,296,0,0,0,0,0,0,0,90,4.1,0,0,16.0,77777,9,999999999,170,0.1250,0,88,0.150,0.0,1.0 +1996,4,5,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,5.6,74,102400,0,0,298,0,0,0,0,0,0,0,60,2.1,1,1,16.0,77777,9,999999999,170,0.1250,0,88,0.150,0.0,1.0 +1996,4,5,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,5.0,71,102400,8,375,297,1,14,0,0,0,0,0,90,3.1,1,1,16.0,77777,9,999999999,170,0.1250,0,88,0.150,0.0,1.0 +1996,4,5,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,5.6,66,102500,180,1365,309,79,263,44,8200,15900,6100,790,60,2.1,2,2,16.0,77777,9,999999999,179,0.1250,0,88,0.150,0.0,1.0 +1996,4,5,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,6.1,62,102400,421,1365,313,237,538,71,24600,48000,9800,1340,110,3.1,1,1,16.0,77777,9,999999999,179,0.1250,0,88,0.150,0.0,1.0 +1996,4,5,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,5.6,57,102400,641,1365,315,429,747,78,45100,72800,10800,1670,90,3.1,1,1,16.0,77777,9,999999999,179,0.1250,0,88,0.150,0.0,1.0 +1996,4,5,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,5.6,53,102400,826,1365,314,592,819,96,62900,82000,13200,2320,100,2.6,0,0,16.0,77777,9,999999999,189,0.1250,0,88,0.150,0.0,1.0 +1996,4,5,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,7.2,48,102300,961,1365,330,712,859,107,73800,85500,13400,2490,70,1.5,0,0,16.0,77777,9,999999999,189,0.1250,0,88,0.150,0.0,1.0 +1996,4,5,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,6.7,44,102200,1039,1365,335,782,878,113,80800,87700,13900,2950,220,1.5,0,0,16.0,77777,9,999999999,189,0.1250,0,88,0.150,0.0,1.0 +1996,4,5,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,7.2,42,102200,1053,1365,341,794,881,114,82100,88000,14000,3050,140,2.1,0,0,16.0,77777,9,999999999,200,0.1250,0,88,0.150,0.0,1.0 +1996,4,5,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,7.8,40,102100,1003,1365,349,749,868,110,77400,86600,13700,2710,80,2.1,0,0,16.0,77777,9,999999999,200,0.1250,0,88,0.150,0.0,1.0 +1996,4,5,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,7.8,40,102100,892,1365,349,649,838,101,69400,84400,14000,2610,50,3.6,0,0,16.0,77777,9,999999999,200,0.1250,0,88,0.150,0.0,1.0 +1996,4,5,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,6.1,34,102000,728,1365,350,504,782,87,53300,77400,11900,1950,40,3.1,0,0,16.0,77777,9,999999999,200,0.1250,0,88,0.150,0.0,1.0 +1996,4,5,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,6.1,34,102000,522,1365,350,328,679,68,34100,63900,9600,1370,80,2.1,0,0,16.0,77777,9,999999999,209,0.1250,0,88,0.150,0.0,1.0 +1996,4,5,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,7.8,41,102000,288,1365,346,146,476,46,15200,37500,7300,860,120,3.6,0,0,16.0,77777,9,999999999,209,0.1250,0,88,0.150,0.0,1.0 +1996,4,5,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,7.8,44,102000,58,967,341,17,98,11,1800,4700,1500,210,210,3.1,0,0,16.0,77777,9,999999999,209,0.1250,0,88,0.150,0.0,1.0 +1996,4,5,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,8.3,52,102100,0,0,331,0,0,0,0,0,0,0,310,2.1,0,0,16.0,77777,9,999999999,220,0.1250,0,88,0.150,0.0,1.0 +1996,4,5,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,7.8,58,102200,0,0,321,0,0,0,0,0,0,0,260,3.1,0,0,16.0,77777,9,999999999,220,0.1250,0,88,0.150,0.0,1.0 +1996,4,5,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,7.8,65,102200,0,0,313,0,0,0,0,0,0,0,350,1.5,0,0,16.0,77777,9,999999999,220,0.1250,0,88,0.150,0.0,1.0 +1996,4,5,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,7.2,60,102200,0,0,321,0,0,0,0,0,0,0,150,1.5,1,1,16.0,77777,9,999999999,229,0.1250,0,88,0.150,0.0,1.0 +1996,4,5,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,7.8,69,102200,0,0,319,0,0,0,0,0,0,0,0,0.0,2,2,16.0,77777,9,999999999,229,0.1250,0,88,0.150,0.0,1.0 +1996,4,6,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,8.9,77,102200,0,0,323,0,0,0,0,0,0,0,90,3.1,4,4,16.0,77777,9,999999999,229,0.1250,0,88,0.150,0.0,1.0 +1996,4,6,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,8.3,77,102200,0,0,323,0,0,0,0,0,0,0,70,2.1,5,5,16.0,77777,9,999999999,229,0.1250,0,88,0.150,0.0,1.0 +1996,4,6,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,8.3,80,102200,0,0,323,0,0,0,0,0,0,0,0,0.0,6,6,16.0,77777,9,999999999,240,0.1250,0,88,0.150,0.0,1.0 +1996,4,6,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,8.3,80,102100,0,0,327,0,0,0,0,0,0,0,110,3.6,7,7,16.0,2134,9,999999999,240,0.1250,0,88,0.150,0.0,1.0 +1996,4,6,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,8.3,83,102200,0,0,336,0,0,0,0,0,0,0,110,3.1,9,9,16.0,1829,9,999999999,240,0.1250,0,88,0.150,0.0,1.0 +1996,4,6,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,8.3,86,102200,10,421,334,1,3,1,0,0,0,0,60,1.5,9,9,16.0,1829,9,999999999,229,0.1250,0,88,0.150,0.0,1.0 +1996,4,6,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,7.8,77,102200,188,1364,348,27,0,27,3100,0,3100,1020,100,3.6,10,10,16.0,1829,9,999999999,229,0.1250,0,88,0.150,0.0,1.0 +1996,4,6,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,8.3,74,102100,428,1364,354,72,0,72,8400,0,8400,2950,100,2.6,10,10,16.0,1829,9,999999999,229,0.1250,0,88,0.150,0.0,1.0 +1996,4,6,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,9.4,72,102100,648,1364,354,212,63,182,23300,6200,20300,5460,20,2.1,9,9,16.0,1829,9,999999999,220,0.1250,0,88,0.150,0.0,1.0 +1996,4,6,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,10.0,67,102100,832,1364,350,466,221,331,50300,23000,36200,9040,340,1.5,7,7,16.0,1829,9,999999999,220,0.1250,0,88,0.150,0.0,1.0 +1996,4,6,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,10.0,60,102000,967,1364,345,630,570,225,67900,59200,25800,6380,330,2.6,3,3,16.0,77777,9,999999999,220,0.1250,0,88,0.150,0.0,1.0 +1996,4,6,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,9.4,52,101900,1044,1364,352,623,401,315,68000,43400,34600,10180,10,3.1,3,3,16.0,77777,9,999999999,209,0.1250,0,88,0.150,0.0,1.0 +1996,4,6,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,9.4,47,101800,1058,1364,357,691,636,197,73200,64700,22900,6560,10,3.1,2,2,16.0,77777,9,999999999,209,0.1250,0,88,0.150,0.0,1.0 +1996,4,6,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,9.4,42,101700,1008,1364,365,708,752,152,76000,77100,19000,4710,330,3.1,2,2,16.0,77777,9,999999999,209,0.1250,0,88,0.150,0.0,1.0 +1996,4,6,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,11.1,46,101600,897,1364,373,446,464,141,47600,47200,16500,3700,330,1.5,3,3,16.0,77777,9,999999999,200,0.1250,0,88,0.150,0.0,1.0 +1996,4,6,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,11.7,46,101500,732,1364,374,482,696,108,51300,69700,13800,2430,310,3.1,2,2,16.0,77777,9,999999999,200,0.1250,0,88,0.150,0.0,1.0 +1996,4,6,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,12.2,48,101500,526,1364,378,313,486,126,33000,46200,15200,2440,340,2.1,3,3,16.0,77777,9,999999999,200,0.1250,0,88,0.150,0.0,1.0 +1996,4,6,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,12.8,68,101500,293,1364,350,155,378,73,16000,29300,9700,1340,290,4.1,2,2,16.0,77777,9,999999999,189,0.1250,0,88,0.150,0.0,1.0 +1996,4,6,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,12.2,65,101500,62,1012,345,18,90,12,2000,3600,1800,200,270,2.1,1,1,16.0,77777,9,999999999,189,0.1250,0,88,0.150,0.0,1.0 +1996,4,6,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,12.2,72,101500,0,0,337,0,0,0,0,0,0,0,280,3.1,1,1,16.0,77777,9,999999999,189,0.1250,0,88,0.150,0.0,1.0 +1996,4,6,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,11.7,72,101500,0,0,328,0,0,0,0,0,0,0,280,2.6,0,0,16.0,77777,9,999999999,189,0.1250,0,88,0.150,0.0,1.0 +1996,4,6,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,11.1,77,101500,0,0,320,0,0,0,0,0,0,0,280,3.6,0,0,16.0,77777,9,999999999,179,0.1250,0,88,0.150,0.0,1.0 +1996,4,6,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,11.7,81,101500,0,0,320,0,0,0,0,0,0,0,270,2.1,0,0,16.0,77777,9,999999999,179,0.1250,0,88,0.150,0.0,1.0 +1996,4,6,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,11.1,87,101400,0,0,312,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,179,0.1250,0,88,0.150,0.0,1.0 +1996,4,7,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,11.1,89,101400,0,0,310,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,170,0.1260,0,88,0.150,0.0,1.0 +1996,4,7,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,12.5,11.1,91,101400,0,0,309,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,170,0.1260,0,88,0.150,999.0,99.0 +1996,4,7,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,11.1,93,101300,0,0,307,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,170,0.1260,0,88,0.150,0.0,1.0 +1996,4,7,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,10.6,93,101300,0,0,305,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,160,0.1260,0,88,0.150,0.0,1.0 +1996,4,7,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,9.4,92,101300,0,0,299,0,0,0,0,0,0,0,270,2.1,0,0,16.0,77777,9,999999999,160,0.1260,0,88,0.150,0.0,1.0 +1996,4,7,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,10.0,96,101300,12,443,299,1,7,1,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,160,0.1260,0,88,0.150,0.0,1.0 +1996,4,7,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,10.6,93,101300,195,1363,305,78,250,42,8200,15800,5900,750,0,0.0,0,0,16.0,77777,9,999999999,160,0.1260,0,88,0.150,0.0,1.0 +1996,4,7,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,11.7,87,101200,435,1363,315,246,536,75,25500,48200,10200,1420,0,0.0,0,0,16.0,77777,9,999999999,160,0.1260,0,88,0.150,0.0,1.0 +1996,4,7,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,11.7,78,101200,654,1363,323,430,683,102,45400,67200,13100,2160,0,0.0,0,0,16.0,77777,9,999999999,160,0.1260,0,88,0.150,0.0,1.0 +1996,4,7,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,12.8,75,101100,838,1363,331,593,764,124,63400,77500,15700,3070,320,3.1,0,0,16.0,77777,9,999999999,160,0.1260,0,88,0.150,0.0,1.0 +1996,4,7,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,13.3,70,101100,972,1363,340,715,809,138,74800,81100,16900,3670,350,1.5,0,0,16.0,77777,9,999999999,160,0.1260,0,88,0.150,0.0,1.0 +1996,4,7,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,13.3,59,101000,1049,1363,353,785,831,145,82600,83600,18100,4430,320,2.1,0,0,16.0,77777,9,999999999,160,0.1260,0,88,0.150,0.0,1.0 +1996,4,7,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,13.9,57,100900,1063,1363,359,797,835,146,84000,84000,18300,4590,300,2.1,0,0,16.0,77777,9,999999999,160,0.1260,0,88,0.150,0.0,1.0 +1996,4,7,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,13.3,50,100800,1012,1363,366,751,821,142,78900,82400,17500,4040,300,2.1,0,0,16.0,77777,9,999999999,160,0.1260,0,88,0.150,0.0,1.0 +1996,4,7,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,13.3,45,100700,901,1363,374,651,787,130,67700,78500,15700,3120,330,2.1,0,0,16.0,77777,9,999999999,160,0.1260,0,88,0.150,0.0,1.0 +1996,4,7,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,13.9,47,100700,737,1363,375,503,724,112,53500,72400,14200,2520,320,2.6,0,0,16.0,77777,9,999999999,160,0.1260,0,88,0.150,0.0,1.0 +1996,4,7,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,13.3,45,100600,531,1363,382,318,594,86,33300,56200,11300,1700,310,2.6,1,1,16.0,77777,9,999999999,160,0.1260,0,88,0.150,0.0,1.0 +1996,4,7,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,12.8,45,100700,298,1363,378,136,335,63,14400,26200,8700,1140,300,2.6,3,1,16.0,77777,9,999999999,160,0.1260,0,88,0.150,0.0,1.0 +1996,4,7,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,11.7,53,100700,65,1034,363,17,39,15,1900,1400,1800,250,0,0.0,4,2,16.0,77777,9,999999999,160,0.1260,0,88,0.150,0.0,1.0 +1996,4,7,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,11.1,54,100800,0,0,360,0,0,0,0,0,0,0,340,3.6,4,3,16.0,77777,9,999999999,160,0.1260,0,88,0.150,0.0,1.0 +1996,4,7,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,11.7,63,100900,0,0,349,0,0,0,0,0,0,0,350,3.6,4,2,16.0,77777,9,999999999,160,0.1260,0,88,0.150,0.0,1.0 +1996,4,7,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,11.7,67,101000,0,0,350,0,0,0,0,0,0,0,300,1.5,8,4,16.0,77777,9,999999999,160,0.1260,0,88,0.150,0.0,1.0 +1996,4,7,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,11.7,70,101000,0,0,370,0,0,0,0,0,0,0,340,2.1,10,9,16.0,1829,9,999999999,160,0.1260,0,88,0.150,0.0,1.0 +1996,4,7,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,11.1,72,101100,0,0,338,0,0,0,0,0,0,0,0,0.0,4,3,16.0,77777,9,999999999,160,0.1260,0,88,0.150,0.0,1.0 +1996,4,8,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,11.7,84,101100,0,0,331,0,0,0,0,0,0,0,0,0.0,10,3,16.0,77777,9,999999999,160,0.1270,0,88,0.150,0.0,1.0 +1996,4,8,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,11.7,84,101100,0,0,356,0,0,0,0,0,0,0,0,0.0,10,9,16.0,1676,9,999999999,160,0.1270,0,88,0.150,0.0,1.0 +1996,4,8,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,11.7,87,101200,0,0,354,0,0,0,0,0,0,0,320,2.6,10,9,16.0,1676,9,999999999,160,0.1270,0,88,0.150,0.0,1.0 +1996,4,8,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,11.7,90,101100,0,0,338,0,0,0,0,0,0,0,0,0.0,10,7,16.0,671,9,999999999,160,0.1270,0,88,0.150,0.0,1.0 +1996,4,8,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,11.7,90,101100,0,0,351,0,0,0,0,0,0,0,0,0.0,10,9,16.0,671,9,999999999,160,0.1270,0,88,0.150,0.0,1.0 +1996,4,8,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,11.7,93,101100,14,488,321,3,0,3,0,0,0,0,0,0.0,10,2,16.0,77777,9,999999999,150,0.1270,0,88,0.150,0.0,1.0 +1996,4,8,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,11.1,89,101200,202,1362,323,71,72,60,7600,4900,6900,1270,0,0.0,10,3,16.0,77777,9,999999999,150,0.1270,0,88,0.150,0.0,1.0 +1996,4,8,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,12.2,89,101200,441,1362,354,166,45,151,18100,4200,16800,3870,340,1.5,10,9,16.0,3048,9,999999999,150,0.1270,0,88,0.150,0.0,1.0 +1996,4,8,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,12.2,87,101200,661,1362,357,181,41,161,19900,4000,18000,4990,0,0.0,10,9,16.0,213,9,999999999,139,0.1270,0,88,0.150,0.0,1.0 +1996,4,8,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,12.2,80,101100,844,1362,340,538,429,272,57800,45700,29400,7000,240,2.1,10,4,16.0,77777,9,999999999,139,0.1270,0,88,0.150,0.0,1.0 +1996,4,8,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,12.8,75,101100,978,1362,346,614,431,304,64300,44600,32200,9010,0,0.0,10,3,16.0,77777,9,999999999,139,0.1270,0,88,0.150,0.0,1.0 +1996,4,8,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,13.3,70,101000,1054,1362,351,733,558,300,77700,58100,32700,10120,290,3.1,10,2,16.0,77777,9,999999999,129,0.1270,0,88,0.150,0.0,1.0 +1996,4,8,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,12.8,61,101000,1067,1362,362,592,294,361,64100,31800,39100,12370,310,2.1,10,3,16.0,77777,9,999999999,129,0.1270,0,88,0.150,0.0,1.0 +1996,4,8,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,13.3,59,100900,1017,1362,364,693,532,295,73200,55200,31900,9280,330,3.1,10,2,16.0,77777,9,999999999,129,0.1270,0,88,0.150,0.0,1.0 +1996,4,8,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,13.9,57,100900,905,1362,374,591,569,212,63500,58900,24300,5520,320,2.6,10,3,16.0,77777,9,999999999,129,0.1270,0,88,0.150,0.0,1.0 +1996,4,8,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,13.9,57,100900,741,1362,374,461,451,216,48100,45600,23300,4850,350,2.1,10,3,16.0,77777,9,999999999,120,0.1270,0,88,0.150,0.0,1.0 +1996,4,8,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,15.5,62,100800,536,1362,379,238,255,137,25500,25100,15600,2800,210,3.0,10,3,16.1,77777,9,999999999,120,0.1270,0,88,0.150,0.0,1.0 +1996,4,8,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.7,15.0,62,100900,303,1362,404,80,60,67,8900,4900,7800,1450,220,3.0,10,9,16.1,3000,9,999999999,120,0.1270,0,88,0.150,0.0,1.0 +1996,4,8,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,12.8,57,101000,69,1056,395,15,1,15,1700,0,1700,540,210,4.6,10,9,16.0,77777,9,999999999,110,0.1270,0,88,0.150,0.0,1.0 +1996,4,8,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,12.8,68,101100,0,0,380,0,0,0,0,0,0,0,300,4.1,10,9,16.0,1280,9,999999999,110,0.1270,0,88,0.150,0.0,1.0 +1996,4,8,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,12.2,78,101200,0,0,376,0,0,0,0,0,0,0,320,2.6,10,10,16.0,1219,9,999999999,110,0.1270,0,88,0.150,0.0,1.0 +1996,4,8,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,12.2,83,101300,0,0,370,0,0,0,0,0,0,0,0,0.0,10,10,11.2,1158,9,999999999,110,0.1270,0,88,0.150,0.0,1.0 +1996,4,8,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,11.7,84,101400,0,0,366,0,0,0,0,0,0,0,200,5.7,10,10,16.0,518,9,999999999,100,0.1270,0,88,0.150,0.0,1.0 +1996,4,8,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,10.6,80,101400,0,0,353,0,0,0,0,0,0,0,0,0.0,9,9,16.0,3353,9,999999999,100,0.1270,0,88,0.150,0.0,1.0 +1996,4,9,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,10.6,80,101400,0,0,353,0,0,0,0,0,0,0,170,2.1,9,9,16.0,3658,9,999999999,100,0.1270,0,88,0.150,0.0,1.0 +1996,4,9,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,10.0,80,101400,0,0,349,0,0,0,0,0,0,0,170,4.6,9,9,16.0,3353,9,999999999,89,0.1270,0,88,0.150,0.0,1.0 +1996,4,9,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,10.0,83,101400,0,0,339,0,0,0,0,0,0,0,170,3.1,8,8,16.0,3353,9,999999999,89,0.1270,0,88,0.150,0.0,1.0 +1996,4,9,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,10.0,83,101400,0,0,339,0,0,0,0,0,0,0,170,3.1,8,8,16.0,3048,9,999999999,89,0.1270,0,88,0.150,0.0,1.0 +1996,4,9,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,10.0,86,101400,0,0,344,0,0,0,0,0,0,0,130,1.5,9,9,16.0,1158,9,999999999,89,0.1270,0,88,0.150,0.0,1.0 +1996,4,9,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,10.0,86,101400,17,533,344,2,0,2,0,0,0,0,160,1.5,9,9,16.0,3048,9,999999999,89,0.1270,0,88,0.150,0.0,1.0 +1996,4,9,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,10.0,80,101400,209,1362,359,36,0,36,4100,0,4100,1330,140,2.1,10,10,16.0,1128,9,999999999,89,0.1270,0,88,0.150,0.0,1.0 +1996,4,9,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,10.0,80,101400,448,1362,359,69,0,69,8100,0,8100,2900,60,3.6,10,10,16.0,1006,9,999999999,89,0.1270,0,88,0.150,0.0,1.0 +1996,4,9,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,10.6,75,101500,667,1362,368,122,0,122,14400,0,14400,5430,150,2.6,10,10,16.0,1189,9,999999999,89,0.1270,0,88,0.150,0.0,1.0 +1996,4,9,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,10.0,69,101500,849,1362,370,169,0,169,20100,0,20100,7870,220,3.6,10,10,16.0,701,9,999999999,100,0.1270,0,88,0.150,0.0,1.0 +1996,4,9,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,10.0,67,101500,983,1362,373,204,0,204,24400,0,24400,9750,220,3.6,10,10,16.0,1524,9,999999999,100,0.1270,0,88,0.150,0.0,1.0 +1996,4,9,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,10.0,67,101500,1059,1362,373,223,0,223,26700,0,26700,10770,180,5.7,10,10,16.0,1372,9,999999999,100,0.1270,0,88,0.150,0.0,1.0 +1996,4,9,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,10.6,65,101500,1072,1362,369,450,278,231,50500,30200,26600,7550,170,5.7,9,9,16.0,1829,9,999999999,100,0.1270,0,88,0.150,0.0,1.0 +1996,4,9,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,9.4,60,101500,1021,1362,368,391,43,358,43000,4400,39700,13250,210,4.6,9,9,16.0,1676,9,999999999,100,0.1270,0,88,0.150,0.0,1.0 +1996,4,9,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,11.7,81,101500,910,1362,352,208,98,142,23800,10500,16800,4120,200,4.1,8,8,16.0,1280,9,999999999,100,0.1270,0,88,0.150,0.0,1.0 +1996,4,9,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,12.2,93,101600,746,1362,344,389,100,334,42600,10200,37000,9430,240,2.1,8,8,11.2,975,9,999999999,100,0.1270,0,88,0.150,2.0,1.0 +1996,4,9,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,11.1,83,101600,540,1362,346,123,55,101,13500,5200,11500,3060,230,3.6,8,8,16.0,1280,9,999999999,110,0.1270,0,88,0.150,2.0,1.0 +1996,4,9,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,10.6,80,101600,308,1362,353,84,39,75,9200,3300,8400,1940,160,2.1,9,9,16.0,1311,9,999999999,110,0.1270,0,88,0.150,0.0,1.0 +1996,4,9,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,11.7,97,101700,73,1101,346,17,2,16,1900,0,1900,580,10,2.1,9,9,16.0,1494,9,999999999,110,0.1270,0,88,0.150,0.0,1.0 +1996,4,9,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,8.9,77,101700,0,0,345,0,0,0,0,0,0,0,260,3.6,9,9,16.0,1524,9,999999999,110,0.1270,0,88,0.150,0.0,1.0 +1996,4,9,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,7.2,71,101800,0,0,333,0,0,0,0,0,0,0,0,0.0,8,8,16.0,1676,9,999999999,110,0.1270,0,88,0.150,0.0,1.0 +1996,4,9,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,7.8,77,101800,0,0,332,0,0,0,0,0,0,0,190,2.6,8,8,16.0,1676,9,999999999,110,0.1270,0,88,0.150,0.0,1.0 +1996,4,9,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,6.7,71,101800,0,0,347,0,0,0,0,0,0,0,210,3.6,10,10,16.0,1676,9,999999999,110,0.1270,0,88,0.150,0.0,1.0 +1996,4,9,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,7.2,83,101800,0,0,339,0,0,0,0,0,0,0,140,2.6,10,10,16.0,77777,9,999999999,120,0.1270,0,88,0.150,0.0,1.0 +1996,4,10,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,7.2,83,101800,0,0,330,0,0,0,0,0,0,0,160,3.6,10,9,16.0,1676,9,999999999,120,0.1280,0,88,0.150,0.0,1.0 +1996,4,10,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,7.2,86,101800,0,0,327,0,0,0,0,0,0,0,170,2.6,10,9,16.0,1676,9,999999999,120,0.1280,0,88,0.150,0.0,1.0 +1996,4,10,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,7.2,83,101700,0,0,339,0,0,0,0,0,0,0,160,2.1,10,10,16.0,1676,9,999999999,120,0.1280,0,88,0.150,0.0,1.0 +1996,4,10,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,7.2,83,101700,0,0,339,0,0,0,0,0,0,0,170,2.6,10,10,16.0,1829,9,999999999,120,0.1280,0,88,0.150,0.0,1.0 +1996,4,10,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,7.2,86,101700,0,0,336,0,0,0,0,0,0,0,170,4.6,10,10,16.0,1219,9,999999999,120,0.1280,0,88,0.150,0.0,1.0 +1996,4,10,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,7.2,86,101700,20,578,336,2,0,2,0,0,0,0,180,5.2,10,10,16.0,1494,9,999999999,120,0.1280,0,88,0.150,0.0,1.0 +1996,4,10,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,7.2,86,101700,216,1361,336,42,0,42,4800,0,4800,1520,180,5.7,10,10,16.0,1097,9,999999999,120,0.1280,0,88,0.150,0.0,1.0 +1996,4,10,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,7.8,86,101700,455,1361,340,82,0,82,9500,0,9500,3360,200,4.6,10,10,16.0,1067,9,999999999,120,0.1280,0,88,0.150,0.0,1.0 +1996,4,10,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,7.8,80,101700,673,1361,345,121,0,121,14300,0,14300,5410,170,5.2,10,10,16.0,1067,9,999999999,120,0.1280,0,88,0.150,0.0,1.0 +1996,4,10,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,7.2,74,101700,855,1361,348,169,0,169,20100,0,20100,7900,190,4.6,10,10,16.0,1067,9,999999999,120,0.1280,0,88,0.150,0.0,1.0 +1996,4,10,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,6.7,71,101600,989,1361,347,204,0,204,24400,0,24400,9780,200,4.1,10,10,16.0,1067,9,999999999,120,0.1280,0,88,0.150,0.0,1.0 +1996,4,10,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,7.2,74,101600,1064,1361,348,224,0,224,26900,0,26900,10830,200,5.7,10,10,11.2,975,9,999999999,120,0.1280,0,88,0.150,0.0,1.0 +1996,4,10,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,8.3,77,101600,1077,1361,351,321,26,300,35400,2700,33300,12180,200,4.6,10,10,16.0,1372,9,999999999,120,0.1280,0,88,0.150,0.0,1.0 +1996,4,10,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,7.2,71,101600,1026,1361,340,363,40,332,39900,4100,36800,12530,160,4.6,10,9,16.0,975,9,999999999,120,0.1280,0,88,0.150,0.0,1.0 +1996,4,10,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,6.7,64,101600,914,1361,345,346,60,306,38100,6100,34000,10490,200,6.2,10,9,16.0,3048,9,999999999,120,0.1280,0,88,0.150,0.0,1.0 +1996,4,10,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,3.3,52,101600,750,1361,348,141,0,141,16700,0,16700,6430,230,5.7,10,10,16.0,1494,9,999999999,120,0.1280,0,88,0.150,0.0,1.0 +1996,4,10,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,6.1,71,101700,545,1361,343,96,0,96,11300,0,11300,4100,220,5.2,10,10,16.0,1372,9,999999999,120,0.1280,0,88,0.150,0.0,1.0 +1996,4,10,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,7.2,79,101700,312,1361,342,59,0,59,6800,0,6800,2240,150,2.1,10,10,16.0,1372,9,999999999,120,0.1280,0,88,0.150,0.0,1.0 +1996,4,10,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,8.3,89,101600,77,1123,341,13,0,13,1500,0,1500,490,150,2.6,10,10,16.0,1372,9,999999999,120,0.1280,0,88,0.150,0.0,1.0 +1996,4,10,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,8.3,89,101700,0,0,341,0,0,0,0,0,0,0,140,3.1,10,10,11.2,579,9,999999999,120,0.1280,0,88,0.150,0.0,1.0 +1996,4,10,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,8.3,89,101700,0,0,341,0,0,0,0,0,0,0,170,5.7,10,10,11.2,640,9,999999999,120,0.1280,0,88,0.150,0.0,1.0 +1996,4,10,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,8.9,93,101600,0,0,341,0,0,0,0,0,0,0,170,7.7,10,10,11.2,1676,9,999999999,120,0.1280,0,88,0.150,0.0,1.0 +1996,4,10,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,7.8,86,101700,0,0,331,0,0,0,0,0,0,0,160,4.6,10,9,16.0,1829,9,999999999,120,0.1280,0,88,0.150,0.0,1.0 +1996,4,10,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,7.2,83,101700,0,0,330,0,0,0,0,0,0,0,160,5.7,10,9,11.2,1676,9,999999999,120,0.1280,0,88,0.150,0.0,1.0 +1996,4,11,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,6.7,80,101700,0,0,329,0,0,0,0,0,0,0,170,7.7,9,9,16.0,2591,9,999999999,120,0.1290,0,88,0.150,0.0,1.0 +1996,4,11,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,6.7,80,101600,0,0,329,0,0,0,0,0,0,0,180,6.7,9,9,11.2,1676,9,999999999,120,0.1290,0,88,0.150,0.0,1.0 +1996,4,11,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,6.7,83,101600,0,0,301,0,0,0,0,0,0,0,190,7.2,2,2,16.0,77777,9,999999999,120,0.1290,0,88,0.150,0.0,1.0 +1996,4,11,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,6.7,80,101600,0,0,322,0,0,0,0,0,0,0,180,5.7,8,8,11.2,1829,9,999999999,120,0.1290,0,88,0.150,0.0,1.0 +1996,4,11,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,6.1,77,101500,0,0,329,0,0,0,0,0,0,0,190,5.2,9,9,16.0,1676,9,999999999,120,0.1290,0,88,0.150,0.0,1.0 +1996,4,11,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,6.1,80,101500,22,623,326,3,10,3,0,0,0,0,170,5.2,9,9,16.0,1676,9,999999999,120,0.1290,0,88,0.150,0.0,1.0 +1996,4,11,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,6.1,77,101500,223,1360,313,98,183,68,10200,12200,8200,1320,160,5.7,6,6,16.0,3353,9,999999999,120,0.1290,0,88,0.150,0.0,1.0 +1996,4,11,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,6.1,71,101400,461,1360,310,270,580,74,28300,53200,10200,1430,160,5.7,3,3,16.0,77777,9,999999999,110,0.1290,0,88,0.150,0.0,1.0 +1996,4,11,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,6.1,68,101400,679,1360,346,140,0,140,16400,0,16400,6110,170,7.7,10,10,16.0,2591,9,999999999,110,0.1290,0,88,0.150,0.0,1.0 +1996,4,11,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,6.1,68,101300,861,1360,346,185,0,185,21800,0,21800,8510,190,8.8,10,10,16.0,1067,9,999999999,110,0.1290,0,88,0.150,0.0,1.0 +1996,4,11,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,7.2,77,101200,994,1360,345,218,0,218,25900,0,25900,10330,160,5.2,10,10,16.0,1250,9,999999999,110,0.1290,0,88,0.150,0.0,1.0 +1996,4,11,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,7.2,79,101100,1069,1360,342,236,0,236,28200,0,28200,11310,140,4.6,10,10,16.0,1250,9,999999999,110,0.1290,0,88,0.150,0.0,1.0 +1996,4,11,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,7.2,79,101000,1081,1360,342,239,0,239,28600,0,28600,11460,160,5.7,10,10,11.2,1158,9,999999999,100,0.1290,0,88,0.150,1.0,1.0 +1996,4,11,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,7.8,90,101100,1030,1360,337,226,0,226,27000,0,27000,10780,180,6.2,10,10,8.0,914,9,999999999,100,0.1290,0,88,0.150,2.0,1.0 +1996,4,11,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,6.7,83,101000,918,1360,336,216,1,215,25400,100,25300,9870,140,3.1,10,10,16.0,1189,9,999999999,100,0.1290,0,88,0.150,1.0,1.0 +1996,4,11,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,6.7,86,101100,754,1360,324,260,151,176,28900,15800,20200,4570,170,5.7,9,9,16.0,1524,9,999999999,100,0.1290,0,88,0.150,0.0,1.0 +1996,4,11,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,5.6,77,101100,549,1360,325,264,46,246,28900,4500,27100,6140,170,6.7,9,9,16.0,1219,9,999999999,100,0.1290,0,88,0.150,0.0,1.0 +1996,4,11,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,5.0,74,101100,317,1360,334,95,27,89,10400,2300,9900,2250,170,6.2,10,10,16.0,732,9,999999999,100,0.1290,0,88,0.150,0.0,1.0 +1996,4,11,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,6.1,86,101100,81,1145,330,11,0,11,1300,0,1300,420,160,4.1,10,10,11.2,975,9,999999999,89,0.1290,0,88,0.150,0.0,1.0 +1996,4,11,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,5.0,80,101100,0,0,329,0,0,0,0,0,0,0,180,7.7,10,10,16.0,1067,9,999999999,89,0.1290,0,88,0.150,0.0,1.0 +1996,4,11,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,5.0,82,101200,0,0,326,0,0,0,0,0,0,0,170,8.2,10,10,16.0,1219,9,999999999,89,0.1290,0,88,0.150,1.0,1.0 +1996,4,11,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,5.6,90,101200,0,0,324,0,0,0,0,0,0,0,180,6.2,10,10,11.0,914,9,999999999,89,0.1290,0,88,0.150,2.0,1.0 +1996,4,11,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,5.0,86,101200,0,0,315,0,0,0,0,0,0,0,170,6.7,9,9,16.0,1524,9,999999999,89,0.1290,0,88,0.150,1.0,1.0 +1996,4,11,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,5.0,86,101300,0,0,324,0,0,0,0,0,0,0,160,4.1,10,10,8.0,945,9,999999999,80,0.1290,0,88,0.150,0.0,1.0 +1996,4,12,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,5.6,90,101300,0,0,324,0,0,0,0,0,0,0,160,4.6,10,10,11.2,549,9,999999999,80,0.1300,0,88,0.150,0.0,1.0 +1996,4,12,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,5.0,86,101300,0,0,324,0,0,0,0,0,0,0,170,6.7,10,10,16.0,1372,9,999999999,80,0.1300,0,88,0.150,0.0,1.0 +1996,4,12,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,5.0,86,101300,0,0,324,0,0,0,0,0,0,0,180,4.6,10,10,11.2,1097,9,999999999,80,0.1300,0,88,0.150,0.0,1.0 +1996,4,12,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,4.4,82,101300,0,0,323,0,0,0,0,0,0,0,180,6.7,10,10,11.2,1250,9,999999999,80,0.1300,0,88,0.150,0.0,1.0 +1996,4,12,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,4.4,82,101300,0,0,323,0,0,0,0,0,0,0,180,7.2,10,10,8.0,1158,9,999999999,80,0.1300,0,88,0.150,0.0,1.0 +1996,4,12,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,4.4,82,101300,26,646,323,3,0,3,0,0,0,0,180,6.7,10,10,16.0,579,9,999999999,80,0.1300,0,88,0.150,0.0,1.0 +1996,4,12,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,4.4,85,101300,230,1359,321,31,0,31,3600,0,3600,1210,180,7.2,10,10,8.0,579,9,999999999,80,0.1300,0,88,0.150,0.0,1.0 +1996,4,12,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,5.0,86,101400,468,1359,324,81,0,81,9500,0,9500,3360,180,10.8,10,10,16.0,549,9,999999999,80,0.1300,0,88,0.150,0.0,1.0 +1996,4,12,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,5.6,86,101400,685,1359,327,135,0,135,15900,0,15900,5960,180,9.3,10,10,16.0,1067,9,999999999,89,0.1300,0,88,0.150,0.0,1.0 +1996,4,12,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,5.6,86,101400,866,1359,327,253,19,241,29300,1600,28300,10420,200,8.8,10,10,11.2,701,9,999999999,89,0.1300,0,88,0.150,1.0,1.0 +1996,4,12,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,5.6,86,101500,999,1359,327,265,27,245,29300,2700,27300,9450,190,7.2,10,10,11.2,732,9,999999999,89,0.1300,0,88,0.150,2.0,1.0 +1996,4,12,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,5.6,83,101500,1074,1359,320,234,48,196,26000,4800,22100,8340,190,10.3,9,9,16.0,762,9,999999999,89,0.1300,0,88,0.150,1.0,1.0 +1996,4,12,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,6.7,90,101500,1086,1359,322,212,37,182,23500,3700,20500,7890,180,8.2,9,9,16.0,671,9,999999999,89,0.1300,0,88,0.150,0.0,1.0 +1996,4,12,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,7.2,86,101500,1034,1359,327,354,69,302,39100,7000,33800,11710,180,9.3,9,9,16.0,701,9,999999999,89,0.1300,0,88,0.150,0.0,1.0 +1996,4,12,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,6.7,80,101500,923,1359,339,281,32,259,31000,3200,28800,9230,190,6.7,10,10,16.0,1158,9,999999999,100,0.1300,0,88,0.150,0.0,1.0 +1996,4,12,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,7.2,86,101500,759,1359,336,153,0,153,18000,0,18000,6910,210,6.7,10,10,16.0,823,9,999999999,100,0.1300,0,88,0.150,1.0,1.0 +1996,4,12,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,6.7,80,101600,554,1359,339,102,0,102,11900,0,11900,4340,210,7.7,10,10,16.0,1524,9,999999999,100,0.1300,0,88,0.150,0.0,1.0 +1996,4,12,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,6.1,77,101600,322,1359,338,49,0,49,5700,0,5700,1950,210,7.2,10,10,16.0,2591,9,999999999,100,0.1300,0,88,0.150,0.0,1.0 +1996,4,12,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,6.1,83,101700,85,1189,333,13,0,13,1500,0,1500,490,200,6.2,10,10,16.0,2134,9,999999999,100,0.1300,0,88,0.150,0.0,1.0 +1996,4,12,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,5.6,83,101800,0,0,329,0,0,0,0,0,0,0,200,5.2,10,10,16.0,1829,9,999999999,110,0.1300,0,88,0.150,0.0,1.0 +1996,4,12,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,5.6,83,101900,0,0,329,0,0,0,0,0,0,0,190,6.7,10,10,16.0,1981,9,999999999,110,0.1300,0,88,0.150,0.0,1.0 +1996,4,12,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,6.1,86,101900,0,0,330,0,0,0,0,0,0,0,190,5.7,10,10,16.0,1829,9,999999999,110,0.1300,0,88,0.150,0.0,1.0 +1996,4,12,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,6.1,86,102000,0,0,330,0,0,0,0,0,0,0,190,5.2,10,10,16.0,1524,9,999999999,110,0.1300,0,88,0.150,0.0,1.0 +1996,4,12,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,6.7,90,102000,0,0,331,0,0,0,0,0,0,0,190,6.2,10,10,16.0,1280,9,999999999,110,0.1300,0,88,0.150,0.0,1.0 +1996,4,13,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,6.1,89,102000,0,0,328,0,0,0,0,0,0,0,190,4.1,10,10,16.0,1402,9,999999999,110,0.1300,0,88,0.150,0.0,1.0 +1996,4,13,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,6.1,89,102100,0,0,328,0,0,0,0,0,0,0,190,4.6,10,10,16.0,1676,9,999999999,120,0.1300,0,88,0.150,0.0,1.0 +1996,4,13,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,5.6,86,102100,0,0,327,0,0,0,0,0,0,0,190,4.1,10,10,16.0,1158,9,999999999,120,0.1300,0,88,0.150,0.0,1.0 +1996,4,13,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,5.6,86,102100,0,0,327,0,0,0,0,0,0,0,190,4.1,10,10,16.0,1372,9,999999999,120,0.1300,0,88,0.150,0.0,1.0 +1996,4,13,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,5.0,82,102100,0,0,326,0,0,0,0,0,0,0,200,5.2,10,10,16.0,1219,9,999999999,120,0.1300,0,88,0.150,0.0,1.0 +1996,4,13,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,5.0,82,102200,29,691,317,5,4,4,500,200,500,110,190,4.1,9,9,16.0,1981,9,999999999,120,0.1300,0,88,0.150,0.0,1.0 +1996,4,13,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,5.0,80,102200,237,1359,320,67,61,56,7300,4500,6500,1190,170,4.1,9,9,16.0,1981,9,999999999,120,0.1300,0,88,0.150,0.0,1.0 +1996,4,13,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,5.0,77,102300,474,1359,322,171,129,126,18800,12300,14400,2880,180,5.2,9,9,16.0,1341,9,999999999,120,0.1300,0,88,0.150,0.0,1.0 +1996,4,13,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,4.4,68,102300,691,1359,320,221,67,186,24200,6600,20800,5780,160,4.6,8,8,16.0,77777,9,999999999,120,0.1300,0,88,0.150,0.0,1.0 +1996,4,13,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,3.9,61,102300,872,1359,324,379,94,319,41700,9600,35500,10410,190,3.1,8,8,16.0,1067,9,999999999,120,0.1300,0,88,0.150,0.0,1.0 +1996,4,13,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,3.9,59,102200,1004,1359,334,339,50,302,37400,5100,33600,11350,10,3.1,9,9,16.0,1372,9,999999999,120,0.1300,0,88,0.150,0.0,1.0 +1996,4,13,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,3.3,52,102200,1078,1359,326,438,202,277,48500,21900,31000,9370,360,1.5,7,7,16.0,1372,9,999999999,120,0.1300,0,88,0.150,0.0,1.0 +1996,4,13,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,2.8,49,102100,1090,1359,321,578,302,336,63300,32700,36900,11900,10,2.1,5,5,16.0,77777,9,999999999,129,0.1300,0,88,0.150,0.0,1.0 +1996,4,13,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,3.3,45,102000,1038,1359,327,694,681,174,74200,69600,20900,5680,0,0.0,4,4,16.0,77777,9,999999999,129,0.1300,0,88,0.150,0.0,1.0 +1996,4,13,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,3.3,44,102000,927,1359,324,644,637,209,67000,63800,23400,5460,30,2.1,2,2,16.0,77777,9,999999999,129,0.1300,0,88,0.150,0.0,1.0 +1996,4,13,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,3.9,44,101900,763,1359,317,550,839,79,57500,82500,11000,1750,40,2.6,0,0,16.0,77777,9,999999999,129,0.1300,0,88,0.150,0.0,1.0 +1996,4,13,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,3.3,42,101800,558,1359,316,371,751,62,39300,72000,9600,1340,340,1.5,0,0,16.0,77777,9,999999999,129,0.1300,0,88,0.150,0.0,1.0 +1996,4,13,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,6.1,57,101700,326,1359,312,182,579,43,18800,48800,7100,860,280,4.1,0,0,16.0,77777,9,999999999,129,0.1300,0,88,0.150,0.0,1.0 +1996,4,13,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,5.6,62,101700,89,1211,304,32,204,17,3400,10400,2600,320,280,3.1,0,0,16.0,77777,9,999999999,129,0.1300,0,88,0.150,0.0,1.0 +1996,4,13,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,5.6,64,101700,0,0,302,0,0,0,0,0,0,0,280,2.1,0,0,16.0,77777,9,999999999,129,0.1300,0,88,0.150,0.0,1.0 +1996,4,13,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,6.1,68,101700,0,0,300,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,129,0.1300,0,88,0.150,0.0,1.0 +1996,4,13,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,6.1,71,101700,0,0,298,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,129,0.1300,0,88,0.150,0.0,1.0 +1996,4,13,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,6.7,80,101700,0,0,294,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,129,0.1300,0,88,0.150,0.0,1.0 +1996,4,13,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,6.1,74,101800,0,0,295,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,129,0.1300,0,88,0.150,0.0,1.0 +1996,4,14,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,5.6,71,101700,0,0,295,0,0,0,0,0,0,0,50,2.6,0,0,16.0,77777,9,999999999,129,0.1310,0,88,0.150,0.0,1.0 +1996,4,14,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,6.7,80,101700,0,0,294,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,129,0.1310,0,88,0.150,0.0,1.0 +1996,4,14,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,6.7,86,101600,0,0,289,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,129,0.1310,0,88,0.150,0.0,1.0 +1996,4,14,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,7.2,93,101600,0,0,287,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,129,0.1310,0,88,0.150,0.0,1.0 +1996,4,14,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,6.7,90,101600,0,0,287,0,0,0,0,0,0,0,330,1.5,0,0,16.0,77777,9,999999999,139,0.1310,0,88,0.150,0.0,1.0 +1996,4,14,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,6.7,90,101600,32,735,301,8,42,6,900,1400,900,100,70,2.1,4,4,16.0,77777,9,999999999,139,0.1310,0,88,0.150,0.0,1.0 +1996,4,14,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,7.2,89,101600,243,1358,309,105,194,70,11000,13700,8500,1350,300,2.1,6,6,16.0,77777,9,999999999,139,0.1310,0,88,0.150,0.0,1.0 +1996,4,14,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,7.2,77,101600,481,1358,319,187,203,115,20100,19400,13300,2270,320,3.1,6,6,16.0,77777,9,999999999,139,0.1310,0,88,0.150,0.0,1.0 +1996,4,14,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,5.6,57,101600,697,1358,334,274,160,191,30100,16500,21600,4800,60,1.5,7,7,16.0,77777,9,999999999,139,0.1310,0,88,0.150,0.0,1.0 +1996,4,14,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,6.7,55,101500,877,1358,336,625,673,190,65100,67300,21500,4680,360,2.1,6,5,16.0,77777,9,999999999,139,0.1310,0,88,0.150,0.0,1.0 +1996,4,14,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,6.1,46,101500,1009,1358,343,596,462,252,64000,48100,28200,7770,100,5.2,6,4,16.0,77777,9,999999999,139,0.1310,0,88,0.150,0.0,1.0 +1996,4,14,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,6.1,42,101400,1083,1358,357,485,121,388,53100,12900,42800,13870,90,4.6,7,6,16.0,77777,9,999999999,139,0.1310,0,88,0.150,0.0,1.0 +1996,4,14,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,7.8,45,101300,1094,1358,359,787,692,229,82900,70100,26300,8250,110,6.7,7,5,16.0,77777,9,999999999,150,0.1310,0,88,0.150,0.0,1.0 +1996,4,14,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,7.2,42,101300,1043,1358,355,656,496,275,70200,51700,30400,9070,100,4.6,6,3,16.0,77777,9,999999999,150,0.1310,0,88,0.150,0.0,1.0 +1996,4,14,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,7.2,41,101300,931,1358,361,517,318,299,55900,34200,32400,8410,100,4.1,7,4,16.0,77777,9,999999999,150,0.1310,0,88,0.150,0.0,1.0 +1996,4,14,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,7.2,39,101200,767,1358,364,429,445,178,45900,45400,20300,3990,90,4.6,7,4,16.0,77777,9,999999999,150,0.1310,0,88,0.150,0.0,1.0 +1996,4,14,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,7.2,42,101100,562,1358,355,230,235,132,24900,23500,15100,2680,100,4.6,7,3,16.0,77777,9,999999999,150,0.1310,0,88,0.150,0.0,1.0 +1996,4,14,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,7.2,45,101100,331,1358,350,175,215,122,18000,17700,13700,2550,110,4.6,8,3,16.0,77777,9,999999999,150,0.1310,0,88,0.150,0.0,1.0 +1996,4,14,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,5.6,43,101100,93,1233,345,26,99,18,2800,4500,2400,310,110,4.1,5,4,16.0,77777,9,999999999,150,0.1310,0,88,0.150,0.0,1.0 +1996,4,14,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,6.1,46,101200,0,0,333,0,0,0,0,0,0,0,200,2.1,1,1,16.0,77777,9,999999999,160,0.1310,0,88,0.150,0.0,1.0 +1996,4,14,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,3.9,37,101200,0,0,329,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,160,0.1310,0,88,0.150,0.0,1.0 +1996,4,14,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,6.7,55,101200,0,0,317,0,0,0,0,0,0,0,350,3.1,0,0,16.0,77777,9,999999999,160,0.1310,0,88,0.150,0.0,1.0 +1996,4,14,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,7.2,60,101100,0,0,326,0,0,0,0,0,0,0,270,1.5,2,2,16.0,77777,9,999999999,160,0.1310,0,88,0.150,0.0,1.0 +1996,4,14,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,6.1,55,101100,0,0,328,0,0,0,0,0,0,0,70,3.6,3,3,16.0,77777,9,999999999,160,0.1310,0,88,0.150,0.0,1.0 +1996,4,15,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,6.7,62,101100,0,0,329,0,0,0,0,0,0,0,110,2.6,5,5,16.0,77777,9,999999999,160,0.1320,0,88,0.150,0.0,1.0 +1996,4,15,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,7.2,67,101200,0,0,333,0,0,0,0,0,0,0,110,2.1,7,7,16.0,2438,9,999999999,160,0.1320,0,88,0.150,0.0,1.0 +1996,4,15,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,7.8,72,101200,0,0,337,0,0,0,0,0,0,0,90,3.1,8,8,16.0,2134,9,999999999,160,0.1320,0,88,0.150,0.0,1.0 +1996,4,15,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,8.9,80,101100,0,0,352,0,0,0,0,0,0,0,90,2.6,10,10,16.0,2286,9,999999999,170,0.1320,0,88,0.150,0.0,1.0 +1996,4,15,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,8.3,80,101100,0,0,349,0,0,0,0,0,0,0,100,4.1,10,10,16.0,1829,9,999999999,160,0.1320,0,88,0.150,0.0,1.0 +1996,4,15,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,8.3,83,101000,36,780,346,5,0,5,600,0,600,200,80,4.1,10,10,16.0,2286,9,999999999,160,0.1320,0,88,0.150,0.0,1.0 +1996,4,15,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,8.3,83,100900,250,1357,346,46,0,46,5300,0,5300,1710,110,5.2,10,10,16.0,77777,9,999999999,160,0.1320,0,88,0.150,0.0,1.0 +1996,4,15,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,8.3,77,100800,487,1357,351,151,22,144,17000,1600,16500,5240,110,3.1,10,10,16.0,77777,9,999999999,160,0.1320,0,88,0.150,0.0,1.0 +1996,4,15,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,9.4,74,100700,703,1357,344,161,96,111,18300,10000,13100,2800,100,3.1,8,8,16.0,77777,9,999999999,160,0.1320,0,88,0.150,0.0,1.0 +1996,4,15,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,8.9,64,100700,883,1357,351,308,166,200,34500,17600,23000,5690,100,4.6,8,8,16.0,2591,9,999999999,150,0.1320,0,88,0.150,0.0,1.0 +1996,4,15,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,10.0,63,100600,1014,1357,379,214,0,214,25600,0,25600,10270,0,0.0,10,10,16.0,2743,9,999999999,150,0.1320,0,88,0.150,0.0,1.0 +1996,4,15,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,8.9,52,100600,1088,1357,376,431,219,255,48100,23800,28900,8710,240,6.7,10,9,16.0,2743,9,999999999,150,0.1320,0,88,0.150,0.0,1.0 +1996,4,15,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,8.9,54,100500,1099,1357,383,236,0,236,28400,0,28400,11400,220,3.6,10,10,16.0,2591,9,999999999,150,0.1320,0,88,0.150,0.0,1.0 +1996,4,15,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,9.4,54,100400,1047,1357,376,488,37,459,55200,4000,52100,17420,210,4.6,10,9,16.0,2438,9,999999999,139,0.1320,0,88,0.150,0.0,1.0 +1996,4,15,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,11.1,70,100300,935,1357,359,445,114,366,48900,11700,40800,12330,250,5.7,10,8,16.0,1524,9,999999999,139,0.1320,0,88,0.150,0.0,1.0 +1996,4,15,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,11.7,75,100300,771,1357,357,352,166,257,38300,17300,28500,6750,320,1.5,10,8,16.0,2438,9,999999999,139,0.1320,0,88,0.150,0.0,1.0 +1996,4,15,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,12.2,83,100200,567,1357,360,172,58,147,18800,5600,16500,4300,310,2.1,10,9,16.0,3048,9,999999999,139,0.1320,0,88,0.150,0.0,1.0 +1996,4,15,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,12.2,89,100100,336,1357,364,49,0,49,5700,0,5700,1980,240,4.6,10,10,8.0,1463,9,999999999,139,0.1320,0,88,0.150,0.0,1.0 +1996,4,15,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,9.4,83,100200,98,1255,353,16,0,16,1900,0,1900,590,240,5.7,10,10,11.2,1372,9,999999999,129,0.1320,0,88,0.150,1.0,1.0 +1996,4,15,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,9.4,86,100200,0,0,340,0,0,0,0,0,0,0,200,4.1,10,9,11.2,1676,9,999999999,129,0.1320,0,88,0.150,1.0,1.0 +1996,4,15,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,8.9,86,100200,0,0,337,0,0,0,0,0,0,0,120,2.6,10,9,16.0,1524,9,999999999,129,0.1320,0,88,0.150,0.0,1.0 +1996,4,15,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,10.0,93,100100,0,0,331,0,0,0,0,0,0,0,110,4.6,10,8,11.2,1981,9,999999999,129,0.1320,0,88,0.150,0.0,1.0 +1996,4,15,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,9.4,92,100000,0,0,328,0,0,0,0,0,0,0,80,3.6,10,8,16.0,1524,9,999999999,120,0.1320,0,88,0.150,0.0,1.0 +1996,4,15,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,8.9,93,100000,0,0,332,0,0,0,0,0,0,0,100,3.1,10,9,16.0,1829,9,999999999,120,0.1320,0,88,0.150,0.0,1.0 +1996,4,16,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,9.4,96,99800,0,0,332,0,0,0,0,0,0,0,110,3.1,10,9,16.0,1829,9,999999999,120,0.1320,0,88,0.150,0.0,1.0 +1996,4,16,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,8.3,89,99700,0,0,331,0,0,0,0,0,0,0,90,2.6,10,9,16.0,1981,9,999999999,120,0.1320,0,88,0.150,0.0,1.0 +1996,4,16,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,8.3,93,99600,0,0,338,0,0,0,0,0,0,0,100,2.1,10,10,16.0,1524,9,999999999,120,0.1320,0,88,0.150,0.0,1.0 +1996,4,16,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,8.3,93,99600,0,0,338,0,0,0,0,0,0,0,100,4.6,10,10,16.0,1524,9,999999999,110,0.1320,0,88,0.150,0.0,1.0 +1996,4,16,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,8.9,93,99600,0,0,332,0,0,0,0,0,0,0,100,4.1,9,9,16.0,1311,9,999999999,110,0.1320,0,88,0.150,0.0,1.0 +1996,4,16,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,8.3,86,99700,40,825,327,8,19,7,900,600,900,110,150,3.6,8,8,16.0,2438,9,999999999,110,0.1320,0,88,0.150,0.0,1.0 +1996,4,16,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,6.7,80,99700,257,1356,317,57,95,39,6300,7000,5000,670,120,5.7,7,7,16.0,77777,9,999999999,110,0.1320,0,88,0.150,0.0,1.0 +1996,4,16,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,6.7,74,99700,493,1356,319,95,101,59,10900,9800,7300,1060,150,3.6,6,6,16.0,2134,9,999999999,110,0.1320,0,88,0.150,0.0,1.0 +1996,4,16,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,7.2,74,99800,709,1356,319,347,259,211,37200,27000,23000,4850,190,9.3,5,5,16.0,1067,9,999999999,110,0.1320,0,88,0.150,0.0,1.0 +1996,4,16,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,6.1,62,99800,888,1356,323,578,616,175,60700,62000,20000,4440,170,10.3,4,4,16.0,77777,9,999999999,110,0.1320,0,88,0.150,0.0,1.0 +1996,4,16,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,6.1,62,99900,1019,1356,325,471,98,398,51900,10100,44300,14420,170,11.3,5,5,16.0,1372,9,999999999,110,0.1320,0,88,0.150,0.0,1.0 +1996,4,16,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,5.0,55,99900,1092,1356,330,483,157,357,53300,16700,39800,12960,190,11.8,6,6,16.0,1219,9,999999999,110,0.1320,0,88,0.150,0.0,1.0 +1996,4,16,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,8.3,80,100000,1103,1356,327,528,273,306,58300,29700,34100,11000,180,8.2,7,7,16.0,77777,9,999999999,110,0.1320,0,88,0.150,1.0,1.0 +1996,4,16,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,5.6,66,100000,1051,1356,329,334,157,213,37700,17100,24400,6700,200,11.3,8,8,16.0,2591,9,999999999,110,0.1320,0,88,0.150,0.0,1.0 +1996,4,16,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,6.7,64,100100,939,1356,345,370,224,215,41100,24200,24300,5810,170,6.7,9,9,16.0,1128,9,999999999,110,0.1320,0,88,0.150,0.0,1.0 +1996,4,16,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,5.0,61,100100,775,1356,347,160,0,160,18800,0,18800,7240,210,9.8,10,10,16.0,1341,9,999999999,100,0.1320,0,88,0.150,0.0,1.0 +1996,4,16,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,5.6,60,100200,571,1356,337,235,88,197,25700,8600,22000,5420,240,7.2,8,8,16.0,1676,9,999999999,100,0.1320,0,88,0.150,0.0,1.0 +1996,4,16,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,5.0,63,100300,340,1356,335,105,88,83,11500,7600,9600,1820,220,7.2,9,9,16.0,1981,9,999999999,100,0.1320,0,88,0.150,0.0,1.0 +1996,4,16,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,4.4,65,100300,102,1300,339,15,0,15,1800,0,1800,560,190,4.6,10,10,16.0,1829,9,999999999,100,0.1320,0,88,0.150,0.0,1.0 +1996,4,16,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,4.4,71,100400,0,0,333,0,0,0,0,0,0,0,170,6.7,10,10,16.0,1829,9,999999999,100,0.1320,0,88,0.150,0.0,1.0 +1996,4,16,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,5.0,74,100500,0,0,334,0,0,0,0,0,0,0,190,6.2,10,10,16.0,1676,9,999999999,100,0.1320,0,88,0.150,0.0,1.0 +1996,4,16,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9?9?9,8.9,5.6,80,100600,0,0,332,0,0,0,0,0,0,0,200,4.6,10,10,16.0,1463,9,999999999,100,0.1320,0,88,0.150,0.0,1.0 +1996,4,16,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,5.6,83,100600,0,0,329,0,0,0,0,0,0,0,180,5.2,10,10,16.0,1341,9,999999999,100,0.1320,0,88,0.150,0.0,1.0 +1996,4,16,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,5.0,82,100700,0,0,326,0,0,0,0,0,0,0,170,5.2,10,10,16.0,3658,9,999999999,100,0.1320,0,88,0.150,0.0,1.0 +1996,4,17,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,5.0,86,100700,0,0,315,0,0,0,0,0,0,0,160,4.6,9,9,16.0,2896,9,999999999,100,0.1330,0,88,0.150,0.0,1.0 +1996,4,17,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,4.4,85,100800,0,0,305,0,0,0,0,0,0,0,130,4.6,8,8,16.0,1402,9,999999999,100,0.1330,0,88,0.150,0.0,1.0 +1996,4,17,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,3.9,82,100800,0,0,305,0,0,0,0,0,0,0,110,4.6,8,8,16.0,1829,9,999999999,100,0.1330,0,88,0.150,0.0,1.0 +1996,4,17,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,3.9,82,100800,0,0,305,0,0,0,0,0,0,0,120,2.1,8,8,16.0,3048,9,999999999,89,0.1330,0,88,0.150,0.0,1.0 +1996,4,17,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,3.9,86,100700,0,0,297,0,0,0,0,0,0,0,110,1.5,8,7,16.0,77777,9,999999999,89,0.1330,0,88,0.150,0.0,1.0 +1996,4,17,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,3.9,86,100700,44,847,297,8,9,8,1000,400,1000,160,120,3.1,8,7,16.0,77777,9,999999999,100,0.1330,0,88,0.150,0.0,1.0 +1996,4,17,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,4.4,85,100700,263,1355,297,112,214,71,11900,15800,8800,1350,120,4.1,8,6,16.0,77777,9,999999999,100,0.1330,0,88,0.150,0.0,1.0 +1996,4,17,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,5.6,83,100700,499,1355,302,227,388,84,24800,36600,11200,1560,110,5.2,8,5,16.0,77777,9,999999999,100,0.1330,0,88,0.150,0.0,1.0 +1996,4,17,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,5.0,71,100700,714,1355,309,272,179,178,30200,18600,20400,4520,100,5.7,8,5,16.0,77777,9,999999999,100,0.1330,0,88,0.150,0.0,1.0 +1996,4,17,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,4.4,65,100700,893,1355,309,480,296,285,51800,31700,30900,7700,100,4.6,8,4,16.0,77777,9,999999999,100,0.1330,0,88,0.150,0.0,1.0 +1996,4,17,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,2.8,58,100800,1023,1355,309,579,300,352,62500,32400,38000,11340,200,5.7,8,5,16.0,1829,9,999999999,100,0.1330,0,88,0.150,0.0,1.0 +1996,4,17,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,5.0,71,100700,1096,1355,312,772,594,290,82700,62000,32400,10800,90,5.7,9,6,16.0,2134,9,999999999,100,0.1330,0,88,0.150,0.0,1.0 +1996,4,17,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,5.6,66,100600,1107,1355,324,615,261,402,66500,28300,43400,15130,90,6.7,9,7,16.0,2743,9,999999999,100,0.1330,0,88,0.150,0.0,1.0 +1996,4,17,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,6.1,77,100700,1054,1355,322,453,201,296,49800,21800,32800,9740,180,5.2,9,8,16.0,1311,9,999999999,100,0.1330,0,88,0.150,0.0,1.0 +1996,4,17,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,5.6,66,100700,943,1355,336,304,64,259,33500,6500,29000,9430,200,9.3,10,9,16.0,1158,9,999999999,100,0.1330,0,88,0.150,0.0,1.0 +1996,4,17,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,3.9,57,100700,779,1355,346,163,0,163,19200,0,19200,7360,200,7.7,10,10,16.0,1219,9,999999999,100,0.1330,0,88,0.150,0.0,1.0 +1996,4,17,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,3.3,54,100700,575,1355,345,230,40,212,25100,3900,23400,5740,190,7.2,10,10,16.0,3048,9,999999999,100,0.1330,0,88,0.150,0.0,1.0 +1996,4,17,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,3.9,61,100800,345,1355,331,106,33,98,11700,2900,10900,2510,150,6.7,9,9,16.0,1189,9,999999999,100,0.1330,0,88,0.150,0.0,1.0 +1996,4,17,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,4.4,82,100800,107,1322,314,25,19,23,2700,1200,2600,570,90,2.6,9,9,16.0,77777,9,999999999,100,0.1330,0,88,0.150,0.0,1.0 +1996,4,17,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,5.6,90,100900,0,0,315,0,0,0,0,0,0,0,110,2.6,9,9,16.0,2286,9,999999999,100,0.1330,0,88,0.150,0.0,1.0 +1996,4,17,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,6.1,83,100900,0,0,317,0,0,0,0,0,0,0,200,3.6,8,8,16.0,1494,9,999999999,110,0.1330,0,88,0.150,0.0,1.0 +1996,4,17,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,5.6,83,100900,0,0,314,0,0,0,0,0,0,0,180,3.6,8,8,16.0,1158,9,999999999,110,0.1330,0,88,0.150,0.0,1.0 +1996,4,17,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,4.4,82,101000,0,0,308,0,0,0,0,0,0,0,170,4.6,8,8,16.0,77777,9,999999999,110,0.1330,0,88,0.150,0.0,1.0 +1996,4,17,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,4.4,82,101000,0,0,314,0,0,0,0,0,0,0,160,3.1,9,9,16.0,1402,9,999999999,110,0.1330,0,88,0.150,0.0,1.0 +1996,4,18,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,3.9,86,101000,0,0,309,0,0,0,0,0,0,0,170,3.6,9,9,16.0,77777,9,999999999,110,0.1340,0,88,0.150,0.0,1.0 +1996,4,18,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,3.3,82,101100,0,0,308,0,0,0,0,0,0,0,180,2.6,9,9,16.0,1981,9,999999999,110,0.1340,0,88,0.150,0.0,1.0 +1996,4,18,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,3.3,85,101100,0,0,299,0,0,0,0,0,0,0,170,3.6,8,8,16.0,77777,9,999999999,110,0.1340,0,88,0.150,0.0,1.0 +1996,4,18,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,3.3,82,101100,0,0,302,0,0,0,0,0,0,0,170,4.1,8,8,16.0,1494,9,999999999,110,0.1340,0,88,0.150,0.0,1.0 +1996,4,18,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,3.9,86,101200,0,0,302,0,0,0,0,0,0,0,130,2.6,8,8,16.0,1494,9,999999999,110,0.1340,0,88,0.150,0.0,1.0 +1996,4,18,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,3.9,82,101300,48,892,311,9,0,9,1100,0,1100,340,170,3.6,9,9,16.0,1402,9,999999999,110,0.1340,0,88,0.150,0.0,1.0 +1996,4,18,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,3.9,80,101300,270,1355,314,85,13,82,9300,500,9200,2640,200,6.2,9,9,16.0,2591,9,999999999,110,0.1340,0,88,0.150,0.0,1.0 +1996,4,18,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,4.4,82,101400,505,1355,308,178,101,140,19400,9800,15800,3230,190,7.7,9,8,16.0,2591,9,999999999,110,0.1340,0,88,0.150,0.0,1.0 +1996,4,18,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,5.0,86,101500,720,1355,308,245,73,206,26900,7300,23100,6440,190,5.7,9,8,16.0,1036,9,999999999,110,0.1340,0,88,0.150,0.0,1.0 +1996,4,18,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,5.0,80,101600,898,1355,313,579,330,360,61400,35300,38000,10230,200,8.2,9,8,16.0,640,9,999999999,110,0.1340,0,88,0.150,0.0,1.0 +1996,4,18,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,6.1,86,101700,1028,1355,321,401,30,378,46000,3000,43700,15520,170,5.2,10,9,16.0,1219,9,999999999,110,0.1340,0,88,0.150,0.0,1.0 +1996,4,18,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,5.6,77,101700,1100,1355,335,452,119,355,49800,12700,39500,13100,190,8.8,10,10,16.0,732,9,999999999,110,0.1340,0,88,0.150,0.0,1.0 +1996,4,18,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,6.7,86,101800,1111,1355,334,236,0,236,28400,0,28400,11440,160,4.6,10,10,16.0,1067,9,999999999,120,0.1340,0,88,0.150,1.0,1.0 +1996,4,18,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,6.7,90,101900,1058,1355,331,223,0,223,26800,0,26800,10790,190,6.7,10,10,0.8,823,9,999999999,120,0.1340,0,88,0.150,0.0,1.0 +1996,4,18,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,6.7,80,101900,946,1355,339,193,0,193,23000,0,23000,9200,200,5.2,10,10,16.0,1036,9,999999999,120,0.1340,0,88,0.150,0.0,1.0 +1996,4,18,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,6.1,77,101900,783,1355,338,151,0,151,17900,0,17900,6940,190,5.7,10,10,16.0,1280,9,999999999,120,0.1340,0,88,0.150,0.0,1.0 +1996,4,18,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,6.1,86,102000,579,1355,330,116,29,104,12800,2800,11700,3240,140,3.6,10,10,16.0,1372,9,999999999,120,0.1340,0,88,0.150,1.0,1.0 +1996,4,18,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,6.7,86,102000,349,1355,324,82,37,72,9000,3200,8100,1960,120,3.1,9,9,16.0,1402,9,999999999,120,0.1340,0,88,0.150,0.0,1.0 +1996,4,18,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,7.2,93,102000,111,1343,322,26,2,26,2900,0,2900,880,90,4.1,9,9,16.0,1280,9,999999999,120,0.1340,0,88,0.150,1.0,1.0 +1996,4,18,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,7.2,93,102100,0,0,315,0,0,0,0,0,0,0,110,4.1,8,8,16.0,1402,9,999999999,120,0.1340,0,88,0.150,0.0,1.0 +1996,4,18,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,6.1,93,102100,0,0,309,0,0,0,0,0,0,0,150,3.1,8,8,16.0,77777,9,999999999,120,0.1340,0,88,0.150,0.0,1.0 +1996,4,18,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,5.6,93,102100,0,0,302,0,0,0,0,0,0,0,130,3.1,7,7,16.0,3048,9,999999999,120,0.1340,0,88,0.150,0.0,1.0 +1996,4,18,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,5.0,89,102000,0,0,306,0,0,0,0,0,0,0,110,3.6,8,8,16.0,77777,9,999999999,120,0.1340,0,88,0.150,0.0,1.0 +1996,4,18,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,4.4,85,101900,0,0,305,0,0,0,0,0,0,0,100,2.6,8,8,16.0,77777,9,999999999,120,0.1340,0,88,0.150,0.0,1.0 +1996,4,19,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,5.6,90,101900,0,0,315,0,0,0,0,0,0,0,90,5.7,9,9,16.0,1494,9,999999999,120,0.1340,0,88,0.150,0.0,1.0 +1996,4,19,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,5.0,89,101800,0,0,313,0,0,0,0,0,0,0,100,5.2,9,9,16.0,1494,9,999999999,120,0.1340,0,88,0.150,0.0,1.0 +1996,4,19,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,5.6,90,101700,0,0,324,0,0,0,0,0,0,0,110,5.7,10,10,16.0,1676,9,999999999,120,0.1340,0,88,0.150,0.0,1.0 +1996,4,19,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,4.4,85,101600,0,0,321,0,0,0,0,0,0,0,100,5.2,10,10,16.0,3353,9,999999999,129,0.1340,0,88,0.150,0.0,1.0 +1996,4,19,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,5.0,86,101500,0,0,324,0,0,0,0,0,0,0,100,5.2,10,10,16.0,2591,9,999999999,120,0.1340,0,88,0.150,0.0,1.0 +1996,4,19,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,4.4,82,101500,52,936,314,10,4,9,1000,200,1000,240,120,5.7,9,9,16.0,1676,9,999999999,120,0.1340,0,88,0.150,0.0,1.0 +1996,4,19,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,5.0,86,101600,276,1354,315,66,41,58,7300,3300,6600,1520,110,4.6,9,9,16.0,1524,9,999999999,120,0.1340,0,88,0.150,0.0,1.0 +1996,4,19,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,5.0,82,101600,511,1354,317,188,36,174,20500,3500,19200,4650,90,3.6,9,9,16.0,1128,9,999999999,120,0.1340,0,88,0.150,0.0,1.0 +1996,4,19,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,5.6,90,101600,725,1354,309,370,137,297,40600,13900,33100,8550,120,3.1,8,8,16.0,975,9,999999999,120,0.1340,0,88,0.150,0.0,1.0 +1996,4,19,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,5.6,83,101700,903,1354,314,375,167,263,41300,17700,29500,7630,160,3.1,8,8,16.0,975,9,999999999,120,0.1340,0,88,0.150,1.0,1.0 +1996,4,19,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,5.0,77,101700,1032,1354,316,568,174,435,61500,18400,47400,14540,160,6.7,8,8,16.0,823,9,999999999,120,0.1340,0,88,0.150,0.0,1.0 +1996,4,19,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,5.6,74,101700,1105,1354,328,286,87,215,32600,9400,24900,7990,180,6.7,9,9,16.0,762,9,999999999,120,0.1340,0,88,0.150,0.0,1.0 +1996,4,19,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,5.6,83,101700,1115,1354,320,304,25,283,33600,2500,31500,12190,180,5.2,9,9,16.0,823,9,999999999,110,0.1340,0,88,0.150,0.0,1.0 +1996,4,19,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,6.1,71,101700,1062,1354,322,428,265,220,48200,28800,25500,7100,200,6.7,7,7,16.0,77777,9,999999999,110,0.1340,0,88,0.150,0.0,1.0 +1996,4,19,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,4.4,85,101900,950,1354,297,495,385,225,53400,40000,25200,6290,220,8.8,6,6,8.0,823,9,999999999,110,0.1340,0,88,0.150,1.0,1.0 +1996,4,19,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,4.4,73,101900,787,1354,302,483,660,100,52200,67000,13100,2410,210,6.2,4,4,16.0,77777,9,999999999,110,0.1340,0,88,0.150,1.0,1.0 +1996,4,19,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,4.4,71,101900,583,1354,312,341,468,139,36000,45700,16300,2770,180,3.1,7,7,16.0,77777,9,999999999,110,0.1340,0,88,0.150,0.0,1.0 +1996,4,19,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,4.4,73,101900,354,1354,322,143,67,125,15600,6000,14000,3030,120,2.6,9,9,16.0,3353,9,999999999,110,0.1340,0,88,0.150,0.0,1.0 +1996,4,19,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,4.4,76,101900,116,1354,319,25,33,22,2800,1700,2600,460,60,3.1,9,9,16.0,1128,9,999999999,110,0.1340,0,88,0.150,0.0,1.0 +1996,4,19,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,5.0,86,102000,0,34,315,0,0,0,0,0,0,0,0,0.0,9,9,16.0,1280,9,999999999,110,0.1340,0,88,0.150,2.0,1.0 +1996,4,19,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,5.0,86,102000,0,0,308,0,0,0,0,0,0,0,70,3.1,8,8,16.0,1097,9,999999999,100,0.1340,0,88,0.150,0.0,1.0 +1996,4,19,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,4.4,85,102000,0,0,305,0,0,0,0,0,0,0,130,3.6,8,8,16.0,1372,9,999999999,100,0.1340,0,88,0.150,0.0,1.0 +1996,4,19,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,4.4,89,102000,0,0,303,0,0,0,0,0,0,0,100,2.6,8,8,16.0,2134,9,999999999,100,0.1340,0,88,0.150,0.0,1.0 +1996,4,19,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,4.4,85,102000,0,0,305,0,0,0,0,0,0,0,100,2.6,8,8,16.0,1402,9,999999999,100,0.1340,0,88,0.150,0.0,1.0 +1996,4,20,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,4.4,89,102000,0,0,303,0,0,0,0,0,0,0,90,3.1,8,8,16.0,1524,9,999999999,100,0.1350,0,88,0.150,0.0,1.0 +1996,4,20,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,3.9,89,102000,0,0,295,0,0,0,0,0,0,0,100,2.6,7,7,16.0,1402,9,999999999,100,0.1350,0,88,0.150,0.0,1.0 +1996,4,20,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,4.4,89,102000,0,0,298,0,0,0,0,0,0,0,100,3.1,7,7,16.0,1524,9,999999999,100,0.1350,0,88,0.150,0.0,1.0 +1996,4,20,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,4.4,92,102000,0,0,296,0,0,0,0,0,0,0,90,3.6,7,7,16.0,1280,9,999999999,100,0.1350,0,88,0.150,0.0,1.0 +1996,4,20,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,4.4,96,102000,0,0,298,0,0,0,0,0,0,0,130,2.6,8,8,16.0,1128,9,999999999,100,0.1350,0,88,0.150,0.0,1.0 +1996,4,20,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,4.4,92,102000,56,981,301,11,3,11,1300,0,1300,410,100,2.6,8,8,16.0,1829,9,999999999,100,0.1350,0,88,0.150,0.0,1.0 +1996,4,20,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,5.0,89,102000,282,1353,313,63,30,56,6800,2400,6300,1490,120,3.1,9,9,16.0,1189,9,999999999,100,0.1350,0,88,0.150,0.0,1.0 +1996,4,20,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,5.6,86,102000,517,1353,318,98,22,89,10700,2100,10000,2700,110,2.1,9,9,16.0,1494,9,999999999,100,0.1350,0,88,0.150,0.0,1.0 +1996,4,20,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,5.6,80,102000,730,1353,332,139,0,139,16400,0,16400,6300,170,4.6,10,10,16.0,671,9,999999999,100,0.1350,0,88,0.150,0.0,1.0 +1996,4,20,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,6.1,80,102000,908,1353,335,185,0,185,22000,0,22000,8740,170,3.1,10,10,16.0,701,9,999999999,100,0.1350,0,88,0.150,0.0,1.0 +1996,4,20,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,6.1,77,102000,1037,1353,338,203,22,186,22500,2200,20800,7700,200,5.7,10,10,16.0,914,9,999999999,100,0.1350,0,88,0.150,0.0,1.0 +1996,4,20,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,5.6,74,102000,1109,1353,328,294,67,238,32500,6800,26900,10390,190,7.2,9,9,16.0,914,9,999999999,100,0.1350,0,88,0.150,0.0,1.0 +1996,4,20,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,6.7,74,102000,1119,1353,335,719,321,453,77100,34700,48400,17820,180,5.2,9,9,16.0,1250,9,999999999,100,0.1350,0,88,0.150,0.0,1.0 +1996,4,20,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,6.1,68,102000,1066,1353,330,512,233,329,56000,25200,36100,11220,200,5.2,8,8,16.0,1372,9,999999999,100,0.1350,0,88,0.150,0.0,1.0 +1996,4,20,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,6.7,71,101900,954,1353,330,446,187,314,48900,19800,34900,9580,340,1.5,8,8,16.0,1676,9,999999999,100,0.1350,0,88,0.150,0.0,1.0 +1996,4,20,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,6.1,71,101900,791,1353,322,403,197,288,43700,20500,31700,7670,190,6.7,7,7,16.0,2438,9,999999999,100,0.1350,0,88,0.150,0.0,1.0 +1996,4,20,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,6.1,77,101900,587,1353,322,292,247,185,31000,24900,20200,4030,280,1.5,8,8,16.0,2896,9,999999999,110,0.1350,0,88,0.150,0.0,1.0 +1996,4,20,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,5.6,74,101900,358,1353,338,58,18,53,6400,1600,6000,1520,0,0.0,10,10,16.0,1829,9,999999999,110,0.1350,0,88,0.150,0.0,1.0 +1996,4,20,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,5.6,74,101900,121,1353,338,25,2,25,2800,0,2800,860,60,2.6,10,10,16.0,1250,9,999999999,110,0.1350,0,88,0.150,0.0,1.0 +1996,4,20,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,6.7,86,101900,0,56,334,0,0,0,0,0,0,0,110,4.1,10,10,16.0,1463,9,999999999,110,0.1350,0,88,0.150,0.0,1.0 +1996,4,20,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,6.1,86,101900,0,0,330,0,0,0,0,0,0,0,90,2.6,10,10,16.0,3048,9,999999999,110,0.1350,0,88,0.150,0.0,1.0 +1996,4,20,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,6.1,89,101900,0,0,328,0,0,0,0,0,0,0,110,2.1,10,10,16.0,3048,9,999999999,110,0.1350,0,88,0.150,0.0,1.0 +1996,4,20,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,6.1,93,101800,0,0,325,0,0,0,0,0,0,0,100,3.1,10,10,16.0,77777,9,999999999,110,0.1350,0,88,0.150,0.0,1.0 +1996,4,20,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,6.1,93,101700,0,0,325,0,0,0,0,0,0,0,110,2.6,10,10,16.0,3658,9,999999999,110,0.1350,0,88,0.150,0.0,1.0 +1996,4,21,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,6.1,93,101700,0,0,325,0,0,0,0,0,0,0,70,2.1,10,10,16.0,3353,9,999999999,110,0.1360,0,88,0.150,0.0,1.0 +1996,4,21,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,6.1,93,101600,0,0,325,0,0,0,0,0,0,0,350,1.5,10,10,16.0,3658,9,999999999,110,0.1360,0,88,0.150,0.0,1.0 +1996,4,21,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,6.1,96,101600,0,0,323,0,0,0,0,0,0,0,0,0.0,10,10,16.0,3353,9,999999999,110,0.1360,0,88,0.150,0.0,1.0 +1996,4,21,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,6.1,96,101600,0,0,323,0,0,0,0,0,0,0,0,0.0,10,10,16.0,3048,9,999999999,110,0.1360,0,88,0.150,0.0,1.0 +1996,4,21,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,6.1,96,101500,0,0,323,0,0,0,0,0,0,0,310,2.1,10,10,11.2,1829,9,999999999,120,0.1360,0,88,0.150,0.0,1.0 +1996,4,21,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,5.6,93,101500,61,1003,322,9,0,9,1100,0,1100,340,280,2.1,10,10,16.0,1829,9,999999999,120,0.1360,0,88,0.150,0.0,1.0 +1996,4,21,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,5.6,90,101400,288,1352,324,40,0,40,4700,0,4700,1600,320,2.1,10,10,16.0,2134,9,999999999,120,0.1360,0,88,0.150,0.0,1.0 +1996,4,21,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,6.7,97,101500,522,1352,326,91,0,91,10700,0,10700,3870,290,1.5,10,10,16.0,1829,9,999999999,120,0.1360,0,88,0.150,0.0,1.0 +1996,4,21,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,6.7,93,101500,735,1352,328,144,0,144,17000,0,17000,6500,280,1.5,10,10,11.2,1067,9,999999999,129,0.1360,0,88,0.150,0.0,1.0 +1996,4,21,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,6.7,90,101500,912,1352,331,189,0,189,22500,0,22500,8910,320,1.5,10,10,11.2,1189,9,999999999,129,0.1360,0,88,0.150,1.0,1.0 +1996,4,21,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,7.2,86,101500,1041,1352,327,462,170,331,50900,18100,37000,11200,120,1.5,9,9,16.0,1280,9,999999999,129,0.1360,0,88,0.150,0.0,1.0 +1996,4,21,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,7.8,86,101500,1113,1352,331,397,108,308,44200,11600,34700,11640,0,0.0,9,9,16.0,1280,9,999999999,139,0.1360,0,88,0.150,0.0,1.0 +1996,4,21,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,8.3,86,101500,1122,1352,334,364,27,342,40300,2800,38000,14520,40,1.5,9,9,16.0,1219,9,999999999,139,0.1360,0,88,0.150,0.0,1.0 +1996,4,21,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,8.3,86,101500,1069,1352,343,234,79,171,26900,8500,20100,6020,100,3.6,10,10,16.0,1097,9,999999999,139,0.1360,0,88,0.150,0.0,1.0 +1996,4,21,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,8.3,86,101500,958,1352,343,190,29,170,21100,2900,19100,6620,90,4.1,10,10,16.0,1006,9,999999999,139,0.1360,0,88,0.150,0.0,1.0 +1996,4,21,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,8.3,86,101500,794,1352,343,159,0,159,18800,0,18800,7290,100,3.1,10,10,16.0,914,9,999999999,150,0.1360,0,88,0.150,0.0,1.0 +1996,4,21,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,7.8,80,101500,591,1352,345,107,0,107,12600,0,12600,4650,100,3.1,10,10,16.0,1676,9,999999999,150,0.1360,0,88,0.150,0.0,1.0 +1996,4,21,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,7.8,80,101500,362,1352,345,68,0,68,7800,0,7800,2660,110,3.1,10,10,16.0,3048,9,999999999,150,0.1360,0,88,0.150,0.0,1.0 +1996,4,21,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,7.2,77,101500,125,1352,345,21,0,21,2400,0,2400,760,100,4.1,10,10,16.0,1829,9,999999999,150,0.1360,0,88,0.150,0.0,1.0 +1996,4,21,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,7.2,83,101500,0,79,339,0,0,0,0,0,0,0,110,3.6,10,10,16.0,2134,9,999999999,160,0.1360,0,88,0.150,0.0,1.0 +1996,4,21,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,7.2,83,101600,0,0,339,0,0,0,0,0,0,0,100,4.1,10,10,16.0,1524,9,999999999,160,0.1360,0,88,0.150,0.0,1.0 +1996,4,21,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,7.8,86,101600,0,0,340,0,0,0,0,0,0,0,120,3.6,10,10,16.0,1494,9,999999999,160,0.1360,0,88,0.150,0.0,1.0 +1996,4,21,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,8.3,93,101600,0,0,338,0,0,0,0,0,0,0,110,4.1,10,10,8.0,732,9,999999999,170,0.1360,0,88,0.150,1.0,1.0 +1996,4,21,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,8.3,93,101600,0,0,338,0,0,0,0,0,0,0,80,4.1,10,10,11.2,1981,9,999999999,170,0.1360,0,88,0.150,0.0,1.0 +1996,4,22,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,8.3,93,101500,0,0,338,0,0,0,0,0,0,0,100,3.6,10,10,16.0,1981,9,999999999,170,0.1360,0,88,0.150,0.0,1.0 +1996,4,22,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,8.3,96,101600,0,0,335,0,0,0,0,0,0,0,110,2.1,10,10,16.0,1311,9,999999999,170,0.1360,0,88,0.150,1.0,1.0 +1996,4,22,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,8.3,96,101600,0,0,335,0,0,0,0,0,0,0,90,3.6,10,10,11.2,1524,9,999999999,179,0.1360,0,88,0.150,1.0,1.0 +1996,4,22,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,8.3,96,101500,0,0,335,0,0,0,0,0,0,0,100,4.6,10,10,11.0,1311,9,999999999,179,0.1360,0,88,0.150,2.0,1.0 +1996,4,22,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,8.3,96,101500,0,0,335,0,0,0,0,0,0,0,110,3.6,10,10,8.0,823,9,999999999,179,0.1360,0,88,0.150,1.0,1.0 +1996,4,22,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,8.3,96,101500,65,1048,335,10,0,10,1200,0,1200,380,100,5.7,10,10,16.0,1463,9,999999999,179,0.1360,0,88,0.150,1.0,1.0 +1996,4,22,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,8.3,96,101400,294,1352,335,44,0,44,5100,0,5100,1740,100,5.7,10,10,16.0,1067,9,999999999,189,0.1360,0,88,0.150,0.0,1.0 +1996,4,22,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,8.3,93,101400,528,1352,338,96,0,96,11200,0,11200,4060,100,5.7,10,10,11.2,1524,9,999999999,189,0.1360,0,88,0.150,0.0,1.0 +1996,4,22,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,8.3,93,101400,741,1352,338,149,0,149,17500,0,17500,6700,100,6.2,10,10,11.2,975,9,999999999,189,0.1360,0,88,0.150,1.0,1.0 +1996,4,22,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,8.3,89,101400,917,1352,341,194,0,194,23000,0,23000,9120,100,6.7,10,10,6.4,914,9,999999999,200,0.1360,0,88,0.150,0.0,1.0 +1996,4,22,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,8.9,93,101400,1045,1352,341,226,0,226,27100,0,27100,10860,90,6.2,10,10,11.2,975,9,999999999,200,0.1360,0,88,0.150,1.0,1.0 +1996,4,22,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,9.4,92,101300,1116,1352,345,244,0,244,29300,0,29300,11770,100,5.2,10,10,11.2,975,9,999999999,200,0.1360,0,88,0.150,1.0,1.0 +1996,4,22,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,9.4,96,101300,1126,1352,342,246,0,246,29600,0,29600,11860,100,6.2,10,10,11.2,823,9,999999999,200,0.1360,0,88,0.150,1.0,1.0 +1996,4,22,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,10.0,93,101300,1073,1352,348,233,0,233,27900,0,27900,11230,100,5.7,10,10,11.2,792,9,999999999,209,0.1360,0,88,0.150,1.0,1.0 +1996,4,22,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,10.6,97,101200,961,1352,349,205,0,205,24400,0,24400,9730,100,5.7,10,10,8.0,610,9,999999999,209,0.1360,0,88,0.150,1.0,1.0 +1996,4,22,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,10.0,93,101200,798,1352,348,164,0,164,19400,0,19400,7490,90,4.6,10,10,8.0,488,9,999999999,209,0.1360,0,88,0.150,1.0,1.0 +1996,4,22,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,10.6,97,101200,595,1352,349,113,0,113,13200,0,13200,4870,100,4.6,10,10,8.0,488,9,999999999,209,0.1360,0,88,0.150,1.0,1.0 +1996,4,22,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,10.6,97,101100,367,1352,349,49,0,49,5800,0,5800,2040,100,5.2,10,10,4.8,366,9,999999999,220,0.1360,0,88,0.150,2.0,1.0 +1996,4,22,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,10.6,97,101100,130,1352,349,20,0,20,2300,0,2300,730,100,4.6,10,10,8.0,488,9,999999999,220,0.1360,0,88,0.150,1.0,1.0 +1996,4,22,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,11.1,96,101100,1,101,352,0,0,0,0,0,0,0,100,4.1,10,10,4.8,671,9,999999999,220,0.1360,0,88,0.150,2.0,1.0 +1996,4,22,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,11.1,96,101100,0,0,352,0,0,0,0,0,0,0,90,5.2,10,10,11.2,732,9,999999999,229,0.1360,0,88,0.150,1.0,1.0 +1996,4,22,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,11.1,93,101000,0,0,355,0,0,0,0,0,0,0,100,4.1,10,10,16.0,1676,9,999999999,229,0.1360,0,88,0.150,0.0,1.0 +1996,4,22,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,10.6,86,100900,0,0,357,0,0,0,0,0,0,0,130,4.1,10,10,16.0,1311,9,999999999,229,0.1360,0,88,0.150,0.0,1.0 +1996,4,22,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,10.6,86,101000,0,0,357,0,0,0,0,0,0,0,140,4.6,10,10,16.0,1372,9,999999999,229,0.1360,0,88,0.150,1.0,1.0 +1996,4,23,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,11.1,93,100900,0,0,355,0,0,0,0,0,0,0,110,4.6,10,10,11.2,1402,9,999999999,240,0.1370,0,88,0.150,0.0,1.0 +1996,4,23,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,10.6,90,100800,0,0,354,0,0,0,0,0,0,0,110,5.7,10,10,16.0,1981,9,999999999,240,0.1370,0,88,0.150,0.0,1.0 +1996,4,23,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,10.6,90,100700,0,0,354,0,0,0,0,0,0,0,100,4.1,10,10,16.0,1524,9,999999999,240,0.1370,0,88,0.150,0.0,1.0 +1996,4,23,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,10.6,86,100600,0,0,357,0,0,0,0,0,0,0,110,2.6,10,10,16.0,1463,9,999999999,240,0.1370,0,88,0.150,0.0,1.0 +1996,4,23,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,10.6,90,100600,0,0,354,0,0,0,0,0,0,0,100,4.1,10,10,16.0,1524,9,999999999,240,0.1370,0,88,0.150,0.0,1.0 +1996,4,23,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,10.6,90,100500,70,1092,354,11,0,11,1300,0,1300,420,100,4.1,10,10,16.0,1981,9,999999999,240,0.1370,0,88,0.150,0.0,1.0 +1996,4,23,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,10.6,86,100500,300,1351,357,43,0,43,5000,0,5000,1720,100,3.6,10,10,16.0,1981,9,999999999,229,0.1370,0,88,0.150,0.0,1.0 +1996,4,23,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,10.6,80,100500,533,1351,363,95,0,95,11100,0,11100,4040,150,5.2,10,10,16.0,1981,9,999999999,229,0.1370,0,88,0.150,0.0,1.0 +1996,4,23,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,10.6,78,100500,745,1351,365,148,0,148,17500,0,17500,6690,170,5.2,10,10,11.2,1829,9,999999999,229,0.1370,0,88,0.150,0.0,1.0 +1996,4,23,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,9.4,72,100400,921,1351,364,193,0,193,23000,0,23000,9110,180,7.2,10,10,16.0,1829,9,999999999,220,0.1370,0,88,0.150,1.0,1.0 +1996,4,23,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,9.4,67,100300,1049,1351,370,225,0,225,27000,0,27000,10840,170,6.7,10,10,16.0,1829,9,999999999,220,0.1370,0,88,0.150,0.0,1.0 +1996,4,23,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,10.6,75,100300,1120,1351,368,243,0,243,29200,0,29200,11740,170,7.7,10,10,16.0,1067,9,999999999,209,0.1370,0,88,0.150,1.0,1.0 +1996,4,23,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,11.7,78,100200,1129,1351,373,245,0,245,29500,0,29500,11830,180,9.8,10,10,16.0,1097,9,999999999,209,0.1370,0,88,0.150,0.0,1.0 +1996,4,23,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,11.1,77,100300,1076,1351,369,232,0,232,27800,0,27800,11200,180,15.5,10,10,16.0,1341,9,999999999,209,0.1370,0,88,0.150,1.0,1.0 +1996,4,23,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,12.2,89,100300,965,1351,364,204,0,204,24300,0,24300,9710,180,9.3,10,10,3.2,671,9,999999999,200,0.1370,0,88,0.150,3.0,1.0 +1996,4,23,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,12.8,90,100200,802,1351,368,163,0,163,19300,0,19300,7470,170,9.8,10,10,16.0,1097,9,999999999,200,0.1370,0,88,0.150,0.0,1.0 +1996,4,23,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,13.3,93,100300,599,1351,368,111,0,111,13000,0,13000,4820,240,8.2,10,10,0.8,640,9,999999999,189,0.1370,0,88,0.150,2.0,1.0 +1996,4,23,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,9.4,72,100400,371,1351,364,58,0,58,6800,0,6800,2360,220,11.8,10,10,16.0,1829,9,999999999,189,0.1370,0,88,0.150,0.0,1.0 +1996,4,23,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,8.9,75,100500,134,1351,357,22,0,22,2500,0,2500,800,220,4.6,10,10,16.0,2134,9,999999999,189,0.1370,0,88,0.150,0.0,1.0 +1996,4,23,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,8.9,80,100600,1,146,352,0,0,0,0,0,0,0,240,3.1,10,10,16.0,3353,9,999999999,179,0.1370,0,88,0.150,0.0,1.0 +1996,4,23,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,8.3,77,100600,0,0,351,0,0,0,0,0,0,0,170,2.1,10,10,16.0,3353,9,999999999,179,0.1370,0,88,0.150,0.0,1.0 +1996,4,23,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,7.2,74,100600,0,0,348,0,0,0,0,0,0,0,190,3.6,10,10,16.0,3658,9,999999999,170,0.1370,0,88,0.150,0.0,1.0 +1996,4,23,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,7.8,80,100600,0,0,345,0,0,0,0,0,0,0,210,4.6,10,10,11.2,1463,9,999999999,170,0.1370,0,88,0.150,0.0,1.0 +1996,4,23,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,7.8,83,100700,0,0,343,0,0,0,0,0,0,0,230,6.2,10,10,11.2,1402,9,999999999,170,0.1370,0,88,0.150,1.0,1.0 +1996,4,24,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,8.3,89,100800,0,0,341,0,0,0,0,0,0,0,210,3.6,10,10,16.0,1219,9,999999999,160,0.1370,0,88,0.150,0.0,1.0 +1996,4,24,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,7.8,90,100900,0,0,337,0,0,0,0,0,0,0,190,2.6,10,10,16.0,1463,9,999999999,160,0.1370,0,88,0.150,0.0,1.0 +1996,4,24,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,7.8,90,101000,0,0,337,0,0,0,0,0,0,0,190,2.6,10,10,16.0,1402,9,999999999,150,0.1370,0,88,0.150,0.0,1.0 +1996,4,24,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,6.1,83,101100,0,0,333,0,0,0,0,0,0,0,180,4.6,10,10,16.0,1829,9,999999999,150,0.1370,0,88,0.150,0.0,1.0 +1996,4,24,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,6.1,83,101200,0,0,333,0,0,0,0,0,0,0,190,2.6,10,10,16.0,1341,9,999999999,150,0.1370,0,88,0.150,0.0,1.0 +1996,4,24,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,7.2,89,101300,75,1114,334,14,0,14,1600,0,1600,510,190,6.2,10,10,16.0,3048,9,999999999,150,0.1370,0,88,0.150,0.0,1.0 +1996,4,24,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,6.7,86,101400,306,1350,334,46,0,46,5400,0,5400,1830,190,5.7,10,10,16.0,1829,9,999999999,150,0.1370,0,88,0.150,0.0,1.0 +1996,4,24,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,6.7,80,101400,539,1350,339,125,0,125,14300,0,14300,5030,200,5.2,10,10,16.0,77777,9,999999999,150,0.1370,0,88,0.150,0.0,1.0 +1996,4,24,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,7.8,80,101500,750,1350,345,153,0,153,18000,0,18000,6890,180,5.7,10,10,16.0,1372,9,999999999,150,0.1370,0,88,0.150,0.0,1.0 +1996,4,24,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,7.2,79,101600,926,1350,342,197,0,197,23400,0,23400,9280,250,5.2,10,10,16.0,1158,9,999999999,150,0.1370,0,88,0.150,0.0,1.0 +1996,4,24,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,6.1,62,101700,1053,1350,354,229,0,229,27400,0,27400,11010,240,6.7,10,10,16.0,1981,9,999999999,150,0.1370,0,88,0.150,0.0,1.0 +1996,4,24,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,6.7,71,101700,1124,1350,347,246,0,246,29600,0,29600,11860,280,9.3,10,10,16.0,1128,9,999999999,150,0.1370,0,88,0.150,0.0,1.0 +1996,4,24,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,7.8,69,101800,1133,1350,346,172,5,167,21200,400,20900,8590,280,3.1,9,9,16.0,77777,9,999999999,150,0.1370,0,88,0.150,0.0,1.0 +1996,4,24,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,7.8,67,101900,1080,1350,337,575,313,324,63000,34000,35800,11340,220,8.8,8,7,16.0,77777,9,999999999,150,0.1370,0,88,0.150,0.0,1.0 +1996,4,24,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,4.4,53,101900,968,1350,329,599,164,481,64000,17200,51700,14950,240,10.3,6,6,16.0,77777,9,999999999,150,0.1370,0,88,0.150,0.0,1.0 +1996,4,24,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,3.9,47,102000,805,1350,328,371,276,206,40500,29400,22900,4950,230,8.8,5,4,16.0,77777,9,999999999,150,0.1370,0,88,0.150,0.0,1.0 +1996,4,24,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,3.9,49,102000,603,1350,325,264,348,109,28800,34300,13500,2140,260,4.6,5,4,16.0,1829,9,999999999,150,0.1370,0,88,0.150,0.0,1.0 +1996,4,24,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,6.7,66,102000,375,1350,321,187,330,95,19400,28400,11500,1770,220,5.7,5,4,16.0,1372,9,999999999,150,0.1370,0,88,0.150,0.0,1.0 +1996,4,24,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,7.2,71,102100,139,1350,319,47,170,30,5000,8900,4100,530,250,2.1,5,4,16.0,77777,9,999999999,150,0.1370,0,88,0.150,0.0,1.0 +1996,4,24,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,6.1,74,102100,2,169,311,0,2,0,0,0,0,0,240,2.6,5,4,16.0,77777,9,999999999,150,0.1370,0,88,0.150,0.0,1.0 +1996,4,24,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,5.6,77,102100,0,0,305,0,0,0,0,0,0,0,300,2.1,5,4,16.0,77777,9,999999999,150,0.1370,0,88,0.150,0.0,1.0 +1996,4,24,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,4.4,65,102200,0,0,309,0,0,0,0,0,0,0,0,0.0,5,4,16.0,77777,9,999999999,150,0.1370,0,88,0.150,0.0,1.0 +1996,4,24,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,5.6,77,102200,0,0,307,0,0,0,0,0,0,0,120,1.5,6,5,16.0,77777,9,999999999,150,0.1370,0,88,0.150,0.0,1.0 +1996,4,24,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,5.0,74,102300,0,0,309,0,0,0,0,0,0,0,130,1.5,7,6,16.0,2743,9,999999999,139,0.1370,0,88,0.150,0.0,1.0 +1996,4,25,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,5.6,80,102300,0,0,311,0,0,0,0,0,0,0,90,2.1,8,7,16.0,1829,9,999999999,139,0.1380,0,88,0.150,0.0,1.0 +1996,4,25,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,6.1,83,102300,0,0,317,0,0,0,0,0,0,0,80,2.6,8,8,16.0,1676,9,999999999,139,0.1380,0,88,0.150,0.0,1.0 +1996,4,25,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,6.7,86,102200,0,0,324,0,0,0,0,0,0,0,80,2.6,9,9,16.0,3658,9,999999999,139,0.1380,0,88,0.150,0.0,1.0 +1996,4,25,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,6.7,90,102300,0,0,331,0,0,0,0,0,0,0,140,2.1,10,10,16.0,3353,9,999999999,139,0.1380,0,88,0.150,0.0,1.0 +1996,4,25,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,6.1,83,102300,0,0,333,0,0,0,0,0,0,0,100,2.6,10,10,16.0,3048,9,999999999,139,0.1380,0,88,0.150,0.0,1.0 +1996,4,25,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,6.7,86,102200,80,1158,324,16,5,16,1800,300,1800,410,100,4.6,9,9,16.0,2896,9,999999999,139,0.1380,0,88,0.150,0.0,1.0 +1996,4,25,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,6.7,83,102200,312,1349,327,62,52,50,7000,4400,6000,1090,100,4.1,9,9,16.0,2896,9,999999999,139,0.1380,0,88,0.150,0.0,1.0 +1996,4,25,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,6.7,83,102100,544,1349,327,237,61,212,25900,6000,23500,5560,120,3.1,9,9,16.0,2896,9,999999999,129,0.1380,0,88,0.150,0.0,1.0 +1996,4,25,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,7.2,79,102100,755,1349,326,271,146,189,30100,15300,21500,4920,140,3.1,8,8,16.0,2743,9,999999999,129,0.1380,0,88,0.150,0.0,1.0 +1996,4,25,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,6.7,64,102000,930,1349,338,622,462,304,64800,47700,31900,8530,160,6.7,8,8,16.0,2591,9,999999999,129,0.1380,0,88,0.150,0.0,1.0 +1996,4,25,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,5.6,55,102000,1057,1349,342,421,200,264,46700,21700,29700,8670,170,8.8,8,8,16.0,2591,9,999999999,120,0.1380,0,88,0.150,0.0,1.0 +1996,4,25,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,4.4,53,102000,1128,1349,345,557,113,462,61300,11700,51500,18790,180,6.7,9,9,16.0,2591,9,999999999,120,0.1380,0,88,0.150,0.0,1.0 +1996,4,25,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,5.6,55,101900,1136,1349,349,313,174,166,36300,19000,20200,6170,180,9.3,9,9,16.0,2438,9,999999999,120,0.1380,0,88,0.150,0.0,1.0 +1996,4,25,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,6.7,60,101900,1083,1349,350,422,60,374,46600,6200,41600,14920,190,6.7,9,9,16.0,1463,9,999999999,120,0.1380,0,88,0.150,0.0,1.0 +1996,4,25,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,9.4,74,101900,971,1349,361,322,92,255,35800,9800,28700,7940,240,3.1,10,10,11.2,1494,9,999999999,110,0.1380,0,88,0.150,0.0,1.0 +1996,4,25,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,8.9,80,102000,809,1349,352,164,0,164,19400,0,19400,7540,200,6.2,10,10,11.2,1433,9,999999999,110,0.1380,0,88,0.150,1.0,1.0 +1996,4,25,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,10.0,93,102100,607,1349,348,113,0,113,13300,0,13300,4920,210,6.2,10,10,4.8,1036,9,999999999,110,0.1380,0,88,0.150,1.0,1.0 +1996,4,25,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,8.9,93,102200,379,1349,332,59,3,58,6900,100,6900,2380,50,1.5,9,9,16.0,975,9,999999999,110,0.1380,0,88,0.150,3.0,1.0 +1996,4,25,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,7.8,90,102300,143,1349,321,58,31,55,6300,2100,6100,1170,0,0.0,8,8,16.0,77777,9,999999999,100,0.1380,0,88,0.150,0.0,1.0 +1996,4,25,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,6.7,90,102400,2,191,306,0,0,0,0,0,0,0,310,1.5,7,6,16.0,77777,9,999999999,100,0.1380,0,88,0.150,0.0,1.0 +1996,4,25,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,6.7,93,102500,0,0,301,0,0,0,0,0,0,0,130,2.6,6,5,16.0,77777,9,999999999,100,0.1380,0,88,0.150,0.0,1.0 +1996,4,25,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,7.2,96,102500,0,0,300,0,0,0,0,0,0,0,130,2.1,5,4,16.0,77777,9,999999999,89,0.1380,0,88,0.150,0.0,1.0 +1996,4,25,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,6.7,97,102600,0,0,294,0,0,0,0,0,0,0,80,1.5,4,3,16.0,77777,9,999999999,89,0.1380,0,88,0.150,0.0,1.0 +1996,4,25,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,7.2,100,102700,0,0,295,0,0,0,0,0,0,0,150,3.1,3,3,16.0,1829,9,999999999,89,0.1380,0,88,0.150,0.0,1.0 +1996,4,26,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,6.1,96,102700,0,0,289,0,0,0,0,0,0,0,120,2.6,3,2,16.0,1981,9,999999999,89,0.1390,0,88,0.150,0.0,1.0 +1996,4,26,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,6.1,96,102700,0,0,285,0,0,0,0,0,0,0,90,2.1,2,1,16.0,77777,9,999999999,80,0.1390,0,88,0.150,0.0,1.0 +1996,4,26,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,5.0,96,102700,0,0,279,0,0,0,0,0,0,0,130,3.1,1,1,16.0,77777,9,999999999,80,0.1390,0,88,0.150,0.0,1.0 +1996,4,26,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,5.0,93,102800,0,0,276,0,0,0,0,0,0,0,120,1.5,0,0,16.0,77777,9,999999999,80,0.1390,0,88,0.150,0.0,1.0 +1996,4,26,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,5.0,93,102700,0,0,281,0,0,0,0,0,0,0,150,4.6,1,1,16.0,77777,9,999999999,80,0.1390,0,88,0.150,0.0,1.0 +1996,4,26,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,5.6,93,102800,85,1180,284,25,94,18,2700,4100,2400,310,140,2.6,1,1,16.0,1981,9,999999999,80,0.1390,0,88,0.150,0.0,1.0 +1996,4,26,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,5.6,90,102800,317,1349,290,156,371,69,16500,29900,9400,1250,190,1.5,2,2,16.0,1524,9,999999999,80,0.1390,0,88,0.150,0.0,1.0 +1996,4,26,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,6.7,90,102800,549,1349,299,317,532,100,32900,50500,12300,1970,0,0.0,3,3,16.0,1676,9,999999999,80,0.1390,0,88,0.150,0.0,1.0 +1996,4,26,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,7.2,83,102900,760,1349,307,490,532,190,52000,54200,21400,4280,160,3.6,3,3,16.0,2591,9,999999999,80,0.1390,0,88,0.150,0.0,1.0 +1996,4,26,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,7.2,79,102900,934,1349,309,619,658,163,65700,66800,19300,4510,20,2.1,3,3,16.0,671,9,999999999,80,0.1390,0,88,0.150,0.0,1.0 +1996,4,26,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,6.7,71,102900,1061,1349,316,805,715,242,84200,72000,27400,8130,0,0.0,4,4,16.0,1981,9,999999999,89,0.1390,0,88,0.150,0.0,1.0 +1996,4,26,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,4.4,55,102800,1131,1349,321,718,589,224,76100,59900,25800,9080,240,6.7,4,4,16.0,2438,9,999999999,89,0.1390,0,88,0.150,0.0,1.0 +1996,4,26,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,5.0,59,102700,1140,1349,322,594,296,343,65300,32200,38000,13690,200,4.6,5,5,16.0,1981,9,999999999,89,0.1390,0,88,0.150,0.0,1.0 +1996,4,26,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,3.9,49,102700,1086,1349,331,567,359,278,61100,37500,30800,10220,210,5.2,6,6,16.0,1402,9,999999999,89,0.1390,0,88,0.150,0.0,1.0 +1996,4,26,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,3.3,45,102600,975,1349,333,496,277,296,54000,29900,32400,8770,200,6.7,6,6,16.0,1676,9,999999999,89,0.1390,0,88,0.150,0.0,1.0 +1996,4,26,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,2.2,39,102600,813,1349,340,549,485,257,57100,49500,27200,6240,260,8.2,7,7,16.0,1676,9,999999999,89,0.1390,0,88,0.150,0.0,1.0 +1996,4,26,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,5.6,60,102600,611,1349,331,140,46,119,15400,4500,13400,3730,330,6.2,7,7,16.0,1372,9,999999999,89,0.1390,0,88,0.150,0.0,1.0 +1996,4,26,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,2.8,53,102600,384,1349,319,196,344,98,20400,29800,11900,1830,270,5.7,6,6,16.0,1676,9,999999999,89,0.1390,0,88,0.150,0.0,1.0 +1996,4,26,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,3.9,59,102600,148,1349,318,45,49,39,4800,2800,4500,820,280,4.6,6,6,16.0,1676,9,999999999,89,0.1390,0,88,0.150,0.0,1.0 +1996,4,26,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,3.3,63,102700,3,236,307,0,3,0,0,0,0,0,320,3.6,5,5,16.0,77777,9,999999999,89,0.1390,0,88,0.150,0.0,1.0 +1996,4,26,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,3.3,68,102700,0,0,303,0,0,0,0,0,0,0,330,2.1,5,5,16.0,77777,9,999999999,100,0.1390,0,88,0.150,0.0,1.0 +1996,4,26,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,3.9,74,102800,0,0,298,0,0,0,0,0,0,0,60,2.1,4,4,16.0,77777,9,999999999,100,0.1390,0,88,0.150,0.0,1.0 +1996,4,26,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,4.4,76,102800,0,0,301,0,0,0,0,0,0,0,10,2.1,5,5,16.0,1524,9,999999999,100,0.1390,0,88,0.150,0.0,1.0 +1996,4,26,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,4.4,79,102800,0,0,302,0,0,0,0,0,0,0,140,1.5,6,6,16.0,2438,9,999999999,100,0.1390,0,88,0.150,0.0,1.0 +1996,4,27,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,4.4,82,102800,0,0,308,0,0,0,0,0,0,0,140,1.5,8,8,16.0,1463,9,999999999,100,0.1390,0,88,0.150,0.0,1.0 +1996,4,27,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,4.4,76,102800,0,0,319,0,0,0,0,0,0,0,0,0.0,9,9,16.0,1463,9,999999999,100,0.1390,0,88,0.150,0.0,1.0 +1996,4,27,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,4.4,76,102900,0,0,328,0,0,0,0,0,0,0,170,2.1,10,10,16.0,1372,9,999999999,100,0.1390,0,88,0.150,0.0,1.0 +1996,4,27,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,3.9,74,102900,0,0,328,0,0,0,0,0,0,0,210,1.5,10,10,16.0,1372,9,999999999,100,0.1390,0,88,0.150,0.0,1.0 +1996,4,27,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,5.6,90,102900,0,0,324,0,0,0,0,0,0,0,360,1.5,10,10,16.0,1067,9,999999999,100,0.1390,0,88,0.150,0.0,1.0 +1996,4,27,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,5.0,86,103000,90,1224,324,18,0,18,2100,0,2100,640,0,0.0,10,10,16.0,77777,9,999999999,100,0.1390,0,88,0.150,0.0,1.0 +1996,4,27,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,5.6,83,103000,323,1348,329,49,0,49,5700,0,5700,1960,150,1.5,10,10,16.0,1219,9,999999999,100,0.1390,0,88,0.150,0.0,1.0 +1996,4,27,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,5.0,77,103100,554,1348,332,102,0,102,11900,0,11900,4350,100,1.5,10,10,16.0,1067,9,999999999,100,0.1390,0,88,0.150,0.0,1.0 +1996,4,27,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,5.0,77,103100,764,1348,332,155,0,155,18300,0,18300,7030,70,1.5,10,10,16.0,732,9,999999999,100,0.1390,0,88,0.150,1.0,1.0 +1996,4,27,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,6.7,74,103100,938,1348,328,282,112,204,31800,12000,23400,6140,60,3.1,8,8,16.0,1219,9,999999999,100,0.1390,0,88,0.150,0.0,1.0 +1996,4,27,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,3.9,61,103100,1065,1348,319,264,150,146,30700,16400,17700,4620,330,2.6,7,7,16.0,1219,9,999999999,100,0.1390,0,88,0.150,0.0,1.0 +1996,4,27,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,4.4,61,103100,1134,1348,323,165,56,118,19500,6100,14400,4670,20,2.6,7,7,16.0,2134,9,999999999,100,0.1390,0,88,0.150,0.0,1.0 +1996,4,27,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,5.0,57,103100,1143,1348,327,689,379,368,75500,41200,40500,14950,360,2.6,6,6,16.0,1676,9,999999999,100,0.1390,0,88,0.150,0.0,1.0 +1996,4,27,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,5.0,55,103100,1090,1348,327,739,534,307,78800,55700,33700,11460,320,2.6,5,5,16.0,1676,9,999999999,100,0.1390,0,88,0.150,0.0,1.0 +1996,4,27,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,4.4,51,103100,978,1348,328,492,391,208,53700,40700,24000,6080,280,3.1,5,5,16.0,77777,9,999999999,100,0.1390,0,88,0.150,0.0,1.0 +1996,4,27,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,4.4,49,103000,816,1348,328,451,512,141,47600,51600,16400,3380,50,2.1,4,4,16.0,77777,9,999999999,100,0.1390,0,88,0.150,0.0,1.0 +1996,4,27,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,3.9,49,103000,615,1348,323,265,263,145,28800,26900,16600,3030,310,2.1,3,3,16.0,77777,9,999999999,100,0.1390,0,88,0.150,0.0,1.0 +1996,4,27,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,2.8,46,102900,388,1348,321,216,488,75,22100,42300,10000,1380,290,3.1,3,3,16.0,77777,9,999999999,100,0.1390,0,88,0.150,0.0,1.0 +1996,4,27,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,5.0,59,102900,152,1348,314,54,208,31,5800,11500,4500,550,280,4.1,2,2,16.0,77777,9,999999999,100,0.1390,0,88,0.150,0.0,1.0 +1996,4,27,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,4.4,63,103000,4,258,301,0,4,0,0,0,0,0,310,4.1,1,1,16.0,77777,9,999999999,100,0.1390,0,88,0.150,0.0,1.0 +1996,4,27,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,5.0,68,103000,0,0,300,0,0,0,0,0,0,0,270,2.6,1,1,16.0,77777,9,999999999,100,0.1390,0,88,0.150,0.0,1.0 +1996,4,27,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,5.6,77,103000,0,0,290,0,0,0,0,0,0,0,260,2.1,0,0,16.0,77777,9,999999999,100,0.1390,0,88,0.150,0.0,1.0 +1996,4,27,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,4.4,73,103000,0,0,287,0,0,0,0,0,0,0,50,2.1,0,0,16.0,77777,9,999999999,110,0.1390,0,88,0.150,0.0,1.0 +1996,4,27,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,5.0,82,103000,0,0,283,0,0,0,0,0,0,0,70,2.6,0,0,16.0,77777,9,999999999,110,0.1390,0,88,0.150,0.0,1.0 +1996,4,28,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,3.9,86,103000,0,0,275,0,0,0,0,0,0,0,110,2.1,0,0,16.0,77777,9,999999999,110,0.1400,0,88,0.150,0.0,1.0 +1996,4,28,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,3.9,89,102900,0,0,273,0,0,0,0,0,0,0,110,2.1,0,0,16.0,77777,9,999999999,110,0.1400,0,88,0.150,0.0,1.0 +1996,4,28,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,3.3,89,102900,0,0,270,0,0,0,0,0,0,0,270,1.5,0,0,16.0,77777,9,999999999,110,0.1400,0,88,0.150,0.0,1.0 +1996,4,28,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,3.9,93,102900,0,0,271,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,110,0.1400,0,88,0.150,0.0,1.0 +1996,4,28,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,3.9,97,102900,0,0,268,0,0,0,0,0,0,0,130,1.5,0,0,16.0,77777,9,999999999,110,0.1400,0,88,0.150,0.0,1.0 +1996,4,28,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,3.9,97,102900,95,1269,268,28,99,21,3100,4400,2700,370,290,1.5,0,0,16.0,77777,9,999999999,110,0.1400,0,88,0.150,0.0,1.0 +1996,4,28,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,5.0,89,102900,328,1347,284,160,423,57,16500,34900,8000,1050,290,2.6,1,1,16.0,77777,9,999999999,110,0.1400,0,88,0.150,0.0,1.0 +1996,4,28,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,4.4,76,102800,559,1347,290,341,620,83,36000,59700,11200,1690,270,3.6,1,1,16.0,77777,9,999999999,110,0.1400,0,88,0.150,0.0,1.0 +1996,4,28,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,5.0,68,102800,769,1347,300,518,721,106,54000,71400,13200,2330,280,3.1,1,1,16.0,77777,9,999999999,120,0.1400,0,88,0.150,0.0,1.0 +1996,4,28,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,6.1,64,102800,942,1347,305,699,819,126,73600,82300,16000,3340,280,2.6,0,0,16.0,77777,9,999999999,120,0.1400,0,88,0.150,0.0,1.0 +1996,4,28,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,7.2,60,102700,1068,1347,315,814,853,138,86500,86200,18000,4600,300,3.1,0,0,16.0,77777,9,999999999,120,0.1400,0,88,0.150,0.0,1.0 +1996,4,28,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,6.7,54,102600,1138,1347,320,877,869,143,93600,88000,19100,5690,290,1.5,0,0,16.0,77777,9,999999999,120,0.1400,0,88,0.150,0.0,1.0 +1996,4,28,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,7.2,52,102600,1146,1347,325,885,870,144,94400,88100,19300,5860,290,3.6,0,0,16.0,77777,9,999999999,120,0.1400,0,88,0.150,0.0,1.0 +1996,4,28,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,7.8,50,102500,1093,1347,331,835,857,140,88900,86700,18400,4940,280,5.2,0,0,16.0,77777,9,999999999,129,0.1400,0,88,0.150,0.0,1.0 +1996,4,28,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,5.0,39,102400,981,1347,333,733,828,130,77400,83300,16600,3660,310,2.6,0,0,16.0,77777,9,999999999,129,0.1400,0,88,0.150,0.0,1.0 +1996,4,28,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,2.2,31,102400,819,1347,332,586,776,114,61200,77200,14200,2590,280,4.1,0,0,16.0,77777,9,999999999,129,0.1400,0,88,0.150,0.0,1.0 +1996,4,28,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,3.3,34,102400,618,1347,342,379,575,115,39500,55800,13800,2330,280,3.6,2,2,16.0,3353,9,999999999,129,0.1400,0,88,0.150,0.0,1.0 +1996,4,28,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,2.8,34,102400,392,1347,342,210,458,77,21600,39800,10000,1410,290,1.5,3,3,16.0,3353,9,999999999,129,0.1400,0,88,0.150,0.0,1.0 +1996,4,28,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,3.9,40,102300,157,1347,343,39,55,33,4400,3300,4000,690,0,0.0,5,5,16.0,3048,9,999999999,139,0.1400,0,88,0.150,0.0,1.0 +1996,4,28,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,5.6,48,102400,4,281,347,0,1,0,0,0,0,0,0,0.0,7,7,16.0,3048,9,999999999,139,0.1400,0,88,0.150,0.0,1.0 +1996,4,28,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,6.7,58,102400,0,0,346,0,0,0,0,0,0,0,290,1.5,8,8,16.0,3353,9,999999999,139,0.1400,0,88,0.150,0.0,1.0 +1996,4,28,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,6.7,55,102400,0,0,366,0,0,0,0,0,0,0,270,3.1,10,10,16.0,2286,9,999999999,139,0.1400,0,88,0.150,0.0,1.0 +1996,4,28,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,6.1,55,102400,0,0,363,0,0,0,0,0,0,0,270,1.5,10,10,16.0,2438,9,999999999,139,0.1400,0,88,0.150,0.0,1.0 +1996,4,28,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,7.2,64,102400,0,0,358,0,0,0,0,0,0,0,320,1.5,10,10,16.0,2134,9,999999999,150,0.1400,0,88,0.150,0.0,1.0 +1996,4,29,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,7.2,64,102400,0,0,358,0,0,0,0,0,0,0,0,0.0,10,10,16.0,1981,9,999999999,150,0.1400,0,88,0.150,0.0,1.0 +1996,4,29,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,6.7,62,102400,0,0,358,0,0,0,0,0,0,0,330,2.1,10,10,16.0,1829,9,999999999,150,0.1400,0,88,0.150,0.0,1.0 +1996,4,29,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,6.1,62,102400,0,0,354,0,0,0,0,0,0,0,300,1.5,10,10,16.0,1829,9,999999999,150,0.1400,0,88,0.150,0.0,1.0 +1996,4,29,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,6.1,64,102400,0,0,352,0,0,0,0,0,0,0,300,1.5,10,10,16.0,1676,9,999999999,160,0.1400,0,88,0.150,0.0,1.0 +1996,4,29,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,5.6,62,102500,0,0,351,0,0,0,0,0,0,0,0,0.0,10,10,16.0,1676,9,999999999,160,0.1400,0,88,0.150,0.0,1.0 +1996,4,29,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,5.6,64,102500,100,1290,339,29,3,29,3200,0,3200,930,300,2.1,9,9,16.0,1524,9,999999999,160,0.1400,0,88,0.150,0.0,1.0 +1996,4,29,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,2.8,53,102600,333,1347,335,111,61,96,12200,5300,10900,2440,310,2.6,9,9,16.0,1524,9,999999999,160,0.1400,0,88,0.150,0.0,1.0 +1996,4,29,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,3.3,51,102600,564,1347,341,162,30,150,17900,2900,16600,4370,0,0.0,9,9,16.0,2743,9,999999999,160,0.1400,0,88,0.150,0.0,1.0 +1996,4,29,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,3.3,51,102600,773,1347,334,264,80,218,29100,8000,24400,7080,0,0.0,8,8,16.0,2743,9,999999999,160,0.1400,0,88,0.150,0.0,1.0 +1996,4,29,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,5.0,49,102700,946,1347,347,305,117,222,34100,12500,25300,6750,360,2.1,8,8,16.0,2896,9,999999999,160,0.1400,0,88,0.150,0.0,1.0 +1996,4,29,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,5.6,50,102600,1072,1347,344,494,154,370,54100,16400,41000,13180,290,1.5,8,7,16.0,2743,9,999999999,160,0.1400,0,88,0.150,0.0,1.0 +1996,4,29,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,7.2,52,102600,1141,1347,352,337,121,234,38300,13000,27200,9410,340,2.1,8,7,16.0,77777,9,999999999,160,0.1400,0,88,0.150,0.0,1.0 +1996,4,29,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,7.8,50,102600,1149,1347,354,657,227,463,71600,24100,51000,18950,360,3.1,8,6,16.0,77777,9,999999999,160,0.1400,0,88,0.150,0.0,1.0 +1996,4,29,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,7.8,48,102500,1096,1347,353,455,184,305,50700,19700,34600,11280,320,3.6,8,5,16.0,77777,9,999999999,160,0.1400,0,88,0.150,0.0,1.0 +1996,4,29,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,6.7,44,102500,984,1347,354,652,643,182,69100,65300,21200,5420,260,4.1,8,5,16.0,77777,9,999999999,160,0.1400,0,88,0.150,0.0,1.0 +1996,4,29,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,7.8,47,102400,823,1347,353,525,505,216,55600,51800,23900,5200,280,4.1,8,4,16.0,77777,9,999999999,160,0.1400,0,88,0.150,0.0,1.0 +1996,4,29,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,7.8,48,102400,622,1347,348,316,287,183,33800,29300,20200,4000,330,4.6,7,3,16.0,77777,9,999999999,160,0.1400,0,88,0.150,0.0,1.0 +1996,4,29,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,6.1,45,102400,396,1347,343,186,337,87,19700,29600,11000,1600,330,4.6,5,3,16.0,77777,9,999999999,160,0.1400,0,88,0.150,0.0,1.0 +1996,4,29,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,5.0,49,102400,161,1347,326,53,106,40,5600,5800,4900,730,340,5.2,4,2,16.0,77777,9,999999999,160,0.1400,0,88,0.150,0.0,1.0 +1996,4,29,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,4.4,53,102500,5,303,314,0,1,0,0,0,0,0,330,5.2,3,1,16.0,77777,9,999999999,160,0.1400,0,88,0.150,0.0,1.0 +1996,4,29,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,5.6,64,102500,0,0,307,0,0,0,0,0,0,0,320,6.2,1,1,16.0,77777,9,999999999,160,0.1400,0,88,0.150,0.0,1.0 +1996,4,29,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,5.6,71,102600,0,0,295,0,0,0,0,0,0,0,310,4.1,0,0,16.0,77777,9,999999999,160,0.1400,0,88,0.150,0.0,1.0 +1996,4,29,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,5.0,74,102600,0,0,289,0,0,0,0,0,0,0,320,6.2,0,0,16.0,77777,9,999999999,160,0.1400,0,88,0.150,0.0,1.0 +1996,4,29,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,4.4,73,102600,0,0,287,0,0,0,0,0,0,0,310,7.2,0,0,16.0,77777,9,999999999,160,0.1400,0,88,0.150,0.0,1.0 +1996,4,30,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,5.0,80,102600,0,0,285,0,0,0,0,0,0,0,310,5.7,0,0,16.0,77777,9,999999999,160,0.1410,0,88,0.150,0.0,1.0 +1996,4,30,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,4.4,79,102500,0,0,282,0,0,0,0,0,0,0,310,2.6,0,0,16.0,77777,9,999999999,160,0.1410,0,88,0.150,0.0,1.0 +1996,4,30,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,4.4,79,102600,0,0,282,0,0,0,0,0,0,0,310,3.1,0,0,16.0,77777,9,999999999,160,0.1410,0,88,0.150,0.0,1.0 +1996,4,30,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,4.4,76,102600,0,0,284,0,0,0,0,0,0,0,290,1.5,0,0,16.0,77777,9,999999999,160,0.1410,0,88,0.150,0.0,1.0 +1996,4,30,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,5.0,80,102600,0,0,285,0,0,0,0,0,0,0,300,2.1,0,0,16.0,77777,9,999999999,160,0.1410,0,88,0.150,0.0,1.0 +1996,4,30,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,5.0,80,102600,105,1335,285,34,146,23,3700,6700,3200,400,300,3.6,0,0,16.0,77777,9,999999999,160,0.1410,0,88,0.150,0.0,1.0 +1996,4,30,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,5.0,71,102600,338,1346,292,180,492,56,18700,41200,8300,1050,320,3.1,0,0,16.0,4572,9,999999999,160,0.1410,0,88,0.150,0.0,1.0 +1996,4,30,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,5.0,71,102600,568,1346,292,366,674,81,38800,65200,11200,1670,0,0.0,0,0,16.0,3658,9,999999999,160,0.1410,0,88,0.150,0.0,1.0 +1996,4,30,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,5.6,69,102500,777,1346,297,549,772,103,57600,76600,13200,2310,0,0.0,0,0,16.0,77777,9,999999999,160,0.1410,0,88,0.150,0.0,1.0 +1996,4,30,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,6.1,66,102500,950,1346,302,704,829,119,74800,83500,15700,3260,270,1.5,0,0,16.0,77777,9,999999999,160,0.1410,0,88,0.150,0.0,1.0 +1996,4,30,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,4.4,55,102500,1075,1346,311,767,786,138,81400,79500,17800,4690,290,3.1,1,1,16.0,77777,9,999999999,150,0.1410,0,88,0.150,0.0,1.0 +1996,4,30,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,3.9,47,102400,1144,1346,322,822,745,188,88400,76500,23200,8080,340,2.1,2,2,16.0,77777,9,999999999,150,0.1410,0,88,0.150,0.0,1.0 +1996,4,30,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,1.1,36,102300,1152,1346,330,652,461,257,71400,48300,30000,11270,340,3.1,4,4,16.0,77777,9,999999999,150,0.1410,0,88,0.150,0.0,1.0 +1996,4,30,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,1.7,34,102200,1099,1346,341,460,318,199,51200,33400,23900,7450,330,2.6,5,5,16.0,77777,9,999999999,150,0.1410,0,88,0.150,0.0,1.0 +1996,4,30,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,2.2,34,102100,987,1346,347,484,360,220,52600,37500,25100,6570,330,3.1,6,6,16.0,2896,9,999999999,150,0.1410,0,88,0.150,0.0,1.0 +1996,4,30,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,4.4,40,102000,826,1346,354,402,127,324,44100,13000,36200,10140,360,2.6,7,7,16.0,2438,9,999999999,150,0.1410,0,88,0.150,0.0,1.0 +1996,4,30,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,6.1,50,102000,626,1346,353,247,102,200,27200,10100,22500,5810,320,6.7,8,8,16.0,2134,9,999999999,150,0.1410,0,88,0.150,0.0,1.0 +1996,4,30,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,3.3,49,102100,400,1346,337,100,93,72,11200,8500,8600,1610,320,8.2,8,8,16.0,1829,9,999999999,150,0.1410,0,88,0.150,0.0,1.0 +1996,4,30,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,7.2,77,102100,166,1346,335,35,0,35,4000,0,4000,1220,350,4.6,9,9,16.0,1829,9,999999999,150,0.1410,0,88,0.150,0.0,1.0 +1996,4,30,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,6.7,80,102100,6,348,329,1,0,1,0,0,0,0,20,1.5,9,9,16.0,1829,9,999999999,150,0.1410,0,88,0.150,0.0,1.0 +1996,4,30,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,6.7,80,102200,0,0,339,0,0,0,0,0,0,0,0,0.0,10,10,16.0,2438,9,999999999,150,0.1410,0,88,0.150,0.0,1.0 +1996,4,30,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.2,7.2,77,102200,0,0,340,0,0,0,0,0,0,0,0,0.4,10,10,16.0,2134,9,999999999,150,0.1410,0,88,0.150,0.0,1.0 +1996,4,30,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.5,7.6,68,102200,0,0,342,0,0,0,0,0,0,0,300,0.7,10,10,16.0,1524,9,999999999,150,0.1410,0,88,0.150,0.0,1.0 +1996,4,30,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.7,8.1,68,102200,0,0,344,0,0,0,0,0,0,0,320,1.1,10,10,16.0,1524,9,999999999,150,0.1410,0,88,0.150,0.0,1.0 +1989,5,1,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.0,8.6,90,102100,0,0,346,0,0,0,0,0,0,0,200,1.5,10,10,24.1,1130,9,999999999,179,0.1270,0,88,999.000,999.0,99.0 +1989,5,1,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.2,9.1,93,102100,0,0,347,0,0,0,0,0,0,0,180,1.9,10,10,24.1,1130,9,999999999,179,0.1270,0,88,999.000,999.0,99.0 +1989,5,1,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.5,9.5,86,102100,0,0,349,0,0,0,0,0,0,0,180,2.2,10,10,24.1,1220,9,999999999,170,0.1270,0,88,999.000,999.0,99.0 +1989,5,1,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,10.0,90,102100,0,0,351,0,0,0,0,0,0,0,180,2.6,10,10,24.1,1250,9,999999999,170,0.1270,0,88,999.000,999.0,99.0 +1989,5,1,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,10.0,90,102100,0,11,351,0,0,0,0,0,0,0,200,3.6,10,10,24.1,1250,9,999999999,170,0.1270,0,88,999.000,999.0,99.0 +1989,5,1,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,10.0,90,102100,109,1346,341,22,7,21,2400,400,2300,520,190,2.1,9,9,32.2,2290,9,999999999,170,0.1640,0,88,999.000,999.0,99.0 +1989,5,1,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,9.4,83,102200,342,1346,336,124,107,97,13500,9200,11200,2130,180,2.6,8,8,32.2,2440,9,999999999,160,0.1640,0,88,999.000,999.0,99.0 +1989,5,1,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,10.0,80,102200,572,1346,349,222,55,198,24300,5400,22000,5470,190,2.6,9,9,40.2,2440,9,999999999,170,0.1640,0,88,999.000,999.0,99.0 +1989,5,1,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,10.0,80,102200,780,1346,349,343,132,267,37400,13800,29400,7080,70,3.1,9,9,40.2,1430,9,999999999,170,0.1640,0,88,999.000,999.0,99.0 +1989,5,1,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,10.6,81,102200,953,1346,353,495,200,354,54000,21100,39000,10850,60,3.1,9,9,40.2,1340,9,999999999,179,0.1640,0,88,999.000,999.0,99.0 +1989,5,1,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,10.0,67,102200,1078,1346,350,580,254,377,62900,27500,40800,13520,360,2.1,9,7,40.2,1310,9,999999999,170,0.1640,0,88,999.000,999.0,99.0 +1989,5,1,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,9.4,61,102200,1147,1346,354,645,369,331,68900,38500,36000,14470,350,2.6,8,7,40.2,1830,9,999999999,170,0.1640,0,88,999.000,999.0,99.0 +1989,5,1,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,7.8,52,102200,1155,1346,355,553,195,387,61200,20800,43300,16040,10,1.5,8,7,40.2,1980,9,999999999,150,0.1640,0,88,999.000,999.0,99.0 +1989,5,1,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,7.2,52,102200,1101,1346,352,541,298,298,60000,32400,33400,10820,30,3.1,9,7,40.2,1830,9,999999999,139,0.1640,0,88,999.000,999.0,99.0 +1989,5,1,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,8.3,56,102100,990,1346,349,547,365,279,60000,39500,30900,8370,20,4.1,8,6,40.2,3050,9,999999999,150,0.1640,0,88,999.000,999.0,99.0 +1989,5,1,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,7.8,54,102100,829,1346,348,526,448,251,55100,45900,26700,6180,40,3.1,8,6,40.2,7620,9,999999999,150,0.1640,0,88,999.000,999.0,99.0 +1989,5,1,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,7.8,52,102000,628,1346,351,275,257,156,29900,26400,17600,3310,10,2.6,6,6,56.3,7620,9,999999999,150,0.1640,0,88,999.000,999.0,99.0 +1989,5,1,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,7.2,54,102000,403,1346,345,112,29,103,12300,2600,11500,2780,360,5.2,6,6,64.4,3660,9,999999999,139,0.1640,0,88,999.000,999.0,99.0 +1989,5,1,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,6.7,54,102000,169,1346,339,49,91,38,5300,5100,4600,680,340,4.1,5,5,64.4,77777,9,999999999,139,0.1640,0,88,999.000,999.0,99.0 +1989,5,1,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,7.2,64,102100,7,370,332,1,0,1,0,0,0,0,300,2.6,6,6,24.1,2900,9,999999999,139,0.1640,0,88,999.000,999.0,99.0 +1989,5,1,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,6.7,62,102100,0,0,326,0,0,0,0,0,0,0,320,3.1,4,4,24.1,77777,9,999999999,139,0.1270,0,88,999.000,999.0,99.0 +1989,5,1,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,7.2,69,102100,0,0,327,0,0,0,0,0,0,0,310,2.6,6,6,24.1,3050,9,999999999,139,0.1270,0,88,999.000,999.0,99.0 +1989,5,1,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,6.7,74,102100,0,0,298,0,0,0,0,0,0,0,290,3.1,0,0,24.1,77777,9,999999999,139,0.1270,0,88,999.000,999.0,99.0 +1989,5,1,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,6.7,74,102100,0,0,304,0,0,0,0,0,0,0,290,1.5,1,1,24.1,77777,9,999999999,139,0.1270,0,88,999.000,999.0,99.0 +1989,5,2,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,8.3,90,102100,0,0,295,0,0,0,0,0,0,0,70,1.5,0,0,24.1,77777,9,999999999,150,0.1280,0,88,999.000,999.0,99.0 +1989,5,2,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,8.3,93,102100,0,0,298,0,0,0,0,0,0,0,80,2.1,3,1,24.1,77777,9,999999999,150,0.1280,0,88,999.000,999.0,99.0 +1989,5,2,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,7.2,89,102100,0,0,295,0,0,0,0,0,0,0,290,1.5,4,1,24.1,77777,9,999999999,139,0.1280,0,88,999.000,999.0,99.0 +1989,5,2,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,6.7,93,102100,0,0,294,0,0,0,0,0,0,0,330,1.5,4,2,24.1,77777,9,999999999,139,0.1280,0,88,999.000,999.0,99.0 +1989,5,2,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,7.8,96,102200,0,34,300,0,0,0,0,0,0,0,110,2.1,6,3,24.1,77777,9,999999999,150,0.1280,0,88,999.000,999.0,99.0 +1989,5,2,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,7.8,93,102100,114,1345,305,38,47,34,4100,2400,3900,710,170,1.5,9,4,32.2,77777,9,999999999,150,0.0630,0,88,999.000,999.0,99.0 +1989,5,2,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,8.3,90,102200,347,1345,313,100,39,90,11000,3400,10100,2360,360,1.5,9,5,32.2,6100,9,999999999,150,0.0630,0,88,999.000,999.0,99.0 +1989,5,2,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,8.9,86,102200,576,1345,318,241,132,185,26300,13200,20600,4400,270,3.6,7,5,40.2,7620,9,999999999,160,0.0630,0,88,999.000,999.0,99.0 +1989,5,2,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,9.4,72,102200,784,1345,321,496,667,109,53400,67500,13900,2610,180,2.1,3,1,40.2,77777,9,999999999,160,0.0630,0,88,999.000,999.0,99.0 +1989,5,2,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,8.9,63,102200,957,1345,328,680,842,83,71200,84100,11300,2300,250,2.6,1,1,40.2,77777,9,999999999,160,0.0630,0,88,999.000,999.0,99.0 +1989,5,2,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,8.3,54,102200,1081,1345,335,791,880,85,82700,88200,11600,2890,240,3.1,1,1,56.3,77777,9,999999999,150,0.0630,0,88,999.000,999.0,99.0 +1989,5,2,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,3.9,37,102100,1150,1345,335,844,874,98,87800,87700,12600,3740,230,2.1,1,1,56.3,77777,9,999999999,120,0.0630,0,88,999.000,999.0,99.0 +1989,5,2,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,4.4,35,102100,1158,1345,344,851,870,104,88400,87300,13100,3970,170,2.1,1,1,56.3,77777,9,999999999,120,0.0630,0,88,999.000,999.0,99.0 +1989,5,2,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,3.3,32,102000,1104,1345,343,821,885,96,85500,88700,12500,3270,20,2.1,1,1,56.3,77777,9,999999999,110,0.0630,0,88,999.000,999.0,99.0 +1989,5,2,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,6.7,39,102000,993,1345,349,585,656,102,63600,66700,14300,3140,300,3.6,3,1,56.3,77777,9,999999999,139,0.0630,0,88,999.000,999.0,99.0 +1989,5,2,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,7.2,41,101900,832,1345,354,542,625,157,57100,62800,18200,3790,280,5.2,5,2,56.3,77777,9,999999999,139,0.0630,0,88,999.000,999.0,99.0 +1989,5,2,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,5.6,35,101900,632,1345,344,429,741,84,45100,72000,11200,1740,360,2.6,4,0,64.4,77777,9,999999999,129,0.0630,0,88,999.000,999.0,99.0 +1989,5,2,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,5.6,36,101900,407,1345,341,241,618,58,25800,55200,9100,1130,350,2.6,4,0,64.4,77777,9,999999999,129,0.0630,0,88,999.000,999.0,99.0 +1989,5,2,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,5.6,40,101900,173,1345,340,68,312,30,7200,19800,4700,550,330,3.1,3,1,64.4,77777,9,999999999,129,0.0630,0,88,999.000,999.0,99.0 +1989,5,2,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,6.7,50,101900,8,392,331,6,19,3,0,0,0,0,310,2.6,3,1,24.1,77777,9,999999999,139,0.0630,0,88,999.000,999.0,99.0 +1989,5,2,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,8.3,65,101900,0,0,317,0,0,0,0,0,0,0,300,2.6,2,0,24.1,77777,9,999999999,150,0.1280,0,88,999.000,999.0,99.0 +1989,5,2,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,8.9,75,102000,0,0,310,0,0,0,0,0,0,0,280,3.6,0,0,24.1,77777,9,999999999,160,0.1280,0,88,999.000,999.0,99.0 +1989,5,2,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,9.4,83,102000,0,0,306,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,160,0.1280,0,88,999.000,999.0,99.0 +1989,5,2,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,8.3,80,102000,0,0,302,0,0,0,0,0,0,0,70,2.1,0,0,24.1,77777,9,999999999,150,0.1280,0,88,999.000,999.0,99.0 +1989,5,3,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,8.3,83,102000,0,0,300,0,0,0,0,0,0,0,90,1.5,0,0,24.1,77777,9,999999999,150,0.1280,0,88,999.000,999.0,99.0 +1989,5,3,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,8.3,86,102000,0,0,298,0,0,0,0,0,0,0,120,2.1,0,0,24.1,77777,9,999999999,150,0.1280,0,88,999.000,999.0,99.0 +1989,5,3,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,6.1,80,102000,0,0,290,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,129,0.1280,0,88,999.000,999.0,99.0 +1989,5,3,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,6.1,83,102000,0,0,288,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,129,0.1280,0,88,999.000,999.0,99.0 +1989,5,3,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,6.7,83,102000,0,78,297,0,0,0,0,0,0,0,40,2.1,3,1,24.1,77777,9,999999999,139,0.1280,0,88,999.000,999.0,99.0 +1989,5,3,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,6.7,83,102000,119,1344,304,38,39,34,4100,2000,3900,710,180,2.1,8,3,64.4,77777,9,999999999,139,0.1100,0,88,999.000,999.0,99.0 +1989,5,3,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,7.8,77,102100,352,1344,317,147,219,90,15700,18700,10800,1730,20,1.5,8,4,64.4,77777,9,999999999,150,0.1100,0,88,999.000,999.0,99.0 +1989,5,3,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,7.8,72,102000,581,1344,331,222,180,144,24000,18200,16100,2980,50,1.5,9,7,64.4,6100,9,999999999,150,0.1100,0,88,999.000,999.0,99.0 +1989,5,3,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,8.3,69,102000,788,1344,333,293,98,236,32300,9900,26500,7660,320,1.5,8,6,64.4,6100,9,999999999,150,0.1100,0,88,999.000,999.0,99.0 +1989,5,3,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,10.0,63,102000,960,1344,355,601,451,280,63600,46700,30200,8170,320,2.6,8,7,64.4,6100,9,999999999,170,0.1100,0,88,999.000,999.0,99.0 +1989,5,3,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,9.4,51,102000,1084,1344,361,658,499,257,71600,52100,29500,9430,40,2.1,6,5,64.4,6100,9,999999999,160,0.1100,0,88,999.000,999.0,99.0 +1989,5,3,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,10.0,55,102000,1153,1344,362,707,381,381,77400,41400,41900,16020,250,2.1,8,6,64.4,6100,9,999999999,170,0.1100,0,88,999.000,999.0,99.0 +1989,5,3,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,9.4,46,102000,1160,1344,372,665,417,306,71800,43600,34100,13930,10,3.1,8,6,64.4,6100,9,999999999,160,0.1100,0,88,999.000,999.0,99.0 +1989,5,3,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,10.0,43,101900,1107,1344,378,744,597,254,78200,60200,28500,9590,60,2.6,6,5,64.4,6100,9,999999999,170,0.1100,0,88,999.000,999.0,99.0 +1989,5,3,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,9.4,43,101800,996,1344,369,588,480,234,63800,50000,26700,7130,210,6.2,5,3,64.4,77777,9,999999999,160,0.1100,0,88,999.000,999.0,99.0 +1989,5,3,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,9.4,46,101800,835,1344,372,333,79,284,36600,8000,31600,9260,210,6.7,6,6,64.4,6100,9,999999999,160,0.1100,0,88,999.000,999.0,99.0 +1989,5,3,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,10.0,51,101800,635,1344,362,330,375,154,35100,37200,17500,3160,210,6.2,7,4,64.4,6100,9,999999999,170,0.1100,0,88,999.000,999.0,99.0 +1989,5,3,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,10.0,55,101800,411,1344,353,223,431,94,23800,38300,12100,1750,210,4.1,5,3,56.3,77777,9,999999999,170,0.1100,0,88,999.000,999.0,99.0 +1989,5,3,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,11.1,63,101800,177,1344,345,61,151,42,6600,8800,5400,760,200,4.1,4,2,56.3,77777,9,999999999,179,0.1100,0,88,999.000,999.0,99.0 +1989,5,3,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,11.7,70,101800,10,415,344,1,3,1,0,0,0,0,190,3.1,4,3,32.2,77777,9,999999999,189,0.1100,0,88,999.000,999.0,99.0 +1989,5,3,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,12.2,73,101900,0,0,353,0,0,0,0,0,0,0,190,3.6,6,6,24.1,3050,9,999999999,189,0.1280,0,88,999.000,999.0,99.0 +1989,5,3,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,12.8,78,101900,0,0,352,0,0,0,0,0,0,0,200,3.6,8,6,24.1,7620,9,999999999,200,0.1280,0,88,999.000,999.0,99.0 +1989,5,3,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,13.3,81,101900,0,0,362,0,0,0,0,0,0,0,220,3.1,8,8,24.1,2290,9,999999999,209,0.1280,0,88,999.000,999.0,99.0 +1989,5,3,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,13.9,87,102000,0,0,378,0,0,0,0,0,0,0,200,2.1,10,10,24.1,940,9,999999999,209,0.1280,0,88,999.000,999.0,99.0 +1989,5,4,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,13.3,84,102000,0,0,377,0,0,0,0,0,0,0,90,2.1,10,10,24.1,580,9,999999999,209,0.1290,0,88,999.000,999.0,99.0 +1989,5,4,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,12.2,84,102000,0,0,370,0,0,0,0,0,0,0,90,2.6,10,10,24.1,550,9,999999999,189,0.1290,0,88,999.000,999.0,99.0 +1989,5,4,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,13.3,93,102000,0,0,368,0,0,0,0,0,0,0,100,2.1,10,10,24.1,490,9,999999999,200,0.1290,0,88,999.000,999.0,99.0 +1989,5,4,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,12.8,90,102000,0,0,368,0,0,0,0,0,0,0,90,3.1,10,10,24.1,490,9,999999999,200,0.1290,0,88,999.000,999.0,99.0 +1989,5,4,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,13.3,90,102000,1,101,371,0,0,0,0,0,0,0,100,3.1,10,10,24.1,520,9,999999999,209,0.1290,0,88,999.000,999.0,99.0 +1989,5,4,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,13.3,90,102000,124,1344,371,24,5,23,2700,0,2700,810,100,2.6,10,10,32.2,640,9,999999999,209,0.0560,0,88,999.000,999.0,99.0 +1989,5,4,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,13.3,87,102000,357,1344,374,69,3,68,7900,100,7900,2650,40,2.1,10,10,32.2,910,9,999999999,209,0.0560,0,88,999.000,999.0,99.0 +1989,5,4,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,13.9,84,102000,585,1344,381,147,3,146,16900,200,16800,5890,70,2.6,10,10,64.4,1010,9,999999999,209,0.0560,0,88,999.000,999.0,99.0 +1989,5,4,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,14.4,81,102000,792,1344,377,276,119,206,30600,12500,23200,5510,90,2.1,10,9,64.4,1010,9,999999999,220,0.0560,0,88,999.000,999.0,99.0 +1989,5,4,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,13.3,66,102000,964,1344,368,584,432,275,61900,44800,29700,8060,30,2.6,9,6,64.4,1100,9,999999999,209,0.0560,0,88,999.000,999.0,99.0 +1989,5,4,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,13.3,59,102000,1088,1344,368,734,716,155,77300,72100,18800,5290,10,2.6,4,3,64.4,77777,9,999999999,209,0.0560,0,88,999.000,999.0,99.0 +1989,5,4,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,13.9,57,101900,1156,1344,371,847,814,148,90500,82400,19400,6230,10,2.6,2,2,64.4,77777,9,999999999,209,0.0560,0,88,999.000,999.0,99.0 +1989,5,4,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,13.9,54,101800,1163,1344,371,886,937,76,92800,94200,11100,3250,360,3.1,1,1,64.4,77777,9,999999999,209,0.0560,0,88,999.000,999.0,99.0 +1989,5,4,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,12.2,45,101700,1110,1344,375,820,885,91,85500,88800,12100,3220,360,2.6,1,1,64.4,77777,9,999999999,189,0.0560,0,88,999.000,999.0,99.0 +1989,5,4,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,13.3,47,101600,999,1344,379,666,777,91,69600,77700,11800,2570,350,3.1,1,1,64.4,77777,9,999999999,209,0.0560,0,88,999.000,999.0,99.0 +1989,5,4,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,13.3,45,101600,838,1344,391,547,632,155,57800,63600,18100,3780,300,2.6,7,3,64.4,77777,9,999999999,200,0.0560,0,88,999.000,999.0,99.0 +1989,5,4,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,12.2,44,101500,639,1344,387,402,621,109,42400,60800,13500,2270,330,3.1,5,3,64.4,77777,9,999999999,189,0.0560,0,88,999.000,999.0,99.0 +1989,5,4,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,10.6,40,101500,414,1344,381,218,479,72,22800,42700,9600,1360,330,2.1,5,3,64.4,77777,9,999999999,170,0.0560,0,88,999.000,999.0,99.0 +1989,5,4,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,11.1,48,101500,181,1344,374,62,171,40,6600,10500,5200,710,10,2.1,7,4,64.4,7620,9,999999999,179,0.0560,0,88,999.000,999.0,99.0 +1989,5,4,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,11.7,57,101400,11,437,366,7,12,5,0,0,0,0,0,0.0,7,5,24.1,7620,9,999999999,189,0.0560,0,88,999.000,999.0,99.0 +1989,5,4,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,11.7,63,101500,0,0,349,0,0,0,0,0,0,0,0,0.0,4,2,24.1,77777,9,999999999,189,0.1290,0,88,999.000,999.0,99.0 +1989,5,4,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,11.7,75,101500,0,0,325,0,0,0,0,0,0,0,100,3.1,2,0,24.1,77777,9,999999999,189,0.1290,0,88,999.000,999.0,99.0 +1989,5,4,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,11.7,81,101500,0,0,331,0,0,0,0,0,0,0,80,2.6,2,2,24.1,77777,9,999999999,189,0.1290,0,88,999.000,999.0,99.0 +1989,5,4,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,12.2,81,101500,0,0,330,0,0,0,0,0,0,0,70,2.1,1,1,24.1,77777,9,999999999,189,0.1290,0,88,999.000,999.0,99.0 +1989,5,5,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,11.7,84,101500,0,0,328,0,0,0,0,0,0,0,80,1.5,2,2,24.1,77777,9,999999999,189,0.1290,0,88,999.000,999.0,99.0 +1989,5,5,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,11.7,81,101500,0,0,359,0,0,0,0,0,0,0,120,2.1,10,9,24.1,4270,9,999999999,189,0.1290,0,88,999.000,999.0,99.0 +1989,5,5,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,11.7,84,101500,0,0,356,0,0,0,0,0,0,0,290,2.1,10,9,24.1,4270,9,999999999,189,0.1290,0,88,999.000,999.0,99.0 +1989,5,5,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,11.7,84,101400,0,0,356,0,0,0,0,0,0,0,0,0.0,10,9,24.1,3660,9,999999999,189,0.1290,0,88,999.000,999.0,99.0 +1989,5,5,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,12.2,87,101400,1,146,367,0,0,0,0,0,0,0,160,2.1,10,10,64.4,3660,9,999999999,189,0.1910,0,88,999.000,999.0,99.0 +1989,5,5,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,12.2,84,101500,129,1343,370,23,1,23,2600,0,2600,820,120,1.5,10,10,64.4,3660,9,999999999,189,0.1910,0,88,999.000,999.0,99.0 +1989,5,5,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,12.8,87,101600,361,1343,371,76,5,74,8600,200,8600,2840,0,0.0,10,10,64.4,3660,9,999999999,200,0.1910,0,88,999.000,999.0,99.0 +1989,5,5,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,13.9,90,101600,589,1343,375,106,8,102,12400,500,12200,4470,300,1.5,10,10,40.2,2440,9,999999999,209,0.1910,0,88,999.000,999.0,99.0 +1989,5,5,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,13.9,87,101600,796,1343,378,119,6,115,14400,400,14100,5580,0,0.0,10,10,64.4,2440,9,999999999,209,0.1910,0,88,999.000,999.0,99.0 +1989,5,5,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,14.4,87,101600,967,1343,382,161,4,158,19600,300,19400,7880,0,0.0,10,10,64.4,2440,9,999999999,220,0.1910,0,88,999.000,999.0,99.0 +1989,5,5,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,14.4,84,101600,1091,1343,384,325,3,322,38100,300,37900,14430,330,2.6,10,10,64.4,2440,9,999999999,220,0.1910,0,88,999.000,999.0,99.0 +1989,5,5,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,14.4,73,101500,1158,1343,385,469,47,428,51700,4900,47500,18690,330,2.6,9,9,64.4,2900,9,999999999,220,0.1910,0,88,999.000,999.0,99.0 +1989,5,5,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,16.1,69,101500,1166,1343,394,615,164,473,67100,17400,52000,20210,300,2.1,8,8,64.4,3350,9,999999999,240,0.1910,0,88,999.000,999.0,99.0 +1989,5,5,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,13.9,54,101500,1112,1343,394,538,221,356,59000,24000,39100,13580,290,3.6,7,7,56.3,3050,9,999999999,209,0.1910,0,88,999.000,999.0,99.0 +1989,5,5,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,13.3,48,101400,1002,1343,399,508,166,385,55400,17600,42300,12490,290,4.1,7,7,64.4,2900,9,999999999,200,0.1910,0,88,999.000,999.0,99.0 +1989,5,5,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,12.8,45,101400,841,1343,387,546,491,240,57600,50400,26000,5960,280,5.2,4,3,64.4,77777,9,999999999,200,0.1910,0,88,999.000,999.0,99.0 +1989,5,5,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,13.9,49,101400,642,1343,389,373,372,196,39900,38200,21600,4360,300,4.1,7,3,64.4,77777,9,999999999,209,0.1910,0,88,999.000,999.0,99.0 +1989,5,5,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,14.4,60,101300,418,1343,375,213,252,136,22500,23000,15300,2810,330,4.6,10,3,64.4,77777,9,999999999,220,0.1910,0,88,999.000,999.0,99.0 +1989,5,5,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,13.9,61,101400,186,1343,372,64,40,58,6900,2900,6500,1340,310,4.1,10,4,64.4,77777,9,999999999,209,0.1910,0,88,999.000,999.0,99.0 +1989,5,5,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,13.3,66,101400,12,481,362,5,0,5,0,0,0,0,330,2.6,10,4,24.1,77777,9,999999999,209,0.1910,0,88,999.000,999.0,99.0 +1989,5,5,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,13.3,68,101400,0,0,357,0,0,0,0,0,0,0,350,2.1,10,3,24.1,77777,9,999999999,200,0.1290,0,88,999.000,999.0,99.0 +1989,5,5,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,13.3,70,101500,0,0,360,0,0,0,0,0,0,0,320,2.6,10,5,24.1,77777,9,999999999,200,0.1290,0,88,999.000,999.0,99.0 +1989,5,5,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,13.3,75,101500,0,0,349,0,0,0,0,0,0,0,360,1.5,7,3,24.1,77777,9,999999999,200,0.1290,0,88,999.000,999.0,99.0 +1989,5,5,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,13.9,78,101600,0,0,346,0,0,0,0,0,0,0,330,2.1,6,2,24.1,77777,9,999999999,209,0.1290,0,88,999.000,999.0,99.0 +1989,5,6,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,13.9,93,101500,0,0,339,0,0,0,0,0,0,0,0,0.0,7,4,24.1,7620,9,999999999,209,0.1300,0,88,999.000,999.0,99.0 +1989,5,6,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,12.8,93,101500,0,0,335,0,0,0,0,0,0,0,40,2.1,9,5,24.1,7620,9,999999999,200,0.1300,0,88,999.000,999.0,99.0 +1989,5,6,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,12.8,93,101500,0,0,333,0,0,0,0,0,0,0,0,0.0,8,4,24.1,77777,9,999999999,200,0.1300,0,88,999.000,999.0,99.0 +1989,5,6,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,12.8,93,101600,0,0,330,0,0,0,0,0,0,0,0,0.0,6,3,24.1,77777,9,999999999,200,0.1300,0,88,999.000,999.0,99.0 +1989,5,6,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,12.2,93,101600,1,168,332,0,0,0,0,0,0,0,50,2.1,8,5,32.2,7620,9,999999999,189,0.1120,0,88,999.000,999.0,99.0 +1989,5,6,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,13.9,97,101600,134,1342,342,32,20,30,3500,1300,3400,730,60,2.6,8,6,32.2,4570,9,999999999,209,0.1120,0,88,999.000,999.0,99.0 +1989,5,6,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,14.4,93,101600,366,1342,345,160,253,92,17200,22000,11200,1770,0,0.0,8,5,32.2,3350,9,999999999,220,0.1120,0,88,999.000,999.0,99.0 +1989,5,6,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,14.4,78,101700,593,1342,379,217,48,197,23900,4700,21800,5570,330,2.1,9,9,40.2,2440,9,999999999,220,0.1120,0,88,999.000,999.0,99.0 +1989,5,6,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,14.4,76,101700,799,1342,382,318,41,293,34900,4200,32400,9180,300,3.6,9,9,24.1,2440,9,999999999,220,0.1120,0,88,999.000,999.0,99.0 +1989,5,6,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,13.3,68,101700,970,1342,395,323,7,318,37300,700,36800,13530,290,2.6,10,10,24.1,2440,9,999999999,200,0.1120,0,88,999.000,999.0,99.0 +1989,5,6,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,13.9,64,101700,1093,1342,405,324,5,320,38100,500,37700,14380,0,0.0,10,10,24.1,3050,9,999999999,209,0.1120,0,88,999.000,999.0,99.0 +1989,5,6,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,14.4,58,101700,1161,1342,391,450,80,381,49700,8200,42600,17040,360,2.1,10,7,24.1,3660,9,999999999,220,0.1120,0,88,999.000,999.0,99.0 +1989,5,6,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,15.6,58,101700,1168,1342,425,320,12,310,38100,1000,37200,14320,260,2.1,10,10,24.1,3660,9,999999999,229,0.1120,0,88,999.000,999.0,99.0 +1989,5,6,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,15.0,60,101700,1115,1342,418,347,6,341,40600,600,40100,15130,290,3.6,10,10,24.1,3660,9,999999999,229,0.1120,0,88,999.000,999.0,99.0 +1989,5,6,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,16.1,60,101700,1004,1342,426,314,17,301,36500,1500,35400,13290,280,4.1,10,10,19.3,3660,9,999999999,240,0.1120,0,88,999.000,999.0,99.0 +1989,5,6,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,15.6,60,101600,844,1342,423,288,5,285,32900,500,32600,11560,290,4.6,10,10,32.2,3660,9,999999999,229,0.1120,0,88,999.000,999.0,99.0 +1989,5,6,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,15.6,71,101600,645,1342,407,195,7,192,22200,600,21900,7540,310,6.7,10,10,32.2,3660,9,999999999,229,0.1120,0,88,999.000,999.0,99.0 +1989,5,6,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,16.1,71,101600,422,1342,411,121,0,121,13500,0,13500,4340,340,4.1,10,10,32.2,3660,9,999999999,240,0.1120,0,88,999.000,999.0,99.0 +1989,5,6,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,15.0,71,101700,190,1342,384,58,29,54,6400,2100,6100,1280,280,2.1,9,8,32.2,3660,9,999999999,229,0.1120,0,88,999.000,999.0,99.0 +1989,5,6,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,14.4,71,101700,14,503,380,5,1,5,0,0,0,0,320,3.6,10,8,24.1,3350,9,999999999,220,0.1120,0,88,999.000,999.0,99.0 +1989,5,6,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,14.4,78,101800,0,0,366,0,0,0,0,0,0,0,320,3.1,7,7,24.1,3660,9,999999999,220,0.1300,0,88,999.000,999.0,99.0 +1989,5,6,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,13.9,78,101800,0,0,355,0,0,0,0,0,0,0,320,3.6,5,5,24.1,77777,9,999999999,209,0.1300,0,88,999.000,999.0,99.0 +1989,5,6,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,13.3,81,101800,0,0,329,0,0,0,0,0,0,0,320,4.6,2,0,24.1,77777,9,999999999,209,0.1300,0,88,999.000,999.0,99.0 +1989,5,6,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,13.3,87,101900,0,0,325,0,0,0,0,0,0,0,340,3.6,3,0,24.1,77777,9,999999999,209,0.1300,0,88,999.000,999.0,99.0 +1989,5,7,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,12.8,90,101900,0,0,329,0,0,0,0,0,0,0,340,3.1,5,2,24.1,77777,9,999999999,200,0.1300,0,88,999.000,999.0,99.0 +1989,5,7,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,12.8,87,102000,0,0,347,0,0,0,0,0,0,0,310,3.1,8,7,24.1,370,9,999999999,200,0.1300,0,88,999.000,999.0,99.0 +1989,5,7,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,12.8,90,102000,0,0,350,0,0,0,0,0,0,0,300,3.1,10,8,16.1,370,9,999999999,200,0.1300,0,88,999.000,999.0,99.0 +1989,5,7,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,12.2,93,102000,0,0,339,0,0,0,0,0,0,0,310,2.6,10,7,11.3,370,9,999999999,189,0.1300,0,88,999.000,999.0,99.0 +1989,5,7,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,12.2,90,102000,2,190,364,0,0,0,0,0,0,0,300,2.6,10,10,12.9,370,9,999999999,189,0.1060,0,88,999.000,999.0,99.0 +1989,5,7,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,12.2,87,102000,139,1342,367,27,1,27,3100,0,3100,950,300,3.1,10,10,16.1,370,9,999999999,189,0.1060,0,88,999.000,999.0,99.0 +1989,5,7,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,12.2,84,102000,370,1342,370,110,6,108,12200,300,12100,3750,320,3.6,10,10,19.3,400,9,999999999,189,0.1060,0,88,999.000,999.0,99.0 +1989,5,7,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,12.2,81,102000,597,1342,373,150,7,147,17200,500,17000,5990,300,2.6,10,10,19.3,400,9,999999999,189,0.1060,0,88,999.000,999.0,99.0 +1989,5,7,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,12.8,81,102000,803,1342,376,227,2,226,26200,200,26100,9610,340,2.6,10,10,19.3,430,9,999999999,200,0.1060,0,88,999.000,999.0,99.0 +1989,5,7,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,13.3,78,102000,973,1342,383,302,6,297,35000,500,34600,12950,320,3.1,10,10,19.3,430,9,999999999,209,0.1060,0,88,999.000,999.0,99.0 +1989,5,7,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,13.9,73,102000,1096,1342,364,656,404,326,69600,42100,35200,12560,300,3.1,9,6,24.1,7620,9,999999999,209,0.1060,0,88,999.000,999.0,99.0 +1989,5,7,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,13.9,68,102000,1164,1342,374,633,229,435,69500,24400,48300,18540,280,3.6,9,7,32.2,6100,9,999999999,209,0.1060,0,88,999.000,999.0,99.0 +1989,5,7,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,13.9,64,101900,1171,1342,366,833,652,265,87800,65900,30200,12180,320,3.6,6,3,40.2,77777,9,999999999,209,0.1060,0,88,999.000,999.0,99.0 +1989,5,7,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,13.9,57,101800,1117,1342,366,835,846,132,86100,84600,15500,4000,300,4.1,2,1,64.4,77777,9,999999999,209,0.1060,0,88,999.000,999.0,99.0 +1989,5,7,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,9.4,40,101700,1007,1342,359,756,847,122,80900,85700,16500,3710,340,4.1,1,0,64.4,77777,9,999999999,160,0.1060,0,88,999.000,999.0,99.0 +1989,5,7,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,8.9,37,101700,847,1342,361,608,803,103,64700,80500,13800,2540,350,5.2,0,0,64.4,77777,9,999999999,160,0.1060,0,88,999.000,999.0,99.0 +1989,5,7,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,7.2,34,101700,649,1342,356,434,731,84,45800,71300,11200,1780,330,5.2,0,0,64.4,77777,9,999999999,139,0.1060,0,88,999.000,999.0,99.0 +1989,5,7,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,10.0,45,101700,426,1342,354,245,587,62,26100,53100,9200,1210,350,5.2,0,0,64.4,77777,9,999999999,170,0.1060,0,88,999.000,999.0,99.0 +1989,5,7,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,12.8,59,101700,194,1342,349,79,304,37,8300,20200,5400,660,330,5.2,0,0,64.4,77777,9,999999999,200,0.1060,0,88,999.000,999.0,99.0 +1989,5,7,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,12.8,66,101700,15,526,341,7,15,5,0,0,0,0,320,4.6,0,0,24.1,77777,9,999999999,200,0.1060,0,88,999.000,999.0,99.0 +1989,5,7,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,11.7,68,101800,0,0,333,0,0,0,0,0,0,0,330,5.7,0,0,24.1,77777,9,999999999,189,0.1300,0,88,999.000,999.0,99.0 +1989,5,7,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,11.7,75,101800,0,0,325,0,0,0,0,0,0,0,330,4.6,0,0,24.1,77777,9,999999999,189,0.1300,0,88,999.000,999.0,99.0 +1989,5,7,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,11.1,81,101800,0,0,317,0,0,0,0,0,0,0,320,3.6,0,0,24.1,77777,9,999999999,179,0.1300,0,88,999.000,999.0,99.0 +1989,5,7,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,11.1,87,101800,0,0,312,0,0,0,0,0,0,0,330,3.6,0,0,24.1,77777,9,999999999,179,0.1300,0,88,999.000,999.0,99.0 +1989,5,8,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,10.6,87,101800,0,0,315,0,0,0,0,0,0,0,310,3.1,1,1,24.1,77777,9,999999999,179,0.1310,0,88,999.000,999.0,99.0 +1989,5,8,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,10.6,90,101900,0,0,317,0,0,0,0,0,0,0,330,2.6,2,2,24.1,77777,9,999999999,170,0.1310,0,88,999.000,999.0,99.0 +1989,5,8,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,10.6,90,101900,0,0,337,0,0,0,0,0,0,0,340,2.1,8,8,11.3,340,9,999999999,170,0.1310,0,88,999.000,999.0,99.0 +1989,5,8,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,10.6,90,101900,0,0,354,0,0,0,0,0,0,0,330,3.1,10,10,11.3,340,9,999999999,170,0.1310,0,88,999.000,999.0,99.0 +1989,5,8,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,10.0,86,101900,3,235,344,0,0,0,0,0,0,0,330,3.6,10,9,12.9,340,9,999999999,170,0.0940,0,88,999.000,999.0,99.0 +1989,5,8,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,9.4,83,102000,143,1341,343,31,7,31,3600,0,3600,1060,320,4.6,10,9,16.1,340,9,999999999,160,0.0940,0,88,999.000,999.0,99.0 +1989,5,8,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,9.4,80,102000,374,1341,346,138,54,123,15100,4900,13700,3090,320,5.2,10,9,24.1,400,9,999999999,160,0.0940,0,88,999.000,999.0,99.0 +1989,5,8,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,9.4,78,102000,601,1341,358,182,22,172,20600,1700,19900,6710,340,3.1,10,10,24.1,430,9,999999999,160,0.0940,0,88,999.000,999.0,99.0 +1989,5,8,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,10.0,78,101900,806,1341,362,283,15,274,32200,1400,31300,10950,340,2.1,10,10,24.1,490,9,999999999,170,0.0940,0,88,999.000,999.0,99.0 +1989,5,8,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,10.0,72,101900,976,1341,367,272,0,272,31800,0,31800,12200,340,3.1,10,10,24.1,490,9,999999999,170,0.0940,0,88,999.000,999.0,99.0 +1989,5,8,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,11.1,75,101800,1099,1341,348,619,268,399,67000,29000,43100,15100,280,3.1,9,7,24.1,550,9,999999999,179,0.0940,0,88,999.000,999.0,99.0 +1989,5,8,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,12.2,70,101800,1166,1341,340,874,767,207,93600,78500,25200,9580,340,2.6,8,1,40.2,77777,9,999999999,189,0.0940,0,88,999.000,999.0,99.0 +1989,5,8,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,12.8,61,101700,1173,1341,354,786,686,187,85000,70500,23100,8920,320,2.6,6,1,40.2,77777,9,999999999,200,0.0940,0,88,999.000,999.0,99.0 +1989,5,8,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,12.8,57,101600,1120,1341,359,743,611,234,78600,62000,26800,9310,280,5.2,7,1,48.3,77777,9,999999999,200,0.0940,0,88,999.000,999.0,99.0 +1989,5,8,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,7.2,36,101500,1010,1341,360,716,772,137,75800,77700,17100,4050,340,4.6,5,1,64.4,77777,9,999999999,139,0.0940,0,88,999.000,999.0,99.0 +1989,5,8,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,10.0,42,101300,850,1341,366,579,723,123,62300,73600,15600,3140,350,6.2,5,1,64.4,77777,9,999999999,170,0.0940,0,88,999.000,999.0,99.0 +1989,5,8,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,8.9,40,101200,652,1341,362,409,675,84,43200,65900,11100,1780,350,5.7,3,1,64.4,77777,9,999999999,160,0.0940,0,88,999.000,999.0,99.0 +1989,5,8,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,9.4,46,101200,429,1341,360,231,476,82,24200,42600,10500,1530,320,6.2,4,2,64.4,77777,9,999999999,160,0.0940,0,88,999.000,999.0,99.0 +1989,5,8,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,10.6,55,101200,198,1341,353,74,133,56,7900,8300,6700,1060,320,7.2,8,2,64.4,77777,9,999999999,170,0.0940,0,88,999.000,999.0,99.0 +1989,5,8,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,10.0,61,101200,17,548,337,8,17,6,0,0,0,0,340,7.2,3,1,24.1,77777,9,999999999,170,0.0940,0,88,999.000,999.0,99.0 +1989,5,8,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,10.0,65,101200,0,0,332,0,0,0,0,0,0,0,330,7.2,4,1,24.1,77777,9,999999999,170,0.1310,0,88,999.000,999.0,99.0 +1989,5,8,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,9.4,70,101200,0,0,324,0,0,0,0,0,0,0,320,5.2,4,1,24.1,77777,9,999999999,160,0.1310,0,88,999.000,999.0,99.0 +1989,5,8,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,9.4,75,101200,0,0,319,0,0,0,0,0,0,0,350,4.1,2,1,24.1,77777,9,999999999,160,0.1310,0,88,999.000,999.0,99.0 +1989,5,8,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,9.4,78,101200,0,0,324,0,0,0,0,0,0,0,300,4.6,6,3,24.1,77777,9,999999999,160,0.1310,0,88,999.000,999.0,99.0 +1989,5,9,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,8.9,80,101200,0,0,315,0,0,0,0,0,0,0,340,3.6,5,2,24.1,77777,9,999999999,160,0.1310,0,88,999.000,999.0,99.0 +1989,5,9,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,8.9,83,101200,0,0,313,0,0,0,0,0,0,0,310,4.1,5,2,24.1,77777,9,999999999,160,0.1310,0,88,999.000,999.0,99.0 +1989,5,9,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,8.3,83,101200,0,0,310,0,0,0,0,0,0,0,320,3.6,7,2,24.1,77777,9,999999999,150,0.1310,0,88,999.000,999.0,99.0 +1989,5,9,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,8.3,80,101200,0,0,323,0,0,0,0,0,0,0,320,3.6,8,6,24.1,3050,9,999999999,150,0.1310,0,88,999.000,999.0,99.0 +1989,5,9,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,8.3,77,101100,4,257,351,2,0,2,0,0,0,0,330,6.2,10,10,24.1,700,9,999999999,150,0.1660,0,88,999.000,999.0,99.0 +1989,5,9,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,8.9,80,101100,148,1341,352,31,3,31,3500,0,3500,1070,310,6.2,10,10,24.1,610,9,999999999,160,0.1660,0,88,999.000,999.0,99.0 +1989,5,9,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,8.9,77,101100,378,1341,355,86,2,85,9700,100,9700,3220,320,5.7,10,10,24.1,700,9,999999999,160,0.1660,0,88,999.000,999.0,99.0 +1989,5,9,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,8.9,77,101100,605,1341,355,192,9,188,21700,700,21300,7150,330,5.2,10,10,24.1,850,9,999999999,160,0.1660,0,88,999.000,999.0,99.0 +1989,5,9,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,8.9,72,101100,810,1341,360,214,5,211,24900,400,24600,9190,320,4.1,10,10,24.1,1010,9,999999999,160,0.1660,0,88,999.000,999.0,99.0 +1989,5,9,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,9.4,70,101100,979,1341,367,386,3,384,44000,300,43700,15290,320,4.1,10,10,32.2,1100,9,999999999,160,0.1660,0,88,999.000,999.0,99.0 +1989,5,9,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,8.9,67,101100,1102,1341,366,403,2,401,46500,200,46400,16760,330,2.6,10,10,24.1,850,9,999999999,160,0.1660,0,88,999.000,999.0,99.0 +1989,5,9,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,9.4,72,101000,1169,1341,364,440,1,439,51000,100,50900,18120,300,1.5,10,10,24.1,1100,9,999999999,160,0.1660,0,88,999.000,999.0,99.0 +1989,5,9,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,10.6,81,101000,1176,1341,363,237,3,235,28900,200,28700,11550,250,2.1,10,10,16.1,1070,9,999999999,170,0.1660,0,88,999.000,999.0,99.0 +1989,5,9,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,11.1,87,101100,1122,1341,360,232,1,231,28000,100,28000,11290,180,4.1,10,10,12.9,980,9,999999999,179,0.1660,0,88,999.000,999.0,99.0 +1989,5,9,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,11.7,93,101000,1012,1341,358,210,0,209,25100,0,25100,10120,180,4.1,10,10,12.9,1010,9,999999999,179,0.1660,0,88,999.000,999.0,99.0 +1989,5,9,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,11.7,93,101000,853,1341,358,272,1,271,31100,100,31100,11280,200,2.1,10,10,24.1,1070,9,999999999,179,0.1660,0,88,999.000,999.0,99.0 +1989,5,9,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,9.4,80,101000,655,1341,356,220,0,220,24700,0,24700,8310,300,4.6,10,10,32.2,1100,9,999999999,160,0.1660,0,88,999.000,999.0,99.0 +1989,5,9,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,8.9,75,101000,433,1341,357,134,0,134,14900,0,14900,4700,310,2.6,10,10,48.3,1430,9,999999999,160,0.1660,0,88,999.000,999.0,99.0 +1989,5,9,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,7.8,69,101000,202,1341,356,45,0,45,5100,0,5100,1570,310,6.2,10,10,64.4,1130,9,999999999,150,0.1660,0,88,999.000,999.0,99.0 +1989,5,9,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,6.7,69,101100,19,592,349,7,0,7,0,0,0,0,300,5.7,10,10,48.3,1490,9,999999999,139,0.1660,0,88,999.000,999.0,99.0 +1989,5,9,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,6.7,69,101100,0,0,349,0,0,0,0,0,0,0,290,5.2,10,10,24.1,1680,9,999999999,139,0.1310,0,88,999.000,999.0,99.0 +1989,5,9,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,6.7,72,101200,0,0,347,0,0,0,0,0,0,0,290,5.2,10,10,24.1,1830,9,999999999,139,0.1310,0,88,999.000,999.0,99.0 +1989,5,9,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,6.1,69,101200,0,0,346,0,0,0,0,0,0,0,310,5.7,10,10,24.1,1680,9,999999999,129,0.1310,0,88,999.000,999.0,99.0 +1989,5,9,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,6.1,72,101200,0,0,343,0,0,0,0,0,0,0,280,4.6,10,10,24.1,1680,9,999999999,129,0.1310,0,88,999.000,999.0,99.0 +1989,5,10,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,6.1,74,101300,0,0,341,0,0,0,0,0,0,0,300,3.1,10,10,24.1,1830,9,999999999,129,0.1320,0,88,999.000,999.0,99.0 +1989,5,10,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,6.1,74,101300,0,0,341,0,0,0,0,0,0,0,290,3.1,10,10,24.1,1430,9,999999999,129,0.1320,0,88,999.000,999.0,99.0 +1989,5,10,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,5.6,74,101300,0,0,338,0,0,0,0,0,0,0,300,2.1,10,10,24.1,1680,9,999999999,129,0.1320,0,88,999.000,999.0,99.0 +1989,5,10,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,5.0,69,101300,0,0,340,0,0,0,0,0,0,0,300,6.2,10,10,24.1,880,9,999999999,129,0.1320,0,88,999.000,999.0,99.0 +1989,5,10,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,5.6,80,101300,4,279,332,1,0,1,0,0,0,0,280,3.6,10,10,24.1,880,9,999999999,129,0.1950,0,88,999.000,999.0,99.0 +1989,5,10,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,5.6,74,101400,152,1340,321,20,3,19,2300,0,2300,730,320,4.6,8,8,32.2,2130,9,999999999,129,0.1950,0,88,999.000,999.0,99.0 +1989,5,10,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,5.0,69,101400,382,1340,315,120,37,110,13200,3300,12300,2870,260,3.6,7,6,32.2,2290,9,999999999,129,0.1950,0,88,999.000,999.0,99.0 +1989,5,10,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,5.0,62,101500,608,1340,331,215,117,162,23700,11900,18300,3910,270,2.6,8,8,40.2,1130,9,999999999,129,0.1950,0,88,999.000,999.0,99.0 +1989,5,10,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,5.0,57,101500,813,1340,353,240,4,238,27700,300,27500,10040,290,3.6,10,10,48.3,1100,9,999999999,120,0.1950,0,88,999.000,999.0,99.0 +1989,5,10,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,5.0,62,101500,982,1340,347,189,4,187,22900,300,22700,9140,300,4.1,10,10,40.2,1100,9,999999999,129,0.1950,0,88,999.000,999.0,99.0 +1989,5,10,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,7.2,64,101500,1104,1340,341,525,192,367,57900,20500,41000,13910,320,2.1,8,8,40.2,1070,9,999999999,139,0.1950,0,88,999.000,999.0,99.0 +1989,5,10,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,6.7,64,101500,1171,1340,338,700,426,329,75200,44500,36200,15750,230,3.6,8,8,32.2,1680,9,999999999,139,0.1950,0,88,999.000,999.0,99.0 +1989,5,10,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,5.0,53,101500,1178,1340,348,695,388,354,74000,40500,38400,17420,340,3.1,9,9,40.2,1370,9,999999999,120,0.1950,0,88,999.000,999.0,99.0 +1989,5,10,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,10.0,67,101500,1125,1340,355,609,234,413,66800,24900,45900,16270,360,4.1,8,8,48.3,1430,9,999999999,170,0.1950,0,88,999.000,999.0,99.0 +1989,5,10,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,5.0,46,101500,1015,1340,347,325,77,266,35900,7800,29900,10450,240,7.2,7,7,40.2,1680,9,999999999,129,0.1950,0,88,999.000,999.0,99.0 +1989,5,10,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,5.0,50,101500,856,1340,341,538,382,295,57800,40800,31700,7850,260,7.7,7,7,64.4,2590,9,999999999,129,0.1950,0,88,999.000,999.0,99.0 +1989,5,10,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,5.0,55,101600,658,1340,346,238,53,212,26100,5300,23500,6280,280,7.2,9,9,64.4,2440,9,999999999,129,0.1950,0,88,999.000,999.0,99.0 +1989,5,10,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,3.9,51,101600,437,1340,332,170,85,143,18700,7900,16100,3730,270,7.7,7,7,64.4,2290,9,999999999,120,0.1950,0,88,999.000,999.0,99.0 +1989,5,10,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,4.4,59,101600,206,1340,325,63,36,58,6900,2700,6500,1390,270,6.2,7,7,64.4,1830,9,999999999,120,0.1950,0,88,999.000,999.0,99.0 +1989,5,10,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,2.8,61,101700,20,614,305,6,2,5,0,0,0,0,280,3.6,4,4,64.4,77777,9,999999999,110,0.1950,0,88,999.000,999.0,99.0 +1989,5,10,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,4.4,66,101800,0,0,339,0,0,0,0,0,0,0,280,3.6,10,10,24.1,1490,9,999999999,120,0.1320,0,88,999.000,999.0,99.0 +1989,5,10,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,3.9,64,101800,0,0,338,0,0,0,0,0,0,0,300,4.6,10,10,24.1,1680,9,999999999,120,0.1320,0,88,999.000,999.0,99.0 +1989,5,10,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,4.4,69,101900,0,0,336,0,0,0,0,0,0,0,290,2.6,10,10,24.1,1680,9,999999999,120,0.1320,0,88,999.000,999.0,99.0 +1989,5,10,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,4.4,69,101900,0,0,336,0,0,0,0,0,0,0,310,3.1,10,10,24.1,1460,9,999999999,120,0.1320,0,88,999.000,999.0,99.0 +1989,5,11,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,4.4,71,101900,0,0,333,0,0,0,0,0,0,0,260,3.1,10,10,24.1,1130,9,999999999,120,0.1320,0,88,999.000,999.0,99.0 +1989,5,11,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,5.6,80,101900,0,0,332,0,0,0,0,0,0,0,230,2.1,10,10,24.1,1980,9,999999999,129,0.1320,0,88,999.000,999.0,99.0 +1989,5,11,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,4.4,71,101900,0,0,312,0,0,0,0,0,0,0,20,3.1,7,7,24.1,1100,9,999999999,120,0.1320,0,88,999.000,999.0,99.0 +1989,5,11,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,4.4,83,102000,0,0,297,0,0,0,0,0,0,0,50,2.1,5,5,24.1,77777,9,999999999,120,0.1320,0,88,999.000,999.0,99.0 +1989,5,11,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,3.9,89,102000,5,324,278,0,2,0,0,0,0,0,100,2.1,1,1,32.2,77777,9,999999999,120,0.1450,0,88,999.000,999.0,99.0 +1989,5,11,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,5.0,86,102000,156,1339,286,52,163,34,5600,9200,4500,600,0,0.0,1,1,32.2,77777,9,999999999,129,0.1450,0,88,999.000,999.0,99.0 +1989,5,11,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,5.6,74,102000,386,1339,298,197,421,77,21200,36800,10600,1400,0,0.0,3,1,40.2,77777,9,999999999,129,0.1450,0,88,999.000,999.0,99.0 +1989,5,11,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,5.6,66,102000,612,1339,313,386,541,139,41100,53400,16700,2800,360,1.5,3,3,40.2,77777,9,999999999,129,0.1450,0,88,999.000,999.0,99.0 +1989,5,11,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,2.8,51,102000,816,1339,311,583,716,148,61500,72000,17600,3540,340,1.5,2,2,40.2,77777,9,999999999,110,0.1450,0,88,999.000,999.0,99.0 +1989,5,11,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,2.8,49,102000,985,1339,317,763,696,252,79000,69500,27900,7250,300,2.1,10,3,40.2,77777,9,999999999,110,0.1450,0,88,999.000,999.0,99.0 +1989,5,11,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,2.8,44,102000,1107,1339,324,804,654,264,84100,65800,29600,10030,50,3.1,10,3,48.3,77777,9,999999999,110,0.1450,0,88,999.000,999.0,99.0 +1989,5,11,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,2.8,44,102000,1173,1339,329,903,660,325,97000,69000,36500,15690,330,3.1,10,5,48.3,77777,9,999999999,110,0.1450,0,88,999.000,999.0,99.0 +1989,5,11,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,2.8,41,101900,1180,1339,329,840,680,241,89200,69100,28100,11630,310,3.1,7,3,48.3,77777,9,999999999,110,0.1450,0,88,999.000,999.0,99.0 +1989,5,11,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,1.7,37,101900,1127,1339,336,811,598,308,87100,62400,34400,12880,350,3.1,5,5,48.3,77777,9,999999999,100,0.1450,0,88,999.000,999.0,99.0 +1989,5,11,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,1.7,37,101900,1017,1339,348,407,108,325,44900,11500,36100,10790,250,2.6,8,8,48.3,1980,9,999999999,100,0.1450,0,88,999.000,999.0,99.0 +1989,5,11,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,2.8,40,101800,859,1339,344,525,439,245,55500,45200,26500,6220,310,5.2,7,7,64.4,2590,9,999999999,110,0.1450,0,88,999.000,999.0,99.0 +1989,5,11,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,3.3,41,101800,662,1339,341,383,469,153,41000,46900,17800,3180,280,4.1,6,6,64.4,2590,9,999999999,110,0.1450,0,88,999.000,999.0,99.0 +1989,5,11,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,5.0,55,101800,440,1339,330,197,176,140,21400,16500,16000,3170,340,6.7,6,6,64.4,2590,9,999999999,129,0.1450,0,88,999.000,999.0,99.0 +1989,5,11,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,5.6,60,101900,210,1339,327,69,93,55,7600,6500,6600,1170,340,4.1,6,6,64.4,2590,9,999999999,129,0.1450,0,88,999.000,999.0,99.0 +1989,5,11,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,5.6,64,101900,22,636,326,7,2,6,0,0,0,0,330,4.6,7,7,64.4,2740,9,999999999,129,0.1450,0,88,999.000,999.0,99.0 +1989,5,11,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,5.6,66,102000,0,0,315,0,0,0,0,0,0,0,320,4.6,4,4,24.1,77777,9,999999999,129,0.1320,0,88,999.000,999.0,99.0 +1989,5,11,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,6.1,72,102000,0,0,313,0,0,0,0,0,0,0,310,4.1,4,4,24.1,77777,9,999999999,139,0.1320,0,88,999.000,999.0,99.0 +1989,5,11,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,6.1,77,102000,0,0,306,0,0,0,0,0,0,0,320,4.6,3,3,24.1,77777,9,999999999,129,0.1320,0,88,999.000,999.0,99.0 +1989,5,11,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,5.6,74,102000,0,0,313,0,0,0,0,0,0,0,320,4.1,6,6,24.1,1980,9,999999999,129,0.1320,0,88,999.000,999.0,99.0 +1989,5,12,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,5.6,80,102000,0,0,311,0,0,0,0,0,0,0,310,3.6,7,7,24.1,1980,9,999999999,129,0.1330,0,88,999.000,999.0,99.0 +1989,5,12,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,5.6,80,102000,0,0,311,0,0,0,0,0,0,0,340,2.6,7,7,24.1,1980,9,999999999,129,0.1330,0,88,999.000,999.0,99.0 +1989,5,12,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,5.6,86,102000,0,0,311,0,0,0,0,0,0,0,0,0.0,8,8,24.1,1980,9,999999999,129,0.1330,0,88,999.000,999.0,99.0 +1989,5,12,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,5.6,86,102000,0,0,311,0,0,0,0,0,0,0,50,2.1,8,8,24.1,1980,9,999999999,129,0.1330,0,88,999.000,999.0,99.0 +1989,5,12,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,5.6,89,102000,6,346,309,2,1,2,0,0,0,0,90,1.5,8,8,24.1,1980,9,999999999,129,0.0810,0,88,999.000,999.0,99.0 +1989,5,12,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,6.1,86,102100,160,1339,330,32,4,32,3700,0,3700,1130,0,0.0,10,10,40.2,1980,9,999999999,129,0.0810,0,88,999.000,999.0,99.0 +1989,5,12,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,6.1,80,102100,390,1339,335,108,9,105,12100,500,11900,3790,0,0.0,10,10,40.2,1980,9,999999999,129,0.0810,0,88,999.000,999.0,99.0 +1989,5,12,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,5.6,72,102100,615,1339,319,313,323,165,33800,33000,18600,3530,280,3.1,7,7,32.2,1980,9,999999999,129,0.0810,0,88,999.000,999.0,99.0 +1989,5,12,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,6.1,67,102100,819,1339,332,389,270,225,42500,28800,24800,5560,0,0.0,8,8,40.2,1980,9,999999999,139,0.0810,0,88,999.000,999.0,99.0 +1989,5,12,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,6.1,58,102000,987,1339,342,726,516,346,75400,53400,36000,10810,30,2.1,8,8,40.2,1980,9,999999999,139,0.0810,0,88,999.000,999.0,99.0 +1989,5,12,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,3.9,49,102000,1109,1339,340,521,179,373,57400,19100,41600,14280,250,3.1,10,8,40.2,1980,9,999999999,120,0.0810,0,88,999.000,999.0,99.0 +1989,5,12,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,3.9,48,102000,1175,1339,350,678,307,409,74100,33300,44700,18650,230,4.6,10,9,64.4,7620,9,999999999,120,0.0810,0,88,999.000,999.0,99.0 +1989,5,12,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,3.9,44,102000,1182,1339,348,594,289,339,65800,31500,38000,15460,340,2.6,10,8,48.3,7620,9,999999999,120,0.0810,0,88,999.000,999.0,99.0 +1989,5,12,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,3.3,46,101900,1129,1339,337,511,75,448,56300,7800,49800,18630,300,3.1,10,7,48.3,7620,9,999999999,110,0.0810,0,88,999.000,999.0,99.0 +1989,5,12,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,2.8,41,101900,1020,1339,334,589,461,239,64000,48100,27300,7680,290,2.1,7,5,48.3,7620,9,999999999,110,0.0810,0,88,999.000,999.0,99.0 +1989,5,12,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,3.9,41,101800,861,1339,335,486,432,210,52300,44600,23500,5280,310,4.1,7,3,64.4,77777,9,999999999,120,0.0810,0,88,999.000,999.0,99.0 +1989,5,12,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,2.2,38,101800,665,1339,328,446,691,107,47500,68300,13600,2290,290,3.6,2,2,64.4,77777,9,999999999,110,0.0810,0,88,999.000,999.0,99.0 +1989,5,12,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,2.2,40,101800,444,1339,321,257,611,57,27000,55900,8400,1160,290,4.1,1,1,64.4,77777,9,999999999,110,0.0810,0,88,999.000,999.0,99.0 +1989,5,12,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,2.8,43,101800,214,1339,313,97,406,35,10300,28500,5800,640,350,3.6,0,0,64.4,77777,9,999999999,110,0.0810,0,88,999.000,999.0,99.0 +1989,5,12,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,4.4,53,101800,24,658,308,12,43,8,0,0,0,0,340,4.1,0,0,64.4,77777,9,999999999,120,0.0810,0,88,999.000,999.0,99.0 +1989,5,12,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,4.4,57,101800,0,0,303,0,0,0,0,0,0,0,340,4.6,0,0,24.1,77777,9,999999999,120,0.1330,0,88,999.000,999.0,99.0 +1989,5,12,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,5.0,64,101800,0,0,299,0,0,0,0,0,0,0,320,4.1,0,0,24.1,77777,9,999999999,129,0.1330,0,88,999.000,999.0,99.0 +1989,5,12,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,5.0,71,101900,0,0,292,0,0,0,0,0,0,0,280,3.6,0,0,24.1,77777,9,999999999,129,0.1330,0,88,999.000,999.0,99.0 +1989,5,12,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,5.0,71,101900,0,0,292,0,0,0,0,0,0,0,300,3.6,0,0,24.1,77777,9,999999999,129,0.1330,0,88,999.000,999.0,99.0 +1989,5,13,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,5.0,74,101900,0,0,289,0,0,0,0,0,0,0,320,3.1,0,0,24.1,77777,9,999999999,129,0.1330,0,88,999.000,999.0,99.0 +1989,5,13,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,4.4,80,101900,0,0,282,0,0,0,0,0,0,0,280,1.5,0,0,24.1,77777,9,999999999,120,0.1330,0,88,999.000,999.0,99.0 +1989,5,13,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,5.6,83,101900,0,0,286,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,129,0.1330,0,88,999.000,999.0,99.0 +1989,5,13,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,4.4,89,101900,0,0,276,0,0,0,0,0,0,0,120,2.6,0,0,24.1,77777,9,999999999,120,0.1330,0,88,999.000,999.0,99.0 +1989,5,13,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,4.4,89,101900,7,368,276,6,30,3,0,0,0,0,130,2.1,0,0,40.2,77777,9,999999999,120,0.0570,0,88,999.000,999.0,99.0 +1989,5,13,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,5.0,86,102000,164,1338,280,73,398,26,7500,26500,4300,490,130,1.5,0,0,40.2,77777,9,999999999,129,0.0570,0,88,999.000,999.0,99.0 +1989,5,13,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,6.1,80,102000,394,1338,290,239,671,43,25400,60200,7700,930,90,1.5,0,0,40.2,77777,9,999999999,129,0.0570,0,88,999.000,999.0,99.0 +1989,5,13,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,6.1,74,101900,618,1338,295,429,804,59,45300,77700,9300,1390,160,2.1,0,0,24.1,77777,9,999999999,129,0.0570,0,88,999.000,999.0,99.0 +1989,5,13,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,6.1,64,101900,822,1338,305,609,874,73,63900,86600,10600,1840,20,2.6,0,0,32.2,77777,9,999999999,129,0.0570,0,88,999.000,999.0,99.0 +1989,5,13,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,6.7,62,101800,990,1338,310,757,911,83,79000,91100,11500,2430,20,2.1,0,0,32.2,77777,9,999999999,139,0.0570,0,88,999.000,999.0,99.0 +1989,5,13,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,7.2,58,101800,1111,1338,318,867,936,90,90300,93900,12200,3240,230,3.1,0,0,40.2,77777,9,999999999,139,0.0570,0,88,999.000,999.0,99.0 +1989,5,13,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,6.1,48,101700,1178,1338,324,930,950,94,96700,95400,12600,4030,220,2.6,0,0,40.2,77777,9,999999999,129,0.0570,0,88,999.000,999.0,99.0 +1989,5,13,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,6.1,42,101600,1185,1338,334,936,953,94,97500,95700,12600,4120,310,4.6,0,0,64.4,77777,9,999999999,129,0.0570,0,88,999.000,999.0,99.0 +1989,5,13,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,5.0,35,101600,1131,1338,347,844,876,105,87600,87800,13200,3760,280,5.2,1,1,64.4,77777,9,999999999,129,0.0570,0,88,999.000,999.0,99.0 +1989,5,13,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,2.2,28,101500,1022,1338,346,739,859,84,77200,86000,11400,2590,310,5.7,2,1,64.4,77777,9,999999999,110,0.0570,0,88,999.000,999.0,99.0 +1989,5,13,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,3.3,29,101400,864,1338,350,562,616,166,59300,62000,19100,4170,290,5.2,2,1,64.4,77777,9,999999999,110,0.0570,0,88,999.000,999.0,99.0 +1989,5,13,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,1.7,26,101400,668,1338,348,431,769,50,45900,75000,8400,1340,320,4.1,2,1,64.4,77777,9,999999999,100,0.0570,0,88,999.000,999.0,99.0 +1989,5,13,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,1.7,27,101300,447,1338,346,259,644,48,27900,59500,8000,1040,350,4.6,2,1,64.4,77777,9,999999999,100,0.0570,0,88,999.000,999.0,99.0 +1989,5,13,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,3.3,35,101300,218,1338,348,76,182,47,8100,12300,6100,840,340,7.2,6,4,64.4,7620,9,999999999,110,0.0570,0,88,999.000,999.0,99.0 +1989,5,13,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,6.1,50,101400,26,680,328,15,53,10,0,0,0,0,330,8.2,4,1,64.4,77777,9,999999999,129,0.0570,0,88,999.000,999.0,99.0 +1989,5,13,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,5.6,52,101400,0,0,316,0,0,0,0,0,0,0,330,6.7,1,0,24.1,77777,9,999999999,129,0.1330,0,88,999.000,999.0,99.0 +1989,5,13,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,5.6,56,101500,0,0,311,0,0,0,0,0,0,0,320,5.7,0,0,24.1,77777,9,999999999,129,0.1330,0,88,999.000,999.0,99.0 +1989,5,13,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,5.6,62,101500,0,0,304,0,0,0,0,0,0,0,250,3.1,0,0,24.1,77777,9,999999999,129,0.1330,0,88,999.000,999.0,99.0 +1989,5,13,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,6.1,64,101500,0,0,305,0,0,0,0,0,0,0,340,3.6,0,0,24.1,77777,9,999999999,129,0.1330,0,88,999.000,999.0,99.0 +1989,5,14,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,7.2,77,101400,0,0,319,0,0,0,0,0,0,0,90,1.5,8,6,24.1,7620,9,999999999,139,0.1340,0,88,999.000,999.0,99.0 +1989,5,14,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,6.7,74,101400,0,0,319,0,0,0,0,0,0,0,0,0.0,8,6,24.1,7620,9,999999999,139,0.1340,0,88,999.000,999.0,99.0 +1989,5,14,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,6.1,74,101400,0,0,305,0,0,0,0,0,0,0,340,2.1,5,2,24.1,77777,9,999999999,129,0.1340,0,88,999.000,999.0,99.0 +1989,5,14,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,6.1,80,101400,0,0,305,0,0,0,0,0,0,0,100,2.1,4,4,24.1,77777,9,999999999,129,0.1340,0,88,999.000,999.0,99.0 +1989,5,14,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,6.1,83,101400,8,390,308,1,1,1,0,0,0,0,0,0.0,6,6,24.1,3050,9,999999999,129,0.1220,0,88,999.000,999.0,99.0 +1989,5,14,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,7.2,83,101400,168,1337,304,61,158,41,6500,8900,5300,750,0,0.0,2,2,40.2,77777,9,999999999,139,0.1220,0,88,999.000,999.0,99.0 +1989,5,14,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,7.2,72,101400,397,1337,303,223,541,64,23400,47800,9200,1220,0,0.0,0,0,48.3,77777,9,999999999,139,0.1220,0,88,999.000,999.0,99.0 +1989,5,14,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,7.2,67,101400,621,1337,308,410,695,89,43800,68300,12000,1890,310,2.6,0,0,48.3,77777,9,999999999,139,0.1220,0,88,999.000,999.0,99.0 +1989,5,14,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,7.2,56,101400,824,1337,320,588,777,110,61800,77500,14000,2580,310,1.5,0,0,64.4,77777,9,999999999,139,0.1220,0,88,999.000,999.0,99.0 +1989,5,14,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,7.2,50,101400,992,1337,328,737,819,131,78100,82500,16800,3810,120,2.1,1,0,64.4,77777,9,999999999,139,0.1220,0,88,999.000,999.0,99.0 +1989,5,14,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,8.3,51,101300,1113,1337,334,855,857,143,91200,86700,18900,5420,290,3.1,1,0,64.4,77777,9,999999999,150,0.1220,0,88,999.000,999.0,99.0 +1989,5,14,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,7.8,42,101200,1180,1337,344,911,865,149,97600,87700,20100,6930,270,5.2,1,0,64.4,77777,9,999999999,150,0.1220,0,88,999.000,999.0,99.0 +1989,5,14,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,6.7,36,101200,1187,1337,357,884,837,142,90800,83800,16300,5360,320,4.1,2,1,64.4,77777,9,999999999,139,0.1220,0,88,999.000,999.0,99.0 +1989,5,14,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,4.4,28,101100,1134,1337,360,873,860,145,93200,87100,19300,5820,290,5.2,2,1,64.4,77777,9,999999999,120,0.1220,0,88,999.000,999.0,99.0 +1989,5,14,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,5.6,31,101100,1024,1337,370,727,676,210,76700,68500,24100,6750,350,4.1,4,3,64.4,77777,9,999999999,129,0.1220,0,88,999.000,999.0,99.0 +1989,5,14,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,4.4,26,101100,867,1337,382,490,463,191,53200,47900,22100,4790,360,5.2,6,5,64.4,7620,9,999999999,120,0.1220,0,88,999.000,999.0,99.0 +1989,5,14,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,5.0,31,101100,671,1337,366,401,508,148,43200,51000,17600,3090,360,6.7,5,3,64.4,77777,9,999999999,129,0.1220,0,88,999.000,999.0,99.0 +1989,5,14,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,6.1,34,101100,450,1337,370,229,317,124,24600,29800,14500,2490,10,5.7,5,5,64.4,77777,9,999999999,129,0.1220,0,88,999.000,999.0,99.0 +1989,5,14,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,6.7,41,101100,221,1337,351,91,273,48,9800,18700,6700,860,20,4.1,2,2,64.4,77777,9,999999999,139,0.1220,0,88,999.000,999.0,99.0 +1989,5,14,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,7.2,47,101200,28,702,333,12,22,10,1200,800,1200,210,310,5.2,0,0,64.4,77777,9,999999999,139,0.1220,0,88,999.000,999.0,99.0 +1989,5,14,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,6.7,47,101200,0,0,330,0,0,0,0,0,0,0,330,5.7,0,0,24.1,77777,9,999999999,139,0.1340,0,88,999.000,999.0,99.0 +1989,5,14,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,6.7,50,101200,0,0,325,0,0,0,0,0,0,0,320,6.7,0,0,24.1,77777,9,999999999,139,0.1340,0,88,999.000,999.0,99.0 +1989,5,14,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,6.7,58,101300,0,0,315,0,0,0,0,0,0,0,250,2.6,1,0,24.1,77777,9,999999999,139,0.1340,0,88,999.000,999.0,99.0 +1989,5,14,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,7.2,67,101300,0,0,308,0,0,0,0,0,0,0,300,3.1,0,0,24.1,77777,9,999999999,139,0.1340,0,88,999.000,999.0,99.0 +1989,5,15,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,7.8,69,101300,0,0,309,0,0,0,0,0,0,0,120,2.1,0,0,24.1,77777,9,999999999,150,0.1340,0,88,999.000,999.0,99.0 +1989,5,15,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,8.9,83,101400,0,0,303,0,0,0,0,0,0,0,50,2.1,0,0,24.1,77777,9,999999999,160,0.1340,0,88,999.000,999.0,99.0 +1989,5,15,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,8.3,86,101400,0,0,298,0,0,0,0,0,0,0,90,1.5,0,0,24.1,77777,9,999999999,150,0.1340,0,88,999.000,999.0,99.0 +1989,5,15,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,7.2,80,101400,0,0,297,0,0,0,0,0,0,0,110,2.1,0,0,24.1,77777,9,999999999,139,0.1340,0,88,999.000,999.0,99.0 +1989,5,15,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,6.7,83,101500,9,412,291,8,37,4,0,0,0,0,100,1.5,0,0,64.4,77777,9,999999999,139,0.0550,0,88,999.000,999.0,99.0 +1989,5,15,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,8.3,86,101500,172,1337,298,77,397,27,7900,26900,4400,510,90,2.1,1,0,64.4,77777,9,999999999,150,0.0550,0,88,999.000,999.0,99.0 +1989,5,15,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,6.7,64,101600,401,1337,307,243,655,48,25600,58800,7900,1000,350,1.5,2,0,64.4,77777,9,999999999,139,0.0550,0,88,999.000,999.0,99.0 +1989,5,15,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,7.8,60,101500,624,1337,319,431,781,68,46100,76400,10400,1520,0,0.0,2,0,64.4,77777,9,999999999,150,0.0550,0,88,999.000,999.0,99.0 +1989,5,15,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,8.3,56,101500,827,1337,326,612,874,72,64200,86700,10500,1840,330,2.1,0,0,64.4,77777,9,999999999,150,0.0550,0,88,999.000,999.0,99.0 +1989,5,15,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,8.9,53,101500,994,1337,335,759,901,89,79100,90100,12000,2550,320,2.6,1,0,64.4,77777,9,999999999,160,0.0550,0,88,999.000,999.0,99.0 +1989,5,15,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,8.3,46,101500,1115,1337,342,870,928,97,90500,93000,12700,3450,240,3.6,1,0,64.4,77777,9,999999999,150,0.0550,0,88,999.000,999.0,99.0 +1989,5,15,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,7.8,38,101400,1182,1337,352,930,948,92,96700,95200,12400,4030,290,4.1,0,0,64.4,77777,9,999999999,150,0.0550,0,88,999.000,999.0,99.0 +1989,5,15,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,4.4,28,101300,1188,1337,355,943,948,101,97900,95200,13100,4410,340,4.6,1,0,64.4,77777,9,999999999,120,0.0550,0,88,999.000,999.0,99.0 +1989,5,15,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,4.4,26,101300,1136,1337,368,882,931,92,91900,93400,12300,3510,310,5.7,2,1,64.4,77777,9,999999999,120,0.0550,0,88,999.000,999.0,99.0 +1989,5,15,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,5.6,28,101300,1027,1337,369,735,815,110,76200,81400,13500,2980,350,3.1,1,1,64.4,77777,9,999999999,129,0.0550,0,88,999.000,999.0,99.0 +1989,5,15,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,6.1,29,101200,869,1337,370,611,847,64,64700,84300,9700,1810,330,5.2,1,1,64.4,77777,9,999999999,129,0.0550,0,88,999.000,999.0,99.0 +1989,5,15,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,6.7,31,101200,674,1337,368,447,778,58,47400,75900,9100,1450,340,6.2,2,1,64.4,77777,9,999999999,139,0.0550,0,88,999.000,999.0,99.0 +1989,5,15,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,6.7,36,101200,454,1337,357,260,629,50,27900,58300,8100,1080,350,7.7,2,1,64.4,77777,9,999999999,139,0.0550,0,88,999.000,999.0,99.0 +1989,5,15,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,5.6,36,101200,225,1337,341,109,478,31,11400,35900,5400,620,330,7.2,1,0,64.4,77777,9,999999999,129,0.0550,0,88,999.000,999.0,99.0 +1989,5,15,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,4.4,42,101300,30,746,325,19,82,11,1600,2600,1500,190,320,5.2,2,0,32.2,77777,9,999999999,120,0.0550,0,88,999.000,999.0,99.0 +1989,5,15,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,5.0,48,101400,0,0,318,0,0,0,0,0,0,0,340,3.6,2,0,24.1,77777,9,999999999,129,0.1340,0,88,999.000,999.0,99.0 +1989,5,15,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,7.8,67,101400,0,0,311,0,0,0,0,0,0,0,350,4.6,0,0,24.1,77777,9,999999999,150,0.1340,0,88,999.000,999.0,99.0 +1989,5,15,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,8.3,77,101500,0,0,304,0,0,0,0,0,0,0,330,3.6,0,0,24.1,77777,9,999999999,150,0.1340,0,88,999.000,999.0,99.0 +1989,5,15,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,8.3,80,101600,0,0,302,0,0,0,0,0,0,0,350,2.1,0,0,24.1,77777,9,999999999,150,0.1340,0,88,999.000,999.0,99.0 +1989,5,16,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,8.3,80,101500,0,0,308,0,0,0,0,0,0,0,340,2.1,1,1,24.1,77777,9,999999999,150,0.1350,0,88,999.000,999.0,99.0 +1989,5,16,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,8.9,83,101500,0,0,328,0,0,0,0,0,0,0,170,2.6,7,7,24.1,580,9,999999999,160,0.1350,0,88,999.000,999.0,99.0 +1989,5,16,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,8.9,80,101600,0,0,342,0,0,0,0,0,0,0,220,2.1,9,9,24.1,580,9,999999999,160,0.1350,0,88,999.000,999.0,99.0 +1989,5,16,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,8.9,80,101600,0,0,352,0,0,0,0,0,0,0,210,3.1,10,10,24.1,550,9,999999999,160,0.1350,0,88,999.000,999.0,99.0 +1989,5,16,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,8.9,83,101600,11,457,350,0,0,0,0,0,0,0,200,2.6,10,10,40.2,640,9,999999999,160,0.0970,0,88,999.000,999.0,99.0 +1989,5,16,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,9.4,90,101600,176,1336,347,17,3,17,2100,0,2100,680,190,2.6,10,10,12.9,670,9,999999999,160,0.0970,0,88,999.000,999.0,99.0 +1989,5,16,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,10.0,93,101700,404,1336,348,69,7,67,8100,300,8000,2740,200,2.6,10,10,6.4,640,9,999999999,170,0.0970,0,88,999.000,999.0,99.0 +1989,5,16,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,10.0,86,101600,627,1336,353,167,9,163,19200,700,18800,6640,190,3.6,10,10,24.1,700,9,999999999,170,0.0970,0,88,999.000,999.0,99.0 +1989,5,16,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,10.0,83,101600,829,1336,356,225,1,224,26100,100,26000,9740,180,4.6,10,10,24.1,1100,9,999999999,170,0.0970,0,88,999.000,999.0,99.0 +1989,5,16,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,10.0,78,101600,997,1336,362,308,2,307,35900,200,35700,13450,190,4.1,10,10,24.1,1100,9,999999999,170,0.0970,0,88,999.000,999.0,99.0 +1989,5,16,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,10.6,72,101600,1117,1336,371,351,1,350,41100,100,41000,15440,160,5.2,10,10,32.2,1100,9,999999999,170,0.0970,0,88,999.000,999.0,99.0 +1989,5,16,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,10.6,59,101500,1183,1336,378,862,410,499,92800,44400,53400,24010,180,4.1,9,9,32.2,1310,9,999999999,179,0.0970,0,88,999.000,999.0,99.0 +1989,5,16,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,10.6,57,101500,1190,1336,391,373,8,366,44000,700,43300,16240,220,4.6,10,10,48.3,1520,9,999999999,170,0.0970,0,88,999.000,999.0,99.0 +1989,5,16,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,10.6,59,101500,1138,1336,370,587,297,334,64800,32300,37200,13560,210,3.6,8,8,48.3,1830,9,999999999,179,0.0970,0,88,999.000,999.0,99.0 +1989,5,16,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,10.0,57,101400,1029,1336,377,544,187,400,59300,19800,44000,13540,310,3.6,9,9,48.3,1680,9,999999999,170,0.0970,0,88,999.000,999.0,99.0 +1989,5,16,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,10.0,55,101400,872,1336,372,393,156,291,43000,16400,32200,8300,320,3.6,8,8,48.3,1980,9,999999999,170,0.0970,0,88,999.000,999.0,99.0 +1989,5,16,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,11.1,61,101400,676,1336,378,256,48,232,28100,4800,25700,6860,360,4.1,9,9,40.2,1980,9,999999999,179,0.0970,0,88,999.000,999.0,99.0 +1989,5,16,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,9.4,58,101300,457,1336,357,176,156,124,19400,14800,14400,2820,360,4.6,7,7,40.2,2440,9,999999999,160,0.0970,0,88,999.000,999.0,99.0 +1989,5,16,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,9.4,63,101400,229,1336,352,78,107,60,8500,7800,7200,1280,360,4.6,7,7,40.2,2590,9,999999999,160,0.0970,0,88,999.000,999.0,99.0 +1989,5,16,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,8.9,70,101400,32,768,336,13,8,12,1400,400,1300,300,350,4.1,6,6,24.1,2740,9,999999999,160,0.0970,0,88,999.000,999.0,99.0 +1989,5,16,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,8.9,75,101400,0,0,335,0,0,0,0,0,0,0,340,3.6,7,7,24.1,1010,9,999999999,160,0.1350,0,88,999.000,999.0,99.0 +1989,5,16,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,7.8,72,101500,0,0,344,0,0,0,0,0,0,0,340,4.1,9,9,24.1,940,9,999999999,150,0.1350,0,88,999.000,999.0,99.0 +1989,5,16,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,7.8,75,101500,0,0,351,0,0,0,0,0,0,0,320,3.6,10,10,24.1,820,9,999999999,150,0.1350,0,88,999.000,999.0,99.0 +1989,5,16,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,7.2,72,101500,0,0,350,0,0,0,0,0,0,0,0,0.0,10,10,24.1,730,9,999999999,139,0.1350,0,88,999.000,999.0,99.0 +1989,5,17,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,7.2,74,101400,0,0,348,0,0,0,0,0,0,0,70,2.1,10,10,24.1,880,9,999999999,139,0.1350,0,88,999.000,999.0,99.0 +1989,5,17,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,7.2,74,101400,0,0,348,0,0,0,0,0,0,0,70,2.1,10,10,24.1,1680,9,999999999,139,0.1350,0,88,999.000,999.0,99.0 +1989,5,17,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,7.2,74,101300,0,0,348,0,0,0,0,0,0,0,100,2.6,10,10,24.1,1010,9,999999999,139,0.1350,0,88,999.000,999.0,99.0 +1989,5,17,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,7.8,77,101300,0,0,348,0,0,0,0,0,0,0,180,4.1,10,10,24.1,1010,9,999999999,150,0.1350,0,88,999.000,999.0,99.0 +1989,5,17,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,7.8,77,101200,12,479,348,1,0,1,0,0,0,0,170,3.1,10,10,24.1,760,9,999999999,150,0.0630,0,88,999.000,999.0,99.0 +1989,5,17,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,7.8,77,101100,179,1336,348,25,4,24,2900,0,2900,920,150,4.6,10,10,32.2,760,9,999999999,150,0.0630,0,88,999.000,999.0,99.0 +1989,5,17,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,7.8,75,101100,407,1336,351,133,2,133,14800,100,14700,4510,160,4.6,10,10,40.2,730,9,999999999,150,0.0630,0,88,999.000,999.0,99.0 +1989,5,17,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,8.3,72,101000,630,1336,357,177,9,173,20200,700,19900,6940,190,4.6,10,10,64.4,2290,9,999999999,150,0.0630,0,88,999.000,999.0,99.0 +1989,5,17,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,8.3,72,101000,832,1336,357,238,8,233,27500,700,27100,10040,190,6.2,10,10,64.4,1520,9,999999999,150,0.0630,0,88,999.000,999.0,99.0 +1989,5,17,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,8.9,67,100900,999,1336,366,302,3,300,35200,300,35000,13250,180,6.2,10,10,56.3,2290,9,999999999,160,0.0630,0,88,999.000,999.0,99.0 +1989,5,17,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,9.4,56,100800,1119,1336,360,554,216,374,61200,23000,41900,14670,190,10.8,8,7,40.2,2590,9,999999999,160,0.0630,0,88,999.000,999.0,99.0 +1989,5,17,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,8.9,58,100700,1185,1336,377,387,3,385,45500,300,45300,16780,170,7.2,10,10,32.2,2590,9,999999999,160,0.0630,0,88,999.000,999.0,99.0 +1989,5,17,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,9.4,63,100700,1192,1336,375,241,54,193,27900,5800,22600,8940,260,8.2,10,10,9.7,1100,9,999999999,160,0.0630,0,88,999.000,999.0,99.0 +1989,5,17,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,9.4,86,100800,1140,1336,350,207,4,203,25300,300,25000,10180,250,7.2,10,10,12.9,1680,9,999999999,160,0.0630,0,88,999.000,999.0,99.0 +1989,5,17,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,10.0,93,100900,1031,1336,348,184,13,174,22500,1000,21700,8750,230,6.7,10,10,16.1,1520,9,999999999,170,0.0630,0,88,999.000,999.0,99.0 +1989,5,17,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,8.3,83,101000,874,1336,336,369,99,304,40600,10100,34000,10190,190,6.2,9,9,40.2,1680,9,999999999,150,0.0630,0,88,999.000,999.0,99.0 +1989,5,17,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,8.9,80,101100,679,1336,326,411,526,146,44500,52900,17500,3060,200,6.7,6,6,40.2,1220,9,999999999,160,0.0630,0,88,999.000,999.0,99.0 +1989,5,17,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,7.2,77,101200,460,1336,316,229,329,117,24100,30300,13600,2230,270,4.1,5,5,40.2,77777,9,999999999,139,0.0630,0,88,999.000,999.0,99.0 +1989,5,17,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,5.6,74,101300,232,1336,321,75,98,58,8200,7200,7000,1240,250,5.7,8,8,40.2,910,9,999999999,129,0.0630,0,88,999.000,999.0,99.0 +1989,5,17,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,5.6,83,101300,34,790,309,13,12,12,1400,600,1400,300,220,5.2,7,7,24.1,1830,9,999999999,129,0.0630,0,88,999.000,999.0,99.0 +1989,5,17,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,4.4,77,101400,0,0,312,0,0,0,0,0,0,0,230,7.2,8,8,24.1,1980,9,999999999,120,0.1350,0,88,999.000,999.0,99.0 +1989,5,17,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,5.0,83,101400,0,0,302,0,0,0,0,0,0,0,220,6.2,6,6,24.1,1830,9,999999999,129,0.1350,0,88,999.000,999.0,99.0 +1989,5,17,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,4.4,80,101400,0,0,310,0,0,0,0,0,0,0,220,5.2,8,8,24.1,1980,9,999999999,120,0.1350,0,88,999.000,999.0,99.0 +1989,5,17,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,4.4,83,101500,0,0,303,0,0,0,0,0,0,0,120,2.6,7,7,24.1,1980,9,999999999,120,0.1350,0,88,999.000,999.0,99.0 +1989,5,18,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,4.4,83,101500,0,0,323,0,0,0,0,0,0,0,200,4.6,10,10,24.1,1220,9,999999999,120,0.1350,0,88,999.000,999.0,99.0 +1989,5,18,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,4.4,86,101400,0,0,301,0,0,0,0,0,0,0,200,4.6,7,7,24.1,1830,9,999999999,120,0.1350,0,88,999.000,999.0,99.0 +1989,5,18,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,4.4,86,101500,0,0,301,0,0,0,0,0,0,0,170,4.6,7,7,24.1,1680,9,999999999,120,0.1350,0,88,999.000,999.0,99.0 +1989,5,18,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,4.4,86,101500,0,0,321,0,0,0,0,0,0,0,180,2.6,10,10,24.1,1070,9,999999999,120,0.1350,0,88,999.000,999.0,99.0 +1989,5,18,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,4.4,86,101500,13,501,312,1,1,1,0,0,0,0,200,4.6,9,9,24.1,1130,9,999999999,120,0.1030,0,88,999.000,999.0,99.0 +1989,5,18,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,5.0,89,101600,183,1335,321,40,53,32,4400,3500,3900,670,180,2.6,10,10,40.2,1430,9,999999999,129,0.1030,0,88,999.000,999.0,99.0 +1989,5,18,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,5.6,89,101600,410,1335,324,45,5,43,5400,200,5300,1880,220,4.6,10,10,16.1,580,9,999999999,129,0.1030,0,88,999.000,999.0,99.0 +1989,5,18,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,6.1,93,101700,633,1335,325,166,4,164,19000,300,18900,6700,210,6.2,10,10,24.1,1220,9,999999999,129,0.1030,0,88,999.000,999.0,99.0 +1989,5,18,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,6.1,86,101800,834,1335,330,293,8,288,33300,700,32900,11590,230,6.2,10,10,40.2,580,9,999999999,129,0.1030,0,88,999.000,999.0,99.0 +1989,5,18,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,6.7,83,101900,1001,1335,336,298,4,295,34800,400,34500,13110,230,4.6,10,10,64.4,580,9,999999999,139,0.1030,0,88,999.000,999.0,99.0 +1989,5,18,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,5.6,69,102000,1121,1335,333,470,11,461,53900,1100,53000,18330,200,4.6,9,9,64.4,820,9,999999999,129,0.1030,0,88,999.000,999.0,99.0 +1989,5,18,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,5.0,69,102100,1187,1335,340,283,34,253,31400,3400,28400,12530,320,2.1,10,10,64.4,940,9,999999999,129,0.1030,0,88,999.000,999.0,99.0 +1989,5,18,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,7.2,80,102200,1194,1335,312,825,636,257,87400,64500,29600,13160,170,2.1,4,4,40.2,77777,9,999999999,139,0.1030,0,88,999.000,999.0,99.0 +1989,5,18,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,7.2,74,102200,1142,1335,319,934,803,248,98600,81300,28900,10620,50,4.6,5,5,48.3,77777,9,999999999,139,0.1030,0,88,999.000,999.0,99.0 +1989,5,18,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,6.7,69,102200,1033,1335,318,711,641,216,75000,64900,24700,7070,40,2.6,4,4,64.4,77777,9,999999999,139,0.1030,0,88,999.000,999.0,99.0 +1989,5,18,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,5.6,56,102200,877,1335,327,495,448,202,53500,46300,23000,5160,270,3.1,4,4,64.4,77777,9,999999999,129,0.1030,0,88,999.000,999.0,99.0 +1989,5,18,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,4.4,53,102200,682,1335,333,460,536,188,48400,53800,20900,4040,300,5.2,7,7,64.4,1490,9,999999999,120,0.1030,0,88,999.000,999.0,99.0 +1989,5,18,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,4.4,53,102300,463,1335,329,219,219,144,23200,20800,16000,2980,300,6.2,6,6,64.4,1490,9,999999999,120,0.1030,0,88,999.000,999.0,99.0 +1989,5,18,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,5.0,62,102400,236,1335,326,68,77,55,7500,5700,6500,1170,330,7.2,7,7,40.2,1340,9,999999999,129,0.1030,0,88,999.000,999.0,99.0 +1989,5,18,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,3.9,61,102400,36,812,316,11,6,11,1200,300,1200,280,300,5.7,6,6,24.1,1980,9,999999999,120,0.1030,0,88,999.000,999.0,99.0 +1989,5,18,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,4.4,69,102500,0,0,327,0,0,0,0,0,0,0,300,3.6,9,9,24.1,1830,9,999999999,120,0.1350,0,88,999.000,999.0,99.0 +1989,5,18,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,5.0,80,102600,0,0,308,0,0,0,0,0,0,0,240,2.6,7,7,24.1,2290,9,999999999,129,0.1350,0,88,999.000,999.0,99.0 +1989,5,18,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,5.0,80,102600,0,0,313,0,0,0,0,0,0,0,0,0.0,8,8,24.1,1830,9,999999999,129,0.1350,0,88,999.000,999.0,99.0 +1989,5,18,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,5.0,74,102600,0,0,334,0,0,0,0,0,0,0,330,1.5,10,10,24.1,1980,9,999999999,129,0.1350,0,88,999.000,999.0,99.0 +1989,5,19,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,5.6,80,102700,0,0,332,0,0,0,0,0,0,0,210,2.1,10,10,24.1,1520,9,999999999,129,0.1360,0,88,999.000,999.0,99.0 +1989,5,19,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,5.6,80,102700,0,0,323,0,0,0,0,0,0,0,230,2.1,9,9,24.1,1830,9,999999999,129,0.1360,0,88,999.000,999.0,99.0 +1989,5,19,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,5.6,83,102700,0,0,300,0,0,0,0,0,0,0,0,0.0,4,4,24.1,77777,9,999999999,129,0.1360,0,88,999.000,999.0,99.0 +1989,5,19,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,5.0,83,102700,0,0,295,0,0,0,0,0,0,0,0,0.0,3,3,24.1,77777,9,999999999,129,0.1360,0,88,999.000,999.0,99.0 +1989,5,19,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,6.1,89,102700,14,523,312,3,4,3,0,0,0,0,0,0.0,8,8,40.2,1520,9,999999999,129,0.0810,0,88,999.000,999.0,99.0 +1989,5,19,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,6.7,93,102700,186,1335,313,48,13,46,5200,900,5100,1130,170,2.6,8,8,40.2,1220,9,999999999,139,0.0810,0,88,999.000,999.0,99.0 +1989,5,19,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,7.2,86,102800,413,1335,320,175,193,115,18600,17600,13100,2290,210,3.1,8,8,40.2,1490,9,999999999,139,0.0810,0,88,999.000,999.0,99.0 +1989,5,19,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,6.7,77,102800,635,1335,314,441,626,144,45400,60400,16600,2860,140,3.1,5,5,48.3,77777,9,999999999,139,0.0810,0,88,999.000,999.0,99.0 +1989,5,19,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,6.7,72,102800,836,1335,316,569,629,176,59500,62900,20000,4230,50,3.1,4,4,56.3,77777,9,999999999,139,0.0810,0,88,999.000,999.0,99.0 +1989,5,19,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,5.0,57,102800,1003,1335,343,441,154,326,48600,16400,36300,10670,10,2.1,9,9,64.4,1370,9,999999999,129,0.0810,0,88,999.000,999.0,99.0 +1989,5,19,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,6.1,67,102800,1123,1335,339,376,142,257,42500,15300,29600,10160,350,4.6,9,9,64.4,1680,9,999999999,139,0.0810,0,88,999.000,999.0,99.0 +1989,5,19,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,5.0,53,102700,1189,1335,324,892,763,213,95700,78100,26000,10850,60,2.6,3,3,64.4,77777,9,999999999,129,0.0810,0,88,999.000,999.0,99.0 +1989,5,19,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,5.0,52,102600,1196,1335,329,785,590,257,83100,59900,29400,13270,330,3.6,4,4,64.4,77777,9,999999999,129,0.0810,0,88,999.000,999.0,99.0 +1989,5,19,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,6.1,54,102600,1143,1335,333,834,712,225,88700,72500,26500,9790,310,5.2,4,4,64.4,77777,9,999999999,139,0.0810,0,88,999.000,999.0,99.0 +1989,5,19,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,4.4,45,102500,1035,1335,334,713,681,186,76100,69500,22100,6220,290,3.1,3,3,64.4,77777,9,999999999,120,0.0810,0,88,999.000,999.0,99.0 +1989,5,19,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,3.9,43,102400,879,1335,333,622,720,151,66300,73000,18200,3930,300,3.1,3,3,64.4,77777,9,999999999,120,0.0810,0,88,999.000,999.0,99.0 +1989,5,19,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,3.9,44,102400,685,1335,327,418,566,130,43900,55800,15200,2760,350,4.1,2,2,64.4,77777,9,999999999,120,0.0810,0,88,999.000,999.0,99.0 +1989,5,19,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,5.0,48,102300,467,1335,324,274,628,58,29000,58200,8600,1200,340,4.6,1,1,64.4,77777,9,999999999,129,0.0810,0,88,999.000,999.0,99.0 +1989,5,19,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,3.9,48,102200,239,1335,312,109,414,37,11600,30600,6100,690,350,5.2,0,0,64.4,77777,9,999999999,120,0.0810,0,88,999.000,999.0,99.0 +1989,5,19,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,5.0,57,102200,39,834,312,15,62,10,1500,2100,1300,170,350,4.1,1,1,24.1,77777,9,999999999,129,0.0810,0,88,999.000,999.0,99.0 +1989,5,19,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,5.6,64,102200,0,0,302,0,0,0,0,0,0,0,340,6.2,1,0,24.1,77777,9,999999999,129,0.1360,0,88,999.000,999.0,99.0 +1989,5,19,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,5.6,69,102200,0,0,297,0,0,0,0,0,0,0,320,6.2,1,0,24.1,77777,9,999999999,129,0.1360,0,88,999.000,999.0,99.0 +1989,5,19,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,5.6,74,102100,0,0,292,0,0,0,0,0,0,0,310,5.2,5,0,24.1,77777,9,999999999,129,0.1360,0,88,999.000,999.0,99.0 +1989,5,19,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,5.6,80,102100,0,0,288,0,0,0,0,0,0,0,310,3.6,5,0,24.1,77777,9,999999999,129,0.1360,0,88,999.000,999.0,99.0 +1989,5,20,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,5.6,80,102000,0,0,293,0,0,0,0,0,0,0,310,4.6,5,1,24.1,77777,9,999999999,129,0.1360,0,88,999.000,999.0,99.0 +1989,5,20,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,5.6,80,102000,0,0,305,0,0,0,0,0,0,0,340,2.6,8,5,24.1,7620,9,999999999,129,0.1360,0,88,999.000,999.0,99.0 +1989,5,20,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,5.6,83,102000,0,0,302,0,0,0,0,0,0,0,340,3.1,8,5,24.1,7620,9,999999999,129,0.1360,0,88,999.000,999.0,99.0 +1989,5,20,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,5.6,86,101900,0,0,300,0,0,0,0,0,0,0,340,4.1,10,5,24.1,77777,9,999999999,129,0.1360,0,88,999.000,999.0,99.0 +1989,5,20,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,5.0,89,101900,15,545,291,10,17,8,0,0,0,0,40,2.1,7,3,64.4,77777,9,999999999,129,0.0590,0,88,999.000,999.0,99.0 +1989,5,20,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,6.1,89,101900,189,1334,296,79,278,40,8400,17500,5900,710,340,3.6,8,3,32.2,77777,9,999999999,129,0.0590,0,88,999.000,999.0,99.0 +1989,5,20,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,6.1,83,101900,416,1334,303,161,199,99,17300,18200,11600,1910,70,2.1,10,4,32.2,77777,9,999999999,129,0.0590,0,88,999.000,999.0,99.0 +1989,5,20,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,6.1,74,101900,637,1334,311,424,581,148,45300,57800,17700,3040,170,1.5,10,4,64.4,77777,9,999999999,129,0.0590,0,88,999.000,999.0,99.0 +1989,5,20,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,6.7,72,101800,838,1334,314,469,293,285,50300,31200,30600,7460,360,2.6,9,3,64.4,77777,9,999999999,139,0.0590,0,88,999.000,999.0,99.0 +1989,5,20,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,7.2,64,101800,1004,1334,324,702,658,207,74000,66600,23700,6420,260,1.5,6,3,64.4,77777,9,999999999,139,0.0590,0,88,999.000,999.0,99.0 +1989,5,20,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,7.2,60,101800,1125,1334,321,871,935,83,90900,93900,11600,3200,250,2.6,1,1,64.4,77777,9,999999999,139,0.0590,0,88,999.000,999.0,99.0 +1989,5,20,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,6.1,50,101700,1190,1334,328,937,946,94,97500,95000,12500,4250,280,3.1,1,1,64.4,77777,9,999999999,129,0.0590,0,88,999.000,999.0,99.0 +1989,5,20,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,6.1,45,101700,1197,1334,329,896,891,96,93000,89500,12500,4430,270,3.6,0,0,64.4,77777,9,999999999,129,0.0590,0,88,999.000,999.0,99.0 +1989,5,20,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,3.3,35,101700,1145,1334,331,900,941,94,93700,94400,12500,3680,300,3.6,0,0,64.4,77777,9,999999999,120,0.0590,0,88,999.000,999.0,99.0 +1989,5,20,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,5.0,38,101600,1037,1334,335,798,916,88,83400,91700,11900,2750,320,4.6,0,0,64.4,77777,9,999999999,129,0.0590,0,88,999.000,999.0,99.0 +1989,5,20,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,6.1,41,101600,881,1334,337,655,877,78,68700,87300,11000,2040,300,4.1,0,0,64.4,77777,9,999999999,139,0.0590,0,88,999.000,999.0,99.0 +1989,5,20,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,5.6,39,101500,688,1334,336,484,820,65,51200,80100,9800,1540,340,3.1,0,0,64.4,77777,9,999999999,129,0.0590,0,88,999.000,999.0,99.0 +1989,5,20,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,6.1,43,101500,470,1334,332,299,718,49,32100,67200,8500,1080,360,5.2,0,0,64.4,77777,9,999999999,129,0.0590,0,88,999.000,999.0,99.0 +1989,5,20,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,6.1,48,101500,243,1334,330,115,447,36,12200,33300,6200,680,340,5.2,1,1,64.4,77777,9,999999999,129,0.0590,0,88,999.000,999.0,99.0 +1989,5,20,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,6.7,58,101500,41,856,315,22,102,12,1800,4300,1600,220,360,6.7,1,0,64.4,77777,9,999999999,139,0.0590,0,88,999.000,999.0,99.0 +1989,5,20,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,5.6,62,101600,0,0,304,0,0,0,0,0,0,0,350,6.2,1,0,24.1,77777,9,999999999,129,0.1360,0,88,999.000,999.0,99.0 +1989,5,20,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,5.6,66,101600,0,0,300,0,0,0,0,0,0,0,330,5.7,3,0,24.1,77777,9,999999999,129,0.1360,0,88,999.000,999.0,99.0 +1989,5,20,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,5.6,72,101700,0,0,310,0,0,0,0,0,0,0,310,4.6,8,4,24.1,77777,9,999999999,129,0.1360,0,88,999.000,999.0,99.0 +1989,5,20,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,5.6,74,101700,0,0,308,0,0,0,0,0,0,0,340,3.6,8,4,24.1,77777,9,999999999,129,0.1360,0,88,999.000,999.0,99.0 +1989,5,21,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,5.0,74,101700,0,0,334,0,0,0,0,0,0,0,320,4.1,10,10,24.1,1830,9,999999999,129,0.1370,0,88,999.000,999.0,99.0 +1989,5,21,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,5.6,77,101700,0,0,335,0,0,0,0,0,0,0,310,3.1,10,10,24.1,1830,9,999999999,129,0.1370,0,88,999.000,999.0,99.0 +1989,5,21,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,5.6,77,101700,0,0,335,0,0,0,0,0,0,0,340,3.1,10,10,24.1,1680,9,999999999,129,0.1370,0,88,999.000,999.0,99.0 +1989,5,21,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,5.0,74,101700,0,0,334,0,0,0,0,0,0,0,320,3.6,10,10,24.1,1830,9,999999999,129,0.1370,0,88,999.000,999.0,99.0 +1989,5,21,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,5.0,74,101700,17,567,334,5,0,5,0,0,0,0,350,3.1,10,10,32.2,1980,9,999999999,129,0.1240,0,88,999.000,999.0,99.0 +1989,5,21,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,5.6,77,101800,192,1334,335,26,6,25,3000,0,3000,970,0,0.0,10,10,48.3,1100,9,999999999,129,0.1240,0,88,999.000,999.0,99.0 +1989,5,21,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,5.6,74,101800,418,1334,338,98,7,96,11200,400,11100,3690,80,1.5,10,10,48.3,1100,9,999999999,129,0.1240,0,88,999.000,999.0,99.0 +1989,5,21,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,5.0,69,101800,640,1334,340,189,7,186,21500,600,21300,7370,280,1.5,10,10,64.4,1830,9,999999999,129,0.1240,0,88,999.000,999.0,99.0 +1989,5,21,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,5.0,62,101800,840,1334,347,300,8,295,34100,800,33700,11830,0,0.0,10,10,64.4,1250,9,999999999,129,0.1240,0,88,999.000,999.0,99.0 +1989,5,21,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,4.4,62,101800,1006,1334,344,317,2,316,36900,200,36800,13800,280,3.1,10,10,64.4,1370,9,999999999,120,0.1240,0,88,999.000,999.0,99.0 +1989,5,21,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,5.0,60,101800,1126,1334,350,376,3,374,43900,300,43700,16190,290,3.1,10,10,64.4,1100,9,999999999,129,0.1240,0,88,999.000,999.0,99.0 +1989,5,21,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,5.6,56,101800,1192,1334,359,379,4,375,44600,400,44300,16530,310,3.6,10,10,64.4,1520,9,999999999,129,0.1240,0,88,999.000,999.0,99.0 +1989,5,21,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,5.6,58,101800,1199,1334,356,443,2,441,51500,200,51400,18390,340,3.6,10,10,56.3,1520,9,999999999,129,0.1240,0,88,999.000,999.0,99.0 +1989,5,21,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,6.1,58,101800,1147,1334,342,687,330,404,74900,35800,44100,17250,330,3.6,8,8,48.3,1490,9,999999999,129,0.1240,0,88,999.000,999.0,99.0 +1989,5,21,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,5.6,54,101700,1039,1334,362,313,2,311,36500,200,36400,13860,330,1.5,10,10,40.2,1680,9,999999999,129,0.1240,0,88,999.000,999.0,99.0 +1989,5,21,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,6.1,56,101700,883,1334,363,264,4,261,30500,400,30300,11260,250,2.1,10,10,40.2,1680,9,999999999,139,0.1240,0,88,999.000,999.0,99.0 +1989,5,21,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,6.1,58,101600,690,1334,360,247,4,244,27700,400,27500,9190,290,2.1,10,10,40.2,1830,9,999999999,129,0.1240,0,88,999.000,999.0,99.0 +1989,5,21,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,6.7,60,101600,473,1334,360,111,1,111,12700,100,12700,4350,310,2.6,10,10,40.2,1980,9,999999999,139,0.1240,0,88,999.000,999.0,99.0 +1989,5,21,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,6.7,62,101600,246,1334,358,59,4,58,6600,100,6600,2040,330,1.5,10,10,48.3,1980,9,999999999,139,0.1240,0,88,999.000,999.0,99.0 +1989,5,21,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,7.2,64,101600,43,878,358,12,0,12,1400,0,1400,430,330,3.1,10,10,24.1,1830,9,999999999,139,0.1240,0,88,999.000,999.0,99.0 +1989,5,21,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,7.2,69,101600,0,0,353,0,0,0,0,0,0,0,350,1.5,10,10,24.1,1980,9,999999999,139,0.1370,0,88,999.000,999.0,99.0 +1989,5,21,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,7.8,72,101600,0,0,354,0,0,0,0,0,0,0,340,3.1,10,10,24.1,1250,9,999999999,150,0.1370,0,88,999.000,999.0,99.0 +1989,5,21,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,6.7,72,101600,0,0,347,0,0,0,0,0,0,0,310,2.6,10,10,24.1,1250,9,999999999,139,0.1370,0,88,999.000,999.0,99.0 +1989,5,21,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,6.7,74,101500,0,0,344,0,0,0,0,0,0,0,290,2.6,10,10,24.1,1220,9,999999999,139,0.1370,0,88,999.000,999.0,99.0 +1989,5,22,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,6.1,72,101500,0,0,343,0,0,0,0,0,0,0,320,2.6,10,10,24.1,1980,9,999999999,129,0.1370,0,88,999.000,999.0,99.0 +1989,5,22,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,6.7,74,101500,0,0,344,0,0,0,0,0,0,0,320,3.1,10,10,24.1,1980,9,999999999,139,0.1370,0,88,999.000,999.0,99.0 +1989,5,22,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,6.7,77,101400,0,0,342,0,0,0,0,0,0,0,0,0.0,10,10,24.1,1830,9,999999999,139,0.1370,0,88,999.000,999.0,99.0 +1989,5,22,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,7.2,80,101400,0,0,342,0,0,0,0,0,0,0,290,1.5,10,10,24.1,1370,9,999999999,139,0.1370,0,88,999.000,999.0,99.0 +1989,5,22,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,6.7,80,101400,18,589,339,6,0,6,0,0,0,0,0,0.0,10,10,32.2,3660,9,999999999,139,0.0890,0,88,999.000,999.0,99.0 +1989,5,22,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,7.8,83,101400,195,1333,343,41,0,41,4600,0,4600,1450,0,0.0,10,10,32.2,3660,9,999999999,150,0.0890,0,88,999.000,999.0,99.0 +1989,5,22,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,7.8,77,101300,421,1333,348,117,1,116,13100,100,13100,4230,60,2.1,10,10,32.2,3660,9,999999999,150,0.0890,0,88,999.000,999.0,99.0 +1989,5,22,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,7.8,75,101300,642,1333,351,209,1,209,23600,100,23600,7970,40,2.6,10,10,32.2,4270,9,999999999,150,0.0890,0,88,999.000,999.0,99.0 +1989,5,22,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,8.3,72,101300,842,1333,357,322,1,321,36300,100,36300,12450,350,2.6,10,10,32.2,2740,9,999999999,150,0.0890,0,88,999.000,999.0,99.0 +1989,5,22,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,8.3,69,101300,1008,1333,350,353,71,300,39000,7200,33600,11550,360,2.6,10,9,32.2,2440,9,999999999,150,0.0890,0,88,999.000,999.0,99.0 +1989,5,22,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,8.9,65,101200,1128,1333,351,397,95,317,44300,10200,35700,12690,350,3.6,10,8,40.2,4570,9,999999999,160,0.0890,0,88,999.000,999.0,99.0 +1989,5,22,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,7.8,62,101200,1193,1333,365,379,3,376,44600,300,44400,16570,10,3.1,10,10,48.3,1220,9,999999999,150,0.0890,0,88,999.000,999.0,99.0 +1989,5,22,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,7.8,58,101100,1200,1333,360,477,185,311,53400,20200,35200,15150,350,3.1,9,9,48.3,2740,9,999999999,150,0.0890,0,88,999.000,999.0,99.0 +1989,5,22,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,8.3,54,101100,1149,1333,356,449,91,371,49700,9300,41600,16540,330,4.1,8,7,40.2,2740,9,999999999,150,0.0890,0,88,999.000,999.0,99.0 +1989,5,22,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,7.2,49,101000,1041,1333,350,677,538,257,73200,56100,29200,8740,350,4.1,8,5,40.2,3050,9,999999999,139,0.0890,0,88,999.000,999.0,99.0 +1989,5,22,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,6.7,48,100900,886,1333,350,532,438,242,56500,45200,26400,6360,300,2.6,8,6,48.3,7620,9,999999999,139,0.0890,0,88,999.000,999.0,99.0 +1989,5,22,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,5.6,43,100800,693,1333,345,474,603,163,50800,60800,19200,3480,320,3.6,5,4,48.3,77777,9,999999999,129,0.0890,0,88,999.000,999.0,99.0 +1989,5,22,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,6.7,52,100700,476,1333,345,188,233,105,20400,22400,12400,2040,290,4.6,7,6,40.2,7620,9,999999999,139,0.0890,0,88,999.000,999.0,99.0 +1989,5,22,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,7.2,58,100700,250,1333,367,62,1,62,7000,0,7000,2150,310,6.7,10,10,40.2,2130,9,999999999,139,0.0890,0,88,999.000,999.0,99.0 +1989,5,22,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,8.9,93,101000,45,900,341,6,0,6,700,0,700,230,240,6.2,10,10,8.0,1370,9,999999999,160,0.0890,0,88,999.000,999.0,99.0 +1989,5,22,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,9.4,100,101100,0,0,339,0,0,0,0,0,0,0,200,4.1,10,10,9.7,520,9,999999999,160,0.1370,0,88,999.000,999.0,99.0 +1989,5,22,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,9.4,100,101200,0,0,339,0,0,0,0,0,0,0,190,5.2,10,10,9.7,1310,9,999999999,160,0.1370,0,88,999.000,999.0,99.0 +1989,5,22,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,9.4,96,101100,0,0,342,0,0,0,0,0,0,0,190,3.6,10,10,16.1,520,9,999999999,160,0.1370,0,88,999.000,999.0,99.0 +1989,5,22,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,8.9,96,101100,0,0,338,0,0,0,0,0,0,0,190,5.7,10,10,16.1,610,9,999999999,160,0.1370,0,88,999.000,999.0,99.0 +1989,5,23,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,7.8,93,101100,0,0,319,0,0,0,0,0,0,0,200,5.2,8,8,16.1,980,9,999999999,150,0.1370,0,88,999.000,999.0,99.0 +1989,5,23,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,7.8,93,101100,0,0,335,0,0,0,0,0,0,0,190,4.6,10,10,24.1,1830,9,999999999,150,0.1370,0,88,999.000,999.0,99.0 +1989,5,23,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,7.2,96,101200,0,0,313,0,0,0,0,0,0,0,170,3.1,10,8,24.1,2740,9,999999999,139,0.1370,0,88,999.000,999.0,99.0 +1989,5,23,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,6.7,93,101200,0,0,308,0,0,0,0,0,0,0,190,2.1,9,7,24.1,2440,9,999999999,139,0.1370,0,88,999.000,999.0,99.0 +1989,5,23,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,6.7,93,101200,19,611,299,7,9,6,0,0,0,0,180,4.6,4,4,48.3,77777,9,999999999,139,0.1240,0,88,999.000,999.0,99.0 +1989,5,23,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,7.2,89,101200,198,1332,299,70,168,46,7600,10600,6000,840,190,4.1,2,2,48.3,77777,9,999999999,139,0.1240,0,88,999.000,999.0,99.0 +1989,5,23,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,6.7,80,101200,423,1332,303,227,441,87,24200,39800,11600,1610,200,5.7,2,2,48.3,77777,9,999999999,139,0.1240,0,88,999.000,999.0,99.0 +1989,5,23,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,6.1,72,101200,644,1332,315,392,424,187,40800,42100,20400,3950,210,7.7,6,5,64.4,7620,9,999999999,129,0.1240,0,88,999.000,999.0,99.0 +1989,5,23,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,4.4,59,101200,844,1332,325,425,194,302,46300,20400,33400,8440,190,9.3,8,7,64.4,940,9,999999999,120,0.1240,0,88,999.000,999.0,99.0 +1989,5,23,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,4.4,62,101100,1009,1332,344,237,7,232,28300,600,27800,11010,180,6.7,10,10,16.1,1010,9,999999999,120,0.1240,0,88,999.000,999.0,99.0 +1989,5,23,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,8.3,75,101100,1129,1332,345,344,122,240,39000,13100,27800,9640,220,6.7,10,9,32.2,1100,9,999999999,150,0.1240,0,88,999.000,999.0,99.0 +1989,5,23,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,5.6,62,101100,1195,1332,351,475,8,467,54900,800,54200,19000,200,8.8,10,10,32.2,1070,9,999999999,129,0.1240,0,88,999.000,999.0,99.0 +1989,5,23,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,5.0,55,101100,1202,1332,339,552,171,398,61100,18300,44600,19120,220,7.7,8,8,32.2,1830,9,999999999,120,0.1240,0,88,999.000,999.0,99.0 +1989,5,23,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,4.4,57,101200,1150,1332,350,340,8,333,40200,700,39600,15050,230,9.3,10,10,32.2,1830,9,999999999,120,0.1240,0,88,999.000,999.0,99.0 +1989,5,23,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,5.6,64,101200,1043,1332,348,285,6,280,33600,500,33200,12870,190,9.8,10,10,32.2,1100,9,999999999,129,0.1240,0,88,999.000,999.0,99.0 +1989,5,23,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,5.6,66,101200,888,1332,346,360,0,360,40600,0,40600,13800,200,8.2,10,10,56.3,1010,9,999999999,129,0.1240,0,88,999.000,999.0,99.0 +1989,5,23,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,5.0,71,101300,695,1332,337,175,8,171,20300,600,20000,7280,200,7.2,10,10,56.3,1980,9,999999999,120,0.1240,0,88,999.000,999.0,99.0 +1989,5,23,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,6.7,86,101300,479,1332,334,70,1,70,8300,100,8300,3030,190,8.8,10,10,24.1,980,9,999999999,139,0.1240,0,88,999.000,999.0,99.0 +1989,5,23,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,6.1,86,101400,253,1332,330,31,3,30,3600,0,3600,1210,180,6.7,10,10,24.1,1100,9,999999999,129,0.1240,0,88,999.000,999.0,99.0 +1989,5,23,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,7.2,96,101400,48,944,329,8,0,8,1000,0,1000,310,190,6.2,10,10,16.1,1680,9,999999999,139,0.1240,0,88,999.000,999.0,99.0 +1989,5,23,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,7.2,93,101500,0,0,331,0,0,0,0,0,0,0,200,4.6,10,10,11.3,1220,9,999999999,139,0.1370,0,88,999.000,999.0,99.0 +1989,5,23,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,7.2,93,101500,0,0,331,0,0,0,0,0,0,0,230,8.8,10,10,11.3,760,9,999999999,139,0.1370,0,88,999.000,999.0,99.0 +1989,5,23,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,7.8,96,101500,0,0,332,0,0,0,0,0,0,0,220,4.1,10,10,16.1,1070,9,999999999,150,0.1370,0,88,999.000,999.0,99.0 +1989,5,23,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,7.8,96,101600,0,0,332,0,0,0,0,0,0,0,200,6.2,10,10,16.1,1100,9,999999999,150,0.1370,0,88,999.000,999.0,99.0 +1989,5,24,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,7.8,96,101600,0,0,332,0,0,0,0,0,0,0,200,5.7,10,10,16.1,1100,9,999999999,150,0.1380,0,88,999.000,999.0,99.0 +1989,5,24,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,7.2,93,101600,0,0,322,0,0,0,0,0,0,0,190,7.2,9,9,16.1,1130,9,999999999,139,0.1380,0,88,999.000,999.0,99.0 +1989,5,24,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,7.2,96,101600,0,0,320,0,0,0,0,0,0,0,180,4.1,9,9,24.1,1830,9,999999999,139,0.1380,0,88,999.000,999.0,99.0 +1989,5,24,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,7.8,96,101600,0,0,332,0,0,0,0,0,0,0,180,5.7,10,10,24.1,1220,9,999999999,150,0.1380,0,88,999.000,999.0,99.0 +1989,5,24,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,7.2,93,101700,20,610,331,4,0,4,0,0,0,0,200,4.1,10,10,24.1,1220,9,999999999,139,0.0870,0,88,999.000,999.0,99.0 +1989,5,24,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,7.8,96,101700,200,1332,332,29,0,29,3400,0,3400,1110,190,6.2,10,10,24.1,1430,9,999999999,150,0.0870,0,88,999.000,999.0,99.0 +1989,5,24,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,7.8,93,101800,426,1332,335,81,1,81,9400,100,9400,3270,190,3.6,10,10,19.3,1220,9,999999999,150,0.0870,0,88,999.000,999.0,99.0 +1989,5,24,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,8.3,96,101800,646,1332,335,136,0,136,15900,0,15900,5890,200,5.2,10,10,19.3,1220,9,999999999,150,0.0870,0,88,999.000,999.0,99.0 +1989,5,24,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,8.9,93,101900,846,1332,341,295,2,294,33600,200,33500,11860,190,6.2,10,10,32.2,1430,9,999999999,160,0.0870,0,88,999.000,999.0,99.0 +1989,5,24,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,8.9,90,101900,1011,1332,344,210,1,209,25200,100,25100,10130,180,4.6,10,10,32.2,730,9,999999999,160,0.0870,0,88,999.000,999.0,99.0 +1989,5,24,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,8.3,77,101900,1130,1332,351,410,1,409,47500,100,47500,17170,190,5.7,10,10,32.2,850,9,999999999,150,0.0870,0,88,999.000,999.0,99.0 +1989,5,24,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,8.3,72,101900,1196,1332,347,498,138,374,55300,14800,42000,17690,230,5.7,9,9,32.2,2740,9,999999999,150,0.0870,0,88,999.000,999.0,99.0 +1989,5,24,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,8.3,67,101800,1203,1332,345,511,253,282,57500,27600,32500,13820,200,4.6,8,8,32.2,2290,9,999999999,150,0.0870,0,88,999.000,999.0,99.0 +1989,5,24,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,10.0,90,101900,1152,1332,329,614,305,350,67600,33200,38900,14930,170,3.6,7,7,32.2,2440,9,999999999,170,0.0870,0,88,999.000,999.0,99.0 +1989,5,24,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,9.4,75,101800,1045,1332,332,667,508,270,71900,53000,30300,9300,200,5.2,5,5,32.2,77777,9,999999999,160,0.0870,0,88,999.000,999.0,99.0 +1989,5,24,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,8.9,75,101800,890,1332,340,382,356,145,42800,37000,18000,3700,210,2.6,8,8,48.3,1830,9,999999999,160,0.0870,0,88,999.000,999.0,99.0 +1989,5,24,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,8.3,77,101800,698,1332,351,244,116,184,27100,12000,20800,4660,140,3.6,10,10,40.2,1520,9,999999999,150,0.0870,0,88,999.000,999.0,99.0 +1989,5,24,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,10.0,83,101800,481,1332,339,145,79,117,16100,7600,13300,2690,110,1.5,8,8,64.4,2290,9,999999999,170,0.0870,0,88,999.000,999.0,99.0 +1989,5,24,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,10.0,90,101800,256,1332,351,38,10,36,4200,800,4000,990,60,4.1,10,10,48.3,820,9,999999999,170,0.0870,0,88,999.000,999.0,99.0 +1989,5,24,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,10.0,93,101900,50,966,348,6,1,6,700,0,700,240,130,2.6,10,10,32.2,820,9,999999999,170,0.0870,0,88,999.000,999.0,99.0 +1989,5,24,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,9.4,93,101900,0,0,345,0,0,0,0,0,0,0,140,3.6,10,10,24.1,820,9,999999999,160,0.1380,0,88,999.000,999.0,99.0 +1989,5,24,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,10.0,96,102000,0,0,345,0,0,0,0,0,0,0,100,3.1,10,10,16.1,880,9,999999999,170,0.1380,0,88,999.000,999.0,99.0 +1989,5,24,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,10.0,100,102000,0,0,343,0,0,0,0,0,0,0,60,2.1,10,10,16.1,270,9,999999999,170,0.1380,0,88,999.000,999.0,99.0 +1989,5,24,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,9.4,96,102000,0,0,342,0,0,0,0,0,0,0,330,4.1,10,10,24.1,1680,9,999999999,160,0.1380,0,88,999.000,999.0,99.0 +1989,5,25,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,9.4,100,102000,0,0,339,0,0,0,0,0,0,0,260,3.1,10,10,16.1,1010,9,999999999,160,0.1380,0,88,999.000,999.0,99.0 +1989,5,25,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,8.9,100,102100,0,0,336,0,0,0,0,0,0,0,220,2.1,10,10,9.7,1100,9,999999999,160,0.1380,0,88,999.000,999.0,99.0 +1989,5,25,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,8.9,100,102100,0,0,336,0,0,0,0,0,0,0,160,3.1,10,10,11.3,1220,9,999999999,160,0.1380,0,88,999.000,999.0,99.0 +1989,5,25,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,8.9,100,102100,0,0,336,0,0,0,0,0,0,0,170,3.6,10,10,24.1,1310,9,999999999,160,0.1380,0,88,999.000,999.0,99.0 +1989,5,25,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,8.3,96,102200,22,632,335,3,0,3,0,0,0,0,140,3.1,10,10,32.2,940,9,999999999,150,0.1620,0,88,999.000,999.0,99.0 +1989,5,25,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,8.3,96,102200,203,1331,326,21,11,20,2400,800,2300,550,170,3.1,9,9,32.2,1680,9,999999999,150,0.1620,0,88,999.000,999.0,99.0 +1989,5,25,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,8.9,93,102300,428,1331,316,151,172,96,16400,15900,11200,1840,180,4.1,6,6,32.2,2130,9,999999999,160,0.1620,0,88,999.000,999.0,99.0 +1989,5,25,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,8.3,86,102300,648,1331,322,348,352,177,37600,36300,19900,3870,260,4.1,7,7,32.2,940,9,999999999,150,0.1620,0,88,999.000,999.0,99.0 +1989,5,25,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,8.3,77,102300,847,1331,334,519,404,262,56100,43200,28600,6800,0,0.0,8,8,32.2,940,9,999999999,150,0.1620,0,88,999.000,999.0,99.0 +1989,5,25,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,8.3,69,102300,1012,1331,333,634,357,363,68500,38600,39100,11870,170,2.6,6,6,32.2,1830,9,999999999,150,0.1620,0,88,999.000,999.0,99.0 +1989,5,25,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,6.7,64,102400,1132,1331,355,319,26,297,35300,2700,33100,13330,210,3.1,10,10,32.2,1830,9,999999999,139,0.1620,0,88,999.000,999.0,99.0 +1989,5,25,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,7.2,60,102400,1197,1331,346,628,184,463,68900,19600,51200,22010,20,3.1,9,8,32.2,1830,9,999999999,139,0.1620,0,88,999.000,999.0,99.0 +1989,5,25,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,7.2,60,102300,1205,1331,346,629,193,454,69000,20500,50400,22050,330,2.6,8,8,40.2,1980,9,999999999,139,0.1620,0,88,999.000,999.0,99.0 +1989,5,25,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,6.7,58,102300,1153,1331,353,505,124,397,55600,13200,44100,16850,330,3.1,10,9,32.2,1980,9,999999999,139,0.1620,0,88,999.000,999.0,99.0 +1989,5,25,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,7.2,52,102300,1047,1331,352,723,472,353,75800,49000,37200,12460,330,2.1,7,7,32.2,1680,9,999999999,139,0.1620,0,88,999.000,999.0,99.0 +1989,5,25,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,7.2,50,102300,892,1331,368,243,14,233,28300,1200,27500,10440,200,2.6,9,9,56.3,2440,9,999999999,139,0.1620,0,88,999.000,999.0,99.0 +1989,5,25,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,10.0,72,102300,700,1331,357,163,94,113,18500,9800,13300,2860,300,6.7,9,9,56.3,1980,9,999999999,170,0.1620,0,88,999.000,999.0,99.0 +1989,5,25,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,8.3,67,102200,484,1331,345,126,64,103,13900,6000,11700,3010,340,2.6,8,8,56.3,2590,9,999999999,150,0.1620,0,88,999.000,999.0,99.0 +1989,5,25,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,8.9,70,102200,259,1331,340,73,62,61,8000,4800,7100,1310,350,3.1,9,7,56.3,2590,9,999999999,160,0.1620,0,88,999.000,999.0,99.0 +1989,5,25,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,8.3,75,102200,52,988,328,16,3,15,1700,0,1700,520,340,2.1,10,6,40.2,7620,9,999999999,150,0.1620,0,88,999.000,999.0,99.0 +1989,5,25,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,9.4,93,102200,0,0,319,0,0,0,0,0,0,0,280,2.6,10,6,24.1,7620,9,999999999,160,0.1380,0,88,999.000,999.0,99.0 +1989,5,25,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,9.4,90,102200,0,0,322,0,0,0,0,0,0,0,300,2.6,10,6,24.1,1220,9,999999999,160,0.1380,0,88,999.000,999.0,99.0 +1989,5,25,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,10.0,93,102100,0,0,348,0,0,0,0,0,0,0,300,2.1,10,10,24.1,7620,9,999999999,170,0.1380,0,88,999.000,999.0,99.0 +1989,5,25,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,9.4,90,102100,0,0,338,0,0,0,0,0,0,0,360,2.1,10,9,24.1,4570,9,999999999,160,0.1380,0,88,999.000,999.0,99.0 +1989,5,26,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,8.9,90,102100,0,0,344,0,0,0,0,0,0,0,340,2.1,10,10,24.1,4570,9,999999999,160,0.1380,0,88,999.000,999.0,99.0 +1989,5,26,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,8.9,90,102100,0,0,344,0,0,0,0,0,0,0,330,1.5,10,10,24.1,3660,9,999999999,160,0.1380,0,88,999.000,999.0,99.0 +1989,5,26,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,9.4,93,102000,0,0,345,0,0,0,0,0,0,0,0,0.0,10,10,24.1,3660,9,999999999,160,0.1380,0,88,999.000,999.0,99.0 +1989,5,26,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,9.4,96,102000,0,0,325,0,0,0,0,0,0,0,120,3.1,10,8,24.1,3660,9,999999999,160,0.1380,0,88,999.000,999.0,99.0 +1989,5,26,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,9.4,96,101900,23,654,342,3,0,3,0,0,0,0,90,3.1,10,10,64.4,4880,9,999999999,160,0.0890,0,88,999.000,999.0,99.0 +1989,5,26,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,9.4,96,102000,205,1331,342,28,4,28,3400,0,3400,1080,120,2.6,10,10,64.4,2130,9,999999999,160,0.0890,0,88,999.000,999.0,99.0 +1989,5,26,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,9.4,93,101900,430,1331,345,127,1,127,14200,100,14200,4540,140,3.1,10,10,64.4,2130,9,999999999,160,0.0890,0,88,999.000,999.0,99.0 +1989,5,26,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,10.0,86,101900,649,1331,353,167,5,164,19200,400,19000,6810,170,2.6,10,10,64.4,1980,9,999999999,170,0.0890,0,88,999.000,999.0,99.0 +1989,5,26,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,8.3,75,101900,849,1331,354,251,2,250,29000,200,28900,10690,180,2.1,10,10,64.4,1980,9,999999999,150,0.0890,0,88,999.000,999.0,99.0 +1989,5,26,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,8.3,75,101900,1013,1331,354,355,3,353,41000,300,40800,14910,180,3.1,10,10,64.4,1680,9,999999999,150,0.0890,0,88,999.000,999.0,99.0 +1989,5,26,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,8.3,72,101800,1133,1331,357,425,4,421,49100,400,48800,17500,180,4.1,10,10,64.4,1680,9,999999999,150,0.0890,0,88,999.000,999.0,99.0 +1989,5,26,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,8.9,72,101800,1198,1331,360,403,1,402,47200,100,47200,17360,160,3.1,10,10,64.4,1680,9,999999999,160,0.0890,0,88,999.000,999.0,99.0 +1989,5,26,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,9.4,72,101800,1206,1331,364,255,3,253,31100,200,30900,12330,180,1.5,10,10,32.2,1680,9,999999999,160,0.0890,0,88,999.000,999.0,99.0 +1989,5,26,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,8.9,65,101700,1155,1331,369,414,1,413,48100,100,48100,17420,210,3.1,10,10,32.2,1680,9,999999999,160,0.0890,0,88,999.000,999.0,99.0 +1989,5,26,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,9.4,72,101700,1048,1331,364,216,0,216,26000,0,26000,10540,330,2.6,10,10,32.2,1040,9,999999999,160,0.0890,0,88,999.000,999.0,99.0 +1989,5,26,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,11.7,90,101700,894,1331,361,206,1,206,24400,100,24300,9520,320,3.6,10,10,16.1,1010,9,999999999,189,0.0890,0,88,999.000,999.0,99.0 +1989,5,26,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,12.2,93,101600,703,1331,361,135,1,134,15900,100,15900,6050,360,1.5,10,10,16.1,1220,9,999999999,189,0.0890,0,88,999.000,999.0,99.0 +1989,5,26,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,12.2,97,101600,487,1331,359,98,1,98,11400,100,11400,4010,120,3.6,10,10,19.3,1310,9,999999999,189,0.0890,0,88,999.000,999.0,99.0 +1989,5,26,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,12.2,97,101500,262,1331,359,40,1,40,4700,0,4700,1560,110,3.1,10,10,24.1,1340,9,999999999,189,0.0890,0,88,999.000,999.0,99.0 +1989,5,26,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,12.2,100,101500,55,1009,356,10,0,10,1200,0,1200,370,120,4.1,10,10,9.7,940,9,999999999,189,0.0890,0,88,999.000,999.0,99.0 +1989,5,26,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,12.2,100,101500,0,0,356,0,0,0,0,0,0,0,120,4.1,10,10,9.7,460,9,999999999,189,0.1380,0,88,999.000,999.0,99.0 +1989,5,26,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,12.2,100,101400,0,0,356,0,0,0,0,0,0,0,110,3.6,10,10,9.7,460,9,999999999,189,0.1380,0,88,999.000,999.0,99.0 +1989,5,26,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,12.2,97,101300,0,0,359,0,0,0,0,0,0,0,170,2.6,10,10,16.1,460,9,999999999,189,0.1380,0,88,999.000,999.0,99.0 +1989,5,26,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,12.2,100,101300,0,0,356,0,0,0,0,0,0,0,220,3.1,10,10,24.1,1340,9,999999999,189,0.1380,0,88,999.000,999.0,99.0 +1989,5,27,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,10.0,100,101300,0,0,343,0,0,0,0,0,0,0,330,7.2,10,10,8.0,520,9,999999999,170,0.1390,0,88,999.000,999.0,99.0 +1989,5,27,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,8.9,96,101400,0,0,338,0,0,0,0,0,0,0,320,5.7,10,10,24.1,1430,9,999999999,160,0.1390,0,88,999.000,999.0,99.0 +1989,5,27,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,8.3,96,101400,0,0,335,0,0,0,0,0,0,0,320,6.2,10,10,24.1,1680,9,999999999,150,0.1390,0,88,999.000,999.0,99.0 +1989,5,27,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,7.8,93,101400,0,0,335,0,0,0,0,0,0,0,300,3.6,10,10,24.1,2130,9,999999999,150,0.1390,0,88,999.000,999.0,99.0 +1989,5,27,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,8.9,100,101500,24,676,327,5,0,5,0,0,0,0,250,3.1,10,9,24.1,1250,9,999999999,160,0.2070,0,88,999.000,999.0,99.0 +1989,5,27,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,8.3,100,101500,207,1331,308,71,100,55,7700,7000,6600,1170,240,2.1,6,6,40.2,7620,9,999999999,150,0.2070,0,88,999.000,999.0,99.0 +1989,5,27,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,8.3,90,101500,432,1331,341,59,5,58,7100,200,7000,2490,260,3.1,10,10,40.2,2130,9,999999999,150,0.2070,0,88,999.000,999.0,99.0 +1989,5,27,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,7.8,83,101500,651,1331,321,374,259,247,40300,26300,27400,6110,240,3.6,7,7,32.2,1370,9,999999999,150,0.2070,0,88,999.000,999.0,99.0 +1989,5,27,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,6.7,67,101500,850,1331,321,468,418,201,50300,43100,22700,5000,230,2.6,4,4,32.2,77777,9,999999999,139,0.2070,0,88,999.000,999.0,99.0 +1989,5,27,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,6.7,67,101400,1015,1331,335,352,90,283,39100,9600,31800,9440,240,3.6,8,8,32.2,2440,9,999999999,139,0.2070,0,88,999.000,999.0,99.0 +1989,5,27,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,8.3,96,101500,1134,1331,319,522,325,245,57400,34100,28300,10540,250,2.1,8,8,19.3,940,9,999999999,150,0.2070,0,88,999.000,999.0,99.0 +1989,5,27,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,8.9,75,101400,1200,1331,335,646,262,409,70700,28500,45000,20530,190,5.2,7,7,32.2,2440,9,999999999,160,0.2070,0,88,999.000,999.0,99.0 +1989,5,27,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,7.2,77,101400,1207,1331,323,917,589,383,97400,61500,41600,21740,30,1.5,7,7,32.2,980,9,999999999,139,0.2070,0,88,999.000,999.0,99.0 +1989,5,27,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,8.3,86,101500,1156,1331,343,285,38,252,31600,3900,28300,11950,90,2.6,10,10,19.3,1010,9,999999999,150,0.2070,0,88,999.000,999.0,99.0 +1989,5,27,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,9.4,86,101500,1050,1331,350,207,11,198,25100,900,24400,9810,360,4.1,10,10,32.2,1010,9,999999999,160,0.2070,0,88,999.000,999.0,99.0 +1989,5,27,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,8.3,90,101600,896,1331,341,154,1,153,18600,100,18500,7480,90,3.1,10,10,32.2,1370,9,999999999,150,0.2070,0,88,999.000,999.0,99.0 +1989,5,27,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,8.9,90,101500,705,1331,328,291,128,224,31900,13200,24900,5700,80,4.6,8,8,32.2,1520,9,999999999,160,0.2070,0,88,999.000,999.0,99.0 +1989,5,27,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,8.9,83,101500,489,1331,340,119,36,106,13100,3400,11900,3090,60,2.6,9,9,40.2,1520,9,999999999,160,0.2070,0,88,999.000,999.0,99.0 +1989,5,27,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,8.9,93,101500,265,1331,311,91,129,66,9700,9700,7800,1240,80,3.6,5,4,40.2,77777,9,999999999,160,0.2070,0,88,999.000,999.0,99.0 +1989,5,27,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,8.3,93,101500,57,1031,305,14,15,12,1500,600,1400,250,110,2.6,3,3,40.2,77777,9,999999999,150,0.2070,0,88,999.000,999.0,99.0 +1989,5,27,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,8.9,96,101600,0,0,313,0,0,0,0,0,0,0,0,0.0,6,6,24.1,3050,9,999999999,160,0.1390,0,88,999.000,999.0,99.0 +1989,5,27,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,8.9,100,101600,0,0,320,0,0,0,0,0,0,0,110,2.1,8,8,24.1,1830,9,999999999,160,0.1390,0,88,999.000,999.0,99.0 +1989,5,27,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,7.8,96,101600,0,0,316,0,0,0,0,0,0,0,150,3.1,8,8,24.1,1980,9,999999999,150,0.1390,0,88,999.000,999.0,99.0 +1989,5,27,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,7.8,100,101600,0,0,309,0,0,0,0,0,0,0,110,3.1,7,7,24.1,1980,9,999999999,150,0.1390,0,88,999.000,999.0,99.0 +1989,5,28,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,7.2,96,101600,0,0,300,0,0,0,0,0,0,0,120,2.6,5,4,24.1,77777,9,999999999,139,0.1390,0,88,999.000,999.0,99.0 +1989,5,28,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,7.2,100,101600,0,0,295,0,0,0,0,0,0,0,150,3.6,3,3,24.1,77777,9,999999999,139,0.1390,0,88,999.000,999.0,99.0 +1989,5,28,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,6.7,100,101600,0,0,292,0,0,0,0,0,0,0,130,2.1,3,3,24.1,77777,9,999999999,139,0.1390,0,88,999.000,999.0,99.0 +1989,5,28,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,6.1,100,101600,0,0,304,0,0,0,0,0,0,0,270,1.5,10,8,24.1,460,9,999999999,129,0.1390,0,88,999.000,999.0,99.0 +1989,5,28,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,7.2,100,101600,25,676,326,3,0,3,0,0,0,0,200,1.5,10,10,32.2,400,9,999999999,139,0.0630,0,88,999.000,999.0,99.0 +1989,5,28,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,8.3,100,101600,209,1330,312,89,69,78,9700,5300,8900,1740,210,1.5,8,7,11.3,1460,9,999999999,150,0.0630,0,88,999.000,999.0,99.0 +1989,5,28,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,8.3,93,101600,433,1330,338,100,17,95,11500,1000,11200,3730,0,0.0,10,10,24.1,1980,9,999999999,150,0.0630,0,88,999.000,999.0,99.0 +1989,5,28,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,8.3,86,101600,653,1330,343,230,13,224,25900,1100,25300,8420,260,1.5,10,10,32.2,1980,9,999999999,150,0.0630,0,88,999.000,999.0,99.0 +1989,5,28,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,8.3,83,101600,851,1330,346,213,6,209,24900,500,24600,9400,30,3.1,10,10,32.2,910,9,999999999,150,0.0630,0,88,999.000,999.0,99.0 +1989,5,28,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,8.3,75,101700,1016,1330,354,395,1,394,45200,100,45100,15960,20,2.1,10,10,32.2,940,9,999999999,150,0.0630,0,88,999.000,999.0,99.0 +1989,5,28,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,7.8,72,101700,1135,1330,344,495,120,393,54600,12800,43600,16060,340,3.1,9,9,32.2,1010,9,999999999,150,0.0630,0,88,999.000,999.0,99.0 +1989,5,28,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,6.7,60,101700,1201,1330,360,441,1,440,51400,100,51300,18390,350,2.6,10,10,64.4,1980,9,999999999,139,0.0630,0,88,999.000,999.0,99.0 +1989,5,28,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,8.3,62,101600,1208,1330,345,820,606,270,86700,61400,30800,14860,40,3.1,7,7,64.4,2440,9,999999999,150,0.0630,0,88,999.000,999.0,99.0 +1989,5,28,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,6.7,52,101600,1157,1330,339,791,655,221,84300,66800,26000,10200,360,2.6,4,4,64.4,77777,9,999999999,139,0.0630,0,88,999.000,999.0,99.0 +1989,5,28,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,6.7,50,101600,1052,1330,339,772,777,158,80800,78000,19000,5020,320,3.1,3,3,64.4,77777,9,999999999,139,0.0630,0,88,999.000,999.0,99.0 +1989,5,28,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,5.6,48,101600,898,1330,335,627,724,139,67200,73900,17200,3770,280,5.2,3,3,64.4,77777,9,999999999,129,0.0630,0,88,999.000,999.0,99.0 +1989,5,28,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,6.7,52,101600,707,1330,333,476,630,143,49700,62200,16600,3060,320,5.2,4,2,64.4,77777,9,999999999,139,0.0630,0,88,999.000,999.0,99.0 +1989,5,28,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,7.2,58,101600,492,1330,332,270,444,107,28900,41800,13400,2030,320,5.7,7,3,64.4,77777,9,999999999,139,0.0630,0,88,999.000,999.0,99.0 +1989,5,28,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,7.8,65,101600,268,1330,332,118,226,73,12500,17000,9100,1390,330,5.2,8,5,64.4,6100,9,999999999,150,0.0630,0,88,999.000,999.0,99.0 +1989,5,28,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,8.3,72,101600,59,1031,334,27,16,25,2800,900,2800,570,320,4.1,10,7,64.4,6100,9,999999999,150,0.0630,0,88,999.000,999.0,99.0 +1989,5,28,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,7.8,75,101700,0,0,334,0,0,0,0,0,0,0,300,4.6,10,8,24.1,6100,9,999999999,150,0.1390,0,88,999.000,999.0,99.0 +1989,5,28,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,7.8,77,101700,0,0,332,0,0,0,0,0,0,0,310,5.2,10,8,24.1,6100,9,999999999,150,0.1390,0,88,999.000,999.0,99.0 +1989,5,28,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,8.3,80,101700,0,0,320,0,0,0,0,0,0,0,300,5.2,8,5,24.1,6100,9,999999999,150,0.1390,0,88,999.000,999.0,99.0 +1989,5,28,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,8.9,83,101800,0,0,350,0,0,0,0,0,0,0,330,5.2,10,10,24.1,1980,9,999999999,160,0.1390,0,88,999.000,999.0,99.0 +1989,5,29,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,8.9,86,101800,0,0,337,0,0,0,0,0,0,0,300,3.6,9,9,24.1,2590,9,999999999,160,0.1390,0,88,999.000,999.0,99.0 +1989,5,29,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,8.9,90,101800,0,0,344,0,0,0,0,0,0,0,280,2.6,10,10,24.1,2130,9,999999999,160,0.1390,0,88,999.000,999.0,99.0 +1989,5,29,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,8.9,86,101800,0,0,347,0,0,0,0,0,0,0,320,2.6,10,10,24.1,1520,9,999999999,160,0.1390,0,88,999.000,999.0,99.0 +1989,5,29,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,9.4,93,101800,0,0,335,0,0,0,0,0,0,0,0,0.0,10,9,24.1,1370,9,999999999,160,0.1390,0,88,999.000,999.0,99.0 +1989,5,29,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,8.9,90,101900,26,698,344,5,1,5,0,0,0,0,350,2.6,10,10,32.2,1010,9,999999999,160,0.1200,0,88,999.000,999.0,99.0 +1989,5,29,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,9.4,93,101900,211,1330,345,25,7,24,2800,500,2700,660,0,0.0,10,10,32.2,1520,9,999999999,160,0.1200,0,88,999.000,999.0,99.0 +1989,5,29,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,10.0,96,101900,435,1330,345,62,1,62,7400,0,7400,2640,130,2.6,10,10,32.2,1520,9,999999999,170,0.1200,0,88,999.000,999.0,99.0 +1989,5,29,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,10.0,93,102000,654,1330,348,169,1,169,19500,100,19400,6990,160,2.1,10,10,32.2,1490,9,999999999,170,0.1200,0,88,999.000,999.0,99.0 +1989,5,29,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,10.0,86,102000,852,1330,353,311,5,308,35400,500,35100,12290,70,3.1,10,10,32.2,1460,9,999999999,170,0.1200,0,88,999.000,999.0,99.0 +1989,5,29,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,10.6,90,102000,1017,1330,354,312,5,308,36400,500,36000,13640,80,3.1,10,10,32.2,1520,9,999999999,170,0.1200,0,88,999.000,999.0,99.0 +1989,5,29,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,10.6,90,102100,1136,1330,354,350,5,347,41300,500,40900,15450,110,3.6,10,10,32.2,1070,9,999999999,170,0.1200,0,88,999.000,999.0,99.0 +1989,5,29,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,10.6,90,102100,1202,1330,354,396,3,394,46600,300,46400,17150,50,3.6,10,10,32.2,1070,9,999999999,170,0.1200,0,88,999.000,999.0,99.0 +1989,5,29,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,10.0,83,102100,1209,1330,356,395,0,395,46500,0,46500,17210,80,4.1,10,10,32.2,1310,9,999999999,170,0.1200,0,88,999.000,999.0,99.0 +1989,5,29,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,10.0,80,102100,1159,1330,359,410,1,409,47700,100,47700,17350,110,4.1,10,10,32.2,1430,9,999999999,170,0.1200,0,88,999.000,999.0,99.0 +1989,5,29,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,10.6,81,102100,1053,1330,363,395,0,395,45400,0,45400,16320,80,3.6,10,10,32.2,1520,9,999999999,179,0.1200,0,88,999.000,999.0,99.0 +1989,5,29,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,10.6,83,102100,900,1330,359,304,0,304,34900,0,34900,12630,80,4.1,10,10,48.3,1680,9,999999999,170,0.1200,0,88,999.000,999.0,99.0 +1989,5,29,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,10.0,78,102100,709,1330,362,225,0,225,25600,0,25600,8930,120,3.1,10,10,48.3,1680,9,999999999,170,0.1200,0,88,999.000,999.0,99.0 +1989,5,29,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,10.0,78,102100,495,1330,362,148,1,148,16700,100,16600,5440,90,3.6,10,10,40.2,1680,9,999999999,170,0.1200,0,88,999.000,999.0,99.0 +1989,5,29,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,10.0,80,102100,271,1330,349,36,24,31,4000,1900,3600,880,120,4.1,9,9,32.2,1830,9,999999999,170,0.1200,0,88,999.000,999.0,99.0 +1989,5,29,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,10.0,83,102100,62,1053,356,13,2,13,1500,0,1500,470,110,3.1,10,10,24.1,1680,9,999999999,170,0.1200,0,88,999.000,999.0,99.0 +1989,5,29,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,10.6,87,102100,0,0,357,0,0,0,0,0,0,0,100,3.1,10,10,24.1,1680,9,999999999,179,0.1390,0,88,999.000,999.0,99.0 +1989,5,29,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,10.6,90,102100,0,0,354,0,0,0,0,0,0,0,100,1.5,10,10,24.1,1680,9,999999999,170,0.1390,0,88,999.000,999.0,99.0 +1989,5,29,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,10.6,90,102100,0,0,354,0,0,0,0,0,0,0,70,1.5,10,10,24.1,1520,9,999999999,170,0.1390,0,88,999.000,999.0,99.0 +1989,5,29,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,10.6,90,102100,0,0,332,0,0,0,0,0,0,0,350,1.5,7,7,24.1,1520,9,999999999,170,0.1390,0,88,999.000,999.0,99.0 +1989,5,30,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,10.6,96,102100,0,0,332,0,0,0,0,0,0,0,350,1.5,8,8,24.1,1680,9,999999999,170,0.1400,0,88,999.000,999.0,99.0 +1989,5,30,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,9.4,90,102100,0,0,331,0,0,0,0,0,0,0,320,3.1,9,8,24.1,1520,9,999999999,160,0.1400,0,88,999.000,999.0,99.0 +1989,5,30,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,9.4,93,102200,0,0,345,0,0,0,0,0,0,0,340,2.1,10,10,24.1,1520,9,999999999,160,0.1400,0,88,999.000,999.0,99.0 +1989,5,30,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,9.4,93,102200,0,0,345,0,0,0,0,0,0,0,310,3.6,10,10,24.1,1520,9,999999999,160,0.1400,0,88,999.000,999.0,99.0 +1989,5,30,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,8.9,96,102200,27,720,311,10,1,10,0,0,0,0,260,1.5,7,5,40.2,1490,9,999999999,160,0.2560,0,88,999.000,999.0,99.0 +1989,5,30,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,10.0,96,102200,213,1329,317,67,31,62,7300,2400,6900,1490,300,1.5,6,5,32.2,1460,9,999999999,170,0.2560,0,88,999.000,999.0,99.0 +1989,5,30,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,9.4,86,102200,437,1329,350,106,36,94,11600,3300,10600,2670,310,2.6,10,10,40.2,1370,9,999999999,160,0.2560,0,88,999.000,999.0,99.0 +1989,5,30,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,10.0,83,102300,655,1329,346,211,36,193,23200,3600,21400,5840,290,2.1,10,9,40.2,1430,9,999999999,170,0.2560,0,88,999.000,999.0,99.0 +1989,5,30,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,10.6,75,102200,853,1329,333,492,356,263,53200,38100,28700,6870,0,0.0,7,3,48.3,77777,9,999999999,179,0.2560,0,88,999.000,999.0,99.0 +1989,5,30,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,11.1,70,102200,1018,1329,341,624,402,316,68100,43500,34700,10220,360,2.1,7,3,40.2,77777,9,999999999,179,0.2560,0,88,999.000,999.0,99.0 +1989,5,30,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,10.0,67,102200,1137,1329,373,342,8,336,40400,700,39800,15110,20,3.1,10,10,40.2,1310,9,999999999,170,0.2560,0,88,999.000,999.0,99.0 +1989,5,30,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,10.0,63,102200,1202,1329,368,399,57,348,44200,5800,38900,17330,310,3.1,10,9,40.2,1250,9,999999999,170,0.2560,0,88,999.000,999.0,99.0 +1989,5,30,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,9.4,56,102200,1210,1329,373,497,108,399,55100,11500,44500,19850,320,4.1,9,9,40.2,1370,9,999999999,160,0.2560,0,88,999.000,999.0,99.0 +1989,5,30,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,9.4,56,102200,1160,1329,373,482,84,409,53300,8700,45700,18400,290,3.6,9,9,40.2,1310,9,999999999,160,0.2560,0,88,999.000,999.0,99.0 +1989,5,30,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,10.6,55,102200,1055,1329,370,725,454,366,75800,47100,38300,13230,350,3.1,7,7,32.2,1340,9,999999999,179,0.2560,0,88,999.000,999.0,99.0 +1989,5,30,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,10.6,55,102100,902,1329,359,603,519,252,64000,53700,27500,6810,340,2.6,4,4,40.2,77777,9,999999999,179,0.2560,0,88,999.000,999.0,99.0 +1989,5,30,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,10.6,55,102100,711,1329,348,404,387,198,42500,39100,21600,4370,260,2.6,1,1,40.2,77777,9,999999999,179,0.2560,0,88,999.000,999.0,99.0 +1989,5,30,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,10.6,53,102000,497,1329,351,260,401,112,27800,37900,13600,2140,310,3.6,1,1,32.2,77777,9,999999999,179,0.2560,0,88,999.000,999.0,99.0 +1989,5,30,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,10.6,59,102100,274,1329,343,98,172,64,10600,13100,7900,1190,360,4.6,1,1,32.2,77777,9,999999999,179,0.2560,0,88,999.000,999.0,99.0 +1989,5,30,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,11.1,68,102100,64,1074,329,20,10,19,2200,600,2100,460,330,4.6,0,0,24.1,77777,9,999999999,179,0.2560,0,88,999.000,999.0,99.0 +1989,5,30,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,11.1,81,102100,0,0,317,0,0,0,0,0,0,0,290,2.6,0,0,24.1,77777,9,999999999,179,0.1400,0,88,999.000,999.0,99.0 +1989,5,30,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,11.1,84,102100,0,0,315,0,0,0,0,0,0,0,300,3.1,0,0,24.1,77777,9,999999999,179,0.1400,0,88,999.000,999.0,99.0 +1989,5,30,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,11.1,87,102100,0,0,312,0,0,0,0,0,0,0,260,1.5,0,0,24.1,77777,9,999999999,179,0.1400,0,88,999.000,999.0,99.0 +1989,5,30,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,11.1,93,102200,0,0,307,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,179,0.1400,0,88,999.000,999.0,99.0 +1989,5,31,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,11.1,96,102200,0,0,305,0,0,0,0,0,0,0,90,1.5,0,0,24.1,77777,9,999999999,179,0.1400,0,88,999.000,999.0,99.0 +1989,5,31,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,11.1,96,102200,0,0,305,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,179,0.1400,0,88,999.000,999.0,99.0 +1989,5,31,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,10.6,96,102200,0,0,302,0,0,0,0,0,0,0,330,2.6,0,0,24.1,77777,9,999999999,170,0.1400,0,88,999.000,999.0,99.0 +1989,5,31,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,10.6,96,102200,0,0,308,0,0,0,0,0,0,0,0,0.0,3,1,24.1,77777,9,999999999,170,0.1400,0,88,999.000,999.0,99.0 +1989,5,31,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,10.0,100,102300,28,720,307,8,10,7,0,0,0,0,130,2.1,6,2,32.2,77777,9,999999999,170,0.1260,0,88,999.000,999.0,99.0 +1989,5,31,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,10.6,96,102300,215,1329,320,79,80,66,8500,5600,7600,1400,310,2.1,7,5,32.2,7620,9,999999999,170,0.1260,0,88,999.000,999.0,99.0 +1989,5,31,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,11.1,93,102300,438,1329,355,153,29,143,16700,2700,15800,3750,330,2.1,10,10,32.2,310,9,999999999,179,0.1260,0,88,999.000,999.0,99.0 +1989,5,31,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,11.1,90,102400,656,1329,358,195,0,194,22100,0,22100,7720,310,1.5,10,10,11.3,400,9,999999999,179,0.1260,0,88,999.000,999.0,99.0 +1989,5,31,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,11.7,84,102400,854,1329,366,224,1,223,26100,100,26000,9900,30,2.1,10,10,16.1,400,9,999999999,189,0.1260,0,88,999.000,999.0,99.0 +1989,5,31,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,12.2,78,102400,1019,1329,340,693,672,177,73800,68600,21100,5800,0,0.0,3,3,16.1,77777,9,999999999,189,0.1260,0,88,999.000,999.0,99.0 +1989,5,31,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,12.8,70,102300,1138,1329,343,846,818,145,90300,82900,19200,6030,0,0.0,1,1,24.1,77777,9,999999999,200,0.1260,0,88,999.000,999.0,99.0 +1989,5,31,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,13.3,63,102300,1203,1329,348,928,865,145,95200,86600,16600,6030,60,2.1,0,0,24.1,77777,9,999999999,209,0.1260,0,88,999.000,999.0,99.0 +1989,5,31,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,13.3,59,102200,1211,1329,353,945,842,178,99700,84800,22200,9400,0,0.0,3,0,40.2,77777,9,999999999,209,0.1260,0,88,999.000,999.0,99.0 +1989,5,31,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,14.4,58,102100,1161,1329,362,889,824,169,93700,83000,21000,7360,180,1.5,3,0,40.2,77777,9,999999999,220,0.1260,0,88,999.000,999.0,99.0 +1989,5,31,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,13.9,50,102000,1056,1329,370,795,824,140,84300,83200,18000,4670,360,3.6,1,0,48.3,77777,9,999999999,209,0.1260,0,88,999.000,999.0,99.0 +1989,5,31,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,14.4,52,102000,903,1329,370,650,782,119,68700,78500,15200,3080,350,5.2,0,0,48.3,77777,9,999999999,220,0.1260,0,88,999.000,999.0,99.0 +1989,5,31,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,13.3,48,102000,713,1329,369,487,724,100,50900,71300,12600,2130,320,6.2,0,0,48.3,77777,9,999999999,200,0.1260,0,88,999.000,999.0,99.0 +1989,5,31,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,13.3,52,101900,499,1329,363,301,595,79,31800,56000,10700,1560,340,5.7,1,0,48.3,77777,9,999999999,209,0.1260,0,88,999.000,999.0,99.0 +1989,5,31,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,14.4,62,101900,276,1329,356,129,380,52,13400,29500,7300,940,330,6.2,1,0,48.3,77777,9,999999999,220,0.1260,0,88,999.000,999.0,99.0 +1989,5,31,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,13.9,66,102000,66,1096,348,24,62,19,2500,2100,2300,330,330,5.2,1,0,32.2,77777,9,999999999,209,0.1260,0,88,999.000,999.0,99.0 +1989,5,31,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,13.9,73,102000,0,0,340,0,0,0,0,0,0,0,310,5.2,1,0,24.1,77777,9,999999999,209,0.1400,0,88,999.000,999.0,99.0 +1989,5,31,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.1,13.7,81,102000,0,0,336,0,0,0,0,0,0,0,240,4.8,0,0,24.1,77777,9,999999999,209,0.1400,0,88,999.000,999.0,99.0 +1989,5,31,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.3,13.4,84,102000,0,0,332,0,0,0,0,0,0,0,280,4.5,0,0,24.1,77777,9,999999999,209,0.1400,0,88,999.000,999.0,99.0 +1989,5,31,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.5,13.2,87,102100,0,0,328,0,0,0,0,0,0,0,0,4.1,0,0,24.1,77777,9,999999999,209,0.1400,0,88,999.000,999.0,99.0 +1989,6,1,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.7,12.9,87,102000,0,0,325,0,0,0,0,0,0,0,340,3.7,0,0,24.1,77777,9,999999999,189,0.1400,0,88,999.000,999.0,99.0 +1989,6,1,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.9,12.7,84,102000,0,0,321,0,0,0,0,0,0,0,330,3.3,0,0,24.1,77777,9,999999999,189,0.1400,0,88,999.000,999.0,99.0 +1989,6,1,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.1,12.4,90,102100,0,0,317,0,0,0,0,0,0,0,360,3.0,0,0,24.1,77777,9,999999999,189,0.1400,0,88,999.000,999.0,99.0 +1989,6,1,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,12.2,93,102100,0,0,313,0,0,0,0,0,0,0,350,2.6,1,0,24.1,77777,9,999999999,189,0.1400,0,88,999.000,999.0,99.0 +1989,6,1,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,11.7,93,102100,29,742,310,11,1,11,0,0,0,0,20,2.1,2,0,32.2,77777,9,999999999,189,0.2980,0,88,999.000,999.0,99.0 +1989,6,1,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,12.8,90,102100,217,1328,319,76,112,58,8300,8000,7000,1230,20,2.1,0,0,32.2,77777,9,999999999,200,0.2980,0,88,999.000,999.0,99.0 +1989,6,1,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,13.3,87,102200,439,1328,325,220,336,109,23100,30600,12900,2060,260,1.5,0,0,32.2,77777,9,999999999,209,0.2980,0,88,999.000,999.0,99.0 +1989,6,1,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,13.9,78,102200,658,1328,346,387,420,179,40600,41900,19800,3790,220,1.5,2,2,16.1,77777,9,999999999,209,0.2980,0,88,999.000,999.0,99.0 +1989,6,1,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,14.4,73,102100,855,1328,354,544,541,195,58700,55900,22600,4870,280,2.6,2,2,24.1,77777,9,999999999,220,0.2980,0,88,999.000,999.0,99.0 +1989,6,1,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,14.4,68,102100,1019,1328,360,661,513,266,70800,53400,29700,8730,190,1.5,2,2,24.1,77777,9,999999999,220,0.2980,0,88,999.000,999.0,99.0 +1989,6,1,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,13.9,59,102100,1138,1328,371,777,514,336,82800,53600,36700,14980,280,1.5,3,3,40.2,77777,9,999999999,209,0.2980,0,88,999.000,999.0,99.0 +1989,6,1,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,15.0,58,102000,1204,1328,378,861,622,296,90200,62600,33300,15990,180,1.5,3,2,40.2,77777,9,999999999,229,0.2980,0,88,999.000,999.0,99.0 +1989,6,1,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,16.1,56,102000,1212,1328,388,803,535,314,87000,56000,35800,18210,270,3.1,3,2,64.4,77777,9,999999999,240,0.2980,0,88,999.000,999.0,99.0 +1989,6,1,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,17.2,54,101900,1162,1328,392,817,636,261,86200,64400,29700,12140,280,4.1,1,1,64.4,77777,9,999999999,259,0.2980,0,88,999.000,999.0,99.0 +1989,6,1,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,15.0,44,101800,1057,1328,388,761,668,230,80100,67600,26200,8000,330,5.2,0,0,64.4,77777,9,999999999,220,0.2980,0,88,999.000,999.0,99.0 +1989,6,1,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,13.9,41,101800,905,1328,386,599,582,203,62500,58400,22600,5310,330,6.2,0,0,64.4,77777,9,999999999,209,0.2980,0,88,999.000,999.0,99.0 +1989,6,1,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,13.3,41,101700,715,1328,383,446,521,167,47900,52800,19400,3630,330,7.7,0,0,64.4,77777,9,999999999,200,0.2980,0,88,999.000,999.0,99.0 +1989,6,1,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,12.2,41,101700,502,1328,376,266,386,122,28200,36500,14400,2350,330,7.2,0,0,64.4,77777,9,999999999,189,0.2980,0,88,999.000,999.0,99.0 +1989,6,1,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,14.4,50,101700,279,1328,373,107,173,72,11500,13300,8700,1360,330,7.7,0,0,64.4,77777,9,999999999,220,0.2980,0,88,999.000,999.0,99.0 +1989,6,1,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,14.4,58,101800,68,1118,362,20,7,20,2200,400,2200,480,320,5.2,0,0,64.4,77777,9,999999999,220,0.2980,0,88,999.000,999.0,99.0 +1989,6,1,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,13.9,59,101800,0,0,356,0,0,0,0,0,0,0,330,7.2,0,0,24.1,77777,9,999999999,209,0.1400,0,88,999.000,999.0,99.0 +1989,6,1,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,13.9,66,101800,0,0,348,0,0,0,0,0,0,0,330,6.7,0,0,24.1,77777,9,999999999,209,0.1400,0,88,999.000,999.0,99.0 +1989,6,1,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,13.9,68,101900,0,0,345,0,0,0,0,0,0,0,330,7.2,0,0,24.1,77777,9,999999999,209,0.1400,0,88,999.000,999.0,99.0 +1989,6,1,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,13.9,78,101900,0,0,335,0,0,0,0,0,0,0,320,2.6,0,0,24.1,77777,9,999999999,209,0.1400,0,88,999.000,999.0,99.0 +1989,6,2,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,13.3,78,101900,0,0,332,0,0,0,0,0,0,0,50,1.5,0,0,24.1,77777,9,999999999,200,0.1410,0,88,999.000,999.0,99.0 +1989,6,2,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,13.3,90,101900,0,0,322,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,209,0.1410,0,88,999.000,999.0,99.0 +1989,6,2,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,12.2,84,101900,0,0,321,0,0,0,0,0,0,0,110,2.1,0,0,24.1,77777,9,999999999,189,0.1410,0,88,999.000,999.0,99.0 +1989,6,2,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,11.7,81,102000,0,0,320,0,0,0,0,0,0,0,350,2.1,0,0,24.1,77777,9,999999999,189,0.1410,0,88,999.000,999.0,99.0 +1989,6,2,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,11.7,87,102000,30,764,315,12,14,11,1300,500,1300,230,340,2.6,0,0,32.2,77777,9,999999999,189,0.1600,0,88,999.000,999.0,99.0 +1989,6,2,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,12.2,87,102000,218,1328,318,93,242,53,9600,16400,6900,960,350,2.1,3,0,64.4,77777,9,999999999,189,0.1600,0,88,999.000,999.0,99.0 +1989,6,2,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,12.2,84,102000,441,1328,321,261,413,124,27000,37600,14500,2380,300,2.1,10,0,64.4,77777,9,999999999,189,0.1600,0,88,999.000,999.0,99.0 +1989,6,2,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,13.3,78,102000,658,1328,346,362,354,186,38900,36700,20700,4120,310,3.6,10,3,48.3,77777,9,999999999,209,0.1600,0,88,999.000,999.0,99.0 +1989,6,2,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,13.3,73,102000,856,1328,354,534,430,256,56000,44200,27400,6560,280,3.6,10,4,48.3,77777,9,999999999,209,0.1600,0,88,999.000,999.0,99.0 +1989,6,2,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,15.0,73,102000,1020,1328,371,541,267,336,58800,28900,36600,11020,290,4.6,10,6,64.4,7620,9,999999999,229,0.1600,0,88,999.000,999.0,99.0 +1989,6,2,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,15.0,66,101900,1139,1328,390,511,137,393,56200,14600,43700,16270,280,2.6,10,8,64.4,7620,9,999999999,229,0.1600,0,88,999.000,999.0,99.0 +1989,6,2,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,13.9,54,101900,1205,1328,400,814,479,379,86500,50000,41000,21510,340,3.6,10,8,64.4,7620,9,999999999,209,0.1600,0,88,999.000,999.0,99.0 +1989,6,2,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,15.0,54,101800,1213,1328,401,751,431,357,80400,45000,39200,20930,300,2.6,10,7,64.4,7620,9,999999999,229,0.1600,0,88,999.000,999.0,99.0 +1989,6,2,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,13.9,45,101700,1163,1328,404,601,258,374,65900,28000,41300,16750,330,4.6,10,6,64.4,7620,9,999999999,209,0.1600,0,88,999.000,999.0,99.0 +1989,6,2,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,14.4,47,101600,1059,1328,398,734,509,328,77600,53000,35200,11890,300,4.1,10,4,64.4,77777,9,999999999,220,0.1600,0,88,999.000,999.0,99.0 +1989,6,2,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,14.4,44,101600,907,1328,397,625,651,181,65800,65700,20800,4830,310,4.6,2,2,64.4,77777,9,999999999,220,0.1600,0,88,999.000,999.0,99.0 +1989,6,2,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,12.8,41,101500,717,1328,387,457,629,119,48500,62800,14500,2650,330,3.6,1,1,64.4,77777,9,999999999,200,0.1600,0,88,999.000,999.0,99.0 +1989,6,2,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,13.9,45,101500,504,1328,378,296,553,88,31100,51900,11300,1720,350,4.6,0,0,64.4,77777,9,999999999,209,0.1600,0,88,999.000,999.0,99.0 +1989,6,2,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,13.9,50,101500,281,1328,370,128,340,57,13700,26200,8100,1020,340,4.1,0,0,64.4,77777,9,999999999,209,0.1600,0,88,999.000,999.0,99.0 +1989,6,2,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,13.9,61,101500,71,1140,360,19,41,16,2000,1500,1900,270,330,3.1,1,1,64.4,77777,9,999999999,209,0.1600,0,88,999.000,999.0,99.0 +1989,6,2,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,13.3,66,101600,0,0,345,0,0,0,0,0,0,0,350,3.6,0,0,24.1,77777,9,999999999,209,0.1410,0,88,999.000,999.0,99.0 +1989,6,2,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,12.8,73,101600,0,0,334,0,0,0,0,0,0,0,330,4.1,0,0,24.1,77777,9,999999999,200,0.1410,0,88,999.000,999.0,99.0 +1989,6,2,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,12.2,73,101600,0,0,331,0,0,0,0,0,0,0,300,3.1,0,0,24.1,77777,9,999999999,189,0.1410,0,88,999.000,999.0,99.0 +1989,6,2,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,12.8,84,101600,0,0,324,0,0,0,0,0,0,0,330,2.1,0,0,24.1,77777,9,999999999,200,0.1410,0,88,999.000,999.0,99.0 +1989,6,3,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,12.2,84,101600,0,0,321,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,189,0.1410,0,88,999.000,999.0,99.0 +1989,6,3,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,12.2,90,101600,0,0,316,0,0,0,0,0,0,0,10,2.6,0,0,24.1,77777,9,999999999,189,0.1410,0,88,999.000,999.0,99.0 +1989,6,3,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,11.7,90,101600,0,0,313,0,0,0,0,0,0,0,360,2.1,0,0,24.1,77777,9,999999999,189,0.1410,0,88,999.000,999.0,99.0 +1989,6,3,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,11.7,93,101500,0,0,310,0,0,0,0,0,0,0,20,1.5,0,0,24.1,77777,9,999999999,189,0.1410,0,88,999.000,999.0,99.0 +1989,6,3,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,11.7,93,101600,31,763,316,13,35,9,1200,900,1100,150,10,2.1,1,1,64.4,77777,9,999999999,189,0.1070,0,88,999.000,999.0,99.0 +1989,6,3,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,12.2,93,101500,219,1328,313,100,360,41,10300,25400,6100,740,340,2.1,0,0,32.2,77777,9,999999999,189,0.1070,0,88,999.000,999.0,99.0 +1989,6,3,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,12.8,87,101600,442,1328,321,263,597,64,27700,54700,9500,1260,260,1.5,0,0,32.2,77777,9,999999999,200,0.1070,0,88,999.000,999.0,99.0 +1989,6,3,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,13.3,78,101500,659,1328,332,448,728,86,46900,71300,11400,1830,0,0.0,0,0,40.2,77777,9,999999999,200,0.1070,0,88,999.000,999.0,99.0 +1989,6,3,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,15.0,76,101500,857,1328,344,617,794,104,65500,79800,14000,2620,290,3.6,0,0,40.2,77777,9,999999999,229,0.1070,0,88,999.000,999.0,99.0 +1989,6,3,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,15.0,66,101400,1021,1328,373,572,331,317,62400,35800,34800,10320,360,2.1,4,4,40.2,77777,9,999999999,229,0.1070,0,88,999.000,999.0,99.0 +1989,6,3,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,15.0,60,101400,1140,1328,384,768,589,262,80700,59500,29500,11310,320,4.6,5,5,40.2,77777,9,999999999,229,0.1070,0,88,999.000,999.0,99.0 +1989,6,3,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,16.1,54,101300,1206,1328,394,813,629,241,86500,64100,28200,13350,350,4.1,3,3,48.3,77777,9,999999999,240,0.1070,0,88,999.000,999.0,99.0 +1989,6,3,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,16.7,49,101300,1214,1328,410,1008,854,226,103500,84900,25700,11540,10,3.6,4,4,32.2,77777,9,999999999,250,0.1070,0,88,999.000,999.0,99.0 +1989,6,3,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,15.0,49,101300,1164,1328,406,585,307,316,65100,33400,35700,13970,40,4.1,6,6,64.4,3050,9,999999999,229,0.1070,0,88,999.000,999.0,99.0 +1989,6,3,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,15.6,58,101400,1060,1328,391,547,429,205,60700,44900,24800,7240,290,4.1,5,5,40.2,77777,9,999999999,229,0.1070,0,88,999.000,999.0,99.0 +1989,6,3,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,12.2,41,101300,908,1328,383,669,819,110,71400,82600,14800,2940,320,4.6,1,1,48.3,77777,9,999999999,189,0.1070,0,88,999.000,999.0,99.0 +1989,6,3,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,12.8,41,101300,719,1328,387,470,697,94,49500,68900,12100,2070,290,2.6,1,1,64.4,77777,9,999999999,200,0.1070,0,88,999.000,999.0,99.0 +1989,6,3,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,13.9,45,101300,506,1328,385,301,596,76,32000,56400,10500,1520,30,2.1,1,1,64.4,77777,9,999999999,209,0.1070,0,88,999.000,999.0,99.0 +1989,6,3,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,13.3,48,101300,284,1328,376,132,389,50,13700,30600,7200,920,360,2.6,1,1,64.4,77777,9,999999999,200,0.1070,0,88,999.000,999.0,99.0 +1989,6,3,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,13.3,57,101300,73,1162,355,27,98,19,2700,4000,2400,330,0,0.0,0,0,64.4,77777,9,999999999,200,0.1070,0,88,999.000,999.0,99.0 +1989,6,3,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,13.3,66,101400,0,0,345,0,0,0,0,0,0,0,20,1.5,0,0,24.1,77777,9,999999999,209,0.1410,0,88,999.000,999.0,99.0 +1989,6,3,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,12.2,61,101300,0,0,344,0,0,0,0,0,0,0,360,2.1,0,0,24.1,77777,9,999999999,189,0.1410,0,88,999.000,999.0,99.0 +1989,6,3,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,16.1,93,101300,0,0,335,0,0,0,0,0,0,0,270,2.6,0,0,24.1,77777,9,999999999,240,0.1410,0,88,999.000,999.0,99.0 +1989,6,3,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,15.6,97,101300,0,0,329,0,0,0,0,0,0,0,260,2.1,0,0,24.1,77777,9,999999999,229,0.1410,0,88,999.000,999.0,99.0 +1989,6,4,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,15.0,93,101300,0,0,329,0,0,0,0,0,0,0,240,3.1,0,0,24.1,77777,9,999999999,220,0.1410,0,88,999.000,999.0,99.0 +1989,6,4,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,14.4,93,101300,0,0,326,0,0,0,0,0,0,0,300,2.1,0,0,24.1,77777,9,999999999,220,0.1410,0,88,999.000,999.0,99.0 +1989,6,4,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,13.3,93,101300,0,0,319,0,0,0,0,0,0,0,250,2.1,0,0,24.1,77777,9,999999999,200,0.1410,0,88,999.000,999.0,99.0 +1989,6,4,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,12.2,93,101300,0,0,313,0,0,0,0,0,0,0,300,3.1,0,0,24.1,77777,9,999999999,189,0.1410,0,88,999.000,999.0,99.0 +1989,6,4,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,11.7,84,101400,32,785,317,15,57,11,1500,1800,1400,190,340,2.1,0,0,64.4,77777,9,999999999,189,0.0850,0,88,999.000,999.0,99.0 +1989,6,4,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,13.3,87,101400,221,1327,325,105,411,37,10900,29300,6000,680,270,1.5,0,0,64.4,77777,9,999999999,209,0.0850,0,88,999.000,999.0,99.0 +1989,6,4,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,12.8,73,101400,443,1327,334,269,636,57,28000,58300,8500,1160,280,2.6,0,0,64.4,77777,9,999999999,200,0.0850,0,88,999.000,999.0,99.0 +1989,6,4,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,13.9,64,101300,660,1327,351,455,761,76,48300,74900,10900,1700,310,2.6,0,0,64.4,77777,9,999999999,209,0.0850,0,88,999.000,999.0,99.0 +1989,6,4,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,13.9,57,101400,857,1327,359,625,824,92,65000,81800,12000,2110,290,3.6,0,0,64.4,77777,9,999999999,209,0.0850,0,88,999.000,999.0,99.0 +1989,6,4,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,10.0,36,101300,1021,1327,370,779,875,104,80600,87500,13100,2920,40,2.1,0,0,64.4,77777,9,999999999,170,0.0850,0,88,999.000,999.0,99.0 +1989,6,4,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,11.7,39,101300,1140,1327,375,886,900,112,91500,90200,13900,4120,300,5.2,0,0,64.4,77777,9,999999999,179,0.0850,0,88,999.000,999.0,99.0 +1989,6,4,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,10.0,33,101200,1206,1327,379,944,911,116,97500,91400,14200,5360,290,6.2,0,0,64.4,77777,9,999999999,170,0.0850,0,88,999.000,999.0,99.0 +1989,6,4,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,10.6,32,101100,1215,1327,385,955,916,116,98500,91900,14200,5570,330,4.1,0,0,64.4,77777,9,999999999,170,0.0850,0,88,999.000,999.0,99.0 +1989,6,4,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,11.7,32,101100,1165,1327,392,907,905,113,93800,90700,14000,4500,360,4.1,0,0,64.4,77777,9,999999999,179,0.0850,0,88,999.000,999.0,99.0 +1989,6,4,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,11.1,29,101000,1061,1327,397,813,884,106,84200,88500,13300,3230,360,1.5,0,0,64.4,77777,9,999999999,179,0.0850,0,88,999.000,999.0,99.0 +1989,6,4,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,11.1,31,101000,910,1327,391,676,849,96,70500,84500,12400,2310,290,4.6,0,0,64.4,77777,9,999999999,179,0.0850,0,88,999.000,999.0,99.0 +1989,6,4,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,10.6,30,100900,721,1327,391,508,781,85,54100,77500,11900,1940,290,3.6,1,0,64.4,77777,9,999999999,170,0.0850,0,88,999.000,999.0,99.0 +1989,6,4,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,10.6,31,100900,508,1327,395,301,622,65,31700,58600,9200,1340,340,4.1,2,1,64.4,77777,9,999999999,170,0.0850,0,88,999.000,999.0,99.0 +1989,6,4,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,9.4,30,100900,286,1327,396,146,395,63,15600,30700,9000,1140,330,3.6,5,2,64.4,77777,9,999999999,160,0.0850,0,88,999.000,999.0,99.0 +1989,6,4,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,10.0,36,100900,75,1161,383,26,95,18,2600,3900,2300,310,340,2.1,5,2,64.4,77777,9,999999999,170,0.0850,0,88,999.000,999.0,99.0 +1989,6,4,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,11.7,51,100900,0,0,360,0,0,0,0,0,0,0,300,3.6,2,1,64.4,77777,9,999999999,179,0.1410,0,88,999.000,999.0,99.0 +1989,6,4,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,11.1,51,100900,0,0,350,0,0,0,0,0,0,0,270,3.1,0,0,24.1,77777,9,999999999,179,0.1410,0,88,999.000,999.0,99.0 +1989,6,4,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,12.2,65,101000,0,0,338,0,0,0,0,0,0,0,120,2.6,0,0,24.1,77777,9,999999999,189,0.1410,0,88,999.000,999.0,99.0 +1989,6,4,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,13.9,78,101000,0,0,335,0,0,0,0,0,0,0,100,3.1,0,0,24.1,77777,9,999999999,209,0.1410,0,88,999.000,999.0,99.0 +1989,6,5,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,12.8,78,101000,0,0,329,0,0,0,0,0,0,0,100,2.1,0,0,24.1,77777,9,999999999,200,0.1410,0,88,999.000,999.0,99.0 +1989,6,5,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,13.3,90,101000,0,0,322,0,0,0,0,0,0,0,90,1.5,0,0,24.1,77777,9,999999999,200,0.1410,0,88,999.000,999.0,99.0 +1989,6,5,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,12.2,87,101000,0,0,318,0,0,0,0,0,0,0,110,2.1,0,0,24.1,77777,9,999999999,189,0.1410,0,88,999.000,999.0,99.0 +1989,6,5,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,11.7,84,101000,0,0,317,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,189,0.1410,0,88,999.000,999.0,99.0 +1989,6,5,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,11.7,84,101000,32,785,317,12,8,11,1300,400,1200,270,0,0.0,1,0,64.4,77777,9,999999999,189,0.1920,0,88,999.000,999.0,99.0 +1989,6,5,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,12.2,81,101100,222,1327,323,90,210,55,9300,14400,6900,1000,0,0.0,2,0,64.4,77777,9,999999999,189,0.1920,0,88,999.000,999.0,99.0 +1989,6,5,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,11.7,70,101100,444,1327,330,246,455,94,26200,41700,12300,1750,0,0.0,2,0,64.4,77777,9,999999999,179,0.1920,0,88,999.000,999.0,99.0 +1989,6,5,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,13.9,70,101100,661,1327,343,429,615,122,44800,60400,14600,2570,320,2.1,0,0,64.4,77777,9,999999999,209,0.1920,0,88,999.000,999.0,99.0 +1989,6,5,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,11.7,53,101100,858,1327,351,606,705,149,64100,71400,17900,3800,20,2.6,0,0,64.4,77777,9,999999999,189,0.1920,0,88,999.000,999.0,99.0 +1989,6,5,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,12.2,50,101100,1022,1327,359,755,760,169,80800,77800,20800,5620,350,3.1,0,0,48.3,77777,9,999999999,189,0.1920,0,88,999.000,999.0,99.0 +1989,6,5,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,10.6,40,101100,1141,1327,366,864,792,182,90000,79400,21600,7280,290,2.6,0,0,48.3,77777,9,999999999,170,0.1920,0,88,999.000,999.0,99.0 +1989,6,5,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,13.3,41,101000,1207,1327,383,924,807,189,96700,81100,22800,9740,40,3.1,0,0,40.2,77777,9,999999999,200,0.1920,0,88,999.000,999.0,99.0 +1989,6,5,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,13.9,40,101000,1215,1327,389,928,806,190,97300,81000,23000,10190,20,2.6,0,0,40.2,77777,9,999999999,209,0.1920,0,88,999.000,999.0,99.0 +1989,6,5,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,13.3,37,101000,1166,1327,391,885,797,185,92500,80000,22100,8090,290,2.1,0,0,40.2,77777,9,999999999,200,0.1920,0,88,999.000,999.0,99.0 +1989,6,5,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,15.6,43,101000,1063,1327,394,786,765,173,84400,78500,21400,6280,310,4.1,0,0,40.2,77777,9,999999999,229,0.1920,0,88,999.000,999.0,99.0 +1989,6,5,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,12.8,35,101000,911,1327,401,622,673,160,66000,68400,19000,4380,350,5.2,1,1,64.4,77777,9,999999999,200,0.1920,0,88,999.000,999.0,99.0 +1989,6,5,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,13.3,40,101000,723,1327,398,454,577,141,47600,57200,16400,3080,350,6.2,2,2,64.4,77777,9,999999999,200,0.1920,0,88,999.000,999.0,99.0 +1989,6,5,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,15.6,54,101000,510,1327,382,255,350,122,27100,33300,14300,2360,350,4.6,1,1,64.4,77777,9,999999999,229,0.1920,0,88,999.000,999.0,99.0 +1989,6,5,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,14.4,66,101100,288,1327,351,125,286,64,13300,22300,8400,1160,350,4.6,1,0,64.4,77777,9,999999999,220,0.1920,0,88,999.000,999.0,99.0 +1989,6,5,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,12.8,73,101200,77,1183,334,24,31,21,2600,1400,2500,430,340,5.7,1,0,64.4,77777,9,999999999,200,0.1920,0,88,999.000,999.0,99.0 +1989,6,5,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,12.2,84,101400,0,0,321,0,0,0,0,0,0,0,340,4.1,0,0,24.1,77777,9,999999999,189,0.1410,0,88,999.000,999.0,99.0 +1989,6,5,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,11.7,87,101500,0,0,315,0,0,0,0,0,0,0,330,2.6,0,0,24.1,77777,9,999999999,189,0.1410,0,88,999.000,999.0,99.0 +1989,6,5,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,11.7,90,101500,0,0,313,0,0,0,0,0,0,0,30,2.1,0,0,24.1,77777,9,999999999,189,0.1410,0,88,999.000,999.0,99.0 +1989,6,5,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,12.2,93,101600,0,0,361,0,0,0,0,0,0,0,50,2.6,10,10,24.1,700,9,999999999,189,0.1410,0,88,999.000,999.0,99.0 +1989,6,6,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,11.1,84,101600,0,0,363,0,0,0,0,0,0,0,10,2.6,10,10,24.1,640,9,999999999,179,0.1420,0,88,999.000,999.0,99.0 +1989,6,6,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,11.1,87,101700,0,0,360,0,0,0,0,0,0,0,90,1.5,10,10,24.1,610,9,999999999,179,0.1420,0,88,999.000,999.0,99.0 +1989,6,6,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,10.6,83,101700,0,0,359,0,0,0,0,0,0,0,100,2.1,10,10,24.1,730,9,999999999,170,0.1420,0,88,999.000,999.0,99.0 +1989,6,6,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,10.6,83,101700,0,0,359,0,0,0,0,0,0,0,180,2.6,10,10,24.1,850,9,999999999,170,0.1420,0,88,999.000,999.0,99.0 +1989,6,6,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,10.0,80,101700,33,785,359,6,0,6,700,0,700,230,190,4.6,10,10,32.2,850,9,999999999,170,0.2350,0,88,999.000,999.0,99.0 +1989,6,6,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,10.0,80,101700,223,1326,359,62,1,62,6900,0,6900,2040,200,3.6,10,10,32.2,640,9,999999999,170,0.2350,0,88,999.000,999.0,99.0 +1989,6,6,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,10.6,81,101800,444,1326,363,76,2,75,8900,100,8800,3130,260,3.1,10,10,32.2,640,9,999999999,179,0.2350,0,88,999.000,999.0,99.0 +1989,6,6,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,11.1,81,101800,661,1326,366,177,0,177,20300,0,20300,7280,300,3.1,10,10,32.2,610,9,999999999,179,0.2350,0,88,999.000,999.0,99.0 +1989,6,6,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,10.6,75,101800,858,1326,368,241,4,239,28000,300,27800,10440,330,3.1,10,10,40.2,1010,9,999999999,170,0.2350,0,88,999.000,999.0,99.0 +1989,6,6,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,10.6,70,101800,1022,1326,374,355,1,354,41000,100,40900,15030,240,1.5,10,10,40.2,820,9,999999999,170,0.2350,0,88,999.000,999.0,99.0 +1989,6,6,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,10.0,61,101800,1141,1326,382,393,5,389,45900,500,45500,16720,260,4.6,10,10,40.2,820,9,999999999,170,0.2350,0,88,999.000,999.0,99.0 +1989,6,6,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,11.1,63,101800,1207,1326,367,545,101,453,60200,10400,50600,22080,170,3.6,8,8,40.2,1220,9,999999999,179,0.2350,0,88,999.000,999.0,99.0 +1989,6,6,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,10.6,57,101700,1216,1326,362,890,588,351,95500,61500,39100,20950,250,3.1,6,6,40.2,1220,9,999999999,179,0.2350,0,88,999.000,999.0,99.0 +1989,6,6,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,11.1,55,101700,1167,1326,356,850,690,243,90100,70100,28300,11630,80,4.6,2,2,40.2,77777,9,999999999,179,0.2350,0,88,999.000,999.0,99.0 +1989,6,6,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,11.7,57,101600,1064,1326,346,780,726,198,83000,74000,23500,7130,90,4.1,0,0,40.2,77777,9,999999999,189,0.2350,0,88,999.000,999.0,99.0 +1989,6,6,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,12.2,57,101600,913,1326,349,644,661,189,67500,66600,21600,5070,90,4.1,2,0,64.4,77777,9,999999999,189,0.2350,0,88,999.000,999.0,99.0 +1989,6,6,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,12.8,59,101500,725,1326,349,474,581,158,49300,57300,17900,3390,80,3.1,2,0,64.4,77777,9,999999999,200,0.2350,0,88,999.000,999.0,99.0 +1989,6,6,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,12.2,57,101500,512,1326,349,286,460,110,30700,43800,13800,2100,110,3.6,0,0,64.4,77777,9,999999999,189,0.2350,0,88,999.000,999.0,99.0 +1989,6,6,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,12.2,61,101500,291,1326,344,123,250,69,12900,19500,8700,1260,90,2.6,0,0,64.4,77777,9,999999999,189,0.2350,0,88,999.000,999.0,99.0 +1989,6,6,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,11.7,70,101500,79,1205,330,25,19,23,2700,1100,2600,550,320,5.2,2,0,64.4,77777,9,999999999,189,0.2350,0,88,999.000,999.0,99.0 +1989,6,6,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,10.6,72,101600,0,0,322,0,0,0,0,0,0,0,320,5.7,0,0,24.1,77777,9,999999999,170,0.1420,0,88,999.000,999.0,99.0 +1989,6,6,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,10.0,78,101600,0,0,314,0,0,0,0,0,0,0,320,4.1,0,0,24.1,77777,9,999999999,170,0.1420,0,88,999.000,999.0,99.0 +1989,6,6,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,10.0,83,101600,0,0,309,0,0,0,0,0,0,0,340,6.2,0,0,24.1,77777,9,999999999,170,0.1420,0,88,999.000,999.0,99.0 +1989,6,6,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,9.4,83,101600,0,0,306,0,0,0,0,0,0,0,320,5.7,0,0,24.1,77777,9,999999999,160,0.1420,0,88,999.000,999.0,99.0 +1989,6,7,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,8.9,83,101600,0,0,303,0,0,0,0,0,0,0,320,4.1,0,0,24.1,77777,9,999999999,160,0.1420,0,88,999.000,999.0,99.0 +1989,6,7,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,8.9,86,101600,0,0,300,0,0,0,0,0,0,0,320,3.1,0,0,24.1,77777,9,999999999,160,0.1420,0,88,999.000,999.0,99.0 +1989,6,7,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,8.3,86,101600,0,0,298,0,0,0,0,0,0,0,340,2.6,0,0,24.1,77777,9,999999999,150,0.1420,0,88,999.000,999.0,99.0 +1989,6,7,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,7.8,86,101600,0,0,300,0,0,0,0,0,0,0,10,2.6,1,1,24.1,77777,9,999999999,150,0.1420,0,88,999.000,999.0,99.0 +1989,6,7,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,8.3,90,101600,34,807,305,8,12,7,900,500,900,140,340,2.6,2,2,24.1,77777,9,999999999,150,0.1560,0,88,999.000,999.0,99.0 +1989,6,7,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,8.9,86,101600,224,1326,330,60,29,55,6600,2200,6200,1380,40,2.1,8,8,40.2,610,9,999999999,160,0.1560,0,88,999.000,999.0,99.0 +1989,6,7,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,9.4,80,101600,445,1326,338,174,92,143,19000,8600,16200,3780,10,2.1,10,8,40.2,610,9,999999999,160,0.1560,0,88,999.000,999.0,99.0 +1989,6,7,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,9.4,78,101700,662,1326,358,237,18,228,26700,1600,25900,8610,300,3.6,10,10,40.2,730,9,999999999,160,0.1560,0,88,999.000,999.0,99.0 +1989,6,7,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,10.0,78,101700,859,1326,362,237,8,232,27600,700,27200,10230,330,3.1,10,10,40.2,730,9,999999999,170,0.1560,0,88,999.000,999.0,99.0 +1989,6,7,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,10.0,72,101600,1022,1326,367,273,4,270,32200,300,32000,12450,330,2.6,10,10,40.2,820,9,999999999,170,0.1560,0,88,999.000,999.0,99.0 +1989,6,7,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,11.1,75,101600,1141,1326,372,376,11,367,44100,1000,43300,16090,350,2.6,10,10,40.2,730,9,999999999,179,0.1560,0,88,999.000,999.0,99.0 +1989,6,7,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,11.7,70,101600,1208,1326,370,494,103,400,54700,11000,44600,19910,340,4.1,9,9,32.2,730,9,999999999,189,0.1560,0,88,999.000,999.0,99.0 +1989,6,7,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,11.7,63,101600,1217,1326,344,865,747,179,91200,75300,22000,9790,10,2.6,1,1,48.3,77777,9,999999999,189,0.1560,0,88,999.000,999.0,99.0 +1989,6,7,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,12.2,61,101500,1168,1326,344,891,828,162,94500,83600,20700,7360,360,1.5,0,0,48.3,77777,9,999999999,189,0.1560,0,88,999.000,999.0,99.0 +1989,6,7,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,12.2,57,101400,1065,1326,349,799,806,153,84200,81100,18900,5120,320,1.5,0,0,48.3,77777,9,999999999,189,0.1560,0,88,999.000,999.0,99.0 +1989,6,7,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,13.3,57,101400,914,1326,355,651,746,137,67800,74500,16400,3430,200,2.6,0,0,40.2,77777,9,999999999,200,0.1560,0,88,999.000,999.0,99.0 +1989,6,7,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,13.9,57,101300,726,1326,359,491,688,115,52200,68900,14400,2600,290,4.1,0,0,40.2,77777,9,999999999,209,0.1560,0,88,999.000,999.0,99.0 +1989,6,7,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,13.9,56,101300,514,1326,361,305,564,88,32000,53200,11400,1730,320,1.5,0,0,48.3,77777,9,999999999,209,0.1560,0,88,999.000,999.0,99.0 +1989,6,7,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,13.9,61,101300,293,1326,353,137,362,58,14700,28500,8400,1040,290,3.1,0,0,56.3,77777,9,999999999,209,0.1560,0,88,999.000,999.0,99.0 +1989,6,7,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,13.9,64,101200,81,1227,351,26,57,21,2700,2100,2500,370,20,2.1,0,0,56.3,77777,9,999999999,209,0.1560,0,88,999.000,999.0,99.0 +1989,6,7,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,13.3,73,101300,0,0,337,0,0,0,0,0,0,0,340,3.6,0,0,24.1,77777,9,999999999,200,0.1420,0,88,999.000,999.0,99.0 +1989,6,7,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,12.8,75,101300,0,0,331,0,0,0,0,0,0,0,350,3.6,0,0,24.1,77777,9,999999999,200,0.1420,0,88,999.000,999.0,99.0 +1989,6,7,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,12.2,81,101400,0,0,323,0,0,0,0,0,0,0,340,2.6,0,0,24.1,77777,9,999999999,189,0.1420,0,88,999.000,999.0,99.0 +1989,6,7,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,11.7,90,101400,0,0,313,0,0,0,0,0,0,0,290,2.6,0,0,24.1,77777,9,999999999,189,0.1420,0,88,999.000,999.0,99.0 +1989,6,8,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,11.7,90,101400,0,0,313,0,0,0,0,0,0,0,320,2.6,0,0,24.1,77777,9,999999999,189,0.1420,0,88,999.000,999.0,99.0 +1989,6,8,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,11.1,90,101400,0,0,310,0,0,0,0,0,0,0,330,3.1,0,0,24.1,77777,9,999999999,179,0.1420,0,88,999.000,999.0,99.0 +1989,6,8,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,10.6,93,101400,0,0,305,0,0,0,0,0,0,0,320,4.1,0,0,24.1,77777,9,999999999,170,0.1420,0,88,999.000,999.0,99.0 +1989,6,8,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,10.6,93,101400,0,0,315,0,0,0,0,0,0,0,350,2.6,2,2,19.3,77777,9,999999999,170,0.1420,0,88,999.000,999.0,99.0 +1989,6,8,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,10.0,93,101500,34,807,315,9,9,8,1000,300,1000,160,320,2.6,3,3,19.3,77777,9,999999999,170,0.1450,0,88,999.000,999.0,99.0 +1989,6,8,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,10.6,90,101600,224,1326,354,56,3,55,6200,100,6200,1890,320,2.6,10,10,19.3,490,9,999999999,170,0.1450,0,88,999.000,999.0,99.0 +1989,6,8,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,10.0,80,101600,445,1326,359,118,4,117,13400,300,13300,4400,320,4.1,10,10,24.1,700,9,999999999,170,0.1450,0,88,999.000,999.0,99.0 +1989,6,8,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,10.0,75,101600,662,1326,364,177,6,174,20300,500,20100,7200,360,3.1,10,10,32.2,700,9,999999999,170,0.1450,0,88,999.000,999.0,99.0 +1989,6,8,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,10.6,81,101600,859,1326,363,213,2,211,24900,200,24800,9530,270,2.1,10,10,32.2,640,9,999999999,179,0.1450,0,88,999.000,999.0,99.0 +1989,6,8,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,10.6,72,101600,1023,1326,371,349,9,341,40300,800,39700,14680,330,3.1,10,10,32.2,760,9,999999999,170,0.1450,0,88,999.000,999.0,99.0 +1989,6,8,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,10.6,72,101600,1142,1326,371,340,3,337,40100,300,39800,15170,350,2.1,10,10,32.2,760,9,999999999,170,0.1450,0,88,999.000,999.0,99.0 +1989,6,8,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,11.7,73,101600,1208,1326,368,538,171,382,59700,18300,43000,19050,210,3.1,9,9,32.2,760,9,999999999,189,0.1450,0,88,999.000,999.0,99.0 +1989,6,8,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,11.7,65,101600,1217,1326,352,953,814,206,99100,81400,24100,11010,40,2.6,4,4,32.2,77777,9,999999999,179,0.1450,0,88,999.000,999.0,99.0 +1989,6,8,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,11.7,61,101500,1169,1326,351,863,740,211,92500,75700,25600,10290,60,2.6,2,2,32.2,77777,9,999999999,189,0.1450,0,88,999.000,999.0,99.0 +1989,6,8,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,11.7,57,101500,1066,1326,352,718,666,183,76900,68200,22000,6680,130,2.6,2,1,40.2,77777,9,999999999,189,0.1450,0,88,999.000,999.0,99.0 +1989,6,8,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,12.2,53,101400,915,1326,366,645,714,153,68800,72700,18500,4240,340,2.6,2,2,64.4,77777,9,999999999,189,0.1450,0,88,999.000,999.0,99.0 +1989,6,8,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,12.2,50,101400,728,1326,375,380,359,184,40400,36400,20400,4070,360,2.6,4,3,32.2,77777,9,999999999,189,0.1450,0,88,999.000,999.0,99.0 +1989,6,8,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,11.7,57,101300,516,1326,374,264,241,171,27900,23600,18700,3660,340,5.2,7,7,32.2,1520,9,999999999,189,0.1450,0,88,999.000,999.0,99.0 +1989,6,8,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,10.6,57,101400,295,1326,366,105,125,78,11600,10200,9300,1690,340,5.7,7,7,32.2,1830,9,999999999,170,0.1450,0,88,999.000,999.0,99.0 +1989,6,8,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,10.0,63,101400,83,1226,361,12,9,12,1400,500,1400,310,310,6.2,8,8,32.2,1520,9,999999999,170,0.1450,0,88,999.000,999.0,99.0 +1989,6,8,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,8.9,65,101500,0,0,351,0,0,0,0,0,0,0,350,4.6,8,8,24.1,1460,9,999999999,160,0.1420,0,88,999.000,999.0,99.0 +1989,6,8,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,8.9,72,101600,0,0,343,0,0,0,0,0,0,0,340,5.7,8,8,24.1,1460,9,999999999,160,0.1420,0,88,999.000,999.0,99.0 +1989,6,8,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,8.3,75,101600,0,0,325,0,0,0,0,0,0,0,340,6.2,5,5,24.1,77777,9,999999999,150,0.1420,0,88,999.000,999.0,99.0 +1989,6,8,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,8.3,77,101600,0,0,329,0,0,0,0,0,0,0,330,5.2,7,7,24.1,1680,9,999999999,150,0.1420,0,88,999.000,999.0,99.0 +1989,6,9,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,8.3,80,101600,0,0,312,0,0,0,0,0,0,0,330,4.6,2,2,24.1,77777,9,999999999,150,0.1420,0,88,999.000,999.0,99.0 +1989,6,9,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,7.8,77,101600,0,0,320,0,0,0,0,0,0,0,330,5.2,5,5,24.1,77777,9,999999999,150,0.1420,0,88,999.000,999.0,99.0 +1989,6,9,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,7.8,80,101700,0,0,324,0,0,0,0,0,0,0,330,4.1,7,7,24.1,1680,9,999999999,150,0.1420,0,88,999.000,999.0,99.0 +1989,6,9,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,7.2,77,101700,0,0,328,0,0,0,0,0,0,0,340,4.1,8,8,24.1,940,9,999999999,139,0.1420,0,88,999.000,999.0,99.0 +1989,6,9,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,7.2,74,101700,35,806,348,5,0,5,600,0,600,200,330,4.1,10,10,32.2,940,9,999999999,139,0.0890,0,88,999.000,999.0,99.0 +1989,6,9,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,7.2,74,101700,225,1325,348,57,3,56,6300,100,6300,1920,350,3.6,10,10,40.2,940,9,999999999,139,0.0890,0,88,999.000,999.0,99.0 +1989,6,9,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,7.2,72,101700,446,1325,350,124,3,123,14000,200,13900,4550,350,3.1,10,10,40.2,940,9,999999999,139,0.0890,0,88,999.000,999.0,99.0 +1989,6,9,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,7.8,69,101800,662,1325,356,178,6,175,20500,500,20200,7230,280,2.1,10,10,40.2,1220,9,999999999,150,0.0890,0,88,999.000,999.0,99.0 +1989,6,9,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,7.8,67,101800,859,1325,359,242,7,238,28200,600,27800,10420,20,2.1,10,10,40.2,1220,9,999999999,150,0.0890,0,88,999.000,999.0,99.0 +1989,6,9,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,7.8,62,101800,1023,1325,365,345,7,339,39900,700,39400,14620,350,3.1,10,10,40.2,1340,9,999999999,150,0.0890,0,88,999.000,999.0,99.0 +1989,6,9,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,7.2,58,101700,1142,1325,367,357,7,351,42000,600,41500,15610,300,4.1,10,10,40.2,1340,9,999999999,139,0.0890,0,88,999.000,999.0,99.0 +1989,6,9,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,6.7,52,101700,1208,1325,362,526,139,399,58200,14900,44600,19940,310,3.1,9,9,40.2,1340,9,999999999,139,0.0890,0,88,999.000,999.0,99.0 +1989,6,9,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,7.2,52,101700,1218,1325,375,350,113,247,40100,12200,28800,12730,280,3.6,10,10,40.2,1370,9,999999999,139,0.0890,0,88,999.000,999.0,99.0 +1989,6,9,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,8.3,52,101600,1170,1325,372,404,95,320,45200,10200,36200,14300,350,5.2,9,9,40.2,1370,9,999999999,150,0.0890,0,88,999.000,999.0,99.0 +1989,6,9,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,8.3,56,101600,1067,1325,377,262,4,259,31200,300,31000,12250,350,4.1,10,10,40.2,1430,9,999999999,150,0.0890,0,88,999.000,999.0,99.0 +1989,6,9,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,8.3,54,101600,917,1325,361,518,299,312,55900,32100,33700,8910,290,2.6,8,8,32.2,1340,9,999999999,150,0.0890,0,88,999.000,999.0,99.0 +1989,6,9,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,7.8,50,101500,729,1325,348,381,266,235,40800,28000,25400,5590,330,3.6,4,4,32.2,77777,9,999999999,150,0.0890,0,88,999.000,999.0,99.0 +1989,6,9,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,8.3,54,101500,518,1325,343,298,508,102,31100,47700,12400,1960,310,4.6,3,3,32.2,77777,9,999999999,150,0.0890,0,88,999.000,999.0,99.0 +1989,6,9,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,8.9,56,101500,297,1325,344,106,196,63,11500,15600,8000,1150,30,2.6,3,3,32.2,77777,9,999999999,160,0.0890,0,88,999.000,999.0,99.0 +1989,6,9,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,8.9,60,101500,85,1248,341,31,95,23,3200,3600,2900,410,300,3.6,4,4,32.2,77777,9,999999999,160,0.0890,0,88,999.000,999.0,99.0 +1989,6,9,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,9.4,72,101500,0,0,321,0,0,0,0,0,0,0,330,6.2,1,1,24.1,77777,9,999999999,160,0.1420,0,88,999.000,999.0,99.0 +1989,6,9,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,8.9,72,101600,0,0,312,0,0,0,0,0,0,0,320,5.7,0,0,24.1,77777,9,999999999,160,0.1420,0,88,999.000,999.0,99.0 +1989,6,9,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,8.9,77,101600,0,0,308,0,0,0,0,0,0,0,320,5.7,0,0,24.1,77777,9,999999999,160,0.1420,0,88,999.000,999.0,99.0 +1989,6,9,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,9.4,83,101500,0,0,306,0,0,0,0,0,0,0,320,4.1,0,0,24.1,77777,9,999999999,160,0.1420,0,88,999.000,999.0,99.0 +1989,6,10,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,8.9,83,101600,0,0,303,0,0,0,0,0,0,0,320,2.6,0,0,24.1,77777,9,999999999,160,0.1420,0,88,999.000,999.0,99.0 +1989,6,10,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,8.9,86,101600,0,0,300,0,0,0,0,0,0,0,330,3.6,0,0,24.1,77777,9,999999999,160,0.1420,0,88,999.000,999.0,99.0 +1989,6,10,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,8.9,86,101600,0,0,318,0,0,0,0,0,0,0,340,4.6,5,5,24.1,77777,9,999999999,160,0.1420,0,88,999.000,999.0,99.0 +1989,6,10,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,8.9,90,101600,0,0,308,0,0,0,0,0,0,0,10,2.1,2,2,24.1,77777,9,999999999,160,0.1420,0,88,999.000,999.0,99.0 +1989,6,10,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,8.9,90,101600,35,806,335,14,3,14,1600,0,1600,480,0,0.0,9,9,40.2,980,9,999999999,160,0.1290,0,88,999.000,999.0,99.0 +1989,6,10,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,9.4,86,101600,225,1325,350,27,1,26,3100,0,3100,1040,330,1.5,10,10,40.2,940,9,999999999,160,0.1290,0,88,999.000,999.0,99.0 +1989,6,10,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,9.4,83,101600,446,1325,353,123,3,121,13800,200,13700,4500,360,2.6,10,10,40.2,910,9,999999999,160,0.1290,0,88,999.000,999.0,99.0 +1989,6,10,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,10.0,80,101600,662,1325,359,182,7,178,20800,600,20500,7320,0,0.0,10,10,32.2,700,9,999999999,170,0.1290,0,88,999.000,999.0,99.0 +1989,6,10,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,9.4,65,101600,859,1325,339,426,265,253,46200,28400,27700,6610,280,2.1,4,4,32.2,77777,9,999999999,160,0.1290,0,88,999.000,999.0,99.0 +1989,6,10,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,10.0,67,101600,1023,1325,329,672,673,151,72400,69200,18900,5090,300,2.1,1,1,32.2,77777,9,999999999,170,0.1290,0,88,999.000,999.0,99.0 +1989,6,10,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,10.6,65,101500,1142,1325,329,835,804,141,89400,81600,19000,6030,280,3.1,0,0,40.2,77777,9,999999999,170,0.1290,0,88,999.000,999.0,99.0 +1989,6,10,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,11.1,59,101500,1209,1325,339,896,821,146,91700,82200,16600,6300,310,3.1,0,0,40.2,77777,9,999999999,179,0.1290,0,88,999.000,999.0,99.0 +1989,6,10,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,11.7,55,101400,1218,1325,348,941,861,148,96300,86200,16800,6660,250,5.2,0,0,40.2,77777,9,999999999,189,0.1290,0,88,999.000,999.0,99.0 +1989,6,10,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,10.6,48,101300,1170,1325,359,854,788,158,90800,79700,20300,7300,310,3.1,2,1,40.2,77777,9,999999999,170,0.1290,0,88,999.000,999.0,99.0 +1989,6,10,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,10.6,40,101300,1068,1325,378,751,704,184,80400,72100,22200,6750,320,3.6,6,2,48.3,77777,9,999999999,170,0.1290,0,88,999.000,999.0,99.0 +1989,6,10,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,10.6,40,101200,918,1325,381,664,653,212,69100,65400,23700,5650,10,3.1,8,3,64.4,77777,9,999999999,170,0.1290,0,88,999.000,999.0,99.0 +1989,6,10,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,12.2,45,101100,731,1325,383,451,489,181,47900,49700,20500,4010,320,4.1,8,3,64.4,77777,9,999999999,189,0.1290,0,88,999.000,999.0,99.0 +1989,6,10,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,12.8,50,101100,519,1325,382,268,209,187,29000,20400,21000,4370,350,6.2,9,4,64.4,77777,9,999999999,200,0.1290,0,88,999.000,999.0,99.0 +1989,6,10,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,12.8,52,101100,298,1325,372,134,282,71,14100,22300,9000,1290,330,6.2,5,2,64.4,77777,9,999999999,200,0.1290,0,88,999.000,999.0,99.0 +1989,6,10,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,13.3,61,101100,86,1270,362,29,40,26,3200,1900,3000,540,330,5.7,7,2,32.2,77777,9,999999999,200,0.1290,0,88,999.000,999.0,99.0 +1989,6,10,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,12.8,68,101200,0,0,346,0,0,0,0,0,0,0,270,2.1,3,1,24.1,77777,9,999999999,200,0.1420,0,88,999.000,999.0,99.0 +1989,6,10,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,12.8,78,101200,0,0,335,0,0,0,0,0,0,0,300,3.1,2,1,24.1,77777,9,999999999,200,0.1420,0,88,999.000,999.0,99.0 +1989,6,10,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,12.2,78,101200,0,0,332,0,0,0,0,0,0,0,330,2.1,2,1,24.1,77777,9,999999999,189,0.1420,0,88,999.000,999.0,99.0 +1989,6,10,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,12.2,78,101200,0,0,326,0,0,0,0,0,0,0,350,2.1,0,0,24.1,77777,9,999999999,189,0.1420,0,88,999.000,999.0,99.0 +1989,6,11,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,12.8,84,101300,0,0,324,0,0,0,0,0,0,0,10,1.5,0,0,24.1,77777,9,999999999,200,0.1430,0,88,999.000,999.0,99.0 +1989,6,11,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,12.2,90,101300,0,0,316,0,0,0,0,0,0,0,340,2.6,0,0,24.1,77777,9,999999999,189,0.1430,0,88,999.000,999.0,99.0 +1989,6,11,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,12.2,90,101300,0,0,316,0,0,0,0,0,0,0,10,1.5,0,0,24.1,77777,9,999999999,189,0.1430,0,88,999.000,999.0,99.0 +1989,6,11,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,11.7,96,101300,0,0,308,0,0,0,0,0,0,0,20,2.1,0,0,24.1,77777,9,999999999,179,0.1430,0,88,999.000,999.0,99.0 +1989,6,11,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,12.2,97,101300,35,828,311,17,64,12,1600,2100,1500,210,0,0.0,0,0,32.2,77777,9,999999999,189,0.0850,0,88,999.000,999.0,99.0 +1989,6,11,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,12.8,90,101400,226,1325,319,109,417,38,11300,30000,6100,700,0,0.0,0,0,19.3,77777,9,999999999,200,0.0850,0,88,999.000,999.0,99.0 +1989,6,11,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,13.3,87,101400,446,1325,325,272,637,57,28300,58600,8600,1170,0,0.0,0,0,24.1,77777,9,999999999,209,0.0850,0,88,999.000,999.0,99.0 +1989,6,11,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,12.2,73,101500,663,1325,331,460,765,76,48700,75400,11000,1710,320,2.6,0,0,24.1,77777,9,999999999,189,0.0850,0,88,999.000,999.0,99.0 +1989,6,11,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,12.8,66,101500,859,1325,341,629,826,92,65300,82000,12000,2120,360,2.1,0,0,32.2,77777,9,999999999,200,0.0850,0,88,999.000,999.0,99.0 +1989,6,11,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,12.8,59,101400,1023,1325,349,775,867,104,80200,86700,13100,2940,310,2.6,0,0,40.2,77777,9,999999999,200,0.0850,0,88,999.000,999.0,99.0 +1989,6,11,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,12.8,50,101400,1142,1325,363,883,893,112,91200,89500,13900,4170,360,2.6,0,0,40.2,77777,9,999999999,200,0.0850,0,88,999.000,999.0,99.0 +1989,6,11,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,13.3,48,101400,1209,1325,376,898,856,116,92600,85900,14100,5470,360,3.1,1,1,40.2,77777,9,999999999,200,0.0850,0,88,999.000,999.0,99.0 +1989,6,11,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,13.3,45,101400,1219,1325,374,942,896,117,97100,89900,14300,5760,30,2.6,0,0,48.3,77777,9,999999999,200,0.0850,0,88,999.000,999.0,99.0 +1989,6,11,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,13.9,43,101300,1171,1325,384,906,889,120,93400,89100,14500,4800,330,3.6,1,0,48.3,77777,9,999999999,209,0.0850,0,88,999.000,999.0,99.0 +1989,6,11,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,12.8,37,101300,1069,1325,388,803,863,107,83200,86400,13400,3310,340,3.1,0,0,48.3,77777,9,999999999,200,0.0850,0,88,999.000,999.0,99.0 +1989,6,11,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,13.3,38,101200,919,1325,389,678,830,102,70300,82600,12900,2390,340,2.6,1,0,64.4,77777,9,999999999,200,0.0850,0,88,999.000,999.0,99.0 +1989,6,11,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,13.3,38,101200,732,1325,389,510,771,86,54400,76700,12000,1990,340,3.6,1,0,64.4,77777,9,999999999,200,0.0850,0,88,999.000,999.0,99.0 +1989,6,11,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,15.0,47,101200,521,1325,382,331,677,66,34700,64200,9500,1370,350,5.7,1,0,64.4,77777,9,999999999,220,0.0850,0,88,999.000,999.0,99.0 +1989,6,11,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,15.0,56,101300,300,1325,368,157,506,44,16600,41100,7300,830,360,2.6,0,0,64.4,77777,9,999999999,229,0.0850,0,88,999.000,999.0,99.0 +1989,6,11,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,14.4,64,101400,88,1270,354,33,162,20,3300,7900,2700,360,340,4.6,0,0,64.4,77777,9,999999999,220,0.0850,0,88,999.000,999.0,99.0 +1989,6,11,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,13.3,73,101500,0,0,337,0,0,0,0,0,0,0,320,4.6,0,0,24.1,77777,9,999999999,200,0.1430,0,88,999.000,999.0,99.0 +1989,6,11,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,13.3,84,101600,0,0,327,0,0,0,0,0,0,0,360,4.6,0,0,24.1,77777,9,999999999,209,0.1430,0,88,999.000,999.0,99.0 +1989,6,11,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,12.2,87,101600,0,0,318,0,0,0,0,0,0,0,350,2.1,0,0,24.1,77777,9,999999999,189,0.1430,0,88,999.000,999.0,99.0 +1989,6,11,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,12.2,93,101700,0,0,313,0,0,0,0,0,0,0,20,2.6,0,0,24.1,77777,9,999999999,189,0.1430,0,88,999.000,999.0,99.0 +1989,6,12,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,11.7,90,101700,0,0,313,0,0,0,0,0,0,0,350,2.6,0,0,24.1,77777,9,999999999,189,0.1430,0,88,999.000,999.0,99.0 +1989,6,12,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,11.7,96,101700,0,0,308,0,0,0,0,0,0,0,320,2.6,0,0,24.1,77777,9,999999999,179,0.1430,0,88,999.000,999.0,99.0 +1989,6,12,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,11.1,96,101700,0,0,315,0,0,0,0,0,0,0,0,0.0,2,2,24.1,77777,9,999999999,179,0.1430,0,88,999.000,999.0,99.0 +1989,6,12,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,11.7,96,101800,0,0,355,0,0,0,0,0,0,0,0,0.0,10,10,11.3,460,9,999999999,179,0.1430,0,88,999.000,999.0,99.0 +1989,6,12,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,11.7,93,101800,36,828,358,8,0,8,900,0,900,300,10,1.5,10,10,12.9,400,9,999999999,189,0.0580,0,88,999.000,999.0,99.0 +1989,6,12,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,11.7,90,101800,226,1325,361,52,22,49,5800,1700,5500,1260,0,0.0,10,10,12.9,400,9,999999999,189,0.0580,0,88,999.000,999.0,99.0 +1989,6,12,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,12.2,93,101800,446,1325,361,149,3,148,16500,200,16500,5120,60,2.1,10,10,24.1,400,9,999999999,189,0.0580,0,88,999.000,999.0,99.0 +1989,6,12,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,11.7,84,101800,663,1325,366,226,5,223,25400,400,25200,8510,240,3.1,10,10,24.1,490,9,999999999,189,0.0580,0,88,999.000,999.0,99.0 +1989,6,12,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,11.7,84,101800,859,1325,366,347,2,345,39100,200,38900,13220,170,4.6,10,10,24.1,520,9,999999999,189,0.0580,0,88,999.000,999.0,99.0 +1989,6,12,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,11.7,81,101900,1023,1325,369,349,8,342,40300,800,39800,14710,220,3.6,10,10,24.1,610,9,999999999,189,0.0580,0,88,999.000,999.0,99.0 +1989,6,12,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,12.2,78,101800,1142,1325,376,416,7,410,48400,700,47800,17300,160,3.1,10,10,32.2,640,9,999999999,189,0.0580,0,88,999.000,999.0,99.0 +1989,6,12,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,12.2,75,101800,1209,1325,379,420,5,416,49300,500,48900,17830,200,3.6,10,10,32.2,700,9,999999999,189,0.0580,0,88,999.000,999.0,99.0 +1989,6,12,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,12.2,73,101800,1219,1325,381,449,1,448,52400,100,52300,18740,170,1.5,10,10,32.2,730,9,999999999,189,0.0580,0,88,999.000,999.0,99.0 +1989,6,12,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,12.8,73,101800,1171,1325,385,413,2,411,48200,200,48000,17490,0,0.0,10,10,32.2,790,9,999999999,200,0.0580,0,88,999.000,999.0,99.0 +1989,6,12,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,12.8,73,101800,1069,1325,385,389,1,388,44900,100,44800,16300,160,3.6,10,10,32.2,820,9,999999999,200,0.0580,0,88,999.000,999.0,99.0 +1989,6,12,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,13.3,75,101700,920,1325,386,324,1,323,37100,100,37000,13340,110,2.1,10,10,32.2,850,9,999999999,200,0.0580,0,88,999.000,999.0,99.0 +1989,6,12,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,13.3,78,101700,733,1325,383,273,1,272,30600,100,30600,10280,80,2.6,10,10,32.2,880,9,999999999,200,0.0580,0,88,999.000,999.0,99.0 +1989,6,12,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,13.3,78,101700,522,1325,383,168,0,168,18800,0,18800,6110,70,2.6,10,10,32.2,850,9,999999999,200,0.0580,0,88,999.000,999.0,99.0 +1989,6,12,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,13.3,78,101700,302,1325,383,97,1,97,10700,0,10700,3150,80,3.1,10,10,32.2,850,9,999999999,200,0.0580,0,88,999.000,999.0,99.0 +1989,6,12,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,13.3,78,101700,90,1291,383,23,0,23,2600,0,2600,770,190,1.5,10,10,24.1,820,9,999999999,200,0.0580,0,88,999.000,999.0,99.0 +1989,6,12,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,13.3,78,101700,0,0,383,0,0,0,0,0,0,0,170,4.1,10,10,24.1,820,9,999999999,200,0.1430,0,88,999.000,999.0,99.0 +1989,6,12,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,13.3,84,101700,0,0,377,0,0,0,0,0,0,0,230,5.2,10,10,24.1,820,9,999999999,209,0.1430,0,88,999.000,999.0,99.0 +1989,6,12,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,13.3,87,101700,0,0,374,0,0,0,0,0,0,0,330,4.1,10,10,24.1,790,9,999999999,209,0.1430,0,88,999.000,999.0,99.0 +1989,6,12,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,13.3,90,101700,0,0,371,0,0,0,0,0,0,0,0,0.0,10,10,16.1,640,9,999999999,200,0.1430,0,88,999.000,999.0,99.0 +1989,6,13,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,13.3,90,101600,0,0,371,0,0,0,0,0,0,0,280,2.1,10,10,11.3,520,9,999999999,200,0.1430,0,88,999.000,999.0,99.0 +1989,6,13,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,12.8,90,101600,0,0,368,0,0,0,0,0,0,0,300,2.6,10,10,11.3,520,9,999999999,200,0.1430,0,88,999.000,999.0,99.0 +1989,6,13,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,12.8,90,101600,0,0,368,0,0,0,0,0,0,0,260,2.6,10,10,11.3,730,9,999999999,200,0.1430,0,88,999.000,999.0,99.0 +1989,6,13,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,12.8,90,101600,0,0,368,0,0,0,0,0,0,0,0,0.0,10,10,11.3,790,9,999999999,200,0.1430,0,88,999.000,999.0,99.0 +1989,6,13,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,13.3,90,101600,36,828,371,8,0,8,900,0,900,300,120,1.5,10,10,24.1,760,9,999999999,200,0.2480,0,88,999.000,999.0,99.0 +1989,6,13,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,12.2,84,101600,226,1324,370,58,0,58,6500,0,6500,1970,180,3.1,10,10,24.1,760,9,999999999,189,0.2480,0,88,999.000,999.0,99.0 +1989,6,13,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,12.2,81,101600,446,1324,373,121,0,121,13700,0,13700,4510,180,2.6,10,10,48.3,700,9,999999999,189,0.2480,0,88,999.000,999.0,99.0 +1989,6,13,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,12.2,81,101600,662,1324,373,210,1,210,23800,100,23800,8190,100,1.5,10,10,32.2,730,9,999999999,189,0.2480,0,88,999.000,999.0,99.0 +1989,6,13,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,12.8,73,101600,859,1324,385,286,0,286,32700,0,32700,11820,340,1.5,10,10,40.2,3350,9,999999999,200,0.2480,0,88,999.000,999.0,99.0 +1989,6,13,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,13.3,68,101500,1023,1324,370,578,171,446,62500,18000,48600,15160,330,3.6,10,7,32.2,7620,9,999999999,200,0.2480,0,88,999.000,999.0,99.0 +1989,6,13,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,13.9,66,101500,1142,1324,366,750,436,374,79200,45400,39900,17150,20,3.1,10,4,40.2,77777,9,999999999,209,0.2480,0,88,999.000,999.0,99.0 +1989,6,13,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,13.3,59,101500,1209,1324,388,775,359,446,84400,39000,48700,23820,30,3.1,10,8,64.4,4570,9,999999999,200,0.2480,0,88,999.000,999.0,99.0 +1989,6,13,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,11.1,46,101400,1219,1324,393,639,279,382,70600,30400,42500,20910,170,4.1,10,8,64.4,6100,9,999999999,179,0.2480,0,88,999.000,999.0,99.0 +1989,6,13,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,10.6,46,101400,1172,1324,410,346,11,336,41000,1000,40100,15250,170,4.1,10,10,64.4,3660,9,999999999,170,0.2480,0,88,999.000,999.0,99.0 +1989,6,13,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,10.0,43,101400,1070,1324,412,198,9,191,24200,700,23600,9580,190,4.1,10,10,48.3,4570,9,999999999,170,0.2480,0,88,999.000,999.0,99.0 +1989,6,13,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,11.1,46,101400,921,1324,413,158,7,153,19200,500,18800,7570,180,6.7,10,10,32.2,3660,9,999999999,179,0.2480,0,88,999.000,999.0,99.0 +1989,6,13,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,11.7,51,101500,735,1324,408,231,7,227,26300,600,26000,9200,190,7.7,10,10,32.2,3660,9,999999999,179,0.2480,0,88,999.000,999.0,99.0 +1989,6,13,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,13.3,63,101500,524,1324,401,70,4,69,8500,200,8400,3090,190,6.2,10,10,32.2,2130,9,999999999,200,0.2480,0,88,999.000,999.0,99.0 +1989,6,13,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,12.2,68,101600,303,1324,387,36,2,36,4300,100,4300,1490,180,7.7,10,10,32.2,2130,9,999999999,189,0.2480,0,88,999.000,999.0,99.0 +1989,6,13,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,13.9,90,101600,91,1291,375,12,0,12,1400,0,1400,450,180,2.1,10,10,24.1,1340,9,999999999,209,0.2480,0,88,999.000,999.0,99.0 +1989,6,13,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,14.4,93,101600,0,0,376,0,0,0,0,0,0,0,180,3.1,10,10,24.1,1520,9,999999999,220,0.1430,0,88,999.000,999.0,99.0 +1989,6,13,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,14.4,93,101600,0,0,376,0,0,0,0,0,0,0,170,2.6,10,10,24.1,1370,9,999999999,220,0.1430,0,88,999.000,999.0,99.0 +1989,6,13,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,13.9,93,101600,0,0,372,0,0,0,0,0,0,0,190,2.1,10,10,24.1,1680,9,999999999,209,0.1430,0,88,999.000,999.0,99.0 +1989,6,13,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,14.4,93,101600,0,0,376,0,0,0,0,0,0,0,120,4.6,10,10,24.1,1100,9,999999999,220,0.1430,0,88,999.000,999.0,99.0 +1989,6,14,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,15.0,100,101600,0,0,373,0,0,0,0,0,0,0,120,3.6,10,10,16.1,760,9,999999999,229,0.1430,0,88,999.000,999.0,99.0 +1989,6,14,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,14.4,100,101600,0,0,370,0,0,0,0,0,0,0,130,3.1,10,10,9.7,370,9,999999999,220,0.1430,0,88,999.000,999.0,99.0 +1989,6,14,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,14.4,100,101500,0,0,370,0,0,0,0,0,0,0,110,3.1,10,10,9.7,400,9,999999999,220,0.1430,0,88,999.000,999.0,99.0 +1989,6,14,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,14.4,100,101500,0,0,370,0,0,0,0,0,0,0,120,2.6,10,10,12.9,370,9,999999999,220,0.1430,0,88,999.000,999.0,99.0 +1989,6,14,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,14.4,100,101500,36,827,370,6,0,6,700,0,700,230,130,3.6,10,10,19.3,400,9,999999999,220,0.0870,0,88,999.000,999.0,99.0 +1989,6,14,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,14.4,97,101500,226,1324,373,61,1,61,6800,0,6800,2040,130,3.1,10,10,24.1,460,9,999999999,220,0.0870,0,88,999.000,999.0,99.0 +1989,6,14,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,15.0,97,101500,446,1324,377,149,1,148,16500,100,16400,5120,190,2.1,10,10,32.2,1070,9,999999999,229,0.0870,0,88,999.000,999.0,99.0 +1989,6,14,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,14.4,90,101500,662,1324,378,232,1,231,26000,100,26000,8690,150,3.1,10,10,48.3,1220,9,999999999,220,0.0870,0,88,999.000,999.0,99.0 +1989,6,14,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,14.4,87,101500,859,1324,382,186,1,186,22100,100,22100,8650,180,3.1,10,10,48.3,1130,9,999999999,220,0.0870,0,88,999.000,999.0,99.0 +1989,6,14,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,13.9,81,101500,1022,1324,384,359,1,358,41400,100,41300,15160,0,0.0,10,10,48.3,1040,9,999999999,209,0.0870,0,88,999.000,999.0,99.0 +1989,6,14,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,14.4,87,101500,1142,1324,382,265,1,264,31900,100,31800,12630,90,1.5,10,10,16.1,940,9,999999999,220,0.0870,0,88,999.000,999.0,99.0 +1989,6,14,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,13.9,81,101400,1209,1324,384,264,0,264,32000,0,32000,12780,150,1.5,10,10,16.1,910,9,999999999,209,0.0870,0,88,999.000,999.0,99.0 +1989,6,14,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,15.6,97,101400,1220,1324,380,268,2,266,32500,200,32400,12880,60,3.1,10,10,11.3,940,9,999999999,229,0.0870,0,88,999.000,999.0,99.0 +1989,6,14,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,15.0,97,101400,1172,1324,377,242,1,242,29500,100,29500,11850,300,4.1,10,10,11.3,760,9,999999999,229,0.0870,0,88,999.000,999.0,99.0 +1989,6,14,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,15.0,90,101500,1071,1324,382,220,0,220,26600,0,26600,10770,350,1.5,10,10,32.2,1340,9,999999999,229,0.0870,0,88,999.000,999.0,99.0 +1989,6,14,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,15.0,90,101400,922,1324,382,330,1,329,37700,100,37700,13520,320,3.6,10,10,11.3,1070,9,999999999,229,0.0870,0,88,999.000,999.0,99.0 +1989,6,14,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,13.9,87,101400,736,1324,378,243,0,243,27600,0,27600,9630,350,4.1,10,10,11.3,1190,9,999999999,209,0.0870,0,88,999.000,999.0,99.0 +1989,6,14,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,14.4,97,101500,525,1324,373,109,1,109,12700,100,12700,4520,360,2.1,10,10,4.8,820,9,999999999,220,0.0870,0,88,999.000,999.0,99.0 +1989,6,14,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,14.4,97,101500,305,1324,373,49,0,49,5700,0,5700,1940,0,0.0,10,10,8.0,760,9,999999999,220,0.0870,0,88,999.000,999.0,99.0 +1989,6,14,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,13.9,97,101500,93,1313,369,13,0,13,1500,0,1500,490,360,3.6,10,10,8.0,760,9,999999999,209,0.0870,0,88,999.000,999.0,99.0 +1989,6,14,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,12.8,93,101500,0,0,365,0,0,0,0,0,0,0,310,2.1,10,10,11.3,1010,9,999999999,200,0.1430,0,88,999.000,999.0,99.0 +1989,6,14,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,12.2,90,101500,0,0,364,0,0,0,0,0,0,0,310,3.1,10,10,11.3,1010,9,999999999,189,0.1430,0,88,999.000,999.0,99.0 +1989,6,14,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,11.1,87,101600,0,0,360,0,0,0,0,0,0,0,320,4.1,10,10,11.3,1070,9,999999999,179,0.1430,0,88,999.000,999.0,99.0 +1989,6,14,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,11.1,90,101500,0,0,348,0,0,0,0,0,0,0,320,4.6,10,9,24.1,1130,9,999999999,179,0.1430,0,88,999.000,999.0,99.0 +1989,6,15,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,10.6,87,101600,0,0,347,0,0,0,0,0,0,0,330,3.1,10,9,24.1,1220,9,999999999,170,0.1430,0,88,999.000,999.0,99.0 +1989,6,15,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,10.6,87,101600,0,0,335,0,0,0,0,0,0,0,330,4.6,10,7,24.1,1680,9,999999999,170,0.1430,0,88,999.000,999.0,99.0 +1989,6,15,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,10.6,90,101600,0,0,344,0,0,0,0,0,0,0,320,5.2,10,9,24.1,1680,9,999999999,170,0.1430,0,88,999.000,999.0,99.0 +1989,6,15,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,10.0,86,101500,0,0,353,0,0,0,0,0,0,0,300,4.1,10,10,24.1,1220,9,999999999,170,0.1430,0,88,999.000,999.0,99.0 +1989,6,15,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,10.0,86,101500,36,827,353,12,0,12,1400,0,1400,420,310,5.2,10,10,24.1,1310,9,999999999,170,0.0870,0,88,999.000,999.0,99.0 +1989,6,15,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,10.0,86,101600,226,1324,353,57,0,57,6400,0,6400,1950,310,6.7,10,10,48.3,1340,9,999999999,170,0.0870,0,88,999.000,999.0,99.0 +1989,6,15,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,9.4,80,101500,446,1324,356,142,0,142,15800,0,15800,4990,310,4.6,10,10,48.3,1830,9,999999999,160,0.0870,0,88,999.000,999.0,99.0 +1989,6,15,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,9.4,75,101600,662,1324,351,260,56,232,28500,5600,25700,6800,320,4.6,10,9,48.3,7620,9,999999999,160,0.0870,0,88,999.000,999.0,99.0 +1989,6,15,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,8.9,70,101600,858,1324,363,296,5,293,33900,500,33500,12010,330,4.6,10,10,48.3,2900,9,999999999,160,0.0870,0,88,999.000,999.0,99.0 +1989,6,15,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,9.4,70,101600,1022,1324,367,316,7,311,36900,600,36400,13800,330,5.7,10,10,48.3,3350,9,999999999,160,0.0870,0,88,999.000,999.0,99.0 +1989,6,15,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,9.4,70,101600,1142,1324,367,314,4,311,37400,400,37100,14320,300,3.6,10,10,56.3,1980,9,999999999,160,0.0870,0,88,999.000,999.0,99.0 +1989,6,15,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,8.3,62,101600,1209,1324,368,404,8,396,47500,800,46800,17270,300,3.1,10,10,64.4,2900,9,999999999,150,0.0870,0,88,999.000,999.0,99.0 +1989,6,15,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,7.8,50,101600,1220,1324,358,831,514,357,89100,53700,39500,21930,360,2.1,10,7,64.4,9140,9,999999999,150,0.0870,0,88,999.000,999.0,99.0 +1989,6,15,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,6.7,48,101600,1173,1324,367,376,108,280,42400,11600,32100,12670,280,4.6,10,9,64.4,1980,9,999999999,139,0.0870,0,88,999.000,999.0,99.0 +1989,6,15,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,6.7,50,101600,1072,1324,364,451,114,359,49700,12100,39900,13150,300,5.2,10,9,64.4,1980,9,999999999,139,0.0870,0,88,999.000,999.0,99.0 +1989,6,15,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,6.7,45,101600,923,1324,359,461,197,324,50500,20800,35900,9770,310,3.6,8,7,64.4,2130,9,999999999,139,0.0870,0,88,999.000,999.0,99.0 +1989,6,15,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,6.1,47,101600,737,1324,367,283,29,267,31900,2700,30400,10210,340,3.1,9,9,64.4,1980,9,999999999,139,0.0870,0,88,999.000,999.0,99.0 +1989,6,15,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,7.2,52,101600,526,1324,357,202,146,145,22300,14400,16600,3390,310,4.6,9,8,64.4,2130,9,999999999,139,0.0870,0,88,999.000,999.0,99.0 +1989,6,15,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,6.1,48,101600,306,1324,350,103,89,82,11200,7400,9500,1780,310,5.7,7,7,64.4,2590,9,999999999,129,0.0870,0,88,999.000,999.0,99.0 +1989,6,15,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,7.8,60,101700,94,1313,341,35,53,31,3800,2500,3600,640,330,5.2,6,6,40.2,2590,9,999999999,150,0.0870,0,88,999.000,999.0,99.0 +1989,6,15,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,7.2,62,101700,0,0,334,0,0,0,0,0,0,0,330,4.6,6,6,24.1,2590,9,999999999,139,0.1430,0,88,999.000,999.0,99.0 +1989,6,15,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,7.2,67,101800,0,0,338,0,0,0,0,0,0,0,330,4.1,8,8,24.1,1980,9,999999999,139,0.1430,0,88,999.000,999.0,99.0 +1989,6,15,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,7.8,72,101700,0,0,328,0,0,0,0,0,0,0,330,3.6,6,6,24.1,2290,9,999999999,150,0.1430,0,88,999.000,999.0,99.0 +1989,6,15,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,8.3,77,101800,0,0,342,0,0,0,0,0,0,0,310,4.1,10,9,24.1,2290,9,999999999,150,0.1430,0,88,999.000,999.0,99.0 +1989,6,16,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,8.3,77,101800,0,0,334,0,0,0,0,0,0,0,300,3.6,8,8,24.1,2440,9,999999999,150,0.1430,0,88,999.000,999.0,99.0 +1989,6,16,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,8.3,80,101800,0,0,327,0,0,0,0,0,0,0,300,4.1,7,7,24.1,2440,9,999999999,150,0.1430,0,88,999.000,999.0,99.0 +1989,6,16,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,8.3,83,101800,0,0,318,0,0,0,0,0,0,0,330,3.1,5,5,24.1,77777,9,999999999,150,0.1430,0,88,999.000,999.0,99.0 +1989,6,16,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,8.3,86,101800,0,0,313,0,0,0,0,0,0,0,350,2.1,4,4,24.1,77777,9,999999999,150,0.1430,0,88,999.000,999.0,99.0 +1989,6,16,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,8.3,90,101900,36,827,319,13,14,12,1400,500,1400,250,0,0.0,8,7,40.2,7620,9,999999999,150,0.0660,0,88,999.000,999.0,99.0 +1989,6,16,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,9.4,83,101900,226,1324,330,87,52,78,9500,4100,8800,1800,10,1.5,10,7,48.3,7620,9,999999999,160,0.0660,0,88,999.000,999.0,99.0 +1989,6,16,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,9.4,86,101900,446,1324,333,262,305,159,27300,28600,17700,3380,60,2.6,10,8,48.3,7620,9,999999999,160,0.0660,0,88,999.000,999.0,99.0 +1989,6,16,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,10.0,78,102000,661,1324,327,422,580,131,43800,56800,15400,2730,80,2.6,8,3,32.2,77777,9,999999999,170,0.0660,0,88,999.000,999.0,99.0 +1989,6,16,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,7.2,60,102000,858,1324,337,443,260,274,47800,27800,29700,7260,360,2.1,10,6,32.2,3660,9,999999999,139,0.0660,0,88,999.000,999.0,99.0 +1989,6,16,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,7.8,58,101900,1022,1324,343,616,382,320,67200,41400,35200,10500,30,2.6,10,6,64.4,3660,9,999999999,150,0.0660,0,88,999.000,999.0,99.0 +1989,6,16,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,5.0,45,101900,1142,1324,345,630,293,377,69000,31800,41500,16090,350,1.5,10,6,64.4,3660,9,999999999,129,0.0660,0,88,999.000,999.0,99.0 +1989,6,16,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,6.1,43,101900,1209,1324,351,752,466,326,81200,48800,36600,19030,360,3.6,6,5,64.4,7620,9,999999999,129,0.0660,0,88,999.000,999.0,99.0 +1989,6,16,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,5.6,40,101900,1220,1324,350,740,546,236,79000,55700,27500,14180,320,3.1,4,4,64.4,77777,9,999999999,129,0.0660,0,88,999.000,999.0,99.0 +1989,6,16,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,5.6,40,101800,1173,1324,348,859,746,198,92500,76600,24500,9920,280,3.6,7,3,64.4,77777,9,999999999,129,0.0660,0,88,999.000,999.0,99.0 +1989,6,16,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,5.0,38,101800,1072,1324,353,739,604,250,77400,60900,28000,9020,330,2.6,8,4,64.4,77777,9,999999999,129,0.0660,0,88,999.000,999.0,99.0 +1989,6,16,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,4.4,35,101800,924,1324,357,630,645,180,66400,65300,20800,4970,300,1.5,7,5,64.4,7620,9,999999999,120,0.0660,0,88,999.000,999.0,99.0 +1989,6,16,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,6.1,39,101700,738,1324,360,468,478,202,49400,48500,22300,4550,270,3.1,7,5,64.4,7620,9,999999999,129,0.0660,0,88,999.000,999.0,99.0 +1989,6,16,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,6.7,44,101700,528,1324,358,219,110,176,23800,10800,19500,4120,320,5.2,8,6,64.4,3050,9,999999999,139,0.0660,0,88,999.000,999.0,99.0 +1989,6,16,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,8.9,56,101700,307,1324,352,118,141,86,12900,11700,10200,1870,340,4.6,6,6,64.4,3050,9,999999999,160,0.0660,0,88,999.000,999.0,99.0 +1989,6,16,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,8.3,58,101700,95,1312,343,34,82,27,3500,3200,3300,490,340,3.1,5,5,64.4,77777,9,999999999,150,0.0660,0,88,999.000,999.0,99.0 +1989,6,16,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,7.8,58,101700,0,0,340,0,0,0,0,0,0,0,300,2.6,5,5,24.1,77777,9,999999999,150,0.1430,0,88,999.000,999.0,99.0 +1989,6,16,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,8.9,72,101700,0,0,318,0,0,0,0,0,0,0,280,2.6,8,1,24.1,77777,9,999999999,160,0.1430,0,88,999.000,999.0,99.0 +1989,6,16,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,8.9,70,101700,0,0,325,0,0,0,0,0,0,0,310,3.1,6,2,24.1,77777,9,999999999,160,0.1430,0,88,999.000,999.0,99.0 +1989,6,16,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,8.3,75,101700,0,0,307,0,0,0,0,0,0,0,120,2.1,1,0,24.1,77777,9,999999999,150,0.1430,0,88,999.000,999.0,99.0 +1989,6,17,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,10.0,93,101700,0,0,301,0,0,0,0,0,0,0,120,2.1,1,0,24.1,77777,9,999999999,170,0.1430,0,88,999.000,999.0,99.0 +1989,6,17,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,8.9,90,101600,0,0,304,0,0,0,0,0,0,0,120,2.6,2,1,24.1,77777,9,999999999,160,0.1430,0,88,999.000,999.0,99.0 +1989,6,17,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,7.8,83,101600,0,0,307,0,0,0,0,0,0,0,130,2.6,7,2,24.1,77777,9,999999999,150,0.1430,0,88,999.000,999.0,99.0 +1989,6,17,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,7.8,86,101600,0,0,340,0,0,0,0,0,0,0,130,3.1,10,10,24.1,7620,9,999999999,150,0.1430,0,88,999.000,999.0,99.0 +1989,6,17,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,7.8,86,101700,36,827,331,8,2,8,1000,0,1000,300,110,4.1,10,9,64.4,3660,9,999999999,150,0.0960,0,88,999.000,999.0,99.0 +1989,6,17,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,7.8,83,101700,225,1323,343,44,1,44,5000,0,5000,1610,110,4.1,10,10,64.4,3050,9,999999999,150,0.0960,0,88,999.000,999.0,99.0 +1989,6,17,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,7.8,75,101700,445,1323,351,140,7,138,15700,500,15500,4900,120,3.1,10,10,64.4,3350,9,999999999,150,0.0960,0,88,999.000,999.0,99.0 +1989,6,17,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,8.3,75,101800,661,1323,354,194,5,192,22200,400,22000,7710,120,4.1,10,10,32.2,3350,9,999999999,150,0.0960,0,88,999.000,999.0,99.0 +1989,6,17,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,7.8,67,101800,858,1323,359,290,1,289,33100,100,33100,11900,180,4.1,10,10,32.2,1830,9,999999999,150,0.0960,0,88,999.000,999.0,99.0 +1989,6,17,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,7.8,62,101800,1021,1323,365,373,3,371,43000,300,42800,15490,120,2.6,10,10,32.2,3350,9,999999999,150,0.0960,0,88,999.000,999.0,99.0 +1989,6,17,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,7.2,50,101800,1141,1323,354,379,150,249,42700,16400,28600,10210,190,5.2,7,7,64.4,3350,9,999999999,139,0.0960,0,88,999.000,999.0,99.0 +1989,6,17,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,7.2,50,101800,1209,1323,360,895,582,361,95500,60800,39800,21180,190,4.1,8,8,64.4,3050,9,999999999,139,0.0960,0,88,999.000,999.0,99.0 +1989,6,17,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,7.8,47,101800,1220,1323,387,202,13,190,25200,1000,24300,9730,200,2.6,10,10,32.2,3050,9,999999999,150,0.0960,0,88,999.000,999.0,99.0 +1989,6,17,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,8.9,49,101800,1174,1323,373,685,356,369,75400,38700,41000,17210,230,2.6,8,8,32.2,3050,9,999999999,160,0.0960,0,88,999.000,999.0,99.0 +1989,6,17,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,8.9,49,101700,1073,1323,392,349,3,347,40800,300,40500,15190,230,6.2,10,10,32.2,1680,9,999999999,160,0.0960,0,88,999.000,999.0,99.0 +1989,6,17,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,9.4,47,101700,924,1323,380,346,44,315,38100,4500,34900,11110,160,3.6,8,8,40.2,1680,9,999999999,160,0.0960,0,88,999.000,999.0,99.0 +1989,6,17,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,9.4,51,101700,739,1323,382,336,164,244,36600,17000,27100,6350,310,4.1,9,9,32.2,1680,9,999999999,160,0.0960,0,88,999.000,999.0,99.0 +1989,6,17,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,10.6,55,101700,529,1323,370,268,239,172,28300,23600,18900,3690,310,5.2,7,7,32.2,1980,9,999999999,179,0.0960,0,88,999.000,999.0,99.0 +1989,6,17,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,11.1,63,101700,309,1323,375,71,45,60,7800,3800,6900,1630,300,4.6,9,9,32.2,1830,9,999999999,179,0.0960,0,88,999.000,999.0,99.0 +1989,6,17,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,11.1,68,101700,96,1323,362,26,20,24,2800,1200,2700,570,300,4.1,8,8,32.2,1830,9,999999999,179,0.0960,0,88,999.000,999.0,99.0 +1989,6,17,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,11.1,70,101700,0,11,359,0,0,0,0,0,0,0,260,2.6,8,8,24.1,1830,9,999999999,179,0.1430,0,88,999.000,999.0,99.0 +1989,6,17,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,11.7,75,101800,0,0,357,0,0,0,0,0,0,0,260,2.1,8,8,24.1,1980,9,999999999,189,0.1430,0,88,999.000,999.0,99.0 +1989,6,17,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,12.8,84,101800,0,0,374,0,0,0,0,0,0,0,280,2.6,10,10,24.1,1520,9,999999999,200,0.1430,0,88,999.000,999.0,99.0 +1989,6,17,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,13.3,90,101800,0,0,371,0,0,0,0,0,0,0,310,3.1,10,10,24.1,1490,9,999999999,209,0.1430,0,88,999.000,999.0,99.0 +1989,6,18,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,12.8,90,101800,0,0,368,0,0,0,0,0,0,0,340,2.1,10,10,24.1,1100,9,999999999,200,0.1440,0,88,999.000,999.0,99.0 +1989,6,18,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,12.2,90,101700,0,0,364,0,0,0,0,0,0,0,320,2.6,10,10,24.1,1220,9,999999999,189,0.1440,0,88,999.000,999.0,99.0 +1989,6,18,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,12.2,90,101700,0,0,364,0,0,0,0,0,0,0,310,2.6,10,10,24.1,1130,9,999999999,189,0.1440,0,88,999.000,999.0,99.0 +1989,6,18,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,12.2,93,101800,0,0,361,0,0,0,0,0,0,0,320,2.1,10,10,24.1,1130,9,999999999,189,0.1440,0,88,999.000,999.0,99.0 +1989,6,18,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,12.2,93,101700,35,827,361,5,0,5,600,0,600,200,300,1.5,10,10,24.1,940,9,999999999,189,0.1640,0,88,999.000,999.0,99.0 +1989,6,18,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,12.8,97,101700,225,1323,362,55,1,55,6200,0,6200,1900,0,0.0,10,10,24.1,1250,9,999999999,200,0.1640,0,88,999.000,999.0,99.0 +1989,6,18,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,12.8,90,101700,445,1323,368,73,4,72,8600,200,8600,3030,0,0.0,10,10,32.2,1010,9,999999999,200,0.1640,0,88,999.000,999.0,99.0 +1989,6,18,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,12.8,87,101700,660,1323,371,181,1,181,20800,100,20800,7400,90,1.5,10,10,32.2,1070,9,999999999,200,0.1640,0,88,999.000,999.0,99.0 +1989,6,18,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,13.9,97,101700,857,1323,369,180,3,178,21400,200,21200,8340,170,2.1,10,10,19.3,1010,9,999999999,209,0.1640,0,88,999.000,999.0,99.0 +1989,6,18,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,14.4,84,101700,1021,1323,366,513,414,193,56900,43300,23400,6290,110,2.6,8,8,32.2,1010,9,999999999,220,0.1640,0,88,999.000,999.0,99.0 +1989,6,18,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,13.9,84,101700,1141,1323,381,319,3,317,37900,300,37700,14520,80,4.1,10,10,32.2,1370,9,999999999,209,0.1640,0,88,999.000,999.0,99.0 +1989,6,18,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,13.3,75,101600,1209,1323,375,573,158,428,63100,16900,47700,21580,90,3.6,9,9,32.2,940,9,999999999,200,0.1640,0,88,999.000,999.0,99.0 +1989,6,18,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,13.3,66,101600,1220,1323,368,671,299,395,73900,32500,43900,21840,30,2.6,6,6,32.2,1520,9,999999999,209,0.1640,0,88,999.000,999.0,99.0 +1989,6,18,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,11.1,57,101500,1174,1323,370,616,288,361,68000,31300,40200,16820,340,2.6,7,7,32.2,1680,9,999999999,179,0.1640,0,88,999.000,999.0,99.0 +1989,6,18,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,9.4,49,101500,1073,1323,371,491,164,358,54100,17500,39900,13160,240,5.7,7,7,32.2,1520,9,999999999,160,0.1640,0,88,999.000,999.0,99.0 +1989,6,18,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,9.4,44,101400,925,1323,375,543,288,342,58300,30900,36600,10040,250,6.2,6,6,32.2,2440,9,999999999,160,0.1640,0,88,999.000,999.0,99.0 +1989,6,18,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,7.8,44,101400,740,1323,369,324,196,215,35700,20400,24300,5600,220,6.2,7,7,32.2,2740,9,999999999,150,0.1640,0,88,999.000,999.0,99.0 +1989,6,18,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,7.2,49,101400,530,1323,370,187,56,165,20600,5400,18400,4610,260,6.2,9,9,32.2,1680,9,999999999,139,0.1640,0,88,999.000,999.0,99.0 +1989,6,18,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,6.7,52,101500,310,1323,372,82,8,80,9200,400,9100,2830,290,6.7,10,10,32.2,1680,9,999999999,139,0.1640,0,88,999.000,999.0,99.0 +1989,6,18,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,5.6,52,101500,97,1323,365,12,0,12,1400,0,1400,450,260,7.2,10,10,32.2,1520,9,999999999,129,0.1640,0,88,999.000,999.0,99.0 +1989,6,18,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,5.6,54,101600,0,11,352,0,0,0,0,0,0,0,260,4.6,9,9,24.1,1830,9,999999999,129,0.1440,0,88,999.000,999.0,99.0 +1989,6,18,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,5.6,58,101600,0,0,356,0,0,0,0,0,0,0,270,3.6,10,10,24.1,1980,9,999999999,129,0.1440,0,88,999.000,999.0,99.0 +1989,6,18,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,5.6,58,101600,0,0,356,0,0,0,0,0,0,0,250,4.1,10,10,24.1,1490,9,999999999,129,0.1440,0,88,999.000,999.0,99.0 +1989,6,18,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,7.2,67,101600,0,0,355,0,0,0,0,0,0,0,230,4.6,10,10,24.1,1310,9,999999999,139,0.1440,0,88,999.000,999.0,99.0 +1989,6,19,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,8.3,75,101600,0,0,345,0,0,0,0,0,0,0,190,4.6,9,9,24.1,1130,9,999999999,150,0.1440,0,88,999.000,999.0,99.0 +1989,6,19,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,8.3,75,101600,0,0,354,0,0,0,0,0,0,0,210,4.6,10,10,24.1,2290,9,999999999,150,0.1440,0,88,999.000,999.0,99.0 +1989,6,19,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,7.8,75,101600,0,0,351,0,0,0,0,0,0,0,200,5.7,10,10,24.1,2130,9,999999999,150,0.1440,0,88,999.000,999.0,99.0 +1989,6,19,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,7.2,72,101500,0,0,350,0,0,0,0,0,0,0,180,5.2,10,10,24.1,2130,9,999999999,139,0.1440,0,88,999.000,999.0,99.0 +1989,6,19,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,8.9,86,101600,35,827,347,5,0,5,600,0,600,200,210,5.2,10,10,19.3,980,9,999999999,160,0.1600,0,88,999.000,999.0,99.0 +1989,6,19,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,10.0,96,101600,224,1323,345,35,3,35,4100,0,4100,1340,190,5.7,10,10,19.3,980,9,999999999,170,0.1600,0,88,999.000,999.0,99.0 +1989,6,19,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,9.4,90,101600,444,1323,347,70,5,69,8300,300,8200,2920,180,5.2,10,10,24.1,1370,9,999999999,160,0.1600,0,88,999.000,999.0,99.0 +1989,6,19,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,9.4,86,101700,660,1323,350,99,0,99,11900,0,11900,4590,230,4.1,10,10,19.3,940,9,999999999,160,0.1600,0,88,999.000,999.0,99.0 +1989,6,19,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,10.0,86,101600,856,1323,344,232,89,174,26200,9500,20000,4930,190,8.2,9,9,32.2,1830,9,999999999,170,0.1600,0,88,999.000,999.0,99.0 +1989,6,19,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,11.7,78,101600,1020,1323,349,618,415,297,65500,43200,32200,9930,200,8.8,7,7,32.2,1680,9,999999999,189,0.1600,0,88,999.000,999.0,99.0 +1989,6,19,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,11.7,81,101700,1141,1323,346,726,428,356,76900,44600,38400,16260,180,7.7,7,7,32.2,1680,9,999999999,189,0.1600,0,88,999.000,999.0,99.0 +1989,6,19,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,10.6,65,101600,1209,1323,351,877,598,330,94600,62600,37300,19290,210,7.7,6,6,32.2,1680,9,999999999,170,0.1600,0,88,999.000,999.0,99.0 +1989,6,19,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,12.2,75,101600,1220,1323,348,940,769,229,100500,78600,27800,13830,230,6.2,5,5,32.2,77777,9,999999999,189,0.1600,0,88,999.000,999.0,99.0 +1989,6,19,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,8.3,54,101600,1174,1323,356,867,565,365,92100,59000,39700,18680,270,7.7,7,7,32.2,2440,9,999999999,150,0.1600,0,88,999.000,999.0,99.0 +1989,6,19,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,6.1,48,101600,1074,1323,364,385,36,356,42500,3700,39500,14530,240,6.7,9,9,32.2,1220,9,999999999,129,0.1600,0,88,999.000,999.0,99.0 +1989,6,19,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,11.1,90,101700,926,1323,348,214,59,173,23800,5900,19600,6660,260,5.7,10,9,32.2,1310,9,999999999,179,0.1600,0,88,999.000,999.0,99.0 +1989,6,19,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,8.9,72,101700,740,1323,360,233,4,231,26600,300,26400,9360,280,5.7,10,10,32.2,1310,9,999999999,160,0.1600,0,88,999.000,999.0,99.0 +1989,6,19,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,8.9,72,101700,531,1323,351,212,208,129,23000,20600,14700,2610,250,6.7,9,9,32.2,1280,9,999999999,160,0.1600,0,88,999.000,999.0,99.0 +1989,6,19,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,8.9,75,101700,311,1323,340,90,52,78,9900,4400,8900,2030,250,6.7,8,8,32.2,1220,9,999999999,160,0.1600,0,88,999.000,999.0,99.0 +1989,6,19,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,10.0,83,101800,98,1323,356,9,2,9,1100,0,1100,350,260,3.1,10,10,32.2,1340,9,999999999,170,0.1600,0,88,999.000,999.0,99.0 +1989,6,19,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,10.0,90,101800,0,11,351,0,0,0,0,0,0,0,230,5.7,10,10,24.1,1010,9,999999999,170,0.1440,0,88,999.000,999.0,99.0 +1989,6,19,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,9.4,90,101900,0,0,325,0,0,0,0,0,0,0,260,2.1,7,7,24.1,1490,9,999999999,160,0.1440,0,88,999.000,999.0,99.0 +1989,6,19,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,9.4,86,102000,0,0,340,0,0,0,0,0,0,0,0,0.0,9,9,24.1,1310,9,999999999,160,0.1440,0,88,999.000,999.0,99.0 +1989,6,19,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,10.0,93,102000,0,0,348,0,0,0,0,0,0,0,230,2.1,10,10,24.1,1250,9,999999999,170,0.1440,0,88,999.000,999.0,99.0 +1989,6,20,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,10.0,96,102000,0,0,345,0,0,0,0,0,0,0,270,2.1,10,10,24.1,1250,9,999999999,170,0.1440,0,88,999.000,999.0,99.0 +1989,6,20,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,9.4,90,102100,0,0,347,0,0,0,0,0,0,0,210,1.5,10,10,24.1,1220,9,999999999,160,0.1440,0,88,999.000,999.0,99.0 +1989,6,20,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,9.4,93,102200,0,0,345,0,0,0,0,0,0,0,240,2.6,10,10,24.1,1100,9,999999999,160,0.1440,0,88,999.000,999.0,99.0 +1989,6,20,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,9.4,93,102200,0,0,345,0,0,0,0,0,0,0,220,1.5,10,10,24.1,1220,9,999999999,160,0.1440,0,88,999.000,999.0,99.0 +1989,6,20,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,9.4,93,102400,35,827,345,5,0,5,600,0,600,200,230,2.1,10,10,32.2,1980,9,999999999,160,0.0670,0,88,999.000,999.0,99.0 +1989,6,20,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,10.0,90,102400,224,1323,334,81,37,75,8900,2900,8400,1740,200,2.6,8,8,40.2,980,9,999999999,170,0.0670,0,88,999.000,999.0,99.0 +1989,6,20,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,9.4,83,102500,443,1323,343,147,35,136,16200,3300,15100,3640,160,1.5,9,9,40.2,1980,9,999999999,160,0.0670,0,88,999.000,999.0,99.0 +1989,6,20,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,9.4,78,102600,659,1323,358,170,2,169,19600,200,19500,7040,340,2.1,10,10,32.2,1830,9,999999999,160,0.0670,0,88,999.000,999.0,99.0 +1989,6,20,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,8.9,70,102700,856,1323,353,275,3,274,31700,300,31500,11480,270,2.6,9,9,32.2,1830,9,999999999,160,0.0670,0,88,999.000,999.0,99.0 +1989,6,20,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,7.8,56,102700,1020,1323,355,540,235,359,59300,25000,40000,12170,260,2.6,8,8,32.2,1830,9,999999999,150,0.0670,0,88,999.000,999.0,99.0 +1989,6,20,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,6.1,47,102700,1140,1323,377,359,2,358,42300,200,42100,15830,350,3.1,10,10,32.2,1830,9,999999999,139,0.0670,0,88,999.000,999.0,99.0 +1989,6,20,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,6.7,50,102800,1208,1323,357,777,409,402,85300,44500,44500,21310,290,1.5,8,8,32.2,1980,9,999999999,139,0.0670,0,88,999.000,999.0,99.0 +1989,6,20,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,7.2,49,102800,1220,1323,353,555,183,386,61600,19600,43500,20230,360,3.1,6,6,32.2,1980,9,999999999,150,0.0670,0,88,999.000,999.0,99.0 +1989,6,20,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,7.8,49,102700,1174,1323,356,554,298,290,62200,32500,33300,13280,360,2.6,10,6,32.2,1980,9,999999999,150,0.0670,0,88,999.000,999.0,99.0 +1989,6,20,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,7.2,47,102700,1074,1323,366,595,305,347,65000,33100,38100,12620,310,4.6,8,8,64.4,1980,9,999999999,150,0.0670,0,88,999.000,999.0,99.0 +1989,6,20,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,7.8,47,102700,926,1323,369,409,214,259,44800,23100,28600,7260,330,5.2,8,8,64.4,1980,9,999999999,150,0.0670,0,88,999.000,999.0,99.0 +1989,6,20,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,7.8,45,102700,741,1323,372,406,336,218,43900,35400,24000,5140,310,4.6,8,8,64.4,1980,9,999999999,150,0.0670,0,88,999.000,999.0,99.0 +1989,6,20,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,7.8,47,102700,531,1323,356,237,194,159,25900,19100,18200,3730,320,4.6,5,5,64.4,77777,9,999999999,150,0.0670,0,88,999.000,999.0,99.0 +1989,6,20,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,8.3,54,102700,311,1323,380,88,5,87,9800,200,9800,3000,360,5.2,10,10,64.4,6100,9,999999999,150,0.0670,0,88,999.000,999.0,99.0 +1989,6,20,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,8.9,60,102700,99,1323,357,31,50,27,3300,2300,3200,560,350,4.6,8,8,64.4,6100,9,999999999,160,0.0670,0,88,999.000,999.0,99.0 +1989,6,20,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,8.9,65,102700,0,33,346,0,0,0,0,0,0,0,360,5.2,7,7,24.1,6100,9,999999999,160,0.1440,0,88,999.000,999.0,99.0 +1989,6,20,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,8.9,70,102700,0,0,325,0,0,0,0,0,0,0,350,4.1,7,2,24.1,77777,9,999999999,160,0.1440,0,88,999.000,999.0,99.0 +1989,6,20,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,8.9,75,102700,0,0,320,0,0,0,0,0,0,0,320,4.1,7,2,24.1,77777,9,999999999,160,0.1440,0,88,999.000,999.0,99.0 +1989,6,20,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,8.3,75,102700,0,0,317,0,0,0,0,0,0,0,330,5.2,6,2,24.1,77777,9,999999999,150,0.1440,0,88,999.000,999.0,99.0 +1989,6,21,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,8.3,77,102700,0,0,320,0,0,0,0,0,0,0,330,4.1,8,4,24.1,77777,9,999999999,150,0.1440,0,88,999.000,999.0,99.0 +1989,6,21,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,8.9,83,102700,0,0,303,0,0,0,0,0,0,0,310,3.6,0,0,24.1,77777,9,999999999,160,0.1440,0,88,999.000,999.0,99.0 +1989,6,21,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,8.9,90,102600,0,0,298,0,0,0,0,0,0,0,340,3.1,0,0,24.1,77777,9,999999999,160,0.1440,0,88,999.000,999.0,99.0 +1989,6,21,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,8.9,96,102600,0,0,293,0,0,0,0,0,0,0,100,1.5,0,0,24.1,77777,9,999999999,160,0.1440,0,88,999.000,999.0,99.0 +1989,6,21,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,8.3,93,102600,34,805,293,13,10,12,1400,500,1300,300,0,0.0,1,0,64.4,77777,9,999999999,150,0.1900,0,88,999.000,999.0,99.0 +1989,6,21,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,9.4,90,102600,223,1322,307,84,198,51,8800,13600,6500,920,320,3.1,2,1,64.4,77777,9,999999999,160,0.1900,0,88,999.000,999.0,99.0 +1989,6,21,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,9.4,80,102600,442,1322,314,235,432,90,25100,39600,11800,1670,0,0.0,1,1,64.4,77777,9,999999999,160,0.1900,0,88,999.000,999.0,99.0 +1989,6,21,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,10.0,78,102600,658,1322,314,392,538,124,40900,52800,14600,2600,320,3.1,1,0,64.4,77777,9,999999999,170,0.1900,0,88,999.000,999.0,99.0 +1989,6,21,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,10.0,70,102500,855,1322,321,601,693,152,63500,70100,18100,3870,330,3.6,1,0,64.4,77777,9,999999999,170,0.1900,0,88,999.000,999.0,99.0 +1989,6,21,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,10.0,65,102500,1019,1322,326,755,751,174,80500,76800,21200,5780,240,3.6,1,0,64.4,77777,9,999999999,170,0.1900,0,88,999.000,999.0,99.0 +1989,6,21,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,10.0,57,102500,1140,1322,342,847,771,181,88200,77300,21500,7320,280,3.6,2,1,64.4,77777,9,999999999,170,0.1900,0,88,999.000,999.0,99.0 +1989,6,21,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,9.4,49,102400,1208,1322,364,848,581,316,91800,60800,36100,18420,330,2.6,7,5,64.4,3660,9,999999999,160,0.1900,0,88,999.000,999.0,99.0 +1989,6,21,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,10.0,46,102300,1220,1322,372,891,576,359,95400,60200,39800,22190,330,2.6,7,5,64.4,3660,9,999999999,170,0.1900,0,88,999.000,999.0,99.0 +1989,6,21,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,7.8,38,102200,1174,1322,373,815,543,331,87300,56800,36900,16890,320,5.7,7,5,64.4,3660,9,999999999,150,0.1900,0,88,999.000,999.0,99.0 +1989,6,21,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,7.8,36,102200,1074,1322,372,744,585,268,80400,61100,30700,10030,320,5.2,6,3,64.4,77777,9,999999999,150,0.1900,0,88,999.000,999.0,99.0 +1989,6,21,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,3.9,26,102100,927,1322,379,527,299,317,56800,32200,34200,9190,310,6.2,7,6,64.4,6100,9,999999999,120,0.1900,0,88,999.000,999.0,99.0 +1989,6,21,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,4.4,28,102000,742,1322,380,360,231,230,38700,24400,25000,5480,330,5.2,7,6,64.4,6100,9,999999999,120,0.1900,0,88,999.000,999.0,99.0 +1989,6,21,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,4.4,28,102000,532,1322,380,210,204,129,22800,20200,14700,2610,360,4.1,7,6,64.4,7620,9,999999999,120,0.1900,0,88,999.000,999.0,99.0 +1989,6,21,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,7.8,37,102000,312,1322,378,103,93,81,11300,7800,9400,1760,340,5.2,6,6,64.4,7620,9,999999999,150,0.1900,0,88,999.000,999.0,99.0 +1989,6,21,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,10.6,51,101900,100,1322,358,24,50,20,2600,1900,2400,340,330,6.2,2,2,64.4,77777,9,999999999,170,0.1900,0,88,999.000,999.0,99.0 +1989,6,21,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,11.7,61,102000,0,33,351,0,0,0,0,0,0,0,340,5.2,2,2,24.1,77777,9,999999999,189,0.1440,0,88,999.000,999.0,99.0 +1989,6,21,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,11.1,65,102000,0,0,343,0,0,0,0,0,0,0,330,5.2,2,2,24.1,77777,9,999999999,179,0.1440,0,88,999.000,999.0,99.0 +1989,6,21,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,10.6,63,102000,0,0,364,0,0,0,0,0,0,0,330,6.2,8,8,24.1,6100,9,999999999,179,0.1440,0,88,999.000,999.0,99.0 +1989,6,21,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,10.0,65,102000,0,0,348,0,0,0,0,0,0,0,330,5.2,6,6,24.1,4570,9,999999999,170,0.1440,0,88,999.000,999.0,99.0 +1989,6,22,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,10.0,67,102000,0,0,363,0,0,0,0,0,0,0,310,4.1,10,9,24.1,7620,9,999999999,170,0.1440,0,88,999.000,999.0,99.0 +1989,6,22,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,10.0,70,101900,0,0,370,0,0,0,0,0,0,0,300,4.1,10,10,24.1,4570,9,999999999,170,0.1440,0,88,999.000,999.0,99.0 +1989,6,22,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,8.9,70,101900,0,0,325,0,0,0,0,0,0,0,320,4.6,3,2,24.1,77777,9,999999999,160,0.1440,0,88,999.000,999.0,99.0 +1989,6,22,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,8.3,69,101900,0,0,337,0,0,0,0,0,0,0,310,4.1,7,7,24.1,4570,9,999999999,150,0.1440,0,88,999.000,999.0,99.0 +1989,6,22,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,8.3,69,101900,34,804,337,10,7,9,1000,300,1000,230,310,2.6,7,7,48.3,4570,9,999999999,150,0.0940,0,88,999.000,999.0,99.0 +1989,6,22,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,7.8,62,101900,222,1322,347,76,104,59,8300,7500,7100,1260,300,2.6,8,8,48.3,4570,9,999999999,150,0.0940,0,88,999.000,999.0,99.0 +1989,6,22,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,8.3,60,101900,442,1322,321,272,630,60,28000,57600,8700,1190,340,4.6,0,0,48.3,77777,9,999999999,150,0.0940,0,88,999.000,999.0,99.0 +1989,6,22,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,8.3,56,101900,657,1322,326,454,749,80,47800,73600,11100,1760,330,4.6,0,0,64.4,77777,9,999999999,150,0.0940,0,88,999.000,999.0,99.0 +1989,6,22,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,8.9,54,101800,854,1322,338,507,585,128,54200,59600,15600,3320,350,3.1,1,1,64.4,77777,9,999999999,160,0.0940,0,88,999.000,999.0,99.0 +1989,6,22,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,9.4,51,101800,1018,1322,347,751,839,102,77600,83900,12900,2900,350,4.6,1,1,64.4,77777,9,999999999,160,0.0940,0,88,999.000,999.0,99.0 +1989,6,22,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,9.4,46,101700,1139,1322,348,886,889,118,91200,89100,14300,4280,360,4.6,0,0,64.4,77777,9,999999999,160,0.0940,0,88,999.000,999.0,99.0 +1989,6,22,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,10.6,45,101700,1208,1322,357,942,895,122,96800,89800,14700,5690,360,4.6,0,0,64.4,77777,9,999999999,179,0.0940,0,88,999.000,999.0,99.0 +1989,6,22,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,11.1,46,101600,1220,1322,365,905,858,113,93400,86100,13800,5710,320,5.2,1,1,64.4,77777,9,999999999,179,0.0940,0,88,999.000,999.0,99.0 +1989,6,22,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,11.7,46,101600,1174,1322,368,879,839,133,90300,84000,15500,5200,320,6.7,1,1,64.4,77777,9,999999999,179,0.0940,0,88,999.000,999.0,99.0 +1989,6,22,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,11.7,45,101500,1075,1322,371,780,822,110,80500,82300,13500,3420,310,7.7,1,1,64.4,77777,9,999999999,189,0.0940,0,88,999.000,999.0,99.0 +1989,6,22,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,11.7,45,101500,927,1322,364,691,839,102,71600,83600,12900,2440,330,7.2,0,0,64.4,77777,9,999999999,189,0.0940,0,88,999.000,999.0,99.0 +1989,6,22,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,11.7,46,101500,742,1322,362,517,765,87,54900,76200,12100,2030,340,6.2,0,0,64.4,77777,9,999999999,179,0.0940,0,88,999.000,999.0,99.0 +1989,6,22,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,11.7,46,101400,533,1322,362,342,682,68,35800,64900,9700,1410,330,6.2,0,0,64.4,77777,9,999999999,179,0.0940,0,88,999.000,999.0,99.0 +1989,6,22,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,11.1,48,101400,313,1322,356,167,508,48,17500,41800,7700,910,330,6.2,0,0,64.4,77777,9,999999999,179,0.0940,0,88,999.000,999.0,99.0 +1989,6,22,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,11.7,53,101400,100,1322,351,36,173,22,3700,7500,3100,390,330,6.2,0,0,64.4,77777,9,999999999,189,0.0940,0,88,999.000,999.0,99.0 +1989,6,22,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,11.7,57,101500,0,33,357,0,0,0,0,0,0,0,330,5.2,2,2,24.1,77777,9,999999999,189,0.1440,0,88,999.000,999.0,99.0 +1989,6,22,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,12.2,70,101500,0,0,340,0,0,0,0,0,0,0,280,3.1,1,1,24.1,77777,9,999999999,189,0.1440,0,88,999.000,999.0,99.0 +1989,6,22,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,11.7,65,101600,0,0,350,0,0,0,0,0,0,0,300,5.2,3,3,24.1,77777,9,999999999,179,0.1440,0,88,999.000,999.0,99.0 +1989,6,22,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,12.2,68,101600,0,0,356,0,0,0,0,0,0,0,300,5.2,5,5,24.1,77777,9,999999999,189,0.1440,0,88,999.000,999.0,99.0 +1989,6,23,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,12.2,73,101600,0,0,337,0,0,0,0,0,0,0,300,4.6,1,1,24.1,77777,9,999999999,189,0.1440,0,88,999.000,999.0,99.0 +1989,6,23,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,12.2,75,101600,0,0,328,0,0,0,0,0,0,0,330,2.6,0,0,24.1,77777,9,999999999,189,0.1440,0,88,999.000,999.0,99.0 +1989,6,23,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,11.7,78,101600,0,0,323,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,189,0.1440,0,88,999.000,999.0,99.0 +1989,6,23,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,11.7,78,101600,0,0,323,0,0,0,0,0,0,0,10,1.5,0,0,24.1,77777,9,999999999,189,0.1440,0,88,999.000,999.0,99.0 +1989,6,23,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,12.8,90,101600,33,804,319,12,7,12,1400,400,1300,300,40,1.5,0,0,64.4,77777,9,999999999,200,0.2110,0,88,999.000,999.0,99.0 +1989,6,23,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,11.7,75,101600,221,1322,325,88,200,54,9100,13700,6800,980,320,3.6,0,0,64.4,77777,9,999999999,189,0.2110,0,88,999.000,999.0,99.0 +1989,6,23,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,12.2,68,101600,441,1322,336,241,442,93,25600,40500,12100,1730,320,3.1,0,0,64.4,77777,9,999999999,189,0.2110,0,88,999.000,999.0,99.0 +1989,6,23,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,12.8,61,101600,656,1322,347,422,590,128,43800,57800,15100,2670,310,2.6,0,0,64.4,77777,9,999999999,200,0.2110,0,88,999.000,999.0,99.0 +1989,6,23,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,12.8,53,101500,853,1322,358,599,681,157,63000,68800,18500,3970,310,3.6,0,0,64.4,77777,9,999999999,200,0.2110,0,88,999.000,999.0,99.0 +1989,6,23,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,13.3,50,101500,1018,1322,366,750,740,179,79800,75600,21600,5910,320,4.1,0,0,64.4,77777,9,999999999,200,0.2110,0,88,999.000,999.0,99.0 +1989,6,23,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,12.8,44,101500,1138,1322,374,859,771,194,92200,79100,24000,8690,310,4.6,0,0,64.4,77777,9,999999999,200,0.2110,0,88,999.000,999.0,99.0 +1989,6,23,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,12.8,40,101400,1207,1322,382,923,790,201,96000,79100,23600,10450,340,5.2,0,0,64.4,77777,9,999999999,200,0.2110,0,88,999.000,999.0,99.0 +1989,6,23,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,13.3,37,101300,1220,1322,391,934,792,202,97200,79300,23800,11150,330,5.7,0,0,64.4,77777,9,999999999,200,0.2110,0,88,999.000,999.0,99.0 +1989,6,23,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,12.8,35,101200,1174,1322,394,892,782,197,92600,78200,23000,8900,350,3.6,0,0,64.4,77777,9,999999999,200,0.2110,0,88,999.000,999.0,99.0 +1989,6,23,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,13.3,34,101200,1075,1322,400,800,754,186,85500,77200,22700,6980,360,4.1,0,0,64.4,77777,9,999999999,200,0.2110,0,88,999.000,999.0,99.0 +1989,6,23,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,13.3,34,101200,927,1322,400,665,709,167,70500,72000,19800,4690,10,7.2,0,0,64.4,77777,9,999999999,200,0.2110,0,88,999.000,999.0,99.0 +1989,6,23,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,12.8,34,101100,743,1322,397,496,633,141,52000,63100,16600,3160,340,6.2,0,0,64.4,77777,9,999999999,200,0.2110,0,88,999.000,999.0,99.0 +1989,6,23,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,12.2,35,101100,533,1322,390,313,512,108,32500,48300,13000,2080,350,5.2,0,0,64.4,77777,9,999999999,189,0.2110,0,88,999.000,999.0,99.0 +1989,6,23,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,12.2,37,101100,313,1322,384,143,311,70,15100,25200,9200,1270,340,6.2,0,0,64.4,77777,9,999999999,189,0.2110,0,88,999.000,999.0,99.0 +1989,6,23,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,11.7,41,101100,101,1322,372,29,45,26,3200,2100,3100,540,330,6.2,0,0,64.4,77777,9,999999999,189,0.2110,0,88,999.000,999.0,99.0 +1989,6,23,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,11.7,51,101200,0,33,353,0,0,0,0,0,0,0,220,3.1,0,0,24.1,77777,9,999999999,179,0.1440,0,88,999.000,999.0,99.0 +1989,6,23,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,11.1,45,101200,0,0,361,0,0,0,0,0,0,0,320,4.1,0,0,24.1,77777,9,999999999,179,0.1440,0,88,999.000,999.0,99.0 +1989,6,23,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,11.7,55,101200,0,0,348,0,0,0,0,0,0,0,240,3.1,0,0,24.1,77777,9,999999999,189,0.1440,0,88,999.000,999.0,99.0 +1989,6,23,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,10.6,57,101200,0,0,339,0,0,0,0,0,0,0,280,2.6,0,0,24.1,77777,9,999999999,170,0.1440,0,88,999.000,999.0,99.0 +1989,6,24,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,13.9,81,101200,0,0,332,0,0,0,0,0,0,0,50,1.5,0,0,24.1,77777,9,999999999,209,0.1440,0,88,999.000,999.0,99.0 +1989,6,24,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,15.0,90,101300,0,0,331,0,0,0,0,0,0,0,80,1.5,0,0,24.1,77777,9,999999999,229,0.1440,0,88,999.000,999.0,99.0 +1989,6,24,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,13.3,93,101300,0,0,319,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,200,0.1440,0,88,999.000,999.0,99.0 +1989,6,24,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,13.9,93,101300,0,0,322,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,209,0.1440,0,88,999.000,999.0,99.0 +1989,6,24,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,13.9,97,101300,33,804,320,16,63,11,1500,2000,1400,190,0,0.0,0,0,64.4,77777,9,999999999,209,0.0830,0,88,999.000,999.0,99.0 +1989,6,24,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,14.4,84,101300,220,1322,333,107,416,37,11000,29700,6000,680,0,0.0,0,0,64.4,77777,9,999999999,220,0.0830,0,88,999.000,999.0,99.0 +1989,6,24,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,13.9,70,101400,439,1322,343,271,642,56,28100,58900,8500,1150,0,0.0,0,0,64.4,77777,9,999999999,209,0.0830,0,88,999.000,999.0,99.0 +1989,6,24,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,12.8,59,101300,655,1322,349,455,763,75,48200,75100,10900,1680,0,0.0,0,0,64.4,77777,9,999999999,200,0.0830,0,88,999.000,999.0,99.0 +1989,6,24,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,12.8,50,101300,852,1322,363,628,830,91,65200,82400,12000,2090,320,2.1,0,0,64.4,77777,9,999999999,200,0.0830,0,88,999.000,999.0,99.0 +1989,6,24,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,12.8,42,101300,1017,1322,377,775,871,102,80100,87100,13000,2900,330,3.1,0,0,64.4,77777,9,999999999,200,0.0830,0,88,999.000,999.0,99.0 +1989,6,24,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,13.3,38,101200,1138,1322,389,883,895,111,91100,89700,13800,4130,290,3.6,0,0,64.4,77777,9,999999999,200,0.0830,0,88,999.000,999.0,99.0 +1989,6,24,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,13.3,34,101200,1207,1322,400,946,908,115,97500,91100,14100,5460,300,5.2,0,0,64.4,77777,9,999999999,200,0.0830,0,88,999.000,999.0,99.0 +1989,6,24,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,11.7,28,101100,1219,1322,404,960,914,115,98900,91700,14100,5780,290,5.2,0,0,64.4,77777,9,999999999,179,0.0830,0,88,999.000,999.0,99.0 +1989,6,24,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,9.4,24,101100,1174,1322,404,921,908,113,95000,91100,14000,4730,290,4.1,0,0,64.4,77777,9,999999999,160,0.0830,0,88,999.000,999.0,99.0 +1989,6,24,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,9.4,23,101000,1075,1322,406,831,890,106,85900,89100,13300,3370,300,5.2,0,0,64.4,77777,9,999999999,160,0.0830,0,88,999.000,999.0,99.0 +1989,6,24,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,10.6,25,101000,928,1322,408,696,846,102,72200,84300,12900,2440,330,6.2,1,0,64.4,77777,9,999999999,170,0.0830,0,88,999.000,999.0,99.0 +1989,6,24,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,10.0,24,100900,743,1322,407,530,789,87,56400,78600,12200,2030,330,4.6,1,0,64.4,77777,9,999999999,170,0.0830,0,88,999.000,999.0,99.0 +1989,6,24,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,9.4,25,100900,534,1322,401,350,709,64,36900,67700,9500,1360,340,3.6,0,0,64.4,77777,9,999999999,160,0.0830,0,88,999.000,999.0,99.0 +1989,6,24,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,9.4,27,100900,314,1322,392,172,506,52,17900,41500,8000,970,340,5.7,3,0,64.4,77777,9,999999999,160,0.0830,0,88,999.000,999.0,99.0 +1989,6,24,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,10.6,34,100900,101,1322,387,35,169,22,3700,7300,3100,390,310,4.1,1,1,64.4,77777,9,999999999,170,0.0830,0,88,999.000,999.0,99.0 +1989,6,24,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,12.2,44,100900,0,33,371,0,0,0,0,0,0,0,310,4.1,0,0,24.1,77777,9,999999999,189,0.1440,0,88,999.000,999.0,99.0 +1989,6,24,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,13.3,55,101000,0,0,358,0,0,0,0,0,0,0,310,3.6,0,0,24.1,77777,9,999999999,200,0.1440,0,88,999.000,999.0,99.0 +1989,6,24,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,11.7,55,101000,0,0,348,0,0,0,0,0,0,0,270,3.6,0,0,24.1,77777,9,999999999,179,0.1440,0,88,999.000,999.0,99.0 +1989,6,24,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,10.6,49,101000,0,0,350,0,0,0,0,0,0,0,260,3.6,0,0,24.1,77777,9,999999999,170,0.1440,0,88,999.000,999.0,99.0 +1989,6,25,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,12.2,65,101000,0,0,338,0,0,0,0,0,0,0,110,2.1,0,0,24.1,77777,9,999999999,189,0.1440,0,88,999.000,999.0,99.0 +1989,6,25,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,8.3,52,101000,0,0,331,0,0,0,0,0,0,0,130,2.1,0,0,24.1,77777,9,999999999,150,0.1440,0,88,999.000,999.0,99.0 +1989,6,25,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,14.4,87,101000,0,0,331,0,0,0,0,0,0,0,100,1.5,0,0,24.1,77777,9,999999999,220,0.1440,0,88,999.000,999.0,99.0 +1989,6,25,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,15.0,93,101100,0,0,329,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,220,0.1440,0,88,999.000,999.0,99.0 +1989,6,25,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,13.9,87,101100,32,782,327,12,1,12,1400,0,1400,420,120,2.1,0,0,64.4,77777,9,999999999,209,0.3270,0,88,999.000,999.0,99.0 +1989,6,25,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,14.4,84,101100,219,1322,333,77,94,62,8400,6700,7300,1320,40,2.1,1,0,64.4,77777,9,999999999,220,0.3270,0,88,999.000,999.0,99.0 +1989,6,25,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,15.0,78,101200,438,1322,341,217,303,116,23100,28300,13700,2300,280,2.1,1,0,64.4,77777,9,999999999,220,0.3270,0,88,999.000,999.0,99.0 +1989,6,25,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,13.3,61,101200,654,1322,350,399,453,174,41900,45300,19500,3670,290,2.6,2,0,64.4,77777,9,999999999,200,0.3270,0,88,999.000,999.0,99.0 +1989,6,25,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,13.9,57,101200,851,1322,359,583,548,228,61700,56500,25300,5770,340,2.6,3,0,64.4,77777,9,999999999,209,0.3270,0,88,999.000,999.0,99.0 +1989,6,25,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,13.3,52,101200,1016,1322,363,753,593,295,79800,61700,32300,9790,340,3.1,6,0,48.3,77777,9,999999999,209,0.3270,0,88,999.000,999.0,99.0 +1989,6,25,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,11.7,39,101200,1137,1322,375,866,636,317,92800,66400,35500,14270,20,3.1,6,0,64.4,77777,9,999999999,179,0.3270,0,88,999.000,999.0,99.0 +1989,6,25,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,8.9,31,101200,1206,1322,377,956,645,366,102000,67400,40400,21360,320,2.1,8,0,64.4,77777,9,999999999,160,0.3270,0,88,999.000,999.0,99.0 +1989,6,25,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,12.2,36,101100,1219,1322,395,890,585,349,95500,61200,39000,21510,330,2.1,8,1,64.4,77777,9,999999999,189,0.3270,0,88,999.000,999.0,99.0 +1989,6,25,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,12.2,32,101100,1174,1322,404,845,607,305,91400,63500,34900,15530,10,3.1,6,1,64.4,77777,9,999999999,189,0.3270,0,88,999.000,999.0,99.0 +1989,6,25,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,12.2,32,101000,1075,1322,404,764,568,302,81700,59200,33400,11420,330,3.1,7,1,64.4,77777,9,999999999,189,0.3270,0,88,999.000,999.0,99.0 +1989,6,25,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,12.8,34,101000,928,1322,417,541,365,285,58900,39300,31200,8130,10,2.6,5,4,64.4,77777,9,999999999,200,0.3270,0,88,999.000,999.0,99.0 +1989,6,25,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,15.0,44,101000,743,1322,408,418,299,250,44700,31500,26900,6070,330,5.2,7,4,64.4,8530,9,999999999,220,0.3270,0,88,999.000,999.0,99.0 +1989,6,25,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,16.1,56,101000,534,1322,401,257,158,193,27700,15500,21400,4530,330,7.2,8,6,64.4,8530,9,999999999,240,0.3270,0,88,999.000,999.0,99.0 +1989,6,25,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,15.0,71,101100,314,1322,370,113,62,99,12400,5300,11200,2450,330,6.7,9,5,64.4,8530,9,999999999,229,0.3270,0,88,999.000,999.0,99.0 +1989,6,25,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,13.9,76,101200,101,1322,349,24,6,23,2600,0,2600,770,360,5.2,5,2,64.4,77777,9,999999999,209,0.3270,0,88,999.000,999.0,99.0 +1989,6,25,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,13.3,84,101300,0,33,333,0,0,0,0,0,0,0,320,4.6,1,1,24.1,77777,9,999999999,200,0.1440,0,88,999.000,999.0,99.0 +1989,6,25,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,12.8,81,101400,0,0,353,0,0,0,0,0,0,0,340,2.1,7,7,24.1,1190,9,999999999,200,0.1440,0,88,999.000,999.0,99.0 +1989,6,25,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,12.2,78,101400,0,0,376,0,0,0,0,0,0,0,320,3.6,10,10,24.1,1040,9,999999999,189,0.1440,0,88,999.000,999.0,99.0 +1989,6,25,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,11.7,75,101500,0,0,375,0,0,0,0,0,0,0,340,5.2,10,10,24.1,1010,9,999999999,189,0.1440,0,88,999.000,999.0,99.0 +1989,6,26,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,11.1,75,101500,0,0,372,0,0,0,0,0,0,0,310,5.2,10,10,24.1,940,9,999999999,179,0.1440,0,88,999.000,999.0,99.0 +1989,6,26,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,9.4,70,101500,0,0,367,0,0,0,0,0,0,0,350,5.2,10,10,24.1,940,9,999999999,160,0.1440,0,88,999.000,999.0,99.0 +1989,6,26,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,8.9,70,101500,0,0,363,0,0,0,0,0,0,0,340,5.2,10,10,24.1,1010,9,999999999,160,0.1440,0,88,999.000,999.0,99.0 +1989,6,26,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,8.3,69,101500,0,0,360,0,0,0,0,0,0,0,340,5.7,10,10,24.1,1070,9,999999999,150,0.1440,0,88,999.000,999.0,99.0 +1989,6,26,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,7.8,67,101500,32,782,359,9,2,9,1100,0,1100,330,360,5.7,10,10,32.2,1070,9,999999999,150,0.1220,0,88,999.000,999.0,99.0 +1989,6,26,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,7.2,64,101600,218,1322,358,41,15,38,4500,1100,4300,1000,350,5.2,10,10,32.2,1070,9,999999999,139,0.1220,0,88,999.000,999.0,99.0 +1989,6,26,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,7.8,67,101600,437,1322,359,111,6,108,12500,400,12400,4120,340,3.6,10,10,32.2,1130,9,999999999,150,0.1220,0,88,999.000,999.0,99.0 +1989,6,26,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,7.8,62,101600,653,1322,365,194,1,193,22000,100,22000,7690,350,4.1,10,10,32.2,980,9,999999999,150,0.1220,0,88,999.000,999.0,99.0 +1989,6,26,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,6.7,58,101600,850,1322,363,283,7,279,32500,600,32100,11570,300,2.1,10,10,32.2,1010,9,999999999,139,0.1220,0,88,999.000,999.0,99.0 +1989,6,26,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,7.2,54,101600,1015,1322,373,349,2,348,40400,200,40300,14840,340,3.1,10,10,32.2,1100,9,999999999,139,0.1220,0,88,999.000,999.0,99.0 +1989,6,26,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,7.2,52,101600,1136,1322,375,369,2,367,43200,200,43100,16080,350,3.1,10,10,32.2,1220,9,999999999,139,0.1220,0,88,999.000,999.0,99.0 +1989,6,26,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,7.2,50,101600,1206,1322,360,657,319,365,72600,34700,40900,19050,330,3.6,9,8,40.2,1430,9,999999999,139,0.1220,0,88,999.000,999.0,99.0 +1989,6,26,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,7.2,44,101600,1219,1322,358,803,478,361,85900,49900,39700,22260,320,2.6,8,5,40.2,7620,9,999999999,139,0.1220,0,88,999.000,999.0,99.0 +1989,6,26,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,7.8,42,101500,1174,1322,361,839,611,296,87800,61400,33100,14500,340,4.1,9,4,40.2,77777,9,999999999,150,0.1220,0,88,999.000,999.0,99.0 +1989,6,26,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,8.3,46,101500,1075,1322,360,804,695,238,84500,70300,27200,8730,320,3.6,8,4,32.2,77777,9,999999999,150,0.1220,0,88,999.000,999.0,99.0 +1989,6,26,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,8.3,43,101500,928,1322,371,510,332,277,55600,35800,30400,7870,360,6.2,10,6,40.2,7620,9,999999999,150,0.1220,0,88,999.000,999.0,99.0 +1989,6,26,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,7.2,44,101400,744,1322,365,355,126,284,39000,12800,31800,8580,340,6.2,10,7,40.2,7620,9,999999999,139,0.1220,0,88,999.000,999.0,99.0 +1989,6,26,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,7.2,49,101400,534,1322,353,303,337,167,32200,33400,18700,3550,340,6.2,10,6,40.2,7620,9,999999999,139,0.1220,0,88,999.000,999.0,99.0 +1989,6,26,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,6.7,54,101500,314,1322,336,139,181,96,14600,14800,11100,1900,330,8.8,10,4,40.2,77777,9,999999999,139,0.1220,0,88,999.000,999.0,99.0 +1989,6,26,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,7.2,60,101500,101,1322,334,31,25,29,3400,1500,3300,670,340,7.7,10,5,40.2,77777,9,999999999,139,0.1220,0,88,999.000,999.0,99.0 +1989,6,26,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,7.2,64,101500,0,33,332,0,0,0,0,0,0,0,320,6.2,10,6,24.1,7620,9,999999999,139,0.1440,0,88,999.000,999.0,99.0 +1989,6,26,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,7.2,69,101500,0,0,324,0,0,0,0,0,0,0,310,4.6,10,5,24.1,77777,9,999999999,139,0.1440,0,88,999.000,999.0,99.0 +1989,6,26,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,7.2,72,101500,0,0,319,0,0,0,0,0,0,0,310,4.6,10,4,24.1,77777,9,999999999,139,0.1440,0,88,999.000,999.0,99.0 +1989,6,26,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,7.8,77,101500,0,0,315,0,0,0,0,0,0,0,310,2.6,3,3,24.1,77777,9,999999999,150,0.1440,0,88,999.000,999.0,99.0 +1989,6,27,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,7.8,83,101500,0,0,307,0,0,0,0,0,0,0,250,2.1,6,2,24.1,77777,9,999999999,150,0.1440,0,88,999.000,999.0,99.0 +1989,6,27,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,8.3,86,101500,0,0,322,0,0,0,0,0,0,0,280,1.5,7,7,24.1,1400,9,999999999,150,0.1440,0,88,999.000,999.0,99.0 +1989,6,27,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,8.3,80,101400,0,0,349,0,0,0,0,0,0,0,280,2.1,10,10,24.1,1340,9,999999999,150,0.1440,0,88,999.000,999.0,99.0 +1989,6,27,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,8.3,80,101400,0,0,327,0,0,0,0,0,0,0,0,0.0,10,7,24.1,6100,9,999999999,150,0.1440,0,88,999.000,999.0,99.0 +1989,6,27,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,8.9,86,101300,31,760,330,5,5,5,600,200,600,130,110,3.1,10,8,32.2,3660,9,999999999,160,0.0660,0,88,999.000,999.0,99.0 +1989,6,27,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,8.9,83,101300,216,1322,333,63,75,51,7000,5400,6100,1080,120,3.1,10,8,64.4,3660,9,999999999,160,0.0660,0,88,999.000,999.0,99.0 +1989,6,27,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,8.9,80,101300,436,1322,330,175,160,122,19100,15000,14200,2760,80,2.1,9,7,64.4,6100,9,999999999,160,0.0660,0,88,999.000,999.0,99.0 +1989,6,27,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,8.3,69,101300,652,1322,350,219,3,218,24700,300,24600,8310,0,0.0,10,9,48.3,7620,9,999999999,150,0.0660,0,88,999.000,999.0,99.0 +1989,6,27,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,7.8,65,101200,849,1322,344,364,138,275,39900,14500,30500,7760,360,2.1,10,8,48.3,3660,9,999999999,150,0.0660,0,88,999.000,999.0,99.0 +1989,6,27,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,7.8,58,101200,1014,1322,353,494,161,371,54100,17100,41000,12490,20,3.1,10,8,48.3,3660,9,999999999,150,0.0660,0,88,999.000,999.0,99.0 +1989,6,27,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,7.2,56,101200,1136,1322,352,688,414,332,73400,43200,36200,14920,350,2.6,10,8,48.3,3660,9,999999999,139,0.0660,0,88,999.000,999.0,99.0 +1989,6,27,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,6.7,47,101100,1205,1322,362,760,370,421,83000,40200,46300,22230,340,3.6,10,8,64.4,3660,9,999999999,139,0.0660,0,88,999.000,999.0,99.0 +1989,6,27,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,6.7,48,101000,1218,1322,350,742,522,260,78600,53000,29700,15530,300,3.6,10,6,64.4,3660,9,999999999,139,0.0660,0,88,999.000,999.0,99.0 +1989,6,27,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,7.2,45,101000,1174,1322,358,708,326,418,77200,35400,45700,19860,290,2.6,8,6,64.4,3660,9,999999999,139,0.0660,0,88,999.000,999.0,99.0 +1989,6,27,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,6.7,45,100900,1075,1322,365,754,498,349,79400,51800,37200,13340,290,4.6,9,8,64.4,3660,9,999999999,139,0.0660,0,88,999.000,999.0,99.0 +1989,6,27,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,7.2,47,100900,928,1322,384,296,1,295,34200,100,34100,12660,230,3.1,10,10,48.3,7620,9,999999999,139,0.0660,0,88,999.000,999.0,99.0 +1989,6,27,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,7.2,49,100800,744,1322,381,204,6,201,23600,500,23300,8530,320,2.1,10,10,48.3,3050,9,999999999,139,0.0660,0,88,999.000,999.0,99.0 +1989,6,27,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,8.3,52,100900,534,1322,382,161,8,158,18200,600,17900,5970,280,3.6,10,10,40.2,3050,9,999999999,150,0.0660,0,88,999.000,999.0,99.0 +1989,6,27,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,8.3,54,100800,314,1322,380,97,8,95,10700,400,10600,3180,20,4.1,10,10,40.2,3050,9,999999999,150,0.0660,0,88,999.000,999.0,99.0 +1989,6,27,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,7.8,54,100800,101,1322,376,18,2,18,2100,0,2100,640,290,2.6,10,10,24.1,3660,9,999999999,150,0.0660,0,88,999.000,999.0,99.0 +1989,6,27,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,9.4,65,100900,0,33,372,0,0,0,0,0,0,0,340,3.1,10,10,24.1,3660,9,999999999,160,0.1440,0,88,999.000,999.0,99.0 +1989,6,27,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,9.4,67,100900,0,0,370,0,0,0,0,0,0,0,310,4.1,10,10,24.1,3660,9,999999999,160,0.1440,0,88,999.000,999.0,99.0 +1989,6,27,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,9.4,72,100900,0,0,364,0,0,0,0,0,0,0,350,4.1,10,10,24.1,3660,9,999999999,160,0.1440,0,88,999.000,999.0,99.0 +1989,6,27,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,10.0,78,100900,0,0,362,0,0,0,0,0,0,0,340,3.1,10,10,24.1,3050,9,999999999,170,0.1440,0,88,999.000,999.0,99.0 +1989,6,28,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,10.0,78,100900,0,0,362,0,0,0,0,0,0,0,360,4.1,10,10,24.1,3050,9,999999999,170,0.1440,0,88,999.000,999.0,99.0 +1989,6,28,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,8.9,75,100900,0,0,357,0,0,0,0,0,0,0,300,2.6,10,10,24.1,3050,9,999999999,160,0.1440,0,88,999.000,999.0,99.0 +1989,6,28,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,10.0,80,100900,0,0,336,0,0,0,0,0,0,0,300,3.6,10,7,24.1,2740,9,999999999,170,0.1440,0,88,999.000,999.0,99.0 +1989,6,28,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,9.4,78,100900,0,0,358,0,0,0,0,0,0,0,340,1.5,10,10,24.1,2440,9,999999999,160,0.1440,0,88,999.000,999.0,99.0 +1989,6,28,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,9.4,80,100900,30,760,356,8,0,8,900,0,900,300,0,0.0,10,10,32.2,2440,9,999999999,160,0.2270,0,88,999.000,999.0,99.0 +1989,6,28,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,9.4,78,100900,215,1322,358,57,0,57,6300,0,6300,1900,0,0.0,10,10,64.4,2440,9,999999999,160,0.2270,0,88,999.000,999.0,99.0 +1989,6,28,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,8.3,69,100900,434,1322,360,102,0,102,11600,0,11600,3940,0,0.0,10,10,64.4,2440,9,999999999,150,0.2270,0,88,999.000,999.0,99.0 +1989,6,28,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,9.4,72,101000,650,1322,364,203,0,203,23000,0,23000,7930,0,0.0,10,10,64.4,3050,9,999999999,160,0.2270,0,88,999.000,999.0,99.0 +1989,6,28,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,9.4,70,100900,848,1322,367,276,0,276,31600,0,31600,11470,360,1.5,10,10,64.4,3350,9,999999999,160,0.2270,0,88,999.000,999.0,99.0 +1989,6,28,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,9.4,65,101000,1013,1322,372,369,1,368,42400,100,42400,15360,0,0.0,10,10,64.4,3350,9,999999999,160,0.2270,0,88,999.000,999.0,99.0 +1989,6,28,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,9.4,61,101000,1135,1322,378,399,0,399,46500,0,46500,16980,280,3.1,10,10,48.3,3960,9,999999999,160,0.2270,0,88,999.000,999.0,99.0 +1989,6,28,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,9.4,56,101000,1205,1322,384,437,0,437,51000,0,51000,18380,310,2.6,10,10,56.3,3660,9,999999999,160,0.2270,0,88,999.000,999.0,99.0 +1989,6,28,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,9.4,53,101100,1218,1322,390,427,0,427,50000,0,50000,18190,320,3.6,10,10,64.4,3660,9,999999999,160,0.2270,0,88,999.000,999.0,99.0 +1989,6,28,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,8.3,47,101100,1174,1322,391,415,1,414,48400,100,48300,17600,300,2.1,10,10,64.4,3050,9,999999999,150,0.2270,0,88,999.000,999.0,99.0 +1989,6,28,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,7.8,45,101100,1075,1322,391,370,1,370,43000,100,43000,15860,290,2.6,10,10,64.4,3350,9,999999999,150,0.2270,0,88,999.000,999.0,99.0 +1989,6,28,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,10.0,57,101100,928,1322,388,314,1,313,36100,100,36000,13170,290,5.2,10,10,48.3,3350,9,999999999,170,0.2270,0,88,999.000,999.0,99.0 +1989,6,28,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,10.0,61,101100,744,1322,382,144,1,143,17000,100,17000,6560,330,4.1,10,10,40.2,2440,9,999999999,170,0.2270,0,88,999.000,999.0,99.0 +1989,6,28,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,8.9,54,101200,534,1322,383,99,0,99,11600,0,11600,4220,290,2.6,10,10,32.2,3350,9,999999999,160,0.2270,0,88,999.000,999.0,99.0 +1989,6,28,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,11.7,78,101200,314,1322,373,49,1,49,5800,0,5700,1950,290,4.6,10,10,32.2,3050,9,999999999,189,0.2270,0,88,999.000,999.0,99.0 +1989,6,28,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,11.7,81,101200,101,1322,369,17,0,17,2000,0,2000,610,350,2.1,10,10,24.1,3050,9,999999999,189,0.2270,0,88,999.000,999.0,99.0 +1989,6,28,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,10.6,72,101200,0,33,371,0,0,0,0,0,0,0,350,2.1,10,10,24.1,1520,9,999999999,170,0.1440,0,88,999.000,999.0,99.0 +1989,6,28,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,11.1,78,101300,0,0,369,0,0,0,0,0,0,0,330,3.1,10,10,24.1,1520,9,999999999,179,0.1440,0,88,999.000,999.0,99.0 +1989,6,28,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,11.7,84,101200,0,0,366,0,0,0,0,0,0,0,300,2.1,10,10,24.1,1980,9,999999999,189,0.1440,0,88,999.000,999.0,99.0 +1989,6,28,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,11.1,81,101200,0,0,366,0,0,0,0,0,0,0,310,2.6,10,10,24.1,2290,9,999999999,179,0.1440,0,88,999.000,999.0,99.0 +1989,6,29,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,11.1,81,101200,0,0,366,0,0,0,0,0,0,0,320,1.5,10,10,24.1,2290,9,999999999,179,0.1440,0,88,999.000,999.0,99.0 +1989,6,29,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,11.1,84,101200,0,0,363,0,0,0,0,0,0,0,310,1.5,10,10,24.1,2130,9,999999999,179,0.1440,0,88,999.000,999.0,99.0 +1989,6,29,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,11.7,87,101100,0,0,364,0,0,0,0,0,0,0,340,2.1,10,10,24.1,2130,9,999999999,189,0.1440,0,88,999.000,999.0,99.0 +1989,6,29,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,12.2,90,101100,0,0,364,0,0,0,0,0,0,0,10,1.5,10,10,24.1,1830,9,999999999,189,0.1440,0,88,999.000,999.0,99.0 +1989,6,29,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,12.2,90,101100,29,738,364,10,0,10,0,0,0,0,290,2.1,10,10,32.2,2130,9,999999999,189,0.1910,0,88,999.000,999.0,99.0 +1989,6,29,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,12.8,97,101200,213,1322,362,51,0,51,5700,0,5700,1760,260,2.1,10,10,32.2,1980,9,999999999,200,0.1910,0,88,999.000,999.0,99.0 +1989,6,29,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,13.3,97,101200,433,1322,366,70,0,70,8200,0,8200,2930,260,2.6,10,10,32.2,1830,9,999999999,200,0.1910,0,88,999.000,999.0,99.0 +1989,6,29,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,13.3,97,101300,649,1322,366,120,1,120,14200,100,14200,5360,130,3.6,10,10,16.1,1680,9,999999999,200,0.1910,0,88,999.000,999.0,99.0 +1989,6,29,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,13.3,93,101200,846,1322,368,168,1,168,20100,100,20000,7920,90,3.1,10,10,16.1,2740,9,999999999,200,0.1910,0,88,999.000,999.0,99.0 +1989,6,29,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,13.9,90,101200,1012,1322,375,202,1,201,24300,100,24300,9850,60,3.1,10,10,24.1,2130,9,999999999,209,0.1910,0,88,999.000,999.0,99.0 +1989,6,29,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,13.3,84,101300,1134,1322,377,251,0,250,30200,0,30200,12090,130,2.6,10,10,24.1,1520,9,999999999,200,0.1910,0,88,999.000,999.0,99.0 +1989,6,29,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,12.8,81,101300,1204,1322,376,252,1,251,30700,100,30600,12270,0,0.0,10,10,24.1,1520,9,999999999,200,0.1910,0,88,999.000,999.0,99.0 +1989,6,29,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,13.9,93,101300,1217,1322,372,262,1,261,31900,100,31800,12690,0,0.0,10,10,11.3,940,9,999999999,209,0.1910,0,88,999.000,999.0,99.0 +1989,6,29,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,14.4,93,101300,1173,1322,376,248,1,247,30100,100,30000,12050,60,1.5,10,10,11.3,1680,9,999999999,220,0.1910,0,88,999.000,999.0,99.0 +1989,6,29,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,15.0,97,101200,1075,1322,377,242,0,242,29000,0,29000,11650,110,5.2,10,10,24.1,1520,9,999999999,229,0.1910,0,88,999.000,999.0,99.0 +1989,6,29,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,13.9,87,101200,928,1322,378,186,1,185,22300,100,22200,8910,160,2.6,10,10,24.1,1220,9,999999999,209,0.1910,0,88,999.000,999.0,99.0 +1989,6,29,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,13.3,84,101200,744,1322,377,148,1,148,17600,100,17500,6750,40,2.6,10,10,32.2,1520,9,999999999,200,0.1910,0,88,999.000,999.0,99.0 +1989,6,29,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,14.4,87,101000,534,1322,382,156,0,156,17600,0,17600,5920,70,3.6,10,10,32.2,2740,9,999999999,220,0.1910,0,88,999.000,999.0,99.0 +1989,6,29,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,13.3,84,100900,314,1322,346,134,222,81,14200,18100,9900,1540,70,3.1,5,5,64.4,77777,9,999999999,200,0.1910,0,88,999.000,999.0,99.0 +1989,6,29,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,14.4,93,101000,101,1322,365,13,5,12,1400,300,1300,310,260,3.1,9,9,24.1,2440,9,999999999,220,0.1910,0,88,999.000,999.0,99.0 +1989,6,29,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,14.4,97,101100,0,33,373,0,0,0,0,0,0,0,180,2.1,10,10,24.1,1830,9,999999999,220,0.1440,0,88,999.000,999.0,99.0 +1989,6,29,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,13.3,90,101200,0,0,361,0,0,0,0,0,0,0,130,4.6,9,9,24.1,1430,9,999999999,200,0.1440,0,88,999.000,999.0,99.0 +1989,6,29,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,13.3,97,101200,0,0,327,0,0,0,0,0,0,0,130,3.6,2,2,24.1,77777,9,999999999,200,0.1440,0,88,999.000,999.0,99.0 +1989,6,29,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,13.3,100,101300,0,0,330,0,0,0,0,0,0,0,120,4.1,4,4,24.1,77777,9,999999999,200,0.1440,0,88,999.000,999.0,99.0 +1989,6,30,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,13.3,97,101300,0,0,348,0,0,0,0,0,0,0,100,4.6,8,8,24.1,1370,9,999999999,200,0.1440,0,88,999.000,999.0,99.0 +1989,6,30,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,11.7,84,101300,0,0,366,0,0,0,0,0,0,0,160,3.6,10,10,24.1,1340,9,999999999,189,0.1440,0,88,999.000,999.0,99.0 +1989,6,30,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,11.7,87,101300,0,0,346,0,0,0,0,0,0,0,180,3.1,8,8,24.1,1250,9,999999999,189,0.1440,0,88,999.000,999.0,99.0 +1989,6,30,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,11.7,90,101400,0,0,361,0,0,0,0,0,0,0,160,2.1,10,10,24.1,1430,9,999999999,189,0.1440,0,88,999.000,999.0,99.0 +1989,6,30,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,11.7,87,101400,28,738,354,6,1,6,0,0,0,0,150,3.6,9,9,32.2,1430,9,999999999,189,0.2430,0,88,999.000,999.0,99.0 +1989,6,30,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,11.7,90,101400,211,1321,351,32,20,28,3400,1500,3200,760,160,4.6,9,9,32.2,1520,9,999999999,189,0.2430,0,88,999.000,999.0,99.0 +1989,6,30,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,11.1,87,101400,431,1321,350,72,24,64,7900,2200,7200,1910,160,5.2,9,9,64.4,1980,9,999999999,179,0.2430,0,88,999.000,999.0,99.0 +1989,6,30,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,11.1,81,101400,647,1321,336,268,134,202,29200,13700,22500,4990,210,6.2,9,5,64.4,7620,9,999999999,179,0.2430,0,88,999.000,999.0,99.0 +1989,6,30,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,11.1,70,101400,845,1321,359,389,219,248,42200,23400,27100,6400,190,7.7,9,8,56.3,880,9,999999999,179,0.2430,0,88,999.000,999.0,99.0 +1989,6,30,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,10.0,65,101400,1011,1321,366,469,67,418,51600,6900,46300,15300,200,6.7,10,9,48.3,980,9,999999999,170,0.2430,0,88,999.000,999.0,99.0 +1989,6,30,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,9.4,61,101500,1133,1321,378,314,3,311,37200,300,37000,14300,210,8.8,10,10,48.3,1100,9,999999999,160,0.2430,0,88,999.000,999.0,99.0 +1989,6,30,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,10.6,72,101500,1203,1321,371,240,7,234,29400,600,28900,11580,250,6.2,10,10,48.3,2440,9,999999999,170,0.2430,0,88,999.000,999.0,99.0 +1989,6,30,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,11.7,81,101600,1217,1321,369,255,8,248,31200,600,30600,12170,240,4.6,10,10,48.3,2130,9,999999999,189,0.2430,0,88,999.000,999.0,99.0 +1989,6,30,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,10.0,65,101600,1173,1321,376,212,8,205,26100,600,25600,10320,200,9.3,10,10,48.3,1830,9,999999999,170,0.2430,0,88,999.000,999.0,99.0 +1989,6,30,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,11.7,75,101600,1074,1321,375,356,1,355,41400,100,41400,15440,250,5.2,10,10,48.3,1980,9,999999999,189,0.2430,0,88,999.000,999.0,99.0 +1989,6,30,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,8.9,63,101600,928,1321,372,297,6,292,34300,500,33900,12580,220,4.6,10,10,48.3,1980,9,999999999,160,0.2430,0,88,999.000,999.0,99.0 +1989,6,30,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,8.3,60,101600,744,1321,371,129,4,127,15500,300,15300,5950,220,7.2,10,10,32.2,1520,9,999999999,150,0.2430,0,88,999.000,999.0,99.0 +1989,6,30,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,8.3,60,101600,534,1321,371,131,0,131,15000,0,15000,5240,240,5.2,10,10,48.3,1520,9,999999999,150,0.2430,0,88,999.000,999.0,99.0 +1989,6,30,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,8.3,62,101600,314,1321,368,76,1,76,8600,0,8600,2750,220,5.2,10,10,48.3,1520,9,999999999,150,0.2430,0,88,999.000,999.0,99.0 +1989,6,30,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,7.8,60,101600,100,1321,368,28,0,28,3100,0,3100,880,230,6.2,10,10,24.1,1430,9,999999999,150,0.2430,0,88,999.000,999.0,99.0 +1989,6,30,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,7.8,62,101600,0,33,365,0,0,0,0,0,0,0,200,4.1,10,10,24.1,1430,9,999999999,150,0.1440,0,88,999.000,999.0,99.0 +1989,6,30,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.8,8.3,67,101700,0,0,347,0,0,0,0,0,0,0,140,3.8,10,8,24.1,1680,9,999999999,150,0.1440,0,88,999.000,999.0,99.0 +1989,6,30,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.5,8.7,65,101700,0,0,363,0,0,0,0,0,0,0,160,3.5,10,10,24.1,1980,9,999999999,150,0.1440,0,88,999.000,999.0,99.0 +1989,6,30,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.3,9.2,69,101600,0,0,363,0,0,0,0,0,0,0,150,3.2,10,10,24.1,1490,9,999999999,150,0.1440,0,88,999.000,999.0,99.0 +1980,7,1,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.0,9.7,81,101400,0,0,314,0,0,0,0,0,0,0,320,3.0,0,0,24.1,77777,9,999999999,150,0.1440,0,88,999.000,999.0,99.0 +1980,7,1,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.8,10.2,84,101400,0,0,313,0,0,0,0,0,0,0,350,2.7,0,0,24.1,77777,9,999999999,160,0.1440,0,88,999.000,999.0,99.0 +1980,7,1,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.5,10.6,83,101400,0,0,312,0,0,0,0,0,0,0,330,2.4,0,0,24.1,77777,9,999999999,160,0.1440,0,88,999.000,999.0,99.0 +1980,7,1,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,11.1,87,101500,0,0,312,0,0,0,0,0,0,0,340,2.1,0,0,24.1,77777,9,999999999,170,0.1440,0,88,999.000,999.0,99.0 +1980,7,1,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,11.1,87,101500,27,716,312,10,1,10,0,0,0,0,340,2.6,0,0,24.1,77777,9,999999999,170,0.2910,0,88,999.000,999.0,99.0 +1980,7,1,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,11.1,87,101500,209,1321,334,52,54,44,5800,3800,5200,930,350,1.5,6,6,24.1,240,9,999999999,170,0.2910,0,88,999.000,999.0,99.0 +1980,7,1,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,11.7,90,101600,429,1321,334,171,137,126,18600,12800,14400,2850,50,2.1,7,6,16.1,240,9,999999999,170,0.2910,0,88,999.000,999.0,99.0 +1980,7,1,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,12.2,81,101600,646,1321,330,376,471,145,40200,47100,17100,2990,110,2.6,1,1,19.3,77777,9,999999999,170,0.2910,0,88,999.000,999.0,99.0 +1980,7,1,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,12.8,70,101500,844,1321,336,576,602,190,59700,60100,21300,4610,310,2.6,0,0,24.1,77777,9,999999999,170,0.2910,0,88,999.000,999.0,99.0 +1980,7,1,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,13.3,63,101500,1009,1321,348,727,663,219,76200,67000,24900,6950,180,2.1,0,0,24.1,77777,9,999999999,179,0.2910,0,88,999.000,999.0,99.0 +1980,7,1,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,13.9,61,101500,1132,1321,353,838,691,244,88300,70100,28200,10520,250,3.1,1,0,24.1,77777,9,999999999,179,0.2910,0,88,999.000,999.0,99.0 +1980,7,1,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,13.3,54,101400,1202,1321,361,914,700,275,96200,70800,31700,15230,310,3.1,3,0,24.1,77777,9,999999999,179,0.2910,0,88,999.000,999.0,99.0 +1980,7,1,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,13.9,50,101500,1216,1321,370,927,704,277,97700,71300,32000,16330,330,3.6,3,0,24.1,77777,9,999999999,179,0.2910,0,88,999.000,999.0,99.0 +1980,7,1,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,13.9,47,101400,1172,1321,375,920,666,328,95400,66500,36300,15820,320,1.5,7,0,24.1,77777,9,999999999,179,0.2910,0,88,999.000,999.0,99.0 +1980,7,1,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,13.9,45,101300,1074,1321,378,814,635,297,87100,66200,33100,11200,340,3.6,7,0,24.1,77777,9,999999999,179,0.2910,0,88,999.000,999.0,99.0 +1980,7,1,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,13.3,40,101300,927,1321,385,668,600,247,71300,62200,27600,6950,330,2.6,5,0,24.1,77777,9,999999999,179,0.2910,0,88,999.000,999.0,99.0 +1980,7,1,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,12.2,38,101300,743,1321,382,490,533,190,52000,54200,21400,4280,310,3.6,3,0,24.1,77777,9,999999999,179,0.2910,0,88,999.000,999.0,99.0 +1980,7,1,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,15.0,50,101300,534,1321,376,300,416,132,31600,40000,15400,2590,360,5.2,1,0,24.1,77777,9,999999999,179,0.2910,0,88,999.000,999.0,99.0 +1980,7,1,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,14.4,58,101300,313,1321,362,134,221,82,14300,18000,10000,1570,350,5.7,1,0,24.1,77777,9,999999999,170,0.2910,0,88,999.000,999.0,99.0 +1980,7,1,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,13.3,63,101400,100,1321,348,28,19,27,3100,1100,3000,630,340,5.2,0,0,24.1,77777,9,999999999,170,0.2910,0,88,999.000,999.0,99.0 +1980,7,1,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,12.2,68,101500,0,33,336,0,0,0,0,0,0,0,340,5.2,0,0,24.1,77777,9,999999999,170,0.1440,0,88,999.000,999.0,99.0 +1980,7,1,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,11.7,73,101600,0,0,328,0,0,0,0,0,0,0,330,5.2,0,0,24.1,77777,9,999999999,160,0.1440,0,88,999.000,999.0,99.0 +1980,7,1,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,11.1,78,101700,0,0,330,0,0,0,0,0,0,0,350,5.7,2,2,24.1,77777,9,999999999,160,0.1440,0,88,999.000,999.0,99.0 +1980,7,1,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,10.6,78,101700,0,0,327,0,0,0,0,0,0,0,330,3.1,2,2,24.1,77777,9,999999999,160,0.1440,0,88,999.000,999.0,99.0 +1980,7,2,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,10.6,80,101800,0,0,320,0,0,0,0,0,0,0,310,1.5,1,1,24.1,77777,9,999999999,160,0.1440,0,88,999.000,999.0,99.0 +1980,7,2,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,10.6,80,101800,0,0,325,0,0,0,0,0,0,0,360,1.5,2,2,24.1,77777,9,999999999,150,0.1440,0,88,999.000,999.0,99.0 +1980,7,2,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,10.0,78,101800,0,0,362,0,0,0,0,0,0,0,330,2.6,10,10,24.1,940,9,999999999,150,0.1440,0,88,999.000,999.0,99.0 +1980,7,2,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,10.0,78,101900,0,0,362,0,0,0,0,0,0,0,340,2.1,10,10,24.1,850,9,999999999,150,0.1440,0,88,999.000,999.0,99.0 +1980,7,2,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,10.0,75,101900,26,716,364,7,0,7,0,0,0,0,350,4.1,10,10,24.1,640,9,999999999,150,0.2180,0,88,999.000,999.0,99.0 +1980,7,2,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,10.0,75,101900,208,1321,364,46,1,45,5100,0,5100,1590,360,2.6,10,10,24.1,610,9,999999999,150,0.2180,0,88,999.000,999.0,99.0 +1980,7,2,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,10.0,75,102000,427,1321,364,96,4,95,11000,200,11000,3710,350,3.6,10,10,16.1,520,9,999999999,150,0.2180,0,88,999.000,999.0,99.0 +1980,7,2,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,10.0,72,102000,644,1321,367,155,2,154,17900,200,17900,6500,320,2.6,10,10,16.1,640,9,999999999,150,0.2180,0,88,999.000,999.0,99.0 +1980,7,2,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,10.0,70,102000,842,1321,370,220,3,218,25700,300,25500,9690,340,2.1,10,10,24.1,700,9,999999999,150,0.2180,0,88,999.000,999.0,99.0 +1980,7,2,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,10.6,72,102000,1008,1321,371,345,2,344,39900,200,39800,14680,250,2.6,10,10,16.1,700,9,999999999,150,0.2180,0,88,999.000,999.0,99.0 +1980,7,2,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,11.1,70,102000,1131,1321,377,345,2,343,40600,200,40400,15330,220,2.6,10,10,16.1,850,9,999999999,139,0.2180,0,88,999.000,999.0,99.0 +1980,7,2,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,11.7,68,102000,1201,1321,384,378,1,377,44600,100,44500,16680,320,2.6,10,10,11.3,1010,9,999999999,139,0.2180,0,88,999.000,999.0,99.0 +1980,7,2,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,11.7,65,101900,1215,1321,387,418,2,416,49000,200,48900,17880,0,0.0,10,10,16.1,1100,9,999999999,139,0.2180,0,88,999.000,999.0,99.0 +1980,7,2,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,11.7,61,101900,1172,1321,382,449,116,346,50000,12400,39000,15710,350,3.6,9,9,24.1,1040,9,999999999,139,0.2180,0,88,999.000,999.0,99.0 +1980,7,2,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,11.1,57,101900,1073,1321,384,546,106,460,60100,11000,51200,17890,350,3.1,9,9,24.1,1100,9,999999999,139,0.2180,0,88,999.000,999.0,99.0 +1980,7,2,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,11.7,57,101800,927,1321,374,512,229,350,55600,24200,38600,10630,300,2.6,7,7,24.1,1100,9,999999999,139,0.2180,0,88,999.000,999.0,99.0 +1980,7,2,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,11.1,53,101800,743,1321,362,452,437,206,47500,44400,22500,4670,10,2.6,3,3,24.1,77777,9,999999999,139,0.2180,0,88,999.000,999.0,99.0 +1980,7,2,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,11.1,53,101700,533,1321,354,304,469,115,32500,45200,14300,2220,60,3.1,1,1,24.1,77777,9,999999999,139,0.2180,0,88,999.000,999.0,99.0 +1980,7,2,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,11.7,59,101700,313,1321,358,141,245,83,15000,20000,10200,1590,50,3.1,3,3,32.2,77777,9,999999999,150,0.2180,0,88,999.000,999.0,99.0 +1980,7,2,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,11.7,63,101700,99,1321,361,22,8,21,2400,500,2300,510,130,3.1,6,6,32.2,1220,9,999999999,150,0.2180,0,88,999.000,999.0,99.0 +1980,7,2,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,11.7,63,101800,0,11,379,0,0,0,0,0,0,0,180,2.1,9,9,24.1,1220,9,999999999,150,0.1440,0,88,999.000,999.0,99.0 +1980,7,2,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,11.1,70,101800,0,0,354,0,0,0,0,0,0,0,310,4.6,7,7,24.1,1160,9,999999999,150,0.1440,0,88,999.000,999.0,99.0 +1980,7,2,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,10.0,70,101800,0,0,353,0,0,0,0,0,0,0,330,1.5,8,8,24.1,1340,9,999999999,150,0.1440,0,88,999.000,999.0,99.0 +1980,7,2,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,10.0,72,101900,0,0,367,0,0,0,0,0,0,0,290,2.6,10,10,24.1,850,9,999999999,150,0.1440,0,88,999.000,999.0,99.0 +1980,7,3,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,10.6,78,101900,0,0,365,0,0,0,0,0,0,0,180,4.6,10,10,19.3,1040,9,999999999,150,0.1440,0,88,999.000,999.0,99.0 +1980,7,3,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,8.9,72,101900,0,0,360,0,0,0,0,0,0,0,180,3.6,10,10,16.1,940,9,999999999,160,0.1440,0,88,999.000,999.0,99.0 +1980,7,3,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,8.9,72,101900,0,0,360,0,0,0,0,0,0,0,190,4.6,10,10,16.1,850,9,999999999,160,0.1440,0,88,999.000,999.0,99.0 +1980,7,3,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,8.9,72,101900,0,0,360,0,0,0,0,0,0,0,170,4.6,10,10,24.1,1010,9,999999999,160,0.1440,0,88,999.000,999.0,99.0 +1980,7,3,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,8.9,72,101900,25,694,360,5,0,5,0,0,0,0,170,4.1,10,10,24.1,910,9,999999999,170,0.0710,0,88,999.000,999.0,99.0 +1980,7,3,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,8.9,72,101900,206,1321,360,42,1,41,4700,0,4700,1480,180,4.1,10,10,24.1,4270,9,999999999,170,0.0710,0,88,999.000,999.0,99.0 +1980,7,3,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,8.9,72,101900,425,1321,360,105,0,105,11900,0,11900,3990,190,5.2,10,10,24.1,1100,9,999999999,179,0.0710,0,88,999.000,999.0,99.0 +1980,7,3,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,8.9,72,101900,642,1321,360,176,9,171,20100,700,19800,7000,190,4.6,10,10,24.1,1160,9,999999999,189,0.0710,0,88,999.000,999.0,99.0 +1980,7,3,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,8.9,67,101900,841,1321,366,284,6,280,32500,600,32100,11520,190,5.7,10,10,24.1,1340,9,999999999,189,0.0710,0,88,999.000,999.0,99.0 +1980,7,3,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,8.9,65,101900,1007,1321,369,367,2,366,42300,200,42100,15260,190,5.7,10,10,24.1,910,9,999999999,200,0.0710,0,88,999.000,999.0,99.0 +1980,7,3,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,9.4,67,101900,1130,1321,370,257,5,252,30900,400,30500,12160,190,5.7,10,10,24.1,910,9,999999999,209,0.0710,0,88,999.000,999.0,99.0 +1980,7,3,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,10.6,78,101900,1201,1321,365,239,3,236,29200,200,29000,11660,200,4.1,10,10,16.1,2130,9,999999999,209,0.0710,0,88,999.000,999.0,99.0 +1980,7,3,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,11.7,87,101900,1215,1321,364,283,1,282,34200,100,34100,13490,190,4.6,10,10,12.9,1830,9,999999999,220,0.0710,0,88,999.000,999.0,99.0 +1980,7,3,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,11.7,87,101900,1171,1321,364,253,1,252,30700,100,30600,12240,190,3.6,10,10,12.9,1070,9,999999999,229,0.0710,0,88,999.000,999.0,99.0 +1980,7,3,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,11.7,87,101900,1073,1321,364,254,1,253,30300,100,30300,12060,190,4.6,10,10,19.3,760,9,999999999,229,0.0710,0,88,999.000,999.0,99.0 +1980,7,3,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,11.7,87,101800,927,1321,364,199,0,198,23600,0,23600,9410,170,6.2,10,10,19.3,760,9,999999999,240,0.0710,0,88,999.000,999.0,99.0 +1980,7,3,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,11.7,87,101800,742,1321,364,245,1,244,27800,100,27700,9730,170,3.6,10,10,19.3,760,9,999999999,229,0.0710,0,88,999.000,999.0,99.0 +1980,7,3,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,10.6,80,101700,533,1321,363,169,1,168,18900,100,18900,6200,180,5.7,10,10,24.1,1680,9,999999999,229,0.0710,0,88,999.000,999.0,99.0 +1980,7,3,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,10.6,80,101700,312,1321,363,60,0,60,6900,0,6900,2300,180,5.7,10,10,24.1,1680,9,999999999,229,0.0710,0,88,999.000,999.0,99.0 +1980,7,3,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,10.6,80,101700,98,1321,363,25,0,25,2800,0,2800,810,160,4.1,10,10,24.1,1830,9,999999999,220,0.0710,0,88,999.000,999.0,99.0 +1980,7,3,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,10.6,80,101700,0,11,363,0,0,0,0,0,0,0,170,4.6,10,10,19.3,1830,9,999999999,220,0.1440,0,88,999.000,999.0,99.0 +1980,7,3,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,10.6,80,101700,0,0,363,0,0,0,0,0,0,0,160,5.2,10,10,19.3,1830,9,999999999,209,0.1440,0,88,999.000,999.0,99.0 +1980,7,3,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,11.7,87,101700,0,0,364,0,0,0,0,0,0,0,150,4.1,10,10,16.1,490,9,999999999,200,0.1440,0,88,999.000,999.0,99.0 +1980,7,3,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,12.2,90,101700,0,0,364,0,0,0,0,0,0,0,170,2.6,10,10,16.1,400,9,999999999,200,0.1440,0,88,999.000,999.0,99.0 +1980,7,4,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,12.2,90,101700,0,0,364,0,0,0,0,0,0,0,160,3.6,10,10,16.1,460,9,999999999,200,0.1440,0,88,999.000,999.0,99.0 +1980,7,4,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,12.2,90,101700,0,0,364,0,0,0,0,0,0,0,190,4.1,10,10,16.1,520,9,999999999,189,0.1440,0,88,999.000,999.0,99.0 +1980,7,4,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,12.2,90,101600,0,0,364,0,0,0,0,0,0,0,190,5.7,10,10,19.3,400,9,999999999,189,0.1440,0,88,999.000,999.0,99.0 +1980,7,4,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,12.2,90,101600,0,0,364,0,0,0,0,0,0,0,190,3.6,10,10,16.1,340,9,999999999,179,0.1440,0,88,999.000,999.0,99.0 +1980,7,4,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,12.2,90,101600,24,672,364,6,0,6,0,0,0,0,190,3.1,10,10,12.9,340,9,999999999,179,0.2100,0,88,999.000,999.0,99.0 +1980,7,4,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,12.8,96,101700,204,1321,362,30,0,30,3500,0,3500,1150,220,1.5,10,10,11.3,610,9,999999999,179,0.2100,0,88,999.000,999.0,99.0 +1980,7,4,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,12.8,93,101700,423,1321,365,117,0,116,13100,0,13100,4260,240,3.6,10,10,16.1,370,9,999999999,179,0.2100,0,88,999.000,999.0,99.0 +1980,7,4,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,12.8,87,101700,640,1321,371,191,1,191,21800,100,21700,7550,240,3.6,10,10,16.1,370,9,999999999,179,0.2100,0,88,999.000,999.0,99.0 +1980,7,4,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,12.8,84,101700,839,1321,374,294,1,294,33600,100,33500,11860,190,2.1,10,10,24.1,460,9,999999999,179,0.2100,0,88,999.000,999.0,99.0 +1980,7,4,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,12.2,81,101700,1005,1321,373,338,1,337,39100,100,39000,14460,330,3.1,10,10,24.1,640,9,999999999,189,0.2100,0,88,999.000,999.0,99.0 +1980,7,4,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,11.7,75,101800,1128,1321,375,384,1,383,44800,100,44700,16510,250,2.6,10,10,32.2,850,9,999999999,189,0.2100,0,88,999.000,999.0,99.0 +1980,7,4,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,10.0,65,101800,1200,1321,376,465,0,465,54000,0,54000,19050,240,3.1,10,10,32.2,1490,9,999999999,189,0.2100,0,88,999.000,999.0,99.0 +1980,7,4,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,9.4,58,101800,1214,1321,381,447,1,446,52200,100,52100,18670,290,1.5,10,10,48.3,1340,9,999999999,189,0.2100,0,88,999.000,999.0,99.0 +1980,7,4,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,10.0,61,101800,1171,1321,382,414,1,413,48300,100,48200,17560,260,2.6,10,10,48.3,1070,9,999999999,189,0.2100,0,88,999.000,999.0,99.0 +1980,7,4,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,10.0,61,101800,1072,1321,371,393,104,309,43800,11100,34700,11370,190,4.6,9,9,32.2,1830,9,999999999,189,0.2100,0,88,999.000,999.0,99.0 +1980,7,4,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,11.1,61,101800,926,1321,370,530,350,285,57700,37700,31200,8120,170,4.6,9,8,32.2,1830,9,999999999,189,0.2100,0,88,999.000,999.0,99.0 +1980,7,4,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,11.1,61,101800,742,1321,378,267,136,191,29700,14200,21700,4980,200,4.1,9,9,32.2,1070,9,999999999,189,0.2100,0,88,999.000,999.0,99.0 +1980,7,4,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,10.0,57,101700,532,1321,356,220,126,169,23900,12400,18900,3970,180,2.6,6,5,32.2,7620,9,999999999,189,0.2100,0,88,999.000,999.0,99.0 +1980,7,4,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,11.1,63,101700,311,1321,354,120,150,85,12700,12200,9900,1640,120,3.6,5,5,32.2,77777,9,999999999,189,0.2100,0,88,999.000,999.0,99.0 +1980,7,4,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,11.1,72,101700,97,1321,374,27,0,27,3000,0,3000,850,120,2.6,10,10,32.2,1280,9,999999999,179,0.2100,0,88,999.000,999.0,99.0 +1980,7,4,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,10.6,72,101800,0,11,371,0,0,0,0,0,0,0,340,5.2,10,10,24.1,1680,9,999999999,179,0.1440,0,88,999.000,999.0,99.0 +1980,7,4,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,10.0,70,101800,0,0,360,0,0,0,0,0,0,0,300,4.1,10,9,24.1,1830,9,999999999,179,0.1440,0,88,999.000,999.0,99.0 +1980,7,4,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,10.0,75,101800,0,0,347,0,0,0,0,0,0,0,330,3.6,8,8,24.1,1830,9,999999999,179,0.1440,0,88,999.000,999.0,99.0 +1980,7,4,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,10.6,80,101800,0,0,363,0,0,0,0,0,0,0,290,3.1,10,10,24.1,1680,9,999999999,179,0.1440,0,88,999.000,999.0,99.0 +1980,7,5,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,10.0,80,101800,0,0,349,0,0,0,0,0,0,0,330,2.6,9,9,24.1,1680,9,999999999,179,0.1440,0,88,999.000,999.0,99.0 +1980,7,5,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,10.0,80,101800,0,0,359,0,0,0,0,0,0,0,330,2.6,10,10,24.1,1830,9,999999999,170,0.1440,0,88,999.000,999.0,99.0 +1980,7,5,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,10.0,80,101800,0,0,359,0,0,0,0,0,0,0,320,2.6,10,10,24.1,1520,9,999999999,170,0.1440,0,88,999.000,999.0,99.0 +1980,7,5,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,10.0,80,101800,0,0,359,0,0,0,0,0,0,0,360,4.1,10,10,24.1,1830,9,999999999,170,0.1440,0,88,999.000,999.0,99.0 +1980,7,5,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,10.0,80,101800,23,672,359,6,0,6,0,0,0,0,330,2.6,10,10,48.3,1830,9,999999999,170,0.0670,0,88,999.000,999.0,99.0 +1980,7,5,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,10.0,78,101800,201,1321,362,51,6,50,5700,100,5700,1700,340,2.6,10,10,48.3,1830,9,999999999,179,0.0670,0,88,999.000,999.0,99.0 +1980,7,5,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,10.6,80,101800,421,1321,363,114,1,113,12800,100,12800,4180,360,2.1,10,10,48.3,1830,9,999999999,179,0.0670,0,88,999.000,999.0,99.0 +1980,7,5,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,10.6,72,101900,639,1321,348,322,233,209,35000,23700,23500,5150,0,0.0,7,7,48.3,1830,9,999999999,179,0.0670,0,88,999.000,999.0,99.0 +1980,7,5,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,11.1,68,101800,837,1321,356,409,213,274,44800,22400,30600,7660,340,3.1,7,7,48.3,1830,9,999999999,189,0.0670,0,88,999.000,999.0,99.0 +1980,7,5,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,12.2,65,101800,1004,1321,359,685,513,294,72500,53300,31900,9540,210,2.1,5,5,48.3,77777,9,999999999,189,0.0670,0,88,999.000,999.0,99.0 +1980,7,5,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,12.2,59,101800,1127,1321,374,568,285,325,62800,31000,36300,13220,20,2.1,7,7,48.3,2440,9,999999999,189,0.0670,0,88,999.000,999.0,99.0 +1980,7,5,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,9.4,47,101800,1199,1321,388,556,113,453,61000,12000,50100,22220,320,3.1,9,9,64.4,1830,9,999999999,200,0.0670,0,88,999.000,999.0,99.0 +1980,7,5,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,9.4,47,101700,1213,1321,388,567,240,346,63000,26200,38900,18520,290,2.6,9,9,48.3,1830,9,999999999,200,0.0670,0,88,999.000,999.0,99.0 +1980,7,5,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,10.0,48,101700,1170,1321,392,588,280,339,65000,30500,38000,15590,300,4.6,9,9,48.3,1830,9,999999999,200,0.0670,0,88,999.000,999.0,99.0 +1980,7,5,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,8.9,44,101700,1072,1321,390,469,81,403,51700,8400,44900,16080,290,4.1,9,9,48.3,1830,9,999999999,209,0.0670,0,88,999.000,999.0,99.0 +1980,7,5,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,8.9,44,101700,926,1321,390,354,75,302,39100,7700,33700,10770,280,3.6,9,9,48.3,1830,9,999999999,209,0.0670,0,88,999.000,999.0,99.0 +1980,7,5,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,8.9,44,101700,741,1321,390,323,100,267,35500,10100,29800,8180,280,3.6,9,9,48.3,1830,9,999999999,209,0.0670,0,88,999.000,999.0,99.0 +1980,7,5,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,9.4,46,101700,531,1321,391,160,48,140,17500,4600,15700,4050,320,4.6,9,9,48.3,1980,9,999999999,209,0.0670,0,88,999.000,999.0,99.0 +1980,7,5,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,9.4,47,101700,310,1321,388,92,36,84,10100,3100,9400,2150,330,3.6,9,9,48.3,1980,9,999999999,200,0.0670,0,88,999.000,999.0,99.0 +1980,7,5,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,10.6,59,101700,96,1321,378,26,36,23,2800,1700,2700,480,340,4.1,9,9,32.2,1830,9,999999999,200,0.0670,0,88,999.000,999.0,99.0 +1980,7,5,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,10.0,59,101700,0,11,385,0,0,0,0,0,0,0,340,4.6,10,10,32.2,1830,9,999999999,200,0.1440,0,88,999.000,999.0,99.0 +1980,7,5,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,10.0,61,101700,0,0,382,0,0,0,0,0,0,0,340,5.2,10,10,24.1,1830,9,999999999,200,0.1440,0,88,999.000,999.0,99.0 +1980,7,5,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,10.0,65,101700,0,0,376,0,0,0,0,0,0,0,320,4.1,10,10,24.1,1980,9,999999999,200,0.1440,0,88,999.000,999.0,99.0 +1980,7,5,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,9.4,65,101700,0,0,372,0,0,0,0,0,0,0,300,5.7,10,10,24.1,1980,9,999999999,200,0.1440,0,88,999.000,999.0,99.0 +1980,7,6,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,10.0,70,101700,0,0,360,0,0,0,0,0,0,0,320,3.6,9,9,24.1,1980,9,999999999,200,0.1430,0,88,999.000,999.0,99.0 +1980,7,6,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,9.4,70,101700,0,0,367,0,0,0,0,0,0,0,320,4.6,10,10,24.1,2130,9,999999999,189,0.1430,0,88,999.000,999.0,99.0 +1980,7,6,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,9.4,75,101700,0,0,361,0,0,0,0,0,0,0,320,3.1,10,10,24.1,2130,9,999999999,189,0.1430,0,88,999.000,999.0,99.0 +1980,7,6,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,9.4,78,101700,0,0,332,0,0,0,0,0,0,0,330,1.5,6,6,32.2,2130,9,999999999,189,0.1430,0,88,999.000,999.0,99.0 +1980,7,6,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,9.4,78,101800,22,650,321,9,22,7,0,0,0,0,350,2.1,2,2,32.2,77777,9,999999999,189,0.0870,0,88,999.000,999.0,99.0 +1980,7,6,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,9.4,78,101800,199,1321,316,85,303,39,8600,20500,5600,700,330,1.5,1,1,64.4,77777,9,999999999,189,0.0870,0,88,999.000,999.0,99.0 +1980,7,6,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,10.0,75,101800,419,1321,316,255,625,56,26400,56600,8400,1120,350,2.1,0,0,64.4,77777,9,999999999,179,0.0870,0,88,999.000,999.0,99.0 +1980,7,6,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,10.0,67,101800,637,1321,323,426,727,75,45000,71300,10700,1650,300,2.6,0,0,48.3,77777,9,999999999,179,0.0870,0,88,999.000,999.0,99.0 +1980,7,6,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,10.6,63,101800,836,1321,332,610,817,91,63200,81000,11900,2050,70,1.5,0,0,48.3,77777,9,999999999,179,0.0870,0,88,999.000,999.0,99.0 +1980,7,6,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,10.6,57,101700,1003,1321,339,763,866,104,78900,86500,13100,2840,200,2.6,0,0,48.3,77777,9,999999999,179,0.0870,0,88,999.000,999.0,99.0 +1980,7,6,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,11.7,55,101700,1126,1321,355,827,842,108,85500,84400,13400,3920,250,2.1,1,1,48.3,77777,9,999999999,170,0.0870,0,88,999.000,999.0,99.0 +1980,7,6,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,11.7,51,101700,1198,1321,353,915,878,116,94100,88100,14100,5290,330,3.1,0,0,64.4,77777,9,999999999,170,0.0870,0,88,999.000,999.0,99.0 +1980,7,6,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,11.7,46,101600,1212,1321,368,873,808,129,89500,81000,15100,6050,360,5.7,1,1,64.4,77777,9,999999999,170,0.0870,0,88,999.000,999.0,99.0 +1980,7,6,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,10.6,40,101500,1169,1321,366,908,894,115,93600,89600,14100,4700,330,5.7,0,0,64.4,77777,9,999999999,160,0.0870,0,88,999.000,999.0,99.0 +1980,7,6,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,10.6,40,101500,1071,1321,366,826,884,108,85400,88500,13500,3370,320,4.6,0,0,64.4,77777,9,999999999,160,0.0870,0,88,999.000,999.0,99.0 +1980,7,6,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,10.6,40,101400,925,1321,366,694,849,98,71900,84600,12600,2400,340,4.6,0,0,64.4,77777,9,999999999,160,0.0870,0,88,999.000,999.0,99.0 +1980,7,6,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,10.6,42,101400,740,1321,363,527,790,84,56200,78800,12000,1980,340,6.2,0,0,64.4,77777,9,999999999,160,0.0870,0,88,999.000,999.0,99.0 +1980,7,6,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,11.1,45,101300,530,1321,361,345,695,65,36100,66200,9500,1370,330,6.7,0,0,64.4,77777,9,999999999,170,0.0870,0,88,999.000,999.0,99.0 +1980,7,6,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,11.1,45,101300,309,1321,361,168,522,46,17600,42900,7600,870,320,6.2,0,0,64.4,77777,9,999999999,170,0.0870,0,88,999.000,999.0,99.0 +1980,7,6,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,9.4,46,101300,95,1310,355,34,165,20,3300,8200,2700,360,330,6.2,1,1,64.4,77777,9,999999999,170,0.0870,0,88,999.000,999.0,99.0 +1980,7,6,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,10.0,57,101400,0,0,342,0,0,0,0,0,0,0,270,2.6,1,1,24.1,77777,9,999999999,179,0.1430,0,88,999.000,999.0,99.0 +1980,7,6,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,10.0,57,101400,0,0,336,0,0,0,0,0,0,0,300,4.6,0,0,24.1,77777,9,999999999,179,0.1430,0,88,999.000,999.0,99.0 +1980,7,6,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,10.6,61,101300,0,0,334,0,0,0,0,0,0,0,320,4.1,0,0,24.1,77777,9,999999999,179,0.1430,0,88,999.000,999.0,99.0 +1980,7,6,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,9.4,58,101300,0,0,330,0,0,0,0,0,0,0,340,4.1,0,0,24.1,77777,9,999999999,189,0.1430,0,88,999.000,999.0,99.0 +1980,7,7,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,8.9,63,101300,0,0,339,0,0,0,0,0,0,0,310,2.6,4,4,24.1,77777,9,999999999,189,0.1430,0,88,999.000,999.0,99.0 +1980,7,7,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,8.9,65,101300,0,0,336,0,0,0,0,0,0,0,330,2.1,4,4,24.1,77777,9,999999999,189,0.1430,0,88,999.000,999.0,99.0 +1980,7,7,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,8.9,67,101300,0,0,331,0,0,0,0,0,0,0,330,3.1,3,3,24.1,77777,9,999999999,200,0.1430,0,88,999.000,999.0,99.0 +1980,7,7,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,8.9,67,101300,0,0,323,0,0,0,0,0,0,0,320,2.6,1,1,24.1,77777,9,999999999,200,0.1430,0,88,999.000,999.0,99.0 +1980,7,7,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,9.4,72,101300,21,628,321,8,24,6,0,0,0,0,350,1.5,1,1,64.4,77777,9,999999999,200,0.1020,0,88,999.000,999.0,99.0 +1980,7,7,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,10.0,70,101300,197,1321,327,66,183,39,7000,11800,5300,690,360,2.6,1,1,64.4,77777,9,999999999,189,0.1020,0,88,999.000,999.0,99.0 +1980,7,7,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,10.6,67,101300,417,1321,327,223,515,60,23400,46600,8700,1170,360,2.1,0,0,64.4,77777,9,999999999,189,0.1020,0,88,999.000,999.0,99.0 +1980,7,7,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,11.1,63,101300,635,1321,345,372,526,118,38700,51400,14000,2450,350,2.1,2,2,64.4,77777,9,999999999,189,0.1020,0,88,999.000,999.0,99.0 +1980,7,7,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,11.7,57,101300,834,1321,352,577,692,139,61100,70100,16900,3480,360,1.5,3,1,64.4,77777,9,999999999,179,0.1020,0,88,999.000,999.0,99.0 +1980,7,7,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,12.8,55,101200,1001,1321,361,726,806,113,74800,80500,13700,2910,330,3.1,3,1,64.4,77777,9,999999999,179,0.1020,0,88,999.000,999.0,99.0 +1980,7,7,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,13.3,54,101200,1125,1321,367,857,854,127,88000,85500,15000,4250,360,3.1,2,1,64.4,77777,9,999999999,179,0.1020,0,88,999.000,999.0,99.0 +1980,7,7,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,13.9,47,101100,1196,1321,382,878,832,122,90200,83400,14500,5440,290,3.6,2,1,64.4,77777,9,999999999,170,0.1020,0,88,999.000,999.0,99.0 +1980,7,7,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,14.4,46,101100,1211,1321,389,791,729,120,81300,73100,14100,5750,300,4.1,2,1,64.4,77777,9,999999999,170,0.1020,0,88,999.000,999.0,99.0 +1980,7,7,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,14.4,41,101000,1168,1321,397,902,867,133,92500,86800,15600,5100,300,2.6,2,1,64.4,77777,9,999999999,170,0.1020,0,88,999.000,999.0,99.0 +1980,7,7,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,14.4,39,101000,1070,1321,403,770,804,117,79300,80400,14100,3490,290,5.2,2,1,64.4,77777,9,999999999,160,0.1020,0,88,999.000,999.0,99.0 +1980,7,7,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,14.4,39,100900,924,1321,403,674,816,102,69800,81300,12800,2430,280,4.1,2,1,64.4,77777,9,999999999,160,0.1020,0,88,999.000,999.0,99.0 +1980,7,7,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,15.0,41,100900,740,1321,401,496,693,107,52900,69800,13700,2480,320,4.1,3,1,48.3,77777,9,999999999,170,0.1020,0,88,999.000,999.0,99.0 +1980,7,7,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,13.9,39,100900,530,1321,409,357,622,107,36800,58600,13300,2060,330,5.7,3,3,48.3,77777,9,999999999,179,0.1020,0,88,999.000,999.0,99.0 +1980,7,7,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,15.6,51,101000,308,1321,393,153,367,68,16200,29500,9300,1230,320,5.2,3,2,48.3,77777,9,999999999,189,0.1020,0,88,999.000,999.0,99.0 +1980,7,7,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,15.0,50,101200,94,1310,393,30,91,22,3100,3600,2800,380,340,4.1,3,3,32.2,77777,9,999999999,200,0.1020,0,88,999.000,999.0,99.0 +1980,7,7,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,13.9,61,101100,0,0,365,0,0,0,0,0,0,0,310,3.6,2,2,24.1,77777,9,999999999,209,0.1430,0,88,999.000,999.0,99.0 +1980,7,7,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,13.9,61,101200,0,0,353,0,0,0,0,0,0,0,330,3.1,0,0,24.1,77777,9,999999999,220,0.1430,0,88,999.000,999.0,99.0 +1980,7,7,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,13.3,68,101200,0,0,342,0,0,0,0,0,0,0,300,4.1,0,0,24.1,77777,9,999999999,220,0.1430,0,88,999.000,999.0,99.0 +1980,7,7,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,13.3,73,101200,0,0,343,0,0,0,0,0,0,0,300,3.1,1,1,24.1,77777,9,999999999,229,0.1430,0,88,999.000,999.0,99.0 +1980,7,8,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,13.3,78,101300,0,0,332,0,0,0,0,0,0,0,300,3.1,0,0,24.1,77777,9,999999999,240,0.1430,0,88,999.000,999.0,99.0 +1980,7,8,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,12.8,78,101300,0,0,329,0,0,0,0,0,0,0,340,2.6,0,0,24.1,77777,9,999999999,250,0.1430,0,88,999.000,999.0,99.0 +1980,7,8,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,12.2,78,101300,0,0,326,0,0,0,0,0,0,0,330,2.1,0,0,24.1,77777,9,999999999,259,0.1430,0,88,999.000,999.0,99.0 +1980,7,8,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,12.2,81,101300,0,0,337,0,0,0,0,0,0,0,360,2.6,3,3,64.4,77777,9,999999999,270,0.1430,0,88,999.000,999.0,99.0 +1980,7,8,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,11.7,84,101400,20,628,328,5,2,5,0,0,0,0,0,0.0,2,2,64.4,77777,9,999999999,270,0.2090,0,88,999.000,999.0,99.0 +1980,7,8,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,12.2,81,101400,195,1321,334,65,109,49,6900,6800,5900,900,0,0.0,2,2,64.4,77777,9,999999999,270,0.2090,0,88,999.000,999.0,99.0 +1980,7,8,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,12.2,78,101500,415,1321,345,206,286,116,21900,26200,13600,2310,0,0.0,5,5,48.3,77777,9,999999999,259,0.2090,0,88,999.000,999.0,99.0 +1980,7,8,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,12.8,73,101500,633,1321,367,274,142,206,29800,14500,22900,5060,100,3.1,10,8,48.3,2740,9,999999999,259,0.2090,0,88,999.000,999.0,99.0 +1980,7,8,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,13.3,73,101500,832,1321,360,473,293,288,50600,31200,30900,7560,70,2.6,8,6,48.3,1830,9,999999999,259,0.2090,0,88,999.000,999.0,99.0 +1980,7,8,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,13.3,66,101400,1000,1321,379,488,223,319,53100,24100,34800,10140,360,2.1,8,8,48.3,760,9,999999999,250,0.2090,0,88,999.000,999.0,99.0 +1980,7,8,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,13.3,61,101400,1123,1321,371,727,500,300,78100,52300,33600,12930,360,2.6,5,5,48.3,77777,9,999999999,250,0.2090,0,88,999.000,999.0,99.0 +1980,7,8,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,13.3,57,101300,1195,1321,367,826,642,243,87600,65400,28400,13190,360,2.1,2,2,32.2,77777,9,999999999,250,0.2090,0,88,999.000,999.0,99.0 +1980,7,8,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,14.4,58,101300,1210,1321,377,897,705,249,95200,71800,29300,14400,360,3.1,3,3,32.2,77777,9,999999999,250,0.2090,0,88,999.000,999.0,99.0 +1980,7,8,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,15.0,56,101200,1167,1321,387,577,316,297,62500,33100,33200,14770,340,2.6,4,4,24.1,77777,9,999999999,250,0.2090,0,88,999.000,999.0,99.0 +1980,7,8,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,15.0,50,101200,1070,1321,393,705,506,294,75400,52800,32600,10970,120,4.6,4,3,24.1,77777,9,999999999,240,0.2090,0,88,999.000,999.0,99.0 +1980,7,8,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,15.6,51,101100,923,1321,397,593,537,217,64000,55800,25000,6010,90,5.2,7,3,24.1,77777,9,999999999,240,0.2090,0,88,999.000,999.0,99.0 +1980,7,8,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,15.0,50,101100,739,1321,393,435,403,209,45600,40900,22700,4740,70,4.1,7,3,24.1,77777,9,999999999,240,0.2090,0,88,999.000,999.0,99.0 +1980,7,8,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,15.6,56,101100,528,1321,391,280,377,129,29500,36200,15000,2520,210,3.6,5,4,24.1,77777,9,999999999,229,0.2090,0,88,999.000,999.0,99.0 +1980,7,8,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,15.0,56,101100,307,1321,393,85,71,69,9400,5900,8100,1500,200,4.1,9,6,24.1,7620,9,999999999,229,0.2090,0,88,999.000,999.0,99.0 +1980,7,8,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,15.6,60,101200,93,1288,411,14,1,14,1600,0,1600,520,210,5.2,10,9,24.1,1280,9,999999999,220,0.2090,0,88,999.000,999.0,99.0 +1980,7,8,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,13.9,64,101300,0,0,379,0,0,0,0,0,0,0,10,5.2,9,7,24.1,1400,9,999999999,220,0.1430,0,88,999.000,999.0,99.0 +1980,7,8,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,12.8,63,101400,0,0,372,0,0,0,0,0,0,0,360,2.6,8,7,24.1,1520,9,999999999,220,0.1430,0,88,999.000,999.0,99.0 +1980,7,8,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,12.8,75,101400,0,0,358,0,0,0,0,0,0,0,180,3.1,9,7,24.1,7620,9,999999999,209,0.1430,0,88,999.000,999.0,99.0 +1980,7,8,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,12.2,75,101500,0,0,379,0,0,0,0,0,0,0,20,2.6,10,10,24.1,1680,9,999999999,209,0.1430,0,88,999.000,999.0,99.0 +1980,7,9,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,11.7,75,101500,0,0,375,0,0,0,0,0,0,0,340,3.1,10,10,24.1,760,9,999999999,200,0.1430,0,88,999.000,999.0,99.0 +1980,7,9,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,11.1,75,101500,0,0,372,0,0,0,0,0,0,0,360,3.1,10,10,24.1,610,9,999999999,200,0.1430,0,88,999.000,999.0,99.0 +1980,7,9,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,11.1,78,101500,0,0,369,0,0,0,0,0,0,0,10,2.6,10,10,24.1,580,9,999999999,189,0.1430,0,88,999.000,999.0,99.0 +1980,7,9,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,11.1,78,101500,0,0,369,0,0,0,0,0,0,0,20,2.1,10,10,24.1,580,9,999999999,189,0.1430,0,88,999.000,999.0,99.0 +1980,7,9,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,11.1,78,101600,19,606,369,2,0,2,0,0,0,0,360,2.6,10,10,24.1,550,9,999999999,189,0.0590,0,88,999.000,999.0,99.0 +1980,7,9,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,11.7,81,101600,192,1322,369,21,4,20,2500,0,2500,800,360,2.6,10,10,16.1,490,9,999999999,189,0.0590,0,88,999.000,999.0,99.0 +1980,7,9,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,12.2,90,101700,413,1322,364,70,7,68,8200,300,8100,2810,360,2.6,10,10,6.4,240,9,999999999,189,0.0590,0,88,999.000,999.0,99.0 +1980,7,9,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,12.8,93,101700,631,1322,365,95,4,93,11400,300,11300,4280,360,2.6,10,10,2.4,180,9,999999999,189,0.0590,0,88,999.000,999.0,99.0 +1980,7,9,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,12.8,93,101700,830,1322,365,176,1,176,20900,100,20900,8150,330,3.1,10,10,2.4,180,9,999999999,189,0.0590,0,88,999.000,999.0,99.0 +1980,7,9,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,12.8,90,101800,998,1322,368,182,3,179,22000,200,21800,8900,310,2.1,10,10,6.4,370,9,999999999,200,0.0590,0,88,999.000,999.0,99.0 +1980,7,9,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,13.3,90,101800,1122,1322,371,202,1,202,24800,100,24800,10130,0,0.0,10,10,8.0,490,9,999999999,200,0.0590,0,88,999.000,999.0,99.0 +1980,7,9,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,12.8,84,101800,1194,1322,374,414,3,412,48600,300,48300,17660,40,1.5,10,10,16.1,490,9,999999999,200,0.0590,0,88,999.000,999.0,99.0 +1980,7,9,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,12.8,81,101900,1209,1322,376,413,0,413,48500,0,48500,17760,320,2.1,10,10,16.1,490,9,999999999,200,0.0590,0,88,999.000,999.0,99.0 +1980,7,9,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,13.3,73,101900,1167,1322,389,454,1,453,52600,100,52500,18550,340,4.6,10,10,32.2,1370,9,999999999,200,0.0590,0,88,999.000,999.0,99.0 +1980,7,9,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,13.3,73,101900,1069,1322,389,378,1,377,43800,100,43700,16020,350,2.1,10,10,24.1,1340,9,999999999,200,0.0590,0,88,999.000,999.0,99.0 +1980,7,9,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,13.3,75,101900,922,1322,386,322,0,322,36900,0,36900,13360,300,3.1,10,10,24.1,1430,9,999999999,200,0.0590,0,88,999.000,999.0,99.0 +1980,7,9,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,13.3,75,101900,738,1322,386,255,1,255,28900,100,28900,9950,320,2.6,10,10,24.1,1340,9,999999999,200,0.0590,0,88,999.000,999.0,99.0 +1980,7,9,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,13.3,75,101900,527,1322,386,192,1,191,21200,100,21200,6630,330,3.1,10,10,24.1,1830,9,999999999,200,0.0590,0,88,999.000,999.0,99.0 +1980,7,9,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,13.3,78,101900,306,1322,383,101,1,101,11100,100,11100,3250,360,3.6,10,10,24.1,1520,9,999999999,200,0.0590,0,88,999.000,999.0,99.0 +1980,7,9,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,13.3,84,101900,91,1288,338,33,145,21,3400,6300,2900,370,40,2.1,2,2,24.1,77777,9,999999999,200,0.0590,0,88,999.000,999.0,99.0 +1980,7,9,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,12.8,84,101900,0,0,335,0,0,0,0,0,0,0,330,1.5,2,2,24.1,77777,9,999999999,200,0.1430,0,88,999.000,999.0,99.0 +1980,7,9,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,12.2,90,101900,0,0,335,0,0,0,0,0,0,0,290,1.5,5,5,24.1,77777,9,999999999,200,0.1430,0,88,999.000,999.0,99.0 +1980,7,9,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,12.8,93,102000,0,0,365,0,0,0,0,0,0,0,240,1.5,10,10,24.1,1830,9,999999999,189,0.1430,0,88,999.000,999.0,99.0 +1980,7,9,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,12.8,90,102000,0,0,345,0,0,0,0,0,0,0,0,0.0,8,7,24.1,7620,9,999999999,189,0.1430,0,88,999.000,999.0,99.0 +1980,7,10,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,12.8,93,102000,0,0,342,0,0,0,0,0,0,0,40,1.5,8,7,24.1,7620,9,999999999,189,0.1430,0,88,999.000,999.0,99.0 +1980,7,10,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,11.7,96,102000,0,0,333,0,0,0,0,0,0,0,0,0.0,9,7,24.1,1830,9,999999999,189,0.1430,0,88,999.000,999.0,99.0 +1980,7,10,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,12.8,96,102000,0,0,362,0,0,0,0,0,0,0,280,2.6,10,10,16.1,150,9,999999999,189,0.1430,0,88,999.000,999.0,99.0 +1980,7,10,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,13.3,96,102000,0,0,366,0,0,0,0,0,0,0,260,2.1,10,10,16.1,150,9,999999999,189,0.1430,0,88,999.000,999.0,99.0 +1980,7,10,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,13.3,93,102100,18,584,368,6,0,6,0,0,0,0,20,2.1,10,10,24.1,1520,9,999999999,189,0.0760,0,88,999.000,999.0,99.0 +1980,7,10,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,12.8,90,102100,189,1322,368,32,2,32,3700,0,3700,1190,90,2.6,10,10,24.1,1520,9,999999999,189,0.0760,0,88,999.000,999.0,99.0 +1980,7,10,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,12.8,87,102100,410,1322,371,101,6,99,11500,300,11400,3750,150,2.1,10,10,24.1,1520,9,999999999,189,0.0760,0,88,999.000,999.0,99.0 +1980,7,10,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,13.3,87,102100,628,1322,374,205,1,205,23200,100,23100,7810,190,4.6,10,10,32.2,1680,9,999999999,189,0.0760,0,88,999.000,999.0,99.0 +1980,7,10,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,12.8,81,102200,828,1322,376,243,8,238,28100,700,27700,10230,200,2.6,10,10,48.3,940,9,999999999,189,0.0760,0,88,999.000,999.0,99.0 +1980,7,10,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,12.2,70,102200,996,1322,385,338,5,334,39100,500,38700,14310,300,2.1,10,10,48.3,1980,9,999999999,200,0.0760,0,88,999.000,999.0,99.0 +1980,7,10,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,12.2,65,102200,1121,1322,390,377,6,372,44100,600,43600,16160,360,3.1,10,10,48.3,1980,9,999999999,200,0.0760,0,88,999.000,999.0,99.0 +1980,7,10,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,11.7,55,102200,1193,1322,369,831,558,326,89500,58400,36700,17920,360,4.1,5,5,48.3,77777,9,999999999,200,0.0760,0,88,999.000,999.0,99.0 +1980,7,10,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,11.1,50,102100,1208,1322,368,905,764,205,97400,78500,25500,11880,30,2.6,3,3,48.3,77777,9,999999999,200,0.0760,0,88,999.000,999.0,99.0 +1980,7,10,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,11.1,46,102100,1166,1322,376,852,718,217,90900,73400,26000,10580,20,2.6,4,4,64.4,77777,9,999999999,200,0.0760,0,88,999.000,999.0,99.0 +1980,7,10,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,11.1,46,102000,1068,1322,383,565,346,285,60600,36100,31400,10560,50,2.1,6,6,64.4,1220,9,999999999,200,0.0760,0,88,999.000,999.0,99.0 +1980,7,10,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,11.1,45,102000,921,1322,376,538,513,180,56700,51900,20400,4960,50,3.1,3,3,64.4,77777,9,999999999,200,0.0760,0,88,999.000,999.0,99.0 +1980,7,10,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,11.1,46,101900,737,1322,387,323,267,174,35400,28200,19700,3940,180,1.5,7,7,48.3,1680,9,999999999,200,0.0760,0,88,999.000,999.0,99.0 +1980,7,10,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,12.2,50,101900,526,1322,371,313,561,89,32700,53300,11500,1770,70,3.1,2,2,48.3,77777,9,999999999,200,0.0760,0,88,999.000,999.0,99.0 +1980,7,10,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,12.2,53,101900,304,1322,369,151,364,67,15900,29100,9200,1210,90,3.1,3,3,64.4,77777,9,999999999,200,0.0760,0,88,999.000,999.0,99.0 +1980,7,10,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,13.3,66,101900,90,1267,362,25,68,20,2700,2600,2500,340,50,1.5,4,4,64.4,77777,9,999999999,200,0.0760,0,88,999.000,999.0,99.0 +1980,7,10,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,13.3,73,101900,0,0,337,0,0,0,0,0,0,0,320,2.6,0,0,19.3,77777,9,999999999,200,0.1430,0,88,999.000,999.0,99.0 +1980,7,10,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,12.8,75,101900,0,0,331,0,0,0,0,0,0,0,300,4.1,0,0,16.1,77777,9,999999999,200,0.1430,0,88,999.000,999.0,99.0 +1980,7,10,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,12.8,78,101900,0,0,329,0,0,0,0,0,0,0,330,4.1,0,0,24.1,77777,9,999999999,209,0.1430,0,88,999.000,999.0,99.0 +1980,7,10,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,12.8,81,101900,0,0,326,0,0,0,0,0,0,0,340,2.6,0,0,24.1,77777,9,999999999,209,0.1430,0,88,999.000,999.0,99.0 +1980,7,11,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,12.2,87,101800,0,0,318,0,0,0,0,0,0,0,260,1.5,0,0,24.1,77777,9,999999999,209,0.1430,0,88,999.000,999.0,99.0 +1980,7,11,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,12.2,87,101800,0,0,318,0,0,0,0,0,0,0,240,1.5,0,0,24.1,77777,9,999999999,209,0.1430,0,88,999.000,999.0,99.0 +1980,7,11,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,11.7,90,101800,0,0,313,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,209,0.1430,0,88,999.000,999.0,99.0 +1980,7,11,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,12.2,93,101800,0,0,332,0,0,0,0,0,0,0,40,2.1,6,5,24.1,7620,9,999999999,209,0.1430,0,88,999.000,999.0,99.0 +1980,7,11,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,12.2,90,101800,17,562,347,6,2,6,0,0,0,0,0,0.0,9,8,32.2,1040,9,999999999,209,0.0990,0,88,999.000,999.0,99.0 +1980,7,11,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,12.8,90,101900,187,1322,350,49,2,49,5500,0,5500,1620,0,0.0,10,8,32.2,3660,9,999999999,220,0.0990,0,88,999.000,999.0,99.0 +1980,7,11,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,12.8,87,101800,408,1322,371,72,15,67,7900,1400,7500,1950,0,0.0,10,10,16.1,7620,9,999999999,220,0.0990,0,88,999.000,999.0,99.0 +1980,7,11,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,12.8,87,101900,626,1322,371,158,6,155,18200,500,18000,6430,0,0.0,10,10,12.9,820,9,999999999,220,0.0990,0,88,999.000,999.0,99.0 +1980,7,11,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,12.2,78,101900,826,1322,376,250,1,250,28900,100,28800,10570,300,2.6,10,10,16.1,760,9,999999999,220,0.0990,0,88,999.000,999.0,99.0 +1980,7,11,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,12.2,68,101900,995,1322,387,259,1,258,30500,100,30500,11910,0,0.0,10,10,16.1,1830,9,999999999,229,0.0990,0,88,999.000,999.0,99.0 +1980,7,11,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,12.8,68,101900,1119,1322,391,464,6,460,53400,600,52900,18370,360,2.1,10,10,19.3,1520,9,999999999,229,0.0990,0,88,999.000,999.0,99.0 +1980,7,11,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,13.3,68,101900,1192,1322,395,394,6,388,46300,600,45800,16960,350,2.6,10,10,19.3,1680,9,999999999,229,0.0990,0,88,999.000,999.0,99.0 +1980,7,11,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,12.2,61,101800,1207,1322,396,418,4,415,49100,400,48700,17810,20,2.1,10,10,19.3,1370,9,999999999,229,0.0990,0,88,999.000,999.0,99.0 +1980,7,11,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,12.8,59,101900,1165,1322,403,373,4,369,43800,400,43500,16270,90,2.1,10,10,19.3,910,9,999999999,229,0.0990,0,88,999.000,999.0,99.0 +1980,7,11,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,12.8,57,101800,1067,1322,406,350,3,348,40800,300,40600,15190,60,2.1,10,10,24.1,910,9,999999999,240,0.0990,0,88,999.000,999.0,99.0 +1980,7,11,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,12.8,57,101800,920,1322,406,322,0,322,36900,0,36900,13340,20,1.5,10,10,24.1,1830,9,999999999,240,0.0990,0,88,999.000,999.0,99.0 +1980,7,11,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,13.3,57,101700,735,1322,399,277,99,222,30500,9900,25000,7040,10,1.5,9,9,24.1,1830,9,999999999,229,0.0990,0,88,999.000,999.0,99.0 +1980,7,11,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,13.3,57,101700,525,1322,390,262,205,180,28300,20100,20300,4210,30,1.5,8,8,24.1,1830,9,999999999,229,0.0990,0,88,999.000,999.0,99.0 +1980,7,11,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,13.9,66,101700,303,1322,391,97,104,73,10600,8600,8700,1590,340,4.1,9,9,24.1,1220,9,999999999,220,0.0990,0,88,999.000,999.0,99.0 +1980,7,11,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,13.3,70,101700,88,1267,373,24,16,23,2600,900,2600,550,350,5.7,8,8,48.3,1220,9,999999999,220,0.0990,0,88,999.000,999.0,99.0 +1980,7,11,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,12.8,75,101800,0,0,364,0,0,0,0,0,0,0,10,4.1,8,8,32.2,1220,9,999999999,209,0.1430,0,88,999.000,999.0,99.0 +1980,7,11,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,12.8,75,101800,0,0,372,0,0,0,0,0,0,0,350,4.1,9,9,24.1,1100,9,999999999,200,0.1430,0,88,999.000,999.0,99.0 +1980,7,11,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,11.7,75,101800,0,0,357,0,0,0,0,0,0,0,310,6.2,8,8,24.1,1280,9,999999999,200,0.1430,0,88,999.000,999.0,99.0 +1980,7,11,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,11.7,75,101800,0,0,365,0,0,0,0,0,0,0,310,4.1,9,9,24.1,1220,9,999999999,189,0.1430,0,88,999.000,999.0,99.0 +1980,7,12,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,11.7,75,101800,0,0,365,0,0,0,0,0,0,0,300,4.6,9,9,24.1,1220,9,999999999,189,0.1430,0,88,999.000,999.0,99.0 +1980,7,12,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,11.7,78,101800,0,0,362,0,0,0,0,0,0,0,310,4.1,9,9,24.1,1340,9,999999999,179,0.1430,0,88,999.000,999.0,99.0 +1980,7,12,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,11.7,78,101800,0,0,373,0,0,0,0,0,0,0,320,4.1,10,10,24.1,1280,9,999999999,179,0.1430,0,88,999.000,999.0,99.0 +1980,7,12,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,11.7,78,101800,0,0,373,0,0,0,0,0,0,0,330,3.1,10,10,24.1,1220,9,999999999,170,0.1430,0,88,999.000,999.0,99.0 +1980,7,12,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,11.7,78,101800,16,540,362,1,0,1,0,0,0,0,340,2.6,9,9,64.4,1520,9,999999999,170,0.1360,0,88,999.000,999.0,99.0 +1980,7,12,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,12.2,81,101800,184,1322,373,32,4,31,3600,0,3600,1150,40,1.5,10,10,64.4,1520,9,999999999,170,0.1360,0,88,999.000,999.0,99.0 +1980,7,12,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,12.2,78,101900,405,1322,352,129,118,93,14300,10900,11000,2080,340,3.1,8,7,48.3,1520,9,999999999,170,0.1360,0,88,999.000,999.0,99.0 +1980,7,12,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,12.8,70,101900,624,1322,369,188,96,143,21000,9800,16300,3490,320,3.1,9,8,48.3,1520,9,999999999,170,0.1360,0,88,999.000,999.0,99.0 +1980,7,12,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,12.2,65,101900,824,1322,359,387,305,196,42600,32600,22200,4790,310,3.6,5,5,48.3,77777,9,999999999,170,0.1360,0,88,999.000,999.0,99.0 +1980,7,12,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,12.2,61,101800,993,1322,364,677,558,257,72600,58100,28900,8080,330,2.6,5,5,48.3,77777,9,999999999,170,0.1360,0,88,999.000,999.0,99.0 +1980,7,12,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,10.6,51,101800,1118,1322,368,777,600,268,81200,60500,30000,10950,300,2.6,5,5,48.3,77777,9,999999999,170,0.1360,0,88,999.000,999.0,99.0 +1980,7,12,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,10.6,48,101800,1190,1322,373,554,259,320,61700,28200,36300,15630,290,3.1,5,5,48.3,77777,9,999999999,170,0.1360,0,88,999.000,999.0,99.0 +1980,7,12,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,10.6,43,101800,1206,1322,382,947,809,207,98100,80900,24100,10650,300,3.1,5,5,48.3,77777,9,999999999,170,0.1360,0,88,999.000,999.0,99.0 +1980,7,12,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,10.6,42,101800,1163,1322,384,853,603,321,91700,63000,36100,15770,330,3.1,5,5,48.3,77777,9,999999999,170,0.1360,0,88,999.000,999.0,99.0 +1980,7,12,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,11.7,45,101700,1066,1322,394,666,389,352,72600,42200,38500,12650,340,4.6,7,7,40.2,1430,9,999999999,170,0.1360,0,88,999.000,999.0,99.0 +1980,7,12,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,11.1,43,101700,919,1322,382,654,646,203,68100,64900,22900,5480,300,3.6,4,4,48.3,77777,9,999999999,170,0.1360,0,88,999.000,999.0,99.0 +1980,7,12,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,11.1,43,101600,734,1322,379,505,627,156,52400,62000,17900,3410,300,5.7,3,3,48.3,77777,9,999999999,170,0.1360,0,88,999.000,999.0,99.0 +1980,7,12,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,11.7,46,101600,523,1322,374,323,536,110,33200,50300,13300,2100,340,5.2,2,2,48.3,77777,9,999999999,179,0.1360,0,88,999.000,999.0,99.0 +1980,7,12,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,11.7,48,101600,301,1322,366,126,272,64,13300,21600,8400,1150,330,6.7,1,1,48.3,77777,9,999999999,179,0.1360,0,88,999.000,999.0,99.0 +1980,7,12,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,12.8,57,101600,86,1245,352,31,93,23,3200,3500,2900,410,350,5.2,0,0,48.3,77777,9,999999999,189,0.1360,0,88,999.000,999.0,99.0 +1980,7,12,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,13.3,66,101700,0,0,345,0,0,0,0,0,0,0,340,5.7,0,0,48.3,77777,9,999999999,189,0.1430,0,88,999.000,999.0,99.0 +1980,7,12,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,12.8,70,101700,0,0,336,0,0,0,0,0,0,0,320,5.7,0,0,24.1,77777,9,999999999,200,0.1430,0,88,999.000,999.0,99.0 +1980,7,12,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,12.8,73,101700,0,0,334,0,0,0,0,0,0,0,320,5.2,0,0,24.1,77777,9,999999999,200,0.1430,0,88,999.000,999.0,99.0 +1980,7,12,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,12.8,81,101700,0,0,326,0,0,0,0,0,0,0,340,4.6,0,0,24.1,77777,9,999999999,200,0.1430,0,88,999.000,999.0,99.0 +1980,7,13,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,12.8,84,101800,0,0,324,0,0,0,0,0,0,0,320,5.2,0,0,24.1,77777,9,999999999,209,0.1420,0,88,999.000,999.0,99.0 +1980,7,13,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,12.2,84,101800,0,0,321,0,0,0,0,0,0,0,350,3.6,0,0,24.1,77777,9,999999999,209,0.1420,0,88,999.000,999.0,99.0 +1980,7,13,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,12.2,87,101800,0,0,318,0,0,0,0,0,0,0,350,3.1,0,0,24.1,77777,9,999999999,220,0.1420,0,88,999.000,999.0,99.0 +1980,7,13,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,11.7,87,101800,0,0,326,0,0,0,0,0,0,0,340,2.6,2,2,24.1,77777,9,999999999,220,0.1420,0,88,999.000,999.0,99.0 +1980,7,13,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,12.2,90,101800,14,518,364,7,0,7,0,0,0,0,310,3.1,10,10,24.1,400,9,999999999,220,0.1830,0,88,999.000,999.0,99.0 +1980,7,13,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,12.2,84,101900,181,1322,370,44,6,43,4900,100,4900,1470,310,3.6,10,10,24.1,430,9,999999999,229,0.1830,0,88,999.000,999.0,99.0 +1980,7,13,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,12.8,84,101900,403,1322,374,92,4,91,10500,200,10500,3500,330,2.6,10,10,24.1,460,9,999999999,229,0.1830,0,88,999.000,999.0,99.0 +1980,7,13,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,12.2,78,101900,622,1322,376,168,8,165,19300,600,19000,6700,320,2.6,10,10,24.1,460,9,999999999,229,0.1830,0,88,999.000,999.0,99.0 +1980,7,13,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,12.2,78,101900,822,1322,376,270,7,265,30800,600,30400,10960,0,0.0,10,10,24.1,460,9,999999999,240,0.1830,0,88,999.000,999.0,99.0 +1980,7,13,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,12.2,68,101900,991,1322,387,282,6,277,33000,500,32600,12530,360,2.1,10,10,24.1,610,9,999999999,240,0.1830,0,88,999.000,999.0,99.0 +1980,7,13,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,13.3,70,101900,1116,1322,357,761,585,265,79600,59000,29700,10790,0,0.0,8,4,32.2,77777,9,999999999,240,0.1830,0,88,999.000,999.0,99.0 +1980,7,13,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,12.8,57,101900,1189,1322,367,861,601,319,92900,62900,36200,17230,340,2.6,8,3,32.2,77777,9,999999999,250,0.1830,0,88,999.000,999.0,99.0 +1980,7,13,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,13.3,57,101800,1205,1322,371,836,545,338,89900,57000,37800,19520,20,2.6,10,3,48.3,77777,9,999999999,250,0.1830,0,88,999.000,999.0,99.0 +1980,7,13,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,13.3,50,101700,1162,1322,382,806,522,346,85900,54500,37900,16990,0,0.0,10,3,48.3,77777,9,999999999,250,0.1830,0,88,999.000,999.0,99.0 +1980,7,13,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,13.9,50,101700,1064,1322,392,548,320,289,60500,34800,32500,10100,290,2.1,7,5,48.3,7620,9,999999999,259,0.1830,0,88,999.000,999.0,99.0 +1980,7,13,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,15.0,54,101600,918,1322,428,305,4,302,35100,400,34800,12780,340,3.6,10,10,40.2,2740,9,999999999,259,0.1830,0,88,999.000,999.0,99.0 +1980,7,13,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,13.9,61,101700,733,1322,408,163,8,158,19100,600,18700,7060,350,7.2,10,10,32.2,3660,9,999999999,259,0.1830,0,88,999.000,999.0,99.0 +1980,7,13,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,13.3,66,101700,521,1322,398,127,2,126,14500,100,14500,5030,350,7.7,10,10,48.3,3660,9,999999999,259,0.1830,0,88,999.000,999.0,99.0 +1980,7,13,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,12.8,66,101700,299,1322,394,91,3,91,10100,100,10100,3020,350,5.2,10,10,48.3,1160,9,999999999,259,0.1830,0,88,999.000,999.0,99.0 +1980,7,13,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,13.3,75,101700,84,1223,386,11,0,11,1300,0,1300,420,330,6.2,10,10,48.3,2740,9,999999999,259,0.1830,0,88,999.000,999.0,99.0 +1980,7,13,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,12.8,73,101700,0,0,385,0,0,0,0,0,0,0,330,4.1,10,10,24.1,1430,9,999999999,259,0.1420,0,88,999.000,999.0,99.0 +1980,7,13,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,12.8,75,101700,0,0,382,0,0,0,0,0,0,0,330,4.1,10,10,24.1,1520,9,999999999,270,0.1420,0,88,999.000,999.0,99.0 +1980,7,13,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,12.8,78,101700,0,0,380,0,0,0,0,0,0,0,330,6.7,10,10,24.1,1490,9,999999999,270,0.1420,0,88,999.000,999.0,99.0 +1980,7,13,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,12.8,78,101700,0,0,356,0,0,0,0,0,0,0,300,5.2,8,7,24.1,2740,9,999999999,270,0.1420,0,88,999.000,999.0,99.0 +1980,7,14,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,12.8,81,101700,0,0,376,0,0,0,0,0,0,0,310,2.6,10,10,24.1,790,9,999999999,270,0.1420,0,88,999.000,999.0,99.0 +1980,7,14,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,12.8,81,101700,0,0,376,0,0,0,0,0,0,0,300,3.1,10,10,24.1,850,9,999999999,270,0.1420,0,88,999.000,999.0,99.0 +1980,7,14,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,12.8,84,101700,0,0,374,0,0,0,0,0,0,0,260,2.1,10,10,24.1,850,9,999999999,270,0.1420,0,88,999.000,999.0,99.0 +1980,7,14,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,12.8,84,101800,0,0,374,0,0,0,0,0,0,0,290,2.6,10,10,24.1,640,9,999999999,270,0.1420,0,88,999.000,999.0,99.0 +1980,7,14,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,13.3,87,101800,13,496,374,3,0,3,0,0,0,0,260,2.6,10,10,24.1,1220,9,999999999,270,0.0700,0,88,999.000,999.0,99.0 +1980,7,14,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,13.3,87,101800,179,1322,374,40,1,40,4500,0,4500,1380,260,2.1,10,10,48.3,1220,9,999999999,270,0.0700,0,88,999.000,999.0,99.0 +1980,7,14,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,13.3,87,101900,400,1322,374,137,1,137,15100,100,15100,4560,0,0.0,10,10,48.3,1160,9,999999999,259,0.0700,0,88,999.000,999.0,99.0 +1980,7,14,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,12.8,81,101900,619,1322,376,194,1,193,21900,100,21800,7440,0,0.0,10,10,48.3,1040,9,999999999,259,0.0700,0,88,999.000,999.0,99.0 +1980,7,14,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,12.8,70,101900,820,1322,388,313,1,313,35400,100,35400,12110,300,2.6,10,10,48.3,1040,9,999999999,259,0.0700,0,88,999.000,999.0,99.0 +1980,7,14,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,12.8,68,101900,989,1322,391,382,1,381,43600,100,43600,15460,290,4.6,10,10,48.3,910,9,999999999,250,0.0700,0,88,999.000,999.0,99.0 +1980,7,14,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,12.8,63,101900,1114,1322,397,416,1,415,48100,100,48000,17280,340,2.6,10,10,48.3,1160,9,999999999,250,0.0700,0,88,999.000,999.0,99.0 +1980,7,14,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,12.8,59,101900,1188,1322,403,453,1,452,52600,100,52500,18660,350,2.6,10,10,48.3,1010,9,999999999,250,0.0700,0,88,999.000,999.0,99.0 +1980,7,14,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,13.3,61,101900,1203,1322,393,425,111,324,47700,11900,36800,16100,40,2.6,9,9,48.3,1010,9,999999999,250,0.0700,0,88,999.000,999.0,99.0 +1980,7,14,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,13.3,61,101900,1161,1322,404,404,87,328,45200,9300,37000,14460,0,0.0,10,10,48.3,1010,9,999999999,250,0.0700,0,88,999.000,999.0,99.0 +1980,7,14,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,13.3,57,101800,1063,1322,410,332,37,302,36700,3800,33600,12490,60,2.6,10,10,48.3,1070,9,999999999,240,0.0700,0,88,999.000,999.0,99.0 +1980,7,14,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,13.3,57,101900,916,1322,410,350,8,345,39900,800,39400,13870,360,2.1,10,10,48.3,1340,9,999999999,240,0.0700,0,88,999.000,999.0,99.0 +1980,7,14,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,13.3,57,101800,731,1322,410,224,10,218,25600,900,25100,8940,310,1.5,10,10,48.3,1980,9,999999999,240,0.0700,0,88,999.000,999.0,99.0 +1980,7,14,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,13.9,61,101800,520,1322,408,129,1,129,14800,100,14800,5110,360,2.1,10,10,48.3,1830,9,999999999,240,0.0700,0,88,999.000,999.0,99.0 +1980,7,14,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,14.4,66,101900,297,1322,405,83,2,82,9200,100,9200,2820,350,4.1,10,10,48.3,1340,9,999999999,240,0.0700,0,88,999.000,999.0,99.0 +1980,7,14,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,13.9,70,101900,82,1223,395,12,0,12,1400,0,1400,450,10,3.1,10,10,48.3,1280,9,999999999,240,0.0700,0,88,999.000,999.0,99.0 +1980,7,14,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,13.9,70,101900,0,0,395,0,0,0,0,0,0,0,360,4.6,10,10,32.2,1160,9,999999999,240,0.1420,0,88,999.000,999.0,99.0 +1980,7,14,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,13.3,70,102000,0,0,392,0,0,0,0,0,0,0,330,4.1,10,10,24.1,1220,9,999999999,229,0.1420,0,88,999.000,999.0,99.0 +1980,7,14,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,13.3,75,102000,0,0,367,0,0,0,0,0,0,0,350,3.1,8,8,24.1,1160,9,999999999,229,0.1420,0,88,999.000,999.0,99.0 +1980,7,14,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,13.3,81,102000,0,0,362,0,0,0,0,0,0,0,310,4.6,8,8,24.1,1340,9,999999999,229,0.1420,0,88,999.000,999.0,99.0 +1980,7,15,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,13.3,81,102000,0,0,356,0,0,0,0,0,0,0,330,2.6,8,7,24.1,1340,9,999999999,229,0.1420,0,88,999.000,999.0,99.0 +1980,7,15,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,13.3,84,102000,0,0,349,0,0,0,0,0,0,0,320,3.6,7,6,24.1,1280,9,999999999,229,0.1420,0,88,999.000,999.0,99.0 +1980,7,15,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,13.3,87,102000,0,0,341,0,0,0,0,0,0,0,320,3.1,5,4,24.1,77777,9,999999999,229,0.1420,0,88,999.000,999.0,99.0 +1980,7,15,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,12.8,87,102000,0,0,347,0,0,0,0,0,0,0,300,2.1,7,7,24.1,1280,9,999999999,229,0.1420,0,88,999.000,999.0,99.0 +1980,7,15,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,12.8,90,102000,12,496,332,4,8,3,0,0,0,0,0,0.0,4,3,64.4,77777,9,999999999,229,0.1180,0,88,999.000,999.0,99.0 +1980,7,15,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,13.3,84,102100,176,1322,338,58,158,36,6000,9600,4800,640,340,2.6,3,2,64.4,77777,9,999999999,220,0.1180,0,88,999.000,999.0,99.0 +1980,7,15,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,13.3,78,102100,397,1322,343,216,417,91,22800,36900,11700,1690,320,4.1,4,2,64.4,77777,9,999999999,220,0.1180,0,88,999.000,999.0,99.0 +1980,7,15,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,13.3,73,102100,617,1322,348,387,569,121,40200,55200,14400,2460,330,2.6,5,2,64.4,77777,9,999999999,209,0.1180,0,88,999.000,999.0,99.0 +1980,7,15,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,13.3,63,102000,818,1322,359,571,738,112,59600,73600,14000,2620,0,0.0,3,2,64.4,77777,9,999999999,209,0.1180,0,88,999.000,999.0,99.0 +1980,7,15,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,13.9,61,102000,987,1322,365,717,719,178,76000,73300,21200,5530,360,3.1,2,2,64.4,77777,9,999999999,200,0.1180,0,88,999.000,999.0,99.0 +1980,7,15,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,13.9,55,102000,1113,1322,373,821,789,155,86600,79600,19500,5980,300,3.1,2,2,64.4,77777,9,999999999,200,0.1180,0,88,999.000,999.0,99.0 +1980,7,15,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,13.3,52,102000,1186,1322,375,928,861,153,99000,87300,20500,7650,310,3.1,2,2,64.4,77777,9,999999999,200,0.1180,0,88,999.000,999.0,99.0 +1980,7,15,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,10.0,38,102000,1202,1322,375,889,827,134,91100,82900,15600,5890,330,2.6,1,1,64.4,77777,9,999999999,189,0.1180,0,88,999.000,999.0,99.0 +1980,7,15,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,11.1,39,102000,1160,1322,372,894,862,136,91700,86300,15800,4970,210,3.1,0,0,64.4,77777,9,999999999,189,0.1180,0,88,999.000,999.0,99.0 +1980,7,15,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,12.2,39,101900,1062,1322,386,758,796,116,78000,79600,14000,3400,310,2.6,1,1,80.5,77777,9,999999999,179,0.1180,0,88,999.000,999.0,99.0 +1980,7,15,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,12.8,38,101900,915,1322,392,648,762,119,68400,76600,15300,3160,30,2.6,1,1,80.5,77777,9,999999999,179,0.1180,0,88,999.000,999.0,99.0 +1980,7,15,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,13.3,41,101800,729,1322,390,480,692,97,50200,68500,12400,2140,360,3.1,1,1,80.5,77777,9,999999999,189,0.1180,0,88,999.000,999.0,99.0 +1980,7,15,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,13.9,44,101800,518,1322,388,313,603,76,33000,57400,10500,1530,330,3.6,1,1,80.5,77777,9,999999999,189,0.1180,0,88,999.000,999.0,99.0 +1980,7,15,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,13.9,49,101800,295,1322,380,150,438,52,15500,35100,7600,960,350,4.1,1,1,80.5,77777,9,999999999,200,0.1180,0,88,999.000,999.0,99.0 +1980,7,15,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,15.0,62,101800,80,1201,367,28,94,19,2700,3900,2500,330,320,3.6,1,1,48.3,77777,9,999999999,200,0.1180,0,88,999.000,999.0,99.0 +1980,7,15,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,12.8,59,101900,0,0,349,0,0,0,0,0,0,0,340,4.1,0,0,24.1,77777,9,999999999,200,0.1420,0,88,999.000,999.0,99.0 +1980,7,15,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,13.3,66,101900,0,0,345,0,0,0,0,0,0,0,330,4.1,0,0,24.1,77777,9,999999999,209,0.1420,0,88,999.000,999.0,99.0 +1980,7,15,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,13.3,73,101900,0,0,337,0,0,0,0,0,0,0,330,5.2,0,0,24.1,77777,9,999999999,220,0.1420,0,88,999.000,999.0,99.0 +1980,7,15,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,13.3,81,102000,0,0,329,0,0,0,0,0,0,0,330,4.6,0,0,24.1,77777,9,999999999,220,0.1420,0,88,999.000,999.0,99.0 +1980,7,16,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,13.3,84,102000,0,0,327,0,0,0,0,0,0,0,310,5.2,0,0,24.1,77777,9,999999999,229,0.1420,0,88,999.000,999.0,99.0 +1980,7,16,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,13.3,84,102000,0,0,327,0,0,0,0,0,0,0,310,4.6,0,0,24.1,77777,9,999999999,229,0.1420,0,88,999.000,999.0,99.0 +1980,7,16,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,12.8,87,102000,0,0,335,0,0,0,0,0,0,0,250,2.1,6,3,24.1,77777,9,999999999,229,0.1420,0,88,999.000,999.0,99.0 +1980,7,16,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,12.8,90,102000,0,0,368,0,0,0,0,0,0,0,250,2.1,10,10,24.1,490,9,999999999,240,0.1420,0,88,999.000,999.0,99.0 +1980,7,16,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,13.3,87,102100,11,474,374,2,0,2,0,0,0,0,230,2.6,10,10,32.2,520,9,999999999,240,0.3220,0,88,999.000,999.0,99.0 +1980,7,16,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,13.3,81,102100,173,1322,370,19,2,19,2300,0,2300,750,250,2.1,9,9,32.2,550,9,999999999,229,0.3220,0,88,999.000,999.0,99.0 +1980,7,16,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,13.3,78,102100,395,1322,372,84,15,79,9600,800,9400,3120,0,0.0,9,9,32.2,550,9,999999999,229,0.3220,0,88,999.000,999.0,99.0 +1980,7,16,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,13.3,73,102100,614,1322,378,189,39,171,20800,3800,19000,5130,310,3.1,9,9,32.2,1520,9,999999999,220,0.3220,0,88,999.000,999.0,99.0 +1980,7,16,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,13.3,70,102100,816,1322,392,248,17,237,28600,1500,27700,10110,330,2.6,10,10,32.2,610,9,999999999,220,0.3220,0,88,999.000,999.0,99.0 +1980,7,16,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,13.3,66,102200,985,1322,398,220,7,215,26300,600,25900,10300,320,2.1,10,10,32.2,610,9,999999999,220,0.3220,0,88,999.000,999.0,99.0 +1980,7,16,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,13.3,66,102100,1111,1322,398,402,15,390,46800,1400,45600,16610,310,3.1,10,10,32.2,910,9,999999999,209,0.3220,0,88,999.000,999.0,99.0 +1980,7,16,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,13.3,63,102100,1185,1322,401,355,2,353,42000,200,41800,15860,340,2.1,10,10,32.2,1010,9,999999999,209,0.3220,0,88,999.000,999.0,99.0 +1980,7,16,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,13.3,55,102200,1201,1322,393,751,395,391,82500,43000,43400,20130,10,4.1,8,8,48.3,1010,9,999999999,200,0.3220,0,88,999.000,999.0,99.0 +1980,7,16,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,12.8,52,102100,1158,1322,376,826,565,329,88400,59000,36600,15880,350,4.6,5,3,48.3,77777,9,999999999,200,0.3220,0,88,999.000,999.0,99.0 +1980,7,16,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,13.3,48,102100,1060,1322,385,738,534,308,78400,55600,33700,11260,360,3.1,3,3,64.4,77777,9,999999999,189,0.3220,0,88,999.000,999.0,99.0 +1980,7,16,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,13.3,48,102000,913,1322,385,608,475,279,63800,49100,29800,7780,350,4.6,3,3,64.4,77777,9,999999999,189,0.3220,0,88,999.000,999.0,99.0 +1980,7,16,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,12.8,48,102000,728,1322,377,462,488,192,48700,49500,21400,4280,340,5.7,2,2,112.7,77777,9,999999999,189,0.3220,0,88,999.000,999.0,99.0 +1980,7,16,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,12.2,50,102000,516,1322,371,258,297,142,27600,29200,16200,2920,360,5.2,2,2,64.4,77777,9,999999999,189,0.3220,0,88,999.000,999.0,99.0 +1980,7,16,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,12.8,55,102000,293,1322,355,118,178,78,12400,14100,9300,1490,350,5.2,0,0,64.4,77777,9,999999999,179,0.3220,0,88,999.000,999.0,99.0 +1980,7,16,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,12.8,63,102000,78,1179,344,24,8,23,2600,500,2500,550,360,6.7,0,0,64.4,77777,9,999999999,179,0.3220,0,88,999.000,999.0,99.0 +1980,7,16,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,12.2,68,102000,0,0,336,0,0,0,0,0,0,0,340,5.7,0,0,24.1,77777,9,999999999,179,0.1420,0,88,999.000,999.0,99.0 +1980,7,16,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,11.7,70,102100,0,0,330,0,0,0,0,0,0,0,330,3.6,0,0,24.1,77777,9,999999999,179,0.1420,0,88,999.000,999.0,99.0 +1980,7,16,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,11.7,75,102100,0,0,325,0,0,0,0,0,0,0,350,2.6,0,0,24.1,77777,9,999999999,170,0.1420,0,88,999.000,999.0,99.0 +1980,7,16,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,11.1,78,102100,0,0,320,0,0,0,0,0,0,0,330,3.1,0,0,24.1,77777,9,999999999,170,0.1420,0,88,999.000,999.0,99.0 +1980,7,17,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,10.6,78,102100,0,0,322,0,0,0,0,0,0,0,320,4.1,1,1,24.1,77777,9,999999999,170,0.1420,0,88,999.000,999.0,99.0 +1980,7,17,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,10.6,78,102100,0,0,327,0,0,0,0,0,0,0,310,3.1,2,2,24.1,77777,9,999999999,160,0.1420,0,88,999.000,999.0,99.0 +1980,7,17,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,10.6,78,102100,0,0,333,0,0,0,0,0,0,0,320,3.6,4,4,24.1,77777,9,999999999,160,0.1420,0,88,999.000,999.0,99.0 +1980,7,17,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,10.6,78,102100,0,0,342,0,0,0,0,0,0,0,330,3.6,8,7,24.1,820,9,999999999,160,0.1420,0,88,999.000,999.0,99.0 +1980,7,17,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,10.6,78,102200,10,452,342,4,3,4,0,0,0,0,340,3.6,10,7,48.3,850,9,999999999,160,0.0750,0,88,999.000,999.0,99.0 +1980,7,17,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,10.0,75,102200,170,1322,364,33,5,32,3700,0,3700,1150,340,3.6,10,10,48.3,820,9,999999999,160,0.0750,0,88,999.000,999.0,99.0 +1980,7,17,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,10.6,72,102200,392,1322,371,83,0,83,9500,0,9500,3230,350,2.6,10,10,40.2,880,9,999999999,150,0.0750,0,88,999.000,999.0,99.0 +1980,7,17,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,10.6,70,102200,612,1322,374,205,3,204,23100,300,23000,7640,340,2.1,10,10,40.2,820,9,999999999,150,0.0750,0,88,999.000,999.0,99.0 +1980,7,17,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,11.1,65,102200,814,1322,383,234,10,227,27000,900,26500,9790,330,2.6,10,10,48.3,850,9,999999999,150,0.0750,0,88,999.000,999.0,99.0 +1980,7,17,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,11.1,59,102200,983,1322,367,590,344,334,63900,37100,36200,10450,350,4.1,7,7,40.2,880,9,999999999,150,0.0750,0,88,999.000,999.0,99.0 +1980,7,17,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,11.7,59,102200,1109,1322,385,333,85,262,37600,9100,29900,10290,350,2.6,9,9,40.2,910,9,999999999,150,0.0750,0,88,999.000,999.0,99.0 +1980,7,17,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,11.7,55,102100,1183,1322,376,718,446,318,77400,46700,35600,16740,360,1.5,7,7,40.2,1010,9,999999999,150,0.0750,0,88,999.000,999.0,99.0 +1980,7,17,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,12.2,53,102000,1199,1322,366,931,871,139,95400,87200,16100,5930,300,2.6,3,2,40.2,77777,9,999999999,150,0.0750,0,88,999.000,999.0,99.0 +1980,7,17,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,12.2,47,102000,1157,1322,372,845,850,99,87400,85300,12700,4080,350,4.1,2,1,40.2,77777,9,999999999,139,0.0750,0,88,999.000,999.0,99.0 +1980,7,17,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,12.2,45,101900,1059,1322,380,731,665,197,77600,67800,23200,7070,360,4.1,6,2,64.4,77777,9,999999999,139,0.0750,0,88,999.000,999.0,99.0 +1980,7,17,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,12.2,44,101800,912,1322,387,456,395,183,50000,41100,21600,4920,350,5.2,7,3,64.4,77777,9,999999999,139,0.0750,0,88,999.000,999.0,99.0 +1980,7,17,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,12.2,47,101700,726,1322,390,361,312,189,39200,32900,21200,4310,350,5.2,9,6,64.4,6100,9,999999999,139,0.0750,0,88,999.000,999.0,99.0 +1980,7,17,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,12.8,52,101700,514,1322,376,294,387,143,30500,36800,16200,2820,340,5.7,8,3,64.4,77777,9,999999999,150,0.0750,0,88,999.000,999.0,99.0 +1980,7,17,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,12.8,59,101700,290,1322,364,139,326,67,14500,25500,8900,1220,340,5.7,8,3,64.4,77777,9,999999999,150,0.0750,0,88,999.000,999.0,99.0 +1980,7,17,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,12.8,61,101700,76,1157,375,21,20,20,2300,1100,2300,490,340,5.2,10,7,24.1,4570,9,999999999,160,0.0750,0,88,999.000,999.0,99.0 +1980,7,17,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,12.8,66,101600,0,0,383,0,0,0,0,0,0,0,350,6.2,10,9,24.1,3660,9,999999999,160,0.1420,0,88,999.000,999.0,99.0 +1980,7,17,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,12.8,70,101600,0,0,369,0,0,0,0,0,0,0,320,3.1,10,8,24.1,3660,9,999999999,160,0.1420,0,88,999.000,999.0,99.0 +1980,7,17,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,13.3,75,101600,0,0,386,0,0,0,0,0,0,0,330,3.6,10,10,24.1,3660,9,999999999,170,0.1420,0,88,999.000,999.0,99.0 +1980,7,17,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,13.3,78,101600,0,0,383,0,0,0,0,0,0,0,300,3.1,10,10,24.1,3660,9,999999999,170,0.1420,0,88,999.000,999.0,99.0 +1980,7,18,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,13.3,78,101600,0,0,364,0,0,0,0,0,0,0,330,2.1,10,8,24.1,2740,9,999999999,179,0.1410,0,88,999.000,999.0,99.0 +1980,7,18,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,12.8,81,101600,0,0,346,0,0,0,0,0,0,0,330,3.1,10,5,24.1,2740,9,999999999,179,0.1410,0,88,999.000,999.0,99.0 +1980,7,18,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,12.8,81,101600,0,0,346,0,0,0,0,0,0,0,320,2.6,10,5,24.1,77777,9,999999999,189,0.1410,0,88,999.000,999.0,99.0 +1980,7,18,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,12.8,84,101600,0,0,341,0,0,0,0,0,0,0,360,3.6,8,4,24.1,77777,9,999999999,189,0.1410,0,88,999.000,999.0,99.0 +1980,7,18,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,12.8,87,101600,9,430,338,5,1,5,0,0,0,0,350,4.6,7,4,16.1,4570,9,999999999,189,0.1580,0,88,999.000,999.0,99.0 +1980,7,18,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,12.8,84,101700,167,1323,343,53,85,42,5800,5300,5100,880,350,6.2,6,5,24.1,4570,9,999999999,200,0.1580,0,88,999.000,999.0,99.0 +1980,7,18,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,12.8,78,101700,389,1323,369,109,38,98,12000,3400,11000,2650,310,3.1,9,9,24.1,4880,9,999999999,200,0.1580,0,88,999.000,999.0,99.0 +1980,7,18,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,12.8,75,101700,609,1323,354,285,207,189,31100,21000,21400,4590,320,5.7,6,6,24.1,7620,9,999999999,209,0.1580,0,88,999.000,999.0,99.0 +1980,7,18,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,12.8,66,101700,811,1323,359,468,390,228,49300,40000,24700,5540,340,1.5,6,4,24.1,7620,9,999999999,209,0.1580,0,88,999.000,999.0,99.0 +1980,7,18,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,12.8,59,101600,981,1323,367,627,487,265,66900,50600,29300,8170,250,1.5,5,4,32.2,77777,9,999999999,220,0.1580,0,88,999.000,999.0,99.0 +1980,7,18,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,12.8,53,101600,1108,1323,373,714,532,268,77600,55700,30900,10950,30,1.5,4,3,32.2,77777,9,999999999,220,0.1580,0,88,999.000,999.0,99.0 +1980,7,18,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,13.3,54,101600,1181,1323,376,873,679,265,92000,68800,30500,13450,330,2.1,3,3,48.3,77777,9,999999999,220,0.1580,0,88,999.000,999.0,99.0 +1980,7,18,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,13.3,47,101500,1198,1323,379,875,763,182,91700,76800,22100,9230,300,5.2,3,1,48.3,77777,9,999999999,229,0.1580,0,88,999.000,999.0,99.0 +1980,7,18,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,11.1,38,101500,1155,1323,382,861,797,163,90900,80400,20500,7150,330,5.7,3,1,40.2,77777,9,999999999,229,0.1580,0,88,999.000,999.0,99.0 +1980,7,18,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,12.8,41,101500,1057,1323,387,677,623,177,72400,63800,21200,6390,320,4.1,3,1,32.2,77777,9,999999999,240,0.1580,0,88,999.000,999.0,99.0 +1980,7,18,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,12.8,41,101400,910,1323,387,643,729,140,68800,74500,17400,3900,340,5.7,3,1,32.2,77777,9,999999999,240,0.1580,0,88,999.000,999.0,99.0 +1980,7,18,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,12.8,42,101400,724,1323,384,457,572,143,47600,56700,16500,3130,330,5.7,3,1,32.2,77777,9,999999999,240,0.1580,0,88,999.000,999.0,99.0 +1980,7,18,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,12.8,47,101400,512,1323,375,296,494,104,31700,47100,13400,1980,330,6.2,3,1,32.2,77777,9,999999999,240,0.1580,0,88,999.000,999.0,99.0 +1980,7,18,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,11.1,46,101500,288,1323,365,130,303,64,13700,23600,8500,1160,350,6.2,3,1,32.2,77777,9,999999999,240,0.1580,0,88,999.000,999.0,99.0 +1980,7,18,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,9.4,47,101500,73,1135,360,26,34,23,2800,1500,2700,480,320,3.6,5,3,64.4,77777,9,999999999,240,0.1580,0,88,999.000,999.0,99.0 +1980,7,18,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,11.1,63,101600,0,0,349,0,0,0,0,0,0,0,360,4.6,5,3,24.1,77777,9,999999999,240,0.1410,0,88,999.000,999.0,99.0 +1980,7,18,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,11.7,70,101700,0,0,344,0,0,0,0,0,0,0,340,4.1,5,3,24.1,77777,9,999999999,250,0.1410,0,88,999.000,999.0,99.0 +1980,7,18,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,11.7,75,101700,0,0,339,0,0,0,0,0,0,0,300,4.6,4,3,24.1,77777,9,999999999,250,0.1410,0,88,999.000,999.0,99.0 +1980,7,18,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,11.7,78,101700,0,0,323,0,0,0,0,0,0,0,320,4.6,2,0,24.1,77777,9,999999999,250,0.1410,0,88,999.000,999.0,99.0 +1980,7,19,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,11.7,81,101800,0,0,320,0,0,0,0,0,0,0,300,2.6,0,0,24.1,77777,9,999999999,250,0.1410,0,88,999.000,999.0,99.0 +1980,7,19,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,11.7,81,101800,0,0,320,0,0,0,0,0,0,0,360,2.1,0,0,24.1,77777,9,999999999,250,0.1410,0,88,999.000,999.0,99.0 +1980,7,19,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,11.7,84,101800,0,0,317,0,0,0,0,0,0,0,290,2.1,0,0,24.1,77777,9,999999999,250,0.1410,0,88,999.000,999.0,99.0 +1980,7,19,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,11.7,90,101800,0,0,319,0,0,0,0,0,0,0,200,2.6,1,1,24.1,77777,9,999999999,250,0.1410,0,88,999.000,999.0,99.0 +1980,7,19,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,12.8,93,101900,8,408,338,5,12,4,0,0,0,0,210,1.5,8,6,24.1,1160,9,999999999,250,0.0590,0,88,999.000,999.0,99.0 +1980,7,19,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,12.8,84,101900,163,1323,356,52,2,52,5700,0,5700,1580,0,0.0,10,8,40.2,1680,9,999999999,259,0.0590,0,88,999.000,999.0,99.0 +1980,7,19,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,12.8,78,101900,386,1323,380,127,5,126,14100,300,14000,4250,0,0.0,10,10,40.2,1520,9,999999999,270,0.0590,0,88,999.000,999.0,99.0 +1980,7,19,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,12.8,75,101900,607,1323,382,194,5,192,21900,400,21700,7320,120,1.5,10,10,48.3,1680,9,999999999,270,0.0590,0,88,999.000,999.0,99.0 +1980,7,19,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,13.3,70,102000,809,1323,392,253,1,253,29100,100,29000,10510,40,1.5,10,10,48.3,1100,9,999999999,279,0.0590,0,88,999.000,999.0,99.0 +1980,7,19,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,13.3,66,102000,979,1323,387,544,223,378,59200,23600,41700,12160,50,3.1,10,9,48.3,1370,9,999999999,279,0.0590,0,88,999.000,999.0,99.0 +1980,7,19,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,13.3,59,102000,1106,1323,396,568,217,386,62400,23100,43100,15060,360,2.6,9,9,48.3,1520,9,999999999,279,0.0590,0,88,999.000,999.0,99.0 +1980,7,19,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,13.9,57,102000,1180,1323,403,569,193,396,62800,20600,44400,18310,350,3.1,9,9,64.4,1520,9,999999999,290,0.0590,0,88,999.000,999.0,99.0 +1980,7,19,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,14.4,52,102000,1196,1323,415,506,108,407,55800,11500,45300,19730,320,2.6,9,9,64.4,1680,9,999999999,300,0.0590,0,88,999.000,999.0,99.0 +1980,7,19,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,14.4,56,102000,1154,1323,409,497,113,398,54800,12100,44200,17210,300,4.6,9,9,64.4,1340,9,999999999,300,0.0590,0,88,999.000,999.0,99.0 +1980,7,19,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,15.0,56,101900,1056,1323,404,471,227,289,52000,24700,32300,9920,350,4.6,8,8,64.4,1340,9,999999999,300,0.0590,0,88,999.000,999.0,99.0 +1980,7,19,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,15.0,56,101900,908,1323,413,353,74,302,38900,7600,33700,10570,330,3.6,10,9,64.4,1830,9,999999999,309,0.0590,0,88,999.000,999.0,99.0 +1980,7,19,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,15.0,60,101900,722,1323,407,278,57,247,30600,5700,27400,7560,330,4.1,10,9,64.4,1830,9,999999999,300,0.0590,0,88,999.000,999.0,99.0 +1980,7,19,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,15.0,62,101900,509,1323,416,159,6,157,17900,500,17700,5770,340,4.6,10,10,64.4,1520,9,999999999,300,0.0590,0,88,999.000,999.0,99.0 +1980,7,19,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,15.6,68,101900,285,1323,410,72,6,71,8100,200,8100,2510,340,5.2,10,10,32.2,1010,9,999999999,300,0.0590,0,88,999.000,999.0,99.0 +1980,7,19,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,15.6,71,101900,71,1135,396,12,7,12,1400,400,1300,310,330,5.2,9,9,32.2,1010,9,999999999,290,0.0590,0,88,999.000,999.0,99.0 +1980,7,19,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,15.0,73,101900,0,0,367,0,0,0,0,0,0,0,360,3.6,5,5,24.1,77777,9,999999999,279,0.1410,0,88,999.000,999.0,99.0 +1980,7,19,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,14.4,76,101900,0,0,358,0,0,0,0,0,0,0,350,3.6,4,4,24.1,77777,9,999999999,279,0.1410,0,88,999.000,999.0,99.0 +1980,7,19,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,14.4,76,101900,0,0,341,0,0,0,0,0,0,0,300,2.6,0,0,24.1,77777,9,999999999,279,0.1410,0,88,999.000,999.0,99.0 +1980,7,19,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,14.4,81,101900,0,0,336,0,0,0,0,0,0,0,300,2.6,0,0,24.1,77777,9,999999999,270,0.1410,0,88,999.000,999.0,99.0 +1980,7,20,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,14.4,84,101900,0,0,344,0,0,0,0,0,0,0,330,3.1,2,2,24.1,77777,9,999999999,270,0.1410,0,88,999.000,999.0,99.0 +1980,7,20,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,14.4,87,101800,0,0,342,0,0,0,0,0,0,0,330,2.1,2,2,24.1,77777,9,999999999,259,0.1410,0,88,999.000,999.0,99.0 +1980,7,20,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,14.4,87,101800,0,0,358,0,0,0,0,0,0,0,300,2.1,7,7,24.1,640,9,999999999,250,0.1410,0,88,999.000,999.0,99.0 +1980,7,20,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,14.4,90,101800,0,0,351,0,0,0,0,0,0,0,310,2.6,8,6,24.1,550,9,999999999,250,0.1410,0,88,999.000,999.0,99.0 +1980,7,20,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,14.4,87,101800,7,386,382,3,0,3,0,0,0,0,340,3.1,10,10,32.2,430,9,999999999,250,0.3220,0,88,999.000,999.0,99.0 +1980,7,20,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,14.4,87,101800,160,1323,382,30,0,30,3400,0,3400,1080,330,2.6,10,10,32.2,430,9,999999999,250,0.3220,0,88,999.000,999.0,99.0 +1980,7,20,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,14.4,81,101800,383,1323,387,131,4,130,14500,300,14400,4310,350,3.6,10,10,32.2,460,9,999999999,250,0.3220,0,88,999.000,999.0,99.0 +1980,7,20,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,14.4,76,101800,604,1323,393,155,3,154,17800,200,17700,6280,330,2.6,10,10,32.2,520,9,999999999,250,0.3220,0,88,999.000,999.0,99.0 +1980,7,20,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,15.0,73,101800,807,1323,400,217,5,214,25200,400,25000,9330,10,1.5,10,10,40.2,580,9,999999999,250,0.3220,0,88,999.000,999.0,99.0 +1980,7,20,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,15.0,71,101800,977,1323,392,357,32,333,39300,3300,36900,12290,90,1.5,9,9,40.2,610,9,999999999,250,0.3220,0,88,999.000,999.0,99.0 +1980,7,20,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,15.6,60,101700,1104,1323,373,760,597,261,79500,60200,29200,10240,290,5.2,1,1,48.3,77777,9,999999999,250,0.3220,0,88,999.000,999.0,99.0 +1980,7,20,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,16.1,56,101600,1178,1323,375,836,645,260,88200,65400,29800,13030,340,3.6,0,0,40.2,77777,9,999999999,250,0.3220,0,88,999.000,999.0,99.0 +1980,7,20,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,16.1,51,101600,1194,1323,383,889,692,263,93900,70200,30400,14060,330,4.6,0,0,64.4,77777,9,999999999,250,0.3220,0,88,999.000,999.0,99.0 +1980,7,20,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,17.2,49,101500,1152,1323,393,850,679,257,89500,68700,29500,11740,320,4.6,0,0,64.4,77777,9,999999999,250,0.3220,0,88,999.000,999.0,99.0 +1980,7,20,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,17.2,45,101400,1054,1323,402,755,644,241,79000,65000,27200,8350,330,6.2,0,0,64.4,77777,9,999999999,250,0.3220,0,88,999.000,999.0,99.0 +1980,7,20,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,17.2,45,101400,906,1323,402,619,588,214,66600,61000,24700,5770,300,5.7,0,0,64.4,77777,9,999999999,250,0.3220,0,88,999.000,999.0,99.0 +1980,7,20,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,16.7,45,101300,720,1323,399,451,502,177,47900,50900,20200,3890,330,7.7,0,0,64.4,77777,9,999999999,250,0.3220,0,88,999.000,999.0,99.0 +1980,7,20,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,16.1,45,101300,507,1323,395,270,366,129,28200,34700,14900,2510,310,5.2,0,0,64.4,77777,9,999999999,250,0.3220,0,88,999.000,999.0,99.0 +1980,7,20,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,16.1,51,101300,282,1323,383,112,167,76,11800,12900,9100,1450,300,6.7,0,0,64.4,77777,9,999999999,259,0.3220,0,88,999.000,999.0,99.0 +1980,7,20,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,15.0,52,101300,69,1114,374,23,6,22,2500,0,2500,720,300,5.2,0,0,64.4,77777,9,999999999,259,0.3220,0,88,999.000,999.0,99.0 +1980,7,20,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,15.0,58,101300,0,0,365,0,0,0,0,0,0,0,300,5.2,0,0,24.1,77777,9,999999999,259,0.1410,0,88,999.000,999.0,99.0 +1980,7,20,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,14.4,58,101300,0,0,362,0,0,0,0,0,0,0,320,4.1,0,0,24.1,77777,9,999999999,270,0.1410,0,88,999.000,999.0,99.0 +1980,7,20,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,14.4,62,101300,0,0,356,0,0,0,0,0,0,0,310,3.1,0,0,24.1,77777,9,999999999,270,0.1410,0,88,999.000,999.0,99.0 +1980,7,20,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,14.4,64,101300,0,0,354,0,0,0,0,0,0,0,320,2.1,0,0,24.1,77777,9,999999999,270,0.1410,0,88,999.000,999.0,99.0 +1980,7,21,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,14.4,66,101300,0,0,351,0,0,0,0,0,0,0,320,3.1,0,0,24.1,77777,9,999999999,270,0.1410,0,88,999.000,999.0,99.0 +1980,7,21,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,14.4,73,101300,0,0,343,0,0,0,0,0,0,0,290,3.1,0,0,24.1,77777,9,999999999,279,0.1410,0,88,999.000,999.0,99.0 +1980,7,21,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,14.4,71,101200,0,0,346,0,0,0,0,0,0,0,310,2.6,0,0,24.1,77777,9,999999999,279,0.1410,0,88,999.000,999.0,99.0 +1980,7,21,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,14.4,76,101200,0,0,341,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,279,0.1410,0,88,999.000,999.0,99.0 +1980,7,21,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,14.4,76,101200,7,364,341,3,4,2,0,0,0,0,310,2.6,0,0,80.5,77777,9,999999999,279,0.1310,0,88,999.000,999.0,99.0 +1980,7,21,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,14.4,68,101200,157,1323,349,60,209,35,6300,11900,4900,620,330,2.6,0,0,80.5,77777,9,999999999,279,0.1310,0,88,999.000,999.0,99.0 +1980,7,21,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,15.6,66,101200,380,1323,358,209,500,65,21700,43700,9100,1220,330,2.6,0,0,80.5,77777,9,999999999,279,0.1310,0,88,999.000,999.0,99.0 +1980,7,21,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,15.6,58,101200,601,1323,369,389,655,91,41100,64100,12000,1900,320,3.6,0,0,80.5,77777,9,999999999,279,0.1310,0,88,999.000,999.0,99.0 +1980,7,21,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,16.7,54,101200,804,1323,381,567,745,113,59100,74100,14000,2580,290,4.1,0,0,80.5,77777,9,999999999,279,0.1310,0,88,999.000,999.0,99.0 +1980,7,21,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,17.2,51,101100,975,1323,390,719,798,129,75900,80400,16500,3720,290,3.6,0,0,80.5,77777,9,999999999,279,0.1310,0,88,999.000,999.0,99.0 +1980,7,21,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,18.9,47,101100,1102,1323,410,834,831,140,88900,84200,18600,5340,300,5.2,0,0,80.5,77777,9,999999999,270,0.1310,0,88,999.000,999.0,99.0 +1980,7,21,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,19.4,44,101100,1176,1323,420,902,847,146,92200,84800,16700,5480,270,5.2,0,0,80.5,77777,9,999999999,270,0.1310,0,88,999.000,999.0,99.0 +1980,7,21,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.0,20.0,41,101000,1193,1323,430,915,848,148,93500,84900,16800,5940,310,5.2,0,0,80.5,77777,9,999999999,270,0.1310,0,88,999.000,999.0,99.0 +1980,7,21,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.2,20.0,37,100900,1150,1323,442,877,840,144,93700,85200,19400,6350,290,5.2,0,0,80.5,77777,9,999999999,270,0.1310,0,88,999.000,999.0,99.0 +1980,7,21,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.8,20.0,35,100800,1052,1323,446,789,820,136,83800,82900,17800,4580,300,6.2,0,0,64.4,77777,9,999999999,270,0.1310,0,88,999.000,999.0,99.0 +1980,7,21,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,37.8,20.0,35,100700,904,1323,446,657,778,123,68900,78100,15500,3170,300,5.7,0,0,64.4,77777,9,999999999,270,0.1310,0,88,999.000,999.0,99.0 +1980,7,21,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.7,20.0,38,100700,718,1323,439,492,713,104,52400,71600,13500,2370,320,5.2,0,0,64.4,77777,9,999999999,270,0.1310,0,88,999.000,999.0,99.0 +1980,7,21,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.0,18.9,39,100800,504,1323,428,309,600,79,32300,56700,10700,1570,310,3.6,0,0,64.4,77777,9,999999999,270,0.1310,0,88,999.000,999.0,99.0 +1980,7,21,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,17.8,40,100800,280,1323,418,137,394,53,14000,30800,7500,960,300,4.1,0,0,64.4,77777,9,999999999,270,0.1310,0,88,999.000,999.0,99.0 +1980,7,21,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,17.8,46,100900,66,1092,411,24,58,18,2300,2000,2200,310,320,3.6,1,1,32.2,77777,9,999999999,270,0.1310,0,88,999.000,999.0,99.0 +1980,7,21,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,17.2,49,101000,0,0,393,0,0,0,0,0,0,0,350,2.6,0,0,32.2,77777,9,999999999,270,0.1410,0,88,999.000,999.0,99.0 +1980,7,21,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,18.3,67,101100,0,0,375,0,0,0,0,0,0,0,90,3.1,0,0,24.1,77777,9,999999999,279,0.1410,0,88,999.000,999.0,99.0 +1980,7,21,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,17.2,66,101200,0,0,368,0,0,0,0,0,0,0,110,3.1,0,0,24.1,77777,9,999999999,279,0.1410,0,88,999.000,999.0,99.0 +1980,7,21,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,16.7,71,101200,0,0,359,0,0,0,0,0,0,0,100,3.1,0,0,24.1,77777,9,999999999,279,0.1410,0,88,999.000,999.0,99.0 +1980,7,22,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,17.2,79,101200,0,0,354,0,0,0,0,0,0,0,230,2.6,0,0,24.1,77777,9,999999999,279,0.1400,0,88,999.000,999.0,99.0 +1980,7,22,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,16.1,76,101300,0,0,351,0,0,0,0,0,0,0,230,2.6,0,0,24.1,77777,9,999999999,279,0.1400,0,88,999.000,999.0,99.0 +1980,7,22,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,16.1,78,101300,0,0,348,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,279,0.1400,0,88,999.000,999.0,99.0 +1980,7,22,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,16.1,81,101300,0,0,345,0,0,0,0,0,0,0,90,2.6,0,0,24.1,77777,9,999999999,279,0.1400,0,88,999.000,999.0,99.0 +1980,7,22,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,14.4,73,101400,6,342,343,6,25,3,0,0,0,0,170,3.1,0,0,64.4,77777,9,999999999,279,0.0620,0,88,999.000,999.0,99.0 +1980,7,22,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,14.4,73,101500,153,1323,343,67,356,26,6900,21600,4400,480,170,4.6,0,0,48.3,77777,9,999999999,270,0.0620,0,88,999.000,999.0,99.0 +1980,7,22,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,14.4,68,101600,377,1323,355,213,575,49,22100,50800,7600,990,150,4.1,1,1,48.3,77777,9,999999999,270,0.0620,0,88,999.000,999.0,99.0 +1980,7,22,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,14.4,66,101600,598,1323,363,414,756,72,43700,73400,10400,1550,180,4.1,2,2,48.3,77777,9,999999999,270,0.0620,0,88,999.000,999.0,99.0 +1980,7,22,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,15.0,62,101600,802,1323,372,571,793,89,61000,79600,12700,2200,160,4.1,2,2,32.2,77777,9,999999999,259,0.0620,0,88,999.000,999.0,99.0 +1980,7,22,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,15.6,58,101700,973,1323,381,667,749,114,71300,75800,15400,3390,200,3.1,2,2,32.2,77777,9,999999999,259,0.0620,0,88,999.000,999.0,99.0 +1980,7,22,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,15.6,58,101700,1100,1323,391,756,638,224,79900,64800,25900,8820,360,3.6,5,5,32.2,77777,9,999999999,259,0.0620,0,88,999.000,999.0,99.0 +1980,7,22,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,16.7,54,101700,1174,1323,408,636,359,316,68500,37500,35100,16050,290,6.2,6,6,32.2,910,9,999999999,250,0.0620,0,88,999.000,999.0,99.0 +1980,7,22,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,16.7,54,101700,1191,1323,394,863,781,158,91800,79100,20500,7970,290,5.2,2,2,32.2,77777,9,999999999,250,0.0620,0,88,999.000,999.0,99.0 +1980,7,22,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,16.7,51,101700,1149,1323,400,851,809,147,90700,82000,19400,6410,310,4.1,2,2,32.2,77777,9,999999999,250,0.0620,0,88,999.000,999.0,99.0 +1980,7,22,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,16.7,51,101700,1050,1323,404,848,880,147,89200,88700,18700,4820,310,4.1,3,3,32.2,77777,9,999999999,240,0.0620,0,88,999.000,999.0,99.0 +1980,7,22,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,16.7,58,101700,902,1323,392,590,653,143,62900,66600,17400,3920,350,6.7,3,3,32.2,77777,9,999999999,240,0.0620,0,88,999.000,999.0,99.0 +1980,7,22,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,16.7,56,101700,715,1323,395,458,588,140,47800,58200,16300,3050,350,6.7,3,3,32.2,77777,9,999999999,240,0.0620,0,88,999.000,999.0,99.0 +1980,7,22,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,15.6,58,101700,502,1323,381,316,610,84,33000,57400,11200,1650,350,7.7,2,2,48.3,77777,9,999999999,229,0.0620,0,88,999.000,999.0,99.0 +1980,7,22,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,15.0,60,101800,277,1323,374,115,257,61,12100,19700,8000,1100,350,5.2,2,2,48.3,77777,9,999999999,229,0.0620,0,88,999.000,999.0,99.0 +1980,7,22,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,13.9,64,101800,64,1070,362,31,141,18,2900,5500,2500,310,340,5.2,2,2,32.2,77777,9,999999999,220,0.0620,0,88,999.000,999.0,99.0 +1980,7,22,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,13.9,70,101900,0,0,349,0,0,0,0,0,0,0,350,6.2,1,1,24.1,77777,9,999999999,220,0.1400,0,88,999.000,999.0,99.0 +1980,7,22,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,13.3,73,101900,0,0,343,0,0,0,0,0,0,0,340,4.1,1,1,24.1,77777,9,999999999,220,0.1400,0,88,999.000,999.0,99.0 +1980,7,22,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,13.3,78,101900,0,0,332,0,0,0,0,0,0,0,340,4.6,0,0,24.1,77777,9,999999999,209,0.1400,0,88,999.000,999.0,99.0 +1980,7,22,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,12.8,78,102000,0,0,329,0,0,0,0,0,0,0,320,4.6,0,0,24.1,77777,9,999999999,209,0.1400,0,88,999.000,999.0,99.0 +1980,7,23,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,13.3,75,102000,0,0,335,0,0,0,0,0,0,0,320,5.2,0,0,24.1,77777,9,999999999,200,0.1400,0,88,999.000,999.0,99.0 +1980,7,23,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,13.3,87,102000,0,0,339,0,0,0,0,0,0,0,330,4.6,3,3,24.1,77777,9,999999999,200,0.1400,0,88,999.000,999.0,99.0 +1980,7,23,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,12.2,81,102000,0,0,346,0,0,0,0,0,0,0,340,4.6,6,6,24.1,700,9,999999999,189,0.1400,0,88,999.000,999.0,99.0 +1980,7,23,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,12.2,75,102000,0,0,379,0,0,0,0,0,0,0,330,4.6,10,10,24.1,700,9,999999999,189,0.1400,0,88,999.000,999.0,99.0 +1980,7,23,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,12.2,75,102100,5,298,379,1,0,1,0,0,0,0,320,4.6,10,10,32.2,760,9,999999999,189,0.0750,0,88,999.000,999.0,99.0 +1980,7,23,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,12.2,75,102100,150,1324,368,44,17,42,4800,1200,4700,990,300,3.1,10,9,32.2,760,9,999999999,179,0.0750,0,88,999.000,999.0,99.0 +1980,7,23,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,11.7,70,102100,374,1324,381,99,14,95,11200,800,11000,3480,320,5.7,10,10,32.2,910,9,999999999,179,0.0750,0,88,999.000,999.0,99.0 +1980,7,23,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,11.7,70,102100,596,1324,381,174,6,171,19700,500,19500,6700,340,3.6,10,10,48.3,790,9,999999999,179,0.0750,0,88,999.000,999.0,99.0 +1980,7,23,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,11.7,70,102100,799,1324,381,266,12,259,30400,1100,29800,10590,320,4.1,10,10,48.3,610,9,999999999,170,0.0750,0,88,999.000,999.0,99.0 +1980,7,23,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,11.7,68,102100,971,1324,384,262,5,259,30900,400,30500,11810,310,3.1,10,10,48.3,640,9,999999999,170,0.0750,0,88,999.000,999.0,99.0 +1980,7,23,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,12.8,68,102100,1098,1324,391,363,7,358,42500,700,41900,15630,310,4.6,10,10,48.3,880,9,999999999,170,0.0750,0,88,999.000,999.0,99.0 +1980,7,23,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,12.8,61,102100,1172,1324,400,430,6,424,50000,600,49500,17850,310,5.2,10,10,48.3,910,9,999999999,160,0.0750,0,88,999.000,999.0,99.0 +1980,7,23,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,13.3,57,102000,1189,1324,390,639,295,373,70300,32100,41500,18290,310,6.2,8,8,48.3,910,9,999999999,160,0.0750,0,88,999.000,999.0,99.0 +1980,7,23,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,13.3,52,101900,1147,1324,379,579,391,240,64000,41000,28400,10940,340,5.2,3,3,48.3,77777,9,999999999,160,0.0750,0,88,999.000,999.0,99.0 +1980,7,23,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,13.9,50,101900,1048,1324,382,780,817,131,83000,82700,17400,4410,360,5.2,2,2,48.3,77777,9,999999999,150,0.0750,0,88,999.000,999.0,99.0 +1980,7,23,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,13.3,50,101800,900,1324,373,624,781,91,64800,77700,11800,2250,360,7.2,1,1,48.3,77777,9,999999999,150,0.0750,0,88,999.000,999.0,99.0 +1980,7,23,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,13.3,50,101800,713,1324,366,506,797,75,54200,79400,11300,1770,340,6.2,0,0,48.3,77777,9,999999999,150,0.0750,0,88,999.000,999.0,99.0 +1980,7,23,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,12.8,50,101800,499,1324,363,319,688,58,33500,64900,9000,1240,320,8.2,0,0,48.3,77777,9,999999999,150,0.0750,0,88,999.000,999.0,99.0 +1980,7,23,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,13.9,59,101800,273,1324,356,146,511,40,14900,40900,6400,770,330,6.2,0,0,48.3,77777,9,999999999,160,0.0750,0,88,999.000,999.0,99.0 +1980,7,23,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,13.3,61,101800,61,1048,350,29,140,17,2600,6300,2200,310,330,7.7,0,0,48.3,77777,9,999999999,160,0.0750,0,88,999.000,999.0,99.0 +1980,7,23,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,12.8,63,101800,0,0,344,0,0,0,0,0,0,0,320,5.2,0,0,24.1,77777,9,999999999,160,0.1400,0,88,999.000,999.0,99.0 +1980,7,23,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,12.8,70,101800,0,0,336,0,0,0,0,0,0,0,330,6.2,0,0,24.1,77777,9,999999999,160,0.1400,0,88,999.000,999.0,99.0 +1980,7,23,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,12.2,73,101800,0,0,331,0,0,0,0,0,0,0,320,5.2,0,0,24.1,77777,9,999999999,170,0.1400,0,88,999.000,999.0,99.0 +1980,7,23,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,11.7,75,101800,0,0,325,0,0,0,0,0,0,0,310,4.6,0,0,24.1,77777,9,999999999,170,0.1400,0,88,999.000,999.0,99.0 +1980,7,24,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,11.1,75,101800,0,0,322,0,0,0,0,0,0,0,330,5.2,0,0,24.1,77777,9,999999999,170,0.1400,0,88,999.000,999.0,99.0 +1980,7,24,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,10.6,75,101900,0,0,319,0,0,0,0,0,0,0,340,2.6,0,0,24.1,77777,9,999999999,179,0.1400,0,88,999.000,999.0,99.0 +1980,7,24,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,10.6,78,101900,0,0,316,0,0,0,0,0,0,0,320,2.6,0,0,24.1,77777,9,999999999,179,0.1400,0,88,999.000,999.0,99.0 +1980,7,24,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,10.6,80,101800,0,0,320,0,0,0,0,0,0,0,320,4.1,1,1,24.1,77777,9,999999999,179,0.1400,0,88,999.000,999.0,99.0 +1980,7,24,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,10.6,80,101900,4,276,340,0,0,0,0,0,0,0,350,2.1,10,7,24.1,6100,9,999999999,179,0.1720,0,88,999.000,999.0,99.0 +1980,7,24,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,10.6,80,101900,147,1324,345,41,9,40,4500,0,4500,1280,350,2.6,10,8,32.2,700,9,999999999,179,0.1720,0,88,999.000,999.0,99.0 +1980,7,24,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,11.7,78,101900,371,1324,373,66,5,64,7600,200,7500,2570,320,5.2,10,10,32.2,580,9,999999999,179,0.1720,0,88,999.000,999.0,99.0 +1980,7,24,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,12.2,78,102000,593,1324,376,120,1,119,14000,100,13900,5110,330,3.6,10,10,32.2,640,9,999999999,179,0.1720,0,88,999.000,999.0,99.0 +1980,7,24,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,12.2,73,102000,797,1324,363,426,232,286,46300,24200,31700,7740,360,4.1,10,8,32.2,610,9,999999999,179,0.1720,0,88,999.000,999.0,99.0 +1980,7,24,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,12.8,70,102000,968,1324,388,342,4,339,39300,400,39000,14200,310,3.6,10,10,32.2,670,9,999999999,189,0.1720,0,88,999.000,999.0,99.0 +1980,7,24,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,12.2,61,101900,1096,1324,385,357,67,302,39500,6800,33900,12990,270,2.6,10,9,32.2,820,9,999999999,189,0.1720,0,88,999.000,999.0,99.0 +1980,7,24,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,12.8,57,101900,1171,1324,370,852,543,371,90300,56600,40100,18710,290,3.1,10,4,32.2,77777,9,999999999,189,0.1720,0,88,999.000,999.0,99.0 +1980,7,24,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,12.8,52,101800,1187,1324,376,913,636,341,97800,66500,38000,18210,330,3.6,10,3,32.2,77777,9,999999999,189,0.1720,0,88,999.000,999.0,99.0 +1980,7,24,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,13.3,50,101800,1145,1324,366,872,809,170,91400,81400,20900,7080,340,2.1,0,0,32.2,77777,9,999999999,189,0.1720,0,88,999.000,999.0,99.0 +1980,7,24,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,13.9,44,101700,1046,1324,381,780,781,160,81200,78300,19100,5050,320,4.1,0,0,32.2,77777,9,999999999,189,0.1720,0,88,999.000,999.0,99.0 +1980,7,24,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,13.9,43,101700,898,1324,384,649,742,144,69100,75600,17700,3920,320,7.2,0,0,32.2,77777,9,999999999,189,0.1720,0,88,999.000,999.0,99.0 +1980,7,24,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,13.9,45,101700,710,1324,378,477,662,121,50200,65900,14800,2680,320,7.7,0,0,32.2,77777,9,999999999,189,0.1720,0,88,999.000,999.0,99.0 +1980,7,24,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,13.9,47,101700,496,1324,375,293,537,91,30300,50100,11500,1760,340,5.2,0,0,32.2,77777,9,999999999,189,0.1720,0,88,999.000,999.0,99.0 +1980,7,24,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,13.9,52,101700,270,1324,367,125,321,58,13000,24300,8100,1040,320,5.2,0,0,32.2,77777,9,999999999,179,0.1720,0,88,999.000,999.0,99.0 +1980,7,24,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,13.3,55,101800,59,1026,370,22,8,21,2400,400,2300,500,310,5.2,10,2,32.2,77777,9,999999999,179,0.1720,0,88,999.000,999.0,99.0 +1980,7,24,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,13.3,61,101800,0,0,357,0,0,0,0,0,0,0,330,5.2,3,1,24.1,77777,9,999999999,179,0.1400,0,88,999.000,999.0,99.0 +1980,7,24,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,13.3,68,101900,0,0,342,0,0,0,0,0,0,0,330,3.6,0,0,24.1,77777,9,999999999,179,0.1400,0,88,999.000,999.0,99.0 +1980,7,24,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,12.8,70,101900,0,0,336,0,0,0,0,0,0,0,340,3.1,0,0,19.3,77777,9,999999999,170,0.1400,0,88,999.000,999.0,99.0 +1980,7,24,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,12.2,73,101900,0,0,331,0,0,0,0,0,0,0,350,1.5,0,0,19.3,77777,9,999999999,170,0.1400,0,88,999.000,999.0,99.0 +1980,7,25,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,11.1,72,101900,0,0,324,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,170,0.1390,0,88,999.000,999.0,99.0 +1980,7,25,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,10.0,67,102000,0,0,323,0,0,0,0,0,0,0,320,3.1,0,0,24.1,77777,9,999999999,160,0.1390,0,88,999.000,999.0,99.0 +1980,7,25,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,10.0,70,102000,0,0,321,0,0,0,0,0,0,0,330,2.6,0,0,24.1,77777,9,999999999,160,0.1390,0,88,999.000,999.0,99.0 +1980,7,25,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,10.6,75,102000,0,0,319,0,0,0,0,0,0,0,330,2.6,0,0,24.1,77777,9,999999999,160,0.1390,0,88,999.000,999.0,99.0 +1980,7,25,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,11.7,84,102000,4,254,317,4,15,2,0,0,0,0,350,2.6,0,0,24.1,77777,9,999999999,160,0.0670,0,88,999.000,999.0,99.0 +1980,7,25,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,12.2,84,102100,143,1324,327,56,279,26,5700,16300,4000,470,310,2.1,1,1,32.2,77777,9,999999999,160,0.0670,0,88,999.000,999.0,99.0 +1980,7,25,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,12.8,81,102100,367,1324,343,202,435,81,21300,37400,10900,1480,340,2.1,4,4,32.2,77777,9,999999999,160,0.0670,0,88,999.000,999.0,99.0 +1980,7,25,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,12.8,73,102100,590,1324,354,292,342,139,30900,33600,16000,2780,350,3.6,5,5,32.2,77777,9,999999999,160,0.0670,0,88,999.000,999.0,99.0 +1980,7,25,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,12.8,68,102100,794,1324,362,508,535,186,54400,54900,21400,4360,310,3.1,6,6,32.2,700,9,999999999,160,0.0670,0,88,999.000,999.0,99.0 +1980,7,25,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,13.3,61,102100,966,1324,362,665,740,124,70500,74600,15900,3550,340,2.6,2,2,32.2,77777,9,999999999,160,0.0670,0,88,999.000,999.0,99.0 +1980,7,25,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,13.9,57,102100,1094,1324,359,804,854,96,83300,85600,12400,3330,340,4.1,0,0,32.2,77777,9,999999999,170,0.0670,0,88,999.000,999.0,99.0 +1980,7,25,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,14.4,54,102000,1169,1324,367,917,922,101,94900,92500,13000,4280,330,4.6,0,0,32.2,77777,9,999999999,170,0.0670,0,88,999.000,999.0,99.0 +1980,7,25,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,15.0,49,101900,1185,1324,379,934,927,102,96600,93100,13100,4570,340,5.2,0,0,32.2,77777,9,999999999,170,0.0670,0,88,999.000,999.0,99.0 +1980,7,25,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,14.4,44,101900,1143,1324,384,896,919,99,92600,92200,12900,3880,350,6.7,0,0,32.2,77777,9,999999999,170,0.0670,0,88,999.000,999.0,99.0 +1980,7,25,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,13.9,41,101800,1044,1324,386,802,895,94,83100,89600,12400,2930,340,6.7,0,0,32.2,77777,9,999999999,170,0.0670,0,88,999.000,999.0,99.0 +1980,7,25,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,14.4,43,101800,895,1324,394,658,827,96,68100,82300,12400,2270,330,7.2,4,1,32.2,77777,9,999999999,170,0.0670,0,88,999.000,999.0,99.0 +1980,7,25,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,15.0,46,101700,707,1324,392,474,725,84,50000,71800,11500,1910,330,7.7,4,1,32.2,77777,9,999999999,170,0.0670,0,88,999.000,999.0,99.0 +1980,7,25,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,15.0,49,101700,493,1324,399,248,224,164,26800,21600,18700,3790,320,7.7,9,4,32.2,77777,9,999999999,170,0.0670,0,88,999.000,999.0,99.0 +1980,7,25,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,14.4,50,101700,267,1324,392,105,164,71,11000,12300,8500,1350,340,7.7,9,4,32.2,77777,9,999999999,179,0.0670,0,88,999.000,999.0,99.0 +1980,7,25,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,14.4,58,101700,56,982,369,26,104,17,2500,3900,2200,300,340,5.2,4,1,32.2,77777,9,999999999,179,0.0670,0,88,999.000,999.0,99.0 +1980,7,25,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,15.0,64,101800,0,0,364,0,0,0,0,0,0,0,340,7.7,4,1,24.1,77777,9,999999999,179,0.1390,0,88,999.000,999.0,99.0 +1980,7,25,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,15.0,71,101800,0,0,349,0,0,0,0,0,0,0,330,4.6,0,0,24.1,77777,9,999999999,179,0.1390,0,88,999.000,999.0,99.0 +1980,7,25,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,14.4,76,101800,0,0,341,0,0,0,0,0,0,0,330,4.1,0,0,24.1,77777,9,999999999,179,0.1390,0,88,999.000,999.0,99.0 +1980,7,25,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,13.9,78,101800,0,0,335,0,0,0,0,0,0,0,330,3.1,0,0,24.1,77777,9,999999999,179,0.1390,0,88,999.000,999.0,99.0 +1980,7,26,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,13.9,81,101800,0,0,332,0,0,0,0,0,0,0,350,3.1,0,0,24.1,77777,9,999999999,189,0.1390,0,88,999.000,999.0,99.0 +1980,7,26,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,13.3,81,101800,0,0,329,0,0,0,0,0,0,0,360,2.6,0,0,24.1,77777,9,999999999,189,0.1390,0,88,999.000,999.0,99.0 +1980,7,26,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,13.3,84,101800,0,0,327,0,0,0,0,0,0,0,330,2.6,0,0,24.1,77777,9,999999999,189,0.1390,0,88,999.000,999.0,99.0 +1980,7,26,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,13.3,87,101800,0,0,325,0,0,0,0,0,0,0,340,2.6,0,0,24.1,77777,9,999999999,189,0.1390,0,88,999.000,999.0,99.0 +1980,7,26,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,13.3,90,101800,3,232,322,3,10,2,0,0,0,0,310,1.5,2,0,24.1,77777,9,999999999,189,0.0720,0,88,999.000,999.0,99.0 +1980,7,26,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,11.7,78,101800,140,1324,323,58,288,28,5900,16500,4200,500,320,4.1,2,0,24.1,77777,9,999999999,179,0.0720,0,88,999.000,999.0,99.0 +1980,7,26,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,13.3,75,101900,364,1324,335,212,603,46,22000,52800,7500,940,340,2.6,0,0,32.2,77777,9,999999999,179,0.0720,0,88,999.000,999.0,99.0 +1980,7,26,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,13.9,90,101900,587,1324,331,383,697,73,40100,67400,10200,1550,330,2.6,1,1,32.2,77777,9,999999999,179,0.0720,0,88,999.000,999.0,99.0 +1980,7,26,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,14.4,58,101900,792,1324,362,577,829,80,60100,82000,11000,1860,360,2.1,0,0,32.2,77777,9,999999999,170,0.0720,0,88,999.000,999.0,99.0 +1980,7,26,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,13.9,57,101800,964,1324,359,734,879,92,76100,87800,12100,2490,30,3.1,0,0,32.2,77777,9,999999999,170,0.0720,0,88,999.000,999.0,99.0 +1980,7,26,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,14.4,52,101800,1092,1324,370,842,898,100,87200,90000,12900,3390,10,3.6,0,0,32.2,77777,9,999999999,170,0.0720,0,88,999.000,999.0,99.0 +1980,7,26,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,15.0,49,101700,1166,1324,379,917,920,104,94700,92300,13300,4330,350,4.1,0,0,32.2,77777,9,999999999,160,0.0720,0,88,999.000,999.0,99.0 +1980,7,26,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,15.0,41,101700,1183,1324,393,929,919,105,95900,92200,13300,4620,350,4.6,0,0,32.2,77777,9,999999999,160,0.0720,0,88,999.000,999.0,99.0 +1980,7,26,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,15.6,39,101600,1141,1324,403,895,916,103,92500,91900,13200,3950,340,6.2,0,0,64.4,77777,9,999999999,160,0.0720,0,88,999.000,999.0,99.0 +1980,7,26,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,15.0,38,101500,1042,1324,402,807,900,97,83600,90100,12600,2970,330,6.2,0,0,48.3,77777,9,999999999,150,0.0720,0,88,999.000,999.0,99.0 +1980,7,26,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,14.4,36,101500,893,1324,401,674,867,87,70000,86300,11700,2180,330,9.8,0,0,32.2,77777,9,999999999,150,0.0720,0,88,999.000,999.0,99.0 +1980,7,26,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,13.9,36,101400,705,1324,398,506,809,73,52700,79200,10500,1640,340,8.2,0,0,32.2,77777,9,999999999,150,0.0720,0,88,999.000,999.0,99.0 +1980,7,26,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,12.8,35,101400,490,1324,394,320,709,56,33600,66700,8900,1200,340,8.8,0,0,40.2,77777,9,999999999,160,0.0720,0,88,999.000,999.0,99.0 +1980,7,26,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,12.8,38,101400,263,1324,385,141,513,38,14300,40600,6200,740,330,8.2,0,0,40.2,77777,9,999999999,160,0.0720,0,88,999.000,999.0,99.0 +1980,7,26,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,15.0,52,101500,53,960,374,28,132,16,2500,4900,2200,280,330,7.7,0,0,32.2,77777,9,999999999,160,0.0720,0,88,999.000,999.0,99.0 +1980,7,26,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,14.4,56,101500,0,0,365,0,0,0,0,0,0,0,330,6.7,0,0,24.1,77777,9,999999999,170,0.1390,0,88,999.000,999.0,99.0 +1980,7,26,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,15.0,62,101500,0,0,360,0,0,0,0,0,0,0,320,5.7,0,0,24.1,77777,9,999999999,170,0.1390,0,88,999.000,999.0,99.0 +1980,7,26,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,14.4,61,101500,0,0,356,0,0,0,0,0,0,0,320,4.1,0,0,24.1,77777,9,999999999,170,0.1390,0,88,999.000,999.0,99.0 +1980,7,26,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,13.9,64,101600,0,0,351,0,0,0,0,0,0,0,330,2.1,0,0,24.1,77777,9,999999999,179,0.1390,0,88,999.000,999.0,99.0 +1980,7,27,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,13.3,63,101600,0,0,348,0,0,0,0,0,0,0,320,3.1,0,0,24.1,77777,9,999999999,179,0.1390,0,88,999.000,999.0,99.0 +1980,7,27,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,13.3,68,101600,0,0,342,0,0,0,0,0,0,0,340,4.1,0,0,24.1,77777,9,999999999,179,0.1390,0,88,999.000,999.0,99.0 +1980,7,27,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,13.3,70,101600,0,0,340,0,0,0,0,0,0,0,320,2.6,0,0,24.1,77777,9,999999999,189,0.1390,0,88,999.000,999.0,99.0 +1980,7,27,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,12.8,78,101600,0,0,329,0,0,0,0,0,0,0,10,1.5,0,0,32.2,77777,9,999999999,189,0.1390,0,88,999.000,999.0,99.0 +1980,7,27,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,12.8,78,101600,2,210,329,2,6,1,0,0,0,0,0,0.0,0,0,40.2,77777,9,999999999,189,0.0870,0,88,999.000,999.0,99.0 +1980,7,27,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,13.3,78,101600,136,1325,332,54,265,27,5500,15000,4000,480,330,2.1,0,0,48.3,77777,9,999999999,189,0.0870,0,88,999.000,999.0,99.0 +1980,7,27,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,13.3,70,101700,361,1325,340,208,576,50,21300,50100,7600,980,0,0.0,0,0,32.2,77777,9,999999999,189,0.0870,0,88,999.000,999.0,99.0 +1980,7,27,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,13.9,64,101700,584,1325,351,392,727,70,41200,70300,10100,1500,350,1.5,0,0,32.2,77777,9,999999999,189,0.0870,0,88,999.000,999.0,99.0 +1980,7,27,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,13.3,54,101600,789,1325,361,571,810,88,61100,81200,12600,2150,360,2.6,0,0,32.2,77777,9,999999999,189,0.0870,0,88,999.000,999.0,99.0 +1980,7,27,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,13.9,50,101600,961,1325,370,725,858,101,75100,85600,12900,2580,340,3.1,0,0,32.2,77777,9,999999999,189,0.0870,0,88,999.000,999.0,99.0 +1980,7,27,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,14.4,44,101500,1089,1325,384,842,887,110,86900,88800,13700,3540,360,4.6,0,0,32.2,77777,9,999999999,189,0.0870,0,88,999.000,999.0,99.0 +1980,7,27,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,15.0,41,101500,1164,1325,393,909,901,115,93700,90300,14100,4570,340,2.6,0,0,32.2,77777,9,999999999,189,0.0870,0,88,999.000,999.0,99.0 +1980,7,27,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,14.4,36,101400,1181,1325,401,924,904,116,95200,90700,14200,4890,340,5.2,0,0,64.4,77777,9,999999999,189,0.0870,0,88,999.000,999.0,99.0 +1980,7,27,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,15.0,35,101300,1138,1325,408,885,895,113,91200,89700,13900,4150,340,7.2,0,0,64.4,77777,9,999999999,189,0.0870,0,88,999.000,999.0,99.0 +1980,7,27,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,14.4,34,101200,1039,1325,407,796,876,106,82200,87600,13300,3080,320,9.3,0,0,64.4,77777,9,999999999,189,0.0870,0,88,999.000,999.0,99.0 +1980,7,27,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,13.9,34,101200,890,1325,404,663,840,96,68600,83500,12400,2250,320,10.3,0,0,40.2,77777,9,999999999,189,0.0870,0,88,999.000,999.0,99.0 +1980,7,27,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,13.3,33,101100,702,1325,403,495,780,81,52500,77300,11500,1850,330,10.3,0,0,40.2,77777,9,999999999,189,0.0870,0,88,999.000,999.0,99.0 +1980,7,27,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,12.8,34,101100,486,1325,397,311,675,62,32300,63200,9100,1270,330,8.2,0,0,64.4,77777,9,999999999,189,0.0870,0,88,999.000,999.0,99.0 +1980,7,27,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,15.0,44,101100,260,1325,388,135,470,41,13800,36000,6800,760,320,5.7,0,0,64.4,77777,9,999999999,189,0.0870,0,88,999.000,999.0,99.0 +1980,7,27,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,15.0,52,101100,51,938,374,25,98,16,2300,3600,2100,280,320,7.7,0,0,48.3,77777,9,999999999,189,0.0870,0,88,999.000,999.0,99.0 +1980,7,27,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,14.4,54,101100,0,0,367,0,0,0,0,0,0,0,320,6.2,0,0,24.1,77777,9,999999999,189,0.1390,0,88,999.000,999.0,99.0 +1980,7,27,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,13.9,55,101100,0,0,361,0,0,0,0,0,0,0,320,5.2,0,0,24.1,77777,9,999999999,189,0.1390,0,88,999.000,999.0,99.0 +1980,7,27,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,12.8,57,101200,0,0,352,0,0,0,0,0,0,0,330,3.1,0,0,24.1,77777,9,999999999,189,0.1390,0,88,999.000,999.0,99.0 +1980,7,27,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,12.2,57,101200,0,0,349,0,0,0,0,0,0,0,320,4.1,0,0,24.1,77777,9,999999999,189,0.1390,0,88,999.000,999.0,99.0 +1980,7,28,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,12.2,61,101200,0,0,344,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,189,0.1380,0,88,999.000,999.0,99.0 +1980,7,28,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,12.2,65,101200,0,0,338,0,0,0,0,0,0,0,360,4.1,0,0,24.1,77777,9,999999999,189,0.1380,0,88,999.000,999.0,99.0 +1980,7,28,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,11.7,68,101200,0,0,333,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,189,0.1380,0,88,999.000,999.0,99.0 +1980,7,28,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,11.7,70,101100,0,0,330,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,189,0.1380,0,88,999.000,999.0,99.0 +1980,7,28,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,11.7,70,101100,2,188,330,1,0,1,0,0,0,0,340,4.1,0,0,40.2,77777,9,999999999,189,0.2710,0,88,999.000,999.0,99.0 +1980,7,28,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,11.7,68,101200,132,1325,333,39,45,35,4300,2500,4100,730,360,2.6,0,0,40.2,77777,9,999999999,189,0.2710,0,88,999.000,999.0,99.0 +1980,7,28,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,11.7,61,101200,357,1325,340,166,291,87,17300,24700,10600,1610,360,2.6,0,0,40.2,77777,9,999999999,179,0.2710,0,88,999.000,999.0,99.0 +1980,7,28,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,11.7,55,101200,581,1325,348,344,478,134,36500,46800,16000,2660,340,4.1,0,0,40.2,77777,9,999999999,179,0.2710,0,88,999.000,999.0,99.0 +1980,7,28,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,11.7,50,101200,786,1325,356,526,594,173,54600,59000,19500,3940,360,3.1,0,0,40.2,77777,9,999999999,179,0.2710,0,88,999.000,999.0,99.0 +1980,7,28,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,12.2,47,101100,959,1325,365,685,666,202,71800,67200,23100,5830,340,4.1,0,0,64.4,77777,9,999999999,179,0.2710,0,88,999.000,999.0,99.0 +1980,7,28,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,11.7,38,101100,1087,1325,378,807,712,221,85200,72300,25800,8380,330,5.7,0,0,64.4,77777,9,999999999,170,0.2710,0,88,999.000,999.0,99.0 +1980,7,28,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,12.2,36,101100,1162,1325,387,875,731,232,92900,74500,27400,11010,350,5.7,0,0,64.4,77777,9,999999999,170,0.2710,0,88,999.000,999.0,99.0 +1980,7,28,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,12.2,32,101000,1179,1325,396,892,738,234,94800,75200,27800,11790,340,7.7,0,0,80.5,77777,9,999999999,170,0.2710,0,88,999.000,999.0,99.0 +1980,7,28,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,12.8,33,101000,1136,1325,399,853,727,228,90400,74000,26800,9940,320,8.2,0,0,80.5,77777,9,999999999,160,0.2710,0,88,999.000,999.0,99.0 +1980,7,28,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,12.8,32,100900,1037,1325,403,761,697,213,80000,70700,24600,7170,330,7.2,0,0,80.5,77777,9,999999999,160,0.2710,0,88,999.000,999.0,99.0 +1980,7,28,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,12.2,31,100900,887,1325,399,624,644,190,65000,64700,21500,4900,340,8.2,0,0,80.5,77777,9,999999999,160,0.2710,0,88,999.000,999.0,99.0 +1980,7,28,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,12.2,33,100900,699,1325,393,450,555,157,48300,56100,18600,3360,330,7.7,0,0,80.5,77777,9,999999999,160,0.2710,0,88,999.000,999.0,99.0 +1980,7,28,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,10.6,33,100900,483,1325,395,252,319,134,26700,30700,15500,2730,330,7.7,5,2,32.2,77777,9,999999999,160,0.2710,0,88,999.000,999.0,99.0 +1980,7,28,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,7.8,32,101000,256,1325,372,96,166,63,10100,12200,7800,1170,310,7.2,1,1,64.4,77777,9,999999999,150,0.2710,0,88,999.000,999.0,99.0 +1980,7,28,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,6.1,35,101100,48,917,347,19,6,18,2000,300,2000,430,310,5.7,1,0,32.2,77777,9,999999999,150,0.2710,0,88,999.000,999.0,99.0 +1980,7,28,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,7.2,41,101200,0,0,343,0,0,0,0,0,0,0,340,4.6,0,0,24.1,77777,9,999999999,150,0.1380,0,88,999.000,999.0,99.0 +1980,7,28,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,7.2,45,101200,0,0,335,0,0,0,0,0,0,0,300,5.7,0,0,24.1,77777,9,999999999,150,0.1380,0,88,999.000,999.0,99.0 +1980,7,28,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,7.2,52,101300,0,0,325,0,0,0,0,0,0,0,290,3.6,0,0,24.1,77777,9,999999999,150,0.1380,0,88,999.000,999.0,99.0 +1980,7,28,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,7.8,62,101400,0,0,316,0,0,0,0,0,0,0,290,3.6,0,0,24.1,77777,9,999999999,150,0.1380,0,88,999.000,999.0,99.0 +1980,7,29,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,7.8,58,101500,0,0,321,0,0,0,0,0,0,0,330,1.5,0,0,24.1,77777,9,999999999,150,0.1380,0,88,999.000,999.0,99.0 +1980,7,29,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,8.3,65,101500,0,0,317,0,0,0,0,0,0,0,310,3.1,0,0,24.1,77777,9,999999999,139,0.1380,0,88,999.000,999.0,99.0 +1980,7,29,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,8.3,67,101500,0,0,314,0,0,0,0,0,0,0,340,2.1,0,0,24.1,77777,9,999999999,139,0.1380,0,88,999.000,999.0,99.0 +1980,7,29,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,8.9,72,101600,0,0,312,0,0,0,0,0,0,0,340,2.6,0,0,32.2,77777,9,999999999,139,0.1380,0,88,999.000,999.0,99.0 +1980,7,29,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,9.4,78,101600,1,166,310,1,1,1,0,0,0,0,350,2.1,0,0,80.5,77777,9,999999999,139,0.1240,0,88,999.000,999.0,99.0 +1980,7,29,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,10.0,80,101600,129,1325,311,46,175,29,4800,8800,4000,510,350,4.1,0,0,64.4,77777,9,999999999,139,0.1240,0,88,999.000,999.0,99.0 +1980,7,29,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,10.6,80,101700,354,1325,328,172,269,99,18100,23200,11900,1940,340,4.6,3,3,48.3,77777,9,999999999,139,0.1240,0,88,999.000,999.0,99.0 +1980,7,29,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,10.6,67,101700,578,1325,346,201,167,128,21900,16900,14600,2600,10,3.6,5,5,48.3,77777,9,999999999,139,0.1240,0,88,999.000,999.0,99.0 +1980,7,29,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,10.0,59,101700,783,1325,333,528,726,98,55700,72400,12800,2290,360,2.6,0,0,48.3,77777,9,999999999,139,0.1240,0,88,999.000,999.0,99.0 +1980,7,29,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,10.0,53,101700,956,1325,341,716,818,124,75700,82400,16100,3480,340,3.1,0,0,48.3,77777,9,999999999,139,0.1240,0,88,999.000,999.0,99.0 +1980,7,29,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,10.6,49,101600,1085,1325,350,828,844,135,88300,85500,18200,4930,330,4.1,0,0,64.4,77777,9,999999999,139,0.1240,0,88,999.000,999.0,99.0 +1980,7,29,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,10.0,43,101600,1160,1325,357,901,865,141,92200,86600,16300,5010,330,2.6,0,0,80.5,77777,9,999999999,139,0.1240,0,88,999.000,999.0,99.0 +1980,7,29,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,10.6,40,101500,1177,1325,366,921,874,142,94200,87500,16400,5380,320,3.6,0,0,80.5,77777,9,999999999,139,0.1240,0,88,999.000,999.0,99.0 +1980,7,29,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,11.1,38,101500,1134,1325,375,880,863,139,90100,86300,16100,4510,330,3.1,0,0,80.5,77777,9,999999999,139,0.1240,0,88,999.000,999.0,99.0 +1980,7,29,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,10.6,34,101400,1034,1325,380,786,836,131,83500,84600,17300,4250,330,4.6,0,0,80.5,77777,9,999999999,139,0.1240,0,88,999.000,999.0,99.0 +1980,7,29,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,8.9,30,101300,885,1325,380,655,801,117,68700,80400,15000,2960,350,5.2,0,0,80.5,77777,9,999999999,139,0.1240,0,88,999.000,999.0,99.0 +1980,7,29,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,5.6,24,101300,695,1325,373,485,732,98,50200,71900,12400,2060,350,5.2,0,0,80.5,77777,9,999999999,139,0.1240,0,88,999.000,999.0,99.0 +1980,7,29,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,10.6,38,101300,480,1325,371,297,609,75,31000,56800,10400,1480,330,5.7,0,0,80.5,77777,9,999999999,150,0.1240,0,88,999.000,999.0,99.0 +1980,7,29,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,12.8,48,101300,252,1325,365,122,383,48,12400,28700,6900,870,340,6.2,0,0,80.5,77777,9,999999999,150,0.1240,0,88,999.000,999.0,99.0 +1980,7,29,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,12.8,57,101300,45,895,352,20,50,16,2000,1500,1900,280,340,5.7,0,0,48.3,77777,9,999999999,150,0.1240,0,88,999.000,999.0,99.0 +1980,7,29,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,12.2,59,101400,0,0,346,0,0,0,0,0,0,0,320,5.2,0,0,24.1,77777,9,999999999,160,0.1380,0,88,999.000,999.0,99.0 +1980,7,29,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,11.7,63,101500,0,0,338,0,0,0,0,0,0,0,330,4.6,0,0,24.1,77777,9,999999999,160,0.1380,0,88,999.000,999.0,99.0 +1980,7,29,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,10.6,65,101500,0,0,329,0,0,0,0,0,0,0,340,4.6,0,0,24.1,77777,9,999999999,160,0.1380,0,88,999.000,999.0,99.0 +1980,7,29,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,11.1,72,101500,0,0,324,0,0,0,0,0,0,0,10,2.6,0,0,19.3,77777,9,999999999,170,0.1380,0,88,999.000,999.0,99.0 +1980,7,30,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,10.6,72,101600,0,0,322,0,0,0,0,0,0,0,350,4.1,1,0,19.3,77777,9,999999999,170,0.1380,0,88,999.000,999.0,99.0 +1980,7,30,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,10.6,78,101600,0,0,316,0,0,0,0,0,0,0,350,3.6,1,0,19.3,77777,9,999999999,170,0.1380,0,88,999.000,999.0,99.0 +1980,7,30,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,11.1,83,101600,0,0,315,0,0,0,0,0,0,0,350,2.6,0,0,19.3,77777,9,999999999,179,0.1380,0,88,999.000,999.0,99.0 +1980,7,30,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,11.1,87,101600,0,0,312,0,0,0,0,0,0,0,340,2.6,2,0,19.3,77777,9,999999999,179,0.1380,0,88,999.000,999.0,99.0 +1980,7,30,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,10.6,86,101700,1,144,315,0,1,0,0,0,0,0,310,1.5,1,1,24.1,77777,9,999999999,179,0.1200,0,88,999.000,999.0,99.0 +1980,7,30,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,10.6,86,101700,125,1326,315,43,174,26,4500,8600,3700,460,280,2.6,1,1,24.1,77777,9,999999999,179,0.1200,0,88,999.000,999.0,99.0 +1980,7,30,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,10.6,80,101700,350,1326,328,166,339,77,17600,28700,10000,1410,330,4.1,3,3,24.1,77777,9,999999999,179,0.1200,0,88,999.000,999.0,99.0 +1980,7,30,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,11.1,75,101800,575,1326,354,218,160,148,24000,16100,17000,3530,330,2.1,8,8,24.1,550,9,999999999,179,0.1200,0,88,999.000,999.0,99.0 +1980,7,30,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,11.7,70,101700,781,1326,336,522,706,105,54600,70200,13200,2390,290,2.6,1,1,24.1,77777,9,999999999,179,0.1200,0,88,999.000,999.0,99.0 +1980,7,30,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,11.7,57,101700,954,1326,346,709,816,121,75200,82300,15900,3410,310,3.6,0,0,40.2,77777,9,999999999,179,0.1200,0,88,999.000,999.0,99.0 +1980,7,30,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,12.2,57,101700,1082,1326,349,828,850,132,88500,86200,18000,4810,290,5.2,0,0,32.2,77777,9,999999999,170,0.1200,0,88,999.000,999.0,99.0 +1980,7,30,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,12.2,51,101600,1158,1326,357,894,864,138,91700,86500,16000,4910,290,4.1,0,0,48.3,77777,9,999999999,170,0.1200,0,88,999.000,999.0,99.0 +1980,7,30,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,12.2,47,101300,1174,1326,365,907,865,138,92900,86600,16000,5250,300,4.6,0,0,64.4,77777,9,999999999,170,0.1200,0,88,999.000,999.0,99.0 +1980,7,30,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,11.7,41,101500,1131,1326,372,870,857,136,89200,85700,15800,4430,300,5.2,0,0,64.4,77777,9,999999999,170,0.1200,0,88,999.000,999.0,99.0 +1980,7,30,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,10.6,32,101500,1032,1326,385,782,837,128,83200,84700,17100,4150,310,4.6,0,0,64.4,77777,9,999999999,170,0.1200,0,88,999.000,999.0,99.0 +1980,7,30,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,9.4,29,101400,882,1326,386,650,801,114,68400,80400,14800,2900,320,5.7,0,0,64.4,77777,9,999999999,170,0.1200,0,88,999.000,999.0,99.0 +1980,7,30,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,8.3,28,101300,692,1326,382,478,728,96,49600,71500,12200,2030,360,5.2,0,0,64.4,77777,9,999999999,179,0.1200,0,88,999.000,999.0,99.0 +1980,7,30,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,10.0,33,101300,476,1326,379,294,611,73,30700,57000,10300,1440,330,5.2,0,0,64.4,77777,9,999999999,179,0.1200,0,88,999.000,999.0,99.0 +1980,7,30,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,12.2,42,101300,248,1326,373,120,382,47,12100,28400,6800,850,310,3.6,0,0,64.4,77777,9,999999999,189,0.1200,0,88,999.000,999.0,99.0 +1980,7,30,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,13.3,52,101300,43,873,363,20,51,16,2000,1500,1900,280,350,7.7,0,0,64.4,77777,9,999999999,189,0.1200,0,88,999.000,999.0,99.0 +1980,7,30,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,13.9,64,101400,0,0,351,0,0,0,0,0,0,0,220,1.5,0,0,24.1,77777,9,999999999,200,0.1380,0,88,999.000,999.0,99.0 +1980,7,30,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,13.3,63,101400,0,0,348,0,0,0,0,0,0,0,320,5.2,0,0,24.1,77777,9,999999999,200,0.1380,0,88,999.000,999.0,99.0 +1980,7,30,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,13.3,70,101400,0,0,340,0,0,0,0,0,0,0,320,3.1,0,0,24.1,77777,9,999999999,200,0.1380,0,88,999.000,999.0,99.0 +1980,7,30,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,12.8,70,101400,0,0,343,0,0,0,0,0,0,0,10,1.5,1,1,24.1,77777,9,999999999,209,0.1380,0,88,999.000,999.0,99.0 +1980,7,31,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,12.8,75,101500,0,0,351,0,0,0,0,0,0,0,190,1.5,5,5,24.1,77777,9,999999999,220,0.1370,0,88,999.000,999.0,99.0 +1980,7,31,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,13.3,81,101500,0,0,344,0,0,0,0,0,0,0,340,2.1,3,3,24.1,77777,9,999999999,220,0.1370,0,88,999.000,999.0,99.0 +1980,7,31,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,12.8,81,101500,0,0,343,0,0,0,0,0,0,0,350,4.1,4,4,24.1,77777,9,999999999,229,0.1370,0,88,999.000,999.0,99.0 +1980,7,31,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,12.8,81,101500,0,0,343,0,0,0,0,0,0,0,360,3.1,4,4,24.1,77777,9,999999999,229,0.1370,0,88,999.000,999.0,99.0 +1980,7,31,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,12.2,81,101500,1,122,340,0,1,0,0,0,0,0,350,3.1,4,4,32.2,77777,9,999999999,229,0.0670,0,88,999.000,999.0,99.0 +1980,7,31,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,11.7,81,101500,121,1326,337,42,118,32,4500,5300,4000,580,320,2.1,4,4,32.2,77777,9,999999999,229,0.0670,0,88,999.000,999.0,99.0 +1980,7,31,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,12.2,84,101500,347,1326,331,180,429,67,18400,36100,9000,1220,310,2.1,3,2,32.2,77777,9,999999999,220,0.0670,0,88,999.000,999.0,99.0 +1980,7,31,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,12.2,78,101500,572,1326,336,324,483,115,34800,47200,14500,2250,310,1.5,2,2,32.2,77777,9,999999999,220,0.0670,0,88,999.000,999.0,99.0 +1980,7,31,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,12.8,70,101500,778,1326,347,540,751,98,56900,74900,12900,2280,0,0.0,2,2,32.2,77777,9,999999999,220,0.0670,0,88,999.000,999.0,99.0 +1980,7,31,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,12.8,63,101500,951,1326,359,702,726,180,74100,73700,21200,5200,290,2.6,3,3,48.3,77777,9,999999999,220,0.0670,0,88,999.000,999.0,99.0 +1980,7,31,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,12.8,52,101500,1080,1326,376,713,640,189,76000,65500,22500,7130,280,4.1,3,3,32.2,77777,9,999999999,209,0.0670,0,88,999.000,999.0,99.0 +1980,7,31,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,12.8,48,101500,1155,1326,390,649,369,327,69500,38500,35900,15460,300,5.2,7,6,24.1,4570,9,999999999,209,0.0670,0,88,999.000,999.0,99.0 +1980,7,31,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,11.1,38,101500,1172,1326,394,771,607,233,81900,61800,27100,11410,310,5.2,7,4,32.2,7620,9,999999999,209,0.0670,0,88,999.000,999.0,99.0 +1980,7,31,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,11.1,37,101500,1129,1326,397,696,490,277,75400,51300,31700,11950,360,4.6,4,4,48.3,77777,9,999999999,200,0.0670,0,88,999.000,999.0,99.0 +1980,7,31,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,11.7,36,101500,1029,1326,391,795,895,97,82200,89600,12600,2880,340,5.2,1,1,48.3,77777,9,999999999,200,0.0670,0,88,999.000,999.0,99.0 +1980,7,31,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,13.3,42,101500,879,1326,380,648,848,83,67300,84400,11300,2100,340,6.2,0,0,48.3,77777,9,999999999,200,0.0670,0,88,999.000,999.0,99.0 +1980,7,31,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,13.3,44,101500,689,1326,377,484,792,70,50400,77400,10200,1590,330,7.2,0,0,48.3,77777,9,999999999,200,0.0670,0,88,999.000,999.0,99.0 +1980,7,31,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,13.3,48,101500,472,1326,369,304,698,53,31900,65300,8600,1140,340,5.7,0,0,48.3,77777,9,999999999,200,0.0670,0,88,999.000,999.0,99.0 +1980,7,31,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,13.3,54,101600,244,1326,361,128,495,36,12900,38200,5900,700,340,5.2,0,0,48.3,77777,9,999999999,200,0.0670,0,88,999.000,999.0,99.0 +1980,7,31,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,11.1,57,101700,40,829,342,24,107,14,2100,3700,1900,240,320,5.7,0,0,32.2,77777,9,999999999,189,0.0670,0,88,999.000,999.0,99.0 +1980,7,31,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,10.6,61,101800,0,0,334,0,0,0,0,0,0,0,310,5.2,0,0,24.1,77777,9,999999999,189,0.1370,0,88,999.000,999.0,99.0 +1980,7,31,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.4,10.6,67,101800,0,0,330,0,0,0,0,0,0,0,310,4.5,0,0,24.1,77777,9,999999999,189,0.1370,0,88,999.000,999.0,99.0 +1980,7,31,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.6,10.6,72,101800,0,0,326,0,0,0,0,0,0,0,310,3.7,0,0,24.1,77777,9,999999999,189,0.1370,0,88,999.000,999.0,99.0 +1980,7,31,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.7,10.6,75,101900,0,0,322,0,0,0,0,0,0,0,330,3.0,0,0,24.1,77777,9,999999999,189,0.1370,0,88,999.000,999.0,99.0 +2001,8,1,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.8,10.6,83,101600,0,0,318,0,0,0,0,0,0,0,0,2.2,0,0,16.0,77777,9,999999999,290,0.1500,0,88,0.160,0.0,1.0 +2001,8,1,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,10.6,83,101600,0,0,320,0,0,0,0,0,0,0,310,1.5,2,1,16.0,77777,9,999999999,290,0.1500,0,88,0.160,0.0,1.0 +2001,8,1,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.1,10.6,93,101600,0,0,321,0,0,0,0,0,0,0,260,0.7,4,2,16.0,77777,9,999999999,279,0.1500,0,88,0.160,0.0,1.0 +2001,8,1,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,10.6,90,101600,0,0,320,0,0,0,0,0,0,0,0,0.0,6,3,16.0,6096,9,999999999,279,0.1500,0,88,0.160,0.0,1.0 +2001,8,1,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,11.1,89,101600,0,77,326,0,0,0,0,0,0,0,0,0.0,8,4,16.0,7620,9,999999999,279,0.1500,0,88,0.160,0.0,1.0 +2001,8,1,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,11.1,89,101700,117,1326,320,16,0,16,1900,0,1900,600,0,0.0,5,2,16.0,7620,9,999999999,279,0.1500,0,88,0.160,0.0,1.0 +2001,8,1,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,11.1,83,101700,343,1326,328,80,0,80,9100,0,9100,2960,0,0.0,6,3,16.0,4572,9,999999999,270,0.1500,0,88,0.160,0.0,1.0 +2001,8,1,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,12.2,87,101700,568,1326,349,230,108,183,24900,10800,20300,4360,0,0.0,9,8,16.0,3658,9,999999999,270,0.1500,0,88,0.160,0.0,1.0 +2001,8,1,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,12.2,75,101700,775,1326,351,453,356,245,48700,37700,26600,6010,20,1.5,7,6,16.0,7620,9,999999999,270,0.1500,0,88,0.160,0.0,1.0 +2001,8,1,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,12.2,68,101700,948,1326,356,280,30,259,31000,3000,28800,9660,40,2.6,5,5,16.0,7620,9,999999999,270,0.1500,0,88,0.160,0.0,1.0 +2001,8,1,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,12.2,63,101700,1077,1326,368,446,107,358,49100,11400,39800,13210,350,1.5,7,7,16.0,4572,9,999999999,259,0.1500,0,88,0.160,0.0,1.0 +2001,8,1,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,12.2,55,101700,1153,1326,395,785,521,332,84000,54400,36600,15580,10,2.6,9,9,16.0,4572,9,999999999,259,0.1500,0,88,0.160,0.0,1.0 +2001,8,1,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,12.2,50,101600,1169,1326,384,865,716,232,91900,73000,27400,11260,30,2.6,6,6,16.0,7620,9,999999999,259,0.1500,0,88,0.160,0.0,1.0 +2001,8,1,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,11.7,45,101600,1126,1326,394,679,351,381,74200,38100,41700,15610,350,2.6,7,7,16.0,6096,9,999999999,259,0.1500,0,88,0.160,0.0,1.0 +2001,8,1,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,12.2,45,101600,1026,1326,404,438,97,362,48200,10000,40500,13860,310,5.2,8,8,16.0,1829,9,999999999,259,0.1500,0,88,0.160,0.0,1.0 +2001,8,1,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,12.2,45,101600,876,1326,393,503,302,302,53900,32300,32500,8260,300,3.1,6,6,16.0,6096,9,999999999,259,0.1500,0,88,0.160,0.0,1.0 +2001,8,1,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,13.3,48,101600,686,1326,394,471,582,170,50000,58600,19600,3630,330,3.6,6,6,16.0,77777,9,999999999,259,0.1500,0,88,0.160,0.0,1.0 +2001,8,1,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,13.9,52,101600,469,1326,386,303,533,115,31900,49500,14400,2190,300,4.6,4,4,16.0,77777,9,999999999,259,0.1500,0,88,0.160,0.0,1.0 +2001,8,1,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,13.9,57,101600,240,1326,384,118,98,101,12600,7200,11300,2160,330,5.7,6,6,16.0,77777,9,999999999,259,0.1500,0,88,0.160,0.0,1.0 +2001,8,1,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,13.9,63,101700,37,807,385,2,23,2,400,1000,300,40,330,5.2,9,8,16.0,4267,9,999999999,250,0.1500,0,88,0.160,0.0,1.0 +2001,8,1,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,13.3,65,101700,0,0,368,0,0,0,0,0,0,0,320,4.1,7,6,16.0,4572,9,999999999,250,0.1500,0,88,0.160,0.0,1.0 +2001,8,1,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,13.3,68,101700,0,0,353,0,0,0,0,0,0,0,290,2.6,3,2,16.0,4267,9,999999999,250,0.1500,0,88,0.160,0.0,1.0 +2001,8,1,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,13.3,75,101700,0,0,335,0,0,0,0,0,0,0,0,0.0,1,0,16.0,4267,9,999999999,250,0.1500,0,88,0.160,0.0,1.0 +2001,8,1,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,13.3,75,101700,0,0,341,0,0,0,0,0,0,0,40,1.5,2,1,16.0,77777,9,999999999,250,0.1500,0,88,0.160,0.0,1.0 +2001,8,2,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,12.8,78,101700,0,0,343,0,0,0,0,0,0,0,140,2.6,3,3,16.0,6706,9,999999999,240,0.1500,0,88,0.160,0.0,1.0 +2001,8,2,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,12.8,81,101700,0,0,346,0,0,0,0,0,0,0,140,3.6,6,5,16.0,3658,9,999999999,240,0.1500,0,88,0.160,0.0,1.0 +2001,8,2,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,12.8,83,101700,0,0,356,0,0,0,0,0,0,0,130,3.1,8,8,16.0,2286,9,999999999,240,0.1500,0,88,0.160,0.0,1.0 +2001,8,2,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,12.8,81,101700,0,0,376,0,0,0,0,0,0,0,150,3.6,10,10,16.0,1402,9,999999999,229,0.1500,0,88,0.160,0.0,1.0 +2001,8,2,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,12.8,81,101800,0,55,376,0,0,0,0,0,0,0,160,3.1,10,10,16.0,1280,9,999999999,229,0.1500,0,88,0.160,0.0,1.0 +2001,8,2,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,12.8,81,101800,114,1326,358,19,8,19,2200,500,2100,480,140,4.1,8,8,16.0,1433,9,999999999,229,0.1500,0,88,0.160,0.0,1.0 +2001,8,2,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,13.3,80,101800,340,1326,362,99,16,95,11100,800,10900,3320,170,2.1,8,8,16.0,914,9,999999999,229,0.1500,0,88,0.160,0.0,1.0 +2001,8,2,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,13.9,81,101800,565,1326,365,129,0,129,14900,0,14900,5320,180,1.5,8,8,16.0,823,9,999999999,220,0.1500,0,88,0.160,0.0,1.0 +2001,8,2,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,13.9,73,101800,772,1326,374,292,76,247,32000,7700,27600,7900,190,2.6,8,8,16.0,1067,9,999999999,220,0.1500,0,88,0.160,0.0,1.0 +2001,8,2,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,13.9,65,101700,946,1326,383,632,555,235,67800,57700,26600,6740,200,3.6,8,8,16.0,1524,9,999999999,220,0.1500,0,88,0.160,0.0,1.0 +2001,8,2,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,13.9,59,101700,1075,1326,391,526,202,361,57800,21500,40300,13260,250,3.6,8,8,16.0,1524,9,999999999,220,0.1500,0,88,0.160,0.0,1.0 +2001,8,2,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,13.3,53,101700,1150,1326,396,797,574,298,86100,60000,33900,13780,330,3.1,8,8,16.0,1250,9,999999999,220,0.1500,0,88,0.160,0.0,1.0 +2001,8,2,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,13.9,52,101600,1167,1326,403,749,463,341,80000,48400,37400,16790,360,2.6,8,8,16.0,1524,9,999999999,229,0.1500,0,88,0.160,0.0,1.0 +2001,8,2,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,13.9,50,101500,1124,1326,389,440,85,368,48600,8700,41200,15960,340,3.6,4,4,16.0,77777,9,999999999,229,0.1500,0,88,0.160,0.0,1.0 +2001,8,2,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,13.9,47,101400,1023,1326,394,745,622,265,80100,64800,30000,8800,360,3.1,4,4,16.0,77777,9,999999999,229,0.1500,0,88,0.160,0.0,1.0 +2001,8,2,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,13.9,47,101400,873,1326,391,627,728,147,66500,73900,17800,3840,360,1.5,3,3,16.0,77777,9,999999999,240,0.1500,0,88,0.160,0.0,1.0 +2001,8,2,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,13.9,45,101300,682,1326,394,465,582,165,49400,58600,19200,3510,360,2.6,3,3,16.0,77777,9,999999999,240,0.1500,0,88,0.160,0.0,1.0 +2001,8,2,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,12.2,39,101300,465,1326,398,296,453,137,30500,41900,15800,2670,240,3.6,4,4,16.0,77777,9,999999999,240,0.1500,0,88,0.160,0.0,1.0 +2001,8,2,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,12.8,42,101300,236,1326,393,140,181,107,14700,13100,12300,2290,280,2.6,3,3,16.0,77777,9,999999999,250,0.1500,0,88,0.160,0.0,1.0 +2001,8,2,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,11.1,42,101300,35,785,382,2,40,2,500,2100,400,60,270,4.1,3,3,16.0,77777,9,999999999,250,0.1500,0,88,0.160,0.0,1.0 +2001,8,2,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,15.0,70,101300,0,0,365,0,0,0,0,0,0,0,300,3.1,3,3,16.0,77777,9,999999999,250,0.1500,0,88,0.160,0.0,1.0 +2001,8,2,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,14.4,75,101400,0,0,341,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,259,0.1500,0,88,0.160,0.0,1.0 +2001,8,2,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,14.4,75,101400,0,0,341,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,259,0.1500,0,88,0.160,0.0,1.0 +2001,8,2,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,12.2,70,101400,0,0,333,0,0,0,0,0,0,0,190,5.7,0,0,16.0,77777,9,999999999,259,0.1500,0,88,0.160,0.0,1.0 +2001,8,3,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,12.2,75,101400,0,0,343,0,0,0,0,0,0,0,170,4.6,4,3,16.0,77777,9,999999999,259,0.1500,0,88,0.160,0.0,1.0 +2001,8,3,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,12.2,78,101400,0,0,342,0,0,0,0,0,0,0,180,2.6,7,4,16.0,77777,9,999999999,259,0.1500,0,88,0.160,0.0,1.0 +2001,8,3,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,12.2,78,101400,0,0,376,0,0,0,0,0,0,0,130,3.1,10,10,16.0,1524,9,999999999,270,0.1500,0,88,0.160,0.0,1.0 +2001,8,3,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,12.8,83,101400,0,0,374,0,0,0,0,0,0,0,120,4.1,10,10,16.0,1524,9,999999999,270,0.1500,0,88,0.160,0.0,1.0 +2001,8,3,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,12.2,78,101400,0,33,376,0,0,0,0,0,0,0,150,3.6,10,10,16.0,1036,9,999999999,270,0.1500,0,88,0.160,0.0,1.0 +2001,8,3,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,12.2,75,101400,110,1327,379,6,0,6,800,0,800,240,160,3.1,10,10,16.0,853,9,999999999,270,0.1500,0,88,0.160,0.0,1.0 +2001,8,3,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,12.8,78,101400,336,1327,380,51,0,51,6000,0,6000,2060,140,2.1,10,10,16.0,1158,9,999999999,270,0.1500,0,88,0.160,0.0,1.0 +2001,8,3,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,13.9,84,101400,562,1327,381,143,6,141,16400,400,16300,5660,180,2.1,10,10,16.0,671,9,999999999,279,0.1500,0,88,0.160,0.0,1.0 +2001,8,3,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,13.9,81,101400,769,1327,384,114,0,114,13800,0,13800,5490,190,1.5,10,10,16.0,1372,9,999999999,279,0.1500,0,88,0.160,0.0,1.0 +2001,8,3,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,15.6,90,101400,943,1327,386,148,0,148,18100,0,18100,7420,120,2.6,10,10,16.0,488,9,999999999,279,0.1500,0,88,0.160,0.0,1.0 +2001,8,3,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,15.6,87,101400,1072,1327,389,211,0,211,25600,0,25600,10410,90,4.1,10,10,16.0,518,9,999999999,279,0.1500,0,88,0.160,0.0,1.0 +2001,8,3,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,15.6,84,101400,1148,1327,392,260,6,255,31400,500,31000,12300,90,3.6,10,10,16.0,671,9,999999999,270,0.1500,0,88,0.160,0.0,1.0 +2001,8,3,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,15.6,76,101400,1164,1327,401,396,48,353,43700,4900,39400,16420,120,2.6,10,10,16.0,701,9,999999999,270,0.1500,0,88,0.160,0.0,1.0 +2001,8,3,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,13.9,59,101300,1121,1327,399,132,0,132,16700,0,16700,6980,160,3.1,9,9,16.0,1402,9,999999999,270,0.1500,0,88,0.160,0.0,1.0 +2001,8,3,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,13.3,55,101300,1020,1327,413,124,0,124,15500,0,15500,6500,190,3.1,10,10,16.0,1311,9,999999999,259,0.1500,0,88,0.160,0.0,1.0 +2001,8,3,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,13.3,55,101200,869,1327,413,124,0,124,15200,0,15200,6180,230,1.5,10,10,16.0,1372,9,999999999,259,0.1500,0,88,0.160,0.0,1.0 +2001,8,3,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,13.3,55,101200,678,1327,413,105,0,105,12600,0,12600,4870,260,3.6,10,10,16.0,1372,9,999999999,259,0.1500,0,88,0.160,0.0,1.0 +2001,8,3,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,13.9,57,101200,461,1327,414,90,0,90,10400,0,10400,3670,260,3.6,10,10,16.0,2134,9,999999999,259,0.1500,0,88,0.160,0.0,1.0 +2001,8,3,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,13.3,59,101200,231,1327,407,108,83,94,11500,6000,10500,2010,260,3.6,10,10,16.0,1829,9,999999999,250,0.1500,0,88,0.160,0.0,1.0 +2001,8,3,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,12.8,59,101200,32,763,403,1,17,1,200,900,200,30,270,4.6,10,10,16.0,1829,9,999999999,250,0.1500,0,88,0.160,0.0,1.0 +2001,8,3,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,12.8,63,101300,0,0,397,0,0,0,0,0,0,0,240,3.6,10,10,16.0,2134,9,999999999,250,0.1500,0,88,0.160,0.0,1.0 +2001,8,3,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,12.2,63,101300,0,0,393,0,0,0,0,0,0,0,230,4.1,10,10,16.0,1463,9,999999999,240,0.1500,0,88,0.160,0.0,1.0 +2001,8,3,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,11.7,65,101300,0,0,368,0,0,0,0,0,0,0,250,2.1,9,8,16.0,1981,9,999999999,240,0.1500,0,88,0.160,0.0,1.0 +2001,8,3,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,11.7,65,101300,0,0,376,0,0,0,0,0,0,0,230,3.1,10,9,16.0,1463,9,999999999,240,0.1500,0,88,0.160,0.0,1.0 +2001,8,4,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,12.2,70,101300,0,0,366,0,0,0,0,0,0,0,210,2.6,10,8,16.0,1524,9,999999999,250,0.1490,0,88,0.160,0.0,1.0 +2001,8,4,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,12.2,70,101300,0,0,366,0,0,0,0,0,0,0,0,0.0,9,8,16.0,1829,9,999999999,250,0.1490,0,88,0.160,0.0,1.0 +2001,8,4,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,12.8,75,101300,0,0,382,0,0,0,0,0,0,0,160,2.6,10,10,16.0,1829,9,999999999,250,0.1490,0,88,0.160,0.0,1.0 +2001,8,4,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,12.8,75,101300,0,0,382,0,0,0,0,0,0,0,180,2.6,10,10,16.0,1494,9,999999999,250,0.1490,0,88,0.160,0.0,1.0 +2001,8,4,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,12.2,75,101300,0,11,379,0,0,0,0,0,0,0,170,3.1,10,10,16.0,1676,9,999999999,250,0.1490,0,88,0.160,0.0,1.0 +2001,8,4,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,12.2,75,101300,106,1327,361,16,0,16,1900,0,1900,590,170,3.1,8,8,16.0,1463,9,999999999,250,0.1490,0,88,0.160,0.0,1.0 +2001,8,4,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,12.2,72,101400,332,1327,363,82,5,81,9300,200,9200,2940,180,2.1,8,8,16.0,1402,9,999999999,250,0.1490,0,88,0.160,0.0,1.0 +2001,8,4,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,12.2,72,101400,558,1327,363,157,11,152,17800,800,17500,5950,190,2.6,8,8,16.0,1676,9,999999999,250,0.1490,0,88,0.160,0.0,1.0 +2001,8,4,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,12.2,70,101400,766,1327,366,198,17,187,22900,1400,22100,8200,160,2.1,8,8,16.0,1676,9,999999999,250,0.1490,0,88,0.160,0.0,1.0 +2001,8,4,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,11.7,63,101400,940,1327,371,609,472,274,64300,48900,29600,7890,0,0.0,8,8,16.0,1676,9,999999999,250,0.1490,0,88,0.160,0.0,1.0 +2001,8,4,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,11.1,54,101400,1070,1327,379,725,553,278,78000,57700,31300,10230,280,2.6,8,8,16.0,1524,9,999999999,250,0.1490,0,88,0.160,0.0,1.0 +2001,8,4,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,10.0,47,101400,1145,1327,383,384,48,342,42400,4900,38200,15480,190,2.6,8,8,16.0,3048,9,999999999,259,0.1490,0,88,0.160,0.0,1.0 +2001,8,4,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,10.0,49,101400,1162,1327,380,469,78,400,51700,8000,44700,18180,210,2.1,8,8,16.0,1829,9,999999999,259,0.1490,0,88,0.160,0.0,1.0 +2001,8,4,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,9.4,45,101400,1118,1327,383,409,36,378,45100,3700,42000,16170,290,2.1,8,8,16.0,2286,9,999999999,270,0.1490,0,88,0.160,0.0,1.0 +2001,8,4,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,10.0,46,101400,1017,1327,386,170,0,170,20800,0,20800,8560,0,0.0,8,8,16.0,1829,9,999999999,270,0.1490,0,88,0.160,0.0,1.0 +2001,8,4,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,10.0,46,101400,866,1327,394,131,0,131,15900,0,15900,6470,220,3.1,9,9,16.0,2134,9,999999999,279,0.1490,0,88,0.160,0.0,1.0 +2001,8,4,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,10.0,44,101400,675,1327,389,158,0,158,18300,0,18300,6770,280,1.5,8,8,16.0,1676,9,999999999,279,0.1490,0,88,0.160,0.0,1.0 +2001,8,4,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,12.8,57,101400,456,1327,387,182,68,158,19900,6400,17600,4120,340,3.6,8,8,16.0,2438,9,999999999,290,0.1490,0,88,0.160,0.0,1.0 +2001,8,4,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,13.3,65,101500,227,1327,379,94,19,90,10000,800,9900,2510,340,3.1,8,8,16.0,2438,9,999999999,290,0.1490,0,88,0.160,0.0,1.0 +2001,8,4,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,12.8,68,101500,30,719,372,1,4,1,200,100,100,10,330,2.6,8,8,16.0,2286,9,999999999,300,0.1490,0,88,0.160,0.0,1.0 +2001,8,4,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,13.3,70,101500,0,0,373,0,0,0,0,0,0,0,310,4.1,8,8,16.0,2134,9,999999999,300,0.1490,0,88,0.160,0.0,1.0 +2001,8,4,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,13.9,76,101500,0,0,371,0,0,0,0,0,0,0,300,2.6,9,8,16.0,1981,9,999999999,309,0.1490,0,88,0.160,0.0,1.0 +2001,8,4,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,13.9,81,101500,0,0,359,0,0,0,0,0,0,0,290,1.5,8,7,16.0,4572,9,999999999,300,0.1490,0,88,0.160,0.0,1.0 +2001,8,4,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,13.9,81,101600,0,0,373,0,0,0,0,0,0,0,0,0.0,9,9,16.0,1676,9,999999999,300,0.1490,0,88,0.160,0.0,1.0 +2001,8,5,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,13.9,84,101600,0,0,350,0,0,0,0,0,0,0,0,0.0,6,5,16.0,77777,9,999999999,300,0.1490,0,88,0.160,0.0,1.0 +2001,8,5,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,12.8,90,101600,0,0,338,0,0,0,0,0,0,0,110,4.1,5,5,16.0,77777,9,999999999,300,0.1490,0,88,0.160,0.0,1.0 +2001,8,5,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,12.2,83,101600,0,0,352,0,0,0,0,0,0,0,110,3.6,8,8,16.0,2134,9,999999999,300,0.1490,0,88,0.160,0.0,1.0 +2001,8,5,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,12.2,87,101600,0,0,349,0,0,0,0,0,0,0,120,2.1,8,8,16.0,1981,9,999999999,300,0.1490,0,88,0.160,0.0,1.0 +2001,8,5,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,11.7,87,101600,0,0,332,0,0,0,0,0,0,0,110,2.1,4,4,16.0,4267,9,999999999,290,0.1490,0,88,0.160,0.0,1.0 +2001,8,5,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,12.8,87,101600,102,1316,338,23,70,17,2500,2900,2300,280,100,3.1,4,4,16.0,77777,9,999999999,290,0.1490,0,88,0.160,0.0,1.0 +2001,8,5,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,12.8,81,101600,329,1327,343,175,442,66,18000,36400,8900,1190,120,2.6,4,4,16.0,77777,9,999999999,290,0.1490,0,88,0.160,0.0,1.0 +2001,8,5,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,12.8,73,101600,555,1327,348,356,646,86,37600,62200,11500,1750,110,3.1,3,3,16.0,77777,9,999999999,290,0.1490,0,88,0.160,0.0,1.0 +2001,8,5,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,13.3,68,101500,763,1327,357,535,751,103,56000,74500,13100,2300,90,2.1,3,3,16.0,77777,9,999999999,290,0.1490,0,88,0.160,0.0,1.0 +2001,8,5,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,12.8,55,101500,938,1327,370,664,726,150,70900,74200,18400,4310,70,2.1,3,3,16.0,77777,9,999999999,290,0.1490,0,88,0.160,0.0,1.0 +2001,8,5,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,11.1,46,101500,1067,1327,373,782,803,135,83300,81300,17800,4690,50,2.6,3,3,16.0,77777,9,999999999,290,0.1490,0,88,0.160,0.0,1.0 +2001,8,5,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,11.1,38,101500,1143,1327,391,856,808,159,90500,81600,20100,6610,240,5.7,3,3,16.0,77777,9,999999999,290,0.1490,0,88,0.160,0.0,1.0 +2001,8,5,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,10.6,34,101500,1159,1327,396,847,758,184,88300,76000,21800,7830,210,7.7,3,3,16.0,77777,9,999999999,290,0.1490,0,88,0.160,0.0,1.0 +2001,8,5,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,11.1,34,101500,1115,1327,399,844,804,166,88300,80900,20300,6250,210,5.7,3,3,16.0,77777,9,999999999,290,0.1490,0,88,0.160,0.0,1.0 +2001,8,5,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.9,11.7,35,101500,1014,1327,403,688,579,244,74300,60400,28100,7900,240,4.6,3,3,16.0,77777,9,999999999,290,0.1490,0,88,0.160,0.0,1.0 +2001,8,5,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,12.2,37,101500,862,1327,404,580,581,203,62500,60000,23400,5130,210,6.7,4,4,16.0,77777,9,999999999,290,0.1490,0,88,0.160,0.0,1.0 +2001,8,5,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.9,12.8,37,101600,671,1327,408,445,558,163,47300,56000,18900,3440,260,5.7,4,4,16.0,77777,9,999999999,290,0.1490,0,88,0.160,0.0,1.0 +2001,8,5,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,12.8,40,101600,452,1327,399,301,538,118,31400,49400,14600,2260,270,6.2,3,3,16.0,77777,9,999999999,290,0.1490,0,88,0.160,0.0,1.0 +2001,8,5,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,13.3,47,101700,222,1327,388,117,114,98,12400,8100,11000,2090,280,6.2,3,3,16.0,77777,9,999999999,300,0.1490,0,88,0.160,0.0,1.0 +2001,8,5,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,13.3,53,101800,27,697,376,0,20,0,0,0,0,0,300,4.6,3,3,16.0,77777,9,999999999,300,0.1490,0,88,0.160,0.0,1.0 +2001,8,5,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,12.8,55,101900,0,0,370,0,0,0,0,0,0,0,260,5.7,3,3,16.0,77777,9,999999999,300,0.1490,0,88,0.160,0.0,1.0 +2001,8,5,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,12.8,59,102000,0,0,364,0,0,0,0,0,0,0,230,2.1,3,3,16.0,77777,9,999999999,300,0.1490,0,88,0.160,0.0,1.0 +2001,8,5,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,13.3,63,102000,0,0,363,0,0,0,0,0,0,0,280,2.1,3,3,16.0,77777,9,999999999,290,0.1490,0,88,0.160,0.0,1.0 +2001,8,5,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,13.3,68,102000,0,0,357,0,0,0,0,0,0,0,260,2.1,3,3,16.0,77777,9,999999999,290,0.1490,0,88,0.160,0.0,1.0 +2001,8,6,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,13.3,73,102000,0,0,351,0,0,0,0,0,0,0,150,1.5,3,3,16.0,77777,9,999999999,279,0.1480,0,88,0.160,0.0,1.0 +2001,8,6,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,13.3,73,102000,0,0,351,0,0,0,0,0,0,0,140,1.5,3,3,16.0,77777,9,999999999,279,0.1480,0,88,0.160,0.0,1.0 +2001,8,6,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,13.3,78,102000,0,0,346,0,0,0,0,0,0,0,150,1.5,3,3,16.0,77777,9,999999999,279,0.1480,0,88,0.160,0.0,1.0 +2001,8,6,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,13.3,80,102000,0,0,346,0,0,0,0,0,0,0,120,2.1,4,4,16.0,77777,9,999999999,270,0.1480,0,88,0.160,0.0,1.0 +2001,8,6,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,13.9,93,102100,0,0,336,0,0,0,0,0,0,0,110,2.6,3,3,16.0,77777,9,999999999,270,0.1480,0,88,0.160,0.0,1.0 +2001,8,6,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,14.4,90,102100,98,1295,342,28,163,16,3000,8500,2400,300,120,2.1,3,3,16.0,77777,9,999999999,259,0.1480,0,88,0.160,0.0,1.0 +2001,8,6,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,13.3,75,102100,325,1328,349,174,488,55,18100,40500,8200,1020,0,0.0,3,3,16.0,77777,9,999999999,259,0.1480,0,88,0.160,0.0,1.0 +2001,8,6,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,13.9,70,102100,552,1328,357,356,663,80,37700,63900,11100,1640,0,0.0,3,3,16.0,77777,9,999999999,250,0.1480,0,88,0.160,0.0,1.0 +2001,8,6,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,13.9,65,102100,760,1328,366,519,710,112,55300,71600,14300,2630,20,2.1,4,4,16.0,77777,9,999999999,250,0.1480,0,88,0.160,0.0,1.0 +2001,8,6,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,13.3,57,102000,935,1328,371,669,761,132,70000,76300,16200,3480,360,2.1,3,3,16.0,77777,9,999999999,240,0.1480,0,88,0.160,0.0,1.0 +2001,8,6,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,13.3,50,102000,1064,1328,382,771,762,159,80600,76500,19100,5240,340,2.1,3,3,16.0,77777,9,999999999,240,0.1480,0,88,0.160,0.0,1.0 +2001,8,6,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,13.9,48,102000,1140,1328,389,838,748,195,89900,76700,23900,8640,320,2.6,3,3,16.0,77777,9,999999999,240,0.1480,0,88,0.160,0.0,1.0 +2001,8,6,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,14.4,47,101900,1156,1328,395,828,698,220,88300,71200,26100,10190,310,3.6,3,3,16.0,77777,9,999999999,229,0.1480,0,88,0.160,0.0,1.0 +2001,8,6,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,14.4,44,101900,1112,1328,401,819,798,149,86800,80600,19100,5710,290,4.6,3,3,16.0,77777,9,999999999,229,0.1480,0,88,0.160,0.0,1.0 +2001,8,6,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,15.6,46,101900,1011,1328,408,740,762,159,76800,76200,18700,4590,320,4.6,4,4,16.0,77777,9,999999999,220,0.1480,0,88,0.160,0.0,1.0 +2001,8,6,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,16.7,51,101900,859,1328,407,623,748,138,66300,76000,17000,3560,330,6.2,4,4,16.0,77777,9,999999999,220,0.1480,0,88,0.160,0.0,1.0 +2001,8,6,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,16.7,56,101900,667,1328,391,454,616,144,46900,60100,16600,2960,350,6.7,2,2,16.0,77777,9,999999999,209,0.1480,0,88,0.160,0.0,1.0 +2001,8,6,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,16.1,60,102000,448,1328,385,294,485,131,30300,44300,15400,2540,350,6.7,3,3,16.0,77777,9,999999999,209,0.1480,0,88,0.160,0.0,1.0 +2001,8,6,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,16.1,66,102000,217,1328,377,122,145,98,12800,10100,11200,2090,330,7.2,3,3,16.0,77777,9,999999999,200,0.1480,0,88,0.160,0.0,1.0 +2001,8,6,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,16.1,73,102000,25,653,353,0,0,0,0,0,0,0,320,6.7,0,0,16.0,77777,9,999999999,200,0.1480,0,88,0.160,0.0,1.0 +2001,8,6,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,16.1,75,102100,0,0,369,0,0,0,0,0,0,0,330,7.2,4,4,16.0,77777,9,999999999,200,0.1480,0,88,0.160,0.0,1.0 +2001,8,6,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,16.1,78,102100,0,0,382,0,0,0,0,0,0,0,310,7.2,8,8,16.0,1524,9,999999999,189,0.1480,0,88,0.160,0.0,1.0 +2001,8,6,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,15.6,79,102100,0,0,387,0,0,0,0,0,0,0,320,6.7,9,9,16.0,1676,9,999999999,189,0.1480,0,88,0.160,0.0,1.0 +2001,8,6,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,15.0,78,102100,0,0,375,0,0,0,0,0,0,0,320,5.7,8,8,16.0,1494,9,999999999,189,0.1480,0,88,0.160,0.0,1.0 +2001,8,7,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,14.4,78,102100,0,0,371,0,0,0,0,0,0,0,330,5.2,8,8,16.0,1829,9,999999999,189,0.1480,0,88,0.160,0.0,1.0 +2001,8,7,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,14.4,80,102200,0,0,369,0,0,0,0,0,0,0,320,5.7,8,8,16.0,1676,9,999999999,189,0.1480,0,88,0.160,0.0,1.0 +2001,8,7,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,13.3,78,102200,0,0,349,0,0,0,0,0,0,0,330,4.6,4,4,16.0,77777,9,999999999,200,0.1480,0,88,0.160,0.0,1.0 +2001,8,7,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,12.2,78,102300,0,0,340,0,0,0,0,0,0,0,330,4.6,3,3,16.0,77777,9,999999999,200,0.1480,0,88,0.160,0.0,1.0 +2001,8,7,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,11.7,78,102300,0,0,337,0,0,0,0,0,0,0,320,3.1,3,3,16.0,77777,9,999999999,200,0.1480,0,88,0.160,0.0,1.0 +2001,8,7,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,11.1,75,102300,94,1251,354,27,85,21,3000,3500,2700,360,320,4.6,8,8,16.0,732,9,999999999,200,0.1480,0,88,0.160,0.0,1.0 +2001,8,7,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,11.1,72,102300,321,1328,356,89,63,73,9700,5400,8400,1590,330,3.6,8,8,16.0,792,9,999999999,200,0.1480,0,88,0.160,0.0,1.0 +2001,8,7,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,11.7,70,102300,548,1328,347,336,464,144,35200,44800,16600,2860,350,2.1,4,4,16.0,77777,9,999999999,200,0.1480,0,88,0.160,0.0,1.0 +2001,8,7,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,12.2,63,102300,757,1328,358,514,675,128,54200,67700,15500,2940,320,2.6,4,4,16.0,77777,9,999999999,200,0.1480,0,88,0.160,0.0,1.0 +2001,8,7,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,12.8,61,102200,932,1328,362,680,791,124,71700,79500,15800,3320,280,2.6,3,3,16.0,77777,9,999999999,200,0.1480,0,88,0.160,0.0,1.0 +2001,8,7,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,13.3,59,102200,1062,1328,368,782,815,129,83600,82600,17400,4460,280,3.1,3,3,16.0,77777,9,999999999,200,0.1480,0,88,0.160,0.0,1.0 +2001,8,7,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,13.3,51,102100,1137,1328,379,856,826,147,91100,83600,19400,6100,340,3.6,3,3,16.0,77777,9,999999999,209,0.1480,0,88,0.160,0.0,1.0 +2001,8,7,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,13.3,47,102100,1153,1328,388,871,860,123,89700,86200,14700,4530,340,5.7,3,3,16.0,77777,9,999999999,209,0.1480,0,88,0.160,0.0,1.0 +2001,8,7,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,12.2,41,102000,1109,1328,376,825,811,147,87600,82000,19000,5600,320,6.7,0,0,16.0,77777,9,999999999,209,0.1480,0,88,0.160,0.0,1.0 +2001,8,7,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,12.2,39,102000,1007,1328,379,741,774,152,77200,77600,18200,4420,340,5.2,0,0,16.0,77777,9,999999999,209,0.1480,0,88,0.160,0.0,1.0 +2001,8,7,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,12.2,41,101900,855,1328,376,616,735,142,65400,74500,17300,3630,340,6.7,0,0,16.0,77777,9,999999999,209,0.1480,0,88,0.160,0.0,1.0 +2001,8,7,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,11.1,38,101800,663,1328,375,440,559,160,46700,56000,18700,3350,330,5.7,0,0,16.0,77777,9,999999999,220,0.1480,0,88,0.160,0.0,1.0 +2001,8,7,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,11.1,40,101800,443,1328,369,278,411,140,28300,37400,15800,2740,340,8.8,0,0,16.0,77777,9,999999999,220,0.1480,0,88,0.160,0.0,1.0 +2001,8,7,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,13.3,51,101800,213,1328,363,128,158,103,13500,10900,11700,2190,330,7.7,0,0,16.0,77777,9,999999999,220,0.1480,0,88,0.160,0.0,1.0 +2001,8,7,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,13.3,57,101900,23,631,355,0,0,0,0,0,0,0,320,5.7,0,0,16.0,77777,9,999999999,220,0.1480,0,88,0.160,0.0,1.0 +2001,8,7,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,13.3,61,101900,0,0,350,0,0,0,0,0,0,0,310,4.6,0,0,16.0,77777,9,999999999,220,0.1480,0,88,0.160,0.0,1.0 +2001,8,7,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,12.8,66,101900,0,0,341,0,0,0,0,0,0,0,320,6.2,0,0,16.0,77777,9,999999999,229,0.1480,0,88,0.160,0.0,1.0 +2001,8,7,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,12.8,70,101900,0,0,336,0,0,0,0,0,0,0,320,5.7,0,0,16.0,77777,9,999999999,220,0.1480,0,88,0.160,0.0,1.0 +2001,8,7,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,11.7,70,101900,0,0,330,0,0,0,0,0,0,0,320,3.1,0,0,16.0,77777,9,999999999,209,0.1480,0,88,0.160,0.0,1.0 +2001,8,8,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,11.1,70,101900,0,0,327,0,0,0,0,0,0,0,320,2.6,0,0,16.0,77777,9,999999999,200,0.1470,0,88,0.160,0.0,1.0 +2001,8,8,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,11.7,75,101800,0,0,325,0,0,0,0,0,0,0,320,2.6,0,0,16.0,77777,9,999999999,200,0.1470,0,88,0.160,0.0,1.0 +2001,8,8,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,11.7,81,101900,0,0,320,0,0,0,0,0,0,0,330,3.1,0,0,16.0,77777,9,999999999,189,0.1470,0,88,0.160,0.0,1.0 +2001,8,8,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,11.7,81,101900,0,0,320,0,0,0,0,0,0,0,340,2.6,0,0,16.0,77777,9,999999999,179,0.1470,0,88,0.160,0.0,1.0 +2001,8,8,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,11.7,84,101900,0,0,331,0,0,0,0,0,0,0,350,1.5,3,3,16.0,77777,9,999999999,170,0.1470,0,88,0.160,0.0,1.0 +2001,8,8,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,11.7,84,101900,91,1229,317,26,178,14,2900,9200,2200,270,0,0.0,0,0,16.0,77777,9,999999999,160,0.1470,0,88,0.160,0.0,1.0 +2001,8,8,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,11.7,78,101900,317,1329,323,168,470,56,17400,38600,8200,1030,330,2.1,0,0,16.0,77777,9,999999999,160,0.1470,0,88,0.160,0.0,1.0 +2001,8,8,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,11.7,72,101900,545,1329,328,345,628,87,36200,60200,11500,1750,330,1.5,0,0,16.0,77777,9,999999999,150,0.1470,0,88,0.160,0.0,1.0 +2001,8,8,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,12.2,65,101800,754,1329,338,518,710,115,55100,71500,14500,2670,300,2.6,0,0,16.0,77777,9,999999999,139,0.1470,0,88,0.160,0.0,1.0 +2001,8,8,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,12.2,57,101700,929,1329,349,669,779,123,70500,78300,15600,3280,320,2.1,0,0,12.8,77777,9,999999999,129,0.1470,0,88,0.160,0.0,1.0 +2001,8,8,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,12.2,50,101700,1059,1329,359,770,779,148,81100,78500,18400,4900,340,3.1,0,0,16.0,77777,9,999999999,139,0.1470,0,88,0.160,0.0,1.0 +2001,8,8,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,12.8,44,101500,1134,1329,374,856,832,144,91300,84300,19200,5940,320,4.1,0,0,16.0,77777,9,999999999,139,0.1470,0,88,0.160,0.0,1.0 +2001,8,8,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,13.3,40,101500,1150,1329,385,865,830,145,92400,84100,19400,6290,320,5.2,0,0,16.0,77777,9,999999999,150,0.1470,0,88,0.160,0.0,1.0 +2001,8,8,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.0,14.4,39,101400,1106,1329,396,807,750,181,86600,77000,22400,7290,330,5.7,0,0,16.0,77777,9,999999999,160,0.1470,0,88,0.160,0.0,1.0 +2001,8,8,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,31.1,14.4,36,101300,1004,1329,401,728,744,165,77900,76100,20200,5290,330,5.7,0,0,16.0,77777,9,999999999,160,0.1470,0,88,0.160,0.0,1.0 +2001,8,8,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.6,15.0,39,101200,851,1329,400,603,705,151,63800,71300,18000,3810,340,6.7,0,0,16.0,77777,9,999999999,170,0.1470,0,88,0.160,0.0,1.0 +2001,8,8,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.0,14.4,39,101200,658,1329,396,456,648,134,47300,63300,15800,2770,330,8.2,0,0,16.0,77777,9,999999999,170,0.1470,0,88,0.160,0.0,1.0 +2001,8,8,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.9,14.4,41,101100,438,1329,390,280,481,121,29000,43700,14500,2320,330,7.7,0,0,16.0,77777,9,999999999,179,0.1470,0,88,0.160,0.0,1.0 +2001,8,8,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,13.9,44,101200,207,1329,381,112,101,96,11800,6900,10700,2040,320,7.2,0,0,16.0,77777,9,999999999,179,0.1470,0,88,0.160,0.0,1.0 +2001,8,8,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,13.3,47,101200,20,587,372,0,0,0,0,0,0,0,290,5.2,0,0,16.0,77777,9,999999999,189,0.1470,0,88,0.160,0.0,1.0 +2001,8,8,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,12.8,48,101200,0,0,365,0,0,0,0,0,0,0,300,6.2,0,0,16.0,77777,9,999999999,189,0.1470,0,88,0.160,0.0,1.0 +2001,8,8,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,12.2,50,101200,0,0,359,0,0,0,0,0,0,0,310,2.6,0,0,16.0,77777,9,999999999,200,0.1470,0,88,0.160,0.0,1.0 +2001,8,8,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,12.2,55,101200,0,0,352,0,0,0,0,0,0,0,310,1.5,0,0,16.0,77777,9,999999999,200,0.1470,0,88,0.160,0.0,1.0 +2001,8,8,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,12.8,61,101200,0,0,347,0,0,0,0,0,0,0,320,2.6,0,0,16.0,77777,9,999999999,189,0.1470,0,88,0.160,0.0,1.0 +2001,8,9,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,12.8,61,101200,0,0,347,0,0,0,0,0,0,0,310,2.6,0,0,16.0,77777,9,999999999,189,0.1470,0,88,0.160,0.0,1.0 +2001,8,9,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,12.8,66,101200,0,0,341,0,0,0,0,0,0,0,310,1.5,0,0,16.0,77777,9,999999999,179,0.1470,0,88,0.160,0.0,1.0 +2001,8,9,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,12.8,75,101200,0,0,331,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,179,0.1470,0,88,0.160,0.0,1.0 +2001,8,9,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,14.4,84,101200,0,0,333,0,0,0,0,0,0,0,90,1.5,0,0,16.0,77777,9,999999999,179,0.1470,0,88,0.160,0.0,1.0 +2001,8,9,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,12.2,80,101200,0,0,323,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,170,0.1470,0,88,0.160,0.0,1.0 +2001,8,9,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,13.3,80,101200,87,1207,329,23,134,15,2600,6800,2100,280,0,0.0,0,0,16.0,77777,9,999999999,170,0.1470,0,88,0.160,0.0,1.0 +2001,8,9,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,13.9,78,101300,314,1329,335,164,417,65,16700,33700,8700,1160,0,0.0,1,0,16.0,77777,9,999999999,170,0.1470,0,88,0.160,0.0,1.0 +2001,8,9,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,13.9,65,101300,541,1329,348,335,560,106,34600,53000,13000,2060,0,0.0,1,0,16.0,77777,9,999999999,160,0.1470,0,88,0.160,0.0,1.0 +2001,8,9,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,13.9,55,101200,750,1329,361,497,628,142,52000,62600,16600,3190,320,1.5,0,0,16.0,77777,9,999999999,160,0.1470,0,88,0.160,0.0,1.0 +2001,8,9,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,13.9,47,101200,926,1329,375,663,749,140,71000,76600,17600,3970,270,3.1,0,0,16.0,77777,9,999999999,150,0.1470,0,88,0.160,0.0,1.0 +2001,8,9,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,13.9,41,101200,1056,1329,386,770,791,140,81500,79900,17900,4670,290,3.6,0,0,16.0,77777,9,999999999,160,0.1470,0,88,0.160,0.0,1.0 +2001,8,9,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.6,13.9,36,101100,1131,1329,398,820,712,213,87300,72700,25300,9110,290,4.6,0,0,16.0,77777,9,999999999,170,0.1470,0,88,0.160,0.0,1.0 +2001,8,9,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,32.8,13.3,31,101100,1147,1329,409,835,746,190,89800,76600,23500,8610,280,4.6,0,0,16.0,77777,9,999999999,170,0.1470,0,88,0.160,0.0,1.0 +2001,8,9,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,35.0,11.7,24,101000,1103,1329,419,813,805,144,86400,81400,18700,5400,280,5.2,0,0,16.0,77777,9,999999999,179,0.1470,0,88,0.160,0.0,1.0 +2001,8,9,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,36.1,11.1,22,101000,1000,1329,424,735,775,151,76700,77700,18100,4320,290,5.2,0,0,16.0,77777,9,999999999,179,0.1470,0,88,0.160,0.0,1.0 +2001,8,9,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,36.1,10.0,21,101000,847,1329,422,597,680,162,62600,68500,18900,4020,300,5.2,0,0,16.0,77777,9,999999999,189,0.1470,0,88,0.160,0.0,1.0 +2001,8,9,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,36.7,9.4,19,100900,654,1329,425,450,592,158,47700,59200,18600,3290,300,3.1,0,0,16.0,77777,9,999999999,189,0.1470,0,88,0.160,0.0,1.0 +2001,8,9,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,35.6,9.4,20,100900,434,1329,419,282,455,133,28800,41100,15400,2580,290,2.6,0,0,16.0,77777,9,999999999,200,0.1470,0,88,0.160,0.0,1.0 +2001,8,9,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,33.3,12.8,29,101000,202,1329,411,119,145,97,12500,9700,11000,2060,300,3.1,0,0,16.0,77777,9,999999999,200,0.1470,0,88,0.160,0.0,1.0 +2001,8,9,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,29.0,14.0,40,100900,18,565,390,0,0,0,0,0,0,0,270,3.1,0,0,16.1,77777,9,999999999,209,0.1470,0,88,0.160,0.0,1.0 +2001,8,9,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,14.4,45,101100,0,0,381,0,0,0,0,0,0,0,290,4.1,0,0,16.0,77777,9,999999999,209,0.1470,0,88,0.160,0.0,1.0 +2001,8,9,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,13.9,47,101100,0,0,375,0,0,0,0,0,0,0,270,1.5,0,0,16.0,77777,9,999999999,220,0.1470,0,88,0.160,0.0,1.0 +2001,8,9,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,14.4,55,101200,0,0,365,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,209,0.1470,0,88,0.160,0.0,1.0 +2001,8,9,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,15.6,60,101200,0,0,366,0,0,0,0,0,0,0,330,2.1,0,0,16.0,77777,9,999999999,209,0.1470,0,88,0.160,0.0,1.0 +2001,8,10,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,15.6,68,101200,0,0,355,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,200,0.1460,0,88,0.160,0.0,1.0 +2001,8,10,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,16.7,78,101300,0,0,351,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,200,0.1460,0,88,0.160,0.0,1.0 +2001,8,10,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,15.0,76,101400,0,0,344,0,0,0,0,0,0,0,250,1.5,0,0,16.0,77777,9,999999999,189,0.1460,0,88,0.160,0.0,1.0 +2001,8,10,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,15.0,73,101400,0,0,347,0,0,0,0,0,0,0,300,2.6,0,0,16.0,77777,9,999999999,179,0.1460,0,88,0.160,0.0,1.0 +2001,8,10,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,14.4,78,101500,0,0,353,0,0,0,0,0,0,0,300,1.5,3,3,16.0,77777,9,999999999,179,0.1460,0,88,0.160,0.0,1.0 +2001,8,10,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,13.9,73,101500,83,1186,340,22,137,14,2500,6900,2000,260,360,1.5,0,0,16.0,77777,9,999999999,170,0.1460,0,88,0.160,0.0,1.0 +2001,8,10,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,13.9,68,101600,310,1330,345,159,395,67,16800,31700,9400,1210,260,1.5,0,0,16.0,77777,9,999999999,170,0.1460,0,88,0.160,0.0,1.0 +2001,8,10,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,14.4,66,101600,538,1330,351,334,582,98,34700,55300,12300,1930,360,2.1,0,0,16.0,77777,9,999999999,160,0.1460,0,88,0.160,0.0,1.0 +2001,8,10,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,14.4,59,101600,747,1330,359,517,727,108,55200,73300,14000,2510,20,2.1,0,0,16.0,77777,9,999999999,160,0.1460,0,88,0.160,0.0,1.0 +2001,8,10,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,14.4,55,101600,923,1330,365,646,708,154,68800,72100,18600,4300,10,2.1,0,0,16.0,77777,9,999999999,150,0.1460,0,88,0.160,0.0,1.0 +2001,8,10,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,13.3,47,101600,1053,1330,372,764,755,165,79500,75600,19400,5200,350,2.1,0,0,16.0,77777,9,999999999,150,0.1460,0,88,0.160,0.0,1.0 +2001,8,10,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,13.3,41,101500,1128,1330,383,809,682,228,85600,69400,26600,9600,320,2.6,0,0,16.0,77777,9,999999999,150,0.1460,0,88,0.160,0.0,1.0 +2001,8,10,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,29.4,14.4,40,101500,1144,1330,393,823,716,205,87900,73300,24700,9140,300,2.1,0,0,16.0,77777,9,999999999,160,0.1460,0,88,0.160,0.0,1.0 +2001,8,10,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.6,15.0,39,101400,1099,1330,400,814,799,152,86000,80600,19100,5560,300,3.1,0,0,16.0,77777,9,999999999,160,0.1460,0,88,0.160,0.0,1.0 +2001,8,10,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,31.1,15.6,39,101400,997,1330,403,703,683,190,74300,69400,22200,5910,310,3.6,0,0,16.0,77777,9,999999999,160,0.1460,0,88,0.160,0.0,1.0 +2001,8,10,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,32.2,16.1,38,101300,843,1330,409,591,650,178,61600,65100,20300,4330,290,4.1,0,0,16.0,77777,9,999999999,160,0.1460,0,88,0.160,0.0,1.0 +2001,8,10,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,32.2,16.1,38,101300,650,1330,427,443,592,153,47100,59100,18200,3170,310,4.1,3,3,16.0,77777,9,999999999,170,0.1460,0,88,0.160,0.0,1.0 +2001,8,10,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,31.1,15.6,39,101300,429,1330,403,256,380,133,26100,34200,15100,2580,300,4.1,0,0,16.0,77777,9,999999999,170,0.1460,0,88,0.160,0.0,1.0 +2001,8,10,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,16.7,49,101300,197,1330,390,101,42,95,11000,3200,10500,1900,340,3.6,0,0,16.0,77777,9,999999999,170,0.1460,0,88,0.160,0.0,1.0 +2001,8,10,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,17.2,60,101400,16,521,377,0,0,0,0,0,0,0,350,4.1,0,0,16.0,77777,9,999999999,170,0.1460,0,88,0.160,0.0,1.0 +2001,8,10,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,16.7,68,101400,0,0,362,0,0,0,0,0,0,0,330,1.5,0,0,16.0,77777,9,999999999,179,0.1460,0,88,0.160,0.0,1.0 +2001,8,10,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,16.1,73,101500,0,0,353,0,0,0,0,0,0,0,270,2.6,0,0,16.0,77777,9,999999999,179,0.1460,0,88,0.160,0.0,1.0 +2001,8,10,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,15.6,79,101500,0,0,344,0,0,0,0,0,0,0,260,2.6,0,0,16.0,77777,9,999999999,179,0.1460,0,88,0.160,0.0,1.0 +2001,8,10,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,14.4,75,101600,0,0,341,0,0,0,0,0,0,0,10,2.6,0,0,16.0,77777,9,999999999,189,0.1460,0,88,0.160,0.0,1.0 +2001,8,11,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,14.4,84,101600,0,0,333,0,0,0,0,0,0,0,360,2.1,0,0,16.0,77777,9,999999999,189,0.1460,0,88,0.160,0.0,1.0 +2001,8,11,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,13.9,84,101600,0,0,330,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,200,0.1460,0,88,0.160,0.0,1.0 +2001,8,11,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,13.3,86,101700,0,0,325,0,0,0,0,0,0,0,340,2.1,0,0,16.0,77777,9,999999999,200,0.1460,0,88,0.160,0.0,1.0 +2001,8,11,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,13.3,90,101700,0,0,322,0,0,0,0,0,0,0,340,2.6,0,0,16.0,77777,9,999999999,200,0.1460,0,88,0.160,0.0,1.0 +2001,8,11,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,13.3,93,101700,0,0,333,0,0,0,0,0,0,0,0,0.0,3,3,16.0,77777,9,999999999,209,0.1460,0,88,0.160,0.0,1.0 +2001,8,11,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,13.3,90,101700,80,1164,354,8,0,8,1000,0,1000,310,320,2.6,8,8,11.2,549,9,999999999,209,0.1460,0,88,0.160,0.0,1.0 +2001,8,11,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,13.3,90,101700,306,1330,361,49,0,49,5700,0,5700,1930,340,3.1,9,9,12.8,244,9,999999999,220,0.1460,0,88,0.160,0.0,1.0 +2001,8,11,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,13.3,86,101700,534,1330,374,117,0,117,13500,0,13500,4800,350,2.1,10,10,14.4,244,9,999999999,220,0.1460,0,88,0.160,0.0,1.0 +2001,8,11,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,13.9,84,101700,744,1330,381,191,12,185,22300,1000,21700,8000,320,1.5,10,10,12.8,335,9,999999999,220,0.1460,0,88,0.160,0.0,1.0 +2001,8,11,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,13.9,81,101600,920,1330,365,378,94,312,41500,9600,34900,10930,280,2.6,8,8,14.4,396,9,999999999,229,0.1460,0,88,0.160,0.0,1.0 +2001,8,11,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,14.4,73,101600,1050,1330,343,770,678,233,80700,68500,26500,7930,300,3.1,0,0,16.0,77777,9,999999999,229,0.1460,0,88,0.160,0.0,1.0 +2001,8,11,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,15.0,64,101500,1125,1330,357,826,748,192,88600,76700,23500,8110,300,2.1,0,0,16.0,77777,9,999999999,240,0.1460,0,88,0.160,0.0,1.0 +2001,8,11,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,14.4,50,101500,1141,1330,373,823,728,197,88200,74600,24000,8710,290,2.6,0,0,16.0,77777,9,999999999,240,0.1460,0,88,0.160,0.0,1.0 +2001,8,11,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,13.9,44,101400,1096,1330,381,808,805,143,85800,81400,18600,5260,260,2.6,0,0,16.0,77777,9,999999999,240,0.1460,0,88,0.160,0.0,1.0 +2001,8,11,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.9,15.6,44,101300,993,1330,391,716,726,173,76200,74100,20800,5390,280,2.6,0,0,16.0,77777,9,999999999,250,0.1460,0,88,0.160,0.0,1.0 +2001,8,11,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,29.4,15.0,42,101200,839,1330,393,592,681,161,62100,68500,18800,3960,300,3.1,0,0,16.0,77777,9,999999999,250,0.1460,0,88,0.160,0.0,1.0 +2001,8,11,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,31.1,13.3,34,101200,645,1330,400,437,606,142,45000,58800,16400,2860,310,3.6,0,0,16.0,77777,9,999999999,250,0.1460,0,88,0.160,0.0,1.0 +2001,8,11,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.0,13.9,37,101200,424,1330,395,258,409,127,26400,36700,14700,2450,340,3.1,0,0,16.0,77777,9,999999999,259,0.1460,0,88,0.160,0.0,1.0 +2001,8,11,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,14.4,43,101200,192,1330,387,108,87,95,11700,6600,10700,1870,350,2.6,0,0,16.0,77777,9,999999999,259,0.1460,0,88,0.160,0.0,1.0 +2001,8,11,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,16.1,54,101200,14,499,378,0,0,0,0,0,0,0,340,1.5,0,0,16.0,77777,9,999999999,259,0.1460,0,88,0.160,0.0,1.0 +2001,8,11,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,16.1,60,101300,0,0,369,0,0,0,0,0,0,0,320,2.6,0,0,16.0,77777,9,999999999,259,0.1460,0,88,0.160,0.0,1.0 +2001,8,11,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,16.1,66,101300,0,0,361,0,0,0,0,0,0,0,320,3.1,0,0,16.0,77777,9,999999999,270,0.1460,0,88,0.160,0.0,1.0 +2001,8,11,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,16.7,73,101300,0,0,357,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,270,0.1460,0,88,0.160,0.0,1.0 +2001,8,11,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,16.1,75,101300,0,0,351,0,0,0,0,0,0,0,340,3.1,0,0,16.0,77777,9,999999999,270,0.1460,0,88,0.160,0.0,1.0 +2001,8,12,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,16.1,78,101300,0,0,355,0,0,0,0,0,0,0,310,3.1,1,1,16.0,77777,9,999999999,270,0.1450,0,88,0.160,0.0,1.0 +2001,8,12,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,15.6,84,101300,0,0,339,0,0,0,0,0,0,0,320,3.6,0,0,16.0,7315,9,999999999,270,0.1450,0,88,0.160,0.0,1.0 +2001,8,12,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,15.6,87,101300,0,0,343,0,0,0,0,0,0,0,320,3.6,1,1,16.0,77777,9,999999999,270,0.1450,0,88,0.160,0.0,1.0 +2001,8,12,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,15.6,90,101400,0,0,341,0,0,0,0,0,0,0,270,2.1,1,1,16.0,77777,9,999999999,279,0.1450,0,88,0.160,0.0,1.0 +2001,8,12,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,15.6,97,101400,0,0,343,0,0,0,0,0,0,0,300,1.5,3,3,9.6,77777,9,999999999,279,0.1450,0,88,0.160,0.0,1.0 +2001,8,12,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,15.0,96,101400,76,1120,377,7,0,7,900,0,900,280,320,2.6,10,10,3.2,61,9,999999999,279,0.1450,0,88,0.160,0.0,1.0 +2001,8,12,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,15.6,97,101500,302,1330,380,75,5,73,8400,200,8300,2620,330,2.1,10,10,1.2,61,9,999999999,279,0.1450,0,88,0.160,0.0,1.0 +2001,8,12,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,15.6,93,101400,531,1330,383,244,192,167,26500,18900,19000,3910,0,0.0,10,10,4.0,122,9,999999999,279,0.1450,0,88,0.160,0.0,1.0 +2001,8,12,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,15.6,87,101400,741,1330,370,506,628,156,52600,62100,17900,3410,0,0.0,8,8,4.8,244,9,999999999,279,0.1450,0,88,0.160,0.0,1.0 +2001,8,12,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,16.1,75,101400,917,1330,351,657,755,135,68400,75500,16200,3400,0,0.0,0,0,16.0,77777,9,999999999,279,0.1450,0,88,0.160,0.0,1.0 +2001,8,12,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,16.1,62,101300,1047,1330,367,781,833,125,83700,84500,17100,4190,270,2.6,0,0,16.0,77777,9,999999999,279,0.1450,0,88,0.160,0.0,1.0 +2001,8,12,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,15.6,49,101300,1122,1330,383,826,742,199,88300,75900,24100,8300,300,4.6,0,0,16.0,77777,9,999999999,279,0.1450,0,88,0.160,0.0,1.0 +2001,8,12,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,29.4,15.6,43,101300,1138,1330,394,787,626,250,82800,63400,28500,10720,290,4.1,0,0,16.0,77777,9,999999999,279,0.1450,0,88,0.160,0.0,1.0 +2001,8,12,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,31.1,15.0,38,101200,1093,1330,410,688,454,314,73300,47300,34300,12240,290,2.1,1,1,16.0,7620,9,999999999,279,0.1450,0,88,0.160,0.0,1.0 +2001,8,12,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,32.2,14.4,34,101200,989,1330,421,691,641,213,72400,64700,24100,6420,290,4.1,2,2,16.0,7620,9,999999999,279,0.1450,0,88,0.160,0.0,1.0 +2001,8,12,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,33.3,13.3,30,101100,835,1330,433,585,693,149,61700,69900,17700,3680,330,3.1,4,4,16.0,77777,9,999999999,279,0.1450,0,88,0.160,0.0,1.0 +2001,8,12,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,33.3,11.7,27,101100,640,1330,417,430,562,160,45500,55900,18600,3320,340,3.1,1,1,16.0,77777,9,999999999,270,0.1450,0,88,0.160,0.0,1.0 +2001,8,12,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,31.7,15.6,38,101200,419,1330,414,241,376,123,24800,33600,14200,2360,330,3.1,1,1,16.0,77777,9,999999999,270,0.1450,0,88,0.160,0.0,1.0 +2001,8,12,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.9,16.7,48,101200,186,1330,400,87,0,87,9200,0,9200,2120,330,4.1,1,1,16.0,77777,9,999999999,270,0.1450,0,88,0.160,0.0,1.0 +2001,8,12,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,16.7,56,101300,12,455,386,0,0,0,0,0,0,0,320,3.1,1,1,16.0,77777,9,999999999,270,0.1450,0,88,0.160,0.0,1.0 +2001,8,12,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,17.2,66,101400,0,0,375,0,0,0,0,0,0,0,340,3.1,2,1,16.0,7620,9,999999999,270,0.1450,0,88,0.160,0.0,1.0 +2001,8,12,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,16.7,66,101400,0,0,380,0,0,0,0,0,0,0,300,3.1,4,3,16.0,7620,9,999999999,270,0.1450,0,88,0.160,0.0,1.0 +2001,8,12,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,16.1,75,101500,0,0,369,0,0,0,0,0,0,0,280,3.6,4,4,16.0,77777,9,999999999,259,0.1450,0,88,0.160,0.0,1.0 +2001,8,12,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,15.6,79,101500,0,0,365,0,0,0,0,0,0,0,0,0.0,6,5,16.0,77777,9,999999999,259,0.1450,0,88,0.160,0.0,1.0 +2001,8,13,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,15.0,76,101600,0,0,367,0,0,0,0,0,0,0,40,2.6,7,6,16.0,7620,9,999999999,250,0.1450,0,88,0.160,0.0,1.0 +2001,8,13,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,14.4,80,101700,0,0,353,0,0,0,0,0,0,0,10,1.5,5,4,16.0,4572,9,999999999,250,0.1450,0,88,0.160,0.0,1.0 +2001,8,13,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,13.9,84,101700,0,0,353,0,0,0,0,0,0,0,330,4.1,6,6,16.0,7620,9,999999999,240,0.1450,0,88,0.160,0.0,1.0 +2001,8,13,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,13.3,83,101700,0,0,341,0,0,0,0,0,0,0,340,3.6,4,3,16.0,77777,9,999999999,240,0.1450,0,88,0.160,0.0,1.0 +2001,8,13,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,13.3,86,101800,0,0,341,0,0,0,0,0,0,0,320,4.1,4,4,11.2,7620,9,999999999,229,0.1450,0,88,0.160,0.0,1.0 +2001,8,13,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,13.3,86,101800,73,1098,347,15,87,11,1900,3700,1700,180,360,3.6,6,6,16.0,77777,9,999999999,229,0.1450,0,88,0.160,0.0,1.0 +2001,8,13,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,12.8,83,101900,298,1331,356,89,52,77,9700,4400,8700,1980,360,3.1,8,8,16.0,3048,9,999999999,220,0.1450,0,88,0.160,0.0,1.0 +2001,8,13,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,13.3,78,101900,527,1331,364,145,6,143,16500,400,16300,5520,10,2.6,8,8,16.0,457,9,999999999,220,0.1450,0,88,0.160,0.0,1.0 +2001,8,13,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,13.3,78,101900,737,1331,383,232,41,210,25600,4100,23300,6710,350,1.5,10,10,16.0,457,9,999999999,209,0.1450,0,88,0.160,0.0,1.0 +2001,8,13,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,13.3,70,101900,913,1331,360,574,436,274,60300,45100,29300,7570,330,1.5,5,5,16.0,77777,9,999999999,209,0.1450,0,88,0.160,0.0,1.0 +2001,8,13,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,13.3,65,101900,1044,1331,360,758,732,183,80800,74800,22000,6290,310,2.6,3,3,16.0,77777,9,999999999,209,0.1450,0,88,0.160,0.0,1.0 +2001,8,13,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,13.9,63,101800,1119,1331,351,803,676,233,84800,68600,26900,9490,290,3.1,0,0,16.0,77777,9,999999999,209,0.1450,0,88,0.160,0.0,1.0 +2001,8,13,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,13.9,57,101800,1135,1331,359,829,764,177,86600,76700,21000,6920,290,3.1,0,0,16.0,77777,9,999999999,209,0.1450,0,88,0.160,0.0,1.0 +2001,8,13,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,14.4,52,101700,1089,1331,386,802,805,142,85200,81400,18400,5120,290,4.6,3,3,16.0,77777,9,999999999,220,0.1450,0,88,0.160,0.0,1.0 +2001,8,13,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,15.0,47,101700,985,1331,398,711,708,186,75200,71900,21800,5660,290,5.2,3,3,16.0,77777,9,999999999,220,0.1450,0,88,0.160,0.0,1.0 +2001,8,13,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,15.6,47,101600,831,1331,402,579,681,153,60900,68600,18000,3740,320,5.7,3,3,16.0,77777,9,999999999,220,0.1450,0,88,0.160,0.0,1.0 +2001,8,13,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,16.1,51,101600,636,1331,400,424,537,167,44600,53300,19000,3470,350,3.6,3,3,16.0,77777,9,999999999,220,0.1450,0,88,0.160,0.0,1.0 +2001,8,13,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,16.1,52,101600,414,1331,397,263,413,134,26700,36700,15300,2610,340,6.2,3,3,16.0,77777,9,999999999,229,0.1450,0,88,0.160,0.0,1.0 +2001,8,13,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,16.1,58,101600,181,1331,388,0,0,0,0,0,0,0,330,5.2,3,3,16.0,77777,9,999999999,229,0.1450,0,88,0.160,0.0,1.0 +2001,8,13,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,15.6,64,101600,10,433,376,0,0,0,0,0,0,0,350,5.2,3,3,16.0,77777,9,999999999,229,0.1450,0,88,0.160,0.0,1.0 +2001,8,13,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,15.0,70,101700,0,0,349,0,0,0,0,0,0,0,360,1.5,0,0,16.0,77777,9,999999999,229,0.1450,0,88,0.160,0.0,1.0 +2001,8,13,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,14.4,75,101700,0,0,347,0,0,0,0,0,0,0,330,3.6,2,1,16.0,77777,9,999999999,240,0.1450,0,88,0.160,0.0,1.0 +2001,8,13,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,14.4,80,101800,0,0,342,0,0,0,0,0,0,0,340,4.1,1,1,16.0,77777,9,999999999,229,0.1450,0,88,0.160,0.0,1.0 +2001,8,13,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,13.9,81,101800,0,0,332,0,0,0,0,0,0,0,340,2.1,0,0,16.0,77777,9,999999999,229,0.1450,0,88,0.160,0.0,1.0 +2001,8,14,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,13.3,86,101800,0,0,325,0,0,0,0,0,0,0,330,3.6,0,0,16.0,77777,9,999999999,229,0.1440,0,88,0.160,0.0,1.0 +2001,8,14,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,13.3,90,101900,0,0,336,0,0,0,0,0,0,0,330,3.6,3,3,16.0,5486,9,999999999,229,0.1440,0,88,0.160,0.0,1.0 +2001,8,14,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,12.8,87,101900,0,0,371,0,0,0,0,0,0,0,330,5.7,10,10,16.0,335,9,999999999,220,0.1440,0,88,0.160,0.0,1.0 +2001,8,14,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,12.2,83,101900,0,0,370,0,0,0,0,0,0,0,330,3.6,10,10,16.0,396,9,999999999,220,0.1440,0,88,0.160,0.0,1.0 +2001,8,14,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,12.2,83,101900,0,0,370,0,0,0,0,0,0,0,310,3.6,10,10,14.4,335,9,999999999,220,0.1440,0,88,0.160,0.0,1.0 +2001,8,14,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,12.8,90,101900,69,1076,368,2,0,2,300,0,300,80,340,2.1,10,10,16.0,335,9,999999999,220,0.1440,0,88,0.160,0.0,1.0 +2001,8,14,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,12.8,90,101900,294,1331,368,63,0,63,7200,0,7200,2320,310,3.1,10,10,14.4,213,9,999999999,209,0.1440,0,88,0.160,0.0,1.0 +2001,8,14,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,12.8,87,101900,523,1331,371,107,0,107,12400,0,12400,4440,320,3.1,10,10,14.4,213,9,999999999,209,0.1440,0,88,0.160,0.0,1.0 +2001,8,14,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,12.8,83,101900,734,1331,374,160,0,160,18800,0,18800,7110,310,3.1,10,10,14.4,274,9,999999999,209,0.1440,0,88,0.160,0.0,1.0 +2001,8,14,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,13.3,83,101900,910,1331,377,268,18,256,31200,1600,30200,11310,310,2.1,10,10,11.2,335,9,999999999,200,0.1440,0,88,0.160,0.0,1.0 +2001,8,14,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,13.3,78,101900,1041,1331,383,388,77,327,42700,7900,36600,12900,350,2.1,10,10,16.0,457,9,999999999,209,0.1440,0,88,0.160,0.0,1.0 +2001,8,14,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,13.3,73,101800,1116,1331,389,785,545,328,83600,56800,35900,13610,300,2.1,10,10,12.8,579,9,999999999,209,0.1440,0,88,0.160,0.0,1.0 +2001,8,14,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,13.9,65,101700,1131,1331,366,805,692,216,85600,70600,25500,9170,330,1.5,4,4,11.2,77777,9,999999999,209,0.1440,0,88,0.160,0.0,1.0 +2001,8,14,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,14.4,61,101600,1085,1331,372,796,787,153,83800,79300,19000,5350,0,0.0,3,3,12.8,77777,9,999999999,209,0.1440,0,88,0.160,0.0,1.0 +2001,8,14,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,15.0,57,101500,981,1331,381,711,720,179,75300,73300,21200,5420,0,0.0,3,3,12.8,77777,9,999999999,209,0.1440,0,88,0.160,0.0,1.0 +2001,8,14,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,14.4,50,101500,826,1331,389,559,638,162,58500,64000,18700,3900,0,0.0,3,3,14.4,77777,9,999999999,209,0.1440,0,88,0.160,0.0,1.0 +2001,8,14,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,15.6,51,101400,631,1331,397,417,518,172,43700,51400,19400,3580,80,2.6,3,3,16.0,77777,9,999999999,209,0.1440,0,88,0.160,0.0,1.0 +2001,8,14,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,16.1,58,101400,408,1331,372,246,386,127,25100,34200,14600,2450,100,2.6,0,0,16.0,77777,9,999999999,220,0.1440,0,88,0.160,0.0,1.0 +2001,8,14,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,16.7,66,101500,175,1331,364,0,0,0,0,0,0,0,100,4.1,0,0,16.0,77777,9,999999999,220,0.1440,0,88,0.160,0.0,1.0 +2001,8,14,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,16.7,66,101500,9,388,364,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,220,0.1440,0,88,0.160,0.0,1.0 +2001,8,14,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,16.1,68,101600,0,0,358,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,220,0.1440,0,88,0.160,0.0,1.0 +2001,8,14,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,15.0,73,101600,0,0,347,0,0,0,0,0,0,0,330,3.6,0,0,16.0,77777,9,999999999,220,0.1440,0,88,0.160,0.0,1.0 +2001,8,14,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,14.4,80,101600,0,0,336,0,0,0,0,0,0,0,330,3.1,0,0,16.0,77777,9,999999999,220,0.1440,0,88,0.160,0.0,1.0 +2001,8,14,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,13.9,81,101600,0,0,332,0,0,0,0,0,0,0,340,2.6,0,0,16.0,77777,9,999999999,220,0.1440,0,88,0.160,0.0,1.0 +2001,8,15,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,13.3,83,101700,0,0,327,0,0,0,0,0,0,0,350,3.1,0,0,16.0,77777,9,999999999,229,0.1440,0,88,0.160,0.0,1.0 +2001,8,15,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,13.3,90,101700,0,0,336,0,0,0,0,0,0,0,330,3.1,3,3,16.0,77777,9,999999999,229,0.1440,0,88,0.160,0.0,1.0 +2001,8,15,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,13.3,93,101600,0,0,351,0,0,0,0,0,0,0,350,2.6,8,8,16.0,244,9,999999999,229,0.1440,0,88,0.160,0.0,1.0 +2001,8,15,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,13.3,90,101600,0,0,371,0,0,0,0,0,0,0,350,3.6,10,10,12.8,244,9,999999999,229,0.1440,0,88,0.160,0.0,1.0 +2001,8,15,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,13.3,93,101600,0,0,368,0,0,0,0,0,0,0,340,3.1,10,10,11.2,244,9,999999999,229,0.1440,0,88,0.160,0.0,1.0 +2001,8,15,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,13.3,90,101700,66,1054,371,6,0,6,700,0,700,240,320,3.1,10,10,11.2,244,9,999999999,240,0.1440,0,88,0.160,0.0,1.0 +2001,8,15,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,13.3,93,101700,290,1332,368,62,0,62,7000,0,7000,2280,300,3.6,10,10,8.0,183,9,999999999,240,0.1440,0,88,0.160,0.0,1.0 +2001,8,15,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,13.3,90,101700,520,1332,371,177,28,166,19800,2200,19000,6030,340,3.1,10,10,11.2,183,9,999999999,240,0.1440,0,88,0.160,0.0,1.0 +2001,8,15,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,13.3,90,101700,730,1332,371,252,29,236,28600,2600,27200,9370,300,1.5,10,10,16.0,244,9,999999999,240,0.1440,0,88,0.160,0.0,1.0 +2001,8,15,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,13.9,84,101700,907,1332,381,399,124,314,43600,13100,34600,9280,320,1.5,10,10,16.0,366,9,999999999,240,0.1440,0,88,0.160,0.0,1.0 +2001,8,15,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,13.9,78,101700,1037,1332,368,695,577,245,75400,60200,28300,8260,330,1.5,8,8,16.0,427,9,999999999,229,0.1440,0,88,0.160,0.0,1.0 +2001,8,15,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,13.9,68,101600,1113,1332,345,773,640,237,81500,64900,27100,9440,350,1.5,0,0,16.0,77777,9,999999999,229,0.1440,0,88,0.160,0.0,1.0 +2001,8,15,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,14.4,61,101600,1128,1332,356,775,644,228,82000,65500,26400,9520,290,2.1,0,0,16.0,77777,9,999999999,220,0.1440,0,88,0.160,0.0,1.0 +2001,8,15,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,15.0,57,101600,1082,1332,365,752,696,185,80400,71300,22400,6940,270,3.6,0,0,16.0,77777,9,999999999,209,0.1440,0,88,0.160,0.0,1.0 +2001,8,15,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,15.0,56,101500,977,1332,368,679,653,199,71400,66100,22800,5910,320,2.1,0,0,16.0,77777,9,999999999,200,0.1440,0,88,0.160,0.0,1.0 +2001,8,15,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,15.0,52,101500,822,1332,374,525,508,211,55800,52200,23600,5110,310,2.1,0,0,16.0,77777,9,999999999,189,0.1440,0,88,0.160,0.0,1.0 +2001,8,15,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,15.6,52,101400,626,1332,377,403,480,177,42000,47500,19600,3690,320,2.1,0,0,16.0,77777,9,999999999,179,0.1440,0,88,0.160,0.0,1.0 +2001,8,15,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,16.1,54,101400,403,1332,378,209,226,140,21700,20400,15600,2920,290,3.6,0,0,16.0,77777,9,999999999,179,0.1440,0,88,0.160,0.0,1.0 +2001,8,15,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,16.1,62,101500,169,1332,367,0,0,0,0,0,0,0,350,4.6,0,0,16.0,77777,9,999999999,170,0.1440,0,88,0.160,0.0,1.0 +2001,8,15,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,15.0,70,101500,7,366,349,0,0,0,0,0,0,0,330,4.1,0,0,16.0,77777,9,999999999,160,0.1440,0,88,0.160,0.0,1.0 +2001,8,15,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,13.9,76,101600,0,0,337,0,0,0,0,0,0,0,320,4.1,0,0,16.0,77777,9,999999999,150,0.1440,0,88,0.160,0.0,1.0 +2001,8,15,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,13.3,80,101700,0,0,329,0,0,0,0,0,0,0,320,4.1,0,0,16.0,77777,9,999999999,139,0.1440,0,88,0.160,0.0,1.0 +2001,8,15,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,13.3,83,101700,0,0,327,0,0,0,0,0,0,0,310,3.6,0,0,16.0,77777,9,999999999,139,0.1440,0,88,0.160,0.0,1.0 +2001,8,15,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,12.8,83,101800,0,0,338,0,0,0,0,0,0,0,320,4.1,3,3,16.0,77777,9,999999999,150,0.1440,0,88,0.160,0.0,1.0 +2001,8,16,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,12.8,87,101800,0,0,335,0,0,0,0,0,0,0,330,2.6,3,3,16.0,77777,9,999999999,150,0.1430,0,88,0.160,0.0,1.0 +2001,8,16,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,12.8,87,101900,0,0,371,0,0,0,0,0,0,0,320,3.1,10,10,16.0,335,9,999999999,150,0.1430,0,88,0.160,0.0,1.0 +2001,8,16,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,12.2,83,101900,0,0,370,0,0,0,0,0,0,0,360,2.6,10,10,16.0,488,9,999999999,150,0.1430,0,88,0.160,0.0,1.0 +2001,8,16,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,11.7,81,101900,0,0,369,0,0,0,0,0,0,0,350,1.5,10,10,16.0,488,9,999999999,150,0.1430,0,88,0.160,0.0,1.0 +2001,8,16,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,11.7,81,101900,0,0,369,0,0,0,0,0,0,0,330,2.1,10,10,16.0,549,9,999999999,160,0.1430,0,88,0.160,0.0,1.0 +2001,8,16,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,11.7,81,102000,63,1010,369,6,0,6,700,0,700,240,350,2.1,10,10,16.0,488,9,999999999,160,0.1430,0,88,0.160,0.0,1.0 +2001,8,16,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,12.2,87,102000,286,1332,367,36,0,36,4300,0,4300,1460,340,1.5,10,10,16.0,427,9,999999999,160,0.1430,0,88,0.160,0.0,1.0 +2001,8,16,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,12.8,90,102000,516,1332,368,79,0,79,9400,0,9400,3440,330,2.1,10,10,11.2,244,9,999999999,160,0.1430,0,88,0.160,0.0,1.0 +2001,8,16,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,12.8,87,102000,727,1332,371,139,0,139,16400,0,16400,6330,320,2.1,10,10,16.0,244,9,999999999,160,0.1430,0,88,0.160,0.0,1.0 +2001,8,16,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,12.8,83,102000,904,1332,374,180,6,176,21600,500,21200,8430,320,1.5,10,10,16.0,579,9,999999999,170,0.1430,0,88,0.160,0.0,1.0 +2001,8,16,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,12.8,78,102000,1034,1332,380,274,12,264,32300,1000,31600,12280,290,2.6,10,10,16.0,640,9,999999999,170,0.1430,0,88,0.160,0.0,1.0 +2001,8,16,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,12.8,73,102000,1109,1332,385,295,12,285,35100,1000,34200,13300,300,3.1,10,10,16.0,579,9,999999999,170,0.1430,0,88,0.160,0.0,1.0 +2001,8,16,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,12.8,68,102000,1124,1332,372,256,0,256,30800,0,30800,12280,310,2.6,8,8,16.0,701,9,999999999,179,0.1430,0,88,0.160,0.0,1.0 +2001,8,16,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,13.3,68,101900,1078,1332,395,253,0,253,30200,0,30200,12050,320,2.1,10,10,16.0,762,9,999999999,179,0.1430,0,88,0.160,0.0,1.0 +2001,8,16,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,13.3,68,101900,973,1332,395,270,18,257,31700,1500,30600,11720,310,2.6,10,10,16.0,792,9,999999999,179,0.1430,0,88,0.160,0.0,1.0 +2001,8,16,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,13.9,68,101900,817,1332,363,554,521,234,58200,53400,25400,5700,300,3.1,4,4,16.0,77777,9,999999999,189,0.1430,0,88,0.160,0.0,1.0 +2001,8,16,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,13.9,65,101800,621,1332,363,420,577,151,44500,57100,17800,3080,270,2.1,3,3,16.0,77777,9,999999999,189,0.1430,0,88,0.160,0.0,1.0 +2001,8,16,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,14.4,66,101800,397,1332,366,221,290,134,23100,26000,15300,2770,240,2.6,3,3,16.0,77777,9,999999999,189,0.1430,0,88,0.160,0.0,1.0 +2001,8,16,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,14.4,68,101800,164,1332,364,0,0,0,0,0,0,0,250,1.5,3,3,16.0,77777,9,999999999,200,0.1430,0,88,0.160,0.0,1.0 +2001,8,16,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,14.4,73,101900,6,322,358,0,0,0,0,0,0,0,0,0.0,3,3,16.0,77777,9,999999999,200,0.1430,0,88,0.160,0.0,1.0 +2001,8,16,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,13.3,73,101900,0,0,351,0,0,0,0,0,0,0,350,3.6,3,3,16.0,77777,9,999999999,200,0.1430,0,88,0.160,0.0,1.0 +2001,8,16,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,12.8,75,101900,0,0,364,0,0,0,0,0,0,0,330,2.6,8,8,16.0,1067,9,999999999,209,0.1430,0,88,0.160,0.0,1.0 +2001,8,16,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,12.2,78,102000,0,0,340,0,0,0,0,0,0,0,320,2.6,3,3,16.0,77777,9,999999999,200,0.1430,0,88,0.160,0.0,1.0 +2001,8,16,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,11.7,78,102000,0,0,355,0,0,0,0,0,0,0,330,4.1,8,8,16.0,1006,9,999999999,200,0.1430,0,88,0.160,0.0,1.0 +2001,8,17,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,11.7,78,102000,0,0,373,0,0,0,0,0,0,0,340,3.6,10,10,16.0,945,9,999999999,200,0.1430,0,88,0.160,0.0,1.0 +2001,8,17,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,11.7,78,102000,0,0,373,0,0,0,0,0,0,0,320,3.6,10,10,16.0,884,9,999999999,189,0.1430,0,88,0.160,0.0,1.0 +2001,8,17,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,11.7,81,102000,0,0,369,0,0,0,0,0,0,0,320,4.6,10,10,16.0,945,9,999999999,189,0.1430,0,88,0.160,0.0,1.0 +2001,8,17,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,11.7,84,102000,0,0,349,0,0,0,0,0,0,0,330,3.6,8,8,16.0,1006,9,999999999,189,0.1430,0,88,0.160,0.0,1.0 +2001,8,17,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,11.7,87,102000,0,0,329,0,0,0,0,0,0,0,320,2.6,3,3,16.0,77777,9,999999999,189,0.1430,0,88,0.160,0.0,1.0 +2001,8,17,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,11.7,87,102100,59,989,346,6,6,6,700,300,700,160,330,2.1,8,8,16.0,518,9,999999999,179,0.1430,0,88,0.160,0.0,1.0 +2001,8,17,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,11.7,84,102100,282,1333,366,40,0,40,4700,0,4700,1590,350,2.1,10,10,16.0,579,9,999999999,179,0.1430,0,88,0.160,0.0,1.0 +2001,8,17,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,11.7,81,102100,512,1333,369,130,6,128,14900,400,14700,5020,320,3.1,10,10,16.0,396,9,999999999,179,0.1430,0,88,0.160,0.0,1.0 +2001,8,17,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,11.7,75,102100,723,1333,357,272,75,231,29900,7500,25800,7150,330,2.6,8,8,16.0,457,9,999999999,179,0.1430,0,88,0.160,0.0,1.0 +2001,8,17,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,12.2,72,102100,900,1333,348,562,424,275,58900,43800,29300,7460,320,3.1,4,4,16.0,77777,9,999999999,170,0.1430,0,88,0.160,0.0,1.0 +2001,8,17,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,12.2,68,102100,1031,1333,350,758,737,186,80500,75200,22200,6190,320,4.1,3,3,16.0,77777,9,999999999,170,0.1430,0,88,0.160,0.0,1.0 +2001,8,17,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,12.2,63,102100,1106,1333,355,791,670,234,83400,67900,26900,9140,280,4.1,3,3,16.0,77777,9,999999999,170,0.1430,0,88,0.160,0.0,1.0 +2001,8,17,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,12.2,55,102000,1121,1333,367,818,764,174,85300,76700,20700,6500,290,2.6,3,3,16.0,77777,9,999999999,179,0.1430,0,88,0.160,0.0,1.0 +2001,8,17,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,12.8,52,101900,1074,1333,376,797,811,142,84400,81900,18300,4900,300,4.6,3,3,16.0,77777,9,999999999,179,0.1430,0,88,0.160,0.0,1.0 +2001,8,17,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,12.8,47,101900,969,1333,384,693,696,186,73100,70600,21700,5470,340,4.1,3,3,16.0,77777,9,999999999,179,0.1430,0,88,0.160,0.0,1.0 +2001,8,17,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,11.7,42,101800,812,1333,386,554,658,153,58200,66100,17900,3650,350,5.7,3,3,16.0,77777,9,999999999,179,0.1430,0,88,0.160,0.0,1.0 +2001,8,17,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,11.1,40,101800,615,1333,385,414,578,147,43900,57200,17500,2990,350,5.2,3,3,16.0,77777,9,999999999,179,0.1430,0,88,0.160,0.0,1.0 +2001,8,17,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,13.3,50,101800,392,1333,382,234,399,116,23900,34900,13700,2220,320,5.7,3,3,16.0,77777,9,999999999,179,0.1430,0,88,0.160,0.0,1.0 +2001,8,17,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,14.4,59,101800,158,1333,375,0,0,0,0,0,0,0,330,5.2,3,3,16.0,77777,9,999999999,179,0.1430,0,88,0.160,0.0,1.0 +2001,8,17,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,14.4,66,101900,5,278,366,0,0,0,0,0,0,0,330,5.2,3,3,16.0,77777,9,999999999,179,0.1430,0,88,0.160,0.0,1.0 +2001,8,17,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,14.4,73,101900,0,0,358,0,0,0,0,0,0,0,320,5.2,3,3,16.0,77777,9,999999999,179,0.1430,0,88,0.160,0.0,1.0 +2001,8,17,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,13.9,76,101900,0,0,352,0,0,0,0,0,0,0,330,5.2,3,3,16.0,77777,9,999999999,179,0.1430,0,88,0.160,0.0,1.0 +2001,8,17,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,13.9,81,102000,0,0,347,0,0,0,0,0,0,0,320,4.6,3,3,16.0,77777,9,999999999,179,0.1430,0,88,0.160,0.0,1.0 +2001,8,17,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,13.3,80,102000,0,0,346,0,0,0,0,0,0,0,320,6.2,4,4,16.0,77777,9,999999999,179,0.1430,0,88,0.160,0.0,1.0 +2001,8,18,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,12.8,78,102100,0,0,361,0,0,0,0,0,0,0,310,6.2,8,8,16.0,2134,9,999999999,179,0.1420,0,88,0.160,0.0,1.0 +2001,8,18,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,12.8,81,102000,0,0,366,0,0,0,0,0,0,0,310,4.6,9,9,16.0,2134,9,999999999,179,0.1420,0,88,0.160,0.0,1.0 +2001,8,18,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,12.2,80,102100,0,0,343,0,0,0,0,0,0,0,300,4.6,5,5,16.0,77777,9,999999999,179,0.1420,0,88,0.160,0.0,1.0 +2001,8,18,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,11.7,81,102200,0,0,339,0,0,0,0,0,0,0,310,3.6,5,5,16.0,77777,9,999999999,179,0.1420,0,88,0.160,0.0,1.0 +2001,8,18,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,11.1,77,102200,0,0,336,0,0,0,0,0,0,0,320,4.1,4,4,16.0,77777,9,999999999,179,0.1420,0,88,0.160,0.0,1.0 +2001,8,18,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,11.1,77,102200,56,967,351,6,13,6,800,600,800,120,320,3.1,8,8,16.0,2134,9,999999999,179,0.1420,0,88,0.160,0.0,1.0 +2001,8,18,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,11.1,72,102300,277,1333,341,89,61,76,9700,5000,8700,1910,310,3.1,4,4,16.0,77777,9,999999999,179,0.1420,0,88,0.160,0.0,1.0 +2001,8,18,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,11.1,70,102300,508,1333,344,199,73,171,21800,7000,19100,4620,340,2.1,4,4,16.0,77777,9,999999999,189,0.1420,0,88,0.160,0.0,1.0 +2001,8,18,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,11.1,65,102300,720,1333,365,303,99,250,33300,10000,27900,7580,310,4.1,8,8,16.0,1524,9,999999999,189,0.1420,0,88,0.160,0.0,1.0 +2001,8,18,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,10.6,61,102300,897,1333,367,393,100,325,43200,10200,36300,11010,330,3.6,8,8,16.0,1463,9,999999999,189,0.1420,0,88,0.160,0.0,1.0 +2001,8,18,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,10.0,54,102300,1027,1333,372,461,113,374,50800,11600,41800,14160,310,2.1,8,8,16.0,1829,9,999999999,179,0.1420,0,88,0.160,0.0,1.0 +2001,8,18,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,10.0,51,102300,1103,1333,378,502,108,413,55400,11200,46100,16890,280,2.6,8,8,16.0,1829,9,999999999,179,0.1420,0,88,0.160,0.0,1.0 +2001,8,18,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,10.0,49,102300,1117,1333,380,507,120,406,55600,12800,44800,15930,290,3.6,8,8,16.0,2134,9,999999999,179,0.1420,0,88,0.160,0.0,1.0 +2001,8,18,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,10.0,49,102300,1070,1333,399,494,121,396,54000,12900,43600,14300,270,3.6,10,10,16.0,2134,9,999999999,179,0.1420,0,88,0.160,0.0,1.0 +2001,8,18,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,10.6,51,102300,964,1333,400,443,110,363,48700,11300,40500,12870,290,3.6,10,10,16.0,2134,9,999999999,170,0.1420,0,88,0.160,0.0,1.0 +2001,8,18,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,10.0,47,102200,807,1333,403,366,93,309,40100,9500,34400,9680,290,3.6,10,10,16.0,2286,9,999999999,170,0.1420,0,88,0.160,0.0,1.0 +2001,8,18,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,10.6,49,102200,610,1333,392,274,90,233,30000,8900,25900,6440,320,4.1,9,9,16.0,2286,9,999999999,170,0.1420,0,88,0.160,0.0,1.0 +2001,8,18,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,11.7,55,102200,386,1333,391,165,57,148,18000,5200,16500,3590,320,4.1,9,9,16.0,2286,9,999999999,160,0.1420,0,88,0.160,0.0,1.0 +2001,8,18,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,12.2,61,102200,152,1333,364,0,0,0,0,0,0,0,340,3.6,5,5,16.0,77777,9,999999999,160,0.1420,0,88,0.160,0.0,1.0 +2001,8,18,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,11.1,61,102200,3,256,352,0,0,0,0,0,0,0,350,5.7,3,3,16.0,77777,9,999999999,160,0.1420,0,88,0.160,0.0,1.0 +2001,8,18,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,11.1,65,102300,0,0,352,0,0,0,0,0,0,0,330,5.2,5,5,16.0,77777,9,999999999,160,0.1420,0,88,0.160,0.0,1.0 +2001,8,18,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,12.2,75,102300,0,0,343,0,0,0,0,0,0,0,330,4.6,3,3,16.0,77777,9,999999999,150,0.1420,0,88,0.160,0.0,1.0 +2001,8,18,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,11.7,75,102200,0,0,325,0,0,0,0,0,0,0,340,3.6,0,0,16.0,77777,9,999999999,160,0.1420,0,88,0.160,0.0,1.0 +2001,8,18,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,12.2,80,102200,0,0,323,0,0,0,0,0,0,0,320,6.2,0,0,16.0,77777,9,999999999,160,0.1420,0,88,0.160,0.0,1.0 +2001,8,19,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,12.2,80,102200,0,0,323,0,0,0,0,0,0,0,320,5.7,0,0,16.0,77777,9,999999999,160,0.1420,0,88,0.160,0.0,1.0 +2001,8,19,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,11.7,84,102200,0,0,317,0,0,0,0,0,0,0,320,4.1,0,0,16.0,77777,9,999999999,160,0.1420,0,88,0.160,0.0,1.0 +2001,8,19,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,11.7,87,102200,0,0,334,0,0,0,0,0,0,0,340,3.1,5,5,16.0,77777,9,999999999,170,0.1420,0,88,0.160,0.0,1.0 +2001,8,19,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,11.1,89,102200,0,0,328,0,0,0,0,0,0,0,0,0.0,5,5,16.0,77777,9,999999999,170,0.1420,0,88,0.160,0.0,1.0 +2001,8,19,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,11.7,90,102200,0,0,326,0,0,0,0,0,0,0,0,0.0,3,3,16.0,77777,9,999999999,170,0.1420,0,88,0.160,0.0,1.0 +2001,8,19,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,11.7,93,102200,53,945,348,8,80,5,1100,3800,900,100,330,1.5,9,9,16.0,305,9,999999999,170,0.1420,0,88,0.160,0.0,1.0 +2001,8,19,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,11.7,87,102200,273,1334,329,134,374,58,14200,28400,8400,1040,340,1.5,3,3,16.0,77777,9,999999999,179,0.1420,0,88,0.160,0.0,1.0 +2001,8,19,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,11.1,81,102200,505,1334,356,295,488,110,31400,46300,13900,2100,330,2.6,9,9,16.0,396,9,999999999,179,0.1420,0,88,0.160,0.0,1.0 +2001,8,19,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,10.6,67,102100,716,1334,346,451,569,146,47000,56200,16800,3140,360,2.6,5,5,16.0,77777,9,999999999,179,0.1420,0,88,0.160,0.0,1.0 +2001,8,19,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,10.0,60,102100,893,1334,348,584,583,192,60900,58500,21600,4950,10,2.6,4,4,16.0,77777,9,999999999,179,0.1420,0,88,0.160,0.0,1.0 +2001,8,19,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,10.0,56,102000,1024,1334,350,741,725,182,78700,74000,21800,5970,290,4.6,3,3,16.0,77777,9,999999999,189,0.1420,0,88,0.160,0.0,1.0 +2001,8,19,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,10.0,51,102000,1099,1334,359,791,706,208,84000,72000,24600,8040,300,5.7,3,3,16.0,77777,9,999999999,189,0.1420,0,88,0.160,0.0,1.0 +2001,8,19,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,10.0,46,101900,1113,1334,367,806,746,182,86600,76600,22500,7390,320,5.7,3,3,16.0,77777,9,999999999,189,0.1420,0,88,0.160,0.0,1.0 +2001,8,19,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,8.3,38,101800,1066,1334,370,772,763,161,80600,76600,19300,5240,360,4.6,3,3,16.0,77777,9,999999999,189,0.1420,0,88,0.160,0.0,1.0 +2001,8,19,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,9.4,40,101700,960,1334,374,688,715,172,72900,72700,20400,5020,360,5.2,3,3,16.0,77777,9,999999999,189,0.1420,0,88,0.160,0.0,1.0 +2001,8,19,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,9.4,40,101600,803,1334,374,563,702,140,59400,70600,16800,3340,310,6.7,3,3,16.0,77777,9,999999999,189,0.1420,0,88,0.160,0.0,1.0 +2001,8,19,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,10.0,41,101600,605,1334,375,409,586,143,43400,57800,17200,2880,340,5.2,3,3,16.0,77777,9,999999999,200,0.1420,0,88,0.160,0.0,1.0 +2001,8,19,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,10.0,43,101600,380,1334,357,229,403,114,23400,34800,13500,2180,320,6.2,0,0,16.0,77777,9,999999999,200,0.1420,0,88,0.160,0.0,1.0 +2001,8,19,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,11.7,53,101500,146,1334,351,0,0,0,0,0,0,0,310,6.7,0,0,16.0,77777,9,999999999,200,0.1420,0,88,0.160,0.0,1.0 +2001,8,19,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,11.1,57,101500,2,211,342,0,0,0,0,0,0,0,320,6.7,0,0,16.0,77777,9,999999999,200,0.1420,0,88,0.160,0.0,1.0 +2001,8,19,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,11.7,63,101600,0,0,338,0,0,0,0,0,0,0,320,6.2,0,0,16.0,77777,9,999999999,200,0.1420,0,88,0.160,0.0,1.0 +2001,8,19,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,11.7,67,101500,0,0,333,0,0,0,0,0,0,0,320,5.7,0,0,16.0,77777,9,999999999,200,0.1420,0,88,0.160,0.0,1.0 +2001,8,19,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,11.7,72,101500,0,0,328,0,0,0,0,0,0,0,320,6.2,0,0,16.0,77777,9,999999999,200,0.1420,0,88,0.160,0.0,1.0 +2001,8,19,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,11.7,75,101500,0,0,325,0,0,0,0,0,0,0,320,4.6,0,0,16.0,77777,9,999999999,200,0.1420,0,88,0.160,0.0,1.0 +2001,8,20,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,11.1,75,101500,0,0,322,0,0,0,0,0,0,0,320,4.6,0,0,16.0,77777,9,999999999,200,0.1410,0,88,0.160,0.0,1.0 +2001,8,20,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,10.6,78,101500,0,0,316,0,0,0,0,0,0,0,330,4.1,0,0,16.0,77777,9,999999999,189,0.1410,0,88,0.160,0.0,1.0 +2001,8,20,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,10.0,77,101500,0,0,314,0,0,0,0,0,0,0,330,2.6,0,0,16.0,77777,9,999999999,189,0.1410,0,88,0.160,0.0,1.0 +2001,8,20,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,10.0,80,101500,0,0,311,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,189,0.1410,0,88,0.160,0.0,1.0 +2001,8,20,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,10.6,84,101600,0,0,325,0,0,0,0,0,0,0,30,2.1,3,3,16.0,77777,9,999999999,189,0.1410,0,88,0.160,0.0,1.0 +2001,8,20,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,9.4,80,101600,50,923,324,7,94,4,1100,5200,800,110,330,2.1,4,4,16.0,77777,9,999999999,179,0.1410,0,88,0.160,0.0,1.0 +2001,8,20,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,10.0,80,101600,269,1334,327,130,387,51,13200,29700,7300,920,330,5.7,4,4,16.0,77777,9,999999999,179,0.1410,0,88,0.160,0.0,1.0 +2001,8,20,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,10.0,75,101600,501,1334,332,294,532,94,30400,49600,11800,1810,330,4.6,4,4,16.0,77777,9,999999999,179,0.1410,0,88,0.160,0.0,1.0 +2001,8,20,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,10.6,70,101600,713,1334,338,487,713,105,51700,71400,13600,2360,340,2.1,3,3,11.2,77777,9,999999999,179,0.1410,0,88,0.160,0.0,1.0 +2001,8,20,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,10.0,60,101600,890,1334,348,627,731,139,67000,74500,17200,3720,340,3.1,4,4,16.0,77777,9,999999999,170,0.1410,0,88,0.160,0.0,1.0 +2001,8,20,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,9.4,54,101600,1021,1334,353,723,725,167,77300,74200,20400,5480,340,2.1,4,4,16.0,77777,9,999999999,179,0.1410,0,88,0.160,0.0,1.0 +2001,8,20,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,8.9,49,101500,1095,1334,354,791,718,200,84200,73300,23900,7680,330,2.6,3,3,16.0,77777,9,999999999,189,0.1410,0,88,0.160,0.0,1.0 +2001,8,20,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,8.9,44,101500,1109,1334,363,794,716,197,84700,73200,23700,7860,330,2.1,3,3,16.0,77777,9,999999999,200,0.1410,0,88,0.160,0.0,1.0 +2001,8,20,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,9.4,42,101400,1062,1334,369,773,697,217,81500,70700,25100,7590,320,3.1,3,3,16.0,77777,9,999999999,209,0.1410,0,88,0.160,0.0,1.0 +2001,8,20,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,10.0,41,101400,955,1334,375,543,287,337,58400,30900,36200,10100,350,3.1,3,3,16.0,77777,9,999999999,220,0.1410,0,88,0.160,0.0,1.0 +2001,8,20,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,9.4,40,101300,798,1334,374,494,435,233,51700,44500,25100,5570,340,2.6,3,3,16.0,77777,9,999999999,229,0.1410,0,88,0.160,0.0,1.0 +2001,8,20,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,10.0,40,101300,599,1334,378,403,554,153,42300,54400,17800,3100,330,3.6,3,3,16.0,77777,9,999999999,240,0.1410,0,88,0.160,0.0,1.0 +2001,8,20,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,11.1,46,101300,374,1334,373,222,369,118,22500,31700,13700,2260,340,3.6,3,3,16.0,77777,9,999999999,240,0.1410,0,88,0.160,0.0,1.0 +2001,8,20,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,10.0,47,101300,139,1334,364,0,0,0,0,0,0,0,350,4.1,3,3,16.0,77777,9,999999999,250,0.1410,0,88,0.160,0.0,1.0 +2001,8,20,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,10.6,55,101300,2,167,356,0,0,0,0,0,0,0,340,4.6,3,3,16.0,77777,9,999999999,259,0.1410,0,88,0.160,0.0,1.0 +2001,8,20,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,11.1,61,101400,0,0,337,0,0,0,0,0,0,0,350,4.1,0,0,16.0,77777,9,999999999,270,0.1410,0,88,0.160,0.0,1.0 +2001,8,20,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,11.1,67,101300,0,0,329,0,0,0,0,0,0,0,340,3.6,0,0,16.0,77777,9,999999999,279,0.1410,0,88,0.160,0.0,1.0 +2001,8,20,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,11.1,72,101400,0,0,324,0,0,0,0,0,0,0,330,2.1,0,0,16.0,77777,9,999999999,279,0.1410,0,88,0.160,0.0,1.0 +2001,8,20,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,11.1,72,101400,0,0,324,0,0,0,0,0,0,0,320,2.6,0,0,16.0,77777,9,999999999,270,0.1410,0,88,0.160,0.0,1.0 +2001,8,21,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,11.1,72,101400,0,0,341,0,0,0,0,0,0,0,0,0.0,4,4,16.0,77777,9,999999999,270,0.1410,0,88,0.160,0.0,1.0 +2001,8,21,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,10.6,78,101400,0,0,355,0,0,0,0,0,0,0,140,2.6,9,9,16.0,1524,9,999999999,259,0.1410,0,88,0.160,0.0,1.0 +2001,8,21,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,10.6,80,101400,0,0,345,0,0,0,0,0,0,0,130,2.6,8,8,16.0,1402,9,999999999,259,0.1410,0,88,0.160,0.0,1.0 +2001,8,21,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,10.6,84,101400,0,0,325,0,0,0,0,0,0,0,140,3.6,3,3,16.0,4572,9,999999999,250,0.1410,0,88,0.160,0.0,1.0 +2001,8,21,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,10.6,84,101400,0,0,330,0,0,0,0,0,0,0,130,3.6,8,5,16.0,4877,9,999999999,250,0.1410,0,88,0.160,0.0,1.0 +2001,8,21,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,10.0,77,101400,47,879,332,5,36,5,800,1400,800,80,160,4.1,8,5,16.0,7620,9,999999999,240,0.1410,0,88,0.160,0.0,1.0 +2001,8,21,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,10.0,72,101400,265,1335,344,66,15,63,7400,500,7300,2230,140,3.1,9,7,16.0,4572,9,999999999,240,0.1410,0,88,0.160,0.0,1.0 +2001,8,21,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,10.6,70,101400,497,1335,363,151,22,143,17000,1600,16400,5330,120,3.1,10,9,16.0,1829,9,999999999,240,0.1410,0,88,0.160,0.0,1.0 +2001,8,21,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,10.6,65,101400,709,1335,369,102,0,102,12300,0,12300,4820,180,3.1,10,9,16.0,1280,9,999999999,229,0.1410,0,88,0.160,0.0,1.0 +2001,8,21,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,11.1,67,101400,886,1335,380,136,0,136,16600,0,16600,6730,190,2.1,10,10,16.0,1067,9,999999999,229,0.1410,0,88,0.160,0.0,1.0 +2001,8,21,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,11.7,65,101400,1017,1335,387,131,0,131,16300,0,16300,6810,190,1.5,10,10,16.0,1067,9,999999999,229,0.1410,0,88,0.160,0.0,1.0 +2001,8,21,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,15.0,93,101400,1092,1335,379,171,0,171,21100,0,21100,8740,180,2.6,10,10,4.8,1097,9,999999999,229,0.1410,0,88,0.160,0.0,1.0 +2001,8,21,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,15.0,87,101300,1106,1335,385,226,0,226,27300,0,27300,11070,40,2.1,10,10,16.0,1372,9,999999999,229,0.1410,0,88,0.160,0.0,1.0 +2001,8,21,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,13.9,76,101200,1057,1335,389,215,6,211,26100,500,25700,10350,40,2.6,10,10,16.0,1189,9,999999999,229,0.1410,0,88,0.160,0.0,1.0 +2001,8,21,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,14.4,70,101200,951,1335,399,146,0,146,17800,0,17800,7340,90,3.1,10,10,16.0,1829,9,999999999,229,0.1410,0,88,0.160,0.0,1.0 +2001,8,21,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,13.3,59,101100,792,1335,407,134,0,134,16100,0,16100,6360,180,4.1,10,10,16.0,1524,9,999999999,229,0.1410,0,88,0.160,0.0,1.0 +2001,8,21,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,13.9,61,101100,594,1335,408,63,0,63,7700,0,7700,2960,190,4.1,10,10,16.0,1676,9,999999999,220,0.1410,0,88,0.160,0.0,1.0 +2001,8,21,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,14.4,70,101100,368,1335,399,54,0,54,6400,0,6400,2220,180,5.2,10,10,16.0,1829,9,999999999,220,0.1410,0,88,0.160,0.0,1.0 +2001,8,21,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,14.4,68,101100,133,1335,403,0,0,0,0,0,0,0,210,3.6,10,10,16.0,2134,9,999999999,220,0.1410,0,88,0.160,0.0,1.0 +2001,8,21,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,15.0,73,101200,1,122,400,0,0,0,0,0,0,0,210,4.6,10,10,16.0,1981,9,999999999,220,0.1410,0,88,0.160,0.0,1.0 +2001,8,21,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,15.0,76,101200,0,0,397,0,0,0,0,0,0,0,190,4.1,10,10,16.0,1981,9,999999999,220,0.1410,0,88,0.160,0.0,1.0 +2001,8,21,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,16.1,87,101200,0,0,392,0,0,0,0,0,0,0,190,6.7,10,10,16.0,2591,9,999999999,220,0.1410,0,88,0.160,0.0,1.0 +2001,8,21,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,16.1,90,101200,0,0,390,0,0,0,0,0,0,0,170,4.6,10,10,16.0,2286,9,999999999,220,0.1410,0,88,0.160,0.0,1.0 +2001,8,21,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,16.1,90,101200,0,0,390,0,0,0,0,0,0,0,130,4.1,10,10,16.0,3353,9,999999999,220,0.1410,0,88,0.160,0.0,1.0 +2001,8,22,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,16.1,93,101100,0,0,386,0,0,0,0,0,0,0,140,4.1,10,10,16.0,2134,9,999999999,209,0.1400,0,88,0.160,0.0,1.0 +2001,8,22,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,16.1,93,101100,0,0,386,0,0,0,0,0,0,0,130,3.6,10,10,16.0,2134,9,999999999,209,0.1400,0,88,0.160,0.0,1.0 +2001,8,22,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,16.1,93,101100,0,0,386,0,0,0,0,0,0,0,120,3.6,10,10,16.0,2134,9,999999999,209,0.1400,0,88,0.160,0.0,1.0 +2001,8,22,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,16.1,93,101100,0,0,386,0,0,0,0,0,0,0,120,5.2,10,10,16.0,2134,9,999999999,200,0.1400,0,88,0.160,0.0,1.0 +2001,8,22,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,16.1,93,101100,0,0,386,0,0,0,0,0,0,0,120,4.1,10,10,16.0,1829,9,999999999,200,0.1400,0,88,0.160,0.0,1.0 +2001,8,22,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,16.7,97,101100,45,857,387,1,0,1,100,0,100,40,120,5.2,10,10,16.0,1311,9,999999999,189,0.1400,0,88,0.160,0.0,1.0 +2001,8,22,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,16.1,93,101100,261,1336,386,31,0,31,3700,0,3700,1250,110,5.2,10,10,16.0,1250,9,999999999,189,0.1400,0,88,0.160,0.0,1.0 +2001,8,22,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,16.7,93,101100,493,1336,390,46,0,46,5700,0,5700,2110,120,4.6,10,10,11.2,1494,9,999999999,189,0.1400,0,88,0.160,0.0,1.0 +2001,8,22,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,16.7,93,101100,705,1336,390,102,0,102,12300,0,12300,4810,120,4.1,10,10,14.4,1463,9,999999999,179,0.1400,0,88,0.160,1.0,1.0 +2001,8,22,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,17.2,93,101100,883,1336,375,158,0,158,19000,0,19000,7630,120,6.2,10,8,16.0,1341,9,999999999,179,0.1400,0,88,0.160,1.0,1.0 +2001,8,22,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,17.2,93,101100,1013,1336,394,137,0,137,17000,0,17000,7080,120,5.7,10,10,16.0,1311,9,999999999,179,0.1400,0,88,0.160,0.0,1.0 +2001,8,22,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,17.8,93,101100,1088,1336,387,165,0,165,20400,0,20400,8470,140,5.7,10,9,16.0,1402,9,999999999,179,0.1400,0,88,0.160,0.0,1.0 +2001,8,22,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,17.2,87,101100,1102,1336,389,171,0,171,21100,0,21100,8750,160,4.1,10,9,16.0,2743,9,999999999,189,0.1400,0,88,0.160,0.0,1.0 +2001,8,22,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,17.2,87,101100,1053,1336,400,203,6,198,24600,500,24200,9810,170,4.1,10,10,16.0,1402,9,999999999,189,0.1400,0,88,0.160,0.0,1.0 +2001,8,22,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,17.2,90,101100,946,1336,397,186,0,186,22300,0,22300,8980,200,3.6,10,10,16.0,2134,9,999999999,189,0.1400,0,88,0.160,1.0,1.0 +2001,8,22,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,16.7,84,101100,787,1336,399,113,0,113,13700,0,13700,5480,170,4.1,10,10,16.0,2134,9,999999999,189,0.1400,0,88,0.160,0.0,1.0 +2001,8,22,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,16.7,87,101100,588,1336,396,64,0,64,7800,0,7800,3000,210,6.2,10,10,12.8,1524,9,999999999,189,0.1400,0,88,0.160,0.0,1.0 +2001,8,22,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,16.7,93,101000,362,1336,390,87,0,87,9800,0,9800,3210,190,3.6,10,10,11.2,1189,9,999999999,200,0.1400,0,88,0.160,1.0,1.0 +2001,8,22,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,17.2,93,101000,127,1336,394,0,0,0,0,0,0,0,210,2.6,10,10,4.8,762,9,999999999,200,0.1400,0,88,0.160,4.0,1.0 +2001,8,22,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,16.1,90,101100,0,100,390,0,0,0,0,0,0,0,220,2.1,10,10,16.0,1829,9,999999999,200,0.1400,0,88,0.160,1.0,1.0 +2001,8,22,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,15.6,90,101200,0,0,386,0,0,0,0,0,0,0,180,2.6,10,10,14.4,2134,9,999999999,200,0.1400,0,88,0.160,0.0,1.0 +2001,8,22,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,15.0,87,101200,0,0,385,0,0,0,0,0,0,0,190,3.6,10,10,16.0,2134,9,999999999,200,0.1400,0,88,0.160,0.0,1.0 +2001,8,22,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,13.9,87,101300,0,0,367,0,0,0,0,0,0,0,220,3.1,9,9,16.0,2286,9,999999999,209,0.1400,0,88,0.160,0.0,1.0 +2001,8,22,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,12.8,83,101300,0,0,374,0,0,0,0,0,0,0,190,2.6,10,10,16.0,2438,9,999999999,209,0.1400,0,88,0.160,0.0,1.0 +2001,8,23,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,13.3,90,101300,0,0,371,0,0,0,0,0,0,0,160,2.6,10,10,16.0,2591,9,999999999,209,0.1390,0,88,0.160,0.0,1.0 +2001,8,23,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,12.8,87,101300,0,0,371,0,0,0,0,0,0,0,0,0.0,10,10,16.0,2743,9,999999999,209,0.1390,0,88,0.160,0.0,1.0 +2001,8,23,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,13.9,93,101400,0,0,372,0,0,0,0,0,0,0,0,0.0,10,10,16.0,1433,9,999999999,209,0.1390,0,88,0.160,0.0,1.0 +2001,8,23,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,13.9,97,101400,0,0,351,0,0,0,0,0,0,0,160,1.5,8,8,16.0,1524,9,999999999,209,0.1390,0,88,0.160,0.0,1.0 +2001,8,23,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,13.3,90,101500,0,0,371,0,0,0,0,0,0,0,160,4.1,10,10,16.0,1524,9,999999999,220,0.1390,0,88,0.160,0.0,1.0 +2001,8,23,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,12.8,87,101500,42,835,371,2,0,2,300,0,300,80,190,3.6,10,10,16.0,1524,9,999999999,220,0.1390,0,88,0.160,0.0,1.0 +2001,8,23,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,12.8,87,101500,256,1336,371,37,0,37,4300,0,4300,1450,190,5.2,10,10,16.0,1524,9,999999999,220,0.1390,0,88,0.160,0.0,1.0 +2001,8,23,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,12.2,80,101600,489,1336,373,242,240,154,25600,23100,17100,3230,180,5.7,10,10,16.0,1524,9,999999999,220,0.1390,0,88,0.160,0.0,1.0 +2001,8,23,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,12.2,75,101600,701,1336,368,373,307,211,40000,32100,23100,4850,190,4.1,9,9,16.0,1524,9,999999999,220,0.1390,0,88,0.160,0.0,1.0 +2001,8,23,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,12.2,68,101600,879,1336,369,457,236,302,50000,24900,33600,8680,190,6.7,8,8,16.0,3048,9,999999999,220,0.1390,0,88,0.160,0.0,1.0 +2001,8,23,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,11.7,63,101600,1010,1336,371,416,101,339,45800,10400,38000,12780,190,7.7,8,8,16.0,1981,9,999999999,220,0.1390,0,88,0.160,0.0,1.0 +2001,8,23,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,12.2,63,101600,1084,1336,382,614,281,385,66500,30400,41700,14210,220,5.7,9,9,16.0,1829,9,999999999,220,0.1390,0,88,0.160,0.0,1.0 +2001,8,23,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,13.3,70,101700,1097,1336,373,177,6,172,21800,400,21400,8790,200,7.2,8,8,16.0,1524,9,999999999,209,0.1390,0,88,0.160,0.0,1.0 +2001,8,23,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,14.4,80,101700,1049,1336,387,171,6,166,21000,400,20600,8440,230,4.1,10,10,16.0,1676,9,999999999,209,0.1390,0,88,0.160,1.0,1.0 +2001,8,23,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,14.4,75,101700,941,1336,374,551,300,339,59100,32300,36300,10010,180,4.6,8,8,16.0,77777,9,999999999,200,0.1390,0,88,0.160,0.0,1.0 +2001,8,23,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,12.2,63,101700,782,1336,382,454,361,242,48800,38300,26400,5930,230,3.6,9,9,16.0,2743,9,999999999,200,0.1390,0,88,0.160,0.0,1.0 +2001,8,23,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,12.2,59,101700,582,1336,389,352,375,188,37300,37800,20800,4110,220,3.1,9,9,16.0,3353,9,999999999,200,0.1390,0,88,0.160,0.0,1.0 +2001,8,23,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,12.2,61,101700,356,1336,377,166,111,136,17700,9600,15100,3000,220,3.6,8,8,16.0,1676,9,999999999,189,0.1390,0,88,0.160,0.0,1.0 +2001,8,23,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,13.3,70,101800,120,1336,373,0,0,0,0,0,0,0,300,1.5,8,8,16.0,2896,9,999999999,189,0.1390,0,88,0.160,0.0,1.0 +2001,8,23,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,13.9,78,101800,0,56,376,0,0,0,0,0,0,0,0,0.0,9,9,16.0,2896,9,999999999,179,0.1390,0,88,0.160,0.0,1.0 +2001,8,23,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,12.8,78,101900,0,0,361,0,0,0,0,0,0,0,210,1.5,9,8,16.0,3048,9,999999999,179,0.1390,0,88,0.160,0.0,1.0 +2001,8,23,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,11.7,78,101800,0,0,355,0,0,0,0,0,0,0,200,3.1,9,8,16.0,1829,9,999999999,179,0.1390,0,88,0.160,0.0,1.0 +2001,8,23,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,12.2,78,101900,0,0,358,0,0,0,0,0,0,0,200,3.6,8,8,16.0,1676,9,999999999,170,0.1390,0,88,0.160,0.0,1.0 +2001,8,23,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,11.7,81,101900,0,0,337,0,0,0,0,0,0,0,170,1.5,4,4,16.0,77777,9,999999999,160,0.1390,0,88,0.160,0.0,1.0 +2001,8,24,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,11.7,78,101900,0,0,355,0,0,0,0,0,0,0,180,2.1,8,8,16.0,2286,9,999999999,160,0.1390,0,88,0.160,0.0,1.0 +2001,8,24,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,11.7,87,102000,0,0,334,0,0,0,0,0,0,0,150,2.6,8,5,16.0,77777,9,999999999,150,0.1390,0,88,0.160,0.0,1.0 +2001,8,24,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,11.7,90,102000,0,0,326,0,0,0,0,0,0,0,130,3.1,3,3,16.0,77777,9,999999999,150,0.1390,0,88,0.160,0.0,1.0 +2001,8,24,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,12.2,93,102000,0,0,344,0,0,0,0,0,0,0,120,3.6,8,8,16.0,1829,9,999999999,139,0.1390,0,88,0.160,0.0,1.0 +2001,8,24,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,11.7,93,102000,0,0,341,0,0,0,0,0,0,0,0,0.0,8,8,16.0,1829,9,999999999,129,0.1390,0,88,0.160,0.0,1.0 +2001,8,24,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,11.7,93,102100,39,813,341,3,41,2,500,2200,400,60,260,2.1,8,8,16.0,1981,9,999999999,129,0.1390,0,88,0.160,0.0,1.0 +2001,8,24,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,12.2,100,102100,252,1337,327,88,89,71,9500,6800,8300,1520,260,2.1,5,5,16.0,77777,9,999999999,120,0.1390,0,88,0.160,0.0,1.0 +2001,8,24,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,12.8,90,102100,485,1337,332,196,117,153,21200,11200,17100,3520,280,2.1,3,3,12.8,77777,9,999999999,120,0.1390,0,88,0.160,0.0,1.0 +2001,8,24,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,12.2,78,102100,698,1337,340,439,539,157,47000,54400,18500,3340,300,2.6,3,3,16.0,77777,9,999999999,110,0.1390,0,88,0.160,0.0,1.0 +2001,8,24,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,11.7,67,102100,875,1337,347,615,713,147,65200,72300,17800,3820,320,2.1,3,3,16.0,77777,9,999999999,100,0.1390,0,88,0.160,0.0,1.0 +2001,8,24,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,11.7,61,102000,1006,1337,355,717,725,170,76400,74100,20600,5390,0,0.0,3,3,16.0,77777,9,999999999,110,0.1390,0,88,0.160,0.0,1.0 +2001,8,24,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,10.6,53,102000,1080,1337,359,750,628,241,78600,63400,27200,8690,320,3.6,3,3,16.0,77777,9,999999999,120,0.1390,0,88,0.160,0.0,1.0 +2001,8,24,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,10.0,47,102000,1093,1337,364,801,764,174,83100,76500,20400,5930,290,4.6,3,3,16.0,77777,9,999999999,120,0.1390,0,88,0.160,0.0,1.0 +2001,8,24,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,7.8,38,101900,1044,1337,367,768,812,132,81600,82100,17300,4290,290,5.2,3,3,16.0,77777,9,999999999,129,0.1390,0,88,0.160,0.0,1.0 +2001,8,24,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,8.9,41,101900,936,1337,368,671,722,164,71100,73400,19600,4610,300,4.6,3,3,16.0,77777,9,999999999,139,0.1390,0,88,0.160,0.0,1.0 +2001,8,24,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,8.3,39,101800,777,1337,367,540,691,138,56800,69300,16500,3190,320,3.6,3,3,16.0,77777,9,999999999,139,0.1390,0,88,0.160,0.0,1.0 +2001,8,24,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,8.3,38,101800,576,1337,370,386,597,128,39600,56800,15100,2460,330,2.6,3,3,16.0,77777,9,999999999,150,0.1390,0,88,0.160,0.0,1.0 +2001,8,24,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,7.8,38,101800,350,1337,367,214,372,117,21600,31100,13500,2250,330,1.5,3,3,16.0,77777,9,999999999,160,0.1390,0,88,0.160,0.0,1.0 +2001,8,24,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,9.4,45,101700,114,1337,348,0,0,0,0,0,0,0,320,2.1,0,0,16.0,77777,9,999999999,160,0.1390,0,88,0.160,0.0,1.0 +2001,8,24,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,11.1,57,101800,0,11,342,0,0,0,0,0,0,0,310,1.5,0,0,16.0,77777,9,999999999,170,0.1390,0,88,0.160,0.0,1.0 +2001,8,24,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,10.6,59,101800,0,0,337,0,0,0,0,0,0,0,300,2.6,0,0,16.0,77777,9,999999999,179,0.1390,0,88,0.160,0.0,1.0 +2001,8,24,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,11.7,65,101800,0,0,335,0,0,0,0,0,0,0,300,3.1,0,0,16.0,77777,9,999999999,179,0.1390,0,88,0.160,0.0,1.0 +2001,8,24,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,12.2,75,101900,0,0,328,0,0,0,0,0,0,0,320,2.6,0,0,16.0,77777,9,999999999,179,0.1390,0,88,0.160,0.0,1.0 +2001,8,24,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,12.8,81,101900,0,0,326,0,0,0,0,0,0,0,10,2.1,0,0,16.0,77777,9,999999999,179,0.1390,0,88,0.160,0.0,1.0 +2001,8,25,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,12.8,83,101900,0,0,330,0,0,0,0,0,0,0,300,3.1,1,1,16.0,77777,9,999999999,170,0.1380,0,88,0.160,0.0,1.0 +2001,8,25,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,12.2,87,101900,0,0,318,0,0,0,0,0,0,0,40,1.5,0,0,16.0,77777,9,999999999,170,0.1380,0,88,0.160,0.0,1.0 +2001,8,25,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,11.1,87,101800,0,0,312,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,170,0.1380,0,88,0.160,0.0,1.0 +2001,8,25,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,11.7,90,101800,0,0,313,0,0,0,0,0,0,0,50,1.5,0,0,16.0,77777,9,999999999,170,0.1380,0,88,0.160,0.0,1.0 +2001,8,25,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,10.0,93,101800,0,0,301,0,0,0,0,0,0,0,280,1.5,0,0,16.0,77777,9,999999999,170,0.1380,0,88,0.160,0.0,1.0 +2001,8,25,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,10.6,90,101800,37,769,307,2,43,1,400,2400,200,40,0,0.0,0,0,16.0,77777,9,999999999,160,0.1380,0,88,0.160,0.0,1.0 +2001,8,25,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,11.1,87,101700,248,1337,326,120,394,47,12300,29200,6900,850,330,2.1,3,3,16.0,77777,9,999999999,160,0.1380,0,88,0.160,0.0,1.0 +2001,8,25,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,11.1,77,101700,481,1337,333,286,535,93,29500,49300,11700,1760,300,2.6,3,3,16.0,77777,9,999999999,160,0.1380,0,88,0.160,0.0,1.0 +2001,8,25,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,11.7,70,101600,694,1337,330,459,689,101,48800,68800,13100,2240,320,3.1,0,0,16.0,77777,9,999999999,160,0.1380,0,88,0.160,0.0,1.0 +2001,8,25,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,12.2,65,101600,872,1337,350,598,683,152,63300,69200,18100,3910,280,3.1,2,2,16.0,77777,9,999999999,150,0.1380,0,88,0.160,0.0,1.0 +2001,8,25,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,12.2,57,101500,1002,1337,349,694,672,190,73500,68300,22200,5910,0,0.0,0,0,16.0,77777,9,999999999,160,0.1380,0,88,0.160,0.0,1.0 +2001,8,25,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,12.8,50,101400,1076,1337,363,762,670,221,80300,68000,25500,7960,280,3.6,0,0,16.0,77777,9,999999999,160,0.1380,0,88,0.160,0.0,1.0 +2001,8,25,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,12.2,43,101300,1089,1337,371,771,692,205,81800,70500,24200,7680,280,3.6,0,0,16.0,77777,9,999999999,160,0.1380,0,88,0.160,0.0,1.0 +2001,8,25,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,11.7,39,101300,1040,1337,383,768,806,140,81100,81300,17700,4430,280,4.1,1,1,16.0,77777,9,999999999,170,0.1380,0,88,0.160,0.0,1.0 +2001,8,25,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,12.2,37,101200,931,1337,384,678,747,157,72100,76100,19000,4400,290,4.6,0,0,16.0,77777,9,999999999,170,0.1380,0,88,0.160,0.0,1.0 +2001,8,25,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,12.2,37,101200,771,1337,384,534,679,141,56000,67900,16700,3230,280,4.6,0,0,16.0,77777,9,999999999,170,0.1380,0,88,0.160,0.0,1.0 +2001,8,25,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,12.2,37,101200,570,1337,384,388,604,129,39700,57200,15200,2470,290,5.2,0,0,16.0,77777,9,999999999,179,0.1380,0,88,0.160,0.0,1.0 +2001,8,25,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,13.3,42,101200,343,1337,380,195,285,122,20300,24000,14100,2520,330,3.6,0,0,16.0,77777,9,999999999,179,0.1380,0,88,0.160,0.0,1.0 +2001,8,25,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,13.9,50,101200,108,1304,370,30,141,19,3400,6600,2800,330,320,2.6,0,0,16.0,77777,9,999999999,179,0.1380,0,88,0.160,0.0,1.0 +2001,8,25,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,13.9,57,101300,0,0,359,0,0,0,0,0,0,0,270,2.6,0,0,16.0,77777,9,999999999,189,0.1380,0,88,0.160,0.0,1.0 +2001,8,25,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,13.9,57,101400,0,0,359,0,0,0,0,0,0,0,300,4.1,0,0,16.0,77777,9,999999999,189,0.1380,0,88,0.160,0.0,1.0 +2001,8,25,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,14.4,63,101400,0,0,354,0,0,0,0,0,0,0,300,3.1,0,0,16.0,77777,9,999999999,189,0.1380,0,88,0.160,0.0,1.0 +2001,8,25,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,14.4,68,101400,0,0,349,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,189,0.1380,0,88,0.160,0.0,1.0 +2001,8,25,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,14.4,70,101500,0,0,346,0,0,0,0,0,0,0,30,1.5,0,0,16.0,77777,9,999999999,189,0.1380,0,88,0.160,0.0,1.0 +2001,8,26,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,13.3,70,101500,0,0,340,0,0,0,0,0,0,0,340,2.6,0,0,16.0,77777,9,999999999,189,0.1380,0,88,0.160,0.0,1.0 +2001,8,26,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,13.3,75,101500,0,0,335,0,0,0,0,0,0,0,350,2.6,0,0,16.0,77777,9,999999999,189,0.1380,0,88,0.160,0.0,1.0 +2001,8,26,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,12.8,78,101500,0,0,329,0,0,0,0,0,0,0,320,2.6,0,0,16.0,77777,9,999999999,189,0.1380,0,88,0.160,0.0,1.0 +2001,8,26,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,12.8,78,101500,0,0,329,0,0,0,0,0,0,0,300,3.1,0,0,16.0,77777,9,999999999,189,0.1380,0,88,0.160,0.0,1.0 +2001,8,26,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,12.8,83,101500,0,0,338,0,0,0,0,0,0,0,310,2.1,3,3,16.0,77777,9,999999999,179,0.1380,0,88,0.160,0.0,1.0 +2001,8,26,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,12.8,87,101600,34,747,321,1,49,1,400,2800,300,40,330,2.1,0,0,16.0,77777,9,999999999,179,0.1380,0,88,0.160,0.0,1.0 +2001,8,26,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,13.3,83,101600,243,1338,341,119,427,41,12300,31600,6500,750,350,1.5,3,3,16.0,77777,9,999999999,179,0.1380,0,88,0.160,0.0,1.0 +2001,8,26,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,13.3,78,101600,477,1338,346,290,607,73,30400,56500,10300,1440,330,2.6,3,3,16.0,77777,9,999999999,179,0.1380,0,88,0.160,0.0,1.0 +2001,8,26,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,13.3,70,101600,690,1338,340,453,671,106,48000,66800,13400,2330,280,3.6,0,0,16.0,77777,9,999999999,179,0.1380,0,88,0.160,0.0,1.0 +2001,8,26,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,13.3,63,101600,868,1338,348,604,712,140,64100,72300,17100,3620,280,2.6,0,0,16.0,77777,9,999999999,179,0.1380,0,88,0.160,0.0,1.0 +2001,8,26,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,14.4,61,101600,998,1338,356,706,725,163,75400,74200,19900,5110,280,2.6,0,0,16.0,77777,9,999999999,179,0.1380,0,88,0.160,0.0,1.0 +2001,8,26,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,12.8,48,101500,1072,1338,365,774,724,192,82400,73900,23000,6930,310,3.1,0,0,16.0,77777,9,999999999,179,0.1380,0,88,0.160,0.0,1.0 +2001,8,26,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,12.8,45,101500,1085,1338,371,783,746,176,83900,76500,21700,6600,290,4.1,0,0,16.0,77777,9,999999999,189,0.1380,0,88,0.160,0.0,1.0 +2001,8,26,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,13.3,44,101400,1035,1338,377,756,788,145,79400,79300,18000,4480,290,3.1,0,0,16.0,77777,9,999999999,189,0.1380,0,88,0.160,0.0,1.0 +2001,8,26,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,13.9,41,101400,926,1338,386,679,778,140,70600,77700,16700,3510,300,4.6,0,0,16.0,77777,9,999999999,189,0.1380,0,88,0.160,0.0,1.0 +2001,8,26,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.9,15.0,43,101400,765,1338,391,542,723,127,57200,72600,15600,2940,310,4.1,0,0,16.0,77777,9,999999999,189,0.1380,0,88,0.160,0.0,1.0 +2001,8,26,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.9,14.4,41,101400,564,1338,390,365,553,131,38700,53700,16000,2580,330,3.6,0,0,16.0,77777,9,999999999,200,0.1380,0,88,0.160,0.0,1.0 +2001,8,26,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,14.4,45,101400,337,1338,381,199,318,119,20700,26600,14000,2450,330,5.2,0,0,16.0,77777,9,999999999,200,0.1380,0,88,0.160,0.0,1.0 +2001,8,26,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,14.4,52,101500,101,1282,370,28,152,17,3100,8000,2400,320,340,3.1,0,0,16.0,77777,9,999999999,200,0.1380,0,88,0.160,0.0,1.0 +2001,8,26,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,14.4,59,101600,0,0,359,0,0,0,0,0,0,0,340,3.1,0,0,16.0,77777,9,999999999,209,0.1380,0,88,0.160,0.0,1.0 +2001,8,26,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,13.3,63,101700,0,0,348,0,0,0,0,0,0,0,350,3.6,0,0,16.0,77777,9,999999999,209,0.1380,0,88,0.160,0.0,1.0 +2001,8,26,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,11.7,63,101700,0,0,338,0,0,0,0,0,0,0,320,4.1,0,0,16.0,77777,9,999999999,209,0.1380,0,88,0.160,0.0,1.0 +2001,8,26,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,11.7,67,101800,0,0,333,0,0,0,0,0,0,0,310,3.1,0,0,16.0,77777,9,999999999,209,0.1380,0,88,0.160,0.0,1.0 +2001,8,26,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,11.7,70,101900,0,0,330,0,0,0,0,0,0,0,320,3.6,0,0,16.0,77777,9,999999999,209,0.1380,0,88,0.160,0.0,1.0 +2001,8,27,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,11.1,70,101900,0,0,327,0,0,0,0,0,0,0,340,2.6,0,0,16.0,77777,9,999999999,209,0.1370,0,88,0.160,0.0,1.0 +2001,8,27,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,11.1,75,102000,0,0,322,0,0,0,0,0,0,0,340,2.1,0,0,16.0,77777,9,999999999,209,0.1370,0,88,0.160,0.0,1.0 +2001,8,27,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,11.1,77,102000,0,0,320,0,0,0,0,0,0,0,340,1.5,0,0,16.0,77777,9,999999999,209,0.1370,0,88,0.160,0.0,1.0 +2001,8,27,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,11.1,77,102000,0,0,320,0,0,0,0,0,0,0,330,1.5,0,0,16.0,77777,9,999999999,209,0.1370,0,88,0.160,0.0,1.0 +2001,8,27,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,11.7,84,102000,0,0,317,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,209,0.1370,0,88,0.160,0.0,1.0 +2001,8,27,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,12.2,89,102100,32,725,329,1,41,1,300,2300,200,40,330,2.6,3,3,16.0,77777,9,999999999,209,0.1370,0,88,0.160,0.0,1.0 +2001,8,27,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,12.8,90,102100,239,1338,350,111,332,52,11700,23600,7500,930,340,2.1,8,8,12.8,274,9,999999999,209,0.1370,0,88,0.160,0.0,1.0 +2001,8,27,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,12.8,81,102200,473,1338,358,275,495,100,29300,46100,13000,1880,340,3.1,8,8,16.0,366,9,999999999,209,0.1370,0,88,0.160,0.0,1.0 +2001,8,27,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,12.8,78,102200,686,1338,346,437,619,119,45900,61200,14400,2560,0,0.0,4,4,16.0,77777,9,999999999,209,0.1370,0,88,0.160,0.0,1.0 +2001,8,27,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,12.8,70,102200,864,1338,351,598,683,156,63100,69000,18400,3950,0,0.0,3,3,16.0,77777,9,999999999,209,0.1370,0,88,0.160,0.0,1.0 +2001,8,27,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,12.2,59,102100,994,1338,346,705,737,157,75600,75500,19400,4900,360,2.6,0,0,16.0,77777,9,999999999,209,0.1370,0,88,0.160,0.0,1.0 +2001,8,27,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,12.2,53,102000,1068,1338,354,762,694,207,80700,70600,24200,7340,0,0.0,0,0,16.0,77777,9,999999999,200,0.1370,0,88,0.160,0.0,1.0 +2001,8,27,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,12.8,50,101900,1080,1338,363,777,740,178,83200,75900,21800,6590,360,2.1,0,0,16.0,77777,9,999999999,200,0.1370,0,88,0.160,0.0,1.0 +2001,8,27,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,11.7,43,101900,1030,1338,367,750,782,147,78700,78600,18000,4470,340,1.5,0,0,16.0,77777,9,999999999,189,0.1370,0,88,0.160,0.0,1.0 +2001,8,27,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,12.2,42,101800,921,1338,373,673,772,141,69800,77000,16700,3480,320,2.1,0,0,16.0,77777,9,999999999,189,0.1370,0,88,0.160,0.0,1.0 +2001,8,27,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,13.3,44,101700,760,1338,394,536,711,131,56400,71200,15900,3000,300,3.6,3,3,16.0,77777,9,999999999,189,0.1370,0,88,0.160,0.0,1.0 +2001,8,27,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,13.9,44,101700,558,1338,397,375,619,116,38600,58700,14100,2240,300,3.6,3,3,16.0,77777,9,999999999,179,0.1370,0,88,0.160,0.0,1.0 +2001,8,27,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,14.4,48,101700,330,1338,392,215,435,107,21700,35500,12900,2040,290,3.1,3,3,16.0,77777,9,999999999,179,0.1370,0,88,0.160,0.0,1.0 +2001,8,27,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,15.0,56,101700,95,1238,384,28,200,14,3200,10400,2300,270,340,2.1,3,3,16.0,77777,9,999999999,170,0.1370,0,88,0.160,0.0,1.0 +2001,8,27,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,12.8,52,101700,0,0,381,0,0,0,0,0,0,0,340,4.6,6,5,16.0,77777,9,999999999,170,0.1370,0,88,0.160,0.0,1.0 +2001,8,27,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,13.3,59,101800,0,0,388,0,0,0,0,0,0,0,330,3.6,9,8,16.0,3658,9,999999999,170,0.1370,0,88,0.160,0.0,1.0 +2001,8,27,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,13.9,63,101700,0,0,393,0,0,0,0,0,0,0,320,4.1,9,9,16.0,4267,9,999999999,160,0.1370,0,88,0.160,0.0,1.0 +2001,8,27,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,13.3,63,101700,0,0,382,0,0,0,0,0,0,0,310,3.6,9,8,16.0,4267,9,999999999,170,0.1370,0,88,0.160,0.0,1.0 +2001,8,27,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,13.3,68,101700,0,0,370,0,0,0,0,0,0,0,320,3.1,8,7,16.0,77777,9,999999999,170,0.1370,0,88,0.160,0.0,1.0 +2001,8,28,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,13.3,70,101700,0,0,357,0,0,0,0,0,0,0,330,3.1,5,4,16.0,77777,9,999999999,179,0.1360,0,88,0.160,0.0,1.0 +2001,8,28,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,13.9,73,101700,0,0,382,0,0,0,0,0,0,0,340,3.1,9,9,16.0,3658,9,999999999,179,0.1360,0,88,0.160,0.0,1.0 +2001,8,28,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,13.9,76,101700,0,0,352,0,0,0,0,0,0,0,350,2.6,4,3,16.0,3658,9,999999999,189,0.1360,0,88,0.160,0.0,1.0 +2001,8,28,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,14.4,80,101700,0,0,353,0,0,0,0,0,0,0,360,1.5,4,4,16.0,4267,9,999999999,189,0.1360,0,88,0.160,0.0,1.0 +2001,8,28,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,14.4,80,101700,0,0,350,0,0,0,0,0,0,0,0,0.0,3,3,16.0,77777,9,999999999,200,0.1360,0,88,0.160,0.0,1.0 +2001,8,28,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,15.0,84,101700,29,703,356,0,35,0,0,0,0,0,0,0.0,5,5,16.0,77777,9,999999999,200,0.1360,0,88,0.160,0.0,1.0 +2001,8,28,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,15.0,78,101700,235,1339,359,110,345,49,11100,24800,6800,860,0,0.0,4,4,16.0,77777,9,999999999,209,0.1360,0,88,0.160,0.0,1.0 +2001,8,28,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,15.0,78,101700,468,1339,359,274,517,93,28200,47300,11700,1750,340,3.1,4,4,16.0,77777,9,999999999,209,0.1360,0,88,0.160,0.0,1.0 +2001,8,28,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,15.6,73,101700,682,1339,368,437,636,112,46000,63000,13800,2420,360,3.1,4,4,16.0,77777,9,999999999,220,0.1360,0,88,0.160,0.0,1.0 +2001,8,28,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,15.6,71,101700,860,1339,371,543,512,214,58100,52800,24100,5380,360,3.1,4,4,16.0,77777,9,999999999,220,0.1360,0,88,0.160,0.0,1.0 +2001,8,28,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,15.6,66,101600,990,1339,373,683,648,202,71700,65600,23100,6080,330,2.6,3,3,16.0,77777,9,999999999,220,0.1360,0,88,0.160,0.0,1.0 +2001,8,28,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,15.6,60,101600,1064,1339,382,750,664,221,79000,67300,25400,7700,300,4.1,3,3,16.0,77777,9,999999999,209,0.1360,0,88,0.160,0.0,1.0 +2001,8,28,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,15.6,54,101500,1076,1339,391,747,650,223,78700,65900,25600,7990,310,4.6,3,3,16.0,77777,9,999999999,209,0.1360,0,88,0.160,0.0,1.0 +2001,8,28,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,15.0,49,101500,1025,1339,396,725,709,181,77100,72300,21600,5910,350,5.7,3,3,16.0,77777,9,999999999,200,0.1360,0,88,0.160,0.0,1.0 +2001,8,28,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,15.0,49,101400,915,1339,396,654,717,163,69200,72700,19400,4430,340,6.2,3,3,16.0,77777,9,999999999,200,0.1360,0,88,0.160,0.0,1.0 +2001,8,28,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,14.4,47,101300,754,1339,395,523,674,142,54700,67200,16800,3190,350,5.2,3,3,16.0,77777,9,999999999,189,0.1360,0,88,0.160,0.0,1.0 +2001,8,28,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,15.0,49,101300,552,1339,392,361,555,131,38100,53600,15900,2570,330,4.1,2,2,16.0,77777,9,999999999,189,0.1360,0,88,0.160,0.0,1.0 +2001,8,28,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,15.0,52,101300,323,1339,374,207,385,114,20800,31100,13200,2200,330,5.7,0,0,16.0,77777,9,999999999,179,0.1360,0,88,0.160,0.0,1.0 +2001,8,28,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,15.0,57,101300,89,1194,365,24,170,13,2800,8800,2100,250,320,4.6,0,0,16.0,77777,9,999999999,179,0.1360,0,88,0.160,0.0,1.0 +2001,8,28,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,16.1,66,101300,0,0,361,0,0,0,0,0,0,0,320,4.6,0,0,16.0,77777,9,999999999,170,0.1360,0,88,0.160,0.0,1.0 +2001,8,28,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,16.7,73,101300,0,0,357,0,0,0,0,0,0,0,330,5.7,0,0,16.0,77777,9,999999999,170,0.1360,0,88,0.160,0.0,1.0 +2001,8,28,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,16.7,78,101300,0,0,351,0,0,0,0,0,0,0,320,3.6,0,0,16.0,77777,9,999999999,160,0.1360,0,88,0.160,0.0,1.0 +2001,8,28,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,16.1,78,101300,0,0,348,0,0,0,0,0,0,0,320,2.1,0,0,16.0,77777,9,999999999,170,0.1360,0,88,0.160,0.0,1.0 +2001,8,28,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,16.1,84,101300,0,0,343,0,0,0,0,0,0,0,320,3.6,0,0,16.0,77777,9,999999999,170,0.1360,0,88,0.160,0.0,1.0 +2001,8,29,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,16.1,87,101300,0,0,360,0,0,0,0,0,0,0,0,0.0,5,5,16.0,77777,9,999999999,170,0.1360,0,88,0.160,0.0,1.0 +2001,8,29,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,16.1,90,101300,0,0,358,0,0,0,0,0,0,0,360,2.1,5,5,16.0,77777,9,999999999,179,0.1360,0,88,0.160,0.0,1.0 +2001,8,29,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,15.6,90,101300,0,0,375,0,0,0,0,0,0,0,330,1.5,9,9,16.0,274,9,999999999,179,0.1360,0,88,0.160,0.0,1.0 +2001,8,29,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,15.6,90,101300,0,0,361,0,0,0,0,0,0,0,330,2.6,7,7,16.0,488,9,999999999,179,0.1360,0,88,0.160,0.0,1.0 +2001,8,29,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,16.1,93,101300,0,0,386,0,0,0,0,0,0,0,350,1.5,10,10,16.0,213,9,999999999,189,0.1360,0,88,0.160,0.0,1.0 +2001,8,29,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,15.6,90,101300,27,681,386,0,0,0,0,0,0,0,0,0.0,10,10,16.0,213,9,999999999,189,0.1360,0,88,0.160,0.0,1.0 +2001,8,29,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,15.6,90,101300,230,1340,386,32,0,32,3700,0,3700,1250,350,2.6,10,10,16.0,335,9,999999999,200,0.1360,0,88,0.160,0.0,1.0 +2001,8,29,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,15.6,90,101300,464,1340,386,85,0,85,9900,0,9900,3510,350,3.1,10,10,16.0,274,9,999999999,200,0.1360,0,88,0.160,0.0,1.0 +2001,8,29,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,15.6,87,101300,678,1340,389,117,0,117,13900,0,13900,5320,330,2.1,10,10,16.0,335,9,999999999,200,0.1360,0,88,0.160,0.0,1.0 +2001,8,29,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,15.6,87,101300,856,1340,389,163,0,163,19500,0,19500,7720,0,0.0,10,10,16.0,335,9,999999999,209,0.1360,0,88,0.160,0.0,1.0 +2001,8,29,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,15.0,78,101300,986,1340,394,216,12,207,25800,1000,25100,9950,340,1.5,10,10,16.0,396,9,999999999,209,0.1360,0,88,0.160,0.0,1.0 +2001,8,29,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,15.0,73,101200,1060,1340,389,733,580,272,78700,60500,30700,9560,310,1.5,9,9,16.0,518,9,999999999,209,0.1360,0,88,0.160,0.0,1.0 +2001,8,29,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,15.6,64,101100,1071,1340,376,741,650,220,78100,65900,25300,7790,310,2.1,3,3,16.0,77777,9,999999999,209,0.1360,0,88,0.160,0.0,1.0 +2001,8,29,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,15.6,56,101000,1020,1340,394,745,776,152,77700,77800,18200,4460,300,2.1,5,5,16.0,77777,9,999999999,220,0.1360,0,88,0.160,0.0,1.0 +2001,8,29,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,15.0,49,100900,910,1340,396,661,760,144,70600,77500,17800,3930,300,4.1,3,3,16.0,77777,9,999999999,220,0.1360,0,88,0.160,0.0,1.0 +2001,8,29,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,16.1,49,100900,748,1340,386,517,631,164,53500,62300,18600,3570,320,3.6,0,0,16.0,77777,9,999999999,220,0.1360,0,88,0.160,0.0,1.0 +2001,8,29,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,16.1,49,100800,546,1340,403,346,504,140,36200,48500,16400,2760,310,5.7,3,3,16.0,77777,9,999999999,220,0.1360,0,88,0.160,0.0,1.0 +2001,8,29,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,16.7,54,100800,317,1340,394,187,288,119,19300,23400,13800,2480,310,6.7,2,2,16.0,77777,9,999999999,220,0.1360,0,88,0.160,0.0,1.0 +2001,8,29,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,16.7,64,100800,83,1150,383,20,122,13,2300,6200,1900,250,330,4.6,3,3,16.0,77777,9,999999999,229,0.1360,0,88,0.160,0.0,1.0 +2001,8,29,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,16.7,68,100900,0,0,362,0,0,0,0,0,0,0,330,4.1,0,0,16.0,77777,9,999999999,229,0.1360,0,88,0.160,0.0,1.0 +2001,8,29,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,16.7,76,100900,0,0,354,0,0,0,0,0,0,0,330,2.1,0,0,16.0,77777,9,999999999,229,0.1360,0,88,0.160,0.0,1.0 +2001,8,29,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,16.7,78,100900,0,0,351,0,0,0,0,0,0,0,320,3.6,0,0,16.0,77777,9,999999999,229,0.1360,0,88,0.160,0.0,1.0 +2001,8,29,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,16.1,81,100900,0,0,345,0,0,0,0,0,0,0,360,2.1,0,0,16.0,77777,9,999999999,229,0.1360,0,88,0.160,0.0,1.0 +2001,8,29,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,15.6,84,101000,0,0,339,0,0,0,0,0,0,0,360,2.1,0,0,16.0,77777,9,999999999,229,0.1360,0,88,0.160,0.0,1.0 +2001,8,30,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,15.6,87,101000,0,0,337,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,229,0.1350,0,88,0.160,0.0,1.0 +2001,8,30,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,15.0,87,101000,0,0,334,0,0,0,0,0,0,0,330,2.1,0,0,16.0,77777,9,999999999,229,0.1350,0,88,0.160,0.0,1.0 +2001,8,30,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,14.4,90,101000,0,0,339,0,0,0,0,0,0,0,330,2.6,2,2,16.0,77777,9,999999999,220,0.1350,0,88,0.160,0.0,1.0 +2001,8,30,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,14.4,93,101000,0,0,345,0,0,0,0,0,0,0,320,2.6,5,5,16.0,77777,9,999999999,220,0.1350,0,88,0.160,0.0,1.0 +2001,8,30,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,15.0,93,101100,0,0,369,0,0,0,0,0,0,0,310,3.6,9,9,16.0,366,9,999999999,220,0.1350,0,88,0.160,0.0,1.0 +2001,8,30,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,15.0,96,101100,25,637,377,0,0,0,0,0,0,0,310,3.6,10,10,4.8,152,9,999999999,220,0.1350,0,88,0.160,0.0,1.0 +2001,8,30,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,15.0,93,101100,226,1340,379,88,187,57,9400,12700,7200,1060,290,2.6,10,10,11.2,152,9,999999999,220,0.1350,0,88,0.160,0.0,1.0 +2001,8,30,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,15.0,87,101200,460,1340,374,161,61,140,17600,5700,15700,3760,340,1.5,9,9,14.4,274,9,999999999,220,0.1350,0,88,0.160,0.0,1.0 +2001,8,30,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,15.6,84,101200,674,1340,381,329,220,219,35900,22600,24600,5470,0,0.0,9,9,16.0,274,9,999999999,220,0.1350,0,88,0.160,0.0,1.0 +2001,8,30,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,15.0,73,101200,852,1340,381,570,588,195,61300,60700,22700,4820,10,1.5,8,8,16.0,762,9,999999999,220,0.1350,0,88,0.160,0.0,1.0 +2001,8,30,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,15.0,66,101200,982,1340,398,677,666,188,71500,67600,21800,5610,0,0.0,9,9,16.0,7620,9,999999999,220,0.1350,0,88,0.160,0.0,1.0 +2001,8,30,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,15.0,57,101200,1056,1340,410,733,628,237,76700,63300,26700,8010,10,2.1,9,9,16.0,7620,9,999999999,220,0.1350,0,88,0.160,0.0,1.0 +2001,8,30,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,13.9,50,101100,1067,1340,415,741,656,217,78100,66600,25000,7610,20,2.1,9,9,16.0,7620,9,999999999,229,0.1350,0,88,0.160,0.0,1.0 +2001,8,30,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,14.4,48,101100,1015,1340,422,732,764,152,76300,76600,18200,4410,20,1.5,9,9,16.0,7620,9,999999999,229,0.1350,0,88,0.160,0.0,1.0 +2001,8,30,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,12.8,41,101000,905,1340,426,649,723,159,68600,73300,19000,4250,30,2.1,9,9,16.0,7620,9,999999999,240,0.1350,0,88,0.160,0.0,1.0 +2001,8,30,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,12.8,40,101000,742,1340,405,511,663,143,53400,65900,16800,3160,350,2.1,5,5,16.0,77777,9,999999999,240,0.1350,0,88,0.160,0.0,1.0 +2001,8,30,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,12.2,38,101000,539,1340,382,365,623,113,37500,58600,13800,2160,300,2.1,0,0,16.0,77777,9,999999999,250,0.1350,0,88,0.160,0.0,1.0 +2001,8,30,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,13.3,41,101000,310,1340,383,192,354,110,19900,28400,13300,2260,310,2.6,0,0,16.0,77777,9,999999999,250,0.1350,0,88,0.160,0.0,1.0 +2001,8,30,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,11.7,46,101000,77,1106,383,18,142,10,2200,7200,1700,200,350,5.7,5,5,16.0,7620,9,999999999,259,0.1350,0,88,0.160,0.0,1.0 +2001,8,30,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,8.9,44,101100,0,0,363,0,0,0,0,0,0,0,350,3.6,3,3,16.0,77777,9,999999999,259,0.1350,0,88,0.160,0.0,1.0 +2001,8,30,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,6.7,40,101200,0,0,340,0,0,0,0,0,0,0,350,4.1,0,0,16.0,77777,9,999999999,270,0.1350,0,88,0.160,0.0,1.0 +2001,8,30,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,7.2,47,101200,0,0,347,0,0,0,0,0,0,0,330,3.1,3,3,16.0,7620,9,999999999,270,0.1350,0,88,0.160,0.0,1.0 +2001,8,30,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,9.4,56,101300,0,0,355,0,0,0,0,0,0,0,330,3.1,7,6,16.0,7620,9,999999999,270,0.1350,0,88,0.160,0.0,1.0 +2001,8,30,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,11.1,63,101400,0,0,367,0,0,0,0,0,0,0,0,0.0,9,8,16.0,1981,9,999999999,270,0.1350,0,88,0.160,0.0,1.0 +2001,8,31,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,12.2,70,101400,0,0,374,0,0,0,0,0,0,0,320,1.5,10,9,16.0,2134,9,999999999,259,0.1350,0,88,0.160,0.0,1.0 +2001,8,31,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,12.2,72,101400,0,0,363,0,0,0,0,0,0,0,190,2.1,9,8,16.0,1829,9,999999999,259,0.1350,0,88,0.160,0.0,1.0 +2001,8,31,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,10.0,63,101400,0,0,351,0,0,0,0,0,0,0,150,2.1,9,6,16.0,7620,9,999999999,259,0.1350,0,88,0.160,0.0,1.0 +2001,8,31,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,10.6,63,101400,0,0,364,0,0,0,0,0,0,0,230,1.5,9,8,16.0,1524,9,999999999,250,0.1350,0,88,0.160,0.0,1.0 +2001,8,31,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,12.2,72,101400,0,0,381,0,0,0,0,0,0,0,0,0.0,10,10,16.0,1524,9,999999999,250,0.1350,0,88,0.160,0.0,1.0 +2001,8,31,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,12.8,75,101500,23,615,364,0,0,0,0,0,0,0,360,1.5,8,8,16.0,1189,9,999999999,250,0.1350,0,88,0.160,0.0,1.0 +2001,8,31,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,12.8,75,101500,221,1341,364,65,57,56,7200,4100,6500,1190,190,1.5,8,8,16.0,1524,9,999999999,250,0.1350,0,88,0.160,0.0,1.0 +2001,8,31,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,12.2,68,101500,456,1341,369,209,188,145,22700,17700,16600,3300,60,2.1,8,8,16.0,1280,9,999999999,240,0.1350,0,88,0.160,0.0,1.0 +2001,8,31,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,12.8,63,101500,670,1341,378,248,69,213,27200,6900,23700,6370,360,2.1,8,8,16.0,975,9,999999999,240,0.1350,0,88,0.160,0.0,1.0 +2001,8,31,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,12.8,63,101500,848,1341,378,477,306,283,51200,32700,30500,7430,350,1.5,8,8,16.0,1036,9,999999999,240,0.1350,0,88,0.160,0.0,1.0 +2001,8,31,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,12.2,57,101500,978,1341,369,648,547,248,69500,56900,27900,7400,360,1.5,5,5,16.0,7620,9,999999999,229,0.1350,0,88,0.160,0.0,1.0 +2001,8,31,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,12.2,51,101400,1051,1341,375,579,293,349,62900,31700,38000,11900,360,2.6,5,4,16.0,7620,9,999999999,220,0.1350,0,88,0.160,0.0,1.0 +2001,8,31,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,12.2,50,101400,1062,1341,381,717,614,229,75200,62100,25900,7880,350,3.1,5,5,16.0,7620,9,999999999,209,0.1350,0,88,0.160,0.0,1.0 +2001,8,31,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,11.1,45,101300,1010,1341,376,682,601,228,71200,60500,25500,7000,340,2.1,3,3,16.0,7620,9,999999999,200,0.1350,0,88,0.160,0.0,1.0 +2001,8,31,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,11.7,43,101200,899,1341,383,542,386,283,58700,41400,30800,7740,30,2.6,3,3,16.0,7620,9,999999999,189,0.1350,0,88,0.160,0.0,1.0 +2001,8,31,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,11.7,42,101200,736,1341,389,411,313,239,44000,32900,25900,5710,310,2.6,6,4,16.0,7620,9,999999999,179,0.1350,0,88,0.160,0.0,1.0 +2001,8,31,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,11.7,42,101200,533,1341,389,309,355,167,32700,35000,18700,3560,310,1.5,6,4,16.0,7620,9,999999999,170,0.1350,0,88,0.160,0.0,1.0 +2001,8,31,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,12.8,47,101100,303,1341,387,158,175,118,16800,14200,13600,2570,330,2.1,5,4,16.0,7620,9,999999999,160,0.1350,0,88,0.160,0.0,1.0 +2001,8,31,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,13.9,59,101100,72,1084,374,13,67,10,1700,2800,1500,170,320,4.1,5,4,16.0,7620,9,999999999,150,0.1350,0,88,0.160,0.0,1.0 +2001,8,31,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,13.3,61,101200,0,0,362,0,0,0,0,0,0,0,320,4.6,4,2,16.0,7620,9,999999999,139,0.1350,0,88,0.160,0.0,1.0 +2001,8,31,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,12.8,61,101200,0,0,358,0,0,0,0,0,0,0,330,3.1,4,2,16.0,7620,9,999999999,139,0.1350,0,88,0.160,0.0,1.0 +2001,8,31,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.0,12.2,68,101200,0,0,354,0,0,0,0,0,0,0,310,2.9,7,3,16.0,7620,9,999999999,129,0.1350,0,88,0.160,0.0,1.0 +2001,8,31,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.4,11.7,70,101200,0,0,342,0,0,0,0,0,0,0,290,2.6,4,2,16.0,4267,9,999999999,129,0.1350,0,88,0.160,0.0,1.0 +2001,8,31,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.8,11.1,73,101100,0,0,337,0,0,0,0,0,0,0,260,2.4,6,3,16.1,4200,9,999999999,139,0.1350,0,88,0.160,0.0,1.0 +1980,9,1,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.2,10.6,93,101900,0,0,326,0,0,0,0,0,0,0,0,2.2,2,2,24.1,77777,9,999999999,250,0.1210,0,88,999.000,999.0,99.0 +1980,9,1,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.6,10.0,93,101800,0,0,318,0,0,0,0,0,0,0,0,2.0,2,2,24.1,77777,9,999999999,250,0.1210,0,88,999.000,999.0,99.0 +1980,9,1,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.0,9.5,93,101800,0,0,301,0,0,0,0,0,0,0,0,1.7,4,0,24.1,77777,9,999999999,259,0.1210,0,88,999.000,999.0,99.0 +1980,9,1,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,8.9,96,101800,0,0,293,0,0,0,0,0,0,0,190,1.5,3,0,24.1,77777,9,999999999,259,0.1210,0,88,999.000,999.0,99.0 +1980,9,1,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,9.4,100,101800,0,0,303,0,0,0,0,0,0,0,130,2.1,3,2,24.1,77777,9,999999999,259,0.1210,0,88,999.000,999.0,99.0 +1980,9,1,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,9.4,100,101800,21,593,306,6,1,6,0,0,0,0,170,2.1,10,3,24.1,77777,9,999999999,270,0.1210,0,88,999.000,999.0,99.0 +1980,9,1,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,10.0,96,101800,217,1342,312,69,26,65,7600,2000,7200,1550,170,2.1,10,3,24.1,77777,9,999999999,270,0.1210,0,88,999.000,999.0,99.0 +1980,9,1,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,11.1,87,101800,452,1342,334,181,72,157,19800,6800,17600,4060,0,0.0,10,6,24.1,7620,9,999999999,270,0.1210,0,88,999.000,999.0,99.0 +1980,9,1,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,11.1,75,101800,666,1342,339,439,485,197,45500,48400,21400,4220,170,2.1,10,4,24.1,77777,9,999999999,270,0.1210,0,88,999.000,999.0,99.0 +1980,9,1,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,11.1,70,101700,844,1342,359,446,123,368,48900,12700,40900,11360,30,2.1,10,8,32.2,2740,9,999999999,279,0.1210,0,88,999.000,999.0,99.0 +1980,9,1,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,11.7,63,101600,974,1342,390,412,27,392,46700,2700,44700,15400,140,3.1,10,10,32.2,2440,9,999999999,279,0.1210,0,88,999.000,999.0,99.0 +1980,9,1,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,11.7,61,101600,1047,1342,382,277,1,276,32700,100,32600,12720,20,2.1,10,9,32.2,1520,9,999999999,279,0.1210,0,88,999.000,999.0,99.0 +1980,9,1,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,11.1,55,101600,1057,1342,379,281,1,280,33200,100,33100,12900,360,2.1,9,8,32.2,1430,9,999999999,279,0.1210,0,88,999.000,999.0,99.0 +1980,9,1,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,12.2,53,101500,1005,1342,397,230,1,229,27300,100,27300,10850,360,2.6,10,9,40.2,1220,9,999999999,279,0.1210,0,88,999.000,999.0,99.0 +1980,9,1,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,12.8,57,101400,893,1342,406,226,1,225,26400,100,26400,10140,310,2.1,10,10,40.2,1220,9,999999999,290,0.1210,0,88,999.000,999.0,99.0 +1980,9,1,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,12.8,57,101300,730,1342,406,164,1,163,19100,100,19100,7170,300,2.1,10,10,48.3,1220,9,999999999,290,0.1210,0,88,999.000,999.0,99.0 +1980,9,1,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,13.9,61,101300,526,1342,408,67,0,67,8100,0,8100,3000,300,2.1,10,10,48.3,1220,9,999999999,290,0.1210,0,88,999.000,999.0,99.0 +1980,9,1,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,15.0,71,101200,296,1342,403,16,0,16,2000,0,2000,700,310,2.6,10,10,24.1,1830,9,999999999,300,0.1210,0,88,999.000,999.0,99.0 +1980,9,1,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,15.6,87,101200,66,1040,389,1,0,1,100,0,100,40,200,1.5,10,10,6.4,460,9,999999999,300,0.1210,0,88,999.000,999.0,99.0 +1980,9,1,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,16.1,90,101200,0,0,390,0,0,0,0,0,0,0,120,3.6,10,10,11.3,1220,9,999999999,309,0.1210,0,88,999.000,999.0,99.0 +1980,9,1,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,15.6,87,101300,0,0,389,0,0,0,0,0,0,0,170,2.6,10,10,11.3,1160,9,999999999,309,0.1210,0,88,999.000,999.0,99.0 +1980,9,1,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,15.6,90,101200,0,0,386,0,0,0,0,0,0,0,190,5.7,10,10,16.1,1280,9,999999999,320,0.1210,0,88,999.000,999.0,99.0 +1980,9,1,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,15.6,90,101200,0,0,386,0,0,0,0,0,0,0,180,3.6,10,10,11.3,790,9,999999999,320,0.1210,0,88,999.000,999.0,99.0 +1980,9,1,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,15.6,93,101200,0,0,383,0,0,0,0,0,0,0,180,3.6,10,10,24.1,790,9,999999999,320,0.1210,0,88,999.000,999.0,99.0 +1980,9,2,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,15.6,93,101200,0,0,383,0,0,0,0,0,0,0,220,1.5,10,10,12.9,370,9,999999999,329,0.1210,0,88,999.000,999.0,99.0 +1980,9,2,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,13.9,93,101200,0,0,372,0,0,0,0,0,0,0,330,6.7,10,10,6.4,460,9,999999999,329,0.1210,0,88,999.000,999.0,99.0 +1980,9,2,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,13.9,93,101300,0,0,372,0,0,0,0,0,0,0,320,4.1,10,10,24.1,910,9,999999999,340,0.1210,0,88,999.000,999.0,99.0 +1980,9,2,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,12.8,87,101300,0,0,371,0,0,0,0,0,0,0,330,4.1,10,10,24.1,1220,9,999999999,340,0.1210,0,88,999.000,999.0,99.0 +1980,9,2,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,11.7,84,101400,0,0,366,0,0,0,0,0,0,0,320,4.6,10,10,24.1,1340,9,999999999,329,0.1210,0,88,999.000,999.0,99.0 +1980,9,2,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,10.6,83,101500,19,571,325,9,12,8,0,0,0,0,310,4.1,3,3,32.2,77777,9,999999999,309,0.1210,0,88,999.000,999.0,99.0 +1980,9,2,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,10.6,83,101500,212,1343,322,83,189,54,8900,12400,6900,1000,310,4.1,2,2,32.2,77777,9,999999999,300,0.1210,0,88,999.000,999.0,99.0 +1980,9,2,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,11.1,78,101600,447,1343,330,235,373,110,24600,34100,13200,2080,300,3.1,2,2,40.2,77777,9,999999999,279,0.1210,0,88,999.000,999.0,99.0 +1980,9,2,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,11.1,72,101700,662,1343,335,407,559,132,42300,54600,15400,2730,300,3.1,2,2,40.2,77777,9,999999999,270,0.1210,0,88,999.000,999.0,99.0 +1980,9,2,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,10.0,61,101700,840,1343,342,576,625,182,59600,62400,20500,4340,310,3.1,2,2,40.2,77777,9,999999999,250,0.1210,0,88,999.000,999.0,99.0 +1980,9,2,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,8.9,54,101700,970,1343,365,376,102,301,41300,10800,33500,9410,280,3.1,8,8,40.2,1220,9,999999999,229,0.1210,0,88,999.000,999.0,99.0 +1980,9,2,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,8.3,51,101700,1042,1343,385,290,1,290,34200,100,34100,13160,290,4.1,10,10,40.2,1520,9,999999999,220,0.1210,0,88,999.000,999.0,99.0 +1980,9,2,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,8.3,49,101700,1053,1343,388,397,34,365,43200,3500,40400,14180,280,4.1,10,10,40.2,1680,9,999999999,200,0.1210,0,88,999.000,999.0,99.0 +1980,9,2,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,7.8,47,101800,1000,1343,387,334,5,334,39000,500,38600,14220,320,4.6,10,10,40.2,1830,9,999999999,189,0.1210,0,88,999.000,999.0,99.0 +1980,9,2,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,8.9,49,101800,888,1343,392,228,16,219,26900,1300,26000,9910,290,3.1,10,10,40.2,1830,9,999999999,179,0.1210,0,88,999.000,999.0,99.0 +1980,9,2,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,9.4,53,101800,724,1343,390,231,1,231,26300,100,26200,9140,300,4.6,10,10,48.3,1830,9,999999999,160,0.1210,0,88,999.000,999.0,99.0 +1980,9,2,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,9.4,53,101800,519,1343,390,127,4,127,14700,300,14600,5010,310,3.1,10,10,48.3,1830,9,999999999,160,0.1210,0,88,999.000,999.0,99.0 +1980,9,2,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,8.9,52,101800,289,1343,368,121,89,101,12900,7100,11400,2190,340,3.6,8,8,48.3,1830,9,999999999,160,0.1210,0,88,999.000,999.0,99.0 +1980,9,2,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,10.0,63,101800,61,996,342,25,95,18,2600,3800,2300,310,330,3.6,3,3,48.3,77777,9,999999999,160,0.1210,0,88,999.000,999.0,99.0 +1980,9,2,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,10.0,65,101900,0,0,332,0,0,0,0,0,0,0,320,4.6,1,1,24.1,77777,9,999999999,160,0.1210,0,88,999.000,999.0,99.0 +1980,9,2,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,10.0,70,101900,0,0,321,0,0,0,0,0,0,0,340,4.1,0,0,24.1,77777,9,999999999,160,0.1210,0,88,999.000,999.0,99.0 +1980,9,2,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,9.4,72,102000,0,0,315,0,0,0,0,0,0,0,350,2.1,0,0,24.1,77777,9,999999999,150,0.1210,0,88,999.000,999.0,99.0 +1980,9,2,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,9.4,78,102000,0,0,310,0,0,0,0,0,0,0,320,2.6,0,0,24.1,77777,9,999999999,150,0.1210,0,88,999.000,999.0,99.0 +1980,9,2,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,9.4,83,102000,0,0,306,0,0,0,0,0,0,0,300,3.1,0,0,24.1,77777,9,999999999,150,0.1210,0,88,999.000,999.0,99.0 +1980,9,3,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,10.0,86,102000,0,0,306,0,0,0,0,0,0,0,340,2.6,0,0,24.1,77777,9,999999999,150,0.0640,0,88,999.000,999.0,99.0 +1980,9,3,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,9.4,96,102000,0,0,296,0,0,0,0,0,0,0,120,1.5,0,0,24.1,77777,9,999999999,150,0.0640,0,88,999.000,999.0,99.0 +1980,9,3,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,9.4,96,102000,0,0,296,0,0,0,0,0,0,0,50,2.6,0,0,24.1,77777,9,999999999,150,0.0640,0,88,999.000,999.0,99.0 +1980,9,3,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,8.3,96,102000,0,0,296,0,0,0,0,0,0,0,190,1.5,1,1,24.1,77777,9,999999999,150,0.0640,0,88,999.000,999.0,99.0 +1980,9,3,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,7.8,100,101900,0,0,298,0,0,0,0,0,0,0,250,1.5,3,3,8.0,77777,9,999999999,150,0.0640,0,88,999.000,999.0,99.0 +1980,9,3,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,10.0,100,102000,17,526,343,3,0,3,0,0,0,0,120,2.6,10,10,4.0,90,9,999999999,150,0.0640,0,88,999.000,999.0,99.0 +1980,9,3,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,10.0,100,102000,208,1344,343,45,1,45,5100,0,5100,1580,120,2.6,10,10,4.0,60,9,999999999,139,0.0640,0,88,999.000,999.0,99.0 +1980,9,3,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,10.0,96,102000,443,1344,345,119,14,115,13500,900,13200,4300,0,0.0,10,10,4.0,180,9,999999999,139,0.0640,0,88,999.000,999.0,99.0 +1980,9,3,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,10.0,86,102000,657,1344,322,284,185,184,30200,19000,20900,4550,340,2.1,4,4,6.4,77777,9,999999999,139,0.0640,0,88,999.000,999.0,99.0 +1980,9,3,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,10.0,78,102000,836,1344,324,499,544,161,52400,54600,18400,3890,280,3.1,2,2,9.7,77777,9,999999999,139,0.0640,0,88,999.000,999.0,99.0 +1980,9,3,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,11.1,65,101900,965,1344,332,745,901,87,76600,90000,11800,2390,290,3.1,0,0,40.2,77777,9,999999999,129,0.0640,0,88,999.000,999.0,99.0 +1980,9,3,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,11.1,57,101800,1038,1344,342,810,921,92,83600,92200,12300,2780,270,4.6,0,0,80.5,77777,9,999999999,129,0.0640,0,88,999.000,999.0,99.0 +1980,9,3,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,10.0,46,101700,1048,1344,351,821,924,92,84600,92500,12300,2840,300,5.7,0,0,80.5,77777,9,999999999,129,0.0640,0,88,999.000,999.0,99.0 +1980,9,3,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,10.0,43,101700,995,1344,357,772,921,89,80300,92100,12000,2530,290,5.7,0,0,80.5,77777,9,999999999,129,0.0640,0,88,999.000,999.0,99.0 +1980,9,3,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,6.7,33,101600,882,1344,356,672,897,82,70100,89200,11400,2070,290,5.2,0,0,80.5,77777,9,999999999,120,0.0640,0,88,999.000,999.0,99.0 +1980,9,3,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,8.9,37,101600,718,1344,361,526,855,71,55300,83800,10400,1630,280,5.2,0,0,64.4,77777,9,999999999,120,0.0640,0,88,999.000,999.0,99.0 +1980,9,3,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,7.2,33,101500,513,1344,359,346,751,55,36300,71300,9100,1200,300,5.2,0,0,64.4,77777,9,999999999,129,0.0640,0,88,999.000,999.0,99.0 +1980,9,3,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,9.4,43,101500,281,1344,354,160,569,38,16200,46000,6600,760,340,5.7,0,0,64.4,77777,9,999999999,129,0.0640,0,88,999.000,999.0,99.0 +1980,9,3,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,10.6,51,101500,55,952,347,32,136,17,2700,5300,2400,300,340,4.1,0,0,64.4,77777,9,999999999,139,0.0640,0,88,999.000,999.0,99.0 +1980,9,3,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,10.6,57,101600,0,0,339,0,0,0,0,0,0,0,330,4.6,0,0,64.4,77777,9,999999999,139,0.0640,0,88,999.000,999.0,99.0 +1980,9,3,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,11.7,73,101600,0,0,328,0,0,0,0,0,0,0,310,3.6,0,0,24.1,77777,9,999999999,150,0.0640,0,88,999.000,999.0,99.0 +1980,9,3,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,11.7,70,101600,0,0,330,0,0,0,0,0,0,0,300,4.1,0,0,24.1,77777,9,999999999,150,0.0640,0,88,999.000,999.0,99.0 +1980,9,3,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,12.2,78,101700,0,0,326,0,0,0,0,0,0,0,340,3.1,0,0,24.1,77777,9,999999999,150,0.0640,0,88,999.000,999.0,99.0 +1980,9,3,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,12.2,84,101700,0,0,321,0,0,0,0,0,0,0,330,2.6,0,0,24.1,77777,9,999999999,160,0.0640,0,88,999.000,999.0,99.0 +1980,9,4,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,11.7,84,101700,0,0,317,0,0,0,0,0,0,0,320,2.6,0,0,24.1,77777,9,999999999,160,0.0480,0,88,999.000,999.0,99.0 +1980,9,4,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,11.7,90,101700,0,0,313,0,0,0,0,0,0,0,30,2.1,0,0,24.1,77777,9,999999999,170,0.0480,0,88,999.000,999.0,99.0 +1980,9,4,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,11.1,90,101700,0,0,310,0,0,0,0,0,0,0,350,2.6,0,0,24.1,77777,9,999999999,179,0.0480,0,88,999.000,999.0,99.0 +1980,9,4,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,11.7,93,101700,0,0,321,0,0,0,0,0,0,0,130,1.5,2,2,16.1,77777,9,999999999,179,0.0480,0,88,999.000,999.0,99.0 +1980,9,4,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,11.7,100,101700,0,0,336,0,0,0,0,0,0,0,0,0.0,8,8,2.4,120,9,999999999,179,0.0480,0,88,999.000,999.0,99.0 +1980,9,4,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,11.7,96,101700,15,504,355,7,1,7,0,0,0,0,10,2.1,10,10,0.8,120,9,999999999,179,0.0480,0,88,999.000,999.0,99.0 +1980,9,4,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,11.7,96,101800,203,1344,326,81,3,81,8700,100,8700,2210,50,2.6,5,5,3.2,77777,9,999999999,170,0.0480,0,88,999.000,999.0,99.0 +1980,9,4,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,12.2,90,101800,438,1344,338,211,13,207,22700,1100,22300,5770,270,1.5,6,6,3.2,180,9,999999999,170,0.0480,0,88,999.000,999.0,99.0 +1980,9,4,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,12.2,81,101800,653,1344,334,474,520,220,48400,51600,23300,4750,360,1.5,3,2,8.0,77777,9,999999999,170,0.0480,0,88,999.000,999.0,99.0 +1980,9,4,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,12.2,70,101800,831,1344,333,640,817,132,65700,80800,15600,2870,350,1.5,0,0,12.9,77777,9,999999999,160,0.0480,0,88,999.000,999.0,99.0 +1980,9,4,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,12.2,61,101700,961,1344,344,754,858,137,78600,86000,17000,3660,280,2.1,0,0,19.3,77777,9,999999999,160,0.0480,0,88,999.000,999.0,99.0 +1980,9,4,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,12.2,55,101600,1033,1344,358,825,892,135,87000,90000,17600,4200,340,2.6,2,1,24.1,77777,9,999999999,160,0.0480,0,88,999.000,999.0,99.0 +1980,9,4,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,11.1,43,101600,1043,1344,370,833,920,115,85700,91900,14200,3100,320,2.6,2,1,48.3,77777,9,999999999,160,0.0480,0,88,999.000,999.0,99.0 +1980,9,4,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,11.1,40,101600,989,1344,376,794,913,118,81600,91000,14500,2770,340,2.1,2,1,64.4,77777,9,999999999,150,0.0480,0,88,999.000,999.0,99.0 +1980,9,4,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,8.9,33,101500,876,1344,372,696,877,120,72600,87700,15300,2920,300,2.6,1,0,64.4,77777,9,999999999,150,0.0480,0,88,999.000,999.0,99.0 +1980,9,4,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,8.3,29,101500,711,1344,377,542,819,104,55600,80300,13100,2150,300,3.1,0,0,64.4,77777,9,999999999,150,0.0480,0,88,999.000,999.0,99.0 +1980,9,4,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,9.4,33,101400,506,1344,375,350,705,81,36300,66300,11300,1600,300,3.6,0,0,64.4,77777,9,999999999,150,0.0480,0,88,999.000,999.0,99.0 +1980,9,4,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,10.0,38,101400,274,1344,368,151,506,46,15500,39300,7400,850,290,3.6,0,0,64.4,77777,9,999999999,160,0.0480,0,88,999.000,999.0,99.0 +1980,9,4,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,12.2,53,101400,51,907,354,19,107,9,1600,4900,1300,170,310,2.6,0,0,64.4,77777,9,999999999,160,0.0480,0,88,999.000,999.0,99.0 +1980,9,4,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,11.7,51,101500,0,0,353,0,0,0,0,0,0,0,300,3.6,0,0,24.1,77777,9,999999999,170,0.0480,0,88,999.000,999.0,99.0 +1980,9,4,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,12.8,59,101500,0,0,349,0,0,0,0,0,0,0,340,3.6,0,0,24.1,77777,9,999999999,179,0.0480,0,88,999.000,999.0,99.0 +1980,9,4,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,12.8,68,101500,0,0,339,0,0,0,0,0,0,0,270,1.5,0,0,24.1,77777,9,999999999,179,0.0480,0,88,999.000,999.0,99.0 +1980,9,4,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,12.8,73,101600,0,0,334,0,0,0,0,0,0,0,50,2.6,0,0,24.1,77777,9,999999999,189,0.0480,0,88,999.000,999.0,99.0 +1980,9,4,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,12.2,81,101600,0,0,323,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,189,0.0480,0,88,999.000,999.0,99.0 +1980,9,5,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,12.2,75,101600,0,0,328,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,200,0.1570,0,88,999.000,999.0,99.0 +1980,9,5,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,12.8,84,101600,0,0,324,0,0,0,0,0,0,0,350,2.6,0,0,24.1,77777,9,999999999,200,0.1570,0,88,999.000,999.0,99.0 +1980,9,5,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,11.7,90,101600,0,0,313,0,0,0,0,0,0,0,280,2.1,0,0,24.1,77777,9,999999999,200,0.1570,0,88,999.000,999.0,99.0 +1980,9,5,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,11.7,90,101600,0,0,313,0,0,0,0,0,0,0,120,2.1,0,0,24.1,77777,9,999999999,209,0.1570,0,88,999.000,999.0,99.0 +1980,9,5,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,12.2,96,101600,0,0,311,0,0,0,0,0,0,0,140,2.1,1,0,24.1,77777,9,999999999,209,0.1570,0,88,999.000,999.0,99.0 +1980,9,5,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,10.0,93,101600,14,482,311,4,10,3,0,0,0,0,0,0.0,5,2,11.3,77777,9,999999999,220,0.1570,0,88,999.000,999.0,99.0 +1980,9,5,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,12.2,90,101700,198,1345,326,126,330,77,12400,20900,9300,1490,0,0.0,2,2,8.0,77777,9,999999999,220,0.1570,0,88,999.000,999.0,99.0 +1980,9,5,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,10.0,75,101700,434,1345,326,310,562,127,31700,50700,15300,2450,290,2.6,3,2,8.0,77777,9,999999999,220,0.1570,0,88,999.000,999.0,99.0 +1980,9,5,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,13.3,84,101600,649,1345,327,489,736,132,50500,71600,15900,2690,250,2.6,0,0,8.0,77777,9,999999999,220,0.1570,0,88,999.000,999.0,99.0 +1980,9,5,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,13.3,73,101600,827,1345,337,664,806,165,69200,80700,19400,3930,350,2.1,6,0,11.3,77777,9,999999999,229,0.1570,0,88,999.000,999.0,99.0 +1980,9,5,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,13.9,66,101500,957,1345,355,667,769,117,70700,77600,15400,3270,20,2.1,5,1,16.1,77777,9,999999999,229,0.0740,0,88,999.000,999.0,99.0 +1980,9,5,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,13.9,55,101500,1028,1345,368,822,853,166,84800,85200,19500,4770,20,3.1,3,1,24.1,77777,9,999999999,229,0.1570,0,88,999.000,999.0,99.0 +1980,9,5,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,13.3,48,101400,1038,1345,376,823,861,155,85600,86300,18800,4660,360,2.6,1,1,24.1,77777,9,999999999,229,0.1570,0,88,999.000,999.0,99.0 +1980,9,5,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,13.3,42,101300,984,1345,380,742,856,112,76400,85400,13800,2700,20,2.1,1,0,32.2,77777,9,999999999,229,0.1570,0,88,999.000,999.0,99.0 +1980,9,5,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,12.8,37,101300,870,1345,388,624,819,91,64700,81300,11900,2110,350,2.6,1,0,32.2,77777,9,999999999,240,0.1570,0,88,999.000,999.0,99.0 +1980,9,5,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,12.2,35,101200,705,1345,390,457,720,76,48500,71400,11000,1760,340,2.1,0,0,64.4,77777,9,999999999,240,0.1570,0,88,999.000,999.0,99.0 +1980,9,5,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,12.8,35,101200,499,1345,394,278,570,64,29400,53900,9300,1300,30,1.5,0,0,32.2,77777,9,999999999,240,0.1570,0,88,999.000,999.0,99.0 +1980,9,5,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,15.0,50,101200,267,1345,376,108,315,44,11000,24200,6200,810,340,3.6,0,0,32.2,77777,9,999999999,229,0.1570,0,88,999.000,999.0,99.0 +1980,9,5,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,14.4,59,101200,46,863,366,9,33,6,900,1200,900,100,320,3.1,4,1,24.1,77777,9,999999999,229,0.1570,0,88,999.000,999.0,99.0 +1980,9,5,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,13.9,61,101300,0,0,365,0,0,0,0,0,0,0,340,2.6,2,2,24.1,77777,9,999999999,229,0.1570,0,88,999.000,999.0,99.0 +1980,9,5,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,13.3,63,101300,0,0,348,0,0,0,0,0,0,0,300,3.1,0,0,24.1,77777,9,999999999,229,0.1570,0,88,999.000,999.0,99.0 +1980,9,5,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,13.3,75,101300,0,0,335,0,0,0,0,0,0,0,240,2.6,0,0,24.1,77777,9,999999999,229,0.1570,0,88,999.000,999.0,99.0 +1980,9,5,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,13.3,84,101300,0,0,327,0,0,0,0,0,0,0,270,3.1,0,0,24.1,77777,9,999999999,220,0.1570,0,88,999.000,999.0,99.0 +1980,9,5,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,12.8,75,101300,0,0,331,0,0,0,0,0,0,0,320,2.6,0,0,24.1,77777,9,999999999,220,0.1570,0,88,999.000,999.0,99.0 +1980,9,6,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,12.8,81,101300,0,0,326,0,0,0,0,0,0,0,330,2.1,0,0,19.3,77777,9,999999999,220,0.1560,0,88,999.000,999.0,99.0 +1980,9,6,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,12.8,84,101300,0,0,324,0,0,0,0,0,0,0,330,2.6,0,0,19.3,77777,9,999999999,220,0.1560,0,88,999.000,999.0,99.0 +1980,9,6,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,12.2,90,101300,0,0,316,0,0,0,0,0,0,0,330,1.5,0,0,19.3,77777,9,999999999,209,0.1560,0,88,999.000,999.0,99.0 +1980,9,6,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,11.7,90,101300,0,0,313,0,0,0,0,0,0,0,270,1.5,0,0,16.1,77777,9,999999999,209,0.1560,0,88,999.000,999.0,99.0 +1980,9,6,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,11.7,93,101300,0,0,310,0,0,0,0,0,0,0,290,2.1,0,0,12.9,77777,9,999999999,209,0.1560,0,88,999.000,999.0,99.0 +1980,9,6,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,11.7,93,101300,12,460,310,4,0,4,0,0,0,0,30,1.5,0,0,9.7,77777,9,999999999,220,0.1560,0,88,999.000,999.0,99.0 +1980,9,6,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,12.2,93,101300,194,1346,313,79,8,78,8500,200,8400,2100,0,0.0,0,0,8.0,77777,9,999999999,220,0.1560,0,88,999.000,999.0,99.0 +1980,9,6,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,12.8,87,101300,430,1346,332,166,43,152,18100,4000,16800,3860,350,1.5,2,2,8.0,77777,9,999999999,220,0.1560,0,88,999.000,999.0,99.0 +1980,9,6,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,12.8,75,101300,644,1346,348,280,38,262,31000,3600,29300,8990,330,2.6,8,4,9.7,77777,9,999999999,229,0.1560,0,88,999.000,999.0,99.0 +1980,9,6,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,12.8,73,101300,823,1346,351,456,365,232,49500,38900,25600,5760,360,2.6,8,4,11.3,77777,9,999999999,229,0.1560,0,88,999.000,999.0,99.0 +1980,9,6,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,13.3,61,101200,952,1346,368,699,724,184,73400,73300,21500,5180,40,3.1,8,4,24.1,77777,9,999999999,229,0.1560,0,88,999.000,999.0,99.0 +1980,9,6,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,12.2,51,101200,1024,1346,375,611,407,300,64600,42300,32300,9790,250,3.1,8,4,40.2,77777,9,999999999,240,0.1560,0,88,999.000,999.0,99.0 +1980,9,6,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,12.8,48,101200,1033,1346,384,629,474,263,67400,49400,29400,8640,240,2.1,9,4,40.2,77777,9,999999999,240,0.1560,0,88,999.000,999.0,99.0 +1980,9,6,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,13.3,47,101200,978,1346,402,537,345,285,58600,37300,31400,8460,230,6.2,9,7,40.2,4570,9,999999999,240,0.1560,0,88,999.000,999.0,99.0 +1980,9,6,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,13.3,44,101100,864,1346,400,598,589,217,63600,60700,24500,5460,240,4.1,7,5,40.2,6100,9,999999999,250,0.1560,0,88,999.000,999.0,99.0 +1980,9,6,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,13.3,47,101100,698,1346,402,409,379,210,43700,39500,23100,4810,280,6.2,8,7,32.2,6100,9,999999999,250,0.1560,0,88,999.000,999.0,99.0 +1980,9,6,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,13.9,52,101100,492,1346,403,98,6,96,11400,400,11300,3950,270,5.2,9,8,32.2,7620,9,999999999,250,0.1560,0,88,999.000,999.0,99.0 +1980,9,6,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,13.9,55,101100,260,1346,386,89,123,65,9400,9100,7700,1220,290,4.1,7,6,32.2,7620,9,999999999,250,0.1560,0,88,999.000,999.0,99.0 +1980,9,6,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,13.9,61,101100,42,819,388,9,0,9,1100,0,1100,340,290,3.1,10,8,32.2,3660,9,999999999,250,0.1560,0,88,999.000,999.0,99.0 +1980,9,6,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,14.4,66,101200,0,0,394,0,0,0,0,0,0,0,280,3.6,10,9,24.1,1490,9,999999999,259,0.1560,0,88,999.000,999.0,99.0 +1980,9,6,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,15.6,76,101200,0,0,401,0,0,0,0,0,0,0,270,2.6,10,10,24.1,1430,9,999999999,259,0.1560,0,88,999.000,999.0,99.0 +1980,9,6,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,16.1,81,101300,0,0,398,0,0,0,0,0,0,0,290,2.6,10,10,24.1,1340,9,999999999,259,0.1560,0,88,999.000,999.0,99.0 +1980,9,6,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,15.6,84,101300,0,0,392,0,0,0,0,0,0,0,120,2.1,10,10,24.1,1160,9,999999999,259,0.1560,0,88,999.000,999.0,99.0 +1980,9,6,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,15.6,81,101300,0,0,395,0,0,0,0,0,0,0,200,2.1,10,10,24.1,1040,9,999999999,259,0.1560,0,88,999.000,999.0,99.0 +1980,9,7,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,15.6,84,101300,0,0,392,0,0,0,0,0,0,0,240,2.6,10,10,24.1,1010,9,999999999,270,0.2140,0,88,999.000,999.0,99.0 +1980,9,7,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,15.6,84,101300,0,0,392,0,0,0,0,0,0,0,220,2.6,10,10,24.1,1340,9,999999999,270,0.2140,0,88,999.000,999.0,99.0 +1980,9,7,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,16.1,90,101300,0,0,390,0,0,0,0,0,0,0,250,2.1,10,10,16.1,460,9,999999999,270,0.2140,0,88,999.000,999.0,99.0 +1980,9,7,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,15.6,93,101400,0,0,383,0,0,0,0,0,0,0,330,4.6,10,10,8.0,580,9,999999999,270,0.2140,0,88,999.000,999.0,99.0 +1980,9,7,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,13.3,93,101500,0,0,368,0,0,0,0,0,0,0,330,5.7,10,10,8.0,490,9,999999999,259,0.2140,0,88,999.000,999.0,99.0 +1980,9,7,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,11.7,86,101600,11,438,354,12,0,12,0,0,0,0,350,4.6,9,9,16.1,490,9,999999999,240,0.2140,0,88,999.000,999.0,99.0 +1980,9,7,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,10.6,83,101700,189,1346,328,105,181,79,10600,10900,9100,1650,340,4.1,4,4,32.2,77777,9,999999999,229,0.2140,0,88,999.000,999.0,99.0 +1980,9,7,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,9.4,72,101700,425,1346,321,286,452,142,28900,40400,16100,2780,310,5.2,1,1,40.2,77777,9,999999999,220,0.2140,0,88,999.000,999.0,99.0 +1980,9,7,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,10.0,67,101800,640,1346,340,472,615,178,49200,61000,20100,3720,310,5.7,4,4,40.2,77777,9,999999999,200,0.2140,0,88,999.000,999.0,99.0 +1980,9,7,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,10.0,63,101800,818,1346,348,597,652,198,61300,64500,22000,4510,350,4.1,5,5,40.2,77777,9,999999999,189,0.2140,0,88,999.000,999.0,99.0 +1980,9,7,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,10.0,57,101900,947,1346,350,703,806,132,73400,80800,16400,3480,360,4.6,3,3,40.2,77777,9,999999999,179,0.2140,0,88,999.000,999.0,99.0 +1980,9,7,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,9.4,53,101800,1019,1346,344,771,873,107,79600,87200,13400,2860,330,4.1,1,1,40.2,77777,9,999999999,160,0.2140,0,88,999.000,999.0,99.0 +1980,9,7,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,9.4,51,101800,1027,1346,347,771,883,93,79800,88300,12200,2730,300,6.2,1,1,48.3,77777,9,999999999,150,0.2140,0,88,999.000,999.0,99.0 +1980,9,7,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,10.0,51,101800,972,1346,344,712,861,86,73900,86000,11600,2390,320,4.6,0,0,48.3,77777,9,999999999,139,0.2140,0,88,999.000,999.0,99.0 +1980,9,7,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,10.6,53,101800,858,1346,345,604,826,74,62900,82100,10500,1920,350,5.7,0,0,48.3,77777,9,999999999,120,0.2140,0,88,999.000,999.0,99.0 +1980,9,7,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,10.0,51,101800,692,1346,344,468,801,53,49100,78400,8700,1400,340,5.7,0,0,64.4,77777,9,999999999,110,0.2140,0,88,999.000,999.0,99.0 +1980,9,7,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,10.0,55,101800,485,1346,338,291,671,46,30400,62500,7800,1110,340,7.2,0,0,64.4,77777,9,999999999,110,0.2140,0,88,999.000,999.0,99.0 +1980,9,7,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,10.0,55,101800,253,1346,338,115,444,30,11800,34900,5300,630,340,5.2,0,0,64.4,77777,9,999999999,110,0.2140,0,88,999.000,999.0,99.0 +1980,9,7,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,10.6,63,101800,37,774,332,10,48,5,800,2100,700,100,340,3.6,0,0,64.4,77777,9,999999999,120,0.2140,0,88,999.000,999.0,99.0 +1980,9,7,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,11.1,68,101900,0,0,329,0,0,0,0,0,0,0,310,4.6,0,0,24.1,77777,9,999999999,120,0.2140,0,88,999.000,999.0,99.0 +1980,9,7,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,11.7,75,101900,0,0,325,0,0,0,0,0,0,0,320,5.2,0,0,24.1,77777,9,999999999,120,0.2140,0,88,999.000,999.0,99.0 +1980,9,7,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,11.1,78,101900,0,0,320,0,0,0,0,0,0,0,330,3.1,0,0,24.1,77777,9,999999999,129,0.2140,0,88,999.000,999.0,99.0 +1980,9,7,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,10.6,80,101900,0,0,314,0,0,0,0,0,0,0,360,1.5,0,0,24.1,77777,9,999999999,129,0.2140,0,88,999.000,999.0,99.0 +1980,9,7,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,11.1,87,101900,0,0,312,0,0,0,0,0,0,0,50,2.6,0,0,24.1,77777,9,999999999,129,0.2140,0,88,999.000,999.0,99.0 +1980,9,8,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,10.6,90,102000,0,0,307,0,0,0,0,0,0,0,30,2.1,0,0,24.1,77777,9,999999999,129,0.1770,0,88,999.000,999.0,99.0 +1980,9,8,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,10.0,90,102000,0,0,304,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,139,0.1770,0,88,999.000,999.0,99.0 +1980,9,8,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,10.0,93,102000,0,0,301,0,0,0,0,0,0,0,30,1.5,0,0,24.1,77777,9,999999999,139,0.1770,0,88,999.000,999.0,99.0 +1980,9,8,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,10.0,96,102000,0,0,299,0,0,0,0,0,0,0,40,2.1,0,0,24.1,77777,9,999999999,139,0.1770,0,88,999.000,999.0,99.0 +1980,9,8,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,9.4,96,102100,0,0,296,0,0,0,0,0,0,0,80,1.5,0,0,24.1,77777,9,999999999,139,0.1770,0,88,999.000,999.0,99.0 +1980,9,8,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,8.9,93,102100,9,393,296,16,10,15,0,0,0,0,30,1.5,0,0,24.1,77777,9,999999999,139,0.1770,0,88,999.000,999.0,99.0 +1980,9,8,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,10.0,93,102100,185,1347,301,84,98,70,8900,6300,8000,1480,30,1.5,0,0,32.2,77777,9,999999999,139,0.1770,0,88,999.000,999.0,99.0 +1980,9,8,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,10.6,80,102200,421,1347,314,251,262,169,25900,23900,18400,3690,20,2.1,0,0,24.1,77777,9,999999999,139,0.1770,0,88,999.000,999.0,99.0 +1980,9,8,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,10.6,70,102100,636,1347,324,425,435,218,44800,44500,23700,4960,60,1.5,0,0,32.2,77777,9,999999999,139,0.1770,0,88,999.000,999.0,99.0 +1980,9,8,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,11.7,61,102100,814,1347,340,572,599,208,60600,61400,23400,4950,290,3.1,0,0,32.2,77777,9,999999999,150,0.1770,0,88,999.000,999.0,99.0 +1980,9,8,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,12.2,51,102100,943,1347,357,691,749,164,73100,76100,19700,4610,310,3.6,0,0,32.2,77777,9,999999999,150,0.1770,0,88,999.000,999.0,99.0 +1980,9,8,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,10.0,33,102000,1014,1347,379,748,825,123,79400,83400,16500,3760,60,5.2,0,0,32.2,77777,9,999999999,150,0.1770,0,88,999.000,999.0,99.0 +1980,9,8,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,7.8,27,101900,1022,1347,382,694,643,204,73000,65200,23400,6450,50,8.8,0,0,32.2,77777,9,999999999,150,0.2540,0,88,999.000,999.0,99.0 +1980,9,8,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,7.8,26,101800,967,1347,384,699,696,196,73200,70300,22600,5610,80,7.7,0,0,48.3,77777,9,999999999,150,0.2540,0,88,999.000,999.0,99.0 +1980,9,8,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,7.8,25,101800,852,1347,387,620,728,147,64300,73600,17700,3670,80,7.2,1,0,48.3,77777,9,999999999,150,0.1770,0,88,999.000,999.0,99.0 +1980,9,8,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,8.3,26,101700,685,1347,395,469,628,139,47600,61600,16200,2900,70,6.2,4,1,64.4,77777,9,999999999,150,0.1770,0,88,999.000,999.0,99.0 +1980,9,8,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,7.8,27,101700,478,1347,391,271,472,101,28600,44000,13000,1900,80,6.7,5,2,64.4,77777,9,999999999,160,0.1770,0,88,999.000,999.0,99.0 +1980,9,8,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,8.3,31,101700,245,1347,383,98,113,77,10500,8400,9000,1650,70,5.2,6,2,64.4,77777,9,999999999,160,0.2540,0,88,999.000,999.0,99.0 +1980,9,8,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,7.8,32,101700,33,730,381,15,2,15,1700,0,1700,510,30,3.6,8,3,24.1,77777,9,999999999,170,0.2540,0,88,999.000,999.0,99.0 +1980,9,8,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,11.7,53,101800,0,0,366,0,0,0,0,0,0,0,290,1.5,7,3,24.1,77777,9,999999999,170,0.1770,0,88,999.000,999.0,99.0 +1980,9,8,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,13.3,66,101800,0,0,360,0,0,0,0,0,0,0,310,3.1,4,3,24.1,77777,9,999999999,179,0.1770,0,88,999.000,999.0,99.0 +1980,9,8,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,13.3,78,101800,0,0,349,0,0,0,0,0,0,0,250,2.6,5,4,24.1,77777,9,999999999,189,0.1770,0,88,999.000,999.0,99.0 +1980,9,8,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,12.2,84,101800,0,0,327,0,0,0,0,0,0,0,290,3.1,1,1,24.1,77777,9,999999999,189,0.1770,0,88,999.000,999.0,99.0 +1980,9,8,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,12.2,84,101800,0,0,321,0,0,0,0,0,0,0,270,2.1,0,0,24.1,77777,9,999999999,200,0.1770,0,88,999.000,999.0,99.0 +1980,9,9,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,11.7,84,101800,0,0,317,0,0,0,0,0,0,0,300,2.6,0,0,24.1,77777,9,999999999,200,0.2760,0,88,999.000,999.0,99.0 +1980,9,9,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,11.7,81,101800,0,0,320,0,0,0,0,0,0,0,270,3.1,0,0,24.1,77777,9,999999999,209,0.2760,0,88,999.000,999.0,99.0 +1980,9,9,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,11.1,87,101800,0,0,312,0,0,0,0,0,0,0,290,2.6,0,0,24.1,77777,9,999999999,209,0.2760,0,88,999.000,999.0,99.0 +1980,9,9,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,11.1,87,101800,0,0,312,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,220,0.2760,0,88,999.000,999.0,99.0 +1980,9,9,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,10.6,90,101800,0,0,307,0,0,0,0,0,0,0,290,1.5,0,0,24.1,77777,9,999999999,220,0.2760,0,88,999.000,999.0,99.0 +1980,9,9,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,10.0,86,101800,8,371,312,3,3,3,0,0,0,0,260,2.1,3,1,40.2,77777,9,999999999,220,0.1460,0,88,999.000,999.0,99.0 +1980,9,9,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,11.7,90,101800,180,1348,319,70,169,47,7300,9900,6000,870,270,1.5,3,1,40.2,77777,9,999999999,220,0.1460,0,88,999.000,999.0,99.0 +1980,9,9,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,11.7,70,101800,416,1348,336,225,404,99,23500,36100,12300,1850,300,2.6,3,1,24.1,77777,9,999999999,220,0.1460,0,88,999.000,999.0,99.0 +1980,9,9,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,12.2,59,101800,631,1348,353,394,654,86,41900,64500,11600,1840,300,3.6,3,1,24.1,77777,9,999999999,220,0.2760,0,88,999.000,999.0,99.0 +1980,9,9,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,12.2,50,101700,809,1348,366,548,769,84,58800,77300,12300,2100,300,3.6,3,1,24.1,77777,9,999999999,220,0.2760,0,88,999.000,999.0,99.0 +1980,9,9,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,13.3,47,101700,938,1348,379,661,814,92,68600,81100,12000,2330,320,3.1,2,1,32.2,77777,9,999999999,209,0.2760,0,88,999.000,999.0,99.0 +1980,9,9,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,13.9,41,101600,1009,1348,386,719,834,91,74500,83400,11900,2610,300,4.1,1,0,48.3,77777,9,999999999,209,0.2760,0,88,999.000,999.0,99.0 +1980,9,9,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,14.4,39,101500,1017,1348,396,726,831,95,75100,83100,12300,2700,300,4.6,0,0,48.3,77777,9,999999999,209,0.2760,0,88,999.000,999.0,99.0 +1980,9,9,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,13.3,32,101400,961,1348,406,678,816,93,70300,81400,12100,2430,360,3.6,0,0,48.3,77777,9,999999999,209,0.2760,0,88,999.000,999.0,99.0 +1980,9,9,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,13.3,31,101300,846,1348,417,581,783,86,60200,77600,11400,2000,360,1.5,1,1,48.3,77777,9,999999999,209,0.2760,0,88,999.000,999.0,99.0 +1980,9,9,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,11.1,26,101200,678,1348,409,443,719,78,46700,70900,10900,1740,90,4.1,2,0,64.4,77777,9,999999999,209,0.2760,0,88,999.000,999.0,99.0 +1980,9,9,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,13.3,33,101200,471,1348,403,278,609,63,29300,56700,9400,1260,330,1.5,1,0,64.4,77777,9,999999999,220,0.2760,0,88,999.000,999.0,99.0 +1980,9,9,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,13.9,40,101100,238,1348,389,111,389,41,11300,28400,6300,750,340,4.6,1,0,64.4,77777,9,999999999,220,0.2760,0,88,999.000,999.0,99.0 +1980,9,9,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,13.3,45,101200,29,685,374,8,38,4,600,1600,600,80,360,4.6,0,0,24.1,77777,9,999999999,229,0.2760,0,88,999.000,999.0,99.0 +1980,9,9,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,13.3,54,101200,0,0,361,0,0,0,0,0,0,0,320,3.6,0,0,24.1,77777,9,999999999,240,0.2760,0,88,999.000,999.0,99.0 +1980,9,9,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,13.3,57,101300,0,0,355,0,0,0,0,0,0,0,300,3.1,0,0,24.1,77777,9,999999999,240,0.2760,0,88,999.000,999.0,99.0 +1980,9,9,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,13.3,68,101200,0,0,342,0,0,0,0,0,0,0,290,2.6,0,0,24.1,77777,9,999999999,250,0.2760,0,88,999.000,999.0,99.0 +1980,9,9,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,12.8,66,101200,0,0,341,0,0,0,0,0,0,0,280,3.1,0,0,24.1,77777,9,999999999,259,0.2760,0,88,999.000,999.0,99.0 +1980,9,9,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,12.8,75,101200,0,0,331,0,0,0,0,0,0,0,280,2.1,0,0,24.1,77777,9,999999999,259,0.2760,0,88,999.000,999.0,99.0 +1980,9,10,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,12.2,78,101200,0,0,326,0,0,0,0,0,0,0,320,2.1,0,0,24.1,77777,9,999999999,270,0.2360,0,88,999.000,999.0,99.0 +1980,9,10,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,12.2,75,101200,0,0,328,0,0,0,0,0,0,0,290,2.6,0,0,24.1,77777,9,999999999,279,0.2360,0,88,999.000,999.0,99.0 +1980,9,10,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,12.2,78,101200,0,0,326,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,279,0.2360,0,88,999.000,999.0,99.0 +1980,9,10,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,13.3,84,101200,0,0,327,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,290,0.2360,0,88,999.000,999.0,99.0 +1980,9,10,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,12.2,81,101200,0,0,330,0,0,0,0,0,0,0,0,0.0,1,1,24.1,77777,9,999999999,279,0.2360,0,88,999.000,999.0,99.0 +1980,9,10,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,12.2,84,101200,7,348,327,3,0,3,0,0,0,0,0,0.0,1,1,32.2,77777,9,999999999,270,0.2360,0,88,999.000,999.0,99.0 +1980,9,10,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,13.3,84,101200,175,1348,333,53,89,41,5600,5200,4900,740,110,1.5,1,1,24.1,77777,9,999999999,259,0.2360,0,88,999.000,999.0,99.0 +1980,9,10,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,12.8,66,101300,411,1348,341,219,402,95,22900,35800,12000,1770,0,0.0,0,0,24.1,77777,9,999999999,250,0.2360,0,88,999.000,999.0,99.0 +1980,9,10,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,12.2,57,101300,626,1348,349,386,668,73,40600,65200,10200,1590,0,0.0,0,0,24.1,77777,9,999999999,240,0.2360,0,88,999.000,999.0,99.0 +1980,9,10,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,12.8,52,101300,805,1348,360,521,721,88,55500,72300,12300,2150,340,1.5,1,0,24.1,77777,9,999999999,229,0.2360,0,88,999.000,999.0,99.0 +1980,9,10,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,12.8,47,101200,933,1348,368,641,799,84,66500,79700,11200,2230,0,0.0,1,0,24.1,77777,9,999999999,220,0.2360,0,88,999.000,999.0,99.0 +1980,9,10,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,12.2,39,101200,1004,1348,379,701,827,81,72800,82700,11100,2430,330,2.6,1,0,24.1,77777,9,999999999,209,0.2360,0,88,999.000,999.0,99.0 +1980,9,10,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,13.3,38,101200,1011,1348,396,710,816,94,73500,81600,12100,2660,310,3.1,1,1,24.1,77777,9,999999999,200,0.2360,0,88,999.000,999.0,99.0 +1980,9,10,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,13.9,39,101100,955,1348,399,662,804,89,68600,80200,11700,2360,300,4.1,1,1,32.2,77777,9,999999999,189,0.2360,0,88,999.000,999.0,99.0 +1980,9,10,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,13.3,35,101100,839,1348,405,560,751,89,59900,75600,12700,2260,330,4.1,1,1,48.3,77777,9,999999999,179,0.2360,0,88,999.000,999.0,99.0 +1980,9,10,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,13.3,35,101000,672,1348,410,433,699,81,45300,68700,11000,1770,350,5.7,2,2,48.3,77777,9,999999999,170,0.2360,0,88,999.000,999.0,99.0 +1980,9,10,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,11.1,33,101000,464,1348,393,274,610,61,28800,56600,9300,1220,340,6.7,1,1,48.3,77777,9,999999999,170,0.2360,0,88,999.000,999.0,99.0 +1980,9,10,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,9.4,35,101100,230,1348,377,111,413,39,11300,29800,6200,710,340,5.7,1,1,48.3,77777,9,999999999,179,0.2360,0,88,999.000,999.0,99.0 +1980,9,10,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,10.0,43,101100,26,663,357,11,73,3,0,0,0,0,340,3.6,1,0,24.1,77777,9,999999999,179,0.2360,0,88,999.000,999.0,99.0 +1980,9,10,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,9.4,47,101200,0,0,345,0,0,0,0,0,0,0,340,3.1,0,0,24.1,77777,9,999999999,189,0.2360,0,88,999.000,999.0,99.0 +1980,9,10,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,11.1,63,101300,0,0,334,0,0,0,0,0,0,0,340,2.6,0,0,24.1,77777,9,999999999,189,0.2360,0,88,999.000,999.0,99.0 +1980,9,10,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,11.7,75,101400,0,0,325,0,0,0,0,0,0,0,290,2.6,0,0,24.1,77777,9,999999999,200,0.2360,0,88,999.000,999.0,99.0 +1980,9,10,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,11.1,83,101500,0,0,325,0,0,0,0,0,0,0,300,3.1,3,2,24.1,77777,9,999999999,200,0.2360,0,88,999.000,999.0,99.0 +1980,9,10,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,11.7,81,101500,0,0,326,0,0,0,0,0,0,0,340,3.6,1,1,24.1,77777,9,999999999,200,0.2360,0,88,999.000,999.0,99.0 +1980,9,11,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,11.1,83,101600,0,0,315,0,0,0,0,0,0,0,210,1.5,0,0,24.1,77777,9,999999999,209,0.1150,0,88,999.000,999.0,99.0 +1980,9,11,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,11.7,87,101700,0,0,315,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,209,0.1150,0,88,999.000,999.0,99.0 +1980,9,11,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,11.1,87,101700,0,0,312,0,0,0,0,0,0,0,110,1.5,0,0,24.1,77777,9,999999999,220,0.1150,0,88,999.000,999.0,99.0 +1980,9,11,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,11.1,90,101700,0,0,310,0,0,0,0,0,0,0,120,2.1,0,0,24.1,77777,9,999999999,220,0.1150,0,88,999.000,999.0,99.0 +1980,9,11,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,11.7,90,101800,0,0,319,0,0,0,0,0,0,0,50,2.6,1,1,24.1,77777,9,999999999,220,0.1150,0,88,999.000,999.0,99.0 +1980,9,11,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,11.7,93,101800,6,326,324,3,19,1,0,0,0,0,120,2.1,4,3,24.1,77777,9,999999999,229,0.1150,0,88,999.000,999.0,99.0 +1980,9,11,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,11.7,90,101800,171,1349,323,44,3,44,4900,0,4900,1440,110,2.1,3,2,40.2,77777,9,999999999,229,0.1150,0,88,999.000,999.0,99.0 +1980,9,11,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,12.8,81,101900,407,1349,337,228,457,89,24000,40500,11800,1650,90,2.6,3,2,32.2,77777,9,999999999,229,0.1150,0,88,999.000,999.0,99.0 +1980,9,11,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,12.2,73,101900,622,1349,371,343,424,146,36300,41900,16900,2960,70,3.1,10,9,32.2,520,9,999999999,229,0.1150,0,88,999.000,999.0,99.0 +1980,9,11,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,11.7,65,101900,800,1349,350,496,533,178,53200,54700,20700,4120,60,3.1,6,3,32.2,77777,9,999999999,229,0.1150,0,88,999.000,999.0,99.0 +1980,9,11,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,11.7,59,101900,928,1349,354,489,463,168,53900,48200,20600,4490,220,3.1,2,2,32.2,77777,9,999999999,240,0.1150,0,88,999.000,999.0,99.0 +1980,9,11,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,11.1,53,101900,999,1349,376,641,434,318,67000,45000,33600,9930,50,2.6,10,7,32.2,6100,9,999999999,240,0.1150,0,88,999.000,999.0,99.0 +1980,9,11,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,11.1,51,101800,1006,1349,404,405,4,402,46100,400,45800,15900,260,2.1,10,10,32.2,3660,9,999999999,240,0.1150,0,88,999.000,999.0,99.0 +1980,9,11,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,11.7,50,101800,949,1349,377,540,316,316,58100,34000,34200,9200,340,1.5,5,5,32.2,77777,9,999999999,250,0.1150,0,88,999.000,999.0,99.0 +1980,9,11,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,12.2,50,101700,833,1349,371,571,786,82,59300,77900,11100,1940,290,2.1,2,2,32.2,77777,9,999999999,250,0.1150,0,88,999.000,999.0,99.0 +1980,9,11,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,12.2,48,101700,665,1349,378,438,706,87,45500,69000,11400,1840,330,4.1,6,3,48.3,77777,9,999999999,250,0.1150,0,88,999.000,999.0,99.0 +1980,9,11,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,12.8,50,101700,456,1349,382,239,440,88,25500,40500,11700,1630,330,4.1,8,4,48.3,77777,9,999999999,259,0.1150,0,88,999.000,999.0,99.0 +1980,9,11,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,12.8,55,101600,223,1349,370,114,394,47,11400,27600,6800,820,360,4.6,8,3,48.3,77777,9,999999999,259,0.1150,0,88,999.000,999.0,99.0 +1980,9,11,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,12.8,61,101600,22,618,358,6,6,5,0,0,0,0,360,3.6,6,2,24.1,77777,9,999999999,270,0.1150,0,88,999.000,999.0,99.0 +1980,9,11,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,12.2,65,101600,0,0,350,0,0,0,0,0,0,0,340,3.1,5,2,24.1,77777,9,999999999,279,0.1150,0,88,999.000,999.0,99.0 +1980,9,11,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,12.2,70,101700,0,0,350,0,0,0,0,0,0,0,340,3.6,5,4,24.1,77777,9,999999999,279,0.1150,0,88,999.000,999.0,99.0 +1980,9,11,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,12.2,70,101700,0,0,374,0,0,0,0,0,0,0,320,4.1,10,9,24.1,3660,9,999999999,290,0.1150,0,88,999.000,999.0,99.0 +1980,9,11,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,11.7,73,101600,0,0,378,0,0,0,0,0,0,0,330,4.1,10,10,24.1,3660,9,999999999,300,0.1150,0,88,999.000,999.0,99.0 +1980,9,11,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,11.7,73,101600,0,0,378,0,0,0,0,0,0,0,330,3.6,10,10,24.1,3660,9,999999999,300,0.1150,0,88,999.000,999.0,99.0 +1980,9,12,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,11.7,75,101600,0,0,375,0,0,0,0,0,0,0,310,2.6,10,10,24.1,3660,9,999999999,309,0.1150,0,88,999.000,999.0,99.0 +1980,9,12,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,12.2,81,101600,0,0,373,0,0,0,0,0,0,0,250,2.1,10,10,24.1,2440,9,999999999,320,0.1150,0,88,999.000,999.0,99.0 +1980,9,12,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,11.7,75,101600,0,0,375,0,0,0,0,0,0,0,330,1.5,10,10,24.1,1680,9,999999999,320,0.1150,0,88,999.000,999.0,99.0 +1980,9,12,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,11.7,75,101600,0,0,375,0,0,0,0,0,0,0,0,0.0,10,10,16.1,1040,9,999999999,329,0.1150,0,88,999.000,999.0,99.0 +1980,9,12,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,12.8,84,101600,0,0,374,0,0,0,0,0,0,0,320,2.1,10,10,16.1,880,9,999999999,320,0.1150,0,88,999.000,999.0,99.0 +1980,9,12,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,13.3,90,101600,5,281,371,3,0,3,0,0,0,0,250,1.5,10,10,6.4,850,9,999999999,320,0.1150,0,88,999.000,999.0,99.0 +1980,9,12,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,13.9,93,101600,166,1350,372,18,1,18,2200,0,2200,700,0,0.0,10,10,4.8,640,9,999999999,309,0.1150,0,88,999.000,999.0,99.0 +1980,9,12,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,13.9,93,101600,402,1350,372,66,1,66,7700,0,7700,2700,0,0.0,10,10,8.0,850,9,999999999,309,0.1150,0,88,999.000,999.0,99.0 +1980,9,12,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,14.4,90,101600,617,1350,368,188,44,168,20700,4300,18700,5020,270,2.1,10,9,11.3,850,9,999999999,300,0.1150,0,88,999.000,999.0,99.0 +1980,9,12,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,14.4,78,101600,795,1350,366,347,194,232,38100,20300,26100,6210,360,2.1,7,7,12.9,1100,9,999999999,300,0.1150,0,88,999.000,999.0,99.0 +1980,9,12,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,13.9,70,101600,923,1350,366,421,218,271,45700,23500,29700,7490,40,2.6,6,6,32.2,1100,9,999999999,290,0.1150,0,88,999.000,999.0,99.0 +1980,9,12,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,13.3,61,101600,993,1350,378,604,570,182,63800,57900,21000,5490,340,3.1,7,7,32.2,1520,9,999999999,279,0.1150,0,88,999.000,999.0,99.0 +1980,9,12,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,12.8,55,101500,1000,1350,390,352,146,243,39300,15600,27700,7820,340,3.6,9,8,32.2,1070,9,999999999,279,0.1150,0,88,999.000,999.0,99.0 +1980,9,12,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,12.8,57,101400,943,1350,376,434,288,231,47800,31100,26000,6360,30,3.1,6,6,40.2,1070,9,999999999,270,0.1150,0,88,999.000,999.0,99.0 +1980,9,12,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,13.3,59,101400,826,1350,396,223,11,216,25900,900,25300,9420,210,2.6,9,9,40.2,1520,9,999999999,270,0.1150,0,88,999.000,999.0,99.0 +1980,9,12,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,13.3,59,101300,658,1350,382,351,264,221,37100,27200,23800,5060,300,3.1,7,7,40.2,1680,9,999999999,259,0.1150,0,88,999.000,999.0,99.0 +1980,9,12,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,12.8,66,101200,449,1350,375,193,310,89,20600,28400,11100,1650,350,6.7,8,8,32.2,910,9,999999999,250,0.1150,0,88,999.000,999.0,99.0 +1980,9,12,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,11.7,65,101300,215,1350,355,103,386,40,10400,26900,6100,720,340,6.2,5,5,48.3,77777,9,999999999,240,0.1150,0,88,999.000,999.0,99.0 +1980,9,12,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,9.4,65,101300,19,574,337,8,39,4,0,0,0,0,320,7.7,4,3,24.1,77777,9,999999999,229,0.1150,0,88,999.000,999.0,99.0 +1980,9,12,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,9.4,72,101400,0,0,331,0,0,0,0,0,0,0,300,6.2,5,4,24.1,77777,9,999999999,220,0.1150,0,88,999.000,999.0,99.0 +1980,9,12,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,9.4,75,101400,0,0,329,0,0,0,0,0,0,0,300,4.1,4,4,24.1,77777,9,999999999,209,0.1150,0,88,999.000,999.0,99.0 +1980,9,12,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,8.3,69,101300,0,0,342,0,0,0,0,0,0,0,310,4.6,8,8,24.1,910,9,999999999,200,0.1150,0,88,999.000,999.0,99.0 +1980,9,12,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,8.3,72,101300,0,0,357,0,0,0,0,0,0,0,270,4.1,10,10,24.1,910,9,999999999,179,0.1150,0,88,999.000,999.0,99.0 +1980,9,12,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,8.3,72,101300,0,0,357,0,0,0,0,0,0,0,310,1.5,10,10,24.1,910,9,999999999,170,0.1150,0,88,999.000,999.0,99.0 +1980,9,13,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,8.3,72,101300,0,0,357,0,0,0,0,0,0,0,230,2.1,10,10,24.1,910,9,999999999,160,0.1140,0,88,999.000,999.0,99.0 +1980,9,13,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,7.8,69,101200,0,0,356,0,0,0,0,0,0,0,230,2.1,10,10,24.1,1040,9,999999999,150,0.1140,0,88,999.000,999.0,99.0 +1980,9,13,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,7.8,72,101200,0,0,354,0,0,0,0,0,0,0,270,2.1,10,10,24.1,1040,9,999999999,139,0.1140,0,88,999.000,999.0,99.0 +1980,9,13,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,7.2,69,101200,0,0,353,0,0,0,0,0,0,0,240,3.1,10,10,24.1,1040,9,999999999,129,0.1140,0,88,999.000,999.0,99.0 +1980,9,13,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,8.3,77,101200,0,0,351,0,0,0,0,0,0,0,170,4.1,10,10,24.1,1010,9,999999999,139,0.1140,0,88,999.000,999.0,99.0 +1980,9,13,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,8.3,80,101200,4,259,349,2,0,2,0,0,0,0,170,3.1,10,10,24.1,1280,9,999999999,150,0.1140,0,88,999.000,999.0,99.0 +1980,9,13,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,8.3,80,101100,161,1351,349,12,0,12,1500,0,1500,490,0,0.0,10,10,32.2,1040,9,999999999,160,0.1140,0,88,999.000,999.0,99.0 +1980,9,13,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,8.3,77,101200,397,1351,351,29,0,29,3600,0,3600,1300,190,3.6,10,10,32.2,1010,9,999999999,170,0.1140,0,88,999.000,999.0,99.0 +1980,9,13,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,8.3,77,101200,613,1351,351,40,0,40,5100,0,5100,1960,170,3.1,10,10,32.2,910,9,999999999,179,0.1140,0,88,999.000,999.0,99.0 +1980,9,13,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,8.9,77,101200,790,1351,355,109,0,109,13300,0,13300,5300,190,2.6,10,10,32.2,910,9,999999999,189,0.1140,0,88,999.000,999.0,99.0 +1980,9,13,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,8.9,72,101100,919,1351,360,203,1,202,24000,100,24000,9430,170,2.1,10,10,32.2,1010,9,999999999,189,0.1140,0,88,999.000,999.0,99.0 +1980,9,13,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,8.9,70,101100,988,1351,363,169,0,169,20500,0,20500,8390,180,4.1,10,10,32.2,940,9,999999999,200,0.1140,0,88,999.000,999.0,99.0 +1980,9,13,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,8.3,65,101100,995,1351,365,144,0,144,17700,0,17700,7330,210,2.1,10,10,32.2,940,9,999999999,209,0.1140,0,88,999.000,999.0,99.0 +1980,9,13,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,8.3,65,101100,937,1351,365,101,0,101,12600,0,12600,5250,220,2.1,10,10,32.2,1010,9,999999999,220,0.1140,0,88,999.000,999.0,99.0 +1980,9,13,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,8.3,65,101100,820,1351,365,187,3,185,21900,200,21800,8350,0,0.0,10,10,19.3,1010,9,999999999,229,0.1140,0,88,999.000,999.0,99.0 +1980,9,13,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,9.4,72,101100,651,1351,364,100,1,100,12000,100,12000,4570,0,0.0,10,10,24.1,910,9,999999999,240,0.1140,0,88,999.000,999.0,99.0 +1980,9,13,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,10.0,72,101100,442,1351,367,52,0,52,6300,0,6300,2270,180,2.1,10,10,24.1,910,9,999999999,240,0.1140,0,88,999.000,999.0,99.0 +1980,9,13,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,9.4,72,101100,208,1351,364,19,0,19,2300,0,2300,770,230,2.1,10,10,24.1,1160,9,999999999,229,0.1140,0,88,999.000,999.0,99.0 +1980,9,13,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,9.4,72,101100,16,529,364,3,0,3,0,0,0,0,0,0.0,10,10,24.1,910,9,999999999,229,0.1140,0,88,999.000,999.0,99.0 +1980,9,13,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,11.7,87,101200,0,0,364,0,0,0,0,0,0,0,270,2.6,10,10,24.1,820,9,999999999,229,0.1140,0,88,999.000,999.0,99.0 +1980,9,13,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,11.1,83,101200,0,0,363,0,0,0,0,0,0,0,30,2.1,10,10,24.1,1160,9,999999999,229,0.1140,0,88,999.000,999.0,99.0 +1980,9,13,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,11.1,83,101200,0,0,363,0,0,0,0,0,0,0,60,2.1,10,10,24.1,1340,9,999999999,229,0.1140,0,88,999.000,999.0,99.0 +1980,9,13,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,11.1,87,101200,0,0,360,0,0,0,0,0,0,0,280,2.6,10,10,24.1,1280,9,999999999,220,0.1140,0,88,999.000,999.0,99.0 +1980,9,13,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,11.1,87,101200,0,0,360,0,0,0,0,0,0,0,330,2.6,10,10,16.1,1280,9,999999999,220,0.1140,0,88,999.000,999.0,99.0 +1980,9,14,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,11.1,90,101200,0,0,358,0,0,0,0,0,0,0,330,2.6,10,10,9.7,1280,9,999999999,220,0.2660,0,88,999.000,999.0,99.0 +1980,9,14,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,11.1,90,101200,0,0,358,0,0,0,0,0,0,0,340,2.6,10,10,12.9,2130,9,999999999,220,0.2660,0,88,999.000,999.0,99.0 +1980,9,14,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,11.1,90,101200,0,0,358,0,0,0,0,0,0,0,330,2.1,10,10,11.3,1830,9,999999999,209,0.2660,0,88,999.000,999.0,99.0 +1980,9,14,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,11.1,93,101200,0,0,355,0,0,0,0,0,0,0,310,1.5,10,10,6.4,1830,9,999999999,209,0.2660,0,88,999.000,999.0,99.0 +1980,9,14,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,11.1,93,101300,0,0,355,0,0,0,0,0,0,0,0,0.0,10,10,8.0,1830,9,999999999,209,0.2660,0,88,999.000,999.0,99.0 +1980,9,14,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,11.1,93,101300,3,236,355,3,0,3,0,0,0,0,0,0.0,10,10,11.3,1680,9,999999999,209,0.2660,0,88,999.000,999.0,99.0 +1980,9,14,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,11.1,93,101400,156,1351,345,22,1,22,2600,0,2600,830,10,3.6,9,9,11.3,1340,9,999999999,209,0.2660,0,88,999.000,999.0,99.0 +1980,9,14,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,11.7,87,101400,393,1351,334,169,99,140,18500,9000,15800,3470,10,2.6,5,5,16.1,77777,9,999999999,209,0.2660,0,88,999.000,999.0,99.0 +1980,9,14,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,12.2,87,101400,608,1351,344,217,88,177,23800,8600,19900,5180,300,2.1,7,7,32.2,1220,9,999999999,209,0.2660,0,88,999.000,999.0,99.0 +1980,9,14,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,12.8,84,101500,786,1351,350,261,52,231,28800,5200,25700,7490,290,1.5,7,7,32.2,1340,9,999999999,209,0.2660,0,88,999.000,999.0,99.0 +1980,9,14,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,12.8,70,101500,913,1351,336,603,618,183,63100,62300,20900,4820,300,1.5,0,0,32.2,77777,9,999999999,209,0.2660,0,88,999.000,999.0,99.0 +1980,9,14,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,13.9,66,101400,983,1351,348,698,834,87,72400,83300,11600,2430,240,2.1,0,0,32.2,77777,9,999999999,209,0.2660,0,88,999.000,999.0,99.0 +1980,9,14,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,13.9,66,101400,989,1351,360,713,831,101,73600,82900,12800,2620,240,2.1,2,2,32.2,77777,9,999999999,209,0.2660,0,88,999.000,999.0,99.0 +1980,9,14,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,12.8,52,101500,931,1351,378,709,817,142,73200,81500,16900,3510,320,3.6,4,4,32.2,77777,9,999999999,209,0.2660,0,88,999.000,999.0,99.0 +1980,9,14,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,11.7,45,101500,813,1351,380,626,770,159,65200,77000,18700,3730,320,4.1,3,3,32.2,77777,9,999999999,209,0.2660,0,88,999.000,999.0,99.0 +1980,9,14,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,12.2,47,101400,644,1351,380,434,709,93,45800,69900,12400,1990,310,2.6,3,3,48.3,77777,9,999999999,209,0.2660,0,88,999.000,999.0,99.0 +1980,9,14,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,10.6,43,101500,434,1351,367,250,611,51,26000,55800,8000,1070,320,2.6,1,1,48.3,77777,9,999999999,209,0.2660,0,88,999.000,999.0,99.0 +1980,9,14,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,12.2,53,101500,200,1351,361,89,391,30,9100,26700,5200,560,300,3.6,1,1,64.4,77777,9,999999999,200,0.2660,0,88,999.000,999.0,99.0 +1980,9,14,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,13.3,66,101500,14,484,345,2,36,0,0,0,0,0,310,2.6,1,0,24.1,77777,9,999999999,200,0.2660,0,88,999.000,999.0,99.0 +1980,9,14,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,12.8,73,101500,0,0,334,0,0,0,0,0,0,0,50,2.6,0,0,24.1,77777,9,999999999,189,0.2660,0,88,999.000,999.0,99.0 +1980,9,14,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,13.3,78,101600,0,0,332,0,0,0,0,0,0,0,130,2.6,0,0,24.1,77777,9,999999999,189,0.2660,0,88,999.000,999.0,99.0 +1980,9,14,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,12.2,81,101700,0,0,323,0,0,0,0,0,0,0,250,2.6,0,0,24.1,77777,9,999999999,189,0.2660,0,88,999.000,999.0,99.0 +1980,9,14,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,12.2,84,101700,0,0,321,0,0,0,0,0,0,0,230,1.5,3,0,24.1,77777,9,999999999,179,0.2660,0,88,999.000,999.0,99.0 +1980,9,14,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,12.2,93,101700,0,0,313,0,0,0,0,0,0,0,180,1.5,2,0,24.1,77777,9,999999999,179,0.2660,0,88,999.000,999.0,99.0 +1980,9,15,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,11.1,96,101700,0,0,305,0,0,0,0,0,0,0,270,2.1,2,0,24.1,77777,9,999999999,170,0.0850,0,88,999.000,999.0,99.0 +1980,9,15,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,11.1,96,101700,0,0,305,0,0,0,0,0,0,0,0,0.0,3,0,19.3,77777,9,999999999,170,0.0850,0,88,999.000,999.0,99.0 +1980,9,15,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,10.0,96,101700,0,0,299,0,0,0,0,0,0,0,270,2.1,4,0,16.1,77777,9,999999999,160,0.0850,0,88,999.000,999.0,99.0 +1980,9,15,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,10.0,96,101700,0,0,305,0,0,0,0,0,0,0,260,1.5,5,1,16.1,77777,9,999999999,160,0.0850,0,88,999.000,999.0,99.0 +1980,9,15,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,10.0,100,101700,0,0,303,0,0,0,0,0,0,0,240,1.5,2,1,12.9,77777,9,999999999,160,0.0850,0,88,999.000,999.0,99.0 +1980,9,15,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,8.9,96,101700,3,214,299,4,5,3,0,0,0,0,230,1.5,8,1,19.3,77777,9,999999999,160,0.0850,0,88,999.000,999.0,99.0 +1980,9,15,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,10.0,93,101800,152,1352,307,57,101,46,6000,5200,5400,880,0,0.0,8,1,24.1,77777,9,999999999,160,0.1460,0,88,999.000,999.0,99.0 +1980,9,15,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,11.7,90,101800,388,1352,319,230,598,56,23900,52600,8800,1080,260,2.1,2,1,11.3,77777,9,999999999,160,0.0850,0,88,999.000,999.0,99.0 +1980,9,15,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,11.1,78,101800,603,1352,330,350,458,145,37000,45000,16900,2920,270,2.1,7,2,9.7,77777,9,999999999,160,0.0850,0,88,999.000,999.0,99.0 +1980,9,15,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,10.6,67,101800,781,1352,327,534,757,95,56300,75400,12700,2200,250,2.6,1,0,11.3,77777,9,999999999,150,0.0850,0,88,999.000,999.0,99.0 +1980,9,15,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,11.7,59,101700,908,1352,350,625,624,203,64800,62500,22700,5210,240,2.1,6,1,12.9,77777,9,999999999,150,0.0850,0,88,999.000,999.0,99.0 +1980,9,15,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,12.2,53,101600,977,1352,361,711,797,130,74500,80200,16400,3610,320,2.6,5,1,16.1,77777,9,999999999,150,0.0850,0,88,999.000,999.0,99.0 +1980,9,15,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,13.3,52,101600,983,1352,370,711,849,90,73700,84800,11900,2470,280,2.6,3,1,24.1,77777,9,999999999,150,0.0850,0,88,999.000,999.0,99.0 +1980,9,15,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,13.3,45,101500,925,1352,374,668,872,68,69800,87000,10200,1970,280,3.6,1,0,32.2,77777,9,999999999,150,0.0850,0,88,999.000,999.0,99.0 +1980,9,15,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,9.4,33,101500,807,1352,382,560,788,86,59800,79100,12400,2120,290,4.6,6,1,80.5,77777,9,999999999,150,0.0850,0,88,999.000,999.0,99.0 +1980,9,15,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,6.1,25,101400,637,1352,381,427,757,67,45300,74200,10300,1510,320,4.1,4,1,80.5,77777,9,999999999,150,0.0850,0,88,999.000,999.0,99.0 +1980,9,15,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,10.6,36,101400,427,1352,374,261,666,48,27300,60700,8000,1020,300,4.1,3,0,80.5,77777,9,999999999,150,0.0850,0,88,999.000,999.0,99.0 +1980,9,15,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,12.8,45,101400,192,1352,371,92,424,30,9100,29800,4900,570,310,5.2,0,0,80.5,77777,9,999999999,150,0.0850,0,88,999.000,999.0,99.0 +1980,9,15,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,12.8,53,101400,11,439,358,4,37,0,0,0,0,0,320,2.6,0,0,32.2,77777,9,999999999,160,0.0850,0,88,999.000,999.0,99.0 +1980,9,15,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,13.3,75,101400,0,0,335,0,0,0,0,0,0,0,270,4.1,0,0,24.1,77777,9,999999999,160,0.0850,0,88,999.000,999.0,99.0 +1980,9,15,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,13.3,78,101500,0,0,332,0,0,0,0,0,0,0,260,4.1,0,0,24.1,77777,9,999999999,160,0.0850,0,88,999.000,999.0,99.0 +1980,9,15,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,14.4,84,101500,0,0,333,0,0,0,0,0,0,0,100,2.6,0,0,24.1,77777,9,999999999,160,0.0850,0,88,999.000,999.0,99.0 +1980,9,15,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,12.8,84,101500,0,0,324,0,0,0,0,0,0,0,90,2.6,0,0,24.1,77777,9,999999999,170,0.0850,0,88,999.000,999.0,99.0 +1980,9,15,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,11.7,81,101500,0,0,320,0,0,0,0,0,0,0,120,1.5,0,0,24.1,77777,9,999999999,170,0.0850,0,88,999.000,999.0,99.0 +1980,9,16,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,11.7,84,101500,0,0,317,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,170,0.2640,0,88,999.000,999.0,99.0 +1980,9,16,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,10.6,80,101500,0,0,314,0,0,0,0,0,0,0,0,0.0,0,0,16.1,77777,9,999999999,179,0.2640,0,88,999.000,999.0,99.0 +1980,9,16,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,10.6,86,101500,0,0,309,0,0,0,0,0,0,0,120,1.5,0,0,16.1,77777,9,999999999,179,0.2640,0,88,999.000,999.0,99.0 +1980,9,16,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,10.0,83,101500,0,0,309,0,0,0,0,0,0,0,150,2.1,0,0,19.3,77777,9,999999999,179,0.2640,0,88,999.000,999.0,99.0 +1980,9,16,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,9.4,86,101500,0,0,303,0,0,0,0,0,0,0,0,0.0,0,0,16.1,77777,9,999999999,179,0.2640,0,88,999.000,999.0,99.0 +1980,9,16,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,10.0,93,101500,2,192,301,3,0,3,0,0,0,0,0,0.0,2,0,32.2,77777,9,999999999,170,0.2640,0,88,999.000,999.0,99.0 +1980,9,16,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,10.6,86,101500,147,1353,309,59,248,32,6000,14300,4400,560,130,2.1,2,0,32.2,77777,9,999999999,170,0.2640,0,88,999.000,999.0,99.0 +1980,9,16,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,11.7,78,101600,383,1353,323,201,541,46,20800,47900,7200,950,100,2.1,2,0,64.4,77777,9,999999999,160,0.2640,0,88,999.000,999.0,99.0 +1980,9,16,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,10.0,61,101500,598,1353,331,360,660,66,38000,64100,9600,1450,60,2.6,1,0,64.4,77777,9,999999999,160,0.2640,0,88,999.000,999.0,99.0 +1980,9,16,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,11.1,57,101500,776,1353,342,503,755,67,52500,74500,9700,1680,140,2.6,0,0,64.4,77777,9,999999999,150,0.2640,0,88,999.000,999.0,99.0 +1980,9,16,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,11.7,53,101500,903,1353,358,599,752,94,64400,76100,13500,2550,330,2.1,5,1,64.4,77777,9,999999999,150,0.2640,0,88,999.000,999.0,99.0 +1980,9,16,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,12.8,52,101400,972,1353,367,665,787,96,68800,78500,12200,2490,320,2.6,5,1,64.4,77777,9,999999999,150,0.2640,0,88,999.000,999.0,99.0 +1980,9,16,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,11.7,42,101400,977,1353,370,687,836,79,71500,83500,10900,2290,260,3.1,3,0,64.4,77777,9,999999999,139,0.2640,0,88,999.000,999.0,99.0 +1980,9,16,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,12.8,42,101300,919,1353,377,648,858,61,67900,85600,9600,1830,330,1.5,2,0,64.4,77777,9,999999999,139,0.2640,0,88,999.000,999.0,99.0 +1980,9,16,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,11.7,37,101200,800,1353,381,544,815,58,57000,80700,9200,1590,340,2.6,2,0,64.4,77777,9,999999999,129,0.2640,0,88,999.000,999.0,99.0 +1980,9,16,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,11.1,33,101200,630,1353,386,398,717,61,42600,70400,9700,1410,130,1.5,0,0,64.4,77777,9,999999999,129,0.2640,0,88,999.000,999.0,99.0 +1980,9,16,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,10.6,32,101100,419,1353,385,228,568,50,23700,51400,7700,1040,290,2.1,0,0,56.3,77777,9,999999999,129,0.2640,0,88,999.000,999.0,99.0 +1980,9,16,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,11.7,37,101100,185,1353,381,74,280,35,7500,18200,5000,630,30,1.5,0,0,48.3,77777,9,999999999,139,0.2640,0,88,999.000,999.0,99.0 +1980,9,16,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,13.9,55,101100,9,395,361,4,11,3,0,0,0,0,300,2.1,0,0,24.1,77777,9,999999999,139,0.2640,0,88,999.000,999.0,99.0 +1980,9,16,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,12.8,53,101200,0,0,358,0,0,0,0,0,0,0,300,3.6,0,0,24.1,77777,9,999999999,139,0.2640,0,88,999.000,999.0,99.0 +1980,9,16,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,12.8,66,101200,0,0,341,0,0,0,0,0,0,0,260,3.1,0,0,24.1,77777,9,999999999,150,0.2640,0,88,999.000,999.0,99.0 +1980,9,16,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,12.8,73,101200,0,0,334,0,0,0,0,0,0,0,280,2.6,0,0,24.1,77777,9,999999999,150,0.2640,0,88,999.000,999.0,99.0 +1980,9,16,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,12.8,84,101300,0,0,324,0,0,0,0,0,0,0,260,2.1,0,0,24.1,77777,9,999999999,150,0.2640,0,88,999.000,999.0,99.0 +1980,9,16,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,12.8,78,101300,0,0,329,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,160,0.2640,0,88,999.000,999.0,99.0 +1980,9,17,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,12.8,81,101300,0,0,326,0,0,0,0,0,0,0,0,0.0,0,0,16.1,77777,9,999999999,160,0.2610,0,88,999.000,999.0,99.0 +1980,9,17,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,12.8,90,101300,0,0,319,0,0,0,0,0,0,0,140,2.6,0,0,16.1,77777,9,999999999,160,0.2610,0,88,999.000,999.0,99.0 +1980,9,17,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,12.8,96,101300,0,0,314,0,0,0,0,0,0,0,100,3.1,0,0,16.1,77777,9,999999999,170,0.2610,0,88,999.000,999.0,99.0 +1980,9,17,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,11.7,90,101300,0,0,313,0,0,0,0,0,0,0,120,2.1,0,0,24.1,77777,9,999999999,170,0.2610,0,88,999.000,999.0,99.0 +1980,9,17,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,10.6,83,101300,0,0,312,0,0,0,0,0,0,0,160,1.5,0,0,16.1,77777,9,999999999,170,0.2610,0,88,999.000,999.0,99.0 +1980,9,17,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,10.6,93,101400,1,147,310,3,0,3,0,0,0,0,300,1.5,1,1,6.4,77777,9,999999999,160,0.2610,0,88,999.000,999.0,99.0 +1980,9,17,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,11.1,90,101400,142,1354,320,49,83,40,5300,4700,4800,840,310,3.1,2,2,6.4,77777,9,999999999,160,0.2610,0,88,999.000,999.0,99.0 +1980,9,17,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,11.7,87,101400,378,1354,337,198,382,90,20600,32900,11400,1670,340,2.6,7,6,8.0,370,9,999999999,160,0.2610,0,88,999.000,999.0,99.0 +1980,9,17,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,11.7,81,101400,593,1354,339,371,498,151,38800,48700,17400,3040,280,1.5,6,5,9.7,370,9,999999999,160,0.2610,0,88,999.000,999.0,99.0 +1980,9,17,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,11.7,70,101400,771,1354,347,414,474,142,45200,48500,17500,3140,340,2.6,4,4,11.3,77777,9,999999999,150,0.2610,0,88,999.000,999.0,99.0 +1980,9,17,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,11.7,63,101300,898,1354,338,623,794,93,64500,78900,12000,2190,10,2.6,0,0,12.9,77777,9,999999999,150,0.2610,0,88,999.000,999.0,99.0 +1980,9,17,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,11.7,55,101300,966,1354,348,679,814,94,70300,81200,12100,2450,270,2.6,0,0,12.9,77777,9,999999999,150,0.2610,0,88,999.000,999.0,99.0 +1980,9,17,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,11.7,51,101200,971,1354,353,688,831,88,71400,83000,11700,2400,340,2.6,0,0,12.9,77777,9,999999999,150,0.2610,0,88,999.000,999.0,99.0 +1980,9,17,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,12.2,50,101100,912,1354,359,643,832,78,66900,82900,10800,2080,300,2.6,0,0,12.9,77777,9,999999999,150,0.2610,0,88,999.000,999.0,99.0 +1980,9,17,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,11.7,45,101100,793,1354,364,543,797,72,56500,78700,10300,1760,340,2.6,0,0,16.1,77777,9,999999999,139,0.2610,0,88,999.000,999.0,99.0 +1980,9,17,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,11.7,43,101000,623,1354,367,399,697,75,41700,67800,10400,1610,280,4.1,0,0,16.1,77777,9,999999999,139,0.2610,0,88,999.000,999.0,99.0 +1980,9,17,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,13.3,52,101000,412,1354,363,231,558,59,24100,50000,8900,1150,300,5.2,0,0,16.1,77777,9,999999999,150,0.2610,0,88,999.000,999.0,99.0 +1980,9,17,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,13.9,61,100900,177,1354,353,72,273,35,7200,17300,4900,620,290,3.6,0,0,16.1,77777,9,999999999,160,0.2610,0,88,999.000,999.0,99.0 +1980,9,17,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,13.3,63,100900,7,350,348,3,11,2,0,0,0,0,310,3.6,0,0,16.1,77777,9,999999999,170,0.2610,0,88,999.000,999.0,99.0 +1980,9,17,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,12.8,70,101000,0,0,347,0,0,0,0,0,0,0,300,4.1,2,2,24.1,77777,9,999999999,179,0.2610,0,88,999.000,999.0,99.0 +1980,9,17,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,12.8,75,101000,0,0,354,0,0,0,0,0,0,0,330,4.1,6,6,24.1,3050,9,999999999,189,0.2610,0,88,999.000,999.0,99.0 +1980,9,17,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,12.8,81,101000,0,0,353,0,0,0,0,0,0,0,290,3.6,7,7,24.1,7620,9,999999999,200,0.2610,0,88,999.000,999.0,99.0 +1980,9,17,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,12.8,84,101000,0,0,350,0,0,0,0,0,0,0,340,3.1,7,7,24.1,7620,9,999999999,220,0.2610,0,88,999.000,999.0,99.0 +1980,9,17,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,12.8,84,101000,0,0,374,0,0,0,0,0,0,0,310,4.6,10,10,24.1,3050,9,999999999,229,0.2610,0,88,999.000,999.0,99.0 +1980,9,18,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,12.8,84,101000,0,0,374,0,0,0,0,0,0,0,330,4.6,10,10,24.1,3050,9,999999999,240,0.1110,0,88,999.000,999.0,99.0 +1980,9,18,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,12.2,84,101000,0,0,370,0,0,0,0,0,0,0,150,1.5,10,10,24.1,550,9,999999999,250,0.1110,0,88,999.000,999.0,99.0 +1980,9,18,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,12.8,84,101100,0,0,374,0,0,0,0,0,0,0,0,0.0,10,10,16.1,760,9,999999999,259,0.1110,0,88,999.000,999.0,99.0 +1980,9,18,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,12.8,84,101100,0,0,374,0,0,0,0,0,0,0,200,2.1,10,10,24.1,1370,9,999999999,270,0.1110,0,88,999.000,999.0,99.0 +1980,9,18,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,12.2,87,101100,0,0,367,0,0,0,0,0,0,0,200,5.7,10,10,24.1,580,9,999999999,270,0.1110,0,88,999.000,999.0,99.0 +1980,9,18,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,12.8,93,101100,1,124,365,0,0,0,0,0,0,0,160,4.6,10,10,11.3,550,9,999999999,270,0.1110,0,88,999.000,999.0,99.0 +1980,9,18,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,12.8,93,101100,137,1354,365,5,0,5,600,0,600,210,150,3.6,10,10,8.0,550,9,999999999,279,0.1110,0,88,999.000,999.0,99.0 +1980,9,18,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,12.8,93,101100,373,1354,365,27,0,27,3400,0,3400,1200,220,4.1,10,10,16.1,400,9,999999999,279,0.1110,0,88,999.000,999.0,99.0 +1980,9,18,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,12.2,90,101200,589,1354,364,32,0,32,4100,0,4100,1570,180,1.5,10,10,12.9,460,9,999999999,279,0.1110,0,88,999.000,999.0,99.0 +1980,9,18,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,12.8,90,101200,766,1354,368,86,1,85,10600,100,10500,4200,180,5.2,10,10,12.9,460,9,999999999,279,0.1110,0,88,999.000,999.0,99.0 +1980,9,18,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,12.8,87,101300,893,1354,371,103,0,103,12800,0,12800,5260,170,4.6,10,10,11.3,430,9,999999999,279,0.1110,0,88,999.000,999.0,99.0 +1980,9,18,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,13.3,93,101300,961,1354,368,68,0,68,8800,0,8800,3660,170,3.6,10,10,3.2,400,9,999999999,279,0.1110,0,88,999.000,999.0,99.0 +1980,9,18,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,13.3,90,101300,965,1354,371,69,0,69,8900,0,8900,3720,190,3.1,10,10,4.8,400,9,999999999,279,0.1110,0,88,999.000,999.0,99.0 +1980,9,18,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,13.9,93,101300,906,1354,372,54,0,54,7000,0,7000,2900,190,4.6,10,10,4.8,430,9,999999999,290,0.1110,0,88,999.000,999.0,99.0 +1980,9,18,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,13.9,90,101300,786,1354,375,56,0,56,7100,0,7100,2890,210,4.1,10,10,6.4,400,9,999999999,290,0.1110,0,88,999.000,999.0,99.0 +1980,9,18,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,13.9,90,101300,615,1354,375,74,1,74,9000,100,9000,3440,190,5.7,10,10,11.3,430,9,999999999,290,0.1110,0,88,999.000,999.0,99.0 +1980,9,18,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,13.3,87,101300,404,1354,374,50,0,50,6000,0,6000,2130,200,5.2,10,10,11.3,1010,9,999999999,279,0.1110,0,88,999.000,999.0,99.0 +1980,9,18,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,13.3,90,101400,169,1354,371,16,0,16,1900,0,1900,640,190,5.2,10,10,24.1,910,9,999999999,279,0.1110,0,88,999.000,999.0,99.0 +1980,9,18,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,12.8,87,101400,5,305,371,2,0,2,0,0,0,0,190,5.7,10,10,16.1,610,9,999999999,270,0.1110,0,88,999.000,999.0,99.0 +1980,9,18,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,12.8,90,101500,0,0,368,0,0,0,0,0,0,0,200,4.6,10,10,16.1,910,9,999999999,270,0.1110,0,88,999.000,999.0,99.0 +1980,9,18,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,12.8,90,101500,0,0,368,0,0,0,0,0,0,0,210,4.6,10,10,8.0,910,9,999999999,259,0.1110,0,88,999.000,999.0,99.0 +1980,9,18,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,13.3,93,101500,0,0,368,0,0,0,0,0,0,0,200,4.1,10,10,8.0,910,9,999999999,250,0.1110,0,88,999.000,999.0,99.0 +1980,9,18,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,13.3,93,101600,0,0,368,0,0,0,0,0,0,0,200,2.1,10,10,16.1,1040,9,999999999,250,0.1110,0,88,999.000,999.0,99.0 +1980,9,18,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,13.3,93,101600,0,0,368,0,0,0,0,0,0,0,200,2.6,10,10,6.4,1010,9,999999999,240,0.1110,0,88,999.000,999.0,99.0 +1980,9,19,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,13.3,93,101600,0,0,368,0,0,0,0,0,0,0,180,3.6,10,10,24.1,1100,9,999999999,240,0.1100,0,88,999.000,999.0,99.0 +1980,9,19,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,13.3,93,101500,0,0,368,0,0,0,0,0,0,0,190,4.1,10,10,24.1,1280,9,999999999,229,0.1100,0,88,999.000,999.0,99.0 +1980,9,19,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,13.3,93,101500,0,0,351,0,0,0,0,0,0,0,190,2.6,8,8,24.1,1340,9,999999999,229,0.1100,0,88,999.000,999.0,99.0 +1980,9,19,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,13.3,93,101500,0,0,368,0,0,0,0,0,0,0,180,3.1,10,10,24.1,1520,9,999999999,220,0.1100,0,88,999.000,999.0,99.0 +1980,9,19,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,13.3,93,101500,0,0,368,0,0,0,0,0,0,0,180,2.6,10,10,24.1,1520,9,999999999,229,0.1100,0,88,999.000,999.0,99.0 +1980,9,19,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,13.3,93,101500,1,102,368,0,0,0,0,0,0,0,170,2.6,10,10,32.2,1520,9,999999999,229,0.0750,0,88,999.000,999.0,99.0 +1980,9,19,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,13.3,90,101500,132,1355,371,13,0,13,1600,0,1600,510,170,3.1,10,10,32.2,370,9,999999999,240,0.1100,0,88,999.000,999.0,99.0 +1980,9,19,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,13.3,87,101500,369,1355,374,34,0,34,4100,0,4100,1480,210,4.1,10,10,40.2,1280,9,999999999,240,0.1100,0,88,999.000,999.0,99.0 +1980,9,19,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,13.9,90,101500,584,1355,375,52,0,52,6400,0,6400,2460,190,4.6,10,10,32.2,490,9,999999999,250,0.1100,0,88,999.000,999.0,99.0 +1980,9,19,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,13.3,87,101500,761,1355,374,75,1,74,9300,100,9300,3700,230,3.1,10,10,32.2,700,9,999999999,250,0.1100,0,88,999.000,999.0,99.0 +1980,9,19,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,13.3,78,101500,887,1355,383,164,1,163,19600,100,19600,7800,200,4.6,10,10,24.1,1830,9,999999999,259,0.1100,0,88,999.000,999.0,99.0 +1980,9,19,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,13.3,78,101500,955,1355,383,98,0,98,12300,0,12300,5130,190,5.7,10,10,24.1,1520,9,999999999,270,0.1100,0,88,999.000,999.0,99.0 +1980,9,19,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,11.7,68,101400,959,1355,384,117,1,116,14500,100,14500,5980,230,4.1,10,10,32.2,1680,9,999999999,270,0.1100,0,88,999.000,999.0,99.0 +1980,9,19,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,11.7,68,101400,899,1355,384,102,0,102,12700,0,12700,5220,220,9.8,10,10,32.2,1680,9,999999999,279,0.1100,0,88,999.000,999.0,99.0 +1980,9,19,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,11.1,65,101300,780,1355,383,78,0,78,9700,0,9700,3910,200,8.8,10,10,32.2,1680,9,999999999,279,0.1100,0,88,999.000,999.0,99.0 +1980,9,19,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,11.7,70,101300,608,1355,381,40,0,40,5100,0,5100,1950,200,8.8,10,10,24.1,1680,9,999999999,290,0.1100,0,88,999.000,999.0,99.0 +1980,9,19,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,12.2,78,101300,397,1355,376,13,0,13,1700,0,1700,610,200,5.7,10,10,11.3,1220,9,999999999,279,0.1100,0,88,999.000,999.0,99.0 +1980,9,19,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,12.8,84,101300,161,1355,374,3,0,3,400,0,400,130,200,4.6,10,10,8.0,700,9,999999999,279,0.1100,0,88,999.000,999.0,99.0 +1980,9,19,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,12.8,93,101300,4,260,365,0,0,0,0,0,0,0,200,3.1,10,10,6.4,670,9,999999999,270,0.1100,0,88,999.000,999.0,99.0 +1980,9,19,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,13.3,93,101300,0,0,368,0,0,0,0,0,0,0,200,5.2,10,10,12.9,850,9,999999999,259,0.1100,0,88,999.000,999.0,99.0 +1980,9,19,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,12.8,93,101300,0,0,365,0,0,0,0,0,0,0,190,5.2,10,10,11.3,880,9,999999999,250,0.1100,0,88,999.000,999.0,99.0 +1980,9,19,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,12.8,93,101300,0,0,365,0,0,0,0,0,0,0,200,7.2,10,10,11.3,1340,9,999999999,250,0.1100,0,88,999.000,999.0,99.0 +1980,9,19,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,12.8,93,101300,0,0,365,0,0,0,0,0,0,0,220,5.7,10,10,11.3,1010,9,999999999,240,0.1100,0,88,999.000,999.0,99.0 +1980,9,19,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,11.7,93,101300,0,0,358,0,0,0,0,0,0,0,230,3.1,10,10,11.3,1220,9,999999999,229,0.1100,0,88,999.000,999.0,99.0 +1980,9,20,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,11.7,93,101300,0,0,358,0,0,0,0,0,0,0,90,2.1,10,10,16.1,1520,9,999999999,220,0.1100,0,88,999.000,999.0,99.0 +1980,9,20,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,12.2,96,101300,0,0,336,0,0,0,0,0,0,0,90,2.6,7,7,16.1,1520,9,999999999,220,0.1100,0,88,999.000,999.0,99.0 +1980,9,20,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,11.1,93,101400,0,0,326,0,0,0,0,0,0,0,190,3.1,5,5,24.1,77777,9,999999999,209,0.1100,0,88,999.000,999.0,99.0 +1980,9,20,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,11.1,93,101300,0,0,338,0,0,0,0,0,0,0,150,1.5,8,8,24.1,1520,9,999999999,200,0.1100,0,88,999.000,999.0,99.0 +1980,9,20,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,11.1,93,101400,0,0,328,0,0,0,0,0,0,0,160,3.1,6,6,24.1,1520,9,999999999,200,0.1100,0,88,999.000,999.0,99.0 +1980,9,20,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,11.1,93,101400,0,79,345,0,0,0,0,0,0,0,190,2.1,10,9,32.2,1680,9,999999999,200,0.1280,0,88,999.000,999.0,99.0 +1980,9,20,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,11.7,93,101400,127,1356,348,21,1,21,2400,0,2400,760,190,2.6,9,9,32.2,1680,9,999999999,200,0.1100,0,88,999.000,999.0,99.0 +1980,9,20,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,12.2,90,101400,364,1356,354,54,9,53,6500,400,6400,2170,200,5.2,9,9,32.2,1490,9,999999999,200,0.1100,0,88,999.000,999.0,99.0 +1980,9,20,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,12.2,90,101400,579,1356,354,143,1,150,17200,100,17100,5950,200,5.2,9,9,32.2,1680,9,999999999,200,0.1100,0,88,999.000,999.0,99.0 +1980,9,20,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,12.2,81,101500,756,1356,363,241,20,229,27400,1700,26400,9290,210,5.2,10,9,32.2,1680,9,999999999,200,0.1100,0,88,999.000,999.0,99.0 +1980,9,20,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,12.2,84,101500,882,1356,360,203,1,217,25500,100,25400,9760,230,5.2,10,9,32.2,1520,9,999999999,189,0.1100,0,88,999.000,999.0,99.0 +1980,9,20,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,12.2,73,101500,950,1356,371,280,16,265,32200,1400,31200,11740,240,6.2,10,9,32.2,1520,9,999999999,189,0.1100,0,88,999.000,999.0,99.0 +1980,9,20,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,12.8,87,101500,953,1356,353,217,90,154,24900,9700,18100,4680,360,7.2,9,8,32.2,1040,9,999999999,189,0.1100,0,88,999.000,999.0,99.0 +1980,9,20,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,13.3,84,101500,893,1356,359,214,45,184,23600,4500,20700,6730,340,6.2,9,8,32.2,1490,9,999999999,189,0.1100,0,88,999.000,999.0,99.0 +1980,9,20,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,11.1,68,101500,773,1356,362,388,181,282,41800,18800,31000,7420,300,3.1,8,8,32.2,1680,9,999999999,189,0.1100,0,88,999.000,999.0,99.0 +1980,9,20,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,11.7,70,101500,601,1356,363,295,363,136,31600,35600,15800,2720,240,1.5,8,8,32.2,1490,9,999999999,189,0.1100,0,88,999.000,999.0,99.0 +1980,9,20,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,12.2,75,101600,389,1356,361,89,5,86,10000,300,9900,3270,240,2.6,8,8,32.2,1680,9,999999999,189,0.1100,0,88,999.000,999.0,99.0 +1980,9,20,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,10.6,70,101600,154,1356,350,44,51,38,4800,3000,4400,800,340,4.6,7,7,32.2,1830,9,999999999,189,0.1100,0,88,999.000,999.0,99.0 +1980,9,20,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,10.0,72,101700,3,215,337,0,0,1,0,0,0,0,290,5.2,5,5,24.1,77777,9,999999999,189,0.1100,0,88,999.000,999.0,99.0 +1980,9,20,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,8.9,70,101700,0,0,331,0,0,0,0,0,0,0,320,4.1,4,4,24.1,77777,9,999999999,179,0.1100,0,88,999.000,999.0,99.0 +1980,9,20,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,8.9,72,101800,0,0,328,0,0,0,0,0,0,0,310,2.6,4,4,24.1,77777,9,999999999,179,0.1100,0,88,999.000,999.0,99.0 +1980,9,20,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,9.4,75,101800,0,0,361,0,0,0,0,0,0,0,320,3.6,10,10,24.1,1160,9,999999999,179,0.1100,0,88,999.000,999.0,99.0 +1980,9,20,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,10.6,86,101900,0,0,357,0,0,0,0,0,0,0,180,1.5,10,10,24.1,1220,9,999999999,179,0.1100,0,88,999.000,999.0,99.0 +1980,9,20,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,10.6,86,101900,0,0,340,0,0,0,0,0,0,0,270,1.5,8,8,24.1,2440,9,999999999,179,0.1100,0,88,999.000,999.0,99.0 +1980,9,21,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,9.4,83,101900,0,0,327,0,0,0,0,0,0,0,300,2.1,6,6,24.1,1520,9,999999999,179,0.1090,0,88,999.000,999.0,99.0 +1980,9,21,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,10.0,93,102000,0,0,338,0,0,0,0,0,0,0,200,4.1,9,9,24.1,1520,9,999999999,170,0.1090,0,88,999.000,999.0,99.0 +1980,9,21,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,10.0,93,102000,0,0,338,0,0,0,0,0,0,0,170,3.6,9,9,24.1,2130,9,999999999,170,0.1090,0,88,999.000,999.0,99.0 +1980,9,21,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,10.0,96,102000,0,0,345,0,0,0,0,0,0,0,200,3.6,10,10,24.1,1980,9,999999999,170,0.1090,0,88,999.000,999.0,99.0 +1980,9,21,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,10.0,93,102100,0,0,348,0,0,0,0,0,0,0,130,3.1,10,10,24.1,1680,9,999999999,170,0.1090,0,88,999.000,999.0,99.0 +1980,9,21,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,10.0,93,102100,0,34,348,0,0,0,0,0,0,0,170,3.6,10,10,24.1,1830,9,999999999,170,0.1090,0,88,999.000,999.0,99.0 +1980,9,21,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,10.6,93,102200,123,1357,342,23,12,22,2500,700,2500,550,180,1.5,9,9,24.1,1830,9,999999999,170,0.1090,0,88,999.000,999.0,99.0 +1980,9,21,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,10.6,90,102200,359,1357,337,88,21,83,9700,1800,9200,2230,170,3.1,8,8,32.2,1980,9,999999999,170,0.1090,0,88,999.000,999.0,99.0 +1980,9,21,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,10.6,80,102200,574,1357,336,248,218,154,26400,21900,17200,3230,160,2.6,6,6,48.3,1980,9,999999999,170,0.0740,0,88,999.000,999.0,99.0 +1980,9,21,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,10.6,75,102300,750,1357,335,474,527,182,50400,53600,20700,4040,60,3.1,4,4,48.3,77777,9,999999999,160,0.1090,0,88,999.000,999.0,99.0 +1980,9,21,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,9.4,67,102300,877,1357,337,558,560,196,60300,57900,22800,4920,50,3.1,4,4,48.3,77777,9,999999999,160,0.1090,0,88,999.000,999.0,99.0 +1980,9,21,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,8.9,60,102300,944,1357,347,456,132,360,49100,13900,39400,10850,290,3.6,8,6,48.3,1830,9,999999999,160,0.1090,0,88,999.000,999.0,99.0 +1980,9,21,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,10.0,61,102300,947,1357,348,592,456,276,62700,47200,29700,7800,50,4.1,4,4,48.3,77777,9,999999999,160,0.1090,0,88,999.000,999.0,99.0 +1980,9,21,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,8.9,58,102200,886,1357,367,337,122,256,37100,12900,28600,7320,40,3.1,9,9,48.3,1830,9,999999999,160,0.0740,0,88,999.000,999.0,99.0 +1980,9,21,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,8.9,56,102300,766,1357,370,201,1,214,24700,100,24600,8940,10,3.1,9,9,48.3,1830,9,999999999,160,0.1090,0,88,999.000,999.0,99.0 +1980,9,21,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,8.3,54,102200,594,1357,361,216,136,157,23800,13700,17800,3760,360,2.1,8,8,48.3,1980,9,999999999,160,0.1090,0,88,999.000,999.0,99.0 +1980,9,21,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,8.3,54,102200,382,1357,346,162,157,119,17700,14000,13700,2640,330,3.1,4,4,48.3,77777,9,999999999,160,0.1090,0,88,999.000,999.0,99.0 +1980,9,21,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,8.9,60,102300,146,1357,331,40,128,31,4700,6900,4000,550,10,2.6,1,1,48.3,77777,9,999999999,160,0.1090,0,88,999.000,999.0,99.0 +1980,9,21,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,9.4,70,102300,2,170,328,0,1,0,0,0,0,0,0,0.0,2,2,24.1,77777,9,999999999,170,0.1090,0,88,999.000,999.0,99.0 +1980,9,21,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,9.4,80,102300,0,0,308,0,0,0,0,0,0,0,190,2.1,0,0,24.1,77777,9,999999999,170,0.1090,0,88,999.000,999.0,99.0 +1980,9,21,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,9.4,83,102400,0,0,306,0,0,0,0,0,0,0,300,2.1,0,0,24.1,77777,9,999999999,170,0.1090,0,88,999.000,999.0,99.0 +1980,9,21,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,9.4,80,102400,0,0,308,0,0,0,0,0,0,0,150,2.1,0,0,24.1,77777,9,999999999,179,0.1090,0,88,999.000,999.0,99.0 +1980,9,21,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,8.9,90,102400,0,0,298,0,0,0,0,0,0,0,140,2.1,0,0,24.1,77777,9,999999999,179,0.1090,0,88,999.000,999.0,99.0 +1980,9,21,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,8.9,93,102400,0,0,296,0,0,0,0,0,0,0,340,2.6,0,0,24.1,77777,9,999999999,179,0.1090,0,88,999.000,999.0,99.0 +1980,9,22,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,8.3,93,102400,0,0,293,0,0,0,0,0,0,0,160,3.1,0,0,24.1,77777,9,999999999,179,0.1080,0,88,999.000,999.0,99.0 +1980,9,22,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,7.8,96,102400,0,0,293,0,0,0,0,0,0,0,160,3.1,1,1,24.1,77777,9,999999999,189,0.1080,0,88,999.000,999.0,99.0 +1980,9,22,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,7.8,100,102400,0,0,298,0,0,0,0,0,0,0,160,3.6,3,3,24.1,77777,9,999999999,189,0.1080,0,88,999.000,999.0,99.0 +1980,9,22,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,7.2,96,102400,0,0,294,0,0,0,0,0,0,0,250,3.1,3,2,24.1,77777,9,999999999,189,0.1080,0,88,999.000,999.0,99.0 +1980,9,22,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,6.7,96,102400,0,0,326,0,0,0,0,0,0,0,180,3.1,10,10,16.1,120,9,999999999,200,0.1080,0,88,999.000,999.0,99.0 +1980,9,22,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,7.8,100,102500,0,11,330,0,0,0,0,0,0,0,180,3.1,10,10,16.1,180,9,999999999,200,0.1080,0,88,999.000,999.0,99.0 +1980,9,22,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,8.3,93,102500,118,1357,338,33,17,31,3600,1100,3500,730,150,3.1,10,10,6.4,180,9,999999999,200,0.1080,0,88,999.000,999.0,99.0 +1980,9,22,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,8.9,96,102500,354,1357,338,115,116,85,12700,10100,10000,1870,60,1.5,10,10,4.0,120,9,999999999,209,0.0770,0,88,999.000,999.0,99.0 +1980,9,22,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,9.4,93,102500,569,1357,345,134,9,130,15400,600,15100,5310,120,1.5,10,10,4.0,180,9,999999999,220,0.0770,0,88,999.000,999.0,99.0 +1980,9,22,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,9.4,90,102500,745,1357,338,392,231,265,42500,23900,29400,6850,0,0.0,9,9,4.8,270,9,999999999,220,0.1080,0,88,999.000,999.0,99.0 +1980,9,22,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,10.0,72,102500,871,1357,340,525,483,213,56000,49800,23900,5350,280,2.6,7,6,11.3,5490,9,999999999,229,0.1080,0,88,999.000,999.0,99.0 +1980,9,22,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,10.0,65,102500,938,1357,348,689,686,211,71400,68700,23700,5620,320,2.6,6,6,16.1,4880,9,999999999,229,0.1080,0,88,999.000,999.0,99.0 +1980,9,22,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,8.9,54,102400,941,1357,343,678,816,111,72200,82300,15000,3020,290,1.5,2,2,48.3,77777,9,999999999,229,0.1080,0,88,999.000,999.0,99.0 +1980,9,22,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,7.2,44,102300,880,1357,344,603,764,108,64000,76700,14100,2710,310,5.2,1,1,48.3,77777,9,999999999,240,0.1080,0,88,999.000,999.0,99.0 +1980,9,22,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,10.6,49,102300,759,1357,356,491,612,147,51100,60800,17000,3260,320,4.1,1,1,48.3,77777,9,999999999,250,0.1080,0,88,999.000,999.0,99.0 +1980,9,22,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,11.7,55,102200,586,1357,355,365,625,93,38200,60400,12000,1900,360,3.1,1,1,48.3,77777,9,999999999,250,0.0770,0,88,999.000,999.0,99.0 +1980,9,22,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,11.7,57,102200,374,1357,361,163,304,77,17100,26100,9900,1400,360,4.1,3,3,48.3,77777,9,999999999,250,0.1080,0,88,999.000,999.0,99.0 +1980,9,22,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,12.2,61,102200,138,1357,350,58,228,31,5700,11900,4500,550,360,3.1,1,1,48.3,77777,9,999999999,250,0.1080,0,88,999.000,999.0,99.0 +1980,9,22,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,12.2,63,102200,1,124,374,1,1,1,0,0,0,0,350,3.1,8,8,24.1,1340,9,999999999,250,0.1080,0,88,999.000,999.0,99.0 +1980,9,22,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,12.2,68,102200,0,0,387,0,0,0,0,0,0,0,280,2.1,10,10,24.1,1280,9,999999999,250,0.1080,0,88,999.000,999.0,99.0 +1980,9,22,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,12.8,73,102200,0,0,385,0,0,0,0,0,0,0,280,2.1,10,10,16.1,1220,9,999999999,250,0.1080,0,88,999.000,999.0,99.0 +1980,9,22,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,12.8,73,102200,0,0,367,0,0,0,0,0,0,0,320,2.6,8,8,24.1,1220,9,999999999,250,0.1080,0,88,999.000,999.0,99.0 +1980,9,22,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,12.8,78,102200,0,0,361,0,0,0,0,0,0,0,310,3.6,8,8,24.1,1280,9,999999999,240,0.1080,0,88,999.000,999.0,99.0 +1980,9,22,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,13.3,84,102200,0,0,359,0,0,0,0,0,0,0,270,3.1,8,8,24.1,1340,9,999999999,240,0.1080,0,88,999.000,999.0,99.0 +1980,9,23,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,13.3,84,102200,0,0,377,0,0,0,0,0,0,0,340,2.6,10,10,24.1,1340,9,999999999,240,0.1630,0,88,999.000,999.0,99.0 +1980,9,23,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,13.3,90,102200,0,0,371,0,0,0,0,0,0,0,290,4.1,10,10,24.1,1280,9,999999999,240,0.1630,0,88,999.000,999.0,99.0 +1980,9,23,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,13.3,87,102200,0,0,374,0,0,0,0,0,0,0,310,4.1,10,10,24.1,1220,9,999999999,240,0.1630,0,88,999.000,999.0,99.0 +1980,9,23,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,13.3,87,102200,0,0,374,0,0,0,0,0,0,0,330,3.6,10,10,24.1,1160,9,999999999,240,0.1630,0,88,999.000,999.0,99.0 +1980,9,23,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,13.3,87,102200,0,0,374,0,0,0,0,0,0,0,300,3.1,10,10,24.1,1040,9,999999999,229,0.1630,0,88,999.000,999.0,99.0 +1980,9,23,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,13.3,87,102300,0,0,374,0,0,0,0,0,0,0,310,5.2,10,10,24.1,1040,9,999999999,229,0.1630,0,88,999.000,999.0,99.0 +1980,9,23,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,13.3,87,102300,113,1347,374,21,13,20,2300,800,2300,510,310,2.6,10,10,32.2,1100,9,999999999,229,0.1630,0,88,999.000,999.0,99.0 +1980,9,23,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,13.3,84,102300,349,1358,367,141,140,104,15200,12100,12100,2290,300,3.1,9,9,16.1,1100,9,999999999,220,0.1630,0,88,999.000,999.0,99.0 +1980,9,23,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,13.9,84,102300,563,1358,357,198,99,158,21800,9800,17700,3730,300,3.1,9,7,16.1,490,9,999999999,220,0.1630,0,88,999.000,999.0,99.0 +1980,9,23,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,13.9,78,102300,740,1358,387,207,1,207,23800,100,23800,8560,320,2.6,10,10,24.1,670,9,999999999,209,0.1170,0,88,999.000,999.0,99.0 +1980,9,23,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,13.3,66,102300,866,1358,362,404,265,233,43900,28400,25700,5940,310,2.6,5,4,32.2,77777,9,999999999,200,0.1630,0,88,999.000,999.0,99.0 +1980,9,23,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,13.3,63,102300,932,1358,368,564,366,309,60400,39300,33400,8760,320,2.6,5,5,40.2,77777,9,999999999,200,0.1630,0,88,999.000,999.0,99.0 +1980,9,23,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,12.8,57,102200,935,1358,367,673,684,195,69700,68800,22200,5220,350,4.1,3,3,48.3,77777,9,999999999,200,0.1630,0,88,999.000,999.0,99.0 +1980,9,23,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,12.8,57,102200,873,1358,352,620,758,139,66700,76900,17100,3560,310,5.2,0,0,48.3,77777,9,999999999,189,0.1630,0,88,999.000,999.0,99.0 +1980,9,23,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,13.3,57,102200,752,1358,355,520,709,124,54600,70900,15200,2800,310,5.2,0,0,48.3,77777,9,999999999,189,0.1630,0,88,999.000,999.0,99.0 +1980,9,23,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,12.8,55,102100,579,1358,355,379,620,101,38200,59500,12700,2020,320,6.7,0,0,48.3,77777,9,999999999,179,0.1630,0,88,999.000,999.0,99.0 +1980,9,23,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,12.8,59,102100,366,1358,349,213,442,74,19800,37500,9700,1340,350,5.7,1,0,48.3,77777,9,999999999,179,0.1630,0,88,999.000,999.0,99.0 +1980,9,23,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,12.2,65,102100,131,1358,338,50,190,31,5100,9500,4200,550,340,6.7,1,0,48.3,77777,9,999999999,179,0.1170,0,88,999.000,999.0,99.0 +1980,9,23,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,12.2,73,102100,0,79,331,0,0,0,0,0,0,0,300,4.1,1,0,24.1,77777,9,999999999,179,0.1630,0,88,999.000,999.0,99.0 +1980,9,23,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,12.2,78,102100,0,0,326,0,0,0,0,0,0,0,300,4.1,0,0,24.1,77777,9,999999999,179,0.1630,0,88,999.000,999.0,99.0 +1980,9,23,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,11.7,81,102100,0,0,320,0,0,0,0,0,0,0,320,5.2,0,0,9.7,77777,9,999999999,179,0.1630,0,88,999.000,999.0,99.0 +1980,9,23,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,11.1,81,102100,0,0,317,0,0,0,0,0,0,0,310,4.1,0,0,9.7,77777,9,999999999,189,0.1630,0,88,999.000,999.0,99.0 +1980,9,23,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,11.1,83,102100,0,0,315,0,0,0,0,0,0,0,340,3.6,0,0,8.0,77777,9,999999999,189,0.1630,0,88,999.000,999.0,99.0 +1980,9,23,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,10.6,83,102100,0,0,312,0,0,0,0,0,0,0,340,4.6,0,0,9.7,77777,9,999999999,189,0.1630,0,88,999.000,999.0,99.0 +1980,9,24,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,10.6,83,102100,0,0,312,0,0,0,0,0,0,0,360,3.6,0,0,9.7,77777,9,999999999,189,0.0570,0,88,999.000,999.0,99.0 +1980,9,24,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,10.0,86,102100,0,0,316,0,0,0,0,0,0,0,360,2.6,7,2,9.7,77777,9,999999999,189,0.0570,0,88,999.000,999.0,99.0 +1980,9,24,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,10.0,86,102100,0,0,316,0,0,0,0,0,0,0,350,3.1,7,2,9.7,77777,9,999999999,189,0.0570,0,88,999.000,999.0,99.0 +1980,9,24,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,10.0,86,102100,0,0,319,0,0,0,0,0,0,0,20,3.1,9,3,9.7,77777,9,999999999,189,0.0570,0,88,999.000,999.0,99.0 +1980,9,24,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,10.6,96,102100,0,0,315,0,0,0,0,0,0,0,80,3.1,9,3,0.1,77777,9,999999999,189,0.0570,0,88,999.000,999.0,99.0 +1980,9,24,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,10.6,100,102100,0,0,346,0,0,0,0,0,0,0,280,3.1,10,10,0.8,210,9,999999999,189,0.0570,0,88,999.000,999.0,99.0 +1980,9,24,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,10.6,96,102000,108,1325,318,35,14,34,3800,900,3800,780,340,3.6,9,4,2.4,77777,9,999999999,179,0.0570,0,88,999.000,999.0,99.0 +1980,9,24,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,10.6,93,102000,344,1359,320,156,206,104,16400,17300,12000,2070,310,2.1,6,4,3.2,310,9,999999999,179,0.0570,0,88,999.000,999.0,99.0 +1980,9,24,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,10.6,83,102000,558,1359,330,302,405,134,31700,39100,15600,2640,330,2.1,6,5,4.8,340,9,999999999,179,0.0650,0,88,999.000,999.0,99.0 +1980,9,24,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,11.1,81,102000,735,1359,333,325,281,171,35400,29600,19400,3820,110,2.6,5,4,6.4,77777,9,999999999,179,0.0650,0,88,999.000,999.0,99.0 +1980,9,24,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,11.7,73,102000,860,1359,339,598,747,124,62100,74300,15000,2860,120,2.6,2,2,12.9,77777,9,999999999,170,0.0570,0,88,999.000,999.0,99.0 +1980,9,24,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,12.8,70,101900,926,1359,336,696,888,86,72100,88500,11700,2210,270,1.5,0,0,16.1,77777,9,999999999,170,0.0650,0,88,999.000,999.0,99.0 +1980,9,24,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,11.7,55,101800,928,1359,348,661,721,166,69700,73100,19700,4490,280,2.6,1,0,16.1,77777,9,999999999,170,0.0570,0,88,999.000,999.0,99.0 +1980,9,24,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,12.2,55,101700,866,1359,352,645,876,82,66900,87000,11300,2000,340,4.6,0,0,24.1,77777,9,999999999,160,0.0650,0,88,999.000,999.0,99.0 +1980,9,24,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,12.8,53,101700,745,1359,358,537,839,73,55800,82400,10500,1680,320,3.6,0,0,32.2,77777,9,999999999,160,0.0650,0,88,999.000,999.0,99.0 +1980,9,24,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,12.8,53,101600,571,1359,358,388,772,60,41000,74500,9600,1330,320,4.6,0,0,32.2,77777,9,999999999,160,0.0650,0,88,999.000,999.0,99.0 +1980,9,24,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,12.8,59,101600,358,1359,349,214,635,44,22100,55100,7500,900,330,5.2,0,0,24.1,77777,9,999999999,160,0.0650,0,88,999.000,999.0,99.0 +1980,9,24,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,12.8,63,101500,123,1359,344,54,265,29,5300,13900,4100,500,320,4.6,0,0,24.1,77777,9,999999999,160,0.0570,0,88,999.000,999.0,99.0 +1980,9,24,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,12.8,70,101500,0,34,336,0,0,0,0,0,0,0,320,5.2,0,0,24.1,77777,9,999999999,150,0.0570,0,88,999.000,999.0,99.0 +1980,9,24,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,12.2,75,101500,0,0,328,0,0,0,0,0,0,0,320,2.6,0,0,24.1,77777,9,999999999,150,0.0570,0,88,999.000,999.0,99.0 +1980,9,24,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,11.1,72,101500,0,0,324,0,0,0,0,0,0,0,320,3.1,0,0,24.1,77777,9,999999999,150,0.0570,0,88,999.000,999.0,99.0 +1980,9,24,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,11.1,75,101500,0,0,322,0,0,0,0,0,0,0,320,4.1,0,0,24.1,77777,9,999999999,150,0.0570,0,88,999.000,999.0,99.0 +1980,9,24,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,11.1,83,101500,0,0,315,0,0,0,0,0,0,0,310,3.1,0,0,24.1,77777,9,999999999,150,0.0570,0,88,999.000,999.0,99.0 +1980,9,24,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,10.6,80,101400,0,0,314,0,0,0,0,0,0,0,300,3.1,0,0,24.1,77777,9,999999999,150,0.0570,0,88,999.000,999.0,99.0 +1980,9,25,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,10.0,90,101400,0,0,304,0,0,0,0,0,0,0,290,2.6,1,0,24.1,77777,9,999999999,150,0.1060,0,88,999.000,999.0,99.0 +1980,9,25,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,9.4,90,101400,0,0,301,0,0,0,0,0,0,0,0,0.0,1,0,24.1,77777,9,999999999,139,0.1060,0,88,999.000,999.0,99.0 +1980,9,25,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,8.9,96,101300,0,0,293,0,0,0,0,0,0,0,300,2.6,1,0,24.1,77777,9,999999999,139,0.1060,0,88,999.000,999.0,99.0 +1980,9,25,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,8.9,86,101300,0,0,300,0,0,0,0,0,0,0,310,2.1,1,0,24.1,77777,9,999999999,139,0.1060,0,88,999.000,999.0,99.0 +1980,9,25,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,8.3,96,101300,0,0,291,0,0,0,0,0,0,0,290,2.6,2,0,24.1,77777,9,999999999,139,0.1060,0,88,999.000,999.0,99.0 +1980,9,25,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,8.9,96,101300,0,0,303,0,0,0,0,0,0,0,280,3.1,10,2,64.4,77777,9,999999999,150,0.1060,0,88,999.000,999.0,99.0 +1980,9,25,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,10.6,90,101300,103,1281,317,45,158,31,4600,7300,4000,560,290,4.1,10,2,24.1,77777,9,999999999,150,0.1060,0,88,999.000,999.0,99.0 +1980,9,25,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,11.7,84,101200,338,1360,328,176,402,75,18500,33200,10200,1370,280,4.1,10,2,24.1,77777,9,999999999,150,0.1060,0,88,999.000,999.0,99.0 +1980,9,25,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,11.7,68,101200,553,1360,350,353,579,115,36100,54600,13900,2200,300,3.1,10,4,40.2,77777,9,999999999,160,0.1060,0,88,999.000,999.0,99.0 +1980,9,25,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,10.6,49,101100,729,1360,368,455,477,197,47600,48200,21700,4350,130,2.6,10,4,40.2,77777,9,999999999,160,0.1060,0,88,999.000,999.0,99.0 +1980,9,25,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,8.9,36,101000,854,1360,382,524,367,292,56000,39100,31300,7690,90,7.7,10,4,48.3,77777,9,999999999,160,0.1060,0,88,999.000,999.0,99.0 +1980,9,25,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,8.3,31,101000,920,1360,387,642,536,277,67100,55300,29600,7540,90,10.8,10,3,56.3,77777,9,999999999,170,0.1100,0,88,999.000,999.0,99.0 +1980,9,25,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,7.2,29,100900,922,1360,389,655,285,460,69700,29700,49500,13570,90,12.4,10,4,56.3,77777,9,999999999,170,0.1060,0,88,999.000,999.0,99.0 +1980,9,25,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,7.8,30,100800,860,1360,387,453,429,180,49000,44300,20900,4400,90,10.3,9,3,56.3,77777,9,999999999,170,0.1060,0,88,999.000,999.0,99.0 +1980,9,25,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,7.8,29,100700,738,1360,389,502,592,178,53100,60000,20500,3910,80,7.2,7,3,56.3,77777,9,999999999,179,0.1060,0,88,999.000,999.0,99.0 +1980,9,25,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,7.2,28,100700,564,1360,388,372,707,76,38300,67400,10300,1530,100,8.2,5,3,48.3,77777,9,999999999,179,0.1060,0,88,999.000,999.0,99.0 +1980,9,25,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,6.7,30,100700,351,1360,380,198,308,117,20500,26100,13700,2390,100,6.2,5,3,48.3,77777,9,999999999,179,0.1060,0,88,999.000,999.0,99.0 +1980,9,25,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,5.6,31,100700,115,1349,370,44,73,37,4700,3700,4400,770,100,6.2,6,3,48.3,77777,9,999999999,179,0.1060,0,88,999.000,999.0,99.0 +1980,9,25,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,6.1,35,100700,0,0,362,0,0,0,0,0,0,0,110,5.7,6,3,24.1,77777,9,999999999,179,0.1060,0,88,999.000,999.0,99.0 +1980,9,25,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,6.7,41,100700,0,0,351,0,0,0,0,0,0,0,110,4.1,5,2,24.1,77777,9,999999999,179,0.1060,0,88,999.000,999.0,99.0 +1980,9,25,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,7.2,44,100700,0,0,349,0,0,0,0,0,0,0,120,2.1,5,2,24.1,77777,9,999999999,179,0.1060,0,88,999.000,999.0,99.0 +1980,9,25,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,10.0,61,100700,0,0,345,0,0,0,0,0,0,0,0,0.0,7,3,24.1,77777,9,999999999,179,0.1060,0,88,999.000,999.0,99.0 +1980,9,25,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,10.0,70,100700,0,0,338,0,0,0,0,0,0,0,290,2.1,8,4,24.1,77777,9,999999999,179,0.1060,0,88,999.000,999.0,99.0 +1980,9,25,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,10.0,75,100700,0,0,329,0,0,0,0,0,0,0,280,3.6,8,3,24.1,77777,9,999999999,179,0.1060,0,88,999.000,999.0,99.0 +1980,9,26,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,10.6,78,100700,0,0,330,0,0,0,0,0,0,0,310,2.1,10,3,24.1,77777,9,999999999,179,0.1060,0,88,999.000,999.0,99.0 +1980,9,26,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,10.6,80,100800,0,0,330,0,0,0,0,0,0,0,0,0.0,10,4,24.1,77777,9,999999999,179,0.1060,0,88,999.000,999.0,99.0 +1980,9,26,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,10.6,86,100700,0,0,328,0,0,0,0,0,0,0,290,2.1,10,5,24.1,77777,9,999999999,179,0.1060,0,88,999.000,999.0,99.0 +1980,9,26,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,10.6,90,100700,0,0,328,0,0,0,0,0,0,0,160,2.6,10,6,24.1,7620,9,999999999,179,0.1060,0,88,999.000,999.0,99.0 +1980,9,26,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,11.1,93,100800,0,0,328,0,0,0,0,0,0,0,230,1.5,10,6,24.1,7620,9,999999999,179,0.1060,0,88,999.000,999.0,99.0 +1980,9,26,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,10.6,93,100800,0,0,335,0,0,0,0,0,0,0,250,1.5,10,8,48.3,6100,9,999999999,179,0.1060,0,88,999.000,999.0,99.0 +1980,9,26,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,10.6,90,100900,99,1259,332,33,13,32,3600,800,3600,740,280,1.5,10,7,40.2,6100,9,999999999,179,0.1060,0,88,999.000,999.0,99.0 +1980,9,26,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,12.8,90,101000,333,1361,345,96,39,86,10500,3400,9700,2230,310,1.5,9,7,40.2,6100,9,999999999,179,0.1060,0,88,999.000,999.0,99.0 +1980,9,26,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,12.2,63,101000,548,1361,355,320,598,77,33700,57300,10500,1570,80,2.6,4,3,40.2,77777,9,999999999,179,0.1060,0,88,999.000,999.0,99.0 +1980,9,26,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,12.2,53,101000,724,1361,369,471,748,70,50600,74600,10800,1680,150,3.6,3,3,48.3,77777,9,999999999,179,0.1060,0,88,999.000,999.0,99.0 +1980,9,26,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,11.7,46,101000,849,1361,374,580,781,89,62100,78700,12800,2270,180,4.1,3,2,48.3,77777,9,999999999,170,0.1060,0,88,999.000,999.0,99.0 +1980,9,26,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,11.1,45,101000,914,1361,382,609,635,179,63700,64000,20500,4690,180,2.1,7,5,48.3,7620,9,999999999,170,0.1060,0,88,999.000,999.0,99.0 +1980,9,26,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,12.2,44,101000,916,1361,396,516,353,277,55800,37900,30200,7570,240,5.7,7,6,48.3,7620,9,999999999,170,0.1060,0,88,999.000,999.0,99.0 +1980,9,26,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,12.8,44,101000,853,1361,399,469,413,208,49900,42500,23200,5100,220,5.2,10,6,32.2,7620,9,999999999,170,0.1060,0,88,999.000,999.0,99.0 +1980,9,26,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,12.2,45,101000,730,1361,404,307,109,248,33700,11000,27800,7510,200,4.6,10,8,32.2,7620,9,999999999,170,0.1060,0,88,999.000,999.0,99.0 +1980,9,26,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,12.2,45,101000,556,1361,393,215,83,181,23600,8100,20300,5010,180,4.1,10,6,32.2,7620,9,999999999,170,0.1060,0,88,999.000,999.0,99.0 +1980,9,26,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,12.2,47,101000,343,1361,390,111,28,104,12200,2400,11500,2610,190,3.6,10,6,40.2,7620,9,999999999,170,0.1060,0,88,999.000,999.0,99.0 +1980,9,26,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,11.7,50,101000,108,1327,375,62,157,47,6200,6600,5600,950,190,3.1,8,4,40.2,77777,9,999999999,170,0.1060,0,88,999.000,999.0,99.0 +1980,9,26,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,13.9,68,101000,0,0,369,0,0,0,0,0,0,0,360,3.6,8,6,24.1,4570,9,999999999,170,0.1060,0,88,999.000,999.0,99.0 +1980,9,26,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,12.8,73,101100,0,0,348,0,0,0,0,0,0,0,330,2.6,4,3,24.1,77777,9,999999999,170,0.1060,0,88,999.000,999.0,99.0 +1980,9,26,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,12.2,81,101200,0,0,330,0,0,0,0,0,0,0,310,3.1,2,1,16.1,77777,9,999999999,170,0.1060,0,88,999.000,999.0,99.0 +1980,9,26,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,12.2,81,101200,0,0,330,0,0,0,0,0,0,0,310,2.1,2,1,16.1,77777,9,999999999,160,0.1060,0,88,999.000,999.0,99.0 +1980,9,26,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,12.2,84,101200,0,0,327,0,0,0,0,0,0,0,320,1.5,2,1,16.1,77777,9,999999999,160,0.1060,0,88,999.000,999.0,99.0 +1980,9,26,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,10.6,86,101300,0,0,309,0,0,0,0,0,0,0,270,2.1,2,0,16.1,77777,9,999999999,160,0.1060,0,88,999.000,999.0,99.0 +1980,9,27,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,11.1,93,101300,0,0,323,0,0,0,0,0,0,0,0,0.0,5,4,16.1,77777,9,999999999,160,0.1050,0,88,999.000,999.0,99.0 +1980,9,27,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,12.2,90,101300,0,0,364,0,0,0,0,0,0,0,340,1.5,10,10,16.1,370,9,999999999,160,0.1050,0,88,999.000,999.0,99.0 +1980,9,27,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,11.7,87,101300,0,0,364,0,0,0,0,0,0,0,0,0.0,10,10,16.1,370,9,999999999,160,0.1050,0,88,999.000,999.0,99.0 +1980,9,27,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,11.7,87,101300,0,0,364,0,0,0,0,0,0,0,190,2.1,10,10,16.1,460,9,999999999,160,0.1050,0,88,999.000,999.0,99.0 +1980,9,27,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,11.7,87,101200,0,0,364,0,0,0,0,0,0,0,190,3.1,10,10,11.3,370,9,999999999,160,0.1050,0,88,999.000,999.0,99.0 +1980,9,27,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,11.1,83,101200,0,0,363,0,0,0,0,0,0,0,190,2.6,10,10,11.3,550,9,999999999,160,0.1050,0,88,999.000,999.0,99.0 +1980,9,27,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,11.1,83,101200,94,1237,363,9,0,9,1100,0,1100,350,160,2.6,10,10,11.3,550,9,999999999,170,0.1050,0,88,999.000,999.0,99.0 +1980,9,27,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,11.1,83,101300,328,1361,363,33,0,33,4000,0,4000,1400,170,2.1,10,10,11.3,550,9,999999999,170,0.1050,0,88,999.000,999.0,99.0 +1980,9,27,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,11.7,84,101200,543,1361,366,64,0,64,7700,0,7700,2900,170,3.1,10,10,12.9,700,9,999999999,170,0.1050,0,88,999.000,999.0,99.0 +1980,9,27,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,11.7,78,101300,718,1361,373,139,1,138,16300,100,16300,6200,140,2.6,10,10,12.9,850,9,999999999,179,0.1050,0,88,999.000,999.0,99.0 +1980,9,27,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,10.6,72,101300,843,1361,371,119,0,119,14500,0,14500,5840,180,4.1,10,10,12.9,850,9,999999999,179,0.1050,0,88,999.000,999.0,99.0 +1980,9,27,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,10.6,72,101300,908,1361,371,121,0,121,14900,0,14900,6090,180,2.6,10,10,16.1,820,9,999999999,179,0.1050,0,88,999.000,999.0,99.0 +1980,9,27,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,10.6,70,101200,909,1361,374,204,0,204,24100,0,24100,9430,170,3.6,10,10,16.1,850,9,999999999,179,0.1050,0,88,999.000,999.0,99.0 +1980,9,27,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,11.1,72,101200,846,1361,374,345,56,310,37900,5700,34300,9920,160,3.6,10,10,16.1,760,9,999999999,189,0.1050,0,88,999.000,999.0,99.0 +1980,9,27,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,11.1,72,101200,723,1361,374,246,38,226,27100,3800,25000,6940,200,4.6,10,10,16.1,1040,9,999999999,189,0.1050,0,88,999.000,999.0,99.0 +1980,9,27,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,11.1,72,101100,549,1361,374,101,0,101,11800,0,11800,4290,170,3.6,10,10,32.2,1160,9,999999999,189,0.1050,0,88,999.000,999.0,99.0 +1980,9,27,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,11.1,72,101100,335,1361,374,72,0,72,8200,0,8200,2690,100,4.1,10,10,32.2,1220,9,999999999,200,0.1050,0,88,999.000,999.0,99.0 +1980,9,27,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,12.2,81,101100,101,1282,373,30,0,30,3300,0,3300,960,110,4.6,10,10,32.2,1220,9,999999999,200,0.1050,0,88,999.000,999.0,99.0 +1980,9,27,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,12.2,84,101200,0,0,370,0,0,0,0,0,0,0,110,4.1,10,10,24.1,1220,9,999999999,200,0.1050,0,88,999.000,999.0,99.0 +1980,9,27,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,12.2,84,101100,0,0,370,0,0,0,0,0,0,0,100,4.6,10,10,24.1,1220,9,999999999,209,0.1050,0,88,999.000,999.0,99.0 +1980,9,27,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,12.2,84,101200,0,0,370,0,0,0,0,0,0,0,140,3.6,10,10,16.1,1220,9,999999999,220,0.1050,0,88,999.000,999.0,99.0 +1980,9,27,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,12.2,87,101200,0,0,367,0,0,0,0,0,0,0,120,3.1,10,10,11.3,1220,9,999999999,220,0.1050,0,88,999.000,999.0,99.0 +1980,9,27,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,12.2,87,101200,0,0,367,0,0,0,0,0,0,0,120,3.6,10,10,11.3,1160,9,999999999,229,0.1050,0,88,999.000,999.0,99.0 +1980,9,27,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,12.2,87,101200,0,0,367,0,0,0,0,0,0,0,130,3.1,10,10,16.1,1280,9,999999999,229,0.1050,0,88,999.000,999.0,99.0 +1980,9,28,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,12.2,90,101200,0,0,364,0,0,0,0,0,0,0,140,2.1,10,10,9.7,760,9,999999999,229,0.1040,0,88,999.000,999.0,99.0 +1980,9,28,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,12.8,96,101300,0,0,362,0,0,0,0,0,0,0,110,3.1,10,10,8.0,460,9,999999999,240,0.1040,0,88,999.000,999.0,99.0 +1980,9,28,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,12.8,96,101300,0,0,362,0,0,0,0,0,0,0,120,3.1,10,10,4.8,310,9,999999999,250,0.1040,0,88,999.000,999.0,99.0 +1980,9,28,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,12.8,96,101200,0,0,362,0,0,0,0,0,0,0,100,3.1,10,10,6.4,310,9,999999999,250,0.1040,0,88,999.000,999.0,99.0 +1980,9,28,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,12.8,93,101300,0,0,365,0,0,0,0,0,0,0,0,0.0,10,10,6.4,610,9,999999999,250,0.1040,0,88,999.000,999.0,99.0 +1980,9,28,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,12.8,93,101400,0,0,365,0,0,0,0,0,0,0,0,0.0,10,10,4.0,610,9,999999999,250,0.1040,0,88,999.000,999.0,99.0 +1980,9,28,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,13.3,96,101400,90,1215,366,16,0,16,1900,0,1900,590,110,2.6,10,10,4.0,430,9,999999999,250,0.1040,0,88,999.000,999.0,99.0 +1980,9,28,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,13.9,93,101500,323,1362,372,71,1,71,8100,0,8100,2620,120,3.1,10,10,4.0,490,9,999999999,240,0.1040,0,88,999.000,999.0,99.0 +1980,9,28,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,14.4,93,101500,537,1362,376,129,3,128,14800,200,14700,5090,130,3.1,10,10,6.4,1340,9,999999999,240,0.1040,0,88,999.000,999.0,99.0 +1980,9,28,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,14.4,87,101600,713,1362,353,310,89,263,34000,9000,29300,7710,110,3.6,10,6,9.7,7620,9,999999999,240,0.1040,0,88,999.000,999.0,99.0 +1980,9,28,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,14.4,76,101600,837,1362,382,298,85,245,32700,8600,27400,8170,200,2.6,10,9,24.1,760,9,999999999,240,0.1040,0,88,999.000,999.0,99.0 +1980,9,28,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,14.4,71,101400,902,1362,399,300,43,271,33000,4400,30100,9400,180,5.2,10,10,32.2,910,9,999999999,240,0.1040,0,88,999.000,999.0,99.0 +1980,9,28,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,15.0,71,101600,903,1362,403,179,3,177,21300,200,21200,8390,270,4.1,10,10,32.2,1340,9,999999999,229,0.1040,0,88,999.000,999.0,99.0 +1980,9,28,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,13.9,61,101700,839,1362,408,203,1,202,23700,100,23600,9000,210,3.6,10,10,40.2,1520,9,999999999,229,0.1040,0,88,999.000,999.0,99.0 +1980,9,28,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,13.3,59,101700,716,1362,407,195,6,192,22400,500,22200,7950,200,3.6,10,10,40.2,1680,9,999999999,229,0.1040,0,88,999.000,999.0,99.0 +1980,9,28,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,13.3,59,101700,541,1362,388,287,277,176,30200,27300,19300,3790,220,4.6,10,8,32.2,3660,9,999999999,229,0.1040,0,88,999.000,999.0,99.0 +1980,9,28,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,12.8,55,101700,328,1362,379,127,164,87,13400,13500,10200,1680,210,5.2,10,6,32.2,3050,9,999999999,229,0.1040,0,88,999.000,999.0,99.0 +1980,9,28,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,12.8,61,101700,94,1237,371,26,74,19,2700,3000,2500,320,190,2.1,8,6,64.4,7620,9,999999999,229,0.1040,0,88,999.000,999.0,99.0 +1980,9,28,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,12.8,75,101700,0,0,348,0,0,0,0,0,0,0,90,2.6,5,4,24.1,77777,9,999999999,220,0.1040,0,88,999.000,999.0,99.0 +1980,9,28,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,13.9,81,101700,0,0,350,0,0,0,0,0,0,0,130,2.1,4,4,24.1,77777,9,999999999,220,0.1040,0,88,999.000,999.0,99.0 +1980,9,28,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,13.9,87,101700,0,0,347,0,0,0,0,0,0,0,160,2.1,5,5,24.1,77777,9,999999999,220,0.1040,0,88,999.000,999.0,99.0 +1980,9,28,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,13.3,90,101700,0,0,332,0,0,0,0,0,0,0,120,3.1,2,2,24.1,77777,9,999999999,220,0.1040,0,88,999.000,999.0,99.0 +1980,9,28,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,13.3,93,101700,0,0,319,0,0,0,0,0,0,0,120,3.6,0,0,24.1,77777,9,999999999,209,0.1040,0,88,999.000,999.0,99.0 +1980,9,28,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,13.3,93,101700,0,0,319,0,0,0,0,0,0,0,110,4.1,0,0,24.1,77777,9,999999999,209,0.1040,0,88,999.000,999.0,99.0 +1980,9,29,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,12.2,90,101700,0,0,316,0,0,0,0,0,0,0,140,2.6,0,0,24.1,77777,9,999999999,209,0.2450,0,88,999.000,999.0,99.0 +1980,9,29,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,11.7,93,101700,0,0,310,0,0,0,0,0,0,0,150,1.5,0,0,24.1,77777,9,999999999,200,0.2450,0,88,999.000,999.0,99.0 +1980,9,29,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,10.6,93,101700,0,0,305,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,200,0.2450,0,88,999.000,999.0,99.0 +1980,9,29,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,10.0,96,101700,0,0,299,0,0,0,0,0,0,0,190,2.1,5,0,24.1,77777,9,999999999,200,0.2450,0,88,999.000,999.0,99.0 +1980,9,29,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,10.0,93,101700,0,0,301,0,0,0,0,0,0,0,180,2.1,3,0,24.1,77777,9,999999999,200,0.2450,0,88,999.000,999.0,99.0 +1980,9,29,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,9.4,96,101700,0,0,302,0,0,0,0,0,0,0,150,2.6,8,1,64.4,77777,9,999999999,209,0.2450,0,88,999.000,999.0,99.0 +1980,9,29,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,9.4,93,101700,86,1170,304,24,25,22,2700,1200,2600,460,170,1.5,4,1,64.4,77777,9,999999999,209,0.2450,0,88,999.000,999.0,99.0 +1980,9,29,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,10.6,75,101700,318,1363,319,163,397,69,17000,31900,9600,1250,70,2.1,1,0,32.2,77777,9,999999999,220,0.2450,0,88,999.000,999.0,99.0 +1980,9,29,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,11.7,73,101700,532,1363,328,323,697,48,33900,65800,8100,1180,120,4.1,2,0,32.2,77777,9,999999999,220,0.2450,0,88,999.000,999.0,99.0 +1980,9,29,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,13.3,75,101700,707,1363,335,465,789,52,48800,77300,8600,1390,90,4.1,0,0,32.2,77777,9,999999999,229,0.2450,0,88,999.000,999.0,99.0 +1980,9,29,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,13.3,61,101600,831,1363,350,555,783,74,57800,77600,10400,1840,260,3.1,0,0,48.3,77777,9,999999999,229,0.2450,0,88,999.000,999.0,99.0 +1980,9,29,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,13.9,59,101600,896,1363,356,601,763,96,64300,77000,13500,2540,180,3.1,1,0,32.2,77777,9,999999999,229,0.2450,0,88,999.000,999.0,99.0 +1980,9,29,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,13.9,55,101600,896,1363,361,597,761,93,64100,76900,13300,2480,50,3.1,0,0,32.2,77777,9,999999999,240,0.2450,0,88,999.000,999.0,99.0 +1980,9,29,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,13.3,50,101500,832,1363,366,555,773,79,57700,76500,10800,1890,120,3.1,0,0,48.3,77777,9,999999999,240,0.2450,0,88,999.000,999.0,99.0 +1980,9,29,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,12.8,48,101500,709,1363,365,467,782,57,48900,76600,9000,1470,360,2.6,0,0,48.3,77777,9,999999999,250,0.2450,0,88,999.000,999.0,99.0 +1980,9,29,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,11.7,43,101500,534,1363,379,303,548,86,31500,51900,11100,1710,360,2.6,7,2,64.4,77777,9,999999999,250,0.2450,0,88,999.000,999.0,99.0 +1980,9,29,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,12.2,51,101500,320,1363,375,137,313,62,14500,25300,8500,1110,120,2.1,7,4,64.4,7620,9,999999999,250,0.2450,0,88,999.000,999.0,99.0 +1980,9,29,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,6.7,37,101400,87,1193,376,26,41,22,2800,2000,2600,460,220,4.6,9,7,64.4,7620,9,999999999,250,0.2450,0,88,999.000,999.0,99.0 +1980,9,29,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,13.9,61,101500,0,0,397,0,0,0,0,0,0,0,240,5.2,10,9,24.1,1520,9,999999999,250,0.2450,0,88,999.000,999.0,99.0 +1980,9,29,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,14.4,66,101500,0,0,394,0,0,0,0,0,0,0,270,3.1,10,9,24.1,1830,9,999999999,250,0.2450,0,88,999.000,999.0,99.0 +1980,9,29,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,13.9,68,101700,0,0,399,0,0,0,0,0,0,0,0,0.0,10,10,24.1,1830,9,999999999,250,0.2450,0,88,999.000,999.0,99.0 +1980,9,29,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,15.0,84,101700,0,0,388,0,0,0,0,0,0,0,40,2.1,10,10,24.1,1100,9,999999999,250,0.2450,0,88,999.000,999.0,99.0 +1980,9,29,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,15.6,90,101800,0,0,386,0,0,0,0,0,0,0,80,3.1,10,10,24.1,1160,9,999999999,240,0.2450,0,88,999.000,999.0,99.0 +1980,9,29,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,16.1,93,101900,0,0,386,0,0,0,0,0,0,0,100,3.1,10,10,6.4,1160,9,999999999,240,0.2450,0,88,999.000,999.0,99.0 +1980,9,30,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,15.6,90,101900,0,0,386,0,0,0,0,0,0,0,140,3.1,10,10,11.3,1340,9,999999999,240,0.1030,0,88,999.000,999.0,99.0 +1980,9,30,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,15.6,93,102000,0,0,383,0,0,0,0,0,0,0,190,3.1,10,10,11.3,1160,9,999999999,240,0.1030,0,88,999.000,999.0,99.0 +1980,9,30,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,15.0,90,102000,0,0,372,0,0,0,0,0,0,0,170,1.5,9,9,16.1,1160,9,999999999,240,0.1030,0,88,999.000,999.0,99.0 +1980,9,30,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,14.4,93,102000,0,0,336,0,0,0,0,0,0,0,220,1.5,10,2,16.1,77777,9,999999999,240,0.1030,0,88,999.000,999.0,99.0 +1980,9,30,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,14.4,93,102100,0,0,365,0,0,0,0,0,0,0,0,0.0,10,9,16.1,340,9,999999999,229,0.1030,0,88,999.000,999.0,99.0 +1980,9,30,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,14.4,93,102200,0,0,358,0,0,0,0,0,0,0,160,1.5,10,8,11.3,610,9,999999999,229,0.1030,0,88,999.000,999.0,99.0 +1980,9,30,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,13.9,93,102300,81,1148,354,22,0,22,2500,0,2500,750,280,1.5,10,8,16.1,880,9,999999999,229,0.1030,0,88,999.000,999.0,99.0 +1980,9,30,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,15.0,90,102400,313,1364,358,129,75,112,14100,6400,12600,2640,0,0.0,10,7,16.1,7620,9,999999999,220,0.1030,0,88,999.000,999.0,99.0 +1980,9,30,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,13.9,78,102400,527,1364,362,269,158,207,28700,15300,22800,4820,0,0.0,10,7,16.1,6100,9,999999999,220,0.1030,0,88,999.000,999.0,99.0 +1980,9,30,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,13.9,75,102400,702,1364,365,281,91,234,30800,9100,26100,6980,0,0.0,10,7,16.1,6100,9,999999999,209,0.1030,0,88,999.000,999.0,99.0 +1980,9,30,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,13.3,68,102500,825,1364,376,351,117,280,38300,12200,30800,7610,0,0.0,10,8,24.1,6100,9,999999999,200,0.1030,0,88,999.000,999.0,99.0 +1980,9,30,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,12.8,63,102500,890,1364,378,386,119,308,42100,12500,33900,8800,300,1.5,10,8,32.2,6100,9,999999999,200,0.1030,0,88,999.000,999.0,99.0 +1980,9,30,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,13.3,61,102400,890,1364,371,499,361,262,54000,38700,28700,6930,20,2.6,10,5,32.2,77777,9,999999999,200,0.1030,0,88,999.000,999.0,99.0 +1980,9,30,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,9.4,46,102400,825,1364,363,581,676,169,60300,67500,19400,3940,270,3.1,7,3,48.3,77777,9,999999999,189,0.1030,0,88,999.000,999.0,99.0 +1980,9,30,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,13.9,57,102400,702,1364,371,470,725,94,48700,71100,12000,1980,340,2.6,5,2,48.3,77777,9,999999999,189,0.1030,0,88,999.000,999.0,99.0 +1980,9,30,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,10.0,46,102400,526,1364,367,318,597,85,33100,56400,11200,1680,240,2.6,7,3,64.4,77777,9,999999999,179,0.1030,0,88,999.000,999.0,99.0 +1980,9,30,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,10.6,48,102400,312,1364,359,168,406,74,17400,32400,10000,1350,30,2.1,10,1,64.4,77777,9,999999999,179,0.1030,0,88,999.000,999.0,99.0 +1980,9,30,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,11.7,57,102400,81,1148,352,35,120,24,3400,5100,3100,430,350,3.1,10,1,64.4,77777,9,999999999,170,0.1030,0,88,999.000,999.0,99.0 +1980,9,30,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,10.0,55,102500,0,0,338,0,0,0,0,0,0,0,340,5.7,2,0,24.1,77777,9,999999999,170,0.1030,0,88,999.000,999.0,99.0 +1980,9,30,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,11.1,65,102500,0,0,332,0,0,0,0,0,0,0,340,4.6,0,0,24.1,77777,9,999999999,170,0.1030,0,88,999.000,999.0,99.0 +1980,9,30,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,12.2,75,102500,0,0,328,0,0,0,0,0,0,0,340,5.2,0,0,24.1,77777,9,999999999,160,0.1030,0,88,999.000,999.0,99.0 +1980,9,30,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.9,12.8,81,102600,0,0,330,0,0,0,0,0,0,0,320,4.8,0,0,24.1,77777,9,999999999,160,0.1030,0,88,999.000,999.0,99.0 +1980,9,30,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.0,13.5,87,102600,0,0,337,0,0,0,0,0,0,0,250,4.5,1,1,24.1,77777,9,999999999,160,0.1030,0,88,999.000,999.0,99.0 +1980,9,30,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,14.1,90,102600,0,0,339,0,0,0,0,0,0,0,50,4.1,1,1,24.1,77777,9,999999999,150,0.1030,0,88,999.000,999.0,99.0 +2000,10,1,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.3,14.8,90,100900,0,0,385,0,0,0,0,0,0,0,230,3.7,10,10,16.0,3353,9,999999999,200,0.1120,0,88,0.180,0.0,1.0 +2000,10,1,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.5,15.4,90,101000,0,0,387,0,0,0,0,0,0,0,240,3.3,10,10,16.0,1372,9,999999999,200,0.1120,0,88,0.180,0.0,1.0 +2000,10,1,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.6,16.1,93,101000,0,0,388,0,0,0,0,0,0,0,250,3.0,10,10,16.0,823,9,999999999,200,0.1120,0,88,0.180,0.0,1.0 +2000,10,1,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,16.7,93,101100,0,0,390,0,0,0,0,0,0,0,270,2.6,10,10,16.0,1036,9,999999999,200,0.1120,0,88,0.180,0.0,1.0 +2000,10,1,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,16.7,97,101100,0,0,387,0,0,0,0,0,0,0,320,1.5,10,10,16.0,671,9,999999999,200,0.1120,0,88,0.180,1.0,1.0 +2000,10,1,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,16.7,97,101100,0,0,387,0,0,0,0,0,0,0,310,3.1,10,10,14.4,792,9,999999999,200,0.1120,0,88,0.180,2.0,1.0 +2000,10,1,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,13.9,87,101200,76,1126,360,15,113,9,1900,5800,1400,180,330,6.2,8,8,16.0,610,9,999999999,200,0.1120,0,88,0.180,2.0,1.0 +2000,10,1,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,13.3,83,101300,306,1365,359,107,104,83,11600,8500,9700,1800,340,5.2,8,8,16.0,1676,9,999999999,200,0.1120,0,88,0.180,0.0,1.0 +2000,10,1,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,11.7,78,101500,520,1365,355,125,0,125,14300,0,14300,4920,340,5.7,8,8,16.0,1524,9,999999999,200,0.1120,0,88,0.180,0.0,1.0 +2000,10,1,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,10.0,72,101600,695,1365,350,175,6,172,20200,500,20000,7220,320,7.7,8,8,16.0,1524,9,999999999,200,0.1120,0,88,0.180,0.0,1.0 +2000,10,1,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,9.4,67,101600,819,1365,352,390,178,283,42400,18600,31300,7650,320,8.2,8,8,16.0,1128,9,999999999,200,0.1120,0,88,0.180,0.0,1.0 +2000,10,1,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,8.9,67,101700,882,1365,348,421,150,324,45700,15700,35500,9200,350,7.7,8,8,16.0,975,9,999999999,200,0.1120,0,88,0.180,0.0,1.0 +2000,10,1,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,8.3,60,101700,882,1365,353,391,121,313,42600,12700,34400,8880,330,6.7,8,8,16.0,1189,9,999999999,189,0.1120,0,88,0.180,0.0,1.0 +2000,10,1,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,7.8,58,101700,817,1365,353,361,104,298,39600,10600,33200,9350,340,4.6,8,8,16.0,1402,9,999999999,189,0.1120,0,88,0.180,0.0,1.0 +2000,10,1,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,7.2,56,101800,693,1365,352,439,431,219,46800,44800,24000,5040,340,6.2,8,8,16.0,1463,9,999999999,189,0.1120,0,88,0.180,0.0,1.0 +2000,10,1,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,7.2,56,101800,518,1365,352,254,190,181,27300,18400,20300,4200,340,5.2,8,8,16.0,1402,9,999999999,189,0.1120,0,88,0.180,0.0,1.0 +2000,10,1,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,6.1,53,101800,303,1365,348,129,55,116,14000,4700,12900,2660,320,5.7,8,8,16.0,1463,9,999999999,179,0.1120,0,88,0.180,0.0,1.0 +2000,10,1,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,6.1,55,101800,74,1103,345,11,21,10,1300,1000,1300,210,320,6.2,8,8,16.0,1524,9,999999999,179,0.1120,0,88,0.180,0.0,1.0 +2000,10,1,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,6.1,57,101900,0,0,342,0,0,0,0,0,0,0,310,4.1,8,8,16.0,1524,9,999999999,179,0.1120,0,88,0.180,0.0,1.0 +2000,10,1,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,7.2,64,101900,0,0,341,0,0,0,0,0,0,0,310,3.1,8,8,16.0,1524,9,999999999,179,0.1120,0,88,0.180,0.0,1.0 +2000,10,1,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,7.8,69,102000,0,0,339,0,0,0,0,0,0,0,320,3.1,8,8,16.0,1524,9,999999999,179,0.1120,0,88,0.180,0.0,1.0 +2000,10,1,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,7.8,69,102000,0,0,339,0,0,0,0,0,0,0,290,2.6,8,8,16.0,1676,9,999999999,170,0.1120,0,88,0.180,0.0,1.0 +2000,10,1,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,7.2,74,102000,0,0,331,0,0,0,0,0,0,0,0,0.0,8,8,16.0,1676,9,999999999,170,0.1120,0,88,0.180,0.0,1.0 +2000,10,1,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,7.8,74,102000,0,0,334,0,0,0,0,0,0,0,0,0.0,8,8,16.0,1676,9,999999999,170,0.1120,0,88,0.180,0.0,1.0 +2000,10,2,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,7.8,83,102100,0,0,315,0,0,0,0,0,0,0,280,1.5,5,5,16.0,77777,9,999999999,170,0.1120,0,88,0.180,0.0,1.0 +2000,10,2,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,7.8,90,102100,0,0,310,0,0,0,0,0,0,0,300,1.5,5,5,16.0,77777,9,999999999,160,0.1120,0,88,0.180,0.0,1.0 +2000,10,2,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,7.8,97,102100,0,0,302,0,0,0,0,0,0,0,230,2.1,4,4,16.0,77777,9,999999999,160,0.1120,0,88,0.180,0.0,1.0 +2000,10,2,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,8.3,89,102100,0,0,324,0,0,0,0,0,0,0,0,0.0,8,8,16.0,1676,9,999999999,160,0.1120,0,88,0.180,0.0,1.0 +2000,10,2,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,8.3,89,102200,0,0,324,0,0,0,0,0,0,0,230,1.5,8,8,16.0,1524,9,999999999,160,0.1120,0,88,0.180,0.0,1.0 +2000,10,2,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,8.3,89,102100,0,0,324,0,0,0,0,0,0,0,0,0.0,8,8,16.0,1829,9,999999999,160,0.1120,0,88,0.180,0.0,1.0 +2000,10,2,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,8.3,86,102100,72,1081,327,15,161,7,2000,9300,1400,180,0,0.0,8,8,16.0,1829,9,999999999,160,0.1120,0,88,0.180,0.0,1.0 +2000,10,2,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,8.3,77,102200,301,1365,318,163,482,56,16700,38300,8200,1020,0,0.0,3,3,16.0,77777,9,999999999,150,0.1120,0,88,0.180,0.0,1.0 +2000,10,2,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,8.9,77,102200,515,1365,323,302,425,142,31400,40100,16200,2790,0,0.0,4,4,16.0,77777,9,999999999,150,0.1120,0,88,0.180,0.0,1.0 +2000,10,2,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,9.4,74,102300,689,1365,344,265,70,230,29100,7000,25600,6810,290,2.1,8,8,16.0,853,9,999999999,150,0.1120,0,88,0.180,0.0,1.0 +2000,10,2,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,8.3,67,102200,813,1365,345,424,255,272,45300,27000,29200,6870,300,3.6,8,8,16.0,1981,9,999999999,160,0.1120,0,88,0.180,0.0,1.0 +2000,10,2,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,7.8,58,102200,876,1365,353,516,311,316,55000,33200,33700,8560,340,3.6,8,8,16.0,2134,9,999999999,160,0.1120,0,88,0.180,0.0,1.0 +2000,10,2,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,7.8,56,102100,875,1365,355,162,0,162,19400,0,19400,7700,300,2.6,8,8,16.0,1981,9,999999999,170,0.1120,0,88,0.180,0.0,1.0 +2000,10,2,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,7.2,53,102100,810,1365,355,164,0,164,19400,0,19400,7510,320,3.1,8,8,16.0,1981,9,999999999,170,0.1120,0,88,0.180,0.0,1.0 +2000,10,2,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,6.7,50,102100,686,1365,357,163,0,163,18900,0,18900,6890,350,5.7,8,8,16.0,1981,9,999999999,179,0.1120,0,88,0.180,0.0,1.0 +2000,10,2,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,7.2,53,102100,510,1365,355,214,92,180,23500,8800,20200,4740,320,5.2,8,8,16.0,1829,9,999999999,189,0.1120,0,88,0.180,0.0,1.0 +2000,10,2,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,7.2,56,102100,295,1365,352,133,72,117,14500,6100,13100,2640,330,4.1,8,8,16.0,2134,9,999999999,189,0.1120,0,88,0.180,0.0,1.0 +2000,10,2,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,7.8,60,102100,68,1058,350,10,26,9,1200,900,1200,140,340,4.1,8,8,16.0,2134,9,999999999,200,0.1120,0,88,0.180,0.0,1.0 +2000,10,2,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,8.3,67,102100,0,0,333,0,0,0,0,0,0,0,330,4.6,5,5,16.0,77777,9,999999999,209,0.1120,0,88,0.180,0.0,1.0 +2000,10,2,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,8.3,72,102100,0,0,325,0,0,0,0,0,0,0,330,1.5,4,4,16.0,77777,9,999999999,209,0.1120,0,88,0.180,0.0,1.0 +2000,10,2,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,8.3,77,102100,0,0,318,0,0,0,0,0,0,0,290,2.1,3,3,16.0,77777,9,999999999,220,0.1120,0,88,0.180,0.0,1.0 +2000,10,2,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,8.9,83,102200,0,0,316,0,0,0,0,0,0,0,320,2.1,3,3,16.0,77777,9,999999999,229,0.1120,0,88,0.180,0.0,1.0 +2000,10,2,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,8.3,80,102100,0,0,315,0,0,0,0,0,0,0,300,2.1,3,3,16.0,77777,9,999999999,220,0.1120,0,88,0.180,0.0,1.0 +2000,10,2,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,8.3,80,102200,0,0,302,0,0,0,0,0,0,0,310,3.1,0,0,16.0,77777,9,999999999,200,0.1120,0,88,0.180,0.0,1.0 +2000,10,3,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,8.3,83,102200,0,0,300,0,0,0,0,0,0,0,320,3.1,0,0,16.0,77777,9,999999999,189,0.1110,0,88,0.180,0.0,1.0 +2000,10,3,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,8.3,86,102200,0,0,298,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,179,0.1110,0,88,0.180,0.0,1.0 +2000,10,3,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,8.3,89,102200,0,0,295,0,0,0,0,0,0,0,110,1.5,0,0,16.0,77777,9,999999999,170,0.1110,0,88,0.180,0.0,1.0 +2000,10,3,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,7.2,89,102200,0,0,290,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,160,0.1110,0,88,0.180,0.0,1.0 +2000,10,3,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,7.8,93,102200,0,0,303,0,0,0,0,0,0,0,350,1.5,3,3,16.0,77777,9,999999999,150,0.1110,0,88,0.180,0.0,1.0 +2000,10,3,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,7.8,90,102200,0,0,321,0,0,0,0,0,0,0,20,2.6,8,8,16.0,610,9,999999999,139,0.1110,0,88,0.180,0.0,1.0 +2000,10,3,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,7.8,90,102300,69,1059,337,8,9,8,1000,400,1000,170,340,3.6,10,10,16.0,549,9,999999999,129,0.1110,0,88,0.180,0.0,1.0 +2000,10,3,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,7.8,86,102300,296,1366,324,116,160,82,12300,12500,9600,1590,330,2.6,8,8,16.0,610,9,999999999,120,0.1110,0,88,0.180,0.0,1.0 +2000,10,3,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,6.7,77,102300,509,1366,325,230,158,170,24800,15300,19100,3930,330,2.6,8,8,16.0,549,9,999999999,110,0.1110,0,88,0.180,0.0,1.0 +2000,10,3,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,7.2,74,102300,684,1366,331,446,549,170,47000,55000,19400,3590,330,4.1,8,8,16.0,610,9,999999999,100,0.1110,0,88,0.180,0.0,1.0 +2000,10,3,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,7.2,69,102200,807,1366,343,531,634,156,55500,63300,18000,3600,350,1.5,9,9,16.0,610,9,999999999,100,0.1110,0,88,0.180,0.0,1.0 +2000,10,3,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,7.2,64,102200,870,1366,324,641,796,133,66200,79000,15700,3000,0,0.0,3,3,16.0,77777,9,999999999,110,0.1110,0,88,0.180,0.0,1.0 +2000,10,3,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,7.2,60,102100,869,1366,329,635,840,99,67600,84500,13800,2500,340,1.5,3,3,16.0,77777,9,999999999,110,0.1110,0,88,0.180,0.0,1.0 +2000,10,3,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,6.7,48,102000,803,1366,341,591,814,111,61600,80700,13900,2460,320,4.1,3,3,16.0,77777,9,999999999,110,0.1110,0,88,0.180,0.0,1.0 +2000,10,3,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,6.7,48,102000,679,1366,341,484,769,101,51300,76200,13300,2190,330,5.2,3,3,16.0,77777,9,999999999,120,0.1110,0,88,0.180,0.0,1.0 +2000,10,3,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,6.1,48,101900,502,1366,338,332,566,123,34800,53200,15200,2370,330,6.7,3,3,16.0,77777,9,999999999,120,0.1110,0,88,0.180,0.0,1.0 +2000,10,3,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,6.7,52,101900,288,1366,336,150,203,108,15500,15600,12200,2250,330,6.7,3,3,16.0,77777,9,999999999,129,0.1110,0,88,0.180,0.0,1.0 +2000,10,3,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,6.7,55,101900,62,1013,317,9,69,7,1300,3400,1000,140,330,4.1,0,0,16.0,77777,9,999999999,129,0.1110,0,88,0.180,0.0,1.0 +2000,10,3,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,6.7,60,101900,0,0,312,0,0,0,0,0,0,0,330,3.6,0,0,16.0,77777,9,999999999,129,0.1110,0,88,0.180,0.0,1.0 +2000,10,3,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,7.2,69,101900,0,0,306,0,0,0,0,0,0,0,290,3.6,0,0,16.0,77777,9,999999999,139,0.1110,0,88,0.180,0.0,1.0 +2000,10,3,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,6.7,64,101900,0,0,307,0,0,0,0,0,0,0,310,4.1,0,0,16.0,77777,9,999999999,139,0.1110,0,88,0.180,0.0,1.0 +2000,10,3,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,6.1,66,101900,0,0,302,0,0,0,0,0,0,0,310,3.1,0,0,16.0,77777,9,999999999,150,0.1110,0,88,0.180,0.0,1.0 +2000,10,3,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,5.6,69,101900,0,0,297,0,0,0,0,0,0,0,330,3.6,0,0,16.0,77777,9,999999999,150,0.1110,0,88,0.180,0.0,1.0 +2000,10,3,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,5.0,68,102000,0,0,294,0,0,0,0,0,0,0,330,3.6,0,0,16.0,77777,9,999999999,139,0.1110,0,88,0.180,0.0,1.0 +2000,10,4,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,5.6,74,102000,0,0,292,0,0,0,0,0,0,0,340,3.1,0,0,16.0,77777,9,999999999,139,0.1100,0,88,0.180,0.0,1.0 +2000,10,4,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,5.0,71,102000,0,0,292,0,0,0,0,0,0,0,330,5.2,0,0,16.0,77777,9,999999999,139,0.1100,0,88,0.180,0.0,1.0 +2000,10,4,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,-0.6,49,102000,0,0,284,0,0,0,0,0,0,0,330,4.1,0,0,16.0,77777,9,999999999,139,0.1100,0,88,0.180,0.0,1.0 +2000,10,4,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,-0.6,51,102000,0,0,282,0,0,0,0,0,0,0,330,3.6,0,0,16.0,77777,9,999999999,139,0.1100,0,88,0.180,0.0,1.0 +2000,10,4,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,-0.6,53,102000,0,0,279,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,139,0.1100,0,88,0.180,0.0,1.0 +2000,10,4,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,0.0,58,102000,0,0,278,0,0,0,0,0,0,0,30,1.5,0,0,16.0,77777,9,999999999,129,0.1100,0,88,0.180,0.0,1.0 +2000,10,4,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,-0.6,55,102100,65,1037,277,13,168,6,1900,10100,1200,200,50,2.1,0,0,16.0,77777,9,999999999,129,0.1100,0,88,0.180,0.0,1.0 +2000,10,4,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,-0.6,51,102100,290,1367,294,153,473,52,15700,37100,7800,950,330,1.5,3,3,16.0,77777,9,999999999,129,0.1100,0,88,0.180,0.0,1.0 +2000,10,4,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,-0.6,47,102100,504,1367,299,315,644,77,33100,60400,10700,1520,340,1.5,3,3,16.0,77777,9,999999999,129,0.1100,0,88,0.180,0.0,1.0 +2000,10,4,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,6.1,66,102100,678,1367,315,466,735,101,49400,72800,13200,2180,350,1.5,3,3,16.0,77777,9,999999999,129,0.1100,0,88,0.180,0.0,1.0 +2000,10,4,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,5.6,55,102100,801,1367,311,554,729,125,58700,73500,15500,2950,350,2.1,0,0,16.0,77777,9,999999999,129,0.1100,0,88,0.180,0.0,1.0 +2000,10,4,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,5.0,46,102000,863,1367,320,617,742,147,65200,75000,17700,3670,360,2.6,0,0,16.0,77777,9,999999999,129,0.1100,0,88,0.180,0.0,1.0 +2000,10,4,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,5.0,43,101900,862,1367,325,622,810,110,65500,81000,14200,2650,340,2.6,0,0,16.0,77777,9,999999999,129,0.1100,0,88,0.180,0.0,1.0 +2000,10,4,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,5.6,40,101900,796,1367,333,579,783,121,61500,79000,15300,2860,320,3.6,0,0,16.0,77777,9,999999999,139,0.1100,0,88,0.180,0.0,1.0 +2000,10,4,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,6.7,40,101800,671,1367,340,471,738,107,49600,72800,13700,2280,330,5.2,0,0,16.0,77777,9,999999999,139,0.1100,0,88,0.180,0.0,1.0 +2000,10,4,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,6.7,42,101800,495,1367,337,334,641,101,34300,59000,12900,1890,320,5.2,0,0,16.0,77777,9,999999999,139,0.1100,0,88,0.180,0.0,1.0 +2000,10,4,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,6.1,45,101800,280,1367,329,170,313,105,17400,23600,12500,2180,340,5.2,0,0,16.0,77777,9,999999999,139,0.1100,0,88,0.180,0.0,1.0 +2000,10,4,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,6.7,50,101800,57,968,325,9,99,5,1300,5500,900,130,330,4.1,0,0,16.0,77777,9,999999999,139,0.1100,0,88,0.180,0.0,1.0 +2000,10,4,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,7.2,56,101800,0,0,320,0,0,0,0,0,0,0,320,4.1,0,0,16.0,77777,9,999999999,150,0.1100,0,88,0.180,0.0,1.0 +2000,10,4,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,7.8,65,101900,0,0,313,0,0,0,0,0,0,0,320,4.1,0,0,16.0,77777,9,999999999,150,0.1100,0,88,0.180,0.0,1.0 +2000,10,4,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,7.8,72,101900,0,0,306,0,0,0,0,0,0,0,300,2.6,0,0,16.0,77777,9,999999999,150,0.1100,0,88,0.180,0.0,1.0 +2000,10,4,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,7.2,71,101900,0,0,303,0,0,0,0,0,0,0,330,2.6,0,0,16.0,77777,9,999999999,150,0.1100,0,88,0.180,0.0,1.0 +2000,10,4,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,6.7,71,101900,0,0,301,0,0,0,0,0,0,0,310,2.1,1,0,16.0,77777,9,999999999,150,0.1100,0,88,0.180,0.0,1.0 +2000,10,4,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,6.7,77,101900,0,0,296,0,0,0,0,0,0,0,320,2.1,0,0,16.0,77777,9,999999999,139,0.1100,0,88,0.180,0.0,1.0 +2000,10,5,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,7.2,79,101900,0,0,297,0,0,0,0,0,0,0,310,2.1,0,0,16.0,77777,9,999999999,129,0.1100,0,88,0.180,0.0,1.0 +2000,10,5,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,7.2,83,101900,0,0,294,0,0,0,0,0,0,0,310,3.1,0,0,16.0,77777,9,999999999,129,0.1100,0,88,0.180,0.0,1.0 +2000,10,5,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,6.7,80,101900,0,0,294,0,0,0,0,0,0,0,300,2.6,0,0,16.0,77777,9,999999999,120,0.1100,0,88,0.180,0.0,1.0 +2000,10,5,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,6.7,83,101900,0,0,291,0,0,0,0,0,0,0,310,2.1,0,0,16.0,77777,9,999999999,110,0.1100,0,88,0.180,0.0,1.0 +2000,10,5,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,6.7,86,101900,0,0,289,0,0,0,0,0,0,0,290,2.6,0,0,16.0,77777,9,999999999,110,0.1100,0,88,0.180,0.0,1.0 +2000,10,5,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,6.7,90,101900,0,0,287,0,0,0,0,0,0,0,300,2.6,0,0,16.0,77777,9,999999999,100,0.1100,0,88,0.180,0.0,1.0 +2000,10,5,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,7.2,93,102000,61,1014,287,11,143,5,1600,8500,1000,180,280,2.1,0,0,16.0,77777,9,999999999,100,0.1100,0,88,0.180,0.0,1.0 +2000,10,5,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,8.3,77,102000,285,1368,304,155,528,45,16100,41400,7500,840,280,2.6,0,0,16.0,77777,9,999999999,89,0.1100,0,88,0.180,0.0,1.0 +2000,10,5,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,1.1,34,101900,498,1368,318,305,598,86,31700,55600,11400,1660,100,10.3,0,0,16.0,77777,9,999999999,80,0.1100,0,88,0.180,0.0,1.0 +2000,10,5,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,-0.6,27,101900,672,1368,324,466,741,101,49300,73300,13200,2170,90,10.8,0,0,16.0,77777,9,999999999,80,0.1100,0,88,0.180,0.0,1.0 +2000,10,5,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,-0.6,25,101900,794,1368,329,536,664,150,56200,66300,17500,3430,90,9.3,0,0,16.0,77777,9,999999999,80,0.1100,0,88,0.180,0.0,1.0 +2000,10,5,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,-1.1,23,101900,857,1368,331,617,760,140,65400,76900,17100,3480,90,12.9,0,0,16.0,77777,9,999999999,89,0.1100,0,88,0.180,0.0,1.0 +2000,10,5,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,-1.1,21,101700,855,1368,336,592,732,133,63000,74200,16400,3320,90,13.4,0,0,16.0,77777,9,999999999,100,0.1100,0,88,0.180,0.0,1.0 +2000,10,5,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,-1.7,20,101700,789,1368,335,560,723,142,58800,72300,17000,3260,80,12.4,0,0,16.0,77777,9,999999999,100,0.1100,0,88,0.180,0.0,1.0 +2000,10,5,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,-1.1,21,101600,664,1368,336,458,695,119,47800,68100,14600,2480,90,11.8,0,0,16.0,77777,9,999999999,110,0.1100,0,88,0.180,0.0,1.0 +2000,10,5,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,-2.8,19,101600,487,1368,334,320,576,114,33700,53700,14500,2170,80,10.3,0,0,16.0,77777,9,999999999,120,0.1100,0,88,0.180,0.0,1.0 +2000,10,5,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,-1.7,23,101600,272,1368,328,161,285,104,16500,21200,12300,2170,90,8.8,0,0,16.0,77777,9,999999999,120,0.1100,0,88,0.180,0.0,1.0 +2000,10,5,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,-2.8,23,101600,52,923,319,7,83,4,1000,4600,800,110,90,8.8,0,0,16.0,77777,9,999999999,129,0.1100,0,88,0.180,0.0,1.0 +2000,10,5,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,-2.8,24,101600,0,0,317,0,0,0,0,0,0,0,100,6.7,0,0,16.0,77777,9,999999999,129,0.1100,0,88,0.180,0.0,1.0 +2000,10,5,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,-3.9,22,101500,0,0,315,0,0,0,0,0,0,0,100,7.2,0,0,16.0,77777,9,999999999,139,0.1100,0,88,0.180,0.0,1.0 +2000,10,5,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,-3.3,24,101600,0,0,313,0,0,0,0,0,0,0,90,6.2,0,0,16.0,77777,9,999999999,150,0.1100,0,88,0.180,0.0,1.0 +2000,10,5,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,-3.9,22,101500,0,0,313,0,0,0,0,0,0,0,90,9.3,0,0,16.0,77777,9,999999999,150,0.1100,0,88,0.180,0.0,1.0 +2000,10,5,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,-5.0,21,101500,0,0,309,0,0,0,0,0,0,0,100,8.2,0,0,16.0,77777,9,999999999,150,0.1100,0,88,0.180,0.0,1.0 +2000,10,5,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,-4.4,23,101600,0,0,307,0,0,0,0,0,0,0,110,6.2,0,0,16.0,77777,9,999999999,150,0.1100,0,88,0.180,0.0,1.0 +2000,10,6,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,-3.3,27,101500,0,0,304,0,0,0,0,0,0,0,110,5.2,0,0,16.0,77777,9,999999999,150,0.1090,0,88,0.180,0.0,1.0 +2000,10,6,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,-3.9,26,101500,0,0,303,0,0,0,0,0,0,0,100,6.7,0,0,16.0,77777,9,999999999,150,0.1090,0,88,0.180,0.0,1.0 +2000,10,6,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,-3.3,27,101500,0,0,304,0,0,0,0,0,0,0,110,6.7,0,0,16.0,77777,9,999999999,139,0.1090,0,88,0.180,0.0,1.0 +2000,10,6,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,-2.8,30,101500,0,0,302,0,0,0,0,0,0,0,120,5.7,0,0,16.0,77777,9,999999999,139,0.1090,0,88,0.180,0.0,1.0 +2000,10,6,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,-3.3,28,101500,0,0,301,0,0,0,0,0,0,0,120,6.2,0,0,16.0,77777,9,999999999,139,0.1090,0,88,0.180,0.0,1.0 +2000,10,6,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,-2.2,32,101500,0,0,301,0,0,0,0,0,0,0,130,5.7,0,0,16.0,77777,9,999999999,139,0.1090,0,88,0.180,0.0,1.0 +2000,10,6,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,-1.7,33,101500,57,969,301,9,105,5,1300,5900,900,130,130,4.6,0,0,16.0,77777,9,999999999,139,0.1090,0,88,0.180,0.0,1.0 +2000,10,6,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,-1.7,30,101500,280,1369,308,143,444,52,14700,34300,7600,940,120,6.2,0,0,16.0,77777,9,999999999,129,0.1090,0,88,0.180,0.0,1.0 +2000,10,6,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,-2.2,25,101500,492,1369,317,309,654,72,32400,61100,10400,1420,110,7.7,0,0,16.0,77777,9,999999999,129,0.1090,0,88,0.180,0.0,1.0 +2000,10,6,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,-1.1,25,101500,666,1369,326,460,752,93,47600,73100,11900,1890,110,6.2,0,0,16.0,77777,9,999999999,129,0.1090,0,88,0.180,0.0,1.0 +2000,10,6,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,-1.1,22,101500,788,1369,333,559,776,110,58000,76800,13700,2400,110,8.2,0,0,16.0,77777,9,999999999,129,0.1090,0,88,0.180,0.0,1.0 +2000,10,6,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,0.0,24,101400,851,1369,337,612,742,149,64500,74800,17800,3640,100,8.2,0,0,16.0,77777,9,999999999,139,0.1090,0,88,0.180,0.0,1.0 +2000,10,6,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,-2.8,17,101300,848,1369,339,617,834,98,65500,83700,13500,2410,90,11.8,0,0,16.0,77777,9,999999999,139,0.1090,0,88,0.180,0.0,1.0 +2000,10,6,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,-2.8,17,101300,782,1369,339,574,790,121,60900,79500,15300,2810,100,10.8,0,0,16.0,77777,9,999999999,139,0.1090,0,88,0.180,0.0,1.0 +2000,10,6,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,-2.2,18,101300,657,1369,342,445,652,131,46100,63400,15500,2670,100,9.8,0,0,16.0,77777,9,999999999,150,0.1090,0,88,0.180,0.0,1.0 +2000,10,6,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,-1.7,19,101200,480,1369,340,314,578,110,31900,52400,13500,1990,90,10.3,0,0,16.0,77777,9,999999999,150,0.1090,0,88,0.180,0.0,1.0 +2000,10,6,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,-2.2,20,101300,265,1369,332,137,179,103,14600,13600,12000,2210,100,7.7,0,0,16.0,77777,9,999999999,150,0.1090,0,88,0.180,0.0,1.0 +2000,10,6,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,-2.8,21,101300,47,878,324,4,48,3,700,2300,500,60,100,8.2,0,0,16.0,77777,9,999999999,160,0.1090,0,88,0.180,0.0,1.0 +2000,10,6,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,-2.2,23,101300,0,0,322,0,0,0,0,0,0,0,110,9.3,0,0,16.0,77777,9,999999999,160,0.1090,0,88,0.180,0.0,1.0 +2000,10,6,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,-2.2,24,101300,0,0,319,0,0,0,0,0,0,0,120,7.2,0,0,16.0,77777,9,999999999,160,0.1090,0,88,0.180,0.0,1.0 +2000,10,6,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,-1.1,28,101400,0,0,316,0,0,0,0,0,0,0,120,5.2,0,0,16.0,77777,9,999999999,170,0.1090,0,88,0.180,0.0,1.0 +2000,10,6,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,-1.1,29,101400,0,0,314,0,0,0,0,0,0,0,130,6.2,0,0,16.0,77777,9,999999999,170,0.1090,0,88,0.180,0.0,1.0 +2000,10,6,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,0.0,33,101400,0,0,312,0,0,0,0,0,0,0,130,5.7,0,0,16.0,77777,9,999999999,170,0.1090,0,88,0.180,0.0,1.0 +2000,10,6,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,0.0,34,101400,0,0,310,0,0,0,0,0,0,0,120,5.2,0,0,16.0,77777,9,999999999,160,0.1090,0,88,0.180,0.0,1.0 +2000,10,7,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,5.6,62,101400,0,0,304,0,0,0,0,0,0,0,340,2.6,0,0,16.0,77777,9,999999999,160,0.1080,0,88,0.180,0.0,1.0 +2000,10,7,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,4.4,63,101400,0,0,296,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,150,0.1080,0,88,0.180,0.0,1.0 +2000,10,7,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,4.4,68,101400,0,0,291,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,150,0.1080,0,88,0.180,0.0,1.0 +2000,10,7,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,5.0,80,101400,0,0,285,0,0,0,0,0,0,0,290,1.5,0,0,16.0,77777,9,999999999,139,0.1080,0,88,0.180,0.0,1.0 +2000,10,7,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,5.0,80,101400,0,0,285,0,0,0,0,0,0,0,310,1.5,0,0,16.0,77777,9,999999999,139,0.1080,0,88,0.180,0.0,1.0 +2000,10,7,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,3.9,76,101400,0,0,282,0,0,0,0,0,0,0,300,1.5,0,0,16.0,77777,9,999999999,129,0.1080,0,88,0.180,0.0,1.0 +2000,10,7,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,5.0,80,101500,54,947,285,8,129,4,1300,7600,800,150,0,0.0,0,0,16.0,77777,9,999999999,129,0.1080,0,88,0.180,0.0,1.0 +2000,10,7,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,5.6,69,101500,274,1369,297,141,452,50,14500,34600,7500,910,280,1.5,0,0,16.0,77777,9,999999999,129,0.1080,0,88,0.180,0.0,1.0 +2000,10,7,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,3.3,45,101500,487,1369,311,303,642,74,31800,59700,10500,1450,0,0.0,0,0,16.0,77777,9,999999999,120,0.1080,0,88,0.180,0.0,1.0 +2000,10,7,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,2.8,37,101500,660,1369,323,449,711,105,47300,70000,13400,2220,0,0.0,0,0,16.0,77777,9,999999999,120,0.1080,0,88,0.180,0.0,1.0 +2000,10,7,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,2.8,33,101500,782,1369,330,564,817,96,59400,81300,12900,2200,10,2.1,0,0,16.0,77777,9,999999999,120,0.1080,0,88,0.180,0.0,1.0 +2000,10,7,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,3.9,32,101500,844,1369,339,624,832,109,65500,83000,14100,2570,70,2.1,0,0,14.4,77777,9,999999999,120,0.1080,0,88,0.180,0.0,1.0 +2000,10,7,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,3.3,28,101400,842,1369,346,599,804,103,63200,80400,13600,2470,130,4.6,0,0,14.4,77777,9,999999999,120,0.1080,0,88,0.180,0.0,1.0 +2000,10,7,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,3.3,26,101400,775,1369,351,561,772,123,59400,77500,15400,2830,140,5.7,0,0,16.0,77777,9,999999999,129,0.1080,0,88,0.180,0.0,1.0 +2000,10,7,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,2.8,25,101300,649,1369,351,446,684,121,46400,66600,14700,2480,140,5.7,0,0,16.0,77777,9,999999999,129,0.1080,0,88,0.180,0.0,1.0 +2000,10,7,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,3.3,28,101300,472,1369,346,316,600,108,32100,54200,13400,1950,140,5.7,0,0,16.0,77777,9,999999999,129,0.1080,0,88,0.180,0.0,1.0 +2000,10,7,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,3.3,31,101300,257,1369,338,159,313,100,16300,22500,12000,2090,150,4.1,0,0,16.0,77777,9,999999999,129,0.1080,0,88,0.180,0.0,1.0 +2000,10,7,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,2.8,34,101400,42,833,328,4,76,2,700,4300,400,80,130,4.1,0,0,16.0,77777,9,999999999,139,0.1080,0,88,0.180,0.0,1.0 +2000,10,7,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,3.9,41,101400,0,0,321,0,0,0,0,0,0,0,120,4.6,0,0,16.0,77777,9,999999999,139,0.1080,0,88,0.180,0.0,1.0 +2000,10,7,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,4.4,44,101400,0,0,320,0,0,0,0,0,0,0,100,3.1,0,0,16.0,77777,9,999999999,139,0.1080,0,88,0.180,0.0,1.0 +2000,10,7,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,4.4,43,101500,0,0,322,0,0,0,0,0,0,0,90,2.6,0,0,16.0,77777,9,999999999,150,0.1080,0,88,0.180,0.0,1.0 +2000,10,7,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,4.4,53,101600,0,0,308,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,150,0.1080,0,88,0.180,0.0,1.0 +2000,10,7,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,6.7,62,101600,0,0,310,0,0,0,0,0,0,0,70,1.5,0,0,16.0,77777,9,999999999,150,0.1080,0,88,0.180,0.0,1.0 +2000,10,7,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,6.1,71,101700,0,0,303,0,0,0,0,0,0,0,0,0.0,1,1,16.0,77777,9,999999999,150,0.1080,0,88,0.180,0.0,1.0 +2000,10,8,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,6.1,83,101700,0,0,298,0,0,0,0,0,0,0,0,0.0,4,2,16.0,77777,9,999999999,150,0.1080,0,88,0.180,0.0,1.0 +2000,10,8,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,6.7,83,101700,0,0,291,0,0,0,0,0,0,0,260,2.1,0,0,16.0,77777,9,999999999,150,0.1080,0,88,0.180,0.0,1.0 +2000,10,8,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,6.1,89,101700,0,0,284,0,0,0,0,0,0,0,230,1.5,0,0,14.4,77777,9,999999999,150,0.1080,0,88,0.180,0.0,1.0 +2000,10,8,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,7.2,89,101700,0,0,290,0,0,0,0,0,0,0,260,1.5,0,0,16.0,77777,9,999999999,150,0.1080,0,88,0.180,0.0,1.0 +2000,10,8,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,7.8,93,101700,0,0,290,0,0,0,0,0,0,0,280,1.5,0,0,12.8,77777,9,999999999,150,0.1080,0,88,0.180,0.0,1.0 +2000,10,8,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,7.2,100,101800,0,0,295,0,0,0,0,0,0,0,260,1.5,3,3,12.8,77777,9,999999999,150,0.1080,0,88,0.180,0.0,1.0 +2000,10,8,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,6.7,100,101800,50,925,295,6,101,4,1100,5900,700,150,240,1.5,4,4,0.3,77777,9,999999999,150,0.1080,0,88,0.180,0.0,1.0 +2000,10,8,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,8.9,100,101800,269,1370,306,136,435,51,14000,33000,7500,920,0,0.0,4,4,16.0,77777,9,999999999,150,0.1080,0,88,0.180,0.0,1.0 +2000,10,8,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,6.7,69,101800,481,1370,316,288,568,88,29800,52200,11400,1670,80,2.1,3,3,16.0,77777,9,999999999,150,0.1080,0,88,0.180,0.0,1.0 +2000,10,8,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,7.2,62,101800,654,1370,313,417,571,143,44500,56900,17300,2930,90,3.1,0,0,16.0,77777,9,999999999,150,0.1080,0,88,0.180,0.0,1.0 +2000,10,8,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,7.2,56,101700,776,1370,320,491,557,175,52600,56800,20400,3930,60,2.1,0,0,16.0,77777,9,999999999,160,0.1080,0,88,0.180,0.0,1.0 +2000,10,8,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,7.2,52,101600,838,1370,344,570,665,163,59700,66600,18800,3870,30,2.1,6,5,16.0,77777,9,999999999,170,0.1080,0,88,0.180,0.0,1.0 +2000,10,8,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,7.2,47,101500,835,1370,356,524,514,210,55700,52700,23400,5040,30,2.1,6,6,16.0,7620,9,999999999,179,0.1080,0,88,0.180,0.0,1.0 +2000,10,8,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,7.2,42,101500,768,1370,361,489,484,217,51200,49100,23500,4950,350,2.1,6,5,16.0,7620,9,999999999,179,0.1080,0,88,0.180,0.0,1.0 +2000,10,8,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,9.4,49,101400,642,1370,364,404,452,191,41700,44600,20700,4020,330,2.1,6,5,16.0,7620,9,999999999,189,0.1080,0,88,0.180,0.0,1.0 +2000,10,8,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,10.0,51,101300,465,1370,364,198,114,159,21300,10700,17700,3620,320,1.5,6,5,16.0,7620,9,999999999,200,0.1080,0,88,0.180,0.0,1.0 +2000,10,8,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,10.6,55,101200,250,1370,365,67,0,67,7400,0,7400,2240,310,1.5,9,6,16.0,5486,9,999999999,209,0.1080,0,88,0.180,0.0,1.0 +2000,10,8,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,11.1,59,101200,38,811,360,1,0,1,100,0,100,40,300,3.1,9,5,16.0,6096,9,999999999,220,0.1080,0,88,0.180,0.0,1.0 +2000,10,8,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,11.1,67,101200,0,0,346,0,0,0,0,0,0,0,330,2.1,6,4,16.0,6096,9,999999999,229,0.1080,0,88,0.180,0.0,1.0 +2000,10,8,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,11.1,75,101100,0,0,336,0,0,0,0,0,0,0,0,0.0,7,3,16.0,6096,9,999999999,229,0.1080,0,88,0.180,0.0,1.0 +2000,10,8,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,11.1,77,101100,0,0,342,0,0,0,0,0,0,0,100,4.1,9,6,16.0,6096,9,999999999,240,0.1080,0,88,0.180,0.0,1.0 +2000,10,8,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,10.6,75,101100,0,0,350,0,0,0,0,0,0,0,110,1.5,9,8,16.0,2286,9,999999999,250,0.1080,0,88,0.180,0.0,1.0 +2000,10,8,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,11.1,81,101000,0,0,366,0,0,0,0,0,0,0,100,2.1,10,10,16.0,2134,9,999999999,240,0.1080,0,88,0.180,0.0,1.0 +2000,10,8,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,10.0,77,100900,0,0,344,0,0,0,0,0,0,0,130,3.1,10,8,16.0,2286,9,999999999,240,0.1080,0,88,0.180,0.0,1.0 +2000,10,9,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,10.0,77,100900,0,0,362,0,0,0,0,0,0,0,0,0.0,10,10,16.0,2591,9,999999999,229,0.1070,0,88,0.180,0.0,1.0 +2000,10,9,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,10.0,77,100900,0,0,362,0,0,0,0,0,0,0,0,0.0,10,10,16.0,1981,9,999999999,220,0.1070,0,88,0.180,0.0,1.0 +2000,10,9,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,8.3,67,100800,0,0,345,0,0,0,0,0,0,0,0,0.0,9,8,16.0,2134,9,999999999,220,0.1070,0,88,0.180,0.0,1.0 +2000,10,9,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,9.4,74,100700,0,0,351,0,0,0,0,0,0,0,0,0.0,10,9,16.0,1829,9,999999999,209,0.1070,0,88,0.180,0.0,1.0 +2000,10,9,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,10.6,80,100600,0,0,353,0,0,0,0,0,0,0,310,2.1,10,9,16.0,1372,9,999999999,200,0.1070,0,88,0.180,0.0,1.0 +2000,10,9,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,12.2,93,100700,0,0,344,0,0,0,0,0,0,0,0,0.0,10,8,11.2,1524,9,999999999,200,0.1070,0,88,0.180,1.0,1.0 +2000,10,9,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,12.8,97,100900,47,880,362,1,0,1,100,0,100,40,150,2.1,10,10,6.4,1433,9,999999999,189,0.1070,0,88,0.180,2.0,1.0 +2000,10,9,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,12.2,96,100800,263,1371,359,21,0,21,2600,0,2600,880,110,6.2,10,10,12.8,1036,9,999999999,179,0.1070,0,88,0.180,1.0,1.0 +2000,10,9,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,11.1,93,100800,475,1371,355,47,0,47,5700,0,5700,2110,110,5.7,10,10,8.0,1341,9,999999999,179,0.1070,0,88,0.180,0.0,1.0 +2000,10,9,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,11.7,93,100700,648,1371,358,84,0,84,10200,0,10200,3910,110,5.2,10,10,9.6,1128,9,999999999,170,0.1070,0,88,0.180,0.0,1.0 +2000,10,9,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,12.2,89,100700,770,1371,364,107,0,107,13000,0,13000,5140,0,0.0,10,10,14.4,792,9,999999999,170,0.1070,0,88,0.180,0.0,1.0 +2000,10,9,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,12.8,93,100700,831,1371,355,113,0,113,13800,0,13800,5540,280,2.6,10,9,16.0,762,9,999999999,170,0.1070,0,88,0.180,0.0,1.0 +2000,10,9,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,12.8,90,100600,828,1371,358,175,0,175,20600,0,20600,7980,50,1.5,10,9,16.0,2134,9,999999999,170,0.1070,0,88,0.180,0.0,1.0 +2000,10,9,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,12.8,87,100500,761,1371,347,159,0,159,18700,0,18700,7110,90,3.6,10,7,16.0,77777,9,999999999,170,0.1070,0,88,0.180,0.0,1.0 +2000,10,9,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,12.2,83,100500,635,1371,360,116,0,116,13600,0,13600,5090,0,0.0,10,9,16.0,1036,9,999999999,170,0.1070,0,88,0.180,0.0,1.0 +2000,10,9,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,12.2,80,100500,457,1371,373,78,0,78,9100,0,9100,3230,0,0.0,10,10,16.0,2134,9,999999999,160,0.1070,0,88,0.180,0.0,1.0 +2000,10,9,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,12.8,90,100500,242,1371,368,70,0,70,7700,0,7700,2260,300,2.1,10,10,11.2,1829,9,999999999,160,0.1070,0,88,0.180,0.0,1.0 +2000,10,9,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,13.3,93,100500,34,766,368,1,0,1,100,0,100,40,300,2.6,10,10,16.0,1006,9,999999999,160,0.1070,0,88,0.180,0.0,1.0 +2000,10,9,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,10.0,89,100600,0,0,351,0,0,0,0,0,0,0,320,6.2,10,10,9.6,701,9,999999999,160,0.1070,0,88,0.180,2.0,1.0 +2000,10,9,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,10.0,93,100600,0,0,348,0,0,0,0,0,0,0,330,4.1,10,10,16.0,2438,9,999999999,160,0.1070,0,88,0.180,3.0,1.0 +2000,10,9,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,10.0,89,100700,0,0,351,0,0,0,0,0,0,0,300,2.6,10,10,16.0,1036,9,999999999,160,0.1070,0,88,0.180,0.0,1.0 +2000,10,9,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,10.0,93,100700,0,0,348,0,0,0,0,0,0,0,200,2.1,10,10,16.0,1372,9,999999999,160,0.1070,0,88,0.180,0.0,1.0 +2000,10,9,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,10.0,93,100700,0,0,348,0,0,0,0,0,0,0,210,4.1,10,10,16.0,1128,9,999999999,160,0.1070,0,88,0.180,0.0,1.0 +2000,10,9,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,9.4,92,100800,0,0,345,0,0,0,0,0,0,0,210,4.6,10,10,16.0,823,9,999999999,160,0.1070,0,88,0.180,0.0,1.0 +2000,10,10,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,9.4,92,100800,0,0,345,0,0,0,0,0,0,0,210,2.6,10,10,16.0,762,9,999999999,160,0.1060,0,88,0.180,0.0,1.0 +2000,10,10,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,8.9,89,100800,0,0,344,0,0,0,0,0,0,0,0,0.0,10,10,11.2,732,9,999999999,170,0.1060,0,88,0.180,0.0,1.0 +2000,10,10,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,8.9,89,100800,0,0,344,0,0,0,0,0,0,0,190,1.5,10,10,16.0,1067,9,999999999,170,0.1060,0,88,0.180,0.0,1.0 +2000,10,10,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,9.4,92,100800,0,0,345,0,0,0,0,0,0,0,0,0.0,10,10,16.0,1006,9,999999999,170,0.1060,0,88,0.180,0.0,1.0 +2000,10,10,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,9.4,92,100800,0,0,345,0,0,0,0,0,0,0,210,2.6,10,10,16.0,671,9,999999999,170,0.1060,0,88,0.180,0.0,1.0 +2000,10,10,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,10.0,100,100800,0,0,343,0,0,0,0,0,0,0,230,2.6,10,10,11.2,732,9,999999999,179,0.1060,0,88,0.180,0.0,1.0 +2000,10,10,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,10.0,96,100800,44,857,345,1,0,1,100,0,100,40,220,1.5,10,10,9.6,762,9,999999999,179,0.1060,0,88,0.180,0.0,1.0 +2000,10,10,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,10.0,93,100800,258,1372,348,35,0,35,4100,0,4100,1380,240,1.5,10,10,8.0,762,9,999999999,179,0.1060,0,88,0.180,0.0,1.0 +2000,10,10,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,10.0,93,100900,470,1372,348,61,0,61,7300,0,7300,2650,270,3.6,10,10,8.0,701,9,999999999,179,0.1060,0,88,0.180,0.0,1.0 +2000,10,10,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,10.0,93,100900,642,1372,348,95,0,95,11400,0,11400,4330,240,2.6,10,10,16.0,1067,9,999999999,179,0.1060,0,88,0.180,0.0,1.0 +2000,10,10,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,10.6,93,100900,763,1372,352,85,0,85,10500,0,10500,4180,200,1.5,10,10,16.0,610,9,999999999,179,0.1060,0,88,0.180,0.0,1.0 +2000,10,10,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,10.0,86,100900,824,1372,353,113,0,113,13800,0,13800,5530,270,2.1,10,10,16.0,610,9,999999999,189,0.1060,0,88,0.180,0.0,1.0 +2000,10,10,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,10.0,83,100800,821,1372,356,100,0,100,12300,0,12300,4960,270,2.6,10,10,16.0,671,9,999999999,189,0.1060,0,88,0.180,0.0,1.0 +2000,10,10,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,9.4,74,100800,754,1372,361,86,0,86,10600,0,10600,4200,320,3.6,10,10,16.0,1067,9,999999999,189,0.1060,0,88,0.180,0.0,1.0 +2000,10,10,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,9.4,74,100900,627,1372,361,73,0,73,8900,0,8900,3410,310,4.6,10,10,16.0,1128,9,999999999,189,0.1060,0,88,0.180,0.0,1.0 +2000,10,10,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,9.4,74,100900,450,1372,361,53,0,53,6400,0,6400,2310,320,5.2,10,10,16.0,1097,9,999999999,189,0.1060,0,88,0.180,0.0,1.0 +2000,10,10,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,9.4,77,100900,235,1372,348,37,0,37,4300,0,4300,1410,340,2.6,10,9,16.0,1097,9,999999999,189,0.1060,0,88,0.180,0.0,1.0 +2000,10,10,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,11.1,89,100900,30,720,348,0,0,0,0,0,0,0,0,0.0,10,9,16.0,1097,9,999999999,189,0.1060,0,88,0.180,0.0,1.0 +2000,10,10,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,11.1,93,100900,0,0,355,0,0,0,0,0,0,0,240,2.6,10,10,16.0,975,9,999999999,189,0.1060,0,88,0.180,0.0,1.0 +2000,10,10,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,10.0,83,100900,0,0,356,0,0,0,0,0,0,0,320,3.6,10,10,16.0,823,9,999999999,189,0.1060,0,88,0.180,0.0,1.0 +2000,10,10,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,10.0,83,100900,0,0,356,0,0,0,0,0,0,0,310,3.1,10,10,16.0,884,9,999999999,189,0.1060,0,88,0.180,0.0,1.0 +2000,10,10,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,10.0,83,101000,0,0,356,0,0,0,0,0,0,0,300,3.1,10,10,16.0,945,9,999999999,200,0.1060,0,88,0.180,0.0,1.0 +2000,10,10,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,9.4,80,101000,0,0,356,0,0,0,0,0,0,0,310,5.2,10,10,16.0,579,9,999999999,189,0.1060,0,88,0.180,0.0,1.0 +2000,10,10,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,9.4,80,101000,0,0,356,0,0,0,0,0,0,0,320,3.1,10,10,16.0,1067,9,999999999,189,0.1060,0,88,0.180,0.0,1.0 +2000,10,11,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,9.4,83,101000,0,0,353,0,0,0,0,0,0,0,300,2.6,10,10,16.0,914,9,999999999,189,0.1060,0,88,0.180,0.0,1.0 +2000,10,11,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,9.4,83,101000,0,0,353,0,0,0,0,0,0,0,310,1.5,10,10,16.0,762,9,999999999,179,0.1060,0,88,0.180,0.0,1.0 +2000,10,11,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,9.4,83,101000,0,0,353,0,0,0,0,0,0,0,310,1.5,10,10,16.0,610,9,999999999,179,0.1060,0,88,0.180,0.0,1.0 +2000,10,11,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,9.4,83,101100,0,0,353,0,0,0,0,0,0,0,290,2.1,10,10,16.0,457,9,999999999,179,0.1060,0,88,0.180,0.0,1.0 +2000,10,11,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,9.4,83,101100,0,0,353,0,0,0,0,0,0,0,310,1.5,10,10,16.0,518,9,999999999,179,0.1060,0,88,0.180,0.0,1.0 +2000,10,11,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,10.0,89,101100,0,0,351,0,0,0,0,0,0,0,0,0.0,10,10,16.0,396,9,999999999,170,0.1060,0,88,0.180,0.0,1.0 +2000,10,11,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,10.0,86,101200,41,835,353,2,6,2,300,200,300,30,0,0.0,10,10,16.0,518,9,999999999,170,0.1060,0,88,0.180,0.0,1.0 +2000,10,11,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,10.0,86,101200,252,1373,353,42,0,42,4800,0,4800,1590,0,0.0,10,10,16.0,579,9,999999999,170,0.1060,0,88,0.180,0.0,1.0 +2000,10,11,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,10.0,86,101300,464,1373,353,108,0,108,12300,0,12300,4170,0,0.0,10,10,16.0,396,9,999999999,160,0.1060,0,88,0.180,0.0,1.0 +2000,10,11,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,10.6,86,101300,636,1373,357,179,6,176,20300,500,20100,6970,130,2.6,10,10,14.4,335,9,999999999,160,0.1060,0,88,0.180,0.0,1.0 +2000,10,11,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,10.0,80,101300,757,1373,342,214,12,208,24600,1000,24100,8650,30,1.5,8,8,12.8,1067,9,999999999,160,0.1060,0,88,0.180,0.0,1.0 +2000,10,11,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,10.0,77,101300,818,1373,362,244,12,236,27900,1000,27300,9880,320,2.6,10,10,14.4,853,9,999999999,170,0.1060,0,88,0.180,0.0,1.0 +2000,10,11,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,10.0,75,101300,814,1373,347,206,6,203,24000,500,23700,8850,310,3.1,8,8,16.0,853,9,999999999,170,0.1060,0,88,0.180,0.0,1.0 +2000,10,11,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,9.4,69,101300,747,1373,367,186,0,186,21500,0,21500,7930,320,2.1,10,10,16.0,914,9,999999999,179,0.1060,0,88,0.180,0.0,1.0 +2000,10,11,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,9.4,69,101300,620,1373,367,153,0,153,17500,0,17500,6220,0,0.0,10,10,16.0,762,9,999999999,179,0.1060,0,88,0.180,0.0,1.0 +2000,10,11,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,9.4,69,101300,443,1373,367,132,7,130,14800,500,14600,4610,0,0.0,10,10,14.4,823,9,999999999,189,0.1060,0,88,0.180,0.0,1.0 +2000,10,11,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,9.4,69,101400,227,1373,367,97,28,93,10600,2200,10300,2000,210,2.6,10,10,16.0,823,9,999999999,189,0.1060,0,88,0.180,0.0,1.0 +2000,10,11,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,10.0,75,101400,27,675,364,0,0,0,0,0,0,0,200,2.6,10,10,16.0,975,9,999999999,189,0.1060,0,88,0.180,0.0,1.0 +2000,10,11,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,10.0,77,101400,0,0,362,0,0,0,0,0,0,0,160,3.6,10,10,14.4,1036,9,999999999,200,0.1060,0,88,0.180,0.0,1.0 +2000,10,11,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,10.0,77,101400,0,0,362,0,0,0,0,0,0,0,130,1.5,10,10,16.0,1097,9,999999999,200,0.1060,0,88,0.180,0.0,1.0 +2000,10,11,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,10.6,80,101400,0,0,363,0,0,0,0,0,0,0,100,2.1,10,10,14.4,1036,9,999999999,209,0.1060,0,88,0.180,0.0,1.0 +2000,10,11,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,10.0,80,101500,0,0,359,0,0,0,0,0,0,0,110,3.1,10,10,16.0,1097,9,999999999,209,0.1060,0,88,0.180,0.0,1.0 +2000,10,11,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,10.6,84,101500,0,0,359,0,0,0,0,0,0,0,140,2.6,10,10,14.4,1036,9,999999999,209,0.1060,0,88,0.180,0.0,1.0 +2000,10,11,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,10.6,84,101500,0,0,359,0,0,0,0,0,0,0,110,2.6,10,10,14.4,975,9,999999999,209,0.1060,0,88,0.180,0.0,1.0 +2000,10,12,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,10.6,84,101500,0,0,359,0,0,0,0,0,0,0,140,2.1,10,10,14.4,1158,9,999999999,200,0.1050,0,88,0.180,0.0,1.0 +2000,10,12,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,10.6,84,101500,0,0,359,0,0,0,0,0,0,0,140,2.1,10,10,14.4,914,9,999999999,200,0.1050,0,88,0.180,0.0,1.0 +2000,10,12,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,10.6,84,101500,0,0,359,0,0,0,0,0,0,0,140,2.6,10,10,14.4,914,9,999999999,200,0.1050,0,88,0.180,0.0,1.0 +2000,10,12,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,10.6,84,101600,0,0,359,0,0,0,0,0,0,0,140,2.1,10,10,16.0,1067,9,999999999,189,0.1050,0,88,0.180,0.0,1.0 +2000,10,12,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,10.0,80,101600,0,0,359,0,0,0,0,0,0,0,160,2.6,10,10,16.0,1463,9,999999999,189,0.1050,0,88,0.180,0.0,1.0 +2000,10,12,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,10.0,80,101600,0,0,359,0,0,0,0,0,0,0,150,2.6,10,10,16.0,1097,9,999999999,189,0.1050,0,88,0.180,0.0,1.0 +2000,10,12,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,10.0,80,101600,38,790,359,2,10,1,200,500,200,20,160,3.1,10,10,16.0,1219,9,999999999,179,0.1050,0,88,0.180,0.0,1.0 +2000,10,12,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,10.0,80,101700,247,1373,359,34,0,34,4000,0,4000,1330,170,3.6,10,10,16.0,1280,9,999999999,179,0.1050,0,88,0.180,0.0,1.0 +2000,10,12,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,10.0,80,101700,458,1373,359,75,0,75,8800,0,8800,3120,180,2.1,10,10,16.0,1341,9,999999999,179,0.1050,0,88,0.180,0.0,1.0 +2000,10,12,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,10.6,80,101800,630,1373,363,105,0,105,12400,0,12400,4670,160,3.1,10,10,16.0,1219,9,999999999,179,0.1050,0,88,0.180,0.0,1.0 +2000,10,12,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,10.6,80,101800,751,1373,363,90,0,90,11000,0,11000,4370,190,2.6,10,10,16.0,1280,9,999999999,179,0.1050,0,88,0.180,0.0,1.0 +2000,10,12,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,10.6,78,101800,811,1373,365,113,0,113,13700,0,13700,5490,190,4.6,10,10,16.0,1158,9,999999999,179,0.1050,0,88,0.180,0.0,1.0 +2000,10,12,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,10.6,78,101900,808,1373,365,181,0,181,21200,0,21200,8080,170,4.1,10,10,16.0,823,9,999999999,179,0.1050,0,88,0.180,0.0,1.0 +2000,10,12,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,10.6,78,101900,740,1373,365,166,0,166,19300,0,19300,7240,190,3.6,10,10,16.0,1280,9,999999999,179,0.1050,0,88,0.180,0.0,1.0 +2000,10,12,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,10.6,75,101900,613,1373,368,73,0,73,8900,0,8900,3380,210,2.6,10,10,16.0,1402,9,999999999,189,0.1050,0,88,0.180,0.0,1.0 +2000,10,12,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,9.4,72,101900,435,1373,364,71,0,71,8300,0,8300,2930,230,3.1,10,10,16.0,1006,9,999999999,189,0.1050,0,88,0.180,0.0,1.0 +2000,10,12,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,9.4,72,101900,220,1373,364,62,0,62,6800,0,6800,2000,220,2.1,10,10,16.0,1128,9,999999999,189,0.1050,0,88,0.180,0.0,1.0 +2000,10,12,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,9.4,74,102000,24,630,361,0,0,0,0,0,0,0,210,4.6,10,10,16.0,1128,9,999999999,189,0.1050,0,88,0.180,0.0,1.0 +2000,10,12,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,10.0,80,102000,0,0,359,0,0,0,0,0,0,0,210,3.6,10,10,16.0,1676,9,999999999,200,0.1050,0,88,0.180,0.0,1.0 +2000,10,12,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,10.0,80,102100,0,0,359,0,0,0,0,0,0,0,210,3.6,10,10,16.0,1524,9,999999999,200,0.1050,0,88,0.180,0.0,1.0 +2000,10,12,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,10.0,80,102100,0,0,359,0,0,0,0,0,0,0,200,3.6,10,10,16.0,1494,9,999999999,200,0.1050,0,88,0.180,0.0,1.0 +2000,10,12,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,10.0,83,102200,0,0,356,0,0,0,0,0,0,0,210,3.6,10,10,16.0,1829,9,999999999,200,0.1050,0,88,0.180,0.0,1.0 +2000,10,12,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,10.0,83,102100,0,0,356,0,0,0,0,0,0,0,210,3.6,10,10,16.0,1829,9,999999999,200,0.1050,0,88,0.180,0.0,1.0 +2000,10,12,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,10.6,86,102100,0,0,357,0,0,0,0,0,0,0,210,3.6,10,10,16.0,518,9,999999999,189,0.1050,0,88,0.180,0.0,1.0 +2000,10,13,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,10.6,86,102200,0,0,357,0,0,0,0,0,0,0,220,2.6,10,10,16.0,396,9,999999999,189,0.1040,0,88,0.180,0.0,1.0 +2000,10,13,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,10.6,86,102200,0,0,357,0,0,0,0,0,0,0,220,2.6,10,10,16.0,396,9,999999999,179,0.1040,0,88,0.180,0.0,1.0 +2000,10,13,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,10.6,86,102200,0,0,357,0,0,0,0,0,0,0,240,3.1,10,10,16.0,396,9,999999999,179,0.1040,0,88,0.180,0.0,1.0 +2000,10,13,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,10.6,90,102200,0,0,354,0,0,0,0,0,0,0,230,2.6,10,10,14.4,396,9,999999999,170,0.1040,0,88,0.180,0.0,1.0 +2000,10,13,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,11.1,96,102200,0,0,352,0,0,0,0,0,0,0,200,2.6,10,10,9.6,792,9,999999999,160,0.1040,0,88,0.180,1.0,1.0 +2000,10,13,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,11.1,96,102200,0,0,352,0,0,0,0,0,0,0,220,3.6,10,10,6.4,792,9,999999999,160,0.1040,0,88,0.180,1.0,1.0 +2000,10,13,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,11.1,93,102300,35,767,355,1,11,1,200,500,200,20,220,3.1,10,10,16.0,305,9,999999999,150,0.1040,0,88,0.180,0.0,1.0 +2000,10,13,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,11.7,97,102300,241,1374,355,44,0,44,5000,0,5000,1630,210,2.6,10,10,16.0,366,9,999999999,150,0.1040,0,88,0.180,0.0,1.0 +2000,10,13,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,11.7,93,102300,452,1374,358,107,0,107,12200,0,12200,4090,210,3.1,10,10,3.2,366,9,999999999,139,0.1040,0,88,0.180,0.0,1.0 +2000,10,13,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,12.2,93,102400,624,1374,361,73,0,73,8900,0,8900,3400,210,3.6,10,10,4.0,427,9,999999999,139,0.1040,0,88,0.180,1.0,1.0 +2000,10,13,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,12.2,93,102300,745,1374,361,124,0,124,14800,0,14800,5740,210,4.1,10,10,8.0,427,9,999999999,139,0.1040,0,88,0.180,1.0,1.0 +2000,10,13,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,12.2,89,102300,805,1374,364,113,0,113,13700,0,13700,5470,210,4.6,10,10,11.2,884,9,999999999,139,0.1040,0,88,0.180,1.0,1.0 +2000,10,13,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,12.8,93,102300,801,1374,365,131,0,131,15700,0,15700,6200,200,3.1,10,10,16.0,427,9,999999999,150,0.1040,0,88,0.180,0.0,1.0 +2000,10,13,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,12.8,87,102200,733,1374,371,127,0,127,15100,0,15100,5820,200,3.1,10,10,16.0,488,9,999999999,150,0.1040,0,88,0.180,0.0,1.0 +2000,10,13,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,12.8,87,102200,606,1374,371,66,0,66,8100,0,8100,3080,210,3.1,10,10,16.0,701,9,999999999,160,0.1040,0,88,0.180,0.0,1.0 +2000,10,13,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,12.8,83,102200,428,1374,374,45,0,45,5400,0,5400,1970,210,3.6,10,10,16.0,610,9,999999999,160,0.1040,0,88,0.180,0.0,1.0 +2000,10,13,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,12.8,83,102200,212,1374,374,66,0,66,7200,0,7200,2040,230,3.6,10,10,16.0,1067,9,999999999,170,0.1040,0,88,0.180,0.0,1.0 +2000,10,13,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,12.8,87,102200,21,584,371,0,0,0,0,0,0,0,220,3.1,10,10,16.0,1128,9,999999999,170,0.1040,0,88,0.180,0.0,1.0 +2000,10,13,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,12.8,90,102300,0,0,368,0,0,0,0,0,0,0,320,3.6,10,10,8.0,518,9,999999999,179,0.1040,0,88,0.180,0.0,1.0 +2000,10,13,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,11.7,90,102400,0,0,361,0,0,0,0,0,0,0,310,4.1,10,10,11.2,975,9,999999999,179,0.1040,0,88,0.180,1.0,1.0 +2000,10,13,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,10.6,86,102400,0,0,357,0,0,0,0,0,0,0,330,5.2,10,10,16.0,1463,9,999999999,189,0.1040,0,88,0.180,0.0,1.0 +2000,10,13,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,8.9,77,102400,0,0,345,0,0,0,0,0,0,0,320,4.6,9,9,16.0,1676,9,999999999,189,0.1040,0,88,0.180,0.0,1.0 +2000,10,13,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,8.3,77,102500,0,0,334,0,0,0,0,0,0,0,310,4.6,8,8,16.0,1829,9,999999999,189,0.1040,0,88,0.180,0.0,1.0 +2000,10,13,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,8.3,86,102500,0,0,315,0,0,0,0,0,0,0,300,2.6,6,5,16.0,77777,9,999999999,189,0.1040,0,88,0.180,0.0,1.0 +2000,10,14,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,7.8,93,102500,0,0,300,0,0,0,0,0,0,0,260,2.1,5,2,16.0,77777,9,999999999,179,0.1040,0,88,0.180,0.0,1.0 +2000,10,14,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,8.3,100,102500,0,0,301,0,0,0,0,0,0,0,0,0.0,5,3,16.0,77777,9,999999999,179,0.1040,0,88,0.180,0.0,1.0 +2000,10,14,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,7.8,97,102500,0,0,316,0,0,0,0,0,0,0,0,0.0,8,8,16.0,1463,9,999999999,179,0.1040,0,88,0.180,0.0,1.0 +2000,10,14,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,7.8,97,102500,0,0,316,0,0,0,0,0,0,0,170,2.1,8,8,16.0,1524,9,999999999,170,0.1040,0,88,0.180,0.0,1.0 +2000,10,14,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,7.8,97,102500,0,0,316,0,0,0,0,0,0,0,160,1.5,8,8,16.0,1524,9,999999999,170,0.1040,0,88,0.180,0.0,1.0 +2000,10,14,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,8.9,97,102500,0,0,322,0,0,0,0,0,0,0,130,2.1,8,8,16.0,1524,9,999999999,170,0.1040,0,88,0.180,0.0,1.0 +2000,10,14,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,8.3,93,102500,32,745,321,0,0,0,0,0,0,0,0,0.0,9,8,16.0,1829,9,999999999,160,0.1040,0,88,0.180,0.0,1.0 +2000,10,14,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,8.3,89,102500,235,1375,324,91,167,62,9600,11500,7600,1170,160,1.5,9,8,16.0,1676,9,999999999,160,0.1040,0,88,0.180,0.0,1.0 +2000,10,14,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,8.9,89,102500,447,1375,328,153,61,133,16800,5700,14900,3530,0,0.0,9,8,16.0,1524,9,999999999,160,0.1040,0,88,0.180,0.0,1.0 +2000,10,14,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,9.4,86,102500,618,1375,350,189,23,178,21300,1800,20500,6890,310,1.5,10,10,16.0,1524,9,999999999,150,0.1040,0,88,0.180,0.0,1.0 +2000,10,14,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,8.9,80,102400,738,1375,335,462,462,213,48100,46600,23000,4750,0,0.0,8,8,16.0,1311,9,999999999,150,0.1040,0,88,0.180,0.0,1.0 +2000,10,14,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,8.3,69,102400,798,1375,330,523,581,185,55900,59400,21300,4240,320,2.6,6,5,16.0,7620,9,999999999,150,0.1040,0,88,0.180,0.0,1.0 +2000,10,14,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,8.3,67,102300,794,1375,345,551,739,123,58400,74400,15300,2880,330,2.6,8,8,16.0,1524,9,999999999,150,0.1040,0,88,0.180,0.0,1.0 +2000,10,14,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,7.2,62,102200,726,1375,344,507,719,126,53100,71300,15400,2750,330,2.1,8,8,16.0,1128,9,999999999,150,0.1040,0,88,0.180,0.0,1.0 +2000,10,14,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,6.7,58,102200,598,1375,346,411,569,163,42800,55500,18600,3310,330,2.1,8,8,16.0,1433,9,999999999,150,0.1040,0,88,0.180,0.0,1.0 +2000,10,14,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,7.2,57,102100,420,1375,337,200,178,145,21500,16200,16500,3250,0,0.0,5,5,16.0,77777,9,999999999,150,0.1040,0,88,0.180,0.0,1.0 +2000,10,14,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,6.7,60,102100,205,1375,328,95,10,93,10000,400,10000,2280,90,2.1,4,4,16.0,77777,9,999999999,150,0.1040,0,88,0.180,0.0,1.0 +2000,10,14,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,8.3,72,102000,18,561,323,0,0,0,0,0,0,0,0,0.0,3,3,16.0,77777,9,999999999,150,0.1040,0,88,0.180,0.0,1.0 +2000,10,14,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,8.3,83,102000,0,0,300,0,0,0,0,0,0,0,270,1.5,0,0,16.0,77777,9,999999999,150,0.1040,0,88,0.180,0.0,1.0 +2000,10,14,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,8.3,83,102000,0,0,300,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,150,0.1040,0,88,0.180,0.0,1.0 +2000,10,14,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,8.3,89,102000,0,0,295,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,150,0.1040,0,88,0.180,0.0,1.0 +2000,10,14,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,7.8,93,101900,0,0,290,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,150,0.1040,0,88,0.180,0.0,1.0 +2000,10,14,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,7.8,97,101900,0,0,300,0,0,0,0,0,0,0,220,1.5,3,3,16.0,77777,9,999999999,150,0.1040,0,88,0.180,0.0,1.0 +2000,10,14,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,6.7,93,101900,0,0,297,0,0,0,0,0,0,0,0,0.0,3,3,16.0,77777,9,999999999,160,0.1040,0,88,0.180,0.0,1.0 +2000,10,15,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,7.2,96,101900,0,0,329,0,0,0,0,0,0,0,260,2.6,10,10,9.6,183,9,999999999,160,0.1030,0,88,0.180,0.0,1.0 +2000,10,15,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,7.2,100,101800,0,0,326,0,0,0,0,0,0,0,0,0.0,10,10,0.4,183,9,999999999,160,0.1030,0,88,0.180,0.0,1.0 +2000,10,15,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,6.7,100,101800,0,0,323,0,0,0,0,0,0,0,140,3.1,10,10,5.2,91,9,999999999,160,0.1030,0,88,0.180,0.0,1.0 +2000,10,15,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,6.1,100,101800,0,0,320,0,0,0,0,0,0,0,130,2.1,10,10,0.4,61,9,999999999,160,0.1030,0,88,0.180,0.0,1.0 +2000,10,15,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,6.1,100,101800,0,0,320,0,0,0,0,0,0,0,100,3.1,10,10,1.6,183,9,999999999,160,0.1030,0,88,0.180,0.0,1.0 +2000,10,15,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,5.6,97,101800,0,0,304,0,0,0,0,0,0,0,120,2.6,9,8,9.6,183,9,999999999,160,0.1030,0,88,0.180,0.0,1.0 +2000,10,15,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,6.1,93,101800,29,699,309,0,0,0,0,0,0,0,0,0.0,8,8,16.0,183,9,999999999,160,0.1030,0,88,0.180,0.0,1.0 +2000,10,15,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,6.7,93,101900,230,1376,328,43,0,43,4900,0,4900,1570,60,2.1,10,10,11.2,183,9,999999999,160,0.1030,0,88,0.180,0.0,1.0 +2000,10,15,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,6.7,93,102000,441,1376,328,111,6,109,12600,400,12400,4090,80,2.6,10,10,8.0,183,9,999999999,160,0.1030,0,88,0.180,0.0,1.0 +2000,10,15,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,7.2,89,102000,612,1376,318,178,12,173,20200,900,19800,6720,90,2.1,9,8,12.8,244,9,999999999,160,0.1030,0,88,0.180,0.0,1.0 +2000,10,15,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,7.2,86,101900,732,1376,320,214,12,207,24400,1000,23900,8440,100,3.6,9,8,16.0,2591,9,999999999,160,0.1030,0,88,0.180,0.0,1.0 +2000,10,15,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,7.2,77,101900,792,1376,328,428,293,259,45700,31000,27900,6390,0,0.0,10,8,16.0,3658,9,999999999,160,0.1030,0,88,0.180,0.0,1.0 +2000,10,15,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,7.8,74,101800,787,1376,334,514,594,173,55200,60700,20400,3900,50,2.6,8,8,16.0,3658,9,999999999,160,0.1030,0,88,0.180,0.0,1.0 +2000,10,15,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,7.8,72,101800,719,1376,344,474,584,168,50400,58900,19500,3610,310,4.6,9,9,16.0,1829,9,999999999,160,0.1030,0,88,0.180,0.0,1.0 +2000,10,15,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,8.3,72,101900,591,1376,328,405,678,113,42000,64900,14000,2230,330,2.1,5,5,16.0,7620,9,999999999,160,0.1030,0,88,0.180,0.0,1.0 +2000,10,15,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,8.3,67,101800,413,1376,328,275,618,89,28100,53900,11800,1600,60,2.6,3,3,16.0,7620,9,999999999,160,0.1030,0,88,0.180,0.0,1.0 +2000,10,15,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,6.7,62,101800,198,1376,329,128,246,93,12900,15000,10800,2030,210,2.1,5,5,16.0,77777,9,999999999,160,0.1030,0,88,0.180,0.0,1.0 +2000,10,15,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,7.2,69,101800,15,516,306,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,160,0.1030,0,88,0.180,0.0,1.0 +2000,10,15,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.0,9.0,87,101800,0,0,306,0,0,0,0,0,0,0,110,3.1,2,1,16.0,77777,9,999999999,160,0.1030,0,88,0.180,0.0,1.0 +2000,10,15,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.0,9.0,82,101700,0,0,325,0,0,0,0,0,0,0,120,4.1,6,6,16.1,77777,9,999999999,160,0.1030,0,88,0.180,0.0,1.0 +2000,10,15,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,8.9,86,101800,0,0,318,0,0,0,0,0,0,0,110,3.6,7,5,16.0,3658,9,999999999,160,0.1030,0,88,0.180,0.0,1.0 +2000,10,15,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,8.9,83,101800,0,0,340,0,0,0,0,0,0,0,120,3.6,10,9,16.0,2896,9,999999999,160,0.1030,0,88,0.180,0.0,1.0 +2000,10,15,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,8.9,86,101800,0,0,347,0,0,0,0,0,0,0,150,3.6,10,10,16.0,2438,9,999999999,160,0.1030,0,88,0.180,0.0,1.0 +2000,10,15,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,8.9,86,101800,0,0,347,0,0,0,0,0,0,0,130,4.6,10,10,16.0,1829,9,999999999,170,0.1030,0,88,0.180,0.0,1.0 +2000,10,16,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,8.9,86,101800,0,0,347,0,0,0,0,0,0,0,140,4.1,10,10,16.0,1676,9,999999999,170,0.1020,0,88,0.180,0.0,1.0 +2000,10,16,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,8.9,83,101800,0,0,350,0,0,0,0,0,0,0,140,3.1,10,10,16.0,1402,9,999999999,170,0.1020,0,88,0.180,0.0,1.0 +2000,10,16,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,8.9,83,101700,0,0,350,0,0,0,0,0,0,0,140,3.1,10,10,16.0,1219,9,999999999,170,0.1020,0,88,0.180,0.0,1.0 +2000,10,16,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,8.9,83,101700,0,0,350,0,0,0,0,0,0,0,120,4.6,10,10,16.0,1097,9,999999999,179,0.1020,0,88,0.180,0.0,1.0 +2000,10,16,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,9.4,86,101700,0,0,350,0,0,0,0,0,0,0,100,4.1,10,10,16.0,1036,9,999999999,179,0.1020,0,88,0.180,0.0,1.0 +2000,10,16,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,9.4,83,101700,0,0,353,0,0,0,0,0,0,0,120,4.6,10,10,16.0,1036,9,999999999,179,0.1020,0,88,0.180,0.0,1.0 +2000,10,16,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,10.0,89,101700,27,677,351,0,0,0,0,0,0,0,120,4.1,10,10,16.0,1189,9,999999999,179,0.1020,0,88,0.180,0.0,1.0 +2000,10,16,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,10.0,86,101800,224,1377,353,55,34,50,6100,2600,5700,1260,120,5.2,10,10,16.0,1250,9,999999999,189,0.1020,0,88,0.180,0.0,1.0 +2000,10,16,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,10.0,80,101800,435,1377,359,51,0,51,6100,0,6100,2210,120,4.1,10,10,16.0,1280,9,999999999,189,0.1020,0,88,0.180,0.0,1.0 +2000,10,16,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,10.0,75,101700,606,1377,354,152,6,149,17400,400,17200,6020,120,4.1,9,9,16.0,2134,9,999999999,189,0.1020,0,88,0.180,0.0,1.0 +2000,10,16,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,10.0,63,101700,726,1377,355,264,30,249,29800,2700,28400,9440,110,5.2,9,7,16.0,6096,9,999999999,189,0.1020,0,88,0.180,0.0,1.0 +2000,10,16,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,10.0,58,101600,785,1377,353,315,78,271,34700,7900,30100,8380,90,4.6,8,5,16.0,6096,9,999999999,189,0.1020,0,88,0.180,0.0,1.0 +2000,10,16,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,7.2,42,101500,780,1377,361,157,0,157,18500,0,18500,7100,230,5.2,8,5,16.0,6096,9,999999999,200,0.1020,0,88,0.180,0.0,1.0 +2000,10,16,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,7.8,45,101500,712,1377,362,140,0,140,16400,0,16400,6210,220,5.7,9,6,16.0,4572,9,999999999,200,0.1020,0,88,0.180,0.0,1.0 +2000,10,16,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,8.9,51,101500,584,1377,389,126,0,126,14600,0,14600,5220,220,2.1,10,10,16.0,3353,9,999999999,200,0.1020,0,88,0.180,0.0,1.0 +2000,10,16,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,10.6,59,101500,406,1377,378,65,0,65,7600,0,7600,2660,200,3.1,10,9,16.0,3353,9,999999999,200,0.1020,0,88,0.180,0.0,1.0 +2000,10,16,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,10.6,61,101500,191,1377,351,112,66,103,12200,5000,11500,1900,170,3.1,7,4,16.0,3658,9,999999999,209,0.1020,0,88,0.180,0.0,1.0 +2000,10,16,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,11.7,72,101500,13,470,368,0,0,0,0,0,0,0,120,3.6,9,9,16.0,3353,9,999999999,209,0.1020,0,88,0.180,0.0,1.0 +2000,10,16,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,11.7,78,101500,0,0,333,0,0,0,0,0,0,0,140,2.1,4,2,16.0,77777,9,999999999,209,0.1020,0,88,0.180,0.0,1.0 +2000,10,16,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,11.7,78,101600,0,0,333,0,0,0,0,0,0,0,140,3.6,4,2,16.0,4267,9,999999999,209,0.1020,0,88,0.180,0.0,1.0 +2000,10,16,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,12.2,89,101600,0,0,329,0,0,0,0,0,0,0,110,3.6,5,3,16.0,6096,9,999999999,209,0.1020,0,88,0.180,0.0,1.0 +2000,10,16,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,11.1,83,101600,0,0,328,0,0,0,0,0,0,0,110,4.6,4,3,16.0,77777,9,999999999,220,0.1020,0,88,0.180,0.0,1.0 +2000,10,16,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,11.7,90,101600,0,0,319,0,0,0,0,0,0,0,100,4.6,1,1,16.0,77777,9,999999999,209,0.1020,0,88,0.180,0.0,1.0 +2000,10,16,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,10.6,93,101600,0,0,305,0,0,0,0,0,0,0,120,3.1,0,0,16.0,77777,9,999999999,209,0.1020,0,88,0.180,0.0,1.0 +2000,10,17,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,11.1,89,101600,0,0,310,0,0,0,0,0,0,0,120,5.2,0,0,16.0,77777,9,999999999,200,0.1020,0,88,0.180,0.0,1.0 +2000,10,17,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,10.6,93,101600,0,0,305,0,0,0,0,0,0,0,120,4.1,1,0,16.0,77777,9,999999999,189,0.1020,0,88,0.180,0.0,1.0 +2000,10,17,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,10.0,96,101600,0,0,305,0,0,0,0,0,0,0,110,3.1,1,1,16.0,77777,9,999999999,189,0.1020,0,88,0.180,0.0,1.0 +2000,10,17,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,10.0,96,101500,0,0,312,0,0,0,0,0,0,0,100,4.1,5,3,16.0,77777,9,999999999,179,0.1020,0,88,0.180,0.0,1.0 +2000,10,17,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,9.4,96,101500,0,0,311,0,0,0,0,0,0,0,110,3.6,5,4,16.0,7620,9,999999999,179,0.1020,0,88,0.180,0.0,1.0 +2000,10,17,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,8.9,93,101500,0,0,309,0,0,0,0,0,0,0,150,2.6,5,3,16.0,7620,9,999999999,170,0.1020,0,88,0.180,0.0,1.0 +2000,10,17,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,8.3,93,101500,24,654,302,0,0,0,0,0,0,0,110,3.6,4,2,16.0,6096,9,999999999,170,0.1020,0,88,0.180,0.0,1.0 +2000,10,17,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,8.9,86,101500,219,1377,310,87,256,46,9100,17200,6400,820,110,4.1,3,2,16.0,6096,9,999999999,160,0.1020,0,88,0.180,0.0,1.0 +2000,10,17,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,8.9,77,101500,429,1377,321,239,456,96,25100,40900,12400,1790,150,2.6,4,3,16.0,6096,9,999999999,160,0.1020,0,88,0.180,0.0,1.0 +2000,10,17,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,9.4,67,101500,600,1377,320,407,679,111,42300,65200,13800,2210,110,3.6,1,0,16.0,6096,9,999999999,150,0.1020,0,88,0.180,0.0,1.0 +2000,10,17,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,10.0,63,101500,719,1377,328,467,651,126,48900,64500,15200,2730,0,0.0,0,0,16.0,6096,9,999999999,150,0.1020,0,88,0.180,0.0,1.0 +2000,10,17,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,10.0,58,101400,778,1377,340,511,587,179,54700,59800,20700,4020,280,2.6,1,1,16.0,6096,9,999999999,150,0.1020,0,88,0.180,0.0,1.0 +2000,10,17,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,10.0,53,101300,773,1377,352,521,576,196,55000,58600,22000,4430,200,3.6,3,2,16.0,6096,9,999999999,160,0.1020,0,88,0.180,0.0,1.0 +2000,10,17,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,10.0,49,101300,705,1377,358,248,37,229,27200,3700,25300,6840,220,6.2,4,2,16.0,6096,9,999999999,160,0.1020,0,88,0.180,0.0,1.0 +2000,10,17,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,9.4,47,101300,577,1377,363,193,32,180,21200,3100,19900,5050,200,4.6,4,4,16.0,6096,9,999999999,160,0.1020,0,88,0.180,0.0,1.0 +2000,10,17,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,8.9,44,101300,399,1377,366,262,360,158,27000,31900,17800,3430,200,6.7,5,4,16.0,6096,9,999999999,160,0.1020,0,88,0.180,0.0,1.0 +2000,10,17,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,8.9,47,101300,184,1377,395,0,0,0,0,0,0,0,180,4.1,10,10,16.0,2743,9,999999999,160,0.1020,0,88,0.180,0.0,1.0 +2000,10,17,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,8.9,49,101300,11,425,381,0,0,0,0,0,0,0,170,4.6,9,9,16.0,2591,9,999999999,170,0.1020,0,88,0.180,0.0,1.0 +2000,10,17,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,9.4,52,101300,0,0,390,0,0,0,0,0,0,0,190,5.2,10,10,16.0,2896,9,999999999,170,0.1020,0,88,0.180,0.0,1.0 +2000,10,17,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,9.4,54,101400,0,0,387,0,0,0,0,0,0,0,140,3.6,10,10,16.0,2743,9,999999999,170,0.1020,0,88,0.180,0.0,1.0 +2000,10,17,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,11.1,61,101400,0,0,389,0,0,0,0,0,0,0,160,3.6,10,10,16.0,1829,9,999999999,170,0.1020,0,88,0.180,0.0,1.0 +2000,10,17,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,12.8,78,101500,0,0,380,0,0,0,0,0,0,0,180,4.6,10,10,16.0,1128,9,999999999,179,0.1020,0,88,0.180,0.0,1.0 +2000,10,17,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,13.3,86,101600,0,0,374,0,0,0,0,0,0,0,110,2.1,10,10,4.0,914,9,999999999,170,0.1020,0,88,0.180,1.0,1.0 +2000,10,17,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,13.3,90,101600,0,0,371,0,0,0,0,0,0,0,170,3.6,10,10,16.0,1189,9,999999999,170,0.1020,0,88,0.180,2.0,1.0 +2000,10,18,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,13.9,93,101600,0,0,372,0,0,0,0,0,0,0,180,4.6,10,10,16.0,2134,9,999999999,170,0.1010,0,88,0.180,0.0,1.0 +2000,10,18,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,13.9,97,101600,0,0,369,0,0,0,0,0,0,0,180,5.2,10,10,16.0,3048,9,999999999,170,0.1010,0,88,0.180,0.0,1.0 +2000,10,18,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,13.9,93,101600,0,0,372,0,0,0,0,0,0,0,190,4.6,10,10,16.0,1402,9,999999999,170,0.1010,0,88,0.180,0.0,1.0 +2000,10,18,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,13.9,97,101600,0,0,369,0,0,0,0,0,0,0,210,4.1,10,10,16.0,1676,9,999999999,160,0.1010,0,88,0.180,0.0,1.0 +2000,10,18,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,13.3,96,101700,0,0,339,0,0,0,0,0,0,0,210,4.6,6,6,16.0,77777,9,999999999,160,0.1010,0,88,0.180,0.0,1.0 +2000,10,18,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,12.8,97,101700,0,0,330,0,0,0,0,0,0,0,190,3.1,4,4,16.0,77777,9,999999999,160,0.1010,0,88,0.180,0.0,1.0 +2000,10,18,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,12.8,97,101800,22,609,332,0,0,0,0,0,0,0,120,2.1,5,5,16.0,7620,9,999999999,160,0.1010,0,88,0.180,0.0,1.0 +2000,10,18,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,12.8,90,101900,213,1378,338,41,0,41,4700,0,4700,1480,220,3.1,5,5,16.0,7620,9,999999999,160,0.1010,0,88,0.180,0.0,1.0 +2000,10,18,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,12.8,87,101900,423,1378,340,174,139,131,18800,12700,14900,2940,170,1.5,8,5,16.0,7620,9,999999999,150,0.1010,0,88,0.180,0.0,1.0 +2000,10,18,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,12.8,81,101900,594,1378,353,219,64,191,24000,6300,21300,5370,150,3.6,8,7,16.0,7620,9,999999999,150,0.1010,0,88,0.180,0.0,1.0 +2000,10,18,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,10.6,67,102000,713,1378,349,388,302,231,41300,31400,24900,5400,240,2.6,8,6,16.0,7620,9,999999999,150,0.1010,0,88,0.180,0.0,1.0 +2000,10,18,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,10.6,65,101900,772,1378,369,369,168,274,39900,17400,30100,7150,0,0.0,9,9,16.0,1402,9,999999999,160,0.1010,0,88,0.180,0.0,1.0 +2000,10,18,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,8.9,54,101900,767,1378,365,188,0,188,21800,0,21800,8080,210,4.1,9,8,16.0,1341,9,999999999,160,0.1010,0,88,0.180,0.0,1.0 +2000,10,18,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,7.8,50,101900,698,1378,363,201,6,198,22900,500,22700,7950,270,3.6,9,8,16.0,1829,9,999999999,160,0.1010,0,88,0.180,0.0,1.0 +2000,10,18,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,8.3,54,101900,570,1378,361,112,0,112,13000,0,13000,4710,310,3.6,10,8,16.0,2286,9,999999999,160,0.1010,0,88,0.180,0.0,1.0 +2000,10,18,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,9.4,64,101900,392,1378,349,133,35,123,14600,3200,13700,3130,360,3.6,10,7,16.0,6096,9,999999999,160,0.1010,0,88,0.180,0.0,1.0 +2000,10,18,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,8.3,62,101800,177,1378,338,0,0,0,0,0,0,0,40,5.2,9,5,16.0,5486,9,999999999,170,0.1010,0,88,0.180,0.0,1.0 +2000,10,18,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,8.9,70,101900,9,402,328,0,0,0,0,0,0,0,280,2.1,7,3,16.0,5486,9,999999999,170,0.1010,0,88,0.180,0.0,1.0 +2000,10,18,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,9.4,72,101900,0,0,334,0,0,0,0,0,0,0,300,3.1,7,5,16.0,4877,9,999999999,170,0.1010,0,88,0.180,0.0,1.0 +2000,10,18,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,10.6,80,102000,0,0,336,0,0,0,0,0,0,0,310,2.6,6,6,16.0,4877,9,999999999,170,0.1010,0,88,0.180,0.0,1.0 +2000,10,18,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,10.6,86,102000,0,0,331,0,0,0,0,0,0,0,0,0.0,7,6,16.0,4877,9,999999999,170,0.1010,0,88,0.180,0.0,1.0 +2000,10,18,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,10.0,89,102000,0,0,320,0,0,0,0,0,0,0,300,1.5,5,4,16.0,6096,9,999999999,170,0.1010,0,88,0.180,0.0,1.0 +2000,10,18,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,10.0,93,102000,0,0,322,0,0,0,0,0,0,0,300,1.5,7,6,16.0,6096,9,999999999,170,0.1010,0,88,0.180,0.0,1.0 +2000,10,18,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,10.0,93,102000,0,0,322,0,0,0,0,0,0,0,0,0.0,6,6,16.0,77777,9,999999999,170,0.1010,0,88,0.180,0.0,1.0 +2000,10,19,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,8.9,97,102000,0,0,306,0,0,0,0,0,0,0,0,0.0,3,3,14.4,77777,9,999999999,160,0.1000,0,88,0.180,0.0,1.0 +2000,10,19,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,8.3,100,102100,0,0,305,0,0,0,0,0,0,0,0,0.0,5,5,4.8,77777,9,999999999,160,0.1000,0,88,0.180,0.0,1.0 +2000,10,19,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,9.4,100,102100,0,0,339,0,0,0,0,0,0,0,250,1.5,10,10,9.6,122,9,999999999,150,0.1000,0,88,0.180,0.0,1.0 +2000,10,19,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,10.0,100,102100,0,0,343,0,0,0,0,0,0,0,0,0.0,10,10,1.6,61,9,999999999,150,0.1000,0,88,0.180,0.0,1.0 +2000,10,19,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,10.0,100,102100,0,0,343,0,0,0,0,0,0,0,0,0.0,10,10,0.2,30,9,999999999,150,0.1000,0,88,0.180,0.0,1.0 +2000,10,19,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,9.4,100,102100,0,0,323,0,0,0,0,0,0,0,120,2.1,8,8,5.2,30,9,999999999,139,0.1000,0,88,0.180,0.0,1.0 +2000,10,19,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,8.9,100,102100,20,586,308,0,0,0,0,0,0,0,0,0.0,5,5,4.8,77777,9,999999999,139,0.1000,0,88,0.180,0.0,1.0 +2000,10,19,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,8.3,100,102100,207,1379,317,78,200,48,8100,13000,6200,860,260,2.1,8,8,0.4,152,9,999999999,129,0.1000,0,88,0.180,0.0,1.0 +2000,10,19,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,9.4,96,102000,417,1379,314,237,455,99,24800,40300,12600,1850,0,0.0,5,5,4.8,77777,9,999999999,129,0.1000,0,88,0.180,0.0,1.0 +2000,10,19,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,8.9,80,102000,588,1379,305,349,481,143,36700,46800,16700,2850,310,2.1,0,0,16.0,7620,9,999999999,120,0.1000,0,88,0.180,0.0,1.0 +2000,10,19,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,9.4,77,101900,706,1379,321,427,497,172,45200,50000,19500,3670,350,1.5,5,2,16.0,7620,9,999999999,139,0.1000,0,88,0.180,0.0,1.0 +2000,10,19,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,10.0,69,101800,765,1379,332,458,383,244,48900,40300,26400,5870,350,1.5,4,2,16.0,7620,9,999999999,150,0.1000,0,88,0.180,0.0,1.0 +2000,10,19,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,9.4,60,101700,760,1379,338,295,79,252,32500,8000,28100,7740,70,2.1,5,2,16.0,7620,9,999999999,160,0.1000,0,88,0.180,0.0,1.0 +2000,10,19,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,9.4,60,101600,691,1379,360,175,0,175,20100,0,20100,7250,70,1.5,9,8,16.0,3353,9,999999999,170,0.1000,0,88,0.180,0.0,1.0 +2000,10,19,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,10.0,60,101600,563,1379,364,82,0,82,9800,0,9800,3630,210,2.6,9,8,16.0,2743,9,999999999,179,0.1000,0,88,0.180,0.0,1.0 +2000,10,19,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,10.6,65,101500,385,1379,361,77,0,77,8800,0,8800,2980,240,2.1,9,8,16.0,2591,9,999999999,189,0.1000,0,88,0.180,0.0,1.0 +2000,10,19,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,11.1,70,101400,170,1379,367,0,0,0,0,0,0,0,150,2.6,10,9,16.0,1829,9,999999999,200,0.1000,0,88,0.180,0.0,1.0 +2000,10,19,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,9.4,64,101300,7,356,372,0,0,0,0,0,0,0,110,3.1,10,10,16.0,2134,9,999999999,209,0.1000,0,88,0.180,0.0,1.0 +2000,10,19,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,10.0,69,101300,0,0,370,0,0,0,0,0,0,0,120,2.1,10,10,16.0,1829,9,999999999,220,0.1000,0,88,0.180,0.0,1.0 +2000,10,19,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,10.6,75,101300,0,0,368,0,0,0,0,0,0,0,120,4.6,10,10,14.4,1676,9,999999999,229,0.1000,0,88,0.180,0.0,1.0 +2000,10,19,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,12.2,89,101200,0,0,364,0,0,0,0,0,0,0,90,3.6,10,10,16.0,1676,9,999999999,240,0.1000,0,88,0.180,3.0,1.0 +2000,10,19,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,12.2,89,101100,0,0,364,0,0,0,0,0,0,0,120,4.6,10,10,16.0,1524,9,999999999,250,0.1000,0,88,0.180,0.0,1.0 +2000,10,19,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,11.1,83,101000,0,0,363,0,0,0,0,0,0,0,120,7.2,10,10,16.0,1524,9,999999999,240,0.1000,0,88,0.180,0.0,1.0 +2000,10,19,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,11.1,81,101000,0,0,366,0,0,0,0,0,0,0,120,6.2,10,10,16.0,1524,9,999999999,229,0.1000,0,88,0.180,0.0,1.0 +2000,10,20,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,10.6,80,100900,0,0,345,0,0,0,0,0,0,0,130,5.7,9,8,16.0,1981,9,999999999,220,0.1000,0,88,0.180,0.0,1.0 +2000,10,20,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,11.1,83,100700,0,0,346,0,0,0,0,0,0,0,110,6.7,10,8,16.0,2134,9,999999999,209,0.1000,0,88,0.180,0.0,1.0 +2000,10,20,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,11.1,83,100600,0,0,363,0,0,0,0,0,0,0,120,7.2,10,10,16.0,2896,9,999999999,200,0.1000,0,88,0.180,0.0,1.0 +2000,10,20,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,10.6,84,100600,0,0,359,0,0,0,0,0,0,0,120,7.2,10,10,16.0,2743,9,999999999,189,0.1000,0,88,0.180,0.0,1.0 +2000,10,20,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,12.2,93,100600,0,0,361,0,0,0,0,0,0,0,120,3.1,10,10,6.4,1189,9,999999999,179,0.1000,0,88,0.180,5.0,1.0 +2000,10,20,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,12.8,97,100600,0,0,362,0,0,0,0,0,0,0,140,3.1,10,10,8.0,1036,9,999999999,170,0.1000,0,88,0.180,5.0,1.0 +2000,10,20,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,13.3,96,100600,17,563,366,0,0,0,0,0,0,0,180,4.1,10,10,9.6,1829,9,999999999,170,0.1000,0,88,0.180,3.0,1.0 +2000,10,20,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,13.3,96,100600,202,1380,366,15,0,15,1800,0,1800,620,190,4.1,10,10,8.0,1097,9,999999999,160,0.1000,0,88,0.180,0.0,1.0 +2000,10,20,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,13.3,96,100600,411,1380,366,77,0,77,8900,0,8900,3060,230,3.6,10,10,6.4,640,9,999999999,150,0.1000,0,88,0.180,1.0,1.0 +2000,10,20,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,12.8,90,100600,581,1380,345,83,0,83,9900,0,9900,3710,200,6.2,9,7,16.0,3658,9,999999999,139,0.1000,0,88,0.180,0.0,1.0 +2000,10,20,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,12.8,87,100600,700,1380,361,79,0,79,9700,0,9700,3790,200,5.2,10,9,16.0,1311,9,999999999,139,0.1000,0,88,0.180,0.0,1.0 +2000,10,20,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,12.2,80,100500,758,1380,373,89,0,89,10900,0,10900,4340,210,8.2,10,10,16.0,975,9,999999999,139,0.1000,0,88,0.180,0.0,1.0 +2000,10,20,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,12.2,83,100600,753,1380,352,258,30,241,29200,2700,27700,9480,290,7.7,9,8,8.0,1158,9,999999999,139,0.1000,0,88,0.180,0.0,1.0 +2000,10,20,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,10.0,72,100700,684,1380,340,242,31,227,27300,2700,25900,8560,320,5.7,7,6,16.0,7620,9,999999999,139,0.1000,0,88,0.180,0.0,1.0 +2000,10,20,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,9.4,72,100800,556,1380,354,60,0,60,7300,0,7300,2750,320,5.2,9,9,16.0,1463,9,999999999,139,0.1000,0,88,0.180,0.0,1.0 +2000,10,20,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,10.6,80,100900,378,1380,353,78,0,78,8900,0,8900,2980,320,4.1,9,9,16.0,1829,9,999999999,150,0.1000,0,88,0.180,0.0,1.0 +2000,10,20,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,8.3,72,101000,163,1380,357,0,0,0,0,0,0,0,290,5.2,10,10,16.0,2896,9,999999999,150,0.1000,0,88,0.180,0.0,1.0 +2000,10,20,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,8.9,77,101100,6,310,355,0,0,0,0,0,0,0,280,3.6,10,10,16.0,1067,9,999999999,150,0.1000,0,88,0.180,0.0,1.0 +2000,10,20,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,8.9,80,101200,0,0,352,0,0,0,0,0,0,0,280,3.6,10,10,16.0,2134,9,999999999,150,0.1000,0,88,0.180,0.0,1.0 +2000,10,20,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,7.8,77,101300,0,0,348,0,0,0,0,0,0,0,300,4.1,10,10,16.0,1676,9,999999999,150,0.1000,0,88,0.180,0.0,1.0 +2000,10,20,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,8.3,86,101400,0,0,343,0,0,0,0,0,0,0,0,0.0,10,10,16.0,1981,9,999999999,150,0.1000,0,88,0.180,0.0,1.0 +2000,10,20,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,7.2,77,101500,0,0,345,0,0,0,0,0,0,0,280,3.1,10,10,16.0,1676,9,999999999,150,0.1000,0,88,0.180,0.0,1.0 +2000,10,20,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,7.2,83,101600,0,0,323,0,0,0,0,0,0,0,260,1.5,9,8,16.0,1524,9,999999999,150,0.1000,0,88,0.180,0.0,1.0 +2000,10,20,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,7.8,83,101700,0,0,326,0,0,0,0,0,0,0,320,2.6,8,8,16.0,1067,9,999999999,139,0.1000,0,88,0.180,0.0,1.0 +2000,10,21,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,7.8,86,101700,0,0,340,0,0,0,0,0,0,0,280,2.1,10,10,16.0,1676,9,999999999,129,0.0990,0,88,0.180,0.0,1.0 +2000,10,21,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,7.2,83,101800,0,0,323,0,0,0,0,0,0,0,0,0.0,8,8,16.0,1829,9,999999999,129,0.0990,0,88,0.180,0.0,1.0 +2000,10,21,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,6.7,83,101900,0,0,320,0,0,0,0,0,0,0,270,1.5,8,8,16.0,1829,9,999999999,120,0.0990,0,88,0.180,0.0,1.0 +2000,10,21,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,7.2,89,101900,0,0,318,0,0,0,0,0,0,0,230,1.5,8,8,16.0,1981,9,999999999,110,0.0990,0,88,0.180,0.0,1.0 +2000,10,21,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,7.2,89,102000,0,0,318,0,0,0,0,0,0,0,0,0.0,8,8,16.0,1829,9,999999999,100,0.0990,0,88,0.180,0.0,1.0 +2000,10,21,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,7.2,93,102100,0,0,315,0,0,0,0,0,0,0,180,1.5,8,8,16.0,2286,9,999999999,100,0.0990,0,88,0.180,0.0,1.0 +2000,10,21,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,7.8,97,102200,15,518,316,0,0,0,0,0,0,0,190,2.1,8,8,16.0,1829,9,999999999,89,0.0990,0,88,0.180,1.0,1.0 +2000,10,21,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,7.8,90,102200,196,1381,321,78,248,43,8200,15700,6000,770,160,1.5,8,8,16.0,1372,9,999999999,80,0.0990,0,88,0.180,0.0,1.0 +2000,10,21,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,7.8,80,102300,405,1381,329,217,426,91,22800,37400,11800,1690,40,2.1,8,8,16.0,1524,9,999999999,69,0.0990,0,88,0.180,0.0,1.0 +2000,10,21,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,7.2,71,102400,575,1381,333,374,614,117,38500,58200,14100,2260,100,2.1,8,8,16.0,1676,9,999999999,69,0.0990,0,88,0.180,0.0,1.0 +2000,10,21,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,6.1,64,102400,694,1381,335,410,378,219,43600,39200,23900,5030,300,3.6,8,8,16.0,1250,9,999999999,69,0.0990,0,88,0.180,0.0,1.0 +2000,10,21,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,7.2,74,102500,752,1381,348,178,6,175,20700,500,20500,7580,50,4.1,10,10,12.8,1250,9,999999999,80,0.0990,0,88,0.180,0.0,1.0 +2000,10,21,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,6.1,66,102400,746,1381,332,535,582,219,55600,58800,23700,4910,160,2.1,8,8,16.0,1433,9,999999999,80,0.0990,0,88,0.180,3.0,1.0 +2000,10,21,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,6.7,64,102500,677,1381,323,155,0,155,17900,0,17900,6560,330,2.6,4,4,16.0,77777,9,999999999,80,0.0990,0,88,0.180,0.0,1.0 +2000,10,21,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,7.8,74,102500,549,1381,334,354,479,163,36400,45700,18200,3270,280,3.1,8,8,16.0,2896,9,999999999,89,0.0990,0,88,0.180,0.0,1.0 +2000,10,21,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,3.9,55,102500,371,1381,318,245,537,101,25300,45500,13000,1900,240,2.1,4,4,16.0,77777,9,999999999,89,0.0990,0,88,0.180,0.0,1.0 +2000,10,21,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,5.6,62,102600,156,1381,317,0,0,0,0,0,0,0,260,2.1,3,3,16.0,77777,9,999999999,100,0.0990,0,88,0.180,0.0,1.0 +2000,10,21,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,7.2,77,102600,4,288,312,0,0,0,0,0,0,0,0,0.0,3,3,16.0,77777,9,999999999,100,0.0990,0,88,0.180,0.0,1.0 +2000,10,21,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,6.7,80,102700,0,0,306,0,0,0,0,0,0,0,0,0.0,3,3,16.0,77777,9,999999999,110,0.0990,0,88,0.180,0.0,1.0 +2000,10,21,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,7.2,86,102700,0,0,336,0,0,0,0,0,0,0,0,0.0,10,10,16.0,1189,9,999999999,110,0.0990,0,88,0.180,0.0,1.0 +2000,10,21,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,6.7,90,102800,0,0,301,0,0,0,0,0,0,0,0,0.0,4,4,16.0,77777,9,999999999,110,0.0990,0,88,0.180,0.0,1.0 +2000,10,21,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,6.1,96,102800,0,0,292,0,0,0,0,0,0,0,0,0.0,3,3,16.0,77777,9,999999999,120,0.0990,0,88,0.180,0.0,1.0 +2000,10,21,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,5.6,97,102900,0,0,277,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,120,0.0990,0,88,0.180,0.0,1.0 +2000,10,21,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,6.1,100,102900,0,0,289,0,0,0,0,0,0,0,0,0.0,3,3,12.8,77777,9,999999999,120,0.0990,0,88,0.180,0.0,1.0 +2000,10,22,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,5.0,96,102900,0,0,301,0,0,0,0,0,0,0,180,1.5,8,8,6.4,274,9,999999999,110,0.0980,0,88,0.180,0.0,1.0 +2000,10,22,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,6.1,100,102900,0,0,320,0,0,0,0,0,0,0,170,2.1,10,10,16.0,213,9,999999999,110,0.0980,0,88,0.180,0.0,1.0 +2000,10,22,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,6.1,96,102900,0,0,323,0,0,0,0,0,0,0,0,0.0,10,10,12.8,213,9,999999999,110,0.0980,0,88,0.180,0.0,1.0 +2000,10,22,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,6.1,96,102900,0,0,323,0,0,0,0,0,0,0,0,0.0,10,10,9.6,213,9,999999999,110,0.0980,0,88,0.180,0.0,1.0 +2000,10,22,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,6.1,93,102900,0,0,325,0,0,0,0,0,0,0,0,0.0,10,10,4.8,152,9,999999999,110,0.0980,0,88,0.180,0.0,1.0 +2000,10,22,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,6.7,100,102900,0,0,323,0,0,0,0,0,0,0,190,1.5,10,10,4.8,91,9,999999999,110,0.0980,0,88,0.180,0.0,1.0 +2000,10,22,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,6.7,100,102900,14,495,323,0,0,0,0,0,0,0,250,1.5,10,10,0.8,91,9,999999999,110,0.0980,0,88,0.180,0.0,1.0 +2000,10,22,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,6.7,100,102900,190,1381,323,30,0,30,3500,0,3500,1120,30,2.1,10,10,7.2,91,9,999999999,110,0.0980,0,88,0.180,0.0,1.0 +2000,10,22,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,6.7,93,102900,399,1381,313,108,6,106,12100,300,12000,3810,360,2.1,8,8,1.6,152,9,999999999,110,0.0980,0,88,0.180,0.0,1.0 +2000,10,22,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,6.1,89,103000,569,1381,312,161,12,156,18200,900,17900,5990,330,2.6,8,8,11.2,274,9,999999999,110,0.0980,0,88,0.180,0.0,1.0 +2000,10,22,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,8.7,6.7,87,102900,687,1381,305,415,414,208,44300,42900,22900,4720,320,3.1,5,5,11.2,11137,9,999999999,110,0.0980,0,88,0.180,999.0,99.0 +2000,10,22,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,7.2,86,102800,745,1381,304,517,707,135,54200,70200,16200,2960,310,3.6,3,3,14.4,77777,9,999999999,120,0.0980,0,88,0.180,0.0,1.0 +2000,10,22,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,6.7,71,102700,739,1381,301,510,752,106,54200,75300,13800,2390,290,3.6,0,0,16.0,77777,9,999999999,129,0.0980,0,88,0.180,0.0,1.0 +2000,10,22,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,7.2,64,102500,670,1381,311,472,741,112,49600,72800,14100,2360,310,1.5,0,0,16.0,77777,9,999999999,139,0.0980,0,88,0.180,0.0,1.0 +2000,10,22,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,7.2,60,102500,542,1381,315,363,665,101,37600,62600,12900,1950,290,4.1,0,0,16.0,77777,9,999999999,150,0.0980,0,88,0.180,0.0,1.0 +2000,10,22,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,6.7,54,102400,364,1381,320,229,476,103,23500,40000,12900,1950,10,1.5,0,0,16.0,77777,9,999999999,160,0.0980,0,88,0.180,0.0,1.0 +2000,10,22,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,1.1,39,102400,150,1381,309,0,0,0,0,0,0,0,90,4.1,0,0,16.0,77777,9,999999999,170,0.0980,0,88,0.180,0.0,1.0 +2000,10,22,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,1.1,45,102400,3,242,299,0,0,0,0,0,0,0,100,4.6,1,0,16.0,77777,9,999999999,170,0.0980,0,88,0.180,0.0,1.0 +2000,10,22,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,1.7,50,102400,0,0,296,0,0,0,0,0,0,0,110,3.1,0,0,16.0,77777,9,999999999,179,0.0980,0,88,0.180,0.0,1.0 +2000,10,22,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,2.8,58,102300,0,0,298,0,0,0,0,0,0,0,0,0.0,2,1,16.0,77777,9,999999999,189,0.0980,0,88,0.180,0.0,1.0 +2000,10,22,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,7.2,79,102300,0,0,306,0,0,0,0,0,0,0,300,2.1,3,2,16.0,77777,9,999999999,200,0.0980,0,88,0.180,0.0,1.0 +2000,10,22,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,6.1,83,102300,0,0,294,0,0,0,0,0,0,0,0,0.0,2,1,16.0,77777,9,999999999,209,0.0980,0,88,0.180,0.0,1.0 +2000,10,22,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,0.6,48,102200,0,0,302,0,0,0,0,0,0,0,100,4.6,4,2,16.0,77777,9,999999999,200,0.0980,0,88,0.180,0.0,1.0 +2000,10,22,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,2.2,63,102200,0,0,290,0,0,0,0,0,0,0,200,1.5,2,1,16.0,77777,9,999999999,189,0.0980,0,88,0.180,0.0,1.0 +2000,10,23,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,3.9,71,102200,0,0,292,0,0,0,0,0,0,0,140,2.6,1,1,16.0,77777,9,999999999,179,0.0980,0,88,0.180,0.0,1.0 +2000,10,23,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,3.3,63,102100,0,0,296,0,0,0,0,0,0,0,120,4.6,1,1,16.0,77777,9,999999999,160,0.0980,0,88,0.180,0.0,1.0 +2000,10,23,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,3.3,68,102100,0,0,295,0,0,0,0,0,0,0,120,2.6,2,2,16.0,77777,9,999999999,150,0.0980,0,88,0.180,0.0,1.0 +2000,10,23,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,2.8,61,102000,0,0,295,0,0,0,0,0,0,0,130,5.2,1,1,16.0,77777,9,999999999,139,0.0980,0,88,0.180,0.0,1.0 +2000,10,23,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,2.2,58,102000,0,0,289,0,0,0,0,0,0,0,120,4.6,0,0,16.0,77777,9,999999999,129,0.0980,0,88,0.180,0.0,1.0 +2000,10,23,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,2.2,58,101900,0,0,289,0,0,0,0,0,0,0,110,6.7,0,0,16.0,77777,9,999999999,120,0.0980,0,88,0.180,0.0,1.0 +2000,10,23,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,1.1,52,101900,12,472,290,0,0,0,0,0,0,0,110,6.7,0,0,16.0,77777,9,999999999,110,0.0980,0,88,0.180,0.0,1.0 +2000,10,23,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,2.2,52,101900,185,1382,296,78,341,33,8100,22000,5100,600,120,5.2,0,0,16.0,77777,9,999999999,100,0.0980,0,88,0.180,0.0,1.0 +2000,10,23,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,2.2,45,101900,393,1382,305,233,589,64,24100,51400,9500,1210,110,9.8,0,0,16.0,77777,9,999999999,89,0.0980,0,88,0.180,0.0,1.0 +2000,10,23,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,2.8,42,101800,563,1382,313,373,711,82,39300,68200,11400,1660,110,7.7,0,0,16.0,77777,9,999999999,80,0.0980,0,88,0.180,0.0,1.0 +2000,10,23,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,2.2,38,101700,681,1382,317,465,756,91,48300,73800,11800,1890,110,9.3,0,0,16.0,77777,9,999999999,89,0.0980,0,88,0.180,0.0,1.0 +2000,10,23,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,2.2,35,101600,739,1382,322,500,677,137,52200,67000,16300,2970,100,9.3,0,0,16.0,77777,9,999999999,100,0.0980,0,88,0.180,0.0,1.0 +2000,10,23,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,2.2,34,101600,733,1382,324,498,716,117,52500,71300,14600,2590,100,9.8,0,0,16.0,77777,9,999999999,110,0.0980,0,88,0.180,0.0,1.0 +2000,10,23,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,2.2,33,101500,663,1382,327,453,667,132,46900,64800,15700,2680,100,7.7,0,0,16.0,77777,9,999999999,120,0.0980,0,88,0.180,0.0,1.0 +2000,10,23,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,2.8,36,101500,535,1382,325,357,647,105,36700,60500,13200,2000,100,7.2,0,0,16.0,77777,9,999999999,139,0.0980,0,88,0.180,0.0,1.0 +2000,10,23,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,2.2,35,101500,357,1382,322,232,508,100,23800,42400,12800,1880,110,6.2,0,0,16.0,77777,9,999999999,150,0.0980,0,88,0.180,0.0,1.0 +2000,10,23,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,1.7,39,101500,143,1382,312,0,0,0,0,0,0,0,110,6.2,0,0,16.0,77777,9,999999999,160,0.0980,0,88,0.180,0.0,1.0 +2000,10,23,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,3.3,51,101500,2,196,304,0,0,0,0,0,0,0,130,4.6,0,0,16.0,77777,9,999999999,170,0.0980,0,88,0.180,0.0,1.0 +2000,10,23,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,2.2,45,101500,0,0,305,0,0,0,0,0,0,0,120,4.6,0,0,16.0,77777,9,999999999,189,0.0980,0,88,0.180,0.0,1.0 +2000,10,23,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,2.8,51,101500,0,0,301,0,0,0,0,0,0,0,100,4.1,0,0,16.0,77777,9,999999999,200,0.0980,0,88,0.180,0.0,1.0 +2000,10,23,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,3.3,61,101600,0,0,293,0,0,0,0,0,0,0,120,3.6,0,0,16.0,77777,9,999999999,209,0.0980,0,88,0.180,0.0,1.0 +2000,10,23,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,3.3,61,101600,0,0,293,0,0,0,0,0,0,0,110,4.6,0,0,16.0,77777,9,999999999,220,0.0980,0,88,0.180,0.0,1.0 +2000,10,23,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,3.3,59,101600,0,0,295,0,0,0,0,0,0,0,130,4.6,0,0,16.0,77777,9,999999999,220,0.0980,0,88,0.180,0.0,1.0 +2000,10,23,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,3.9,66,101600,0,0,291,0,0,0,0,0,0,0,130,3.1,0,0,16.0,77777,9,999999999,209,0.0980,0,88,0.180,0.0,1.0 +2000,10,24,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,3.9,68,101600,0,0,288,0,0,0,0,0,0,0,100,2.1,0,0,16.0,77777,9,999999999,209,0.0970,0,88,0.180,0.0,1.0 +2000,10,24,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,5.0,77,101600,0,0,287,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,200,0.0970,0,88,0.180,0.0,1.0 +2000,10,24,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,4.4,85,101600,0,0,278,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,200,0.0970,0,88,0.180,0.0,1.0 +2000,10,24,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,3.9,86,101600,0,0,280,0,0,0,0,0,0,0,310,1.5,1,1,16.0,77777,9,999999999,189,0.0970,0,88,0.180,0.0,1.0 +2000,10,24,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,4.4,85,101600,0,0,287,0,0,0,0,0,0,0,320,1.5,3,2,16.0,77777,9,999999999,189,0.0970,0,88,0.180,0.0,1.0 +2000,10,24,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,4.4,92,101600,0,0,279,0,0,0,0,0,0,0,310,2.1,1,1,16.0,77777,9,999999999,179,0.0970,0,88,0.180,0.0,1.0 +2000,10,24,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,3.9,80,101700,10,426,289,0,0,0,0,0,0,0,80,1.5,3,2,16.0,77777,9,999999999,179,0.0970,0,88,0.180,0.0,1.0 +2000,10,24,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,5.0,86,101600,179,1383,286,74,301,35,7600,19000,5100,620,0,0.0,2,1,16.0,77777,9,999999999,170,0.0970,0,88,0.180,0.0,1.0 +2000,10,24,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,5.0,68,101600,387,1383,300,232,621,57,24200,54200,9000,1090,90,2.1,1,1,16.0,77777,9,999999999,170,0.0970,0,88,0.180,0.0,1.0 +2000,10,24,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,5.0,61,101600,557,1383,301,372,728,78,38300,68800,10500,1520,0,0.0,1,0,16.0,77777,9,999999999,160,0.0970,0,88,0.180,0.0,1.0 +2000,10,24,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,4.4,55,101600,674,1383,305,448,697,107,47200,68700,13600,2270,0,0.0,1,0,16.0,7620,9,999999999,160,0.0970,0,88,0.180,0.0,1.0 +2000,10,24,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,5.6,53,101600,732,1383,314,482,557,186,50800,56200,20900,4060,0,0.0,1,0,16.0,77777,9,999999999,150,0.0970,0,88,0.180,0.0,1.0 +2000,10,24,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,5.6,48,101500,726,1383,332,290,97,239,31900,9700,26700,7190,70,3.1,3,2,16.0,7620,9,999999999,150,0.0970,0,88,0.180,0.0,1.0 +2000,10,24,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,6.7,50,101500,656,1383,344,352,266,225,37100,27300,24100,5160,90,5.2,7,5,16.0,7620,9,999999999,139,0.0970,0,88,0.180,0.0,1.0 +2000,10,24,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,7.2,48,101500,528,1383,344,358,558,144,37100,52800,16800,2840,90,3.6,6,3,16.0,7620,9,999999999,139,0.0970,0,88,0.180,0.0,1.0 +2000,10,24,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,6.7,54,101500,350,1383,330,194,281,123,20200,23600,14200,2550,120,3.6,2,2,16.0,7620,9,999999999,129,0.0970,0,88,0.180,0.0,1.0 +2000,10,24,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,6.7,60,101500,137,1383,323,0,0,0,0,0,0,0,110,4.1,5,2,16.0,7620,9,999999999,129,0.0970,0,88,0.180,0.0,1.0 +2000,10,24,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,6.7,62,101500,1,173,323,0,0,0,0,0,0,0,120,3.6,7,3,16.0,77777,9,999999999,120,0.0970,0,88,0.180,0.0,1.0 +2000,10,24,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,7.8,72,101500,0,0,322,0,0,0,0,0,0,0,110,3.1,9,4,16.0,7315,9,999999999,120,0.0970,0,88,0.180,0.0,1.0 +2000,10,24,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,7.8,74,101500,0,0,317,0,0,0,0,0,0,0,110,2.1,8,3,16.0,7315,9,999999999,110,0.0970,0,88,0.180,0.0,1.0 +2000,10,24,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,7.2,74,101500,0,0,317,0,0,0,0,0,0,0,100,2.6,8,4,16.0,3658,9,999999999,110,0.0970,0,88,0.180,0.0,1.0 +2000,10,24,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,7.8,77,101500,0,0,315,0,0,0,0,0,0,0,110,3.6,8,3,16.0,7315,9,999999999,100,0.0970,0,88,0.180,0.0,1.0 +2000,10,24,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,7.2,79,101500,0,0,312,0,0,0,0,0,0,0,110,2.6,8,4,16.0,7315,9,999999999,110,0.0970,0,88,0.180,0.0,1.0 +2000,10,24,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,7.8,83,101500,0,0,312,0,0,0,0,0,0,0,0,0.0,9,4,16.0,7315,9,999999999,110,0.0970,0,88,0.180,0.0,1.0 +2000,10,25,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,7.8,80,101400,0,0,315,0,0,0,0,0,0,0,30,1.5,9,4,16.0,7315,9,999999999,110,0.0970,0,88,0.180,0.0,1.0 +2000,10,25,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,7.8,83,101400,0,0,315,0,0,0,0,0,0,0,0,0.0,9,5,16.0,5486,9,999999999,110,0.0970,0,88,0.180,0.0,1.0 +2000,10,25,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,7.8,86,101400,0,0,315,0,0,0,0,0,0,0,0,0.0,10,6,16.0,3658,9,999999999,120,0.0970,0,88,0.180,0.0,1.0 +2000,10,25,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,7.8,86,101300,0,0,331,0,0,0,0,0,0,0,0,0.0,10,9,16.0,3353,9,999999999,120,0.0970,0,88,0.180,0.0,1.0 +2000,10,25,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,7.8,83,101300,0,0,343,0,0,0,0,0,0,0,0,0.0,10,10,16.0,3048,9,999999999,120,0.0970,0,88,0.180,0.0,1.0 +2000,10,25,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,8.3,89,101300,0,0,313,0,0,0,0,0,0,0,340,1.5,9,5,16.0,6096,9,999999999,120,0.0970,0,88,0.180,0.0,1.0 +2000,10,25,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,7.8,86,101300,9,404,319,0,0,0,0,0,0,0,290,2.6,9,7,16.0,6096,9,999999999,120,0.0970,0,88,0.180,0.0,1.0 +2000,10,25,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,7.8,83,101200,173,1384,312,28,0,28,3200,0,3200,1030,230,1.5,9,4,16.0,3658,9,999999999,129,0.0970,0,88,0.180,0.0,1.0 +2000,10,25,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,7.2,74,101200,381,1384,338,75,0,75,8600,0,8600,2900,300,2.1,10,9,16.0,3353,9,999999999,129,0.0970,0,88,0.180,0.0,1.0 +2000,10,25,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,7.2,69,101200,551,1384,336,83,0,83,9800,0,9800,3630,310,2.6,10,8,16.0,3048,9,999999999,129,0.0970,0,88,0.180,0.0,1.0 +2000,10,25,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,7.2,64,101200,668,1384,349,285,130,223,31000,13200,24600,5490,280,2.6,9,9,16.0,3048,9,999999999,129,0.0970,0,88,0.180,0.0,1.0 +2000,10,25,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,6.7,55,101100,726,1384,339,452,419,231,48100,43700,25100,5410,310,2.6,8,6,16.0,7620,9,999999999,139,0.0970,0,88,0.180,0.0,1.0 +2000,10,25,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,7.2,53,101100,719,1384,349,309,115,249,33900,11600,27900,7370,0,0.0,8,7,16.0,6096,9,999999999,139,0.0970,0,88,0.180,0.0,1.0 +2000,10,25,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,6.7,45,101000,650,1384,355,353,272,224,37100,27800,24000,5130,130,3.6,8,6,16.0,6096,9,999999999,139,0.0970,0,88,0.180,0.0,1.0 +2000,10,25,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,6.7,54,101000,522,1384,342,222,116,178,23900,11200,19700,4130,130,4.1,8,6,16.0,6096,9,999999999,150,0.0970,0,88,0.180,0.0,1.0 +2000,10,25,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,6.1,55,101000,344,1384,336,114,14,110,12500,800,12300,3570,130,3.1,7,6,16.0,6096,9,999999999,150,0.0970,0,88,0.180,0.0,1.0 +2000,10,25,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,5.6,57,101000,130,1384,330,0,0,0,0,0,0,0,140,3.6,8,6,16.0,6096,9,999999999,150,0.0970,0,88,0.180,0.0,1.0 +2000,10,25,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,6.1,64,101000,1,127,326,0,0,0,0,0,0,0,110,2.1,7,6,16.0,6096,9,999999999,150,0.0970,0,88,0.180,0.0,1.0 +2000,10,25,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,6.1,62,101000,0,0,323,0,0,0,0,0,0,0,0,0.0,7,4,16.0,6096,9,999999999,160,0.0970,0,88,0.180,0.0,1.0 +2000,10,25,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,6.1,62,101000,0,0,344,0,0,0,0,0,0,0,0,0.0,10,9,16.0,2743,9,999999999,160,0.0970,0,88,0.180,0.0,1.0 +2000,10,25,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,8.3,74,101000,0,0,345,0,0,0,0,0,0,0,0,0.0,10,9,16.0,2896,9,999999999,160,0.0970,0,88,0.180,0.0,1.0 +2000,10,25,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,9.4,86,101000,0,0,340,0,0,0,0,0,0,0,0,0.0,9,9,16.0,2896,9,999999999,170,0.0970,0,88,0.180,0.0,1.0 +2000,10,25,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,7.8,80,100900,0,0,315,0,0,0,0,0,0,0,280,2.1,4,4,16.0,4267,9,999999999,170,0.0970,0,88,0.180,0.0,1.0 +2000,10,25,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,7.2,77,100900,0,0,316,0,0,0,0,0,0,0,0,0.0,5,5,16.0,4267,9,999999999,170,0.0970,0,88,0.180,0.0,1.0 +2000,10,26,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,7.8,80,100900,0,0,329,0,0,0,0,0,0,0,310,1.5,9,8,16.0,4267,9,999999999,179,0.0960,0,88,0.180,0.0,1.0 +2000,10,26,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,7.2,83,100900,0,0,312,0,0,0,0,0,0,0,0,0.0,9,5,16.0,4267,9,999999999,179,0.0960,0,88,0.180,0.0,1.0 +2000,10,26,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,7.2,83,100900,0,0,339,0,0,0,0,0,0,0,0,0.0,10,10,16.0,3353,9,999999999,179,0.0960,0,88,0.180,0.0,1.0 +2000,10,26,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,8.3,89,100900,0,0,331,0,0,0,0,0,0,0,270,2.1,10,9,16.0,3048,9,999999999,189,0.0960,0,88,0.180,0.0,1.0 +2000,10,26,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,8.9,89,100900,0,0,344,0,0,0,0,0,0,0,300,2.1,10,10,16.0,2438,9,999999999,189,0.0960,0,88,0.180,0.0,1.0 +2000,10,26,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,9.4,92,100900,0,0,345,0,0,0,0,0,0,0,0,0.0,10,10,16.0,2286,9,999999999,189,0.0960,0,88,0.180,0.0,1.0 +2000,10,26,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,9.4,92,101000,7,358,345,0,0,0,0,0,0,0,300,1.5,10,10,16.0,2743,9,999999999,200,0.0960,0,88,0.180,0.0,1.0 +2000,10,26,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,10.0,96,101000,168,1385,345,22,0,22,2600,0,2600,840,0,0.0,10,10,8.0,1981,9,999999999,200,0.0960,0,88,0.180,0.0,1.0 +2000,10,26,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,8.9,89,101000,375,1385,344,35,0,35,4300,0,4300,1520,120,3.1,10,10,16.0,1981,9,999999999,209,0.0960,0,88,0.180,0.0,1.0 +2000,10,26,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,9.4,89,101000,544,1385,347,165,17,158,18500,1300,18000,5880,90,3.1,10,10,16.0,1829,9,999999999,209,0.0960,0,88,0.180,0.0,1.0 +2000,10,26,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,10.0,89,101000,662,1385,351,207,18,198,23400,1500,22700,7670,50,1.5,10,10,16.0,2134,9,999999999,200,0.0960,0,88,0.180,0.0,1.0 +2000,10,26,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,10.0,86,101000,719,1385,353,238,24,225,26900,2100,25800,8790,0,0.0,10,10,11.2,2743,9,999999999,200,0.0960,0,88,0.180,0.0,1.0 +2000,10,26,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,9.4,83,100900,713,1385,353,82,0,82,10000,0,10000,3940,0,0.0,10,10,16.0,2286,9,999999999,189,0.0960,0,88,0.180,0.0,1.0 +2000,10,26,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,10.0,86,100900,643,1385,353,88,0,88,10600,0,10600,4040,0,0.0,10,10,16.0,640,9,999999999,179,0.0960,0,88,0.180,0.0,1.0 +2000,10,26,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,10.6,90,100900,515,1385,354,54,0,54,6600,0,6600,2440,340,1.5,10,10,16.0,1981,9,999999999,179,0.0960,0,88,0.180,0.0,1.0 +2000,10,26,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,10.6,90,100900,337,1385,354,84,0,84,9400,0,9400,2990,320,2.1,10,10,11.2,1006,9,999999999,170,0.0960,0,88,0.180,0.0,1.0 +2000,10,26,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,10.6,90,100900,124,1385,354,0,0,0,0,0,0,0,0,0.0,10,10,14.4,1128,9,999999999,170,0.0960,0,88,0.180,0.0,1.0 +2000,10,26,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,10.6,93,101000,0,81,352,0,0,0,0,0,0,0,0,0.0,10,10,11.2,2134,9,999999999,160,0.0960,0,88,0.180,0.0,1.0 +2000,10,26,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,10.6,93,101000,0,0,352,0,0,0,0,0,0,0,0,0.0,10,10,11.2,2134,9,999999999,150,0.0960,0,88,0.180,0.0,1.0 +2000,10,26,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,10.6,93,101000,0,0,352,0,0,0,0,0,0,0,0,0.0,10,10,11.2,2134,9,999999999,150,0.0960,0,88,0.180,0.0,1.0 +2000,10,26,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,10.0,89,101000,0,0,351,0,0,0,0,0,0,0,290,1.5,10,10,16.0,1981,9,999999999,139,0.0960,0,88,0.180,0.0,1.0 +2000,10,26,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,10.0,89,101000,0,0,351,0,0,0,0,0,0,0,290,1.5,10,10,16.0,1981,9,999999999,139,0.0960,0,88,0.180,0.0,1.0 +2000,10,26,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,10.6,93,101000,0,0,352,0,0,0,0,0,0,0,0,0.0,10,10,12.8,1280,9,999999999,139,0.0960,0,88,0.180,0.0,1.0 +2000,10,26,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,10.6,93,101000,0,0,352,0,0,0,0,0,0,0,0,0.0,10,10,12.8,610,9,999999999,139,0.0960,0,88,0.180,0.0,1.0 +2000,10,27,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,10.6,97,101000,0,0,349,0,0,0,0,0,0,0,0,0.0,10,10,6.4,1524,9,999999999,139,0.0950,0,88,0.180,0.0,1.0 +2000,10,27,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,10.6,97,101000,0,0,349,0,0,0,0,0,0,0,0,0.0,10,10,8.0,1341,9,999999999,139,0.0950,0,88,0.180,0.0,1.0 +2000,10,27,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,10.6,97,101000,0,0,349,0,0,0,0,0,0,0,0,0.0,10,10,11.2,274,9,999999999,129,0.0950,0,88,0.180,0.0,1.0 +2000,10,27,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,10.6,97,101000,0,0,349,0,0,0,0,0,0,0,110,2.1,10,10,4.8,427,9,999999999,129,0.0950,0,88,0.180,0.0,1.0 +2000,10,27,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,10.0,96,101000,0,0,345,0,0,0,0,0,0,0,80,3.1,10,10,4.8,152,9,999999999,129,0.0950,0,88,0.180,0.0,1.0 +2000,10,27,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,10.0,96,101000,0,0,345,0,0,0,0,0,0,0,100,3.1,10,10,11.2,244,9,999999999,129,0.0950,0,88,0.180,0.0,1.0 +2000,10,27,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,10.0,96,101000,6,335,345,0,0,0,0,0,0,0,110,3.1,10,10,9.6,183,9,999999999,129,0.0950,0,88,0.180,0.0,1.0 +2000,10,27,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,10.6,97,101000,162,1385,349,13,0,13,1600,0,1600,520,140,2.1,10,10,6.4,427,9,999999999,129,0.0950,0,88,0.180,0.0,1.0 +2000,10,27,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,10.6,97,100900,370,1385,349,44,0,44,5200,0,5200,1850,150,3.1,10,10,3.2,244,9,999999999,129,0.0950,0,88,0.180,0.0,1.0 +2000,10,27,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,10.6,90,100900,538,1385,354,87,0,87,10200,0,10200,3740,180,4.1,10,10,8.0,366,9,999999999,129,0.0950,0,88,0.180,0.0,1.0 +2000,10,27,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,10.6,86,100800,655,1385,347,101,0,101,12000,0,12000,4580,180,3.6,9,9,11.2,610,9,999999999,139,0.0950,0,88,0.180,0.0,1.0 +2000,10,27,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,10.6,80,100700,713,1385,363,232,18,223,26300,1600,25500,8680,170,3.1,10,10,16.0,762,9,999999999,139,0.0950,0,88,0.180,0.0,1.0 +2000,10,27,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,10.0,72,100500,706,1385,367,227,18,218,25700,1500,24900,8510,200,4.6,10,10,16.0,1402,9,999999999,139,0.0950,0,88,0.180,0.0,1.0 +2000,10,27,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,9.4,69,100500,636,1385,367,122,0,122,14300,0,14300,5280,190,5.2,10,10,16.0,1524,9,999999999,139,0.0950,0,88,0.180,0.0,1.0 +2000,10,27,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,8.9,67,100400,508,1385,366,62,0,62,7400,0,7400,2750,190,5.2,10,10,16.0,1676,9,999999999,150,0.0950,0,88,0.180,0.0,1.0 +2000,10,27,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,8.3,67,100300,331,1385,362,53,0,53,6200,0,6200,2090,180,4.6,10,10,16.0,1433,9,999999999,150,0.0950,0,88,0.180,0.0,1.0 +2000,10,27,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,8.3,69,100300,118,1385,360,0,0,0,0,0,0,0,170,4.6,10,10,16.0,1463,9,999999999,150,0.0950,0,88,0.180,0.0,1.0 +2000,10,27,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,8.9,72,100200,0,58,360,0,0,0,0,0,0,0,170,5.2,10,10,16.0,1981,9,999999999,150,0.0950,0,88,0.180,0.0,1.0 +2000,10,27,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,9.4,80,100000,0,0,356,0,0,0,0,0,0,0,160,4.6,10,10,16.0,2134,9,999999999,150,0.0950,0,88,0.180,0.0,1.0 +2000,10,27,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,11.1,93,100000,0,0,355,0,0,0,0,0,0,0,130,4.1,10,10,16.0,1981,9,999999999,160,0.0950,0,88,0.180,0.0,1.0 +2000,10,27,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,10.6,93,99800,0,0,352,0,0,0,0,0,0,0,130,4.6,10,10,16.0,1829,9,999999999,160,0.0950,0,88,0.180,0.0,1.0 +2000,10,27,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,10.6,90,99700,0,0,354,0,0,0,0,0,0,0,140,5.2,10,10,16.0,1676,9,999999999,160,0.0950,0,88,0.180,0.0,1.0 +2000,10,27,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,10.6,90,99600,0,0,354,0,0,0,0,0,0,0,120,4.6,10,10,11.2,1524,9,999999999,170,0.0950,0,88,0.180,0.0,1.0 +2000,10,27,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,10.6,93,99600,0,0,352,0,0,0,0,0,0,0,140,4.1,10,10,9.6,1676,9,999999999,170,0.0950,0,88,0.180,3.0,1.0 +2000,10,28,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,8.9,86,99700,0,0,347,0,0,0,0,0,0,0,270,5.2,10,10,12.8,823,9,999999999,179,0.0950,0,88,0.180,4.0,1.0 +2000,10,28,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,7.2,89,99900,0,0,334,0,0,0,0,0,0,0,210,2.6,10,10,9.6,1372,9,999999999,179,0.0950,0,88,0.180,1.0,1.0 +2000,10,28,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,7.8,93,99900,0,0,335,0,0,0,0,0,0,0,130,5.7,10,10,12.8,1433,9,999999999,189,0.0950,0,88,0.180,1.0,1.0 +2000,10,28,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,7.2,93,99900,0,0,331,0,0,0,0,0,0,0,190,2.6,10,10,16.0,1372,9,999999999,189,0.0950,0,88,0.180,0.0,1.0 +2000,10,28,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,6.7,93,100000,0,0,304,0,0,0,0,0,0,0,160,1.5,8,6,16.0,4267,9,999999999,200,0.0950,0,88,0.180,0.0,1.0 +2000,10,28,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,6.7,90,100000,0,0,322,0,0,0,0,0,0,0,110,2.6,10,9,16.0,1494,9,999999999,200,0.0950,0,88,0.180,0.0,1.0 +2000,10,28,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,6.1,89,100100,5,312,312,0,0,0,0,0,0,0,160,2.1,8,8,16.0,1829,9,999999999,200,0.0950,0,88,0.180,0.0,1.0 +2000,10,28,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,5.6,80,100100,156,1386,316,62,307,28,6400,18400,4400,510,160,2.1,8,8,16.0,1829,9,999999999,209,0.0950,0,88,0.180,0.0,1.0 +2000,10,28,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,6.1,74,100200,364,1386,313,214,572,63,22100,48500,9300,1170,180,5.2,5,5,16.0,6096,9,999999999,209,0.0950,0,88,0.180,0.0,1.0 +2000,10,28,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,6.1,68,100200,532,1386,318,323,472,141,33600,44800,16300,2770,190,7.7,5,5,16.0,6096,9,999999999,220,0.0950,0,88,0.180,0.0,1.0 +2000,10,28,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,6.1,64,100200,649,1386,335,307,201,213,33400,20400,23800,5200,180,7.7,8,8,16.0,1829,9,999999999,209,0.0950,0,88,0.180,0.0,1.0 +2000,10,28,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,5.6,60,100100,706,1386,337,190,6,187,21800,500,21500,7670,190,8.8,8,8,16.0,1158,9,999999999,209,0.0950,0,88,0.180,0.0,1.0 +2000,10,28,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,5.6,57,100100,700,1386,356,171,0,171,19700,0,19700,7160,200,7.7,10,10,16.0,1676,9,999999999,200,0.0950,0,88,0.180,0.0,1.0 +2000,10,28,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,6.1,62,100100,630,1386,354,272,111,222,29900,11000,24900,6200,190,6.7,10,10,16.0,1676,9,999999999,200,0.0950,0,88,0.180,0.0,1.0 +2000,10,28,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,8.3,80,100200,502,1386,349,248,213,170,26700,20400,19300,3910,230,5.2,10,10,6.4,1311,9,999999999,200,0.0950,0,88,0.180,0.0,1.0 +2000,10,28,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,8.3,83,100200,324,1386,346,130,89,109,14000,7400,12200,2380,150,4.6,10,10,16.0,1981,9,999999999,189,0.0950,0,88,0.180,0.0,1.0 +2000,10,28,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,11.6,8.0,79,100200,112,1386,348,0,0,0,0,0,0,0,140,4.6,10,10,16.0,2058,9,999999999,189,0.0950,0,88,0.180,999.0,99.0 +2000,10,28,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,7.8,77,100200,0,12,348,0,0,0,0,0,0,0,130,4.6,10,10,16.0,2134,9,999999999,179,0.0950,0,88,0.180,0.0,1.0 +2000,10,28,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,7.2,74,100200,0,0,348,0,0,0,0,0,0,0,150,6.2,10,10,16.0,1676,9,999999999,179,0.0950,0,88,0.180,0.0,1.0 +2000,10,28,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,7.2,77,100300,0,0,335,0,0,0,0,0,0,0,170,4.6,9,9,16.0,3353,9,999999999,170,0.0950,0,88,0.180,0.0,1.0 +2000,10,28,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,7.2,77,100300,0,0,345,0,0,0,0,0,0,0,160,4.1,10,10,16.0,1829,9,999999999,170,0.0950,0,88,0.180,0.0,1.0 +2000,10,28,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,6.1,68,100300,0,0,346,0,0,0,0,0,0,0,160,5.2,10,10,16.0,2896,9,999999999,160,0.0950,0,88,0.180,0.0,1.0 +2000,10,28,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,5.6,66,100400,0,0,336,0,0,0,0,0,0,0,170,6.7,10,9,16.0,2286,9,999999999,160,0.0950,0,88,0.180,0.0,1.0 +2000,10,28,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,5.6,64,100400,0,0,348,0,0,0,0,0,0,0,180,7.2,10,10,16.0,1311,9,999999999,160,0.0950,0,88,0.180,0.0,1.0 +2000,10,29,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,5.6,66,100500,0,0,336,0,0,0,0,0,0,0,180,6.2,9,9,16.0,2896,9,999999999,160,0.0940,0,88,0.180,0.0,1.0 +2000,10,29,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,6.7,77,100500,0,0,342,0,0,0,0,0,0,0,140,4.6,10,10,16.0,2896,9,999999999,150,0.0940,0,88,0.180,0.0,1.0 +2000,10,29,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,7.2,79,100500,0,0,342,0,0,0,0,0,0,0,140,4.6,10,10,16.0,1311,9,999999999,150,0.0940,0,88,0.180,0.0,1.0 +2000,10,29,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,8.3,89,100600,0,0,341,0,0,0,0,0,0,0,120,4.6,10,10,16.0,1250,9,999999999,150,0.0940,0,88,0.180,0.0,1.0 +2000,10,29,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,7.2,83,100600,0,0,339,0,0,0,0,0,0,0,120,4.1,10,10,16.0,1676,9,999999999,150,0.0940,0,88,0.180,0.0,1.0 +2000,10,29,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,7.8,86,100700,0,0,340,0,0,0,0,0,0,0,120,4.1,10,10,16.0,1219,9,999999999,150,0.0940,0,88,0.180,0.0,1.0 +2000,10,29,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,7.8,86,100700,4,266,340,0,0,0,0,0,0,0,120,4.6,10,10,16.0,1433,9,999999999,150,0.0940,0,88,0.180,0.0,1.0 +2000,10,29,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,8.3,89,100800,151,1387,341,38,65,31,4200,3800,3800,650,110,4.1,10,10,16.0,1463,9,999999999,139,0.0940,0,88,0.180,0.0,1.0 +2000,10,29,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,8.9,93,100900,358,1387,332,83,0,83,9400,0,9400,3040,130,5.2,9,9,16.0,1280,9,999999999,139,0.0940,0,88,0.180,0.0,1.0 +2000,10,29,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,9.4,89,100900,526,1387,347,128,0,128,14600,0,14600,4990,120,5.7,10,10,16.0,1463,9,999999999,139,0.0940,0,88,0.180,0.0,1.0 +2000,10,29,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,8.3,80,101000,643,1387,332,128,0,128,14900,0,14900,5510,100,3.6,9,8,16.0,1463,9,999999999,139,0.0940,0,88,0.180,0.0,1.0 +2000,10,29,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,7.8,72,101000,700,1387,337,458,515,197,47700,51500,21600,4250,130,4.6,8,8,16.0,1829,9,999999999,139,0.0940,0,88,0.180,0.0,1.0 +2000,10,29,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,7.8,67,101000,693,1387,342,360,267,226,38200,27600,24300,5220,110,3.6,8,8,16.0,2743,9,999999999,150,0.0940,0,88,0.180,0.0,1.0 +2000,10,29,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,6.7,60,101000,623,1387,343,437,638,149,46100,62800,17800,3010,90,3.1,8,8,16.0,1829,9,999999999,150,0.0940,0,88,0.180,0.0,1.0 +2000,10,29,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,7.2,60,101000,495,1387,334,295,420,144,30300,39000,16300,2830,90,3.1,5,5,16.0,7620,9,999999999,150,0.0940,0,88,0.180,0.0,1.0 +2000,10,29,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,8.3,72,101000,318,1387,328,209,364,125,21400,29100,14700,2660,140,3.1,5,5,16.0,77777,9,999999999,150,0.0940,0,88,0.180,0.0,1.0 +2000,10,29,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,7.8,77,101000,106,1375,315,35,185,21,3700,9500,2900,380,130,2.1,3,3,16.0,77777,9,999999999,150,0.0940,0,88,0.180,0.0,1.0 +2000,10,29,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,7.8,80,101100,0,0,305,0,0,0,0,0,0,0,0,0.0,1,1,16.0,7620,9,999999999,150,0.0940,0,88,0.180,0.0,1.0 +2000,10,29,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,7.2,89,101200,0,0,299,0,0,0,0,0,0,0,290,1.5,2,2,16.0,7620,9,999999999,160,0.0940,0,88,0.180,0.0,1.0 +2000,10,29,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,7.2,89,101200,0,0,295,0,0,0,0,0,0,0,300,2.1,1,1,16.0,7620,9,999999999,160,0.0940,0,88,0.180,0.0,1.0 +2000,10,29,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,6.7,93,101300,0,0,285,0,0,0,0,0,0,0,290,2.1,1,0,16.0,7620,9,999999999,160,0.0940,0,88,0.180,0.0,1.0 +2000,10,29,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,6.1,93,101300,0,0,282,0,0,0,0,0,0,0,0,0.0,0,0,16.0,7620,9,999999999,160,0.0940,0,88,0.180,0.0,1.0 +2000,10,29,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,6.7,93,101400,0,0,285,0,0,0,0,0,0,0,320,2.6,0,0,16.0,77777,9,999999999,160,0.0940,0,88,0.180,0.0,1.0 +2000,10,29,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,5.6,93,101500,0,0,279,0,0,0,0,0,0,0,320,1.5,0,0,16.0,77777,9,999999999,150,0.0940,0,88,0.180,0.0,1.0 +2000,10,30,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,4.4,100,101500,0,0,269,0,0,0,0,0,0,0,280,2.6,0,0,16.0,77777,9,999999999,139,0.0930,0,88,0.180,0.0,1.0 +2000,10,30,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.9,3.9,100,101600,0,0,267,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,139,0.0930,0,88,0.180,0.0,1.0 +2000,10,30,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,5.6,97,101600,0,0,277,0,0,0,0,0,0,0,360,1.5,0,0,16.0,77777,9,999999999,129,0.0930,0,88,0.180,0.0,1.0 +2000,10,30,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,5.6,97,101700,0,0,277,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,129,0.0930,0,88,0.180,0.0,1.0 +2000,10,30,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.9,3.9,100,101700,0,0,278,0,0,0,0,0,0,0,0,0.0,3,3,12.8,77777,9,999999999,120,0.0930,0,88,0.180,0.0,1.0 +2000,10,30,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,3.9,97,101800,0,0,280,0,0,0,0,0,0,0,0,0.0,3,3,16.0,77777,9,999999999,120,0.0930,0,88,0.180,0.0,1.0 +2000,10,30,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.9,3.3,96,101800,3,243,277,0,0,0,0,0,0,0,0,0.0,3,3,16.0,77777,9,999999999,110,0.0930,0,88,0.180,0.0,1.0 +2000,10,30,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,5.6,93,101900,145,1388,291,47,167,29,4900,8900,4000,510,0,0.0,3,3,16.0,77777,9,999999999,110,0.0930,0,88,0.180,0.0,1.0 +2000,10,30,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,5.6,90,102000,352,1388,293,156,244,93,16400,20600,11200,1810,310,3.1,3,3,16.0,77777,9,999999999,100,0.0930,0,88,0.180,0.0,1.0 +2000,10,30,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,6.1,83,102000,520,1388,301,332,547,127,34900,51600,15400,2460,310,2.6,3,3,16.0,77777,9,999999999,100,0.0930,0,88,0.180,0.0,1.0 +2000,10,30,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,6.1,74,102000,636,1388,308,418,696,98,44100,68000,12700,2040,300,2.6,3,3,16.0,77777,9,999999999,100,0.0930,0,88,0.180,0.0,1.0 +2000,10,30,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,6.7,69,102000,693,1388,316,470,695,121,49100,68400,14800,2560,280,3.1,3,3,16.0,77777,9,999999999,110,0.0930,0,88,0.180,0.0,1.0 +2000,10,30,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,6.7,64,102000,687,1388,321,481,778,94,49800,75900,12100,1930,280,3.6,3,3,16.0,77777,9,999999999,110,0.0930,0,88,0.180,0.0,1.0 +2000,10,30,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,7.2,62,102000,617,1388,326,410,639,125,42300,61300,14900,2460,290,4.1,3,3,16.0,77777,9,999999999,120,0.0930,0,88,0.180,0.0,1.0 +2000,10,30,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,6.7,58,102000,489,1388,331,328,667,92,33800,61200,12200,1740,290,4.1,4,4,16.0,77777,9,999999999,120,0.0930,0,88,0.180,0.0,1.0 +2000,10,30,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,7.2,60,102000,312,1388,332,201,457,98,20300,35900,12200,1860,290,3.1,4,4,16.0,77777,9,999999999,129,0.0930,0,88,0.180,0.0,1.0 +2000,10,30,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,7.8,69,102000,100,1330,322,32,226,15,3400,11700,2500,280,330,2.6,3,3,16.0,77777,9,999999999,129,0.0930,0,88,0.180,0.0,1.0 +2000,10,30,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,6.7,74,102100,0,0,298,0,0,0,0,0,0,0,310,4.1,0,0,16.0,77777,9,999999999,139,0.0930,0,88,0.180,0.0,1.0 +2000,10,30,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,6.7,80,102200,0,0,294,0,0,0,0,0,0,0,330,3.1,0,0,14.4,77777,9,999999999,139,0.0930,0,88,0.180,0.0,1.0 +2000,10,30,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,6.7,90,102200,0,0,287,0,0,0,0,0,0,0,330,1.5,0,0,12.8,77777,9,999999999,150,0.0930,0,88,0.180,0.0,1.0 +2000,10,30,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,6.7,90,102200,0,0,287,0,0,0,0,0,0,0,360,2.6,0,0,12.8,77777,9,999999999,150,0.0930,0,88,0.180,0.0,1.0 +2000,10,30,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,6.7,93,102300,0,0,297,0,0,0,0,0,0,0,0,0.0,3,3,9.6,77777,9,999999999,160,0.0930,0,88,0.180,0.0,1.0 +2000,10,30,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,6.7,97,102300,0,0,310,0,0,0,0,0,0,0,340,3.6,8,8,8.0,213,9,999999999,150,0.0930,0,88,0.180,0.0,1.0 +2000,10,30,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,6.7,97,102300,0,0,326,0,0,0,0,0,0,0,20,1.5,10,10,6.4,91,9,999999999,150,0.0930,0,88,0.180,0.0,1.0 +2000,10,31,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,6.7,97,102300,0,0,326,0,0,0,0,0,0,0,0,0.0,10,10,6.4,91,9,999999999,150,0.0930,0,88,0.180,0.0,1.0 +2000,10,31,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,6.7,97,102400,0,0,326,0,0,0,0,0,0,0,340,2.1,10,10,4.8,91,9,999999999,139,0.0930,0,88,0.180,0.0,1.0 +2000,10,31,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,6.7,97,102400,0,0,326,0,0,0,0,0,0,0,50,2.1,10,10,6.4,91,9,999999999,139,0.0930,0,88,0.180,0.0,1.0 +2000,10,31,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,6.7,97,102500,0,0,326,0,0,0,0,0,0,0,0,0.0,10,10,8.0,91,9,999999999,139,0.0930,0,88,0.180,0.0,1.0 +2000,10,31,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,6.7,97,102400,0,0,326,0,0,0,0,0,0,0,140,1.5,10,10,9.6,152,9,999999999,129,0.0930,0,88,0.180,0.0,1.0 +2000,10,31,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,6.7,93,102500,0,0,328,0,0,0,0,0,0,0,0,0.0,10,10,8.0,213,9,999999999,129,0.0930,0,88,0.180,0.0,1.0 +2000,10,31,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,7.2,93,102500,2,197,331,0,0,0,0,0,0,0,0,0.0,10,10,6.4,213,9,999999999,129,0.0930,0,88,0.180,0.0,1.0 +2000,10,31,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,7.2,93,102600,140,1388,331,26,8,25,2800,500,2800,630,0,0.0,10,10,8.0,213,9,999999999,120,0.0930,0,88,0.180,0.0,1.0 +2000,10,31,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,7.2,89,102600,346,1388,334,73,0,73,8300,0,8300,2730,160,2.6,10,10,9.6,274,9,999999999,120,0.0930,0,88,0.180,0.0,1.0 +2000,10,31,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,7.8,90,102600,514,1388,337,112,0,112,12900,0,12900,4480,160,2.1,10,10,9.6,366,9,999999999,120,0.0930,0,88,0.180,0.0,1.0 +2000,10,31,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,7.2,79,102600,630,1388,342,156,6,153,17900,500,17700,6240,190,3.1,10,10,16.0,427,9,999999999,120,0.0930,0,88,0.180,0.0,1.0 +2000,10,31,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,7.2,77,102600,687,1388,345,190,6,187,21700,500,21500,7540,0,0.0,10,10,16.0,1250,9,999999999,120,0.0930,0,88,0.180,0.0,1.0 +2000,10,31,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,7.8,77,102600,680,1388,348,139,0,139,16200,0,16200,6030,200,3.1,10,10,16.0,1158,9,999999999,120,0.0930,0,88,0.180,0.0,1.0 +2000,10,31,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,8.9,83,102600,611,1388,350,103,0,103,12100,0,12100,4520,0,0.0,10,10,8.0,610,9,999999999,120,0.0930,0,88,0.180,0.0,1.0 +2000,10,31,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,10.0,93,102600,483,1388,348,63,0,63,7500,0,7500,2740,70,1.5,10,10,14.4,945,9,999999999,120,0.0930,0,88,0.180,0.0,1.0 +2000,10,31,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,10.0,89,102600,306,1388,351,68,0,68,7700,0,7700,2460,80,1.5,10,10,11.2,640,9,999999999,120,0.0930,0,88,0.180,0.0,1.0 +2000,10,31,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,10.0,93,102600,95,1307,348,10,0,10,1200,0,1200,390,80,1.5,10,10,12.8,457,9,999999999,120,0.0930,0,88,0.180,0.0,1.0 +2000,10,31,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,9.4,89,102600,0,0,347,0,0,0,0,0,0,0,0,0.0,10,10,16.0,792,9,999999999,120,0.0930,0,88,0.180,0.0,1.0 +2000,10,31,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,10.0,96,102700,0,0,345,0,0,0,0,0,0,0,0,0.0,10,10,11.2,274,9,999999999,120,0.0930,0,88,0.180,0.0,1.0 +2000,10,31,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,10.0,96,102700,0,0,345,0,0,0,0,0,0,0,360,1.5,10,10,11.2,1219,9,999999999,129,0.0930,0,88,0.180,0.0,1.0 +2000,10,31,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,8.9,97,102700,0,0,322,0,0,0,0,0,0,0,0,0.0,8,8,6.4,1219,9,999999999,129,0.0930,0,88,0.180,0.0,1.0 +2000,10,31,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.3,8.8,100,102700,0,0,322,0,0,0,0,0,0,0,280,0.3,8,8,3.2,122,9,999999999,129,0.0930,0,88,0.180,0.0,1.0 +2000,10,31,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.3,8.7,100,102700,0,0,338,0,0,0,0,0,0,0,360,0.6,10,10,2.0,61,9,999999999,129,0.0930,0,88,0.180,0.0,1.0 +2000,10,31,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.2,8.6,96,102700,0,0,337,0,0,0,0,0,0,0,360,0.9,10,10,3.6,61,9,999999999,129,0.0930,0,88,0.180,0.0,1.0 +1986,11,1,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.1,8.6,93,103000,0,0,320,0,0,0,0,0,0,0,60,1.2,8,8,6.4,240,9,999999999,160,0.0860,0,88,999.000,999.0,99.0 +1986,11,1,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.0,8.5,93,103000,0,0,336,0,0,0,0,0,0,0,340,1.5,10,10,1.2,120,9,999999999,160,0.0860,0,88,999.000,999.0,99.0 +1986,11,1,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.0,8.4,100,103000,0,0,336,0,0,0,0,0,0,0,340,1.8,10,10,0.8,90,9,999999999,150,0.0860,0,88,999.000,999.0,99.0 +1986,11,1,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,8.3,96,103000,0,0,335,0,0,0,0,0,0,0,40,2.1,10,10,0.8,90,9,999999999,150,0.0860,0,88,999.000,999.0,99.0 +1986,11,1,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,8.3,100,103100,0,0,332,0,0,0,0,0,0,0,10,1.5,10,10,0.8,90,9,999999999,150,0.0860,0,88,999.000,999.0,99.0 +1986,11,1,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,8.3,100,103100,0,0,332,0,0,0,0,0,0,0,70,2.1,10,10,0.2,30,9,999999999,150,0.0860,0,88,999.000,999.0,99.0 +1986,11,1,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,8.9,96,103100,2,197,338,1,0,1,0,0,0,0,20,1.5,10,10,1.2,90,9,999999999,150,0.0780,0,88,999.000,999.0,99.0 +1986,11,1,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,9.4,100,103100,137,1388,339,21,3,20,2400,0,2400,740,350,2.6,10,10,2.4,150,9,999999999,150,0.0780,0,88,999.000,999.0,99.0 +1986,11,1,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,9.4,96,103200,343,1388,332,80,33,71,8700,2800,8000,1920,300,2.1,9,9,4.8,150,9,999999999,150,0.0780,0,88,999.000,999.0,99.0 +1986,11,1,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,8.9,90,103200,511,1388,335,157,50,138,17200,4700,15400,3850,360,2.1,9,9,6.4,150,9,999999999,150,0.0780,0,88,999.000,999.0,99.0 +1986,11,1,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,9.4,86,103200,627,1388,328,336,313,192,35500,31800,21100,4230,320,2.1,9,7,11.3,7620,9,999999999,160,0.0780,0,88,999.000,999.0,99.0 +1986,11,1,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,10.6,81,103100,684,1388,330,426,469,191,44000,46800,20900,4070,300,2.6,8,4,19.3,77777,9,999999999,160,0.0780,0,88,999.000,999.0,99.0 +1986,11,1,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,10.0,63,103100,678,1388,342,418,556,142,44400,55600,17200,2920,70,2.1,4,3,64.4,77777,9,999999999,160,0.0780,0,88,999.000,999.0,99.0 +1986,11,1,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,8.3,54,103000,608,1388,343,390,579,132,41200,56800,16200,2620,120,2.1,5,3,64.4,77777,9,999999999,160,0.0780,0,88,999.000,999.0,99.0 +1986,11,1,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,8.3,58,103000,480,1388,346,238,180,174,25400,17000,19500,3970,100,4.1,7,6,64.4,7620,9,999999999,160,0.0780,0,88,999.000,999.0,99.0 +1986,11,1,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,7.8,58,103000,303,1388,347,123,48,112,13400,4100,12500,2580,100,3.1,8,7,64.4,7620,9,999999999,160,0.0780,0,88,999.000,999.0,99.0 +1986,11,1,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,7.8,67,103000,93,1284,333,35,22,33,3800,1300,3700,740,130,2.6,10,6,64.4,7620,9,999999999,160,0.0780,0,88,999.000,999.0,99.0 +1986,11,1,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,7.2,69,103000,0,0,331,0,0,0,0,0,0,0,100,2.1,10,7,24.1,7620,9,999999999,160,0.0860,0,88,999.000,999.0,99.0 +1986,11,1,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,7.8,75,103000,0,0,329,0,0,0,0,0,0,0,40,1.5,10,7,24.1,7620,9,999999999,150,0.0860,0,88,999.000,999.0,99.0 +1986,11,1,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,7.8,86,103000,0,0,324,0,0,0,0,0,0,0,290,2.6,10,8,24.1,7620,9,999999999,150,0.0860,0,88,999.000,999.0,99.0 +1986,11,1,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,8.3,90,103000,0,0,315,0,0,0,0,0,0,0,290,2.6,10,6,24.1,7620,9,999999999,150,0.0860,0,88,999.000,999.0,99.0 +1986,11,1,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,7.8,96,103100,0,0,302,0,0,0,0,0,0,0,270,2.1,10,4,24.1,77777,9,999999999,150,0.0860,0,88,999.000,999.0,99.0 +1986,11,1,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,8.3,96,103000,0,0,306,0,0,0,0,0,0,0,0,0.0,10,4,24.1,77777,9,999999999,150,0.0860,0,88,999.000,999.0,99.0 +1986,11,1,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,6.7,93,103100,0,0,301,0,0,0,0,0,0,0,260,2.1,10,5,24.1,77777,9,999999999,150,0.0860,0,88,999.000,999.0,99.0 +1986,11,2,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,7.2,96,103000,0,0,329,0,0,0,0,0,0,0,300,2.6,10,10,24.1,6100,9,999999999,150,0.0850,0,88,999.000,999.0,99.0 +1986,11,2,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,7.8,96,103000,0,0,332,0,0,0,0,0,0,0,320,2.1,10,10,24.1,6100,9,999999999,139,0.0850,0,88,999.000,999.0,99.0 +1986,11,2,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,7.8,96,102900,0,0,323,0,0,0,0,0,0,0,290,2.6,10,9,16.1,6100,9,999999999,139,0.0850,0,88,999.000,999.0,99.0 +1986,11,2,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,7.2,93,102900,0,0,310,0,0,0,0,0,0,0,290,2.1,10,7,24.1,6100,9,999999999,139,0.0850,0,88,999.000,999.0,99.0 +1986,11,2,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,6.7,93,103000,0,0,304,0,0,0,0,0,0,0,10,2.1,10,6,24.1,6100,9,999999999,139,0.0850,0,88,999.000,999.0,99.0 +1986,11,2,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,6.7,100,102900,0,0,295,0,0,0,0,0,0,0,0,0.0,10,4,24.1,77777,9,999999999,139,0.0850,0,88,999.000,999.0,99.0 +1986,11,2,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,5.6,100,102900,1,150,297,1,0,1,0,0,0,0,290,2.1,10,7,3.2,90,9,999999999,129,0.0800,0,88,999.000,999.0,99.0 +1986,11,2,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,7.8,100,103000,132,1389,309,44,17,42,4800,1100,4700,940,0,0.0,10,7,1.6,90,9,999999999,129,0.0800,0,88,999.000,999.0,99.0 +1986,11,2,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,7.8,93,103000,337,1389,326,100,47,89,11000,4100,10000,2290,330,2.1,9,9,4.0,60,9,999999999,129,0.0800,0,88,999.000,999.0,99.0 +1986,11,2,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,8.9,86,103000,505,1389,325,206,204,131,22000,19700,14800,2650,0,0.0,8,7,11.3,7620,9,999999999,129,0.0800,0,88,999.000,999.0,99.0 +1986,11,2,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,9.4,80,102900,621,1389,326,369,409,183,39100,41500,20400,3990,280,2.1,10,5,32.2,77777,9,999999999,120,0.0800,0,88,999.000,999.0,99.0 +1986,11,2,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,9.4,72,102800,678,1389,341,380,202,280,40500,20400,30500,6930,290,4.1,10,7,40.2,7620,9,999999999,120,0.0800,0,88,999.000,999.0,99.0 +1986,11,2,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,8.9,65,102700,671,1389,336,362,327,202,38500,33700,22100,4530,290,2.6,8,4,40.2,77777,9,999999999,120,0.0800,0,88,999.000,999.0,99.0 +1986,11,2,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,10.0,65,102600,602,1389,340,389,615,118,39800,58800,14200,2320,280,2.6,6,3,64.4,77777,9,999999999,110,0.0800,0,88,999.000,999.0,99.0 +1986,11,2,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,10.0,61,102600,474,1389,342,260,411,117,26900,37800,14000,2230,300,2.1,4,2,64.4,77777,9,999999999,110,0.0800,0,88,999.000,999.0,99.0 +1986,11,2,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,10.0,63,102500,297,1389,339,153,369,71,15600,28600,9500,1300,290,2.1,4,2,64.4,77777,9,999999999,110,0.0800,0,88,999.000,999.0,99.0 +1986,11,2,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,8.9,63,102500,88,1262,333,38,111,28,3800,4200,3500,510,0,0.0,6,2,64.4,77777,9,999999999,110,0.0800,0,88,999.000,999.0,99.0 +1986,11,2,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,8.9,77,102500,0,0,321,0,0,0,0,0,0,0,0,0.0,6,3,64.4,77777,9,999999999,120,0.0850,0,88,999.000,999.0,99.0 +1986,11,2,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,8.3,75,102500,0,0,328,0,0,0,0,0,0,0,260,1.5,7,6,24.1,6100,9,999999999,129,0.0850,0,88,999.000,999.0,99.0 +1986,11,2,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,8.9,86,102500,0,0,316,0,0,0,0,0,0,0,310,2.6,8,4,24.1,77777,9,999999999,129,0.0850,0,88,999.000,999.0,99.0 +1986,11,2,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,7.2,83,102500,0,0,300,0,0,0,0,0,0,0,320,2.1,5,1,24.1,77777,9,999999999,139,0.0850,0,88,999.000,999.0,99.0 +1986,11,2,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,7.2,86,102500,0,0,292,0,0,0,0,0,0,0,310,2.1,0,0,24.1,77777,9,999999999,139,0.0850,0,88,999.000,999.0,99.0 +1986,11,2,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,7.2,93,102500,0,0,287,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,150,0.0850,0,88,999.000,999.0,99.0 +1986,11,2,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,5.6,89,102500,0,0,281,0,0,0,0,0,0,0,290,2.1,0,0,9.7,77777,9,999999999,150,0.0850,0,88,999.000,999.0,99.0 +1986,11,3,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,7.8,100,102600,0,0,303,0,0,0,0,0,0,0,30,2.1,5,5,0.8,77777,9,999999999,150,0.0840,0,88,999.000,999.0,99.0 +1986,11,3,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,7.2,96,102600,0,0,308,0,0,0,0,0,0,0,310,1.5,7,7,0.2,77777,9,999999999,160,0.0840,0,88,999.000,999.0,99.0 +1986,11,3,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,7.2,93,102600,0,0,331,0,0,0,0,0,0,0,0,0.0,10,10,0.2,30,9,999999999,160,0.0840,0,88,999.000,999.0,99.0 +1986,11,3,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,7.8,96,102500,0,0,332,0,0,0,0,0,0,0,60,1.5,10,10,0.2,30,9,999999999,170,0.0840,0,88,999.000,999.0,99.0 +1986,11,3,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,7.8,96,102600,0,0,332,0,0,0,0,0,0,0,340,2.1,10,10,0.2,30,9,999999999,170,0.0840,0,88,999.000,999.0,99.0 +1986,11,3,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,8.3,100,102600,0,0,332,0,0,0,0,0,0,0,30,1.5,10,10,0.8,90,9,999999999,170,0.0840,0,88,999.000,999.0,99.0 +1986,11,3,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,8.3,100,102600,1,127,332,1,0,1,0,0,0,0,10,1.5,10,10,1.2,150,9,999999999,170,0.0600,0,88,999.000,999.0,99.0 +1986,11,3,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,6.1,86,102600,126,1390,314,43,77,35,4400,3500,4100,650,350,2.6,8,8,4.8,240,9,999999999,170,0.0600,0,88,999.000,999.0,99.0 +1986,11,3,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,8.3,90,102600,332,1390,341,104,2,103,11400,100,11400,3360,350,2.6,10,10,4.8,240,9,999999999,170,0.0600,0,88,999.000,999.0,99.0 +1986,11,3,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,8.3,86,102600,499,1390,343,162,36,149,17800,3400,16500,4040,360,1.5,10,10,8.0,270,9,999999999,179,0.0600,0,88,999.000,999.0,99.0 +1986,11,3,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,8.3,80,102600,615,1390,318,357,439,160,37100,43000,18000,3250,350,3.1,8,4,11.3,77777,9,999999999,179,0.0600,0,88,999.000,999.0,99.0 +1986,11,3,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,8.9,72,102600,672,1390,326,422,515,169,44100,51300,19200,3530,300,3.6,6,3,11.3,77777,9,999999999,179,0.0600,0,88,999.000,999.0,99.0 +1986,11,3,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,9.4,75,102500,665,1390,323,429,688,95,45100,67900,12500,2030,270,1.5,5,2,24.1,77777,9,999999999,179,0.0600,0,88,999.000,999.0,99.0 +1986,11,3,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,9.4,70,102400,596,1390,328,387,627,115,39800,59900,14000,2260,110,2.6,4,2,64.4,77777,9,999999999,179,0.0600,0,88,999.000,999.0,99.0 +1986,11,3,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,8.9,65,102400,468,1390,326,281,666,52,29200,61500,8400,1100,350,2.1,2,1,64.4,77777,9,999999999,179,0.0600,0,88,999.000,999.0,99.0 +1986,11,3,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,8.3,65,102400,291,1390,330,145,349,70,14900,26800,9300,1280,0,0.0,6,3,64.4,77777,9,999999999,179,0.0600,0,88,999.000,999.0,99.0 +1986,11,3,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,6.7,69,102300,83,1216,318,39,106,30,3900,4000,3600,560,140,4.1,5,4,64.4,77777,9,999999999,179,0.0600,0,88,999.000,999.0,99.0 +1986,11,3,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,6.1,74,102300,0,0,295,0,0,0,0,0,0,0,130,3.6,2,0,24.1,77777,9,999999999,179,0.0840,0,88,999.000,999.0,99.0 +1986,11,3,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,6.7,83,102400,0,0,291,0,0,0,0,0,0,0,100,2.6,0,0,24.1,77777,9,999999999,179,0.0840,0,88,999.000,999.0,99.0 +1986,11,3,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,6.1,80,102400,0,0,290,0,0,0,0,0,0,0,130,1.5,0,0,24.1,77777,9,999999999,179,0.0840,0,88,999.000,999.0,99.0 +1986,11,3,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,6.1,86,102400,0,0,286,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,179,0.0840,0,88,999.000,999.0,99.0 +1986,11,3,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,6.7,86,102400,0,0,289,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,189,0.0840,0,88,999.000,999.0,99.0 +1986,11,3,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,6.1,86,102400,0,0,286,0,0,0,0,0,0,0,70,1.5,0,0,24.1,77777,9,999999999,189,0.0840,0,88,999.000,999.0,99.0 +1986,11,3,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,6.1,89,102400,0,0,307,0,0,0,0,0,0,0,0,0.0,9,7,9.7,370,9,999999999,189,0.0840,0,88,999.000,999.0,99.0 +1986,11,4,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,7.2,93,102400,0,0,331,0,0,0,0,0,0,0,0,0.0,10,10,1.2,120,9,999999999,189,0.0840,0,88,999.000,999.0,99.0 +1986,11,4,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,7.2,93,102400,0,0,331,0,0,0,0,0,0,0,330,2.1,10,10,1.2,180,9,999999999,189,0.0840,0,88,999.000,999.0,99.0 +1986,11,4,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,7.8,96,102400,0,0,332,0,0,0,0,0,0,0,350,2.6,10,10,0.8,120,9,999999999,189,0.0840,0,88,999.000,999.0,99.0 +1986,11,4,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,8.3,100,102500,0,0,332,0,0,0,0,0,0,0,340,2.1,10,10,0.8,120,9,999999999,189,0.0840,0,88,999.000,999.0,99.0 +1986,11,4,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,7.2,93,102400,0,0,331,0,0,0,0,0,0,0,50,2.6,10,10,3.2,90,9,999999999,189,0.0840,0,88,999.000,999.0,99.0 +1986,11,4,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,6.1,89,102500,0,0,299,0,0,0,0,0,0,0,10,2.6,4,4,6.4,77777,9,999999999,189,0.0840,0,88,999.000,999.0,99.0 +1986,11,4,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,6.7,96,102400,0,104,305,2,1,1,0,0,0,0,0,0.0,8,7,4.8,150,9,999999999,189,0.0390,0,88,999.000,999.0,99.0 +1986,11,4,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,6.1,86,102500,121,1391,309,44,37,40,4700,2300,4500,890,0,0.0,9,7,4.8,150,9,999999999,189,0.0390,0,88,999.000,999.0,99.0 +1986,11,4,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,7.8,90,102500,326,1391,316,129,126,99,13900,10500,11400,2160,40,1.5,9,7,6.4,150,9,999999999,189,0.0390,0,88,999.000,999.0,99.0 +1986,11,4,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,7.2,83,102500,493,1391,312,294,536,101,29900,49000,12500,1880,310,2.1,7,5,8.0,150,9,999999999,189,0.0390,0,88,999.000,999.0,99.0 +1986,11,4,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,7.8,80,102500,609,1391,312,376,633,95,39200,61400,12200,1950,360,2.1,5,3,16.1,77777,9,999999999,189,0.0390,0,88,999.000,999.0,99.0 +1986,11,4,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,8.3,77,102500,666,1391,310,443,776,66,47000,76400,10300,1510,280,3.1,3,1,19.3,77777,9,999999999,189,0.0390,0,88,999.000,999.0,99.0 +1986,11,4,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,8.9,80,102400,659,1391,311,437,780,62,45500,75600,9500,1440,270,3.1,3,1,19.3,77777,9,999999999,189,0.0390,0,88,999.000,999.0,99.0 +1986,11,4,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,8.9,77,102300,590,1391,314,325,535,94,33700,51500,11800,1900,290,3.1,4,1,19.3,77777,9,999999999,189,0.0390,0,88,999.000,999.0,99.0 +1986,11,4,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,9.4,75,102300,462,1391,326,289,606,84,29600,54900,11200,1580,300,3.6,6,3,19.3,77777,9,999999999,189,0.0390,0,88,999.000,999.0,99.0 +1986,11,4,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,10.0,80,102300,286,1391,324,140,295,77,14200,22400,9500,1430,290,3.6,8,3,16.1,77777,9,999999999,189,0.0390,0,88,999.000,999.0,99.0 +1986,11,4,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,9.4,96,102300,79,1194,311,32,68,26,3200,2500,3100,470,290,2.6,8,4,6.4,77777,9,999999999,189,0.0390,0,88,999.000,999.0,99.0 +1986,11,4,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,7.8,96,102300,0,0,323,0,0,0,0,0,0,0,260,2.6,10,9,4.0,7620,9,999999999,189,0.0840,0,88,999.000,999.0,99.0 +1986,11,4,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,7.8,96,102300,0,0,332,0,0,0,0,0,0,0,260,2.1,10,10,4.8,7620,9,999999999,200,0.0840,0,88,999.000,999.0,99.0 +1986,11,4,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,7.8,96,102300,0,0,323,0,0,0,0,0,0,0,260,2.1,10,9,4.0,7620,9,999999999,200,0.0840,0,88,999.000,999.0,99.0 +1986,11,4,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,7.2,100,102300,0,0,310,0,0,0,0,0,0,0,270,1.5,10,8,0.4,7620,9,999999999,200,0.0840,0,88,999.000,999.0,99.0 +1986,11,4,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,9.4,100,102300,0,0,323,0,0,0,0,0,0,0,30,2.6,10,8,1.6,7620,9,999999999,200,0.0840,0,88,999.000,999.0,99.0 +1986,11,4,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,8.3,96,102300,0,0,326,0,0,0,0,0,0,0,210,1.5,10,9,1.6,7620,9,999999999,200,0.0840,0,88,999.000,999.0,99.0 +1986,11,4,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,8.9,96,102300,0,0,338,0,0,0,0,0,0,0,150,1.5,10,10,0.4,90,9,999999999,200,0.0840,0,88,999.000,999.0,99.0 +1986,11,5,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,9.4,100,102200,0,0,339,0,0,0,0,0,0,0,0,0.0,10,10,0.1,30,9,999999999,200,0.0830,0,88,999.000,999.0,99.0 +1986,11,5,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,8.3,93,102200,0,0,338,0,0,0,0,0,0,0,140,1.5,10,10,4.8,120,9,999999999,209,0.0830,0,88,999.000,999.0,99.0 +1986,11,5,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,8.9,96,102100,0,0,338,0,0,0,0,0,0,0,110,2.1,10,10,1.6,240,9,999999999,209,0.0830,0,88,999.000,999.0,99.0 +1986,11,5,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,8.3,93,102100,0,0,338,0,0,0,0,0,0,0,160,2.1,10,10,2.4,180,9,999999999,209,0.0830,0,88,999.000,999.0,99.0 +1986,11,5,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,8.9,96,102000,0,0,338,0,0,0,0,0,0,0,200,2.6,10,10,6.4,150,9,999999999,200,0.0830,0,88,999.000,999.0,99.0 +1986,11,5,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,8.9,93,102000,0,0,341,0,0,0,0,0,0,0,190,4.6,10,10,6.4,150,9,999999999,200,0.0830,0,88,999.000,999.0,99.0 +1986,11,5,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,9.4,96,102100,0,58,342,0,0,0,0,0,0,0,240,4.1,10,10,6.4,150,9,999999999,189,0.0830,0,88,999.000,999.0,99.0 +1986,11,5,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,8.9,93,102200,115,1391,311,39,116,29,4100,4900,3700,530,250,1.5,4,4,11.3,77777,9,999999999,189,0.1260,0,88,999.000,999.0,99.0 +1986,11,5,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,9.4,86,102200,320,1391,333,96,75,79,10500,6200,9100,1720,320,6.2,8,8,11.3,1490,9,999999999,179,0.1260,0,88,999.000,999.0,99.0 +1986,11,5,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,8.3,75,102300,487,1391,320,225,266,131,23900,25300,15000,2660,300,4.1,3,3,16.1,77777,9,999999999,179,0.1260,0,88,999.000,999.0,99.0 +1986,11,5,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,10.6,83,102300,603,1391,322,394,618,122,40300,59000,14600,2380,270,6.2,6,2,24.1,77777,9,999999999,170,0.1260,0,88,999.000,999.0,99.0 +1986,11,5,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,7.2,62,102300,659,1391,331,346,338,183,36900,34700,20400,4010,250,7.2,5,5,32.2,77777,9,999999999,160,0.1260,0,88,999.000,999.0,99.0 +1986,11,5,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,6.7,62,102300,653,1391,348,134,12,128,15600,800,15200,5540,290,7.2,9,9,19.3,910,9,999999999,160,0.1260,0,88,999.000,999.0,99.0 +1986,11,5,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,7.2,67,102200,584,1391,329,327,394,159,33700,38100,17700,3200,290,6.2,7,6,24.1,1520,9,999999999,150,0.1260,0,88,999.000,999.0,99.0 +1986,11,5,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,8.3,69,102200,456,1391,337,150,100,116,16300,9400,13200,2620,290,6.2,8,7,24.1,1980,9,999999999,150,0.1260,0,88,999.000,999.0,99.0 +1986,11,5,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,6.7,64,102200,280,1391,355,24,2,24,3000,0,3000,1010,290,6.7,10,10,24.1,1830,9,999999999,139,0.1260,0,88,999.000,999.0,99.0 +1986,11,5,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,7.2,72,102200,74,1171,350,11,1,11,1300,0,1300,410,260,5.7,10,10,24.1,1430,9,999999999,139,0.1260,0,88,999.000,999.0,99.0 +1986,11,5,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,7.2,74,102300,0,0,348,0,0,0,0,0,0,0,280,3.6,10,10,24.1,1490,9,999999999,139,0.0830,0,88,999.000,999.0,99.0 +1986,11,5,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,7.2,74,102300,0,0,348,0,0,0,0,0,0,0,260,5.2,10,10,24.1,1490,9,999999999,139,0.0830,0,88,999.000,999.0,99.0 +1986,11,5,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,6.7,77,102300,0,0,320,0,0,0,0,0,0,0,290,3.6,7,7,24.1,1370,9,999999999,129,0.0830,0,88,999.000,999.0,99.0 +1986,11,5,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,6.7,80,102200,0,0,314,0,0,0,0,0,0,0,260,3.6,6,6,24.1,1220,9,999999999,129,0.0830,0,88,999.000,999.0,99.0 +1986,11,5,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,6.7,77,102300,0,0,320,0,0,0,0,0,0,0,260,4.1,7,7,24.1,1490,9,999999999,129,0.0830,0,88,999.000,999.0,99.0 +1986,11,5,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,5.6,77,102300,0,0,300,0,0,0,0,0,0,0,250,3.6,2,2,24.1,77777,9,999999999,129,0.0830,0,88,999.000,999.0,99.0 +1986,11,5,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,5.0,77,102400,0,0,297,0,0,0,0,0,0,0,20,2.1,2,2,24.1,77777,9,999999999,129,0.0830,0,88,999.000,999.0,99.0 +1986,11,6,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,5.0,74,102400,0,0,302,0,0,0,0,0,0,0,250,2.1,4,3,24.1,77777,9,999999999,129,0.0830,0,88,999.000,999.0,99.0 +1986,11,6,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,6.1,83,102400,0,0,312,0,0,0,0,0,0,0,240,2.6,8,7,24.1,1040,9,999999999,120,0.0830,0,88,999.000,999.0,99.0 +1986,11,6,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,6.1,77,102400,0,0,322,0,0,0,0,0,0,0,270,3.1,9,8,24.1,980,9,999999999,120,0.0830,0,88,999.000,999.0,99.0 +1986,11,6,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,6.1,80,102400,0,0,314,0,0,0,0,0,0,0,280,2.6,8,7,24.1,1100,9,999999999,120,0.0830,0,88,999.000,999.0,99.0 +1986,11,6,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,6.1,80,102500,0,0,314,0,0,0,0,0,0,0,280,2.6,8,7,24.1,1160,9,999999999,129,0.0830,0,88,999.000,999.0,99.0 +1986,11,6,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,6.1,80,102500,0,0,319,0,0,0,0,0,0,0,280,3.1,9,8,24.1,1340,9,999999999,129,0.0830,0,88,999.000,999.0,99.0 +1986,11,6,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,6.1,77,102500,0,35,329,0,0,0,0,0,0,0,280,3.1,10,9,24.1,1340,9,999999999,139,0.0830,0,88,999.000,999.0,99.0 +1986,11,6,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,6.7,86,102500,110,1392,313,34,25,32,3700,1500,3600,730,270,3.1,8,7,24.1,1220,9,999999999,139,0.1050,0,88,999.000,999.0,99.0 +1986,11,6,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,6.1,72,102500,314,1392,334,115,57,101,12500,4900,11400,2440,260,3.1,9,9,32.2,1520,9,999999999,150,0.1050,0,88,999.000,999.0,99.0 +1986,11,6,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,6.1,72,102600,481,1392,343,66,4,64,7800,200,7700,2770,260,3.1,10,10,32.2,1220,9,999999999,150,0.1050,0,88,999.000,999.0,99.0 +1986,11,6,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,7.2,80,102500,597,1392,326,137,104,92,15500,10500,11000,2190,190,2.6,8,8,19.3,910,9,999999999,150,0.1050,0,88,999.000,999.0,99.0 +1986,11,6,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,7.2,72,102500,653,1392,340,260,85,219,28400,8400,24400,6270,170,2.6,10,9,32.2,7620,9,999999999,160,0.1050,0,88,999.000,999.0,99.0 +1986,11,6,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,6.1,64,102400,647,1392,352,219,8,215,24500,700,24200,7930,290,4.1,10,10,40.2,1220,9,999999999,160,0.1050,0,88,999.000,999.0,99.0 +1986,11,6,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,5.0,60,102300,578,1392,350,149,7,146,17000,500,16800,5750,300,4.1,10,10,40.2,1340,9,999999999,170,0.1050,0,88,999.000,999.0,99.0 +1986,11,6,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,6.7,72,102300,451,1392,347,150,3,149,16600,200,16500,5010,260,4.1,10,10,32.2,1490,9,999999999,179,0.1050,0,88,999.000,999.0,99.0 +1986,11,6,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,7.2,80,102300,275,1392,342,53,3,53,6100,100,6100,1960,290,3.1,10,10,19.3,1520,9,999999999,179,0.1050,0,88,999.000,999.0,99.0 +1986,11,6,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,6.7,80,102200,70,1125,339,14,0,14,1600,0,1600,510,270,4.1,10,10,16.1,1160,9,999999999,179,0.1050,0,88,999.000,999.0,99.0 +1986,11,6,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,6.7,80,102200,0,0,339,0,0,0,0,0,0,0,300,3.1,10,10,24.1,1340,9,999999999,179,0.0830,0,88,999.000,999.0,99.0 +1986,11,6,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,6.7,86,102100,0,0,334,0,0,0,0,0,0,0,240,2.6,10,10,16.1,1220,9,999999999,179,0.0830,0,88,999.000,999.0,99.0 +1986,11,6,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,6.7,86,102000,0,0,334,0,0,0,0,0,0,0,240,2.6,10,10,19.3,1220,9,999999999,179,0.0830,0,88,999.000,999.0,99.0 +1986,11,6,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,6.7,86,101900,0,0,334,0,0,0,0,0,0,0,0,0.0,10,10,19.3,940,9,999999999,179,0.0830,0,88,999.000,999.0,99.0 +1986,11,6,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,6.7,89,101800,0,0,331,0,0,0,0,0,0,0,220,4.1,10,10,14.5,1040,9,999999999,179,0.0830,0,88,999.000,999.0,99.0 +1986,11,6,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,6.7,89,101700,0,0,331,0,0,0,0,0,0,0,200,3.1,10,10,14.5,1220,9,999999999,170,0.0830,0,88,999.000,999.0,99.0 +1986,11,6,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,7.2,93,101700,0,0,331,0,0,0,0,0,0,0,220,4.1,10,10,8.0,1220,9,999999999,170,0.0830,0,88,999.000,999.0,99.0 +1986,11,7,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,7.2,93,101600,0,0,331,0,0,0,0,0,0,0,220,4.6,10,10,16.1,1100,9,999999999,170,0.0820,0,88,999.000,999.0,99.0 +1986,11,7,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,7.2,93,101500,0,0,331,0,0,0,0,0,0,0,240,4.1,10,10,16.1,940,9,999999999,170,0.0820,0,88,999.000,999.0,99.0 +1986,11,7,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,6.7,89,101500,0,0,331,0,0,0,0,0,0,0,270,3.1,10,10,24.1,1340,9,999999999,170,0.0820,0,88,999.000,999.0,99.0 +1986,11,7,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,6.7,89,101500,0,0,331,0,0,0,0,0,0,0,270,3.1,10,10,24.1,1430,9,999999999,170,0.0820,0,88,999.000,999.0,99.0 +1986,11,7,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,6.1,89,101500,0,0,328,0,0,0,0,0,0,0,260,2.1,10,10,24.1,1340,9,999999999,160,0.0820,0,88,999.000,999.0,99.0 +1986,11,7,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,5.0,89,101600,0,0,295,0,0,0,0,0,0,0,270,2.6,5,5,24.1,77777,9,999999999,160,0.0820,0,88,999.000,999.0,99.0 +1986,11,7,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,5.6,93,101600,0,0,296,0,0,0,0,0,0,0,190,2.1,5,5,24.1,77777,9,999999999,150,0.0820,0,88,999.000,999.0,99.0 +1986,11,7,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,5.0,89,101600,105,1381,293,51,264,28,4900,13000,3900,470,210,2.1,4,4,24.1,77777,9,999999999,150,0.0350,0,88,999.000,999.0,99.0 +1986,11,7,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,6.1,80,101700,308,1393,310,151,336,75,15500,26400,9700,1380,310,2.1,6,6,32.2,1490,9,999999999,150,0.0350,0,88,999.000,999.0,99.0 +1986,11,7,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,6.1,74,101700,475,1393,332,97,1,97,11200,100,11200,3870,250,4.1,9,9,40.2,1520,9,999999999,139,0.0350,0,88,999.000,999.0,99.0 +1986,11,7,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,5.6,74,101700,591,1393,321,248,114,199,27100,11200,22400,5490,270,3.1,8,8,40.2,1100,9,999999999,139,0.0350,0,88,999.000,999.0,99.0 +1986,11,7,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,5.6,72,101700,647,1393,324,243,285,109,26500,28300,13300,2160,20,3.1,8,8,32.2,910,9,999999999,129,0.0350,0,88,999.000,999.0,99.0 +1986,11,7,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,6.1,74,101700,641,1393,325,416,449,206,43800,45800,22600,4620,20,2.1,8,8,40.2,1160,9,999999999,129,0.0350,0,88,999.000,999.0,99.0 +1986,11,7,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,3.3,59,101700,572,1393,310,391,686,105,40200,65200,13300,2060,260,3.1,5,4,48.3,77777,9,999999999,120,0.0350,0,88,999.000,999.0,99.0 +1986,11,7,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,4.4,57,101700,445,1393,319,258,452,110,26600,40800,13500,2080,330,6.2,5,4,48.3,77777,9,999999999,110,0.0350,0,88,999.000,999.0,99.0 +1986,11,7,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,2.8,57,101700,269,1393,307,143,444,54,14300,33300,7800,960,300,4.6,3,3,48.3,77777,9,999999999,110,0.0350,0,88,999.000,999.0,99.0 +1986,11,7,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,2.2,63,101800,66,1103,294,36,201,18,3100,9200,2600,320,280,4.1,2,2,24.1,77777,9,999999999,110,0.0350,0,88,999.000,999.0,99.0 +1986,11,7,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,2.8,68,101900,0,0,292,0,0,0,0,0,0,0,270,4.1,2,2,24.1,77777,9,999999999,110,0.0820,0,88,999.000,999.0,99.0 +1986,11,7,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,2.2,68,101900,0,0,289,0,0,0,0,0,0,0,260,2.6,2,2,24.1,77777,9,999999999,110,0.0820,0,88,999.000,999.0,99.0 +1986,11,7,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,2.2,76,101900,0,0,290,0,0,0,0,0,0,0,260,2.1,5,5,24.1,77777,9,999999999,110,0.0820,0,88,999.000,999.0,99.0 +1986,11,7,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,3.9,77,102000,0,0,325,0,0,0,0,0,0,0,310,3.1,10,10,19.3,1220,9,999999999,110,0.0820,0,88,999.000,999.0,99.0 +1986,11,7,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,4.4,80,102000,0,0,317,0,0,0,0,0,0,0,0,0.0,9,9,19.3,1220,9,999999999,110,0.0820,0,88,999.000,999.0,99.0 +1986,11,7,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,5.0,86,102000,0,0,308,0,0,0,0,0,0,0,250,2.6,8,8,12.9,1220,9,999999999,120,0.0820,0,88,999.000,999.0,99.0 +1986,11,7,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,4.4,86,102000,0,0,312,0,0,0,0,0,0,0,170,2.1,9,9,16.1,1490,9,999999999,120,0.0820,0,88,999.000,999.0,99.0 +1986,11,8,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,5.6,89,102000,0,0,324,0,0,0,0,0,0,0,280,2.1,10,10,24.1,940,9,999999999,120,0.0820,0,88,999.000,999.0,99.0 +1986,11,8,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,5.6,89,102100,0,0,324,0,0,0,0,0,0,0,0,0.0,10,10,24.1,1010,9,999999999,120,0.0820,0,88,999.000,999.0,99.0 +1986,11,8,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,5.6,96,102100,0,0,319,0,0,0,0,0,0,0,0,0.0,10,10,24.1,1830,9,999999999,120,0.0820,0,88,999.000,999.0,99.0 +1986,11,8,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,5.6,93,102200,0,0,322,0,0,0,0,0,0,0,230,1.5,10,10,24.1,1010,9,999999999,120,0.0820,0,88,999.000,999.0,99.0 +1986,11,8,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,5.6,93,102200,0,0,298,0,0,0,0,0,0,0,210,3.1,6,6,24.1,1830,9,999999999,120,0.0820,0,88,999.000,999.0,99.0 +1986,11,8,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,5.0,89,102200,0,0,298,0,0,0,0,0,0,0,0,0.0,6,6,24.1,1830,9,999999999,120,0.0820,0,88,999.000,999.0,99.0 +1986,11,8,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,4.4,86,102300,0,0,305,0,0,0,0,0,0,0,210,2.1,8,8,24.1,1520,9,999999999,120,0.0820,0,88,999.000,999.0,99.0 +1986,11,8,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,5.6,89,102400,99,1359,309,17,3,17,2000,0,2000,620,220,3.1,8,8,24.1,1430,9,999999999,120,0.1160,0,88,999.000,999.0,99.0 +1986,11,8,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,6.1,89,102500,302,1393,328,86,6,85,9600,300,9500,2840,190,2.1,10,10,32.2,1220,9,999999999,120,0.1160,0,88,999.000,999.0,99.0 +1986,11,8,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,6.1,80,102600,469,1393,326,164,54,146,18000,5100,16300,3850,170,2.1,9,9,40.2,1370,9,999999999,120,0.1160,0,88,999.000,999.0,99.0 +1986,11,8,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,5.0,71,102600,585,1393,328,183,102,139,20100,10200,15800,3290,280,2.1,9,9,40.2,1370,9,999999999,120,0.1160,0,88,999.000,999.0,99.0 +1986,11,8,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,3.9,61,102600,641,1393,324,222,51,198,24300,5000,22000,5740,260,3.1,10,8,48.3,1520,9,999999999,120,0.1160,0,88,999.000,999.0,99.0 +1986,11,8,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,4.4,64,102600,635,1393,332,199,50,176,21900,4900,19600,5200,190,3.1,10,9,56.3,1370,9,999999999,120,0.1160,0,88,999.000,999.0,99.0 +1986,11,8,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,3.3,57,102600,566,1393,326,225,141,167,24500,13900,18800,3930,280,2.1,10,8,56.3,6100,9,999999999,120,0.1160,0,88,999.000,999.0,99.0 +1986,11,8,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,3.3,55,102600,439,1393,320,215,256,132,22400,23500,15000,2700,230,3.1,8,6,56.3,6100,9,999999999,120,0.1160,0,88,999.000,999.0,99.0 +1986,11,8,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,3.9,59,102600,264,1393,327,79,38,71,8600,3100,8000,1750,250,3.6,9,8,48.3,6100,9,999999999,120,0.1160,0,88,999.000,999.0,99.0 +1986,11,8,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,3.3,66,102600,62,1080,316,21,4,21,2400,0,2400,690,250,2.6,9,8,24.1,1830,9,999999999,129,0.1160,0,88,999.000,999.0,99.0 +1986,11,8,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,2.2,63,102700,0,0,313,0,0,0,0,0,0,0,240,2.6,9,8,24.1,4570,9,999999999,129,0.0820,0,88,999.000,999.0,99.0 +1986,11,8,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,3.9,74,102700,0,0,328,0,0,0,0,0,0,0,250,2.6,10,10,24.1,6100,9,999999999,139,0.0820,0,88,999.000,999.0,99.0 +1986,11,8,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,3.3,74,102700,0,0,316,0,0,0,0,0,0,0,270,2.1,9,9,24.1,6100,9,999999999,150,0.0820,0,88,999.000,999.0,99.0 +1986,11,8,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,3.3,71,102700,0,0,318,0,0,0,0,0,0,0,0,0.0,10,9,24.1,6100,9,999999999,150,0.0820,0,88,999.000,999.0,99.0 +1986,11,8,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,3.9,77,102700,0,0,325,0,0,0,0,0,0,0,0,0.0,10,10,24.1,2740,9,999999999,160,0.0820,0,88,999.000,999.0,99.0 +1986,11,8,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,4.4,80,102700,0,0,326,0,0,0,0,0,0,0,120,2.6,10,10,16.1,1220,9,999999999,170,0.0820,0,88,999.000,999.0,99.0 +1986,11,8,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,5.6,86,102600,0,0,327,0,0,0,0,0,0,0,100,2.6,10,10,16.1,910,9,999999999,170,0.0820,0,88,999.000,999.0,99.0 +1986,11,9,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,6.1,93,102600,0,0,325,0,0,0,0,0,0,0,110,3.6,10,10,24.1,1010,9,999999999,179,0.0810,0,88,999.000,999.0,99.0 +1986,11,9,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,6.1,93,102600,0,0,325,0,0,0,0,0,0,0,120,3.1,10,10,16.1,1010,9,999999999,189,0.0810,0,88,999.000,999.0,99.0 +1986,11,9,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,6.7,96,102500,0,0,326,0,0,0,0,0,0,0,50,3.1,10,10,16.1,940,9,999999999,189,0.0810,0,88,999.000,999.0,99.0 +1986,11,9,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,6.1,93,102500,0,0,325,0,0,0,0,0,0,0,120,3.1,10,10,6.4,1010,9,999999999,200,0.0810,0,88,999.000,999.0,99.0 +1986,11,9,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,6.7,96,102400,0,0,326,0,0,0,0,0,0,0,50,2.1,10,10,6.4,940,9,999999999,189,0.0810,0,88,999.000,999.0,99.0 +1986,11,9,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,6.7,96,102400,0,0,326,0,0,0,0,0,0,0,350,2.1,10,10,9.7,460,9,999999999,189,0.0810,0,88,999.000,999.0,99.0 +1986,11,9,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,6.1,93,102400,0,0,325,0,0,0,0,0,0,0,0,0.0,10,10,4.8,460,9,999999999,179,0.0810,0,88,999.000,999.0,99.0 +1986,11,9,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,5.6,93,102500,94,1313,322,24,1,24,2700,0,2700,800,350,2.6,10,10,11.3,310,9,999999999,170,0.0320,0,88,999.000,999.0,99.0 +1986,11,9,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,5.6,93,102600,297,1394,322,58,4,57,6600,100,6600,2130,330,2.1,10,10,9.7,610,9,999999999,160,0.0320,0,88,999.000,999.0,99.0 +1986,11,9,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,5.6,89,102600,463,1394,324,95,2,95,11000,100,11000,3760,0,0.0,10,10,14.5,760,9,999999999,150,0.0320,0,88,999.000,999.0,99.0 +1986,11,9,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,5.6,86,102700,579,1394,327,247,8,244,27000,700,26700,7710,20,2.6,10,10,40.2,370,9,999999999,150,0.0320,0,88,999.000,999.0,99.0 +1986,11,9,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,5.6,83,102700,636,1394,329,205,3,203,22900,300,22800,7560,330,3.6,10,10,48.3,790,9,999999999,139,0.0320,0,88,999.000,999.0,99.0 +1986,11,9,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,6.1,83,102700,629,1394,333,224,4,222,24900,400,24700,7900,350,2.6,10,10,64.4,610,9,999999999,129,0.0320,0,88,999.000,999.0,99.0 +1986,11,9,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,3.3,74,102700,561,1394,325,187,6,185,20900,500,20700,6570,130,4.1,10,10,64.4,700,9,999999999,129,0.0320,0,88,999.000,999.0,99.0 +1986,11,9,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,2.2,68,102800,434,1394,323,156,3,155,17100,200,17000,4980,140,4.1,10,10,64.4,880,9,999999999,120,0.0320,0,88,999.000,999.0,99.0 +1986,11,9,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,-0.6,60,102800,259,1394,300,91,34,84,9900,2700,9400,1970,110,7.7,8,8,64.4,1340,9,999999999,110,0.0320,0,88,999.000,999.0,99.0 +1986,11,9,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,-3.3,55,103000,59,1057,290,26,34,23,2700,1400,2600,470,120,7.7,8,8,24.1,910,9,999999999,110,0.0320,0,88,999.000,999.0,99.0 +1986,11,9,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,-5.0,51,103000,0,0,292,0,0,0,0,0,0,0,120,6.2,9,9,24.1,1010,9,999999999,110,0.0810,0,88,999.000,999.0,99.0 +1986,11,9,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,-6.7,45,103100,0,0,290,0,0,0,0,0,0,0,100,6.2,9,9,24.1,1340,9,999999999,110,0.0810,0,88,999.000,999.0,99.0 +1986,11,9,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,-7.2,45,103100,0,0,271,0,0,0,0,0,0,0,100,5.2,6,5,24.1,1490,9,999999999,110,0.0810,0,88,999.000,999.0,99.0 +1986,11,9,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,-7.8,46,103200,0,0,260,0,0,0,0,0,0,0,100,5.2,2,2,24.1,77777,9,999999999,110,0.0810,0,88,999.000,999.0,99.0 +1986,11,9,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,-8.9,42,103200,0,0,250,0,0,0,0,0,0,0,100,5.2,0,0,24.1,77777,9,999999999,110,0.0810,0,88,999.000,999.0,99.0 +1986,11,9,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,-9.4,41,103200,0,0,250,0,0,0,0,0,0,0,90,5.2,0,0,24.1,77777,9,999999999,120,0.0810,0,88,999.000,999.0,99.0 +1986,11,9,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,-5.6,59,103300,0,0,254,0,0,0,0,0,0,0,50,4.1,1,1,24.1,77777,9,999999999,120,0.0810,0,88,999.000,999.0,99.0 +1986,11,10,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.1,-7.8,52,103300,0,0,253,0,0,0,0,0,0,0,100,2.1,2,2,24.1,77777,9,999999999,120,0.0810,0,88,999.000,999.0,99.0 +1986,11,10,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,-7.2,52,103300,0,0,259,0,0,0,0,0,0,0,70,4.1,3,3,24.1,77777,9,999999999,120,0.0810,0,88,999.000,999.0,99.0 +1986,11,10,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.0,-3.9,75,103300,0,0,250,0,0,0,0,0,0,0,0,0.0,1,1,24.1,77777,9,999999999,120,0.0810,0,88,999.000,999.0,99.0 +1986,11,10,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.6,-8.9,50,103300,0,0,251,0,0,0,0,0,0,0,60,3.1,2,2,24.1,77777,9,999999999,120,0.0810,0,88,999.000,999.0,99.0 +1986,11,10,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.0,-3.9,75,103300,0,0,262,0,0,0,0,0,0,0,10,2.6,6,6,24.1,7620,9,999999999,129,0.0810,0,88,999.000,999.0,99.0 +1986,11,10,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,-4.4,64,103300,0,0,281,0,0,0,0,0,0,0,340,1.5,10,9,24.1,3350,9,999999999,129,0.0810,0,88,999.000,999.0,99.0 +1986,11,10,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,-10.6,39,103300,0,0,277,0,0,0,0,0,0,0,100,4.1,10,9,24.1,3660,9,999999999,139,0.0810,0,88,999.000,999.0,99.0 +1986,11,10,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,-8.9,42,103300,89,1290,263,33,37,30,3600,1700,3400,620,60,1.5,10,4,64.4,77777,9,999999999,139,0.0930,0,88,999.000,999.0,99.0 +1986,11,10,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,-5.0,57,103400,291,1395,265,148,290,86,15400,22200,10700,1690,0,0.0,10,3,64.4,77777,9,999999999,150,0.0930,0,88,999.000,999.0,99.0 +1986,11,10,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,-8.9,39,103300,457,1395,263,265,404,130,27000,36600,15000,2510,60,3.1,10,2,64.4,77777,9,999999999,150,0.0930,0,88,999.000,999.0,99.0 +1986,11,10,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,-8.3,36,103300,573,1395,270,359,502,150,37200,48400,17200,2990,80,2.6,10,2,64.4,77777,9,999999999,160,0.0930,0,88,999.000,999.0,99.0 +1986,11,10,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,-6.7,38,103300,630,1395,276,389,524,149,40800,51600,17400,3020,130,2.6,10,2,64.4,77777,9,999999999,170,0.0930,0,88,999.000,999.0,99.0 +1986,11,10,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,-6.7,37,103200,624,1395,274,397,657,99,41400,63800,12700,2030,160,4.6,5,1,64.4,77777,9,999999999,170,0.0930,0,88,999.000,999.0,99.0 +1986,11,10,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,-6.1,37,103100,555,1395,281,344,479,150,35400,45800,17100,2980,130,3.6,9,2,64.4,77777,9,999999999,179,0.0930,0,88,999.000,999.0,99.0 +1986,11,10,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,-4.4,44,103000,429,1395,283,222,321,121,23300,29200,14300,2440,150,4.6,8,3,64.4,77777,9,999999999,179,0.0930,0,88,999.000,999.0,99.0 +1986,11,10,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,-3.9,47,103000,254,1395,292,87,23,82,9400,1800,9100,1920,150,4.6,10,7,64.4,7620,9,999999999,189,0.0930,0,88,999.000,999.0,99.0 +1986,11,10,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,-3.9,51,103000,55,1011,298,16,9,15,1700,500,1700,370,140,2.6,9,9,24.1,1980,9,999999999,189,0.0930,0,88,999.000,999.0,99.0 +1986,11,10,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,-3.9,51,102700,0,0,307,0,0,0,0,0,0,0,130,4.1,10,10,24.1,1490,9,999999999,189,0.0810,0,88,999.000,999.0,99.0 +1986,11,10,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,-3.3,53,103000,0,0,307,0,0,0,0,0,0,0,130,2.6,10,10,19.3,1490,9,999999999,189,0.0810,0,88,999.000,999.0,99.0 +1986,11,10,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,-2.8,55,102900,0,0,308,0,0,0,0,0,0,0,140,3.1,10,10,19.3,1340,9,999999999,189,0.0810,0,88,999.000,999.0,99.0 +1986,11,10,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,-2.8,55,102900,0,0,293,0,0,0,0,0,0,0,140,2.1,10,8,16.1,1340,9,999999999,189,0.0810,0,88,999.000,999.0,99.0 +1986,11,10,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,-2.2,60,102900,0,0,297,0,0,0,0,0,0,0,130,2.6,10,9,16.1,1340,9,999999999,189,0.0810,0,88,999.000,999.0,99.0 +1986,11,10,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,-1.1,63,102900,0,0,310,0,0,0,0,0,0,0,120,2.1,10,10,16.1,1220,9,999999999,179,0.0810,0,88,999.000,999.0,99.0 +1986,11,10,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,-0.6,65,102900,0,0,310,0,0,0,0,0,0,0,150,3.1,10,10,12.9,1040,9,999999999,179,0.0810,0,88,999.000,999.0,99.0 +1986,11,11,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,-1.1,65,102900,0,0,307,0,0,0,0,0,0,0,150,2.6,10,10,24.1,1010,9,999999999,179,0.0800,0,88,999.000,999.0,99.0 +1986,11,11,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,-1.1,63,102900,0,0,310,0,0,0,0,0,0,0,130,2.1,10,10,24.1,1100,9,999999999,179,0.0800,0,88,999.000,999.0,99.0 +1986,11,11,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,-0.6,65,102900,0,0,310,0,0,0,0,0,0,0,130,2.1,10,10,24.1,940,9,999999999,179,0.0800,0,88,999.000,999.0,99.0 +1986,11,11,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,-0.6,65,102900,0,0,310,0,0,0,0,0,0,0,140,2.1,10,10,24.1,910,9,999999999,179,0.0800,0,88,999.000,999.0,99.0 +1986,11,11,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,0.0,65,102900,0,0,313,0,0,0,0,0,0,0,90,1.5,10,10,24.1,760,9,999999999,179,0.0800,0,88,999.000,999.0,99.0 +1986,11,11,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,-0.6,60,102800,0,0,315,0,0,0,0,0,0,0,170,2.1,10,10,24.1,760,9,999999999,179,0.0800,0,88,999.000,999.0,99.0 +1986,11,11,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,0.6,65,102800,0,0,316,0,0,0,0,0,0,0,110,2.6,10,10,24.1,610,9,999999999,170,0.0800,0,88,999.000,999.0,99.0 +1986,11,11,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,0.6,65,102900,84,1267,316,16,1,16,1900,0,1900,580,150,3.1,10,10,24.1,910,9,999999999,170,0.0840,0,88,999.000,999.0,99.0 +1986,11,11,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,1.1,66,102900,285,1395,319,63,1,63,7100,0,7100,2260,110,2.1,10,10,16.1,610,9,999999999,170,0.0840,0,88,999.000,999.0,99.0 +1986,11,11,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,2.2,68,102900,452,1395,323,77,7,75,9000,400,8900,3090,140,2.1,10,10,11.3,580,9,999999999,160,0.0840,0,88,999.000,999.0,99.0 +1986,11,11,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,3.9,80,103000,567,1395,322,143,6,141,16300,400,16200,5550,70,3.1,10,10,11.3,730,9,999999999,160,0.0840,0,88,999.000,999.0,99.0 +1986,11,11,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,4.4,83,102900,624,1395,323,132,8,128,15300,600,15000,5420,0,0.0,10,10,11.3,850,9,999999999,160,0.0840,0,88,999.000,999.0,99.0 +1986,11,11,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,4.4,83,102900,618,1395,323,109,0,109,12800,0,12800,4750,90,1.5,10,10,9.7,310,9,999999999,160,0.0840,0,88,999.000,999.0,99.0 +1986,11,11,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,5.0,80,102900,550,1395,329,163,0,163,18300,0,18300,6010,0,0.0,10,10,9.7,610,9,999999999,150,0.0840,0,88,999.000,999.0,99.0 +1986,11,11,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,5.0,77,102900,424,1395,332,113,2,113,12700,100,12700,4080,340,2.6,10,10,14.5,1160,9,999999999,150,0.0840,0,88,999.000,999.0,99.0 +1986,11,11,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,6.1,86,102900,249,1395,330,65,0,65,7200,0,7200,2170,310,2.6,10,10,6.4,1490,9,999999999,150,0.0840,0,88,999.000,999.0,99.0 +1986,11,11,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,6.1,86,102900,52,988,330,18,0,18,2000,0,2000,600,360,2.1,10,10,4.8,910,9,999999999,150,0.0840,0,88,999.000,999.0,99.0 +1986,11,11,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,6.1,89,102900,0,0,319,0,0,0,0,0,0,0,290,2.1,9,9,4.8,850,9,999999999,150,0.0800,0,88,999.000,999.0,99.0 +1986,11,11,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,6.1,93,102900,0,0,316,0,0,0,0,0,0,0,310,2.6,10,9,4.8,6100,9,999999999,150,0.0800,0,88,999.000,999.0,99.0 +1986,11,11,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,5.6,93,102900,0,0,307,0,0,0,0,0,0,0,300,2.1,9,8,4.0,120,9,999999999,150,0.0800,0,88,999.000,999.0,99.0 +1986,11,11,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,6.1,96,102900,0,0,323,0,0,0,0,0,0,0,290,2.1,10,10,3.2,60,9,999999999,150,0.0800,0,88,999.000,999.0,99.0 +1986,11,11,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,6.1,96,102900,0,0,323,0,0,0,0,0,0,0,290,2.6,10,10,3.2,90,9,999999999,150,0.0800,0,88,999.000,999.0,99.0 +1986,11,11,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,6.1,93,102900,0,0,325,0,0,0,0,0,0,0,0,0.0,10,10,4.0,150,9,999999999,150,0.0800,0,88,999.000,999.0,99.0 +1986,11,11,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,6.7,96,102900,0,0,326,0,0,0,0,0,0,0,0,0.0,10,10,4.8,180,9,999999999,150,0.0800,0,88,999.000,999.0,99.0 +1986,11,12,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,2.8,83,102800,0,0,284,0,0,0,0,0,0,0,150,2.1,8,3,24.1,77777,9,999999999,150,0.0800,0,88,999.000,999.0,99.0 +1986,11,12,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,2.8,83,102800,0,0,277,0,0,0,0,0,0,0,0,0.0,9,1,24.1,77777,9,999999999,150,0.0800,0,88,999.000,999.0,99.0 +1986,11,12,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,5.0,89,102900,0,0,293,0,0,0,0,0,0,0,320,2.1,9,4,24.1,77777,9,999999999,150,0.0800,0,88,999.000,999.0,99.0 +1986,11,12,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,2.2,83,102800,0,0,281,0,0,0,0,0,0,0,120,4.6,4,3,24.1,77777,9,999999999,150,0.0800,0,88,999.000,999.0,99.0 +1986,11,12,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,5.0,96,102800,0,0,283,0,0,0,0,0,0,0,70,3.1,3,2,24.1,77777,9,999999999,150,0.0800,0,88,999.000,999.0,99.0 +1986,11,12,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,1.7,79,102800,0,0,274,0,0,0,0,0,0,0,120,5.2,1,1,24.1,77777,9,999999999,139,0.0800,0,88,999.000,999.0,99.0 +1986,11,12,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,0.0,63,102700,0,0,288,0,0,0,0,0,0,0,120,7.7,9,4,64.4,77777,9,999999999,139,0.0800,0,88,999.000,999.0,99.0 +1986,11,12,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,-0.6,60,102700,80,1222,289,21,11,20,2300,600,2200,490,110,8.2,10,5,64.4,77777,9,999999999,139,0.1390,0,88,999.000,999.0,99.0 +1986,11,12,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,-1.1,54,102700,280,1396,296,112,114,89,12100,8900,10300,1920,110,8.8,10,6,64.4,7620,9,999999999,129,0.1390,0,88,999.000,999.0,99.0 +1986,11,12,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,-0.6,50,102700,446,1396,312,143,78,118,15700,7200,13400,3190,110,5.7,10,8,64.4,3660,9,999999999,129,0.1390,0,88,999.000,999.0,99.0 +1986,11,12,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,0.0,50,102600,561,1396,310,275,199,194,29600,19500,21700,4560,110,8.2,10,7,64.4,5490,9,999999999,129,0.1390,0,88,999.000,999.0,99.0 +1986,11,12,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,0.0,47,102500,618,1396,309,308,331,159,33000,33600,18000,3360,100,7.2,10,5,64.4,77777,9,999999999,120,0.1390,0,88,999.000,999.0,99.0 +1986,11,12,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,0.0,47,102400,612,1396,306,364,378,196,38300,38100,21500,4330,110,7.7,9,4,64.4,77777,9,999999999,120,0.1390,0,88,999.000,999.0,99.0 +1986,11,12,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,-0.6,47,102300,544,1396,309,221,105,180,24200,10100,20300,4860,110,8.2,10,6,64.4,9140,9,999999999,120,0.1390,0,88,999.000,999.0,99.0 +1986,11,12,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,-1.1,46,102200,418,1396,314,172,149,127,18600,13600,14500,2840,110,7.7,10,8,64.4,9140,9,999999999,110,0.1390,0,88,999.000,999.0,99.0 +1986,11,12,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,-1.7,48,102100,244,1396,324,44,1,44,5100,0,5100,1630,110,9.8,10,10,64.4,5790,9,999999999,110,0.1390,0,88,999.000,999.0,99.0 +1986,11,12,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,-2.2,48,102000,49,966,321,16,1,16,1800,0,1800,550,120,10.3,10,10,24.1,5490,9,999999999,110,0.1390,0,88,999.000,999.0,99.0 +1986,11,12,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,-2.2,50,102000,0,0,318,0,0,0,0,0,0,0,100,8.2,10,10,24.1,5490,9,999999999,110,0.0800,0,88,999.000,999.0,99.0 +1986,11,12,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,-2.2,50,102000,0,0,292,0,0,0,0,0,0,0,110,7.7,9,5,24.1,7620,9,999999999,120,0.0800,0,88,999.000,999.0,99.0 +1986,11,12,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,-1.7,54,101900,0,0,286,0,0,0,0,0,0,0,100,6.7,10,3,24.1,77777,9,999999999,120,0.0800,0,88,999.000,999.0,99.0 +1986,11,12,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,-1.7,56,101800,0,0,281,0,0,0,0,0,0,0,100,5.7,6,2,24.1,77777,9,999999999,120,0.0800,0,88,999.000,999.0,99.0 +1986,11,12,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,-1.7,56,101800,0,0,299,0,0,0,0,0,0,0,100,5.7,9,8,24.1,4570,9,999999999,129,0.0800,0,88,999.000,999.0,99.0 +1986,11,12,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,-1.7,56,101700,0,0,314,0,0,0,0,0,0,0,110,4.1,10,10,24.1,4570,9,999999999,129,0.0800,0,88,999.000,999.0,99.0 +1986,11,12,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,1.1,76,101600,0,0,295,0,0,0,0,0,0,0,80,3.1,9,8,24.1,3960,9,999999999,129,0.0800,0,88,999.000,999.0,99.0 +1986,11,13,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,-1.1,63,101600,0,0,301,0,0,0,0,0,0,0,130,4.1,9,9,24.1,3350,9,999999999,129,0.0790,0,88,999.000,999.0,99.0 +1986,11,13,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,-1.1,63,101500,0,0,301,0,0,0,0,0,0,0,140,4.1,9,9,24.1,3350,9,999999999,139,0.0790,0,88,999.000,999.0,99.0 +1986,11,13,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,-1.1,63,101400,0,0,310,0,0,0,0,0,0,0,130,4.1,10,10,24.1,3350,9,999999999,139,0.0790,0,88,999.000,999.0,99.0 +1986,11,13,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,0.6,76,101400,0,0,306,0,0,0,0,0,0,0,70,3.1,10,10,24.1,3350,9,999999999,139,0.0790,0,88,999.000,999.0,99.0 +1986,11,13,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,-0.6,73,101400,0,0,276,0,0,0,0,0,0,0,120,2.1,8,4,24.1,77777,9,999999999,150,0.0790,0,88,999.000,999.0,99.0 +1986,11,13,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,-1.1,68,101400,0,0,277,0,0,0,0,0,0,0,140,5.2,8,4,24.1,77777,9,999999999,150,0.0790,0,88,999.000,999.0,99.0 +1986,11,13,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,-1.1,65,101300,0,0,299,0,0,0,0,0,0,0,120,5.2,10,9,32.2,7620,9,999999999,150,0.0790,0,88,999.000,999.0,99.0 +1986,11,13,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,-0.6,65,101300,75,1199,302,23,4,22,2500,0,2500,730,130,5.2,10,9,40.2,3960,9,999999999,160,0.1530,0,88,999.000,999.0,99.0 +1986,11,13,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,0.0,68,101400,274,1397,296,84,33,77,9100,2700,8600,1890,130,4.6,9,8,32.2,3050,9,999999999,160,0.1530,0,88,999.000,999.0,99.0 +1986,11,13,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,0.6,65,101300,440,1397,316,100,22,93,11000,2000,10400,2610,130,6.2,10,10,24.1,6100,9,999999999,170,0.1530,0,88,999.000,999.0,99.0 +1986,11,13,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,0.6,65,101300,556,1397,308,196,44,178,21400,4300,19700,4880,120,6.2,10,9,24.1,4570,9,999999999,179,0.1530,0,88,999.000,999.0,99.0 +1986,11,13,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,1.7,63,101300,613,1397,325,188,2,187,21100,200,21100,7010,120,5.7,10,10,16.1,2740,9,999999999,179,0.1530,0,88,999.000,999.0,99.0 +1986,11,13,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,2.2,68,101200,607,1397,323,95,7,92,11300,400,11100,4090,120,5.7,10,10,11.3,1280,9,999999999,189,0.1530,0,88,999.000,999.0,99.0 +1986,11,13,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,2.8,77,101200,539,1397,319,105,1,104,12100,100,12100,4310,130,4.1,10,10,6.4,730,9,999999999,189,0.1530,0,88,999.000,999.0,99.0 +1986,11,13,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,3.9,89,101200,414,1397,315,58,5,56,6800,200,6700,2350,130,4.1,10,10,4.8,460,9,999999999,200,0.1530,0,88,999.000,999.0,99.0 +1986,11,13,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,3.9,89,101200,240,1397,315,31,2,31,3700,0,3700,1220,130,3.6,10,10,6.4,400,9,999999999,200,0.1530,0,88,999.000,999.0,99.0 +1986,11,13,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,3.9,89,101200,47,943,315,10,0,10,1200,0,1200,370,140,3.1,10,10,6.4,580,9,999999999,200,0.1530,0,88,999.000,999.0,99.0 +1986,11,13,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,4.4,93,101200,0,0,316,0,0,0,0,0,0,0,130,2.6,10,10,6.4,490,9,999999999,189,0.0790,0,88,999.000,999.0,99.0 +1986,11,13,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,4.4,93,101200,0,0,316,0,0,0,0,0,0,0,120,2.6,10,10,8.0,460,9,999999999,189,0.0790,0,88,999.000,999.0,99.0 +1986,11,13,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,5.0,93,101200,0,0,319,0,0,0,0,0,0,0,120,2.1,10,10,8.0,460,9,999999999,179,0.0790,0,88,999.000,999.0,99.0 +1986,11,13,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,5.0,96,101200,0,0,316,0,0,0,0,0,0,0,150,2.1,10,10,6.4,180,9,999999999,179,0.0790,0,88,999.000,999.0,99.0 +1986,11,13,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,5.0,96,101200,0,0,316,0,0,0,0,0,0,0,160,3.1,10,10,6.4,180,9,999999999,179,0.0790,0,88,999.000,999.0,99.0 +1986,11,13,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,5.0,96,101200,0,0,316,0,0,0,0,0,0,0,150,2.1,10,10,4.8,180,9,999999999,170,0.0790,0,88,999.000,999.0,99.0 +1986,11,13,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,5.0,96,101200,0,0,316,0,0,0,0,0,0,0,170,2.1,10,10,4.8,180,9,999999999,170,0.0790,0,88,999.000,999.0,99.0 +1986,11,14,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,5.6,100,101100,0,0,317,0,0,0,0,0,0,0,160,2.1,10,10,4.8,180,9,999999999,160,0.0790,0,88,999.000,999.0,99.0 +1986,11,14,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,5.6,100,101100,0,0,317,0,0,0,0,0,0,0,0,0.0,10,10,4.8,90,9,999999999,160,0.0790,0,88,999.000,999.0,99.0 +1986,11,14,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,5.6,100,101100,0,0,317,0,0,0,0,0,0,0,150,2.6,10,10,6.4,150,9,999999999,150,0.0790,0,88,999.000,999.0,99.0 +1986,11,14,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,5.0,96,101100,0,0,316,0,0,0,0,0,0,0,140,2.1,10,10,9.7,150,9,999999999,150,0.0790,0,88,999.000,999.0,99.0 +1986,11,14,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,5.6,96,101200,0,0,319,0,0,0,0,0,0,0,100,2.1,10,10,11.3,150,9,999999999,150,0.0790,0,88,999.000,999.0,99.0 +1986,11,14,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,5.6,96,101300,0,0,319,0,0,0,0,0,0,0,180,1.5,10,10,11.3,150,9,999999999,150,0.0790,0,88,999.000,999.0,99.0 +1986,11,14,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,5.6,96,101300,0,0,319,0,0,0,0,0,0,0,200,2.1,10,10,8.0,150,9,999999999,139,0.0790,0,88,999.000,999.0,99.0 +1986,11,14,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,5.0,93,101400,71,1153,319,22,0,22,2500,0,2500,720,160,2.1,10,10,8.0,150,9,999999999,139,0.0690,0,88,999.000,999.0,99.0 +1986,11,14,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,5.6,93,101500,269,1397,322,68,3,68,7600,100,7600,2320,0,0.0,10,10,8.0,150,9,999999999,139,0.0690,0,88,999.000,999.0,99.0 +1986,11,14,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,6.1,93,101500,435,1397,325,157,1,156,17100,100,17100,4990,0,0.0,10,10,8.0,910,9,999999999,139,0.0690,0,88,999.000,999.0,99.0 +1986,11,14,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,6.1,86,101600,550,1397,330,188,0,187,20700,0,20700,6510,0,0.0,10,10,6.4,180,9,999999999,129,0.0690,0,88,999.000,999.0,99.0 +1986,11,14,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,6.7,86,101600,607,1397,334,222,1,221,24500,100,24500,7660,0,0.0,10,10,6.4,240,9,999999999,129,0.0690,0,88,999.000,999.0,99.0 +1986,11,14,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,7.2,86,101600,602,1397,336,216,0,215,23800,0,23800,7500,70,2.1,10,10,8.0,910,9,999999999,129,0.0690,0,88,999.000,999.0,99.0 +1986,11,14,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,7.8,83,101600,534,1397,343,186,1,185,20500,100,20500,6340,0,0.0,10,10,8.0,910,9,999999999,129,0.0690,0,88,999.000,999.0,99.0 +1986,11,14,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,7.2,80,101700,409,1397,342,146,1,145,15900,100,15900,4610,0,0.0,10,10,8.0,340,9,999999999,120,0.0690,0,88,999.000,999.0,99.0 +1986,11,14,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,7.2,83,101700,235,1397,312,108,189,75,11100,12800,8900,1480,0,0.0,5,5,12.9,77777,9,999999999,120,0.0690,0,88,999.000,999.0,99.0 +1986,11,14,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,6.7,93,101800,44,920,301,25,53,20,2400,1500,2300,360,130,2.6,5,5,8.0,77777,9,999999999,120,0.0690,0,88,999.000,999.0,99.0 +1986,11,14,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,6.7,93,101800,0,0,328,0,0,0,0,0,0,0,280,1.5,10,10,8.0,2440,9,999999999,120,0.0790,0,88,999.000,999.0,99.0 +1986,11,14,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,5.6,89,101900,0,0,300,0,0,0,0,0,0,0,100,3.6,6,6,12.9,2440,9,999999999,120,0.0790,0,88,999.000,999.0,99.0 +1986,11,14,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,5.6,89,102000,0,0,324,0,0,0,0,0,0,0,130,2.1,10,10,12.9,2130,9,999999999,120,0.0790,0,88,999.000,999.0,99.0 +1986,11,14,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,5.0,86,102000,0,0,324,0,0,0,0,0,0,0,0,0.0,10,10,12.9,460,9,999999999,120,0.0790,0,88,999.000,999.0,99.0 +1986,11,14,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,5.0,86,102100,0,0,324,0,0,0,0,0,0,0,130,2.6,10,10,12.9,490,9,999999999,120,0.0790,0,88,999.000,999.0,99.0 +1986,11,14,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,4.4,86,102100,0,0,321,0,0,0,0,0,0,0,120,2.6,10,10,12.9,610,9,999999999,120,0.0790,0,88,999.000,999.0,99.0 +1986,11,14,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,4.4,89,102100,0,0,298,0,0,0,0,0,0,0,120,2.6,7,7,12.9,550,9,999999999,120,0.0790,0,88,999.000,999.0,99.0 +1986,11,15,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,5.0,89,102200,0,0,321,0,0,0,0,0,0,0,0,0.0,10,10,12.9,550,9,999999999,120,0.0780,0,88,999.000,999.0,99.0 +1986,11,15,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,4.4,93,102200,0,0,316,0,0,0,0,0,0,0,0,0.0,10,10,8.0,550,9,999999999,120,0.0780,0,88,999.000,999.0,99.0 +1986,11,15,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,3.9,93,102200,0,0,304,0,0,0,0,0,0,0,180,2.1,9,9,8.0,550,9,999999999,120,0.0780,0,88,999.000,999.0,99.0 +1986,11,15,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,4.4,93,102200,0,0,316,0,0,0,0,0,0,0,190,1.5,10,10,8.0,430,9,999999999,120,0.0780,0,88,999.000,999.0,99.0 +1986,11,15,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,5.0,93,102200,0,0,319,0,0,0,0,0,0,0,180,2.1,10,10,9.7,370,9,999999999,129,0.0780,0,88,999.000,999.0,99.0 +1986,11,15,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,5.6,93,102200,0,0,322,0,0,0,0,0,0,0,130,2.1,10,10,8.0,370,9,999999999,129,0.0780,0,88,999.000,999.0,99.0 +1986,11,15,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,5.6,93,102200,0,0,322,0,0,0,0,0,0,0,180,2.6,10,10,8.0,370,9,999999999,139,0.0780,0,88,999.000,999.0,99.0 +1986,11,15,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,5.6,89,102300,67,1130,324,9,3,8,900,200,900,210,190,3.1,10,10,8.0,580,9,999999999,139,0.1400,0,88,999.000,999.0,99.0 +1986,11,15,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,5.6,86,102300,263,1398,327,41,5,40,4800,100,4700,1540,220,4.1,10,10,9.7,490,9,999999999,150,0.1400,0,88,999.000,999.0,99.0 +1986,11,15,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,5.6,86,102300,429,1398,327,76,2,76,8900,100,8900,3060,260,4.1,10,10,9.7,370,9,999999999,150,0.1400,0,88,999.000,999.0,99.0 +1986,11,15,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,6.1,89,102300,545,1398,328,152,8,149,17200,600,16900,5630,180,3.1,10,10,6.4,370,9,999999999,150,0.1400,0,88,999.000,999.0,99.0 +1986,11,15,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,6.1,86,102200,602,1398,330,157,4,155,17900,300,17700,6120,190,3.1,10,10,9.7,370,9,999999999,160,0.1400,0,88,999.000,999.0,99.0 +1986,11,15,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,6.1,83,102200,597,1398,333,182,3,180,20400,200,20300,6720,250,2.1,10,10,12.9,370,9,999999999,160,0.1400,0,88,999.000,999.0,99.0 +1986,11,15,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,6.1,80,102100,529,1398,335,149,5,147,16800,400,16600,5490,220,3.1,10,10,12.9,490,9,999999999,170,0.1400,0,88,999.000,999.0,99.0 +1986,11,15,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,6.1,80,102100,404,1398,335,103,2,102,11500,100,11500,3710,220,3.1,10,10,19.3,1520,9,999999999,179,0.1400,0,88,999.000,999.0,99.0 +1986,11,15,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,6.7,83,102100,231,1398,336,63,1,63,7000,0,7000,2050,240,2.6,10,10,19.3,1490,9,999999999,179,0.1400,0,88,999.000,999.0,99.0 +1986,11,15,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,6.7,86,102000,41,897,334,18,0,18,2000,0,2000,590,210,2.1,10,10,16.1,1340,9,999999999,179,0.1400,0,88,999.000,999.0,99.0 +1986,11,15,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,6.7,83,102000,0,0,336,0,0,0,0,0,0,0,230,2.6,10,10,16.1,1220,9,999999999,179,0.0780,0,88,999.000,999.0,99.0 +1986,11,15,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,6.7,83,102000,0,0,336,0,0,0,0,0,0,0,180,1.5,10,10,16.1,1220,9,999999999,179,0.0780,0,88,999.000,999.0,99.0 +1986,11,15,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,6.7,83,102000,0,0,336,0,0,0,0,0,0,0,210,2.6,10,10,16.1,1280,9,999999999,179,0.0780,0,88,999.000,999.0,99.0 +1986,11,15,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,6.7,83,101900,0,0,336,0,0,0,0,0,0,0,200,5.7,10,10,16.1,1100,9,999999999,179,0.0780,0,88,999.000,999.0,99.0 +1986,11,15,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,6.7,83,101900,0,0,336,0,0,0,0,0,0,0,200,4.6,10,10,16.1,1220,9,999999999,179,0.0780,0,88,999.000,999.0,99.0 +1986,11,15,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,7.2,89,101900,0,0,334,0,0,0,0,0,0,0,190,5.2,10,10,16.1,1100,9,999999999,179,0.0780,0,88,999.000,999.0,99.0 +1986,11,15,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,6.7,83,101900,0,0,336,0,0,0,0,0,0,0,200,6.2,10,10,16.1,1100,9,999999999,179,0.0780,0,88,999.000,999.0,99.0 +1986,11,16,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,6.7,83,101900,0,0,336,0,0,0,0,0,0,0,190,7.2,10,10,24.1,1100,9,999999999,179,0.0780,0,88,999.000,999.0,99.0 +1986,11,16,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,6.7,83,101800,0,0,336,0,0,0,0,0,0,0,180,6.2,10,10,24.1,1040,9,999999999,179,0.0780,0,88,999.000,999.0,99.0 +1986,11,16,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,6.7,83,101800,0,0,336,0,0,0,0,0,0,0,200,3.1,10,10,24.1,1040,9,999999999,179,0.0780,0,88,999.000,999.0,99.0 +1986,11,16,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,6.7,83,101700,0,0,327,0,0,0,0,0,0,0,210,3.1,9,9,24.1,1040,9,999999999,179,0.0780,0,88,999.000,999.0,99.0 +1986,11,16,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,6.7,83,101600,0,0,336,0,0,0,0,0,0,0,200,5.2,10,10,24.1,910,9,999999999,179,0.0780,0,88,999.000,999.0,99.0 +1986,11,16,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,7.2,89,101600,0,0,334,0,0,0,0,0,0,0,230,4.1,10,10,16.1,400,9,999999999,179,0.0780,0,88,999.000,999.0,99.0 +1986,11,16,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,7.8,93,101600,0,0,335,0,0,0,0,0,0,0,230,2.6,10,10,8.0,310,9,999999999,179,0.0780,0,88,999.000,999.0,99.0 +1986,11,16,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,7.8,96,101600,63,1107,332,13,0,13,1500,0,1500,470,220,3.1,10,10,3.2,310,9,999999999,179,0.0350,0,88,999.000,999.0,99.0 +1986,11,16,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,7.8,96,101600,258,1399,332,57,0,57,6400,0,6400,2020,0,0.0,10,10,9.7,340,9,999999999,179,0.0350,0,88,999.000,999.0,99.0 +1986,11,16,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,7.8,93,101600,424,1399,335,96,1,95,10800,100,10800,3610,200,2.6,10,10,6.4,610,9,999999999,189,0.0350,0,88,999.000,999.0,99.0 +1986,11,16,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,7.8,90,101500,539,1399,337,199,1,199,22000,100,21900,6620,190,4.1,10,10,11.3,1340,9,999999999,189,0.0350,0,88,999.000,999.0,99.0 +1986,11,16,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,8.3,93,101400,597,1399,338,220,1,220,24400,100,24300,7530,210,5.2,10,10,12.9,310,9,999999999,189,0.0350,0,88,999.000,999.0,99.0 +1986,11,16,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,8.3,90,101400,591,1399,341,203,0,203,22600,0,22600,7170,180,4.1,10,10,12.9,310,9,999999999,189,0.0350,0,88,999.000,999.0,99.0 +1986,11,16,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,8.3,90,101300,524,1399,341,196,1,196,21600,100,21500,6430,160,3.1,10,10,19.3,310,9,999999999,189,0.0350,0,88,999.000,999.0,99.0 +1986,11,16,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,7.8,86,101200,400,1399,340,138,0,138,15100,0,15100,4420,200,5.2,10,10,19.3,2290,9,999999999,189,0.0350,0,88,999.000,999.0,99.0 +1986,11,16,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,8.3,90,101200,227,1399,341,43,0,43,4900,0,4900,1560,200,6.2,10,10,16.1,1340,9,999999999,189,0.0350,0,88,999.000,999.0,99.0 +1986,11,16,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,8.9,93,101100,39,874,341,12,0,12,1400,0,1400,430,220,5.2,10,10,8.0,1340,9,999999999,189,0.0350,0,88,999.000,999.0,99.0 +1986,11,16,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,8.3,90,101100,0,0,341,0,0,0,0,0,0,0,220,5.7,10,10,9.7,1220,9,999999999,189,0.0780,0,88,999.000,999.0,99.0 +1986,11,16,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,8.3,93,101000,0,0,338,0,0,0,0,0,0,0,220,6.2,10,10,11.3,1220,9,999999999,189,0.0780,0,88,999.000,999.0,99.0 +1986,11,16,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,8.3,93,101000,0,0,338,0,0,0,0,0,0,0,230,5.2,10,10,11.3,1220,9,999999999,189,0.0780,0,88,999.000,999.0,99.0 +1986,11,16,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,8.3,93,101000,0,0,338,0,0,0,0,0,0,0,220,5.7,10,10,11.3,1340,9,999999999,189,0.0780,0,88,999.000,999.0,99.0 +1986,11,16,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,8.3,93,101100,0,0,338,0,0,0,0,0,0,0,230,3.6,10,10,11.3,1220,9,999999999,189,0.0780,0,88,999.000,999.0,99.0 +1986,11,16,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,8.9,96,101100,0,0,338,0,0,0,0,0,0,0,240,4.1,10,10,16.1,1340,9,999999999,179,0.0780,0,88,999.000,999.0,99.0 +1986,11,16,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,8.3,96,101200,0,0,335,0,0,0,0,0,0,0,320,3.6,10,10,8.0,1340,9,999999999,179,0.0780,0,88,999.000,999.0,99.0 +1986,11,17,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,7.8,93,101200,0,0,335,0,0,0,0,0,0,0,300,2.1,10,10,24.1,1340,9,999999999,179,0.0780,0,88,999.000,999.0,99.0 +1986,11,17,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,7.2,96,101300,0,0,305,0,0,0,0,0,0,0,290,2.1,6,6,24.1,1830,9,999999999,179,0.0780,0,88,999.000,999.0,99.0 +1986,11,17,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,6.7,96,101400,0,0,294,0,0,0,0,0,0,0,0,0.0,3,3,24.1,77777,9,999999999,179,0.0780,0,88,999.000,999.0,99.0 +1986,11,17,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,3.9,100,101400,0,0,280,0,0,0,0,0,0,0,0,0.0,4,4,8.0,77777,9,999999999,179,0.0780,0,88,999.000,999.0,99.0 +1986,11,17,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,4.4,100,101500,0,0,285,0,0,0,0,0,0,0,0,0.0,5,5,6.4,77777,9,999999999,179,0.0780,0,88,999.000,999.0,99.0 +1986,11,17,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,3.9,100,101500,0,0,282,0,0,0,0,0,0,0,0,0.0,5,5,0.4,77777,9,999999999,179,0.0780,0,88,999.000,999.0,99.0 +1986,11,17,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,3.3,96,101500,0,0,307,0,0,0,0,0,0,0,0,0.0,10,10,0.1,120,9,999999999,179,0.0780,0,88,999.000,999.0,99.0 +1986,11,17,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,4.4,100,101600,59,1061,310,19,0,19,2100,0,2100,630,0,0.0,10,10,0.1,60,9,999999999,170,0.0490,0,88,999.000,999.0,99.0 +1986,11,17,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,6.1,100,101700,252,1399,320,83,1,82,9000,0,9000,2510,160,2.1,10,10,0.2,60,9,999999999,170,0.0490,0,88,999.000,999.0,99.0 +1986,11,17,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,6.7,100,101600,418,1399,323,141,1,140,15400,100,15400,4590,130,2.6,10,10,0.2,60,9,999999999,170,0.0490,0,88,999.000,999.0,99.0 +1986,11,17,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,7.2,96,101700,534,1399,313,207,127,158,22500,12400,17700,3670,0,0.0,8,8,3.2,1220,9,999999999,170,0.0490,0,88,999.000,999.0,99.0 +1986,11,17,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,7.8,86,101700,591,1399,307,339,504,123,36000,49100,15100,2410,0,0.0,7,3,6.4,77777,9,999999999,170,0.0490,0,88,999.000,999.0,99.0 +1986,11,17,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,6.1,67,101600,586,1399,315,366,527,142,38200,51100,16700,2820,0,0.0,8,3,19.3,77777,9,999999999,160,0.0490,0,88,999.000,999.0,99.0 +1986,11,17,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,5.6,64,101600,519,1399,317,322,471,144,33000,44300,16500,2830,70,2.1,10,4,32.2,77777,9,999999999,160,0.0490,0,88,999.000,999.0,99.0 +1986,11,17,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,6.1,72,101500,395,1399,327,158,109,127,17000,9700,14300,2820,70,2.1,9,8,40.2,4570,9,999999999,160,0.0490,0,88,999.000,999.0,99.0 +1986,11,17,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,5.6,72,101400,222,1399,310,88,161,61,9100,10600,7400,1160,70,2.1,10,4,64.4,77777,9,999999999,160,0.0490,0,88,999.000,999.0,99.0 +1986,11,17,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,6.7,83,101300,37,851,311,17,36,14,1700,1000,1700,240,0,0.0,8,6,24.1,6100,9,999999999,160,0.0490,0,88,999.000,999.0,99.0 +1986,11,17,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,5.6,86,101200,0,0,303,0,0,0,0,0,0,0,0,0.0,8,6,24.1,6100,9,999999999,170,0.0780,0,88,999.000,999.0,99.0 +1986,11,17,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,5.6,89,101100,0,0,298,0,0,0,0,0,0,0,130,3.1,7,5,24.1,6100,9,999999999,170,0.0780,0,88,999.000,999.0,99.0 +1986,11,17,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,5.6,89,101000,0,0,304,0,0,0,0,0,0,0,130,3.6,9,7,24.1,6100,9,999999999,170,0.0780,0,88,999.000,999.0,99.0 +1986,11,17,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,4.4,77,101000,0,0,312,0,0,0,0,0,0,0,130,5.7,10,8,24.1,3350,9,999999999,179,0.0780,0,88,999.000,999.0,99.0 +1986,11,17,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,4.4,77,100900,0,0,319,0,0,0,0,0,0,0,130,4.6,10,9,24.1,2590,9,999999999,179,0.0780,0,88,999.000,999.0,99.0 +1986,11,17,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,3.9,71,100800,0,0,330,0,0,0,0,0,0,0,130,4.6,10,10,24.1,1220,9,999999999,179,0.0780,0,88,999.000,999.0,99.0 +1986,11,17,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,3.9,71,100700,0,0,330,0,0,0,0,0,0,0,140,5.2,10,10,24.1,1160,9,999999999,189,0.0780,0,88,999.000,999.0,99.0 +1986,11,18,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,3.9,71,100600,0,0,330,0,0,0,0,0,0,0,150,4.1,10,10,24.1,1340,9,999999999,189,0.0770,0,88,999.000,999.0,99.0 +1986,11,18,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,4.4,71,100400,0,0,333,0,0,0,0,0,0,0,120,3.1,10,10,24.1,1130,9,999999999,189,0.0770,0,88,999.000,999.0,99.0 +1986,11,18,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,5.6,77,100400,0,0,335,0,0,0,0,0,0,0,120,3.1,10,10,24.1,910,9,999999999,200,0.0770,0,88,999.000,999.0,99.0 +1986,11,18,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,7.2,77,100300,0,0,345,0,0,0,0,0,0,0,150,5.2,10,10,24.1,910,9,999999999,200,0.0770,0,88,999.000,999.0,99.0 +1986,11,18,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,8.3,77,100200,0,0,351,0,0,0,0,0,0,0,170,6.2,10,10,24.1,910,9,999999999,200,0.0770,0,88,999.000,999.0,99.0 +1986,11,18,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,8.9,77,100000,0,0,355,0,0,0,0,0,0,0,180,7.2,10,10,24.1,1100,9,999999999,189,0.0770,0,88,999.000,999.0,99.0 +1986,11,18,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,8.9,75,99900,0,0,357,0,0,0,0,0,0,0,190,8.2,10,10,24.1,2130,9,999999999,189,0.0770,0,88,999.000,999.0,99.0 +1986,11,18,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,9.4,83,99800,55,1038,353,9,0,9,1100,0,1100,340,200,7.2,10,10,24.1,2130,9,999999999,179,0.0640,0,88,999.000,999.0,99.0 +1986,11,18,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,10.0,86,99800,247,1400,353,45,10,43,5100,200,5100,1600,200,9.8,10,10,6.4,520,9,999999999,179,0.0640,0,88,999.000,999.0,99.0 +1986,11,18,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,10.6,93,99900,413,1400,352,66,8,64,7800,400,7700,2620,200,12.4,10,10,2.4,520,9,999999999,170,0.0640,0,88,999.000,999.0,99.0 +1986,11,18,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,10.6,90,99900,529,1400,354,90,5,89,10700,300,10500,3770,200,3.1,10,10,16.1,1830,9,999999999,160,0.0640,0,88,999.000,999.0,99.0 +1986,11,18,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,9.4,83,99900,586,1400,353,155,5,152,17500,400,17400,5950,210,7.7,10,10,16.1,1680,9,999999999,160,0.0640,0,88,999.000,999.0,99.0 +1986,11,18,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,10.0,86,100000,582,1400,353,98,6,96,11600,400,11400,4170,200,5.2,10,10,6.4,550,9,999999999,150,0.0640,0,88,999.000,999.0,99.0 +1986,11,18,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,6.7,69,100000,515,1400,324,148,98,112,16400,9500,12900,2580,240,6.2,6,6,14.5,610,9,999999999,150,0.0640,0,88,999.000,999.0,99.0 +1986,11,18,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,7.2,67,100100,391,1400,329,187,176,137,20000,15600,15600,3040,210,4.1,6,6,12.9,910,9,999999999,150,0.0640,0,88,999.000,999.0,99.0 +1986,11,18,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,6.7,69,100100,219,1400,316,105,357,47,10400,24400,6600,820,220,4.1,3,3,16.1,77777,9,999999999,139,0.0640,0,88,999.000,999.0,99.0 +1986,11,18,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,6.7,74,100300,35,828,311,20,46,16,1900,1200,1900,280,200,3.6,4,3,19.3,77777,9,999999999,139,0.0640,0,88,999.000,999.0,99.0 +1986,11,18,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,7.2,80,100300,0,0,317,0,0,0,0,0,0,0,190,4.6,7,6,16.1,3660,9,999999999,150,0.0770,0,88,999.000,999.0,99.0 +1986,11,18,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,7.2,74,100400,0,0,348,0,0,0,0,0,0,0,220,4.6,10,10,16.1,1340,9,999999999,150,0.0770,0,88,999.000,999.0,99.0 +1986,11,18,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,8.3,86,100500,0,0,343,0,0,0,0,0,0,0,250,5.2,10,10,16.1,1340,9,999999999,150,0.0770,0,88,999.000,999.0,99.0 +1986,11,18,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,8.3,86,100600,0,0,334,0,0,0,0,0,0,0,230,6.2,9,9,16.1,1340,9,999999999,150,0.0770,0,88,999.000,999.0,99.0 +1986,11,18,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,7.8,83,100700,0,0,326,0,0,0,0,0,0,0,190,4.1,8,8,16.1,1520,9,999999999,150,0.0770,0,88,999.000,999.0,99.0 +1986,11,18,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,8.9,93,100900,0,0,332,0,0,0,0,0,0,0,220,4.1,9,9,16.1,1340,9,999999999,160,0.0770,0,88,999.000,999.0,99.0 +1986,11,18,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,8.3,90,101000,0,0,331,0,0,0,0,0,0,0,210,4.1,9,9,16.1,1220,9,999999999,160,0.0770,0,88,999.000,999.0,99.0 +1986,11,19,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,8.3,93,101200,0,0,328,0,0,0,0,0,0,0,210,2.1,9,9,16.1,1340,9,999999999,160,0.0770,0,88,999.000,999.0,99.0 +1986,11,19,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,8.3,90,101300,0,0,341,0,0,0,0,0,0,0,340,2.6,10,10,9.7,910,9,999999999,160,0.0770,0,88,999.000,999.0,99.0 +1986,11,19,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,8.3,93,101400,0,0,338,0,0,0,0,0,0,0,190,1.5,10,10,9.7,1280,9,999999999,170,0.0770,0,88,999.000,999.0,99.0 +1986,11,19,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,7.8,90,101400,0,0,337,0,0,0,0,0,0,0,0,0.0,10,10,16.1,1490,9,999999999,170,0.0770,0,88,999.000,999.0,99.0 +1986,11,19,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,7.2,93,101400,0,0,307,0,0,0,0,0,0,0,0,0.0,6,6,24.1,1340,9,999999999,170,0.0770,0,88,999.000,999.0,99.0 +1986,11,19,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,7.2,93,101500,0,0,302,0,0,0,0,0,0,0,70,1.5,7,4,24.1,7620,9,999999999,179,0.0770,0,88,999.000,999.0,99.0 +1986,11,19,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,7.2,96,101500,0,0,294,0,0,0,0,0,0,0,170,3.1,3,2,11.3,77777,9,999999999,179,0.0770,0,88,999.000,999.0,99.0 +1986,11,19,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,8.3,93,101500,52,1015,338,24,1,24,2600,0,2600,730,170,2.1,10,10,11.3,310,9,999999999,189,0.0360,0,88,999.000,999.0,99.0 +1986,11,19,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,8.9,93,101600,242,1400,341,66,6,65,7300,200,7300,2140,190,4.1,10,10,11.3,1220,9,999999999,189,0.0360,0,88,999.000,999.0,99.0 +1986,11,19,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,8.9,86,101600,408,1400,347,96,1,96,10900,100,10900,3570,190,2.6,10,10,11.3,1370,9,999999999,200,0.0360,0,88,999.000,999.0,99.0 +1986,11,19,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,9.4,90,101600,524,1400,347,103,9,100,12000,600,11800,4120,190,3.1,10,10,11.3,940,9,999999999,200,0.0360,0,88,999.000,999.0,99.0 +1986,11,19,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,8.9,83,101500,581,1400,350,212,7,209,23400,600,23200,7180,190,4.6,10,10,11.3,1340,9,999999999,200,0.0360,0,88,999.000,999.0,99.0 +1986,11,19,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,8.9,80,101500,577,1400,352,172,4,170,19300,300,19200,6340,190,5.2,10,10,14.5,1680,9,999999999,209,0.0360,0,88,999.000,999.0,99.0 +1986,11,19,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,8.9,83,101500,510,1400,350,155,4,153,17300,300,17200,5500,210,5.2,10,10,14.5,1010,9,999999999,209,0.0360,0,88,999.000,999.0,99.0 +1986,11,19,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,7.8,75,101400,387,1400,351,123,3,122,13600,200,13500,4040,180,5.2,10,10,16.1,910,9,999999999,220,0.0360,0,88,999.000,999.0,99.0 +1986,11,19,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,6.7,69,101400,215,1400,349,71,2,71,7800,100,7700,2110,180,5.2,10,10,32.2,910,9,999999999,220,0.0360,0,88,999.000,999.0,99.0 +1986,11,19,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,7.2,72,101400,33,805,350,15,0,15,1700,0,1700,500,190,6.2,10,10,24.1,910,9,999999999,220,0.0360,0,88,999.000,999.0,99.0 +1986,11,19,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,7.2,72,101400,0,0,350,0,0,0,0,0,0,0,190,3.6,10,10,24.1,940,9,999999999,220,0.0770,0,88,999.000,999.0,99.0 +1986,11,19,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,7.2,69,101300,0,0,353,0,0,0,0,0,0,0,170,4.1,10,10,24.1,910,9,999999999,220,0.0770,0,88,999.000,999.0,99.0 +1986,11,19,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,7.2,69,101200,0,0,353,0,0,0,0,0,0,0,170,4.6,10,10,24.1,910,9,999999999,220,0.0770,0,88,999.000,999.0,99.0 +1986,11,19,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,7.8,69,101200,0,0,356,0,0,0,0,0,0,0,160,3.6,10,10,24.1,910,9,999999999,220,0.0770,0,88,999.000,999.0,99.0 +1986,11,19,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,8.3,72,101200,0,0,357,0,0,0,0,0,0,0,190,4.1,10,10,24.1,1040,9,999999999,229,0.0770,0,88,999.000,999.0,99.0 +1986,11,19,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,8.9,72,101100,0,0,360,0,0,0,0,0,0,0,200,3.6,10,10,24.1,910,9,999999999,229,0.0770,0,88,999.000,999.0,99.0 +1986,11,19,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,8.3,69,101000,0,0,360,0,0,0,0,0,0,0,190,4.1,10,10,24.1,850,9,999999999,229,0.0770,0,88,999.000,999.0,99.0 +1986,11,20,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,8.3,67,100900,0,0,352,0,0,0,0,0,0,0,190,7.2,10,9,24.1,790,9,999999999,229,0.0760,0,88,999.000,999.0,99.0 +1986,11,20,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,8.9,70,100800,0,0,363,0,0,0,0,0,0,0,180,5.7,10,10,11.3,850,9,999999999,229,0.0760,0,88,999.000,999.0,99.0 +1986,11,20,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,8.3,65,100600,0,0,342,0,0,0,0,0,0,0,200,9.3,8,7,24.1,3050,9,999999999,229,0.0760,0,88,999.000,999.0,99.0 +1986,11,20,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,8.9,65,100500,0,0,369,0,0,0,0,0,0,0,210,11.3,10,10,24.1,3050,9,999999999,229,0.0760,0,88,999.000,999.0,99.0 +1986,11,20,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,8.3,60,100400,0,0,371,0,0,0,0,0,0,0,200,8.8,10,10,24.1,2440,9,999999999,229,0.0760,0,88,999.000,999.0,99.0 +1986,11,20,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,11.1,84,100400,0,0,363,0,0,0,0,0,0,0,210,10.3,10,10,11.3,1100,9,999999999,220,0.0760,0,88,999.000,999.0,99.0 +1986,11,20,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,11.7,96,100600,0,0,355,0,0,0,0,0,0,0,310,4.6,10,10,6.4,400,9,999999999,220,0.0760,0,88,999.000,999.0,99.0 +1986,11,20,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,10.0,93,100600,48,969,348,10,0,10,1200,0,1200,370,10,3.6,10,10,11.3,1160,9,999999999,209,0.0400,0,88,999.000,999.0,99.0 +1986,11,20,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,9.4,93,100800,237,1401,345,45,1,45,5100,0,5100,1640,0,0.0,10,10,11.3,940,9,999999999,209,0.0400,0,88,999.000,999.0,99.0 +1986,11,20,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,9.4,93,100800,402,1401,345,83,0,83,9500,0,9500,3190,110,2.1,10,10,11.3,910,9,999999999,200,0.0400,0,88,999.000,999.0,99.0 +1986,11,20,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,9.4,93,100900,518,1401,345,109,1,109,12600,100,12600,4390,140,3.6,10,10,11.3,1340,9,999999999,200,0.0400,0,88,999.000,999.0,99.0 +1986,11,20,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,10.0,93,100800,576,1401,348,128,0,128,14700,0,14700,5210,170,3.6,10,10,11.3,1340,9,999999999,200,0.0400,0,88,999.000,999.0,99.0 +1986,11,20,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,8.9,90,100800,572,1401,344,203,1,202,22400,100,22400,6970,170,3.1,10,10,24.1,1340,9,999999999,189,0.0400,0,88,999.000,999.0,99.0 +1986,11,20,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,8.9,86,100800,506,1401,347,182,1,182,20100,100,20000,6030,150,3.1,10,10,32.2,1340,9,999999999,189,0.0400,0,88,999.000,999.0,99.0 +1986,11,20,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,8.9,86,100800,383,1401,347,82,1,81,9300,0,9200,3070,170,2.1,10,10,32.2,1220,9,999999999,179,0.0400,0,88,999.000,999.0,99.0 +1986,11,20,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,8.9,90,100900,211,1401,344,40,0,40,4600,0,4600,1440,170,3.1,10,10,24.1,490,9,999999999,179,0.0400,0,88,999.000,999.0,99.0 +1986,11,20,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,8.9,90,100900,31,782,344,10,0,10,1200,0,1200,360,170,2.1,10,10,24.1,490,9,999999999,179,0.0400,0,88,999.000,999.0,99.0 +1986,11,20,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,8.9,90,100900,0,0,344,0,0,0,0,0,0,0,0,0.0,10,10,24.1,910,9,999999999,170,0.0760,0,88,999.000,999.0,99.0 +1986,11,20,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,8.9,90,101000,0,0,319,0,0,0,0,0,0,0,270,2.6,7,6,24.1,1340,9,999999999,170,0.0760,0,88,999.000,999.0,99.0 +1986,11,20,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,8.3,90,101000,0,0,324,0,0,0,0,0,0,0,110,2.1,9,8,24.1,1220,9,999999999,170,0.0760,0,88,999.000,999.0,99.0 +1986,11,20,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,8.3,90,101100,0,0,324,0,0,0,0,0,0,0,100,2.6,9,8,24.1,1520,9,999999999,160,0.0760,0,88,999.000,999.0,99.0 +1986,11,20,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,8.9,96,101100,0,0,329,0,0,0,0,0,0,0,220,3.6,10,9,24.1,1220,9,999999999,160,0.0760,0,88,999.000,999.0,99.0 +1986,11,20,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,8.3,93,101200,0,0,338,0,0,0,0,0,0,0,0,0.0,10,10,24.1,1220,9,999999999,160,0.0760,0,88,999.000,999.0,99.0 +1986,11,20,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,7.8,93,101300,0,0,305,0,0,0,0,0,0,0,250,2.6,6,4,24.1,2440,9,999999999,150,0.0760,0,88,999.000,999.0,99.0 +1986,11,21,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,7.8,90,101300,0,0,316,0,0,0,0,0,0,0,230,3.1,7,7,24.1,1340,9,999999999,150,0.0760,0,88,999.000,999.0,99.0 +1986,11,21,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,7.2,89,101400,0,0,318,0,0,0,0,0,0,0,230,2.1,8,8,24.1,1340,9,999999999,150,0.0760,0,88,999.000,999.0,99.0 +1986,11,21,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,6.7,89,101500,0,0,310,0,0,0,0,0,0,0,160,2.1,7,7,24.1,2440,9,999999999,139,0.0760,0,88,999.000,999.0,99.0 +1986,11,21,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,6.7,89,101500,0,0,304,0,0,0,0,0,0,0,60,1.5,7,5,24.1,7620,9,999999999,139,0.0760,0,88,999.000,999.0,99.0 +1986,11,21,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,6.7,89,101600,0,0,331,0,0,0,0,0,0,0,220,4.6,10,10,16.1,1160,9,999999999,139,0.0760,0,88,999.000,999.0,99.0 +1986,11,21,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,6.7,89,101700,0,0,331,0,0,0,0,0,0,0,170,3.1,10,10,16.1,1160,9,999999999,150,0.0760,0,88,999.000,999.0,99.0 +1986,11,21,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,7.2,93,101800,0,0,322,0,0,0,0,0,0,0,160,1.5,9,9,16.1,1100,9,999999999,150,0.0760,0,88,999.000,999.0,99.0 +1986,11,21,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,6.7,89,101900,45,946,310,22,22,20,2300,900,2300,410,0,0.0,7,7,24.1,1830,9,999999999,150,0.0450,0,88,999.000,999.0,99.0 +1986,11,21,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,6.7,86,102000,232,1402,313,104,290,55,10700,19800,7400,1000,210,4.1,7,7,24.1,1340,9,999999999,150,0.0450,0,88,999.000,999.0,99.0 +1986,11,21,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,7.2,83,102000,397,1402,312,189,294,105,20000,26000,12600,2070,180,2.6,5,5,32.2,77777,9,999999999,150,0.0450,0,88,999.000,999.0,99.0 +1986,11,21,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,7.8,77,102000,513,1402,323,323,505,136,33400,47300,16000,2650,200,5.2,6,6,32.2,2590,9,999999999,160,0.0450,0,88,999.000,999.0,99.0 +1986,11,21,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,7.8,75,102000,572,1402,341,135,72,105,15100,7200,12100,2470,190,5.2,9,9,32.2,1680,9,999999999,160,0.0450,0,88,999.000,999.0,99.0 +1986,11,21,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,7.8,83,102000,568,1402,343,138,13,132,15700,900,15400,5280,200,5.7,10,10,32.2,1520,9,999999999,160,0.0450,0,88,999.000,999.0,99.0 +1986,11,21,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,7.2,77,101800,502,1402,345,196,14,190,21400,1200,20900,6110,200,7.2,10,10,32.2,1340,9,999999999,160,0.0450,0,88,999.000,999.0,99.0 +1986,11,21,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,7.2,77,101800,379,1402,345,81,8,79,9300,400,9200,3000,200,6.7,10,10,24.1,1340,9,999999999,170,0.0450,0,88,999.000,999.0,99.0 +1986,11,21,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,8.3,90,101800,208,1402,341,28,4,27,3200,0,3200,1040,180,5.2,10,10,16.1,1340,9,999999999,170,0.0450,0,88,999.000,999.0,99.0 +1986,11,21,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,7.8,86,101700,29,759,340,8,1,7,0,0,0,0,180,5.2,10,10,11.3,400,9,999999999,170,0.0450,0,88,999.000,999.0,99.0 +1986,11,21,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,7.2,86,101600,0,0,336,0,0,0,0,0,0,0,180,6.7,10,10,11.3,430,9,999999999,160,0.0760,0,88,999.000,999.0,99.0 +1986,11,21,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,7.2,86,101500,0,0,336,0,0,0,0,0,0,0,160,4.6,10,10,16.1,430,9,999999999,160,0.0760,0,88,999.000,999.0,99.0 +1986,11,21,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,7.8,86,101500,0,0,340,0,0,0,0,0,0,0,180,5.2,10,10,16.1,430,9,999999999,150,0.0760,0,88,999.000,999.0,99.0 +1986,11,21,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,7.8,86,101500,0,0,340,0,0,0,0,0,0,0,210,5.7,10,10,16.1,400,9,999999999,150,0.0760,0,88,999.000,999.0,99.0 +1986,11,21,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,7.8,83,101400,0,0,343,0,0,0,0,0,0,0,200,5.7,10,10,16.1,400,9,999999999,150,0.0760,0,88,999.000,999.0,99.0 +1986,11,21,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,7.8,86,101500,0,0,340,0,0,0,0,0,0,0,210,5.7,10,10,16.1,400,9,999999999,139,0.0760,0,88,999.000,999.0,99.0 +1986,11,21,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,8.3,93,101600,0,0,338,0,0,0,0,0,0,0,330,6.2,10,10,4.8,400,9,999999999,139,0.0760,0,88,999.000,999.0,99.0 +1986,11,22,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,6.1,93,101600,0,0,309,0,0,0,0,0,0,0,170,2.1,8,8,24.1,910,9,999999999,129,0.0760,0,88,999.000,999.0,99.0 +1986,11,22,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,7.2,89,101600,0,0,318,0,0,0,0,0,0,0,200,4.1,8,8,24.1,910,9,999999999,129,0.0760,0,88,999.000,999.0,99.0 +1986,11,22,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,6.1,89,101700,0,0,299,0,0,0,0,0,0,0,210,2.6,4,4,24.1,77777,9,999999999,120,0.0760,0,88,999.000,999.0,99.0 +1986,11,22,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,5.6,86,101800,0,0,311,0,0,0,0,0,0,0,220,2.6,8,8,24.1,1520,9,999999999,120,0.0760,0,88,999.000,999.0,99.0 +1986,11,22,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,5.6,93,102000,0,0,302,0,0,0,0,0,0,0,160,1.5,7,7,24.1,1520,9,999999999,129,0.0760,0,88,999.000,999.0,99.0 +1986,11,22,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,5.6,86,102100,0,0,311,0,0,0,0,0,0,0,170,2.1,8,8,24.1,1340,9,999999999,129,0.0760,0,88,999.000,999.0,99.0 +1986,11,22,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,5.6,89,102200,0,0,309,0,0,0,0,0,0,0,200,1.5,8,8,24.1,1520,9,999999999,139,0.0760,0,88,999.000,999.0,99.0 +1986,11,22,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,5.6,86,102300,42,923,311,16,27,13,1600,1100,1600,270,200,3.6,8,8,24.1,1340,9,999999999,139,0.0310,0,88,999.000,999.0,99.0 +1986,11,22,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,6.1,86,102400,227,1402,321,90,25,86,9800,1900,9500,1880,230,3.6,9,9,32.2,1430,9,999999999,150,0.0310,0,88,999.000,999.0,99.0 +1986,11,22,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,6.7,83,102500,392,1402,320,184,73,163,20000,6700,18100,3760,200,2.6,9,8,32.2,1340,9,999999999,150,0.0310,0,88,999.000,999.0,99.0 +1986,11,22,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,7.2,77,102500,509,1402,323,235,200,161,25300,19200,18300,3710,220,4.6,9,7,32.2,7620,9,999999999,160,0.0310,0,88,999.000,999.0,99.0 +1986,11,22,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,6.7,77,102500,567,1402,332,225,73,195,24600,7100,21700,5260,210,6.2,10,9,32.2,1340,9,999999999,170,0.0310,0,88,999.000,999.0,99.0 +1986,11,22,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,6.7,74,102600,563,1402,344,181,13,176,20300,1000,19800,6380,210,4.6,10,10,32.2,1430,9,999999999,170,0.0310,0,88,999.000,999.0,99.0 +1986,11,22,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,7.8,86,102600,498,1402,340,79,2,78,9300,100,9200,3300,220,4.6,10,10,24.1,1340,9,999999999,179,0.0310,0,88,999.000,999.0,99.0 +1986,11,22,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,7.8,86,102600,375,1402,340,68,6,67,7900,300,7800,2630,200,4.1,10,10,16.1,1520,9,999999999,179,0.0310,0,88,999.000,999.0,99.0 +1986,11,22,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,7.8,90,102600,204,1402,337,35,3,34,4000,0,4000,1260,190,3.1,10,10,16.1,1220,9,999999999,189,0.0310,0,88,999.000,999.0,99.0 +1986,11,22,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,7.8,90,102600,28,736,337,6,0,6,0,0,0,0,180,3.6,10,10,16.1,1040,9,999999999,189,0.0310,0,88,999.000,999.0,99.0 +1986,11,22,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,7.8,93,102600,0,0,335,0,0,0,0,0,0,0,160,3.6,10,10,16.1,1220,9,999999999,189,0.0760,0,88,999.000,999.0,99.0 +1986,11,22,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,7.2,89,102500,0,0,334,0,0,0,0,0,0,0,140,3.6,10,10,16.1,1220,9,999999999,189,0.0760,0,88,999.000,999.0,99.0 +1986,11,22,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,7.8,93,102500,0,0,335,0,0,0,0,0,0,0,130,2.1,10,10,11.3,910,9,999999999,189,0.0760,0,88,999.000,999.0,99.0 +1986,11,22,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,7.2,93,102400,0,0,331,0,0,0,0,0,0,0,130,3.1,10,10,11.3,1340,9,999999999,189,0.0760,0,88,999.000,999.0,99.0 +1986,11,22,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,7.2,93,102400,0,0,331,0,0,0,0,0,0,0,130,3.1,10,10,11.3,1340,9,999999999,200,0.0760,0,88,999.000,999.0,99.0 +1986,11,22,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,7.8,93,102400,0,0,335,0,0,0,0,0,0,0,140,3.1,10,10,24.1,1340,9,999999999,200,0.0760,0,88,999.000,999.0,99.0 +1986,11,22,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,8.3,83,102300,0,0,346,0,0,0,0,0,0,0,190,5.2,10,10,24.1,490,9,999999999,200,0.0760,0,88,999.000,999.0,99.0 +1986,11,23,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,8.9,86,102200,0,0,347,0,0,0,0,0,0,0,220,4.6,10,10,11.3,490,9,999999999,200,0.0750,0,88,999.000,999.0,99.0 +1986,11,23,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,9.4,86,102300,0,0,350,0,0,0,0,0,0,0,210,6.7,10,10,24.1,490,9,999999999,200,0.0750,0,88,999.000,999.0,99.0 +1986,11,23,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,9.4,86,102300,0,0,350,0,0,0,0,0,0,0,200,6.2,10,10,24.1,490,9,999999999,200,0.0750,0,88,999.000,999.0,99.0 +1986,11,23,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,9.4,86,102300,0,0,350,0,0,0,0,0,0,0,200,5.2,10,10,24.1,490,9,999999999,200,0.0750,0,88,999.000,999.0,99.0 +1986,11,23,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,10.0,93,102300,0,0,348,0,0,0,0,0,0,0,200,6.7,10,10,9.7,490,9,999999999,200,0.0750,0,88,999.000,999.0,99.0 +1986,11,23,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,10.0,90,102200,0,0,351,0,0,0,0,0,0,0,190,4.6,10,10,16.1,2130,9,999999999,209,0.0750,0,88,999.000,999.0,99.0 +1986,11,23,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,9.4,83,102100,0,0,343,0,0,0,0,0,0,0,190,6.7,9,9,24.1,1220,9,999999999,209,0.0750,0,88,999.000,999.0,99.0 +1986,11,23,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,9.4,80,102100,39,877,356,16,1,15,1700,0,1700,510,200,8.8,10,10,48.3,1220,9,999999999,209,0.0630,0,88,999.000,999.0,99.0 +1986,11,23,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,9.4,80,102100,222,1403,356,59,4,58,6500,100,6500,1910,220,5.2,10,10,48.3,2130,9,999999999,220,0.0630,0,88,999.000,999.0,99.0 +1986,11,23,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,10.6,87,102100,387,1403,357,71,1,71,8200,0,8200,2790,220,10.3,10,10,4.8,460,9,999999999,220,0.0630,0,88,999.000,999.0,99.0 +1986,11,23,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,10.6,87,102200,504,1403,357,92,2,91,10700,100,10600,3760,210,5.7,10,10,4.8,460,9,999999999,220,0.0630,0,88,999.000,999.0,99.0 +1986,11,23,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,11.1,87,102000,562,1403,360,112,2,111,13000,100,12900,4610,210,7.2,10,10,8.0,610,9,999999999,229,0.0630,0,88,999.000,999.0,99.0 +1986,11,23,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,11.1,87,102000,559,1403,360,123,1,123,14200,100,14200,4970,200,6.2,10,10,6.4,550,9,999999999,229,0.0630,0,88,999.000,999.0,99.0 +1986,11,23,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,11.1,87,102000,494,1403,360,97,0,97,11200,0,11200,3920,190,6.2,10,10,3.2,610,9,999999999,229,0.0630,0,88,999.000,999.0,99.0 +1986,11,23,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,11.1,87,102000,372,1403,360,78,0,78,8900,0,8900,2940,210,5.7,10,10,4.8,610,9,999999999,240,0.0630,0,88,999.000,999.0,99.0 +1986,11,23,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,11.1,87,102000,201,1403,360,33,0,33,3800,0,3800,1220,200,6.7,10,10,9.7,700,9,999999999,240,0.0630,0,88,999.000,999.0,99.0 +1986,11,23,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,11.1,90,102000,27,736,358,8,0,8,0,0,0,0,200,5.7,10,10,6.4,580,9,999999999,229,0.0630,0,88,999.000,999.0,99.0 +1986,11,23,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,11.1,84,102000,0,0,363,0,0,0,0,0,0,0,200,6.2,10,10,6.4,580,9,999999999,229,0.0750,0,88,999.000,999.0,99.0 +1986,11,23,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,11.1,87,101900,0,0,360,0,0,0,0,0,0,0,210,6.7,10,10,6.4,520,9,999999999,229,0.0750,0,88,999.000,999.0,99.0 +1986,11,23,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,11.1,87,101900,0,0,360,0,0,0,0,0,0,0,210,5.7,10,10,24.1,550,9,999999999,220,0.0750,0,88,999.000,999.0,99.0 +1986,11,23,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,10.0,80,101900,0,0,359,0,0,0,0,0,0,0,200,7.2,10,10,24.1,550,9,999999999,220,0.0750,0,88,999.000,999.0,99.0 +1986,11,23,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,10.0,80,101800,0,0,359,0,0,0,0,0,0,0,180,6.2,10,10,24.1,580,9,999999999,209,0.0750,0,88,999.000,999.0,99.0 +1986,11,23,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,9.4,75,101700,0,0,361,0,0,0,0,0,0,0,190,5.2,10,10,24.1,700,9,999999999,200,0.0750,0,88,999.000,999.0,99.0 +1986,11,23,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,8.9,72,101600,0,0,360,0,0,0,0,0,0,0,170,5.7,10,10,24.1,850,9,999999999,200,0.0750,0,88,999.000,999.0,99.0 +1986,11,24,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,8.9,72,101500,0,0,360,0,0,0,0,0,0,0,190,7.2,10,10,24.1,820,9,999999999,200,0.0750,0,88,999.000,999.0,99.0 +1986,11,24,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,8.3,69,101400,0,0,360,0,0,0,0,0,0,0,190,6.2,10,10,24.1,790,9,999999999,189,0.0750,0,88,999.000,999.0,99.0 +1986,11,24,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,8.9,77,101400,0,0,355,0,0,0,0,0,0,0,190,4.6,10,10,24.1,790,9,999999999,189,0.0750,0,88,999.000,999.0,99.0 +1986,11,24,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,8.3,75,101300,0,0,354,0,0,0,0,0,0,0,200,6.7,10,10,24.1,1520,9,999999999,179,0.0750,0,88,999.000,999.0,99.0 +1986,11,24,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,10.0,93,101200,0,0,348,0,0,0,0,0,0,0,180,4.1,10,10,6.4,400,9,999999999,170,0.0750,0,88,999.000,999.0,99.0 +1986,11,24,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,10.0,90,101200,0,0,351,0,0,0,0,0,0,0,180,6.7,10,10,6.4,400,9,999999999,170,0.0750,0,88,999.000,999.0,99.0 +1986,11,24,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,10.0,93,101100,0,0,348,0,0,0,0,0,0,0,190,6.2,10,10,6.4,370,9,999999999,160,0.0750,0,88,999.000,999.0,99.0 +1986,11,24,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,6.1,93,101300,36,854,325,10,0,10,1200,0,1200,360,340,7.7,10,10,2.4,850,9,999999999,160,0.0460,0,88,999.000,999.0,99.0 +1986,11,24,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,5.0,93,101500,217,1403,319,39,0,39,4500,0,4500,1420,320,7.2,10,10,6.4,460,9,999999999,150,0.0460,0,88,999.000,999.0,99.0 +1986,11,24,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,4.4,93,101600,383,1403,316,74,0,74,8500,0,8500,2860,310,5.7,10,10,9.7,880,9,999999999,150,0.0460,0,88,999.000,999.0,99.0 +1986,11,24,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,4.4,93,101600,499,1403,316,104,1,104,12000,100,12000,4160,200,2.6,10,10,24.1,880,9,999999999,139,0.0460,0,88,999.000,999.0,99.0 +1986,11,24,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,5.0,86,101800,558,1403,324,202,0,202,22300,0,22300,6830,320,4.1,10,10,32.2,1430,9,999999999,129,0.0460,0,88,999.000,999.0,99.0 +1986,11,24,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,5.6,83,101900,555,1403,320,166,81,133,18200,8000,15000,3110,310,3.1,9,9,32.2,2440,9,999999999,129,0.0460,0,88,999.000,999.0,99.0 +1986,11,24,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,5.6,77,102100,490,1403,303,260,433,106,27300,40200,13200,2000,310,3.1,6,3,32.2,77777,9,999999999,120,0.0460,0,88,999.000,999.0,99.0 +1986,11,24,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,5.6,77,102300,368,1403,314,132,25,125,14400,1600,14000,3960,300,2.6,7,7,40.2,1220,9,999999999,120,0.0460,0,88,999.000,999.0,99.0 +1986,11,24,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,5.6,80,102400,198,1403,305,92,266,53,9300,16700,6900,970,250,2.1,5,5,48.3,77777,9,999999999,110,0.0460,0,88,999.000,999.0,99.0 +1986,11,24,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,4.4,80,102500,25,713,292,18,84,11,0,0,0,0,210,2.6,2,2,24.1,77777,9,999999999,110,0.0460,0,88,999.000,999.0,99.0 +1986,11,24,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,3.9,86,102700,0,0,289,0,0,0,0,0,0,0,0,0.0,4,4,24.1,77777,9,999999999,110,0.0750,0,88,999.000,999.0,99.0 +1986,11,24,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,4.4,89,102700,0,0,281,0,0,0,0,0,0,0,190,3.6,1,1,24.1,77777,9,999999999,100,0.0750,0,88,999.000,999.0,99.0 +1986,11,24,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,3.9,89,102800,0,0,282,0,0,0,0,0,0,0,280,1.5,2,2,24.1,77777,9,999999999,100,0.0750,0,88,999.000,999.0,99.0 +1986,11,24,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,4.4,89,102900,0,0,292,0,0,0,0,0,0,0,0,0.0,10,5,24.1,77777,9,999999999,100,0.0750,0,88,999.000,999.0,99.0 +1986,11,24,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,4.4,93,102900,0,0,283,0,0,0,0,0,0,0,0,0.0,2,2,24.1,77777,9,999999999,100,0.0750,0,88,999.000,999.0,99.0 +1986,11,24,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,3.3,89,103000,0,0,270,0,0,0,0,0,0,0,140,2.6,0,0,24.1,77777,9,999999999,100,0.0750,0,88,999.000,999.0,99.0 +1986,11,24,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,3.3,96,103000,0,0,266,0,0,0,0,0,0,0,120,2.1,0,0,24.1,77777,9,999999999,100,0.0750,0,88,999.000,999.0,99.0 +1986,11,25,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,2.8,96,103000,0,0,272,0,0,0,0,0,0,0,140,2.6,2,2,24.1,77777,9,999999999,89,0.0750,0,88,999.000,999.0,99.0 +1986,11,25,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,2.2,96,103000,0,0,282,0,0,0,0,0,0,0,140,1.5,8,7,24.1,7620,9,999999999,89,0.0750,0,88,999.000,999.0,99.0 +1986,11,25,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,2.2,96,103000,0,0,261,0,0,0,0,0,0,0,170,2.1,0,0,24.1,77777,9,999999999,89,0.0750,0,88,999.000,999.0,99.0 +1986,11,25,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,1.1,96,103000,0,0,264,0,0,0,0,0,0,0,260,2.1,3,2,24.1,77777,9,999999999,89,0.0750,0,88,999.000,999.0,99.0 +1986,11,25,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,2.2,100,103000,0,0,263,0,0,0,0,0,0,0,160,1.5,3,1,24.1,77777,9,999999999,89,0.0750,0,88,999.000,999.0,99.0 +1986,11,25,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,1.1,96,102900,0,0,261,0,0,0,0,0,0,0,160,1.5,3,1,24.1,77777,9,999999999,89,0.0750,0,88,999.000,999.0,99.0 +1986,11,25,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.1,0.6,96,102900,0,0,261,0,0,0,0,0,0,0,110,1.5,7,2,24.1,77777,9,999999999,89,0.0750,0,88,999.000,999.0,99.0 +1986,11,25,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,2.2,100,102800,34,831,298,11,0,11,1300,0,1300,390,180,2.1,10,10,0.8,90,9,999999999,100,0.0870,0,88,999.000,999.0,99.0 +1986,11,25,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,2.2,100,102800,212,1404,298,65,5,64,7100,100,7100,1980,180,1.5,10,10,48.3,6100,9,999999999,100,0.0870,0,88,999.000,999.0,99.0 +1986,11,25,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,2.8,96,102700,378,1404,304,104,13,101,11700,700,11500,3550,130,2.1,10,10,64.4,6100,9,999999999,100,0.0870,0,88,999.000,999.0,99.0 +1986,11,25,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,3.9,83,102500,495,1404,305,227,104,189,24700,9900,21200,4750,140,4.1,10,8,64.4,6100,9,999999999,100,0.0870,0,88,999.000,999.0,99.0 +1986,11,25,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,2.8,71,102300,554,1404,308,223,100,183,24400,9700,20600,4950,140,2.1,10,8,64.4,7620,9,999999999,100,0.0870,0,88,999.000,999.0,99.0 +1986,11,25,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,2.8,68,102200,551,1404,326,161,3,159,18000,200,17900,5900,220,2.1,10,10,64.4,6100,9,999999999,100,0.0870,0,88,999.000,999.0,99.0 +1986,11,25,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,3.3,71,102000,486,1404,327,117,21,110,12900,2000,12200,3120,200,3.1,10,10,64.4,6100,9,999999999,110,0.0870,0,88,999.000,999.0,99.0 +1986,11,25,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,3.3,80,102000,365,1404,320,94,13,90,10500,700,10300,3230,180,4.1,10,10,64.4,3960,9,999999999,110,0.0870,0,88,999.000,999.0,99.0 +1986,11,25,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,3.3,80,101900,195,1404,320,46,5,46,5200,100,5200,1550,180,3.6,10,10,64.4,3960,9,999999999,110,0.0870,0,88,999.000,999.0,99.0 +1986,11,25,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,2.8,86,101800,24,690,311,11,0,11,0,0,0,0,230,3.6,10,10,24.1,2740,9,999999999,120,0.0870,0,88,999.000,999.0,99.0 +1986,11,25,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,2.2,79,101700,0,0,313,0,0,0,0,0,0,0,170,2.6,10,10,24.1,3050,9,999999999,120,0.0750,0,88,999.000,999.0,99.0 +1986,11,25,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,2.2,74,101600,0,0,318,0,0,0,0,0,0,0,130,4.1,10,10,24.1,3050,9,999999999,129,0.0750,0,88,999.000,999.0,99.0 +1986,11,25,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,2.8,74,101600,0,0,321,0,0,0,0,0,0,0,140,3.6,10,10,24.1,2740,9,999999999,129,0.0750,0,88,999.000,999.0,99.0 +1986,11,25,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,3.9,83,101600,0,0,320,0,0,0,0,0,0,0,120,3.6,10,10,16.1,1430,9,999999999,139,0.0750,0,88,999.000,999.0,99.0 +1986,11,25,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,4.4,89,101600,0,0,318,0,0,0,0,0,0,0,120,3.6,10,10,16.1,1130,9,999999999,150,0.0750,0,88,999.000,999.0,99.0 +1986,11,25,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,4.4,83,101500,0,0,323,0,0,0,0,0,0,0,130,4.1,10,10,24.1,940,9,999999999,150,0.0750,0,88,999.000,999.0,99.0 +1986,11,25,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,5.6,86,101400,0,0,327,0,0,0,0,0,0,0,140,4.1,10,10,16.1,910,9,999999999,160,0.0750,0,88,999.000,999.0,99.0 +1986,11,26,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,6.1,89,101400,0,0,328,0,0,0,0,0,0,0,190,5.7,10,10,6.4,460,9,999999999,160,0.0740,0,88,999.000,999.0,99.0 +1986,11,26,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,6.7,89,101500,0,0,331,0,0,0,0,0,0,0,340,2.1,10,10,8.0,270,9,999999999,170,0.0740,0,88,999.000,999.0,99.0 +1986,11,26,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,7.2,93,101600,0,0,331,0,0,0,0,0,0,0,290,3.6,10,10,16.1,340,9,999999999,170,0.0740,0,88,999.000,999.0,99.0 +1986,11,26,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,7.2,93,101600,0,0,331,0,0,0,0,0,0,0,0,0.0,10,10,24.1,670,9,999999999,179,0.0740,0,88,999.000,999.0,99.0 +1986,11,26,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,7.2,96,101600,0,0,329,0,0,0,0,0,0,0,0,0.0,10,10,24.1,1220,9,999999999,179,0.0740,0,88,999.000,999.0,99.0 +1986,11,26,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,7.2,96,101700,0,0,329,0,0,0,0,0,0,0,90,2.1,10,10,24.1,1340,9,999999999,189,0.0740,0,88,999.000,999.0,99.0 +1986,11,26,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,7.2,96,101700,0,0,329,0,0,0,0,0,0,0,20,1.5,10,10,24.1,2740,9,999999999,189,0.0740,0,88,999.000,999.0,99.0 +1986,11,26,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,6.7,100,101700,31,784,323,10,0,10,1200,0,1200,360,270,1.5,10,10,11.3,2740,9,999999999,200,0.0310,0,88,999.000,999.0,99.0 +1986,11,26,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,7.2,96,101700,207,1404,329,59,3,58,6400,100,6400,1850,300,2.1,10,10,6.4,1340,9,999999999,200,0.0310,0,88,999.000,999.0,99.0 +1986,11,26,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,7.2,96,101600,373,1404,329,146,4,145,15800,300,15700,4280,240,2.1,10,10,1.6,910,9,999999999,200,0.0310,0,88,999.000,999.0,99.0 +1986,11,26,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,7.8,100,101600,490,1404,330,103,2,102,11800,100,11800,4060,270,2.1,10,10,2.4,60,9,999999999,209,0.0310,0,88,999.000,999.0,99.0 +1986,11,26,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,7.8,100,101500,549,1404,330,112,1,112,13000,100,13000,4590,0,0.0,10,10,1.6,60,9,999999999,209,0.0310,0,88,999.000,999.0,99.0 +1986,11,26,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,7.8,96,101400,547,1404,332,118,0,118,13600,0,13600,4770,140,3.6,10,10,6.4,210,9,999999999,220,0.0310,0,88,999.000,999.0,99.0 +1986,11,26,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,7.2,93,101300,483,1404,331,100,1,99,11400,100,11400,3940,130,6.2,10,10,9.7,610,9,999999999,220,0.0310,0,88,999.000,999.0,99.0 +1986,11,26,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,7.8,96,101100,362,1404,332,82,1,82,9300,0,9300,3020,130,7.7,10,10,4.0,430,9,999999999,229,0.0310,0,88,999.000,999.0,99.0 +1986,11,26,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,7.2,93,101000,193,1404,331,37,0,37,4200,0,4200,1320,130,6.2,10,10,2.4,400,9,999999999,229,0.0310,0,88,999.000,999.0,99.0 +1986,11,26,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,7.2,93,101000,23,691,331,8,0,8,0,0,0,0,140,6.7,10,10,8.0,700,9,999999999,229,0.0310,0,88,999.000,999.0,99.0 +1986,11,26,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,7.8,96,100900,0,0,332,0,0,0,0,0,0,0,120,7.2,10,10,9.7,610,9,999999999,229,0.0740,0,88,999.000,999.0,99.0 +1986,11,26,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,7.8,93,100900,0,0,335,0,0,0,0,0,0,0,120,6.2,10,10,16.1,1100,9,999999999,220,0.0740,0,88,999.000,999.0,99.0 +1986,11,26,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,8.9,83,100900,0,0,350,0,0,0,0,0,0,0,190,5.2,10,10,24.1,1100,9,999999999,220,0.0740,0,88,999.000,999.0,99.0 +1986,11,26,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,8.9,86,100900,0,0,347,0,0,0,0,0,0,0,190,6.2,10,10,16.1,940,9,999999999,220,0.0740,0,88,999.000,999.0,99.0 +1986,11,26,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,9.4,93,100900,0,0,345,0,0,0,0,0,0,0,200,8.8,10,10,16.1,910,9,999999999,220,0.0740,0,88,999.000,999.0,99.0 +1986,11,26,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,8.9,90,100900,0,0,344,0,0,0,0,0,0,0,210,10.3,10,10,16.1,940,9,999999999,209,0.0740,0,88,999.000,999.0,99.0 +1986,11,26,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,9.4,90,101000,0,0,347,0,0,0,0,0,0,0,200,7.7,10,10,16.1,1010,9,999999999,209,0.0740,0,88,999.000,999.0,99.0 +1986,11,27,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,9.4,90,101000,0,0,347,0,0,0,0,0,0,0,210,4.1,10,10,24.1,1830,9,999999999,209,0.0740,0,88,999.000,999.0,99.0 +1986,11,27,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,9.4,93,101000,0,0,345,0,0,0,0,0,0,0,170,4.6,10,10,24.1,1830,9,999999999,200,0.0740,0,88,999.000,999.0,99.0 +1986,11,27,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,8.3,90,101200,0,0,341,0,0,0,0,0,0,0,110,3.1,10,10,24.1,3050,9,999999999,200,0.0740,0,88,999.000,999.0,99.0 +1986,11,27,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,8.9,90,101200,0,0,344,0,0,0,0,0,0,0,160,5.2,10,10,24.1,1830,9,999999999,200,0.0740,0,88,999.000,999.0,99.0 +1986,11,27,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,8.9,93,101200,0,0,341,0,0,0,0,0,0,0,90,2.6,10,10,24.1,2740,9,999999999,200,0.0740,0,88,999.000,999.0,99.0 +1986,11,27,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,8.9,96,101200,0,0,338,0,0,0,0,0,0,0,90,2.6,10,10,24.1,3050,9,999999999,200,0.0740,0,88,999.000,999.0,99.0 +1986,11,27,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,8.9,93,101300,0,0,341,0,0,0,0,0,0,0,180,5.7,10,10,24.1,3050,9,999999999,189,0.0740,0,88,999.000,999.0,99.0 +1986,11,27,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,8.9,93,101300,29,761,341,10,0,10,0,0,0,0,180,5.2,10,10,32.2,2130,9,999999999,189,0.1120,0,88,999.000,999.0,99.0 +1986,11,27,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,7.8,86,101400,203,1405,340,60,0,60,6600,0,6600,1870,120,2.6,10,10,16.1,2290,9,999999999,189,0.1120,0,88,999.000,999.0,99.0 +1986,11,27,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,7.2,83,101500,369,1405,339,100,1,100,11200,100,11200,3480,150,3.6,10,10,16.1,910,9,999999999,189,0.1120,0,88,999.000,999.0,99.0 +1986,11,27,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,7.2,93,101600,486,1405,331,98,1,98,11300,100,11300,3920,90,4.6,10,10,4.8,340,9,999999999,179,0.1120,0,88,999.000,999.0,99.0 +1986,11,27,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,6.7,89,101500,545,1405,331,102,1,101,11800,100,11800,4220,140,5.2,10,10,11.3,610,9,999999999,179,0.1120,0,88,999.000,999.0,99.0 +1986,11,27,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,6.7,89,101500,543,1405,331,102,1,102,11900,100,11900,4250,170,4.1,10,10,6.4,610,9,999999999,179,0.1120,0,88,999.000,999.0,99.0 +1986,11,27,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,6.7,89,101500,480,1405,331,98,1,97,11200,100,11200,3870,150,2.6,10,10,16.1,610,9,999999999,179,0.1120,0,88,999.000,999.0,99.0 +1986,11,27,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,7.2,96,101400,359,1405,329,62,1,61,7100,0,7100,2400,130,2.1,10,10,8.0,610,9,999999999,170,0.1120,0,88,999.000,999.0,99.0 +1986,11,27,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,6.1,89,101400,190,1405,328,29,1,29,3400,0,3400,1080,0,0.0,10,10,8.0,910,9,999999999,170,0.1120,0,88,999.000,999.0,99.0 +1986,11,27,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,6.7,93,101300,22,667,328,6,0,6,0,0,0,0,50,1.5,10,10,12.9,1040,9,999999999,170,0.1120,0,88,999.000,999.0,99.0 +1986,11,27,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,6.7,93,101200,0,0,328,0,0,0,0,0,0,0,330,2.6,10,10,11.3,1010,9,999999999,170,0.0740,0,88,999.000,999.0,99.0 +1986,11,27,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,6.7,93,101200,0,0,328,0,0,0,0,0,0,0,310,2.6,10,10,6.4,820,9,999999999,170,0.0740,0,88,999.000,999.0,99.0 +1986,11,27,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,6.7,96,101200,0,0,326,0,0,0,0,0,0,0,330,3.1,10,10,8.0,820,9,999999999,170,0.0740,0,88,999.000,999.0,99.0 +1986,11,27,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,6.7,96,101200,0,0,326,0,0,0,0,0,0,0,280,2.6,10,10,8.0,520,9,999999999,170,0.0740,0,88,999.000,999.0,99.0 +1986,11,27,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,6.7,96,101200,0,0,326,0,0,0,0,0,0,0,250,1.5,10,10,8.0,460,9,999999999,170,0.0740,0,88,999.000,999.0,99.0 +1986,11,27,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,6.7,96,101200,0,0,326,0,0,0,0,0,0,0,0,0.0,10,10,8.0,460,9,999999999,170,0.0740,0,88,999.000,999.0,99.0 +1986,11,27,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,6.1,93,101200,0,0,325,0,0,0,0,0,0,0,110,5.2,10,10,6.4,270,9,999999999,170,0.0740,0,88,999.000,999.0,99.0 +1986,11,28,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,6.1,96,101200,0,0,323,0,0,0,0,0,0,0,130,2.6,10,10,11.3,1010,9,999999999,170,0.0740,0,88,999.000,999.0,99.0 +1986,11,28,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,5.6,96,101200,0,0,319,0,0,0,0,0,0,0,120,3.1,10,10,16.1,1220,9,999999999,170,0.0740,0,88,999.000,999.0,99.0 +1986,11,28,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,5.6,93,101300,0,0,322,0,0,0,0,0,0,0,130,4.1,10,10,16.1,910,9,999999999,170,0.0740,0,88,999.000,999.0,99.0 +1986,11,28,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,5.6,96,101300,0,0,319,0,0,0,0,0,0,0,110,6.2,10,10,16.1,1340,9,999999999,170,0.0740,0,88,999.000,999.0,99.0 +1986,11,28,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,5.0,93,101300,0,0,319,0,0,0,0,0,0,0,120,4.1,10,10,24.1,370,9,999999999,170,0.0740,0,88,999.000,999.0,99.0 +1986,11,28,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,5.6,93,101400,0,0,322,0,0,0,0,0,0,0,120,3.6,10,10,8.0,270,9,999999999,160,0.0740,0,88,999.000,999.0,99.0 +1986,11,28,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,5.6,96,101400,0,0,319,0,0,0,0,0,0,0,120,4.1,10,10,11.3,700,9,999999999,160,0.0740,0,88,999.000,999.0,99.0 +1986,11,28,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,5.6,96,101400,26,738,319,8,0,8,0,0,0,0,130,4.6,10,10,3.2,340,9,999999999,160,0.1660,0,88,999.000,999.0,99.0 +1986,11,28,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,5.6,96,101600,198,1405,319,32,0,32,3700,0,3700,1190,130,4.1,10,10,4.8,90,9,999999999,150,0.1660,0,88,999.000,999.0,99.0 +1986,11,28,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,5.6,96,101600,364,1405,319,65,1,65,7500,0,7500,2540,130,3.6,10,10,8.0,460,9,999999999,150,0.1660,0,88,999.000,999.0,99.0 +1986,11,28,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,6.1,96,101700,481,1405,323,84,1,84,9800,100,9800,3460,130,3.6,10,10,8.0,460,9,999999999,150,0.1660,0,88,999.000,999.0,99.0 +1986,11,28,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,6.7,93,101700,541,1405,328,162,0,162,18100,0,18100,5900,130,3.6,10,10,11.3,460,9,999999999,139,0.1660,0,88,999.000,999.0,99.0 +1986,11,28,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,6.7,93,101700,540,1405,328,155,1,155,17500,100,17400,5730,180,2.1,10,10,11.3,700,9,999999999,139,0.1660,0,88,999.000,999.0,99.0 +1986,11,28,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,7.2,96,101700,476,1405,320,116,65,93,12800,6200,10700,2110,340,2.6,10,9,11.3,760,9,999999999,139,0.1660,0,88,999.000,999.0,99.0 +1986,11,28,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,6.7,89,101800,356,1405,310,128,145,91,14000,12500,10800,2000,310,3.6,9,7,11.3,1830,9,999999999,129,0.1660,0,88,999.000,999.0,99.0 +1986,11,28,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,5.6,83,101800,188,1405,305,39,18,37,4300,1300,4200,940,320,3.6,8,6,24.1,1830,9,999999999,129,0.1660,0,88,999.000,999.0,99.0 +1986,11,28,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,5.0,89,101800,21,644,306,10,1,10,0,0,0,0,320,3.6,8,8,24.1,1830,9,999999999,129,0.1660,0,88,999.000,999.0,99.0 +1986,11,28,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,5.0,86,101900,0,0,324,0,0,0,0,0,0,0,320,4.1,10,10,24.1,1010,9,999999999,129,0.0740,0,88,999.000,999.0,99.0 +1986,11,28,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,4.4,83,101900,0,0,323,0,0,0,0,0,0,0,310,4.6,10,10,24.1,1040,9,999999999,120,0.0740,0,88,999.000,999.0,99.0 +1986,11,28,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,5.0,86,102000,0,0,324,0,0,0,0,0,0,0,320,5.2,10,10,24.1,1160,9,999999999,120,0.0740,0,88,999.000,999.0,99.0 +1986,11,28,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,5.0,86,102000,0,0,324,0,0,0,0,0,0,0,330,4.6,10,10,24.1,1160,9,999999999,120,0.0740,0,88,999.000,999.0,99.0 +1986,11,28,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,5.0,89,102100,0,0,321,0,0,0,0,0,0,0,310,3.6,10,10,24.1,1100,9,999999999,110,0.0740,0,88,999.000,999.0,99.0 +1986,11,28,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,4.4,89,102200,0,0,318,0,0,0,0,0,0,0,310,2.6,10,10,24.1,1220,9,999999999,110,0.0740,0,88,999.000,999.0,99.0 +1986,11,28,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,3.9,89,102200,0,0,285,0,0,0,0,0,0,0,340,3.1,3,3,24.1,77777,9,999999999,110,0.0740,0,88,999.000,999.0,99.0 +1986,11,29,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,3.9,96,102200,0,0,280,0,0,0,0,0,0,0,0,0.0,4,3,24.1,77777,9,999999999,110,0.0730,0,88,999.000,999.0,99.0 +1986,11,29,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,2.8,96,102300,0,0,281,0,0,0,0,0,0,0,310,2.6,7,6,24.1,1220,9,999999999,100,0.0730,0,88,999.000,999.0,99.0 +1986,11,29,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,2.8,96,102400,0,0,277,0,0,0,0,0,0,0,290,2.6,5,4,24.1,77777,9,999999999,100,0.0730,0,88,999.000,999.0,99.0 +1986,11,29,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,2.2,96,102500,0,0,293,0,0,0,0,0,0,0,290,2.6,9,9,24.1,610,9,999999999,100,0.0730,0,88,999.000,999.0,99.0 +1986,11,29,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,2.8,100,102500,0,0,283,0,0,0,0,0,0,0,280,1.5,8,7,24.1,550,9,999999999,100,0.0730,0,88,999.000,999.0,99.0 +1986,11,29,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,2.8,96,102500,0,0,285,0,0,0,0,0,0,0,280,2.6,7,7,24.1,520,9,999999999,100,0.0730,0,88,999.000,999.0,99.0 +1986,11,29,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,1.7,96,102700,0,0,298,0,0,0,0,0,0,0,290,2.1,10,10,24.1,850,9,999999999,89,0.0730,0,88,999.000,999.0,99.0 +1986,11,29,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,3.3,96,102800,24,715,307,9,5,9,0,0,0,0,40,1.5,10,10,24.1,1100,9,999999999,89,0.0490,0,88,999.000,999.0,99.0 +1986,11,29,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,3.9,96,102800,194,1406,295,64,41,58,7000,3000,6500,1350,60,2.1,10,8,24.1,1100,9,999999999,89,0.0490,0,88,999.000,999.0,99.0 +1986,11,29,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,4.4,93,102900,360,1406,296,134,202,82,14400,17100,9900,1550,110,2.6,9,7,24.1,1220,9,999999999,89,0.0490,0,88,999.000,999.0,99.0 +1986,11,29,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,5.0,83,102900,477,1406,297,269,459,112,28200,42200,13800,2130,120,2.6,5,4,24.1,77777,9,999999999,89,0.0490,0,88,999.000,999.0,99.0 +1986,11,29,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,4.4,71,102900,537,1406,304,329,577,105,33600,53800,13000,1990,170,2.6,5,4,24.1,77777,9,999999999,89,0.0490,0,88,999.000,999.0,99.0 +1986,11,29,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,4.4,77,102900,536,1406,304,182,57,160,19900,5500,17800,4400,120,2.6,8,6,24.1,1040,9,999999999,89,0.0490,0,88,999.000,999.0,99.0 +1986,11,29,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,2.8,66,102900,473,1406,305,191,156,137,20600,14700,15700,3110,350,2.6,8,6,24.1,1220,9,999999999,80,0.0490,0,88,999.000,999.0,99.0 +1986,11,29,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,2.2,66,102900,354,1406,302,126,154,87,13400,13000,10100,1670,0,0.0,8,6,24.1,1220,9,999999999,80,0.0490,0,88,999.000,999.0,99.0 +1986,11,29,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,2.8,71,102900,186,1406,304,73,112,58,7800,7100,6900,1220,90,3.1,9,7,24.1,7620,9,999999999,80,0.0490,0,88,999.000,999.0,99.0 +1986,11,29,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,2.2,68,103000,20,644,308,8,6,7,0,0,0,0,120,1.5,9,8,24.1,1340,9,999999999,89,0.0490,0,88,999.000,999.0,99.0 +1986,11,29,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,3.9,80,103000,0,0,314,0,0,0,0,0,0,0,60,2.6,9,9,24.1,1340,9,999999999,89,0.0730,0,88,999.000,999.0,99.0 +1986,11,29,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,2.8,89,103000,0,0,289,0,0,0,0,0,0,0,90,4.1,7,7,24.1,1370,9,999999999,100,0.0730,0,88,999.000,999.0,99.0 +1986,11,29,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,2.8,86,103000,0,0,292,0,0,0,0,0,0,0,110,5.2,8,7,24.1,9140,9,999999999,100,0.0730,0,88,999.000,999.0,99.0 +1986,11,29,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,2.8,93,103100,0,0,298,0,0,0,0,0,0,0,130,3.1,9,9,19.3,9140,9,999999999,110,0.0730,0,88,999.000,999.0,99.0 +1986,11,29,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,2.2,93,103100,0,0,295,0,0,0,0,0,0,0,140,2.6,9,9,19.3,9140,9,999999999,110,0.0730,0,88,999.000,999.0,99.0 +1986,11,29,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,1.7,89,103100,0,0,288,0,0,0,0,0,0,0,120,3.1,10,8,19.3,9140,9,999999999,120,0.0730,0,88,999.000,999.0,99.0 +1986,11,29,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,1.7,93,103100,0,0,269,0,0,0,0,0,0,0,160,2.1,5,2,19.3,77777,9,999999999,129,0.0730,0,88,999.000,999.0,99.0 +1986,11,30,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,1.7,93,103100,0,0,260,0,0,0,0,0,0,0,130,2.6,0,0,24.1,77777,9,999999999,129,0.0730,0,88,999.000,999.0,99.0 +1986,11,30,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,1.1,96,103000,0,0,256,0,0,0,0,0,0,0,140,2.6,1,0,24.1,77777,9,999999999,139,0.0730,0,88,999.000,999.0,99.0 +1986,11,30,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.6,0.0,96,103000,0,0,259,0,0,0,0,0,0,0,0,0.0,2,2,24.1,77777,9,999999999,139,0.0730,0,88,999.000,999.0,99.0 +1986,11,30,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.0,-0.6,96,103000,0,0,263,0,0,0,0,0,0,0,280,3.1,10,5,24.1,77777,9,999999999,150,0.0730,0,88,999.000,999.0,99.0 +1986,11,30,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.6,0.6,100,103000,0,0,268,0,0,0,0,0,0,0,230,2.1,10,6,4.8,9140,9,999999999,150,0.0730,0,88,999.000,999.0,99.0 +1986,11,30,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-0.6,-0.6,100,103000,0,0,284,0,0,0,0,0,0,0,0,0.0,10,10,0.1,30,9,999999999,150,0.0730,0,88,999.000,999.0,99.0 +1986,11,30,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-0.6,-0.6,100,103000,0,0,258,0,0,0,0,0,0,0,280,2.1,7,4,0.3,7620,9,999999999,150,0.0730,0,88,999.000,999.0,99.0 +1986,11,30,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.0,0.0,100,103000,22,668,266,13,20,12,0,0,0,0,290,2.6,10,6,0.4,7620,9,999999999,150,0.0390,0,88,999.000,999.0,99.0 +1986,11,30,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,1.7,100,103000,190,1406,281,79,107,64,8400,6900,7500,1350,10,2.6,10,8,0.2,60,9,999999999,150,0.0390,0,88,999.000,999.0,99.0 +1986,11,30,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,1.7,100,102900,356,1406,296,81,16,77,9200,700,9000,2860,220,1.5,10,10,0.4,60,9,999999999,150,0.0390,0,88,999.000,999.0,99.0 +1986,11,30,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,3.3,100,102900,473,1406,285,207,248,122,22000,23300,14100,2440,320,4.6,10,7,8.0,6100,9,999999999,139,0.0390,0,88,999.000,999.0,99.0 +1986,11,30,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,2.8,89,102800,534,1406,286,271,298,156,28600,29000,17500,3270,10,4.1,8,6,8.0,7620,9,999999999,139,0.0390,0,88,999.000,999.0,99.0 +1986,11,30,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,2.8,86,102800,533,1406,288,260,339,130,27100,32100,14900,2530,350,1.5,8,6,8.0,7620,9,999999999,139,0.0390,0,88,999.000,999.0,99.0 +1986,11,30,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,2.8,80,102700,470,1406,301,210,81,183,23000,7700,20400,4500,290,1.5,10,8,24.1,3660,9,999999999,139,0.0390,0,88,999.000,999.0,99.0 +1986,11,30,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,2.8,77,102600,351,1406,299,185,229,127,19000,19100,14200,2670,290,2.1,10,7,64.4,3660,9,999999999,139,0.0390,0,88,999.000,999.0,99.0 +1986,11,30,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,3.3,83,102600,184,1406,297,76,48,69,8200,3500,7700,1490,280,2.1,10,7,64.4,3660,9,999999999,139,0.0390,0,88,999.000,999.0,99.0 +1986,11,30,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,3.3,86,102500,19,645,315,9,1,9,0,0,0,0,0,0.0,10,10,24.1,3050,9,999999999,139,0.0390,0,88,999.000,999.0,99.0 +1986,11,30,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,3.3,86,102400,0,0,315,0,0,0,0,0,0,0,0,0.0,10,10,24.1,3050,9,999999999,139,0.0730,0,88,999.000,999.0,99.0 +1986,11,30,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,2.8,86,102400,0,0,311,0,0,0,0,0,0,0,0,0.0,10,10,24.1,3050,9,999999999,139,0.0730,0,88,999.000,999.0,99.0 +1986,11,30,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,3.3,89,102300,0,0,312,0,0,0,0,0,0,0,0,0.0,10,10,24.1,4270,9,999999999,139,0.0730,0,88,999.000,999.0,99.0 +1986,11,30,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,3.3,93,102400,0,0,309,0,0,0,0,0,0,0,250,2.1,10,10,24.1,4270,9,999999999,139,0.0730,0,88,999.000,999.0,99.0 +1986,11,30,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.5,2.5,93,102300,0,0,304,0,0,0,0,0,0,0,0,2.3,10,10,24.1,4270,9,999999999,139,0.0730,0,88,999.000,999.0,99.0 +1986,11,30,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.5,1.7,83,102400,0,0,299,0,0,0,0,0,0,0,130,2.5,10,10,24.1,3960,9,999999999,139,0.0730,0,88,999.000,999.0,99.0 +1986,11,30,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.6,0.9,93,102400,0,0,294,0,0,0,0,0,0,0,170,2.7,10,10,24.1,3960,9,999999999,139,0.0730,0,88,999.000,999.0,99.0 +1976,12,1,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.6,0.2,100,103100,0,0,275,0,0,0,0,0,0,0,280,3.0,8,8,0.2,77777,9,999999999,100,0.0720,0,88,999.000,999.0,99.0 +1976,12,1,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-0.2,-0.5,100,103100,0,0,285,0,0,0,0,0,0,0,260,3.2,10,10,0.2,30,9,999999999,100,0.0720,0,88,999.000,999.0,99.0 +1976,12,1,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.2,-1.3,100,103100,0,0,251,0,0,0,0,0,0,0,260,3.4,2,2,4.8,77777,9,999999999,100,0.0720,0,88,999.000,999.0,99.0 +1976,12,1,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-2.2,-2.2,100,103100,0,0,243,0,0,0,0,0,0,0,300,3.6,1,1,3.2,77777,9,999999999,100,0.0720,0,88,999.000,999.0,99.0 +1976,12,1,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.7,-1.7,100,103100,0,0,257,0,0,0,0,0,0,0,330,2.6,6,6,0.6,77777,9,999999999,100,0.0720,0,88,999.000,999.0,99.0 +1976,12,1,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-2.2,-2.2,100,103100,0,0,275,0,0,0,0,0,0,0,310,3.6,10,10,0.2,30,9,999999999,100,0.0720,0,88,999.000,999.0,99.0 +1976,12,1,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.7,-1.7,100,103100,0,0,278,0,0,0,0,0,0,0,0,0.0,10,10,0.2,30,9,999999999,89,0.0720,0,88,999.000,999.0,99.0 +1976,12,1,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.7,-1.7,100,103100,20,645,278,7,17,5,0,0,0,0,340,2.1,10,10,0.2,30,9,999999999,89,0.0460,0,88,999.000,999.0,99.0 +1976,12,1,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.7,-2.2,96,103100,184,1407,248,84,320,42,8500,20000,5800,720,0,0.0,2,2,0.6,77777,9,999999999,89,0.0460,0,88,999.000,999.0,99.0 +1976,12,1,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.1,-1.1,100,103100,350,1407,281,77,2,77,8800,100,8800,2840,290,3.1,10,10,0.1,30,9,999999999,89,0.0460,0,88,999.000,999.0,99.0 +1976,12,1,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-0.6,-0.6,100,103100,468,1407,284,144,2,144,16100,100,16000,5010,280,3.6,10,10,0.1,30,9,999999999,89,0.0460,0,88,999.000,999.0,99.0 +1976,12,1,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,1.1,96,103100,529,1407,261,355,814,47,37400,76500,8500,1150,300,4.1,1,1,1.6,77777,9,999999999,89,0.0460,0,88,999.000,999.0,99.0 +1976,12,1,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,1.1,82,103000,528,1407,264,362,826,49,38000,77500,8800,1170,280,3.1,0,0,2.4,77777,9,999999999,89,0.0460,0,88,999.000,999.0,99.0 +1976,12,1,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,1.7,73,102900,467,1407,273,310,792,45,32600,72700,8300,1060,290,3.1,0,0,4.8,77777,9,999999999,80,0.0460,0,88,999.000,999.0,99.0 +1976,12,1,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,2.2,74,102900,348,1407,276,211,686,39,21900,58700,7300,820,290,3.1,1,0,6.4,77777,9,999999999,80,0.0460,0,88,999.000,999.0,99.0 +1976,12,1,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,1.7,73,102900,181,1407,273,90,443,32,9200,28200,5500,580,0,0.0,4,0,8.0,77777,9,999999999,80,0.0460,0,88,999.000,999.0,99.0 +1976,12,1,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,1.7,86,102900,19,622,264,17,91,8,0,0,0,0,300,2.1,0,0,8.0,77777,9,999999999,80,0.0460,0,88,999.000,999.0,99.0 +1976,12,1,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,0.0,89,102900,0,0,255,0,0,0,0,0,0,0,280,2.6,0,0,6.4,77777,9,999999999,89,0.0720,0,88,999.000,999.0,99.0 +1976,12,1,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.0,-0.6,96,102900,0,0,248,0,0,0,0,0,0,0,290,2.1,0,0,6.4,77777,9,999999999,89,0.0720,0,88,999.000,999.0,99.0 +1976,12,1,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.1,-1.1,100,102900,0,0,243,0,0,0,0,0,0,0,260,2.1,0,0,4.8,77777,9,999999999,89,0.0720,0,88,999.000,999.0,99.0 +1976,12,1,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.0,0.0,100,103000,0,0,259,0,0,0,0,0,0,0,240,2.1,3,3,0.8,77777,9,999999999,89,0.0720,0,88,999.000,999.0,99.0 +1976,12,1,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-0.6,-1.1,96,103000,0,0,256,0,0,0,0,0,0,0,0,0.0,3,3,0.4,77777,9,999999999,89,0.0720,0,88,999.000,999.0,99.0 +1976,12,1,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-3.3,-3.3,100,103000,0,0,244,0,0,0,0,0,0,0,270,2.1,3,3,0.1,77777,9,999999999,100,0.0720,0,88,999.000,999.0,99.0 +1976,12,1,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.1,-1.1,100,103000,0,0,281,0,0,0,0,0,0,0,290,2.6,10,10,0.1,30,9,999999999,100,0.0720,0,88,999.000,999.0,99.0 +1976,12,2,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-0.6,-0.6,100,103000,0,0,270,0,0,0,0,0,0,0,290,2.6,8,8,0.4,77777,9,999999999,100,0.0720,0,88,999.000,999.0,99.0 +1976,12,2,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-2.2,-2.2,100,103000,0,0,262,0,0,0,0,0,0,0,220,2.6,8,8,0.1,77777,9,999999999,100,0.0720,0,88,999.000,999.0,99.0 +1976,12,2,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-2.2,-2.2,100,103000,0,0,275,0,0,0,0,0,0,0,250,1.5,10,10,0.1,30,9,999999999,110,0.0720,0,88,999.000,999.0,99.0 +1976,12,2,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-2.2,-2.2,100,103000,0,0,275,0,0,0,0,0,0,0,260,1.5,10,10,0.1,30,9,999999999,110,0.0720,0,88,999.000,999.0,99.0 +1976,12,2,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-2.2,-2.2,100,103000,0,0,275,0,0,0,0,0,0,0,240,2.6,10,10,0.1,30,9,999999999,110,0.0720,0,88,999.000,999.0,99.0 +1976,12,2,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-2.8,-2.8,100,103000,0,0,272,0,0,0,0,0,0,0,0,0.0,10,10,0.1,30,9,999999999,110,0.0720,0,88,999.000,999.0,99.0 +1976,12,2,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-2.8,-2.8,100,103000,0,0,272,0,0,0,0,0,0,0,270,1.5,10,10,0.1,30,9,999999999,110,0.0720,0,88,999.000,999.0,99.0 +1976,12,2,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-2.8,-2.8,100,103000,18,622,272,7,1,7,0,0,0,0,250,2.1,10,10,0.1,30,9,999999999,110,0.0850,0,88,999.000,999.0,99.0 +1976,12,2,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-2.8,-2.8,100,103100,180,1408,272,36,5,35,4000,0,4000,1230,270,1.5,10,10,0.1,60,9,999999999,110,0.0850,0,88,999.000,999.0,99.0 +1976,12,2,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.7,-1.7,100,103100,346,1408,270,106,41,95,11500,3600,10600,2420,290,2.1,9,9,0.1,77777,9,999999999,100,0.0850,0,88,999.000,999.0,99.0 +1976,12,2,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.0,-1.7,89,103100,464,1408,255,271,574,81,28100,52000,10800,1530,250,2.1,2,2,1.6,77777,9,999999999,100,0.0850,0,88,999.000,999.0,99.0 +1976,12,2,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,1.7,89,103000,526,1408,276,346,592,123,36300,55900,15300,2370,290,2.1,4,4,4.8,77777,9,999999999,100,0.0850,0,88,999.000,999.0,99.0 +1976,12,2,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,0.6,73,103000,526,1408,279,289,489,106,30900,46300,13500,2010,350,2.1,6,3,8.0,77777,9,999999999,100,0.0850,0,88,999.000,999.0,99.0 +1976,12,2,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,0.0,65,102900,464,1408,293,197,175,139,21400,16400,15900,3150,0,0.0,8,7,9.7,7320,9,999999999,100,0.0850,0,88,999.000,999.0,99.0 +1976,12,2,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,0.6,68,102900,346,1408,299,120,75,102,13200,6500,11600,2550,270,2.6,10,8,9.7,6100,9,999999999,100,0.0850,0,88,999.000,999.0,99.0 +1976,12,2,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,1.7,89,102900,180,1408,278,65,85,54,7000,5300,6300,1140,280,3.6,9,5,3.2,6100,9,999999999,100,0.0850,0,88,999.000,999.0,99.0 +1976,12,2,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.6,0.0,96,102900,18,622,259,12,15,11,0,0,0,0,260,2.6,10,2,3.2,77777,9,999999999,100,0.0850,0,88,999.000,999.0,99.0 +1976,12,2,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.0,-0.6,96,102900,0,0,253,0,0,0,0,0,0,0,260,2.6,1,1,4.8,77777,9,999999999,100,0.0720,0,88,999.000,999.0,99.0 +1976,12,2,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.1,0.0,92,102900,0,0,252,0,0,0,0,0,0,0,0,0.0,10,0,4.8,77777,9,999999999,100,0.0720,0,88,999.000,999.0,99.0 +1976,12,2,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.1,0.0,92,102900,0,0,252,0,0,0,0,0,0,0,0,0.0,10,0,4.8,77777,9,999999999,110,0.0720,0,88,999.000,999.0,99.0 +1976,12,2,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.0,-0.6,96,102900,0,0,248,0,0,0,0,0,0,0,270,2.1,10,0,4.8,77777,9,999999999,110,0.0720,0,88,999.000,999.0,99.0 +1976,12,2,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.6,0.0,96,102900,0,0,251,0,0,0,0,0,0,0,0,0.0,10,0,4.8,77777,9,999999999,110,0.0720,0,88,999.000,999.0,99.0 +1976,12,2,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-0.6,-1.1,96,102900,0,0,245,0,0,0,0,0,0,0,260,2.6,0,0,4.8,77777,9,999999999,110,0.0720,0,88,999.000,999.0,99.0 +1976,12,2,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.0,-0.6,96,103000,0,0,248,0,0,0,0,0,0,0,290,2.6,0,0,8.0,77777,9,999999999,110,0.0720,0,88,999.000,999.0,99.0 +1976,12,3,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.1,-1.1,100,102900,0,0,281,0,0,0,0,0,0,0,0,0.0,10,10,0.1,30,9,999999999,110,0.0720,0,88,999.000,999.0,99.0 +1976,12,3,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-0.6,-0.6,100,102900,0,0,284,0,0,0,0,0,0,0,0,0.0,10,10,0.8,60,9,999999999,120,0.0720,0,88,999.000,999.0,99.0 +1976,12,3,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.1,-1.1,100,102900,0,0,281,0,0,0,0,0,0,0,0,0.0,10,10,0.2,30,9,999999999,120,0.0720,0,88,999.000,999.0,99.0 +1976,12,3,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.7,-1.7,100,102900,0,0,278,0,0,0,0,0,0,0,0,0.0,10,10,0.2,30,9,999999999,120,0.0720,0,88,999.000,999.0,99.0 +1976,12,3,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-0.6,-0.6,100,102900,0,0,284,0,0,0,0,0,0,0,0,0.0,10,10,0.2,30,9,999999999,120,0.0720,0,88,999.000,999.0,99.0 +1976,12,3,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.0,0.0,100,102900,0,0,287,0,0,0,0,0,0,0,350,2.1,10,10,0.2,30,9,999999999,120,0.0720,0,88,999.000,999.0,99.0 +1976,12,3,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.0,0.0,100,102800,0,0,287,0,0,0,0,0,0,0,360,1.5,10,10,0.4,30,9,999999999,120,0.0720,0,88,999.000,999.0,99.0 +1976,12,3,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.0,0.0,100,102800,16,575,287,2,1,1,0,0,0,0,20,2.6,10,10,0.8,60,9,999999999,120,0.0350,0,88,999.000,999.0,99.0 +1976,12,3,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.6,0.0,96,102800,176,1408,289,39,4,39,4400,0,4400,1330,320,2.6,10,10,0.8,60,9,999999999,120,0.0350,0,88,999.000,999.0,99.0 +1976,12,3,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.1,0.6,96,102800,342,1408,292,79,6,77,8900,300,8800,2810,310,2.6,10,10,1.6,90,9,999999999,129,0.0350,0,88,999.000,999.0,99.0 +1976,12,3,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,0.6,92,102800,461,1408,286,115,56,97,12700,5200,11000,2750,330,1.5,9,9,3.2,240,9,999999999,129,0.0350,0,88,999.000,999.0,99.0 +1976,12,3,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,0.6,89,102800,522,1408,282,278,143,224,29400,13700,24300,5180,290,2.6,9,8,3.2,4880,9,999999999,129,0.0350,0,88,999.000,999.0,99.0 +1976,12,3,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,1.1,86,102700,523,1408,287,207,66,182,22600,6300,20200,4770,280,2.6,9,8,3.2,4880,9,999999999,129,0.0350,0,88,999.000,999.0,99.0 +1976,12,3,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,1.7,89,102600,462,1408,303,131,8,128,14600,500,14500,4620,290,3.1,10,10,3.2,4880,9,999999999,129,0.0350,0,88,999.000,999.0,99.0 +1976,12,3,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,1.1,86,102600,344,1408,302,115,7,114,12700,400,12600,3600,250,1.5,10,10,3.2,4880,9,999999999,129,0.0350,0,88,999.000,999.0,99.0 +1976,12,3,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,1.7,89,102500,178,1408,303,60,4,59,6500,100,6400,1720,260,2.6,10,10,1.6,4880,9,999999999,129,0.0350,0,88,999.000,999.0,99.0 +1976,12,3,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,1.7,92,102500,18,599,286,7,1,7,0,0,0,0,260,2.6,8,8,1.6,3660,9,999999999,129,0.0350,0,88,999.000,999.0,99.0 +1976,12,3,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,1.7,92,102600,0,0,269,0,0,0,0,0,0,0,230,2.1,10,2,4.8,77777,9,999999999,129,0.0720,0,88,999.000,999.0,99.0 +1976,12,3,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,1.7,89,102600,0,0,303,0,0,0,0,0,0,0,10,2.1,10,10,8.0,2440,9,999999999,129,0.0720,0,88,999.000,999.0,99.0 +1976,12,3,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,1.7,86,102500,0,0,305,0,0,0,0,0,0,0,50,2.1,10,10,9.7,2440,9,999999999,129,0.0720,0,88,999.000,999.0,99.0 +1976,12,3,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,1.7,89,102500,0,0,303,0,0,0,0,0,0,0,320,2.6,10,10,9.7,2290,9,999999999,129,0.0720,0,88,999.000,999.0,99.0 +1976,12,3,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,1.7,86,102400,0,0,286,0,0,0,0,0,0,0,350,2.1,7,7,9.7,2290,9,999999999,139,0.0720,0,88,999.000,999.0,99.0 +1976,12,3,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,1.7,89,102500,0,0,288,0,0,0,0,0,0,0,300,2.6,8,8,9.7,240,9,999999999,139,0.0720,0,88,999.000,999.0,99.0 +1976,12,3,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,1.7,92,102500,0,0,286,0,0,0,0,0,0,0,20,2.1,8,8,3.2,240,9,999999999,139,0.0720,0,88,999.000,999.0,99.0 +1976,12,4,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,1.7,92,102500,0,0,300,0,0,0,0,0,0,0,350,2.1,10,10,3.2,120,9,999999999,139,0.0720,0,88,999.000,999.0,99.0 +1976,12,4,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,2.2,96,102500,0,0,301,0,0,0,0,0,0,0,0,0.0,10,10,3.2,120,9,999999999,139,0.0720,0,88,999.000,999.0,99.0 +1976,12,4,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,2.2,93,102500,0,0,303,0,0,0,0,0,0,0,160,2.1,10,10,3.2,180,9,999999999,139,0.0720,0,88,999.000,999.0,99.0 +1976,12,4,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,1.7,92,102500,0,0,300,0,0,0,0,0,0,0,120,2.6,10,10,3.2,150,9,999999999,139,0.0720,0,88,999.000,999.0,99.0 +1976,12,4,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,1.7,92,102500,0,0,300,0,0,0,0,0,0,0,0,0.0,10,10,3.2,180,9,999999999,139,0.0720,0,88,999.000,999.0,99.0 +1976,12,4,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,2.2,93,102500,0,0,303,0,0,0,0,0,0,0,0,0.0,10,10,3.2,240,9,999999999,139,0.0720,0,88,999.000,999.0,99.0 +1976,12,4,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,1.7,89,102500,0,0,303,0,0,0,0,0,0,0,0,0.0,10,10,8.0,270,9,999999999,129,0.0720,0,88,999.000,999.0,99.0 +1976,12,4,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,2.2,93,102600,15,552,303,8,0,8,0,0,0,0,130,2.1,10,10,6.4,310,9,999999999,129,0.1330,0,88,999.000,999.0,99.0 +1976,12,4,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,2.2,93,102600,172,1409,303,23,1,23,2700,0,2700,870,90,2.6,10,10,6.4,240,9,999999999,129,0.1330,0,88,999.000,999.0,99.0 +1976,12,4,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,1.7,86,102600,338,1409,305,64,12,61,7300,500,7200,2350,300,2.6,10,10,8.0,310,9,999999999,129,0.1330,0,88,999.000,999.0,99.0 +1976,12,4,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,1.7,86,102700,457,1409,305,109,4,108,12400,200,12300,4090,0,0.0,10,10,9.7,310,9,999999999,120,0.1330,0,88,999.000,999.0,99.0 +1976,12,4,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,1.7,86,102600,519,1409,305,157,6,155,17600,400,17400,5590,0,0.0,10,10,9.7,310,9,999999999,120,0.1330,0,88,999.000,999.0,99.0 +1976,12,4,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,1.7,82,102600,520,1409,307,131,5,129,14900,300,14700,4950,340,2.6,10,10,9.7,340,9,999999999,120,0.1330,0,88,999.000,999.0,99.0 +1976,12,4,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,1.7,82,102500,460,1409,307,118,3,117,13300,200,13200,4340,0,0.0,10,10,9.7,340,9,999999999,110,0.1330,0,88,999.000,999.0,99.0 +1976,12,4,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,1.7,82,102500,342,1409,307,84,3,83,9400,100,9400,2960,40,3.1,10,10,9.7,340,9,999999999,110,0.1330,0,88,999.000,999.0,99.0 +1976,12,4,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,1.7,86,102600,177,1409,305,40,1,40,4500,0,4500,1350,30,2.6,10,10,8.0,370,9,999999999,110,0.1330,0,88,999.000,999.0,99.0 +1976,12,4,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,1.1,82,102600,17,599,305,9,0,9,0,0,0,0,10,2.1,10,10,8.0,370,9,999999999,110,0.1330,0,88,999.000,999.0,99.0 +1976,12,4,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,1.7,86,102600,0,0,305,0,0,0,0,0,0,0,50,2.6,10,10,8.0,430,9,999999999,110,0.0720,0,88,999.000,999.0,99.0 +1976,12,4,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,1.1,82,102600,0,0,305,0,0,0,0,0,0,0,60,3.1,10,10,8.0,400,9,999999999,120,0.0720,0,88,999.000,999.0,99.0 +1976,12,4,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,1.7,89,102600,0,0,303,0,0,0,0,0,0,0,80,2.6,10,10,8.0,400,9,999999999,120,0.0720,0,88,999.000,999.0,99.0 +1976,12,4,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,1.7,89,102600,0,0,303,0,0,0,0,0,0,0,80,1.5,10,10,8.0,270,9,999999999,120,0.0720,0,88,999.000,999.0,99.0 +1976,12,4,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,1.7,86,102600,0,0,305,0,0,0,0,0,0,0,320,2.1,10,10,8.0,270,9,999999999,129,0.0720,0,88,999.000,999.0,99.0 +1976,12,4,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,2.2,93,102600,0,0,303,0,0,0,0,0,0,0,250,2.1,10,10,8.0,880,9,999999999,129,0.0720,0,88,999.000,999.0,99.0 +1976,12,4,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,2.2,93,102600,0,0,303,0,0,0,0,0,0,0,0,0.0,10,10,8.0,310,9,999999999,129,0.0720,0,88,999.000,999.0,99.0 +1976,12,5,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,2.2,89,102600,0,0,306,0,0,0,0,0,0,0,0,0.0,10,10,8.0,310,9,999999999,129,0.0710,0,88,999.000,999.0,99.0 +1976,12,5,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,2.2,93,102600,0,0,303,0,0,0,0,0,0,0,0,0.0,10,10,9.7,310,9,999999999,139,0.0710,0,88,999.000,999.0,99.0 +1976,12,5,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,1.1,86,102600,0,0,302,0,0,0,0,0,0,0,170,2.6,10,10,9.7,520,9,999999999,139,0.0710,0,88,999.000,999.0,99.0 +1976,12,5,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,0.6,82,102600,0,0,301,0,0,0,0,0,0,0,0,0.0,10,10,9.7,520,9,999999999,139,0.0710,0,88,999.000,999.0,99.0 +1976,12,5,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,0.6,82,102600,0,0,301,0,0,0,0,0,0,0,0,0.0,10,10,9.7,520,9,999999999,139,0.0710,0,88,999.000,999.0,99.0 +1976,12,5,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,1.7,86,102700,0,0,305,0,0,0,0,0,0,0,0,0.0,10,10,9.7,580,9,999999999,150,0.0710,0,88,999.000,999.0,99.0 +1976,12,5,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,0.0,79,102700,0,0,301,0,0,0,0,0,0,0,130,3.6,10,10,9.7,460,9,999999999,150,0.0710,0,88,999.000,999.0,99.0 +1976,12,5,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,0.6,82,102700,14,528,301,3,0,3,0,0,0,0,110,2.6,10,10,12.9,460,9,999999999,150,0.0780,0,88,999.000,999.0,99.0 +1976,12,5,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,1.1,82,102800,168,1409,296,55,18,53,6000,1300,5900,1200,150,3.1,9,9,16.1,460,9,999999999,160,0.0780,0,88,999.000,999.0,99.0 +1976,12,5,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,1.1,79,102800,335,1409,287,133,143,98,14300,12000,11400,2140,0,0.0,7,7,16.1,2740,9,999999999,160,0.0780,0,88,999.000,999.0,99.0 +1976,12,5,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,1.1,73,102800,454,1409,304,143,50,126,15600,4600,14100,3370,110,3.1,9,9,16.1,520,9,999999999,160,0.0780,0,88,999.000,999.0,99.0 +1976,12,5,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,0.6,68,102700,516,1409,305,196,41,181,21500,3900,20000,4710,130,4.6,9,9,16.1,580,9,999999999,170,0.0780,0,88,999.000,999.0,99.0 +1976,12,5,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,0.6,63,102700,518,1409,319,113,6,111,13000,400,12900,4430,130,3.6,10,10,16.1,580,9,999999999,170,0.0780,0,88,999.000,999.0,99.0 +1976,12,5,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,1.1,65,102700,458,1409,304,193,129,151,20800,12000,16900,3410,100,3.1,8,8,16.1,580,9,999999999,170,0.0780,0,88,999.000,999.0,99.0 +1976,12,5,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,1.1,68,102700,341,1409,317,101,4,100,11200,200,11100,3330,120,3.1,10,10,32.2,5180,9,999999999,179,0.0780,0,88,999.000,999.0,99.0 +1976,12,5,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,0.0,68,102700,176,1409,311,43,5,42,4800,0,4700,1400,130,3.6,10,10,32.2,4880,9,999999999,179,0.0780,0,88,999.000,999.0,99.0 +1976,12,5,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,0.0,70,102700,17,599,300,0,2,0,0,0,0,0,110,3.6,10,9,24.1,1100,9,999999999,179,0.0780,0,88,999.000,999.0,99.0 +1976,12,5,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,0.0,70,102700,0,0,308,0,0,0,0,0,0,0,120,4.1,10,10,24.1,1070,9,999999999,179,0.0710,0,88,999.000,999.0,99.0 +1976,12,5,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,0.0,73,102700,0,0,306,0,0,0,0,0,0,0,110,2.6,10,10,24.1,1070,9,999999999,179,0.0710,0,88,999.000,999.0,99.0 +1976,12,5,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,0.0,73,102700,0,0,306,0,0,0,0,0,0,0,120,4.1,10,10,24.1,1070,9,999999999,179,0.0710,0,88,999.000,999.0,99.0 +1976,12,5,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,0.0,73,102700,0,0,306,0,0,0,0,0,0,0,130,4.1,10,10,24.1,910,9,999999999,179,0.0710,0,88,999.000,999.0,99.0 +1976,12,5,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,0.0,73,102700,0,0,306,0,0,0,0,0,0,0,120,3.1,10,10,24.1,910,9,999999999,179,0.0710,0,88,999.000,999.0,99.0 +1976,12,5,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,0.0,73,102800,0,0,306,0,0,0,0,0,0,0,110,2.6,10,10,24.1,880,9,999999999,170,0.0710,0,88,999.000,999.0,99.0 +1976,12,5,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,0.6,76,102800,0,0,292,0,0,0,0,0,0,0,110,3.1,10,8,24.1,880,9,999999999,170,0.0710,0,88,999.000,999.0,99.0 +1976,12,6,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,0.6,76,102800,0,0,306,0,0,0,0,0,0,0,140,2.6,10,10,24.1,640,9,999999999,170,0.0710,0,88,999.000,999.0,99.0 +1976,12,6,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,1.1,79,102800,0,0,307,0,0,0,0,0,0,0,110,2.1,10,10,24.1,670,9,999999999,170,0.0710,0,88,999.000,999.0,99.0 +1976,12,6,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,1.1,79,102800,0,0,307,0,0,0,0,0,0,0,120,2.6,10,10,24.1,670,9,999999999,170,0.0710,0,88,999.000,999.0,99.0 +1976,12,6,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,1.1,79,102800,0,0,307,0,0,0,0,0,0,0,100,3.1,10,10,19.3,550,9,999999999,170,0.0710,0,88,999.000,999.0,99.0 +1976,12,6,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,1.7,82,102800,0,0,307,0,0,0,0,0,0,0,100,2.6,10,10,24.1,790,9,999999999,170,0.0710,0,88,999.000,999.0,99.0 +1976,12,6,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,0.6,79,102700,0,0,304,0,0,0,0,0,0,0,140,3.6,10,10,24.1,1430,9,999999999,170,0.0710,0,88,999.000,999.0,99.0 +1976,12,6,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,1.1,82,102800,0,0,305,0,0,0,0,0,0,0,110,2.6,10,10,24.1,1280,9,999999999,170,0.0710,0,88,999.000,999.0,99.0 +1976,12,6,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,1.7,82,102700,12,505,307,3,1,3,0,0,0,0,0,0.0,10,10,8.0,1160,9,999999999,170,0.0490,0,88,999.000,999.0,99.0 +1976,12,6,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,2.2,86,102800,164,1409,308,38,3,37,4200,0,4200,1250,190,2.1,10,10,4.8,980,9,999999999,170,0.0490,0,88,999.000,999.0,99.0 +1976,12,6,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,2.2,86,102800,331,1409,308,93,13,90,10400,600,10200,3070,160,1.5,10,10,4.8,850,9,999999999,179,0.0490,0,88,999.000,999.0,99.0 +1976,12,6,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,2.8,83,102800,451,1409,314,84,1,84,9700,100,9700,3370,150,1.5,10,10,4.8,400,9,999999999,179,0.0490,0,88,999.000,999.0,99.0 +1976,12,6,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,3.9,93,102700,514,1409,312,86,6,84,10100,300,10000,3550,150,3.1,10,10,2.4,150,9,999999999,179,0.0490,0,88,999.000,999.0,99.0 +1976,12,6,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,3.3,89,102700,515,1409,312,149,4,148,16800,300,16600,5400,210,2.6,10,10,8.0,340,9,999999999,179,0.0490,0,88,999.000,999.0,99.0 +1976,12,6,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,3.3,83,102600,456,1409,317,132,4,131,14800,300,14700,4650,180,2.6,10,10,9.7,430,9,999999999,179,0.0490,0,88,999.000,999.0,99.0 +1976,12,6,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,3.3,80,102600,339,1409,320,102,1,102,11300,100,11300,3360,130,2.6,10,10,11.3,400,9,999999999,179,0.0490,0,88,999.000,999.0,99.0 +1976,12,6,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,3.9,83,102600,175,1409,320,47,2,47,5200,0,5200,1500,120,2.6,10,10,11.3,370,9,999999999,179,0.0490,0,88,999.000,999.0,99.0 +1976,12,6,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,3.9,86,102600,16,599,317,8,0,8,0,0,0,0,120,2.1,10,10,11.3,400,9,999999999,179,0.0490,0,88,999.000,999.0,99.0 +1976,12,6,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,3.3,80,102600,0,0,320,0,0,0,0,0,0,0,0,0.0,10,10,11.3,370,9,999999999,189,0.0710,0,88,999.000,999.0,99.0 +1976,12,6,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,3.3,80,102600,0,0,320,0,0,0,0,0,0,0,180,2.6,10,10,11.3,370,9,999999999,189,0.0710,0,88,999.000,999.0,99.0 +1976,12,6,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,3.3,83,102600,0,0,317,0,0,0,0,0,0,0,190,1.5,10,10,11.3,370,9,999999999,189,0.0710,0,88,999.000,999.0,99.0 +1976,12,6,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,3.3,83,102600,0,0,317,0,0,0,0,0,0,0,200,1.5,10,10,11.3,370,9,999999999,200,0.0710,0,88,999.000,999.0,99.0 +1976,12,6,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,3.9,86,102500,0,0,317,0,0,0,0,0,0,0,200,2.6,10,10,11.3,370,9,999999999,200,0.0710,0,88,999.000,999.0,99.0 +1976,12,6,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,3.3,83,102500,0,0,317,0,0,0,0,0,0,0,200,2.1,10,10,11.3,370,9,999999999,200,0.0710,0,88,999.000,999.0,99.0 +1976,12,6,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,3.9,86,102400,0,0,317,0,0,0,0,0,0,0,0,0.0,10,10,11.3,370,9,999999999,209,0.0710,0,88,999.000,999.0,99.0 +1976,12,7,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,3.9,86,102400,0,0,317,0,0,0,0,0,0,0,0,0.0,10,10,11.3,430,9,999999999,209,0.0710,0,88,999.000,999.0,99.0 +1976,12,7,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,3.9,86,102400,0,0,317,0,0,0,0,0,0,0,0,0.0,10,10,11.3,270,9,999999999,209,0.0710,0,88,999.000,999.0,99.0 +1976,12,7,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,3.9,86,102400,0,0,317,0,0,0,0,0,0,0,160,3.1,10,10,9.7,240,9,999999999,220,0.0710,0,88,999.000,999.0,99.0 +1976,12,7,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,3.9,86,102300,0,0,317,0,0,0,0,0,0,0,160,2.1,10,10,8.0,240,9,999999999,220,0.0710,0,88,999.000,999.0,99.0 +1976,12,7,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,3.3,86,102300,0,0,315,0,0,0,0,0,0,0,160,3.1,10,10,8.0,210,9,999999999,209,0.0710,0,88,999.000,999.0,99.0 +1976,12,7,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,3.3,86,102300,0,0,315,0,0,0,0,0,0,0,140,3.6,10,10,11.3,210,9,999999999,209,0.0710,0,88,999.000,999.0,99.0 +1976,12,7,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,3.3,86,102300,0,0,315,0,0,0,0,0,0,0,130,2.1,10,10,11.3,310,9,999999999,200,0.0710,0,88,999.000,999.0,99.0 +1976,12,7,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,3.3,86,102200,11,482,315,4,0,4,0,0,0,0,160,2.6,10,10,12.9,310,9,999999999,200,0.0790,0,88,999.000,999.0,99.0 +1976,12,7,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,3.9,89,102300,161,1410,315,39,0,39,4300,0,4300,1280,160,4.1,10,10,8.0,310,9,999999999,189,0.0790,0,88,999.000,999.0,99.0 +1976,12,7,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,4.4,89,102300,328,1410,318,97,1,97,10700,100,10700,3200,90,3.6,10,10,9.7,340,9,999999999,189,0.0790,0,88,999.000,999.0,99.0 +1976,12,7,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,5.0,83,102200,448,1410,326,141,0,141,15600,0,15600,4800,160,2.1,10,10,11.3,370,9,999999999,179,0.0790,0,88,999.000,999.0,99.0 +1976,12,7,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,5.0,77,102200,511,1410,332,160,1,160,17800,100,17800,5630,160,2.6,10,10,11.3,490,9,999999999,170,0.0790,0,88,999.000,999.0,99.0 +1976,12,7,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,7.2,89,102000,513,1410,334,165,1,165,18400,100,18300,5750,180,1.5,10,10,8.0,340,9,999999999,170,0.0790,0,88,999.000,999.0,99.0 +1976,12,7,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,6.1,83,102100,454,1410,333,146,1,145,16100,100,16100,4930,180,3.6,10,10,11.3,1070,9,999999999,160,0.0790,0,88,999.000,999.0,99.0 +1976,12,7,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,7.2,89,102000,338,1410,334,61,1,60,6900,0,6900,2320,180,4.1,10,10,8.0,1070,9,999999999,160,0.0790,0,88,999.000,999.0,99.0 +1976,12,7,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,7.2,89,102000,174,1410,334,46,0,46,5100,0,5100,1480,180,1.5,10,10,8.0,340,9,999999999,150,0.0790,0,88,999.000,999.0,99.0 +1976,12,7,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,7.8,96,101900,16,576,332,5,0,5,0,0,0,0,100,2.6,10,10,6.4,340,9,999999999,150,0.0790,0,88,999.000,999.0,99.0 +1976,12,7,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,7.2,93,101900,0,0,331,0,0,0,0,0,0,0,90,1.5,10,10,11.3,1400,9,999999999,150,0.0710,0,88,999.000,999.0,99.0 +1976,12,7,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,7.8,96,101800,0,0,332,0,0,0,0,0,0,0,170,2.1,10,10,11.3,340,9,999999999,150,0.0710,0,88,999.000,999.0,99.0 +1976,12,7,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,7.8,93,101700,0,0,335,0,0,0,0,0,0,0,170,2.6,10,10,11.3,340,9,999999999,150,0.0710,0,88,999.000,999.0,99.0 +1976,12,7,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,7.2,89,101700,0,0,334,0,0,0,0,0,0,0,80,1.5,10,10,11.3,460,9,999999999,150,0.0710,0,88,999.000,999.0,99.0 +1976,12,7,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,7.2,96,101700,0,0,329,0,0,0,0,0,0,0,60,2.6,10,10,16.1,1400,9,999999999,150,0.0710,0,88,999.000,999.0,99.0 +1976,12,7,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,7.8,96,101600,0,0,332,0,0,0,0,0,0,0,100,2.6,10,10,16.1,760,9,999999999,150,0.0710,0,88,999.000,999.0,99.0 +1976,12,7,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,7.2,89,101600,0,0,325,0,0,0,0,0,0,0,110,2.6,9,9,16.1,1370,9,999999999,150,0.0710,0,88,999.000,999.0,99.0 +1976,12,8,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,7.2,86,101500,0,0,336,0,0,0,0,0,0,0,190,4.1,10,10,24.1,1160,9,999999999,150,0.0710,0,88,999.000,999.0,99.0 +1976,12,8,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,7.2,86,101400,0,0,336,0,0,0,0,0,0,0,170,4.1,10,10,24.1,1100,9,999999999,150,0.0710,0,88,999.000,999.0,99.0 +1976,12,8,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,7.2,86,101400,0,0,336,0,0,0,0,0,0,0,150,3.1,10,10,24.1,1520,9,999999999,150,0.0710,0,88,999.000,999.0,99.0 +1976,12,8,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,6.7,83,101300,0,0,336,0,0,0,0,0,0,0,200,5.2,10,10,24.1,1520,9,999999999,150,0.0710,0,88,999.000,999.0,99.0 +1976,12,8,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,7.2,83,101200,0,0,339,0,0,0,0,0,0,0,180,6.2,10,10,24.1,1340,9,999999999,150,0.0710,0,88,999.000,999.0,99.0 +1976,12,8,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,7.2,80,101100,0,0,342,0,0,0,0,0,0,0,180,7.2,10,10,24.1,1520,9,999999999,150,0.0710,0,88,999.000,999.0,99.0 +1976,12,8,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,6.7,74,101000,0,0,344,0,0,0,0,0,0,0,180,6.7,10,10,24.1,1010,9,999999999,150,0.0710,0,88,999.000,999.0,99.0 +1976,12,8,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,6.7,74,100800,10,458,344,3,0,3,0,0,0,0,180,6.7,10,10,24.1,940,9,999999999,150,0.0700,0,88,999.000,999.0,99.0 +1976,12,8,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,6.1,72,100700,157,1410,343,44,0,44,4800,0,4800,1380,170,8.2,10,10,48.3,730,9,999999999,150,0.0700,0,88,999.000,999.0,99.0 +1976,12,8,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,7.8,83,100700,325,1410,343,57,0,57,6600,0,6600,2190,190,9.3,10,10,8.0,760,9,999999999,150,0.0700,0,88,999.000,999.0,99.0 +1976,12,8,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,7.2,83,100900,445,1410,339,88,0,88,10100,0,10100,3470,250,6.7,10,10,16.1,1220,9,999999999,139,0.0700,0,88,999.000,999.0,99.0 +1976,12,8,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,7.8,93,100900,508,1410,335,95,1,95,11100,100,11000,3900,230,5.7,10,10,24.1,1070,9,999999999,139,0.0700,0,88,999.000,999.0,99.0 +1976,12,8,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,5.6,100,100900,511,1410,317,107,1,106,12200,100,12200,4250,240,4.1,10,10,24.1,1220,9,999999999,139,0.0700,0,88,999.000,999.0,99.0 +1976,12,8,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,6.1,89,101000,453,1410,328,87,0,87,10000,0,10000,3470,230,3.6,10,10,16.1,1070,9,999999999,139,0.0700,0,88,999.000,999.0,99.0 +1976,12,8,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,6.1,86,101000,337,1410,330,111,1,111,12200,100,12200,3500,230,3.6,10,10,24.1,1220,9,999999999,139,0.0700,0,88,999.000,999.0,99.0 +1976,12,8,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,6.7,89,101100,173,1410,322,29,17,27,3200,1200,3100,700,220,4.1,9,9,16.1,910,9,999999999,139,0.0700,0,88,999.000,999.0,99.0 +1976,12,8,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,5.6,89,101200,16,576,309,8,7,7,0,0,0,0,230,3.6,8,8,24.1,3050,9,999999999,139,0.0700,0,88,999.000,999.0,99.0 +1976,12,8,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,5.0,89,101300,0,0,313,0,0,0,0,0,0,0,290,2.6,9,9,24.1,1040,9,999999999,139,0.0710,0,88,999.000,999.0,99.0 +1976,12,8,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,5.0,89,101400,0,0,298,0,0,0,0,0,0,0,200,2.1,6,6,24.1,1680,9,999999999,139,0.0710,0,88,999.000,999.0,99.0 +1976,12,8,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,3.3,86,101500,0,0,291,0,0,0,0,0,0,0,200,2.6,6,6,24.1,1370,9,999999999,129,0.0710,0,88,999.000,999.0,99.0 +1976,12,8,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,3.9,86,101500,0,0,289,0,0,0,0,0,0,0,210,4.6,4,4,24.1,77777,9,999999999,129,0.0710,0,88,999.000,999.0,99.0 +1976,12,8,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,3.3,80,101600,0,0,289,0,0,0,0,0,0,0,250,6.2,3,3,24.1,77777,9,999999999,129,0.0710,0,88,999.000,999.0,99.0 +1976,12,8,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,3.3,80,101700,0,0,293,0,0,0,0,0,0,0,310,4.6,5,5,24.1,77777,9,999999999,129,0.0710,0,88,999.000,999.0,99.0 +1976,12,8,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,1.7,89,101800,0,0,278,0,0,0,0,0,0,0,160,3.1,5,5,24.1,77777,9,999999999,129,0.0710,0,88,999.000,999.0,99.0 +1976,12,9,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,3.3,89,101900,0,0,312,0,0,0,0,0,0,0,210,3.1,10,10,24.1,910,9,999999999,129,0.0710,0,88,999.000,999.0,99.0 +1976,12,9,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,3.3,86,101900,0,0,306,0,0,0,0,0,0,0,220,2.1,9,9,24.1,880,9,999999999,120,0.0710,0,88,999.000,999.0,99.0 +1976,12,9,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,3.3,89,102100,0,0,312,0,0,0,0,0,0,0,0,0.0,10,10,24.1,850,9,999999999,120,0.0710,0,88,999.000,999.0,99.0 +1976,12,9,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,3.3,89,102100,0,0,292,0,0,0,0,0,0,0,190,5.2,7,7,24.1,880,9,999999999,120,0.0710,0,88,999.000,999.0,99.0 +1976,12,9,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,2.8,83,102200,0,0,314,0,0,0,0,0,0,0,300,2.6,10,10,24.1,850,9,999999999,120,0.0710,0,88,999.000,999.0,99.0 +1976,12,9,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,2.8,89,102300,0,0,281,0,0,0,0,0,0,0,180,3.1,4,4,24.1,77777,9,999999999,120,0.0710,0,88,999.000,999.0,99.0 +1976,12,9,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,3.3,89,102400,0,0,312,0,0,0,0,0,0,0,180,4.6,10,10,24.1,1520,9,999999999,129,0.0710,0,88,999.000,999.0,99.0 +1976,12,9,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,3.3,86,102500,9,435,315,0,1,0,0,0,0,0,200,3.1,10,10,32.2,1280,9,999999999,129,0.0760,0,88,999.000,999.0,99.0 +1976,12,9,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,3.3,86,102500,154,1411,299,56,23,54,6200,1600,6000,1180,170,2.6,10,8,32.2,1830,9,999999999,129,0.0760,0,88,999.000,999.0,99.0 +1976,12,9,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,3.9,86,102600,322,1411,297,140,192,96,14700,15400,11100,1910,190,5.2,10,7,32.2,1830,9,999999999,129,0.0760,0,88,999.000,999.0,99.0 +1976,12,9,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,4.4,83,102700,442,1411,314,123,35,112,13500,3200,12500,3040,220,5.2,10,9,24.1,1830,9,999999999,129,0.0760,0,88,999.000,999.0,99.0 +1976,12,9,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,5.0,80,102800,506,1411,320,148,36,135,16200,3400,15000,3740,220,3.6,10,9,24.1,1370,9,999999999,129,0.0760,0,88,999.000,999.0,99.0 +1976,12,9,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,5.0,77,102800,509,1411,316,204,212,127,21800,20400,14400,2560,230,2.6,10,8,24.1,1220,9,999999999,139,0.0760,0,88,999.000,999.0,99.0 +1976,12,9,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,4.4,71,102800,451,1411,324,155,73,131,16900,6800,14800,3460,200,3.6,9,9,24.1,1070,9,999999999,139,0.0760,0,88,999.000,999.0,99.0 +1976,12,9,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,4.4,69,102800,336,1411,327,88,34,80,9700,2900,9000,2090,240,4.1,9,9,24.1,1070,9,999999999,139,0.0760,0,88,999.000,999.0,99.0 +1976,12,9,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,3.9,71,102900,173,1411,330,31,9,30,3400,600,3300,770,230,3.1,10,10,24.1,1520,9,999999999,139,0.0760,0,88,999.000,999.0,99.0 +1976,12,9,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,5.0,80,103000,16,576,320,6,2,6,0,0,0,0,250,1.5,9,9,24.1,1160,9,999999999,139,0.0760,0,88,999.000,999.0,99.0 +1976,12,9,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,5.0,80,103000,0,0,320,0,0,0,0,0,0,0,10,1.5,9,9,24.1,1830,9,999999999,139,0.0710,0,88,999.000,999.0,99.0 +1976,12,9,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,5.0,83,103100,0,0,326,0,0,0,0,0,0,0,170,2.1,10,10,24.1,1040,9,999999999,129,0.0710,0,88,999.000,999.0,99.0 +1976,12,9,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,5.0,83,103100,0,0,326,0,0,0,0,0,0,0,0,0.0,10,10,12.9,980,9,999999999,129,0.0710,0,88,999.000,999.0,99.0 +1976,12,9,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,4.4,86,103100,0,0,321,0,0,0,0,0,0,0,180,2.6,10,10,16.1,980,9,999999999,129,0.0710,0,88,999.000,999.0,99.0 +1976,12,9,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,5.0,86,103200,0,0,324,0,0,0,0,0,0,0,100,2.6,10,10,16.1,850,9,999999999,129,0.0710,0,88,999.000,999.0,99.0 +1976,12,9,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,5.0,89,103200,0,0,306,0,0,0,0,0,0,0,100,2.6,10,8,16.1,850,9,999999999,120,0.0710,0,88,999.000,999.0,99.0 +1976,12,9,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,4.4,89,103200,0,0,303,0,0,0,0,0,0,0,100,3.1,8,8,16.1,850,9,999999999,120,0.0710,0,88,999.000,999.0,99.0 +1976,12,10,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,4.4,93,103200,0,0,316,0,0,0,0,0,0,0,110,3.1,10,10,24.1,1340,9,999999999,120,0.0700,0,88,999.000,999.0,99.0 +1976,12,10,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,3.9,89,103200,0,0,306,0,0,0,0,0,0,0,130,3.6,10,9,24.1,1280,9,999999999,110,0.0700,0,88,999.000,999.0,99.0 +1976,12,10,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,3.3,89,103300,0,0,292,0,0,0,0,0,0,0,120,2.6,8,7,24.1,1280,9,999999999,110,0.0700,0,88,999.000,999.0,99.0 +1976,12,10,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,3.3,93,103300,0,0,290,0,0,0,0,0,0,0,120,2.1,7,7,24.1,1280,9,999999999,110,0.0700,0,88,999.000,999.0,99.0 +1976,12,10,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,1.7,92,103200,0,0,260,0,0,0,0,0,0,0,140,2.1,0,0,24.1,77777,9,999999999,110,0.0700,0,88,999.000,999.0,99.0 +1976,12,10,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,1.7,92,103200,0,0,260,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,110,0.0700,0,88,999.000,999.0,99.0 +1976,12,10,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.1,0.6,96,103200,0,0,261,0,0,0,0,0,0,0,110,1.5,8,2,24.1,77777,9,999999999,100,0.0700,0,88,999.000,999.0,99.0 +1976,12,10,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.6,0.6,100,103200,8,412,262,7,16,6,0,0,0,0,0,0.0,10,3,48.3,77777,9,999999999,100,0.0470,0,88,999.000,999.0,99.0 +1976,12,10,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.1,1.1,100,103200,151,1411,278,52,22,50,5700,1500,5600,1110,0,0.0,10,8,0.2,7620,9,999999999,100,0.0470,0,88,999.000,999.0,99.0 +1976,12,10,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,2.8,100,103200,319,1411,302,87,8,85,9700,400,9600,2900,0,0.0,10,10,0.2,7620,9,999999999,100,0.0470,0,88,999.000,999.0,99.0 +1976,12,10,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,3.3,100,103200,440,1411,304,126,2,126,14100,100,14100,4440,320,1.5,10,10,0.8,60,9,999999999,100,0.0470,0,88,999.000,999.0,99.0 +1976,12,10,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,3.3,96,103200,504,1411,288,166,53,147,18200,5000,16400,3990,180,1.5,10,7,1.3,90,9,999999999,100,0.0470,0,88,999.000,999.0,99.0 +1976,12,10,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,3.3,83,103100,508,1411,280,328,594,113,33400,54200,13800,2060,0,0.0,10,1,6.4,77777,9,999999999,89,0.0470,0,88,999.000,999.0,99.0 +1976,12,10,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,2.2,71,103000,450,1411,283,264,578,78,27300,51900,10600,1470,0,0.0,10,1,8.0,77777,9,999999999,89,0.0470,0,88,999.000,999.0,99.0 +1976,12,10,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,3.3,74,103000,335,1411,287,175,465,63,17800,37900,8800,1140,0,0.0,10,1,9.7,77777,9,999999999,89,0.0470,0,88,999.000,999.0,99.0 +1976,12,10,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,4.4,83,102900,172,1411,280,83,385,35,8400,23600,5500,610,300,3.1,6,0,9.7,77777,9,999999999,89,0.0470,0,88,999.000,999.0,99.0 +1976,12,10,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,3.9,100,102900,16,576,308,4,1,4,0,0,0,0,290,4.6,10,10,0.2,60,9,999999999,89,0.0470,0,88,999.000,999.0,99.0 +1976,12,10,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,3.3,96,102900,0,0,307,0,0,0,0,0,0,0,300,3.1,10,10,0.2,30,9,999999999,89,0.0700,0,88,999.000,999.0,99.0 +1976,12,10,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,3.3,100,102800,0,0,304,0,0,0,0,0,0,0,250,2.1,10,10,0.2,30,9,999999999,89,0.0700,0,88,999.000,999.0,99.0 +1976,12,10,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,2.8,100,102800,0,0,302,0,0,0,0,0,0,0,0,0.0,10,10,0.2,30,9,999999999,89,0.0700,0,88,999.000,999.0,99.0 +1976,12,10,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,2.8,100,102800,0,0,302,0,0,0,0,0,0,0,0,0.0,10,10,0.2,30,9,999999999,89,0.0700,0,88,999.000,999.0,99.0 +1976,12,10,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,2.8,100,102700,0,0,302,0,0,0,0,0,0,0,80,1.5,10,10,0.1,0,9,999999999,89,0.0700,0,88,999.000,999.0,99.0 +1976,12,10,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,2.8,100,102700,0,0,302,0,0,0,0,0,0,0,60,1.5,10,10,0.1,0,9,999999999,89,0.0700,0,88,999.000,999.0,99.0 +1976,12,10,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,2.2,100,102700,0,0,298,0,0,0,0,0,0,0,10,1.5,10,10,0.2,30,9,999999999,89,0.0700,0,88,999.000,999.0,99.0 +1976,12,11,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,2.2,100,102600,0,0,298,0,0,0,0,0,0,0,0,0.0,10,10,0.2,30,9,999999999,89,0.0700,0,88,999.000,999.0,99.0 +1976,12,11,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,2.2,100,102600,0,0,298,0,0,0,0,0,0,0,100,2.1,10,10,0.4,30,9,999999999,89,0.0700,0,88,999.000,999.0,99.0 +1976,12,11,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,2.2,100,102600,0,0,298,0,0,0,0,0,0,0,120,2.1,10,10,0.4,30,9,999999999,89,0.0700,0,88,999.000,999.0,99.0 +1976,12,11,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,1.7,100,102500,0,0,296,0,0,0,0,0,0,0,110,1.5,10,10,0.2,30,9,999999999,89,0.0700,0,88,999.000,999.0,99.0 +1976,12,11,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,1.7,100,102400,0,0,296,0,0,0,0,0,0,0,0,0.0,10,10,0.2,30,9,999999999,89,0.0700,0,88,999.000,999.0,99.0 +1976,12,11,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,1.7,100,102400,0,0,296,0,0,0,0,0,0,0,360,2.6,10,10,0.4,30,9,999999999,89,0.0700,0,88,999.000,999.0,99.0 +1976,12,11,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,1.7,100,102400,0,0,296,0,0,0,0,0,0,0,0,0.0,10,10,1.3,30,9,999999999,89,0.0700,0,88,999.000,999.0,99.0 +1976,12,11,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,1.7,100,102400,7,388,296,1,2,1,0,0,0,0,0,0.0,10,10,0.4,30,9,999999999,89,0.0290,0,88,999.000,999.0,99.0 +1976,12,11,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,1.7,100,102400,148,1411,296,36,2,36,4000,0,4000,1180,320,2.1,10,10,0.4,30,9,999999999,89,0.0290,0,88,999.000,999.0,99.0 +1976,12,11,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.1,1.1,100,102500,316,1411,292,78,2,77,8700,100,8700,2710,360,2.6,10,10,1.6,60,9,999999999,89,0.0290,0,88,999.000,999.0,99.0 +1976,12,11,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,1.7,100,102400,437,1411,296,133,7,131,14800,500,14600,4530,360,2.6,10,10,2.4,60,9,999999999,80,0.0290,0,88,999.000,999.0,99.0 +1976,12,11,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,1.7,100,102400,502,1411,296,157,4,156,17500,300,17400,5480,0,0.0,10,10,2.4,60,9,999999999,80,0.0290,0,88,999.000,999.0,99.0 +1976,12,11,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,1.7,96,102300,506,1411,298,174,1,174,19200,100,19200,5860,50,1.5,10,10,2.4,90,9,999999999,80,0.0290,0,88,999.000,999.0,99.0 +1976,12,11,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,1.7,96,102200,449,1411,298,143,1,142,15800,100,15700,4830,290,2.1,10,10,2.4,90,9,999999999,80,0.0290,0,88,999.000,999.0,99.0 +1976,12,11,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,1.7,96,102200,335,1411,298,126,2,125,13600,100,13600,3680,100,2.1,10,10,2.4,90,9,999999999,80,0.0290,0,88,999.000,999.0,99.0 +1976,12,11,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,1.7,100,102200,172,1411,296,56,0,56,6100,0,6100,1650,90,2.1,10,10,1.3,60,9,999999999,80,0.0290,0,88,999.000,999.0,99.0 +1976,12,11,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,1.7,100,102200,16,576,296,10,0,10,0,0,0,0,60,1.5,10,10,0.4,60,9,999999999,80,0.0290,0,88,999.000,999.0,99.0 +1976,12,11,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,1.7,96,102200,0,0,298,0,0,0,0,0,0,0,90,1.5,10,10,0.4,30,9,999999999,80,0.0700,0,88,999.000,999.0,99.0 +1976,12,11,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,1.7,96,102200,0,0,298,0,0,0,0,0,0,0,40,3.1,10,10,0.2,30,9,999999999,80,0.0700,0,88,999.000,999.0,99.0 +1976,12,11,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,1.7,96,102200,0,0,298,0,0,0,0,0,0,0,30,3.1,10,10,0.2,30,9,999999999,69,0.0700,0,88,999.000,999.0,99.0 +1976,12,11,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,1.7,96,102100,0,0,298,0,0,0,0,0,0,0,0,0.0,10,10,0.2,30,9,999999999,69,0.0700,0,88,999.000,999.0,99.0 +1976,12,11,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,1.7,96,102200,0,0,298,0,0,0,0,0,0,0,10,2.6,10,10,0.2,30,9,999999999,69,0.0700,0,88,999.000,999.0,99.0 +1976,12,11,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,1.7,96,102100,0,0,298,0,0,0,0,0,0,0,0,0.0,10,10,0.8,60,9,999999999,69,0.0700,0,88,999.000,999.0,99.0 +1976,12,11,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,1.1,96,102100,0,0,295,0,0,0,0,0,0,0,0,0.0,10,10,1.6,60,9,999999999,69,0.0700,0,88,999.000,999.0,99.0 +1976,12,12,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,1.7,100,102000,0,0,296,0,0,0,0,0,0,0,110,1.5,10,10,1.6,120,9,999999999,60,0.0700,0,88,999.000,999.0,99.0 +1976,12,12,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,1.7,100,101900,0,0,296,0,0,0,0,0,0,0,30,2.1,10,10,1.3,90,9,999999999,60,0.0700,0,88,999.000,999.0,99.0 +1976,12,12,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,1.1,96,101900,0,0,295,0,0,0,0,0,0,0,0,0.0,10,10,1.3,60,9,999999999,60,0.0700,0,88,999.000,999.0,99.0 +1976,12,12,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,1.1,96,101900,0,0,295,0,0,0,0,0,0,0,140,2.1,10,10,3.2,180,9,999999999,60,0.0700,0,88,999.000,999.0,99.0 +1976,12,12,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.1,0.6,96,101900,0,0,292,0,0,0,0,0,0,0,190,3.6,10,10,3.2,90,9,999999999,60,0.0700,0,88,999.000,999.0,99.0 +1976,12,12,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.6,0.6,100,102000,0,0,290,0,0,0,0,0,0,0,220,2.6,10,10,2.4,60,9,999999999,60,0.0700,0,88,999.000,999.0,99.0 +1976,12,12,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.1,1.1,100,101900,0,0,292,0,0,0,0,0,0,0,190,2.1,10,10,2.4,60,9,999999999,60,0.0700,0,88,999.000,999.0,99.0 +1976,12,12,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.6,0.6,100,101900,7,388,290,5,0,5,0,0,0,0,170,2.6,10,10,1.6,60,9,999999999,60,0.0330,0,88,999.000,999.0,99.0 +1976,12,12,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.6,0.0,96,102000,145,1412,289,42,1,42,4600,0,4600,1290,150,2.6,10,10,4.8,90,9,999999999,60,0.0330,0,88,999.000,999.0,99.0 +1976,12,12,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.1,0.0,92,102000,313,1412,291,106,1,106,11600,100,11600,3260,0,0.0,10,10,4.8,150,9,999999999,60,0.0330,0,88,999.000,999.0,99.0 +1976,12,12,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,0.6,92,102000,435,1412,294,149,0,149,16400,0,16400,4850,0,0.0,10,10,8.0,150,9,999999999,69,0.0330,0,88,999.000,999.0,99.0 +1976,12,12,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,0.6,89,102000,500,1412,275,266,396,125,27700,36800,14600,2410,60,2.6,10,6,8.0,150,9,999999999,69,0.0330,0,88,999.000,999.0,99.0 +1976,12,12,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,1.1,89,102000,505,1412,281,280,300,173,29300,28700,19000,3730,240,2.1,10,7,8.0,6100,9,999999999,69,0.0330,0,88,999.000,999.0,99.0 +1976,12,12,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,1.7,86,101900,448,1412,280,205,193,143,22100,17900,16400,3220,160,3.6,10,5,8.0,77777,9,999999999,69,0.0330,0,88,999.000,999.0,99.0 +1976,12,12,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,1.1,82,101900,334,1412,280,133,180,90,14000,14700,10500,1750,250,2.1,10,5,9.7,77777,9,999999999,69,0.0330,0,88,999.000,999.0,99.0 +1976,12,12,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,1.1,89,101900,172,1412,275,72,79,62,7600,4800,7100,1300,210,3.1,10,5,6.4,77777,9,999999999,69,0.0330,0,88,999.000,999.0,99.0 +1976,12,12,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,0.6,89,102000,16,576,270,9,5,8,0,0,0,0,170,3.6,10,4,4.8,77777,9,999999999,80,0.0330,0,88,999.000,999.0,99.0 +1976,12,12,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.1,0.0,92,102000,0,0,265,0,0,0,0,0,0,0,160,3.1,10,4,4.0,77777,9,999999999,80,0.0700,0,88,999.000,999.0,99.0 +1976,12,12,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.1,0.6,96,102100,0,0,270,0,0,0,0,0,0,0,90,3.6,10,6,1.3,60,9,999999999,89,0.0700,0,88,999.000,999.0,99.0 +1976,12,12,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.6,0.0,96,102100,0,0,289,0,0,0,0,0,0,0,100,3.6,10,10,2.4,60,9,999999999,100,0.0700,0,88,999.000,999.0,99.0 +1976,12,12,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.6,0.0,96,102100,0,0,289,0,0,0,0,0,0,0,0,0.0,10,10,1.3,60,9,999999999,100,0.0700,0,88,999.000,999.0,99.0 +1976,12,12,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.0,0.0,100,102100,0,0,287,0,0,0,0,0,0,0,150,2.6,10,10,0.8,30,9,999999999,110,0.0700,0,88,999.000,999.0,99.0 +1976,12,12,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.6,0.0,96,102200,0,0,289,0,0,0,0,0,0,0,0,0.0,10,10,1.3,30,9,999999999,120,0.0700,0,88,999.000,999.0,99.0 +1976,12,12,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.1,0.0,92,102200,0,0,291,0,0,0,0,0,0,0,80,2.1,10,10,6.4,120,9,999999999,120,0.0700,0,88,999.000,999.0,99.0 +1976,12,13,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,0.6,92,102200,0,0,294,0,0,0,0,0,0,0,110,1.5,10,10,6.4,1220,9,999999999,129,0.0700,0,88,999.000,999.0,99.0 +1976,12,13,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,1.1,96,102200,0,0,295,0,0,0,0,0,0,0,120,1.5,10,10,6.4,1220,9,999999999,139,0.0700,0,88,999.000,999.0,99.0 +1976,12,13,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,1.1,96,102200,0,0,295,0,0,0,0,0,0,0,110,2.1,10,10,8.0,1220,9,999999999,139,0.0700,0,88,999.000,999.0,99.0 +1976,12,13,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,0.6,89,102100,0,0,297,0,0,0,0,0,0,0,100,2.6,10,10,12.9,1220,9,999999999,150,0.0700,0,88,999.000,999.0,99.0 +1976,12,13,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,1.1,92,102100,0,0,297,0,0,0,0,0,0,0,140,2.6,10,10,11.3,1220,9,999999999,150,0.0700,0,88,999.000,999.0,99.0 +1976,12,13,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,1.1,92,102200,0,0,297,0,0,0,0,0,0,0,0,0.0,10,10,12.9,1220,9,999999999,139,0.0700,0,88,999.000,999.0,99.0 +1976,12,13,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,1.1,89,102200,0,0,300,0,0,0,0,0,0,0,0,0.0,10,10,12.9,1370,9,999999999,139,0.0700,0,88,999.000,999.0,99.0 +1976,12,13,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,1.1,89,102100,6,365,300,0,0,0,0,0,0,0,120,2.6,10,10,11.3,1370,9,999999999,139,0.1300,0,88,999.000,999.0,99.0 +1976,12,13,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,1.1,89,102100,142,1412,291,33,7,32,3700,0,3700,1070,100,2.1,10,9,8.0,1370,9,999999999,129,0.1300,0,88,999.000,999.0,99.0 +1976,12,13,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,1.7,86,102200,311,1412,305,75,41,65,8100,3400,7400,1720,330,2.1,10,10,8.0,1370,9,999999999,129,0.1300,0,88,999.000,999.0,99.0 +1976,12,13,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,1.7,79,102200,433,1412,302,144,83,119,15800,7600,13500,3160,0,0.0,10,9,8.0,1370,9,999999999,129,0.1300,0,88,999.000,999.0,99.0 +1976,12,13,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,2.2,74,102200,499,1412,288,300,469,133,31000,43500,15500,2580,120,2.6,7,3,8.0,77777,9,999999999,120,0.1300,0,88,999.000,999.0,99.0 +1976,12,13,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,2.8,71,102100,504,1412,286,297,601,82,31000,55700,11000,1590,90,2.1,1,1,8.0,77777,9,999999999,120,0.1300,0,88,999.000,999.0,99.0 +1976,12,13,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,3.3,68,102100,447,1412,286,265,596,74,27400,53600,10300,1400,320,2.1,0,0,8.0,77777,9,999999999,120,0.1300,0,88,999.000,999.0,99.0 +1976,12,13,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,3.3,71,102100,334,1412,283,175,480,61,18000,39100,8700,1110,320,2.6,0,0,4.8,77777,9,999999999,110,0.1300,0,88,999.000,999.0,99.0 +1976,12,13,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,3.3,77,102100,172,1412,279,71,226,43,7300,13100,5700,780,270,1.5,3,0,4.0,77777,9,999999999,110,0.1300,0,88,999.000,999.0,99.0 +1976,12,13,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,2.8,79,102100,16,600,274,9,13,8,0,0,0,0,0,0.0,1,0,4.8,77777,9,999999999,110,0.1300,0,88,999.000,999.0,99.0 +1976,12,13,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,3.9,93,102200,0,0,271,0,0,0,0,0,0,0,70,2.1,0,0,6.4,77777,9,999999999,110,0.0700,0,88,999.000,999.0,99.0 +1976,12,13,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,2.8,93,102200,0,0,265,0,0,0,0,0,0,0,90,3.6,2,0,11.3,77777,9,999999999,110,0.0700,0,88,999.000,999.0,99.0 +1976,12,13,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,2.8,89,102200,0,0,267,0,0,0,0,0,0,0,100,3.1,1,0,11.3,77777,9,999999999,120,0.0700,0,88,999.000,999.0,99.0 +1976,12,13,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,2.8,93,102200,0,0,265,0,0,0,0,0,0,0,90,1.5,9,0,11.3,77777,9,999999999,120,0.0700,0,88,999.000,999.0,99.0 +1976,12,13,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,2.8,96,102200,0,0,263,0,0,0,0,0,0,0,120,3.1,8,0,9.7,77777,9,999999999,120,0.0700,0,88,999.000,999.0,99.0 +1976,12,13,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,2.8,96,102200,0,0,279,0,0,0,0,0,0,0,120,1.5,9,5,9.7,7320,9,999999999,120,0.0700,0,88,999.000,999.0,99.0 +1976,12,13,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,1.7,100,102200,0,0,256,0,0,0,0,0,0,0,110,3.1,2,0,6.4,77777,9,999999999,120,0.0700,0,88,999.000,999.0,99.0 +1976,12,14,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.1,1.1,100,102200,0,0,264,0,0,0,0,0,0,0,120,2.6,4,3,1.6,77777,9,999999999,129,0.0700,0,88,999.000,999.0,99.0 +1976,12,14,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,1.7,96,102300,0,0,283,0,0,0,0,0,0,0,320,1.5,10,8,1.6,7620,9,999999999,129,0.0700,0,88,999.000,999.0,99.0 +1976,12,14,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.1,1.1,100,102300,0,0,292,0,0,0,0,0,0,0,230,2.1,10,10,0.1,60,9,999999999,129,0.0700,0,88,999.000,999.0,99.0 +1976,12,14,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,1.7,100,102300,0,0,296,0,0,0,0,0,0,0,290,1.5,10,10,0.4,30,9,999999999,129,0.0700,0,88,999.000,999.0,99.0 +1976,12,14,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,2.2,100,102300,0,0,298,0,0,0,0,0,0,0,150,2.1,10,10,0.8,30,9,999999999,129,0.0700,0,88,999.000,999.0,99.0 +1976,12,14,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,1.7,96,102300,0,0,298,0,0,0,0,0,0,0,150,1.5,10,10,3.2,90,9,999999999,139,0.0700,0,88,999.000,999.0,99.0 +1976,12,14,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,1.7,100,102300,0,0,296,0,0,0,0,0,0,0,0,0.0,10,10,6.4,6100,9,999999999,139,0.0700,0,88,999.000,999.0,99.0 +1976,12,14,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,1.7,96,102400,5,341,298,2,1,2,0,0,0,0,0,0.0,10,10,4.0,6100,9,999999999,150,0.0520,0,88,999.000,999.0,99.0 +1976,12,14,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,2.2,96,102300,140,1412,293,33,6,33,3700,0,3700,1090,110,3.1,10,9,4.0,3660,9,999999999,150,0.0520,0,88,999.000,999.0,99.0 +1976,12,14,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,2.8,93,102400,308,1412,306,71,54,59,7900,4400,6900,1280,0,0.0,10,10,4.0,1830,9,999999999,150,0.0520,0,88,999.000,999.0,99.0 +1976,12,14,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,2.8,89,102400,431,1412,309,146,9,143,16000,600,15900,4710,110,3.6,10,10,6.4,1830,9,999999999,160,0.0520,0,88,999.000,999.0,99.0 +1976,12,14,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,3.3,86,102400,497,1412,315,155,8,152,17200,600,17000,5360,140,3.6,10,10,9.7,1520,9,999999999,160,0.0520,0,88,999.000,999.0,99.0 +1976,12,14,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,3.9,83,102300,503,1412,320,137,2,136,15400,100,15300,5030,70,2.6,10,10,9.7,1520,9,999999999,170,0.0520,0,88,999.000,999.0,99.0 +1976,12,14,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,3.3,77,102400,447,1412,322,86,3,85,9900,200,9900,3390,110,2.6,10,10,9.7,1220,9,999999999,170,0.0520,0,88,999.000,999.0,99.0 +1976,12,14,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,4.4,83,102400,334,1412,323,55,1,55,6400,0,6400,2150,80,2.6,10,10,11.3,1220,9,999999999,179,0.0520,0,88,999.000,999.0,99.0 +1976,12,14,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,4.4,86,102400,173,1412,321,42,3,42,4700,0,4700,1390,140,2.6,10,10,19.3,1160,9,999999999,179,0.0520,0,88,999.000,999.0,99.0 +1976,12,14,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,4.4,86,102400,17,600,321,6,0,6,0,0,0,0,190,1.5,10,10,16.1,1160,9,999999999,179,0.0520,0,88,999.000,999.0,99.0 +1976,12,14,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,5.0,89,102400,0,0,321,0,0,0,0,0,0,0,0,0.0,10,10,16.1,1160,9,999999999,189,0.0700,0,88,999.000,999.0,99.0 +1976,12,14,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,4.4,86,102400,0,0,321,0,0,0,0,0,0,0,120,1.5,10,10,16.1,980,9,999999999,189,0.0700,0,88,999.000,999.0,99.0 +1976,12,14,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,5.0,89,102500,0,0,321,0,0,0,0,0,0,0,110,2.6,10,10,16.1,850,9,999999999,189,0.0700,0,88,999.000,999.0,99.0 +1976,12,14,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,5.0,89,102500,0,0,321,0,0,0,0,0,0,0,100,4.1,10,10,11.3,850,9,999999999,200,0.0700,0,88,999.000,999.0,99.0 +1976,12,14,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,5.0,89,102500,0,0,321,0,0,0,0,0,0,0,170,2.6,10,10,16.1,850,9,999999999,200,0.0700,0,88,999.000,999.0,99.0 +1976,12,14,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,5.0,89,102500,0,0,321,0,0,0,0,0,0,0,100,1.5,10,10,16.1,850,9,999999999,200,0.0700,0,88,999.000,999.0,99.0 +1976,12,14,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,5.0,89,102500,0,0,321,0,0,0,0,0,0,0,0,0.0,10,10,16.1,850,9,999999999,209,0.0700,0,88,999.000,999.0,99.0 +1976,12,15,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,5.6,89,102500,0,0,324,0,0,0,0,0,0,0,150,2.1,10,10,16.1,1070,9,999999999,209,0.0700,0,88,999.000,999.0,99.0 +1976,12,15,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,5.6,89,102500,0,0,324,0,0,0,0,0,0,0,0,0.0,10,10,16.1,910,9,999999999,209,0.0700,0,88,999.000,999.0,99.0 +1976,12,15,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,5.6,89,102500,0,0,324,0,0,0,0,0,0,0,0,0.0,10,10,24.1,910,9,999999999,220,0.0700,0,88,999.000,999.0,99.0 +1976,12,15,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,5.6,86,102500,0,0,327,0,0,0,0,0,0,0,160,2.6,10,10,24.1,760,9,999999999,220,0.0700,0,88,999.000,999.0,99.0 +1976,12,15,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,5.0,83,102500,0,0,326,0,0,0,0,0,0,0,100,4.1,10,10,24.1,850,9,999999999,220,0.0700,0,88,999.000,999.0,99.0 +1976,12,15,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,5.6,86,102500,0,0,327,0,0,0,0,0,0,0,120,3.1,10,10,24.1,700,9,999999999,209,0.0700,0,88,999.000,999.0,99.0 +1976,12,15,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,4.4,80,102500,0,0,326,0,0,0,0,0,0,0,120,5.7,10,10,24.1,760,9,999999999,209,0.0700,0,88,999.000,999.0,99.0 +1976,12,15,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,4.4,80,102500,5,318,326,4,0,4,0,0,0,0,120,4.1,10,10,32.2,700,9,999999999,209,0.0290,0,88,999.000,999.0,99.0 +1976,12,15,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,3.9,77,102500,137,1412,325,42,0,42,4600,0,4600,1260,110,4.6,10,10,24.1,1220,9,999999999,200,0.0290,0,88,999.000,999.0,99.0 +1976,12,15,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,4.4,77,102500,306,1412,328,103,0,103,11200,0,11200,3160,90,3.6,10,10,24.1,1220,9,999999999,200,0.0290,0,88,999.000,999.0,99.0 +1976,12,15,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,5.6,80,102600,429,1412,332,150,1,150,16500,100,16500,4810,120,3.1,10,10,19.3,910,9,999999999,200,0.0290,0,88,999.000,999.0,99.0 +1976,12,15,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,5.6,77,102400,496,1412,325,154,69,130,16900,6500,14600,3590,120,5.2,9,9,16.1,2290,9,999999999,189,0.0290,0,88,999.000,999.0,99.0 +1976,12,15,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,6.1,74,102400,502,1412,325,186,125,141,20200,12000,16000,3230,100,5.2,9,8,16.1,2130,9,999999999,189,0.0290,0,88,999.000,999.0,99.0 +1976,12,15,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,6.7,77,102300,447,1412,325,184,146,137,19800,13500,15600,3090,90,2.1,9,8,24.1,2130,9,999999999,189,0.0290,0,88,999.000,999.0,99.0 +1976,12,15,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,6.7,74,102200,334,1412,311,162,380,72,17100,30800,9700,1310,100,3.1,8,3,24.1,77777,9,999999999,179,0.0290,0,88,999.000,999.0,99.0 +1976,12,15,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,6.1,77,102200,173,1412,306,74,187,51,7700,10400,6400,980,90,3.1,10,3,32.2,77777,9,999999999,179,0.0290,0,88,999.000,999.0,99.0 +1976,12,15,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,6.1,86,102100,17,600,291,15,62,9,0,0,0,0,120,1.5,7,1,24.1,77777,9,999999999,179,0.0290,0,88,999.000,999.0,99.0 +1976,12,15,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,5.0,89,102000,0,0,278,0,0,0,0,0,0,0,120,4.1,6,0,16.1,77777,9,999999999,170,0.0700,0,88,999.000,999.0,99.0 +1976,12,15,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,4.4,93,102000,0,0,274,0,0,0,0,0,0,0,110,2.1,0,0,24.1,77777,9,999999999,170,0.0700,0,88,999.000,999.0,99.0 +1976,12,15,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,5.0,93,101900,0,0,276,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,160,0.0700,0,88,999.000,999.0,99.0 +1976,12,15,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,3.9,93,101900,0,0,271,0,0,0,0,0,0,0,90,2.1,1,0,16.1,77777,9,999999999,160,0.0700,0,88,999.000,999.0,99.0 +1976,12,15,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,4.4,93,101900,0,0,274,0,0,0,0,0,0,0,100,2.1,0,0,16.1,77777,9,999999999,150,0.0700,0,88,999.000,999.0,99.0 +1976,12,15,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,4.4,96,101800,0,0,271,0,0,0,0,0,0,0,0,0.0,0,0,16.1,77777,9,999999999,150,0.0700,0,88,999.000,999.0,99.0 +1976,12,15,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,2.8,100,101700,0,0,261,0,0,0,0,0,0,0,0,0.0,0,0,11.3,77777,9,999999999,150,0.0700,0,88,999.000,999.0,99.0 +1976,12,16,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,3.9,96,101700,0,0,268,0,0,0,0,0,0,0,50,2.1,0,0,9.7,77777,9,999999999,139,0.0700,0,88,999.000,999.0,99.0 +1976,12,16,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,2.8,100,101700,0,0,273,0,0,0,0,0,0,0,0,0.0,3,3,1.3,77777,9,999999999,139,0.0700,0,88,999.000,999.0,99.0 +1976,12,16,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,1.7,100,101600,0,0,296,0,0,0,0,0,0,0,260,3.1,10,10,0.8,30,9,999999999,129,0.0700,0,88,999.000,999.0,99.0 +1976,12,16,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,2.2,100,101600,0,0,290,0,0,0,0,0,0,0,250,2.1,9,9,4.8,7620,9,999999999,129,0.0700,0,88,999.000,999.0,99.0 +1976,12,16,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,2.2,100,101500,0,0,298,0,0,0,0,0,0,0,0,0.0,10,10,0.4,30,9,999999999,129,0.0700,0,88,999.000,999.0,99.0 +1976,12,16,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.1,1.1,100,101500,0,0,292,0,0,0,0,0,0,0,0,0.0,10,10,0.4,30,9,999999999,129,0.0700,0,88,999.000,999.0,99.0 +1976,12,16,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,1.7,100,101500,0,0,296,0,0,0,0,0,0,0,210,2.1,10,10,0.2,30,9,999999999,129,0.0700,0,88,999.000,999.0,99.0 +1976,12,16,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,2.2,100,101500,4,294,298,1,0,1,0,0,0,0,0,0.0,10,10,0.2,30,9,999999999,129,0.0380,0,88,999.000,999.0,99.0 +1976,12,16,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,3.3,100,101500,135,1413,304,35,2,35,3900,0,3900,1120,100,2.1,10,10,0.4,60,9,999999999,129,0.0380,0,88,999.000,999.0,99.0 +1976,12,16,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,4.4,100,101500,304,1413,310,95,3,94,10400,100,10400,3000,80,1.5,10,10,0.4,60,9,999999999,129,0.0380,0,88,999.000,999.0,99.0 +1976,12,16,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,5.6,100,101400,427,1413,317,160,4,159,17500,300,17400,4930,350,2.6,10,10,0.1,30,9,999999999,120,0.0380,0,88,999.000,999.0,99.0 +1976,12,16,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,6.7,100,101400,494,1413,323,141,7,138,15800,500,15600,5030,270,2.6,10,10,0.4,60,9,999999999,120,0.0380,0,88,999.000,999.0,99.0 +1976,12,16,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,6.1,96,101300,501,1413,323,199,0,199,21700,0,21700,6180,250,1.5,10,10,0.4,30,9,999999999,120,0.0380,0,88,999.000,999.0,99.0 +1976,12,16,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,6.1,96,101300,446,1413,323,150,0,150,16500,0,16500,4950,320,2.6,10,10,0.1,30,9,999999999,120,0.0380,0,88,999.000,999.0,99.0 +1976,12,16,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,6.1,96,101200,335,1413,323,110,3,109,12000,200,12000,3450,0,0.0,10,10,0.2,30,9,999999999,120,0.0380,0,88,999.000,999.0,99.0 +1976,12,16,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,5.6,100,101200,174,1413,297,63,43,58,6900,3000,6500,1290,290,1.5,10,7,0.2,7620,9,999999999,120,0.0380,0,88,999.000,999.0,99.0 +1976,12,16,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,6.1,96,101200,17,600,302,13,19,11,0,0,0,0,0,0.0,10,7,0.2,7620,9,999999999,120,0.0380,0,88,999.000,999.0,99.0 +1976,12,16,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,5.0,100,101200,0,0,314,0,0,0,0,0,0,0,60,1.5,10,10,0.0,0,9,999999999,110,0.0700,0,88,999.000,999.0,99.0 +1976,12,16,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,3.9,100,101200,0,0,308,0,0,0,0,0,0,0,0,0.0,10,10,0.0,0,9,999999999,110,0.0700,0,88,999.000,999.0,99.0 +1976,12,16,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,5.0,100,101100,0,0,314,0,0,0,0,0,0,0,0,0.0,10,10,0.0,0,9,999999999,110,0.0700,0,88,999.000,999.0,99.0 +1976,12,16,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,5.0,100,101100,0,0,314,0,0,0,0,0,0,0,70,2.1,10,10,0.1,0,9,999999999,110,0.0700,0,88,999.000,999.0,99.0 +1976,12,16,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,5.0,100,101200,0,0,314,0,0,0,0,0,0,0,0,0.0,10,10,0.0,0,9,999999999,100,0.0700,0,88,999.000,999.0,99.0 +1976,12,16,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,5.0,100,101200,0,0,314,0,0,0,0,0,0,0,160,2.1,10,10,0.0,0,9,999999999,100,0.0700,0,88,999.000,999.0,99.0 +1976,12,16,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,3.9,100,101100,0,0,308,0,0,0,0,0,0,0,120,2.6,10,10,0.1,0,9,999999999,100,0.0700,0,88,999.000,999.0,99.0 +1976,12,17,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,2.8,100,101100,0,0,302,0,0,0,0,0,0,0,0,0.0,10,10,0.1,0,9,999999999,100,0.0690,0,88,999.000,999.0,99.0 +1976,12,17,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,3.9,96,101100,0,0,301,0,0,0,0,0,0,0,270,3.1,9,9,0.2,77777,9,999999999,89,0.0690,0,88,999.000,999.0,99.0 +1976,12,17,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,4.4,100,101100,0,0,310,0,0,0,0,0,0,0,0,0.0,10,10,0.2,30,9,999999999,89,0.0690,0,88,999.000,999.0,99.0 +1976,12,17,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,3.9,100,101100,0,0,308,0,0,0,0,0,0,0,110,2.6,10,10,0.2,30,9,999999999,89,0.0690,0,88,999.000,999.0,99.0 +1976,12,17,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,2.8,100,101100,0,0,302,0,0,0,0,0,0,0,150,2.1,10,10,0.4,60,9,999999999,100,0.0690,0,88,999.000,999.0,99.0 +1976,12,17,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,3.3,100,101100,0,0,304,0,0,0,0,0,0,0,120,3.1,10,10,1.6,4570,9,999999999,100,0.0690,0,88,999.000,999.0,99.0 +1976,12,17,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,3.3,100,101100,0,0,304,0,0,0,0,0,0,0,150,2.6,10,10,1.3,90,9,999999999,110,0.0690,0,88,999.000,999.0,99.0 +1976,12,17,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,2.8,100,101100,4,294,302,1,2,1,0,0,0,0,110,3.1,10,10,0.8,60,9,999999999,110,0.0430,0,88,999.000,999.0,99.0 +1976,12,17,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,2.8,100,101200,133,1413,302,39,7,38,4200,0,4200,1170,110,3.1,10,10,0.8,60,9,999999999,120,0.0430,0,88,999.000,999.0,99.0 +1976,12,17,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,3.3,100,101200,302,1413,304,71,6,70,8000,200,8000,2480,100,4.6,10,10,2.0,90,9,999999999,129,0.0430,0,88,999.000,999.0,99.0 +1976,12,17,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,4.4,89,101200,426,1413,318,106,4,105,12000,200,11900,3870,170,3.6,10,10,8.0,760,9,999999999,129,0.0430,0,88,999.000,999.0,99.0 +1976,12,17,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,5.6,89,101100,493,1413,309,215,117,174,23100,11100,19200,3980,130,2.6,10,8,11.3,910,9,999999999,139,0.0430,0,88,999.000,999.0,99.0 +1976,12,17,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,5.0,86,101100,501,1413,324,163,158,107,17700,15100,12300,2090,350,1.5,10,10,8.0,820,9,999999999,139,0.0430,0,88,999.000,999.0,99.0 +1976,12,17,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,5.6,86,101100,446,1413,327,79,44,65,8700,4000,7500,1920,130,3.6,10,10,6.4,910,9,999999999,150,0.0430,0,88,999.000,999.0,99.0 +1976,12,17,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,6.1,89,101100,335,1413,328,58,8,56,6700,300,6600,2180,100,3.6,10,10,6.4,820,9,999999999,150,0.0430,0,88,999.000,999.0,99.0 +1976,12,17,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,6.7,100,101100,175,1413,323,25,3,24,2800,0,2800,910,80,2.6,10,10,4.8,430,9,999999999,160,0.0430,0,88,999.000,999.0,99.0 +1976,12,17,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,6.7,93,101200,18,624,319,6,4,6,0,0,0,0,180,2.6,9,9,4.8,1220,9,999999999,150,0.0430,0,88,999.000,999.0,99.0 +1976,12,17,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,7.2,96,101300,0,0,329,0,0,0,0,0,0,0,340,2.6,10,10,4.8,400,9,999999999,150,0.0690,0,88,999.000,999.0,99.0 +1976,12,17,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,6.7,93,101300,0,0,308,0,0,0,0,0,0,0,20,1.5,7,7,8.0,2130,9,999999999,150,0.0690,0,88,999.000,999.0,99.0 +1976,12,17,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,5.0,96,101400,0,0,296,0,0,0,0,0,0,0,0,0.0,7,7,0.8,210,9,999999999,139,0.0690,0,88,999.000,999.0,99.0 +1976,12,17,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,2.8,100,101500,0,0,287,0,0,0,0,0,0,0,0,0.0,8,8,0.0,240,9,999999999,139,0.0690,0,88,999.000,999.0,99.0 +1976,12,17,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,3.3,96,101500,0,0,298,0,0,0,0,0,0,0,110,2.1,9,9,1.6,180,9,999999999,129,0.0690,0,88,999.000,999.0,99.0 +1976,12,17,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,5.0,96,101600,0,0,288,0,0,0,0,0,0,0,60,1.5,4,4,1.6,77777,9,999999999,129,0.0690,0,88,999.000,999.0,99.0 +1976,12,17,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,2.8,96,101600,0,0,295,0,0,0,0,0,0,0,130,1.5,9,9,0.1,77777,9,999999999,120,0.0690,0,88,999.000,999.0,99.0 +1976,12,18,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,2.8,100,101700,0,0,277,0,0,0,0,0,0,0,0,0.0,5,5,0.1,77777,9,999999999,110,0.0690,0,88,999.000,999.0,99.0 +1976,12,18,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,2.8,100,101700,0,0,302,0,0,0,0,0,0,0,260,1.5,10,10,0.2,60,9,999999999,110,0.0690,0,88,999.000,999.0,99.0 +1976,12,18,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,3.9,100,101900,0,0,308,0,0,0,0,0,0,0,0,0.0,10,10,0.8,180,9,999999999,100,0.0690,0,88,999.000,999.0,99.0 +1976,12,18,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,3.9,96,101900,0,0,310,0,0,0,0,0,0,0,0,0.0,10,10,1.6,120,9,999999999,100,0.0690,0,88,999.000,999.0,99.0 +1976,12,18,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,4.4,100,101900,0,0,310,0,0,0,0,0,0,0,0,0.0,10,10,0.8,120,9,999999999,100,0.0690,0,88,999.000,999.0,99.0 +1976,12,18,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,4.4,100,101900,0,0,310,0,0,0,0,0,0,0,0,0.0,10,10,0.2,60,9,999999999,100,0.0690,0,88,999.000,999.0,99.0 +1976,12,18,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,5.0,100,101900,0,0,314,0,0,0,0,0,0,0,300,2.6,10,10,0.4,60,9,999999999,89,0.0690,0,88,999.000,999.0,99.0 +1976,12,18,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,4.4,100,102000,3,271,310,1,0,1,0,0,0,0,260,1.5,10,10,0.2,90,9,999999999,89,0.1400,0,88,999.000,999.0,99.0 +1976,12,18,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,5.0,100,102000,131,1413,314,26,5,26,3000,0,3000,900,0,0.0,10,10,0.2,90,9,999999999,89,0.1400,0,88,999.000,999.0,99.0 +1976,12,18,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,5.0,100,102100,300,1413,314,62,3,61,7000,100,7000,2240,330,1.5,10,10,0.1,90,9,999999999,89,0.1400,0,88,999.000,999.0,99.0 +1976,12,18,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,5.0,100,102100,424,1413,314,116,8,114,13000,500,12900,4080,340,2.1,10,10,0.1,90,9,999999999,89,0.1400,0,88,999.000,999.0,99.0 +1976,12,18,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,5.0,96,102100,493,1413,316,134,5,132,15100,300,14900,4880,360,2.1,10,10,0.6,120,9,999999999,89,0.1400,0,88,999.000,999.0,99.0 +1976,12,18,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,5.6,100,102000,500,1413,317,129,3,128,14600,200,14500,4820,310,2.6,10,10,1.3,150,9,999999999,89,0.1400,0,88,999.000,999.0,99.0 +1976,12,18,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,5.6,96,102000,447,1413,319,111,1,111,12600,100,12500,4120,280,3.1,10,10,1.3,150,9,999999999,80,0.1400,0,88,999.000,999.0,99.0 +1976,12,18,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,5.6,96,102000,336,1413,319,81,1,81,9100,0,9100,2880,290,3.1,10,10,1.3,150,9,999999999,80,0.1400,0,88,999.000,999.0,99.0 +1976,12,18,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,5.0,96,102000,176,1413,316,41,1,41,4600,0,4600,1370,280,3.1,10,10,0.2,60,9,999999999,80,0.1400,0,88,999.000,999.0,99.0 +1976,12,18,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,5.0,96,102000,18,624,316,8,0,8,0,0,0,0,280,2.1,10,10,0.4,60,9,999999999,80,0.1400,0,88,999.000,999.0,99.0 +1976,12,18,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,5.6,100,102000,0,0,317,0,0,0,0,0,0,0,0,0.0,10,10,0.2,30,9,999999999,80,0.0690,0,88,999.000,999.0,99.0 +1976,12,18,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,5.6,100,102000,0,0,317,0,0,0,0,0,0,0,320,2.6,10,10,0.4,30,9,999999999,80,0.0690,0,88,999.000,999.0,99.0 +1976,12,18,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,5.6,100,102100,0,0,317,0,0,0,0,0,0,0,320,2.6,10,10,0.4,30,9,999999999,80,0.0690,0,88,999.000,999.0,99.0 +1976,12,18,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,5.0,100,102100,0,0,314,0,0,0,0,0,0,0,330,2.1,10,10,0.8,30,9,999999999,80,0.0690,0,88,999.000,999.0,99.0 +1976,12,18,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,3.9,96,102100,0,0,310,0,0,0,0,0,0,0,10,2.6,10,10,1.6,60,9,999999999,80,0.0690,0,88,999.000,999.0,99.0 +1976,12,18,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,3.9,96,102100,0,0,310,0,0,0,0,0,0,0,300,3.6,10,10,1.3,60,9,999999999,80,0.0690,0,88,999.000,999.0,99.0 +1976,12,18,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,3.9,96,102100,0,0,310,0,0,0,0,0,0,0,330,2.6,10,10,0.8,30,9,999999999,80,0.0690,0,88,999.000,999.0,99.0 +1976,12,19,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,3.9,100,102200,0,0,308,0,0,0,0,0,0,0,290,2.6,10,10,1.3,60,9,999999999,80,0.0690,0,88,999.000,999.0,99.0 +1976,12,19,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,2.8,100,102200,0,0,302,0,0,0,0,0,0,0,310,2.6,10,10,0.4,60,9,999999999,80,0.0690,0,88,999.000,999.0,99.0 +1976,12,19,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,2.8,100,102200,0,0,302,0,0,0,0,0,0,0,310,2.1,10,10,0.4,60,9,999999999,80,0.0690,0,88,999.000,999.0,99.0 +1976,12,19,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,1.7,100,102200,0,0,296,0,0,0,0,0,0,0,320,2.1,10,10,0.4,60,9,999999999,80,0.0690,0,88,999.000,999.0,99.0 +1976,12,19,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.1,1.1,100,102200,0,0,292,0,0,0,0,0,0,0,10,2.6,10,10,1.3,90,9,999999999,80,0.0690,0,88,999.000,999.0,99.0 +1976,12,19,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.1,1.1,100,102200,0,0,292,0,0,0,0,0,0,0,340,3.1,10,10,0.4,90,9,999999999,80,0.0690,0,88,999.000,999.0,99.0 +1976,12,19,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.0,0.0,100,102200,0,0,287,0,0,0,0,0,0,0,320,3.1,10,10,0.4,90,9,999999999,80,0.0690,0,88,999.000,999.0,99.0 +1976,12,19,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.0,0.0,100,102300,3,271,279,1,2,1,0,0,0,0,300,3.1,9,9,0.4,77777,9,999999999,80,0.0580,0,88,999.000,999.0,99.0 +1976,12,19,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.6,0.6,100,102300,129,1413,276,36,39,32,3900,2100,3700,670,290,2.6,8,8,0.2,77777,9,999999999,80,0.0580,0,88,999.000,999.0,99.0 +1976,12,19,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,1.7,96,102400,299,1413,269,155,443,61,15800,34400,8500,1080,280,3.1,4,3,0.8,77777,9,999999999,80,0.0580,0,88,999.000,999.0,99.0 +1976,12,19,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,3.3,89,102400,423,1413,270,256,671,53,26400,60000,8300,1060,290,3.1,1,0,80.5,77777,9,999999999,80,0.0580,0,88,999.000,999.0,99.0 +1976,12,19,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,3.9,77,102300,492,1413,282,326,773,55,34200,71800,9000,1160,290,4.1,1,0,80.5,77777,9,999999999,80,0.0580,0,88,999.000,999.0,99.0 +1976,12,19,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,3.3,61,102200,500,1413,293,327,762,56,34300,71000,9100,1180,90,3.1,1,0,80.5,77777,9,999999999,80,0.0580,0,88,999.000,999.0,99.0 +1976,12,19,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,2.2,55,102200,447,1413,294,287,748,49,30100,68200,8500,1040,150,4.6,0,0,80.5,77777,9,999999999,80,0.0580,0,88,999.000,999.0,99.0 +1976,12,19,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,1.7,53,102200,336,1413,293,198,645,43,20400,54200,7400,860,140,5.2,1,0,80.5,77777,9,999999999,80,0.0580,0,88,999.000,999.0,99.0 +1976,12,19,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,1.1,54,102200,177,1413,288,84,417,31,8600,26200,5300,560,150,5.2,2,0,80.5,77777,9,999999999,80,0.0580,0,88,999.000,999.0,99.0 +1976,12,19,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,0.6,61,102300,19,624,279,15,59,9,0,0,0,0,130,4.1,4,0,72.4,77777,9,999999999,80,0.0580,0,88,999.000,999.0,99.0 +1976,12,19,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,0.0,60,102200,0,0,276,0,0,0,0,0,0,0,120,4.6,0,0,24.1,77777,9,999999999,80,0.0690,0,88,999.000,999.0,99.0 +1976,12,19,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,0.0,60,102200,0,0,276,0,0,0,0,0,0,0,130,5.7,0,0,24.1,77777,9,999999999,80,0.0690,0,88,999.000,999.0,99.0 +1976,12,19,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,0.0,68,102300,0,0,269,0,0,0,0,0,0,0,120,4.1,0,0,24.1,77777,9,999999999,80,0.0690,0,88,999.000,999.0,99.0 +1976,12,19,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,0.0,68,102300,0,0,269,0,0,0,0,0,0,0,120,4.1,0,0,24.1,77777,9,999999999,80,0.0690,0,88,999.000,999.0,99.0 +1976,12,19,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,0.0,70,102400,0,0,267,0,0,0,0,0,0,0,120,3.1,0,0,24.1,77777,9,999999999,80,0.0690,0,88,999.000,999.0,99.0 +1976,12,19,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,-0.6,73,102500,0,0,262,0,0,0,0,0,0,0,130,1.5,0,0,24.1,77777,9,999999999,69,0.0690,0,88,999.000,999.0,99.0 +1976,12,19,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,-0.6,79,102500,0,0,258,0,0,0,0,0,0,0,120,3.1,0,0,24.1,77777,9,999999999,69,0.0690,0,88,999.000,999.0,99.0 +1976,12,20,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.6,-0.6,92,102500,0,0,250,0,0,0,0,0,0,0,350,1.5,0,0,24.1,77777,9,999999999,69,0.0690,0,88,999.000,999.0,99.0 +1976,12,20,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,-1.1,76,102500,0,0,258,0,0,0,0,0,0,0,130,6.2,0,0,24.1,77777,9,999999999,69,0.0690,0,88,999.000,999.0,99.0 +1976,12,20,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,-1.7,79,102600,0,0,253,0,0,0,0,0,0,0,100,2.6,0,0,24.1,77777,9,999999999,69,0.0690,0,88,999.000,999.0,99.0 +1976,12,20,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,-0.6,76,102600,0,0,260,0,0,0,0,0,0,0,140,5.7,0,0,24.1,77777,9,999999999,69,0.0690,0,88,999.000,999.0,99.0 +1976,12,20,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.6,-1.1,89,102600,0,0,250,0,0,0,0,0,0,0,180,3.6,0,0,24.1,77777,9,999999999,69,0.0690,0,88,999.000,999.0,99.0 +1976,12,20,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.0,-1.7,89,102600,0,0,247,0,0,0,0,0,0,0,160,3.1,0,0,24.1,77777,9,999999999,69,0.0690,0,88,999.000,999.0,99.0 +1976,12,20,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.1,-2.2,92,102700,0,0,242,0,0,0,0,0,0,0,170,2.1,1,0,64.4,77777,9,999999999,69,0.0690,0,88,999.000,999.0,99.0 +1976,12,20,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.7,-2.8,92,102700,3,247,240,6,39,2,0,0,0,0,220,2.1,0,0,64.4,77777,9,999999999,69,0.0350,0,88,999.000,999.0,99.0 +1976,12,20,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.0,-0.6,96,102800,127,1414,256,57,340,26,5800,18100,4100,460,190,3.1,2,2,6.4,77777,9,999999999,69,0.0350,0,88,999.000,999.0,99.0 +1976,12,20,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,0.0,85,102800,297,1414,256,177,689,31,18700,57000,6600,740,120,4.1,0,0,6.4,77777,9,999999999,80,0.0350,0,88,999.000,999.0,99.0 +1976,12,20,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,0.0,82,102800,422,1414,259,276,794,38,29300,71500,7800,950,200,4.1,0,0,8.0,77777,9,999999999,80,0.0350,0,88,999.000,999.0,99.0 +1976,12,20,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,0.0,70,102700,491,1414,267,331,825,42,34900,76500,8200,1060,180,2.6,0,0,12.9,77777,9,999999999,80,0.0350,0,88,999.000,999.0,99.0 +1976,12,20,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,0.6,73,102700,500,1414,268,341,838,42,36000,77900,8200,1070,190,4.1,0,0,11.3,77777,9,999999999,80,0.0350,0,88,999.000,999.0,99.0 +1976,12,20,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,0.6,73,102700,447,1414,268,294,792,42,31100,72100,8100,1010,160,2.6,1,0,11.3,77777,9,999999999,80,0.0350,0,88,999.000,999.0,99.0 +1976,12,20,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,0.6,76,102700,337,1414,265,206,713,35,21800,60900,7200,820,170,5.2,1,0,8.0,77777,9,999999999,80,0.0350,0,88,999.000,999.0,99.0 +1976,12,20,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,0.0,85,102600,178,1414,268,63,122,48,6700,6900,5800,900,180,5.7,4,3,4.0,77777,9,999999999,80,0.0350,0,88,999.000,999.0,99.0 +1976,12,20,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.1,0.0,92,102600,19,648,252,17,98,8,0,0,0,0,160,2.1,3,0,4.0,77777,9,999999999,80,0.0350,0,88,999.000,999.0,99.0 +1976,12,20,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.1,0.0,92,102700,0,0,252,0,0,0,0,0,0,0,140,3.1,0,0,4.8,77777,9,999999999,89,0.0690,0,88,999.000,999.0,99.0 +1976,12,20,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.1,0.0,92,102700,0,0,291,0,0,0,0,0,0,0,150,3.1,10,10,6.4,150,9,999999999,89,0.0690,0,88,999.000,999.0,99.0 +1976,12,20,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.1,0.6,96,102700,0,0,292,0,0,0,0,0,0,0,160,3.1,10,10,6.4,150,9,999999999,89,0.0690,0,88,999.000,999.0,99.0 +1976,12,20,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.1,0.0,92,102600,0,0,291,0,0,0,0,0,0,0,140,3.6,10,10,6.4,120,9,999999999,89,0.0690,0,88,999.000,999.0,99.0 +1976,12,20,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.1,0.6,96,102600,0,0,292,0,0,0,0,0,0,0,140,2.1,10,10,4.8,90,9,999999999,89,0.0690,0,88,999.000,999.0,99.0 +1976,12,20,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.6,0.0,96,102600,0,0,289,0,0,0,0,0,0,0,0,0.0,10,10,4.8,90,9,999999999,100,0.0690,0,88,999.000,999.0,99.0 +1976,12,20,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.6,0.0,96,102600,0,0,289,0,0,0,0,0,0,0,110,1.5,10,10,3.2,60,9,999999999,100,0.0690,0,88,999.000,999.0,99.0 +1976,12,21,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.6,-0.6,92,102600,0,0,289,0,0,0,0,0,0,0,180,2.6,10,10,4.8,90,9,999999999,100,0.0690,0,88,999.000,999.0,99.0 +1976,12,21,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.6,-0.6,92,102600,0,0,289,0,0,0,0,0,0,0,160,1.5,10,10,4.8,90,9,999999999,100,0.0690,0,88,999.000,999.0,99.0 +1976,12,21,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.6,-0.6,92,102600,0,0,289,0,0,0,0,0,0,0,180,2.6,10,10,4.8,60,9,999999999,110,0.0690,0,88,999.000,999.0,99.0 +1976,12,21,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.0,-0.6,96,102600,0,0,286,0,0,0,0,0,0,0,120,1.5,10,10,4.8,60,9,999999999,110,0.0690,0,88,999.000,999.0,99.0 +1976,12,21,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.0,-0.6,96,102500,0,0,286,0,0,0,0,0,0,0,100,2.6,10,10,3.2,60,9,999999999,110,0.0690,0,88,999.000,999.0,99.0 +1976,12,21,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-0.6,-1.1,96,102500,0,0,283,0,0,0,0,0,0,0,100,2.1,10,10,3.2,60,9,999999999,110,0.0690,0,88,999.000,999.0,99.0 +1976,12,21,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-0.6,-1.1,96,102500,0,0,283,0,0,0,0,0,0,0,180,2.1,10,10,1.3,90,9,999999999,120,0.0690,0,88,999.000,999.0,99.0 +1976,12,21,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-0.6,-0.6,100,102500,3,224,284,0,0,0,0,0,0,0,250,2.1,10,10,0.4,30,9,999999999,120,0.0860,0,88,999.000,999.0,99.0 +1976,12,21,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-0.6,-0.6,100,102500,126,1414,284,18,2,17,2000,0,2000,630,270,1.5,10,10,0.8,60,9,999999999,120,0.0860,0,88,999.000,999.0,99.0 +1976,12,21,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.0,-0.6,96,102600,296,1414,286,76,4,75,8500,200,8400,2580,150,2.6,10,10,2.4,90,9,999999999,129,0.0860,0,88,999.000,999.0,99.0 +1976,12,21,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.1,-0.6,89,102600,421,1414,291,108,9,105,12100,500,12000,3850,200,1.5,10,10,4.8,180,9,999999999,129,0.0860,0,88,999.000,999.0,99.0 +1976,12,21,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,-0.6,85,102600,491,1414,293,134,6,132,15100,400,14900,4870,90,1.5,10,10,6.4,270,9,999999999,129,0.0860,0,88,999.000,999.0,99.0 +1976,12,21,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,-0.6,79,102500,500,1414,298,163,2,162,18000,200,18000,5580,160,3.1,10,10,8.0,4570,9,999999999,129,0.0860,0,88,999.000,999.0,99.0 +1976,12,21,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,-0.6,79,102400,448,1414,298,115,3,114,12900,200,12900,4200,160,2.6,10,10,8.0,4570,9,999999999,139,0.0860,0,88,999.000,999.0,99.0 +1976,12,21,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,-0.6,79,102400,339,1414,298,95,1,95,10600,100,10600,3210,180,3.6,10,10,8.0,4570,9,999999999,139,0.0860,0,88,999.000,999.0,99.0 +1976,12,21,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,0.0,85,102500,180,1414,296,44,1,43,4800,0,4800,1430,190,1.5,10,10,6.4,4570,9,999999999,139,0.0860,0,88,999.000,999.0,99.0 +1976,12,21,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,0.0,85,102400,20,648,296,9,0,9,0,0,0,0,0,0.0,10,10,8.0,7620,9,999999999,139,0.0860,0,88,999.000,999.0,99.0 +1976,12,21,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,0.0,89,102400,0,0,280,0,0,0,0,0,0,0,100,2.6,10,8,8.0,7620,9,999999999,129,0.0690,0,88,999.000,999.0,99.0 +1976,12,21,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.0,-1.1,92,102400,0,0,247,0,0,0,0,0,0,0,290,1.5,7,0,8.0,77777,9,999999999,129,0.0690,0,88,999.000,999.0,99.0 +1976,12,21,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.0,-1.1,92,102400,0,0,262,0,0,0,0,0,0,0,290,2.6,8,5,16.1,7620,9,999999999,120,0.0690,0,88,999.000,999.0,99.0 +1976,12,21,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.6,-0.6,92,102400,0,0,289,0,0,0,0,0,0,0,240,2.1,10,10,16.1,6100,9,999999999,120,0.0690,0,88,999.000,999.0,99.0 +1976,12,21,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-0.6,-1.1,96,102400,0,0,283,0,0,0,0,0,0,0,250,1.5,10,10,12.9,6100,9,999999999,110,0.0690,0,88,999.000,999.0,99.0 +1976,12,21,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.1,-0.6,89,102400,0,0,263,0,0,0,0,0,0,0,100,3.6,8,3,12.9,77777,9,999999999,110,0.0690,0,88,999.000,999.0,99.0 +1976,12,21,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.1,-1.1,85,102400,0,0,282,0,0,0,0,0,0,0,0,0.0,10,9,12.9,4570,9,999999999,110,0.0690,0,88,999.000,999.0,99.0 +1976,12,22,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.1,-1.1,85,102300,0,0,260,0,0,0,0,0,0,0,110,3.6,2,2,24.1,77777,9,999999999,100,0.0690,0,88,999.000,999.0,99.0 +1976,12,22,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.0,-1.1,92,102300,0,0,268,0,0,0,0,0,0,0,0,0.0,7,7,6.4,2440,9,999999999,100,0.0690,0,88,999.000,999.0,99.0 +1976,12,22,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.0,-1.1,92,102300,0,0,272,0,0,0,0,0,0,0,90,1.5,8,8,6.4,2440,9,999999999,89,0.0690,0,88,999.000,999.0,99.0 +1976,12,22,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-0.6,-1.7,92,102300,0,0,257,0,0,0,0,0,0,0,0,0.0,4,4,6.4,77777,9,999999999,89,0.0690,0,88,999.000,999.0,99.0 +1976,12,22,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-0.6,-1.7,92,102200,0,0,259,0,0,0,0,0,0,0,0,0.0,5,5,11.3,77777,9,999999999,89,0.0690,0,88,999.000,999.0,99.0 +1976,12,22,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.6,-1.7,85,102200,0,0,269,0,0,0,0,0,0,0,120,2.1,7,7,24.1,2440,9,999999999,89,0.0690,0,88,999.000,999.0,99.0 +1976,12,22,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-0.6,-1.7,92,102100,0,0,257,0,0,0,0,0,0,0,60,3.6,4,4,24.1,77777,9,999999999,89,0.0690,0,88,999.000,999.0,99.0 +1976,12,22,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.1,-2.2,92,102100,2,224,262,0,1,0,0,0,0,0,330,2.1,7,7,72.4,2440,9,999999999,100,0.1030,0,88,999.000,999.0,99.0 +1976,12,22,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.6,-1.1,89,102100,124,1414,267,31,48,27,3400,2500,3200,560,0,0.0,8,6,11.3,7620,9,999999999,100,0.1030,0,88,999.000,999.0,99.0 +1976,12,22,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.1,-0.6,89,102100,295,1414,277,108,49,98,11800,4100,11000,2310,140,3.1,10,8,8.0,3050,9,999999999,100,0.1030,0,88,999.000,999.0,99.0 +1976,12,22,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,0.0,85,102100,421,1414,282,130,65,111,14300,5900,12500,2950,190,1.5,10,8,8.0,3050,9,999999999,100,0.1030,0,88,999.000,999.0,99.0 +1976,12,22,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,0.0,76,101900,491,1414,284,205,135,158,22200,12800,17700,3610,50,2.6,9,7,12.9,3050,9,999999999,100,0.1030,0,88,999.000,999.0,99.0 +1976,12,22,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,0.0,70,101900,501,1414,293,163,106,125,17900,10200,14200,2860,300,2.1,9,8,24.1,3050,9,999999999,100,0.1030,0,88,999.000,999.0,99.0 +1976,12,22,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,0.0,68,101900,449,1414,311,110,6,109,12500,400,12400,4080,360,2.1,10,10,24.1,3050,9,999999999,110,0.1030,0,88,999.000,999.0,99.0 +1976,12,22,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,1.7,79,101900,340,1414,310,70,2,69,7900,100,7900,2580,100,4.6,10,10,24.1,3050,9,999999999,110,0.1030,0,88,999.000,999.0,99.0 +1976,12,22,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,1.7,79,101900,181,1414,310,48,2,47,5200,0,5200,1520,100,4.6,10,10,24.1,3050,9,999999999,110,0.1030,0,88,999.000,999.0,99.0 +1976,12,22,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,0.6,82,101800,21,672,301,7,0,7,0,0,0,0,120,6.2,10,10,24.1,2290,9,999999999,110,0.1030,0,88,999.000,999.0,99.0 +1976,12,22,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,-2.2,67,101800,0,0,298,0,0,0,0,0,0,0,110,5.2,10,10,24.1,1830,9,999999999,120,0.0690,0,88,999.000,999.0,99.0 +1976,12,22,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,-2.8,67,101900,0,0,296,0,0,0,0,0,0,0,130,5.7,10,10,24.1,1680,9,999999999,120,0.0690,0,88,999.000,999.0,99.0 +1976,12,22,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,-1.7,73,101900,0,0,297,0,0,0,0,0,0,0,100,7.7,10,10,16.1,1010,9,999999999,120,0.0690,0,88,999.000,999.0,99.0 +1976,12,22,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,-0.6,79,101900,0,0,298,0,0,0,0,0,0,0,160,4.6,10,10,11.3,1280,9,999999999,129,0.0690,0,88,999.000,999.0,99.0 +1976,12,22,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,0.0,89,101900,0,0,294,0,0,0,0,0,0,0,110,4.1,10,10,8.0,180,9,999999999,129,0.0690,0,88,999.000,999.0,99.0 +1976,12,22,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,1.1,92,102000,0,0,297,0,0,0,0,0,0,0,110,3.1,10,10,8.0,180,9,999999999,129,0.0690,0,88,999.000,999.0,99.0 +1976,12,22,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,0.6,92,101900,0,0,294,0,0,0,0,0,0,0,120,4.6,10,10,9.7,580,9,999999999,139,0.0690,0,88,999.000,999.0,99.0 +1976,12,23,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,0.6,92,101900,0,0,294,0,0,0,0,0,0,0,130,4.6,10,10,9.7,850,9,999999999,139,0.0690,0,88,999.000,999.0,99.0 +1976,12,23,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.1,0.6,96,101900,0,0,292,0,0,0,0,0,0,0,110,3.1,10,10,9.7,270,9,999999999,139,0.0690,0,88,999.000,999.0,99.0 +1976,12,23,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.1,1.1,100,102000,0,0,292,0,0,0,0,0,0,0,130,3.1,10,10,9.7,240,9,999999999,150,0.0690,0,88,999.000,999.0,99.0 +1976,12,23,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,1.7,96,101900,0,0,298,0,0,0,0,0,0,0,110,3.1,10,10,11.3,210,9,999999999,150,0.0690,0,88,999.000,999.0,99.0 +1976,12,23,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,1.1,92,102000,0,0,297,0,0,0,0,0,0,0,110,3.1,10,10,8.0,180,9,999999999,150,0.0690,0,88,999.000,999.0,99.0 +1976,12,23,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,2.2,96,102000,0,0,301,0,0,0,0,0,0,0,40,2.6,10,10,9.7,150,9,999999999,139,0.0690,0,88,999.000,999.0,99.0 +1976,12,23,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,2.2,93,102100,0,0,303,0,0,0,0,0,0,0,120,2.1,10,10,9.7,340,9,999999999,139,0.0690,0,88,999.000,999.0,99.0 +1976,12,23,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,2.2,93,102100,2,224,295,2,1,2,0,0,0,0,120,2.1,9,9,6.4,1340,9,999999999,139,0.0400,0,88,999.000,999.0,99.0 +1976,12,23,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,2.8,93,102200,123,1414,306,33,5,32,3600,0,3600,1020,70,2.1,10,10,4.8,150,9,999999999,129,0.0400,0,88,999.000,999.0,99.0 +1976,12,23,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,3.3,89,102200,294,1414,312,72,7,71,8100,300,8100,2480,160,3.1,10,10,4.8,150,9,999999999,129,0.0400,0,88,999.000,999.0,99.0 +1976,12,23,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,3.9,93,102200,420,1414,293,200,106,168,21800,9800,18900,3970,150,4.1,7,7,6.4,910,9,999999999,129,0.0400,0,88,999.000,999.0,99.0 +1976,12,23,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,4.4,86,102200,491,1414,305,214,169,155,23100,16000,17500,3540,180,3.1,8,8,8.0,1830,9,999999999,120,0.0400,0,88,999.000,999.0,99.0 +1976,12,23,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,4.4,86,102200,501,1414,321,158,11,154,17600,800,17300,5430,290,1.5,10,10,9.7,910,9,999999999,120,0.0400,0,88,999.000,999.0,99.0 +1976,12,23,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,4.4,89,102200,450,1414,318,89,5,87,10200,300,10100,3450,280,3.1,10,10,6.4,1220,9,999999999,120,0.0400,0,88,999.000,999.0,99.0 +1976,12,23,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,4.4,86,102200,341,1414,321,103,2,102,11300,100,11300,3360,0,0.0,10,10,9.7,1370,9,999999999,110,0.0400,0,88,999.000,999.0,99.0 +1976,12,23,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,4.4,86,102200,183,1414,312,60,20,58,6600,1400,6400,1320,0,0.0,9,9,12.9,1830,9,999999999,110,0.0400,0,88,999.000,999.0,99.0 +1976,12,23,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,3.9,89,102300,22,672,315,13,2,13,0,0,0,0,290,2.1,10,10,24.1,910,9,999999999,110,0.0400,0,88,999.000,999.0,99.0 +1976,12,23,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,3.9,86,102300,0,0,317,0,0,0,0,0,0,0,230,3.1,10,10,24.1,1190,9,999999999,100,0.0690,0,88,999.000,999.0,99.0 +1976,12,23,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,3.3,86,102300,0,0,291,0,0,0,0,0,0,0,0,0.0,6,6,24.1,1520,9,999999999,100,0.0690,0,88,999.000,999.0,99.0 +1976,12,23,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,2.8,96,102400,0,0,304,0,0,0,0,0,0,0,0,0.0,10,10,24.1,1520,9,999999999,100,0.0690,0,88,999.000,999.0,99.0 +1976,12,23,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,3.3,93,102300,0,0,301,0,0,0,0,0,0,0,0,0.0,10,9,24.1,1370,9,999999999,100,0.0690,0,88,999.000,999.0,99.0 +1976,12,23,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,2.8,96,102400,0,0,304,0,0,0,0,0,0,0,0,0.0,10,10,24.1,1520,9,999999999,89,0.0690,0,88,999.000,999.0,99.0 +1976,12,23,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,2.2,96,102300,0,0,276,0,0,0,0,0,0,0,70,2.1,7,5,12.9,1370,9,999999999,89,0.0690,0,88,999.000,999.0,99.0 +1976,12,23,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.6,0.6,100,102300,0,0,282,0,0,0,0,0,0,0,280,3.1,9,9,0.2,77777,9,999999999,89,0.0690,0,88,999.000,999.0,99.0 +1976,12,24,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,1.1,96,102400,0,0,295,0,0,0,0,0,0,0,280,2.1,10,10,0.2,90,9,999999999,89,0.0690,0,88,999.000,999.0,99.0 +1976,12,24,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.6,0.0,96,102300,0,0,289,0,0,0,0,0,0,0,270,2.6,10,10,0.2,90,9,999999999,89,0.0690,0,88,999.000,999.0,99.0 +1976,12,24,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.6,0.6,100,102300,0,0,290,0,0,0,0,0,0,0,290,3.6,10,10,0.1,30,9,999999999,80,0.0690,0,88,999.000,999.0,99.0 +1976,12,24,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,1.7,100,102300,0,0,296,0,0,0,0,0,0,0,270,3.1,10,10,0.4,30,9,999999999,80,0.0690,0,88,999.000,999.0,99.0 +1976,12,24,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,1.7,100,102300,0,0,296,0,0,0,0,0,0,0,0,0.0,10,10,0.8,60,9,999999999,80,0.0690,0,88,999.000,999.0,99.0 +1976,12,24,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.1,1.1,100,102200,0,0,292,0,0,0,0,0,0,0,60,2.6,10,10,1.6,60,9,999999999,80,0.0690,0,88,999.000,999.0,99.0 +1976,12,24,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.1,0.6,96,102200,0,0,292,0,0,0,0,0,0,0,270,2.6,10,10,1.6,120,9,999999999,80,0.0690,0,88,999.000,999.0,99.0 +1976,12,24,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.1,0.6,96,102200,2,200,292,1,0,1,0,0,0,0,270,1.5,10,10,1.0,90,9,999999999,80,0.1060,0,88,999.000,999.0,99.0 +1976,12,24,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,0.6,92,102200,122,1414,294,17,2,17,2000,0,2000,630,0,0.0,10,10,3.2,210,9,999999999,80,0.1060,0,88,999.000,999.0,99.0 +1976,12,24,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,1.1,92,102100,293,1414,297,62,6,61,7100,200,7000,2220,40,2.1,10,10,4.0,180,9,999999999,89,0.1060,0,88,999.000,999.0,99.0 +1976,12,24,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,1.1,92,102100,420,1414,297,110,6,108,12300,400,12200,3910,0,0.0,10,10,16.1,4880,9,999999999,89,0.1060,0,88,999.000,999.0,99.0 +1976,12,24,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,0.0,82,102100,491,1414,299,117,1,117,13300,100,13300,4480,0,0.0,10,10,48.3,2440,9,999999999,89,0.1060,0,88,999.000,999.0,99.0 +1976,12,24,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,0.6,82,102000,502,1414,301,154,2,153,17100,100,17100,5410,50,2.1,10,10,48.3,4570,9,999999999,89,0.1060,0,88,999.000,999.0,99.0 +1976,12,24,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,1.7,86,101900,451,1414,305,144,1,143,15900,100,15800,4860,330,1.5,10,10,48.3,4570,9,999999999,89,0.1060,0,88,999.000,999.0,99.0 +1976,12,24,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,0.6,76,101900,343,1414,306,90,2,89,10000,100,10000,3100,0,0.0,10,10,48.3,4570,9,999999999,89,0.1060,0,88,999.000,999.0,99.0 +1976,12,24,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,1.1,79,101900,185,1414,307,51,0,51,5600,0,5600,1620,0,0.0,10,10,48.3,4570,9,999999999,89,0.1060,0,88,999.000,999.0,99.0 +1976,12,24,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,2.2,86,101900,23,695,308,9,0,9,0,0,0,0,50,1.5,10,10,24.1,2290,9,999999999,100,0.1060,0,88,999.000,999.0,99.0 +1976,12,24,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,2.2,89,101900,0,0,306,0,0,0,0,0,0,0,90,3.1,10,10,24.1,2130,9,999999999,110,0.0690,0,88,999.000,999.0,99.0 +1976,12,24,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,1.1,82,101900,0,0,305,0,0,0,0,0,0,0,100,2.1,10,10,16.1,2130,9,999999999,120,0.0690,0,88,999.000,999.0,99.0 +1976,12,24,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,1.7,86,101900,0,0,305,0,0,0,0,0,0,0,0,0.0,10,10,16.1,2130,9,999999999,129,0.0690,0,88,999.000,999.0,99.0 +1976,12,24,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,2.2,89,101900,0,0,306,0,0,0,0,0,0,0,0,0.0,10,10,16.1,3050,9,999999999,139,0.0690,0,88,999.000,999.0,99.0 +1976,12,24,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,2.2,89,101900,0,0,306,0,0,0,0,0,0,0,220,2.1,10,10,16.1,3050,9,999999999,150,0.0690,0,88,999.000,999.0,99.0 +1976,12,24,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,1.7,92,101900,0,0,292,0,0,0,0,0,0,0,0,0.0,9,9,16.1,3050,9,999999999,150,0.0690,0,88,999.000,999.0,99.0 +1976,12,24,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,1.7,89,101900,0,0,303,0,0,0,0,0,0,0,0,0.0,10,10,11.3,3050,9,999999999,160,0.0690,0,88,999.000,999.0,99.0 +1976,12,25,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,2.2,93,101900,0,0,295,0,0,0,0,0,0,0,130,2.1,9,9,16.1,2590,9,999999999,170,0.0690,0,88,999.000,999.0,99.0 +1976,12,25,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,2.2,93,102000,0,0,281,0,0,0,0,0,0,0,0,0.0,6,6,11.3,3050,9,999999999,179,0.0690,0,88,999.000,999.0,99.0 +1976,12,25,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,2.2,93,101900,0,0,303,0,0,0,0,0,0,0,150,2.6,10,10,16.1,2290,9,999999999,189,0.0690,0,88,999.000,999.0,99.0 +1976,12,25,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,2.2,89,101900,0,0,306,0,0,0,0,0,0,0,110,1.5,10,10,11.3,1680,9,999999999,200,0.0690,0,88,999.000,999.0,99.0 +1976,12,25,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,2.2,89,101900,0,0,306,0,0,0,0,0,0,0,120,3.1,10,10,11.3,1400,9,999999999,200,0.0690,0,88,999.000,999.0,99.0 +1976,12,25,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,1.7,86,101900,0,0,305,0,0,0,0,0,0,0,120,4.6,10,10,11.3,1280,9,999999999,209,0.0690,0,88,999.000,999.0,99.0 +1976,12,25,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,1.7,86,101900,0,0,305,0,0,0,0,0,0,0,120,4.6,10,10,16.1,1280,9,999999999,209,0.0690,0,88,999.000,999.0,99.0 +1976,12,25,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,1.7,86,102000,2,200,305,1,0,1,0,0,0,0,140,2.1,10,10,32.2,1280,9,999999999,220,0.0620,0,88,999.000,999.0,99.0 +1976,12,25,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,1.7,82,101900,121,1414,307,33,0,33,3600,0,3600,1030,100,3.6,10,10,32.2,1010,9,999999999,220,0.0620,0,88,999.000,999.0,99.0 +1976,12,25,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,1.7,79,102000,293,1414,310,98,1,98,10700,0,10700,2990,100,5.2,10,10,32.2,1070,9,999999999,229,0.0620,0,88,999.000,999.0,99.0 +1976,12,25,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,2.8,86,102000,420,1414,311,133,1,132,14600,100,14600,4430,120,4.6,10,10,48.3,1220,9,999999999,229,0.0620,0,88,999.000,999.0,99.0 +1976,12,25,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,3.3,86,101900,491,1414,315,106,1,106,12200,100,12200,4170,100,4.6,10,10,40.2,940,9,999999999,229,0.0620,0,88,999.000,999.0,99.0 +1976,12,25,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,3.9,89,101900,503,1414,315,105,1,105,12100,100,12100,4190,130,3.6,10,10,11.3,940,9,999999999,240,0.0620,0,88,999.000,999.0,99.0 +1976,12,25,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,4.4,93,101900,453,1414,316,87,1,87,10100,100,10000,3460,100,5.2,10,10,3.2,820,9,999999999,240,0.0620,0,88,999.000,999.0,99.0 +1976,12,25,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,4.4,93,101900,345,1414,316,69,1,69,7900,0,7900,2590,110,5.7,10,10,4.8,270,9,999999999,250,0.0620,0,88,999.000,999.0,99.0 +1976,12,25,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,5.0,96,101900,187,1414,316,29,0,29,3300,0,3300,1080,110,4.6,10,10,4.8,240,9,999999999,250,0.0620,0,88,999.000,999.0,99.0 +1976,12,25,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,5.0,96,101900,24,719,316,6,0,6,0,0,0,0,120,4.6,10,10,6.4,700,9,999999999,240,0.0620,0,88,999.000,999.0,99.0 +1976,12,25,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,5.0,93,101900,0,0,319,0,0,0,0,0,0,0,110,4.1,10,10,8.0,1160,9,999999999,229,0.0690,0,88,999.000,999.0,99.0 +1976,12,25,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,5.6,96,101900,0,0,319,0,0,0,0,0,0,0,120,3.6,10,10,8.0,430,9,999999999,220,0.0690,0,88,999.000,999.0,99.0 +1976,12,25,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,5.0,96,101900,0,0,316,0,0,0,0,0,0,0,120,5.2,10,10,6.4,370,9,999999999,209,0.0690,0,88,999.000,999.0,99.0 +1976,12,25,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,5.0,96,101800,0,0,316,0,0,0,0,0,0,0,120,5.7,10,10,4.8,210,9,999999999,200,0.0690,0,88,999.000,999.0,99.0 +1976,12,25,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,5.0,93,101800,0,0,319,0,0,0,0,0,0,0,120,5.2,10,10,6.4,1370,9,999999999,200,0.0690,0,88,999.000,999.0,99.0 +1976,12,25,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,5.6,96,101800,0,0,319,0,0,0,0,0,0,0,130,5.2,10,10,24.1,1830,9,999999999,189,0.0690,0,88,999.000,999.0,99.0 +1976,12,25,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,5.6,93,101800,0,0,322,0,0,0,0,0,0,0,110,5.7,10,10,24.1,910,9,999999999,179,0.0690,0,88,999.000,999.0,99.0 +1976,12,26,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,5.0,93,101700,0,0,295,0,0,0,0,0,0,0,130,5.7,6,6,24.1,2740,9,999999999,170,0.0690,0,88,999.000,999.0,99.0 +1976,12,26,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,5.0,93,101700,0,0,310,0,0,0,0,0,0,0,120,6.2,9,9,24.1,2740,9,999999999,160,0.0690,0,88,999.000,999.0,99.0 +1976,12,26,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,5.0,93,101700,0,0,295,0,0,0,0,0,0,0,110,5.2,6,6,24.1,2740,9,999999999,150,0.0690,0,88,999.000,999.0,99.0 +1976,12,26,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,6.1,89,101500,0,0,307,0,0,0,0,0,0,0,110,5.2,7,7,24.1,1830,9,999999999,139,0.0690,0,88,999.000,999.0,99.0 +1976,12,26,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,6.1,77,101400,0,0,329,0,0,0,0,0,0,0,170,5.2,9,9,24.1,1340,9,999999999,139,0.0690,0,88,999.000,999.0,99.0 +1976,12,26,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,5.6,71,101400,0,0,340,0,0,0,0,0,0,0,190,6.7,10,10,24.1,1130,9,999999999,139,0.0690,0,88,999.000,999.0,99.0 +1976,12,26,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,6.1,83,101500,0,0,333,0,0,0,0,0,0,0,190,7.2,10,10,11.3,1680,9,999999999,150,0.0690,0,88,999.000,999.0,99.0 +1976,12,26,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,6.1,83,101500,2,200,333,1,0,1,0,0,0,0,180,8.8,10,10,24.1,1830,9,999999999,150,0.0630,0,88,999.000,999.0,99.0 +1976,12,26,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,6.7,86,101500,120,1415,334,19,0,19,2200,0,2200,690,140,8.2,10,10,32.2,1680,9,999999999,150,0.0630,0,88,999.000,999.0,99.0 +1976,12,26,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,6.1,83,101500,292,1415,306,142,327,74,14600,24900,9500,1360,160,7.7,5,5,48.3,77777,9,999999999,150,0.0630,0,88,999.000,999.0,99.0 +1976,12,26,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,6.1,74,101500,420,1415,325,118,88,92,13100,8000,10700,2050,190,12.4,8,8,48.3,1070,9,999999999,150,0.0630,0,88,999.000,999.0,99.0 +1976,12,26,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,7.2,83,101500,492,1415,330,109,76,82,12200,7300,9700,1870,180,9.8,9,9,32.2,1070,9,999999999,150,0.0630,0,88,999.000,999.0,99.0 +1976,12,26,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,7.8,83,101400,504,1415,333,108,48,90,11800,4500,10200,2660,180,9.3,10,9,32.2,1070,9,999999999,150,0.0630,0,88,999.000,999.0,99.0 +1976,12,26,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,8.3,83,101300,454,1415,346,80,9,78,9400,500,9300,3180,170,7.7,10,10,32.2,910,9,999999999,160,0.0630,0,88,999.000,999.0,99.0 +1976,12,26,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,8.3,86,101500,347,1415,343,54,27,48,6000,2300,5500,1360,210,5.2,10,10,11.3,700,9,999999999,160,0.0630,0,88,999.000,999.0,99.0 +1976,12,26,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,8.3,86,101500,189,1415,343,44,1,44,4900,0,4900,1480,210,4.6,10,10,11.3,460,9,999999999,160,0.0630,0,88,999.000,999.0,99.0 +1976,12,26,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,7.8,89,101500,25,719,305,11,12,9,0,0,0,0,230,4.1,3,3,16.1,77777,9,999999999,160,0.0630,0,88,999.000,999.0,99.0 +1976,12,26,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,7.8,86,101600,0,0,307,0,0,0,0,0,0,0,210,4.6,3,3,16.1,77777,9,999999999,150,0.0690,0,88,999.000,999.0,99.0 +1976,12,26,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,8.3,89,101700,0,0,324,0,0,0,0,0,0,0,210,7.2,8,8,24.1,1520,9,999999999,150,0.0690,0,88,999.000,999.0,99.0 +1976,12,26,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,7.8,89,101800,0,0,305,0,0,0,0,0,0,0,210,5.2,3,3,24.1,77777,9,999999999,150,0.0690,0,88,999.000,999.0,99.0 +1976,12,26,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,7.2,93,101900,0,0,293,0,0,0,0,0,0,0,190,4.1,1,1,24.1,77777,9,999999999,150,0.0690,0,88,999.000,999.0,99.0 +1976,12,26,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,7.2,93,101900,0,0,287,0,0,0,0,0,0,0,200,4.6,0,0,24.1,77777,9,999999999,150,0.0690,0,88,999.000,999.0,99.0 +1976,12,26,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,5.6,93,102000,0,0,291,0,0,0,0,0,0,0,170,2.6,3,3,24.1,77777,9,999999999,139,0.0690,0,88,999.000,999.0,99.0 +1976,12,26,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,6.1,93,102000,0,0,301,0,0,0,0,0,0,0,190,3.6,6,6,24.1,1340,9,999999999,139,0.0690,0,88,999.000,999.0,99.0 +1976,12,27,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,6.1,89,102100,0,0,307,0,0,0,0,0,0,0,0,0.0,7,7,24.1,1280,9,999999999,139,0.0690,0,88,999.000,999.0,99.0 +1976,12,27,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,6.1,96,102100,0,0,299,0,0,0,0,0,0,0,120,2.1,6,6,24.1,1220,9,999999999,139,0.0690,0,88,999.000,999.0,99.0 +1976,12,27,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,6.1,96,102100,0,0,294,0,0,0,0,0,0,0,30,1.5,4,4,24.1,77777,9,999999999,129,0.0690,0,88,999.000,999.0,99.0 +1976,12,27,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,4.4,93,102100,0,0,274,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,129,0.0690,0,88,999.000,999.0,99.0 +1976,12,27,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,3.9,96,102200,0,0,310,0,0,0,0,0,0,0,0,0.0,10,10,0.4,270,9,999999999,129,0.0690,0,88,999.000,999.0,99.0 +1976,12,27,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,3.9,96,102200,0,0,310,0,0,0,0,0,0,0,0,0.0,10,10,0.8,180,9,999999999,120,0.0690,0,88,999.000,999.0,99.0 +1976,12,27,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,4.4,93,102300,0,0,316,0,0,0,0,0,0,0,0,0.0,10,10,6.4,150,9,999999999,120,0.0690,0,88,999.000,999.0,99.0 +1976,12,27,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,5.0,96,102300,2,177,316,1,0,1,0,0,0,0,270,2.1,10,10,2.4,120,9,999999999,120,0.0330,0,88,999.000,999.0,99.0 +1976,12,27,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,5.0,96,102400,119,1415,316,31,5,31,3500,0,3500,990,310,2.1,10,10,1.3,90,9,999999999,110,0.0330,0,88,999.000,999.0,99.0 +1976,12,27,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,6.1,96,102400,292,1415,323,96,2,95,10400,100,10400,2940,300,2.1,10,10,0.8,60,9,999999999,110,0.0330,0,88,999.000,999.0,99.0 +1976,12,27,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,6.7,96,102400,420,1415,326,121,2,120,13400,100,13400,4190,290,3.1,10,10,1.6,90,9,999999999,110,0.0330,0,88,999.000,999.0,99.0 +1976,12,27,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,6.7,96,102200,493,1415,326,141,3,140,15800,200,15700,5060,310,2.6,10,10,1.6,90,9,999999999,100,0.0330,0,88,999.000,999.0,99.0 +1976,12,27,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,7.2,96,102100,505,1415,329,139,1,139,15700,100,15600,5110,270,3.1,10,10,1.6,60,9,999999999,100,0.0330,0,88,999.000,999.0,99.0 +1976,12,27,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,7.2,96,102000,456,1415,329,134,6,132,14900,400,14800,4660,270,3.1,10,10,1.6,60,9,999999999,100,0.0330,0,88,999.000,999.0,99.0 +1976,12,27,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,6.7,96,102000,349,1415,326,114,3,113,12500,200,12400,3610,300,3.1,10,10,1.6,60,9,999999999,89,0.0330,0,88,999.000,999.0,99.0 +1976,12,27,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,6.7,96,101900,192,1415,326,56,1,56,6200,0,6200,1740,290,1.5,10,10,0.8,60,9,999999999,89,0.0330,0,88,999.000,999.0,99.0 +1976,12,27,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,6.7,96,101900,26,743,326,13,0,13,0,0,0,0,0,0.0,10,10,0.8,60,9,999999999,89,0.0330,0,88,999.000,999.0,99.0 +1976,12,27,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,6.7,96,101900,0,0,326,0,0,0,0,0,0,0,0,0.0,10,10,0.4,60,9,999999999,89,0.0690,0,88,999.000,999.0,99.0 +1976,12,27,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,6.1,100,101800,0,0,304,0,0,0,0,0,0,0,0,0.0,8,8,0.2,77777,9,999999999,89,0.0690,0,88,999.000,999.0,99.0 +1976,12,27,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,5.0,100,101800,0,0,294,0,0,0,0,0,0,0,0,0.0,7,7,0.2,77777,9,999999999,89,0.0690,0,88,999.000,999.0,99.0 +1976,12,27,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,4.4,100,101800,0,0,302,0,0,0,0,0,0,0,0,0.0,9,9,0.2,77777,9,999999999,89,0.0690,0,88,999.000,999.0,99.0 +1976,12,27,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,3.9,96,101700,0,0,301,0,0,0,0,0,0,0,280,2.6,9,9,0.2,77777,9,999999999,89,0.0690,0,88,999.000,999.0,99.0 +1976,12,27,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,3.9,100,101700,0,0,293,0,0,0,0,0,0,0,300,2.6,8,8,0.2,77777,9,999999999,80,0.0690,0,88,999.000,999.0,99.0 +1976,12,27,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,3.3,100,101700,0,0,304,0,0,0,0,0,0,0,300,3.1,10,10,0.2,60,9,999999999,80,0.0690,0,88,999.000,999.0,99.0 +1976,12,28,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,2.2,100,101700,0,0,298,0,0,0,0,0,0,0,270,3.1,10,10,0.2,60,9,999999999,80,0.0690,0,88,999.000,999.0,99.0 +1976,12,28,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,1.7,100,101700,0,0,296,0,0,0,0,0,0,0,320,2.1,10,10,0.2,30,9,999999999,80,0.0690,0,88,999.000,999.0,99.0 +1976,12,28,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.1,1.1,100,101700,0,0,292,0,0,0,0,0,0,0,360,1.5,10,10,0.2,30,9,999999999,80,0.0690,0,88,999.000,999.0,99.0 +1976,12,28,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.1,1.1,100,101600,0,0,292,0,0,0,0,0,0,0,310,1.5,10,10,0.2,30,9,999999999,80,0.0690,0,88,999.000,999.0,99.0 +1976,12,28,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.6,0.6,100,101600,0,0,290,0,0,0,0,0,0,0,350,2.1,10,10,0.2,30,9,999999999,80,0.0690,0,88,999.000,999.0,99.0 +1976,12,28,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.0,0.0,100,101500,0,0,287,0,0,0,0,0,0,0,290,4.1,10,10,0.1,30,9,999999999,80,0.0690,0,88,999.000,999.0,99.0 +1976,12,28,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-0.6,-0.6,100,101500,0,0,284,0,0,0,0,0,0,0,0,0.0,10,10,0.2,30,9,999999999,80,0.0690,0,88,999.000,999.0,99.0 +1976,12,28,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-0.6,-0.6,100,101500,1,177,284,1,0,1,0,0,0,0,0,0.0,10,10,0.2,60,9,999999999,80,0.1390,0,88,999.000,999.0,99.0 +1976,12,28,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-0.6,-0.6,100,101500,118,1415,270,24,1,24,2700,0,2700,820,290,2.1,8,8,0.1,77777,9,999999999,80,0.1390,0,88,999.000,999.0,99.0 +1976,12,28,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.6,0.6,100,101500,292,1415,264,111,142,81,12000,11300,9700,1750,300,2.6,10,4,0.1,77777,9,999999999,80,0.1390,0,88,999.000,999.0,99.0 +1976,12,28,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,3.9,93,101500,420,1415,280,224,381,110,23100,33500,13100,2090,20,2.6,10,2,80.5,77777,9,999999999,69,0.1390,0,88,999.000,999.0,99.0 +1976,12,28,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,3.3,71,101400,494,1415,298,233,227,153,24500,21600,16900,3210,140,8.2,10,4,80.5,77777,9,999999999,69,0.1390,0,88,999.000,999.0,99.0 +1976,12,28,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,2.2,68,101400,506,1415,308,186,109,147,20300,10500,16500,3370,130,7.7,10,8,80.5,7620,9,999999999,69,0.1390,0,88,999.000,999.0,99.0 +1976,12,28,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,1.7,66,101400,458,1415,314,130,27,122,14300,2500,13500,3300,150,8.2,10,9,80.5,7620,9,999999999,69,0.1390,0,88,999.000,999.0,99.0 +1976,12,28,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,1.1,63,101500,351,1415,322,119,92,96,12900,7900,11000,2100,130,7.2,10,10,80.5,6100,9,999999999,69,0.1390,0,88,999.000,999.0,99.0 +1976,12,28,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,1.1,68,101500,194,1415,317,41,1,41,4600,0,4600,1420,140,7.2,10,10,80.5,6100,9,999999999,69,0.1390,0,88,999.000,999.0,99.0 +1976,12,28,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,1.1,71,101400,27,766,314,8,0,8,0,0,0,0,120,6.2,10,10,80.5,6100,9,999999999,69,0.1390,0,88,999.000,999.0,99.0 +1976,12,28,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,1.1,73,101300,0,0,312,0,0,0,0,0,0,0,120,8.2,10,10,24.1,6100,9,999999999,80,0.0690,0,88,999.000,999.0,99.0 +1976,12,28,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,0.6,71,101300,0,0,303,0,0,0,0,0,0,0,120,6.7,10,9,24.1,6100,9,999999999,80,0.0690,0,88,999.000,999.0,99.0 +1976,12,28,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,0.6,71,101300,0,0,292,0,0,0,0,0,0,0,120,6.2,10,7,24.1,6100,9,999999999,80,0.0690,0,88,999.000,999.0,99.0 +1976,12,28,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,0.0,68,101300,0,0,311,0,0,0,0,0,0,0,120,7.2,10,10,24.1,1830,9,999999999,89,0.0690,0,88,999.000,999.0,99.0 +1976,12,28,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,0.6,68,101400,0,0,314,0,0,0,0,0,0,0,110,3.1,10,10,24.1,1830,9,999999999,89,0.0690,0,88,999.000,999.0,99.0 +1976,12,28,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,0.6,71,101400,0,0,312,0,0,0,0,0,0,0,160,4.1,10,10,24.1,1830,9,999999999,89,0.0690,0,88,999.000,999.0,99.0 +1976,12,28,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,1.7,79,101400,0,0,310,0,0,0,0,0,0,0,120,6.7,10,10,19.3,1340,9,999999999,100,0.0690,0,88,999.000,999.0,99.0 +1976,12,29,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,1.7,79,101500,0,0,310,0,0,0,0,0,0,0,100,5.7,10,10,12.9,1220,9,999999999,100,0.0690,0,88,999.000,999.0,99.0 +1976,12,29,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,2.2,86,101500,0,0,308,0,0,0,0,0,0,0,100,5.7,10,10,19.3,1490,9,999999999,100,0.0690,0,88,999.000,999.0,99.0 +1976,12,29,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,2.2,82,101500,0,0,311,0,0,0,0,0,0,0,100,6.2,10,10,19.3,1340,9,999999999,110,0.0690,0,88,999.000,999.0,99.0 +1976,12,29,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,2.8,86,101400,0,0,311,0,0,0,0,0,0,0,100,5.7,10,10,24.1,910,9,999999999,110,0.0690,0,88,999.000,999.0,99.0 +1976,12,29,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,2.2,86,101400,0,0,308,0,0,0,0,0,0,0,90,3.6,10,10,24.1,910,9,999999999,110,0.0690,0,88,999.000,999.0,99.0 +1976,12,29,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,2.2,86,101400,0,0,308,0,0,0,0,0,0,0,130,3.6,10,10,24.1,940,9,999999999,110,0.0690,0,88,999.000,999.0,99.0 +1976,12,29,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,2.8,89,101400,0,0,309,0,0,0,0,0,0,0,340,2.1,10,10,24.1,1070,9,999999999,110,0.0690,0,88,999.000,999.0,99.0 +1976,12,29,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,2.2,86,101400,1,177,289,3,2,2,0,0,0,0,0,0.0,10,7,32.2,910,9,999999999,110,0.0320,0,88,999.000,999.0,99.0 +1976,12,29,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,3.3,93,101400,118,1415,290,42,51,37,4400,2500,4200,770,0,0.0,9,7,64.4,1520,9,999999999,110,0.0320,0,88,999.000,999.0,99.0 +1976,12,29,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,3.3,89,101400,292,1415,289,127,221,81,13300,16900,9800,1570,330,1.5,9,6,80.5,1520,9,999999999,110,0.0320,0,88,999.000,999.0,99.0 +1976,12,29,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,3.3,86,101300,421,1415,289,225,274,142,23300,24600,16000,2980,310,2.6,10,5,64.4,77777,9,999999999,110,0.0320,0,88,999.000,999.0,99.0 +1976,12,29,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,3.3,83,101200,495,1415,289,292,497,118,30600,46100,14400,2260,0,0.0,10,4,64.4,77777,9,999999999,110,0.0320,0,88,999.000,999.0,99.0 +1976,12,29,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,4.4,80,101100,508,1415,299,196,83,166,21500,7900,18600,4380,0,0.0,10,5,80.5,77777,9,999999999,110,0.0320,0,88,999.000,999.0,99.0 +1976,12,29,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,3.9,77,101000,460,1415,299,228,254,145,23900,23600,16200,3030,270,1.5,10,5,80.5,77777,9,999999999,110,0.0320,0,88,999.000,999.0,99.0 +1976,12,29,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,3.3,74,101000,353,1415,296,189,367,97,19400,30300,11800,1820,250,2.1,10,4,64.4,77777,9,999999999,110,0.0320,0,88,999.000,999.0,99.0 +1976,12,29,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,2.2,71,100900,197,1415,292,82,173,58,8600,10500,7100,1120,180,2.6,10,4,64.4,77777,9,999999999,110,0.0320,0,88,999.000,999.0,99.0 +1976,12,29,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,1.1,71,100900,29,790,281,19,61,14,0,0,0,0,130,5.2,7,2,72.4,77777,9,999999999,110,0.0320,0,88,999.000,999.0,99.0 +1976,12,29,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,0.6,71,100900,0,0,286,0,0,0,0,0,0,0,130,4.6,7,5,24.1,7620,9,999999999,110,0.0690,0,88,999.000,999.0,99.0 +1976,12,29,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,0.6,71,100900,0,0,279,0,0,0,0,0,0,0,130,5.2,7,2,24.1,77777,9,999999999,110,0.0690,0,88,999.000,999.0,99.0 +1976,12,29,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,0.6,71,100900,0,0,279,0,0,0,0,0,0,0,120,6.2,10,2,24.1,77777,9,999999999,110,0.0690,0,88,999.000,999.0,99.0 +1976,12,29,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,0.6,68,100800,0,0,277,0,0,0,0,0,0,0,130,4.1,10,1,24.1,77777,9,999999999,110,0.0690,0,88,999.000,999.0,99.0 +1976,12,29,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,0.6,71,100800,0,0,284,0,0,0,0,0,0,0,120,5.7,7,4,24.1,7620,9,999999999,100,0.0690,0,88,999.000,999.0,99.0 +1976,12,29,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,-0.6,65,100800,0,0,285,0,0,0,0,0,0,0,120,5.7,5,5,24.1,77777,9,999999999,100,0.0690,0,88,999.000,999.0,99.0 +1976,12,29,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,-1.1,73,100900,0,0,260,0,0,0,0,0,0,0,120,4.1,0,0,24.1,77777,9,999999999,100,0.0690,0,88,999.000,999.0,99.0 +1976,12,30,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,-1.1,70,100800,0,0,262,0,0,0,0,0,0,0,100,4.6,0,0,24.1,77777,9,999999999,100,0.0690,0,88,999.000,999.0,99.0 +1976,12,30,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,-1.1,73,100900,0,0,260,0,0,0,0,0,0,0,100,5.7,0,0,24.1,77777,9,999999999,100,0.0690,0,88,999.000,999.0,99.0 +1976,12,30,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,-1.1,70,100900,0,0,262,0,0,0,0,0,0,0,100,6.2,0,0,24.1,77777,9,999999999,100,0.0690,0,88,999.000,999.0,99.0 +1976,12,30,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,-1.7,65,100900,0,0,263,0,0,0,0,0,0,0,100,6.2,0,0,24.1,77777,9,999999999,100,0.0690,0,88,999.000,999.0,99.0 +1976,12,30,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,-2.2,65,100900,0,0,261,0,0,0,0,0,0,0,100,5.7,0,0,24.1,77777,9,999999999,100,0.0690,0,88,999.000,999.0,99.0 +1976,12,30,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,-2.8,58,101000,0,0,264,0,0,0,0,0,0,0,80,6.7,0,0,24.1,77777,9,999999999,100,0.0690,0,88,999.000,999.0,99.0 +1976,12,30,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,-2.2,67,101000,0,0,259,0,0,0,0,0,0,0,80,3.1,0,0,24.1,77777,9,999999999,89,0.0690,0,88,999.000,999.0,99.0 +1976,12,30,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,-2.2,70,101100,1,177,257,6,23,1,0,0,0,0,90,6.2,1,0,80.5,77777,9,999999999,89,0.0300,0,88,999.000,999.0,99.0 +1976,12,30,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,-1.7,67,101200,118,1415,261,55,448,17,5800,28300,3400,360,110,6.2,0,0,80.5,77777,9,999999999,89,0.0300,0,88,999.000,999.0,99.0 +1976,12,30,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,-1.7,60,101200,292,1415,268,174,700,28,18400,57600,6400,710,90,5.7,0,0,80.5,77777,9,999999999,89,0.0300,0,88,999.000,999.0,99.0 +1976,12,30,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,-1.7,54,101300,421,1415,274,275,799,35,29100,71900,7600,910,120,6.7,0,0,80.5,77777,9,999999999,89,0.0300,0,88,999.000,999.0,99.0 +1976,12,30,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,-2.2,48,101200,496,1415,278,340,853,39,36000,79200,8100,1020,110,6.7,0,0,80.5,77777,9,999999999,89,0.0300,0,88,999.000,999.0,99.0 +1976,12,30,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,-1.7,48,101200,510,1415,281,349,853,40,37000,79600,8100,1050,120,6.2,0,0,80.5,77777,9,999999999,89,0.0300,0,88,999.000,999.0,99.0 +1976,12,30,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,-1.7,48,101200,462,1415,281,311,835,37,33000,76600,7900,970,120,6.2,0,0,80.5,77777,9,999999999,80,0.0300,0,88,999.000,999.0,99.0 +1976,12,30,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,-1.1,52,101200,356,1415,279,224,763,32,23900,66100,7100,820,120,6.7,0,0,80.5,77777,9,999999999,80,0.0300,0,88,999.000,999.0,99.0 +1976,12,30,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,-2.2,51,101200,200,1415,273,106,589,23,11300,43500,5100,540,120,7.2,0,0,80.5,77777,9,999999999,80,0.0300,0,88,999.000,999.0,99.0 +1976,12,30,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,-2.2,60,101200,30,790,265,24,164,9,0,0,0,0,120,7.2,0,0,80.5,77777,9,999999999,80,0.0300,0,88,999.000,999.0,99.0 +1976,12,30,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,-2.2,62,101200,0,0,263,0,0,0,0,0,0,0,120,6.2,0,0,24.1,77777,9,999999999,80,0.0690,0,88,999.000,999.0,99.0 +1976,12,30,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,-2.2,62,101200,0,0,263,0,0,0,0,0,0,0,130,7.7,0,0,24.1,77777,9,999999999,80,0.0690,0,88,999.000,999.0,99.0 +1976,12,30,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,-2.8,65,101300,0,0,258,0,0,0,0,0,0,0,110,5.7,0,0,24.1,77777,9,999999999,80,0.0690,0,88,999.000,999.0,99.0 +1976,12,30,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,-2.8,67,101300,0,0,256,0,0,0,0,0,0,0,90,3.6,0,0,24.1,77777,9,999999999,80,0.0690,0,88,999.000,999.0,99.0 +1976,12,30,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,-3.3,70,101300,0,0,252,0,0,0,0,0,0,0,110,5.2,0,0,24.1,77777,9,999999999,80,0.0690,0,88,999.000,999.0,99.0 +1976,12,30,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.1,-2.2,79,101400,0,0,250,0,0,0,0,0,0,0,100,1.5,0,0,24.1,77777,9,999999999,80,0.0690,0,88,999.000,999.0,99.0 +1976,12,30,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.6,-1.7,85,101400,0,0,249,0,0,0,0,0,0,0,80,1.5,0,0,24.1,77777,9,999999999,80,0.0690,0,88,999.000,999.0,99.0 +1976,12,31,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.1,-2.2,92,101400,0,0,242,0,0,0,0,0,0,0,300,1.5,0,0,24.1,77777,9,999999999,80,0.0690,0,88,999.000,999.0,99.0 +1976,12,31,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.7,-3.9,85,101500,0,0,239,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,80,0.0690,0,88,999.000,999.0,99.0 +1976,12,31,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.7,-3.9,85,101500,0,0,239,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,80,0.0690,0,88,999.000,999.0,99.0 +1976,12,31,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-2.2,-3.3,92,101400,0,0,238,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,80,0.0690,0,88,999.000,999.0,99.0 +1976,12,31,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-3.9,-5.0,92,101400,0,0,230,0,0,0,0,0,0,0,260,1.5,0,0,24.1,77777,9,999999999,80,0.0690,0,88,999.000,999.0,99.0 +1976,12,31,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-3.9,-4.4,96,101400,0,0,231,0,0,0,0,0,0,0,260,3.1,0,0,19.3,77777,9,999999999,80,0.0690,0,88,999.000,999.0,99.0 +1976,12,31,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-4.4,-5.6,92,101400,0,0,228,0,0,0,0,0,0,0,280,1.5,0,0,19.3,77777,9,999999999,80,0.0690,0,88,999.000,999.0,99.0 +1976,12,31,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-4.4,-5.0,96,101500,1,177,244,0,0,0,0,0,0,0,0,0.0,6,6,0.1,77777,9,999999999,80,0.1490,0,88,999.000,999.0,99.0 +1976,12,31,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-3.9,-4.4,96,101500,118,1415,245,30,52,26,3300,2600,3100,540,250,1.5,5,5,0.4,77777,9,999999999,80,0.1490,0,88,999.000,999.0,99.0 +1976,12,31,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-0.6,-0.6,100,101500,292,1415,246,143,401,59,14500,30900,8100,1040,270,3.1,0,0,1.6,77777,9,999999999,80,0.1490,0,88,999.000,999.0,99.0 +1976,12,31,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,-0.6,85,101400,422,1415,254,240,546,76,24700,48000,10300,1410,300,3.1,0,0,80.5,77777,9,999999999,80,0.1490,0,88,999.000,999.0,99.0 +1976,12,31,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,-1.1,70,101400,497,1415,262,302,610,86,31200,56200,11400,1640,300,2.1,0,0,80.5,77777,9,999999999,80,0.1490,0,88,999.000,999.0,99.0 +1976,12,31,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,-3.3,53,101300,511,1415,266,312,619,88,32500,57400,11600,1690,300,2.6,0,0,80.5,77777,9,999999999,80,0.1490,0,88,999.000,999.0,99.0 +1976,12,31,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,-3.3,49,101300,464,1415,270,273,582,81,28200,52600,10900,1530,340,2.1,0,0,80.5,77777,9,999999999,80,0.1490,0,88,999.000,999.0,99.0 +1976,12,31,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,-2.2,53,101200,359,1415,272,189,479,68,19500,39900,9300,1230,130,3.1,0,0,80.5,77777,9,999999999,80,0.1490,0,88,999.000,999.0,99.0 +1976,12,31,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,-2.8,58,101200,203,1415,264,83,264,46,8800,16800,6300,830,120,5.7,0,0,80.5,77777,9,999999999,80,0.1490,0,88,999.000,999.0,99.0 +1976,12,31,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,-3.3,65,101200,32,814,256,13,19,11,0,0,0,0,120,6.7,0,0,32.2,77777,9,999999999,80,0.1490,0,88,999.000,999.0,99.0 +1976,12,31,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,-3.3,70,101200,0,0,252,0,0,0,0,0,0,0,120,6.2,0,0,24.1,77777,9,999999999,80,0.0690,0,88,999.000,999.0,99.0 +1976,12,31,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,-3.3,70,101200,0,0,252,0,0,0,0,0,0,0,120,5.2,0,0,24.1,77777,9,999999999,89,0.0690,0,88,999.000,999.0,99.0 +1976,12,31,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.1,-3.9,70,101200,0,0,249,0,0,0,0,0,0,0,130,6.7,0,0,24.1,77777,9,999999999,89,0.0690,0,88,999.000,999.0,99.0 +1976,12,31,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,-3.9,67,101200,0,0,251,0,0,0,0,0,0,0,130,6.2,0,0,24.1,77777,9,999999999,89,0.0690,0,88,999.000,999.0,99.0 +1976,12,31,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.1,-4.4,67,101200,0,0,248,0,0,0,0,0,0,0,120,4.6,0,0,24.1,77777,9,999999999,89,0.0690,0,88,999.000,999.0,99.0 +1976,12,31,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,-5.0,62,101200,0,0,250,0,0,0,0,0,0,0,110,6.7,0,0,24.1,77777,9,999999999,89,0.0690,0,88,999.000,999.0,99.0 +1976,12,31,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.6,-4.4,70,101200,0,0,251,0,0,0,0,0,0,0,80,3.1,1,1,24.1,77777,9,999999999,89,0.0690,0,88,999.000,999.0,99.0 diff --git a/example_files/resources/hpxml-measures/workflow/run_simulation.rb b/example_files/resources/hpxml-measures/workflow/run_simulation.rb index ffbd60c1..389a41ff 100644 --- a/example_files/resources/hpxml-measures/workflow/run_simulation.rb +++ b/example_files/resources/hpxml-measures/workflow/run_simulation.rb @@ -10,7 +10,7 @@ basedir = File.expand_path(File.dirname(__FILE__)) -def run_workflow(basedir, rundir, hpxml, debug, timeseries_output_freq, timeseries_outputs) +def run_workflow(basedir, rundir, hpxml, debug, timeseries_output_freq, timeseries_outputs, skip_validation, output_format, building_id) measures_dir = File.join(basedir, '..') measures = {} @@ -21,28 +21,32 @@ def run_workflow(basedir, rundir, hpxml, debug, timeseries_output_freq, timeseri args['hpxml_path'] = hpxml args['output_dir'] = rundir args['debug'] = debug + args['skip_validation'] = skip_validation + args['building_id'] = building_id update_args_hash(measures, measure_subdir, args) # Add reporting measure to workflow measure_subdir = 'SimulationOutputReport' args = {} + args['output_format'] = output_format args['timeseries_frequency'] = timeseries_output_freq args['include_timeseries_fuel_consumptions'] = timeseries_outputs.include? 'fuels' args['include_timeseries_end_use_consumptions'] = timeseries_outputs.include? 'enduses' args['include_timeseries_hot_water_uses'] = timeseries_outputs.include? 'hotwater' args['include_timeseries_total_loads'] = timeseries_outputs.include? 'loads' args['include_timeseries_component_loads'] = timeseries_outputs.include? 'componentloads' + args['include_timeseries_unmet_loads'] = timeseries_outputs.include? 'unmetloads' args['include_timeseries_zone_temperatures'] = timeseries_outputs.include? 'temperatures' args['include_timeseries_airflows'] = timeseries_outputs.include? 'airflows' args['include_timeseries_weather'] = timeseries_outputs.include? 'weather' update_args_hash(measures, measure_subdir, args) - results = run_hpxml_workflow(rundir, hpxml, measures, measures_dir, debug: debug) + results = run_hpxml_workflow(rundir, measures, measures_dir, debug: debug) return results[:success] end -timeseries_types = ['ALL', 'fuels', 'enduses', 'hotwater', 'loads', 'componentloads', 'temperatures', 'airflows', 'weather'] +timeseries_types = ['ALL', 'fuels', 'enduses', 'hotwater', 'loads', 'componentloads', 'unmetloads', 'temperatures', 'airflows', 'weather'] options = {} OptionParser.new do |opts| @@ -56,6 +60,10 @@ def run_workflow(basedir, rundir, hpxml, debug, timeseries_output_freq, timeseri options[:output_dir] = t end + opts.on('--output-format TYPE', ['csv', 'json'], 'Output file format type (csv, json)') do |t| + options[:output_format] = t + end + options[:hourly_outputs] = [] opts.on('--hourly TYPE', timeseries_types, "Request hourly output type (#{timeseries_types[0..4].join(', ')},", "#{timeseries_types[5..-1].join(', ')}); can be called multiple times") do |t| options[:hourly_outputs] << t @@ -76,6 +84,15 @@ def run_workflow(basedir, rundir, hpxml, debug, timeseries_output_freq, timeseri options[:timestep_outputs] << t end + options[:skip_validation] = false + opts.on('-s', '--skip-validation', 'Skip Schema/Schematron validation') do |t| + options[:skip_validation] = true + end + + opts.on('-b', '--building-id ', 'ID of Building to simulate (required when multiple HPXML Building elements)') do |t| + options[:building_id] = t + end + options[:version] = false opts.on('-v', '--version', 'Reports the version') do |t| options[:version] = true @@ -154,10 +171,11 @@ def run_workflow(basedir, rundir, hpxml, debug, timeseries_output_freq, timeseri # Run design puts "HPXML: #{options[:hpxml]}" -success = run_workflow(basedir, rundir, options[:hpxml], options[:debug], timeseries_output_freq, timeseries_outputs) +success = run_workflow(basedir, rundir, options[:hpxml], options[:debug], timeseries_output_freq, timeseries_outputs, + options[:skip_validation], options[:output_format], options[:building_id]) if not success exit! 1 end -puts "Completed in #{(Time.now - start_time).round(1)} seconds." +puts "Completed in #{(Time.now - start_time).round(1)}s." diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-coal.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-coal.xml index 85f54354..6c4b26d9 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-coal.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-coal.xml @@ -371,6 +371,7 @@ attic - unvented 50.0 + 2 2700.0 @@ -428,7 +429,6 @@ living space coal 3.3 - moisture diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-dehumidifier-50percent.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-dehumidifier-50percent.xml index 0f378261..5d1e312e 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-dehumidifier-50percent.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-dehumidifier-50percent.xml @@ -325,6 +325,7 @@ under slab 50.0 + 1 1350.0 @@ -382,7 +383,6 @@ living space electricity 3.73 - timer true 150.0 @@ -407,6 +407,7 @@ portable + living space 40.0 1.8 0.5 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-dehumidifier-ief-portable.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-dehumidifier-ief-portable.xml index f25a4589..a0687c98 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-dehumidifier-ief-portable.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-dehumidifier-ief-portable.xml @@ -325,6 +325,7 @@ under slab 50.0 + 1 1350.0 @@ -382,7 +383,6 @@ living space electricity 3.73 - timer true 150.0 @@ -407,6 +407,7 @@ portable + living space 40.0 1.5 0.5 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-dehumidifier-ief-whole-home.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-dehumidifier-ief-whole-home.xml index cbd51c50..f8ccc1b5 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-dehumidifier-ief-whole-home.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-dehumidifier-ief-whole-home.xml @@ -325,6 +325,7 @@ under slab 50.0 + 1 1350.0 @@ -382,7 +383,6 @@ living space electricity 3.73 - timer true 150.0 @@ -407,6 +407,7 @@ whole-home + living space 40.0 1.5 0.5 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-dehumidifier-multiple.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-dehumidifier-multiple.xml new file mode 100644 index 00000000..4c6c11aa --- /dev/null +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-dehumidifier-multiple.xml @@ -0,0 +1,534 @@ + + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + + + + +
+ TX +
+
+ + proposed workscope + + + + + suburban + + electricity + natural gas + + + + 3.0 + + + single-family detached + 1.0 + 1.0 + 3 + 2 + 1350.0 + 10800.0 + + + + + 2006 + 3A + + + + Dallas, TX + + USA_TX_Dallas-Fort.Worth.Intl.AP.722590_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 10800.0 + + + + + + + + false + + + false + + + + + + + + + + + + + + attic - unvented + 1510.0 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + outside + attic - unvented + + + + 290.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + attic - unvented + living space + 1350.0 + + + 39.3 + + + + + + + living space + 1350.0 + 4.0 + 150.0 + 0.0 + true + 0.0 + + + + 0.0 + + + + + + 5.0 + + + + 1.0 + 2.5 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 0 + 4.4 + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + natural gas + 64000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 48000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + manual thermostat + 68.0 + 78.0 + + + + + + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + supply + 4.0 + under slab + 150.0 + + + return + 0.0 + under slab + 50.0 + + 1 + + + 1350.0 + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + + true + 150.0 + + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + portable + living space + 40.0 + 1.8 + 0.5 + 0.5 + + + + portable + living space + 30.0 + 1.6 + 0.5 + 0.25 + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + exterior + 0.4 + + + + + + + garage + 0.4 + + + + + + + interior + 0.1 + + + + + + + exterior + 0.1 + + + + + + + garage + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.25 + + + + + + + garage + 0.25 + + + + + + + + + other + + kWh/year + 1228.5 + + + 0.855 + 0.045 + + + + + TV other + + kWh/year + 620.0 + + + + +
+
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-dehumidifier.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-dehumidifier.xml index 5b0e5bcf..20e73d7a 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-dehumidifier.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-dehumidifier.xml @@ -325,6 +325,7 @@ under slab 50.0 + 1 1350.0 @@ -382,7 +383,6 @@ living space electricity 3.73 - timer true 150.0 @@ -407,6 +407,7 @@ portable + living space 40.0 1.8 0.5 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-gas.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-gas.xml index ffbe0102..3cf3e350 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-gas.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-gas.xml @@ -371,6 +371,7 @@ attic - unvented 50.0 + 2 2700.0 @@ -428,7 +429,6 @@ living space natural gas 3.3 - moisture diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-modified.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-modified.xml index 7206e4c0..b77ae502 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-modified.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-modified.xml @@ -371,6 +371,7 @@ attic - unvented 50.0 + 2 2700.0 @@ -428,7 +429,6 @@ living space electricity 4.29 - moisture false diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-none.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-none.xml index dc8b2e9f..677d42d2 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-none.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-none.xml @@ -371,6 +371,7 @@ attic - unvented 50.0 + 2 2700.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-oil.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-oil.xml index 35fbf88d..2240a932 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-oil.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-oil.xml @@ -371,6 +371,7 @@ attic - unvented 50.0 + 2 2700.0 @@ -428,7 +429,6 @@ living space fuel oil 3.3 - moisture diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-propane.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-propane.xml index f6ab9173..244d577c 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-propane.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-propane.xml @@ -371,6 +371,7 @@ attic - unvented 50.0 + 2 2700.0 @@ -428,7 +429,6 @@ living space propane 3.3 - moisture diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-wood.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-wood.xml index 7417e589..cff10166 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-wood.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-wood.xml @@ -371,6 +371,7 @@ attic - unvented 50.0 + 2 2700.0 @@ -428,7 +429,6 @@ living space wood 3.3 - moisture diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-atticroof-cathedral.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-atticroof-cathedral.xml index 40bc6c20..4367394f 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-atticroof-cathedral.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-atticroof-cathedral.xml @@ -374,6 +374,7 @@ living space 50.0 + 2 2700.0 @@ -431,7 +432,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-atticroof-conditioned.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-atticroof-conditioned.xml index c7c5e437..7db0ea7d 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-atticroof-conditioned.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-atticroof-conditioned.xml @@ -418,7 +418,7 @@ supply CFM25 - 1.5 + 50.0 to outside @@ -426,7 +426,7 @@ return CFM25 - 1.5 + 100.0 to outside @@ -442,6 +442,7 @@ living space 50.0 + 3 3600.0 @@ -499,7 +500,6 @@ basement - conditioned electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-atticroof-flat.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-atticroof-flat.xml index 70bae91a..2eff52d0 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-atticroof-flat.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-atticroof-flat.xml @@ -340,6 +340,7 @@ basement - conditioned 50.0 + 2 2700.0 @@ -397,7 +398,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-atticroof-radiant-barrier.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-atticroof-radiant-barrier.xml index e0cb4dc2..cfaf9141 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-atticroof-radiant-barrier.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-atticroof-radiant-barrier.xml @@ -326,6 +326,7 @@ under slab 50.0 + 1 1350.0 @@ -383,7 +384,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-atticroof-unvented-insulated-roof.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-atticroof-unvented-insulated-roof.xml index 00a58613..0f9f3825 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-atticroof-unvented-insulated-roof.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-atticroof-unvented-insulated-roof.xml @@ -371,6 +371,7 @@ attic - unvented 50.0 + 2 2700.0 @@ -428,7 +429,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-atticroof-vented.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-atticroof-vented.xml index 77f4495e..14080fe9 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-atticroof-vented.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-atticroof-vented.xml @@ -374,6 +374,7 @@ attic - vented 50.0 + 2 2700.0 @@ -431,7 +432,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-adjacent-to-multifamily-buffer-space.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-adjacent-to-multifamily-buffer-space.xml index 0eba8c8c..7d0f0282 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-adjacent-to-multifamily-buffer-space.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-adjacent-to-multifamily-buffer-space.xml @@ -263,6 +263,7 @@ other multifamily buffer space 50.0 + 1 900.0 @@ -320,7 +321,6 @@ other multifamily buffer space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-adjacent-to-multiple.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-adjacent-to-multiple.xml index 85f9243c..20636475 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-adjacent-to-multiple.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-adjacent-to-multiple.xml @@ -362,6 +362,7 @@ roof deck 50.0 + 1 900.0 @@ -419,7 +420,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-adjacent-to-non-freezing-space.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-adjacent-to-non-freezing-space.xml index 70d68e2a..d75529a0 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-adjacent-to-non-freezing-space.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-adjacent-to-non-freezing-space.xml @@ -263,6 +263,7 @@ other non-freezing space 50.0 + 1 900.0 @@ -320,7 +321,6 @@ other non-freezing space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-adjacent-to-other-heated-space.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-adjacent-to-other-heated-space.xml index e70f9fa4..9ca4f32f 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-adjacent-to-other-heated-space.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-adjacent-to-other-heated-space.xml @@ -263,6 +263,7 @@ other heated space 50.0 + 1 900.0 @@ -320,7 +321,6 @@ other heated space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-adjacent-to-other-housing-unit.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-adjacent-to-other-housing-unit.xml index 1ecd6952..388adce0 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-adjacent-to-other-housing-unit.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-adjacent-to-other-housing-unit.xml @@ -263,6 +263,7 @@ other housing unit 50.0 + 1 900.0 @@ -320,7 +321,6 @@ other housing unit electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-chiller-baseboard.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-chiller-baseboard.xml index 873c22b2..a76208e1 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-chiller-baseboard.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-chiller-baseboard.xml @@ -292,7 +292,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-chiller-fan-coil-ducted.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-chiller-fan-coil-ducted.xml index 5c0e12e9..59956814 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-chiller-fan-coil-ducted.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-chiller-fan-coil-ducted.xml @@ -236,8 +236,8 @@ - - fan coil + + fan coil supply @@ -266,7 +266,8 @@ other multifamily buffer space 20.0 - + 1 + 900.0 @@ -323,7 +324,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-chiller-fan-coil.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-chiller-fan-coil.xml index 8dbbac2e..9fe1c1d5 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-chiller-fan-coil.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-chiller-fan-coil.xml @@ -236,9 +236,26 @@ - - fan coil - + + fan coil + + supply + + CFM25 + 0.0 + to outside + + + + return + + CFM25 + 0.0 + to outside + + + 1 + 900.0 @@ -295,7 +312,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-chiller-water-loop-heat-pump.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-chiller-water-loop-heat-pump.xml index cdd7f005..3395a805 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-chiller-water-loop-heat-pump.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-chiller-water-loop-heat-pump.xml @@ -205,12 +205,6 @@ 1.0 600.0 - - - COP - 4.4 - - @@ -228,15 +222,24 @@ 600.0 - - 24000.0 - - EER - 12.8 - - + + + + water-loop-to-air + electricity + 24000.0 + 24000.0 + + EER + 12.8 + + + COP + 4.4 + + @@ -247,8 +250,15 @@ - - water loop heat pump + + water loop + + + + + + + supply @@ -277,8 +287,8 @@ other multifamily buffer space 20.0 - 3 - + 1 + 900.0 @@ -335,7 +345,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-cooling-tower-water-loop-heat-pump.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-cooling-tower-water-loop-heat-pump.xml index b4bfda15..132b6b08 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-cooling-tower-water-loop-heat-pump.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-cooling-tower-water-loop-heat-pump.xml @@ -205,12 +205,6 @@ 1.0 600.0 - - - COP - 4.4 - - @@ -223,15 +217,24 @@ 1.0 600.0 - - 24000.0 - - EER - 12.8 - - + + + + water-loop-to-air + electricity + 24000.0 + 24000.0 + + EER + 12.8 + + + COP + 4.4 + + @@ -242,8 +245,15 @@ - - water loop heat pump + + water loop + + + + + + + supply @@ -272,8 +282,8 @@ other multifamily buffer space 20.0 - 3 - + 1 + 900.0 @@ -330,7 +340,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-only-baseboard.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-only-baseboard.xml index 98d5c766..a77d8a82 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-only-baseboard.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-only-baseboard.xml @@ -275,7 +275,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-only-fan-coil-ducted.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-only-fan-coil-ducted.xml index 910112dc..c95ea0e4 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-only-fan-coil-ducted.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-only-fan-coil-ducted.xml @@ -218,8 +218,8 @@ - - fan coil + + fan coil supply @@ -248,7 +248,8 @@ other multifamily buffer space 20.0 - + 1 + 900.0 @@ -305,7 +306,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-only-fan-coil-eae.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-only-fan-coil-eae.xml index 6cee4a28..33552b44 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-only-fan-coil-eae.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-only-fan-coil-eae.xml @@ -215,9 +215,26 @@ - - fan coil - + + fan coil + + supply + + CFM25 + 0.0 + to outside + + + + return + + CFM25 + 0.0 + to outside + + + 1 + 900.0 @@ -274,7 +291,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-only-fan-coil.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-only-fan-coil.xml index 1d717f7d..0d021066 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-only-fan-coil.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-only-fan-coil.xml @@ -218,9 +218,26 @@ - - fan coil - + + fan coil + + supply + + CFM25 + 0.0 + to outside + + + + return + + CFM25 + 0.0 + to outside + + + 1 + 900.0 @@ -277,7 +294,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-only-water-loop-heat-pump.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-only-water-loop-heat-pump.xml index c4b47d53..457c6554 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-only-water-loop-heat-pump.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-only-water-loop-heat-pump.xml @@ -205,14 +205,19 @@ 1.0 600.0 - - - COP - 4.4 - - + + + + water-loop-to-air + electricity + 24000.0 + + COP + 4.4 + + @@ -223,8 +228,15 @@ - - water loop heat pump + + water loop + + + + + + + supply @@ -253,8 +265,8 @@ other multifamily buffer space 20.0 - 3 - + 1 + 900.0 @@ -311,7 +323,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-chiller-only-baseboard.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-chiller-only-baseboard.xml index 1e2f4111..073f168c 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-chiller-only-baseboard.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-chiller-only-baseboard.xml @@ -274,7 +274,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-chiller-only-fan-coil-ducted.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-chiller-only-fan-coil-ducted.xml index 2bd1b28d..a2459b39 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-chiller-only-fan-coil-ducted.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-chiller-only-fan-coil-ducted.xml @@ -217,8 +217,8 @@ - - fan coil + + fan coil supply @@ -247,7 +247,8 @@ other multifamily buffer space 20.0 - + 1 + 900.0 @@ -304,7 +305,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-chiller-only-fan-coil.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-chiller-only-fan-coil.xml index af559d86..023dbf5a 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-chiller-only-fan-coil.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-chiller-only-fan-coil.xml @@ -217,9 +217,26 @@ - - fan coil - + + fan coil + + supply + + CFM25 + 0.0 + to outside + + + + return + + CFM25 + 0.0 + to outside + + + 1 + 900.0 @@ -276,7 +293,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-chiller-only-water-loop-heat-pump.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-chiller-only-water-loop-heat-pump.xml index 76f1b75f..829789c5 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-chiller-only-water-loop-heat-pump.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-chiller-only-water-loop-heat-pump.xml @@ -204,15 +204,19 @@ 600.0 - - 24000.0 - - EER - 12.8 - - + + + + water-loop-to-air + electricity + 24000.0 + + EER + 12.8 + + @@ -223,8 +227,15 @@ - - water loop heat pump + + water loop + + + + + + + supply @@ -253,8 +264,8 @@ other multifamily buffer space 20.0 - 3 - + 1 + 900.0 @@ -311,7 +322,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-cooling-tower-only-water-loop-heat-pump.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-cooling-tower-only-water-loop-heat-pump.xml index 876b6771..defcfb6c 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-cooling-tower-only-water-loop-heat-pump.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-cooling-tower-only-water-loop-heat-pump.xml @@ -199,15 +199,19 @@ 1.0 600.0 - - 24000.0 - - EER - 12.8 - - + + + + water-loop-to-air + electricity + 24000.0 + + EER + 12.8 + + @@ -218,8 +222,15 @@ - - water loop heat pump + + water loop + + + + + + + supply @@ -248,8 +259,8 @@ other multifamily buffer space 20.0 - 3 - + 1 + 900.0 @@ -306,7 +317,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-generator.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-generator.xml index 431b208f..b9f2fc6c 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-generator.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-generator.xml @@ -256,6 +256,7 @@ living space 50.0 + 1 900.0 @@ -325,7 +326,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-ground-loop-ground-to-air-heat-pump.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-ground-loop-ground-to-air-heat-pump.xml index 784216f1..32ff5de6 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-ground-loop-ground-to-air-heat-pump.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-ground-loop-ground-to-air-heat-pump.xml @@ -216,8 +216,7 @@ 3.6 - 0.45 - 30.0 + 0.0 600.0 @@ -260,6 +259,7 @@ living space 50.0 + 1 900.0 @@ -317,7 +317,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-laundry-room.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-laundry-room.xml index aa7e830e..5fa6718e 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-laundry-room.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-laundry-room.xml @@ -256,6 +256,7 @@ living space 50.0 + 1 900.0 @@ -329,7 +330,6 @@ other heated space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-mechvent-multiple.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-mechvent-multiple.xml index 8220b259..8a4018f0 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-mechvent-multiple.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-mechvent-multiple.xml @@ -284,6 +284,7 @@ living space 50.0 + 1 450.0 @@ -320,6 +321,7 @@ living space 50.0 + 1 450.0 @@ -530,7 +532,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-mechvent-preconditioning.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-mechvent-preconditioning.xml index a05b1704..c9d4db15 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-mechvent-preconditioning.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-mechvent-preconditioning.xml @@ -256,6 +256,7 @@ living space 50.0 + 1 900.0 @@ -354,7 +355,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-mechvent.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-mechvent.xml index 2df9d139..f3ba928b 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-mechvent.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-mechvent.xml @@ -256,6 +256,7 @@ living space 50.0 + 1 900.0 @@ -338,7 +339,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-pv.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-pv.xml index c3cc5a58..0070e1b2 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-pv.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-pv.xml @@ -256,6 +256,7 @@ living space 50.0 + 1 900.0 @@ -330,7 +331,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-water-heater-recirc.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-water-heater-recirc.xml index e4b72410..340d43e6 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-water-heater-recirc.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-water-heater-recirc.xml @@ -256,6 +256,7 @@ living space 50.0 + 1 900.0 @@ -323,7 +324,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-water-heater.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-water-heater.xml index dfcf6fae..5b7ed67e 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-water-heater.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-water-heater.xml @@ -256,6 +256,7 @@ living space 50.0 + 1 900.0 @@ -316,7 +317,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily.xml index 60d2ddd2..fe47a290 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily.xml @@ -256,6 +256,7 @@ living space 50.0 + 1 900.0 @@ -313,7 +314,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-single-family-attached.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-single-family-attached.xml index 1302f5ed..f4de5dd2 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-single-family-attached.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-single-family-attached.xml @@ -113,7 +113,7 @@ outside basement - conditioned - 116.0 + 66.0 wood siding 0.7 0.92 @@ -122,6 +122,18 @@ 23.0 + + + basement - conditioned + basement - conditioned + 28.0 + 0.7 + 0.92 + + + 4.0 + + @@ -415,6 +427,7 @@ attic - unvented 50.0 + 2 1800.0 @@ -472,7 +485,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-combi-tankless-outside.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-combi-tankless-outside.xml index 5da5ffeb..12208e52 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-combi-tankless-outside.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-combi-tankless-outside.xml @@ -384,7 +384,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-combi-tankless.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-combi-tankless.xml index 0dc80aaa..11cc49b7 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-combi-tankless.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-combi-tankless.xml @@ -384,7 +384,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-desuperheater-2-speed.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-desuperheater-2-speed.xml index e1cc6798..00852fc7 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-desuperheater-2-speed.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-desuperheater-2-speed.xml @@ -357,6 +357,7 @@ attic - unvented 50.0 + 2 2700.0 @@ -416,7 +417,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-desuperheater-gshp.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-desuperheater-gshp.xml index 7dfe39d1..e957d30e 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-desuperheater-gshp.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-desuperheater-gshp.xml @@ -1,565 +1,564 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - - electricity - natural gas - - - - 3.0 - - - single-family detached - 2.0 - 1.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - Denver, CO - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - true - - - - - - - - attic - unvented - 1510.0 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 116.0 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - outside - attic - unvented - - - - 290.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - - - continuous - exterior - 8.9 - - 0.0 - 8.0 - - - - continuous - interior - 0.0 - - 0.0 - 0.0 - - - - - - - - - attic - unvented - living space - 1350.0 - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - 0.0 - 0.0 - - - - 0.0 - - - - - - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 0 - 4.4 - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - ground-to-air - electricity - 42000.0 - 48000.0 - 0.73 - electricity - - Percent - 1.0 - - 34121.0 - 1.0 - 1.0 - - EER - 16.6 - - - COP - 3.6 - - - 0.45 - 30.0 - - - - - - manual thermostat - 68.0 - 78.0 - - - - - - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - supply - 4.0 - attic - unvented - 150.0 - - - return - 0.0 - attic - unvented - 50.0 - - - - 2700.0 - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - true - - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - timer - - true - 150.0 - - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - exterior - 0.4 - - - - - - - garage - 0.4 - - - - - - - interior - 0.1 - - - - - - - exterior - 0.1 - - - - - - - garage - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.25 - - - - - - - garage - 0.25 - - - - - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - - TV other - - kWh/year - 620.0 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + + electricity + natural gas + + + + 3.0 + + + single-family detached + 2.0 + 1.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + Denver, CO + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + true + + + + + + + + attic - unvented + 1510.0 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 116.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + outside + attic - unvented + + + + 290.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + + + continuous - exterior + 8.9 + + 0.0 + 8.0 + + + + continuous - interior + 0.0 + + 0.0 + 0.0 + + + + + + + + + attic - unvented + living space + 1350.0 + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + 0.0 + 0.0 + + + + 0.0 + + + + + + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 0 + 4.4 + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + ground-to-air + electricity + 42000.0 + 48000.0 + 0.73 + electricity + + Percent + 1.0 + + 34121.0 + 1.0 + 1.0 + + EER + 16.6 + + + COP + 3.6 + + + 30.0 + + + + + + manual thermostat + 68.0 + 78.0 + + + + + + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + supply + 4.0 + attic - unvented + 150.0 + + + return + 0.0 + attic - unvented + 50.0 + + 2 + + + 2700.0 + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + true + + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + + true + 150.0 + + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + exterior + 0.4 + + + + + + + garage + 0.4 + + + + + + + interior + 0.1 + + + + + + + exterior + 0.1 + + + + + + + garage + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.25 + + + + + + + garage + 0.25 + + + + + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + + TV other + + kWh/year + 620.0 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-desuperheater-hpwh.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-desuperheater-hpwh.xml index fcff2f1b..285635ff 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-desuperheater-hpwh.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-desuperheater-hpwh.xml @@ -371,6 +371,7 @@ attic - unvented 50.0 + 2 2700.0 @@ -429,7 +430,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-desuperheater-tankless.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-desuperheater-tankless.xml index 92343c5b..0589d0cb 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-desuperheater-tankless.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-desuperheater-tankless.xml @@ -317,9 +317,6 @@ 13.0 0.73 - - 0.45 - @@ -360,6 +357,7 @@ attic - unvented 50.0 + 2 2700.0 @@ -417,7 +415,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-desuperheater-var-speed.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-desuperheater-var-speed.xml index 596b4cdd..769e76b2 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-desuperheater-var-speed.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-desuperheater-var-speed.xml @@ -357,6 +357,7 @@ attic - unvented 50.0 + 2 2700.0 @@ -416,7 +417,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-desuperheater.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-desuperheater.xml index c5ff3c63..b3b472e1 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-desuperheater.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-desuperheater.xml @@ -317,9 +317,6 @@ 13.0 0.73 - - 0.45 - @@ -360,6 +357,7 @@ attic - unvented 50.0 + 2 2700.0 @@ -419,7 +417,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-dwhr.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-dwhr.xml index 60df14ab..1030747e 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-dwhr.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-dwhr.xml @@ -371,6 +371,7 @@ attic - unvented 50.0 + 2 2700.0 @@ -433,7 +434,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-indirect-dse.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-indirect-dse.xml index 34e38625..83ae12bd 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-indirect-dse.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-indirect-dse.xml @@ -385,7 +385,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-indirect-outside.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-indirect-outside.xml index 34645089..b922d8dc 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-indirect-outside.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-indirect-outside.xml @@ -385,7 +385,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-indirect-standbyloss.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-indirect-standbyloss.xml index b5c39f3f..069ce72e 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-indirect-standbyloss.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-indirect-standbyloss.xml @@ -386,7 +386,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-indirect-with-solar-fraction.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-indirect-with-solar-fraction.xml index 61237a9e..6449a217 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-indirect-with-solar-fraction.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-indirect-with-solar-fraction.xml @@ -393,7 +393,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-indirect.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-indirect.xml index f0ba142f..ce0a00b8 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-indirect.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-indirect.xml @@ -385,7 +385,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-jacket-electric.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-jacket-electric.xml index d05aed35..cf0af4d0 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-jacket-electric.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-jacket-electric.xml @@ -371,6 +371,7 @@ attic - unvented 50.0 + 2 2700.0 @@ -433,7 +434,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-jacket-gas.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-jacket-gas.xml index 05302e09..495f988a 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-jacket-gas.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-jacket-gas.xml @@ -371,6 +371,7 @@ attic - unvented 50.0 + 2 2700.0 @@ -434,7 +435,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-jacket-hpwh.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-jacket-hpwh.xml index f8839ed8..7bf0ae2b 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-jacket-hpwh.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-jacket-hpwh.xml @@ -371,6 +371,7 @@ attic - unvented 50.0 + 2 2700.0 @@ -432,7 +433,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-jacket-indirect.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-jacket-indirect.xml index 91aa74f2..75bf7429 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-jacket-indirect.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-jacket-indirect.xml @@ -390,7 +390,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-low-flow-fixtures.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-low-flow-fixtures.xml index 021dc287..7cdd1151 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-low-flow-fixtures.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-low-flow-fixtures.xml @@ -371,6 +371,7 @@ attic - unvented 50.0 + 2 2700.0 @@ -428,7 +429,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-multiple.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-multiple.xml index fb4afea8..c421ebff 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-multiple.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-multiple.xml @@ -443,7 +443,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-none.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-none.xml index dbc93eb2..5fdbc7a3 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-none.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-none.xml @@ -371,6 +371,7 @@ attic - unvented 50.0 + 2 2700.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-recirc-demand.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-recirc-demand.xml index e43638b9..b8a501bc 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-recirc-demand.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-recirc-demand.xml @@ -371,6 +371,7 @@ attic - unvented 50.0 + 2 2700.0 @@ -431,7 +432,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-recirc-manual.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-recirc-manual.xml index 51f0e5c8..d468f707 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-recirc-manual.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-recirc-manual.xml @@ -371,6 +371,7 @@ attic - unvented 50.0 + 2 2700.0 @@ -431,7 +432,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-recirc-nocontrol.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-recirc-nocontrol.xml index b4a2c1e4..b1c82608 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-recirc-nocontrol.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-recirc-nocontrol.xml @@ -371,6 +371,7 @@ attic - unvented 50.0 + 2 2700.0 @@ -431,7 +432,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-recirc-temperature.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-recirc-temperature.xml index 7bdd34cf..5879ef18 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-recirc-temperature.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-recirc-temperature.xml @@ -371,6 +371,7 @@ attic - unvented 50.0 + 2 2700.0 @@ -431,7 +432,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-recirc-timer.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-recirc-timer.xml index b462f12c..f08bb9ee 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-recirc-timer.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-recirc-timer.xml @@ -371,6 +371,7 @@ attic - unvented 50.0 + 2 2700.0 @@ -431,7 +432,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-solar-direct-evacuated-tube.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-solar-direct-evacuated-tube.xml index 6bcf7792..c1eb3942 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-solar-direct-evacuated-tube.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-solar-direct-evacuated-tube.xml @@ -371,6 +371,7 @@ attic - unvented 50.0 + 2 2700.0 @@ -443,7 +444,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-solar-direct-flat-plate.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-solar-direct-flat-plate.xml index 8785a072..a3fcec67 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-solar-direct-flat-plate.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-solar-direct-flat-plate.xml @@ -371,6 +371,7 @@ attic - unvented 50.0 + 2 2700.0 @@ -443,7 +444,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-solar-direct-ics.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-solar-direct-ics.xml index b529a30e..92e09577 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-solar-direct-ics.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-solar-direct-ics.xml @@ -371,6 +371,7 @@ attic - unvented 50.0 + 2 2700.0 @@ -443,7 +444,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-solar-fraction.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-solar-fraction.xml index d1ad9c14..93152561 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-solar-fraction.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-solar-fraction.xml @@ -371,6 +371,7 @@ attic - unvented 50.0 + 2 2700.0 @@ -436,7 +437,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-solar-indirect-flat-plate.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-solar-indirect-flat-plate.xml index 54d46c5e..65a925ea 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-solar-indirect-flat-plate.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-solar-indirect-flat-plate.xml @@ -371,6 +371,7 @@ attic - unvented 50.0 + 2 2700.0 @@ -443,7 +444,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-solar-thermosyphon-flat-plate.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-solar-thermosyphon-flat-plate.xml index 2cf7286a..9f4e0f33 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-solar-thermosyphon-flat-plate.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-solar-thermosyphon-flat-plate.xml @@ -371,6 +371,7 @@ attic - unvented 50.0 + 2 2700.0 @@ -443,7 +444,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-coal.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-coal.xml index 279ae2f0..a3c3e673 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-coal.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-coal.xml @@ -371,6 +371,7 @@ attic - unvented 50.0 + 2 2700.0 @@ -429,7 +430,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-elec-uef.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-elec-uef.xml index 860d635d..83fb8265 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-elec-uef.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-elec-uef.xml @@ -371,6 +371,7 @@ attic - unvented 50.0 + 2 2700.0 @@ -429,7 +430,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-gas-outside.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-gas-outside.xml index 7999cbdb..d5fc39a9 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-gas-outside.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-gas-outside.xml @@ -371,6 +371,7 @@ attic - unvented 50.0 + 2 2700.0 @@ -429,7 +430,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-gas-uef.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-gas-uef.xml index 7ae812bc..998b82e3 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-gas-uef.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-gas-uef.xml @@ -371,6 +371,7 @@ attic - unvented 50.0 + 2 2700.0 @@ -430,7 +431,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-gas.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-gas.xml index 803578cc..f4357315 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-gas.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-gas.xml @@ -371,6 +371,7 @@ attic - unvented 50.0 + 2 2700.0 @@ -429,7 +430,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-heat-pump-outside.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-heat-pump-outside.xml index d041a4a1..73dcb734 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-heat-pump-outside.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-heat-pump-outside.xml @@ -371,6 +371,7 @@ attic - unvented 50.0 + 2 2700.0 @@ -427,7 +428,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-heat-pump-uef.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-heat-pump-uef.xml index c9c8a553..2a6a5443 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-heat-pump-uef.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-heat-pump-uef.xml @@ -371,6 +371,7 @@ attic - unvented 50.0 + 2 2700.0 @@ -429,7 +430,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-heat-pump-with-solar-fraction.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-heat-pump-with-solar-fraction.xml index b5abe887..f69bd445 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-heat-pump-with-solar-fraction.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-heat-pump-with-solar-fraction.xml @@ -371,6 +371,7 @@ attic - unvented 50.0 + 2 2700.0 @@ -435,7 +436,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-heat-pump-with-solar.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-heat-pump-with-solar.xml index a3e963e4..99b1534a 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-heat-pump-with-solar.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-heat-pump-with-solar.xml @@ -371,6 +371,7 @@ attic - unvented 50.0 + 2 2700.0 @@ -442,7 +443,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-heat-pump.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-heat-pump.xml index a3886d85..9b8eb895 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-heat-pump.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-heat-pump.xml @@ -371,6 +371,7 @@ attic - unvented 50.0 + 2 2700.0 @@ -427,7 +428,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-oil.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-oil.xml index 4a8b222e..b9a0860a 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-oil.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-oil.xml @@ -371,6 +371,7 @@ attic - unvented 50.0 + 2 2700.0 @@ -429,7 +430,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-wood.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-wood.xml index 1597631d..746c9a5e 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-wood.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-wood.xml @@ -371,6 +371,7 @@ attic - unvented 50.0 + 2 2700.0 @@ -429,7 +430,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-electric-outside.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-electric-outside.xml index 9f2ab965..57832721 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-electric-outside.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-electric-outside.xml @@ -371,6 +371,7 @@ attic - unvented 50.0 + 2 2700.0 @@ -427,7 +428,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-electric-uef.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-electric-uef.xml index af17ce0b..8169a19a 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-electric-uef.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-electric-uef.xml @@ -371,6 +371,7 @@ attic - unvented 50.0 + 2 2700.0 @@ -426,7 +427,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-electric.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-electric.xml index 9cc104f2..c0d09cc4 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-electric.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-electric.xml @@ -371,6 +371,7 @@ attic - unvented 50.0 + 2 2700.0 @@ -426,7 +427,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-gas-uef.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-gas-uef.xml index e07744e5..026e2bcd 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-gas-uef.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-gas-uef.xml @@ -371,6 +371,7 @@ attic - unvented 50.0 + 2 2700.0 @@ -426,7 +427,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-gas-with-solar-fraction.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-gas-with-solar-fraction.xml index 51155e75..04f96d90 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-gas-with-solar-fraction.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-gas-with-solar-fraction.xml @@ -371,6 +371,7 @@ attic - unvented 50.0 + 2 2700.0 @@ -434,7 +435,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-gas-with-solar.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-gas-with-solar.xml index 6e848094..f26488aa 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-gas-with-solar.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-gas-with-solar.xml @@ -371,6 +371,7 @@ attic - unvented 50.0 + 2 2700.0 @@ -441,7 +442,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-gas.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-gas.xml index c4a38ec5..1189c8b2 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-gas.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-gas.xml @@ -371,6 +371,7 @@ attic - unvented 50.0 + 2 2700.0 @@ -426,7 +427,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-propane.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-propane.xml index 1f451c50..dbd01264 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-propane.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-propane.xml @@ -371,6 +371,7 @@ attic - unvented 50.0 + 2 2700.0 @@ -426,7 +427,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-2stories-garage.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-2stories-garage.xml index f31ebef7..e155f801 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-2stories-garage.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-2stories-garage.xml @@ -207,7 +207,7 @@ ground basement - conditioned 8.0 - 880.0 + 1200.0 8.0 7.0 @@ -470,6 +470,7 @@ living space 12.5 + 3 3250.0 @@ -527,7 +528,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-2stories.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-2stories.xml index 9badaf3a..aaf94d6b 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-2stories.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-2stories.xml @@ -384,6 +384,7 @@ attic - unvented 50.0 + 3 4050.0 @@ -441,7 +442,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-beds-1.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-beds-1.xml index 8659d336..8be08df3 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-beds-1.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-beds-1.xml @@ -371,6 +371,7 @@ attic - unvented 50.0 + 2 2700.0 @@ -428,7 +429,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-beds-2.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-beds-2.xml index 3af7fd5a..c48e5447 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-beds-2.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-beds-2.xml @@ -371,6 +371,7 @@ attic - unvented 50.0 + 2 2700.0 @@ -428,7 +429,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-beds-4.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-beds-4.xml index 045efbf7..8e80f63c 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-beds-4.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-beds-4.xml @@ -371,6 +371,7 @@ attic - unvented 50.0 + 2 2700.0 @@ -428,7 +429,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-beds-5.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-beds-5.xml index 73755361..806f4fe6 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-beds-5.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-beds-5.xml @@ -371,6 +371,7 @@ attic - unvented 50.0 + 2 2700.0 @@ -428,7 +429,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-garage.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-garage.xml index c59e35ab..402ede15 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-garage.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-garage.xml @@ -445,6 +445,7 @@ garage 50.0 + 2 2700.0 @@ -502,7 +503,6 @@ garage electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-infil-ach-house-pressure.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-infil-ach-house-pressure.xml index ff8bb0ec..3cc78654 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-infil-ach-house-pressure.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-infil-ach-house-pressure.xml @@ -371,6 +371,7 @@ attic - unvented 50.0 + 2 2700.0 @@ -428,7 +429,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-infil-cfm-house-pressure.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-infil-cfm-house-pressure.xml index b778c2ef..240eda23 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-infil-cfm-house-pressure.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-infil-cfm-house-pressure.xml @@ -371,6 +371,7 @@ attic - unvented 50.0 + 2 2700.0 @@ -428,7 +429,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-infil-cfm50.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-infil-cfm50.xml index 351ed19d..a6d6d8d9 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-infil-cfm50.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-infil-cfm50.xml @@ -371,6 +371,7 @@ attic - unvented 50.0 + 2 2700.0 @@ -428,7 +429,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-infil-flue.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-infil-flue.xml index c42734a0..b5fe4cd9 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-infil-flue.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-infil-flue.xml @@ -374,6 +374,7 @@ attic - unvented 50.0 + 2 2700.0 @@ -431,7 +432,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-infil-natural-ach.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-infil-natural-ach.xml index 7a8b7ca9..44b01ee3 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-infil-natural-ach.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-infil-natural-ach.xml @@ -370,6 +370,7 @@ attic - unvented 50.0 + 2 2700.0 @@ -427,7 +428,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-overhangs.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-overhangs.xml index 60df0782..1be65c5a 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-overhangs.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-overhangs.xml @@ -257,6 +257,11 @@ 0.7 0.85 + + 0.0 + 1.0 + 5.0 + 0.67 @@ -386,6 +391,7 @@ attic - unvented 50.0 + 2 2700.0 @@ -443,7 +449,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-rooftypes.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-rooftypes.xml index 745f7d52..57b5efc8 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-rooftypes.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-rooftypes.xml @@ -399,6 +399,7 @@ attic - unvented 50.0 + 2 2700.0 @@ -456,7 +457,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-skylights-shading.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-skylights-shading.xml new file mode 100644 index 00000000..b7be5d35 --- /dev/null +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-skylights-shading.xml @@ -0,0 +1,600 @@ + + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + + electricity + natural gas + + + + 3.0 + + + single-family detached + 2.0 + 1.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + Denver, CO + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + true + + + + + + + + attic - unvented + 1510.0 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 116.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + outside + attic - unvented + + + + 290.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + + + continuous - exterior + 8.9 + + 0.0 + 8.0 + + + + continuous - interior + 0.0 + + 0.0 + 0.0 + + + + + + + + + attic - unvented + living space + 1350.0 + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + 0.0 + 0.0 + + + + 0.0 + + + + + + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + 45.0 + 0 + 0.33 + 0.45 + + + 0.1 + 0.9 + + + + 0.01 + 0.99 + + + + + + 45.0 + 180 + 0.35 + 0.47 + + + 0.5 + 0.0 + + + + 0.5 + 1.0 + + + + + + + + + 40.0 + 0 + 4.4 + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + natural gas + 64000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 48000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + manual thermostat + 68.0 + 78.0 + + + + + + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + supply + 4.0 + attic - unvented + 150.0 + + + return + 0.0 + attic - unvented + 50.0 + + 2 + + + 2700.0 + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + + true + 150.0 + + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + exterior + 0.4 + + + + + + + garage + 0.4 + + + + + + + interior + 0.1 + + + + + + + exterior + 0.1 + + + + + + + garage + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.25 + + + + + + + garage + 0.25 + + + + + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + + TV other + + kWh/year + 620.0 + + + + +
+
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-skylights.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-skylights.xml index a655ae88..d652b9f4 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-skylights.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-skylights.xml @@ -399,6 +399,7 @@ attic - unvented 50.0 + 2 2700.0 @@ -456,7 +457,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-split-level.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-split-level.xml index 83854beb..22be0dc5 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-split-level.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-split-level.xml @@ -325,6 +325,7 @@ under slab 50.0 + 2 1350.0 @@ -382,7 +383,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-split-surfaces.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-split-surfaces.xml index 4f2a0c88..bb93aa48 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-split-surfaces.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-split-surfaces.xml @@ -2283,6 +2283,7 @@ attic - unvented 50.0 + 2 2700.0 @@ -2340,7 +2341,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-split-surfaces2.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-split-surfaces2.xml new file mode 100644 index 00000000..31ea9fdb --- /dev/null +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-split-surfaces2.xml @@ -0,0 +1,2474 @@ + + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + + electricity + natural gas + + + + 3.0 + + + single-family detached + 2.0 + 1.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + Denver, CO + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + true + + + + + + + + attic - unvented + 167.77777777777777 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + attic - unvented + 167.77777777777777 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.32 + + + + + attic - unvented + 167.77777777777777 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3299999999999996 + + + + + attic - unvented + 167.77777777777777 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.34 + + + + + attic - unvented + 167.77777777777777 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3499999999999996 + + + + + attic - unvented + 167.77777777777777 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.36 + + + + + attic - unvented + 167.77777777777777 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3699999999999997 + + + + + attic - unvented + 167.77777777777777 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.38 + + + + + attic - unvented + 167.77777777777777 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3899999999999997 + + + + + attic - unvented + 0.05 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3899999999999997 + + + + + + + outside + basement - conditioned + 12.88888888888889 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + outside + basement - conditioned + 12.88888888888889 + wood siding + 0.7 + 0.92 + + + 23.02 + + + + + outside + basement - conditioned + 12.88888888888889 + wood siding + 0.7 + 0.92 + + + 23.03 + + + + + outside + basement - conditioned + 12.88888888888889 + wood siding + 0.7 + 0.92 + + + 23.04 + + + + + outside + basement - conditioned + 12.88888888888889 + wood siding + 0.7 + 0.92 + + + 23.05 + + + + + outside + basement - conditioned + 12.88888888888889 + wood siding + 0.7 + 0.92 + + + 23.06 + + + + + outside + basement - conditioned + 12.88888888888889 + wood siding + 0.7 + 0.92 + + + 23.07 + + + + + outside + basement - conditioned + 12.88888888888889 + wood siding + 0.7 + 0.92 + + + 23.08 + + + + + outside + basement - conditioned + 12.88888888888889 + wood siding + 0.7 + 0.92 + + + 23.09 + + + + + outside + basement - conditioned + 0.05 + wood siding + 0.7 + 0.92 + + + 23.09 + + + + + + + outside + living space + + + + 133.33333333333334 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + outside + attic - unvented + + + + 32.22222222222222 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + outside + living space + + + + 133.33333333333334 + wood siding + 0.7 + 0.92 + + + 23.02 + + + + + outside + living space + + + + 133.33333333333334 + wood siding + 0.7 + 0.92 + + + 23.03 + + + + + outside + living space + + + + 133.33333333333334 + wood siding + 0.7 + 0.92 + + + 23.04 + + + + + outside + living space + + + + 133.33333333333334 + wood siding + 0.7 + 0.92 + + + 23.05 + + + + + outside + living space + + + + 133.33333333333334 + wood siding + 0.7 + 0.92 + + + 23.06 + + + + + outside + living space + + + + 133.33333333333334 + wood siding + 0.7 + 0.92 + + + 23.07 + + + + + outside + living space + + + + 133.33333333333334 + wood siding + 0.7 + 0.92 + + + 23.08 + + + + + outside + living space + + + + 133.33333333333334 + wood siding + 0.7 + 0.92 + + + 23.09 + + + + + outside + attic - unvented + + + + 32.22222222222222 + wood siding + 0.7 + 0.92 + + + 4.02 + + + + + outside + attic - unvented + + + + 32.22222222222222 + wood siding + 0.7 + 0.92 + + + 4.03 + + + + + outside + attic - unvented + + + + 32.22222222222222 + wood siding + 0.7 + 0.92 + + + 4.04 + + + + + outside + attic - unvented + + + + 32.22222222222222 + wood siding + 0.7 + 0.92 + + + 4.05 + + + + + outside + attic - unvented + + + + 32.22222222222222 + wood siding + 0.7 + 0.92 + + + 4.06 + + + + + outside + attic - unvented + + + + 32.22222222222222 + wood siding + 0.7 + 0.92 + + + 4.07 + + + + + outside + attic - unvented + + + + 32.22222222222222 + wood siding + 0.7 + 0.92 + + + 4.08 + + + + + outside + attic - unvented + + + + 32.22222222222222 + wood siding + 0.7 + 0.92 + + + 4.09 + + + + + outside + attic - unvented + + + + 0.05 + wood siding + 0.7 + 0.92 + + + 4.09 + + + + + + + ground + basement - conditioned + 8.0 + 133.33333333333334 + 8.0 + 7.0 + + + + continuous - exterior + 8.9 + + 0.0 + 8.0 + + + + continuous - interior + 0.0 + + 0.0 + 0.0 + + + + + + + ground + basement - conditioned + 8.0 + 133.33333333333334 + 8.0 + 7.0 + + + + continuous - exterior + 8.92 + + 0.0 + 8.0 + + + + continuous - interior + 0.0 + + 0.0 + 0.0 + + + + + + + ground + basement - conditioned + 8.0 + 133.33333333333334 + 8.0 + 7.0 + + + + continuous - exterior + 8.93 + + 0.0 + 8.0 + + + + continuous - interior + 0.0 + + 0.0 + 0.0 + + + + + + + ground + basement - conditioned + 8.0 + 133.33333333333334 + 8.0 + 7.0 + + + + continuous - exterior + 8.94 + + 0.0 + 8.0 + + + + continuous - interior + 0.0 + + 0.0 + 0.0 + + + + + + + ground + basement - conditioned + 8.0 + 133.33333333333334 + 8.0 + 7.0 + + + + continuous - exterior + 8.950000000000001 + + 0.0 + 8.0 + + + + continuous - interior + 0.0 + + 0.0 + 0.0 + + + + + + + ground + basement - conditioned + 8.0 + 133.33333333333334 + 8.0 + 7.0 + + + + continuous - exterior + 8.96 + + 0.0 + 8.0 + + + + continuous - interior + 0.0 + + 0.0 + 0.0 + + + + + + + ground + basement - conditioned + 8.0 + 133.33333333333334 + 8.0 + 7.0 + + + + continuous - exterior + 8.97 + + 0.0 + 8.0 + + + + continuous - interior + 0.0 + + 0.0 + 0.0 + + + + + + + ground + basement - conditioned + 8.0 + 133.33333333333334 + 8.0 + 7.0 + + + + continuous - exterior + 8.98 + + 0.0 + 8.0 + + + + continuous - interior + 0.0 + + 0.0 + 0.0 + + + + + + + ground + basement - conditioned + 8.0 + 133.33333333333334 + 8.0 + 7.0 + + + + continuous - exterior + 8.99 + + 0.0 + 8.0 + + + + continuous - interior + 0.0 + + 0.0 + 0.0 + + + + + + + ground + basement - conditioned + 8.0 + 0.05 + 8.0 + 7.0 + + + + continuous - exterior + 8.99 + + 0.0 + 8.0 + + + + continuous - interior + 0.0 + + 0.0 + 0.0 + + + + + + + + + attic - unvented + living space + 150.0 + + + 39.3 + + + + + attic - unvented + living space + 150.0 + + + 39.32 + + + + + attic - unvented + living space + 150.0 + + + 39.33 + + + + + attic - unvented + living space + 150.0 + + + 39.339999999999996 + + + + + attic - unvented + living space + 150.0 + + + 39.349999999999994 + + + + + attic - unvented + living space + 150.0 + + + 39.36 + + + + + attic - unvented + living space + 150.0 + + + 39.37 + + + + + attic - unvented + living space + 150.0 + + + 39.379999999999995 + + + + + attic - unvented + living space + 150.0 + + + 39.39 + + + + + attic - unvented + living space + 0.05 + + + 39.39 + + + + + + + basement - conditioned + 150.0 + 4.0 + 16.666666666666668 + 0.0 + 0.0 + + + + 0.0 + + + + + + 0.0 + + + + 0.0 + 0.0 + + + + + basement - conditioned + 150.0 + 4.0 + 16.666666666666668 + 0.02 + 0.0 + + + + 0.02 + + + + + + 0.0 + + + + 0.0 + 0.0 + + + + + basement - conditioned + 150.0 + 4.0 + 16.666666666666668 + 0.03 + 0.0 + + + + 0.03 + + + + + + 0.0 + + + + 0.0 + 0.0 + + + + + basement - conditioned + 150.0 + 4.0 + 16.666666666666668 + 0.04 + 0.0 + + + + 0.04 + + + + + + 0.0 + + + + 0.0 + 0.0 + + + + + basement - conditioned + 150.0 + 4.0 + 16.666666666666668 + 0.05 + 0.0 + + + + 0.05 + + + + + + 0.0 + + + + 0.0 + 0.0 + + + + + basement - conditioned + 150.0 + 4.0 + 16.666666666666668 + 0.06 + 0.0 + + + + 0.06 + + + + + + 0.0 + + + + 0.0 + 0.0 + + + + + basement - conditioned + 150.0 + 4.0 + 16.666666666666668 + 0.07 + 0.0 + + + + 0.07 + + + + + + 0.0 + + + + 0.0 + 0.0 + + + + + basement - conditioned + 150.0 + 4.0 + 16.666666666666668 + 0.08 + 0.0 + + + + 0.08 + + + + + + 0.0 + + + + 0.0 + 0.0 + + + + + basement - conditioned + 150.0 + 4.0 + 16.666666666666668 + 0.09 + 0.0 + + + + 0.09 + + + + + + 0.0 + + + + 0.0 + 0.0 + + + + + basement - conditioned + 0.05 + 4.0 + 16.666666666666668 + 0.09 + 0.0 + + + + 0.09 + + + + + + 0.0 + + + + 0.0 + 0.0 + + + + + + + 12.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.0 + + + + + 12.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.0 + + + + + 8.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.0 + + + + + 8.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.0 + + + + + 12.0 + 0 + 0.35000000000000003 + 0.45 + + + 0.6599999999999999 + 0.83 + + 0.0 + + + + + 12.0 + 0 + 0.36 + 0.45 + + + 0.6399999999999999 + 0.82 + + 0.0 + + + + + 12.0 + 0 + 0.37 + 0.45 + + + 0.62 + 0.8099999999999999 + + 1.0 + + + + + 12.0 + 0 + 0.38 + 0.45 + + + 0.6 + 0.7999999999999999 + + 1.0 + + + + + 12.0 + 0 + 0.39 + 0.45 + + + 0.58 + 0.79 + + 1.0 + + + + + 12.0 + 0 + 0.4 + 0.45 + + + 0.5599999999999999 + 0.78 + + 1.0 + + + + + 12.0 + 0 + 0.41000000000000003 + 0.45 + + + 0.5399999999999999 + 0.77 + + 1.0 + + + + + 12.0 + 0 + 0.42000000000000004 + 0.45 + + + 0.52 + 0.76 + + 1.0 + + + + + 12.0 + 180 + 0.35000000000000003 + 0.45 + + + 0.6599999999999999 + 0.83 + + 0.0 + + + + + 12.0 + 180 + 0.36 + 0.45 + + + 0.6399999999999999 + 0.82 + + 0.0 + + + + + 12.0 + 180 + 0.37 + 0.45 + + + 0.62 + 0.8099999999999999 + + 1.0 + + + + + 12.0 + 180 + 0.38 + 0.45 + + + 0.6 + 0.7999999999999999 + + 1.0 + + + + + 12.0 + 180 + 0.39 + 0.45 + + + 0.58 + 0.79 + + 1.0 + + + + + 12.0 + 180 + 0.4 + 0.45 + + + 0.5599999999999999 + 0.78 + + 1.0 + + + + + 12.0 + 180 + 0.41000000000000003 + 0.45 + + + 0.5399999999999999 + 0.77 + + 1.0 + + + + + 12.0 + 180 + 0.42000000000000004 + 0.45 + + + 0.52 + 0.76 + + 1.0 + + + + + 8.0 + 90 + 0.35000000000000003 + 0.45 + + + 0.6599999999999999 + 0.83 + + 0.0 + + + + + 8.0 + 90 + 0.36 + 0.45 + + + 0.6399999999999999 + 0.82 + + 0.0 + + + + + 8.0 + 90 + 0.37 + 0.45 + + + 0.62 + 0.8099999999999999 + + 1.0 + + + + + 8.0 + 90 + 0.38 + 0.45 + + + 0.6 + 0.7999999999999999 + + 1.0 + + + + + 8.0 + 90 + 0.39 + 0.45 + + + 0.58 + 0.79 + + 1.0 + + + + + 8.0 + 90 + 0.4 + 0.45 + + + 0.5599999999999999 + 0.78 + + 1.0 + + + + + 8.0 + 90 + 0.41000000000000003 + 0.45 + + + 0.5399999999999999 + 0.77 + + 1.0 + + + + + 8.0 + 90 + 0.42000000000000004 + 0.45 + + + 0.52 + 0.76 + + 1.0 + + + + + 8.0 + 270 + 0.35000000000000003 + 0.45 + + + 0.6599999999999999 + 0.83 + + 0.0 + + + + + 8.0 + 270 + 0.36 + 0.45 + + + 0.6399999999999999 + 0.82 + + 0.0 + + + + + 8.0 + 270 + 0.37 + 0.45 + + + 0.62 + 0.8099999999999999 + + 1.0 + + + + + 8.0 + 270 + 0.38 + 0.45 + + + 0.6 + 0.7999999999999999 + + 1.0 + + + + + 8.0 + 270 + 0.39 + 0.45 + + + 0.58 + 0.79 + + 1.0 + + + + + 8.0 + 270 + 0.4 + 0.45 + + + 0.5599999999999999 + 0.78 + + 1.0 + + + + + 8.0 + 270 + 0.41000000000000003 + 0.45 + + + 0.5399999999999999 + 0.77 + + 1.0 + + + + + 8.0 + 270 + 0.42000000000000004 + 0.45 + + + 0.52 + 0.76 + + 1.0 + + + + + 0.05 + 270 + 0.42000000000000004 + 0.45 + + + 0.52 + 0.76 + + 1.0 + + + + + + + 5.0 + 0 + 0.33 + 0.45 + + + 1.0 + 1.0 + + + + + + 5.0 + 180 + 0.35 + 0.47 + + + 1.0 + 1.0 + + + + + + 5.0 + 0 + 0.35000000000000003 + 0.45 + + + 0.96 + 0.98 + + + + + + 5.0 + 0 + 0.36 + 0.45 + + + 0.94 + 0.97 + + + + + + 5.0 + 0 + 0.37 + 0.45 + + + 0.92 + 0.96 + + + + + + 5.0 + 0 + 0.38 + 0.45 + + + 0.9 + 0.95 + + + + + + 5.0 + 0 + 0.39 + 0.45 + + + 0.88 + 0.94 + + + + + + 5.0 + 0 + 0.4 + 0.45 + + + 0.86 + 0.9299999999999999 + + + + + + 5.0 + 0 + 0.41000000000000003 + 0.45 + + + 0.84 + 0.92 + + + + + + 5.0 + 0 + 0.42000000000000004 + 0.45 + + + 0.8200000000000001 + 0.91 + + + + + + 5.0 + 180 + 0.37 + 0.47 + + + 0.96 + 0.98 + + + + + + 5.0 + 180 + 0.38 + 0.47 + + + 0.94 + 0.97 + + + + + + 5.0 + 180 + 0.38999999999999996 + 0.47 + + + 0.92 + 0.96 + + + + + + 5.0 + 180 + 0.39999999999999997 + 0.47 + + + 0.9 + 0.95 + + + + + + 5.0 + 180 + 0.41 + 0.47 + + + 0.88 + 0.94 + + + + + + 5.0 + 180 + 0.42 + 0.47 + + + 0.86 + 0.9299999999999999 + + + + + + 5.0 + 180 + 0.43 + 0.47 + + + 0.84 + 0.92 + + + + + + 5.0 + 180 + 0.43999999999999995 + 0.47 + + + 0.8200000000000001 + 0.91 + + + + + + 0.05 + 180 + 0.43999999999999995 + 0.47 + + + 0.8200000000000001 + 0.91 + + + + + + + + + 4.444444444444445 + 0 + 4.4 + + + + + 4.444444444444445 + 180 + 4.4 + + + + + 4.444444444444445 + 0 + 4.42 + + + + + 4.444444444444445 + 0 + 4.430000000000001 + + + + + 4.444444444444445 + 0 + 4.44 + + + + + 4.444444444444445 + 0 + 4.45 + + + + + 4.444444444444445 + 0 + 4.46 + + + + + 4.444444444444445 + 0 + 4.470000000000001 + + + + + 4.444444444444445 + 0 + 4.48 + + + + + 4.444444444444445 + 0 + 4.49 + + + + + 4.444444444444445 + 180 + 4.42 + + + + + 4.444444444444445 + 180 + 4.430000000000001 + + + + + 4.444444444444445 + 180 + 4.44 + + + + + 4.444444444444445 + 180 + 4.45 + + + + + 4.444444444444445 + 180 + 4.46 + + + + + 4.444444444444445 + 180 + 4.470000000000001 + + + + + 4.444444444444445 + 180 + 4.48 + + + + + 4.444444444444445 + 180 + 4.49 + + + + + 0.05 + 180 + 4.49 + + + + + + + + + + + + + natural gas + 64000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 48000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + manual thermostat + 68.0 + 78.0 + + + + + + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + supply + 4.0 + attic - unvented + 150.0 + + + return + 0.0 + attic - unvented + 50.0 + + 2 + + + 2700.0 + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + + true + 150.0 + + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + exterior + 0.4 + + + + + + + garage + 0.4 + + + + + + + interior + 0.1 + + + + + + + exterior + 0.1 + + + + + + + garage + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.25 + + + + + + + garage + 0.25 + + + + + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + + TV other + + kWh/year + 620.0 + + + + +
+
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-walltypes.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-walltypes.xml index 9c2068be..26bd71d6 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-walltypes.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-walltypes.xml @@ -563,6 +563,7 @@ attic - unvented 50.0 + 2 2700.0 @@ -620,7 +621,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-windows-none.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-windows-none.xml index 90b1f34c..e3026d93 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-windows-none.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-windows-none.xml @@ -313,6 +313,7 @@ attic - unvented 50.0 + 2 2700.0 @@ -370,7 +371,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-windows-interior-shading.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-windows-shading.xml similarity index 96% rename from example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-windows-interior-shading.xml rename to example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-windows-shading.xml index de98d46a..80989ff5 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-windows-interior-shading.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-windows-shading.xml @@ -1,562 +1,577 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - - electricity - natural gas - - - - 3.0 - - - single-family detached - 2.0 - 1.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - Denver, CO - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - true - - - - - - - - attic - unvented - 1510.0 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 116.0 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - outside - attic - unvented - - - - 290.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - - - continuous - exterior - 8.9 - - 0.0 - 8.0 - - - - continuous - interior - 0.0 - - 0.0 - 0.0 - - - - - - - - - attic - unvented - living space - 1350.0 - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - 0.0 - 0.0 - - - - 0.0 - - - - - - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.01 - 0.99 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.5 - 0.5 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.0 - 1.0 - - 0.67 - - - - - - - - 40.0 - 0 - 4.4 - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - natural gas - 64000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 48000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - manual thermostat - 68.0 - 78.0 - - - - - - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - supply - 4.0 - attic - unvented - 150.0 - - - return - 0.0 - attic - unvented - 50.0 - - - - 2700.0 - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - timer - - true - 150.0 - - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - exterior - 0.4 - - - - - - - garage - 0.4 - - - - - - - interior - 0.1 - - - - - - - exterior - 0.1 - - - - - - - garage - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.25 - - - - - - - garage - 0.25 - - - - - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - - TV other - - kWh/year - 620.0 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + + electricity + natural gas + + + + 3.0 + + + single-family detached + 2.0 + 1.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + Denver, CO + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + true + + + + + + + + attic - unvented + 1510.0 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 116.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + outside + attic - unvented + + + + 290.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + + + continuous - exterior + 8.9 + + 0.0 + 8.0 + + + + continuous - interior + 0.0 + + 0.0 + 0.0 + + + + + + + + + attic - unvented + living space + 1350.0 + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + 0.0 + 0.0 + + + + 0.0 + + + + + + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.1 + 0.9 + + + + 0.01 + 0.99 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.5 + 0.5 + + + + 0.5 + 0.5 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.0 + 1.0 + + + + 0.0 + 1.0 + + 0.67 + + + + + + + + 40.0 + 0 + 4.4 + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + natural gas + 64000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 48000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + manual thermostat + 68.0 + 78.0 + + + + + + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + supply + 4.0 + attic - unvented + 150.0 + + + return + 0.0 + attic - unvented + 50.0 + + 2 + + + 2700.0 + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + + true + 150.0 + + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + exterior + 0.4 + + + + + + + garage + 0.4 + + + + + + + interior + 0.1 + + + + + + + exterior + 0.1 + + + + + + + garage + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.25 + + + + + + + garage + 0.25 + + + + + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + + TV other + + kWh/year + 620.0 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-ambient.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-ambient.xml index e87df7a3..e416786f 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-ambient.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-ambient.xml @@ -307,6 +307,7 @@ attic - unvented 50.0 + 1 1350.0 @@ -364,7 +365,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-basement-garage.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-basement-garage.xml new file mode 100644 index 00000000..315e4dea --- /dev/null +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-basement-garage.xml @@ -0,0 +1,643 @@ + + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + + electricity + natural gas + + + + 3.0 + + + single-family detached + 2.0 + 1.0 + 3 + 2 + 1900.0 + 15200.0 + + + + + 2006 + 5B + + + + Denver, CO + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 15200.0 + + + + + + + + false + + + false + + + + + + + + true + + + + + + + + attic - unvented + 2180.0 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 116.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + outside + attic - unvented + + + + 290.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + garage + basement - conditioned + + + + 320.0 + 0.7 + 0.92 + + + 23.0 + + + + + outside + garage + + + + 320.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + + + continuous - exterior + 8.9 + + 0.0 + 8.0 + + + + continuous - interior + 0.0 + + 0.0 + 0.0 + + + + + + + + + attic - unvented + living space + 1350.0 + + + 39.3 + + + + + garage + living space + 400.0 + + + 39.3 + + + + + + + basement - conditioned + 950.0 + 4.0 + 110.0 + 0.0 + 0.0 + + + + 0.0 + + + + + + 0.0 + + + + 0.0 + 0.0 + + + + + garage + 400.0 + 4.0 + 40.0 + 0.0 + 0.0 + 0.0 + + + + 0.0 + + + + + + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 0 + 4.4 + + + + + 40.0 + 180 + 4.4 + + + + + 70.0 + 180 + 4.4 + + + + + 4.0 + 0 + 4.4 + + + + + + + + + + + + + natural gas + 64000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 48000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + manual thermostat + 68.0 + 78.0 + + + + + + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + supply + 4.0 + attic - unvented + 150.0 + + + return + 0.0 + attic - unvented + 50.0 + + 2 + + + 1900.0 + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + + true + 150.0 + + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + exterior + 0.4 + + + + + + + garage + 0.4 + + + + + + + interior + 0.1 + + + + + + + exterior + 0.1 + + + + + + + garage + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.25 + + + + + + + garage + 0.25 + + + + + + + + + other + + kWh/year + 1729.0 + + + 0.855 + 0.045 + + + + + TV other + + kWh/year + 620.0 + + + + +
+
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-complex.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-complex.xml index 70480d5e..8a9693fb 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-complex.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-complex.xml @@ -533,6 +533,7 @@ attic - unvented 50.0 + 2 2700.0 @@ -590,7 +591,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-conditioned-basement-slab-insulation.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-conditioned-basement-slab-insulation.xml index 0184a3a2..2ad1b8b8 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-conditioned-basement-slab-insulation.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-conditioned-basement-slab-insulation.xml @@ -371,6 +371,7 @@ attic - unvented 50.0 + 2 2700.0 @@ -428,7 +429,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-conditioned-basement-wall-interior-insulation.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-conditioned-basement-wall-interior-insulation.xml index 2a34a3af..aa9035d9 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-conditioned-basement-wall-interior-insulation.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-conditioned-basement-wall-interior-insulation.xml @@ -371,6 +371,7 @@ attic - unvented 50.0 + 2 2700.0 @@ -428,7 +429,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-multiple.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-multiple.xml index fd0c77f4..0b2f0bd5 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-multiple.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-multiple.xml @@ -128,7 +128,7 @@ 0.92 - 2.3 + 4.0 @@ -141,7 +141,7 @@ 0.92 - 2.3 + 4.0 @@ -494,6 +494,7 @@ basement - unconditioned 50.0 + 1 1350.0 @@ -551,7 +552,6 @@ basement - unconditioned electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-slab.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-slab.xml index cdfc0045..801efad7 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-slab.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-slab.xml @@ -325,6 +325,7 @@ under slab 50.0 + 1 1350.0 @@ -382,7 +383,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-unconditioned-basement-above-grade.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-unconditioned-basement-above-grade.xml index 24e4d57e..7e83ddb1 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-unconditioned-basement-above-grade.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-unconditioned-basement-above-grade.xml @@ -120,7 +120,7 @@ 0.92 - 2.3 + 4.0 @@ -418,6 +418,7 @@ basement - unconditioned 50.0 + 1 1350.0 @@ -475,7 +476,6 @@ basement - unconditioned electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-unconditioned-basement-assembly-r.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-unconditioned-basement-assembly-r.xml index 6e1ab503..b404dc7c 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-unconditioned-basement-assembly-r.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-unconditioned-basement-assembly-r.xml @@ -120,7 +120,7 @@ 0.92 - 2.3 + 4.0 @@ -367,6 +367,7 @@ basement - unconditioned 50.0 + 1 1350.0 @@ -424,7 +425,6 @@ basement - unconditioned electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-unconditioned-basement-wall-insulation.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-unconditioned-basement-wall-insulation.xml index 6795ac27..4c6f5e1c 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-unconditioned-basement-wall-insulation.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-unconditioned-basement-wall-insulation.xml @@ -382,6 +382,7 @@ basement - unconditioned 50.0 + 1 1350.0 @@ -439,7 +440,6 @@ basement - unconditioned electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-unconditioned-basement.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-unconditioned-basement.xml index 940ba10a..9d4e5d65 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-unconditioned-basement.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-unconditioned-basement.xml @@ -120,7 +120,7 @@ 0.92 - 2.3 + 4.0 @@ -382,6 +382,7 @@ basement - unconditioned 50.0 + 1 1350.0 @@ -439,7 +440,6 @@ basement - unconditioned electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-unvented-crawlspace.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-unvented-crawlspace.xml index e20efba3..7423e9f0 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-unvented-crawlspace.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-unvented-crawlspace.xml @@ -382,6 +382,7 @@ crawlspace - unvented 50.0 + 1 1350.0 @@ -439,7 +440,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-vented-crawlspace.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-vented-crawlspace.xml index 261d21a4..23e95d12 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-vented-crawlspace.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-vented-crawlspace.xml @@ -385,6 +385,7 @@ crawlspace - vented 50.0 + 1 1350.0 @@ -442,7 +443,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-walkout-basement.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-walkout-basement.xml index 2164af34..1776fb80 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-walkout-basement.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-walkout-basement.xml @@ -436,6 +436,7 @@ attic - unvented 50.0 + 2 2700.0 @@ -493,7 +494,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-cooling-only.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-cooling-only.xml new file mode 100644 index 00000000..1b9629fb --- /dev/null +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-cooling-only.xml @@ -0,0 +1,555 @@ + + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + + electricity + natural gas + + + + 3.0 + + + single-family detached + 2.0 + 1.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + Denver, CO + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + true + + + + + + + + attic - unvented + 1510.0 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 116.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + outside + attic - unvented + + + + 290.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + + + continuous - exterior + 8.9 + + 0.0 + 8.0 + + + + continuous - interior + 0.0 + + 0.0 + 0.0 + + + + + + + + + attic - unvented + living space + 1350.0 + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + 0.0 + 0.0 + + + + 0.0 + + + + + + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 0 + 4.4 + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + air-to-air + electricity + 0.0 + 0.0 + 48000.0 + single stage + 0.73 + 0.0 + 1.0 + + SEER + 13.0 + + + HSPF + 7.7 + + + + + + manual thermostat + 68.0 + 78.0 + + + + + + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + supply + 4.0 + attic - unvented + 150.0 + + + return + 0.0 + attic - unvented + 50.0 + + 2 + + + 2700.0 + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + + true + 150.0 + + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + exterior + 0.4 + + + + + + + garage + 0.4 + + + + + + + interior + 0.1 + + + + + + + exterior + 0.1 + + + + + + + garage + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.25 + + + + + + + garage + 0.25 + + + + + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + + TV other + + kWh/year + 620.0 + + + + +
+
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-heating-only.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-heating-only.xml new file mode 100644 index 00000000..1aedadc7 --- /dev/null +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-heating-only.xml @@ -0,0 +1,561 @@ + + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + + electricity + natural gas + + + + 3.0 + + + single-family detached + 2.0 + 1.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + Denver, CO + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + true + + + + + + + + attic - unvented + 1510.0 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 116.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + outside + attic - unvented + + + + 290.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + + + continuous - exterior + 8.9 + + 0.0 + 8.0 + + + + continuous - interior + 0.0 + + 0.0 + 0.0 + + + + + + + + + attic - unvented + living space + 1350.0 + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + 0.0 + 0.0 + + + + 0.0 + + + + + + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 0 + 4.4 + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + air-to-air + electricity + 42000.0 + 26460.0 + 0.0 + single stage + 0.73 + electricity + + Percent + 1.0 + + 34121.0 + 1.0 + 0.0 + + SEER + 13.0 + + + HSPF + 7.7 + + + + + + manual thermostat + 68.0 + 78.0 + + + + + + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + supply + 4.0 + attic - unvented + 150.0 + + + return + 0.0 + attic - unvented + 50.0 + + 2 + + + 2700.0 + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + + true + 150.0 + + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + exterior + 0.4 + + + + + + + garage + 0.4 + + + + + + + interior + 0.1 + + + + + + + exterior + 0.1 + + + + + + + garage + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.25 + + + + + + + garage + 0.25 + + + + + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + + TV other + + kWh/year + 620.0 + + + + +
+
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed.xml index 1603686b..6562b971 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed.xml @@ -330,9 +330,6 @@ HSPF 7.7 - - 0.45 - @@ -373,6 +370,7 @@ attic - unvented 50.0 + 2 2700.0 @@ -430,7 +428,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-2-speed.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-2-speed.xml index 731de2f7..45e305bc 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-2-speed.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-2-speed.xml @@ -370,6 +370,7 @@ attic - unvented 50.0 + 2 2700.0 @@ -427,7 +428,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed.xml index cc1d971b..b72c5335 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed.xml @@ -370,6 +370,7 @@ attic - unvented 50.0 + 2 2700.0 @@ -427,7 +428,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-1-speed-cooling-only.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-1-speed-cooling-only.xml new file mode 100644 index 00000000..fac0b765 --- /dev/null +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-1-speed-cooling-only.xml @@ -0,0 +1,552 @@ + + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + + electricity + natural gas + + + + 3.0 + + + single-family detached + 2.0 + 1.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + Denver, CO + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + true + + + + + + + + attic - unvented + 1510.0 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 116.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + outside + attic - unvented + + + + 290.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + + + continuous - exterior + 8.9 + + 0.0 + 8.0 + + + + continuous - interior + 0.0 + + 0.0 + 0.0 + + + + + + + + + attic - unvented + living space + 1350.0 + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + 0.0 + 0.0 + + + + 0.0 + + + + + + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 0 + 4.4 + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + air-to-air + electricity + single stage + 0.73 + 0.0 + 1.0 + + SEER + 13.0 + + + HSPF + 7.7 + + + + + + manual thermostat + 68.0 + 78.0 + + + + + + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + supply + 4.0 + attic - unvented + 150.0 + + + return + 0.0 + attic - unvented + 50.0 + + 2 + + + 2700.0 + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + + true + 150.0 + + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + exterior + 0.4 + + + + + + + garage + 0.4 + + + + + + + interior + 0.1 + + + + + + + exterior + 0.1 + + + + + + + garage + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.25 + + + + + + + garage + 0.25 + + + + + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + + TV other + + kWh/year + 620.0 + + + + +
+
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-1-speed-heating-only.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-1-speed-heating-only.xml new file mode 100644 index 00000000..ad1fc2bb --- /dev/null +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-1-speed-heating-only.xml @@ -0,0 +1,557 @@ + + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + + electricity + natural gas + + + + 3.0 + + + single-family detached + 2.0 + 1.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + Denver, CO + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + true + + + + + + + + attic - unvented + 1510.0 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 116.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + outside + attic - unvented + + + + 290.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + + + continuous - exterior + 8.9 + + 0.0 + 8.0 + + + + continuous - interior + 0.0 + + 0.0 + 0.0 + + + + + + + + + attic - unvented + living space + 1350.0 + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + 0.0 + 0.0 + + + + 0.0 + + + + + + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 0 + 4.4 + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + air-to-air + electricity + single stage + 0.73 + electricity + + Percent + 1.0 + + 1.0 + 0.0 + + SEER + 13.0 + + + HSPF + 7.7 + + + + + + manual thermostat + 68.0 + 78.0 + + + + + + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + supply + 4.0 + attic - unvented + 150.0 + + + return + 0.0 + attic - unvented + 50.0 + + 2 + + + 2700.0 + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + + true + 150.0 + + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + exterior + 0.4 + + + + + + + garage + 0.4 + + + + + + + interior + 0.1 + + + + + + + exterior + 0.1 + + + + + + + garage + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.25 + + + + + + + garage + 0.25 + + + + + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + + TV other + + kWh/year + 620.0 + + + + +
+
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/hvac_autosizing/base-hvac-air-to-air-heat-pump-1-speed-autosize-manual-s-oversize-allowances.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-1-speed-manual-s-oversize-allowances.xml similarity index 96% rename from example_files/resources/hpxml-measures/workflow/sample_files/hvac_autosizing/base-hvac-air-to-air-heat-pump-1-speed-autosize-manual-s-oversize-allowances.xml rename to example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-1-speed-manual-s-oversize-allowances.xml index 147ad270..d2f8380f 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/hvac_autosizing/base-hvac-air-to-air-heat-pump-1-speed-autosize-manual-s-oversize-allowances.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-1-speed-manual-s-oversize-allowances.xml @@ -329,9 +329,6 @@ HSPF 7.7 - - 0.45 - @@ -372,6 +369,7 @@ attic - unvented 50.0 + 2 2700.0 @@ -429,7 +427,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/hvac_autosizing/base-hvac-air-to-air-heat-pump-1-speed-autosize.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-1-speed.xml similarity index 96% rename from example_files/resources/hpxml-measures/workflow/sample_files/hvac_autosizing/base-hvac-air-to-air-heat-pump-1-speed-autosize.xml rename to example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-1-speed.xml index 97ab5646..3d5f75c3 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/hvac_autosizing/base-hvac-air-to-air-heat-pump-1-speed-autosize.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-1-speed.xml @@ -326,9 +326,6 @@ HSPF 7.7 - - 0.45 - @@ -369,6 +366,7 @@ attic - unvented 50.0 + 2 2700.0 @@ -426,7 +424,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/hvac_autosizing/base-hvac-air-to-air-heat-pump-2-speed-autosize-manual-s-oversize-allowances.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-2-speed-manual-s-oversize-allowances.xml similarity index 97% rename from example_files/resources/hpxml-measures/workflow/sample_files/hvac_autosizing/base-hvac-air-to-air-heat-pump-2-speed-autosize-manual-s-oversize-allowances.xml rename to example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-2-speed-manual-s-oversize-allowances.xml index 804f802f..fd70b206 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/hvac_autosizing/base-hvac-air-to-air-heat-pump-2-speed-autosize-manual-s-oversize-allowances.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-2-speed-manual-s-oversize-allowances.xml @@ -1,560 +1,560 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - false - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - - electricity - natural gas - - - - 3.0 - - - single-family detached - 2.0 - 1.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - Denver, CO - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - true - - - - - - - - attic - unvented - 1510.0 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 116.0 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - outside - attic - unvented - - - - 290.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - - - continuous - exterior - 8.9 - - 0.0 - 8.0 - - - - continuous - interior - 0.0 - - 0.0 - 0.0 - - - - - - - - - attic - unvented - living space - 1350.0 - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - 0.0 - 0.0 - - - - 0.0 - - - - - - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 0 - 4.4 - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - air-to-air - electricity - two stage - 0.73 - electricity - - Percent - 1.0 - - 1.0 - 1.0 - - SEER - 18.0 - - - HSPF - 9.3 - - - - - - manual thermostat - 68.0 - 78.0 - - - - - - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - supply - 4.0 - attic - unvented - 150.0 - - - return - 0.0 - attic - unvented - 50.0 - - - - 2700.0 - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - timer - - true - 150.0 - - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - exterior - 0.4 - - - - - - - garage - 0.4 - - - - - - - interior - 0.1 - - - - - - - exterior - 0.1 - - - - - - - garage - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.25 - - - - - - - garage - 0.25 - - - - - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - - TV other - - kWh/year - 620.0 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + false + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + + electricity + natural gas + + + + 3.0 + + + single-family detached + 2.0 + 1.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + Denver, CO + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + true + + + + + + + + attic - unvented + 1510.0 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 116.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + outside + attic - unvented + + + + 290.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + + + continuous - exterior + 8.9 + + 0.0 + 8.0 + + + + continuous - interior + 0.0 + + 0.0 + 0.0 + + + + + + + + + attic - unvented + living space + 1350.0 + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + 0.0 + 0.0 + + + + 0.0 + + + + + + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 0 + 4.4 + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + air-to-air + electricity + two stage + 0.73 + electricity + + Percent + 1.0 + + 1.0 + 1.0 + + SEER + 18.0 + + + HSPF + 9.3 + + + + + + manual thermostat + 68.0 + 78.0 + + + + + + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + supply + 4.0 + attic - unvented + 150.0 + + + return + 0.0 + attic - unvented + 50.0 + + 2 + + + 2700.0 + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + + true + 150.0 + + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + exterior + 0.4 + + + + + + + garage + 0.4 + + + + + + + interior + 0.1 + + + + + + + exterior + 0.1 + + + + + + + garage + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.25 + + + + + + + garage + 0.25 + + + + + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + + TV other + + kWh/year + 620.0 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/hvac_autosizing/base-hvac-air-to-air-heat-pump-2-speed-autosize.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-2-speed.xml similarity index 97% rename from example_files/resources/hpxml-measures/workflow/sample_files/hvac_autosizing/base-hvac-air-to-air-heat-pump-2-speed-autosize.xml rename to example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-2-speed.xml index 742871df..21cf2192 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/hvac_autosizing/base-hvac-air-to-air-heat-pump-2-speed-autosize.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-2-speed.xml @@ -1,557 +1,557 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - - electricity - natural gas - - - - 3.0 - - - single-family detached - 2.0 - 1.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - Denver, CO - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - true - - - - - - - - attic - unvented - 1510.0 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 116.0 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - outside - attic - unvented - - - - 290.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - - - continuous - exterior - 8.9 - - 0.0 - 8.0 - - - - continuous - interior - 0.0 - - 0.0 - 0.0 - - - - - - - - - attic - unvented - living space - 1350.0 - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - 0.0 - 0.0 - - - - 0.0 - - - - - - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 0 - 4.4 - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - air-to-air - electricity - two stage - 0.73 - electricity - - Percent - 1.0 - - 1.0 - 1.0 - - SEER - 18.0 - - - HSPF - 9.3 - - - - - - manual thermostat - 68.0 - 78.0 - - - - - - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - supply - 4.0 - attic - unvented - 150.0 - - - return - 0.0 - attic - unvented - 50.0 - - - - 2700.0 - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - timer - - true - 150.0 - - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - exterior - 0.4 - - - - - - - garage - 0.4 - - - - - - - interior - 0.1 - - - - - - - exterior - 0.1 - - - - - - - garage - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.25 - - - - - - - garage - 0.25 - - - - - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - - TV other - - kWh/year - 620.0 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + + electricity + natural gas + + + + 3.0 + + + single-family detached + 2.0 + 1.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + Denver, CO + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + true + + + + + + + + attic - unvented + 1510.0 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 116.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + outside + attic - unvented + + + + 290.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + + + continuous - exterior + 8.9 + + 0.0 + 8.0 + + + + continuous - interior + 0.0 + + 0.0 + 0.0 + + + + + + + + + attic - unvented + living space + 1350.0 + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + 0.0 + 0.0 + + + + 0.0 + + + + + + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 0 + 4.4 + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + air-to-air + electricity + two stage + 0.73 + electricity + + Percent + 1.0 + + 1.0 + 1.0 + + SEER + 18.0 + + + HSPF + 9.3 + + + + + + manual thermostat + 68.0 + 78.0 + + + + + + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + supply + 4.0 + attic - unvented + 150.0 + + + return + 0.0 + attic - unvented + 50.0 + + 2 + + + 2700.0 + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + + true + 150.0 + + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + exterior + 0.4 + + + + + + + garage + 0.4 + + + + + + + interior + 0.1 + + + + + + + exterior + 0.1 + + + + + + + garage + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.25 + + + + + + + garage + 0.25 + + + + + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + + TV other + + kWh/year + 620.0 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/hvac_autosizing/base-hvac-air-to-air-heat-pump-var-speed-autosize-manual-s-oversize-allowances.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-var-speed-manual-s-oversize-allowances.xml similarity index 97% rename from example_files/resources/hpxml-measures/workflow/sample_files/hvac_autosizing/base-hvac-air-to-air-heat-pump-var-speed-autosize-manual-s-oversize-allowances.xml rename to example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-var-speed-manual-s-oversize-allowances.xml index b5a229dd..81d1d763 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/hvac_autosizing/base-hvac-air-to-air-heat-pump-var-speed-autosize-manual-s-oversize-allowances.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-var-speed-manual-s-oversize-allowances.xml @@ -1,560 +1,560 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - false - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - - electricity - natural gas - - - - 3.0 - - - single-family detached - 2.0 - 1.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - Denver, CO - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - true - - - - - - - - attic - unvented - 1510.0 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 116.0 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - outside - attic - unvented - - - - 290.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - - - continuous - exterior - 8.9 - - 0.0 - 8.0 - - - - continuous - interior - 0.0 - - 0.0 - 0.0 - - - - - - - - - attic - unvented - living space - 1350.0 - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - 0.0 - 0.0 - - - - 0.0 - - - - - - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 0 - 4.4 - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - air-to-air - electricity - variable speed - 0.78 - electricity - - Percent - 1.0 - - 1.0 - 1.0 - - SEER - 22.0 - - - HSPF - 10.0 - - - - - - manual thermostat - 68.0 - 78.0 - - - - - - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - supply - 4.0 - attic - unvented - 150.0 - - - return - 0.0 - attic - unvented - 50.0 - - - - 2700.0 - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - timer - - true - 150.0 - - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - exterior - 0.4 - - - - - - - garage - 0.4 - - - - - - - interior - 0.1 - - - - - - - exterior - 0.1 - - - - - - - garage - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.25 - - - - - - - garage - 0.25 - - - - - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - - TV other - - kWh/year - 620.0 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + false + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + + electricity + natural gas + + + + 3.0 + + + single-family detached + 2.0 + 1.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + Denver, CO + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + true + + + + + + + + attic - unvented + 1510.0 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 116.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + outside + attic - unvented + + + + 290.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + + + continuous - exterior + 8.9 + + 0.0 + 8.0 + + + + continuous - interior + 0.0 + + 0.0 + 0.0 + + + + + + + + + attic - unvented + living space + 1350.0 + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + 0.0 + 0.0 + + + + 0.0 + + + + + + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 0 + 4.4 + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + air-to-air + electricity + variable speed + 0.78 + electricity + + Percent + 1.0 + + 1.0 + 1.0 + + SEER + 22.0 + + + HSPF + 10.0 + + + + + + manual thermostat + 68.0 + 78.0 + + + + + + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + supply + 4.0 + attic - unvented + 150.0 + + + return + 0.0 + attic - unvented + 50.0 + + 2 + + + 2700.0 + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + + true + 150.0 + + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + exterior + 0.4 + + + + + + + garage + 0.4 + + + + + + + interior + 0.1 + + + + + + + exterior + 0.1 + + + + + + + garage + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.25 + + + + + + + garage + 0.25 + + + + + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + + TV other + + kWh/year + 620.0 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/hvac_autosizing/base-hvac-air-to-air-heat-pump-var-speed-autosize.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-var-speed.xml similarity index 97% rename from example_files/resources/hpxml-measures/workflow/sample_files/hvac_autosizing/base-hvac-air-to-air-heat-pump-var-speed-autosize.xml rename to example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-var-speed.xml index 17ea741f..d8a60721 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/hvac_autosizing/base-hvac-air-to-air-heat-pump-var-speed-autosize.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-var-speed.xml @@ -1,557 +1,557 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - - electricity - natural gas - - - - 3.0 - - - single-family detached - 2.0 - 1.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - Denver, CO - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - true - - - - - - - - attic - unvented - 1510.0 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 116.0 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - outside - attic - unvented - - - - 290.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - - - continuous - exterior - 8.9 - - 0.0 - 8.0 - - - - continuous - interior - 0.0 - - 0.0 - 0.0 - - - - - - - - - attic - unvented - living space - 1350.0 - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - 0.0 - 0.0 - - - - 0.0 - - - - - - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 0 - 4.4 - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - air-to-air - electricity - variable speed - 0.78 - electricity - - Percent - 1.0 - - 1.0 - 1.0 - - SEER - 22.0 - - - HSPF - 10.0 - - - - - - manual thermostat - 68.0 - 78.0 - - - - - - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - supply - 4.0 - attic - unvented - 150.0 - - - return - 0.0 - attic - unvented - 50.0 - - - - 2700.0 - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - timer - - true - 150.0 - - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - exterior - 0.4 - - - - - - - garage - 0.4 - - - - - - - interior - 0.1 - - - - - - - exterior - 0.1 - - - - - - - garage - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.25 - - - - - - - garage - 0.25 - - - - - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - - TV other - - kWh/year - 620.0 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + + electricity + natural gas + + + + 3.0 + + + single-family detached + 2.0 + 1.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + Denver, CO + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + true + + + + + + + + attic - unvented + 1510.0 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 116.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + outside + attic - unvented + + + + 290.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + + + continuous - exterior + 8.9 + + 0.0 + 8.0 + + + + continuous - interior + 0.0 + + 0.0 + 0.0 + + + + + + + + + attic - unvented + living space + 1350.0 + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + 0.0 + 0.0 + + + + 0.0 + + + + + + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 0 + 4.4 + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + air-to-air + electricity + variable speed + 0.78 + electricity + + Percent + 1.0 + + 1.0 + 1.0 + + SEER + 22.0 + + + HSPF + 10.0 + + + + + + manual thermostat + 68.0 + 78.0 + + + + + + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + supply + 4.0 + attic - unvented + 150.0 + + + return + 0.0 + attic - unvented + 50.0 + + 2 + + + 2700.0 + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + + true + 150.0 + + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + exterior + 0.4 + + + + + + + garage + 0.4 + + + + + + + interior + 0.1 + + + + + + + exterior + 0.1 + + + + + + + garage + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.25 + + + + + + + garage + 0.25 + + + + + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + + TV other + + kWh/year + 620.0 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/hvac_autosizing/base-hvac-boiler-elec-only-autosize.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-boiler-elec-only.xml similarity index 97% rename from example_files/resources/hpxml-measures/workflow/sample_files/hvac_autosizing/base-hvac-boiler-elec-only-autosize.xml rename to example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-boiler-elec-only.xml index d3a03b6b..98c22ca2 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/hvac_autosizing/base-hvac-boiler-elec-only-autosize.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-boiler-elec-only.xml @@ -1,519 +1,518 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - - electricity - natural gas - - - - 3.0 - - - single-family detached - 2.0 - 1.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - Denver, CO - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - true - - - - - - - - attic - unvented - 1510.0 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 116.0 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - outside - attic - unvented - - - - 290.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - - - continuous - exterior - 8.9 - - 0.0 - 8.0 - - - - continuous - interior - 0.0 - - 0.0 - 0.0 - - - - - - - - - attic - unvented - living space - 1350.0 - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - 0.0 - 0.0 - - - - 0.0 - - - - - - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 0 - 4.4 - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - electricity - - AFUE - 1.0 - - 1.0 - - - - - manual thermostat - 68.0 - 78.0 - - - - - - baseboard - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - timer - - true - 150.0 - - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - exterior - 0.4 - - - - - - - garage - 0.4 - - - - - - - interior - 0.1 - - - - - - - exterior - 0.1 - - - - - - - garage - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.25 - - - - - - - garage - 0.25 - - - - - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - - TV other - - kWh/year - 620.0 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + + electricity + natural gas + + + + 3.0 + + + single-family detached + 2.0 + 1.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + Denver, CO + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + true + + + + + + + + attic - unvented + 1510.0 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 116.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + outside + attic - unvented + + + + 290.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + + + continuous - exterior + 8.9 + + 0.0 + 8.0 + + + + continuous - interior + 0.0 + + 0.0 + 0.0 + + + + + + + + + attic - unvented + living space + 1350.0 + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + 0.0 + 0.0 + + + + 0.0 + + + + + + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 0 + 4.4 + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + electricity + + AFUE + 1.0 + + 1.0 + + + + + manual thermostat + 68.0 + 78.0 + + + + + + baseboard + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + + true + 150.0 + + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + exterior + 0.4 + + + + + + + garage + 0.4 + + + + + + + interior + 0.1 + + + + + + + exterior + 0.1 + + + + + + + garage + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.25 + + + + + + + garage + 0.25 + + + + + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + + TV other + + kWh/year + 620.0 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/hvac_autosizing/base-hvac-boiler-gas-central-ac-1-speed-autosize.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-boiler-gas-central-ac-1-speed.xml similarity index 97% rename from example_files/resources/hpxml-measures/workflow/sample_files/hvac_autosizing/base-hvac-boiler-gas-central-ac-1-speed-autosize.xml rename to example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-boiler-gas-central-ac-1-speed.xml index 9232eda2..fb7a809d 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/hvac_autosizing/base-hvac-boiler-gas-central-ac-1-speed-autosize.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-boiler-gas-central-ac-1-speed.xml @@ -1,570 +1,569 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - - electricity - natural gas - - - - 3.0 - - - single-family detached - 2.0 - 1.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - Denver, CO - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - true - - - - - - - - attic - unvented - 1510.0 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 116.0 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - outside - attic - unvented - - - - 290.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - - - continuous - exterior - 8.9 - - 0.0 - 8.0 - - - - continuous - interior - 0.0 - - 0.0 - 0.0 - - - - - - - - - attic - unvented - living space - 1350.0 - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - 0.0 - 0.0 - - - - 0.0 - - - - - - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 0 - 4.4 - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - natural gas - - AFUE - 0.92 - - 1.0 - 200.0 - - - - - central air conditioner - electricity - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - manual thermostat - 68.0 - 78.0 - - - - - - baseboard - - - - - - - - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - supply - 4.0 - attic - unvented - 150.0 - - - return - 0.0 - attic - unvented - 50.0 - - 3 - - - 2700.0 - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - timer - - true - 150.0 - - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - exterior - 0.4 - - - - - - - garage - 0.4 - - - - - - - interior - 0.1 - - - - - - - exterior - 0.1 - - - - - - - garage - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.25 - - - - - - - garage - 0.25 - - - - - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - - TV other - - kWh/year - 620.0 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + + electricity + natural gas + + + + 3.0 + + + single-family detached + 2.0 + 1.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + Denver, CO + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + true + + + + + + + + attic - unvented + 1510.0 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 116.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + outside + attic - unvented + + + + 290.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + + + continuous - exterior + 8.9 + + 0.0 + 8.0 + + + + continuous - interior + 0.0 + + 0.0 + 0.0 + + + + + + + + + attic - unvented + living space + 1350.0 + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + 0.0 + 0.0 + + + + 0.0 + + + + + + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 0 + 4.4 + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + natural gas + + AFUE + 0.92 + + 1.0 + 200.0 + + + + + central air conditioner + electricity + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + manual thermostat + 68.0 + 78.0 + + + + + + baseboard + + + + + + + + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + supply + 4.0 + attic - unvented + 150.0 + + + return + 0.0 + attic - unvented + 50.0 + + 2 + + + 2700.0 + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + + true + 150.0 + + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + exterior + 0.4 + + + + + + + garage + 0.4 + + + + + + + interior + 0.1 + + + + + + + exterior + 0.1 + + + + + + + garage + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.25 + + + + + + + garage + 0.25 + + + + + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + + TV other + + kWh/year + 620.0 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/hvac_autosizing/base-hvac-boiler-gas-only-autosize.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-boiler-gas-only.xml similarity index 97% rename from example_files/resources/hpxml-measures/workflow/sample_files/hvac_autosizing/base-hvac-boiler-gas-only-autosize.xml rename to example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-boiler-gas-only.xml index d45721d4..9bf70021 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/hvac_autosizing/base-hvac-boiler-gas-only-autosize.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-boiler-gas-only.xml @@ -1,520 +1,519 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - - electricity - natural gas - - - - 3.0 - - - single-family detached - 2.0 - 1.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - Denver, CO - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - true - - - - - - - - attic - unvented - 1510.0 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 116.0 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - outside - attic - unvented - - - - 290.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - - - continuous - exterior - 8.9 - - 0.0 - 8.0 - - - - continuous - interior - 0.0 - - 0.0 - 0.0 - - - - - - - - - attic - unvented - living space - 1350.0 - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - 0.0 - 0.0 - - - - 0.0 - - - - - - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 0 - 4.4 - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - natural gas - - AFUE - 0.92 - - 1.0 - 200.0 - - - - - manual thermostat - 68.0 - 78.0 - - - - - - baseboard - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - timer - - true - 150.0 - - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - exterior - 0.4 - - - - - - - garage - 0.4 - - - - - - - interior - 0.1 - - - - - - - exterior - 0.1 - - - - - - - garage - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.25 - - - - - - - garage - 0.25 - - - - - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - - TV other - - kWh/year - 620.0 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + + electricity + natural gas + + + + 3.0 + + + single-family detached + 2.0 + 1.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + Denver, CO + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + true + + + + + + + + attic - unvented + 1510.0 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 116.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + outside + attic - unvented + + + + 290.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + + + continuous - exterior + 8.9 + + 0.0 + 8.0 + + + + continuous - interior + 0.0 + + 0.0 + 0.0 + + + + + + + + + attic - unvented + living space + 1350.0 + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + 0.0 + 0.0 + + + + 0.0 + + + + + + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 0 + 4.4 + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + natural gas + + AFUE + 0.92 + + 1.0 + 200.0 + + + + + manual thermostat + 68.0 + 78.0 + + + + + + baseboard + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + + true + 150.0 + + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + exterior + 0.4 + + + + + + + garage + 0.4 + + + + + + + interior + 0.1 + + + + + + + exterior + 0.1 + + + + + + + garage + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.25 + + + + + + + garage + 0.25 + + + + + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + + TV other + + kWh/year + 620.0 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/hvac_autosizing/base-hvac-central-ac-only-1-speed-autosize.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-central-ac-only-1-speed.xml similarity index 96% rename from example_files/resources/hpxml-measures/workflow/sample_files/hvac_autosizing/base-hvac-central-ac-only-1-speed-autosize.xml rename to example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-central-ac-only-1-speed.xml index f701b5d9..6e3a5b66 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/hvac_autosizing/base-hvac-central-ac-only-1-speed-autosize.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-central-ac-only-1-speed.xml @@ -316,9 +316,6 @@ 13.0 0.73 - - 0.45 - @@ -359,6 +356,7 @@ attic - unvented 50.0 + 2 2700.0 @@ -416,7 +414,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/hvac_autosizing/base-hvac-central-ac-only-2-speed-autosize.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-central-ac-only-2-speed.xml similarity index 97% rename from example_files/resources/hpxml-measures/workflow/sample_files/hvac_autosizing/base-hvac-central-ac-only-2-speed-autosize.xml rename to example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-central-ac-only-2-speed.xml index a52bc797..37461bd2 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/hvac_autosizing/base-hvac-central-ac-only-2-speed-autosize.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-central-ac-only-2-speed.xml @@ -1,547 +1,547 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - - electricity - natural gas - - - - 3.0 - - - single-family detached - 2.0 - 1.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - Denver, CO - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - true - - - - - - - - attic - unvented - 1510.0 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 116.0 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - outside - attic - unvented - - - - 290.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - - - continuous - exterior - 8.9 - - 0.0 - 8.0 - - - - continuous - interior - 0.0 - - 0.0 - 0.0 - - - - - - - - - attic - unvented - living space - 1350.0 - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - 0.0 - 0.0 - - - - 0.0 - - - - - - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 0 - 4.4 - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - central air conditioner - electricity - two stage - 1.0 - - SEER - 18.0 - - 0.73 - - - - - manual thermostat - 68.0 - 78.0 - - - - - - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - supply - 4.0 - attic - unvented - 150.0 - - - return - 0.0 - attic - unvented - 50.0 - - - - 2700.0 - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - timer - - true - 150.0 - - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - exterior - 0.4 - - - - - - - garage - 0.4 - - - - - - - interior - 0.1 - - - - - - - exterior - 0.1 - - - - - - - garage - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.25 - - - - - - - garage - 0.25 - - - - - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - - TV other - - kWh/year - 620.0 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + + electricity + natural gas + + + + 3.0 + + + single-family detached + 2.0 + 1.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + Denver, CO + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + true + + + + + + + + attic - unvented + 1510.0 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 116.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + outside + attic - unvented + + + + 290.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + + + continuous - exterior + 8.9 + + 0.0 + 8.0 + + + + continuous - interior + 0.0 + + 0.0 + 0.0 + + + + + + + + + attic - unvented + living space + 1350.0 + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + 0.0 + 0.0 + + + + 0.0 + + + + + + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 0 + 4.4 + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + central air conditioner + electricity + two stage + 1.0 + + SEER + 18.0 + + 0.73 + + + + + manual thermostat + 68.0 + 78.0 + + + + + + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + supply + 4.0 + attic - unvented + 150.0 + + + return + 0.0 + attic - unvented + 50.0 + + 2 + + + 2700.0 + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + + true + 150.0 + + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + exterior + 0.4 + + + + + + + garage + 0.4 + + + + + + + interior + 0.1 + + + + + + + exterior + 0.1 + + + + + + + garage + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.25 + + + + + + + garage + 0.25 + + + + + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + + TV other + + kWh/year + 620.0 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/hvac_autosizing/base-hvac-central-ac-only-var-speed-autosize.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-central-ac-only-var-speed.xml similarity index 97% rename from example_files/resources/hpxml-measures/workflow/sample_files/hvac_autosizing/base-hvac-central-ac-only-var-speed-autosize.xml rename to example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-central-ac-only-var-speed.xml index 5aa3faa5..d7b14088 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/hvac_autosizing/base-hvac-central-ac-only-var-speed-autosize.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-central-ac-only-var-speed.xml @@ -1,547 +1,547 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - - electricity - natural gas - - - - 3.0 - - - single-family detached - 2.0 - 1.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - Denver, CO - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - true - - - - - - - - attic - unvented - 1510.0 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 116.0 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - outside - attic - unvented - - - - 290.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - - - continuous - exterior - 8.9 - - 0.0 - 8.0 - - - - continuous - interior - 0.0 - - 0.0 - 0.0 - - - - - - - - - attic - unvented - living space - 1350.0 - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - 0.0 - 0.0 - - - - 0.0 - - - - - - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 0 - 4.4 - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - central air conditioner - electricity - variable speed - 1.0 - - SEER - 24.0 - - 0.78 - - - - - manual thermostat - 68.0 - 78.0 - - - - - - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - supply - 4.0 - attic - unvented - 150.0 - - - return - 0.0 - attic - unvented - 50.0 - - - - 2700.0 - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - timer - - true - 150.0 - - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - exterior - 0.4 - - - - - - - garage - 0.4 - - - - - - - interior - 0.1 - - - - - - - exterior - 0.1 - - - - - - - garage - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.25 - - - - - - - garage - 0.25 - - - - - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - - TV other - - kWh/year - 620.0 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + + electricity + natural gas + + + + 3.0 + + + single-family detached + 2.0 + 1.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + Denver, CO + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + true + + + + + + + + attic - unvented + 1510.0 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 116.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + outside + attic - unvented + + + + 290.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + + + continuous - exterior + 8.9 + + 0.0 + 8.0 + + + + continuous - interior + 0.0 + + 0.0 + 0.0 + + + + + + + + + attic - unvented + living space + 1350.0 + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + 0.0 + 0.0 + + + + 0.0 + + + + + + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 0 + 4.4 + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + central air conditioner + electricity + variable speed + 1.0 + + SEER + 24.0 + + 0.78 + + + + + manual thermostat + 68.0 + 78.0 + + + + + + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + supply + 4.0 + attic - unvented + 150.0 + + + return + 0.0 + attic - unvented + 50.0 + + 2 + + + 2700.0 + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + + true + 150.0 + + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + exterior + 0.4 + + + + + + + garage + 0.4 + + + + + + + interior + 0.1 + + + + + + + exterior + 0.1 + + + + + + + garage + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.25 + + + + + + + garage + 0.25 + + + + + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + + TV other + + kWh/year + 620.0 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/hvac_autosizing/base-hvac-central-ac-plus-air-to-air-heat-pump-heating-autosize.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-central-ac-plus-air-to-air-heat-pump-heating.xml similarity index 96% rename from example_files/resources/hpxml-measures/workflow/sample_files/hvac_autosizing/base-hvac-central-ac-plus-air-to-air-heat-pump-heating-autosize.xml rename to example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-central-ac-plus-air-to-air-heat-pump-heating.xml index 6d1ccc5c..2f70101d 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/hvac_autosizing/base-hvac-central-ac-plus-air-to-air-heat-pump-heating-autosize.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-central-ac-plus-air-to-air-heat-pump-heating.xml @@ -316,9 +316,6 @@ 13.0 0.73 - - 0.45 - @@ -342,9 +339,6 @@ HSPF 7.7 - - 0.45 - @@ -385,6 +379,7 @@ attic - unvented 50.0 + 2 2700.0 @@ -442,7 +437,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/hvac_autosizing/base-hvac-dual-fuel-air-to-air-heat-pump-1-speed-autosize.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed.xml similarity index 96% rename from example_files/resources/hpxml-measures/workflow/sample_files/hvac_autosizing/base-hvac-dual-fuel-air-to-air-heat-pump-1-speed-autosize.xml rename to example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed.xml index 42d44db7..eaaeaeaf 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/hvac_autosizing/base-hvac-dual-fuel-air-to-air-heat-pump-1-speed-autosize.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed.xml @@ -327,9 +327,6 @@ HSPF 7.7 - - 0.45 - @@ -370,6 +367,7 @@ attic - unvented 50.0 + 2 2700.0 @@ -427,7 +425,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/hvac_autosizing/base-hvac-dual-fuel-mini-split-heat-pump-ducted-autosize.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-dual-fuel-mini-split-heat-pump-ducted.xml similarity index 96% rename from example_files/resources/hpxml-measures/workflow/sample_files/hvac_autosizing/base-hvac-dual-fuel-mini-split-heat-pump-ducted-autosize.xml rename to example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-dual-fuel-mini-split-heat-pump-ducted.xml index 5776de8b..113cc7dd 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/hvac_autosizing/base-hvac-dual-fuel-mini-split-heat-pump-ducted-autosize.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-dual-fuel-mini-split-heat-pump-ducted.xml @@ -326,9 +326,6 @@ HSPF 10.0 - - 0.2 - @@ -369,6 +366,7 @@ attic - unvented 10.0 + 2 2700.0 @@ -426,7 +424,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/hvac_autosizing/base-hvac-elec-resistance-only-autosize.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-elec-resistance-only.xml similarity index 97% rename from example_files/resources/hpxml-measures/workflow/sample_files/hvac_autosizing/base-hvac-elec-resistance-only-autosize.xml rename to example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-elec-resistance-only.xml index c8fb8dc8..95f3b1d2 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/hvac_autosizing/base-hvac-elec-resistance-only-autosize.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-elec-resistance-only.xml @@ -1,510 +1,509 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - - electricity - natural gas - - - - 3.0 - - - single-family detached - 2.0 - 1.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - Denver, CO - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - true - - - - - - - - attic - unvented - 1510.0 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 116.0 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - outside - attic - unvented - - - - 290.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - - - continuous - exterior - 8.9 - - 0.0 - 8.0 - - - - continuous - interior - 0.0 - - 0.0 - 0.0 - - - - - - - - - attic - unvented - living space - 1350.0 - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - 0.0 - 0.0 - - - - 0.0 - - - - - - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 0 - 4.4 - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - electricity - - Percent - 1.0 - - 1.0 - - - - - manual thermostat - 68.0 - 78.0 - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - timer - - true - 150.0 - - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - exterior - 0.4 - - - - - - - garage - 0.4 - - - - - - - interior - 0.1 - - - - - - - exterior - 0.1 - - - - - - - garage - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.25 - - - - - - - garage - 0.25 - - - - - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - - TV other - - kWh/year - 620.0 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + + electricity + natural gas + + + + 3.0 + + + single-family detached + 2.0 + 1.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + Denver, CO + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + true + + + + + + + + attic - unvented + 1510.0 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 116.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + outside + attic - unvented + + + + 290.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + + + continuous - exterior + 8.9 + + 0.0 + 8.0 + + + + continuous - interior + 0.0 + + 0.0 + 0.0 + + + + + + + + + attic - unvented + living space + 1350.0 + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + 0.0 + 0.0 + + + + 0.0 + + + + + + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 0 + 4.4 + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + electricity + + Percent + 1.0 + + 1.0 + + + + + manual thermostat + 68.0 + 78.0 + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + + true + 150.0 + + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + exterior + 0.4 + + + + + + + garage + 0.4 + + + + + + + interior + 0.1 + + + + + + + exterior + 0.1 + + + + + + + garage + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.25 + + + + + + + garage + 0.25 + + + + + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + + TV other + + kWh/year + 620.0 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/hvac_autosizing/base-hvac-evap-cooler-furnace-gas-autosize.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-evap-cooler-furnace-gas.xml similarity index 97% rename from example_files/resources/hpxml-measures/workflow/sample_files/hvac_autosizing/base-hvac-evap-cooler-furnace-gas-autosize.xml rename to example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-evap-cooler-furnace-gas.xml index 07ef93f3..9cf9bb6d 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/hvac_autosizing/base-hvac-evap-cooler-furnace-gas-autosize.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-evap-cooler-furnace-gas.xml @@ -1,553 +1,553 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - - electricity - natural gas - - - - 3.0 - - - single-family detached - 2.0 - 1.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - Denver, CO - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - true - - - - - - - - attic - unvented - 1510.0 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 116.0 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - outside - attic - unvented - - - - 290.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - - - continuous - exterior - 8.9 - - 0.0 - 8.0 - - - - continuous - interior - 0.0 - - 0.0 - 0.0 - - - - - - - - - attic - unvented - living space - 1350.0 - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - 0.0 - 0.0 - - - - 0.0 - - - - - - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 0 - 4.4 - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - natural gas - - AFUE - 0.92 - - 1.0 - - - - evaporative cooler - electricity - 1.0 - - - - - manual thermostat - 68.0 - 78.0 - - - - - - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - supply - 4.0 - attic - unvented - 150.0 - - - return - 0.0 - attic - unvented - 50.0 - - - - 2700.0 - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - timer - - true - 150.0 - - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - exterior - 0.4 - - - - - - - garage - 0.4 - - - - - - - interior - 0.1 - - - - - - - exterior - 0.1 - - - - - - - garage - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.25 - - - - - - - garage - 0.25 - - - - - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - - TV other - - kWh/year - 620.0 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + + electricity + natural gas + + + + 3.0 + + + single-family detached + 2.0 + 1.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + Denver, CO + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + true + + + + + + + + attic - unvented + 1510.0 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 116.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + outside + attic - unvented + + + + 290.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + + + continuous - exterior + 8.9 + + 0.0 + 8.0 + + + + continuous - interior + 0.0 + + 0.0 + 0.0 + + + + + + + + + attic - unvented + living space + 1350.0 + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + 0.0 + 0.0 + + + + 0.0 + + + + + + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 0 + 4.4 + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + natural gas + + AFUE + 0.92 + + 1.0 + + + + evaporative cooler + electricity + 1.0 + + + + + manual thermostat + 68.0 + 78.0 + + + + + + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + supply + 4.0 + attic - unvented + 150.0 + + + return + 0.0 + attic - unvented + 50.0 + + 2 + + + 2700.0 + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + + true + 150.0 + + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + exterior + 0.4 + + + + + + + garage + 0.4 + + + + + + + interior + 0.1 + + + + + + + exterior + 0.1 + + + + + + + garage + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.25 + + + + + + + garage + 0.25 + + + + + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + + TV other + + kWh/year + 620.0 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/hvac_autosizing/base-hvac-floor-furnace-propane-only-autosize.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-floor-furnace-propane-only.xml similarity index 97% rename from example_files/resources/hpxml-measures/workflow/sample_files/hvac_autosizing/base-hvac-floor-furnace-propane-only-autosize.xml rename to example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-floor-furnace-propane-only.xml index 5390d03a..9aa67a55 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/hvac_autosizing/base-hvac-floor-furnace-propane-only-autosize.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-floor-furnace-propane-only.xml @@ -1,513 +1,512 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - - electricity - natural gas - - - - 3.0 - - - single-family detached - 2.0 - 1.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - Denver, CO - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - true - - - - - - - - attic - unvented - 1510.0 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 116.0 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - outside - attic - unvented - - - - 290.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - - - continuous - exterior - 8.9 - - 0.0 - 8.0 - - - - continuous - interior - 0.0 - - 0.0 - 0.0 - - - - - - - - - attic - unvented - living space - 1350.0 - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - 0.0 - 0.0 - - - - 0.0 - - - - - - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 0 - 4.4 - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - propane - - AFUE - 0.8 - - 1.0 - - 0.0 - - - - - - manual thermostat - 68.0 - 78.0 - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - timer - - true - 150.0 - - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - exterior - 0.4 - - - - - - - garage - 0.4 - - - - - - - interior - 0.1 - - - - - - - exterior - 0.1 - - - - - - - garage - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.25 - - - - - - - garage - 0.25 - - - - - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - - TV other - - kWh/year - 620.0 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + + electricity + natural gas + + + + 3.0 + + + single-family detached + 2.0 + 1.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + Denver, CO + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + true + + + + + + + + attic - unvented + 1510.0 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 116.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + outside + attic - unvented + + + + 290.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + + + continuous - exterior + 8.9 + + 0.0 + 8.0 + + + + continuous - interior + 0.0 + + 0.0 + 0.0 + + + + + + + + + attic - unvented + living space + 1350.0 + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + 0.0 + 0.0 + + + + 0.0 + + + + + + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 0 + 4.4 + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + propane + + AFUE + 0.8 + + 1.0 + + 0.0 + + + + + + manual thermostat + 68.0 + 78.0 + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + + true + 150.0 + + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + exterior + 0.4 + + + + + + + garage + 0.4 + + + + + + + interior + 0.1 + + + + + + + exterior + 0.1 + + + + + + + garage + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.25 + + + + + + + garage + 0.25 + + + + + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + + TV other + + kWh/year + 620.0 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/hvac_autosizing/base-hvac-furnace-elec-only-autosize.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-furnace-elec-only.xml similarity index 97% rename from example_files/resources/hpxml-measures/workflow/sample_files/hvac_autosizing/base-hvac-furnace-elec-only-autosize.xml rename to example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-furnace-elec-only.xml index 1ed5b15f..c224cf47 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/hvac_autosizing/base-hvac-furnace-elec-only-autosize.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-furnace-elec-only.xml @@ -1,547 +1,547 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - - electricity - natural gas - - - - 3.0 - - - single-family detached - 2.0 - 1.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - Denver, CO - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - true - - - - - - - - attic - unvented - 1510.0 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 116.0 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - outside - attic - unvented - - - - 290.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - - - continuous - exterior - 8.9 - - 0.0 - 8.0 - - - - continuous - interior - 0.0 - - 0.0 - 0.0 - - - - - - - - - attic - unvented - living space - 1350.0 - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - 0.0 - 0.0 - - - - 0.0 - - - - - - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 0 - 4.4 - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - electricity - - AFUE - 1.0 - - 1.0 - - - - - manual thermostat - 68.0 - 78.0 - - - - - - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - supply - 4.0 - attic - unvented - 150.0 - - - return - 0.0 - attic - unvented - 50.0 - - - - 2700.0 - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - timer - - true - 150.0 - - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - exterior - 0.4 - - - - - - - garage - 0.4 - - - - - - - interior - 0.1 - - - - - - - exterior - 0.1 - - - - - - - garage - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.25 - - - - - - - garage - 0.25 - - - - - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - - TV other - - kWh/year - 620.0 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + + electricity + natural gas + + + + 3.0 + + + single-family detached + 2.0 + 1.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + Denver, CO + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + true + + + + + + + + attic - unvented + 1510.0 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 116.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + outside + attic - unvented + + + + 290.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + + + continuous - exterior + 8.9 + + 0.0 + 8.0 + + + + continuous - interior + 0.0 + + 0.0 + 0.0 + + + + + + + + + attic - unvented + living space + 1350.0 + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + 0.0 + 0.0 + + + + 0.0 + + + + + + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 0 + 4.4 + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + electricity + + AFUE + 1.0 + + 1.0 + + + + + manual thermostat + 68.0 + 78.0 + + + + + + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + supply + 4.0 + attic - unvented + 150.0 + + + return + 0.0 + attic - unvented + 50.0 + + 2 + + + 2700.0 + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + + true + 150.0 + + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + exterior + 0.4 + + + + + + + garage + 0.4 + + + + + + + interior + 0.1 + + + + + + + exterior + 0.1 + + + + + + + garage + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.25 + + + + + + + garage + 0.25 + + + + + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + + TV other + + kWh/year + 620.0 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/hvac_autosizing/base-hvac-furnace-gas-central-ac-2-speed-autosize.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-furnace-gas-central-ac-2-speed.xml similarity index 97% rename from example_files/resources/hpxml-measures/workflow/sample_files/hvac_autosizing/base-hvac-furnace-gas-central-ac-2-speed-autosize.xml rename to example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-furnace-gas-central-ac-2-speed.xml index c434dcf2..e15dbaee 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/hvac_autosizing/base-hvac-furnace-gas-central-ac-2-speed-autosize.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-furnace-gas-central-ac-2-speed.xml @@ -1,560 +1,560 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - - electricity - natural gas - - - - 3.0 - - - single-family detached - 2.0 - 1.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - Denver, CO - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - true - - - - - - - - attic - unvented - 1510.0 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 116.0 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - outside - attic - unvented - - - - 290.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - - - continuous - exterior - 8.9 - - 0.0 - 8.0 - - - - continuous - interior - 0.0 - - 0.0 - 0.0 - - - - - - - - - attic - unvented - living space - 1350.0 - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - 0.0 - 0.0 - - - - 0.0 - - - - - - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 0 - 4.4 - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - natural gas - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - two stage - 1.0 - - SEER - 18.0 - - 0.73 - - - - - manual thermostat - 68.0 - 78.0 - - - - - - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - supply - 4.0 - attic - unvented - 150.0 - - - return - 0.0 - attic - unvented - 50.0 - - - - 2700.0 - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - timer - - true - 150.0 - - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - exterior - 0.4 - - - - - - - garage - 0.4 - - - - - - - interior - 0.1 - - - - - - - exterior - 0.1 - - - - - - - garage - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.25 - - - - - - - garage - 0.25 - - - - - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - - TV other - - kWh/year - 620.0 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + + electricity + natural gas + + + + 3.0 + + + single-family detached + 2.0 + 1.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + Denver, CO + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + true + + + + + + + + attic - unvented + 1510.0 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 116.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + outside + attic - unvented + + + + 290.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + + + continuous - exterior + 8.9 + + 0.0 + 8.0 + + + + continuous - interior + 0.0 + + 0.0 + 0.0 + + + + + + + + + attic - unvented + living space + 1350.0 + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + 0.0 + 0.0 + + + + 0.0 + + + + + + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 0 + 4.4 + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + natural gas + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + two stage + 1.0 + + SEER + 18.0 + + 0.73 + + + + + manual thermostat + 68.0 + 78.0 + + + + + + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + supply + 4.0 + attic - unvented + 150.0 + + + return + 0.0 + attic - unvented + 50.0 + + 2 + + + 2700.0 + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + + true + 150.0 + + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + exterior + 0.4 + + + + + + + garage + 0.4 + + + + + + + interior + 0.1 + + + + + + + exterior + 0.1 + + + + + + + garage + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.25 + + + + + + + garage + 0.25 + + + + + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + + TV other + + kWh/year + 620.0 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/hvac_autosizing/base-hvac-furnace-gas-central-ac-var-speed-autosize.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-furnace-gas-central-ac-var-speed.xml similarity index 97% rename from example_files/resources/hpxml-measures/workflow/sample_files/hvac_autosizing/base-hvac-furnace-gas-central-ac-var-speed-autosize.xml rename to example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-furnace-gas-central-ac-var-speed.xml index e70fe641..a3455767 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/hvac_autosizing/base-hvac-furnace-gas-central-ac-var-speed-autosize.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-furnace-gas-central-ac-var-speed.xml @@ -1,560 +1,560 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - - electricity - natural gas - - - - 3.0 - - - single-family detached - 2.0 - 1.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - Denver, CO - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - true - - - - - - - - attic - unvented - 1510.0 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 116.0 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - outside - attic - unvented - - - - 290.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - - - continuous - exterior - 8.9 - - 0.0 - 8.0 - - - - continuous - interior - 0.0 - - 0.0 - 0.0 - - - - - - - - - attic - unvented - living space - 1350.0 - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - 0.0 - 0.0 - - - - 0.0 - - - - - - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 0 - 4.4 - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - natural gas - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - variable speed - 1.0 - - SEER - 24.0 - - 0.78 - - - - - manual thermostat - 68.0 - 78.0 - - - - - - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - supply - 4.0 - attic - unvented - 150.0 - - - return - 0.0 - attic - unvented - 50.0 - - - - 2700.0 - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - timer - - true - 150.0 - - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - exterior - 0.4 - - - - - - - garage - 0.4 - - - - - - - interior - 0.1 - - - - - - - exterior - 0.1 - - - - - - - garage - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.25 - - - - - - - garage - 0.25 - - - - - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - - TV other - - kWh/year - 620.0 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + + electricity + natural gas + + + + 3.0 + + + single-family detached + 2.0 + 1.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + Denver, CO + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + true + + + + + + + + attic - unvented + 1510.0 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 116.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + outside + attic - unvented + + + + 290.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + + + continuous - exterior + 8.9 + + 0.0 + 8.0 + + + + continuous - interior + 0.0 + + 0.0 + 0.0 + + + + + + + + + attic - unvented + living space + 1350.0 + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + 0.0 + 0.0 + + + + 0.0 + + + + + + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 0 + 4.4 + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + natural gas + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + variable speed + 1.0 + + SEER + 24.0 + + 0.78 + + + + + manual thermostat + 68.0 + 78.0 + + + + + + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + supply + 4.0 + attic - unvented + 150.0 + + + return + 0.0 + attic - unvented + 50.0 + + 2 + + + 2700.0 + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + + true + 150.0 + + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + exterior + 0.4 + + + + + + + garage + 0.4 + + + + + + + interior + 0.1 + + + + + + + exterior + 0.1 + + + + + + + garage + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.25 + + + + + + + garage + 0.25 + + + + + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + + TV other + + kWh/year + 620.0 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-furnace-gas-only.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-furnace-gas-only.xml new file mode 100644 index 00000000..195e9326 --- /dev/null +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-furnace-gas-only.xml @@ -0,0 +1,547 @@ + + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + + electricity + natural gas + + + + 3.0 + + + single-family detached + 2.0 + 1.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + Denver, CO + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + true + + + + + + + + attic - unvented + 1510.0 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 116.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + outside + attic - unvented + + + + 290.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + + + continuous - exterior + 8.9 + + 0.0 + 8.0 + + + + continuous - interior + 0.0 + + 0.0 + 0.0 + + + + + + + + + attic - unvented + living space + 1350.0 + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + 0.0 + 0.0 + + + + 0.0 + + + + + + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 0 + 4.4 + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + natural gas + + AFUE + 0.92 + + 1.0 + + + + + manual thermostat + 68.0 + 78.0 + + + + + + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + supply + 4.0 + attic - unvented + 150.0 + + + return + 0.0 + attic - unvented + 50.0 + + 2 + + + 2700.0 + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + + true + 150.0 + + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + exterior + 0.4 + + + + + + + garage + 0.4 + + + + + + + interior + 0.1 + + + + + + + exterior + 0.1 + + + + + + + garage + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.25 + + + + + + + garage + 0.25 + + + + + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + + TV other + + kWh/year + 620.0 + + + + +
+
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/hvac_autosizing/base-hvac-furnace-gas-room-ac-autosize.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-furnace-gas-room-ac.xml similarity index 97% rename from example_files/resources/hpxml-measures/workflow/sample_files/hvac_autosizing/base-hvac-furnace-gas-room-ac-autosize.xml rename to example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-furnace-gas-room-ac.xml index aa59b66d..4e362b2e 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/hvac_autosizing/base-hvac-furnace-gas-room-ac-autosize.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-furnace-gas-room-ac.xml @@ -1,558 +1,558 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - - electricity - natural gas - - - - 3.0 - - - single-family detached - 2.0 - 1.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - Denver, CO - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - true - - - - - - - - attic - unvented - 1510.0 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 116.0 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - outside - attic - unvented - - - - 290.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - - - continuous - exterior - 8.9 - - 0.0 - 8.0 - - - - continuous - interior - 0.0 - - 0.0 - 0.0 - - - - - - - - - attic - unvented - living space - 1350.0 - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - 0.0 - 0.0 - - - - 0.0 - - - - - - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 0 - 4.4 - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - natural gas - - AFUE - 0.92 - - 1.0 - - - - room air conditioner - electricity - 1.0 - - EER - 8.5 - - 0.65 - - - - - manual thermostat - 68.0 - 78.0 - - - - - - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - supply - 4.0 - attic - unvented - 150.0 - - - return - 0.0 - attic - unvented - 50.0 - - - - 2700.0 - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - timer - - true - 150.0 - - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - exterior - 0.4 - - - - - - - garage - 0.4 - - - - - - - interior - 0.1 - - - - - - - exterior - 0.1 - - - - - - - garage - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.25 - - - - - - - garage - 0.25 - - - - - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - - TV other - - kWh/year - 620.0 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + + electricity + natural gas + + + + 3.0 + + + single-family detached + 2.0 + 1.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + Denver, CO + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + true + + + + + + + + attic - unvented + 1510.0 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 116.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + outside + attic - unvented + + + + 290.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + + + continuous - exterior + 8.9 + + 0.0 + 8.0 + + + + continuous - interior + 0.0 + + 0.0 + 0.0 + + + + + + + + + attic - unvented + living space + 1350.0 + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + 0.0 + 0.0 + + + + 0.0 + + + + + + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 0 + 4.4 + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + natural gas + + AFUE + 0.92 + + 1.0 + + + + room air conditioner + electricity + 1.0 + + EER + 8.5 + + 0.65 + + + + + manual thermostat + 68.0 + 78.0 + + + + + + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + supply + 4.0 + attic - unvented + 150.0 + + + return + 0.0 + attic - unvented + 50.0 + + 2 + + + 2700.0 + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + + true + 150.0 + + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + exterior + 0.4 + + + + + + + garage + 0.4 + + + + + + + interior + 0.1 + + + + + + + exterior + 0.1 + + + + + + + garage + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.25 + + + + + + + garage + 0.25 + + + + + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + + TV other + + kWh/year + 620.0 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-ground-to-air-heat-pump-cooling-only.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-ground-to-air-heat-pump-cooling-only.xml new file mode 100644 index 00000000..c52da297 --- /dev/null +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-ground-to-air-heat-pump-cooling-only.xml @@ -0,0 +1,554 @@ + + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + + electricity + natural gas + + + + 3.0 + + + single-family detached + 2.0 + 1.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + Denver, CO + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + true + + + + + + + + attic - unvented + 1510.0 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 116.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + outside + attic - unvented + + + + 290.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + + + continuous - exterior + 8.9 + + 0.0 + 8.0 + + + + continuous - interior + 0.0 + + 0.0 + 0.0 + + + + + + + + + attic - unvented + living space + 1350.0 + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + 0.0 + 0.0 + + + + 0.0 + + + + + + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 0 + 4.4 + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + ground-to-air + electricity + 0.73 + 0.0 + 1.0 + + EER + 16.6 + + + COP + 3.6 + + + 30.0 + + + + + + manual thermostat + 68.0 + 78.0 + + + + + + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + supply + 4.0 + attic - unvented + 150.0 + + + return + 0.0 + attic - unvented + 50.0 + + 2 + + + 2700.0 + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + + true + 150.0 + + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + exterior + 0.4 + + + + + + + garage + 0.4 + + + + + + + interior + 0.1 + + + + + + + exterior + 0.1 + + + + + + + garage + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.25 + + + + + + + garage + 0.25 + + + + + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + + TV other + + kWh/year + 620.0 + + + + +
+
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-ground-to-air-heat-pump-heating-only.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-ground-to-air-heat-pump-heating-only.xml new file mode 100644 index 00000000..dd45868d --- /dev/null +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-ground-to-air-heat-pump-heating-only.xml @@ -0,0 +1,559 @@ + + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + + electricity + natural gas + + + + 3.0 + + + single-family detached + 2.0 + 1.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + Denver, CO + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + true + + + + + + + + attic - unvented + 1510.0 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 116.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + outside + attic - unvented + + + + 290.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + + + continuous - exterior + 8.9 + + 0.0 + 8.0 + + + + continuous - interior + 0.0 + + 0.0 + 0.0 + + + + + + + + + attic - unvented + living space + 1350.0 + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + 0.0 + 0.0 + + + + 0.0 + + + + + + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 0 + 4.4 + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + ground-to-air + electricity + 0.73 + electricity + + Percent + 1.0 + + 1.0 + 0.0 + + EER + 16.6 + + + COP + 3.6 + + + 30.0 + + + + + + manual thermostat + 68.0 + 78.0 + + + + + + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + supply + 4.0 + attic - unvented + 150.0 + + + return + 0.0 + attic - unvented + 50.0 + + 2 + + + 2700.0 + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + + true + 150.0 + + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + exterior + 0.4 + + + + + + + garage + 0.4 + + + + + + + interior + 0.1 + + + + + + + exterior + 0.1 + + + + + + + garage + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.25 + + + + + + + garage + 0.25 + + + + + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + + TV other + + kWh/year + 620.0 + + + + +
+
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/hvac_autosizing/base-hvac-ground-to-air-heat-pump-autosize-manual-s-oversize-allowances.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-ground-to-air-heat-pump-manual-s-oversize-allowances.xml similarity index 96% rename from example_files/resources/hpxml-measures/workflow/sample_files/hvac_autosizing/base-hvac-ground-to-air-heat-pump-autosize-manual-s-oversize-allowances.xml rename to example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-ground-to-air-heat-pump-manual-s-oversize-allowances.xml index 5c2897fb..25968b9d 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/hvac_autosizing/base-hvac-ground-to-air-heat-pump-autosize-manual-s-oversize-allowances.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-ground-to-air-heat-pump-manual-s-oversize-allowances.xml @@ -1,563 +1,562 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - false - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - - electricity - natural gas - - - - 3.0 - - - single-family detached - 2.0 - 1.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - Denver, CO - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - true - - - - - - - - attic - unvented - 1510.0 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 116.0 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - outside - attic - unvented - - - - 290.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - - - continuous - exterior - 8.9 - - 0.0 - 8.0 - - - - continuous - interior - 0.0 - - 0.0 - 0.0 - - - - - - - - - attic - unvented - living space - 1350.0 - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - 0.0 - 0.0 - - - - 0.0 - - - - - - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 0 - 4.4 - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - ground-to-air - electricity - 0.73 - electricity - - Percent - 1.0 - - 1.0 - 1.0 - - EER - 16.6 - - - COP - 3.6 - - - 0.45 - 30.0 - - - - - - manual thermostat - 68.0 - 78.0 - - - - - - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - supply - 4.0 - attic - unvented - 150.0 - - - return - 0.0 - attic - unvented - 50.0 - - - - 2700.0 - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - timer - - true - 150.0 - - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - exterior - 0.4 - - - - - - - garage - 0.4 - - - - - - - interior - 0.1 - - - - - - - exterior - 0.1 - - - - - - - garage - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.25 - - - - - - - garage - 0.25 - - - - - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - - TV other - - kWh/year - 620.0 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + false + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + + electricity + natural gas + + + + 3.0 + + + single-family detached + 2.0 + 1.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + Denver, CO + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + true + + + + + + + + attic - unvented + 1510.0 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 116.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + outside + attic - unvented + + + + 290.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + + + continuous - exterior + 8.9 + + 0.0 + 8.0 + + + + continuous - interior + 0.0 + + 0.0 + 0.0 + + + + + + + + + attic - unvented + living space + 1350.0 + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + 0.0 + 0.0 + + + + 0.0 + + + + + + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 0 + 4.4 + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + ground-to-air + electricity + 0.73 + electricity + + Percent + 1.0 + + 1.0 + 1.0 + + EER + 16.6 + + + COP + 3.6 + + + 30.0 + + + + + + manual thermostat + 68.0 + 78.0 + + + + + + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + supply + 4.0 + attic - unvented + 150.0 + + + return + 0.0 + attic - unvented + 50.0 + + 2 + + + 2700.0 + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + + true + 150.0 + + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + exterior + 0.4 + + + + + + + garage + 0.4 + + + + + + + interior + 0.1 + + + + + + + exterior + 0.1 + + + + + + + garage + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.25 + + + + + + + garage + 0.25 + + + + + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + + TV other + + kWh/year + 620.0 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/hvac_autosizing/base-hvac-ground-to-air-heat-pump-autosize.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-ground-to-air-heat-pump.xml similarity index 96% rename from example_files/resources/hpxml-measures/workflow/sample_files/hvac_autosizing/base-hvac-ground-to-air-heat-pump-autosize.xml rename to example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-ground-to-air-heat-pump.xml index f2c750e7..7347edd2 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/hvac_autosizing/base-hvac-ground-to-air-heat-pump-autosize.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-ground-to-air-heat-pump.xml @@ -1,560 +1,559 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - - electricity - natural gas - - - - 3.0 - - - single-family detached - 2.0 - 1.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - Denver, CO - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - true - - - - - - - - attic - unvented - 1510.0 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 116.0 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - outside - attic - unvented - - - - 290.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - - - continuous - exterior - 8.9 - - 0.0 - 8.0 - - - - continuous - interior - 0.0 - - 0.0 - 0.0 - - - - - - - - - attic - unvented - living space - 1350.0 - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - 0.0 - 0.0 - - - - 0.0 - - - - - - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 0 - 4.4 - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - ground-to-air - electricity - 0.73 - electricity - - Percent - 1.0 - - 1.0 - 1.0 - - EER - 16.6 - - - COP - 3.6 - - - 0.45 - 30.0 - - - - - - manual thermostat - 68.0 - 78.0 - - - - - - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - supply - 4.0 - attic - unvented - 150.0 - - - return - 0.0 - attic - unvented - 50.0 - - - - 2700.0 - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - timer - - true - 150.0 - - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - exterior - 0.4 - - - - - - - garage - 0.4 - - - - - - - interior - 0.1 - - - - - - - exterior - 0.1 - - - - - - - garage - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.25 - - - - - - - garage - 0.25 - - - - - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - - TV other - - kWh/year - 620.0 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + + electricity + natural gas + + + + 3.0 + + + single-family detached + 2.0 + 1.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + Denver, CO + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + true + + + + + + + + attic - unvented + 1510.0 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 116.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + outside + attic - unvented + + + + 290.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + + + continuous - exterior + 8.9 + + 0.0 + 8.0 + + + + continuous - interior + 0.0 + + 0.0 + 0.0 + + + + + + + + + attic - unvented + living space + 1350.0 + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + 0.0 + 0.0 + + + + 0.0 + + + + + + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 0 + 4.4 + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + ground-to-air + electricity + 0.73 + electricity + + Percent + 1.0 + + 1.0 + 1.0 + + EER + 16.6 + + + COP + 3.6 + + + 30.0 + + + + + + manual thermostat + 68.0 + 78.0 + + + + + + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + supply + 4.0 + attic - unvented + 150.0 + + + return + 0.0 + attic - unvented + 50.0 + + 2 + + + 2700.0 + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + + true + 150.0 + + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + exterior + 0.4 + + + + + + + garage + 0.4 + + + + + + + interior + 0.1 + + + + + + + exterior + 0.1 + + + + + + + garage + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.25 + + + + + + + garage + 0.25 + + + + + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + + TV other + + kWh/year + 620.0 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-mini-split-air-conditioner-only-ducted.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-mini-split-air-conditioner-only-ducted.xml new file mode 100644 index 00000000..ef418621 --- /dev/null +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-mini-split-air-conditioner-only-ducted.xml @@ -0,0 +1,546 @@ + + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + + electricity + natural gas + + + + 3.0 + + + single-family detached + 2.0 + 1.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + Denver, CO + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + true + + + + + + + + attic - unvented + 1510.0 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 116.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + outside + attic - unvented + + + + 290.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + + + continuous - exterior + 8.9 + + 0.0 + 8.0 + + + + continuous - interior + 0.0 + + 0.0 + 0.0 + + + + + + + + + attic - unvented + living space + 1350.0 + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + 0.0 + 0.0 + + + + 0.0 + + + + + + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 0 + 4.4 + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + mini-split + electricity + 1.0 + + SEER + 19.0 + + 0.73 + + + + + manual thermostat + 68.0 + 78.0 + + + + + + + supply + + CFM25 + 15.0 + to outside + + + + return + + CFM25 + 5.0 + to outside + + + + supply + 0.0 + attic - unvented + 30.0 + + + return + 0.0 + attic - unvented + 10.0 + + 2 + + + 2700.0 + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + + true + 150.0 + + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + exterior + 0.4 + + + + + + + garage + 0.4 + + + + + + + interior + 0.1 + + + + + + + exterior + 0.1 + + + + + + + garage + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.25 + + + + + + + garage + 0.25 + + + + + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + + TV other + + kWh/year + 620.0 + + + + +
+
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/hvac_autosizing/base-hvac-mini-split-heat-pump-ducted-cooling-only-autosize.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-mini-split-heat-pump-ducted-cooling-only.xml similarity index 96% rename from example_files/resources/hpxml-measures/workflow/sample_files/hvac_autosizing/base-hvac-mini-split-heat-pump-ducted-cooling-only-autosize.xml rename to example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-mini-split-heat-pump-ducted-cooling-only.xml index 0574f59c..bf60daf4 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/hvac_autosizing/base-hvac-mini-split-heat-pump-ducted-cooling-only-autosize.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-mini-split-heat-pump-ducted-cooling-only.xml @@ -320,9 +320,6 @@ HSPF 10.0 - - 0.2 - @@ -363,6 +360,7 @@ attic - unvented 10.0 + 2 2700.0 @@ -420,7 +418,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/hvac_autosizing/base-hvac-mini-split-heat-pump-ducted-heating-only-autosize.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-mini-split-heat-pump-ducted-heating-only.xml similarity index 96% rename from example_files/resources/hpxml-measures/workflow/sample_files/hvac_autosizing/base-hvac-mini-split-heat-pump-ducted-heating-only-autosize.xml rename to example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-mini-split-heat-pump-ducted-heating-only.xml index 4fe36687..94209833 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/hvac_autosizing/base-hvac-mini-split-heat-pump-ducted-heating-only-autosize.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-mini-split-heat-pump-ducted-heating-only.xml @@ -325,9 +325,6 @@ HSPF 10.0 - - 0.2 - @@ -368,6 +365,7 @@ attic - unvented 10.0 + 2 2700.0 @@ -425,7 +423,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/hvac_autosizing/base-hvac-mini-split-heat-pump-ducted-autosize-manual-s-oversize-allowances.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-mini-split-heat-pump-ducted-manual-s-oversize-allowances.xml similarity index 96% rename from example_files/resources/hpxml-measures/workflow/sample_files/hvac_autosizing/base-hvac-mini-split-heat-pump-ducted-autosize-manual-s-oversize-allowances.xml rename to example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-mini-split-heat-pump-ducted-manual-s-oversize-allowances.xml index 4781e739..7287cebc 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/hvac_autosizing/base-hvac-mini-split-heat-pump-ducted-autosize-manual-s-oversize-allowances.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-mini-split-heat-pump-ducted-manual-s-oversize-allowances.xml @@ -328,9 +328,6 @@ HSPF 10.0 - - 0.2 - @@ -371,6 +368,7 @@ attic - unvented 10.0 + 2 2700.0 @@ -428,7 +426,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-mini-split-heat-pump-ducted.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-mini-split-heat-pump-ducted.xml new file mode 100644 index 00000000..2f042852 --- /dev/null +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-mini-split-heat-pump-ducted.xml @@ -0,0 +1,556 @@ + + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + + electricity + natural gas + + + + 3.0 + + + single-family detached + 2.0 + 1.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + Denver, CO + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + true + + + + + + + + attic - unvented + 1510.0 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 116.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + outside + attic - unvented + + + + 290.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + + + continuous - exterior + 8.9 + + 0.0 + 8.0 + + + + continuous - interior + 0.0 + + 0.0 + 0.0 + + + + + + + + + attic - unvented + living space + 1350.0 + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + 0.0 + 0.0 + + + + 0.0 + + + + + + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 0 + 4.4 + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + mini-split + electricity + 0.73 + electricity + + Percent + 1.0 + + 1.0 + 1.0 + + SEER + 19.0 + + + HSPF + 10.0 + + + + + + manual thermostat + 68.0 + 78.0 + + + + + + + supply + + CFM25 + 15.0 + to outside + + + + return + + CFM25 + 5.0 + to outside + + + + supply + 0.0 + attic - unvented + 30.0 + + + return + 0.0 + attic - unvented + 10.0 + + 2 + + + 2700.0 + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + + true + 150.0 + + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + exterior + 0.4 + + + + + + + garage + 0.4 + + + + + + + interior + 0.1 + + + + + + + exterior + 0.1 + + + + + + + garage + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.25 + + + + + + + garage + 0.25 + + + + + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + + TV other + + kWh/year + 620.0 + + + + +
+
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/hvac_autosizing/base-hvac-room-ac-only-autosize.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-room-ac-only.xml similarity index 97% rename from example_files/resources/hpxml-measures/workflow/sample_files/hvac_autosizing/base-hvac-room-ac-only-autosize.xml rename to example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-room-ac-only.xml index 7b595b47..eeb9d025 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/hvac_autosizing/base-hvac-room-ac-only-autosize.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-room-ac-only.xml @@ -1,509 +1,508 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - - electricity - natural gas - - - - 3.0 - - - single-family detached - 2.0 - 1.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - Denver, CO - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - true - - - - - - - - attic - unvented - 1510.0 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 116.0 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - outside - attic - unvented - - - - 290.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - - - continuous - exterior - 8.9 - - 0.0 - 8.0 - - - - continuous - interior - 0.0 - - 0.0 - 0.0 - - - - - - - - - attic - unvented - living space - 1350.0 - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - 0.0 - 0.0 - - - - 0.0 - - - - - - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 0 - 4.4 - - - - - 40.0 - 180 - 4.4 - - - - - - - - - room air conditioner - electricity - 1.0 - - EER - 8.5 - - 0.65 - - - - - manual thermostat - 68.0 - 78.0 - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - timer - - true - 150.0 - - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - exterior - 0.4 - - - - - - - garage - 0.4 - - - - - - - interior - 0.1 - - - - - - - exterior - 0.1 - - - - - - - garage - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.25 - - - - - - - garage - 0.25 - - - - - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - - TV other - - kWh/year - 620.0 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + + electricity + natural gas + + + + 3.0 + + + single-family detached + 2.0 + 1.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + Denver, CO + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + true + + + + + + + + attic - unvented + 1510.0 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 116.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + outside + attic - unvented + + + + 290.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + + + continuous - exterior + 8.9 + + 0.0 + 8.0 + + + + continuous - interior + 0.0 + + 0.0 + 0.0 + + + + + + + + + attic - unvented + living space + 1350.0 + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + 0.0 + 0.0 + + + + 0.0 + + + + + + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 0 + 4.4 + + + + + 40.0 + 180 + 4.4 + + + + + + + + + room air conditioner + electricity + 1.0 + + EER + 8.5 + + 0.65 + + + + + manual thermostat + 68.0 + 78.0 + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + + true + 150.0 + + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + exterior + 0.4 + + + + + + + garage + 0.4 + + + + + + + interior + 0.1 + + + + + + + exterior + 0.1 + + + + + + + garage + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.25 + + + + + + + garage + 0.25 + + + + + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + + TV other + + kWh/year + 620.0 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/hvac_autosizing/base-hvac-stove-oil-only-autosize.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-stove-oil-only.xml similarity index 97% rename from example_files/resources/hpxml-measures/workflow/sample_files/hvac_autosizing/base-hvac-stove-oil-only-autosize.xml rename to example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-stove-oil-only.xml index 69a856e5..1e9c1dea 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/hvac_autosizing/base-hvac-stove-oil-only-autosize.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-stove-oil-only.xml @@ -1,513 +1,512 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - - electricity - natural gas - - - - 3.0 - - - single-family detached - 2.0 - 1.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - Denver, CO - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - true - - - - - - - - attic - unvented - 1510.0 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 116.0 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - outside - attic - unvented - - - - 290.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - - - continuous - exterior - 8.9 - - 0.0 - 8.0 - - - - continuous - interior - 0.0 - - 0.0 - 0.0 - - - - - - - - - attic - unvented - living space - 1350.0 - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - 0.0 - 0.0 - - - - 0.0 - - - - - - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 0 - 4.4 - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - fuel oil - - Percent - 0.8 - - 1.0 - - 40.0 - - - - - - manual thermostat - 68.0 - 78.0 - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - timer - - true - 150.0 - - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - exterior - 0.4 - - - - - - - garage - 0.4 - - - - - - - interior - 0.1 - - - - - - - exterior - 0.1 - - - - - - - garage - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.25 - - - - - - - garage - 0.25 - - - - - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - - TV other - - kWh/year - 620.0 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + + electricity + natural gas + + + + 3.0 + + + single-family detached + 2.0 + 1.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + Denver, CO + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + true + + + + + + + + attic - unvented + 1510.0 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 116.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + outside + attic - unvented + + + + 290.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + + + continuous - exterior + 8.9 + + 0.0 + 8.0 + + + + continuous - interior + 0.0 + + 0.0 + 0.0 + + + + + + + + + attic - unvented + living space + 1350.0 + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + 0.0 + 0.0 + + + + 0.0 + + + + + + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 0 + 4.4 + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + fuel oil + + Percent + 0.8 + + 1.0 + + 40.0 + + + + + + manual thermostat + 68.0 + 78.0 + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + + true + 150.0 + + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + exterior + 0.4 + + + + + + + garage + 0.4 + + + + + + + interior + 0.1 + + + + + + + exterior + 0.1 + + + + + + + garage + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.25 + + + + + + + garage + 0.25 + + + + + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + + TV other + + kWh/year + 620.0 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/hvac_autosizing/base-hvac-wall-furnace-elec-only-autosize.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-wall-furnace-elec-only.xml similarity index 97% rename from example_files/resources/hpxml-measures/workflow/sample_files/hvac_autosizing/base-hvac-wall-furnace-elec-only-autosize.xml rename to example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-wall-furnace-elec-only.xml index 0ba4f810..b49c9cc6 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/hvac_autosizing/base-hvac-wall-furnace-elec-only-autosize.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-wall-furnace-elec-only.xml @@ -1,513 +1,512 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - - electricity - natural gas - - - - 3.0 - - - single-family detached - 2.0 - 1.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - Denver, CO - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - true - - - - - - - - attic - unvented - 1510.0 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 116.0 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - outside - attic - unvented - - - - 290.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - - - continuous - exterior - 8.9 - - 0.0 - 8.0 - - - - continuous - interior - 0.0 - - 0.0 - 0.0 - - - - - - - - - attic - unvented - living space - 1350.0 - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - 0.0 - 0.0 - - - - 0.0 - - - - - - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 0 - 4.4 - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - electricity - - AFUE - 1.0 - - 1.0 - - 0.0 - - - - - - manual thermostat - 68.0 - 78.0 - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - timer - - true - 150.0 - - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - exterior - 0.4 - - - - - - - garage - 0.4 - - - - - - - interior - 0.1 - - - - - - - exterior - 0.1 - - - - - - - garage - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.25 - - - - - - - garage - 0.25 - - - - - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - - TV other - - kWh/year - 620.0 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + + electricity + natural gas + + + + 3.0 + + + single-family detached + 2.0 + 1.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + Denver, CO + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + true + + + + + + + + attic - unvented + 1510.0 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 116.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + outside + attic - unvented + + + + 290.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + + + continuous - exterior + 8.9 + + 0.0 + 8.0 + + + + continuous - interior + 0.0 + + 0.0 + 0.0 + + + + + + + + + attic - unvented + living space + 1350.0 + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + 0.0 + 0.0 + + + + 0.0 + + + + + + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 0 + 4.4 + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + electricity + + AFUE + 1.0 + + 1.0 + + 0.0 + + + + + + manual thermostat + 68.0 + 78.0 + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + + true + 150.0 + + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + exterior + 0.4 + + + + + + + garage + 0.4 + + + + + + + interior + 0.1 + + + + + + + exterior + 0.1 + + + + + + + garage + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.25 + + + + + + + garage + 0.25 + + + + + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + + TV other + + kWh/year + 620.0 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/hvac_autosizing/base-autosize.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize.xml similarity index 97% rename from example_files/resources/hpxml-measures/workflow/sample_files/hvac_autosizing/base-autosize.xml rename to example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize.xml index 0197c672..98af5f27 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/hvac_autosizing/base-autosize.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize.xml @@ -1,560 +1,560 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - - electricity - natural gas - - - - 3.0 - - - single-family detached - 2.0 - 1.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - Denver, CO - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - true - - - - - - - - attic - unvented - 1510.0 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 116.0 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - outside - attic - unvented - - - - 290.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - - - continuous - exterior - 8.9 - - 0.0 - 8.0 - - - - continuous - interior - 0.0 - - 0.0 - 0.0 - - - - - - - - - attic - unvented - living space - 1350.0 - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - 0.0 - 0.0 - - - - 0.0 - - - - - - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 0 - 4.4 - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - natural gas - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - manual thermostat - 68.0 - 78.0 - - - - - - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - supply - 4.0 - attic - unvented - 150.0 - - - return - 0.0 - attic - unvented - 50.0 - - - - 2700.0 - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - timer - - true - 150.0 - - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - exterior - 0.4 - - - - - - - garage - 0.4 - - - - - - - interior - 0.1 - - - - - - - exterior - 0.1 - - - - - - - garage - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.25 - - - - - - - garage - 0.25 - - - - - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - - TV other - - kWh/year - 620.0 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + + electricity + natural gas + + + + 3.0 + + + single-family detached + 2.0 + 1.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + Denver, CO + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + true + + + + + + + + attic - unvented + 1510.0 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 116.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + outside + attic - unvented + + + + 290.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + + + continuous - exterior + 8.9 + + 0.0 + 8.0 + + + + continuous - interior + 0.0 + + 0.0 + 0.0 + + + + + + + + + attic - unvented + living space + 1350.0 + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + 0.0 + 0.0 + + + + 0.0 + + + + + + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 0 + 4.4 + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + natural gas + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + manual thermostat + 68.0 + 78.0 + + + + + + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + supply + 4.0 + attic - unvented + 150.0 + + + return + 0.0 + attic - unvented + 50.0 + + 2 + + + 2700.0 + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + + true + 150.0 + + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + exterior + 0.4 + + + + + + + garage + 0.4 + + + + + + + interior + 0.1 + + + + + + + exterior + 0.1 + + + + + + + garage + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.25 + + + + + + + garage + 0.25 + + + + + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + + TV other + + kWh/year + 620.0 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-boiler-coal-only.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-boiler-coal-only.xml index 88351d0c..6f16d391 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-boiler-coal-only.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-boiler-coal-only.xml @@ -386,7 +386,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-boiler-elec-only.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-boiler-elec-only.xml index 2767fe1a..40ca440b 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-boiler-elec-only.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-boiler-elec-only.xml @@ -386,7 +386,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-boiler-gas-central-ac-1-speed.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-boiler-gas-central-ac-1-speed.xml index 22efa184..4ea3a570 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-boiler-gas-central-ac-1-speed.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-boiler-gas-central-ac-1-speed.xml @@ -380,7 +380,7 @@ attic - unvented 50.0 - 3 + 2 2700.0 @@ -438,7 +438,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-boiler-gas-only.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-boiler-gas-only.xml index d4ecd262..54a4288b 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-boiler-gas-only.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-boiler-gas-only.xml @@ -387,7 +387,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-boiler-oil-only.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-boiler-oil-only.xml index 8d293420..679cdd24 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-boiler-oil-only.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-boiler-oil-only.xml @@ -386,7 +386,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-boiler-propane-only.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-boiler-propane-only.xml index 9f9b9c95..f490bcdf 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-boiler-propane-only.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-boiler-propane-only.xml @@ -386,7 +386,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-boiler-wood-only.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-boiler-wood-only.xml index 9a98fff7..e89980f4 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-boiler-wood-only.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-boiler-wood-only.xml @@ -386,7 +386,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-central-ac-only-1-speed.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-central-ac-only-1-speed.xml index 75204023..233864da 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-central-ac-only-1-speed.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-central-ac-only-1-speed.xml @@ -317,9 +317,6 @@ 13.0 0.73 - - 0.45 - @@ -360,6 +357,7 @@ attic - unvented 50.0 + 2 2700.0 @@ -417,7 +415,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-central-ac-only-2-speed.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-central-ac-only-2-speed.xml index f0994c03..b9cf68ac 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-central-ac-only-2-speed.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-central-ac-only-2-speed.xml @@ -357,6 +357,7 @@ attic - unvented 50.0 + 2 2700.0 @@ -414,7 +415,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-central-ac-only-var-speed.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-central-ac-only-var-speed.xml index ea2f6dc9..e9abd73e 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-central-ac-only-var-speed.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-central-ac-only-var-speed.xml @@ -357,6 +357,7 @@ attic - unvented 50.0 + 2 2700.0 @@ -414,7 +415,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-central-ac-plus-air-to-air-heat-pump-heating.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-central-ac-plus-air-to-air-heat-pump-heating.xml index 9a2e0319..cad5cc8f 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-central-ac-plus-air-to-air-heat-pump-heating.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-central-ac-plus-air-to-air-heat-pump-heating.xml @@ -317,9 +317,6 @@ 13.0 0.73 - - 0.45 - @@ -347,9 +344,6 @@ HSPF 7.7 - - 0.45 - @@ -390,6 +384,7 @@ attic - unvented 50.0 + 2 2700.0 @@ -447,7 +442,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-dse.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-dse.xml index a55398ed..549bffe6 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-dse.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-dse.xml @@ -400,7 +400,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-1-speed-electric.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-1-speed-electric.xml index 837bbbb1..f4f9d042 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-1-speed-electric.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-1-speed-electric.xml @@ -331,9 +331,6 @@ HSPF 7.7 - - 0.45 - @@ -374,6 +371,7 @@ attic - unvented 50.0 + 2 2700.0 @@ -431,7 +429,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-1-speed.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-1-speed.xml index 3337a772..54c81a75 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-1-speed.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-1-speed.xml @@ -331,9 +331,6 @@ HSPF 7.7 - - 0.45 - @@ -374,6 +371,7 @@ attic - unvented 50.0 + 2 2700.0 @@ -431,7 +429,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-2-speed.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-2-speed.xml index c37b4810..23c9b3ff 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-2-speed.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-2-speed.xml @@ -371,6 +371,7 @@ attic - unvented 50.0 + 2 2700.0 @@ -428,7 +429,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-var-speed.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-var-speed.xml index 2470b1b2..02ce3424 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-var-speed.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-var-speed.xml @@ -371,6 +371,7 @@ attic - unvented 50.0 + 2 2700.0 @@ -428,7 +429,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-dual-fuel-mini-split-heat-pump-ducted.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-dual-fuel-mini-split-heat-pump-ducted.xml index 72f1571d..33a3e151 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-dual-fuel-mini-split-heat-pump-ducted.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-dual-fuel-mini-split-heat-pump-ducted.xml @@ -330,9 +330,6 @@ HSPF 10.0 - - 0.2 - @@ -373,6 +370,7 @@ attic - unvented 10.0 + 2 2700.0 @@ -430,7 +428,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-ducts-leakage-percent.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-ducts-leakage-percent.xml index 03da67eb..b750eaba 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-ducts-leakage-percent.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-ducts-leakage-percent.xml @@ -371,6 +371,7 @@ attic - unvented 50.0 + 2 2700.0 @@ -428,7 +429,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-elec-resistance-only.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-elec-resistance-only.xml index 11638548..ad88fec2 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-elec-resistance-only.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-elec-resistance-only.xml @@ -377,7 +377,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-evap-cooler-furnace-gas.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-evap-cooler-furnace-gas.xml index f898a7ae..2a74fd67 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-evap-cooler-furnace-gas.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-evap-cooler-furnace-gas.xml @@ -322,6 +322,7 @@ evaporative cooler electricity + 48000.0 1.0 @@ -363,6 +364,7 @@ attic - unvented 50.0 + 2 2700.0 @@ -420,7 +422,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-evap-cooler-only-ducted.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-evap-cooler-only-ducted.xml index 26c4f098..d8b88949 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-evap-cooler-only-ducted.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-evap-cooler-only-ducted.xml @@ -309,6 +309,7 @@ evaporative cooler electricity + 48000.0 1.0 @@ -330,12 +331,21 @@ to outside + + return + + CFM25 + 0.0 + to outside + + supply 4.0 attic - unvented 150.0 + 2 2700.0 @@ -393,7 +403,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-evap-cooler-only.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-evap-cooler-only.xml index 8e689b3f..901ea285 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-evap-cooler-only.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-evap-cooler-only.xml @@ -308,10 +308,8 @@ evaporative cooler electricity + 48000.0 1.0 - - 0.3 - @@ -373,7 +371,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-fireplace-wood-only.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-fireplace-wood-only.xml index 334ece37..59d03ff3 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-fireplace-wood-only.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-fireplace-wood-only.xml @@ -1,514 +1,513 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - - electricity - natural gas - - - - 3.0 - - - single-family detached - 2.0 - 1.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - Denver, CO - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - true - - - - - - - - attic - unvented - 1510.0 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 116.0 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - outside - attic - unvented - - - - 290.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - - - continuous - exterior - 8.9 - - 0.0 - 8.0 - - - - continuous - interior - 0.0 - - 0.0 - 0.0 - - - - - - - - - attic - unvented - living space - 1350.0 - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - 0.0 - 0.0 - - - - 0.0 - - - - - - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 0 - 4.4 - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - wood - 64000.0 - - Percent - 0.8 - - 1.0 - - 0.0 - - - - - - manual thermostat - 68.0 - 78.0 - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - timer - - true - 150.0 - - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - exterior - 0.4 - - - - - - - garage - 0.4 - - - - - - - interior - 0.1 - - - - - - - exterior - 0.1 - - - - - - - garage - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.25 - - - - - - - garage - 0.25 - - - - - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - - TV other - - kWh/year - 620.0 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + + electricity + natural gas + + + + 3.0 + + + single-family detached + 2.0 + 1.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + Denver, CO + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + true + + + + + + + + attic - unvented + 1510.0 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 116.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + outside + attic - unvented + + + + 290.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + + + continuous - exterior + 8.9 + + 0.0 + 8.0 + + + + continuous - interior + 0.0 + + 0.0 + 0.0 + + + + + + + + + attic - unvented + living space + 1350.0 + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + 0.0 + 0.0 + + + + 0.0 + + + + + + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 0 + 4.4 + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + wood + 64000.0 + + Percent + 0.8 + + 1.0 + + 0.0 + + + + + + manual thermostat + 68.0 + 78.0 + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + + true + 150.0 + + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + exterior + 0.4 + + + + + + + garage + 0.4 + + + + + + + interior + 0.1 + + + + + + + exterior + 0.1 + + + + + + + garage + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.25 + + + + + + + garage + 0.25 + + + + + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + + TV other + + kWh/year + 620.0 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-fixed-heater-gas-only.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-fixed-heater-gas-only.xml index f060b534..6a231179 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-fixed-heater-gas-only.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-fixed-heater-gas-only.xml @@ -1,564 +1,564 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - - electricity - natural gas - - - - 3.0 - - - single-family detached - 2.0 - 1.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - Denver, CO - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - true - - - - - - - - attic - unvented - 1510.0 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 116.0 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - outside - attic - unvented - - - - 290.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - - - continuous - exterior - 8.9 - - 0.0 - 8.0 - - - - continuous - interior - 0.0 - - 0.0 - 0.0 - - - - - - - - - attic - unvented - living space - 1350.0 - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - 0.0 - 0.0 - - - - 0.0 - - - - - - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 0 - 4.4 - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - natural gas - 64000.0 - - Percent - 1.0 - - 1.0 - - 0.0 - - - - - - central air conditioner - electricity - 48000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - manual thermostat - 68.0 - 78.0 - - - - - - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - supply - 4.0 - attic - unvented - 150.0 - - - return - 0.0 - attic - unvented - 50.0 - - - - 2700.0 - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - timer - - true - 150.0 - - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - exterior - 0.4 - - - - - - - garage - 0.4 - - - - - - - interior - 0.1 - - - - - - - exterior - 0.1 - - - - - - - garage - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.25 - - - - - - - garage - 0.25 - - - - - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - - TV other - - kWh/year - 620.0 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + + electricity + natural gas + + + + 3.0 + + + single-family detached + 2.0 + 1.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + Denver, CO + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + true + + + + + + + + attic - unvented + 1510.0 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 116.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + outside + attic - unvented + + + + 290.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + + + continuous - exterior + 8.9 + + 0.0 + 8.0 + + + + continuous - interior + 0.0 + + 0.0 + 0.0 + + + + + + + + + attic - unvented + living space + 1350.0 + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + 0.0 + 0.0 + + + + 0.0 + + + + + + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 0 + 4.4 + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + natural gas + 64000.0 + + Percent + 1.0 + + 1.0 + + 0.0 + + + + + + central air conditioner + electricity + 48000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + manual thermostat + 68.0 + 78.0 + + + + + + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + supply + 4.0 + attic - unvented + 150.0 + + + return + 0.0 + attic - unvented + 50.0 + + 2 + + + 2700.0 + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + + true + 150.0 + + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + exterior + 0.4 + + + + + + + garage + 0.4 + + + + + + + interior + 0.1 + + + + + + + exterior + 0.1 + + + + + + + garage + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.25 + + + + + + + garage + 0.25 + + + + + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + + TV other + + kWh/year + 620.0 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-floor-furnace-propane-only.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-floor-furnace-propane-only.xml index 408fd570..52239523 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-floor-furnace-propane-only.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-floor-furnace-propane-only.xml @@ -1,514 +1,513 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - - electricity - natural gas - - - - 3.0 - - - single-family detached - 2.0 - 1.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - Denver, CO - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - true - - - - - - - - attic - unvented - 1510.0 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 116.0 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - outside - attic - unvented - - - - 290.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - - - continuous - exterior - 8.9 - - 0.0 - 8.0 - - - - continuous - interior - 0.0 - - 0.0 - 0.0 - - - - - - - - - attic - unvented - living space - 1350.0 - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - 0.0 - 0.0 - - - - 0.0 - - - - - - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 0 - 4.4 - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - propane - 64000.0 - - AFUE - 0.8 - - 1.0 - - 0.0 - - - - - - manual thermostat - 68.0 - 78.0 - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - timer - - true - 150.0 - - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - exterior - 0.4 - - - - - - - garage - 0.4 - - - - - - - interior - 0.1 - - - - - - - exterior - 0.1 - - - - - - - garage - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.25 - - - - - - - garage - 0.25 - - - - - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - - TV other - - kWh/year - 620.0 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + + electricity + natural gas + + + + 3.0 + + + single-family detached + 2.0 + 1.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + Denver, CO + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + true + + + + + + + + attic - unvented + 1510.0 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 116.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + outside + attic - unvented + + + + 290.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + + + continuous - exterior + 8.9 + + 0.0 + 8.0 + + + + continuous - interior + 0.0 + + 0.0 + 0.0 + + + + + + + + + attic - unvented + living space + 1350.0 + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + 0.0 + 0.0 + + + + 0.0 + + + + + + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 0 + 4.4 + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + propane + 64000.0 + + AFUE + 0.8 + + 1.0 + + 0.0 + + + + + + manual thermostat + 68.0 + 78.0 + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + + true + 150.0 + + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + exterior + 0.4 + + + + + + + garage + 0.4 + + + + + + + interior + 0.1 + + + + + + + exterior + 0.1 + + + + + + + garage + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.25 + + + + + + + garage + 0.25 + + + + + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + + TV other + + kWh/year + 620.0 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-coal-only.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-coal-only.xml index ea8fee51..dc4c7fe7 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-coal-only.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-coal-only.xml @@ -1,548 +1,548 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - - electricity - natural gas - - - - 3.0 - - - single-family detached - 2.0 - 1.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - Denver, CO - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - true - - - - - - - - attic - unvented - 1510.0 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 116.0 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - outside - attic - unvented - - - - 290.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - - - continuous - exterior - 8.9 - - 0.0 - 8.0 - - - - continuous - interior - 0.0 - - 0.0 - 0.0 - - - - - - - - - attic - unvented - living space - 1350.0 - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - 0.0 - 0.0 - - - - 0.0 - - - - - - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 0 - 4.4 - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - coal - 64000.0 - - AFUE - 0.92 - - 1.0 - - - - - manual thermostat - 68.0 - 78.0 - - - - - - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - supply - 4.0 - attic - unvented - 150.0 - - - return - 0.0 - attic - unvented - 50.0 - - - - 2700.0 - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - timer - - true - 150.0 - - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - exterior - 0.4 - - - - - - - garage - 0.4 - - - - - - - interior - 0.1 - - - - - - - exterior - 0.1 - - - - - - - garage - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.25 - - - - - - - garage - 0.25 - - - - - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - - TV other - - kWh/year - 620.0 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + + electricity + natural gas + + + + 3.0 + + + single-family detached + 2.0 + 1.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + Denver, CO + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + true + + + + + + + + attic - unvented + 1510.0 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 116.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + outside + attic - unvented + + + + 290.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + + + continuous - exterior + 8.9 + + 0.0 + 8.0 + + + + continuous - interior + 0.0 + + 0.0 + 0.0 + + + + + + + + + attic - unvented + living space + 1350.0 + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + 0.0 + 0.0 + + + + 0.0 + + + + + + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 0 + 4.4 + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + coal + 64000.0 + + AFUE + 0.92 + + 1.0 + + + + + manual thermostat + 68.0 + 78.0 + + + + + + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + supply + 4.0 + attic - unvented + 150.0 + + + return + 0.0 + attic - unvented + 50.0 + + 2 + + + 2700.0 + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + + true + 150.0 + + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + exterior + 0.4 + + + + + + + garage + 0.4 + + + + + + + interior + 0.1 + + + + + + + exterior + 0.1 + + + + + + + garage + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.25 + + + + + + + garage + 0.25 + + + + + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + + TV other + + kWh/year + 620.0 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-elec-central-ac-1-speed.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-elec-central-ac-1-speed.xml index c09f8631..daf1cd47 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-elec-central-ac-1-speed.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-elec-central-ac-1-speed.xml @@ -371,6 +371,7 @@ attic - unvented 50.0 + 2 2700.0 @@ -428,7 +429,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-elec-only.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-elec-only.xml index e287442c..0d10c86c 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-elec-only.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-elec-only.xml @@ -357,6 +357,7 @@ attic - unvented 50.0 + 2 2700.0 @@ -414,7 +415,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-gas-central-ac-2-speed.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-gas-central-ac-2-speed.xml index a807aad0..bd139d92 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-gas-central-ac-2-speed.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-gas-central-ac-2-speed.xml @@ -371,6 +371,7 @@ attic - unvented 50.0 + 2 2700.0 @@ -428,7 +429,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-gas-central-ac-var-speed.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-gas-central-ac-var-speed.xml index e5ad92a4..d38a2862 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-gas-central-ac-var-speed.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-gas-central-ac-var-speed.xml @@ -371,6 +371,7 @@ attic - unvented 50.0 + 2 2700.0 @@ -428,7 +429,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-gas-only.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-gas-only.xml index dba404f2..9016ddf2 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-gas-only.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-gas-only.xml @@ -1,551 +1,548 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - - electricity - natural gas - - - - 3.0 - - - single-family detached - 2.0 - 1.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - Denver, CO - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - true - - - - - - - - attic - unvented - 1510.0 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 116.0 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - outside - attic - unvented - - - - 290.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - - - continuous - exterior - 8.9 - - 0.0 - 8.0 - - - - continuous - interior - 0.0 - - 0.0 - 0.0 - - - - - - - - - attic - unvented - living space - 1350.0 - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - 0.0 - 0.0 - - - - 0.0 - - - - - - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 0 - 4.4 - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - natural gas - 64000.0 - - AFUE - 0.92 - - 1.0 - - 0.45 - - - - - - manual thermostat - 68.0 - 78.0 - - - - - - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - supply - 4.0 - attic - unvented - 150.0 - - - return - 0.0 - attic - unvented - 50.0 - - - - 2700.0 - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - timer - - true - 150.0 - - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - exterior - 0.4 - - - - - - - garage - 0.4 - - - - - - - interior - 0.1 - - - - - - - exterior - 0.1 - - - - - - - garage - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.25 - - - - - - - garage - 0.25 - - - - - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - - TV other - - kWh/year - 620.0 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + + electricity + natural gas + + + + 3.0 + + + single-family detached + 2.0 + 1.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + Denver, CO + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + true + + + + + + + + attic - unvented + 1510.0 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 116.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + outside + attic - unvented + + + + 290.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + + + continuous - exterior + 8.9 + + 0.0 + 8.0 + + + + continuous - interior + 0.0 + + 0.0 + 0.0 + + + + + + + + + attic - unvented + living space + 1350.0 + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + 0.0 + 0.0 + + + + 0.0 + + + + + + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 0 + 4.4 + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + natural gas + 64000.0 + + AFUE + 0.92 + + 1.0 + + + + + manual thermostat + 68.0 + 78.0 + + + + + + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + supply + 4.0 + attic - unvented + 150.0 + + + return + 0.0 + attic - unvented + 50.0 + + 2 + + + 2700.0 + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + + true + 150.0 + + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + exterior + 0.4 + + + + + + + garage + 0.4 + + + + + + + interior + 0.1 + + + + + + + exterior + 0.1 + + + + + + + garage + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.25 + + + + + + + garage + 0.25 + + + + + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + + TV other + + kWh/year + 620.0 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-gas-room-ac.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-gas-room-ac.xml index 3587e77b..ab375495 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-gas-room-ac.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-gas-room-ac.xml @@ -369,6 +369,7 @@ attic - unvented 50.0 + 2 2700.0 @@ -426,7 +427,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-oil-only.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-oil-only.xml index 6b4a8544..64744ec1 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-oil-only.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-oil-only.xml @@ -357,6 +357,7 @@ attic - unvented 50.0 + 2 2700.0 @@ -414,7 +415,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-propane-only.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-propane-only.xml index a48fee00..ee9e3faf 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-propane-only.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-propane-only.xml @@ -357,6 +357,7 @@ attic - unvented 50.0 + 2 2700.0 @@ -414,7 +415,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-wood-only.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-wood-only.xml index 82bb9664..23566396 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-wood-only.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-wood-only.xml @@ -357,6 +357,7 @@ attic - unvented 50.0 + 2 2700.0 @@ -414,7 +415,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-x3-dse.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-x3-dse.xml index 158ce6ec..f642494f 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-x3-dse.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-x3-dse.xml @@ -444,7 +444,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-ground-to-air-heat-pump-cooling-only.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-ground-to-air-heat-pump-cooling-only.xml new file mode 100644 index 00000000..b13dc78d --- /dev/null +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-ground-to-air-heat-pump-cooling-only.xml @@ -0,0 +1,556 @@ + + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + + electricity + natural gas + + + + 3.0 + + + single-family detached + 2.0 + 1.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + Denver, CO + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + true + + + + + + + + attic - unvented + 1510.0 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 116.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + outside + attic - unvented + + + + 290.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + + + continuous - exterior + 8.9 + + 0.0 + 8.0 + + + + continuous - interior + 0.0 + + 0.0 + 0.0 + + + + + + + + + attic - unvented + living space + 1350.0 + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + 0.0 + 0.0 + + + + 0.0 + + + + + + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 0 + 4.4 + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + ground-to-air + electricity + 0.0 + 48000.0 + 0.73 + 0.0 + 1.0 + + EER + 16.6 + + + COP + 3.6 + + + 30.0 + + + + + + manual thermostat + 68.0 + 78.0 + + + + + + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + supply + 4.0 + attic - unvented + 150.0 + + + return + 0.0 + attic - unvented + 50.0 + + 2 + + + 2700.0 + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + + true + 150.0 + + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + exterior + 0.4 + + + + + + + garage + 0.4 + + + + + + + interior + 0.1 + + + + + + + exterior + 0.1 + + + + + + + garage + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.25 + + + + + + + garage + 0.25 + + + + + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + + TV other + + kWh/year + 620.0 + + + + +
+
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-ground-to-air-heat-pump-heating-only.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-ground-to-air-heat-pump-heating-only.xml new file mode 100644 index 00000000..f9b7b135 --- /dev/null +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-ground-to-air-heat-pump-heating-only.xml @@ -0,0 +1,562 @@ + + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + + electricity + natural gas + + + + 3.0 + + + single-family detached + 2.0 + 1.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + Denver, CO + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + true + + + + + + + + attic - unvented + 1510.0 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 116.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + outside + attic - unvented + + + + 290.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + + + continuous - exterior + 8.9 + + 0.0 + 8.0 + + + + continuous - interior + 0.0 + + 0.0 + 0.0 + + + + + + + + + attic - unvented + living space + 1350.0 + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + 0.0 + 0.0 + + + + 0.0 + + + + + + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 0 + 4.4 + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + ground-to-air + electricity + 42000.0 + 0.0 + 0.73 + electricity + + Percent + 1.0 + + 34121.0 + 1.0 + 0.0 + + EER + 16.6 + + + COP + 3.6 + + + 30.0 + + + + + + manual thermostat + 68.0 + 78.0 + + + + + + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + supply + 4.0 + attic - unvented + 150.0 + + + return + 0.0 + attic - unvented + 50.0 + + 2 + + + 2700.0 + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + + true + 150.0 + + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + exterior + 0.4 + + + + + + + garage + 0.4 + + + + + + + interior + 0.1 + + + + + + + exterior + 0.1 + + + + + + + garage + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.25 + + + + + + + garage + 0.25 + + + + + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + + TV other + + kWh/year + 620.0 + + + + +
+
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-ground-to-air-heat-pump.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-ground-to-air-heat-pump.xml index 562e4e72..12feebf4 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-ground-to-air-heat-pump.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-ground-to-air-heat-pump.xml @@ -1,563 +1,562 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - - electricity - natural gas - - - - 3.0 - - - single-family detached - 2.0 - 1.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - Denver, CO - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - true - - - - - - - - attic - unvented - 1510.0 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 116.0 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - outside - attic - unvented - - - - 290.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - - - continuous - exterior - 8.9 - - 0.0 - 8.0 - - - - continuous - interior - 0.0 - - 0.0 - 0.0 - - - - - - - - - attic - unvented - living space - 1350.0 - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - 0.0 - 0.0 - - - - 0.0 - - - - - - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 0 - 4.4 - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - ground-to-air - electricity - 42000.0 - 48000.0 - 0.73 - electricity - - Percent - 1.0 - - 34121.0 - 1.0 - 1.0 - - EER - 16.6 - - - COP - 3.6 - - - 0.45 - 30.0 - - - - - - manual thermostat - 68.0 - 78.0 - - - - - - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - supply - 4.0 - attic - unvented - 150.0 - - - return - 0.0 - attic - unvented - 50.0 - - - - 2700.0 - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - timer - - true - 150.0 - - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - exterior - 0.4 - - - - - - - garage - 0.4 - - - - - - - interior - 0.1 - - - - - - - exterior - 0.1 - - - - - - - garage - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.25 - - - - - - - garage - 0.25 - - - - - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - - TV other - - kWh/year - 620.0 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + + electricity + natural gas + + + + 3.0 + + + single-family detached + 2.0 + 1.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + Denver, CO + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + true + + + + + + + + attic - unvented + 1510.0 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 116.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + outside + attic - unvented + + + + 290.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + + + continuous - exterior + 8.9 + + 0.0 + 8.0 + + + + continuous - interior + 0.0 + + 0.0 + 0.0 + + + + + + + + + attic - unvented + living space + 1350.0 + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + 0.0 + 0.0 + + + + 0.0 + + + + + + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 0 + 4.4 + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + ground-to-air + electricity + 42000.0 + 48000.0 + 0.73 + electricity + + Percent + 1.0 + + 34121.0 + 1.0 + 1.0 + + EER + 16.6 + + + COP + 3.6 + + + 30.0 + + + + + + manual thermostat + 68.0 + 78.0 + + + + + + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + supply + 4.0 + attic - unvented + 150.0 + + + return + 0.0 + attic - unvented + 50.0 + + 2 + + + 2700.0 + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + + true + 150.0 + + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + exterior + 0.4 + + + + + + + garage + 0.4 + + + + + + + interior + 0.1 + + + + + + + exterior + 0.1 + + + + + + + garage + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.25 + + + + + + + garage + 0.25 + + + + + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + + TV other + + kWh/year + 620.0 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/slab-zero-exposed-perimeter.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-airflow-defect-furnace-gas-central-ac-1-speed.xml similarity index 97% rename from example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/slab-zero-exposed-perimeter.xml rename to example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-airflow-defect-furnace-gas-central-ac-1-speed.xml index 4f882971..4a59fde3 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/slab-zero-exposed-perimeter.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-airflow-defect-furnace-gas-central-ac-1-speed.xml @@ -1,562 +1,568 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - - electricity - natural gas - - - - 3.0 - - - single-family detached - 2.0 - 1.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - Denver, CO - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - true - - - - - - - - attic - unvented - 1510.0 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 116.0 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - outside - attic - unvented - - - - 290.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - - - continuous - exterior - 8.9 - - 0.0 - 8.0 - - - - continuous - interior - 0.0 - - 0.0 - 0.0 - - - - - - - - - attic - unvented - living space - 1350.0 - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 0.0 - 0.0 - 0.0 - - - - 0.0 - - - - - - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 0 - 4.4 - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - natural gas - 64000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 48000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - manual thermostat - 68.0 - 78.0 - - - - - - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - supply - 4.0 - attic - unvented - 150.0 - - - return - 0.0 - attic - unvented - 50.0 - - - - 2700.0 - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - timer - - true - 150.0 - - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - exterior - 0.4 - - - - - - - garage - 0.4 - - - - - - - interior - 0.1 - - - - - - - exterior - 0.1 - - - - - - - garage - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.25 - - - - - - - garage - 0.25 - - - - - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - - TV other - - kWh/year - 620.0 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + + electricity + natural gas + + + + 3.0 + + + single-family detached + 2.0 + 1.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + Denver, CO + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + true + + + + + + + + attic - unvented + 1510.0 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 116.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + outside + attic - unvented + + + + 290.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + + + continuous - exterior + 8.9 + + 0.0 + 8.0 + + + + continuous - interior + 0.0 + + 0.0 + 0.0 + + + + + + + + + attic - unvented + living space + 1350.0 + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + 0.0 + 0.0 + + + + 0.0 + + + + + + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 0 + 4.4 + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + natural gas + 64000.0 + + AFUE + 0.92 + + 1.0 + + -0.25 + + + + + + central air conditioner + electricity + 48000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + -0.25 + + + + + + manual thermostat + 68.0 + 78.0 + + + + + + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + supply + 4.0 + attic - unvented + 150.0 + + + return + 0.0 + attic - unvented + 50.0 + + 2 + + + 2700.0 + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + + true + 150.0 + + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + exterior + 0.4 + + + + + + + garage + 0.4 + + + + + + + interior + 0.1 + + + + + + + exterior + 0.1 + + + + + + + garage + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.25 + + + + + + + garage + 0.25 + + + + + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + + TV other + + kWh/year + 620.0 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/heat-pump-mixed-fixed-and-autosize-capacities2.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-all-air-to-air-heat-pump-1-speed.xml similarity index 97% rename from example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/heat-pump-mixed-fixed-and-autosize-capacities2.xml rename to example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-all-air-to-air-heat-pump-1-speed.xml index 5697b208..93ca4ca3 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/heat-pump-mixed-fixed-and-autosize-capacities2.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-all-air-to-air-heat-pump-1-speed.xml @@ -1,563 +1,566 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - - electricity - natural gas - - - - 3.0 - - - single-family detached - 2.0 - 1.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - Denver, CO - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - true - - - - - - - - attic - unvented - 1510.0 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 116.0 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - outside - attic - unvented - - - - 290.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - - - continuous - exterior - 8.9 - - 0.0 - 8.0 - - - - continuous - interior - 0.0 - - 0.0 - 0.0 - - - - - - - - - attic - unvented - living space - 1350.0 - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - 0.0 - 0.0 - - - - 0.0 - - - - - - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 0 - 4.4 - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - air-to-air - electricity - 42000.0 - 26460.0 - 48000.0 - single stage - 0.73 - electricity - - Percent - 1.0 - - 1.0 - 1.0 - - SEER - 13.0 - - - HSPF - 7.7 - - - 0.45 - - - - - - manual thermostat - 68.0 - 78.0 - - - - - - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - supply - 4.0 - attic - unvented - 150.0 - - - return - 0.0 - attic - unvented - 50.0 - - - - 2700.0 - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - timer - - true - 150.0 - - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - exterior - 0.4 - - - - - - - garage - 0.4 - - - - - - - interior - 0.1 - - - - - - - exterior - 0.1 - - - - - - - garage - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.25 - - - - - - - garage - 0.25 - - - - - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - - TV other - - kWh/year - 620.0 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + + electricity + natural gas + + + + 3.0 + + + single-family detached + 2.0 + 1.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + Denver, CO + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + true + + + + + + + + attic - unvented + 1510.0 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 116.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + outside + attic - unvented + + + + 290.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + + + continuous - exterior + 8.9 + + 0.0 + 8.0 + + + + continuous - interior + 0.0 + + 0.0 + 0.0 + + + + + + + + + attic - unvented + living space + 1350.0 + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + 0.0 + 0.0 + + + + 0.0 + + + + + + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 0 + 4.4 + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + air-to-air + electricity + 42000.0 + 26460.0 + 48000.0 + single stage + 0.73 + electricity + + Percent + 1.0 + + 34121.0 + 1.0 + 1.0 + + SEER + 13.0 + + + HSPF + 7.7 + + + -0.25 + -0.25 + 0.365 + + + + + + manual thermostat + 68.0 + 78.0 + + + + + + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + supply + 4.0 + attic - unvented + 150.0 + + + return + 0.0 + attic - unvented + 50.0 + + 2 + + + 2700.0 + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + + true + 150.0 + + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + exterior + 0.4 + + + + + + + garage + 0.4 + + + + + + + interior + 0.1 + + + + + + + exterior + 0.1 + + + + + + + garage + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.25 + + + + + + + garage + 0.25 + + + + + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + + TV other + + kWh/year + 620.0 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-all-air-to-air-heat-pump-2-speed.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-all-air-to-air-heat-pump-2-speed.xml new file mode 100644 index 00000000..2084cbfc --- /dev/null +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-all-air-to-air-heat-pump-2-speed.xml @@ -0,0 +1,566 @@ + + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + + electricity + natural gas + + + + 3.0 + + + single-family detached + 2.0 + 1.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + Denver, CO + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + true + + + + + + + + attic - unvented + 1510.0 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 116.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + outside + attic - unvented + + + + 290.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + + + continuous - exterior + 8.9 + + 0.0 + 8.0 + + + + continuous - interior + 0.0 + + 0.0 + 0.0 + + + + + + + + + attic - unvented + living space + 1350.0 + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + 0.0 + 0.0 + + + + 0.0 + + + + + + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 0 + 4.4 + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + air-to-air + electricity + 42000.0 + 24780.0 + 48000.0 + two stage + 0.73 + electricity + + Percent + 1.0 + + 34121.0 + 1.0 + 1.0 + + SEER + 18.0 + + + HSPF + 9.3 + + + -0.25 + -0.25 + 0.365 + + + + + + manual thermostat + 68.0 + 78.0 + + + + + + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + supply + 4.0 + attic - unvented + 150.0 + + + return + 0.0 + attic - unvented + 50.0 + + 2 + + + 2700.0 + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + + true + 150.0 + + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + exterior + 0.4 + + + + + + + garage + 0.4 + + + + + + + interior + 0.1 + + + + + + + exterior + 0.1 + + + + + + + garage + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.25 + + + + + + + garage + 0.25 + + + + + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + + TV other + + kWh/year + 620.0 + + + + +
+
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-all-air-to-air-heat-pump-var-speed.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-all-air-to-air-heat-pump-var-speed.xml new file mode 100644 index 00000000..eecd5f04 --- /dev/null +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-all-air-to-air-heat-pump-var-speed.xml @@ -0,0 +1,566 @@ + + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + + electricity + natural gas + + + + 3.0 + + + single-family detached + 2.0 + 1.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + Denver, CO + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + true + + + + + + + + attic - unvented + 1510.0 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 116.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + outside + attic - unvented + + + + 290.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + + + continuous - exterior + 8.9 + + 0.0 + 8.0 + + + + continuous - interior + 0.0 + + 0.0 + 0.0 + + + + + + + + + attic - unvented + living space + 1350.0 + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + 0.0 + 0.0 + + + + 0.0 + + + + + + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 0 + 4.4 + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + air-to-air + electricity + 42000.0 + 26880.0 + 48000.0 + variable speed + 0.78 + electricity + + Percent + 1.0 + + 34121.0 + 1.0 + 1.0 + + SEER + 22.0 + + + HSPF + 10.0 + + + -0.25 + -0.25 + 0.365 + + + + + + manual thermostat + 68.0 + 78.0 + + + + + + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + supply + 4.0 + attic - unvented + 150.0 + + + return + 0.0 + attic - unvented + 50.0 + + 2 + + + 2700.0 + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + + true + 150.0 + + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + exterior + 0.4 + + + + + + + garage + 0.4 + + + + + + + interior + 0.1 + + + + + + + exterior + 0.1 + + + + + + + garage + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.25 + + + + + + + garage + 0.25 + + + + + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + + TV other + + kWh/year + 620.0 + + + + +
+
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-shelter-coefficient.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-all-furnace-gas-central-ac-1-speed.xml similarity index 96% rename from example_files/resources/hpxml-measures/workflow/sample_files/base-misc-shelter-coefficient.xml rename to example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-all-furnace-gas-central-ac-1-speed.xml index ea009e55..6b431031 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-shelter-coefficient.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-all-furnace-gas-central-ac-1-speed.xml @@ -1,565 +1,571 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - - electricity - natural gas - - - 0.8 - - - - 3.0 - - - single-family detached - 2.0 - 1.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - Denver, CO - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - true - - - - - - - - attic - unvented - 1510.0 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 116.0 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - outside - attic - unvented - - - - 290.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - - - continuous - exterior - 8.9 - - 0.0 - 8.0 - - - - continuous - interior - 0.0 - - 0.0 - 0.0 - - - - - - - - - attic - unvented - living space - 1350.0 - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - 0.0 - 0.0 - - - - 0.0 - - - - - - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 0 - 4.4 - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - natural gas - 64000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 48000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - manual thermostat - 68.0 - 78.0 - - - - - - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - supply - 4.0 - attic - unvented - 150.0 - - - return - 0.0 - attic - unvented - 50.0 - - - - 2700.0 - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - timer - - true - 150.0 - - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - exterior - 0.4 - - - - - - - garage - 0.4 - - - - - - - interior - 0.1 - - - - - - - exterior - 0.1 - - - - - - - garage - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.25 - - - - - - - garage - 0.25 - - - - - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - - TV other - - kWh/year - 620.0 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + + electricity + natural gas + + + + 3.0 + + + single-family detached + 2.0 + 1.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + Denver, CO + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + true + + + + + + + + attic - unvented + 1510.0 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 116.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + outside + attic - unvented + + + + 290.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + + + continuous - exterior + 8.9 + + 0.0 + 8.0 + + + + continuous - interior + 0.0 + + 0.0 + 0.0 + + + + + + + + + attic - unvented + living space + 1350.0 + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + 0.0 + 0.0 + + + + 0.0 + + + + + + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 0 + 4.4 + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + natural gas + 64000.0 + + AFUE + 0.92 + + 1.0 + + 0.365 + -0.25 + + + + + + central air conditioner + electricity + 48000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + -0.25 + -0.25 + 0.365 + + + + + + manual thermostat + 68.0 + 78.0 + + + + + + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + supply + 4.0 + attic - unvented + 150.0 + + + return + 0.0 + attic - unvented + 50.0 + + 2 + + + 2700.0 + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + + true + 150.0 + + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + exterior + 0.4 + + + + + + + garage + 0.4 + + + + + + + interior + 0.1 + + + + + + + exterior + 0.1 + + + + + + + garage + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.25 + + + + + + + garage + 0.25 + + + + + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + + TV other + + kWh/year + 620.0 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-all-furnace-gas-central-ac-2-speed.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-all-furnace-gas-central-ac-2-speed.xml new file mode 100644 index 00000000..9fb51a16 --- /dev/null +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-all-furnace-gas-central-ac-2-speed.xml @@ -0,0 +1,571 @@ + + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + + electricity + natural gas + + + + 3.0 + + + single-family detached + 2.0 + 1.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + Denver, CO + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + true + + + + + + + + attic - unvented + 1510.0 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 116.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + outside + attic - unvented + + + + 290.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + + + continuous - exterior + 8.9 + + 0.0 + 8.0 + + + + continuous - interior + 0.0 + + 0.0 + 0.0 + + + + + + + + + attic - unvented + living space + 1350.0 + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + 0.0 + 0.0 + + + + 0.0 + + + + + + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 0 + 4.4 + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + natural gas + 64000.0 + + AFUE + 0.92 + + 1.0 + + 0.365 + -0.25 + + + + + + central air conditioner + electricity + 48000.0 + two stage + 1.0 + + SEER + 18.0 + + 0.73 + + -0.25 + -0.25 + 0.365 + + + + + + manual thermostat + 68.0 + 78.0 + + + + + + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + supply + 4.0 + attic - unvented + 150.0 + + + return + 0.0 + attic - unvented + 50.0 + + 2 + + + 2700.0 + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + + true + 150.0 + + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + exterior + 0.4 + + + + + + + garage + 0.4 + + + + + + + interior + 0.1 + + + + + + + exterior + 0.1 + + + + + + + garage + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.25 + + + + + + + garage + 0.25 + + + + + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + + TV other + + kWh/year + 620.0 + + + + +
+
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-all-furnace-gas-central-ac-var-speed.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-all-furnace-gas-central-ac-var-speed.xml new file mode 100644 index 00000000..9434113d --- /dev/null +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-all-furnace-gas-central-ac-var-speed.xml @@ -0,0 +1,571 @@ + + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + + electricity + natural gas + + + + 3.0 + + + single-family detached + 2.0 + 1.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + Denver, CO + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + true + + + + + + + + attic - unvented + 1510.0 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 116.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + outside + attic - unvented + + + + 290.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + + + continuous - exterior + 8.9 + + 0.0 + 8.0 + + + + continuous - interior + 0.0 + + 0.0 + 0.0 + + + + + + + + + attic - unvented + living space + 1350.0 + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + 0.0 + 0.0 + + + + 0.0 + + + + + + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 0 + 4.4 + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + natural gas + 64000.0 + + AFUE + 0.92 + + 1.0 + + 0.365 + -0.25 + + + + + + central air conditioner + electricity + 48000.0 + variable speed + 1.0 + + SEER + 24.0 + + 0.78 + + -0.25 + -0.25 + 0.365 + + + + + + manual thermostat + 68.0 + 78.0 + + + + + + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + supply + 4.0 + attic - unvented + 150.0 + + + return + 0.0 + attic - unvented + 50.0 + + 2 + + + 2700.0 + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + + true + 150.0 + + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + exterior + 0.4 + + + + + + + garage + 0.4 + + + + + + + interior + 0.1 + + + + + + + exterior + 0.1 + + + + + + + garage + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.25 + + + + + + + garage + 0.25 + + + + + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + + TV other + + kWh/year + 620.0 + + + + +
+
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/hvac_autosizing/base-hvac-furnace-gas-only-autosize.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-all-furnace-gas-only.xml similarity index 96% rename from example_files/resources/hpxml-measures/workflow/sample_files/hvac_autosizing/base-hvac-furnace-gas-only-autosize.xml rename to example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-all-furnace-gas-only.xml index 63300a97..9958e406 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/hvac_autosizing/base-hvac-furnace-gas-only-autosize.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-all-furnace-gas-only.xml @@ -1,550 +1,552 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - - electricity - natural gas - - - - 3.0 - - - single-family detached - 2.0 - 1.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - Denver, CO - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - true - - - - - - - - attic - unvented - 1510.0 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 116.0 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - outside - attic - unvented - - - - 290.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - - - continuous - exterior - 8.9 - - 0.0 - 8.0 - - - - continuous - interior - 0.0 - - 0.0 - 0.0 - - - - - - - - - attic - unvented - living space - 1350.0 - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - 0.0 - 0.0 - - - - 0.0 - - - - - - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 0 - 4.4 - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - natural gas - - AFUE - 0.92 - - 1.0 - - 0.45 - - - - - - manual thermostat - 68.0 - 78.0 - - - - - - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - supply - 4.0 - attic - unvented - 150.0 - - - return - 0.0 - attic - unvented - 50.0 - - - - 2700.0 - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - timer - - true - 150.0 - - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - exterior - 0.4 - - - - - - - garage - 0.4 - - - - - - - interior - 0.1 - - - - - - - exterior - 0.1 - - - - - - - garage - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.25 - - - - - - - garage - 0.25 - - - - - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - - TV other - - kWh/year - 620.0 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + + electricity + natural gas + + + + 3.0 + + + single-family detached + 2.0 + 1.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + Denver, CO + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + true + + + + + + + + attic - unvented + 1510.0 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 116.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + outside + attic - unvented + + + + 290.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + + + continuous - exterior + 8.9 + + 0.0 + 8.0 + + + + continuous - interior + 0.0 + + 0.0 + 0.0 + + + + + + + + + attic - unvented + living space + 1350.0 + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + 0.0 + 0.0 + + + + 0.0 + + + + + + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 0 + 4.4 + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + natural gas + 64000.0 + + AFUE + 0.92 + + 1.0 + + 0.365 + -0.25 + + + + + + manual thermostat + 68.0 + 78.0 + + + + + + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + supply + 4.0 + attic - unvented + 150.0 + + + return + 0.0 + attic - unvented + 50.0 + + 2 + + + 2700.0 + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + + true + 150.0 + + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + exterior + 0.4 + + + + + + + garage + 0.4 + + + + + + + interior + 0.1 + + + + + + + exterior + 0.1 + + + + + + + garage + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.25 + + + + + + + garage + 0.25 + + + + + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + + TV other + + kWh/year + 620.0 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-all-ground-to-air-heat-pump.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-all-ground-to-air-heat-pump.xml new file mode 100644 index 00000000..a0aebe25 --- /dev/null +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-all-ground-to-air-heat-pump.xml @@ -0,0 +1,565 @@ + + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + + electricity + natural gas + + + + 3.0 + + + single-family detached + 2.0 + 1.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + Denver, CO + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + true + + + + + + + + attic - unvented + 1510.0 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 116.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + outside + attic - unvented + + + + 290.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + + + continuous - exterior + 8.9 + + 0.0 + 8.0 + + + + continuous - interior + 0.0 + + 0.0 + 0.0 + + + + + + + + + attic - unvented + living space + 1350.0 + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + 0.0 + 0.0 + + + + 0.0 + + + + + + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 0 + 4.4 + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + ground-to-air + electricity + 42000.0 + 48000.0 + 0.73 + electricity + + Percent + 1.0 + + 34121.0 + 1.0 + 1.0 + + EER + 16.6 + + + COP + 3.6 + + + -0.25 + 0.0 + 0.365 + 30.0 + + + + + + manual thermostat + 68.0 + 78.0 + + + + + + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + supply + 4.0 + attic - unvented + 150.0 + + + return + 0.0 + attic - unvented + 50.0 + + 2 + + + 2700.0 + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + + true + 150.0 + + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + exterior + 0.4 + + + + + + + garage + 0.4 + + + + + + + interior + 0.1 + + + + + + + exterior + 0.1 + + + + + + + garage + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.25 + + + + + + + garage + 0.25 + + + + + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + + TV other + + kWh/year + 620.0 + + + + +
+
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/hvac_autosizing/base-hvac-mini-split-air-conditioner-only-ducted-autosize.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-all-mini-split-air-conditioner-only-ducted.xml similarity index 96% rename from example_files/resources/hpxml-measures/workflow/sample_files/hvac_autosizing/base-hvac-mini-split-air-conditioner-only-ducted-autosize.xml rename to example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-all-mini-split-air-conditioner-only-ducted.xml index fc8cb917..d68611dc 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/hvac_autosizing/base-hvac-mini-split-air-conditioner-only-ducted-autosize.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-all-mini-split-air-conditioner-only-ducted.xml @@ -1,549 +1,552 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - - electricity - natural gas - - - - 3.0 - - - single-family detached - 2.0 - 1.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - Denver, CO - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - true - - - - - - - - attic - unvented - 1510.0 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 116.0 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - outside - attic - unvented - - - - 290.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - - - continuous - exterior - 8.9 - - 0.0 - 8.0 - - - - continuous - interior - 0.0 - - 0.0 - 0.0 - - - - - - - - - attic - unvented - living space - 1350.0 - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - 0.0 - 0.0 - - - - 0.0 - - - - - - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 0 - 4.4 - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - mini-split - electricity - 1.0 - - SEER - 19.0 - - 0.73 - - 0.2 - - - - - - manual thermostat - 68.0 - 78.0 - - - - - - - supply - - CFM25 - 15.0 - to outside - - - - return - - CFM25 - 5.0 - to outside - - - - supply - 0.0 - attic - unvented - 30.0 - - - return - 0.0 - attic - unvented - 10.0 - - - - 2700.0 - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - timer - - true - 150.0 - - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - exterior - 0.4 - - - - - - - garage - 0.4 - - - - - - - interior - 0.1 - - - - - - - exterior - 0.1 - - - - - - - garage - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.25 - - - - - - - garage - 0.25 - - - - - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - - TV other - - kWh/year - 620.0 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + + electricity + natural gas + + + + 3.0 + + + single-family detached + 2.0 + 1.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + Denver, CO + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + true + + + + + + + + attic - unvented + 1510.0 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 116.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + outside + attic - unvented + + + + 290.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + + + continuous - exterior + 8.9 + + 0.0 + 8.0 + + + + continuous - interior + 0.0 + + 0.0 + 0.0 + + + + + + + + + attic - unvented + living space + 1350.0 + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + 0.0 + 0.0 + + + + 0.0 + + + + + + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 0 + 4.4 + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + mini-split + electricity + 48000.0 + 1.0 + + SEER + 19.0 + + 0.73 + + -0.25 + -0.25 + 0.365 + + + + + + manual thermostat + 68.0 + 78.0 + + + + + + + supply + + CFM25 + 15.0 + to outside + + + + return + + CFM25 + 5.0 + to outside + + + + supply + 0.0 + attic - unvented + 30.0 + + + return + 0.0 + attic - unvented + 10.0 + + 2 + + + 2700.0 + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + + true + 150.0 + + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + exterior + 0.4 + + + + + + + garage + 0.4 + + + + + + + interior + 0.1 + + + + + + + exterior + 0.1 + + + + + + + garage + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.25 + + + + + + + garage + 0.25 + + + + + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + + TV other + + kWh/year + 620.0 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/hvac_autosizing/base-hvac-mini-split-heat-pump-ducted-autosize.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-all-mini-split-heat-pump-ducted.xml similarity index 96% rename from example_files/resources/hpxml-measures/workflow/sample_files/hvac_autosizing/base-hvac-mini-split-heat-pump-ducted-autosize.xml rename to example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-all-mini-split-heat-pump-ducted.xml index f72992b9..4784578d 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/hvac_autosizing/base-hvac-mini-split-heat-pump-ducted-autosize.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-all-mini-split-heat-pump-ducted.xml @@ -1,559 +1,565 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - - electricity - natural gas - - - - 3.0 - - - single-family detached - 2.0 - 1.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - Denver, CO - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - true - - - - - - - - attic - unvented - 1510.0 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 116.0 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - outside - attic - unvented - - - - 290.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - - - continuous - exterior - 8.9 - - 0.0 - 8.0 - - - - continuous - interior - 0.0 - - 0.0 - 0.0 - - - - - - - - - attic - unvented - living space - 1350.0 - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - 0.0 - 0.0 - - - - 0.0 - - - - - - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 0 - 4.4 - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - mini-split - electricity - 0.73 - electricity - - Percent - 1.0 - - 1.0 - 1.0 - - SEER - 19.0 - - - HSPF - 10.0 - - - 0.2 - - - - - - manual thermostat - 68.0 - 78.0 - - - - - - - supply - - CFM25 - 15.0 - to outside - - - - return - - CFM25 - 5.0 - to outside - - - - supply - 0.0 - attic - unvented - 30.0 - - - return - 0.0 - attic - unvented - 10.0 - - - - 2700.0 - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - timer - - true - 150.0 - - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - exterior - 0.4 - - - - - - - garage - 0.4 - - - - - - - interior - 0.1 - - - - - - - exterior - 0.1 - - - - - - - garage - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.25 - - - - - - - garage - 0.25 - - - - - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - - TV other - - kWh/year - 620.0 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + + electricity + natural gas + + + + 3.0 + + + single-family detached + 2.0 + 1.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + Denver, CO + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + true + + + + + + + + attic - unvented + 1510.0 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 116.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + outside + attic - unvented + + + + 290.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + + + continuous - exterior + 8.9 + + 0.0 + 8.0 + + + + continuous - interior + 0.0 + + 0.0 + 0.0 + + + + + + + + + attic - unvented + living space + 1350.0 + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + 0.0 + 0.0 + + + + 0.0 + + + + + + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 0 + 4.4 + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + mini-split + electricity + 52000.0 + 29500.0 + 48000.0 + 0.73 + electricity + + Percent + 1.0 + + 34121.0 + 1.0 + 1.0 + + SEER + 19.0 + + + HSPF + 10.0 + + + -0.25 + -0.25 + 0.365 + + + + + + manual thermostat + 68.0 + 78.0 + + + + + + + supply + + CFM25 + 15.0 + to outside + + + + return + + CFM25 + 5.0 + to outside + + + + supply + 0.0 + attic - unvented + 30.0 + + + return + 0.0 + attic - unvented + 10.0 + + 2 + + + 2700.0 + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + + true + 150.0 + + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + exterior + 0.4 + + + + + + + garage + 0.4 + + + + + + + interior + 0.1 + + + + + + + exterior + 0.1 + + + + + + + garage + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.25 + + + + + + + garage + 0.25 + + + + + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + + TV other + + kWh/year + 620.0 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-blower-efficiency-furnace-gas-central-ac-1-speed.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-blower-efficiency-furnace-gas-central-ac-1-speed.xml new file mode 100644 index 00000000..7ed7f3e6 --- /dev/null +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-blower-efficiency-furnace-gas-central-ac-1-speed.xml @@ -0,0 +1,568 @@ + + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + + electricity + natural gas + + + + 3.0 + + + single-family detached + 2.0 + 1.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + Denver, CO + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + true + + + + + + + + attic - unvented + 1510.0 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 116.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + outside + attic - unvented + + + + 290.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + + + continuous - exterior + 8.9 + + 0.0 + 8.0 + + + + continuous - interior + 0.0 + + 0.0 + 0.0 + + + + + + + + + attic - unvented + living space + 1350.0 + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + 0.0 + 0.0 + + + + 0.0 + + + + + + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 0 + 4.4 + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + natural gas + 64000.0 + + AFUE + 0.92 + + 1.0 + + 0.365 + + + + + + central air conditioner + electricity + 48000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + 0.365 + + + + + + manual thermostat + 68.0 + 78.0 + + + + + + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + supply + 4.0 + attic - unvented + 150.0 + + + return + 0.0 + attic - unvented + 50.0 + + 2 + + + 2700.0 + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + + true + 150.0 + + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + exterior + 0.4 + + + + + + + garage + 0.4 + + + + + + + interior + 0.1 + + + + + + + exterior + 0.1 + + + + + + + garage + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.25 + + + + + + + garage + 0.25 + + + + + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + + TV other + + kWh/year + 620.0 + + + + +
+
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-charge-defect-furnace-gas-central-ac-1-speed.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-charge-defect-furnace-gas-central-ac-1-speed.xml new file mode 100644 index 00000000..2d7a2eba --- /dev/null +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-charge-defect-furnace-gas-central-ac-1-speed.xml @@ -0,0 +1,565 @@ + + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + + electricity + natural gas + + + + 3.0 + + + single-family detached + 2.0 + 1.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + Denver, CO + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + true + + + + + + + + attic - unvented + 1510.0 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 116.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + outside + attic - unvented + + + + 290.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + + + continuous - exterior + 8.9 + + 0.0 + 8.0 + + + + continuous - interior + 0.0 + + 0.0 + 0.0 + + + + + + + + + attic - unvented + living space + 1350.0 + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + 0.0 + 0.0 + + + + 0.0 + + + + + + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 0 + 4.4 + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + natural gas + 64000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 48000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + -0.25 + + + + + + manual thermostat + 68.0 + 78.0 + + + + + + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + supply + 4.0 + attic - unvented + 150.0 + + + return + 0.0 + attic - unvented + 50.0 + + 2 + + + 2700.0 + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + + true + 150.0 + + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + exterior + 0.4 + + + + + + + garage + 0.4 + + + + + + + interior + 0.1 + + + + + + + exterior + 0.1 + + + + + + + garage + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.25 + + + + + + + garage + 0.25 + + + + + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + + TV other + + kWh/year + 620.0 + + + + +
+
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-none-furnace-gas-central-ac-1-speed.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-none-furnace-gas-central-ac-1-speed.xml new file mode 100644 index 00000000..3fbcfafc --- /dev/null +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-none-furnace-gas-central-ac-1-speed.xml @@ -0,0 +1,569 @@ + + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + + electricity + natural gas + + + + 3.0 + + + single-family detached + 2.0 + 1.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + Denver, CO + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + true + + + + + + + + attic - unvented + 1510.0 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 116.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + outside + attic - unvented + + + + 290.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + + + continuous - exterior + 8.9 + + 0.0 + 8.0 + + + + continuous - interior + 0.0 + + 0.0 + 0.0 + + + + + + + + + attic - unvented + living space + 1350.0 + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + 0.0 + 0.0 + + + + 0.0 + + + + + + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 0 + 4.4 + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + natural gas + 64000.0 + + AFUE + 0.92 + + 1.0 + + 0.0 + + + + + + central air conditioner + electricity + 48000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + 0.0 + 0.0 + + + + + + manual thermostat + 68.0 + 78.0 + + + + + + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + supply + 4.0 + attic - unvented + 150.0 + + + return + 0.0 + attic - unvented + 50.0 + + 2 + + + 2700.0 + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + + true + 150.0 + + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + exterior + 0.4 + + + + + + + garage + 0.4 + + + + + + + interior + 0.1 + + + + + + + exterior + 0.1 + + + + + + + garage + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.25 + + + + + + + garage + 0.25 + + + + + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + + TV other + + kWh/year + 620.0 + + + + +
+
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-air-conditioner-only-ducted.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-air-conditioner-only-ducted.xml index 372d95f5..b0f98e69 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-air-conditioner-only-ducted.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-air-conditioner-only-ducted.xml @@ -316,9 +316,6 @@ 19.0 0.73 - - 0.2 - @@ -359,6 +356,7 @@ attic - unvented 10.0 + 2 2700.0 @@ -416,7 +414,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-air-conditioner-only-ductless.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-air-conditioner-only-ductless.xml index 4fffbb8b..51611824 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-air-conditioner-only-ductless.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-air-conditioner-only-ductless.xml @@ -315,9 +315,6 @@ 19.0 0.73 - - 0.2 - @@ -379,7 +376,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted-cooling-only.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted-cooling-only.xml index e8d0fccc..4827afb7 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted-cooling-only.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted-cooling-only.xml @@ -323,9 +323,6 @@ HSPF 10.0 - - 0.2 - @@ -366,6 +363,7 @@ attic - unvented 10.0 + 2 2700.0 @@ -423,7 +421,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted-heating-only.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted-heating-only.xml index e1939290..c60244e1 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted-heating-only.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted-heating-only.xml @@ -329,9 +329,6 @@ HSPF 10.0 - - 0.2 - @@ -372,6 +369,7 @@ attic - unvented 10.0 + 2 2700.0 @@ -429,7 +427,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted.xml index b8818e30..343ef858 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted.xml @@ -329,9 +329,6 @@ HSPF 10.0 - - 0.2 - @@ -372,6 +369,7 @@ attic - unvented 10.0 + 2 2700.0 @@ -429,7 +427,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless.xml index 030055d0..943fcd24 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless.xml @@ -322,9 +322,6 @@ HSPF 10.0 - - 0.2 - @@ -386,7 +383,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-multiple.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-multiple.xml index efb2ea48..0be176e4 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-multiple.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-multiple.xml @@ -1,914 +1,917 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - - electricity - natural gas - - - - 3.0 - - - single-family detached - 2.0 - 1.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - Denver, CO - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - true - - - - - - - - attic - unvented - 1510.0 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 116.0 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - outside - attic - unvented - - - - 290.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - - - continuous - exterior - 8.9 - - 0.0 - 8.0 - - - - continuous - interior - 0.0 - - 0.0 - 0.0 - - - - - - - - - attic - unvented - living space - 1350.0 - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - 0.0 - 0.0 - - - - 0.0 - - - - - - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 0 - 4.4 - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - electricity - 6400.0 - - AFUE - 1.0 - - 0.1 - - - - - - - - natural gas - 6400.0 - - AFUE - 0.92 - - 0.1 - - - - - - - - electricity - 6400.0 - - AFUE - 1.0 - - 0.1 - - - - - - - - natural gas - 6400.0 - - AFUE - 0.92 - - 0.1 - 200.0 - - - - - - - electricity - 6400.0 - - Percent - 1.0 - - 0.1 - - - - - - - fuel oil - 6400.0 - - Percent - 0.8 - - 0.1 - - 40.0 - - - - - - - - propane - 6400.0 - - AFUE - 0.8 - - 0.1 - - 0.0 - - - - - - central air conditioner - electricity - 9600.0 - single stage - 0.2 - - SEER - 13.0 - - 0.73 - - - - room air conditioner - electricity - 9600.0 - 0.2 - - EER - 8.5 - - 0.65 - - - - - air-to-air - electricity - 4800.0 - 3024.0 - 4800.0 - single stage - 0.73 - electricity - - Percent - 1.0 - - 3412.0 - 0.1 - 0.2 - - SEER - 13.0 - - - HSPF - 7.7 - - - - - - ground-to-air - electricity - 4800.0 - 4800.0 - 0.73 - electricity - - Percent - 1.0 - - 3412.0 - 0.1 - 0.2 - - EER - 16.6 - - - COP - 3.6 - - - 30.0 - - - - - mini-split - electricity - 4800.0 - 2723.076923076923 - 4800.0 - 0.73 - electricity - - Percent - 1.0 - - 3412.0 - 0.1 - 0.2 - - SEER - 19.0 - - - HSPF - 10.0 - - - - - - manual thermostat - 68.0 - 78.0 - - - - - - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - supply - 8.0 - attic - unvented - 75.0 - - - supply - 8.0 - outside - 75.0 - - - return - 4.0 - attic - unvented - 25.0 - - - return - 4.0 - outside - 25.0 - - - - 675.0 - - - - - - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - supply - 8.0 - attic - unvented - 75.0 - - - supply - 8.0 - outside - 75.0 - - - return - 4.0 - attic - unvented - 25.0 - - - return - 4.0 - outside - 25.0 - - - - 675.0 - - - - - - baseboard - - - - - - - - baseboard - - - - - - - - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - supply - 8.0 - attic - unvented - 75.0 - - - supply - 8.0 - outside - 75.0 - - - return - 4.0 - attic - unvented - 25.0 - - - return - 4.0 - outside - 25.0 - - - - 675.0 - - - - - - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - supply - 8.0 - attic - unvented - 75.0 - - - supply - 8.0 - outside - 75.0 - - - return - 4.0 - attic - unvented - 25.0 - - - return - 4.0 - outside - 25.0 - - - - 675.0 - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - timer - - true - 150.0 - - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - exterior - 0.4 - - - - - - - garage - 0.4 - - - - - - - interior - 0.1 - - - - - - - exterior - 0.1 - - - - - - - garage - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.25 - - - - - - - garage - 0.25 - - - - - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - - TV other - - kWh/year - 620.0 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + + electricity + natural gas + + + + 3.0 + + + single-family detached + 2.0 + 1.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + Denver, CO + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + true + + + + + + + + attic - unvented + 1510.0 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 116.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + outside + attic - unvented + + + + 290.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + + + continuous - exterior + 8.9 + + 0.0 + 8.0 + + + + continuous - interior + 0.0 + + 0.0 + 0.0 + + + + + + + + + attic - unvented + living space + 1350.0 + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + 0.0 + 0.0 + + + + 0.0 + + + + + + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 0 + 4.4 + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + electricity + 6400.0 + + AFUE + 1.0 + + 0.1 + + + + + + + + natural gas + 6400.0 + + AFUE + 0.92 + + 0.1 + + + + + + + + electricity + 6400.0 + + AFUE + 1.0 + + 0.1 + + + + + + + + natural gas + 6400.0 + + AFUE + 0.92 + + 0.1 + 200.0 + + + + + + + electricity + 6400.0 + + Percent + 1.0 + + 0.1 + + + + + + + fuel oil + 6400.0 + + Percent + 0.8 + + 0.1 + + 40.0 + + + + + + + + propane + 6400.0 + + AFUE + 0.8 + + 0.1 + + 0.0 + + + + + + central air conditioner + electricity + 9600.0 + single stage + 0.2 + + SEER + 13.0 + + 0.73 + + + + room air conditioner + electricity + 9600.0 + 0.2 + + EER + 8.5 + + 0.65 + + + + + air-to-air + electricity + 4800.0 + 3024.0 + 4800.0 + single stage + 0.73 + electricity + + Percent + 1.0 + + 3412.0 + 0.1 + 0.2 + + SEER + 13.0 + + + HSPF + 7.7 + + + + + + ground-to-air + electricity + 4800.0 + 4800.0 + 0.73 + electricity + + Percent + 1.0 + + 3412.0 + 0.1 + 0.2 + + EER + 16.6 + + + COP + 3.6 + + + 30.0 + + + + + mini-split + electricity + 4800.0 + 2723.076923076923 + 4800.0 + 0.73 + electricity + + Percent + 1.0 + + 3412.0 + 0.1 + 0.2 + + SEER + 19.0 + + + HSPF + 10.0 + + + + + + manual thermostat + 68.0 + 78.0 + + + + + + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + supply + 8.0 + attic - unvented + 75.0 + + + supply + 8.0 + outside + 75.0 + + + return + 4.0 + attic - unvented + 25.0 + + + return + 4.0 + outside + 25.0 + + 2 + + + 675.0 + + + + + + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + supply + 8.0 + attic - unvented + 75.0 + + + supply + 8.0 + outside + 75.0 + + + return + 4.0 + attic - unvented + 25.0 + + + return + 4.0 + outside + 25.0 + + 2 + + + 675.0 + + + + + + baseboard + + + + + + + + baseboard + + + + + + + + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + supply + 8.0 + attic - unvented + 75.0 + + + supply + 8.0 + outside + 75.0 + + + return + 4.0 + attic - unvented + 25.0 + + + return + 4.0 + outside + 25.0 + + 2 + + + 675.0 + + + + + + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + supply + 8.0 + attic - unvented + 75.0 + + + supply + 8.0 + outside + 75.0 + + + return + 4.0 + attic - unvented + 25.0 + + + return + 4.0 + outside + 25.0 + + 2 + + + 675.0 + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + + true + 150.0 + + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + exterior + 0.4 + + + + + + + garage + 0.4 + + + + + + + interior + 0.1 + + + + + + + exterior + 0.1 + + + + + + + garage + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.25 + + + + + + + garage + 0.25 + + + + + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + + TV other + + kWh/year + 620.0 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-multiple2.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-multiple2.xml index a1a40f11..8e24d6ab 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-multiple2.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-multiple2.xml @@ -1,835 +1,838 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - - electricity - natural gas - - - - 3.0 - - - single-family detached - 2.0 - 1.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - Denver, CO - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - true - - - - - - - - attic - unvented - 1510.0 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 116.0 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - outside - attic - unvented - - - - 290.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - - - continuous - exterior - 8.9 - - 0.0 - 8.0 - - - - continuous - interior - 0.0 - - 0.0 - 0.0 - - - - - - - - - attic - unvented - living space - 1350.0 - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - 0.0 - 0.0 - - - - 0.0 - - - - - - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 0 - 4.4 - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - electricity - 6400.0 - - AFUE - 1.0 - - 0.2 - - - - - - - - electricity - 6400.0 - - AFUE - 0.92 - - 0.2 - - - - - - - - electricity - 6400.0 - - AFUE - 1.0 - - 0.2 - - - - - - - electricity - 3200.0 - - Percent - 1.0 - - 0.1 - - - - - central air conditioner - electricity - 12000.0 - single stage - 0.25 - - SEER - 13.0 - - 0.73 - - - - - central air conditioner - electricity - 9600.0 - 0.25 - - SEER - 13.0 - - 0.65 - - - - - air-to-air - electricity - 4800.0 - 3024.0 - 4800.0 - single stage - 0.73 - electricity - - Percent - 1.0 - - 3412.0 - 0.1 - 0.2 - - SEER - 13.0 - - - HSPF - 7.7 - - - - - - ground-to-air - electricity - 4800.0 - 4800.0 - 0.73 - electricity - - Percent - 1.0 - - 3412.0 - 0.1 - 0.2 - - EER - 16.6 - - - COP - 3.6 - - - 30.0 - - - - - - manual thermostat - 68.0 - 78.0 - - - - - - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - supply - 8.0 - attic - unvented - 75.0 - - - supply - 8.0 - outside - 75.0 - - - return - 4.0 - attic - unvented - 25.0 - - - return - 4.0 - outside - 25.0 - - - - 675.0 - - - - - - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - supply - 8.0 - attic - unvented - 75.0 - - - supply - 8.0 - outside - 75.0 - - - return - 4.0 - attic - unvented - 25.0 - - - return - 4.0 - outside - 25.0 - - - - 675.0 - - - - - - baseboard - - - - - - - - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - supply - 8.0 - attic - unvented - 75.0 - - - supply - 8.0 - outside - 75.0 - - - return - 4.0 - attic - unvented - 25.0 - - - return - 4.0 - outside - 25.0 - - - - 675.0 - - - - - - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - supply - 8.0 - attic - unvented - 75.0 - - - supply - 8.0 - outside - 75.0 - - - return - 4.0 - attic - unvented - 25.0 - - - return - 4.0 - outside - 25.0 - - - - 675.0 - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - timer - - true - 150.0 - - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - exterior - 0.4 - - - - - - - garage - 0.4 - - - - - - - interior - 0.1 - - - - - - - exterior - 0.1 - - - - - - - garage - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.25 - - - - - - - garage - 0.25 - - - - - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - - TV other - - kWh/year - 620.0 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + + electricity + natural gas + + + + 3.0 + + + single-family detached + 2.0 + 1.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + Denver, CO + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + true + + + + + + + + attic - unvented + 1510.0 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 116.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + outside + attic - unvented + + + + 290.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + + + continuous - exterior + 8.9 + + 0.0 + 8.0 + + + + continuous - interior + 0.0 + + 0.0 + 0.0 + + + + + + + + + attic - unvented + living space + 1350.0 + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + 0.0 + 0.0 + + + + 0.0 + + + + + + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 0 + 4.4 + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + electricity + 6400.0 + + AFUE + 1.0 + + 0.2 + + + + + + + + electricity + 6400.0 + + AFUE + 0.92 + + 0.2 + + + + + + + + electricity + 6400.0 + + AFUE + 1.0 + + 0.2 + + + + + + + electricity + 3200.0 + + Percent + 1.0 + + 0.1 + + + + + central air conditioner + electricity + 12000.0 + single stage + 0.25 + + SEER + 13.0 + + 0.73 + + + + + central air conditioner + electricity + 9600.0 + 0.25 + + SEER + 13.0 + + 0.65 + + + + + air-to-air + electricity + 4800.0 + 3024.0 + 4800.0 + single stage + 0.73 + electricity + + Percent + 1.0 + + 3412.0 + 0.1 + 0.2 + + SEER + 13.0 + + + HSPF + 7.7 + + + + + + ground-to-air + electricity + 4800.0 + 4800.0 + 0.73 + electricity + + Percent + 1.0 + + 3412.0 + 0.1 + 0.2 + + EER + 16.6 + + + COP + 3.6 + + + 30.0 + + + + + + manual thermostat + 68.0 + 78.0 + + + + + + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + supply + 8.0 + attic - unvented + 75.0 + + + supply + 8.0 + outside + 75.0 + + + return + 4.0 + attic - unvented + 25.0 + + + return + 4.0 + outside + 25.0 + + 2 + + + 675.0 + + + + + + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + supply + 8.0 + attic - unvented + 75.0 + + + supply + 8.0 + outside + 75.0 + + + return + 4.0 + attic - unvented + 25.0 + + + return + 4.0 + outside + 25.0 + + 2 + + + 675.0 + + + + + + baseboard + + + + + + + + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + supply + 8.0 + attic - unvented + 75.0 + + + supply + 8.0 + outside + 75.0 + + + return + 4.0 + attic - unvented + 25.0 + + + return + 4.0 + outside + 25.0 + + 2 + + + 675.0 + + + + + + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + supply + 8.0 + attic - unvented + 75.0 + + + supply + 8.0 + outside + 75.0 + + + return + 4.0 + attic - unvented + 25.0 + + + return + 4.0 + outside + 25.0 + + 2 + + + 675.0 + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + + true + 150.0 + + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + exterior + 0.4 + + + + + + + garage + 0.4 + + + + + + + interior + 0.1 + + + + + + + exterior + 0.1 + + + + + + + garage + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.25 + + + + + + + garage + 0.25 + + + + + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + + TV other + + kWh/year + 620.0 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-none.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-none.xml index 88d4cd1e..8f831d0f 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-none.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-none.xml @@ -354,7 +354,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-portable-heater-gas-only.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-portable-heater-gas-only.xml index a16fdb9b..8478bca0 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-portable-heater-gas-only.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-portable-heater-gas-only.xml @@ -1,564 +1,564 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - - electricity - natural gas - - - - 3.0 - - - single-family detached - 2.0 - 1.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - Denver, CO - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - true - - - - - - - - attic - unvented - 1510.0 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 116.0 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - outside - attic - unvented - - - - 290.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - - - continuous - exterior - 8.9 - - 0.0 - 8.0 - - - - continuous - interior - 0.0 - - 0.0 - 0.0 - - - - - - - - - attic - unvented - living space - 1350.0 - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - 0.0 - 0.0 - - - - 0.0 - - - - - - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 0 - 4.4 - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - natural gas - 64000.0 - - Percent - 1.0 - - 1.0 - - 0.0 - - - - - - central air conditioner - electricity - 48000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - manual thermostat - 68.0 - 78.0 - - - - - - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - supply - 4.0 - attic - unvented - 150.0 - - - return - 0.0 - attic - unvented - 50.0 - - - - 2700.0 - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - timer - - true - 150.0 - - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - exterior - 0.4 - - - - - - - garage - 0.4 - - - - - - - interior - 0.1 - - - - - - - exterior - 0.1 - - - - - - - garage - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.25 - - - - - - - garage - 0.25 - - - - - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - - TV other - - kWh/year - 620.0 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + + electricity + natural gas + + + + 3.0 + + + single-family detached + 2.0 + 1.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + Denver, CO + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + true + + + + + + + + attic - unvented + 1510.0 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 116.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + outside + attic - unvented + + + + 290.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + + + continuous - exterior + 8.9 + + 0.0 + 8.0 + + + + continuous - interior + 0.0 + + 0.0 + 0.0 + + + + + + + + + attic - unvented + living space + 1350.0 + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + 0.0 + 0.0 + + + + 0.0 + + + + + + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 0 + 4.4 + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + natural gas + 64000.0 + + Percent + 1.0 + + 1.0 + + 0.0 + + + + + + central air conditioner + electricity + 48000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + manual thermostat + 68.0 + 78.0 + + + + + + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + supply + 4.0 + attic - unvented + 150.0 + + + return + 0.0 + attic - unvented + 50.0 + + 2 + + + 2700.0 + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + + true + 150.0 + + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + exterior + 0.4 + + + + + + + garage + 0.4 + + + + + + + interior + 0.1 + + + + + + + exterior + 0.1 + + + + + + + garage + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.25 + + + + + + + garage + 0.25 + + + + + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + + TV other + + kWh/year + 620.0 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-programmable-thermostat-detailed.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-programmable-thermostat-detailed.xml index 949b58eb..29835461 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-programmable-thermostat-detailed.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-programmable-thermostat-detailed.xml @@ -375,6 +375,7 @@ attic - unvented 50.0 + 2 2700.0 @@ -432,7 +433,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-programmable-thermostat.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-programmable-thermostat.xml index 218fed41..287f977b 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-programmable-thermostat.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-programmable-thermostat.xml @@ -379,6 +379,7 @@ attic - unvented 50.0 + 2 2700.0 @@ -436,7 +437,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-room-ac-only-33percent.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-room-ac-only-33percent.xml index 0c9def9d..1c8ecfc5 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-room-ac-only-33percent.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-room-ac-only-33percent.xml @@ -376,7 +376,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-room-ac-only.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-room-ac-only.xml index c7da69c8..b0ab6347 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-room-ac-only.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-room-ac-only.xml @@ -376,7 +376,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-setpoints.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-setpoints.xml index 8118ffcc..419f2c89 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-setpoints.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-setpoints.xml @@ -371,6 +371,7 @@ attic - unvented 50.0 + 2 2700.0 @@ -428,7 +429,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-stove-oil-only.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-stove-oil-only.xml index 6c6d30fc..175be4c0 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-stove-oil-only.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-stove-oil-only.xml @@ -1,514 +1,513 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - - electricity - natural gas - - - - 3.0 - - - single-family detached - 2.0 - 1.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - Denver, CO - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - true - - - - - - - - attic - unvented - 1510.0 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 116.0 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - outside - attic - unvented - - - - 290.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - - - continuous - exterior - 8.9 - - 0.0 - 8.0 - - - - continuous - interior - 0.0 - - 0.0 - 0.0 - - - - - - - - - attic - unvented - living space - 1350.0 - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - 0.0 - 0.0 - - - - 0.0 - - - - - - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 0 - 4.4 - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - fuel oil - 64000.0 - - Percent - 0.8 - - 1.0 - - 40.0 - - - - - - manual thermostat - 68.0 - 78.0 - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - timer - - true - 150.0 - - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - exterior - 0.4 - - - - - - - garage - 0.4 - - - - - - - interior - 0.1 - - - - - - - exterior - 0.1 - - - - - - - garage - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.25 - - - - - - - garage - 0.25 - - - - - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - - TV other - - kWh/year - 620.0 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + + electricity + natural gas + + + + 3.0 + + + single-family detached + 2.0 + 1.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + Denver, CO + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + true + + + + + + + + attic - unvented + 1510.0 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 116.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + outside + attic - unvented + + + + 290.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + + + continuous - exterior + 8.9 + + 0.0 + 8.0 + + + + continuous - interior + 0.0 + + 0.0 + 0.0 + + + + + + + + + attic - unvented + living space + 1350.0 + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + 0.0 + 0.0 + + + + 0.0 + + + + + + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 0 + 4.4 + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + fuel oil + 64000.0 + + Percent + 0.8 + + 1.0 + + 40.0 + + + + + + manual thermostat + 68.0 + 78.0 + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + + true + 150.0 + + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + exterior + 0.4 + + + + + + + garage + 0.4 + + + + + + + interior + 0.1 + + + + + + + exterior + 0.1 + + + + + + + garage + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.25 + + + + + + + garage + 0.25 + + + + + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + + TV other + + kWh/year + 620.0 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-stove-wood-pellets-only.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-stove-wood-pellets-only.xml index c63a8c80..0f250d7a 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-stove-wood-pellets-only.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-stove-wood-pellets-only.xml @@ -1,514 +1,513 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - - electricity - natural gas - - - - 3.0 - - - single-family detached - 2.0 - 1.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - Denver, CO - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - true - - - - - - - - attic - unvented - 1510.0 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 116.0 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - outside - attic - unvented - - - - 290.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - - - continuous - exterior - 8.9 - - 0.0 - 8.0 - - - - continuous - interior - 0.0 - - 0.0 - 0.0 - - - - - - - - - attic - unvented - living space - 1350.0 - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - 0.0 - 0.0 - - - - 0.0 - - - - - - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 0 - 4.4 - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - wood pellets - 64000.0 - - Percent - 0.8 - - 1.0 - - 40.0 - - - - - - manual thermostat - 68.0 - 78.0 - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - timer - - true - 150.0 - - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - exterior - 0.4 - - - - - - - garage - 0.4 - - - - - - - interior - 0.1 - - - - - - - exterior - 0.1 - - - - - - - garage - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.25 - - - - - - - garage - 0.25 - - - - - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - - TV other - - kWh/year - 620.0 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + + electricity + natural gas + + + + 3.0 + + + single-family detached + 2.0 + 1.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + Denver, CO + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + true + + + + + + + + attic - unvented + 1510.0 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 116.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + outside + attic - unvented + + + + 290.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + + + continuous - exterior + 8.9 + + 0.0 + 8.0 + + + + continuous - interior + 0.0 + + 0.0 + 0.0 + + + + + + + + + attic - unvented + living space + 1350.0 + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + 0.0 + 0.0 + + + + 0.0 + + + + + + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 0 + 4.4 + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + wood pellets + 64000.0 + + Percent + 0.8 + + 1.0 + + 40.0 + + + + + + manual thermostat + 68.0 + 78.0 + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + + true + 150.0 + + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + exterior + 0.4 + + + + + + + garage + 0.4 + + + + + + + interior + 0.1 + + + + + + + exterior + 0.1 + + + + + + + garage + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.25 + + + + + + + garage + 0.25 + + + + + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + + TV other + + kWh/year + 620.0 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-undersized-allow-increased-fixed-capacities.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-undersized-allow-increased-fixed-capacities.xml index dabc553b..2848de6f 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-undersized-allow-increased-fixed-capacities.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-undersized-allow-increased-fixed-capacities.xml @@ -374,6 +374,7 @@ attic - unvented 50.0 + 2 2700.0 @@ -431,7 +432,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-undersized.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-undersized.xml index c0937364..91444d91 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-undersized.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-undersized.xml @@ -371,6 +371,7 @@ attic - unvented 50.0 + 2 2700.0 @@ -428,7 +429,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-wall-furnace-elec-only.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-wall-furnace-elec-only.xml index 38c3fe16..215e2062 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-wall-furnace-elec-only.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-wall-furnace-elec-only.xml @@ -1,514 +1,513 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - - electricity - natural gas - - - - 3.0 - - - single-family detached - 2.0 - 1.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - Denver, CO - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - true - - - - - - - - attic - unvented - 1510.0 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 116.0 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - outside - attic - unvented - - - - 290.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - - - continuous - exterior - 8.9 - - 0.0 - 8.0 - - - - continuous - interior - 0.0 - - 0.0 - 0.0 - - - - - - - - - attic - unvented - living space - 1350.0 - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - 0.0 - 0.0 - - - - 0.0 - - - - - - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 0 - 4.4 - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - electricity - 64000.0 - - AFUE - 1.0 - - 1.0 - - 0.0 - - - - - - manual thermostat - 68.0 - 78.0 - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - timer - - true - 150.0 - - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - exterior - 0.4 - - - - - - - garage - 0.4 - - - - - - - interior - 0.1 - - - - - - - exterior - 0.1 - - - - - - - garage - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.25 - - - - - - - garage - 0.25 - - - - - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - - TV other - - kWh/year - 620.0 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + + electricity + natural gas + + + + 3.0 + + + single-family detached + 2.0 + 1.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + Denver, CO + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + true + + + + + + + + attic - unvented + 1510.0 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 116.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + outside + attic - unvented + + + + 290.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + + + continuous - exterior + 8.9 + + 0.0 + 8.0 + + + + continuous - interior + 0.0 + + 0.0 + 0.0 + + + + + + + + + attic - unvented + living space + 1350.0 + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + 0.0 + 0.0 + + + + 0.0 + + + + + + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 0 + 4.4 + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + electricity + 64000.0 + + AFUE + 1.0 + + 1.0 + + 0.0 + + + + + + manual thermostat + 68.0 + 78.0 + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + + true + 150.0 + + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + exterior + 0.4 + + + + + + + garage + 0.4 + + + + + + + interior + 0.1 + + + + + + + exterior + 0.1 + + + + + + + garage + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.25 + + + + + + + garage + 0.25 + + + + + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + + TV other + + kWh/year + 620.0 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-lighting-ceiling-fans.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-lighting-ceiling-fans.xml index de7bc49e..b8a17a12 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-lighting-ceiling-fans.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-lighting-ceiling-fans.xml @@ -374,6 +374,7 @@ attic - unvented 50.0 + 2 2700.0 @@ -431,7 +432,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-lighting-detailed.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-lighting-detailed.xml index 226cfcfd..8368dc39 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-lighting-detailed.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-lighting-detailed.xml @@ -371,6 +371,7 @@ attic - unvented 50.0 + 2 2700.0 @@ -428,7 +429,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-lighting-none.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-lighting-none.xml index c695403b..250b8481 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-lighting-none.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-lighting-none.xml @@ -371,6 +371,7 @@ attic - unvented 50.0 + 2 2700.0 @@ -428,7 +429,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-location-AMY-2012.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-location-AMY-2012.xml index 26a43bcc..135ac752 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-location-AMY-2012.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-location-AMY-2012.xml @@ -371,6 +371,7 @@ attic - unvented 50.0 + 2 2700.0 @@ -428,7 +429,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-location-baltimore-md.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-location-baltimore-md.xml index 08722cbb..393c8fb3 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-location-baltimore-md.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-location-baltimore-md.xml @@ -38,12 +38,12 @@ single-family detached - 2.0 + 1.0 1.0 3 2 - 2700.0 - 21600.0 + 1350.0 + 10800.0 @@ -68,7 +68,7 @@ ACH 3.0 - 21600.0 + 10800.0 @@ -84,12 +84,13 @@ - + - - true - + + false + + false @@ -112,7 +113,7 @@ outside - basement - conditioned + crawlspace - unvented 116.0 wood siding 0.7 @@ -161,11 +162,11 @@ ground - basement - conditioned - 8.0 - 1200.0 + crawlspace - unvented + 4.0 + 600.0 8.0 - 7.0 + 3.0 @@ -173,7 +174,7 @@ 8.9 0.0 - 8.0 + 4.0 @@ -198,13 +199,23 @@ 39.3 + + + crawlspace - unvented + living space + 1350.0 + + + 18.7 + + - basement - conditioned + crawlspace - unvented 1350.0 - 4.0 + 0.0 150.0 0.0 0.0 @@ -222,7 +233,7 @@ 0.0 - 0.0 + 2.5 @@ -362,18 +373,19 @@ supply 4.0 - attic - unvented + crawlspace - unvented 150.0 return 0.0 - attic - unvented + crawlspace - unvented 50.0 + 1 - 2700.0 + 1350.0 @@ -381,7 +393,7 @@ electricity storage water heater - living space + crawlspace - unvented 40.0 1.0 18767.0 @@ -428,7 +440,6 @@ living space electricity 3.73 - timer true 150.0 @@ -541,7 +552,7 @@ other kWh/year - 2457.0 + 1228.5 0.855 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-location-dallas-tx.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-location-dallas-tx.xml index c513911c..b37ca0c6 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-location-dallas-tx.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-location-dallas-tx.xml @@ -325,6 +325,7 @@ under slab 50.0 + 1 1350.0 @@ -382,7 +383,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-location-duluth-mn.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-location-duluth-mn.xml index 4bba2927..2d8a9a22 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-location-duluth-mn.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-location-duluth-mn.xml @@ -38,12 +38,12 @@ single-family detached - 2.0 + 1.0 1.0 3 2 - 2700.0 - 21600.0 + 1350.0 + 10800.0 @@ -68,7 +68,7 @@ ACH 3.0 - 21600.0 + 10800.0 @@ -84,12 +84,13 @@ - + - true + false + false @@ -112,14 +113,14 @@ outside - basement - conditioned + basement - unconditioned 116.0 wood siding 0.7 0.92 - 23.0 + 4.0 @@ -161,7 +162,7 @@ ground - basement - conditioned + basement - unconditioned 8.0 1200.0 8.0 @@ -170,10 +171,10 @@ continuous - exterior - 8.9 + 0.0 0.0 - 8.0 + 0.0 @@ -198,11 +199,21 @@ 39.3
+ + + basement - unconditioned + living space + 1350.0 + + + 18.7 + + - basement - conditioned + basement - unconditioned 1350.0 4.0 150.0 @@ -362,18 +373,19 @@ supply 4.0 - attic - unvented + basement - unconditioned 150.0 return 0.0 - attic - unvented + basement - unconditioned 50.0 + 1 - 2700.0 + 1350.0 @@ -381,7 +393,7 @@ electricity storage water heater - living space + basement - unconditioned 40.0 1.0 18767.0 @@ -414,7 +426,7 @@ - living space + basement - unconditioned 1.21 380.0 0.12 @@ -425,10 +437,9 @@ - living space + basement - unconditioned electricity 3.73 - timer true 150.0 @@ -436,7 +447,7 @@ - living space + basement - unconditioned 307.0 12 0.12 @@ -446,13 +457,13 @@ - living space + basement - unconditioned 650.0 true - living space + basement - unconditioned electricity false @@ -541,7 +552,7 @@ other kWh/year - 2457.0 + 1228.5 0.855 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-location-helena-mt.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-location-helena-mt.xml new file mode 100644 index 00000000..c7323438 --- /dev/null +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-location-helena-mt.xml @@ -0,0 +1,562 @@ + + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + + + + +
+ MT +
+
+ + proposed workscope + + + + + suburban + + electricity + natural gas + + + + 3.0 + + + single-family detached + 2.0 + 1.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 6B + + + + Helena, MT + + USA_MT_Helena.Rgnl.AP.727720_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + true + + + + + + + + attic - unvented + 1510.0 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 116.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + outside + attic - unvented + + + + 290.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + + + continuous - exterior + 8.9 + + 0.0 + 8.0 + + + + continuous - interior + 0.0 + + 0.0 + 0.0 + + + + + + + + + attic - unvented + living space + 1350.0 + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + 0.0 + 0.0 + + + + 0.0 + + + + + + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 0 + 4.4 + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + natural gas + 64000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 48000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + manual thermostat + 68.0 + 78.0 + + + + + + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + supply + 4.0 + attic - unvented + 150.0 + + + return + 0.0 + attic - unvented + 50.0 + + 2 + + + 2700.0 + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + + true + 150.0 + + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + exterior + 0.4 + + + + + + + garage + 0.4 + + + + + + + interior + 0.1 + + + + + + + exterior + 0.1 + + + + + + + garage + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.25 + + + + + + + garage + 0.25 + + + + + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + + TV other + + kWh/year + 620.0 + + + + +
+
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-location-honolulu-hi.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-location-honolulu-hi.xml new file mode 100644 index 00000000..bb11423f --- /dev/null +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-location-honolulu-hi.xml @@ -0,0 +1,516 @@ + + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + + + + +
+ HI +
+
+ + proposed workscope + + + + + suburban + + electricity + natural gas + + + + 3.0 + + + single-family detached + 1.0 + 1.0 + 3 + 2 + 1350.0 + 10800.0 + + + + + 2006 + 1A + + + + Honolulu, HI + + USA_HI_Honolulu.Intl.AP.911820_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 10800.0 + + + + + + + + false + + + false + + + + + + + + + + + + + + attic - unvented + 1510.0 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + outside + attic - unvented + + + + 290.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + attic - unvented + living space + 1350.0 + + + 39.3 + + + + + + + living space + 1350.0 + 4.0 + 150.0 + 0.0 + true + 0.0 + + + + 0.0 + + + + + + 5.0 + + + + 1.0 + 2.5 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 0 + 4.4 + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + natural gas + 64000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 48000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + manual thermostat + 68.0 + 78.0 + + + + + + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + supply + 4.0 + under slab + 150.0 + + + return + 0.0 + under slab + 50.0 + + 1 + + + 1350.0 + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + + true + 150.0 + + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + exterior + 0.4 + + + + + + + garage + 0.4 + + + + + + + interior + 0.1 + + + + + + + exterior + 0.1 + + + + + + + garage + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.25 + + + + + + + garage + 0.25 + + + + + + + + + other + + kWh/year + 1228.5 + + + 0.855 + 0.045 + + + + + TV other + + kWh/year + 620.0 + + + + +
+
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-location-miami-fl.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-location-miami-fl.xml index 544f8309..445484ae 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-location-miami-fl.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-location-miami-fl.xml @@ -325,6 +325,7 @@ under slab 50.0 + 1 1350.0 @@ -382,7 +383,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-location-phoenix-az.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-location-phoenix-az.xml new file mode 100644 index 00000000..b3f603d7 --- /dev/null +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-location-phoenix-az.xml @@ -0,0 +1,516 @@ + + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + + + + +
+ AZ +
+
+ + proposed workscope + + + + + suburban + + electricity + natural gas + + + + 3.0 + + + single-family detached + 1.0 + 1.0 + 3 + 2 + 1350.0 + 10800.0 + + + + + 2006 + 2B + + + + Phoenix, AZ + + USA_AZ_Phoenix-Sky.Harbor.Intl.AP.722780_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 10800.0 + + + + + + + + false + + + false + + + + + + + + + + + + + + attic - unvented + 1510.0 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + outside + attic - unvented + + + + 290.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + attic - unvented + living space + 1350.0 + + + 39.3 + + + + + + + living space + 1350.0 + 4.0 + 150.0 + 0.0 + true + 0.0 + + + + 0.0 + + + + + + 5.0 + + + + 1.0 + 2.5 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 0 + 4.4 + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + natural gas + 64000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 48000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + manual thermostat + 68.0 + 78.0 + + + + + + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + supply + 4.0 + under slab + 150.0 + + + return + 0.0 + under slab + 50.0 + + 1 + + + 1350.0 + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + + true + 150.0 + + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + exterior + 0.4 + + + + + + + garage + 0.4 + + + + + + + interior + 0.1 + + + + + + + exterior + 0.1 + + + + + + + garage + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.25 + + + + + + + garage + 0.25 + + + + + + + + + other + + kWh/year + 1228.5 + + + 0.855 + 0.045 + + + + + TV other + + kWh/year + 620.0 + + + + +
+
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-location-portland-or.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-location-portland-or.xml new file mode 100644 index 00000000..0f07fa57 --- /dev/null +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-location-portland-or.xml @@ -0,0 +1,576 @@ + + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + + + + +
+ OR +
+
+ + proposed workscope + + + + + suburban + + electricity + natural gas + + + + 3.0 + + + single-family detached + 1.0 + 1.0 + 3 + 2 + 1350.0 + 10800.0 + + + + + 2006 + 4C + + + + Portland, OR + + USA_OR_Portland.Intl.AP.726980_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 10800.0 + + + + + + + + false + + + false + + + + + + + + true + + + + SLA + 0.00667 + + + + + + + attic - unvented + 1510.0 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + crawlspace - vented + 116.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + outside + attic - unvented + + + + 290.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + crawlspace - vented + 4.0 + 600.0 + 8.0 + 3.0 + + + + continuous - exterior + 8.9 + + 0.0 + 4.0 + + + + continuous - interior + 0.0 + + 0.0 + 0.0 + + + + + + + + + attic - unvented + living space + 1350.0 + + + 39.3 + + + + + crawlspace - vented + living space + 1350.0 + + + 18.7 + + + + + + + crawlspace - vented + 1350.0 + 0.0 + 150.0 + 0.0 + 0.0 + + + + 0.0 + + + + + + 0.0 + + + + 0.0 + 2.5 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 0 + 4.4 + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + natural gas + 64000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 48000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + manual thermostat + 68.0 + 78.0 + + + + + + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + supply + 4.0 + crawlspace - vented + 150.0 + + + return + 0.0 + crawlspace - vented + 50.0 + + 1 + + + 1350.0 + + + + + + electricity + storage water heater + crawlspace - vented + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + + true + 150.0 + + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + exterior + 0.4 + + + + + + + garage + 0.4 + + + + + + + interior + 0.1 + + + + + + + exterior + 0.1 + + + + + + + garage + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.25 + + + + + + + garage + 0.25 + + + + + + + + + other + + kWh/year + 1228.5 + + + 0.855 + 0.045 + + + + + TV other + + kWh/year + 620.0 + + + + +
+
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-balanced.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-balanced.xml index 2dc7ab14..5db772bd 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-balanced.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-balanced.xml @@ -371,6 +371,7 @@ attic - unvented 50.0 + 2 2700.0 @@ -440,7 +441,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-bath-kitchen-fans.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-bath-kitchen-fans.xml index 99f8783b..475d722d 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-bath-kitchen-fans.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-bath-kitchen-fans.xml @@ -371,6 +371,7 @@ attic - unvented 50.0 + 2 2700.0 @@ -456,7 +457,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-cfis-dse.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-cfis-dse.xml index f4b2c2fe..54d9ecc2 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-cfis-dse.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-cfis-dse.xml @@ -413,7 +413,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-cfis-evap-cooler-only-ducted.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-cfis-evap-cooler-only-ducted.xml index cc27f5d9..434d797c 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-cfis-evap-cooler-only-ducted.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-cfis-evap-cooler-only-ducted.xml @@ -309,6 +309,7 @@ evaporative cooler electricity + 48000.0 1.0 @@ -330,12 +331,21 @@ to outside + + return + + CFM25 + 0.0 + to outside + + supply 4.0 attic - unvented 150.0 + 2 2700.0 @@ -406,7 +416,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-cfis.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-cfis.xml index 5b6ba55f..e0d2054c 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-cfis.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-cfis.xml @@ -371,6 +371,7 @@ attic - unvented 50.0 + 2 2700.0 @@ -441,7 +442,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-erv-atre-asre.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-erv-atre-asre.xml index b72059e4..1bf26bbf 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-erv-atre-asre.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-erv-atre-asre.xml @@ -371,6 +371,7 @@ attic - unvented 50.0 + 2 2700.0 @@ -442,7 +443,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-erv.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-erv.xml index dec7386b..55ed6049 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-erv.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-erv.xml @@ -371,6 +371,7 @@ attic - unvented 50.0 + 2 2700.0 @@ -442,7 +443,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-exhaust-rated-flow-rate.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-exhaust-rated-flow-rate.xml index 4f0a2ca2..a1fb5efe 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-exhaust-rated-flow-rate.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-exhaust-rated-flow-rate.xml @@ -371,6 +371,7 @@ attic - unvented 50.0 + 2 2700.0 @@ -440,7 +441,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-exhaust.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-exhaust.xml index cbedc1f6..e7dad544 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-exhaust.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-exhaust.xml @@ -371,6 +371,7 @@ attic - unvented 50.0 + 2 2700.0 @@ -440,7 +441,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-hrv-asre.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-hrv-asre.xml index 659f1c83..c927e5db 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-hrv-asre.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-hrv-asre.xml @@ -371,6 +371,7 @@ attic - unvented 50.0 + 2 2700.0 @@ -441,7 +442,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-hrv.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-hrv.xml index b12579c4..f90527c7 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-hrv.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-hrv.xml @@ -371,6 +371,7 @@ attic - unvented 50.0 + 2 2700.0 @@ -441,7 +442,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-multiple.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-multiple.xml index 494ed65f..072b3f26 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-multiple.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-multiple.xml @@ -399,6 +399,7 @@ attic - unvented 50.0 + 2 1350.0 @@ -435,6 +436,7 @@ attic - unvented 50.0 + 2 1350.0 @@ -660,7 +662,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-supply.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-supply.xml index 2ceb9b15..1e60e5c5 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-supply.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-supply.xml @@ -371,6 +371,7 @@ attic - unvented 50.0 + 2 2700.0 @@ -440,7 +441,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-whole-house-fan.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-whole-house-fan.xml index 3c60a97d..e9fa01c8 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-whole-house-fan.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-whole-house-fan.xml @@ -371,6 +371,7 @@ attic - unvented 50.0 + 2 2700.0 @@ -438,7 +439,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-defaults.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-defaults.xml index d690649f..8a39ed2b 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-defaults.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-defaults.xml @@ -295,6 +295,7 @@ return 0.0 + 2 2700.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-generators.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-generators.xml index e199083d..932e0d21 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-generators.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-generators.xml @@ -371,6 +371,7 @@ attic - unvented 50.0 + 2 2700.0 @@ -444,7 +445,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-loads-large-uncommon.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-loads-large-uncommon.xml index e2f22d73..d7573278 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-loads-large-uncommon.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-loads-large-uncommon.xml @@ -371,6 +371,7 @@ attic - unvented 50.0 + 2 2700.0 @@ -428,7 +429,6 @@ living space electricity 3.73 - timer true 150.0 @@ -588,9 +588,11 @@ + unknown + unknown kWh/year 2700.0 @@ -620,9 +622,11 @@ + unknown + unknown kWh/year 1000.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-loads-large-uncommon2.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-loads-large-uncommon2.xml index a89288c5..6876fb75 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-loads-large-uncommon2.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-loads-large-uncommon2.xml @@ -371,6 +371,7 @@ attic - unvented 50.0 + 2 2700.0 @@ -428,7 +429,6 @@ living space electricity 3.73 - timer true 150.0 @@ -588,9 +588,11 @@ + unknown + unknown kWh/year 2700.0 @@ -602,14 +604,20 @@ + + + none + + unknown + unknown kWh/year 1000.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-loads-none.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-loads-none.xml index 612d2958..a7915dd2 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-loads-none.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-loads-none.xml @@ -371,6 +371,7 @@ attic - unvented 50.0 + 2 2700.0 @@ -428,7 +429,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-neighbor-shading.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-neighbor-shading.xml index 285f1efe..be32416e 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-neighbor-shading.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-neighbor-shading.xml @@ -384,6 +384,7 @@ attic - unvented 50.0 + 2 2700.0 @@ -441,7 +442,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-shielding-of-home.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-shielding-of-home.xml new file mode 100644 index 00000000..1b92e589 --- /dev/null +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-shielding-of-home.xml @@ -0,0 +1,563 @@ + + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + well-shielded + + electricity + natural gas + + + + 3.0 + + + single-family detached + 2.0 + 1.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + Denver, CO + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + true + + + + + + + + attic - unvented + 1510.0 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 116.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + outside + attic - unvented + + + + 290.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + + + continuous - exterior + 8.9 + + 0.0 + 8.0 + + + + continuous - interior + 0.0 + + 0.0 + 0.0 + + + + + + + + + attic - unvented + living space + 1350.0 + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + 0.0 + 0.0 + + + + 0.0 + + + + + + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 0 + 4.4 + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + natural gas + 64000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 48000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + manual thermostat + 68.0 + 78.0 + + + + + + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + supply + 4.0 + attic - unvented + 150.0 + + + return + 0.0 + attic - unvented + 50.0 + + 2 + + + 2700.0 + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + + true + 150.0 + + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + exterior + 0.4 + + + + + + + garage + 0.4 + + + + + + + interior + 0.1 + + + + + + + exterior + 0.1 + + + + + + + garage + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.25 + + + + + + + garage + 0.25 + + + + + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + + TV other + + kWh/year + 620.0 + + + + +
+
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-usage-multiplier.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-usage-multiplier.xml index ca0f010f..c4cc7dec 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-usage-multiplier.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-usage-multiplier.xml @@ -371,6 +371,7 @@ attic - unvented 50.0 + 2 2700.0 @@ -434,7 +435,6 @@ living space electricity 3.73 - timer 0.9 true @@ -581,9 +581,11 @@ + unknown + unknown kWh/year 2700.0 @@ -615,9 +617,11 @@ + unknown + unknown kWh/year 1000.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-multiple-buildings.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-multiple-buildings.xml new file mode 100644 index 00000000..e33b16b5 --- /dev/null +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-multiple-buildings.xml @@ -0,0 +1,1654 @@ + + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + + electricity + natural gas + + + + 3.0 + + + single-family detached + 2.0 + 1.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + Denver, CO + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + true + + + + + + + + attic - unvented + 1510.0 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 116.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + outside + attic - unvented + + + + 290.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + + + continuous - exterior + 8.9 + + 0.0 + 8.0 + + + + continuous - interior + 0.0 + + 0.0 + 0.0 + + + + + + + + + attic - unvented + living space + 1350.0 + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + 0.0 + 0.0 + + + + 0.0 + + + + + + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 0 + 4.4 + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + natural gas + 64000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 48000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + manual thermostat + 68.0 + 78.0 + + + + + + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + supply + 4.0 + attic - unvented + 150.0 + + + return + 0.0 + attic - unvented + 50.0 + + 2 + + + 2700.0 + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + + true + 150.0 + + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + exterior + 0.4 + + + + + + + garage + 0.4 + + + + + + + interior + 0.1 + + + + + + + exterior + 0.1 + + + + + + + garage + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.25 + + + + + + + garage + 0.25 + + + + + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + + TV other + + kWh/year + 620.0 + + + + +
+ + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + + electricity + natural gas + + + + 3.0 + + + single-family detached + 2.0 + 1.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + Denver, CO + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + true + + + + + + + + attic - unvented + 1510.0 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 116.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + outside + attic - unvented + + + + 290.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + + + continuous - exterior + 8.9 + + 0.0 + 8.0 + + + + continuous - interior + 0.0 + + 0.0 + 0.0 + + + + + + + + + attic - unvented + living space + 1350.0 + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + 0.0 + 0.0 + + + + 0.0 + + + + + + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 0 + 4.4 + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + natural gas + 64000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 48000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + manual thermostat + 68.0 + 78.0 + + + + + + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + supply + 4.0 + attic - unvented + 150.0 + + + return + 0.0 + attic - unvented + 50.0 + + 2 + + + 2700.0 + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + + true + 150.0 + + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + exterior + 0.4 + + + + + + + garage + 0.4 + + + + + + + interior + 0.1 + + + + + + + exterior + 0.1 + + + + + + + garage + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.25 + + + + + + + garage + 0.25 + + + + + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + + TV other + + kWh/year + 620.0 + + + + +
+ + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + + electricity + natural gas + + + + 3.0 + + + single-family detached + 2.0 + 1.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + Denver, CO + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + true + + + + + + + + attic - unvented + 1510.0 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 116.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + outside + attic - unvented + + + + 290.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + + + continuous - exterior + 8.9 + + 0.0 + 8.0 + + + + continuous - interior + 0.0 + + 0.0 + 0.0 + + + + + + + + + attic - unvented + living space + 1350.0 + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + 0.0 + 0.0 + + + + 0.0 + + + + + + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 0 + 4.4 + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + natural gas + 64000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 48000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + manual thermostat + 68.0 + 78.0 + + + + + + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + supply + 4.0 + attic - unvented + 150.0 + + + return + 0.0 + attic - unvented + 50.0 + + 2 + + + 2700.0 + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + + true + 150.0 + + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + exterior + 0.4 + + + + + + + garage + 0.4 + + + + + + + interior + 0.1 + + + + + + + exterior + 0.1 + + + + + + + garage + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.25 + + + + + + + garage + 0.25 + + + + + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + + TV other + + kWh/year + 620.0 + + + + +
+
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-pv.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-pv.xml index 7c89bd1c..047e473a 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-pv.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-pv.xml @@ -371,6 +371,7 @@ attic - unvented 50.0 + 2 2700.0 @@ -452,7 +453,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-schedules-stochastic-vacant.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-schedules-stochastic-vacant.xml new file mode 100644 index 00000000..e976e05e --- /dev/null +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-schedules-stochastic-vacant.xml @@ -0,0 +1,563 @@ + + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + BuildResidentialHPXML/tests/schedules/vacant.csv + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + + electricity + natural gas + + + + 3.0 + + + single-family detached + 2.0 + 1.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + Denver, CO + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + true + + + + + + + + attic - unvented + 1510.0 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 116.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + outside + attic - unvented + + + + 290.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + + + continuous - exterior + 8.9 + + 0.0 + 8.0 + + + + continuous - interior + 0.0 + + 0.0 + 0.0 + + + + + + + + + attic - unvented + living space + 1350.0 + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + 0.0 + 0.0 + + + + 0.0 + + + + + + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 0 + 4.4 + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + natural gas + 64000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 48000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + manual thermostat + 68.0 + 78.0 + + + + + + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + supply + 4.0 + attic - unvented + 150.0 + + + return + 0.0 + attic - unvented + 50.0 + + 2 + + + 2700.0 + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + + true + 150.0 + + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + exterior + 0.4 + + + + + + + garage + 0.4 + + + + + + + interior + 0.1 + + + + + + + exterior + 0.1 + + + + + + + garage + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.25 + + + + + + + garage + 0.25 + + + + + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + + TV other + + kWh/year + 620.0 + + + + +
+
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-schedules-stochastic.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-schedules-stochastic.xml index d71e71f0..9a4e5837 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-schedules-stochastic.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-schedules-stochastic.xml @@ -372,6 +372,7 @@ attic - unvented 50.0 + 2 2700.0 @@ -429,7 +430,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-schedules-user-specified.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-schedules-user-specified.xml index 007809c2..8fffa7bd 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-schedules-user-specified.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-schedules-user-specified.xml @@ -372,6 +372,7 @@ attic - unvented 50.0 + 2 2700.0 @@ -429,7 +430,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-simcontrol-calendar-year-custom.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-simcontrol-calendar-year-custom.xml index af68d4d5..073fc3aa 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-simcontrol-calendar-year-custom.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-simcontrol-calendar-year-custom.xml @@ -372,6 +372,7 @@ attic - unvented 50.0 + 2 2700.0 @@ -429,7 +430,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-simcontrol-daylight-saving-custom.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-simcontrol-daylight-saving-custom.xml index 9d228d9e..5e81c9d3 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-simcontrol-daylight-saving-custom.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-simcontrol-daylight-saving-custom.xml @@ -378,6 +378,7 @@ attic - unvented 50.0 + 2 2700.0 @@ -435,7 +436,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-simcontrol-daylight-saving-disabled.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-simcontrol-daylight-saving-disabled.xml index 12fbf556..b0301425 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-simcontrol-daylight-saving-disabled.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-simcontrol-daylight-saving-disabled.xml @@ -374,6 +374,7 @@ attic - unvented 50.0 + 2 2700.0 @@ -431,7 +432,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-simcontrol-runperiod-1-month.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-simcontrol-runperiod-1-month.xml index 4a65b391..677a00c0 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-simcontrol-runperiod-1-month.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-simcontrol-runperiod-1-month.xml @@ -375,6 +375,7 @@ attic - unvented 50.0 + 2 2700.0 @@ -432,7 +433,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-simcontrol-timestep-10-mins.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-simcontrol-timestep-10-mins.xml index d926f3f9..7d5833db 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-simcontrol-timestep-10-mins.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-simcontrol-timestep-10-mins.xml @@ -371,6 +371,7 @@ attic - unvented 50.0 + 2 2700.0 @@ -428,7 +429,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base.xml index a29f1b16..d405d6a2 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base.xml @@ -371,6 +371,7 @@ attic - unvented 50.0 + 2 2700.0 @@ -428,7 +429,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/boiler-invalid-afue.xml b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/boiler-invalid-afue.xml new file mode 100644 index 00000000..e49a3cc5 --- /dev/null +++ b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/boiler-invalid-afue.xml @@ -0,0 +1,519 @@ + + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + + electricity + natural gas + + + + 3.0 + + + single-family detached + 2.0 + 1.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + Denver, CO + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + true + + + + + + + + attic - unvented + 1510.0 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 116.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + outside + attic - unvented + + + + 290.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + + + continuous - exterior + 8.9 + + 0.0 + 8.0 + + + + continuous - interior + 0.0 + + 0.0 + 0.0 + + + + + + + + + attic - unvented + living space + 1350.0 + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + 0.0 + 0.0 + + + + 0.0 + + + + + + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 0 + 4.4 + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + fuel oil + 64000.0 + + AFUE + 92.0 + + 1.0 + + + + + manual thermostat + 68.0 + 78.0 + + + + + + baseboard + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + + true + 150.0 + + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + exterior + 0.4 + + + + + + + garage + 0.4 + + + + + + + interior + 0.1 + + + + + + + exterior + 0.1 + + + + + + + garage + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.25 + + + + + + + garage + 0.25 + + + + + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + + TV other + + kWh/year + 620.0 + + + + +
+
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/cfis-with-hydronic-distribution.xml b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/cfis-with-hydronic-distribution.xml index 4a3c85dc..b4b14549 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/cfis-with-hydronic-distribution.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/cfis-with-hydronic-distribution.xml @@ -400,7 +400,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/clothes-dryer-location.xml b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/clothes-dryer-location.xml index 0aa3b53d..e16b0a4c 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/clothes-dryer-location.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/clothes-dryer-location.xml @@ -371,6 +371,7 @@ attic - unvented 50.0 + 2 2700.0 @@ -428,7 +429,6 @@ garage electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/clothes-washer-location.xml b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/clothes-washer-location.xml index 5755d03d..b5c9ad87 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/clothes-washer-location.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/clothes-washer-location.xml @@ -371,6 +371,7 @@ attic - unvented 50.0 + 2 2700.0 @@ -428,7 +429,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/cooking-range-location.xml b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/cooking-range-location.xml index adee32d8..26c22e91 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/cooking-range-location.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/cooking-range-location.xml @@ -371,6 +371,7 @@ attic - unvented 50.0 + 2 2700.0 @@ -428,7 +429,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/dehumidifier-fraction-served.xml b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/dehumidifier-fraction-served.xml new file mode 100644 index 00000000..59b7aaea --- /dev/null +++ b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/dehumidifier-fraction-served.xml @@ -0,0 +1,534 @@ + + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + + + + +
+ TX +
+
+ + proposed workscope + + + + + suburban + + electricity + natural gas + + + + 3.0 + + + single-family detached + 1.0 + 1.0 + 3 + 2 + 1350.0 + 10800.0 + + + + + 2006 + 3A + + + + Dallas, TX + + USA_TX_Dallas-Fort.Worth.Intl.AP.722590_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 10800.0 + + + + + + + + false + + + false + + + + + + + + + + + + + + attic - unvented + 1510.0 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + outside + attic - unvented + + + + 290.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + attic - unvented + living space + 1350.0 + + + 39.3 + + + + + + + living space + 1350.0 + 4.0 + 150.0 + 0.0 + true + 0.0 + + + + 0.0 + + + + + + 5.0 + + + + 1.0 + 2.5 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 0 + 4.4 + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + natural gas + 64000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 48000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + manual thermostat + 68.0 + 78.0 + + + + + + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + supply + 4.0 + under slab + 150.0 + + + return + 0.0 + under slab + 50.0 + + 1 + + + 1350.0 + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + + true + 150.0 + + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + portable + living space + 40.0 + 1.8 + 0.5 + 0.5 + + + + portable + living space + 30.0 + 1.6 + 0.5 + 0.6 + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + exterior + 0.4 + + + + + + + garage + 0.4 + + + + + + + interior + 0.1 + + + + + + + exterior + 0.1 + + + + + + + garage + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.25 + + + + + + + garage + 0.25 + + + + + + + + + other + + kWh/year + 1228.5 + + + 0.855 + 0.045 + + + + + TV other + + kWh/year + 620.0 + + + + +
+
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/dehumidifier-setpoints.xml b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/dehumidifier-setpoints.xml new file mode 100644 index 00000000..9343aa0f --- /dev/null +++ b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/dehumidifier-setpoints.xml @@ -0,0 +1,534 @@ + + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + + + + +
+ TX +
+
+ + proposed workscope + + + + + suburban + + electricity + natural gas + + + + 3.0 + + + single-family detached + 1.0 + 1.0 + 3 + 2 + 1350.0 + 10800.0 + + + + + 2006 + 3A + + + + Dallas, TX + + USA_TX_Dallas-Fort.Worth.Intl.AP.722590_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 10800.0 + + + + + + + + false + + + false + + + + + + + + + + + + + + attic - unvented + 1510.0 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + outside + attic - unvented + + + + 290.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + attic - unvented + living space + 1350.0 + + + 39.3 + + + + + + + living space + 1350.0 + 4.0 + 150.0 + 0.0 + true + 0.0 + + + + 0.0 + + + + + + 5.0 + + + + 1.0 + 2.5 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 0 + 4.4 + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + natural gas + 64000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 48000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + manual thermostat + 68.0 + 78.0 + + + + + + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + supply + 4.0 + under slab + 150.0 + + + return + 0.0 + under slab + 50.0 + + 1 + + + 1350.0 + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + + true + 150.0 + + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + portable + living space + 40.0 + 1.8 + 0.5 + 0.5 + + + + portable + living space + 30.0 + 1.6 + 0.55 + 0.25 + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + exterior + 0.4 + + + + + + + garage + 0.4 + + + + + + + interior + 0.1 + + + + + + + exterior + 0.1 + + + + + + + garage + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.25 + + + + + + + garage + 0.25 + + + + + + + + + other + + kWh/year + 1228.5 + + + 0.855 + 0.045 + + + + + TV other + + kWh/year + 620.0 + + + + +
+
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/dhw-frac-load-served.xml b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/dhw-frac-load-served.xml index 66505cda..f44d5b6f 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/dhw-frac-load-served.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/dhw-frac-load-served.xml @@ -443,7 +443,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/dhw-invalid-ef-tank.xml b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/dhw-invalid-ef-tank.xml index 5e536453..a9aab180 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/dhw-invalid-ef-tank.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/dhw-invalid-ef-tank.xml @@ -371,6 +371,7 @@ attic - unvented 50.0 + 2 2700.0 @@ -428,7 +429,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/dhw-invalid-uef-tank-heat-pump.xml b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/dhw-invalid-uef-tank-heat-pump.xml index 1b7adacf..61e60cda 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/dhw-invalid-uef-tank-heat-pump.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/dhw-invalid-uef-tank-heat-pump.xml @@ -371,6 +371,7 @@ attic - unvented 50.0 + 2 2700.0 @@ -429,7 +430,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/dishwasher-location.xml b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/dishwasher-location.xml index 99e5e00b..d97aa271 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/dishwasher-location.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/dishwasher-location.xml @@ -371,6 +371,7 @@ attic - unvented 50.0 + 2 2700.0 @@ -428,7 +429,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/duct-leakage-cfm25.xml b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/duct-leakage-cfm25.xml new file mode 100644 index 00000000..35c3b0b8 --- /dev/null +++ b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/duct-leakage-cfm25.xml @@ -0,0 +1,562 @@ + + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + + electricity + natural gas + + + + 3.0 + + + single-family detached + 2.0 + 1.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + Denver, CO + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + true + + + + + + + + attic - unvented + 1510.0 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 116.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + outside + attic - unvented + + + + 290.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + + + continuous - exterior + 8.9 + + 0.0 + 8.0 + + + + continuous - interior + 0.0 + + 0.0 + 0.0 + + + + + + + + + attic - unvented + living space + 1350.0 + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + 0.0 + 0.0 + + + + 0.0 + + + + + + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 0 + 4.4 + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + natural gas + 64000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 48000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + manual thermostat + 68.0 + 78.0 + + + + + + + supply + + CFM25 + -2.0 + to outside + + + + return + + CFM25 + -2.0 + to outside + + + + supply + 4.0 + attic - unvented + 150.0 + + + return + 0.0 + attic - unvented + 50.0 + + 2 + + + 2700.0 + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + + true + 150.0 + + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + exterior + 0.4 + + + + + + + garage + 0.4 + + + + + + + interior + 0.1 + + + + + + + exterior + 0.1 + + + + + + + garage + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.25 + + + + + + + garage + 0.25 + + + + + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + + TV other + + kWh/year + 620.0 + + + + +
+
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/duct-leakage-percent.xml b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/duct-leakage-percent.xml new file mode 100644 index 00000000..5817353b --- /dev/null +++ b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/duct-leakage-percent.xml @@ -0,0 +1,562 @@ + + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + + electricity + natural gas + + + + 3.0 + + + single-family detached + 2.0 + 1.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + Denver, CO + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + true + + + + + + + + attic - unvented + 1510.0 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 116.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + outside + attic - unvented + + + + 290.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + + + continuous - exterior + 8.9 + + 0.0 + 8.0 + + + + continuous - interior + 0.0 + + 0.0 + 0.0 + + + + + + + + + attic - unvented + living space + 1350.0 + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + 0.0 + 0.0 + + + + 0.0 + + + + + + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 0 + 4.4 + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + natural gas + 64000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 48000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + manual thermostat + 68.0 + 78.0 + + + + + + + supply + + Percent + 75.0 + to outside + + + + return + + Percent + 25.0 + to outside + + + + supply + 4.0 + attic - unvented + 150.0 + + + return + 0.0 + attic - unvented + 50.0 + + 2 + + + 2700.0 + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + + true + 150.0 + + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + exterior + 0.4 + + + + + + + garage + 0.4 + + + + + + + interior + 0.1 + + + + + + + exterior + 0.1 + + + + + + + garage + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.25 + + + + + + + garage + 0.25 + + + + + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + + TV other + + kWh/year + 620.0 + + + + +
+
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/duct-location-unconditioned-space.xml b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/duct-location-unconditioned-space.xml index d1a5e115..5358b8af 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/duct-location-unconditioned-space.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/duct-location-unconditioned-space.xml @@ -371,6 +371,7 @@ unconditioned space 50.0 + 2 2700.0 @@ -428,7 +429,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/duct-location.xml b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/duct-location.xml index 9b5e0f22..83d5b962 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/duct-location.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/duct-location.xml @@ -371,6 +371,7 @@ garage 50.0 + 2 2700.0 @@ -428,7 +429,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/duplicate-id.xml b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/duplicate-id.xml index 29ea7be5..91b6454e 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/duplicate-id.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/duplicate-id.xml @@ -371,6 +371,7 @@ attic - unvented 50.0 + 2 2700.0 @@ -428,7 +429,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/enclosure-attic-missing-roof.xml b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/enclosure-attic-missing-roof.xml index 4f9f48c5..487092f7 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/enclosure-attic-missing-roof.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/enclosure-attic-missing-roof.xml @@ -355,6 +355,7 @@ attic - unvented 50.0 + 2 2700.0 @@ -412,7 +413,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/enclosure-basement-missing-exterior-foundation-wall.xml b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/enclosure-basement-missing-exterior-foundation-wall.xml index a67d3903..eb329f14 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/enclosure-basement-missing-exterior-foundation-wall.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/enclosure-basement-missing-exterior-foundation-wall.xml @@ -120,7 +120,7 @@ 0.92 - 2.3 + 4.0 @@ -352,6 +352,7 @@ basement - unconditioned 50.0 + 1 1350.0 @@ -409,7 +410,6 @@ basement - unconditioned electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/enclosure-basement-missing-slab.xml b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/enclosure-basement-missing-slab.xml index a5d54b79..10ef25a6 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/enclosure-basement-missing-slab.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/enclosure-basement-missing-slab.xml @@ -120,7 +120,7 @@ 0.92 - 2.3 + 4.0 @@ -355,6 +355,7 @@ basement - unconditioned 50.0 + 1 1350.0 @@ -412,7 +413,6 @@ basement - unconditioned electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/enclosure-floor-area-exceeds-cfa.xml b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/enclosure-floor-area-exceeds-cfa.xml index 7f6da316..e1e5a1f2 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/enclosure-floor-area-exceeds-cfa.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/enclosure-floor-area-exceeds-cfa.xml @@ -42,7 +42,7 @@ 1.0 3 2 - 540.0 + 1348.8 21600.0 @@ -371,9 +371,10 @@ attic - unvented 50.0 + 2 - 540.0 + 1348.8 @@ -428,7 +429,6 @@ living space electricity 3.73 - timer true 150.0 @@ -541,7 +541,7 @@ other kWh/year - 491.40000000000003 + 1227.408 0.855 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/enclosure-floor-area-exceeds-cfa2.xml b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/enclosure-floor-area-exceeds-cfa2.xml new file mode 100644 index 00000000..7b5f7b43 --- /dev/null +++ b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/enclosure-floor-area-exceeds-cfa2.xml @@ -0,0 +1,447 @@ + + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + + electricity + natural gas + + + + 3.0 + + + apartment unit + 1.0 + 1.0 + 3 + 2 + 898.8 + 7200.0 + + + + + 2006 + 5B + + + + Denver, CO + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 7200.0 + + + + + + outside + living space + + + + 686.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + other housing unit + living space + + + + 294.0 + 0.7 + 0.92 + + + 4.0 + + + + + + + other housing unit + living space + 900.0 + + + 2.1 + + + below + + + + + other housing unit + living space + 900.0 + + + 2.1 + + + above + + + + + + + 35.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 35.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 53.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 20.0 + 180 + 4.4 + + + + + + + + + + + + + natural gas + 64000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 48000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + manual thermostat + 68.0 + 78.0 + + + + + + + supply + + CFM25 + 0.0 + to outside + + + + return + + CFM25 + 0.0 + to outside + + + + supply + 0.0 + living space + 150.0 + + + return + 0.0 + living space + 50.0 + + 1 + + + 898.8 + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + + true + 150.0 + + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + exterior + 0.4 + + + + + + + garage + 0.4 + + + + + + + interior + 0.1 + + + + + + + exterior + 0.1 + + + + + + + garage + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.25 + + + + + + + garage + 0.25 + + + + + + + + + other + + kWh/year + 817.908 + + + 0.855 + 0.045 + + + + + TV other + + kWh/year + 620.0 + + + + +
+
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/enclosure-garage-missing-exterior-wall.xml b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/enclosure-garage-missing-exterior-wall.xml index ab558e04..2120ae12 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/enclosure-garage-missing-exterior-wall.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/enclosure-garage-missing-exterior-wall.xml @@ -422,6 +422,7 @@ garage 50.0 + 2 2700.0 @@ -479,7 +480,6 @@ garage electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/enclosure-garage-missing-roof-ceiling.xml b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/enclosure-garage-missing-roof-ceiling.xml index 63c8f8fd..dce28fbe 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/enclosure-garage-missing-roof-ceiling.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/enclosure-garage-missing-roof-ceiling.xml @@ -435,6 +435,7 @@ garage 50.0 + 2 2700.0 @@ -492,7 +493,6 @@ garage electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/enclosure-garage-missing-slab.xml b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/enclosure-garage-missing-slab.xml index 0a3fe828..b34ef4d0 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/enclosure-garage-missing-slab.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/enclosure-garage-missing-slab.xml @@ -419,6 +419,7 @@ garage 50.0 + 2 2700.0 @@ -476,7 +477,6 @@ garage electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/enclosure-living-missing-ceiling-roof.xml b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/enclosure-living-missing-ceiling-roof.xml index 65e339fd..1adf16fb 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/enclosure-living-missing-ceiling-roof.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/enclosure-living-missing-ceiling-roof.xml @@ -359,6 +359,7 @@ attic - unvented 50.0 + 2 2700.0 @@ -416,7 +417,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/enclosure-living-missing-exterior-wall.xml b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/enclosure-living-missing-exterior-wall.xml index 3c70c161..d624f088 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/enclosure-living-missing-exterior-wall.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/enclosure-living-missing-exterior-wall.xml @@ -281,6 +281,7 @@ attic - unvented 50.0 + 2 2700.0 @@ -338,7 +339,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/enclosure-living-missing-floor-slab.xml b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/enclosure-living-missing-floor-slab.xml index d5554970..68c70eb0 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/enclosure-living-missing-floor-slab.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/enclosure-living-missing-floor-slab.xml @@ -38,12 +38,12 @@ single-family detached - 2.0 + 1.0 1.0 3 2 - 2700.0 - 21600.0 + 1350.0 + 10800.0 @@ -68,7 +68,7 @@ ACH 3.0 - 21600.0 + 10800.0 @@ -84,11 +84,9 @@ - + - - true - + @@ -108,21 +106,6 @@ - - - - outside - basement - conditioned - 116.0 - wood siding - 0.7 - 0.92 - - - 23.0 - - - @@ -157,36 +140,6 @@ - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - - - continuous - exterior - 8.9 - - 0.0 - 8.0 - - - - continuous - interior - 0.0 - - 0.0 - 0.0 - - - - - @@ -335,18 +288,19 @@ supply 4.0 - attic - unvented + under slab 150.0 return 0.0 - attic - unvented + under slab 50.0 + 1 - 2700.0 + 1350.0 @@ -401,7 +355,6 @@ living space electricity 3.73 - timer true 150.0 @@ -514,7 +467,7 @@ other kWh/year - 2457.0 + 1228.5 0.855 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/frac-sensible-fuel-load.xml b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/frac-sensible-fuel-load.xml new file mode 100644 index 00000000..62cf67de --- /dev/null +++ b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/frac-sensible-fuel-load.xml @@ -0,0 +1,759 @@ + + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + + electricity + natural gas + + + + 3.0 + + + single-family detached + 2.0 + 1.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + Denver, CO + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + true + + + + + + + + attic - unvented + 1510.0 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 116.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + outside + attic - unvented + + + + 290.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + + + continuous - exterior + 8.9 + + 0.0 + 8.0 + + + + continuous - interior + 0.0 + + 0.0 + 0.0 + + + + + + + + + attic - unvented + living space + 1350.0 + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + 0.0 + 0.0 + + + + 0.0 + + + + + + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 0 + 4.4 + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + natural gas + 64000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 48000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + manual thermostat + 68.0 + 78.0 + + + + + + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + supply + 4.0 + attic - unvented + 150.0 + + + return + 0.0 + attic - unvented + 50.0 + + 2 + + + 2700.0 + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + + true + 150.0 + + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + 0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041 + 0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041 + 0.837, 0.835, 1.084, 1.084, 1.084, 1.096, 1.096, 1.096, 1.096, 0.931, 0.925, 0.837 + + + + + 700.0 + false + + 0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041 + 0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041 + 0.837, 0.835, 1.084, 1.084, 1.084, 1.096, 1.096, 1.096, 1.096, 0.931, 0.925, 0.837 + + + + + 800.0 + false + + 0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041 + 0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041 + 0.837, 0.835, 1.084, 1.084, 1.084, 1.096, 1.096, 1.096, 1.096, 0.931, 0.925, 0.837 + + + + + living space + 300.0 + + 0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041 + 0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041 + 0.837, 0.835, 1.084, 1.084, 1.084, 1.096, 1.096, 1.096, 1.096, 0.931, 0.925, 0.837 + + + + + living space + 400.0 + + 0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041 + 0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041 + 0.837, 0.835, 1.084, 1.084, 1.084, 1.096, 1.096, 1.096, 1.096, 0.931, 0.925, 0.837 + + + + + living space + electricity + false + + 0.007, 0.007, 0.004, 0.004, 0.007, 0.011, 0.025, 0.042, 0.046, 0.048, 0.042, 0.050, 0.057, 0.046, 0.057, 0.044, 0.092, 0.150, 0.117, 0.060, 0.035, 0.025, 0.016, 0.011 + 0.007, 0.007, 0.004, 0.004, 0.007, 0.011, 0.025, 0.042, 0.046, 0.048, 0.042, 0.050, 0.057, 0.046, 0.057, 0.044, 0.092, 0.150, 0.117, 0.060, 0.035, 0.025, 0.016, 0.011 + 1.097, 1.097, 0.991, 0.987, 0.991, 0.890, 0.896, 0.896, 0.890, 1.085, 1.085, 1.097 + + + + + false + + + + + + interior + 0.4 + + + + + + + exterior + 0.4 + + + + + + + garage + 0.4 + + + + + + + interior + 0.1 + + + + + + + exterior + 0.1 + + + + + + + garage + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.25 + + + + + + + garage + 0.25 + + + + + + + + + unknown + + + + unknown + + kWh/year + 2700.0 + + + 0.003, 0.003, 0.003, 0.004, 0.008, 0.015, 0.026, 0.044, 0.084, 0.121, 0.127, 0.121, 0.120, 0.090, 0.075, 0.061, 0.037, 0.023, 0.013, 0.008, 0.004, 0.003, 0.003, 0.003 + 0.003, 0.003, 0.003, 0.004, 0.008, 0.015, 0.026, 0.044, 0.084, 0.121, 0.127, 0.121, 0.120, 0.090, 0.075, 0.061, 0.037, 0.023, 0.013, 0.008, 0.004, 0.003, 0.003, 0.003 + 1.154, 1.161, 1.013, 1.010, 1.013, 0.888, 0.883, 0.883, 0.888, 0.978, 0.974, 1.154 + + + + + + gas fired + + therm/year + 500.0 + + + 0.003, 0.003, 0.003, 0.004, 0.008, 0.015, 0.026, 0.044, 0.084, 0.121, 0.127, 0.121, 0.120, 0.090, 0.075, 0.061, 0.037, 0.023, 0.013, 0.008, 0.004, 0.003, 0.003, 0.003 + 0.003, 0.003, 0.003, 0.004, 0.008, 0.015, 0.026, 0.044, 0.084, 0.121, 0.127, 0.121, 0.120, 0.090, 0.075, 0.061, 0.037, 0.023, 0.013, 0.008, 0.004, 0.003, 0.003, 0.003 + 1.154, 1.161, 1.013, 1.010, 1.013, 0.888, 0.883, 0.883, 0.888, 0.978, 0.974, 1.154 + + + + + + + + unknown + + + + unknown + + kWh/year + 1000.0 + + + 0.024, 0.029, 0.024, 0.029, 0.047, 0.067, 0.057, 0.024, 0.024, 0.019, 0.015, 0.014, 0.014, 0.014, 0.024, 0.058, 0.126, 0.122, 0.068, 0.061, 0.051, 0.043, 0.024, 0.024 + 0.024, 0.029, 0.024, 0.029, 0.047, 0.067, 0.057, 0.024, 0.024, 0.019, 0.015, 0.014, 0.014, 0.014, 0.024, 0.058, 0.126, 0.122, 0.068, 0.061, 0.051, 0.043, 0.024, 0.024 + 0.837, 0.835, 1.084, 1.084, 1.084, 1.096, 1.096, 1.096, 1.096, 0.931, 0.925, 0.837 + + + + + + electric resistance + + kWh/year + 1300.0 + + + 0.024, 0.029, 0.024, 0.029, 0.047, 0.067, 0.057, 0.024, 0.024, 0.019, 0.015, 0.014, 0.014, 0.014, 0.024, 0.058, 0.126, 0.122, 0.068, 0.061, 0.051, 0.043, 0.024, 0.024 + 0.024, 0.029, 0.024, 0.029, 0.047, 0.067, 0.057, 0.024, 0.024, 0.019, 0.015, 0.014, 0.014, 0.014, 0.024, 0.058, 0.126, 0.122, 0.068, 0.061, 0.051, 0.043, 0.024, 0.024 + 0.921, 0.928, 0.921, 0.915, 0.921, 1.160, 1.158, 1.158, 1.160, 0.921, 0.915, 0.921 + + + + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + 0.035, 0.033, 0.032, 0.031, 0.032, 0.033, 0.037, 0.042, 0.043, 0.043, 0.043, 0.044, 0.045, 0.045, 0.044, 0.046, 0.048, 0.052, 0.053, 0.05, 0.047, 0.045, 0.04, 0.036 + 0.035, 0.033, 0.032, 0.031, 0.032, 0.033, 0.037, 0.042, 0.043, 0.043, 0.043, 0.044, 0.045, 0.045, 0.044, 0.046, 0.048, 0.052, 0.053, 0.05, 0.047, 0.045, 0.04, 0.036 + 1.248, 1.257, 0.993, 0.989, 0.993, 0.827, 0.821, 0.821, 0.827, 0.99, 0.987, 1.248 + + + + + TV other + + kWh/year + 620.0 + + + 0.045, 0.019, 0.01, 0.001, 0.001, 0.001, 0.005, 0.009, 0.018, 0.026, 0.032, 0.038, 0.04, 0.041, 0.043, 0.045, 0.05, 0.055, 0.07, 0.085, 0.097, 0.108, 0.089, 0.07 + 0.045, 0.019, 0.01, 0.001, 0.001, 0.001, 0.005, 0.009, 0.018, 0.026, 0.032, 0.038, 0.04, 0.041, 0.043, 0.045, 0.05, 0.055, 0.07, 0.085, 0.097, 0.108, 0.089, 0.07 + 1.137, 1.129, 0.961, 0.969, 0.961, 0.993, 0.996, 0.96, 0.993, 0.867, 0.86, 1.137 + + + + + electric vehicle charging + + kWh/year + 1500.0 + + + 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042 + 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042 + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 + + + + + well pump + + kWh/year + 475.0 + + + 0.044, 0.023, 0.019, 0.015, 0.016, 0.018, 0.026, 0.033, 0.033, 0.032, 0.033, 0.033, 0.032, 0.032, 0.032, 0.033, 0.045, 0.057, 0.066, 0.076, 0.081, 0.086, 0.075, 0.065 + 0.044, 0.023, 0.019, 0.015, 0.016, 0.018, 0.026, 0.033, 0.033, 0.032, 0.033, 0.033, 0.032, 0.032, 0.032, 0.033, 0.045, 0.057, 0.066, 0.076, 0.081, 0.086, 0.075, 0.065 + 1.154, 1.161, 1.013, 1.010, 1.013, 0.888, 0.883, 0.883, 0.888, 0.978, 0.974, 1.154 + + + + + grill + + therm/year + 25.0 + + propane + + -0.1 + 0.004, 0.001, 0.001, 0.002, 0.007, 0.012, 0.029, 0.046, 0.044, 0.041, 0.044, 0.046, 0.042, 0.038, 0.049, 0.059, 0.110, 0.161, 0.115, 0.070, 0.044, 0.019, 0.013, 0.007 + 0.004, 0.001, 0.001, 0.002, 0.007, 0.012, 0.029, 0.046, 0.044, 0.041, 0.044, 0.046, 0.042, 0.038, 0.049, 0.059, 0.110, 0.161, 0.115, 0.070, 0.044, 0.019, 0.013, 0.007 + 1.097, 1.097, 0.991, 0.987, 0.991, 0.890, 0.896, 0.896, 0.890, 1.085, 1.085, 1.097 + + + + + lighting + + therm/year + 28.0 + + natural gas + + 0.044, 0.023, 0.019, 0.015, 0.016, 0.018, 0.026, 0.033, 0.033, 0.032, 0.033, 0.033, 0.032, 0.032, 0.032, 0.033, 0.045, 0.057, 0.066, 0.076, 0.081, 0.086, 0.075, 0.065 + 0.044, 0.023, 0.019, 0.015, 0.016, 0.018, 0.026, 0.033, 0.033, 0.032, 0.033, 0.033, 0.032, 0.032, 0.032, 0.033, 0.045, 0.057, 0.066, 0.076, 0.081, 0.086, 0.075, 0.065 + 1.154, 1.161, 1.013, 1.010, 1.013, 0.888, 0.883, 0.883, 0.888, 0.978, 0.974, 1.154 + + + + + fireplace + + therm/year + 55.0 + + wood + + 0.5 + 0.1 + 0.044, 0.023, 0.019, 0.015, 0.016, 0.018, 0.026, 0.033, 0.033, 0.032, 0.033, 0.033, 0.032, 0.032, 0.032, 0.033, 0.045, 0.057, 0.066, 0.076, 0.081, 0.086, 0.075, 0.065 + 0.044, 0.023, 0.019, 0.015, 0.016, 0.018, 0.026, 0.033, 0.033, 0.032, 0.033, 0.033, 0.032, 0.032, 0.032, 0.033, 0.045, 0.057, 0.066, 0.076, 0.081, 0.086, 0.075, 0.065 + 1.154, 1.161, 1.013, 1.010, 1.013, 0.888, 0.883, 0.883, 0.888, 0.978, 0.974, 1.154 + + + + +
+
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/frac-sensible-plug-load.xml b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/frac-sensible-plug-load.xml new file mode 100644 index 00000000..8f806080 --- /dev/null +++ b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/frac-sensible-plug-load.xml @@ -0,0 +1,758 @@ + + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + + electricity + natural gas + + + + 3.0 + + + single-family detached + 2.0 + 1.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + Denver, CO + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + true + + + + + + + + attic - unvented + 1510.0 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 116.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + outside + attic - unvented + + + + 290.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + + + continuous - exterior + 8.9 + + 0.0 + 8.0 + + + + continuous - interior + 0.0 + + 0.0 + 0.0 + + + + + + + + + attic - unvented + living space + 1350.0 + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + 0.0 + 0.0 + + + + 0.0 + + + + + + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 0 + 4.4 + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + natural gas + 64000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 48000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + manual thermostat + 68.0 + 78.0 + + + + + + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + supply + 4.0 + attic - unvented + 150.0 + + + return + 0.0 + attic - unvented + 50.0 + + 2 + + + 2700.0 + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + + true + 150.0 + + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + 0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041 + 0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041 + 0.837, 0.835, 1.084, 1.084, 1.084, 1.096, 1.096, 1.096, 1.096, 0.931, 0.925, 0.837 + + + + + 700.0 + false + + 0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041 + 0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041 + 0.837, 0.835, 1.084, 1.084, 1.084, 1.096, 1.096, 1.096, 1.096, 0.931, 0.925, 0.837 + + + + + 800.0 + false + + 0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041 + 0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041 + 0.837, 0.835, 1.084, 1.084, 1.084, 1.096, 1.096, 1.096, 1.096, 0.931, 0.925, 0.837 + + + + + living space + 300.0 + + 0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041 + 0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041 + 0.837, 0.835, 1.084, 1.084, 1.084, 1.096, 1.096, 1.096, 1.096, 0.931, 0.925, 0.837 + + + + + living space + 400.0 + + 0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041 + 0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041 + 0.837, 0.835, 1.084, 1.084, 1.084, 1.096, 1.096, 1.096, 1.096, 0.931, 0.925, 0.837 + + + + + living space + electricity + false + + 0.007, 0.007, 0.004, 0.004, 0.007, 0.011, 0.025, 0.042, 0.046, 0.048, 0.042, 0.050, 0.057, 0.046, 0.057, 0.044, 0.092, 0.150, 0.117, 0.060, 0.035, 0.025, 0.016, 0.011 + 0.007, 0.007, 0.004, 0.004, 0.007, 0.011, 0.025, 0.042, 0.046, 0.048, 0.042, 0.050, 0.057, 0.046, 0.057, 0.044, 0.092, 0.150, 0.117, 0.060, 0.035, 0.025, 0.016, 0.011 + 1.097, 1.097, 0.991, 0.987, 0.991, 0.890, 0.896, 0.896, 0.890, 1.085, 1.085, 1.097 + + + + + false + + + + + + interior + 0.4 + + + + + + + exterior + 0.4 + + + + + + + garage + 0.4 + + + + + + + interior + 0.1 + + + + + + + exterior + 0.1 + + + + + + + garage + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.25 + + + + + + + garage + 0.25 + + + + + + + + + unknown + + + + unknown + + kWh/year + 2700.0 + + + 0.003, 0.003, 0.003, 0.004, 0.008, 0.015, 0.026, 0.044, 0.084, 0.121, 0.127, 0.121, 0.120, 0.090, 0.075, 0.061, 0.037, 0.023, 0.013, 0.008, 0.004, 0.003, 0.003, 0.003 + 0.003, 0.003, 0.003, 0.004, 0.008, 0.015, 0.026, 0.044, 0.084, 0.121, 0.127, 0.121, 0.120, 0.090, 0.075, 0.061, 0.037, 0.023, 0.013, 0.008, 0.004, 0.003, 0.003, 0.003 + 1.154, 1.161, 1.013, 1.010, 1.013, 0.888, 0.883, 0.883, 0.888, 0.978, 0.974, 1.154 + + + + + + gas fired + + therm/year + 500.0 + + + 0.003, 0.003, 0.003, 0.004, 0.008, 0.015, 0.026, 0.044, 0.084, 0.121, 0.127, 0.121, 0.120, 0.090, 0.075, 0.061, 0.037, 0.023, 0.013, 0.008, 0.004, 0.003, 0.003, 0.003 + 0.003, 0.003, 0.003, 0.004, 0.008, 0.015, 0.026, 0.044, 0.084, 0.121, 0.127, 0.121, 0.120, 0.090, 0.075, 0.061, 0.037, 0.023, 0.013, 0.008, 0.004, 0.003, 0.003, 0.003 + 1.154, 1.161, 1.013, 1.010, 1.013, 0.888, 0.883, 0.883, 0.888, 0.978, 0.974, 1.154 + + + + + + + + unknown + + + + unknown + + kWh/year + 1000.0 + + + 0.024, 0.029, 0.024, 0.029, 0.047, 0.067, 0.057, 0.024, 0.024, 0.019, 0.015, 0.014, 0.014, 0.014, 0.024, 0.058, 0.126, 0.122, 0.068, 0.061, 0.051, 0.043, 0.024, 0.024 + 0.024, 0.029, 0.024, 0.029, 0.047, 0.067, 0.057, 0.024, 0.024, 0.019, 0.015, 0.014, 0.014, 0.014, 0.024, 0.058, 0.126, 0.122, 0.068, 0.061, 0.051, 0.043, 0.024, 0.024 + 0.837, 0.835, 1.084, 1.084, 1.084, 1.096, 1.096, 1.096, 1.096, 0.931, 0.925, 0.837 + + + + + + electric resistance + + kWh/year + 1300.0 + + + 0.024, 0.029, 0.024, 0.029, 0.047, 0.067, 0.057, 0.024, 0.024, 0.019, 0.015, 0.014, 0.014, 0.014, 0.024, 0.058, 0.126, 0.122, 0.068, 0.061, 0.051, 0.043, 0.024, 0.024 + 0.024, 0.029, 0.024, 0.029, 0.047, 0.067, 0.057, 0.024, 0.024, 0.019, 0.015, 0.014, 0.014, 0.014, 0.024, 0.058, 0.126, 0.122, 0.068, 0.061, 0.051, 0.043, 0.024, 0.024 + 0.921, 0.928, 0.921, 0.915, 0.921, 1.160, 1.158, 1.158, 1.160, 0.921, 0.915, 0.921 + + + + + + + + other + + kWh/year + 2457.0 + + + -0.1 + 0.045 + 0.035, 0.033, 0.032, 0.031, 0.032, 0.033, 0.037, 0.042, 0.043, 0.043, 0.043, 0.044, 0.045, 0.045, 0.044, 0.046, 0.048, 0.052, 0.053, 0.05, 0.047, 0.045, 0.04, 0.036 + 0.035, 0.033, 0.032, 0.031, 0.032, 0.033, 0.037, 0.042, 0.043, 0.043, 0.043, 0.044, 0.045, 0.045, 0.044, 0.046, 0.048, 0.052, 0.053, 0.05, 0.047, 0.045, 0.04, 0.036 + 1.248, 1.257, 0.993, 0.989, 0.993, 0.827, 0.821, 0.821, 0.827, 0.99, 0.987, 1.248 + + + + + TV other + + kWh/year + 620.0 + + + 0.045, 0.019, 0.01, 0.001, 0.001, 0.001, 0.005, 0.009, 0.018, 0.026, 0.032, 0.038, 0.04, 0.041, 0.043, 0.045, 0.05, 0.055, 0.07, 0.085, 0.097, 0.108, 0.089, 0.07 + 0.045, 0.019, 0.01, 0.001, 0.001, 0.001, 0.005, 0.009, 0.018, 0.026, 0.032, 0.038, 0.04, 0.041, 0.043, 0.045, 0.05, 0.055, 0.07, 0.085, 0.097, 0.108, 0.089, 0.07 + 1.137, 1.129, 0.961, 0.969, 0.961, 0.993, 0.996, 0.96, 0.993, 0.867, 0.86, 1.137 + + + + + electric vehicle charging + + kWh/year + 1500.0 + + + 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042 + 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042 + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 + + + + + well pump + + kWh/year + 475.0 + + + 0.044, 0.023, 0.019, 0.015, 0.016, 0.018, 0.026, 0.033, 0.033, 0.032, 0.033, 0.033, 0.032, 0.032, 0.032, 0.033, 0.045, 0.057, 0.066, 0.076, 0.081, 0.086, 0.075, 0.065 + 0.044, 0.023, 0.019, 0.015, 0.016, 0.018, 0.026, 0.033, 0.033, 0.032, 0.033, 0.033, 0.032, 0.032, 0.032, 0.033, 0.045, 0.057, 0.066, 0.076, 0.081, 0.086, 0.075, 0.065 + 1.154, 1.161, 1.013, 1.010, 1.013, 0.888, 0.883, 0.883, 0.888, 0.978, 0.974, 1.154 + + + + + grill + + therm/year + 25.0 + + propane + + 0.004, 0.001, 0.001, 0.002, 0.007, 0.012, 0.029, 0.046, 0.044, 0.041, 0.044, 0.046, 0.042, 0.038, 0.049, 0.059, 0.110, 0.161, 0.115, 0.070, 0.044, 0.019, 0.013, 0.007 + 0.004, 0.001, 0.001, 0.002, 0.007, 0.012, 0.029, 0.046, 0.044, 0.041, 0.044, 0.046, 0.042, 0.038, 0.049, 0.059, 0.110, 0.161, 0.115, 0.070, 0.044, 0.019, 0.013, 0.007 + 1.097, 1.097, 0.991, 0.987, 0.991, 0.890, 0.896, 0.896, 0.890, 1.085, 1.085, 1.097 + + + + + lighting + + therm/year + 28.0 + + natural gas + + 0.044, 0.023, 0.019, 0.015, 0.016, 0.018, 0.026, 0.033, 0.033, 0.032, 0.033, 0.033, 0.032, 0.032, 0.032, 0.033, 0.045, 0.057, 0.066, 0.076, 0.081, 0.086, 0.075, 0.065 + 0.044, 0.023, 0.019, 0.015, 0.016, 0.018, 0.026, 0.033, 0.033, 0.032, 0.033, 0.033, 0.032, 0.032, 0.032, 0.033, 0.045, 0.057, 0.066, 0.076, 0.081, 0.086, 0.075, 0.065 + 1.154, 1.161, 1.013, 1.010, 1.013, 0.888, 0.883, 0.883, 0.888, 0.978, 0.974, 1.154 + + + + + fireplace + + therm/year + 55.0 + + wood + + 0.5 + 0.1 + 0.044, 0.023, 0.019, 0.015, 0.016, 0.018, 0.026, 0.033, 0.033, 0.032, 0.033, 0.033, 0.032, 0.032, 0.032, 0.033, 0.045, 0.057, 0.066, 0.076, 0.081, 0.086, 0.075, 0.065 + 0.044, 0.023, 0.019, 0.015, 0.016, 0.018, 0.026, 0.033, 0.033, 0.032, 0.033, 0.033, 0.032, 0.032, 0.032, 0.033, 0.045, 0.057, 0.066, 0.076, 0.081, 0.086, 0.075, 0.065 + 1.154, 1.161, 1.013, 1.010, 1.013, 0.888, 0.883, 0.883, 0.888, 0.978, 0.974, 1.154 + + + + +
+
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/frac-total-fuel-load.xml b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/frac-total-fuel-load.xml new file mode 100644 index 00000000..f08686c7 --- /dev/null +++ b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/frac-total-fuel-load.xml @@ -0,0 +1,760 @@ + + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + + electricity + natural gas + + + + 3.0 + + + single-family detached + 2.0 + 1.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + Denver, CO + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + true + + + + + + + + attic - unvented + 1510.0 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 116.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + outside + attic - unvented + + + + 290.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + + + continuous - exterior + 8.9 + + 0.0 + 8.0 + + + + continuous - interior + 0.0 + + 0.0 + 0.0 + + + + + + + + + attic - unvented + living space + 1350.0 + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + 0.0 + 0.0 + + + + 0.0 + + + + + + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 0 + 4.4 + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + natural gas + 64000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 48000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + manual thermostat + 68.0 + 78.0 + + + + + + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + supply + 4.0 + attic - unvented + 150.0 + + + return + 0.0 + attic - unvented + 50.0 + + 2 + + + 2700.0 + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + + true + 150.0 + + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + 0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041 + 0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041 + 0.837, 0.835, 1.084, 1.084, 1.084, 1.096, 1.096, 1.096, 1.096, 0.931, 0.925, 0.837 + + + + + 700.0 + false + + 0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041 + 0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041 + 0.837, 0.835, 1.084, 1.084, 1.084, 1.096, 1.096, 1.096, 1.096, 0.931, 0.925, 0.837 + + + + + 800.0 + false + + 0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041 + 0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041 + 0.837, 0.835, 1.084, 1.084, 1.084, 1.096, 1.096, 1.096, 1.096, 0.931, 0.925, 0.837 + + + + + living space + 300.0 + + 0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041 + 0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041 + 0.837, 0.835, 1.084, 1.084, 1.084, 1.096, 1.096, 1.096, 1.096, 0.931, 0.925, 0.837 + + + + + living space + 400.0 + + 0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041 + 0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041 + 0.837, 0.835, 1.084, 1.084, 1.084, 1.096, 1.096, 1.096, 1.096, 0.931, 0.925, 0.837 + + + + + living space + electricity + false + + 0.007, 0.007, 0.004, 0.004, 0.007, 0.011, 0.025, 0.042, 0.046, 0.048, 0.042, 0.050, 0.057, 0.046, 0.057, 0.044, 0.092, 0.150, 0.117, 0.060, 0.035, 0.025, 0.016, 0.011 + 0.007, 0.007, 0.004, 0.004, 0.007, 0.011, 0.025, 0.042, 0.046, 0.048, 0.042, 0.050, 0.057, 0.046, 0.057, 0.044, 0.092, 0.150, 0.117, 0.060, 0.035, 0.025, 0.016, 0.011 + 1.097, 1.097, 0.991, 0.987, 0.991, 0.890, 0.896, 0.896, 0.890, 1.085, 1.085, 1.097 + + + + + false + + + + + + interior + 0.4 + + + + + + + exterior + 0.4 + + + + + + + garage + 0.4 + + + + + + + interior + 0.1 + + + + + + + exterior + 0.1 + + + + + + + garage + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.25 + + + + + + + garage + 0.25 + + + + + + + + + unknown + + + + unknown + + kWh/year + 2700.0 + + + 0.003, 0.003, 0.003, 0.004, 0.008, 0.015, 0.026, 0.044, 0.084, 0.121, 0.127, 0.121, 0.120, 0.090, 0.075, 0.061, 0.037, 0.023, 0.013, 0.008, 0.004, 0.003, 0.003, 0.003 + 0.003, 0.003, 0.003, 0.004, 0.008, 0.015, 0.026, 0.044, 0.084, 0.121, 0.127, 0.121, 0.120, 0.090, 0.075, 0.061, 0.037, 0.023, 0.013, 0.008, 0.004, 0.003, 0.003, 0.003 + 1.154, 1.161, 1.013, 1.010, 1.013, 0.888, 0.883, 0.883, 0.888, 0.978, 0.974, 1.154 + + + + + + gas fired + + therm/year + 500.0 + + + 0.003, 0.003, 0.003, 0.004, 0.008, 0.015, 0.026, 0.044, 0.084, 0.121, 0.127, 0.121, 0.120, 0.090, 0.075, 0.061, 0.037, 0.023, 0.013, 0.008, 0.004, 0.003, 0.003, 0.003 + 0.003, 0.003, 0.003, 0.004, 0.008, 0.015, 0.026, 0.044, 0.084, 0.121, 0.127, 0.121, 0.120, 0.090, 0.075, 0.061, 0.037, 0.023, 0.013, 0.008, 0.004, 0.003, 0.003, 0.003 + 1.154, 1.161, 1.013, 1.010, 1.013, 0.888, 0.883, 0.883, 0.888, 0.978, 0.974, 1.154 + + + + + + + + unknown + + + + unknown + + kWh/year + 1000.0 + + + 0.024, 0.029, 0.024, 0.029, 0.047, 0.067, 0.057, 0.024, 0.024, 0.019, 0.015, 0.014, 0.014, 0.014, 0.024, 0.058, 0.126, 0.122, 0.068, 0.061, 0.051, 0.043, 0.024, 0.024 + 0.024, 0.029, 0.024, 0.029, 0.047, 0.067, 0.057, 0.024, 0.024, 0.019, 0.015, 0.014, 0.014, 0.014, 0.024, 0.058, 0.126, 0.122, 0.068, 0.061, 0.051, 0.043, 0.024, 0.024 + 0.837, 0.835, 1.084, 1.084, 1.084, 1.096, 1.096, 1.096, 1.096, 0.931, 0.925, 0.837 + + + + + + electric resistance + + kWh/year + 1300.0 + + + 0.024, 0.029, 0.024, 0.029, 0.047, 0.067, 0.057, 0.024, 0.024, 0.019, 0.015, 0.014, 0.014, 0.014, 0.024, 0.058, 0.126, 0.122, 0.068, 0.061, 0.051, 0.043, 0.024, 0.024 + 0.024, 0.029, 0.024, 0.029, 0.047, 0.067, 0.057, 0.024, 0.024, 0.019, 0.015, 0.014, 0.014, 0.014, 0.024, 0.058, 0.126, 0.122, 0.068, 0.061, 0.051, 0.043, 0.024, 0.024 + 0.921, 0.928, 0.921, 0.915, 0.921, 1.160, 1.158, 1.158, 1.160, 0.921, 0.915, 0.921 + + + + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + 0.035, 0.033, 0.032, 0.031, 0.032, 0.033, 0.037, 0.042, 0.043, 0.043, 0.043, 0.044, 0.045, 0.045, 0.044, 0.046, 0.048, 0.052, 0.053, 0.05, 0.047, 0.045, 0.04, 0.036 + 0.035, 0.033, 0.032, 0.031, 0.032, 0.033, 0.037, 0.042, 0.043, 0.043, 0.043, 0.044, 0.045, 0.045, 0.044, 0.046, 0.048, 0.052, 0.053, 0.05, 0.047, 0.045, 0.04, 0.036 + 1.248, 1.257, 0.993, 0.989, 0.993, 0.827, 0.821, 0.821, 0.827, 0.99, 0.987, 1.248 + + + + + TV other + + kWh/year + 620.0 + + + 0.045, 0.019, 0.01, 0.001, 0.001, 0.001, 0.005, 0.009, 0.018, 0.026, 0.032, 0.038, 0.04, 0.041, 0.043, 0.045, 0.05, 0.055, 0.07, 0.085, 0.097, 0.108, 0.089, 0.07 + 0.045, 0.019, 0.01, 0.001, 0.001, 0.001, 0.005, 0.009, 0.018, 0.026, 0.032, 0.038, 0.04, 0.041, 0.043, 0.045, 0.05, 0.055, 0.07, 0.085, 0.097, 0.108, 0.089, 0.07 + 1.137, 1.129, 0.961, 0.969, 0.961, 0.993, 0.996, 0.96, 0.993, 0.867, 0.86, 1.137 + + + + + electric vehicle charging + + kWh/year + 1500.0 + + + 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042 + 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042 + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 + + + + + well pump + + kWh/year + 475.0 + + + 0.044, 0.023, 0.019, 0.015, 0.016, 0.018, 0.026, 0.033, 0.033, 0.032, 0.033, 0.033, 0.032, 0.032, 0.032, 0.033, 0.045, 0.057, 0.066, 0.076, 0.081, 0.086, 0.075, 0.065 + 0.044, 0.023, 0.019, 0.015, 0.016, 0.018, 0.026, 0.033, 0.033, 0.032, 0.033, 0.033, 0.032, 0.032, 0.032, 0.033, 0.045, 0.057, 0.066, 0.076, 0.081, 0.086, 0.075, 0.065 + 1.154, 1.161, 1.013, 1.010, 1.013, 0.888, 0.883, 0.883, 0.888, 0.978, 0.974, 1.154 + + + + + grill + + therm/year + 25.0 + + propane + + 0.8 + 0.29999999999999993 + 0.004, 0.001, 0.001, 0.002, 0.007, 0.012, 0.029, 0.046, 0.044, 0.041, 0.044, 0.046, 0.042, 0.038, 0.049, 0.059, 0.110, 0.161, 0.115, 0.070, 0.044, 0.019, 0.013, 0.007 + 0.004, 0.001, 0.001, 0.002, 0.007, 0.012, 0.029, 0.046, 0.044, 0.041, 0.044, 0.046, 0.042, 0.038, 0.049, 0.059, 0.110, 0.161, 0.115, 0.070, 0.044, 0.019, 0.013, 0.007 + 1.097, 1.097, 0.991, 0.987, 0.991, 0.890, 0.896, 0.896, 0.890, 1.085, 1.085, 1.097 + + + + + lighting + + therm/year + 28.0 + + natural gas + + 0.044, 0.023, 0.019, 0.015, 0.016, 0.018, 0.026, 0.033, 0.033, 0.032, 0.033, 0.033, 0.032, 0.032, 0.032, 0.033, 0.045, 0.057, 0.066, 0.076, 0.081, 0.086, 0.075, 0.065 + 0.044, 0.023, 0.019, 0.015, 0.016, 0.018, 0.026, 0.033, 0.033, 0.032, 0.033, 0.033, 0.032, 0.032, 0.032, 0.033, 0.045, 0.057, 0.066, 0.076, 0.081, 0.086, 0.075, 0.065 + 1.154, 1.161, 1.013, 1.010, 1.013, 0.888, 0.883, 0.883, 0.888, 0.978, 0.974, 1.154 + + + + + fireplace + + therm/year + 55.0 + + wood + + 0.5 + 0.1 + 0.044, 0.023, 0.019, 0.015, 0.016, 0.018, 0.026, 0.033, 0.033, 0.032, 0.033, 0.033, 0.032, 0.032, 0.032, 0.033, 0.045, 0.057, 0.066, 0.076, 0.081, 0.086, 0.075, 0.065 + 0.044, 0.023, 0.019, 0.015, 0.016, 0.018, 0.026, 0.033, 0.033, 0.032, 0.033, 0.033, 0.032, 0.032, 0.032, 0.033, 0.045, 0.057, 0.066, 0.076, 0.081, 0.086, 0.075, 0.065 + 1.154, 1.161, 1.013, 1.010, 1.013, 0.888, 0.883, 0.883, 0.888, 0.978, 0.974, 1.154 + + + + +
+
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/frac-total-plug-load.xml b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/frac-total-plug-load.xml new file mode 100644 index 00000000..82e523be --- /dev/null +++ b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/frac-total-plug-load.xml @@ -0,0 +1,758 @@ + + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + + electricity + natural gas + + + + 3.0 + + + single-family detached + 2.0 + 1.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + Denver, CO + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + true + + + + + + + + attic - unvented + 1510.0 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 116.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + outside + attic - unvented + + + + 290.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + + + continuous - exterior + 8.9 + + 0.0 + 8.0 + + + + continuous - interior + 0.0 + + 0.0 + 0.0 + + + + + + + + + attic - unvented + living space + 1350.0 + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + 0.0 + 0.0 + + + + 0.0 + + + + + + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 0 + 4.4 + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + natural gas + 64000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 48000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + manual thermostat + 68.0 + 78.0 + + + + + + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + supply + 4.0 + attic - unvented + 150.0 + + + return + 0.0 + attic - unvented + 50.0 + + 2 + + + 2700.0 + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + + true + 150.0 + + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + 0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041 + 0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041 + 0.837, 0.835, 1.084, 1.084, 1.084, 1.096, 1.096, 1.096, 1.096, 0.931, 0.925, 0.837 + + + + + 700.0 + false + + 0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041 + 0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041 + 0.837, 0.835, 1.084, 1.084, 1.084, 1.096, 1.096, 1.096, 1.096, 0.931, 0.925, 0.837 + + + + + 800.0 + false + + 0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041 + 0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041 + 0.837, 0.835, 1.084, 1.084, 1.084, 1.096, 1.096, 1.096, 1.096, 0.931, 0.925, 0.837 + + + + + living space + 300.0 + + 0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041 + 0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041 + 0.837, 0.835, 1.084, 1.084, 1.084, 1.096, 1.096, 1.096, 1.096, 0.931, 0.925, 0.837 + + + + + living space + 400.0 + + 0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041 + 0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041 + 0.837, 0.835, 1.084, 1.084, 1.084, 1.096, 1.096, 1.096, 1.096, 0.931, 0.925, 0.837 + + + + + living space + electricity + false + + 0.007, 0.007, 0.004, 0.004, 0.007, 0.011, 0.025, 0.042, 0.046, 0.048, 0.042, 0.050, 0.057, 0.046, 0.057, 0.044, 0.092, 0.150, 0.117, 0.060, 0.035, 0.025, 0.016, 0.011 + 0.007, 0.007, 0.004, 0.004, 0.007, 0.011, 0.025, 0.042, 0.046, 0.048, 0.042, 0.050, 0.057, 0.046, 0.057, 0.044, 0.092, 0.150, 0.117, 0.060, 0.035, 0.025, 0.016, 0.011 + 1.097, 1.097, 0.991, 0.987, 0.991, 0.890, 0.896, 0.896, 0.890, 1.085, 1.085, 1.097 + + + + + false + + + + + + interior + 0.4 + + + + + + + exterior + 0.4 + + + + + + + garage + 0.4 + + + + + + + interior + 0.1 + + + + + + + exterior + 0.1 + + + + + + + garage + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.25 + + + + + + + garage + 0.25 + + + + + + + + + unknown + + + + unknown + + kWh/year + 2700.0 + + + 0.003, 0.003, 0.003, 0.004, 0.008, 0.015, 0.026, 0.044, 0.084, 0.121, 0.127, 0.121, 0.120, 0.090, 0.075, 0.061, 0.037, 0.023, 0.013, 0.008, 0.004, 0.003, 0.003, 0.003 + 0.003, 0.003, 0.003, 0.004, 0.008, 0.015, 0.026, 0.044, 0.084, 0.121, 0.127, 0.121, 0.120, 0.090, 0.075, 0.061, 0.037, 0.023, 0.013, 0.008, 0.004, 0.003, 0.003, 0.003 + 1.154, 1.161, 1.013, 1.010, 1.013, 0.888, 0.883, 0.883, 0.888, 0.978, 0.974, 1.154 + + + + + + gas fired + + therm/year + 500.0 + + + 0.003, 0.003, 0.003, 0.004, 0.008, 0.015, 0.026, 0.044, 0.084, 0.121, 0.127, 0.121, 0.120, 0.090, 0.075, 0.061, 0.037, 0.023, 0.013, 0.008, 0.004, 0.003, 0.003, 0.003 + 0.003, 0.003, 0.003, 0.004, 0.008, 0.015, 0.026, 0.044, 0.084, 0.121, 0.127, 0.121, 0.120, 0.090, 0.075, 0.061, 0.037, 0.023, 0.013, 0.008, 0.004, 0.003, 0.003, 0.003 + 1.154, 1.161, 1.013, 1.010, 1.013, 0.888, 0.883, 0.883, 0.888, 0.978, 0.974, 1.154 + + + + + + + + unknown + + + + unknown + + kWh/year + 1000.0 + + + 0.024, 0.029, 0.024, 0.029, 0.047, 0.067, 0.057, 0.024, 0.024, 0.019, 0.015, 0.014, 0.014, 0.014, 0.024, 0.058, 0.126, 0.122, 0.068, 0.061, 0.051, 0.043, 0.024, 0.024 + 0.024, 0.029, 0.024, 0.029, 0.047, 0.067, 0.057, 0.024, 0.024, 0.019, 0.015, 0.014, 0.014, 0.014, 0.024, 0.058, 0.126, 0.122, 0.068, 0.061, 0.051, 0.043, 0.024, 0.024 + 0.837, 0.835, 1.084, 1.084, 1.084, 1.096, 1.096, 1.096, 1.096, 0.931, 0.925, 0.837 + + + + + + electric resistance + + kWh/year + 1300.0 + + + 0.024, 0.029, 0.024, 0.029, 0.047, 0.067, 0.057, 0.024, 0.024, 0.019, 0.015, 0.014, 0.014, 0.014, 0.024, 0.058, 0.126, 0.122, 0.068, 0.061, 0.051, 0.043, 0.024, 0.024 + 0.024, 0.029, 0.024, 0.029, 0.047, 0.067, 0.057, 0.024, 0.024, 0.019, 0.015, 0.014, 0.014, 0.014, 0.024, 0.058, 0.126, 0.122, 0.068, 0.061, 0.051, 0.043, 0.024, 0.024 + 0.921, 0.928, 0.921, 0.915, 0.921, 1.160, 1.158, 1.158, 1.160, 0.921, 0.915, 0.921 + + + + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.24500000000000002 + 0.035, 0.033, 0.032, 0.031, 0.032, 0.033, 0.037, 0.042, 0.043, 0.043, 0.043, 0.044, 0.045, 0.045, 0.044, 0.046, 0.048, 0.052, 0.053, 0.05, 0.047, 0.045, 0.04, 0.036 + 0.035, 0.033, 0.032, 0.031, 0.032, 0.033, 0.037, 0.042, 0.043, 0.043, 0.043, 0.044, 0.045, 0.045, 0.044, 0.046, 0.048, 0.052, 0.053, 0.05, 0.047, 0.045, 0.04, 0.036 + 1.248, 1.257, 0.993, 0.989, 0.993, 0.827, 0.821, 0.821, 0.827, 0.99, 0.987, 1.248 + + + + + TV other + + kWh/year + 620.0 + + + 0.045, 0.019, 0.01, 0.001, 0.001, 0.001, 0.005, 0.009, 0.018, 0.026, 0.032, 0.038, 0.04, 0.041, 0.043, 0.045, 0.05, 0.055, 0.07, 0.085, 0.097, 0.108, 0.089, 0.07 + 0.045, 0.019, 0.01, 0.001, 0.001, 0.001, 0.005, 0.009, 0.018, 0.026, 0.032, 0.038, 0.04, 0.041, 0.043, 0.045, 0.05, 0.055, 0.07, 0.085, 0.097, 0.108, 0.089, 0.07 + 1.137, 1.129, 0.961, 0.969, 0.961, 0.993, 0.996, 0.96, 0.993, 0.867, 0.86, 1.137 + + + + + electric vehicle charging + + kWh/year + 1500.0 + + + 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042 + 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042 + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 + + + + + well pump + + kWh/year + 475.0 + + + 0.044, 0.023, 0.019, 0.015, 0.016, 0.018, 0.026, 0.033, 0.033, 0.032, 0.033, 0.033, 0.032, 0.032, 0.032, 0.033, 0.045, 0.057, 0.066, 0.076, 0.081, 0.086, 0.075, 0.065 + 0.044, 0.023, 0.019, 0.015, 0.016, 0.018, 0.026, 0.033, 0.033, 0.032, 0.033, 0.033, 0.032, 0.032, 0.032, 0.033, 0.045, 0.057, 0.066, 0.076, 0.081, 0.086, 0.075, 0.065 + 1.154, 1.161, 1.013, 1.010, 1.013, 0.888, 0.883, 0.883, 0.888, 0.978, 0.974, 1.154 + + + + + grill + + therm/year + 25.0 + + propane + + 0.004, 0.001, 0.001, 0.002, 0.007, 0.012, 0.029, 0.046, 0.044, 0.041, 0.044, 0.046, 0.042, 0.038, 0.049, 0.059, 0.110, 0.161, 0.115, 0.070, 0.044, 0.019, 0.013, 0.007 + 0.004, 0.001, 0.001, 0.002, 0.007, 0.012, 0.029, 0.046, 0.044, 0.041, 0.044, 0.046, 0.042, 0.038, 0.049, 0.059, 0.110, 0.161, 0.115, 0.070, 0.044, 0.019, 0.013, 0.007 + 1.097, 1.097, 0.991, 0.987, 0.991, 0.890, 0.896, 0.896, 0.890, 1.085, 1.085, 1.097 + + + + + lighting + + therm/year + 28.0 + + natural gas + + 0.044, 0.023, 0.019, 0.015, 0.016, 0.018, 0.026, 0.033, 0.033, 0.032, 0.033, 0.033, 0.032, 0.032, 0.032, 0.033, 0.045, 0.057, 0.066, 0.076, 0.081, 0.086, 0.075, 0.065 + 0.044, 0.023, 0.019, 0.015, 0.016, 0.018, 0.026, 0.033, 0.033, 0.032, 0.033, 0.033, 0.032, 0.032, 0.032, 0.033, 0.045, 0.057, 0.066, 0.076, 0.081, 0.086, 0.075, 0.065 + 1.154, 1.161, 1.013, 1.010, 1.013, 0.888, 0.883, 0.883, 0.888, 0.978, 0.974, 1.154 + + + + + fireplace + + therm/year + 55.0 + + wood + + 0.5 + 0.1 + 0.044, 0.023, 0.019, 0.015, 0.016, 0.018, 0.026, 0.033, 0.033, 0.032, 0.033, 0.033, 0.032, 0.032, 0.032, 0.033, 0.045, 0.057, 0.066, 0.076, 0.081, 0.086, 0.075, 0.065 + 0.044, 0.023, 0.019, 0.015, 0.016, 0.018, 0.026, 0.033, 0.033, 0.032, 0.033, 0.033, 0.032, 0.032, 0.032, 0.033, 0.045, 0.057, 0.066, 0.076, 0.081, 0.086, 0.075, 0.065 + 1.154, 1.161, 1.013, 1.010, 1.013, 0.888, 0.883, 0.883, 0.888, 0.978, 0.974, 1.154 + + + + +
+
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/furnace-invalid-afue.xml b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/furnace-invalid-afue.xml new file mode 100644 index 00000000..e73ce95c --- /dev/null +++ b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/furnace-invalid-afue.xml @@ -0,0 +1,562 @@ + + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + + electricity + natural gas + + + + 3.0 + + + single-family detached + 2.0 + 1.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + Denver, CO + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + true + + + + + + + + attic - unvented + 1510.0 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 116.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + outside + attic - unvented + + + + 290.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + + + continuous - exterior + 8.9 + + 0.0 + 8.0 + + + + continuous - interior + 0.0 + + 0.0 + 0.0 + + + + + + + + + attic - unvented + living space + 1350.0 + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + 0.0 + 0.0 + + + + 0.0 + + + + + + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 0 + 4.4 + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + natural gas + 64000.0 + + AFUE + 92.0 + + 1.0 + + + + + central air conditioner + electricity + 48000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + manual thermostat + 68.0 + 78.0 + + + + + + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + supply + 4.0 + attic - unvented + 150.0 + + + return + 0.0 + attic - unvented + 50.0 + + 2 + + + 2700.0 + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + + true + 150.0 + + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + exterior + 0.4 + + + + + + + garage + 0.4 + + + + + + + interior + 0.1 + + + + + + + exterior + 0.1 + + + + + + + garage + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.25 + + + + + + + garage + 0.25 + + + + + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + + TV other + + kWh/year + 620.0 + + + + +
+
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/generator-number-of-bedrooms-served.xml b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/generator-number-of-bedrooms-served.xml new file mode 100644 index 00000000..25272f3f --- /dev/null +++ b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/generator-number-of-bedrooms-served.xml @@ -0,0 +1,459 @@ + + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + + electricity + natural gas + + + + 3.0 + + + apartment unit + 1.0 + 1.0 + 3 + 2 + 900.0 + 7200.0 + + + + + 2006 + 5B + + + + Denver, CO + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 7200.0 + + + + + + outside + living space + + + + 686.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + other housing unit + living space + + + + 294.0 + 0.7 + 0.92 + + + 4.0 + + + + + + + other housing unit + living space + 900.0 + + + 2.1 + + + below + + + + + other housing unit + living space + 900.0 + + + 2.1 + + + above + + + + + + + 35.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 35.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 53.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 20.0 + 180 + 4.4 + + + + + + + + + + + + + natural gas + 64000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 48000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + manual thermostat + 68.0 + 78.0 + + + + + + + supply + + CFM25 + 0.0 + to outside + + + + return + + CFM25 + 0.0 + to outside + + + + supply + 0.0 + living space + 150.0 + + + return + 0.0 + living space + 50.0 + + 1 + + + 900.0 + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + true + propane + 85000.0 + 5000.0 + 3 + + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + + true + 150.0 + + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + exterior + 0.4 + + + + + + + garage + 0.4 + + + + + + + interior + 0.1 + + + + + + + exterior + 0.1 + + + + + + + garage + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.25 + + + + + + + garage + 0.25 + + + + + + + + + other + + kWh/year + 819.0 + + + 0.855 + 0.045 + + + + + TV other + + kWh/year + 620.0 + + + + +
+
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/generator-output-greater-than-consumption.xml b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/generator-output-greater-than-consumption.xml new file mode 100644 index 00000000..1f5e36e3 --- /dev/null +++ b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/generator-output-greater-than-consumption.xml @@ -0,0 +1,578 @@ + + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + + electricity + natural gas + + + + 3.0 + + + single-family detached + 2.0 + 1.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + Denver, CO + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + true + + + + + + + + attic - unvented + 1510.0 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 116.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + outside + attic - unvented + + + + 290.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + + + continuous - exterior + 8.9 + + 0.0 + 8.0 + + + + continuous - interior + 0.0 + + 0.0 + 0.0 + + + + + + + + + attic - unvented + living space + 1350.0 + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + 0.0 + 0.0 + + + + 0.0 + + + + + + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 0 + 4.4 + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + natural gas + 64000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 48000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + manual thermostat + 68.0 + 78.0 + + + + + + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + supply + 4.0 + attic - unvented + 150.0 + + + return + 0.0 + attic - unvented + 50.0 + + 2 + + + 2700.0 + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + natural gas + 1500.0 + 500.0 + + + + propane + 8500.0 + 500.0 + + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + + true + 150.0 + + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + exterior + 0.4 + + + + + + + garage + 0.4 + + + + + + + interior + 0.1 + + + + + + + exterior + 0.1 + + + + + + + garage + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.25 + + + + + + + garage + 0.25 + + + + + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + + TV other + + kWh/year + 620.0 + + + + +
+
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/heat-pump-mixed-fixed-and-autosize-capacities.xml b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/heat-pump-mixed-fixed-and-autosize-capacities.xml index 8debcc54..611c2a58 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/heat-pump-mixed-fixed-and-autosize-capacities.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/heat-pump-mixed-fixed-and-autosize-capacities.xml @@ -328,9 +328,6 @@ HSPF 7.7 - - 0.45 - @@ -371,6 +368,7 @@ attic - unvented 50.0 + 2 2700.0 @@ -428,7 +426,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/hvac-distribution-multiple-attached-cooling.xml b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/hvac-distribution-multiple-attached-cooling.xml index 0d28dbf4..812edbdf 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/hvac-distribution-multiple-attached-cooling.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/hvac-distribution-multiple-attached-cooling.xml @@ -1,914 +1,917 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - - electricity - natural gas - - - - 3.0 - - - single-family detached - 2.0 - 1.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - Denver, CO - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - true - - - - - - - - attic - unvented - 1510.0 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 116.0 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - outside - attic - unvented - - - - 290.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - - - continuous - exterior - 8.9 - - 0.0 - 8.0 - - - - continuous - interior - 0.0 - - 0.0 - 0.0 - - - - - - - - - attic - unvented - living space - 1350.0 - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - 0.0 - 0.0 - - - - 0.0 - - - - - - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 0 - 4.4 - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - electricity - 6400.0 - - AFUE - 1.0 - - 0.1 - - - - - - - - natural gas - 6400.0 - - AFUE - 0.92 - - 0.1 - - - - - - - - electricity - 6400.0 - - AFUE - 1.0 - - 0.1 - - - - - - - - natural gas - 6400.0 - - AFUE - 0.92 - - 0.1 - 200.0 - - - - - - - electricity - 6400.0 - - Percent - 1.0 - - 0.1 - - - - - - - fuel oil - 6400.0 - - Percent - 0.8 - - 0.1 - - 40.0 - - - - - - - - propane - 6400.0 - - AFUE - 0.8 - - 0.1 - - 0.0 - - - - - - central air conditioner - electricity - 9600.0 - single stage - 0.2 - - SEER - 13.0 - - 0.73 - - - - room air conditioner - electricity - 9600.0 - 0.2 - - EER - 8.5 - - 0.65 - - - - - air-to-air - electricity - 4800.0 - 3024.0 - 4800.0 - single stage - 0.73 - electricity - - Percent - 1.0 - - 3412.0 - 0.1 - 0.2 - - SEER - 13.0 - - - HSPF - 7.7 - - - - - - ground-to-air - electricity - 4800.0 - 4800.0 - 0.73 - electricity - - Percent - 1.0 - - 3412.0 - 0.1 - 0.2 - - EER - 16.6 - - - COP - 3.6 - - - 30.0 - - - - - mini-split - electricity - 4800.0 - 2723.076923076923 - 4800.0 - 0.73 - electricity - - Percent - 1.0 - - 3412.0 - 0.1 - 0.2 - - SEER - 19.0 - - - HSPF - 10.0 - - - - - - manual thermostat - 68.0 - 78.0 - - - - - - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - supply - 8.0 - attic - unvented - 75.0 - - - supply - 8.0 - outside - 75.0 - - - return - 4.0 - attic - unvented - 25.0 - - - return - 4.0 - outside - 25.0 - - - - 675.0 - - - - - - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - supply - 8.0 - attic - unvented - 75.0 - - - supply - 8.0 - outside - 75.0 - - - return - 4.0 - attic - unvented - 25.0 - - - return - 4.0 - outside - 25.0 - - - - 675.0 - - - - - - baseboard - - - - - - - - baseboard - - - - - - - - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - supply - 8.0 - attic - unvented - 75.0 - - - supply - 8.0 - outside - 75.0 - - - return - 4.0 - attic - unvented - 25.0 - - - return - 4.0 - outside - 25.0 - - - - 675.0 - - - - - - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - supply - 8.0 - attic - unvented - 75.0 - - - supply - 8.0 - outside - 75.0 - - - return - 4.0 - attic - unvented - 25.0 - - - return - 4.0 - outside - 25.0 - - - - 675.0 - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - timer - - true - 150.0 - - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - exterior - 0.4 - - - - - - - garage - 0.4 - - - - - - - interior - 0.1 - - - - - - - exterior - 0.1 - - - - - - - garage - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.25 - - - - - - - garage - 0.25 - - - - - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - - TV other - - kWh/year - 620.0 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + + electricity + natural gas + + + + 3.0 + + + single-family detached + 2.0 + 1.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + Denver, CO + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + true + + + + + + + + attic - unvented + 1510.0 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 116.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + outside + attic - unvented + + + + 290.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + + + continuous - exterior + 8.9 + + 0.0 + 8.0 + + + + continuous - interior + 0.0 + + 0.0 + 0.0 + + + + + + + + + attic - unvented + living space + 1350.0 + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + 0.0 + 0.0 + + + + 0.0 + + + + + + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 0 + 4.4 + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + electricity + 6400.0 + + AFUE + 1.0 + + 0.1 + + + + + + + + natural gas + 6400.0 + + AFUE + 0.92 + + 0.1 + + + + + + + + electricity + 6400.0 + + AFUE + 1.0 + + 0.1 + + + + + + + + natural gas + 6400.0 + + AFUE + 0.92 + + 0.1 + 200.0 + + + + + + + electricity + 6400.0 + + Percent + 1.0 + + 0.1 + + + + + + + fuel oil + 6400.0 + + Percent + 0.8 + + 0.1 + + 40.0 + + + + + + + + propane + 6400.0 + + AFUE + 0.8 + + 0.1 + + 0.0 + + + + + + central air conditioner + electricity + 9600.0 + single stage + 0.2 + + SEER + 13.0 + + 0.73 + + + + room air conditioner + electricity + 9600.0 + 0.2 + + EER + 8.5 + + 0.65 + + + + + air-to-air + electricity + 4800.0 + 3024.0 + 4800.0 + single stage + 0.73 + electricity + + Percent + 1.0 + + 3412.0 + 0.1 + 0.2 + + SEER + 13.0 + + + HSPF + 7.7 + + + + + + ground-to-air + electricity + 4800.0 + 4800.0 + 0.73 + electricity + + Percent + 1.0 + + 3412.0 + 0.1 + 0.2 + + EER + 16.6 + + + COP + 3.6 + + + 30.0 + + + + + mini-split + electricity + 4800.0 + 2723.076923076923 + 4800.0 + 0.73 + electricity + + Percent + 1.0 + + 3412.0 + 0.1 + 0.2 + + SEER + 19.0 + + + HSPF + 10.0 + + + + + + manual thermostat + 68.0 + 78.0 + + + + + + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + supply + 8.0 + attic - unvented + 75.0 + + + supply + 8.0 + outside + 75.0 + + + return + 4.0 + attic - unvented + 25.0 + + + return + 4.0 + outside + 25.0 + + 2 + + + 675.0 + + + + + + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + supply + 8.0 + attic - unvented + 75.0 + + + supply + 8.0 + outside + 75.0 + + + return + 4.0 + attic - unvented + 25.0 + + + return + 4.0 + outside + 25.0 + + 2 + + + 675.0 + + + + + + baseboard + + + + + + + + baseboard + + + + + + + + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + supply + 8.0 + attic - unvented + 75.0 + + + supply + 8.0 + outside + 75.0 + + + return + 4.0 + attic - unvented + 25.0 + + + return + 4.0 + outside + 25.0 + + 2 + + + 675.0 + + + + + + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + supply + 8.0 + attic - unvented + 75.0 + + + supply + 8.0 + outside + 75.0 + + + return + 4.0 + attic - unvented + 25.0 + + + return + 4.0 + outside + 25.0 + + 2 + + + 675.0 + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + + true + 150.0 + + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + exterior + 0.4 + + + + + + + garage + 0.4 + + + + + + + interior + 0.1 + + + + + + + exterior + 0.1 + + + + + + + garage + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.25 + + + + + + + garage + 0.25 + + + + + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + + TV other + + kWh/year + 620.0 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/hvac-distribution-multiple-attached-heating.xml b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/hvac-distribution-multiple-attached-heating.xml index 6ac9686a..6449e471 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/hvac-distribution-multiple-attached-heating.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/hvac-distribution-multiple-attached-heating.xml @@ -1,914 +1,917 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - - electricity - natural gas - - - - 3.0 - - - single-family detached - 2.0 - 1.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - Denver, CO - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - true - - - - - - - - attic - unvented - 1510.0 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 116.0 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - outside - attic - unvented - - - - 290.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - - - continuous - exterior - 8.9 - - 0.0 - 8.0 - - - - continuous - interior - 0.0 - - 0.0 - 0.0 - - - - - - - - - attic - unvented - living space - 1350.0 - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - 0.0 - 0.0 - - - - 0.0 - - - - - - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 0 - 4.4 - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - electricity - 6400.0 - - AFUE - 1.0 - - 0.1 - - - - - - - - natural gas - 6400.0 - - AFUE - 0.92 - - 0.1 - - - - - - - - electricity - 6400.0 - - AFUE - 1.0 - - 0.1 - - - - - - - - natural gas - 6400.0 - - AFUE - 0.92 - - 0.1 - 200.0 - - - - - - - electricity - 6400.0 - - Percent - 1.0 - - 0.1 - - - - - - - fuel oil - 6400.0 - - Percent - 0.8 - - 0.1 - - 40.0 - - - - - - - - propane - 6400.0 - - AFUE - 0.8 - - 0.1 - - 0.0 - - - - - - central air conditioner - electricity - 9600.0 - single stage - 0.2 - - SEER - 13.0 - - 0.73 - - - - room air conditioner - electricity - 9600.0 - 0.2 - - EER - 8.5 - - 0.65 - - - - - air-to-air - electricity - 4800.0 - 3024.0 - 4800.0 - single stage - 0.73 - electricity - - Percent - 1.0 - - 3412.0 - 0.1 - 0.2 - - SEER - 13.0 - - - HSPF - 7.7 - - - - - - ground-to-air - electricity - 4800.0 - 4800.0 - 0.73 - electricity - - Percent - 1.0 - - 3412.0 - 0.1 - 0.2 - - EER - 16.6 - - - COP - 3.6 - - - 30.0 - - - - - mini-split - electricity - 4800.0 - 2723.076923076923 - 4800.0 - 0.73 - electricity - - Percent - 1.0 - - 3412.0 - 0.1 - 0.2 - - SEER - 19.0 - - - HSPF - 10.0 - - - - - - manual thermostat - 68.0 - 78.0 - - - - - - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - supply - 8.0 - attic - unvented - 75.0 - - - supply - 8.0 - outside - 75.0 - - - return - 4.0 - attic - unvented - 25.0 - - - return - 4.0 - outside - 25.0 - - - - 675.0 - - - - - - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - supply - 8.0 - attic - unvented - 75.0 - - - supply - 8.0 - outside - 75.0 - - - return - 4.0 - attic - unvented - 25.0 - - - return - 4.0 - outside - 25.0 - - - - 675.0 - - - - - - baseboard - - - - - - - - baseboard - - - - - - - - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - supply - 8.0 - attic - unvented - 75.0 - - - supply - 8.0 - outside - 75.0 - - - return - 4.0 - attic - unvented - 25.0 - - - return - 4.0 - outside - 25.0 - - - - 675.0 - - - - - - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - supply - 8.0 - attic - unvented - 75.0 - - - supply - 8.0 - outside - 75.0 - - - return - 4.0 - attic - unvented - 25.0 - - - return - 4.0 - outside - 25.0 - - - - 675.0 - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - timer - - true - 150.0 - - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - exterior - 0.4 - - - - - - - garage - 0.4 - - - - - - - interior - 0.1 - - - - - - - exterior - 0.1 - - - - - - - garage - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.25 - - - - - - - garage - 0.25 - - - - - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - - TV other - - kWh/year - 620.0 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + + electricity + natural gas + + + + 3.0 + + + single-family detached + 2.0 + 1.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + Denver, CO + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + true + + + + + + + + attic - unvented + 1510.0 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 116.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + outside + attic - unvented + + + + 290.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + + + continuous - exterior + 8.9 + + 0.0 + 8.0 + + + + continuous - interior + 0.0 + + 0.0 + 0.0 + + + + + + + + + attic - unvented + living space + 1350.0 + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + 0.0 + 0.0 + + + + 0.0 + + + + + + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 0 + 4.4 + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + electricity + 6400.0 + + AFUE + 1.0 + + 0.1 + + + + + + + + natural gas + 6400.0 + + AFUE + 0.92 + + 0.1 + + + + + + + + electricity + 6400.0 + + AFUE + 1.0 + + 0.1 + + + + + + + + natural gas + 6400.0 + + AFUE + 0.92 + + 0.1 + 200.0 + + + + + + + electricity + 6400.0 + + Percent + 1.0 + + 0.1 + + + + + + + fuel oil + 6400.0 + + Percent + 0.8 + + 0.1 + + 40.0 + + + + + + + + propane + 6400.0 + + AFUE + 0.8 + + 0.1 + + 0.0 + + + + + + central air conditioner + electricity + 9600.0 + single stage + 0.2 + + SEER + 13.0 + + 0.73 + + + + room air conditioner + electricity + 9600.0 + 0.2 + + EER + 8.5 + + 0.65 + + + + + air-to-air + electricity + 4800.0 + 3024.0 + 4800.0 + single stage + 0.73 + electricity + + Percent + 1.0 + + 3412.0 + 0.1 + 0.2 + + SEER + 13.0 + + + HSPF + 7.7 + + + + + + ground-to-air + electricity + 4800.0 + 4800.0 + 0.73 + electricity + + Percent + 1.0 + + 3412.0 + 0.1 + 0.2 + + EER + 16.6 + + + COP + 3.6 + + + 30.0 + + + + + mini-split + electricity + 4800.0 + 2723.076923076923 + 4800.0 + 0.73 + electricity + + Percent + 1.0 + + 3412.0 + 0.1 + 0.2 + + SEER + 19.0 + + + HSPF + 10.0 + + + + + + manual thermostat + 68.0 + 78.0 + + + + + + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + supply + 8.0 + attic - unvented + 75.0 + + + supply + 8.0 + outside + 75.0 + + + return + 4.0 + attic - unvented + 25.0 + + + return + 4.0 + outside + 25.0 + + 2 + + + 675.0 + + + + + + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + supply + 8.0 + attic - unvented + 75.0 + + + supply + 8.0 + outside + 75.0 + + + return + 4.0 + attic - unvented + 25.0 + + + return + 4.0 + outside + 25.0 + + 2 + + + 675.0 + + + + + + baseboard + + + + + + + + baseboard + + + + + + + + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + supply + 8.0 + attic - unvented + 75.0 + + + supply + 8.0 + outside + 75.0 + + + return + 4.0 + attic - unvented + 25.0 + + + return + 4.0 + outside + 25.0 + + 2 + + + 675.0 + + + + + + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + supply + 8.0 + attic - unvented + 75.0 + + + supply + 8.0 + outside + 75.0 + + + return + 4.0 + attic - unvented + 25.0 + + + return + 4.0 + outside + 25.0 + + 2 + + + 675.0 + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + + true + 150.0 + + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + exterior + 0.4 + + + + + + + garage + 0.4 + + + + + + + interior + 0.1 + + + + + + + exterior + 0.1 + + + + + + + garage + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.25 + + + + + + + garage + 0.25 + + + + + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + + TV other + + kWh/year + 620.0 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/hvac-distribution-return-duct-leakage-missing.xml b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/hvac-distribution-return-duct-leakage-missing.xml index a5e43b29..33681a1a 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/hvac-distribution-return-duct-leakage-missing.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/hvac-distribution-return-duct-leakage-missing.xml @@ -309,6 +309,7 @@ evaporative cooler electricity + 48000.0 1.0 @@ -336,12 +337,7 @@ attic - unvented 150.0 - - return - 0.0 - attic - unvented - 50.0 - + 2 2700.0 @@ -399,7 +395,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/hvac-dse-multiple-attached-cooling.xml b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/hvac-dse-multiple-attached-cooling.xml index d01f3ef9..2a2082eb 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/hvac-dse-multiple-attached-cooling.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/hvac-dse-multiple-attached-cooling.xml @@ -414,7 +414,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/hvac-dse-multiple-attached-heating.xml b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/hvac-dse-multiple-attached-heating.xml index 496b4b94..920accb6 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/hvac-dse-multiple-attached-heating.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/hvac-dse-multiple-attached-heating.xml @@ -414,7 +414,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/hvac-frac-load-served.xml b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/hvac-frac-load-served.xml index df677b13..7488ad9c 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/hvac-frac-load-served.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/hvac-frac-load-served.xml @@ -1,914 +1,917 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - - electricity - natural gas - - - - 3.0 - - - single-family detached - 2.0 - 1.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - Denver, CO - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - true - - - - - - - - attic - unvented - 1510.0 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 116.0 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - outside - attic - unvented - - - - 290.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - - - continuous - exterior - 8.9 - - 0.0 - 8.0 - - - - continuous - interior - 0.0 - - 0.0 - 0.0 - - - - - - - - - attic - unvented - living space - 1350.0 - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - 0.0 - 0.0 - - - - 0.0 - - - - - - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 0 - 4.4 - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - electricity - 6400.0 - - AFUE - 1.0 - - 0.2 - - - - - - - - natural gas - 6400.0 - - AFUE - 0.92 - - 0.1 - - - - - - - - electricity - 6400.0 - - AFUE - 1.0 - - 0.1 - - - - - - - - natural gas - 6400.0 - - AFUE - 0.92 - - 0.1 - 200.0 - - - - - - - electricity - 6400.0 - - Percent - 1.0 - - 0.1 - - - - - - - fuel oil - 6400.0 - - Percent - 0.8 - - 0.1 - - 40.0 - - - - - - - - propane - 6400.0 - - AFUE - 0.8 - - 0.1 - - 0.0 - - - - - - central air conditioner - electricity - 9600.0 - single stage - 0.4 - - SEER - 13.0 - - 0.73 - - - - room air conditioner - electricity - 9600.0 - 0.2 - - EER - 8.5 - - 0.65 - - - - - air-to-air - electricity - 4800.0 - 3024.0 - 4800.0 - single stage - 0.73 - electricity - - Percent - 1.0 - - 3412.0 - 0.1 - 0.2 - - SEER - 13.0 - - - HSPF - 7.7 - - - - - - ground-to-air - electricity - 4800.0 - 4800.0 - 0.73 - electricity - - Percent - 1.0 - - 3412.0 - 0.1 - 0.2 - - EER - 16.6 - - - COP - 3.6 - - - 30.0 - - - - - mini-split - electricity - 4800.0 - 2723.076923076923 - 4800.0 - 0.73 - electricity - - Percent - 1.0 - - 3412.0 - 0.1 - 0.2 - - SEER - 19.0 - - - HSPF - 10.0 - - - - - - manual thermostat - 68.0 - 78.0 - - - - - - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - supply - 8.0 - attic - unvented - 75.0 - - - supply - 8.0 - outside - 75.0 - - - return - 4.0 - attic - unvented - 25.0 - - - return - 4.0 - outside - 25.0 - - - - 675.0 - - - - - - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - supply - 8.0 - attic - unvented - 75.0 - - - supply - 8.0 - outside - 75.0 - - - return - 4.0 - attic - unvented - 25.0 - - - return - 4.0 - outside - 25.0 - - - - 675.0 - - - - - - baseboard - - - - - - - - baseboard - - - - - - - - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - supply - 8.0 - attic - unvented - 75.0 - - - supply - 8.0 - outside - 75.0 - - - return - 4.0 - attic - unvented - 25.0 - - - return - 4.0 - outside - 25.0 - - - - 675.0 - - - - - - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - supply - 8.0 - attic - unvented - 75.0 - - - supply - 8.0 - outside - 75.0 - - - return - 4.0 - attic - unvented - 25.0 - - - return - 4.0 - outside - 25.0 - - - - 675.0 - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - timer - - true - 150.0 - - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - exterior - 0.4 - - - - - - - garage - 0.4 - - - - - - - interior - 0.1 - - - - - - - exterior - 0.1 - - - - - - - garage - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.25 - - - - - - - garage - 0.25 - - - - - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - - TV other - - kWh/year - 620.0 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + + electricity + natural gas + + + + 3.0 + + + single-family detached + 2.0 + 1.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + Denver, CO + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + true + + + + + + + + attic - unvented + 1510.0 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 116.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + outside + attic - unvented + + + + 290.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + + + continuous - exterior + 8.9 + + 0.0 + 8.0 + + + + continuous - interior + 0.0 + + 0.0 + 0.0 + + + + + + + + + attic - unvented + living space + 1350.0 + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + 0.0 + 0.0 + + + + 0.0 + + + + + + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 0 + 4.4 + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + electricity + 6400.0 + + AFUE + 1.0 + + 0.2 + + + + + + + + natural gas + 6400.0 + + AFUE + 0.92 + + 0.1 + + + + + + + + electricity + 6400.0 + + AFUE + 1.0 + + 0.1 + + + + + + + + natural gas + 6400.0 + + AFUE + 0.92 + + 0.1 + 200.0 + + + + + + + electricity + 6400.0 + + Percent + 1.0 + + 0.1 + + + + + + + fuel oil + 6400.0 + + Percent + 0.8 + + 0.1 + + 40.0 + + + + + + + + propane + 6400.0 + + AFUE + 0.8 + + 0.1 + + 0.0 + + + + + + central air conditioner + electricity + 9600.0 + single stage + 0.4 + + SEER + 13.0 + + 0.73 + + + + room air conditioner + electricity + 9600.0 + 0.2 + + EER + 8.5 + + 0.65 + + + + + air-to-air + electricity + 4800.0 + 3024.0 + 4800.0 + single stage + 0.73 + electricity + + Percent + 1.0 + + 3412.0 + 0.1 + 0.2 + + SEER + 13.0 + + + HSPF + 7.7 + + + + + + ground-to-air + electricity + 4800.0 + 4800.0 + 0.73 + electricity + + Percent + 1.0 + + 3412.0 + 0.1 + 0.2 + + EER + 16.6 + + + COP + 3.6 + + + 30.0 + + + + + mini-split + electricity + 4800.0 + 2723.076923076923 + 4800.0 + 0.73 + electricity + + Percent + 1.0 + + 3412.0 + 0.1 + 0.2 + + SEER + 19.0 + + + HSPF + 10.0 + + + + + + manual thermostat + 68.0 + 78.0 + + + + + + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + supply + 8.0 + attic - unvented + 75.0 + + + supply + 8.0 + outside + 75.0 + + + return + 4.0 + attic - unvented + 25.0 + + + return + 4.0 + outside + 25.0 + + 2 + + + 675.0 + + + + + + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + supply + 8.0 + attic - unvented + 75.0 + + + supply + 8.0 + outside + 75.0 + + + return + 4.0 + attic - unvented + 25.0 + + + return + 4.0 + outside + 25.0 + + 2 + + + 675.0 + + + + + + baseboard + + + + + + + + baseboard + + + + + + + + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + supply + 8.0 + attic - unvented + 75.0 + + + supply + 8.0 + outside + 75.0 + + + return + 4.0 + attic - unvented + 25.0 + + + return + 4.0 + outside + 25.0 + + 2 + + + 675.0 + + + + + + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + supply + 8.0 + attic - unvented + 75.0 + + + supply + 8.0 + outside + 75.0 + + + return + 4.0 + attic - unvented + 25.0 + + + return + 4.0 + outside + 25.0 + + 2 + + + 675.0 + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + + true + 150.0 + + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + exterior + 0.4 + + + + + + + garage + 0.4 + + + + + + + interior + 0.1 + + + + + + + exterior + 0.1 + + + + + + + garage + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.25 + + + + + + + garage + 0.25 + + + + + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + + TV other + + kWh/year + 620.0 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/hvac-inconsistent-fan-powers.xml b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/hvac-inconsistent-fan-powers.xml index d40b0340..55299ff9 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/hvac-inconsistent-fan-powers.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/hvac-inconsistent-fan-powers.xml @@ -377,6 +377,7 @@ attic - unvented 50.0 + 2 2700.0 @@ -434,7 +435,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/hvac-invalid-distribution-system-type.xml b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/hvac-invalid-distribution-system-type.xml index 8b135743..e8662373 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/hvac-invalid-distribution-system-type.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/hvac-invalid-distribution-system-type.xml @@ -371,6 +371,7 @@ attic - unvented 50.0 + 2 2700.0 @@ -436,7 +437,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/invalid-assembly-effective-rvalue.xml b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/invalid-assembly-effective-rvalue.xml new file mode 100644 index 00000000..9913335d --- /dev/null +++ b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/invalid-assembly-effective-rvalue.xml @@ -0,0 +1,562 @@ + + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + + electricity + natural gas + + + + 3.0 + + + single-family detached + 2.0 + 1.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + Denver, CO + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + true + + + + + + + + attic - unvented + 1510.0 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 116.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + + 0.0 + + + + + outside + attic - unvented + + + + 290.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + + + continuous - exterior + 8.9 + + 0.0 + 8.0 + + + + continuous - interior + 0.0 + + 0.0 + 0.0 + + + + + + + + + attic - unvented + living space + 1350.0 + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + 0.0 + 0.0 + + + + 0.0 + + + + + + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 0 + 4.4 + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + natural gas + 64000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 48000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + manual thermostat + 68.0 + 78.0 + + + + + + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + supply + 4.0 + attic - unvented + 150.0 + + + return + 0.0 + attic - unvented + 50.0 + + 2 + + + 2700.0 + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + + true + 150.0 + + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + exterior + 0.4 + + + + + + + garage + 0.4 + + + + + + + interior + 0.1 + + + + + + + exterior + 0.1 + + + + + + + garage + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.25 + + + + + + + garage + 0.25 + + + + + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + + TV other + + kWh/year + 620.0 + + + + +
+
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/invalid-datatype-boolean.xml b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/invalid-datatype-boolean.xml index 8aa40cb7..1c3f48b3 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/invalid-datatype-boolean.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/invalid-datatype-boolean.xml @@ -371,6 +371,7 @@ attic - unvented 50.0 + 2 2700.0 @@ -428,7 +429,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/invalid-datatype-float.xml b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/invalid-datatype-float.xml index 58a22127..78214174 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/invalid-datatype-float.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/invalid-datatype-float.xml @@ -371,6 +371,7 @@ attic - unvented 50.0 + 2 2700.0 @@ -428,7 +429,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/invalid-datatype-integer.xml b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/invalid-datatype-integer.xml index 26af5da1..75d8e5d8 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/invalid-datatype-integer.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/invalid-datatype-integer.xml @@ -371,6 +371,7 @@ attic - unvented 50.0 + 2 2700.0 @@ -428,7 +429,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/invalid-daylight-saving.xml b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/invalid-daylight-saving.xml index 89d20913..51f08bb1 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/invalid-daylight-saving.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/invalid-daylight-saving.xml @@ -378,6 +378,7 @@ attic - unvented 50.0 + 2 2700.0 @@ -435,7 +436,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/invalid-distribution-cfa-served.xml b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/invalid-distribution-cfa-served.xml index 09cc559a..6989497f 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/invalid-distribution-cfa-served.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/invalid-distribution-cfa-served.xml @@ -371,9 +371,10 @@ attic - unvented 50.0 + 2 - 2700.1 + 2701.1 @@ -428,7 +429,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/invalid-epw-filepath.xml b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/invalid-epw-filepath.xml index e9e3a1c9..667e5c6a 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/invalid-epw-filepath.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/invalid-epw-filepath.xml @@ -371,6 +371,7 @@ attic - unvented 50.0 + 2 2700.0 @@ -428,7 +429,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/invalid-facility-type-equipment.xml b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/invalid-facility-type-equipment.xml index 3e13cec3..4d574c9e 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/invalid-facility-type-equipment.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/invalid-facility-type-equipment.xml @@ -256,6 +256,7 @@ living space 50.0 + 1 900.0 @@ -329,7 +330,6 @@ other heated space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/invalid-facility-type-surfaces.xml b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/invalid-facility-type-surfaces.xml index 71f77345..6e5da114 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/invalid-facility-type-surfaces.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/invalid-facility-type-surfaces.xml @@ -452,6 +452,7 @@ attic - unvented 50.0 + 2 2700.0 @@ -509,7 +510,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/invalid-foundation-wall-properties.xml b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/invalid-foundation-wall-properties.xml new file mode 100644 index 00000000..9a9e822b --- /dev/null +++ b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/invalid-foundation-wall-properties.xml @@ -0,0 +1,573 @@ + + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + + electricity + natural gas + + + + 3.0 + + + single-family detached + 1.0 + 1.0 + 3 + 2 + 1350.0 + 10800.0 + + + + + 2006 + 5B + + + + Denver, CO + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 10800.0 + + + + + + + + false + + + false + + + + + + + + false + + + false + + + + + + attic - unvented + 1510.0 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - unconditioned + 116.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + outside + attic - unvented + + + + 290.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - unconditioned + 8.0 + 1200.0 + 8.0 + 9.0 + + + + continuous - exterior + 8.9 + + 0.0 + 4.0 + + + + continuous - interior + 0.0 + + 12.0 + 10.0 + + + + + + + + + attic - unvented + living space + 1350.0 + + + 39.3 + + + + + basement - unconditioned + living space + 1350.0 + + + 2.1 + + + + + + + basement - unconditioned + 1350.0 + 4.0 + 150.0 + 0.0 + 0.0 + + + + 0.0 + + + + + + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 0 + 4.4 + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + natural gas + 64000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 48000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + manual thermostat + 68.0 + 78.0 + + + + + + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + supply + 4.0 + basement - unconditioned + 150.0 + + + return + 0.0 + basement - unconditioned + 50.0 + + 1 + + + 1350.0 + + + + + + electricity + storage water heater + basement - unconditioned + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + basement - unconditioned + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + basement - unconditioned + electricity + 3.73 + + true + 150.0 + + + + + basement - unconditioned + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + basement - unconditioned + 650.0 + true + + + + basement - unconditioned + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + exterior + 0.4 + + + + + + + garage + 0.4 + + + + + + + interior + 0.1 + + + + + + + exterior + 0.1 + + + + + + + garage + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.25 + + + + + + + garage + 0.25 + + + + + + + + + other + + kWh/year + 1228.5 + + + 0.855 + 0.045 + + + + + TV other + + kWh/year + 620.0 + + + + +
+
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/invalid-id.xml b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/invalid-id.xml new file mode 100644 index 00000000..45bb9e63 --- /dev/null +++ b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/invalid-id.xml @@ -0,0 +1,590 @@ + + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + + electricity + natural gas + + + + 3.0 + + + single-family detached + 2.0 + 1.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + Denver, CO + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + true + + + + + + + + attic - unvented + 1510.0 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 116.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + outside + attic - unvented + + + + 290.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + + + continuous - exterior + 8.9 + + 0.0 + 8.0 + + + + continuous - interior + 0.0 + + 0.0 + 0.0 + + + + + + + + + attic - unvented + living space + 1350.0 + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + 0.0 + 0.0 + + + + 0.0 + + + + + + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + 45.0 + 0 + 0.33 + 0.45 + + + 1.0 + 1.0 + + + + + + 45.0 + 180 + 0.35 + 0.47 + + + 1.0 + 1.0 + + + + + + + + + 40.0 + 0 + 4.4 + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + natural gas + 64000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 48000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + manual thermostat + 68.0 + 78.0 + + + + + + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + supply + 4.0 + attic - unvented + 150.0 + + + return + 0.0 + attic - unvented + 50.0 + + 2 + + + 2700.0 + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + + true + 150.0 + + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + exterior + 0.4 + + + + + + + garage + 0.4 + + + + + + + interior + 0.1 + + + + + + + exterior + 0.1 + + + + + + + garage + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.25 + + + + + + + garage + 0.25 + + + + + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + + TV other + + kWh/year + 620.0 + + + + +
+
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/invalid-id2.xml b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/invalid-id2.xml new file mode 100644 index 00000000..08029f4d --- /dev/null +++ b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/invalid-id2.xml @@ -0,0 +1,590 @@ + + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + + electricity + natural gas + + + + 3.0 + + + single-family detached + 2.0 + 1.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + Denver, CO + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + true + + + + + + + + attic - unvented + 1510.0 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 116.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + outside + attic - unvented + + + + 290.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + + + continuous - exterior + 8.9 + + 0.0 + 8.0 + + + + continuous - interior + 0.0 + + 0.0 + 0.0 + + + + + + + + + attic - unvented + living space + 1350.0 + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + 0.0 + 0.0 + + + + 0.0 + + + + + + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + 45.0 + 0 + 0.33 + 0.45 + + + 1.0 + 1.0 + + + + + + 45.0 + 180 + 0.35 + 0.47 + + + 1.0 + 1.0 + + + + + + + + + 40.0 + 0 + 4.4 + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + natural gas + 64000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 48000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + manual thermostat + 68.0 + 78.0 + + + + + + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + supply + 4.0 + attic - unvented + 150.0 + + + return + 0.0 + attic - unvented + 50.0 + + 2 + + + 2700.0 + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + + true + 150.0 + + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + exterior + 0.4 + + + + + + + garage + 0.4 + + + + + + + interior + 0.1 + + + + + + + exterior + 0.1 + + + + + + + garage + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.25 + + + + + + + garage + 0.25 + + + + + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + + TV other + + kWh/year + 620.0 + + + + +
+
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/invalid-infiltration-volume.xml b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/invalid-infiltration-volume.xml new file mode 100644 index 00000000..88b47bf3 --- /dev/null +++ b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/invalid-infiltration-volume.xml @@ -0,0 +1,562 @@ + + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + + electricity + natural gas + + + + 3.0 + + + single-family detached + 2.0 + 1.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + Denver, CO + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 5400.0 + + + + + + + + false + + + false + + + + + + + + true + + + + + + + + attic - unvented + 1510.0 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 116.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + outside + attic - unvented + + + + 290.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + + + continuous - exterior + 8.9 + + 0.0 + 8.0 + + + + continuous - interior + 0.0 + + 0.0 + 0.0 + + + + + + + + + attic - unvented + living space + 1350.0 + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + 0.0 + 0.0 + + + + 0.0 + + + + + + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 0 + 4.4 + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + natural gas + 64000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 48000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + manual thermostat + 68.0 + 78.0 + + + + + + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + supply + 4.0 + attic - unvented + 150.0 + + + return + 0.0 + attic - unvented + 50.0 + + 2 + + + 2700.0 + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + + true + 150.0 + + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + exterior + 0.4 + + + + + + + garage + 0.4 + + + + + + + interior + 0.1 + + + + + + + exterior + 0.1 + + + + + + + garage + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.25 + + + + + + + garage + 0.25 + + + + + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + + TV other + + kWh/year + 620.0 + + + + +
+
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/invalid-input-parameters.xml b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/invalid-input-parameters.xml index 1df31563..84ec9b06 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/invalid-input-parameters.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/invalid-input-parameters.xml @@ -373,6 +373,7 @@ attic - unvented 50.0 + 2 2700.0 @@ -430,7 +431,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/invalid-neighbor-shading-azimuth.xml b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/invalid-neighbor-shading-azimuth.xml index 61e650c0..7424d6fc 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/invalid-neighbor-shading-azimuth.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/invalid-neighbor-shading-azimuth.xml @@ -384,6 +384,7 @@ attic - unvented 50.0 + 2 2700.0 @@ -441,7 +442,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/invalid-number-of-bedrooms-served.xml b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/invalid-number-of-bedrooms-served.xml new file mode 100644 index 00000000..77a327b6 --- /dev/null +++ b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/invalid-number-of-bedrooms-served.xml @@ -0,0 +1,464 @@ + + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + + electricity + natural gas + + + + 3.0 + + + apartment unit + 1.0 + 1.0 + 3 + 2 + 900.0 + 7200.0 + + + + + 2006 + 5B + + + + Denver, CO + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 7200.0 + + + + + + outside + living space + + + + 686.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + other housing unit + living space + + + + 294.0 + 0.7 + 0.92 + + + 4.0 + + + + + + + other housing unit + living space + 900.0 + + + 2.1 + + + below + + + + + other housing unit + living space + 900.0 + + + 2.1 + + + above + + + + + + + 35.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 35.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 53.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 20.0 + 180 + 4.4 + + + + + + + + + + + + + natural gas + 64000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 48000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + manual thermostat + 68.0 + 78.0 + + + + + + + supply + + CFM25 + 0.0 + to outside + + + + return + + CFM25 + 0.0 + to outside + + + + supply + 0.0 + living space + 150.0 + + + return + 0.0 + living space + 50.0 + + 1 + + + 900.0 + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + true + ground + standard + fixed + 225 + 30.0 + 30000.0 + 0.96 + 0.14 + + 3 + + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + + true + 150.0 + + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + exterior + 0.4 + + + + + + + garage + 0.4 + + + + + + + interior + 0.1 + + + + + + + exterior + 0.1 + + + + + + + garage + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.25 + + + + + + + garage + 0.25 + + + + + + + + + other + + kWh/year + 819.0 + + + 0.855 + 0.045 + + + + + TV other + + kWh/year + 620.0 + + + + +
+
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/invalid-number-of-conditioned-floors.xml b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/invalid-number-of-conditioned-floors.xml new file mode 100644 index 00000000..644c45e3 --- /dev/null +++ b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/invalid-number-of-conditioned-floors.xml @@ -0,0 +1,562 @@ + + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + + electricity + natural gas + + + + 3.0 + + + single-family detached + 2.0 + 3.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + Denver, CO + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + true + + + + + + + + attic - unvented + 1510.0 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 116.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + outside + attic - unvented + + + + 290.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + + + continuous - exterior + 8.9 + + 0.0 + 8.0 + + + + continuous - interior + 0.0 + + 0.0 + 0.0 + + + + + + + + + attic - unvented + living space + 1350.0 + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + 0.0 + 0.0 + + + + 0.0 + + + + + + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 0 + 4.4 + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + natural gas + 64000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 48000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + manual thermostat + 68.0 + 78.0 + + + + + + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + supply + 4.0 + attic - unvented + 150.0 + + + return + 0.0 + attic - unvented + 50.0 + + 2 + + + 2700.0 + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + + true + 150.0 + + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + exterior + 0.4 + + + + + + + garage + 0.4 + + + + + + + interior + 0.1 + + + + + + + exterior + 0.1 + + + + + + + garage + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.25 + + + + + + + garage + 0.25 + + + + + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + + TV other + + kWh/year + 620.0 + + + + +
+
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/invalid-number-of-units-served.xml b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/invalid-number-of-units-served.xml new file mode 100644 index 00000000..e2e3da3f --- /dev/null +++ b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/invalid-number-of-units-served.xml @@ -0,0 +1,450 @@ + + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + + electricity + natural gas + + + + 3.0 + + + apartment unit + 1.0 + 1.0 + 3 + 2 + 900.0 + 7200.0 + + + + + 2006 + 5B + + + + Denver, CO + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 7200.0 + + + + + + outside + living space + + + + 686.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + other housing unit + living space + + + + 294.0 + 0.7 + 0.92 + + + 4.0 + + + + + + + other housing unit + living space + 900.0 + + + 2.1 + + + below + + + + + other housing unit + living space + 900.0 + + + 2.1 + + + above + + + + + + + 35.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 35.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 53.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 20.0 + 180 + 4.4 + + + + + + + + + + + + + natural gas + 64000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 48000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + manual thermostat + 68.0 + 78.0 + + + + + + + supply + + CFM25 + 0.0 + to outside + + + + return + + CFM25 + 0.0 + to outside + + + + supply + 0.0 + living space + 150.0 + + + return + 0.0 + living space + 50.0 + + 1 + + + 900.0 + + + + + + natural gas + storage water heater + living space + true + 1 + 120.0 + 1.0 + 40000.0 + 0.59 + 0.76 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + + true + 150.0 + + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + exterior + 0.4 + + + + + + + garage + 0.4 + + + + + + + interior + 0.1 + + + + + + + exterior + 0.1 + + + + + + + garage + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.25 + + + + + + + garage + 0.25 + + + + + + + + + other + + kWh/year + 819.0 + + + 0.855 + 0.045 + + + + + TV other + + kWh/year + 620.0 + + + + +
+
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/invalid-relatedhvac-desuperheater.xml b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/invalid-relatedhvac-desuperheater.xml index 349fc9f1..fa55a67b 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/invalid-relatedhvac-desuperheater.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/invalid-relatedhvac-desuperheater.xml @@ -317,9 +317,6 @@ 13.0 0.73 - - 0.45 - @@ -360,6 +357,7 @@ attic - unvented 50.0 + 2 2700.0 @@ -419,7 +417,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/invalid-relatedhvac-dhw-indirect.xml b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/invalid-relatedhvac-dhw-indirect.xml index dcf76ecf..cd2192ea 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/invalid-relatedhvac-dhw-indirect.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/invalid-relatedhvac-dhw-indirect.xml @@ -385,7 +385,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/invalid-runperiod.xml b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/invalid-runperiod.xml index 4f6f4a82..870726c9 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/invalid-runperiod.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/invalid-runperiod.xml @@ -373,6 +373,7 @@ attic - unvented 50.0 + 2 2700.0 @@ -430,7 +431,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/invalid-schema-version.xml b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/invalid-schema-version.xml index e7f1404a..47dec552 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/invalid-schema-version.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/invalid-schema-version.xml @@ -371,6 +371,7 @@ attic - unvented 50.0 + 2 2700.0 @@ -428,7 +429,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/invalid-shared-vent-in-unit-flowrate.xml b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/invalid-shared-vent-in-unit-flowrate.xml new file mode 100644 index 00000000..b30d6026 --- /dev/null +++ b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/invalid-shared-vent-in-unit-flowrate.xml @@ -0,0 +1,472 @@ + + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + + electricity + natural gas + + + + 3.0 + + + apartment unit + 1.0 + 1.0 + 3 + 2 + 900.0 + 7200.0 + + + + + 2006 + 5B + + + + Denver, CO + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 7200.0 + + + + + + outside + living space + + + + 686.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + other housing unit + living space + + + + 294.0 + 0.7 + 0.92 + + + 4.0 + + + + + + + other housing unit + living space + 900.0 + + + 2.1 + + + below + + + + + other housing unit + living space + 900.0 + + + 2.1 + + + above + + + + + + + 35.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 35.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 53.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 20.0 + 180 + 4.4 + + + + + + + + + + + + + natural gas + 64000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 48000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + manual thermostat + 68.0 + 78.0 + + + + + + + supply + + CFM25 + 0.0 + to outside + + + + return + + CFM25 + 0.0 + to outside + + + + supply + 0.0 + living space + 150.0 + + + return + 0.0 + living space + 50.0 + + 1 + + + 900.0 + + + + + + + supply only + 80.0 + 24.0 + true + true + 0.5 + 240.0 + + 80.0 + + + + + exhaust only + 72.0 + 24.0 + true + 26.0 + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + + true + 150.0 + + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + exterior + 0.4 + + + + + + + garage + 0.4 + + + + + + + interior + 0.1 + + + + + + + exterior + 0.1 + + + + + + + garage + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.25 + + + + + + + garage + 0.25 + + + + + + + + + other + + kWh/year + 819.0 + + + 0.855 + 0.045 + + + + + TV other + + kWh/year + 620.0 + + + + +
+
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/invalid-timestep.xml b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/invalid-timestep.xml index d13e5743..a63fad8d 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/invalid-timestep.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/invalid-timestep.xml @@ -371,6 +371,7 @@ attic - unvented 50.0 + 2 2700.0 @@ -428,7 +429,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/invalid-window-height.xml b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/invalid-window-height.xml index 4baf4fac..c50761ee 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/invalid-window-height.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/invalid-window-height.xml @@ -257,6 +257,11 @@ 0.7 0.85 + + 0.0 + 1.0 + 5.0 + 0.67 @@ -386,6 +391,7 @@ attic - unvented 50.0 + 2 2700.0 @@ -443,7 +449,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/lighting-fractions.xml b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/lighting-fractions.xml index c6251123..a96541d2 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/lighting-fractions.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/lighting-fractions.xml @@ -371,6 +371,7 @@ attic - unvented 50.0 + 2 2700.0 @@ -428,7 +429,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/missing-duct-location.xml b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/missing-duct-location.xml index 5f11293a..ae7b01cd 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/missing-duct-location.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/missing-duct-location.xml @@ -1,910 +1,913 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - - electricity - natural gas - - - - 3.0 - - - single-family detached - 2.0 - 1.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - Denver, CO - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - true - - - - - - - - attic - unvented - 1510.0 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 116.0 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - outside - attic - unvented - - - - 290.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - - - continuous - exterior - 8.9 - - 0.0 - 8.0 - - - - continuous - interior - 0.0 - - 0.0 - 0.0 - - - - - - - - - attic - unvented - living space - 1350.0 - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - 0.0 - 0.0 - - - - 0.0 - - - - - - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 0 - 4.4 - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - electricity - 6400.0 - - AFUE - 1.0 - - 0.1 - - - - - - - - natural gas - 6400.0 - - AFUE - 0.92 - - 0.1 - - - - - - - - electricity - 6400.0 - - AFUE - 1.0 - - 0.1 - - - - - - - - natural gas - 6400.0 - - AFUE - 0.92 - - 0.1 - 200.0 - - - - - - - electricity - 6400.0 - - Percent - 1.0 - - 0.1 - - - - - - - fuel oil - 6400.0 - - Percent - 0.8 - - 0.1 - - 40.0 - - - - - - - - propane - 6400.0 - - AFUE - 0.8 - - 0.1 - - 0.0 - - - - - - central air conditioner - electricity - 9600.0 - single stage - 0.2 - - SEER - 13.0 - - 0.73 - - - - room air conditioner - electricity - 9600.0 - 0.2 - - EER - 8.5 - - 0.65 - - - - - air-to-air - electricity - 4800.0 - 3024.0 - 4800.0 - single stage - 0.73 - electricity - - Percent - 1.0 - - 3412.0 - 0.1 - 0.2 - - SEER - 13.0 - - - HSPF - 7.7 - - - - - - ground-to-air - electricity - 4800.0 - 4800.0 - 0.73 - electricity - - Percent - 1.0 - - 3412.0 - 0.1 - 0.2 - - EER - 16.6 - - - COP - 3.6 - - - 30.0 - - - - - mini-split - electricity - 4800.0 - 2723.076923076923 - 4800.0 - 0.73 - electricity - - Percent - 1.0 - - 3412.0 - 0.1 - 0.2 - - SEER - 19.0 - - - HSPF - 10.0 - - - - - - manual thermostat - 68.0 - 78.0 - - - - - - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - supply - 8.0 - attic - unvented - 75.0 - - - supply - 8.0 - 75.0 - - - return - 4.0 - attic - unvented - 25.0 - - - return - 4.0 - outside - 25.0 - - - - 675.0 - - - - - - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - supply - 8.0 - attic - unvented - 75.0 - - - supply - 8.0 - 75.0 - - - return - 4.0 - attic - unvented - 25.0 - - - return - 4.0 - outside - 25.0 - - - - 675.0 - - - - - - baseboard - - - - - - - - baseboard - - - - - - - - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - supply - 8.0 - attic - unvented - 75.0 - - - supply - 8.0 - 75.0 - - - return - 4.0 - attic - unvented - 25.0 - - - return - 4.0 - outside - 25.0 - - - - 675.0 - - - - - - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - supply - 8.0 - attic - unvented - 75.0 - - - supply - 8.0 - 75.0 - - - return - 4.0 - attic - unvented - 25.0 - - - return - 4.0 - outside - 25.0 - - - - 675.0 - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - timer - - true - 150.0 - - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - exterior - 0.4 - - - - - - - garage - 0.4 - - - - - - - interior - 0.1 - - - - - - - exterior - 0.1 - - - - - - - garage - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.25 - - - - - - - garage - 0.25 - - - - - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - - TV other - - kWh/year - 620.0 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + + electricity + natural gas + + + + 3.0 + + + single-family detached + 2.0 + 1.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + Denver, CO + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + true + + + + + + + + attic - unvented + 1510.0 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 116.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + outside + attic - unvented + + + + 290.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + + + continuous - exterior + 8.9 + + 0.0 + 8.0 + + + + continuous - interior + 0.0 + + 0.0 + 0.0 + + + + + + + + + attic - unvented + living space + 1350.0 + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + 0.0 + 0.0 + + + + 0.0 + + + + + + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 0 + 4.4 + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + electricity + 6400.0 + + AFUE + 1.0 + + 0.1 + + + + + + + + natural gas + 6400.0 + + AFUE + 0.92 + + 0.1 + + + + + + + + electricity + 6400.0 + + AFUE + 1.0 + + 0.1 + + + + + + + + natural gas + 6400.0 + + AFUE + 0.92 + + 0.1 + 200.0 + + + + + + + electricity + 6400.0 + + Percent + 1.0 + + 0.1 + + + + + + + fuel oil + 6400.0 + + Percent + 0.8 + + 0.1 + + 40.0 + + + + + + + + propane + 6400.0 + + AFUE + 0.8 + + 0.1 + + 0.0 + + + + + + central air conditioner + electricity + 9600.0 + single stage + 0.2 + + SEER + 13.0 + + 0.73 + + + + room air conditioner + electricity + 9600.0 + 0.2 + + EER + 8.5 + + 0.65 + + + + + air-to-air + electricity + 4800.0 + 3024.0 + 4800.0 + single stage + 0.73 + electricity + + Percent + 1.0 + + 3412.0 + 0.1 + 0.2 + + SEER + 13.0 + + + HSPF + 7.7 + + + + + + ground-to-air + electricity + 4800.0 + 4800.0 + 0.73 + electricity + + Percent + 1.0 + + 3412.0 + 0.1 + 0.2 + + EER + 16.6 + + + COP + 3.6 + + + 30.0 + + + + + mini-split + electricity + 4800.0 + 2723.076923076923 + 4800.0 + 0.73 + electricity + + Percent + 1.0 + + 3412.0 + 0.1 + 0.2 + + SEER + 19.0 + + + HSPF + 10.0 + + + + + + manual thermostat + 68.0 + 78.0 + + + + + + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + supply + 8.0 + attic - unvented + 75.0 + + + supply + 8.0 + 75.0 + + + return + 4.0 + attic - unvented + 25.0 + + + return + 4.0 + outside + 25.0 + + 2 + + + 675.0 + + + + + + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + supply + 8.0 + attic - unvented + 75.0 + + + supply + 8.0 + 75.0 + + + return + 4.0 + attic - unvented + 25.0 + + + return + 4.0 + outside + 25.0 + + 2 + + + 675.0 + + + + + + baseboard + + + + + + + + baseboard + + + + + + + + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + supply + 8.0 + attic - unvented + 75.0 + + + supply + 8.0 + 75.0 + + + return + 4.0 + attic - unvented + 25.0 + + + return + 4.0 + outside + 25.0 + + 2 + + + 675.0 + + + + + + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + supply + 8.0 + attic - unvented + 75.0 + + + supply + 8.0 + 75.0 + + + return + 4.0 + attic - unvented + 25.0 + + + return + 4.0 + outside + 25.0 + + 2 + + + 675.0 + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + + true + 150.0 + + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + exterior + 0.4 + + + + + + + garage + 0.4 + + + + + + + interior + 0.1 + + + + + + + exterior + 0.1 + + + + + + + garage + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.25 + + + + + + + garage + 0.25 + + + + + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + + TV other + + kWh/year + 620.0 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/missing-elements.xml b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/missing-elements.xml index 7ecaaac8..7d61cc4f 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/missing-elements.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/missing-elements.xml @@ -369,6 +369,7 @@ attic - unvented 50.0 + 2 2700.0 @@ -426,7 +427,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/multifamily-reference-appliance.xml b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/multifamily-reference-appliance.xml index 9e872a76..2428ffd0 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/multifamily-reference-appliance.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/multifamily-reference-appliance.xml @@ -371,6 +371,7 @@ attic - unvented 50.0 + 2 2700.0 @@ -428,7 +429,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/multifamily-reference-duct.xml b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/multifamily-reference-duct.xml index 9cf0e6ad..1e64fa18 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/multifamily-reference-duct.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/multifamily-reference-duct.xml @@ -371,6 +371,7 @@ attic - unvented 50.0 + 2 2700.0 @@ -428,7 +429,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/multifamily-reference-surface.xml b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/multifamily-reference-surface.xml index 56ac1702..7d9257e4 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/multifamily-reference-surface.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/multifamily-reference-surface.xml @@ -190,13 +190,23 @@ - other heated space + attic - unvented living space 1350.0 39.3 + + + + other heated space + living space + 1350.0 + + + 39.3 + above @@ -374,6 +384,7 @@ attic - unvented 50.0 + 2 2700.0 @@ -431,7 +442,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/multifamily-reference-water-heater.xml b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/multifamily-reference-water-heater.xml index 846ff17b..21780906 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/multifamily-reference-water-heater.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/multifamily-reference-water-heater.xml @@ -371,6 +371,7 @@ attic - unvented 50.0 + 2 2700.0 @@ -428,7 +429,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/multiple-buildings-without-building-id.xml b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/multiple-buildings-without-building-id.xml new file mode 100644 index 00000000..e33b16b5 --- /dev/null +++ b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/multiple-buildings-without-building-id.xml @@ -0,0 +1,1654 @@ + + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + + electricity + natural gas + + + + 3.0 + + + single-family detached + 2.0 + 1.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + Denver, CO + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + true + + + + + + + + attic - unvented + 1510.0 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 116.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + outside + attic - unvented + + + + 290.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + + + continuous - exterior + 8.9 + + 0.0 + 8.0 + + + + continuous - interior + 0.0 + + 0.0 + 0.0 + + + + + + + + + attic - unvented + living space + 1350.0 + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + 0.0 + 0.0 + + + + 0.0 + + + + + + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 0 + 4.4 + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + natural gas + 64000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 48000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + manual thermostat + 68.0 + 78.0 + + + + + + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + supply + 4.0 + attic - unvented + 150.0 + + + return + 0.0 + attic - unvented + 50.0 + + 2 + + + 2700.0 + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + + true + 150.0 + + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + exterior + 0.4 + + + + + + + garage + 0.4 + + + + + + + interior + 0.1 + + + + + + + exterior + 0.1 + + + + + + + garage + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.25 + + + + + + + garage + 0.25 + + + + + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + + TV other + + kWh/year + 620.0 + + + + +
+ + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + + electricity + natural gas + + + + 3.0 + + + single-family detached + 2.0 + 1.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + Denver, CO + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + true + + + + + + + + attic - unvented + 1510.0 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 116.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + outside + attic - unvented + + + + 290.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + + + continuous - exterior + 8.9 + + 0.0 + 8.0 + + + + continuous - interior + 0.0 + + 0.0 + 0.0 + + + + + + + + + attic - unvented + living space + 1350.0 + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + 0.0 + 0.0 + + + + 0.0 + + + + + + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 0 + 4.4 + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + natural gas + 64000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 48000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + manual thermostat + 68.0 + 78.0 + + + + + + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + supply + 4.0 + attic - unvented + 150.0 + + + return + 0.0 + attic - unvented + 50.0 + + 2 + + + 2700.0 + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + + true + 150.0 + + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + exterior + 0.4 + + + + + + + garage + 0.4 + + + + + + + interior + 0.1 + + + + + + + exterior + 0.1 + + + + + + + garage + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.25 + + + + + + + garage + 0.25 + + + + + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + + TV other + + kWh/year + 620.0 + + + + +
+ + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + + electricity + natural gas + + + + 3.0 + + + single-family detached + 2.0 + 1.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + Denver, CO + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + true + + + + + + + + attic - unvented + 1510.0 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 116.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + outside + attic - unvented + + + + 290.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + + + continuous - exterior + 8.9 + + 0.0 + 8.0 + + + + continuous - interior + 0.0 + + 0.0 + 0.0 + + + + + + + + + attic - unvented + living space + 1350.0 + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + 0.0 + 0.0 + + + + 0.0 + + + + + + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 0 + 4.4 + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + natural gas + 64000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 48000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + manual thermostat + 68.0 + 78.0 + + + + + + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + supply + 4.0 + attic - unvented + 150.0 + + + return + 0.0 + attic - unvented + 50.0 + + 2 + + + 2700.0 + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + + true + 150.0 + + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + exterior + 0.4 + + + + + + + garage + 0.4 + + + + + + + interior + 0.1 + + + + + + + exterior + 0.1 + + + + + + + garage + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.25 + + + + + + + garage + 0.25 + + + + + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + + TV other + + kWh/year + 620.0 + + + + +
+
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/multiple-buildings-wrong-building-id.xml b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/multiple-buildings-wrong-building-id.xml new file mode 100644 index 00000000..e33b16b5 --- /dev/null +++ b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/multiple-buildings-wrong-building-id.xml @@ -0,0 +1,1654 @@ + + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + + electricity + natural gas + + + + 3.0 + + + single-family detached + 2.0 + 1.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + Denver, CO + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + true + + + + + + + + attic - unvented + 1510.0 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 116.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + outside + attic - unvented + + + + 290.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + + + continuous - exterior + 8.9 + + 0.0 + 8.0 + + + + continuous - interior + 0.0 + + 0.0 + 0.0 + + + + + + + + + attic - unvented + living space + 1350.0 + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + 0.0 + 0.0 + + + + 0.0 + + + + + + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 0 + 4.4 + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + natural gas + 64000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 48000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + manual thermostat + 68.0 + 78.0 + + + + + + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + supply + 4.0 + attic - unvented + 150.0 + + + return + 0.0 + attic - unvented + 50.0 + + 2 + + + 2700.0 + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + + true + 150.0 + + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + exterior + 0.4 + + + + + + + garage + 0.4 + + + + + + + interior + 0.1 + + + + + + + exterior + 0.1 + + + + + + + garage + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.25 + + + + + + + garage + 0.25 + + + + + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + + TV other + + kWh/year + 620.0 + + + + +
+ + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + + electricity + natural gas + + + + 3.0 + + + single-family detached + 2.0 + 1.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + Denver, CO + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + true + + + + + + + + attic - unvented + 1510.0 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 116.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + outside + attic - unvented + + + + 290.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + + + continuous - exterior + 8.9 + + 0.0 + 8.0 + + + + continuous - interior + 0.0 + + 0.0 + 0.0 + + + + + + + + + attic - unvented + living space + 1350.0 + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + 0.0 + 0.0 + + + + 0.0 + + + + + + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 0 + 4.4 + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + natural gas + 64000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 48000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + manual thermostat + 68.0 + 78.0 + + + + + + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + supply + 4.0 + attic - unvented + 150.0 + + + return + 0.0 + attic - unvented + 50.0 + + 2 + + + 2700.0 + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + + true + 150.0 + + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + exterior + 0.4 + + + + + + + garage + 0.4 + + + + + + + interior + 0.1 + + + + + + + exterior + 0.1 + + + + + + + garage + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.25 + + + + + + + garage + 0.25 + + + + + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + + TV other + + kWh/year + 620.0 + + + + +
+ + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + + electricity + natural gas + + + + 3.0 + + + single-family detached + 2.0 + 1.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + Denver, CO + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + true + + + + + + + + attic - unvented + 1510.0 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 116.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + outside + attic - unvented + + + + 290.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + + + continuous - exterior + 8.9 + + 0.0 + 8.0 + + + + continuous - interior + 0.0 + + 0.0 + 0.0 + + + + + + + + + attic - unvented + living space + 1350.0 + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + 0.0 + 0.0 + + + + 0.0 + + + + + + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 0 + 4.4 + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + natural gas + 64000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 48000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + manual thermostat + 68.0 + 78.0 + + + + + + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + supply + 4.0 + attic - unvented + 150.0 + + + return + 0.0 + attic - unvented + 50.0 + + 2 + + + 2700.0 + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + + true + 150.0 + + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + exterior + 0.4 + + + + + + + garage + 0.4 + + + + + + + interior + 0.1 + + + + + + + exterior + 0.1 + + + + + + + garage + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.25 + + + + + + + garage + 0.25 + + + + + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + + TV other + + kWh/year + 620.0 + + + + +
+
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-ideal-air.xml b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/multiple-shared-cooling-systems.xml similarity index 64% rename from example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-ideal-air.xml rename to example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/multiple-shared-cooling-systems.xml index a854b2f2..d81c679e 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-ideal-air.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/multiple-shared-cooling-systems.xml @@ -1,499 +1,432 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - - electricity - natural gas - - - - 3.0 - - - single-family detached - 2.0 - 1.0 - 3 - 2 - 2700.0 - 21600.0 - - true - - - - - - 2006 - 5B - - - - Denver, CO - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - true - - - - - - - - attic - unvented - 1510.0 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 116.0 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - outside - attic - unvented - - - - 290.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - - - continuous - exterior - 8.9 - - 0.0 - 8.0 - - - - continuous - interior - 0.0 - - 0.0 - 0.0 - - - - - - - - - attic - unvented - living space - 1350.0 - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - 0.0 - 0.0 - - - - 0.0 - - - - - - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 0 - 4.4 - - - - - 40.0 - 180 - 4.4 - - - - - - - - manual thermostat - 68.0 - 78.0 - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - timer - - true - 150.0 - - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - exterior - 0.4 - - - - - - - garage - 0.4 - - - - - - - interior - 0.1 - - - - - - - exterior - 0.1 - - - - - - - garage - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.25 - - - - - - - garage - 0.25 - - - - - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - - TV other - - kWh/year - 620.0 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + + electricity + natural gas + + + + 3.0 + + + apartment unit + 1.0 + 1.0 + 3 + 2 + 900.0 + 7200.0 + + + + + 2006 + 5B + + + + Denver, CO + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 7200.0 + + + + + + outside + living space + + + + 686.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + other housing unit + living space + + + + 294.0 + 0.7 + 0.92 + + + 4.0 + + + + + + + other housing unit + living space + 900.0 + + + 2.1 + + + below + + + + + other housing unit + living space + 900.0 + + + 2.1 + + + above + + + + + + + 35.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 35.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 53.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 20.0 + 180 + 4.4 + + + + + + + + + + true + 6 + chiller + electricity + 144000.0 + 0.5 + + kW/ton + 0.9 + + + 600.0 + + + + + + true + 6 + chiller + electricity + 144000.0 + 0.5 + + kW/ton + 0.9 + + + 600.0 + + + + + + manual thermostat + 68.0 + 78.0 + + + + + + baseboard + + + + + + + + baseboard + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + + true + 150.0 + + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + exterior + 0.4 + + + + + + + garage + 0.4 + + + + + + + interior + 0.1 + + + + + + + exterior + 0.1 + + + + + + + garage + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.25 + + + + + + + garage + 0.25 + + + + + + + + + other + + kWh/year + 819.0 + + + 0.855 + 0.045 + + + + + TV other + + kWh/year + 620.0 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/multiple-shared-heating-systems.xml b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/multiple-shared-heating-systems.xml new file mode 100644 index 00000000..ec511283 --- /dev/null +++ b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/multiple-shared-heating-systems.xml @@ -0,0 +1,434 @@ + + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + + electricity + natural gas + + + + 3.0 + + + apartment unit + 1.0 + 1.0 + 3 + 2 + 900.0 + 7200.0 + + + + + 2006 + 5B + + + + Denver, CO + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 7200.0 + + + + + + outside + living space + + + + 686.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + other housing unit + living space + + + + 294.0 + 0.7 + 0.92 + + + 4.0 + + + + + + + other housing unit + living space + 900.0 + + + 2.1 + + + below + + + + + other housing unit + living space + 900.0 + + + 2.1 + + + above + + + + + + + 35.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 35.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 53.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 20.0 + 180 + 4.4 + + + + + + + + + + true + 6 + + + + natural gas + + AFUE + 0.92 + + 0.5 + + 600.0 + + + + + + true + 6 + + + + natural gas + + AFUE + 0.92 + + 0.5 + + 600.0 + + + + + + manual thermostat + 68.0 + 78.0 + + + + + + baseboard + + + + + + + + baseboard + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + + true + 150.0 + + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + exterior + 0.4 + + + + + + + garage + 0.4 + + + + + + + interior + 0.1 + + + + + + + exterior + 0.1 + + + + + + + garage + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.25 + + + + + + + garage + 0.25 + + + + + + + + + other + + kWh/year + 819.0 + + + 0.855 + 0.045 + + + + + TV other + + kWh/year + 620.0 + + + + +
+
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/net-area-negative-roof.xml b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/net-area-negative-roof.xml index e438a417..c2086461 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/net-area-negative-roof.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/net-area-negative-roof.xml @@ -399,6 +399,7 @@ attic - unvented 50.0 + 2 2700.0 @@ -456,7 +457,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/net-area-negative-wall.xml b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/net-area-negative-wall.xml index cdeefde0..9ffae7f1 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/net-area-negative-wall.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/net-area-negative-wall.xml @@ -371,6 +371,7 @@ attic - unvented 50.0 + 2 2700.0 @@ -428,7 +429,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/num-bedrooms-exceeds-limit.xml b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/num-bedrooms-exceeds-limit.xml index 8abf86af..ab99f97e 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/num-bedrooms-exceeds-limit.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/num-bedrooms-exceeds-limit.xml @@ -371,6 +371,7 @@ attic - unvented 50.0 + 2 2700.0 @@ -428,7 +429,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/orphaned-hvac-distribution.xml b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/orphaned-hvac-distribution.xml index 314f6b98..38233d65 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/orphaned-hvac-distribution.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/orphaned-hvac-distribution.xml @@ -355,6 +355,7 @@ attic - unvented 50.0 + 2 2700.0 @@ -412,7 +413,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/refrigerator-location.xml b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/refrigerator-location.xml index 06d58468..fcecc7d9 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/refrigerator-location.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/refrigerator-location.xml @@ -371,6 +371,7 @@ attic - unvented 50.0 + 2 2700.0 @@ -428,7 +429,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/refrigerators-multiple-primary.xml b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/refrigerators-multiple-primary.xml index 5373ed6d..75ba3ca7 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/refrigerators-multiple-primary.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/refrigerators-multiple-primary.xml @@ -371,6 +371,7 @@ attic - unvented 50.0 + 2 2700.0 @@ -428,7 +429,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/refrigerators-no-primary.xml b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/refrigerators-no-primary.xml index b10693fc..2b7f0ab9 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/refrigerators-no-primary.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/refrigerators-no-primary.xml @@ -371,6 +371,7 @@ attic - unvented 50.0 + 2 2700.0 @@ -428,7 +429,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/repeated-relatedhvac-desuperheater.xml b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/repeated-relatedhvac-desuperheater.xml index d8271b68..bb9a00bd 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/repeated-relatedhvac-desuperheater.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/repeated-relatedhvac-desuperheater.xml @@ -317,9 +317,6 @@ 13.0 0.73 - - 0.45 - @@ -360,6 +357,7 @@ attic - unvented 50.0 + 2 2700.0 @@ -432,7 +430,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/repeated-relatedhvac-dhw-indirect.xml b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/repeated-relatedhvac-dhw-indirect.xml index bc4e07fb..443aca6e 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/repeated-relatedhvac-dhw-indirect.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/repeated-relatedhvac-dhw-indirect.xml @@ -394,7 +394,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/solar-thermal-system-with-combi-tankless.xml b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/solar-thermal-system-with-combi-tankless.xml index c613c004..8258fd9b 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/solar-thermal-system-with-combi-tankless.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/solar-thermal-system-with-combi-tankless.xml @@ -399,7 +399,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/solar-thermal-system-with-desuperheater.xml b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/solar-thermal-system-with-desuperheater.xml index 22e2804e..64fa9de3 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/solar-thermal-system-with-desuperheater.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/solar-thermal-system-with-desuperheater.xml @@ -317,9 +317,6 @@ 13.0 0.73 - - 0.45 - @@ -360,6 +357,7 @@ attic - unvented 50.0 + 2 2700.0 @@ -434,7 +432,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/solar-thermal-system-with-dhw-indirect.xml b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/solar-thermal-system-with-dhw-indirect.xml index c613c004..8258fd9b 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/solar-thermal-system-with-dhw-indirect.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/solar-thermal-system-with-dhw-indirect.xml @@ -399,7 +399,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/unattached-cfis.xml b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/unattached-cfis.xml index 7d88ba89..a8dc5f44 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/unattached-cfis.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/unattached-cfis.xml @@ -371,6 +371,7 @@ attic - unvented 50.0 + 2 2700.0 @@ -441,7 +442,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/unattached-door.xml b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/unattached-door.xml index 34698435..c14ae9cf 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/unattached-door.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/unattached-door.xml @@ -371,6 +371,7 @@ attic - unvented 50.0 + 2 2700.0 @@ -428,7 +429,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/unattached-hvac-distribution.xml b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/unattached-hvac-distribution.xml index 7445e216..598145bd 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/unattached-hvac-distribution.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/unattached-hvac-distribution.xml @@ -371,6 +371,7 @@ attic - unvented 50.0 + 2 2700.0 @@ -428,7 +429,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/unattached-shared-clothes-washer-water-heater.xml b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/unattached-shared-clothes-washer-water-heater.xml index 3a6082c7..c4b54727 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/unattached-shared-clothes-washer-water-heater.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/unattached-shared-clothes-washer-water-heater.xml @@ -256,6 +256,7 @@ living space 50.0 + 1 900.0 @@ -329,7 +330,6 @@ other heated space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/unattached-shared-dishwasher-water-heater.xml b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/unattached-shared-dishwasher-water-heater.xml index ad961d0a..c726ff1b 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/unattached-shared-dishwasher-water-heater.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/unattached-shared-dishwasher-water-heater.xml @@ -256,6 +256,7 @@ living space 50.0 + 1 900.0 @@ -329,7 +330,6 @@ other heated space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/unattached-skylight.xml b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/unattached-skylight.xml index 3716039f..02d5c953 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/unattached-skylight.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/unattached-skylight.xml @@ -399,6 +399,7 @@ attic - unvented 50.0 + 2 2700.0 @@ -456,7 +457,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/unattached-solar-thermal-system.xml b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/unattached-solar-thermal-system.xml index 56fe2a99..f902a7ae 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/unattached-solar-thermal-system.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/unattached-solar-thermal-system.xml @@ -371,6 +371,7 @@ attic - unvented 50.0 + 2 2700.0 @@ -443,7 +444,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/unattached-window.xml b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/unattached-window.xml index 53d1ad2f..d69824af 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/unattached-window.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/unattached-window.xml @@ -371,6 +371,7 @@ attic - unvented 50.0 + 2 2700.0 @@ -428,7 +429,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/water-heater-location-other.xml b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/water-heater-location-other.xml index 011a5a19..3caa0230 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/water-heater-location-other.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/water-heater-location-other.xml @@ -371,6 +371,7 @@ attic - unvented 50.0 + 2 2700.0 @@ -428,7 +429,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/water-heater-location.xml b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/water-heater-location.xml index c45a3c87..62764607 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/water-heater-location.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/water-heater-location.xml @@ -371,6 +371,7 @@ attic - unvented 50.0 + 2 2700.0 @@ -428,7 +429,6 @@ living space electricity 3.73 - timer true 150.0 diff --git a/example_files/resources/hpxml-measures/workflow/template.osw b/example_files/resources/hpxml-measures/workflow/template.osw index 56e364e1..939b5f49 100644 --- a/example_files/resources/hpxml-measures/workflow/template.osw +++ b/example_files/resources/hpxml-measures/workflow/template.osw @@ -8,18 +8,21 @@ "arguments": { "hpxml_path": "../workflow/sample_files/base.xml", "output_dir": "../workflow/run", - "debug": false + "debug": false, + "skip_validation": false }, "measure_dir_name": "HPXMLtoOpenStudio" }, { "arguments": { + "output_format": "csv", "timeseries_frequency": "none", "include_timeseries_fuel_consumptions": false, "include_timeseries_end_use_consumptions": false, "include_timeseries_hot_water_uses": false, "include_timeseries_total_loads": false, "include_timeseries_component_loads": false, + "include_timeseries_unmet_loads": false, "include_timeseries_zone_temperatures": false, "include_timeseries_airflows": false, "include_timeseries_weather": false diff --git a/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L100AC.xml b/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L100AC.xml index b7a8caf6..6a84a2b5 100644 --- a/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L100AC.xml +++ b/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L100AC.xml @@ -28,9 +28,6 @@ 3 1539.0 12312.0 - - true - diff --git a/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L100AL.xml b/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L100AL.xml index 297d59f3..17ede713 100644 --- a/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L100AL.xml +++ b/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L100AL.xml @@ -28,9 +28,6 @@ 3 1539.0 12312.0 - - true - diff --git a/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L110AC.xml b/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L110AC.xml index 8234d58d..85be0a0c 100644 --- a/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L110AC.xml +++ b/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L110AC.xml @@ -28,9 +28,6 @@ 3 1539.0 12312.0 - - true - diff --git a/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L110AL.xml b/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L110AL.xml index 363fd9dc..c3a932aa 100644 --- a/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L110AL.xml +++ b/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L110AL.xml @@ -28,9 +28,6 @@ 3 1539.0 12312.0 - - true - diff --git a/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L120AC.xml b/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L120AC.xml index 842819e6..c1f5b707 100644 --- a/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L120AC.xml +++ b/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L120AC.xml @@ -28,9 +28,6 @@ 3 1539.0 12312.0 - - true - diff --git a/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L120AL.xml b/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L120AL.xml index 59142fa0..bbe557d7 100644 --- a/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L120AL.xml +++ b/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L120AL.xml @@ -28,9 +28,6 @@ 3 1539.0 12312.0 - - true - diff --git a/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L130AC.xml b/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L130AC.xml index e6b39180..bce9ed65 100644 --- a/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L130AC.xml +++ b/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L130AC.xml @@ -28,9 +28,6 @@ 3 1539.0 12312.0 - - true - diff --git a/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L130AL.xml b/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L130AL.xml index 7b8075c8..6b055050 100644 --- a/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L130AL.xml +++ b/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L130AL.xml @@ -28,9 +28,6 @@ 3 1539.0 12312.0 - - true - diff --git a/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L140AC.xml b/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L140AC.xml index 975af74a..0f9c7bd4 100644 --- a/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L140AC.xml +++ b/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L140AC.xml @@ -28,9 +28,6 @@ 3 1539.0 12312.0 - - true - diff --git a/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L140AL.xml b/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L140AL.xml index 1ea7d1a2..a4910335 100644 --- a/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L140AL.xml +++ b/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L140AL.xml @@ -28,9 +28,6 @@ 3 1539.0 12312.0 - - true - diff --git a/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L150AC.xml b/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L150AC.xml index d87abb58..114c6f86 100644 --- a/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L150AC.xml +++ b/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L150AC.xml @@ -28,9 +28,6 @@ 3 1539.0 12312.0 - - true - diff --git a/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L150AL.xml b/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L150AL.xml index 607e2799..81f9da32 100644 --- a/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L150AL.xml +++ b/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L150AL.xml @@ -28,9 +28,6 @@ 3 1539.0 12312.0 - - true - diff --git a/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L155AC.xml b/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L155AC.xml index fa36db66..71cf2b70 100644 --- a/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L155AC.xml +++ b/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L155AC.xml @@ -28,9 +28,6 @@ 3 1539.0 12312.0 - - true - diff --git a/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L155AL.xml b/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L155AL.xml index f3725b8d..0263d49a 100644 --- a/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L155AL.xml +++ b/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L155AL.xml @@ -28,9 +28,6 @@ 3 1539.0 12312.0 - - true - diff --git a/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L160AC.xml b/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L160AC.xml index 06b8e337..930618a5 100644 --- a/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L160AC.xml +++ b/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L160AC.xml @@ -28,9 +28,6 @@ 3 1539.0 12312.0 - - true - diff --git a/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L160AL.xml b/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L160AL.xml index f0fc6168..de1b1ef2 100644 --- a/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L160AL.xml +++ b/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L160AL.xml @@ -28,9 +28,6 @@ 3 1539.0 12312.0 - - true - diff --git a/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L170AC.xml b/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L170AC.xml index 61902b41..9b4ae3ef 100644 --- a/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L170AC.xml +++ b/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L170AC.xml @@ -28,9 +28,6 @@ 3 1539.0 12312.0 - - true - diff --git a/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L170AL.xml b/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L170AL.xml index d58d2635..f71150ed 100644 --- a/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L170AL.xml +++ b/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L170AL.xml @@ -28,9 +28,6 @@ 3 1539.0 12312.0 - - true - diff --git a/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L200AC.xml b/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L200AC.xml index 9eb071f0..8fa13db5 100644 --- a/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L200AC.xml +++ b/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L200AC.xml @@ -28,9 +28,6 @@ 3 1539.0 12312.0 - - true - diff --git a/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L200AL.xml b/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L200AL.xml index 760b4834..d02cc21c 100644 --- a/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L200AL.xml +++ b/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L200AL.xml @@ -28,9 +28,6 @@ 3 1539.0 12312.0 - - true - diff --git a/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L202AC.xml b/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L202AC.xml index ad73b654..5cb501d0 100644 --- a/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L202AC.xml +++ b/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L202AC.xml @@ -28,9 +28,6 @@ 3 1539.0 12312.0 - - true - diff --git a/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L202AL.xml b/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L202AL.xml index b7c9293e..0ebefb97 100644 --- a/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L202AL.xml +++ b/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L202AL.xml @@ -28,9 +28,6 @@ 3 1539.0 12312.0 - - true - diff --git a/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L302XC.xml b/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L302XC.xml index 0bba96d4..16709c14 100644 --- a/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L302XC.xml +++ b/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L302XC.xml @@ -28,9 +28,6 @@ 3 1539.0 12312.0 - - true - diff --git a/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L304XC.xml b/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L304XC.xml index f0d723a8..60584bcc 100644 --- a/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L304XC.xml +++ b/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L304XC.xml @@ -28,9 +28,6 @@ 3 1539.0 12312.0 - - true - diff --git a/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L322XC.xml b/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L322XC.xml index 5a3092d9..abfb1f5c 100644 --- a/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L322XC.xml +++ b/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L322XC.xml @@ -28,9 +28,6 @@ 3 3078.0 24624.0 - - true - diff --git a/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L324XC.xml b/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L324XC.xml index cebf2e50..4263cc4f 100644 --- a/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L324XC.xml +++ b/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L324XC.xml @@ -28,9 +28,6 @@ 3 3078.0 24624.0 - - true - diff --git a/example_files/resources/hpxml-measures/workflow/tests/hpxml_translator_test.rb b/example_files/resources/hpxml-measures/workflow/tests/hpxml_translator_test.rb index 08b11eed..408dde87 100644 --- a/example_files/resources/hpxml-measures/workflow/tests/hpxml_translator_test.rb +++ b/example_files/resources/hpxml-measures/workflow/tests/hpxml_translator_test.rb @@ -2,9 +2,9 @@ require_relative '../../HPXMLtoOpenStudio/resources/minitest_helper' require 'openstudio' -require 'openstudio/measure/ShowRunnerOutput' require 'minitest/autorun' require 'fileutils' +require 'parallel' require_relative '../../HPXMLtoOpenStudio/measure.rb' require_relative '../../HPXMLtoOpenStudio/resources/constants' require_relative '../../HPXMLtoOpenStudio/resources/meta_measure' @@ -12,12 +12,8 @@ require_relative '../../HPXMLtoOpenStudio/resources/xmlhelper' class HPXMLTest < MiniTest::Test - @@simulation_runtime_key = 'Simulation Runtime' @@workflow_runtime_key = 'Workflow Runtime' - @@os_log = OpenStudio::StringStreamLogSink.new - @@os_log.setLogLevel(OpenStudio::Warn) - def before_setup @this_dir = File.dirname(__FILE__) @results_dir = File.join(@this_dir, 'results') @@ -25,44 +21,37 @@ def before_setup end def test_simulations - sample_files_dir = File.absolute_path(File.join(@this_dir, '..', 'sample_files')) - autosize_dir = File.absolute_path(File.join(@this_dir, '..', 'sample_files', 'hvac_autosizing')) - results_out = File.join(@results_dir, 'results.csv') File.delete(results_out) if File.exist? results_out sizing_out = File.join(@results_dir, 'results_hvac_sizing.csv') File.delete(sizing_out) if File.exist? sizing_out - test_dirs = [sample_files_dir, - autosize_dir] - xmls = [] - test_dirs.each do |test_dir| - Dir["#{test_dir}/*.xml"].sort.each do |xml| - xmls << File.absolute_path(xml) - end + sample_files_dir = File.absolute_path(File.join(@this_dir, '..', 'sample_files')) + Dir["#{sample_files_dir}/*.xml"].sort.each do |xml| + xmls << File.absolute_path(xml) end # Test simulations puts "Running #{xmls.size} HPXML files..." all_results = {} all_sizing_results = {} - xmls.each do |xml| - all_results[xml], all_sizing_results[xml] = _run_xml(xml) + Parallel.map(xmls, in_threads: Parallel.processor_count) do |xml| + xml_name = File.basename(xml) + all_results[xml_name], all_sizing_results[xml_name] = _run_xml(xml, Parallel.worker_number) end - _write_summary_results(all_results, results_out) - _write_hvac_sizing_results(all_sizing_results, sizing_out) + _write_summary_results(all_results.sort_by { |k, v| k.downcase }.to_h, results_out) + _write_hvac_sizing_results(all_sizing_results.sort_by { |k, v| k.downcase }.to_h, sizing_out) end def test_ashrae_140 - ashrae140_dir = File.absolute_path(File.join(@this_dir, 'ASHRAE_Standard_140')) - ashrae140_out = File.join(@results_dir, 'results_ashrae_140.csv') File.delete(ashrae140_out) if File.exist? ashrae140_out xmls = [] - Dir["#{ashrae140_dir}/*.xml"].sort.each do |xml| + ashrae_140_dir = File.absolute_path(File.join(@this_dir, 'ASHRAE_Standard_140')) + Dir["#{ashrae_140_dir}/*.xml"].sort.each do |xml| xmls << File.absolute_path(xml) end @@ -70,27 +59,28 @@ def test_ashrae_140 puts "Running #{xmls.size} HPXML files..." all_results = {} all_sizing_results = {} - xmls.each do |xml| - all_results[xml], all_sizing_results[xml] = _run_xml(xml) + Parallel.map(xmls, in_threads: Parallel.processor_count) do |xml| + xml_name = File.basename(xml) + all_results[xml_name], all_sizing_results[xml_name] = _run_xml(xml, Parallel.worker_number) end - _write_ashrae_140_results(all_results, ashrae140_dir, ashrae140_out) + _write_ashrae_140_results(all_results.sort_by { |k, v| k.downcase }.to_h, ashrae140_out) end - def test_run_simulation_rb - # Check that simulation works using run_simulation.rb script + def test_run_simulation_json_output + # Check that the simulation produces JSON outputs (instead of CSV outputs) if requested os_cli = OpenStudio.getOpenStudioCLI rb_path = File.join(File.dirname(__FILE__), '..', 'run_simulation.rb') xml = File.join(File.dirname(__FILE__), '..', 'sample_files', 'base.xml') - command = "#{os_cli} #{rb_path} -x #{xml} --debug --hourly ALL" + command = "#{os_cli} #{rb_path} -x #{xml} --debug --hourly ALL --output-format json" system(command, err: File::NULL) # Check for output files sql_path = File.join(File.dirname(xml), 'run', 'eplusout.sql') assert(File.exist? sql_path) - csv_output_path = File.join(File.dirname(xml), 'run', 'results_annual.csv') + csv_output_path = File.join(File.dirname(xml), 'run', 'results_annual.json') assert(File.exist? csv_output_path) - csv_output_path = File.join(File.dirname(xml), 'run', 'results_timeseries.csv') + csv_output_path = File.join(File.dirname(xml), 'run', 'results_timeseries.json') assert(File.exist? csv_output_path) # Check for debug files @@ -154,29 +144,42 @@ def test_weather_cache def test_invalid sample_files_dir = File.join(@this_dir, '..', 'sample_files') - expected_error_msgs = { 'cfis-with-hydronic-distribution.xml' => ["Attached HVAC distribution system 'HVACDistribution' cannot be hydronic for ventilation fan 'MechanicalVentilation'."], - 'clothes-dryer-location.xml' => ["ClothesDryer location is 'garage' but building does not have this location specified."], - 'clothes-washer-location.xml' => ["ClothesWasher location is 'garage' but building does not have this location specified."], - 'cooking-range-location.xml' => ["CookingRange location is 'garage' but building does not have this location specified."], - 'dishwasher-location.xml' => ["Dishwasher location is 'garage' but building does not have this location specified."], + expected_error_msgs = { 'boiler-invalid-afue.xml' => ['Expected AnnualHeatingEfficiency[Units="AFUE"]/Value to be less than or equal to 1'], + 'cfis-with-hydronic-distribution.xml' => ["Attached HVAC distribution system 'HVACDistribution' cannot be hydronic for ventilation fan 'MechanicalVentilation'."], + 'clothes-dryer-location.xml' => ['A location is specified as "garage" but no surfaces were found adjacent to this space type.'], + 'clothes-washer-location.xml' => ['A location is specified as "garage" but no surfaces were found adjacent to this space type.'], + 'cooking-range-location.xml' => ['A location is specified as "garage" but no surfaces were found adjacent to this space type.'], + 'dehumidifier-fraction-served.xml' => ['Expected FractionDehumidificationLoadServed to sum to <= 1, but calculated sum is 1.1.'], + 'dehumidifier-setpoints.xml' => ['All dehumidifiers must have the same setpoint but multiple setpoints were specified.'], + 'dishwasher-location.xml' => ['A location is specified as "garage" but no surfaces were found adjacent to this space type.'], 'dhw-frac-load-served.xml' => ['Expected FractionDHWLoadServed to sum to 1, but calculated sum is 1.15.'], 'dhw-invalid-ef-tank.xml' => ['Expected EnergyFactor to be less than 1 [context: /HPXML/Building/BuildingDetails/Systems/WaterHeating/WaterHeatingSystem[WaterHeaterType="storage water heater"]]'], 'dhw-invalid-uef-tank-heat-pump.xml' => ['Expected UniformEnergyFactor to be greater than 1 [context: /HPXML/Building/BuildingDetails/Systems/WaterHeating/WaterHeatingSystem[WaterHeaterType="heat pump water heater"]]'], - 'duct-location.xml' => ["Duct location is 'garage' but building does not have this location specified."], - 'duct-location-unconditioned-space.xml' => ["Expected DuctLocation to be 'living space' or 'basement - conditioned' or 'basement - unconditioned' or 'crawlspace - vented' or 'crawlspace - unvented' or 'attic - vented' or 'attic - unvented' or 'garage' or 'exterior wall' or 'under slab' or 'roof deck' or 'outside' or 'other housing unit' or 'other heated space' or 'other multifamily buffer space' or 'other non-freezing space' [context: /HPXML/Building/BuildingDetails/Systems/HVAC/HVACDistribution/DistributionSystemType/*/Ducts[DuctType=\"supply\" or DuctType=\"return\"]]"], + 'duct-leakage-cfm25.xml' => ['Expected Value to be greater than or equal to 0 [context: /HPXML/Building/BuildingDetails/Systems/HVAC/HVACDistribution/DistributionSystemType/AirDistribution/DuctLeakageMeasurement/DuctLeakage[Units="CFM25"]]'], + 'duct-leakage-percent.xml' => ['Expected Value to be less than 1 [context: /HPXML/Building/BuildingDetails/Systems/HVAC/HVACDistribution/DistributionSystemType/AirDistribution/DuctLeakageMeasurement/DuctLeakage[Units="Percent"]]'], + 'duct-location.xml' => ['A location is specified as "garage" but no surfaces were found adjacent to this space type.'], + 'duct-location-unconditioned-space.xml' => ["Expected DuctLocation to be 'living space' or 'basement - conditioned' or 'basement - unconditioned' or 'crawlspace - vented' or 'crawlspace - unvented' or 'attic - vented' or 'attic - unvented' or 'garage' or 'exterior wall' or 'under slab' or 'roof deck' or 'outside' or 'other housing unit' or 'other heated space' or 'other multifamily buffer space' or 'other non-freezing space' [context: /HPXML/Building/BuildingDetails/Systems/HVAC/HVACDistribution/DistributionSystemType/*/Ducts]"], 'duplicate-id.xml' => ["Duplicate SystemIdentifier IDs detected for 'WindowNorth'."], - 'enclosure-attic-missing-roof.xml' => ['There must be at least one roof adjacent to attic - unvented.'], - 'enclosure-basement-missing-exterior-foundation-wall.xml' => ['There must be at least one exterior foundation wall adjacent to basement - unconditioned.'], - 'enclosure-basement-missing-slab.xml' => ['There must be at least one slab adjacent to basement - unconditioned.'], - 'enclosure-floor-area-exceeds-cfa.xml' => ['Sum of floor/slab area adjacent to conditioned space (1350.0) is greater than conditioned floor area (540.0).'], - 'enclosure-garage-missing-exterior-wall.xml' => ['There must be at least one exterior wall/foundation wall adjacent to garage.'], - 'enclosure-garage-missing-roof-ceiling.xml' => ['There must be at least one roof/ceiling adjacent to garage.'], - 'enclosure-garage-missing-slab.xml' => ['There must be at least one slab adjacent to garage.'], - 'enclosure-living-missing-ceiling-roof.xml' => ['There must be at least one ceiling/roof adjacent to conditioned space.'], - 'enclosure-living-missing-exterior-wall.xml' => ['There must be at least one exterior wall adjacent to conditioned space.'], - 'enclosure-living-missing-floor-slab.xml' => ['There must be at least one floor/slab adjacent to conditioned space.'], - 'heat-pump-mixed-fixed-and-autosize-capacities.xml' => ["HeatPump 'HeatPump' must have both HeatingCapacity and HeatingCapacity17F provided or not provided."], - 'heat-pump-mixed-fixed-and-autosize-capacities2.xml' => ["HeatPump 'HeatPump' must have both HeatingCapacity and BackupHeatingCapacity provided or not provided."], + 'enclosure-attic-missing-roof.xml' => ['There must be at least one roof adjacent to "attic - unvented". [context: /HPXML/Building/BuildingDetails/Enclosure[*/*[InteriorAdjacentTo="attic - unvented" or ExteriorAdjacentTo="attic - unvented"]]]'], + 'enclosure-basement-missing-exterior-foundation-wall.xml' => ['There must be at least one exterior foundation wall adjacent to "basement - unconditioned". [context: /HPXML/Building/BuildingDetails/Enclosure[*/*[InteriorAdjacentTo="basement - unconditioned" or ExteriorAdjacentTo="basement - unconditioned"]]]'], + 'enclosure-basement-missing-slab.xml' => ['There must be at least one slab adjacent to "basement - unconditioned". [context: /HPXML/Building/BuildingDetails/Enclosure[*/*[InteriorAdjacentTo="basement - unconditioned" or ExteriorAdjacentTo="basement - unconditioned"]]]'], + 'enclosure-floor-area-exceeds-cfa.xml' => ['Expected ConditionedFloorArea to be greater than or equal to the sum of conditioned slab/floor areas. [context: /HPXML/Building/BuildingDetails/BuildingSummary/BuildingConstruction]'], + 'enclosure-floor-area-exceeds-cfa2.xml' => ['Expected ConditionedFloorArea to be greater than or equal to the sum of conditioned slab/floor areas. [context: /HPXML/Building/BuildingDetails/BuildingSummary/BuildingConstruction]'], + 'enclosure-garage-missing-exterior-wall.xml' => ['There must be at least one exterior wall/foundation wall adjacent to "garage". [context: /HPXML/Building/BuildingDetails/Enclosure[*/*[InteriorAdjacentTo="garage" or ExteriorAdjacentTo="garage"]]]'], + 'enclosure-garage-missing-roof-ceiling.xml' => ['There must be at least one roof/ceiling adjacent to "garage". [context: /HPXML/Building/BuildingDetails/Enclosure[*/*[InteriorAdjacentTo="garage" or ExteriorAdjacentTo="garage"]]]'], + 'enclosure-garage-missing-slab.xml' => ['There must be at least one slab adjacent to "garage". [context: /HPXML/Building/BuildingDetails/Enclosure[*/*[InteriorAdjacentTo="garage" or ExteriorAdjacentTo="garage"]]]'], + 'enclosure-living-missing-ceiling-roof.xml' => ['There must be at least one ceiling/roof adjacent to conditioned space. [context: /HPXML/Building/BuildingDetails/Enclosure[*/*[InteriorAdjacentTo="living space"]]]', + 'There must be at least one floor adjacent to "attic - unvented". [context: /HPXML/Building/BuildingDetails/Enclosure[*/*[InteriorAdjacentTo="attic - unvented" or ExteriorAdjacentTo="attic - unvented"]]]'], + 'enclosure-living-missing-exterior-wall.xml' => ['There must be at least one exterior wall adjacent to conditioned space. [context: /HPXML/Building/BuildingDetails/Enclosure[*/*[InteriorAdjacentTo="living space"]]]'], + 'enclosure-living-missing-floor-slab.xml' => ['There must be at least one floor/slab adjacent to conditioned space. [context: /HPXML/Building/BuildingDetails/Enclosure[*/*[InteriorAdjacentTo="living space"]]]'], + 'frac-sensible-plug-load.xml' => ['Expected extension/FracSensible to be greater than or equal to 0 [context: /HPXML/Building/BuildingDetails/MiscLoads/PlugLoad[PlugLoadType="other" or PlugLoadType="TV other" or PlugLoadType="electric vehicle charging" or PlugLoadType="well pump"]]'], + 'frac-total-plug-load.xml' => ['Expected sum of extension/FracSensible and extension/FracLatent to be less than or equal to 1 [context: /HPXML/Building/BuildingDetails/MiscLoads/PlugLoad[PlugLoadType="other" or PlugLoadType="TV other" or PlugLoadType="electric vehicle charging" or PlugLoadType="well pump"]]'], + 'frac-sensible-fuel-load.xml' => ['Expected extension/FracSensible to be greater than or equal to 0 [context: /HPXML/Building/BuildingDetails/MiscLoads/FuelLoad[FuelLoadType="grill" or FuelLoadType="lighting" or FuelLoadType="fireplace"]]'], + 'frac-total-fuel-load.xml' => ['Expected sum of extension/FracSensible and extension/FracLatent to be less than or equal to 1 [context: /HPXML/Building/BuildingDetails/MiscLoads/FuelLoad[FuelLoadType="grill" or FuelLoadType="lighting" or FuelLoadType="fireplace"]]'], + 'furnace-invalid-afue.xml' => ['Expected AnnualHeatingEfficiency[Units="AFUE"]/Value to be less than or equal to 1'], + 'generator-output-greater-than-consumption.xml' => ['Expected AnnualConsumptionkBtu to be greater than AnnualOutputkWh*3412 [context: /HPXML/Building/BuildingDetails/Systems/extension/Generators/Generator]'], + 'generator-number-of-bedrooms-served.xml' => ['Expected NumberofBedroomsServed to be greater than ../../../../BuildingSummary/BuildingConstruction/NumberofBedrooms [context: /HPXML/Building/BuildingDetails/Systems/extension/Generators/Generator[IsSharedSystem="true"]]'], + 'heat-pump-mixed-fixed-and-autosize-capacities.xml' => ['Expected 0 or 2 element(s) for xpath: HeatingCapacity | BackupHeatingCapacity [context: /HPXML/Building/BuildingDetails/Systems/HVAC/HVACPlant/HeatPump[BackupSystemFuel]]'], 'hvac-invalid-distribution-system-type.xml' => ["Incorrect HVAC distribution system type for HVAC type: 'Furnace'. Should be one of: ["], 'hvac-distribution-multiple-attached-cooling.xml' => ["Multiple cooling systems found attached to distribution system 'HVACDistribution2'."], 'hvac-distribution-multiple-attached-heating.xml' => ["Multiple heating systems found attached to distribution system 'HVACDistribution'."], @@ -184,14 +187,12 @@ def test_invalid 'hvac-dse-multiple-attached-heating.xml' => ["Multiple heating systems found attached to distribution system 'HVACDistribution'."], 'hvac-frac-load-served.xml' => ['Expected FractionCoolLoadServed to sum to <= 1, but calculated sum is 1.2.', 'Expected FractionHeatLoadServed to sum to <= 1, but calculated sum is 1.1.'], - 'hvac-distribution-return-duct-leakage-missing.xml' => ["Return ducts exist but leakage was not specified for distribution system 'HVACDistribution'."], - 'hvac-inconsistent-fan-powers.xml' => ["Fan powers for heating system 'HeatingSystem' and cooling system 'CoolingSystem' must be the same."], - 'invalid-datatype-boolean.xml' => ["Cannot convert 'FOOBAR' to boolean."], - 'invalid-datatype-boolean2.xml' => ["Cannot convert '' to boolean."], - 'invalid-datatype-integer.xml' => ["Cannot convert '2.5' to integer."], - 'invalid-datatype-integer2.xml' => ["Cannot convert '' to integer."], - 'invalid-datatype-float.xml' => ["Cannot convert 'FOOBAR' to float."], - 'invalid-datatype-float2.xml' => ["Cannot convert '' to float."], + 'hvac-distribution-return-duct-leakage-missing.xml' => ['Expected 1 element(s) for xpath: DuctLeakageMeasurement[DuctType="return"]/DuctLeakage[(Units="CFM25" or Units="Percent") and TotalOrToOutside="to outside"] [context: /HPXML/Building/BuildingDetails/Systems/HVAC/HVACDistribution/DistributionSystemType/AirDistribution]'], + 'hvac-inconsistent-fan-powers.xml' => ["Fan powers for heating system 'HeatingSystem' and cooling system 'CoolingSystem' are attached to a single distribution system and therefore must be the same."], + 'invalid-assembly-effective-rvalue.xml' => ['Expected Insulation/AssemblyEffectiveRValue to be greater than 0 [context: /HPXML/Building/BuildingDetails/Enclosure/Walls/Wall]'], + 'invalid-datatype-boolean.xml' => ["Cannot convert 'FOOBAR' to boolean for Roof/RadiantBarrier."], + 'invalid-datatype-integer.xml' => ["Cannot convert '2.5' to integer for BuildingConstruction/NumberofBedrooms."], + 'invalid-datatype-float.xml' => ["Cannot convert 'FOOBAR' to float for Slab/extension/CarpetFraction."], 'invalid-daylight-saving.xml' => ['Daylight Saving End Day of Month (31) must be one of: 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30.'], 'invalid-distribution-cfa-served.xml' => ['The total conditioned floor area served by the HVAC distribution system(s) for heating is larger than the conditioned floor area of the building.', 'The total conditioned floor area served by the HVAC distribution system(s) for cooling is larger than the conditioned floor area of the building.'], @@ -205,6 +206,12 @@ def test_invalid "The building is of type 'single-family detached' but the surface 'FoundationWallOther' is adjacent to Attached/Multifamily space 'other housing unit'.", "The building is of type 'single-family detached' but the surface 'FloorOther' is adjacent to Attached/Multifamily space 'other housing unit'.", "The building is of type 'single-family detached' but the surface 'CeilingOther' is adjacent to Attached/Multifamily space 'other housing unit'."], + 'invalid-foundation-wall-properties.xml' => ['Expected DepthBelowGrade to be less than or equal to Height [context: /HPXML/Building/BuildingDetails/Enclosure/FoundationWalls/FoundationWall]', + 'Expected extension/DistanceToBottomOfInsulation to be greater than or equal to extension/DistanceToTopOfInsulation [context: /HPXML/Building/BuildingDetails/Enclosure/FoundationWalls/FoundationWall/Insulation/Layer[InstallationType="continuous - exterior" or InstallationType="continuous - interior"]]', + 'Expected extension/DistanceToBottomOfInsulation to be less than or equal to ../../Height [context: /HPXML/Building/BuildingDetails/Enclosure/FoundationWalls/FoundationWall/Insulation/Layer[InstallationType="continuous - exterior" or InstallationType="continuous - interior"]]'], + 'invalid-id.xml' => ["Empty SystemIdentifier ID ('') detected for skylights."], + 'invalid-id2.xml' => ['Expected id attribute for SystemIdentifier [context: /HPXML/Building/BuildingDetails/Enclosure/Skylights/Skylight]'], + 'invalid-infiltration-volume.xml' => ['Expected InfiltrationVolume to be greater than or equal to ../../../BuildingSummary/BuildingConstruction/ConditionedBuildingVolume [context: /HPXML/Building/BuildingDetails/Enclosure/AirInfiltration/AirInfiltrationMeasurement[BuildingAirLeakage/UnitofMeasure[text()="ACH" or text()="CFM"]]]'], 'invalid-input-parameters.xml' => ["Expected Transaction to be 'create' or 'update' [context: /HPXML/XMLTransactionHeaderInformation]", "Expected SiteType to be 'rural' or 'suburban' or 'urban' [context: /HPXML/Building/BuildingDetails/BuildingSummary/Site]", "Expected Year to be '2012' or '2009' or '2006' or '2003' [context: /HPXML/Building/BuildingDetails/ClimateandRiskZones/ClimateZoneIECC]", @@ -212,30 +219,38 @@ def test_invalid 'Expected RadiantBarrierGrade to be less than or equal to 3 [context: /HPXML/Building/BuildingDetails/Enclosure/Roofs/Roof]', 'Expected EnergyFactor to be less than or equal to 5 [context: /HPXML/Building/BuildingDetails/Appliances/Dishwasher]'], 'invalid-neighbor-shading-azimuth.xml' => ['A neighbor building has an azimuth (145) not equal to the azimuth of any wall.'], + 'invalid-number-of-bedrooms-served.xml' => ['Expected extension/NumberofBedroomsServed to be greater than ../../../BuildingSummary/BuildingConstruction/NumberofBedrooms [context: /HPXML/Building/BuildingDetails/Systems/Photovoltaics/PVSystem[IsSharedSystem="true"]]'], + 'invalid-number-of-conditioned-floors.xml' => ['Expected NumberofConditionedFloors to be greater than or equal to NumberofConditionedFloorsAboveGrade [context: /HPXML/Building/BuildingDetails/BuildingSummary/BuildingConstruction]'], + 'invalid-number-of-units-served.xml' => ['Expected NumberofUnitsServed to be greater than 1 [context: /HPXML/Building/BuildingDetails/Systems/WaterHeating/WaterHeatingSystem[IsSharedSystem="true"]]'], 'invalid-relatedhvac-dhw-indirect.xml' => ["RelatedHVACSystem 'HeatingSystem_bad' not found for water heating system 'WaterHeater'"], 'invalid-relatedhvac-desuperheater.xml' => ["RelatedHVACSystem 'CoolingSystem_bad' not found for water heating system 'WaterHeater'."], 'invalid-schema-version.xml' => ['HPXML version 3.0 is required.'], + 'invalid-shared-vent-in-unit-flowrate.xml' => ['Expected extension/InUnitFlowRate to be less than RatedFlowRate [context: /HPXML/Building/BuildingDetails/Systems/MechanicalVentilation/VentilationFans/VentilationFan[UsedForWholeBuildingVentilation="true" and IsSharedSystem="true"]]'], 'invalid-timestep.xml' => ['Timestep (45) must be one of: 60, 30, 20, 15, 12, 10, 6, 5, 4, 3, 2, 1.'], 'invalid-runperiod.xml' => ['Run Period End Day of Month (31) must be one of: 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30.'], - 'invalid-window-height.xml' => ["For Window 'WindowEast', overhangs distance to bottom (2.0) must be greater than distance to top (2.0)."], + 'invalid-window-height.xml' => ['Expected DistanceToBottomOfWindow to be greater than DistanceToTopOfWindow [context: /HPXML/Building/BuildingDetails/Enclosure/Windows/Window/Overhangs]'], 'lighting-fractions.xml' => ['Sum of fractions of interior lighting (1.15) is greater than 1.'], - 'mismatched-slab-and-foundation-wall.xml' => ["Foundation wall 'FoundationWall' is adjacent to 'basement - conditioned' but no corresponding slab was found adjacent to"], 'missing-elements.xml' => ['Expected 1 element(s) for xpath: NumberofConditionedFloors [context: /HPXML/Building/BuildingDetails/BuildingSummary/BuildingConstruction]', 'Expected 1 element(s) for xpath: ConditionedFloorArea [context: /HPXML/Building/BuildingDetails/BuildingSummary/BuildingConstruction]'], - 'missing-duct-location.xml' => ['Expected 0 or 2 element(s) for xpath: DuctSurfaceArea | DuctLocation [context: /HPXML/Building/BuildingDetails/Systems/HVAC/HVACDistribution/DistributionSystemType/*/Ducts[DuctType="supply" or DuctType="return"]]'], - 'missing-duct-location-and-surface-area.xml' => ['Error: The location and surface area of all ducts must be provided or blank.'], + 'missing-duct-location.xml' => ['Expected 0 or 2 element(s) for xpath: DuctSurfaceArea | DuctLocation [context: /HPXML/Building/BuildingDetails/Systems/HVAC/HVACDistribution/DistributionSystemType/*/Ducts]'], 'multifamily-reference-appliance.xml' => ["The building is of type 'single-family detached' but"], 'multifamily-reference-duct.xml' => ["The building is of type 'single-family detached' but"], 'multifamily-reference-surface.xml' => ["The building is of type 'single-family detached' but"], 'multifamily-reference-water-heater.xml' => ["The building is of type 'single-family detached' but"], + 'multiple-buildings-without-building-id.xml' => ['Multiple Building elements defined in HPXML file; Building ID argument must be provided.'], + 'multiple-buildings-wrong-building-id.xml' => ["Could not find Building element with ID 'MyFoo'."], + 'multiple-shared-cooling-systems.xml' => ['More than one shared cooling system found.'], + 'multiple-shared-heating-systems.xml' => ['More than one shared heating system found.'], 'net-area-negative-wall.xml' => ["Calculated a negative net surface area for surface 'Wall'."], 'net-area-negative-roof.xml' => ["Calculated a negative net surface area for surface 'Roof'."], - 'num-bedrooms-exceeds-limit.xml' => ['Number of bedrooms (40) exceeds limit of (CFA-120)/70=36.9.'], + 'num-bedrooms-exceeds-limit.xml' => ['Expected NumberofBedrooms to be less than or equal to (ConditionedFloorArea-120)/70 [context: /HPXML/Building/BuildingDetails/BuildingSummary/BuildingConstruction]'], 'orphaned-hvac-distribution.xml' => ["Distribution system 'HVACDistribution' found but no HVAC system attached to it."], - 'refrigerator-location.xml' => ["Refrigerator location is 'garage' but building does not have this location specified."], + 'refrigerator-location.xml' => ['A location is specified as "garage" but no surfaces were found adjacent to this space type.'], + 'refrigerators-multiple-primary.xml' => ['More than one refrigerator designated as the primary.'], + 'refrigerators-no-primary.xml' => ['Could not find a primary refrigerator.'], 'repeated-relatedhvac-dhw-indirect.xml' => ["RelatedHVACSystem 'HeatingSystem' is attached to multiple water heating systems."], 'repeated-relatedhvac-desuperheater.xml' => ["RelatedHVACSystem 'CoolingSystem' is attached to multiple water heating systems."], - 'slab-zero-exposed-perimeter.xml' => ["Exposed perimeter for Slab 'Slab' must be greater than zero."], + 'slab-zero-exposed-perimeter.xml' => ['Expected ExposedPerimeter to be greater than 0 [context: /HPXML/Building/BuildingDetails/Enclosure/Slabs/Slab]'], 'solar-thermal-system-with-combi-tankless.xml' => ["Water heating system 'WaterHeater' connected to solar thermal system 'SolarThermalSystem' cannot be a space-heating boiler."], 'solar-thermal-system-with-desuperheater.xml' => ["Water heating system 'WaterHeater' connected to solar thermal system 'SolarThermalSystem' cannot be attached to a desuperheater."], 'solar-thermal-system-with-dhw-indirect.xml' => ["Water heating system 'WaterHeater' connected to solar thermal system 'SolarThermalSystem' cannot be a space-heating boiler."], @@ -247,14 +262,13 @@ def test_invalid 'unattached-shared-clothes-washer-water-heater.xml' => ["Attached water heating system 'foobar' not found for clothes washer"], 'unattached-shared-dishwasher-water-heater.xml' => ["Attached water heating system 'foobar' not found for dishwasher"], 'unattached-window.xml' => ["Attached wall 'foobar' not found for window 'WindowNorth'."], - 'water-heater-location.xml' => ["WaterHeatingSystem location is 'crawlspace - vented' but building does not have this location specified."], - 'water-heater-location-other.xml' => ["Expected Location to be 'living space' or 'basement - unconditioned' or 'basement - conditioned' or 'attic - unvented' or 'attic - vented' or 'garage' or 'crawlspace - unvented' or 'crawlspace - vented' or 'other exterior' or 'other housing unit' or 'other heated space' or 'other multifamily buffer space' or 'other non-freezing space' [context: /HPXML/Building/BuildingDetails/Systems/WaterHeating/WaterHeatingSystem]"], - 'refrigerators-multiple-primary.xml' => ['More than one refrigerator designated as the primary.'], - 'refrigerators-no-primary.xml' => ['Could not find a primary refrigerator.'] } + 'water-heater-location.xml' => ['A location is specified as "crawlspace - vented" but no surfaces were found adjacent to this space type.'], + 'water-heater-location-other.xml' => ["Expected Location to be 'living space' or 'basement - unconditioned' or 'basement - conditioned' or 'attic - unvented' or 'attic - vented' or 'garage' or 'crawlspace - unvented' or 'crawlspace - vented' or 'other exterior' or 'other housing unit' or 'other heated space' or 'other multifamily buffer space' or 'other non-freezing space' [context: /HPXML/Building/BuildingDetails/Systems/WaterHeating/WaterHeatingSystem]"] } # Test simulations - Dir["#{sample_files_dir}/invalid_files/*.xml"].sort.each do |xml| - _run_xml(File.absolute_path(xml), true, expected_error_msgs[File.basename(xml)]) + xmls = Dir["#{sample_files_dir}/invalid_files/*.xml"].sort + Parallel.map(xmls, in_threads: Parallel.processor_count) do |xml| + _run_xml(File.absolute_path(xml), Parallel.worker_number, true, expected_error_msgs[File.basename(xml)]) end end @@ -277,58 +291,25 @@ def test_release_zips end end - def _run_xml(xml, expect_error = false, expect_error_msgs = nil) + def _run_xml(xml, worker_num = nil, expect_error = false, expect_error_msgs = nil) print "Testing #{File.basename(xml)}...\n" - rundir = File.join(@this_dir, 'run') - - measures_dir = File.join(@this_dir, '..', '..') - - measures = {} + rundir = File.join(@this_dir, "test#{worker_num}") - # Add HPXML translator measure to workflow - measure_subdir = 'HPXMLtoOpenStudio' - args = {} - args['hpxml_path'] = xml - args['output_dir'] = File.absolute_path(rundir) - args['debug'] = true - update_args_hash(measures, measure_subdir, args) - - # Add reporting measure to workflow # Uses 'monthly' to verify timeseries results match annual results via error-checking # inside the SimulationOutputReport measure. - measure_subdir = 'SimulationOutputReport' - args = {} - args['timeseries_frequency'] = 'monthly' - args['include_timeseries_fuel_consumptions'] = true - args['include_timeseries_end_use_consumptions'] = true - args['include_timeseries_hot_water_uses'] = true - args['include_timeseries_total_loads'] = true - args['include_timeseries_component_loads'] = true - args['include_timeseries_zone_temperatures'] = true - args['include_timeseries_airflows'] = true - args['include_timeseries_weather'] = true - update_args_hash(measures, measure_subdir, args) - - # Add output variables for combi system energy check and CFIS - output_vars = [['Water Heater Source Side Heat Transfer Energy', 'runperiod', '*'], - ['Baseboard Total Heating Energy', 'runperiod', '*'], - ['Boiler Heating Energy', 'runperiod', '*'], - ['Fluid Heat Exchanger Heat Transfer Energy', 'runperiod', '*'], - ['Fan Electricity Rate', 'runperiod', '*'], - ['Fan Runtime Fraction', 'runperiod', '*'], - ['Electric Equipment Electricity Energy', 'runperiod', Constants.ObjectNameMechanicalVentilationHouseFanCFIS]] - - # Run workflow + cli_path = OpenStudio.getOpenStudioCLI + building_id = '' + if xml.include? 'base-multiple-buildings.xml' + building_id = '--building-id MyBuilding' + elsif xml.include? 'multiple-buildings-wrong-building-id.xml' + building_id = '--building-id MyFoo' + end + command = "\"#{cli_path}\" \"#{File.join(File.dirname(__FILE__), '../run_simulation.rb')}\" -x #{xml} -o #{rundir} --debug --monthly ALL #{building_id}" workflow_start = Time.now - results = run_hpxml_workflow(rundir, xml, measures, measures_dir, - debug: true, output_vars: output_vars, - run_measures_only: expect_error) - workflow_time = (Time.now - workflow_start).round(1) - success = results[:success] - runner = results[:runner] - sim_time = results[:sim_time] - puts "Completed in #{workflow_time} seconds." - puts + success = system(command) + workflow_time = Time.now - workflow_start + + rundir = File.join(rundir, 'run') # Check results if expect_error @@ -357,7 +338,6 @@ def _run_xml(xml, expect_error = false, expect_error_msgs = nil) return end - show_output(runner.result) unless success assert_equal(true, success) # Check for output files @@ -367,16 +347,26 @@ def _run_xml(xml, expect_error = false, expect_error_msgs = nil) assert(File.exist? timeseries_csv_path) # Get results - results = _get_results(rundir, sim_time, workflow_time, annual_csv_path, xml) - sizing_results = _get_sizing_results(rundir) + results = _get_results(rundir, workflow_time, annual_csv_path, xml) # Check outputs - _verify_outputs(runner, rundir, xml, results) + hpxml_defaults_path = File.join(rundir, 'in.xml') + stron_paths = [File.join(File.dirname(__FILE__), '..', '..', 'HPXMLtoOpenStudio', 'resources', 'EPvalidator.xml')] + hpxml = HPXML.new(hpxml_path: hpxml_defaults_path, schematron_validators: stron_paths) # Validate in.xml to ensure it can be run back through OS-HPXML + if not hpxml.errors.empty? + puts 'ERRORS:' + hpxml.errors.each do |error| + puts error + end + flunk "EPvalidator.xml error in #{hpxml_defaults_path}." + end + sizing_results = _get_sizing_results(hpxml, xml) + _verify_outputs(rundir, xml, results, hpxml) return results, sizing_results end - def _get_results(rundir, sim_time, workflow_time, annual_csv_path, xml) + def _get_results(rundir, workflow_time, annual_csv_path, xml) # Grab all outputs from reporting measure CSV annual results results = {} CSV.foreach(annual_csv_path) do |row| @@ -385,35 +375,6 @@ def _get_results(rundir, sim_time, workflow_time, annual_csv_path, xml) results[row[0]] = Float(row[1]) end - sql_path = File.join(rundir, 'eplusout.sql') - sqlFile = OpenStudio::SqlFile.new(sql_path, false) - - # Obtain HVAC capacities - # TODO: Add to reporting measure? - htg_cap_w = 0 - for spd in [4, 2] - # Get capacity of highest speed for multi-speed coil - query = "SELECT SUM(Value) FROM ComponentSizes WHERE CompType='Coil:Heating:DX:MultiSpeed' AND Description LIKE '%User-Specified Speed #{spd}%Capacity' AND Units='W'" - htg_cap_w += sqlFile.execAndReturnFirstDouble(query).get - break if htg_cap_w > 0 - end - query = "SELECT SUM(Value) FROM ComponentSizes WHERE ((CompType LIKE 'Coil:Heating:%' OR CompType LIKE 'Boiler:%' OR CompType LIKE 'ZONEHVAC:BASEBOARD:%') AND CompType!='Coil:Heating:DX:MultiSpeed') AND Description LIKE '%User-Specified%Capacity' AND Units='W'" - htg_cap_w += sqlFile.execAndReturnFirstDouble(query).get - results['Capacity: Heating (W)'] = htg_cap_w - - clg_cap_w = 0 - for spd in [4, 2] - # Get capacity of highest speed for multi-speed coil - query = "SELECT SUM(Value) FROM ComponentSizes WHERE CompType='Coil:Cooling:DX:MultiSpeed' AND Description LIKE 'User-Specified Speed #{spd}%Total%Capacity' AND Units='W'" - clg_cap_w += sqlFile.execAndReturnFirstDouble(query).get - break if clg_cap_w > 0 - end - query = "SELECT SUM(Value) FROM ComponentSizes WHERE CompType LIKE 'Coil:Cooling:%' AND CompType!='Coil:Cooling:DX:MultiSpeed' AND Description LIKE '%User-Specified%Total%Capacity' AND Units='W'" - clg_cap_w += sqlFile.execAndReturnFirstDouble(query).get - results['Capacity: Cooling (W)'] = clg_cap_w - - sqlFile.close - # Check discrepancy between total load and sum of component loads if not xml.include? 'ASHRAE_Standard_140' sum_component_htg_loads = results.select { |k, v| k.start_with? 'Component Load: Heating:' }.map { |k, v| v }.sum(0.0) @@ -424,38 +385,81 @@ def _get_results(rundir, sim_time, workflow_time, annual_csv_path, xml) assert_operator(residual_clg_load.abs, :<, 0.5) end - results[@@simulation_runtime_key] = sim_time results[@@workflow_runtime_key] = workflow_time return results end - def _get_sizing_results(rundir) + def _get_sizing_results(hpxml, xml) results = {} - File.readlines(File.join(rundir, 'run.log')).each do |s| - next unless s.start_with?('Heat ') || s.start_with?('Cool ') - next unless s.include? '=' - - vals = s.split('=') - prop = vals[0].strip - vals = vals[1].split(' ') - value = Float(vals[0].strip) - prop += " [#{vals[1].strip}]" # add units - results[prop] = 0.0 if results[prop].nil? - results[prop] += value + return if xml.include? 'ASHRAE_Standard_140' + + # Heating design loads + hpxml.hvac_plant.class::HDL_ATTRS.each do |attr, element_name| + results["heating_load_#{attr.to_s.gsub('hdl_', '')} [Btuh]"] = hpxml.hvac_plant.send(attr.to_s) + end + + # Cooling sensible design loads + hpxml.hvac_plant.class::CDL_SENS_ATTRS.each do |attr, element_name| + results["cooling_load_#{attr.to_s.gsub('cdl_', '')} [Btuh]"] = hpxml.hvac_plant.send(attr.to_s) + end + + # Cooling latent design loads + hpxml.hvac_plant.class::CDL_LAT_ATTRS.each do |attr, element_name| + results["cooling_load_#{attr.to_s.gsub('cdl_', '')} [Btuh]"] = hpxml.hvac_plant.send(attr.to_s) + end + + # Heating capacities/airflows + results['heating_capacity [Btuh]'] = 0.0 + results['heating_backup_capacity [Btuh]'] = 0.0 + results['heating_airflow [cfm]'] = 0.0 + (hpxml.heating_systems + hpxml.heat_pumps).each do |htg_sys| + results['heating_capacity [Btuh]'] += htg_sys.heating_capacity + if htg_sys.respond_to? :backup_heating_capacity + results['heating_backup_capacity [Btuh]'] += htg_sys.backup_heating_capacity + end + results['heating_airflow [cfm]'] += htg_sys.heating_airflow_cfm + end + + # Cooling capacity/airflows + results['cooling_capacity [Btuh]'] = 0.0 + results['cooling_airflow [cfm]'] = 0.0 + (hpxml.cooling_systems + hpxml.heat_pumps).each do |clg_sys| + results['cooling_capacity [Btuh]'] += clg_sys.cooling_capacity + results['cooling_airflow [cfm]'] += clg_sys.cooling_airflow_cfm end + assert(!results.empty?) + + if (hpxml.heating_systems + hpxml.heat_pumps).select { |h| h.fraction_heat_load_served.to_f > 0 }.empty? + # No heating equipment; check for zero heating capacities/airflows/duct loads + assert_equal(0.0, results['heating_capacity [Btuh]']) + assert_equal(0.0, results['heating_backup_capacity [Btuh]']) + assert_equal(0.0, results['heating_airflow [cfm]']) + assert_equal(0.0, results['heating_load_ducts [Btuh]']) + end + if (hpxml.cooling_systems + hpxml.heat_pumps).select { |c| c.fraction_cool_load_served.to_f > 0 }.empty? + # No cooling equipment; check for zero cooling capacities/airflows/duct loads + assert_equal(0.0, results['cooling_capacity [Btuh]']) + assert_equal(0.0, results['cooling_airflow [cfm]']) + assert_equal(0.0, results['cooling_load_sens_ducts [Btuh]']) + assert_equal(0.0, results['cooling_load_lat_ducts [Btuh]']) + end + if hpxml.hvac_distributions.map { |dist| dist.ducts.size }.empty? + # No ducts; check for zero duct loads + assert_equal(0.0, results['heating_load_ducts [Btuh]']) + assert_equal(0.0, results['cooling_load_sens_ducts [Btuh]']) + assert_equal(0.0, results['cooling_load_lat_ducts [Btuh]']) + end + return results end - def _verify_outputs(runner, rundir, hpxml_path, results) + def _verify_outputs(rundir, hpxml_path, results, hpxml) sql_path = File.join(rundir, 'eplusout.sql') assert(File.exist? sql_path) sqlFile = OpenStudio::SqlFile.new(sql_path, false) - hpxml_defaults_path = File.join(rundir, 'in.xml') - hpxml = HPXML.new(hpxml_path: hpxml_defaults_path) - HVAC.apply_shared_systems(hpxml) # Collapse windows further using same logic as measure.rb hpxml.windows.each do |window| @@ -469,10 +473,11 @@ def _verify_outputs(runner, rundir, hpxml_path, results) next if log_line.include? 'Warning: Could not load nokogiri, no HPXML validation performed.' next if log_line.start_with? 'Info: ' next if log_line.start_with? 'Executing command' - next if (log_line.start_with?('Heat ') || log_line.start_with?('Cool ')) && log_line.include?('=') next if log_line.include? "-cache.csv' could not be found; regenerating it." - next if log_line.include?('Warning: HVACDistribution') && log_line.include?('has ducts entirely within conditioned space but there is non-zero leakage to the outside.') + if hpxml_path.include? 'base-atticroof-conditioned.xml' + next if log_line.include?('Ducts are entirely within conditioned space but there is moderate leakage to the outside. Leakage to the outside is typically zero or near-zero in these situations, consider revising leakage values. Leakage will be modeled as heat lost to the ambient environment.') + end if hpxml.clothes_washers.empty? next if log_line.include? 'No clothes washer specified, the model will not include clothes washer energy use.' end @@ -489,13 +494,13 @@ def _verify_outputs(runner, rundir, hpxml_path, results) next if log_line.include? 'No cooking range specified, the model will not include cooking range/oven energy use.' end if hpxml.water_heating_systems.empty? - next if log_line.include? 'No water heater specified, the model will not include water heating energy use.' + next if log_line.include? 'No water heating specified, the model will not include water heating energy use.' end if (hpxml.heating_systems + hpxml.heat_pumps).select { |h| h.fraction_heat_load_served.to_f > 0 }.empty? - next if log_line.include? 'No heating system specified, the model will not include space heating energy use.' + next if log_line.include? 'No space heating specified, the model will not include space heating energy use.' end if (hpxml.cooling_systems + hpxml.heat_pumps).select { |c| c.fraction_cool_load_served.to_f > 0 }.empty? - next if log_line.include? 'No cooling system specified, the model will not include space cooling energy use.' + next if log_line.include? 'No space cooling specified, the model will not include space cooling energy use.' end if hpxml.plug_loads.select { |p| p.plug_load_type == HPXML::PlugLoadTypeOther }.empty? next if log_line.include? "No '#{HPXML::PlugLoadTypeOther}' plug loads specified, the model will not include misc plug load energy use." @@ -506,6 +511,9 @@ def _verify_outputs(runner, rundir, hpxml_path, results) if hpxml.lighting_groups.empty? next if log_line.include? 'No lighting specified, the model will not include lighting energy use.' end + if hpxml.windows.empty? + next if log_line.include? 'No windows specified, the model will not include window heat transfer.' + end flunk "Unexpected warning found in run.log: #{log_line}" end @@ -567,10 +575,19 @@ def _verify_outputs(runner, rundir, hpxml_path, results) if hpxml.cooling_systems.select { |c| c.cooling_system_type == HPXML::HVACTypeRoomAirConditioner }.size > 0 next if err_line.include? 'GetDXCoils: Coil:Cooling:DX:SingleSpeed="ROOM AC CLG COIL" curve values' # TODO: Double-check Room AC curves end - if hpxml.hvac_distributions.select { |d| d.hydronic_and_air_type.to_s == HPXML::HydronicAndAirTypeFanCoil }.size > 0 + if hpxml.hvac_distributions.select { |d| d.air_type.to_s == HPXML::AirTypeFanCoil }.size > 0 next if err_line.include? 'In calculating the design coil UA for Coil:Cooling:Water' # Warning for unused cooling coil for fan coil end - if hpxml_path.include?('base-schedules-stochastic.xml') || hpxml_path.include?('base-schedules-user-specified.xml') + if hpxml_path.include?('ASHRAE_Standard_140') || (hpxml.windows.size == 0) + next if err_line.include? 'GetShadowingInput: DetailedSkyDiffuseModeling is chosen but not needed' + end + if hpxml_path.include? 'base-enclosure-split-surfaces2.xml' + next if err_line.include? 'GetSurfaceData: Very small surface area' # FUTURE: Prevent this warning + end + if hpxml_path.include?('ground-to-air-heat-pump-cooling-only.xml') || hpxml_path.include?('ground-to-air-heat-pump-heating-only.xml') + next if err_line.include? 'COIL:HEATING:WATERTOAIRHEATPUMP:EQUATIONFIT' # heating capacity is > 20% different than cooling capacity; safe to ignore + end + if hpxml_path.include?('base-schedules-stochastic.xml') || hpxml_path.include?('base-schedules-stochastic-vacant.xml') || hpxml_path.include?('base-schedules-user-specified.xml') next if err_line.include?('GetCurrentScheduleValue: Schedule=') && err_line.include?('is a Schedule:File') end @@ -665,9 +682,11 @@ def _verify_outputs(runner, rundir, hpxml_path, results) num_expected_kiva_instances = { 'base-foundation-ambient.xml' => 0, # no foundation in contact w/ ground 'base-foundation-multiple.xml' => 2, # additional instance for 2nd foundation type 'base-enclosure-2stories-garage.xml' => 2, # additional instance for garage + 'base-foundation-basement-garage.xml' => 2, # additional instance for garage 'base-enclosure-garage.xml' => 2, # additional instance for garage 'base-foundation-walkout-basement.xml' => 4, # 3 foundation walls plus a no-wall exposed perimeter - 'base-foundation-complex.xml' => 10 } # lots of foundations for testing + 'base-foundation-complex.xml' => 10, # lots of foundations for testing + 'base-enclosure-split-surfaces2.xml' => 81 } # lots of foundations for testing if not num_expected_kiva_instances[File.basename(hpxml_path)].nil? assert_equal(num_expected_kiva_instances[File.basename(hpxml_path)], num_kiva_instances) @@ -982,154 +1001,14 @@ def _verify_outputs(runner, rundir, hpxml_path, results) assert_in_epsilon(hpxml_value, sql_value, 0.02) end - # HVAC Heating Systems - hpxml.heating_systems.each do |heating_system| - next unless heating_system.fraction_heat_load_served > 0 - next unless hpxml.heating_systems.size == 1 - - next unless (not heating_system.fan_watts.nil?) || (not heating_system.fan_watts_per_cfm.nil?) - # Compare fan power from timeseries output - next if hpxml.cooling_systems.size + hpxml.heat_pumps.size > 0 # Skip if other system types (which could result in A) multiple supply fans or B) different supply fan power consumption in the cooling season) - - if not heating_system.fan_watts.nil? - hpxml_value = heating_system.fan_watts - else - query = "SELECT SUM(Value) FROM ComponentSizes WHERE Description='User-Specified Heating Supply Air Flow Rate'" - heating_cfm = UnitConversions.convert(sqlFile.execAndReturnFirstDouble(query).get, 'm^3/s', 'cfm') - hpxml_value = heating_system.fan_watts_per_cfm * heating_cfm - end - query = "SELECT SUM(VariableValue) FROM ReportVariableData WHERE ReportVariableDataDictionaryIndex IN (SELECT ReportVariableDataDictionaryIndex FROM ReportVariableDataDictionary WHERE VariableType='Avg' AND VariableName='Fan Runtime Fraction' AND ReportingFrequency='Run Period')" - avg_rtf = sqlFile.execAndReturnFirstDouble(query).get - query = "SELECT SUM(VariableValue) FROM ReportVariableData WHERE ReportVariableDataDictionaryIndex IN (SELECT ReportVariableDataDictionaryIndex FROM ReportVariableDataDictionary WHERE VariableType='Avg' AND VariableName='Fan Electricity Rate' AND ReportingFrequency='Run Period')" - avg_w = sqlFile.execAndReturnFirstDouble(query).get - sql_value = avg_w / avg_rtf - assert_in_epsilon(sql_value, hpxml_value, 0.01) - end - - # HVAC Cooling Systems - hpxml.cooling_systems.each do |cooling_system| - next unless cooling_system.fraction_cool_load_served > 0 - next unless hpxml.cooling_systems.size == 1 - next unless not cooling_system.fan_watts_per_cfm.nil? - next if hpxml.heating_systems.size + hpxml.heat_pumps.size > 0 # Skip if other system types (which could result in A) multiple supply fans or B) different supply fan power consumption in the heating season) - next unless cooling_system.compressor_type == HPXML::HVACCompressorTypeSingleStage - - # Compare fan power from timeseries output - query = "SELECT SUM(Value) FROM ComponentSizes WHERE Description='User-Specified Cooling Supply Air Flow Rate'" - cooling_cfm = UnitConversions.convert(sqlFile.execAndReturnFirstDouble(query).get, 'm^3/s', 'cfm') - hpxml_value = cooling_system.fan_watts_per_cfm * cooling_cfm - query = "SELECT SUM(VariableValue) FROM ReportVariableData WHERE ReportVariableDataDictionaryIndex IN (SELECT ReportVariableDataDictionaryIndex FROM ReportVariableDataDictionary WHERE VariableType='Avg' AND VariableName='Fan Runtime Fraction' AND ReportingFrequency='Run Period')" - avg_rtf = sqlFile.execAndReturnFirstDouble(query).get - query = "SELECT SUM(VariableValue) FROM ReportVariableData WHERE ReportVariableDataDictionaryIndex IN (SELECT ReportVariableDataDictionaryIndex FROM ReportVariableDataDictionary WHERE VariableType='Avg' AND VariableName='Fan Electricity Rate' AND ReportingFrequency='Run Period')" - avg_w = sqlFile.execAndReturnFirstDouble(query).get - sql_value = avg_w / avg_rtf - assert_in_epsilon(sql_value, hpxml_value, 0.01) - end - - # HVAC Capacities - htg_cap = nil - clg_cap = nil - hpxml.heating_systems.each do |heating_system| - htg_sys_cap = heating_system.heating_capacity.to_f - if htg_sys_cap > 0 - htg_cap = 0 if htg_cap.nil? - htg_cap += htg_sys_cap - end - end - hpxml.cooling_systems.each do |cooling_system| - clg_sys_cap = cooling_system.cooling_capacity.to_f - clg_cap_mult = 1.0 - if cooling_system.cooling_system_type == HPXML::HVACTypeMiniSplitAirConditioner - # TODO: Generalize this - clg_cap_mult = 1.20 - end - if clg_sys_cap > 0 - clg_cap = 0 if clg_cap.nil? - clg_cap += (clg_sys_cap * clg_cap_mult) - end - end - hpxml.heat_pumps.each do |heat_pump| - hp_cap_clg = heat_pump.cooling_capacity.to_f - hp_cap_htg = heat_pump.heating_capacity.to_f - clg_cap_mult = 1.0 - htg_cap_mult = 1.0 - if heat_pump.heat_pump_type == HPXML::HVACTypeHeatPumpMiniSplit - # TODO: Generalize this - clg_cap_mult = 1.20 - htg_cap_mult = 1.20 - elsif (heat_pump.heat_pump_type == HPXML::HVACTypeHeatPumpAirToAir) && (heat_pump.cooling_efficiency_seer > 21) - # TODO: Generalize this - htg_cap_mult = 1.17 - end - supp_hp_cap = heat_pump.backup_heating_capacity.to_f - if hp_cap_clg > 0 - clg_cap = 0 if clg_cap.nil? - clg_cap += (hp_cap_clg * clg_cap_mult) - end - if hp_cap_htg > 0 - htg_cap = 0 if htg_cap.nil? - htg_cap += (hp_cap_htg * htg_cap_mult) - end - if supp_hp_cap > 0 - htg_cap = 0 if htg_cap.nil? - htg_cap += supp_hp_cap - end - end - if not clg_cap.nil? - sql_value = UnitConversions.convert(results['Capacity: Cooling (W)'], 'W', 'Btu/hr') - if clg_cap == 0 - assert_operator(sql_value, :<, 1) - elsif clg_cap > 0 - if hpxml.header.allow_increased_fixed_capacities - assert_operator(sql_value, :>=, clg_cap) - else - assert_in_epsilon(clg_cap, sql_value, 0.01) - end - else # autosized - assert_operator(sql_value, :>, 1) - end - end - if not htg_cap.nil? - sql_value = UnitConversions.convert(results['Capacity: Heating (W)'], 'W', 'Btu/hr') - if htg_cap == 0 - assert_operator(sql_value, :<, 1) - elsif htg_cap > 0 - if hpxml.header.allow_increased_fixed_capacities - assert_operator(sql_value, :>=, htg_cap) - else - assert_in_epsilon(htg_cap, sql_value, 0.01) - end - else # autosized - assert_operator(sql_value, :>, 1) - end - end - # HVAC Load Fractions - if not hpxml_path.include? 'location-miami' + if (not hpxml_path.include? 'location-miami') && (not hpxml_path.include? 'location-honolulu') && (not hpxml_path.include? 'location-phoenix') htg_energy = results.select { |k, v| (k.include?(': Heating (MBtu)') || k.include?(': Heating Fans/Pumps (MBtu)')) && !k.include?('Load') }.map { |k, v| v }.sum(0.0) assert_equal(hpxml.total_fraction_heat_load_served > 0, htg_energy > 0) end clg_energy = results.select { |k, v| (k.include?(': Cooling (MBtu)') || k.include?(': Cooling Fans/Pumps (MBtu)')) && !k.include?('Load') }.map { |k, v| v }.sum(0.0) assert_equal(hpxml.total_fraction_cool_load_served > 0, clg_energy > 0) - # Water Heater - if hpxml.water_heating_systems.select { |wh| [HPXML::WaterHeaterTypeCombiStorage, HPXML::WaterHeaterTypeCombiTankless].include? wh.water_heater_type }.size > 0 - query = "SELECT SUM(ABS(VariableValue)/1000000000) FROM ReportVariableData WHERE ReportVariableDataDictionaryIndex IN (SELECT ReportVariableDataDictionaryIndex FROM ReportVariableDataDictionary WHERE VariableType='Sum' AND VariableName='Fluid Heat Exchanger Heat Transfer Energy' AND ReportingFrequency='Run Period' AND VariableUnits='J')" - combi_hx_load = sqlFile.execAndReturnFirstDouble(query).get.round(2) - query = "SELECT SUM(ABS(VariableValue)/1000000000) FROM ReportVariableData WHERE ReportVariableDataDictionaryIndex IN (SELECT ReportVariableDataDictionaryIndex FROM ReportVariableDataDictionary WHERE VariableType='Sum' AND VariableName='Boiler Heating Energy' AND ReportingFrequency='Run Period' AND VariableUnits='J')" - combi_htg_load = sqlFile.execAndReturnFirstDouble(query).get.round(2) - - # Check combi system energy balance - query = "SELECT SUM(ABS(VariableValue)/1000000000) FROM ReportVariableData WHERE ReportVariableDataDictionaryIndex IN (SELECT ReportVariableDataDictionaryIndex FROM ReportVariableDataDictionary WHERE VariableType='Sum' AND VariableName='Water Heater Source Side Heat Transfer Energy' AND VariableUnits='J')" - combi_tank_source_load = sqlFile.execAndReturnFirstDouble(query).get.round(2) - assert_in_epsilon(combi_hx_load, combi_tank_source_load, 0.02) - - # Check boiler, hx, pump, heating coil energy balance - query = "SELECT SUM(ABS(VariableValue)/1000000000) FROM ReportVariableData WHERE ReportVariableDataDictionaryIndex IN (SELECT ReportVariableDataDictionaryIndex FROM ReportVariableDataDictionary WHERE VariableType='Sum' AND VariableName='Baseboard Total Heating Energy' AND VariableUnits='J')" - boiler_space_heating_load = sqlFile.execAndReturnFirstDouble(query).get.round(2) - assert_in_epsilon(combi_hx_load + boiler_space_heating_load, combi_htg_load, 0.02) - end - # Mechanical Ventilation fan_cfis = hpxml.ventilation_fans.select { |vent_mech| vent_mech.used_for_whole_building_ventilation && (vent_mech.fan_type == HPXML::MechVentTypeCFIS) } fan_sup = hpxml.ventilation_fans.select { |vent_mech| vent_mech.used_for_whole_building_ventilation && (vent_mech.fan_type == HPXML::MechVentTypeSupply) } @@ -1139,43 +1018,36 @@ def _verify_outputs(runner, rundir, hpxml_path, results) vent_fan_bath = hpxml.ventilation_fans.select { |vent_mech| vent_mech.used_for_local_ventilation && (vent_mech.fan_location == HPXML::LocationBath) } if not (fan_cfis + fan_sup + fan_exh + fan_bal + vent_fan_kitchen + vent_fan_bath).empty? - mv_energy = UnitConversions.convert(results['Electricity: Mech Vent (MBtu)'], 'MBtu', 'GJ') + mv_energy = UnitConversions.convert(results['End Use: Electricity: Mech Vent (MBtu)'], 'MBtu', 'GJ') if not fan_cfis.empty? - # CFIS, check for positive mech vent energy that is less than the energy if it had run 24/7 - # CFIS Fan energy - query = "SELECT SUM(ABS(VariableValue)/1000000000) FROM ReportVariableData WHERE ReportVariableDataDictionaryIndex IN (SELECT ReportVariableDataDictionaryIndex FROM ReportVariableDataDictionary WHERE VariableType='Sum' AND KeyValue LIKE '#{Constants.ObjectNameMechanicalVentilationHouseFanCFIS.upcase}%' AND VariableName='Electric Equipment Electricity Energy' AND ReportingFrequency='Run Period' AND VariableUnits='J')" - cfis_energy = sqlFile.execAndReturnFirstDouble(query).get - fan_gj = fan_cfis.map { |vent_mech| UnitConversions.convert(vent_mech.unit_fan_power * vent_mech.hours_in_operation * 365.0, 'Wh', 'GJ') }.sum(0.0) - if fan_gj > 0 - assert_operator(cfis_energy, :>, 0) - assert_operator(cfis_energy, :<, fan_gj) - else - assert_equal(cfis_energy, 0.0) + if (fan_sup + fan_exh + fan_bal + vent_fan_kitchen + vent_fan_bath).empty? + # CFIS only, check for positive mech vent energy that is less than the energy if it had run 24/7 + fan_gj = fan_cfis.map { |vent_mech| UnitConversions.convert(vent_mech.unit_fan_power * vent_mech.hours_in_operation * 365.0, 'Wh', 'GJ') }.sum(0.0) + assert_operator(mv_energy, :>, 0) + assert_operator(mv_energy, :<, fan_gj) end - - mv_energy -= cfis_energy - end - - # Supply, exhaust, ERV, HRV, etc., check for appropriate mech vent energy - fan_gj = 0 - if not fan_sup.empty? - fan_gj += fan_sup.map { |vent_mech| UnitConversions.convert(vent_mech.unit_fan_power * vent_mech.hours_in_operation * 365.0, 'Wh', 'GJ') }.sum(0.0) - end - if not fan_exh.empty? - fan_gj += fan_exh.map { |vent_mech| UnitConversions.convert(vent_mech.unit_fan_power * vent_mech.hours_in_operation * 365.0, 'Wh', 'GJ') }.sum(0.0) - end - if not fan_bal.empty? - fan_gj += fan_bal.map { |vent_mech| UnitConversions.convert(vent_mech.unit_fan_power * vent_mech.hours_in_operation * 365.0, 'Wh', 'GJ') }.sum(0.0) - end - if not vent_fan_kitchen.empty? - fan_gj += vent_fan_kitchen.map { |vent_kitchen| UnitConversions.convert(vent_kitchen.unit_fan_power * vent_kitchen.hours_in_operation * vent_kitchen.quantity * 365.0, 'Wh', 'GJ') }.sum(0.0) - end - if not vent_fan_bath.empty? - fan_gj += vent_fan_bath.map { |vent_bath| UnitConversions.convert(vent_bath.unit_fan_power * vent_bath.hours_in_operation * vent_bath.quantity * 365.0, 'Wh', 'GJ') }.sum(0.0) + else + # Supply, exhaust, ERV, HRV, etc., check for appropriate mech vent energy + fan_gj = 0 + if not fan_sup.empty? + fan_gj += fan_sup.map { |vent_mech| UnitConversions.convert(vent_mech.unit_fan_power * vent_mech.hours_in_operation * 365.0, 'Wh', 'GJ') }.sum(0.0) + end + if not fan_exh.empty? + fan_gj += fan_exh.map { |vent_mech| UnitConversions.convert(vent_mech.unit_fan_power * vent_mech.hours_in_operation * 365.0, 'Wh', 'GJ') }.sum(0.0) + end + if not fan_bal.empty? + fan_gj += fan_bal.map { |vent_mech| UnitConversions.convert(vent_mech.unit_fan_power * vent_mech.hours_in_operation * 365.0, 'Wh', 'GJ') }.sum(0.0) + end + if not vent_fan_kitchen.empty? + fan_gj += vent_fan_kitchen.map { |vent_kitchen| UnitConversions.convert(vent_kitchen.unit_fan_power * vent_kitchen.hours_in_operation * vent_kitchen.quantity * 365.0, 'Wh', 'GJ') }.sum(0.0) + end + if not vent_fan_bath.empty? + fan_gj += vent_fan_bath.map { |vent_bath| UnitConversions.convert(vent_bath.unit_fan_power * vent_bath.hours_in_operation * vent_bath.quantity * 365.0, 'Wh', 'GJ') }.sum(0.0) + end + # Maximum error that can be caused by rounding + assert_in_delta(mv_energy, fan_gj, 0.006) end - # Maximum error that can be caused by rounding - assert_in_delta(mv_energy, fan_gj, 0.006) end # Clothes Washer @@ -1239,8 +1111,10 @@ def _verify_outputs(runner, rundir, hpxml_path, results) end # Lighting - ltg_energy = results.select { |k, v| k.include? 'Electricity: Lighting' }.map { |k, v| v }.sum(0.0) - assert_equal(hpxml.lighting_groups.size > 0, ltg_energy > 0) + ltg_energy = results.select { |k, v| k.include? 'End Use: Electricity: Lighting' }.map { |k, v| v }.sum(0.0) + if hpxml.header.schedules_path.nil? + assert_equal(hpxml.lighting_groups.size > 0, ltg_energy > 0) + end # Get fuels htg_fuels = [] @@ -1270,11 +1144,11 @@ def _verify_outputs(runner, rundir, hpxml_path, results) HPXML::FuelTypeCoal].each do |fuel| fuel_name = fuel.split.map(&:capitalize).join(' ') fuel_name += ' Cord' if fuel_name == 'Wood' - energy_htg = results.fetch("#{fuel_name}: Heating (MBtu)", 0) - energy_dhw = results.fetch("#{fuel_name}: Hot Water (MBtu)", 0) - energy_cd = results.fetch("#{fuel_name}: Clothes Dryer (MBtu)", 0) - energy_cr = results.fetch("#{fuel_name}: Range/Oven (MBtu)", 0) - if htg_fuels.include?(fuel) && (not hpxml_path.include? 'location-miami') + energy_htg = results.fetch("End Use: #{fuel_name}: Heating (MBtu)", 0) + energy_dhw = results.fetch("End Use: #{fuel_name}: Hot Water (MBtu)", 0) + energy_cd = results.fetch("End Use: #{fuel_name}: Clothes Dryer (MBtu)", 0) + energy_cr = results.fetch("End Use: #{fuel_name}: Range/Oven (MBtu)", 0) + if htg_fuels.include?(fuel) && (not hpxml_path.include? 'location-miami') && (not hpxml_path.include? 'location-honolulu') && (not hpxml_path.include? 'location-phoenix') assert_operator(energy_htg, :>, 0) else assert_equal(0, energy_htg) @@ -1355,7 +1229,7 @@ def _write_hvac_sizing_results(all_sizing_results, csv_out) puts "Wrote HVAC sizing results to #{csv_out}." end - def _write_ashrae_140_results(all_results, ashrae140_dir, csv_out) + def _write_ashrae_140_results(all_results, csv_out) require 'csv' htg_loads = {} @@ -1363,7 +1237,6 @@ def _write_ashrae_140_results(all_results, ashrae140_dir, csv_out) CSV.open(csv_out, 'w') do |csv| csv << ['Test Case', 'Annual Heating Load [MMBtu]', 'Annual Cooling Load [MMBtu]'] all_results.sort.each do |xml, xml_results| - next unless xml.include? ashrae140_dir next unless xml.include? 'C.xml' htg_load = xml_results['Load: Heating (MBtu)'].round(2) @@ -1372,7 +1245,6 @@ def _write_ashrae_140_results(all_results, ashrae140_dir, csv_out) htg_loads[test_name] = htg_load end all_results.sort.each do |xml, xml_results| - next unless xml.include? ashrae140_dir next unless xml.include? 'L.xml' clg_load = xml_results['Load: Cooling (MBtu)'].round(2) diff --git a/example_files/measures/BuildResidentialModel/resources/measure-info.json b/example_files/resources/measure-info.json similarity index 100% rename from example_files/measures/BuildResidentialModel/resources/measure-info.json rename to example_files/resources/measure-info.json diff --git a/example_files/measures/BuildResidentialModel/resources/meta_measure.rb b/example_files/resources/meta_measure.rb similarity index 69% rename from example_files/measures/BuildResidentialModel/resources/meta_measure.rb rename to example_files/resources/meta_measure.rb index efe0bdc0..4a48b531 100644 --- a/example_files/measures/BuildResidentialModel/resources/meta_measure.rb +++ b/example_files/resources/meta_measure.rb @@ -1,11 +1,13 @@ +# frozen_string_literal: true + # Helper methods related to having a meta-measure def get_measures(workflow_json, include_only = nil) result = [] - JSON.parse(File.read(workflow_json), :symbolize_names => true).each do |group| + JSON.parse(File.read(workflow_json), symbolize_names: true).each do |group| group[:group_steps].each do |step| step[:measures].each do |measure_dir| - if (not include_only.nil?) and (not include_only.include? measure_dir) + if (not include_only.nil?) && (not include_only.include? measure_dir) next end @@ -16,7 +18,7 @@ def get_measures(workflow_json, include_only = nil) return result end -def apply_measures(measures_dir, measures, runner, model, workflow_json = nil, osw_out = nil, show_measure_calls = true) +def apply_child_measures(measures_dir, measures, runner, model, workflow_json = nil, osw_out = nil, show_measure_calls = true) require 'openstudio' workflow_order = [] @@ -40,13 +42,8 @@ def apply_measures(measures_dir, measures, runner, model, workflow_json = nil, o # Create a workflow based on the measures we're going to call. Convenient for debugging. workflowJSON = OpenStudio::WorkflowJSON.new workflowJSON.setOswPath(File.expand_path("../#{osw_out}")) - workflowJSON.addMeasurePath("resources/hpxml-measures") - - # pull in measure paths from primary OSW which will give accss to openstudio-model-articulation gems - # osw_measure_paths = runner.workflow.measurePaths - # osw_measure_paths.each do |orig_measure_path| - # workflowJSON.addMeasurePath(orig_measure_path) - # end + workflowJSON.addMeasurePath('measures') + workflowJSON.addMeasurePath('resources/hpxml-measures') steps = OpenStudio::WorkflowStepVector.new workflow_order.each do |measure_subdir| measures[measure_subdir].each do |args| @@ -66,7 +63,7 @@ def apply_measures(measures_dir, measures, runner, model, workflow_json = nil, o # Call each measure in the specified order workflow_order.each do |measure_subdir| # Gather measure arguments and call measure - full_measure_path = File.join(measures_dir, measure_subdir, "measure.rb") + full_measure_path = File.join(measures_dir, measure_subdir, 'measure.rb') check_file_exists(full_measure_path, runner) measure_instance = get_measure_instance(full_measure_path) measures[measure_subdir].each do |args| @@ -85,54 +82,61 @@ def apply_measures(measures_dir, measures, runner, model, workflow_json = nil, o end def print_measure_call(measure_args, measure_dir, runner) - if measure_args.nil? or measure_dir.nil? + if measure_args.nil? || measure_dir.nil? return end - args_s = hash_to_string(measure_args, delim = " -> ", separator = " \n") + args_s = hash_to_string(measure_args, delim = ' -> ', separator = ' \n') if args_s.size > 0 - runner.registerInfo("Calling #{measure_dir.to_s} measure with arguments:\n#{args_s}") + runner.registerInfo("Calling #{measure_dir} measure with arguments:\n#{args_s}") else - runner.registerInfo("Calling #{measure_dir.to_s} measure with no arguments.") + runner.registerInfo("Calling #{measure_dir} measure with no arguments.") end end def get_measure_instance(measure_rb_path) # Parse XML file for class name - require 'rexml/document' - require 'rexml/xpath' - xmldoc = REXML::Document.new(File.read(measure_rb_path.sub(".rb", ".xml"))) - measure_class = REXML::XPath.first(xmldoc, "//measure/class_name").text + # Avoid REXML for performance reasons + measure_class = nil + File.readlines(measure_rb_path.sub('.rb', '.xml')).each do |xml_line| + next unless xml_line.include? '' + + measure_class = xml_line.gsub('', '').gsub('', '').strip + break + end # Create new instance - require (File.absolute_path(measure_rb_path)) + require File.absolute_path(measure_rb_path) measure = eval(measure_class).new return measure end def validate_measure_args(measure_args, provided_args, lookup_file, measure_name, runner = nil) measure_arg_names = measure_args.map { |arg| arg.name } - lookup_file_str = "" + lookup_file_str = '' if not lookup_file.nil? - lookup_file_str = " in #{lookup_file.to_s}" + lookup_file_str = " in #{lookup_file}" end # Verify all arguments have been provided measure_args.each do |arg| next if provided_args.keys.include?(arg.name) next if not arg.required + next if arg.name.include?('hpxml_path') - register_error("Required argument '#{arg.name}' not provided#{lookup_file_str} for measure '#{measure_name.to_s}'.", runner) + register_error("Required argument '#{arg.name}' not provided#{lookup_file_str} for measure '#{measure_name}'.", runner) end provided_args.keys.each do |k| next if measure_arg_names.include?(k) - register_error("Extra argument '#{k}' specified#{lookup_file_str} for measure '#{measure_name.to_s}'.", runner) + register_error("Extra argument '#{k}' specified#{lookup_file_str} for measure '#{measure_name}'.", runner) end # Check for valid argument values measure_args.each do |arg| # Get measure provided arg if provided_args[arg.name].nil? if arg.required - register_error("Required argument '#{arg.name.to_s}' for measure '#{measure_name.to_s}' must have a value provided.", runner) + next if arg.name.include?('hpxml_path') + + register_error("Required argument '#{arg.name}' for measure '#{measure_name}' must have a value provided.", runner) else next end @@ -140,23 +144,23 @@ def validate_measure_args(measure_args, provided_args, lookup_file, measure_name provided_args[arg.name] = provided_args[arg.name].to_s end case arg.type.valueName.downcase - when "boolean" + when 'boolean' if not ['true', 'false'].include?(provided_args[arg.name]) - register_error("Value of '#{provided_args[arg.name].to_s}' for argument '#{arg.name.to_s}' and measure '#{measure_name.to_s}' must be 'true' or 'false'.", runner) + register_error("Value of '#{provided_args[arg.name]}' for argument '#{arg.name}' and measure '#{measure_name}' must be 'true' or 'false'.", runner) end - when "double" + when 'double' if not provided_args[arg.name].is_number? - register_error("Value of '#{provided_args[arg.name].to_s}' for argument '#{arg.name.to_s}' and measure '#{measure_name.to_s}' must be a number.", runner) + register_error("Value of '#{provided_args[arg.name]}' for argument '#{arg.name}' and measure '#{measure_name}' must be a number.", runner) end - when "integer" + when 'integer' if not provided_args[arg.name].is_integer? - register_error("Value of '#{provided_args[arg.name].to_s}' for argument '#{arg.name.to_s}' and measure '#{measure_name.to_s}' must be an integer.", runner) + register_error("Value of '#{provided_args[arg.name]}' for argument '#{arg.name}' and measure '#{measure_name}' must be an integer.", runner) end - when "string" + when 'string' # no op - when "choice" - if not arg.choiceValues.include?(provided_args[arg.name]) and not arg.modelDependent - register_error("Value of '#{provided_args[arg.name].to_s}' for argument '#{arg.name.to_s}' and measure '#{measure_name.to_s}' must be one of: #{arg.choiceValues.to_s}.", runner) + when 'choice' + if (not arg.choiceValues.include?(provided_args[arg.name])) && (not arg.modelDependent) + register_error("Value of '#{provided_args[arg.name]}' for argument '#{arg.name}' and measure '#{measure_name}' must be one of: #{arg.choiceValues}.", runner) end end end @@ -199,6 +203,11 @@ def run_measure(model, measure, argument_map, runner) runner.registerFinalCondition(result_child.finalCondition.get.logMessage) end + # re-register runner child registered values on the parent runner + result_child.stepValues.each do |step_value| + runner.registerValue(step_value.name, get_value_from_workflow_step_value(step_value)) + end + # log messages result_child.warnings.each do |warning| runner.registerWarning(warning.logMessage) @@ -214,21 +223,21 @@ def run_measure(model, measure, argument_map, runner) end # convert a return false in the measure to a return false and error here. - if result_child.value.valueName == "Fail" - runner.registerError("The measure was not successful") + if result_child.value.valueName == 'Fail' + runner.registerError('The measure was not successful') return false end rescue => e - runner.registerError("Measure Failed with an error: #{e.inspect.to_s} at: #{e.backtrace.join("\n")}") + runner.registerError("Measure Failed with an error: #{e.inspect} at: #{e.backtrace.join("\n")}") return false end return true end -def hash_to_string(hash, delim = "=", separator = ",") - hash_s = "" +def hash_to_string(hash, delim = '=', separator = ',') + hash_s = '' hash.each do |k, v| - hash_s << "#{k.to_s}#{delim.to_s}#{v.to_s}#{separator.to_s}" + hash_s += "#{k}#{delim}#{v}#{separator}" end if hash_s.size > 0 hash_s = hash_s.chomp(separator.to_s) @@ -247,13 +256,13 @@ def register_error(msg, runner = nil) def check_file_exists(full_path, runner = nil) if not File.exist?(full_path) - register_error("Cannot find file #{full_path.to_s}.", runner) + register_error("Cannot find file #{full_path}.", runner) end end def check_dir_exists(full_path, runner = nil) if not Dir.exist?(full_path) - register_error("Cannot find directory #{full_path.to_s}.", runner) + register_error("Cannot find directory #{full_path}.", runner) end end @@ -275,7 +284,7 @@ def is_number? end def is_integer? - if not self.is_number? + if not is_number? return false end if Integer(Float(self)).to_f != Float(self) From 76bd232c3c7250812e67774df36e154dd54d849f Mon Sep 17 00:00:00 2001 From: kflemin Date: Wed, 31 Mar 2021 15:56:15 -0600 Subject: [PATCH 12/12] prep version 0.5.2 --- CHANGELOG.md | 15 ++++++++++++++- lib/uo_cli/version.rb | 2 +- uo_cli.gemspec | 2 +- 3 files changed, 16 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index dd828f28..6cd045a2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,8 +1,21 @@ # Changelog +## Version 0.5.2 + +Date Range 3/9/21 - 3/31/21 + +- Fixed [#190]( https://github.com/urbanopt/urbanopt-cli/issues/190 ), Graceful rescue from "uo" command +- Fixed [#191]( https://github.com/urbanopt/urbanopt-cli/issues/191 ), add error catching +- Fixed [#197]( https://github.com/urbanopt/urbanopt-cli/issues/197 ), Update copyrights for 2021 +- Fixed [#200]( https://github.com/urbanopt/urbanopt-cli/issues/200 ), Scenario Level Assumptions File cannot be Defined by User +- Fixed [#202]( https://github.com/urbanopt/urbanopt-cli/issues/202 ), Use the new Ditto-Reader CLI in the UO CLI - Remove Pycall Dependency +- Fixed [#214]( https://github.com/urbanopt/urbanopt-cli/issues/214 ), reopt-scenario processing should allow selecting assumptions file +- Fixed [#215]( https://github.com/urbanopt/urbanopt-cli/issues/215 ), Support running GMT (DES) directly from the main CLI +- Fixed [#219]( https://github.com/urbanopt/urbanopt-cli/issues/219 ), Avoid saving feature reports twice. + ## Version 0.5.1 -Date Range 12/17/20 - 3/8/20 +Date Range 12/17/20 - 3/8/21 - Fixed [#157]( https://github.com/urbanopt/urbanopt-cli/issues/157 ), Edit maximum value for y axis in visualization graphs - Fixed [#158]( https://github.com/urbanopt/urbanopt-cli/issues/158 ), Check units for Gas:Facility in visualization graphs diff --git a/lib/uo_cli/version.rb b/lib/uo_cli/version.rb index 99935517..96671618 100644 --- a/lib/uo_cli/version.rb +++ b/lib/uo_cli/version.rb @@ -40,6 +40,6 @@ module URBANopt module CLI - VERSION = '0.5.1'.freeze + VERSION = '0.5.2'.freeze end end diff --git a/uo_cli.gemspec b/uo_cli.gemspec index f4558932..831c0ffa 100644 --- a/uo_cli.gemspec +++ b/uo_cli.gemspec @@ -35,7 +35,7 @@ Gem::Specification.new do |spec| # use specific versions of urbanopt and openstudio dependencies while under heavy development spec.add_runtime_dependency 'optimist', '~> 3' spec.add_runtime_dependency 'urbanopt-geojson', '~> 0.5.2' - spec.add_runtime_dependency 'urbanopt-reopt', '~> 0.5.4' + spec.add_runtime_dependency 'urbanopt-reopt', '~> 0.5.5' spec.add_runtime_dependency 'urbanopt-scenario', '~> 0.5.1' spec.add_runtime_dependency 'urbanopt-reporting', '~> 0.3.7'